package_name
stringlengths
2
45
version
stringclasses
301 values
license
stringclasses
51 values
homepage
stringclasses
359 values
dev_repo
stringclasses
357 values
file_type
stringclasses
6 values
file_path
stringlengths
6
151
file_content
stringlengths
0
9.28M
mirage-crypto
2.0.2
ISC
https://github.com/mirage/mirage-crypto
git+https://github.com/mirage/mirage-crypto.git
dune
mirage-crypto-2.0.2/bench/dune
(executables (names speed) (modules speed) (libraries mirage-crypto mirage-crypto-rng mirage-crypto-rng.unix mirage-crypto-pk mirage-crypto-ec)) ; marking as "(optional)" leads to OCaml-CI failures ; marking with "(package mirage-crypto-rng-miou-unix)" only has an effect with a "public_name" ;(executables ; (names miou) ; (modules miou) ; (libraries mirage-crypto-rng-miou-unix))
mirage-crypto
2.0.2
ISC
https://github.com/mirage/mirage-crypto
git+https://github.com/mirage/mirage-crypto.git
ml
mirage-crypto-2.0.2/bench/miou.ml
open Mirage_crypto module Time = struct let time ~n f a = let t1 = Sys.time () in for _ = 1 to n do ignore (f a) done ; let t2 = Sys.time () in (t2 -. t1) let warmup () = let x = ref 0 in let rec go start = if Sys.time () -. start < 1. then begin for i = 0 to 10000 do x := !x + i done ; go start end in go (Sys.time ()) end let burn_period = 2.0 let sizes = [16; 64; 256; 1024; 8192] (* let sizes = [16] *) let burn f n = let buf = Mirage_crypto_rng.generate n in let (t1, i1) = let rec loop it = let t = Time.time ~n:it f buf in if t > 0.2 then (t, it) else loop (it * 10) in loop 10 in let iters = int_of_float (float i1 *. burn_period /. t1) in let time = Time.time ~n:iters f buf in (iters, time, float (n * iters) /. time) let mb = 1024. *. 1024. let throughput title f = Printf.printf "\n* [%s]\n%!" title ; sizes |> List.iter @@ fun size -> Gc.full_major () ; let (iters, time, bw) = burn f size in Printf.printf " % 5d: %04f MB/s (%d iters in %.03f s)\n%!" size (bw /. mb) iters time let bm name f = (name, fun () -> f name) let benchmarks = [ bm "pfortuna" (fun name -> let open Mirage_crypto_rng_miou_unix.Pfortuna in Miou_unix.run ~domains:2 @@ fun () -> let rng = Mirage_crypto_rng_miou_unix.(initialize (module Pfortuna)) in let g = create () in reseed ~g "abcd" ; throughput name (fun buf -> let buf = Bytes.unsafe_of_string buf in generate_into ~g buf ~off:0 (Bytes.length buf)); Mirage_crypto_rng_miou_unix.kill rng) ; ] let help () = Printf.printf "available benchmarks:\n "; List.iter (fun (n, _) -> Printf.printf "%s " n) benchmarks ; Printf.printf "\n%!" let runv fs = Format.printf "accel: %a\n%!" (fun ppf -> List.iter @@ fun x -> Format.fprintf ppf "%s " @@ match x with `XOR -> "XOR" | `AES -> "AES" | `GHASH -> "GHASH") accelerated; Time.warmup () ; List.iter (fun f -> f ()) fs let () = let seed = "abcd" in let g = Mirage_crypto_rng.(create ~seed (module Fortuna)) in Mirage_crypto_rng.set_default_generator g; match Array.to_list Sys.argv with | _::(_::_ as args) -> begin try let fs = args |> List.map @@ fun n -> snd (benchmarks |> List.find @@ fun (n1, _) -> n = n1) in runv fs with Not_found -> help () end | _ -> help ()
mirage-crypto
2.0.2
ISC
https://github.com/mirage/mirage-crypto
git+https://github.com/mirage/mirage-crypto.git
ml
mirage-crypto-2.0.2/bench/speed.ml
open Mirage_crypto module Time = struct let time ~n f a = let t1 = Sys.time () in for _ = 1 to n do ignore (f a) done ; let t2 = Sys.time () in (t2 -. t1) let warmup () = let x = ref 0 in let rec go start = if Sys.time () -. start < 1. then begin for i = 0 to 10000 do x := !x + i done ; go start end in go (Sys.time ()) end let burn_period = 2.0 let sizes = [16; 64; 256; 1024; 8192] (* let sizes = [16] *) let burn f n = let buf = Mirage_crypto_rng.generate n in let (t1, i1) = let rec loop it = let t = Time.time ~n:it f buf in if t > 0.2 then (t, it) else loop (it * 10) in loop 10 in let iters = int_of_float (float i1 *. burn_period /. t1) in let time = Time.time ~n:iters f buf in (iters, time, float (n * iters) /. time) let mb = 1024. *. 1024. let throughput title f = Printf.printf "\n* [%s]\n%!" title ; sizes |> List.iter @@ fun size -> Gc.full_major () ; let (iters, time, bw) = burn f size in Printf.printf " % 5d: %04f MB/s (%d iters in %.03f s)\n%!" size (bw /. mb) iters time let throughput_into ?(add = 0) title f = Printf.printf "\n* [%s]\n%!" title ; sizes |> List.iter @@ fun size -> Gc.full_major () ; let dst = Bytes.create (size + add) in let (iters, time, bw) = burn (f dst) size in Printf.printf " % 5d: %04f MB/s (%d iters in %.03f s)\n%!" size (bw /. mb) iters time let count_period = 10. let count f n = ignore (f n); let i1 = 5 in let t1 = Time.time ~n:i1 f n in let iters = int_of_float (float i1 *. count_period /. t1) in let time = Time.time ~n:iters f n in (iters, time) let count title f to_str args = Printf.printf "\n* [%s]\n%!" title ; args |> List.iter @@ fun arg -> Gc.full_major () ; let iters, time = count f arg in Printf.printf " %s: %.03f ops per second (%d iters in %.03f)\n%!" (to_str arg) (float iters /. time) iters time let msg_str = String.make 100 '\xAA' let msg_str_32 = String.sub msg_str 0 32 let msg_str_48 = String.sub msg_str 0 48 let msg_str_65 = String.sub msg_str 0 65 module PSS = Mirage_crypto_pk.Rsa.PSS(Digestif.SHA256) let rsa_1024 = let p = Z.of_string "10798561676627454710140432432014696449593673631094049392368450463276546091610832740190717321579865870896133380991892468262437092547408603618427685009427773" and q = Z.of_string "10400664760062606994038747844895625872750212488858602663971334563613232045185857177383833781411830934303117994128623611996670112272953487791473086751129863" and e = Z.of_string "65537" in match Mirage_crypto_pk.Rsa.priv_of_primes ~e ~p ~q with Ok r -> r | _ -> assert false let enc_1024 = Mirage_crypto_pk.Rsa.(encrypt ~key:(pub_of_priv rsa_1024) msg_str) let pkcs1_sig_1024 () = Mirage_crypto_pk.Rsa.PKCS1.sign ~hash:`SHA256 ~key:rsa_1024 (`Message msg_str) let pkcs1_enc_1024 () = Mirage_crypto_pk.Rsa.(PKCS1.encrypt ~key:(pub_of_priv rsa_1024) msg_str) let pss_sig_1024 () = PSS.sign ~key:rsa_1024 (`Message msg_str) let rsa_2048 = let p = Z.of_string "146881832325800831419400417618624202055588545997890787121932184528831630537012732415698782899346395306540669232648045731896347007978622067056705527305566180903122107927148832001099595387953189273726394573803912262323600581299712943797238366745329534148223987933536186022708693674753193534229263584177098260169" and q = Z.of_string "146461957885839900502732892013745315236120923895767594427579857452138451155393985820080680192640369593315439290134409437965406213465262989382655388410330601076036910359057156988645246773259111682038096388585157599977808854893528900530706460128823381760931962351810679571404043148961709991714582814015259432029" and e = Z.of_string "65537" in match Mirage_crypto_pk.Rsa.priv_of_primes ~e ~p ~q with Ok r -> r | _ -> assert false let enc_2048 = Mirage_crypto_pk.Rsa.(encrypt ~key:(pub_of_priv rsa_2048) msg_str) let pkcs1_sig_2048 () = Mirage_crypto_pk.Rsa.PKCS1.sign ~hash:`SHA256 ~key:rsa_2048 (`Message msg_str) let pkcs1_enc_2048 () = Mirage_crypto_pk.Rsa.(PKCS1.encrypt ~key:(pub_of_priv rsa_2048) msg_str) let pss_sig_2048 () = PSS.sign ~key:rsa_2048 (`Message msg_str) let rsa_4096 = let p = Z.of_string "30773596934476715066776070065844902670036493980016387964275170019397018472432997910667589359581914549510631424565206701540136804180560112829236103459317928059975099687383138310206374921731816027058152009810073337617754052401932141110921176212810704858018214605862299356217860547747262170495777126218319842708093667844701139914958775637423731967187071886349669479192453619522943080948061657926138418380417577129184420732857906610804965319661598089231703183044642635889126023201809407430354992888247464125783088294095728916671050049684448794153783082653555256735912037270303014887722063417225893745458164718800442738569" and q = Z.of_string "25905916162566396401205858643227945415345838368190515936191926936462899261314859092468495558719305083654714669527919862817831941531613073577910643681172802147392797914485263753968375221243705167910636382434485717071007054833155618588980128488599406663210791261135710551020276087851551652652612955553056226986980360600996201307035494196112173475664509878923172924086102889718336621725968169373963280305056864698229857913526607314633711315503607289470716733189135747457446349029256257187264165837635026903463931381823712962360342258652047970731347111703873301687821992467888598546386551115261010493902143134851640738743" and e = Z.of_string "65537" in match Mirage_crypto_pk.Rsa.priv_of_primes ~e ~p ~q with Ok r -> r | _ -> assert false let enc_4096 = Mirage_crypto_pk.Rsa.(encrypt ~key:(pub_of_priv rsa_4096) msg_str) let pkcs1_sig_4096 () = Mirage_crypto_pk.Rsa.PKCS1.sign ~hash:`SHA256 ~key:rsa_4096 (`Message msg_str) let pkcs1_enc_4096 () = Mirage_crypto_pk.Rsa.(PKCS1.encrypt ~key:(pub_of_priv rsa_4096) msg_str) let pss_sig_4096 () = PSS.sign ~key:rsa_4096 (`Message msg_str) let dsa_1024 = let p = Z.of_string "115320471016337933377056549329182706825658339080795846324118938187917903660539570102468495091957028599543345588517799627361082806070282899880721557018345825086927289316756283826093243695405203187016738458545513419551779925532261196890562077023934735570005318513791942265699098088390517334916527653326493928799" and q = Z.of_string "823267969559752761552104454322087597915195665001" and gg = Z.of_string "107937769619514611906619060647411205822947624664377868769814121409943849987480570028955037310439082345400300825969182219850876363034452830224901430080806055218560008392720388910894912162956691999057850754409178667408425482805161601110189024138168750376391340697351250728689008407981372513900837280131855895453" and x = Z.of_string "33269272469299670210735451373406214067383586377" and y = Z.of_string "43917635707590891841908570055721669604556135044554274942460553515946670787931699807386932177837523342760860376770220825997328312057886461226985675983491441562087492365801663397409369541614646669226917344513472367438132106373179011858311945451923744651780314133078253880297369792145807736223662521868826642853" in match Mirage_crypto_pk.Dsa.priv ~fips:true ~p ~q ~gg ~x ~y () with Ok p -> p | _ -> assert false let dsa_sig_1024 () = Mirage_crypto_pk.Dsa.sign ~key:dsa_1024 msg_str let dsa_2048 = let p = Z.of_string "27787495469795504213817302334103600594688179071059183073859876165757248559489321478170600304273914000462158587756787453177210321379060448141559798652196363556897576291878245650614903612762833777567911000834171168229784178643222849655095281437320492725855855778320111645629834980350492228611813830302209080760811887894272862901026864911346096471199762409562102789142939773632891860019140618313962854554152891445175391927591825205548689170996430765723064763763481336517107917261869303217480777161449935319930795628114622197586510378927239068257979584784079128534248603619156372913573809491691986354447396965646770535701" and q = Z.of_string "69694877308167037149745913456421442195328554169759046914164177549875778020469" and gg = Z.of_string "16749627588066214399529603991445197534749244283120164288067836662918885787186948571007751498897778360267876697044209030527058098259975959998878027668545429739993477399366554325353523024222400972678469229055566504457717513550553993631550406867067991877458269091177591866978827953084168571646688881904998325355571633065354963580984543158204292013550690051754036914978697535194466008409541982818422484127204033337933785318568157008881227465007133605041651516579370726984057624602011504585990465767875831799514375203088558577008613314886723862237337922917306616319550969129882699756566436846243489458865623046875627558535" and x = Z.of_string "52860861934156228997899838985740859941028688506510055821449681896336427977580" and y = Z.of_string "16697822339875604612001674517725789858937385326266245308648897963274039128000291572870559603618903431422492771498840266582664620626826186158140214481920146230768719356298465470274085841064126012204317638870338958089054809559680905413861272320951150917299685355736888023985398767858005440235842845908452598291689850063919053521400020402671375982259094019780813889586357332424647365679629398571364161673401249910198031061651183589601097975488702613291524957230624044246866866974886847601585171352897595544769649242723658395277456627024303041369757410970512818793143517329469213213147704583953410882515213978051041273924" in match Mirage_crypto_pk.Dsa.priv ~fips:true ~p ~q ~gg ~x ~y () with Ok p -> p | _ -> assert false let dsa_sig_2048 () = Mirage_crypto_pk.Dsa.sign ~key:dsa_2048 msg_str let dsa_3072 = let p = Z.of_string "4944862491052787177238323499959371418651354629231656321315236369672827559263545931134286049323485061071828187289578269594065783019111035804017538871324004047710342711620233110167493989997579634523303899794913823240058891327833786211541568251787338957336540247816021098378292806006955851897646808403078979142749428669072523191276645021175423303816467433407072660616741824124536840773744646488191896772232795413707995397140064396495425700133866462410490239713815308709711960470201906326732033816522202617817869465691798938486540955726912350768931476362143768721380759395525951947017232778140349423557015356082357043807910825817719748257213281893007933859227824276579765323175836008193865064772817200047353825332039369252224256435661514851653526942065285711420907389170574343434449883875510985495078384130667046036846831401643151166834922210257258578675547742596423035828159461629721005113634334227074529533688136165903014911127" and q = Z.of_string "72036757532428134359049138716615314032674441223147930984416116642785279309001" and gg = Z.of_string "988301665281495772390013694627509692333967846948672137624515090935924385717634154201978961497509784579332702743535206413508559565302483922898459454403718843912379531742192312937734625047119678718271184170003455506604118936761508195594240052138536667234693864514877750501896049675764191029147963148241546820518065141123555298022010467792468407477159110344370654433269478015817957411602389410658876373667769353995724289566719120654426746425129842353040271693696527020500630012804936844492302532860691617810440827122662134370347136275931360845416833023047973072799739252681873195380321841873819721774703093238289342578739869306714624065593724407718101053836638039267362740083113357679437895609399028133545708736803196232072972950098992845234240283344492163375862712470338417546036591824286944195749933069780384676421299008472374982388004050973085425949637720603596481254386896408204626665775305048865550117840561595366712598318" and x = Z.of_string "57079433780483458942713357293831115449694380253611914431677328021806898761674" and y = Z.of_string "2872172233173100601346399502391482510148300641600207189246652621232656647081281141886455256814187251102030580186748870087277263359506423691023579912476503628426574690699263443704236625550832436226673947182294798279064154375422081421444400893924415563728656687773617245084962617886701420982288621397340217078717788290878177343138178149109067141997920049624616209300715994802074480057682676445987819355778630849636079364539062466859717465892222793824712941403252645431023939220711618233660062829520555618350855085688062241702521140104357981881833598269736147371800258828202964600523335598361833482597511071900975835195171061421945579132277176597724513608746614358311884564512362186106480065540201711903122228315570389409204443391052987813355120223856839756971514334338065850104261467285471383663470187296456006848469765768400814476981451863643010333596484259098557995874127140419649424228480234701334240448168704764430867915060" in match Mirage_crypto_pk.Dsa.priv ~fips:true ~p ~q ~gg ~x ~y () with Ok p -> p | _ -> assert false let dsa_sig_3072 () = Mirage_crypto_pk.Dsa.sign ~key:dsa_3072 msg_str let dh_groups = ["oakley5 (1536)",Mirage_crypto_pk.Dh.Group.oakley_5; "oakley14 (2048)",Mirage_crypto_pk.Dh.Group.oakley_14; "ffdhe2048",Mirage_crypto_pk.Dh.Group.ffdhe2048; "ffdhe3072",Mirage_crypto_pk.Dh.Group.ffdhe3072; "ffdhe4096",Mirage_crypto_pk.Dh.Group.ffdhe4096; "ffdhe6144",Mirage_crypto_pk.Dh.Group.ffdhe6144] let dh_secrets = List.map2 (fun (n, group) s -> (n, group), Mirage_crypto_pk.Dh.key_of_secret group ~s) dh_groups (List.map (fun s -> Z.of_string s |> Mirage_crypto_pk.Z_extra.to_octets_be) [ "31271182055444024732867835946284871743952969208281694762833912267184" ; "27594341083884344999714422172371027333192426063917478556668524561591" ; "49745209598738800585479479877345156590922715411063492309021724116430" ; "54263413298355776701974737228250185414758929445654879795198916482466337662578919821" ; "38599161911587526396222063388324161227700603198435442693976375015855884010520671067171149524070089" ; "60057457975706301816395663645420233759377744187465730049174048360108513636349450241008234412972340882517684187851" ; ]) let ecdsa_p256 = Result.get_ok (Mirage_crypto_ec.P256.Dsa.priv_of_octets "\x08\x9f\x4f\xfc\xcc\xf9\xba\x13\xfe\xdd\x09\x42\xef\x08\xcf\x2d\x90\x9f\x32\xe2\x93\x4a\xb5\xc9\x3b\x6c\x99\xbe\x5a\x9f\xf5\x27") let ecdsa_p256_sig () = Mirage_crypto_ec.P256.Dsa.sign ~key:ecdsa_p256 msg_str_32 let ecdsa_p384 = Result.get_ok (Mirage_crypto_ec.P384.Dsa.priv_of_octets "\xf5\xc0\xc9\xfb\x95\x17\x86\x41\xaf\x76\xf3\x83\x1f\x41\xe2\xd3\x7c\xfa\xaf\xff\xc7\xe6\x01\x72\xcf\xb0\x89\xfe\x60\x4b\x56\xa6\x1c\x7c\x31\xa6\x90\x4b\x3b\x5d\x08\x20\x7a\x4b\x81\xe2\x5e\xa5") let ecdsa_p384_sig () = Mirage_crypto_ec.P384.Dsa.sign ~key:ecdsa_p384 msg_str_48 let ecdsa_p521 = Result.get_ok (Mirage_crypto_ec.P521.Dsa.priv_of_octets "\x00\xb1\x8f\x60\xc0\x35\x2a\xd8\xe3\xef\x98\x2f\x1d\xdf\xcf\x6e\xec\x7f\xa6\xca\xf0\xe6\xf3\x68\x35\x4a\x8b\x02\xb2\xd8\xac\x1e\x05\x9e\x30\x98\x91\xe2\xbf\xa8\x57\x91\xa5\xe7\x1b\x40\xbd\xec\xbf\x90\x2b\xf2\x43\xdc\x3b\x00\x80\x49\x5c\xf4\xd9\x1c\x78\x72\x8b\xd5") let ecdsa_p521_sig () = Mirage_crypto_ec.P521.Dsa.sign ~key:ecdsa_p521 msg_str_65 let ed25519 = Result.get_ok (Mirage_crypto_ec.Ed25519.priv_of_octets "\x3e\x0a\xb6\x82\x17\x12\x75\xc5\x69\xfc\xe9\xca\x8b\xcc\xd2\xd2\x77\x14\x54\xa2\x30\x0c\x35\x29\xf7\xa4\xd8\x0b\x84\x38\x83\xbc") let ed25519_sig () = Mirage_crypto_ec.Ed25519.sign ~key:ed25519 msg_str let ecdsas = [ ("P256", `P256 (ecdsa_p256, ecdsa_p256_sig ())); ("P384", `P384 (ecdsa_p384, ecdsa_p384_sig ())); ("P521", `P521 (ecdsa_p521, ecdsa_p521_sig ())); ("Ed25519", `Ed25519 (ed25519, ed25519_sig ())); ] let ecdh_shares = [ ("P256", `P256 (Mirage_crypto_ec.P256.Dh.secret_of_octets "\x47\x0d\x57\x70\x6c\x77\x06\xb6\x8a\x3f\x42\x3a\xea\xf4\xff\x7f\xdd\x02\x49\x4a\x10\xd3\xe3\x81\xc3\xc1\x1f\x72\x76\x80\x2c\xdc" |> Result.get_ok |> fst, "\x04\x11\xb3\xfc\x82\x72\x1c\x26\x9a\x19\x90\x9a\x3b\x2f\xc2\x6d\x98\x95\x82\x6d\x0c\xfc\xbc\x1f\x76\x26\xe4\x88\xf0\x1f\x4c\xa6\xb5\xc5\xed\x76\xad\xee\x7a\xf8\x1b\xb2\x0b\x17\xcf\x23\x1c\xbf\x0c\x67\xdb\x02\x95\xd6\x8d\x1d\x92\xc2\xd2\xa5\xa8\x06\x38\xd7\x8d")); ("P384", `P384 (Mirage_crypto_ec.P384.Dh.secret_of_octets "\xee\x55\xe2\x9b\x61\x75\x2d\x5a\x3e\x52\x56\x56\xdb\x8b\xd8\xfe\x6f\x94\xfa\xb8\xaa\xcc\x9e\x92\xac\xff\x4c\x48\x12\xbf\x7a\x61\x87\xab\xa4\x6c\xc6\x0a\xb8\xf0\x8e\xfc\xf2\xd5\x74\x58\x4b\x74" |> Result.get_ok |> fst, "\x04\x04\x89\xcf\x24\xbc\x80\xbf\x89\xfd\xfe\x9c\x05\xec\xc3\x9f\x69\x16\xad\x45\x09\xd9\x39\x85\x97\x95\x0d\x3d\x24\xe8\x28\xf6\xbf\x56\xba\x4a\xd6\xd2\x1e\xd7\x86\x3b\xed\x68\xe4\x13\x36\x4b\xd4\xc7\xb1\xe9\x04\x7d\x36\x12\x4c\x69\x53\xbe\x7c\x61\x20\x9c\xb3\xfc\x56\x45\x2f\x73\x05\x29\x37\x83\xc7\xc0\xed\x92\x9d\x6c\x98\xc7\xbc\x97\xf6\x0a\x72\xed\x22\x69\xa8\xeb\x19\xbb\x7e\xe1\x31")); ("P521", `P521 (Mirage_crypto_ec.P521.Dh.secret_of_octets "\x00\xaa\x47\x0b\xa1\xcc\x84\x3b\xa3\x14\x82\x1e\x72\xde\x4c\xd2\x99\xae\xc1\xf2\x6e\x9d\x64\xa0\xd8\x7d\xb1\x8a\x3d\xa9\xf6\x5c\x45\xec\xfc\xc5\x61\x7f\xf0\xd7\x3b\x2e\x0e\x1c\xdf\xf8\x04\x8e\x01\xbe\x5e\x20\x14\x94\x12\xe7\xdb\xfa\xb7\xfe\xae\x24\x9b\x1b\xfa\x4d" |> Result.get_ok |> fst, "\x04\x00\x1d\x16\x29\xee\xb1\xc4\x25\xf9\x04\xd7\x55\x33\x00\x79\xd1\x3c\x77\xda\x92\x1e\x01\xcf\x50\xd7\x17\xe0\xd6\x85\x0a\x81\xa3\x90\x2b\xb9\x2a\x03\xfa\xea\xcb\xd6\x28\x9c\x15\x90\x68\x5a\x60\x44\xb5\xe9\x4d\xcf\xc4\x1d\xeb\x6a\x88\xdb\x62\xa8\x91\xb0\xb8\x93\xbb\x00\xe4\x2a\x66\xb2\xf0\x13\xbd\xd0\xd2\x7d\x8e\x07\xcb\x35\xfc\x3e\x2c\x2b\x22\xf9\x3e\xcf\xd5\xea\xb7\x88\x61\x97\xca\x07\x3c\x2c\x5e\x68\x31\xd6\x5e\x2d\x0b\x8a\xa4\x08\x43\x8e\x49\x54\x2f\x05\xf4\x1c\x57\x6d\xf7\x0e\x3c\xaf\x5b\xb8\x22\x7d\x48\x30\x94\xae\x58")); ("X25519", `X25519 (Mirage_crypto_ec.X25519.secret_of_octets "\x4c\x6d\xb7\xcf\x93\x5b\xcf\x84\x02\x61\x78\xd4\x0c\x95\x6a\xf0\x9d\x8e\x36\x32\x03\x49\x0d\x2c\x41\x62\x5a\xcb\x68\xb9\x31\xa4" |> Result.get_ok |> fst, "\xca\x19\x19\x3c\xf5\xc0\xb3\x8c\x61\xaa\x01\xc1\x72\xb2\xe9\x3d\x16\xf7\x50\xd0\x84\x62\x77\xad\x32\x2d\xe5\xe4\xfb\x33\x24\x29")); ] let bm name f = (name, fun () -> f name) let benchmarks = [ bm "rsa-generate" (fun name -> count name (fun bits -> Mirage_crypto_pk.Rsa.generate ~bits ()) string_of_int [1024;2048;4096]) ; bm "rsa-encrypt" (fun name -> count name (fun key -> Mirage_crypto_pk.Rsa.(encrypt ~key:(pub_of_priv key) msg_str)) (fun k -> string_of_int (Mirage_crypto_pk.Rsa.priv_bits k)) [rsa_1024;rsa_2048;rsa_4096]) ; bm "rsa-decrypt" (fun name -> count name (fun (key, msg) -> Mirage_crypto_pk.Rsa.(decrypt ~key msg)) (fun (k, _) -> string_of_int (Mirage_crypto_pk.Rsa.priv_bits k)) [rsa_1024,enc_1024 ; rsa_2048,enc_2048 ; rsa_4096,enc_4096]) ; bm "rsa-pkcs1-encrypt" (fun name -> count name (fun key -> Mirage_crypto_pk.Rsa.(PKCS1.encrypt ~key:(pub_of_priv key) msg_str)) (fun k -> string_of_int (Mirage_crypto_pk.Rsa.priv_bits k)) [rsa_1024;rsa_2048;rsa_4096]) ; bm "rsa-pkcs1-decrypt" (fun name -> count name (fun (key, msg) -> Mirage_crypto_pk.Rsa.(PKCS1.decrypt ~key msg)) (fun (k, _) -> string_of_int (Mirage_crypto_pk.Rsa.priv_bits k)) [rsa_1024,pkcs1_enc_1024 () ; rsa_2048,pkcs1_enc_2048 () ; rsa_4096,pkcs1_enc_4096 ()]) ; bm "rsa-pkcs1-sign" (fun name -> count name (fun key -> Mirage_crypto_pk.Rsa.PKCS1.sign ~hash:`SHA256 ~key (`Message msg_str)) (fun k -> string_of_int (Mirage_crypto_pk.Rsa.priv_bits k)) [rsa_1024;rsa_2048;rsa_4096]) ; bm "rsa-pkcs1-verify" (fun name -> count name (fun (key, signature) -> Mirage_crypto_pk.Rsa.(PKCS1.verify ~hashp:(fun _ -> true) ~key:(pub_of_priv key) ~signature (`Message msg_str))) (fun (k, _) -> string_of_int (Mirage_crypto_pk.Rsa.priv_bits k)) [rsa_1024,pkcs1_sig_1024 () ; rsa_2048,pkcs1_sig_2048 () ; rsa_4096,pkcs1_sig_4096 ()]) ; bm "rsa-pss-sign" (fun name -> count name (fun key -> PSS.sign ~key (`Message msg_str)) (fun k -> string_of_int (Mirage_crypto_pk.Rsa.priv_bits k)) [rsa_1024;rsa_2048;rsa_4096]) ; bm "rsa-pss-verify" (fun name -> count name (fun (key, signature) -> PSS.verify ~key:(Mirage_crypto_pk.Rsa.pub_of_priv key) ~signature (`Message msg_str)) (fun (k, _) -> string_of_int (Mirage_crypto_pk.Rsa.priv_bits k)) [rsa_1024,pss_sig_1024 () ; rsa_2048,pss_sig_2048 () ; rsa_4096,pss_sig_4096 ()]) ; bm "dsa-generate" (fun name -> count name (fun ks -> Mirage_crypto_pk.Dsa.generate ks) (function `Fips1024 -> "1024" | `Fips2048 -> "2048" | `Fips3072 -> "3072" | `Exactly (l, _) -> string_of_int l) [`Fips1024;`Fips2048;`Fips3072]); bm "dsa-sign" (fun name -> count name (fun key -> Mirage_crypto_pk.Dsa.sign ~key msg_str) (fun k -> string_of_int (Z.numbits k.p)) [dsa_1024;dsa_2048;dsa_3072]); bm "dsa-verify" (fun name -> count name (fun (key, signature) -> Mirage_crypto_pk.Dsa.(verify ~key:(pub_of_priv key) signature msg_str)) (fun (k, _) -> string_of_int (Z.numbits k.p)) [dsa_1024,dsa_sig_1024 () ; dsa_2048,dsa_sig_2048 () ; dsa_3072,dsa_sig_3072 ()]); bm "ecdsa-generate" (fun name -> let open Mirage_crypto_ec in count name (fun (_, x) -> match x with | `P256 _ -> P256.Dsa.generate () |> ignore | `P384 _ -> P384.Dsa.generate () |> ignore | `P521 _ -> P521.Dsa.generate () |> ignore | `Ed25519 _ -> Ed25519.generate () |> ignore ) fst ecdsas); bm "ecdsa-sign" (fun name -> let open Mirage_crypto_ec in count name (fun (_, x) -> match x with | `P256 (key, _) -> P256.Dsa.sign ~key msg_str_32 | `P384 (key, _) -> P384.Dsa.sign ~key msg_str_48 | `P521 (key, _) -> P521.Dsa.sign ~key msg_str_65 | `Ed25519 (key, _) -> Ed25519.sign ~key msg_str, "" ) fst ecdsas); bm "ecdsa-verify" (fun name -> let open Mirage_crypto_ec in count name (fun (_, x) -> match x with | `P256 (key, signature) -> P256.Dsa.(verify ~key:(pub_of_priv key) signature msg_str_32) | `P384 (key, signature) -> P384.Dsa.(verify ~key:(pub_of_priv key) signature msg_str_48) | `P521 (key, signature) -> P521.Dsa.(verify ~key:(pub_of_priv key) signature msg_str_65) | `Ed25519 (key, signature) -> Ed25519.(verify ~key:(pub_of_priv key) signature ~msg:msg_str) ) fst ecdsas); bm "dh-secret" (fun name -> count name (fun (_, group) -> Mirage_crypto_pk.Dh.gen_key group) fst dh_groups); bm "dh-share" (fun name -> count name (fun (_, (sec, share)) -> Mirage_crypto_pk.Dh.shared sec share) (fun ((g, _), _) -> g) dh_secrets); bm "ecdh-secret" (fun name -> let open Mirage_crypto_ec in count name (fun (_, x) -> match x with | `P256 _ -> P256.Dh.gen_key () |> ignore | `P384 _ -> P384.Dh.gen_key () |> ignore | `P521 _ -> P521.Dh.gen_key () |> ignore | `X25519 _ -> X25519.gen_key () |> ignore) fst ecdh_shares); bm "ecdh-share" (fun name -> let open Mirage_crypto_ec in count name (fun (_, x) -> match x with | `P256 (sec, share) -> P256.Dh.key_exchange sec share |> Result.get_ok |> ignore | `P384 (sec, share) -> P384.Dh.key_exchange sec share |> Result.get_ok |> ignore | `P521 (sec, share) -> P521.Dh.key_exchange sec share |> Result.get_ok |> ignore | `X25519 (sec, share) -> X25519.key_exchange sec share |> Result.get_ok |> ignore) fst ecdh_shares); bm "chacha20-poly1305" (fun name -> let key = Chacha20.of_secret (Mirage_crypto_rng.generate 32) and nonce = Mirage_crypto_rng.generate 8 in throughput_into ~add:Chacha20.tag_size name (fun dst cs -> Chacha20.authenticate_encrypt_into ~key ~nonce cs ~src_off:0 dst ~dst_off:0 ~tag_off:(String.length cs) (String.length cs))) ; bm "chacha20-poly1305-unsafe" (fun name -> let key = Chacha20.of_secret (Mirage_crypto_rng.generate 32) and nonce = Mirage_crypto_rng.generate 8 in throughput_into ~add:Chacha20.tag_size name (fun dst cs -> Chacha20.unsafe_authenticate_encrypt_into ~key ~nonce cs ~src_off:0 dst ~dst_off:0 ~tag_off:(String.length cs) (String.length cs))) ; bm "aes-128-ecb" (fun name -> let key = AES.ECB.of_secret (Mirage_crypto_rng.generate 16) in throughput_into name (fun dst cs -> AES.ECB.encrypt_into ~key cs ~src_off:0 dst ~dst_off:0 (String.length cs))) ; bm "aes-192-ecb" (fun name -> let key = AES.ECB.of_secret (Mirage_crypto_rng.generate 24) in throughput_into name (fun dst cs -> AES.ECB.encrypt_into ~key cs ~src_off:0 dst ~dst_off:0 (String.length cs))) ; bm "aes-192-ecb-unsafe" (fun name -> let key = AES.ECB.of_secret (Mirage_crypto_rng.generate 24) in throughput_into name (fun dst cs -> AES.ECB.unsafe_encrypt_into ~key cs ~src_off:0 dst ~dst_off:0 (String.length cs))) ; bm "aes-256-ecb" (fun name -> let key = AES.ECB.of_secret (Mirage_crypto_rng.generate 32) in throughput_into name (fun dst cs -> AES.ECB.encrypt_into ~key cs ~src_off:0 dst ~dst_off:0 (String.length cs))) ; bm "aes-256-ecb-unsafe" (fun name -> let key = AES.ECB.of_secret (Mirage_crypto_rng.generate 32) in throughput_into name (fun dst cs -> AES.ECB.unsafe_encrypt_into ~key cs ~src_off:0 dst ~dst_off:0 (String.length cs))) ; bm "aes-128-ecb-unsafe" (fun name -> let key = AES.ECB.of_secret (Mirage_crypto_rng.generate 16) in throughput_into name (fun dst cs -> AES.ECB.unsafe_encrypt_into ~key cs ~src_off:0 dst ~dst_off:0 (String.length cs))) ; bm "aes-128-cbc-e" (fun name -> let key = AES.CBC.of_secret (Mirage_crypto_rng.generate 16) and iv = Mirage_crypto_rng.generate 16 in throughput_into name (fun dst cs -> AES.CBC.encrypt_into ~key ~iv cs ~src_off:0 dst ~dst_off:0 (String.length cs))) ; bm "aes-128-cbc-e-unsafe" (fun name -> let key = AES.CBC.of_secret (Mirage_crypto_rng.generate 16) and iv = Mirage_crypto_rng.generate 16 in throughput_into name (fun dst cs -> AES.CBC.unsafe_encrypt_into ~key ~iv cs ~src_off:0 dst ~dst_off:0 (String.length cs))) ; bm "aes-128-cbc-e-unsafe-inplace" (fun name -> let key = AES.CBC.of_secret (Mirage_crypto_rng.generate 16) and iv = Mirage_crypto_rng.generate 16 in throughput name (fun cs -> let b = Bytes.unsafe_of_string cs in AES.CBC.unsafe_encrypt_into_inplace ~key ~iv b ~dst_off:0 (String.length cs))) ; bm "aes-128-cbc-d" (fun name -> let key = AES.CBC.of_secret (Mirage_crypto_rng.generate 16) and iv = Mirage_crypto_rng.generate 16 in throughput_into name (fun dst cs -> AES.CBC.decrypt_into ~key ~iv cs ~src_off:0 dst ~dst_off:0 (String.length cs))) ; bm "aes-128-cbc-d-unsafe" (fun name -> let key = AES.CBC.of_secret (Mirage_crypto_rng.generate 16) and iv = Mirage_crypto_rng.generate 16 in throughput_into name (fun dst cs -> AES.CBC.unsafe_decrypt_into ~key ~iv cs ~src_off:0 dst ~dst_off:0 (String.length cs))) ; bm "aes-128-ctr" (fun name -> let key = Mirage_crypto_rng.generate 16 |> AES.CTR.of_secret and ctr = Mirage_crypto_rng.generate 16 |> AES.CTR.ctr_of_octets in throughput_into name (fun dst cs -> AES.CTR.encrypt_into ~key ~ctr cs ~src_off:0 dst ~dst_off:0 (String.length cs))) ; bm "aes-128-ctr-unsafe" (fun name -> let key = Mirage_crypto_rng.generate 16 |> AES.CTR.of_secret and ctr = Mirage_crypto_rng.generate 16 |> AES.CTR.ctr_of_octets in throughput_into name (fun dst cs -> AES.CTR.unsafe_encrypt_into ~key ~ctr cs ~src_off:0 dst ~dst_off:0 (String.length cs))) ; bm "aes-128-gcm" (fun name -> let key = AES.GCM.of_secret (Mirage_crypto_rng.generate 16) and nonce = Mirage_crypto_rng.generate 12 in throughput_into ~add:AES.GCM.tag_size name (fun dst cs -> AES.GCM.authenticate_encrypt_into ~key ~nonce cs ~src_off:0 dst ~dst_off:0 ~tag_off:(String.length cs) (String.length cs))); bm "aes-128-gcm-unsafe" (fun name -> let key = AES.GCM.of_secret (Mirage_crypto_rng.generate 16) and nonce = Mirage_crypto_rng.generate 12 in throughput_into ~add:AES.GCM.tag_size name (fun dst cs -> AES.GCM.unsafe_authenticate_encrypt_into ~key ~nonce cs ~src_off:0 dst ~dst_off:0 ~tag_off:(String.length cs) (String.length cs))); bm "aes-128-ghash" (fun name -> let key = AES.GCM.of_secret (Mirage_crypto_rng.generate 16) and nonce = Mirage_crypto_rng.generate 12 in throughput_into ~add:AES.GCM.tag_size name (fun dst cs -> AES.GCM.authenticate_encrypt_into ~key ~nonce ~adata:cs "" ~src_off:0 dst ~dst_off:0 ~tag_off:0 0)); bm "aes-128-ghash-unsafe" (fun name -> let key = AES.GCM.of_secret (Mirage_crypto_rng.generate 16) and nonce = Mirage_crypto_rng.generate 12 in throughput_into ~add:AES.GCM.tag_size name (fun dst cs -> AES.GCM.unsafe_authenticate_encrypt_into ~key ~nonce ~adata:cs "" ~src_off:0 dst ~dst_off:0 ~tag_off:0 0)); bm "aes-128-ccm" (fun name -> let key = AES.CCM16.of_secret (Mirage_crypto_rng.generate 16) and nonce = Mirage_crypto_rng.generate 10 in throughput_into ~add:AES.CCM16.tag_size name (fun dst cs -> AES.CCM16.authenticate_encrypt_into ~key ~nonce cs ~src_off:0 dst ~dst_off:0 ~tag_off:(String.length cs) (String.length cs))); bm "aes-128-ccm-unsafe" (fun name -> let key = AES.CCM16.of_secret (Mirage_crypto_rng.generate 16) and nonce = Mirage_crypto_rng.generate 10 in throughput_into ~add:AES.CCM16.tag_size name (fun dst cs -> AES.CCM16.unsafe_authenticate_encrypt_into ~key ~nonce cs ~src_off:0 dst ~dst_off:0 ~tag_off:(String.length cs) (String.length cs))); bm "d3des-ecb" (fun name -> let key = DES.ECB.of_secret (Mirage_crypto_rng.generate 24) in throughput_into name (fun dst cs -> DES.ECB.encrypt_into ~key cs ~src_off:0 dst ~dst_off:0 (String.length cs))) ; bm "d3des-ecb-unsafe" (fun name -> let key = DES.ECB.of_secret (Mirage_crypto_rng.generate 24) in throughput_into name (fun dst cs -> DES.ECB.unsafe_encrypt_into ~key cs ~src_off:0 dst ~dst_off:0 (String.length cs))) ; bm "fortuna" (fun name -> begin[@alert "-deprecated"] Mirage_crypto_rng_unix.initialize (module Mirage_crypto_rng.Fortuna); throughput name (fun buf -> let buf = Bytes.unsafe_of_string buf in Mirage_crypto_rng.generate_into buf ~off:0 (Bytes.length buf)) end); bm "getentropy" (fun name -> Mirage_crypto_rng_unix.use_getentropy (); throughput name (fun buf -> let buf = Bytes.unsafe_of_string buf in Mirage_crypto_rng.generate_into buf ~off:0 (Bytes.length buf))) ; bm "urandom" (fun name -> Mirage_crypto_rng_unix.use_dev_urandom (); throughput name (fun buf -> let buf = Bytes.unsafe_of_string buf in Mirage_crypto_rng.generate_into buf ~off:0 (Bytes.length buf))) ; ] let help () = Printf.printf "available benchmarks:\n "; List.iter (fun (n, _) -> Printf.printf "%s " n) benchmarks ; Printf.printf "\n%!" let runv fs = Format.printf "accel: %a\n%!" (fun ppf -> List.iter @@ fun x -> Format.fprintf ppf "%s " @@ match x with `XOR -> "XOR" | `AES -> "AES" | `GHASH -> "GHASH") accelerated; Time.warmup () ; List.iter (fun f -> f ()) fs let () = let seed = "abcd" in let g = Mirage_crypto_rng.(create ~seed (module Fortuna)) in Mirage_crypto_rng.set_default_generator g; match Array.to_list Sys.argv with | _::(_::_ as args) -> begin try let fs = args |> List.map @@ fun n -> snd (benchmarks |> List.find @@ fun (n1, _) -> n = n1) in runv fs with Not_found -> help () end | _ -> help ()
mirage-crypto
2.0.2
ISC
https://github.com/mirage/mirage-crypto
git+https://github.com/mirage/mirage-crypto.git
ml
mirage-crypto-2.0.2/config/cfg.ml
let () = let c = Configurator.V1.create "mirage-crypto" in let ccomp_type_opt = Configurator.V1.ocaml_config_var c "ccomp_type" in let arch = let defines = Configurator.V1.C_define.import c ~includes:[] [("__x86_64__", Switch); ("__i386__", Switch); ("__powerpc64__", Switch); ("__s390x__", Switch); ("__aarch64__", Switch); ("_WIN64", Switch); ("_WIN32", Switch)] in match defines with | (_, Switch true) :: _ -> `x86_64 | _ :: (_, Switch true) :: _ -> `x86 | _ :: _ :: (_, Switch true) :: _ -> `ppc64 | _ :: _ :: _ :: (_, Switch true) :: _ -> `s390x | _ :: _ :: _ :: _ :: (_, Switch true) :: _ -> `arm64 | _ :: _ :: _ :: _ :: _ :: (_, Switch true) :: _ -> `x86_64 | _ :: _ :: _ :: _ :: _ :: _ :: (_, Switch true) :: _ -> `x86 | _ -> `unknown in let os = let defines = Configurator.V1.C_define.import c ~includes:[] [("__APPLE__", Switch)] in match defines with | (_, Switch true) :: _ -> `macos | _ -> `unknown in let accelerate_flags = match arch, ccomp_type_opt with | `x86_64, Some "msvc" -> [ "-DACCELERATE" ] | `x86_64, _ -> [ "-DACCELERATE"; "-mssse3"; "-maes"; "-mpclmul" ] | _ -> [] in let ent_flags = match arch, ccomp_type_opt with | (`x86_64 | `x86), Some "msvc" -> [ "-DENTROPY" ] | (`x86_64 | `x86), _ -> [ "-DENTROPY"; "-mrdrnd"; "-mrdseed" ] | _ -> [] in let std_flags = match ccomp_type_opt with | Some "msvc" -> ["/Wall"] | _ -> ["--std=c11"; "-Wall"; "-Wextra"; "-Wpedantic"; "-O3"] in let warn_flags = (* See #178, there may be false positives on ppc&s390 with no-stringop-overflow *) match arch, ccomp_type_opt with | _, Some "msvc" -> [ "/WX" ] | (`ppc64, _) | (`s390x, _) -> [ "-Wno-stringop-overflow"; "-Werror" ] | _ -> [ "-Werror" ] in let no_instcombine_on_macos = match arch, os with | `arm64, `macos -> let res = Configurator.V1.Process.run c "cc" ["-dumpversion"] in if String.trim res.stdout = "14.0.3" then ["-mllvm"; "--instcombine-max-iterations=0"] (* macOS instcombine miscompilation with clang 14.0.3 *) else [] | _ -> [] in let flags = std_flags @ no_instcombine_on_macos @ ent_flags in let opt_flags = flags @ accelerate_flags in Configurator.V1.Flags.write_sexp "cflags_optimized.sexp" opt_flags; Configurator.V1.Flags.write_sexp "cflags.sexp" flags; Configurator.V1.Flags.write_sexp "cflags_warn.sexp" warn_flags
mirage-crypto
2.0.2
ISC
https://github.com/mirage/mirage-crypto
git+https://github.com/mirage/mirage-crypto.git
dune
mirage-crypto-2.0.2/config/dune
(executables (names cfg) (libraries dune-configurator))
mirage-crypto
2.0.2
ISC
https://github.com/mirage/mirage-crypto
git+https://github.com/mirage/mirage-crypto.git
dune
mirage-crypto-2.0.2/ec/dune
(library (name mirage_crypto_ec) (public_name mirage-crypto-ec) (libraries eqaf mirage-crypto-rng digestif) (foreign_stubs (language c) (names p256_stubs np256_stubs p384_stubs np384_stubs p521_stubs np521_stubs curve25519_stubs) (include_dirs ../src/native) (flags (:standard -DNDEBUG) (:include cflags_optimized.sexp)))) (env (dev (c_flags (:include cflags_warn.sexp)))) (include_subdirs unqualified) (rule (targets cflags_optimized.sexp cflags_warn.sexp) (action (run ../config/cfg.exe)))
mirage-crypto
2.0.2
ISC
https://github.com/mirage/mirage-crypto
git+https://github.com/mirage/mirage-crypto.git
dune
mirage-crypto-2.0.2/ec/gen_tables/dune
(include_subdirs no) (executable (name gen_tables) (libraries mirage_crypto_ec))
mirage-crypto
2.0.2
ISC
https://github.com/mirage/mirage-crypto
git+https://github.com/mirage/mirage-crypto.git
ml
mirage-crypto-2.0.2/ec/gen_tables/gen_tables.ml
open Format let print_header name = printf {| /* Pre-computed %d-bit multiples of the generator point G for the curve %s, used for speeding up its scalar multiplication in point_operations.h. Generated by %s */|} Sys.word_size name Sys.argv.(0) let pp_array elem_fmt fmt arr = let fout = fprintf fmt in let len = Array.length arr in fout "@[<2>{@\n"; for i = 0 to len - 1 do elem_fmt fmt arr.(i); if i < len - 1 then printf ",@ " else printf "" done; fout "@]@,}" let div_round_up a b = (a / b) + if a mod b = 0 then 0 else 1 let pp_string_words ~wordsize fmt str = assert (String.length str * 8 mod wordsize = 0); let limbs = String.length str * 8 / wordsize in (* Truncate at the beginning (little-endian) *) let bytes = Bytes.unsafe_of_string str in (* let bytes = rev_str_bytes str in *) fprintf fmt "@[<2>{@\n"; for i = 0 to limbs - 1 do let index = i * (wordsize / 8) in (if wordsize = 64 then let w = Bytes.get_int64_le bytes index in fprintf fmt "%#016Lx" w else let w = Bytes.get_int32_le bytes index in fprintf fmt "%#08lx" w); if i < limbs - 1 then printf ",@ " else printf "" done; fprintf fmt "@]@,}" let check_shape tables = let fe_len = String.length tables.(0).(0).(0) in let table_len = fe_len * 2 in assert (Array.length tables = table_len); Array.iter (fun x -> assert (Array.length x = 15); Array.iter (fun x -> assert (Array.length x = 3); Array.iter (fun x -> assert (String.length x = fe_len)) x) x) tables let print_tables tables ~wordsize = let fe_len = String.length tables.(0).(0).(0) in printf "@[<2>static WORD generator_table[%d][15][3][LIMBS] = @," (fe_len * 2); pp_array (pp_array (pp_array (pp_string_words ~wordsize))) std_formatter tables; printf "@];@," let print_toplevel name wordsize (module P : Mirage_crypto_ec.Dh_dsa) = let tables = P.Dsa.Precompute.generator_tables () in assert (wordsize = Sys.word_size); check_shape tables; print_header name; if wordsize = 64 then printf "@[<v>#ifndef ARCH_64BIT@,\ #error \"Cannot use 64-bit tables on a 32-bit architecture\"@,\ #endif@,\ @]" else printf "@[<v>#ifdef ARCH_64BIT@,\ #error \"Cannot use 32-bit tables on a 64-bit architecture\"@,\ #endif@,\ @]"; print_tables ~wordsize tables let curves = Mirage_crypto_ec. [ ("p256", (module P256 : Dh_dsa)); ("p384", (module P384)); ("p521", (module P521)); ] let usage () = printf "Usage: gen_tables [%a] [64 | 32]@." (pp_print_list ~pp_sep:(fun fmt () -> pp_print_string fmt " | ") pp_print_string) (List.map fst curves) let go = let name, curve, wordsize = try let name, curve = List.find (fun (name, _) -> name = Sys.argv.(1)) curves in (name, curve, int_of_string Sys.argv.(2)) with _ -> usage (); exit 1 in print_toplevel name wordsize curve
mirage-crypto
2.0.2
ISC
https://github.com/mirage/mirage-crypto
git+https://github.com/mirage/mirage-crypto.git
ml
mirage-crypto-2.0.2/ec/mirage_crypto_ec.ml
type error = [ | `Invalid_format | `Invalid_length | `Invalid_range | `Not_on_curve | `At_infinity | `Low_order ] let error_to_string = function | `Invalid_format -> "invalid format" | `Not_on_curve -> "point is not on curve" | `At_infinity -> "point is at infinity" | `Invalid_length -> "invalid length" | `Invalid_range -> "invalid range" | `Low_order -> "low order" let pp_error fmt e = Format.fprintf fmt "Cannot parse point: %s" (error_to_string e) let rev_string buf = let len = String.length buf in let res = Bytes.create len in for i = 0 to len - 1 do Bytes.set res (len - 1 - i) (String.get buf i) done ; Bytes.unsafe_to_string res exception Message_too_long let bit_at buf i = let byte_num = i / 8 in let bit_num = i mod 8 in let byte = String.get_uint8 buf byte_num in byte land (1 lsl bit_num) <> 0 module type Dh = sig type secret val secret_of_octets : ?compress:bool -> string -> (secret * string, error) result val secret_to_octets : secret -> string val gen_key : ?compress:bool -> ?g:Mirage_crypto_rng.g -> unit -> secret * string val key_exchange : secret -> string -> (string, error) result end module type Dsa = sig type priv type pub val byte_length : int val bit_length : int val priv_of_octets : string -> (priv, error) result val priv_to_octets : priv -> string val pub_of_octets : string -> (pub, error) result val pub_to_octets : ?compress:bool -> pub -> string val pub_of_priv : priv -> pub val generate : ?g:Mirage_crypto_rng.g -> unit -> priv * pub val sign : key:priv -> ?k:string -> string -> string * string val verify : key:pub -> string * string -> string -> bool module K_gen (H : Digestif.S) : sig val generate : key:priv -> string -> string end module Precompute : sig val generator_tables : unit -> string array array array end end module type Dh_dsa = sig module Dh : Dh module Dsa : Dsa end type field_element = string type out_field_element = bytes module type Parameters = sig val a : field_element val b : field_element val g_x : field_element val g_y : field_element val p : field_element val n : field_element val pident: string val byte_length : int val bit_length : int val fe_length : int val first_byte_bits : int option end type point = { f_x : field_element; f_y : field_element; f_z : field_element } type out_point = { m_f_x : out_field_element; m_f_y : out_field_element; m_f_z : out_field_element } type scalar = Scalar of string module type Foreign = sig val mul : out_field_element -> field_element -> field_element -> unit val sub : out_field_element -> field_element -> field_element -> unit val add : out_field_element -> field_element -> field_element -> unit val to_montgomery : out_field_element -> field_element -> unit val from_octets : out_field_element -> string -> unit val set_one : out_field_element -> unit val nz : field_element -> bool val sqr : out_field_element -> field_element -> unit val from_montgomery : out_field_element -> field_element -> unit val to_octets : bytes -> field_element -> unit val inv : out_field_element -> field_element -> unit val select_c : out_field_element -> bool -> field_element -> field_element -> unit val double_c : out_point -> point -> unit val add_c : out_point -> point -> point -> unit val scalar_mult_base_c : out_point -> string -> unit end module type Field_element = sig val mul : field_element -> field_element -> field_element val sub : field_element -> field_element -> field_element val add : field_element -> field_element -> field_element val from_montgomery : field_element -> field_element val zero : field_element val one : field_element val nz : field_element -> bool val sqr : field_element -> field_element val inv : field_element -> field_element val select : bool -> then_:field_element -> else_:field_element -> field_element val from_be_octets : string -> field_element val to_octets : field_element -> string val double_point : point -> point val add_point : point -> point -> point val scalar_mult_base_point : scalar -> point end module Make_field_element (P : Parameters) (F : Foreign) : Field_element = struct let b_uts b = Bytes.unsafe_to_string b let create () = Bytes.create P.fe_length let mul a b = let tmp = create () in F.mul tmp a b; b_uts tmp let sub a b = let tmp = create () in F.sub tmp a b; b_uts tmp let add a b = let tmp = create () in F.add tmp a b; b_uts tmp let from_montgomery a = let tmp = create () in F.from_montgomery tmp a; b_uts tmp let zero = let b = Bytes.make P.fe_length '\000' in b_uts b let one = let fe = create () in F.set_one fe; b_uts fe let nz a = F.nz a let sqr a = let tmp = create () in F.sqr tmp a; b_uts tmp let inv a = let tmp = create () in F.inv tmp a; b_uts tmp let select bit ~then_ ~else_ = let tmp = create () in F.select_c tmp bit then_ else_; b_uts tmp let from_be_octets buf = let buf_rev = rev_string buf in let tmp = create () in F.from_octets tmp buf_rev; F.to_montgomery tmp (b_uts tmp); b_uts tmp let create_octets () = Bytes.create P.byte_length let to_octets fe = let tmp = create_octets () in F.to_octets tmp fe; b_uts tmp let out_point () = { m_f_x = create (); m_f_y = create (); m_f_z = create (); } let out_p_to_p p = { f_x = b_uts p.m_f_x ; f_y = b_uts p.m_f_y ; f_z = b_uts p.m_f_z ; } let double_point p = let tmp = out_point () in F.double_c tmp p; out_p_to_p tmp let add_point a b = let tmp = out_point () in F.add_c tmp a b; out_p_to_p tmp let scalar_mult_base_point (Scalar d) = let tmp = out_point () in F.scalar_mult_base_c tmp d; out_p_to_p tmp end module type Point = sig val at_infinity : unit -> point val is_infinity : point -> bool val add : point -> point -> point val double : point -> point val of_octets : string -> (point, error) result val to_octets : compress:bool -> point -> string val to_affine_raw : point -> (field_element * field_element) option val x_of_finite_point : point -> string val params_g : point val select : bool -> then_:point -> else_:point -> point val scalar_mult_base : scalar -> point end module Make_point (P : Parameters) (F : Foreign) : Point = struct module Fe = Make_field_element(P)(F) let at_infinity () = let f_x = Fe.one in let f_y = Fe.one in let f_z = Fe.zero in { f_x; f_y; f_z } let is_infinity (p : point) = not (Fe.nz p.f_z) let is_solution_to_curve_equation = let a = Fe.from_be_octets P.a in let b = Fe.from_be_octets P.b in fun ~x ~y -> let x3 = Fe.mul x x in let x3 = Fe.mul x3 x in let ax = Fe.mul a x in let y2 = Fe.mul y y in let sum = Fe.add x3 ax in let sum = Fe.add sum b in let sum = Fe.sub sum y2 in not (Fe.nz sum) let check_coordinate buf = (* ensure buf < p: *) match Eqaf.compare_be_with_len ~len:P.byte_length buf P.p >= 0 with | true -> None | exception Invalid_argument _ -> None | false -> Some (Fe.from_be_octets buf) (** Convert coordinates to a finite point ensuring: - x < p - y < p - y^2 = ax^3 + ax + b *) let validate_finite_point ~x ~y = match (check_coordinate x, check_coordinate y) with | Some f_x, Some f_y -> if is_solution_to_curve_equation ~x:f_x ~y:f_y then let f_z = Fe.one in Ok { f_x; f_y; f_z } else Error `Not_on_curve | _ -> Error `Invalid_range let to_affine_raw p = if is_infinity p then None else let z1 = Fe.from_montgomery p.f_z in let z2 = Fe.inv z1 in let z1 = Fe.sqr z2 in let z1 = Fe.from_montgomery z1 in let x = Fe.mul p.f_x z1 in let z1 = Fe.mul z1 z2 in let y = Fe.mul p.f_y z1 in Some (x, y) let to_affine p = Option.map (fun (x, y) -> Fe.to_octets x, Fe.to_octets y) (to_affine_raw p) let to_octets ~compress p = let buf = match to_affine p with | None -> String.make 1 '\000' | Some (x, y) -> let len_x = String.length x and len_y = String.length y in let res = Bytes.create (1 + len_x + len_y) in Bytes.set res 0 '\004' ; let rev_x = rev_string x and rev_y = rev_string y in Bytes.unsafe_blit_string rev_x 0 res 1 len_x ; Bytes.unsafe_blit_string rev_y 0 res (1 + len_x) len_y ; Bytes.unsafe_to_string res in if compress then let out = Bytes.create (P.byte_length + 1) in let ident = 2 + (String.get_uint8 buf (P.byte_length * 2)) land 1 in Bytes.unsafe_blit_string buf 1 out 1 P.byte_length; Bytes.set_uint8 out 0 ident; Bytes.unsafe_to_string out else buf let double p = Fe.double_point p let add p q = Fe.add_point p q let x_of_finite_point p = match to_affine p with None -> assert false | Some (x, _) -> rev_string x let params_g = match validate_finite_point ~x:P.g_x ~y:P.g_y with | Ok p -> p | Error _ -> assert false let select bit ~then_ ~else_ = { f_x = Fe.select bit ~then_:then_.f_x ~else_:else_.f_x; f_y = Fe.select bit ~then_:then_.f_y ~else_:else_.f_y; f_z = Fe.select bit ~then_:then_.f_z ~else_:else_.f_z; } let pow x exp = let r0 = ref Fe.one in let r1 = ref x in for i = P.byte_length * 8 - 1 downto 0 do let bit = bit_at exp i in let multiplied = Fe.mul !r0 !r1 in let r0_sqr = Fe.sqr !r0 in let r1_sqr = Fe.sqr !r1 in r0 := Fe.select bit ~then_:multiplied ~else_:r0_sqr; r1 := Fe.select bit ~then_:r1_sqr ~else_:multiplied; done; !r0 let decompress = (* When p = 4*k+3, as is the case of NIST-P256, there is an efficient square root algorithm to recover the y, as follows: Given the compact representation of Q as x, y2 = x^3 + a*x + b y' = y2^((p+1)/4) y = min(y',p-y') Q=(x,y) is the canonical representation of the point *) let pident = P.pident (* (Params.p + 1) / 4*) in let a = Fe.from_be_octets P.a in let b = Fe.from_be_octets P.b in let p = Fe.from_be_octets P.p in fun pk -> let x = Fe.from_be_octets (String.sub pk 1 P.byte_length) in let x3 = Fe.mul x x in let x3 = Fe.mul x3 x in (* x3 *) let ax = Fe.mul a x in (* ax *) let sum = Fe.add x3 ax in let sum = Fe.add sum b in (* y^2 *) let y = pow sum pident in (* https://tools.ietf.org/id/draft-jivsov-ecc-compact-00.xml#sqrt point 4.3*) let y' = Fe.sub p y in let y = Fe.from_montgomery y in let y_struct = Fe.to_octets y in (* number must not be in montgomery domain*) let y_struct = rev_string y_struct in let y' = Fe.from_montgomery y' in let y_struct2 = Fe.to_octets y' in (* number must not be in montgomery domain*) let y_struct2 = rev_string y_struct2 in let ident = String.get_uint8 pk 0 in let signY = 2 + (String.get_uint8 y_struct (P.byte_length - 1)) land 1 in let res = if Int.equal signY ident then y_struct else y_struct2 in let out = Bytes.create ((P.byte_length * 2) + 1) in Bytes.set out 0 '\004'; Bytes.unsafe_blit_string pk 1 out 1 P.byte_length; Bytes.unsafe_blit_string res 0 out (P.byte_length + 1) P.byte_length; Bytes.unsafe_to_string out let of_octets buf = let len = P.byte_length in if String.length buf = 0 then Error `Invalid_format else let of_octets buf = let x = String.sub buf 1 len in let y = String.sub buf (1 + len) len in validate_finite_point ~x ~y in match String.get_uint8 buf 0 with | 0x00 when String.length buf = 1 -> Ok (at_infinity ()) | 0x02 | 0x03 when String.length P.pident > 0 -> let decompressed = decompress buf in of_octets decompressed | 0x04 when String.length buf = 1 + len + len -> of_octets buf | 0x00 | 0x04 -> Error `Invalid_length | _ -> Error `Invalid_format let scalar_mult_base = Fe.scalar_mult_base_point end module type Scalar = sig val not_zero : string -> bool val is_in_range : string -> bool val of_octets : string -> (scalar, error) result val to_octets : scalar -> string val scalar_mult : scalar -> point -> point val scalar_mult_base : scalar -> point val generator_tables : unit -> field_element array array array end module Make_scalar (Param : Parameters) (P : Point) : Scalar = struct let not_zero = let zero = String.make Param.byte_length '\000' in fun buf -> not (Eqaf.equal buf zero) let is_in_range buf = not_zero buf && Eqaf.compare_be_with_len ~len:Param.byte_length Param.n buf > 0 let of_octets buf = match is_in_range buf with | exception Invalid_argument _ -> Error `Invalid_length | true -> Ok (Scalar (rev_string buf)) | false -> Error `Invalid_range let to_octets (Scalar buf) = rev_string buf (* Branchless Montgomery ladder method *) let scalar_mult (Scalar s) p = let r0 = ref (P.at_infinity ()) in let r1 = ref p in for i = Param.byte_length * 8 - 1 downto 0 do let bit = bit_at s i in let sum = P.add !r0 !r1 in let r0_double = P.double !r0 in let r1_double = P.double !r1 in r0 := P.select bit ~then_:sum ~else_:r0_double; r1 := P.select bit ~then_:r1_double ~else_:sum done; !r0 (* Specialization of [scalar_mult d p] when [p] is the generator *) let scalar_mult_base = P.scalar_mult_base (* Pre-compute multiples of the generator point returns the tables along with the number of significant bytes *) let generator_tables () = let len = Param.fe_length * 2 in let one_table _ = Array.init 15 (fun _ -> P.at_infinity ()) in let table = Array.init len one_table in let base = ref P.params_g in for i = 0 to len - 1 do table.(i).(0) <- !base; for j = 1 to 14 do table.(i).(j) <- P.add !base table.(i).(j - 1) done; base := P.double !base; base := P.double !base; base := P.double !base; base := P.double !base done; let convert {f_x; f_y; f_z} = [|f_x; f_y; f_z|] in Array.map (Array.map convert) table end module Make_dh (Param : Parameters) (P : Point) (S : Scalar) : Dh = struct let point_of_octets c = match P.of_octets c with | Ok p when not (P.is_infinity p) -> Ok p | Ok _ -> Error `At_infinity | Error _ as e -> e let point_to_octets = P.to_octets type secret = scalar let share ?(compress = false) private_key = let public_key = S.scalar_mult_base private_key in point_to_octets ~compress public_key let secret_of_octets ?compress s = match S.of_octets s with | Ok p -> Ok (p, share ?compress p) | Error _ as e -> e let secret_to_octets s = S.to_octets s let rec generate_private_key ?g () = let candidate = Mirage_crypto_rng.generate ?g Param.byte_length in match S.of_octets candidate with | Ok secret -> secret | Error _ -> generate_private_key ?g () let gen_key ?compress ?g () = let private_key = generate_private_key ?g () in private_key, share ?compress private_key let key_exchange secret received = match point_of_octets received with | Error _ as err -> err | Ok shared -> Ok (P.x_of_finite_point (S.scalar_mult secret shared)) end module type Foreign_n = sig val mul : out_field_element -> field_element -> field_element -> unit val add : out_field_element -> field_element -> field_element -> unit val inv : out_field_element -> field_element -> unit val one : out_field_element -> unit val from_bytes : out_field_element -> string -> unit val to_bytes : bytes -> field_element -> unit val from_montgomery : out_field_element -> field_element -> unit val to_montgomery : out_field_element -> field_element -> unit end module type Fn = sig val from_be_octets : string -> field_element val to_be_octets : field_element -> string val mul : field_element -> field_element -> field_element val add : field_element -> field_element -> field_element val inv : field_element -> field_element val one : field_element val from_montgomery : field_element -> field_element val to_montgomery : field_element -> field_element end module Make_Fn (P : Parameters) (F : Foreign_n) : Fn = struct let b_uts = Bytes.unsafe_to_string let create () = Bytes.create P.fe_length let create_octets () = Bytes.create P.byte_length let from_be_octets v = let v' = create () in F.from_bytes v' (rev_string v); F.to_montgomery v' (b_uts v'); b_uts v' let to_be_octets v = let buf = create_octets () in F.to_bytes buf v; rev_string (b_uts buf) let mul a b = let tmp = create () in F.mul tmp a b; b_uts tmp let add a b = let tmp = create () in F.add tmp a b; b_uts tmp let inv a = let tmp = create () in F.inv tmp a; F.to_montgomery tmp (b_uts tmp); b_uts tmp let one = let tmp = create () in F.one tmp; b_uts tmp let from_montgomery a = let tmp = create () in F.from_montgomery tmp a; b_uts tmp let to_montgomery a = let tmp = create () in F.to_montgomery tmp a; b_uts tmp end module Make_dsa (Param : Parameters) (F : Fn) (P : Point) (S : Scalar) (H : Digestif.S) = struct type priv = scalar let byte_length = Param.byte_length let bit_length = Param.bit_length let priv_of_octets= S.of_octets let priv_to_octets = S.to_octets let padded msg = let l = String.length msg in let bl = Param.byte_length in let first_byte_ok () = match Param.first_byte_bits with | None -> true | Some m -> (String.get_uint8 msg 0) land (0xFF land (lnot m)) = 0 in if l > bl || (l = bl && not (first_byte_ok ())) then raise Message_too_long else if l = bl then msg else ( let res = Bytes.make bl '\000' in Bytes.unsafe_blit_string msg 0 res (bl - l) l ; Bytes.unsafe_to_string res ) (* RFC 6979: compute a deterministic k *) module K_gen (H : Digestif.S) = struct let drbg : 'a Mirage_crypto_rng.generator = let module M = Mirage_crypto_rng.Hmac_drbg (H) in (module M) let g ~key msg = let g = Mirage_crypto_rng.create ~strict:true drbg in Mirage_crypto_rng.reseed ~g (S.to_octets key ^ msg); g (* Defined in RFC 6979 sec 2.3.2 with - blen = 8 * Param.byte_length - qlen = Param.bit_length *) let bits2int r = (* keep qlen *leftmost* bits *) let shift = (8 * Param.byte_length) - Param.bit_length in if shift = 0 then Bytes.unsafe_to_string r else (* Assuming shift is < 8 *) let r' = Bytes.create Param.byte_length in let p = ref 0x00 in for i = 0 to Param.byte_length - 1 do let x = Bytes.get_uint8 r i in let v = (x lsr shift) lor (!p lsl (8 - shift)) in p := x; Bytes.set_uint8 r' i v done; Bytes.unsafe_to_string r' (* take qbit length, and ensure it is suitable for ECDSA (> 0 & < n) *) let gen g = let rec go () = let b = Bytes.create Param.byte_length in Mirage_crypto_rng.generate_into ~g b Param.byte_length; (* truncate to the desired number of bits *) let r = bits2int b in if S.is_in_range r then r else go () in go () let generate ~key buf = gen (g ~key (padded buf)) end module K_gen_default = K_gen(H) type pub = point let pub_of_octets = P.of_octets let pub_to_octets ?(compress = false) pk = P.to_octets ~compress pk let generate ?g () = (* FIPS 186-4 B 4.2 *) let d = let rec one () = match S.of_octets (Mirage_crypto_rng.generate ?g Param.byte_length) with | Ok x -> x | Error _ -> one () in one () in let q = S.scalar_mult_base d in (d, q) let x_of_finite_point_mod_n p = match P.to_affine_raw p with | None -> None | Some (x, _) -> let x = F.to_montgomery x in let x = F.mul x F.one in let x = F.from_montgomery x in Some (F.to_be_octets x) let sign ~key ?k msg = let msg = padded msg in let e = F.from_be_octets msg in let g = K_gen_default.g ~key msg in let rec do_sign g = let again () = match k with | None -> do_sign g | Some _ -> invalid_arg "k not suitable" in let k' = match k with None -> K_gen_default.gen g | Some k -> k in let ksc = match S.of_octets k' with | Ok ksc -> ksc | Error _ -> invalid_arg "k not in range" (* if no k is provided, this cannot happen since K_gen_*.gen already preserves the Scalar invariants *) in let point = S.scalar_mult_base ksc in match x_of_finite_point_mod_n point with | None -> again () | Some r -> let r_mon = F.from_be_octets r in let kmon = F.from_be_octets k' in let kinv = F.inv kmon in let dmon = F.from_be_octets (S.to_octets key) in let rd = F.mul r_mon dmon in let cmon = F.add e rd in let smon = F.mul kinv cmon in let s = F.from_montgomery smon in let s = F.to_be_octets s in if S.not_zero s && S.not_zero r then r, s else again () in do_sign g let pub_of_priv priv = S.scalar_mult_base priv let verify ~key (r, s) msg = try let r = padded r and s = padded s in if not (S.is_in_range r && S.is_in_range s) then false else let msg = padded msg in let z = F.from_be_octets msg in let s_mon = F.from_be_octets s in let s_inv = F.inv s_mon in let u1 = F.mul z s_inv in let r_mon = F.from_be_octets r in let u2 = F.mul r_mon s_inv in let u1 = F.from_montgomery u1 in let u2 = F.from_montgomery u2 in match S.of_octets (F.to_be_octets u1), S.of_octets (F.to_be_octets u2) with | Ok u1, Ok u2 -> let point = P.add (S.scalar_mult_base u1) (S.scalar_mult u2 key) in begin match x_of_finite_point_mod_n point with | None -> false (* point is infinity *) | Some r' -> String.equal r r' end | Error _, _ | _, Error _ -> false with | Message_too_long -> false module Precompute = struct let generator_tables = S.generator_tables end end module P256 : Dh_dsa = struct module Params = struct let a = "\xFF\xFF\xFF\xFF\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFC" let b = "\x5A\xC6\x35\xD8\xAA\x3A\x93\xE7\xB3\xEB\xBD\x55\x76\x98\x86\xBC\x65\x1D\x06\xB0\xCC\x53\xB0\xF6\x3B\xCE\x3C\x3E\x27\xD2\x60\x4B" let g_x = "\x6B\x17\xD1\xF2\xE1\x2C\x42\x47\xF8\xBC\xE6\xE5\x63\xA4\x40\xF2\x77\x03\x7D\x81\x2D\xEB\x33\xA0\xF4\xA1\x39\x45\xD8\x98\xC2\x96" let g_y = "\x4F\xE3\x42\xE2\xFE\x1A\x7F\x9B\x8E\xE7\xEB\x4A\x7C\x0F\x9E\x16\x2B\xCE\x33\x57\x6B\x31\x5E\xCE\xCB\xB6\x40\x68\x37\xBF\x51\xF5" let p = "\xFF\xFF\xFF\xFF\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF" let n = "\xFF\xFF\xFF\xFF\x00\x00\x00\x00\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xBC\xE6\xFA\xAD\xA7\x17\x9E\x84\xF3\xB9\xCA\xC2\xFC\x63\x25\x51" let pident = "\x3F\xFF\xFF\xFF\xC0\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" |> rev_string (* (Params.p + 1) / 4*) let byte_length = 32 let bit_length = 256 let fe_length = 32 let first_byte_bits = None end module Foreign = struct external mul : out_field_element -> field_element -> field_element -> unit = "mc_p256_mul" [@@noalloc] external sub : out_field_element -> field_element -> field_element -> unit = "mc_p256_sub" [@@noalloc] external add : out_field_element -> field_element -> field_element -> unit = "mc_p256_add" [@@noalloc] external to_montgomery : out_field_element -> field_element -> unit = "mc_p256_to_montgomery" [@@noalloc] external from_octets : out_field_element -> string -> unit = "mc_p256_from_bytes" [@@noalloc] external set_one : out_field_element -> unit = "mc_p256_set_one" [@@noalloc] external nz : field_element -> bool = "mc_p256_nz" [@@noalloc] external sqr : out_field_element -> field_element -> unit = "mc_p256_sqr" [@@noalloc] external from_montgomery : out_field_element -> field_element -> unit = "mc_p256_from_montgomery" [@@noalloc] external to_octets : bytes -> field_element -> unit = "mc_p256_to_bytes" [@@noalloc] external inv : out_field_element -> field_element -> unit = "mc_p256_inv" [@@noalloc] external select_c : out_field_element -> bool -> field_element -> field_element -> unit = "mc_p256_select" [@@noalloc] external double_c : out_point -> point -> unit = "mc_p256_point_double" [@@noalloc] external add_c : out_point -> point -> point -> unit = "mc_p256_point_add" [@@noalloc] external scalar_mult_base_c : out_point -> string -> unit = "mc_p256_scalar_mult_base" [@@noalloc] end module Foreign_n = struct external mul : out_field_element -> field_element -> field_element -> unit = "mc_np256_mul" [@@noalloc] external add : out_field_element -> field_element -> field_element -> unit = "mc_np256_add" [@@noalloc] external inv : out_field_element -> field_element -> unit = "mc_np256_inv" [@@noalloc] external one : out_field_element -> unit = "mc_np256_one" [@@noalloc] external from_bytes : out_field_element -> string -> unit = "mc_np256_from_bytes" [@@noalloc] external to_bytes : bytes -> field_element -> unit = "mc_np256_to_bytes" [@@noalloc] external from_montgomery : out_field_element -> field_element -> unit = "mc_np256_from_montgomery" [@@noalloc] external to_montgomery : out_field_element -> field_element -> unit = "mc_np256_to_montgomery" [@@noalloc] end module P = Make_point(Params)(Foreign) module S = Make_scalar(Params)(P) module Dh = Make_dh(Params)(P)(S) module Fn = Make_Fn(Params)(Foreign_n) module Dsa = Make_dsa(Params)(Fn)(P)(S)(Digestif.SHA256) end module P384 : Dh_dsa = struct module Params = struct let a = "\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFE\xFF\xFF\xFF\xFF\x00\x00\x00\x00\x00\x00\x00\x00\xFF\xFF\xFF\xFC" let b = "\xB3\x31\x2F\xA7\xE2\x3E\xE7\xE4\x98\x8E\x05\x6B\xE3\xF8\x2D\x19\x18\x1D\x9C\x6E\xFE\x81\x41\x12\x03\x14\x08\x8F\x50\x13\x87\x5A\xC6\x56\x39\x8D\x8A\x2E\xD1\x9D\x2A\x85\xC8\xED\xD3\xEC\x2A\xEF" let g_x = "\xAA\x87\xCA\x22\xBE\x8B\x05\x37\x8E\xB1\xC7\x1E\xF3\x20\xAD\x74\x6E\x1D\x3B\x62\x8B\xA7\x9B\x98\x59\xF7\x41\xE0\x82\x54\x2A\x38\x55\x02\xF2\x5D\xBF\x55\x29\x6C\x3A\x54\x5E\x38\x72\x76\x0A\xB7" let g_y = "\x36\x17\xde\x4a\x96\x26\x2c\x6f\x5d\x9e\x98\xbf\x92\x92\xdc\x29\xf8\xf4\x1d\xbd\x28\x9a\x14\x7c\xe9\xda\x31\x13\xb5\xf0\xb8\xc0\x0a\x60\xb1\xce\x1d\x7e\x81\x9d\x7a\x43\x1d\x7c\x90\xea\x0e\x5f" let p = "\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFE\xFF\xFF\xFF\xFF\x00\x00\x00\x00\x00\x00\x00\x00\xFF\xFF\xFF\xFF" let n = "\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xC7\x63\x4D\x81\xF4\x37\x2D\xDF\x58\x1A\x0D\xB2\x48\xB0\xA7\x7A\xEC\xEC\x19\x6A\xCC\xC5\x29\x73" let pident = "\x3F\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xBF\xFF\xFF\xFF\xC0\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00" |> rev_string (* (Params.p + 1) / 4*) let byte_length = 48 let bit_length = 384 let fe_length = 48 let first_byte_bits = None end module Foreign = struct external mul : out_field_element -> field_element -> field_element -> unit = "mc_p384_mul" [@@noalloc] external sub : out_field_element -> field_element -> field_element -> unit = "mc_p384_sub" [@@noalloc] external add : out_field_element -> field_element -> field_element -> unit = "mc_p384_add" [@@noalloc] external to_montgomery : out_field_element -> field_element -> unit = "mc_p384_to_montgomery" [@@noalloc] external from_octets : out_field_element -> string -> unit = "mc_p384_from_bytes" [@@noalloc] external set_one : out_field_element -> unit = "mc_p384_set_one" [@@noalloc] external nz : field_element -> bool = "mc_p384_nz" [@@noalloc] external sqr : out_field_element -> field_element -> unit = "mc_p384_sqr" [@@noalloc] external from_montgomery : out_field_element -> field_element -> unit = "mc_p384_from_montgomery" [@@noalloc] external to_octets : bytes -> field_element -> unit = "mc_p384_to_bytes" [@@noalloc] external inv : out_field_element -> field_element -> unit = "mc_p384_inv" [@@noalloc] external select_c : out_field_element -> bool -> field_element -> field_element -> unit = "mc_p384_select" [@@noalloc] external double_c : out_point -> point -> unit = "mc_p384_point_double" [@@noalloc] external add_c : out_point -> point -> point -> unit = "mc_p384_point_add" [@@noalloc] external scalar_mult_base_c : out_point -> string -> unit = "mc_p384_scalar_mult_base" [@@noalloc] end module Foreign_n = struct external mul : out_field_element -> field_element -> field_element -> unit = "mc_np384_mul" [@@noalloc] external add : out_field_element -> field_element -> field_element -> unit = "mc_np384_add" [@@noalloc] external inv : out_field_element -> field_element -> unit = "mc_np384_inv" [@@noalloc] external one : out_field_element -> unit = "mc_np384_one" [@@noalloc] external from_bytes : out_field_element -> string -> unit = "mc_np384_from_bytes" [@@noalloc] external to_bytes : bytes -> field_element -> unit = "mc_np384_to_bytes" [@@noalloc] external from_montgomery : out_field_element -> field_element -> unit = "mc_np384_from_montgomery" [@@noalloc] external to_montgomery : out_field_element -> field_element -> unit = "mc_np384_to_montgomery" [@@noalloc] end module P = Make_point(Params)(Foreign) module S = Make_scalar(Params)(P) module Dh = Make_dh(Params)(P)(S) module Fn = Make_Fn(Params)(Foreign_n) module Dsa = Make_dsa(Params)(Fn)(P)(S)(Digestif.SHA384) end module P521 : Dh_dsa = struct module Params = struct let a = "\x01\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFC" let b = "\x00\x51\x95\x3E\xB9\x61\x8E\x1C\x9A\x1F\x92\x9A\x21\xA0\xB6\x85\x40\xEE\xA2\xDA\x72\x5B\x99\xB3\x15\xF3\xB8\xB4\x89\x91\x8E\xF1\x09\xE1\x56\x19\x39\x51\xEC\x7E\x93\x7B\x16\x52\xC0\xBD\x3B\xB1\xBF\x07\x35\x73\xDF\x88\x3D\x2C\x34\xF1\xEF\x45\x1F\xD4\x6B\x50\x3F\x00" let g_x = "\x00\xC6\x85\x8E\x06\xB7\x04\x04\xE9\xCD\x9E\x3E\xCB\x66\x23\x95\xB4\x42\x9C\x64\x81\x39\x05\x3F\xB5\x21\xF8\x28\xAF\x60\x6B\x4D\x3D\xBA\xA1\x4B\x5E\x77\xEF\xE7\x59\x28\xFE\x1D\xC1\x27\xA2\xFF\xA8\xDE\x33\x48\xB3\xC1\x85\x6A\x42\x9B\xF9\x7E\x7E\x31\xC2\xE5\xBD\x66" let g_y = "\x01\x18\x39\x29\x6a\x78\x9a\x3b\xc0\x04\x5c\x8a\x5f\xb4\x2c\x7d\x1b\xd9\x98\xf5\x44\x49\x57\x9b\x44\x68\x17\xaf\xbd\x17\x27\x3e\x66\x2c\x97\xee\x72\x99\x5e\xf4\x26\x40\xc5\x50\xb9\x01\x3f\xad\x07\x61\x35\x3c\x70\x86\xa2\x72\xc2\x40\x88\xbe\x94\x76\x9f\xd1\x66\x50" let p = "\x01\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF" let n = "\x01\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFA\x51\x86\x87\x83\xBF\x2F\x96\x6B\x7F\xCC\x01\x48\xF7\x09\xA5\xD0\x3B\xB5\xC9\xB8\x89\x9C\x47\xAE\xBB\x6F\xB7\x1E\x91\x38\x64\x09" let pident = "\x01\x7f\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff" |> rev_string let byte_length = 66 let bit_length = 521 let fe_length = if Sys.word_size == 64 then 72 else 68 (* TODO: is this congruent with C code? *) let first_byte_bits = Some 0x01 end module Foreign = struct external mul : out_field_element -> field_element -> field_element -> unit = "mc_p521_mul" [@@noalloc] external sub : out_field_element -> field_element -> field_element -> unit = "mc_p521_sub" [@@noalloc] external add : out_field_element -> field_element -> field_element -> unit = "mc_p521_add" [@@noalloc] external to_montgomery : out_field_element -> field_element -> unit = "mc_p521_to_montgomery" [@@noalloc] external from_octets : out_field_element -> string -> unit = "mc_p521_from_bytes" [@@noalloc] external set_one : out_field_element -> unit = "mc_p521_set_one" [@@noalloc] external nz : field_element -> bool = "mc_p521_nz" [@@noalloc] external sqr : out_field_element -> field_element -> unit = "mc_p521_sqr" [@@noalloc] external from_montgomery : out_field_element -> field_element -> unit = "mc_p521_from_montgomery" [@@noalloc] external to_octets : bytes -> field_element -> unit = "mc_p521_to_bytes" [@@noalloc] external inv : out_field_element -> field_element -> unit = "mc_p521_inv" [@@noalloc] external select_c : out_field_element -> bool -> field_element -> field_element -> unit = "mc_p521_select" [@@noalloc] external double_c : out_point -> point -> unit = "mc_p521_point_double" [@@noalloc] external add_c : out_point -> point -> point -> unit = "mc_p521_point_add" [@@noalloc] external scalar_mult_base_c : out_point -> string -> unit = "mc_p521_scalar_mult_base" [@@noalloc] end module Foreign_n = struct external mul : out_field_element -> field_element -> field_element -> unit = "mc_np521_mul" [@@noalloc] external add : out_field_element -> field_element -> field_element -> unit = "mc_np521_add" [@@noalloc] external inv : out_field_element -> field_element -> unit = "mc_np521_inv" [@@noalloc] external one : out_field_element -> unit = "mc_np521_one" [@@noalloc] external from_bytes : out_field_element -> string -> unit = "mc_np521_from_bytes" [@@noalloc] external to_bytes : bytes -> field_element -> unit = "mc_np521_to_bytes" [@@noalloc] external from_montgomery : out_field_element -> field_element -> unit = "mc_np521_from_montgomery" [@@noalloc] external to_montgomery : out_field_element -> field_element -> unit = "mc_np521_to_montgomery" [@@noalloc] end module P = Make_point(Params)(Foreign) module S = Make_scalar(Params)(P) module Dh = Make_dh(Params)(P)(S) module Fn = Make_Fn(Params)(Foreign_n) module Dsa = Make_dsa(Params)(Fn)(P)(S)(Digestif.SHA512) end module X25519 = struct (* RFC 7748 *) external x25519_scalar_mult_generic : bytes -> string -> string -> unit = "mc_x25519_scalar_mult_generic" [@@noalloc] let key_len = 32 let scalar_mult in_ base = let out = Bytes.create key_len in x25519_scalar_mult_generic out in_ base; Bytes.unsafe_to_string out type secret = string let basepoint = String.init key_len (function 0 -> '\009' | _ -> '\000') let public priv = scalar_mult priv basepoint let gen_key ?compress:_ ?g () = let secret = Mirage_crypto_rng.generate ?g key_len in secret, public secret let secret_of_octets ?compress:_ s = if String.length s = key_len then Ok (s, public s) else Error `Invalid_length let secret_to_octets s = s let is_zero = let zero = String.make key_len '\000' in fun buf -> String.equal zero buf let key_exchange secret public = if String.length public = key_len then let res = scalar_mult secret public in if is_zero res then Error `Low_order else Ok res else Error `Invalid_length end module Ed25519 = struct external scalar_mult_base_to_bytes : bytes -> string -> unit = "mc_25519_scalar_mult_base" [@@noalloc] external reduce_l : bytes -> unit = "mc_25519_reduce_l" [@@noalloc] external muladd : bytes -> string -> string -> string -> unit = "mc_25519_muladd" [@@noalloc] external double_scalar_mult : bytes -> string -> string -> string -> bool = "mc_25519_double_scalar_mult" [@@noalloc] external pub_ok : string -> bool = "mc_25519_pub_ok" [@@noalloc] let key_len = 32 let scalar_mult_base_to_bytes p = let tmp = Bytes.create key_len in scalar_mult_base_to_bytes tmp p; Bytes.unsafe_to_string tmp let muladd a b c = let tmp = Bytes.create key_len in muladd tmp a b c; Bytes.unsafe_to_string tmp let double_scalar_mult a b c = let tmp = Bytes.create key_len in let s = double_scalar_mult tmp a b c in s, Bytes.unsafe_to_string tmp type pub = string type priv = string let sha512 datas = let open Digestif.SHA512 in let buf = Bytes.create digest_size in let ctx = List.fold_left (feed_string ?off:None ?len:None) empty datas in get_into_bytes ctx buf; buf (* RFC 8032 *) let public secret = (* section 5.1.5 *) (* step 1 *) let h = sha512 [ secret ] in (* step 2 *) let s, rest = Bytes.sub h 0 key_len, Bytes.unsafe_to_string (Bytes.sub h key_len (Bytes.length h - key_len)) in Bytes.set_uint8 s 0 ((Bytes.get_uint8 s 0) land 248); Bytes.set_uint8 s 31 (((Bytes.get_uint8 s 31) land 127) lor 64); let s = Bytes.unsafe_to_string s in (* step 3 and 4 *) let public = scalar_mult_base_to_bytes s in public, (s, rest) let pub_of_priv secret = fst (public secret) let priv_of_octets buf = if String.length buf = key_len then Ok buf else Error `Invalid_length let priv_to_octets (priv : priv) = priv let pub_of_octets buf = if String.length buf = key_len then if pub_ok buf then Ok buf else Error `Not_on_curve else Error `Invalid_length let pub_to_octets pub = pub let generate ?g () = let secret = Mirage_crypto_rng.generate ?g key_len in secret, pub_of_priv secret let sign ~key msg = (* section 5.1.6 *) let pub, (s, prefix) = public key in let r = sha512 [ prefix; msg ] in reduce_l r; let r = Bytes.unsafe_to_string r in let r_big = scalar_mult_base_to_bytes r in let k = sha512 [ r_big; pub; msg] in reduce_l k; let k = Bytes.unsafe_to_string k in let s_out = muladd k s r in let res = Bytes.create (key_len + key_len) in Bytes.unsafe_blit_string r_big 0 res 0 key_len ; Bytes.unsafe_blit_string s_out 0 res key_len key_len ; Bytes.unsafe_to_string res let verify ~key signature ~msg = (* section 5.1.7 *) if String.length signature = 2 * key_len then let r, s = String.sub signature 0 key_len, String.sub signature key_len key_len in let s_smaller_l = (* check s within 0 <= s < L *) let s' = Bytes.make (key_len * 2) '\000' in Bytes.unsafe_blit_string s 0 s' 0 key_len; reduce_l s'; let s' = Bytes.unsafe_to_string s' in let s'' = s ^ String.make key_len '\000' in String.equal s'' s' in if s_smaller_l then begin let k = sha512 [ r ; key ; msg ] in reduce_l k; let k = Bytes.unsafe_to_string k in let success, r' = double_scalar_mult k key s in success && String.equal r r' end else false else false end
mirage-crypto
2.0.2
ISC
https://github.com/mirage/mirage-crypto
git+https://github.com/mirage/mirage-crypto.git
mli
mirage-crypto-2.0.2/ec/mirage_crypto_ec.mli
(** {1 Elliptic curve cryptography} *) (** Mirage-crypto-ec implements public key cryptography with named elliptic curves. Ephemeral key exchanges with {{!Dh}Diffie-Hellman} and {{!Dsa}digital signatures (ECDSA)} are implemented. The arithmetic operations uses code generated by {{:https://github.com/mit-plv/fiat-crypto}fiat-crypto} which is proven to consume a constant amount of time, independent of the input values. *) type error = [ | `Invalid_range | `Invalid_format | `Invalid_length | `Not_on_curve | `At_infinity | `Low_order ] (** The type for errors. *) val pp_error : Format.formatter -> error -> unit (** Pretty printer for errors *) exception Message_too_long (** Raised if the provided message is too long for the curve. *) (** Diffie-Hellman key exchange. *) module type Dh = sig type secret (** Type for private keys. *) val secret_of_octets : ?compress:bool -> string -> (secret * string, error) result (** [secret_of_octets ~compress secret] decodes the provided buffer as {!secret}. If [compress] is provided and [true] (defaults to [false]), the shared part will be compressed. May result in an error if the buffer had an invalid length or was not in bounds. *) val secret_to_octets : secret -> string (** [secret_to_octets secret] encodes the provided secret into a freshly allocated buffer. *) val gen_key : ?compress:bool -> ?g:Mirage_crypto_rng.g -> unit -> secret * string (** [gen_key ~compress ~g ()] generates a private and a public key for Ephemeral Diffie-Hellman. If [compress] is provided and [true] (defaults to [false]), the shared part will be compressed. The returned key pair MUST only be used for a single key exchange. The generated private key is checked to be greater than zero and lower than the group order meaning the public key cannot be the point at inifinity. *) val key_exchange : secret -> string -> (string, error) result (** [key_exchange secret received_public_key] performs Diffie-Hellman key exchange using your secret and the data received from the other party. Returns the shared secret or an error if the received data is wrongly encoded, doesn't represent a point on the curve or represent the point at infinity. The shared secret is returned as is i.e. not stripped from leading 0x00 bytes. The public key encoding is described {{:http://www.secg.org/sec1-v2.pdf}in SEC 1} from SECG. *) end (** Digital signature algorithm. *) module type Dsa = sig type priv (** The type for private keys. *) type pub (** The type for public keys. *) val byte_length : int (** [byte_length] is the size of a ECDSA signature in bytes. *) val bit_length : int (** [bit_length] is the number of significant bits in a ECDSA signature *) (** {2 Serialisation} *) val priv_of_octets : string -> (priv, error) result (** [priv_of_octets buf] decodes a private key from the buffer [buf]. If the provided data is invalid, an error is returned. *) val priv_to_octets : priv -> string (** [priv_to_octets p] encode the private key [p] to a buffer. *) val pub_of_octets : string -> (pub, error) result (** [pub_of_octets buf] decodes a public key from the buffer [buf]. If the provided data is invalid, an error is returned. *) val pub_to_octets : ?compress:bool -> pub -> string (** [pub_to_octets ~compress p] encodes the public key [p] into a buffer. If [compress] is provided and [true] (default [false]), the compressed representation is returned. *) (** {2 Deriving the public key} *) val pub_of_priv : priv -> pub (** [pub_of_priv p] extracts the public key from the private key [p]. *) (** {2 Key generation} *) val generate : ?g:Mirage_crypto_rng.g -> unit -> priv * pub (** [generate ~g ()] generates a key pair. *) (** {2 Cryptographic operations} *) val sign : key:priv -> ?k:string -> string -> string * string (** [sign ~key ~k digest] signs the message [digest] using the private [key]. The [digest] is not processed further - it should be the hash of the message to sign. If [k] is not provided, it is computed using the deterministic construction from RFC 6979. The result is a pair of [r] and [s]. Warning: there {{:https://www.hertzbleed.com/2h2b.pdf}are} {{:https://www.hertzbleed.com/hertzbleed.pdf}attacks} that recover the private key from a power and timing analysis of the RFC 6979 computation of [k] - thus it is advised to provide a good nonce ([k]) explicitly, which is independent of key and digest. @raise Invalid_argument if [k] is not suitable or not in range. @raise Message_too_long if the bit size of [msg] exceeds the curve. *) val verify : key:pub -> string * string -> string -> bool (** [verify ~key (r, s) digest] verifies the signature [r, s] on the message [digest] with the public [key]. The return value is [true] if verification was successful, [false] otherwise. If the message has more bits than the group order, the result is false. *) (** [K_gen] can be instantiated over a hashing module to obtain an RFC6979 compliant [k]-generator for that hash. *) module K_gen (H : Digestif.S) : sig val generate : key:priv -> string -> string (** [generate ~key digest] deterministically takes the given private key and message digest to a [k] suitable for seeding the signing process. *) end (** {2 Misc} *) (** Operations to precompute useful data meant to be hardcoded in [mirage-crypto-ec] before compilation *) module Precompute : sig val generator_tables : unit -> string array array array (** Return an array of shape (Fe_length * 2, 15, 3) containing multiples of the generator point for the curve. Useful only to bootstrap tables necessary for scalar multiplication. *) end end (** Elliptic curve with Diffie-Hellman and DSA. *) module type Dh_dsa = sig (** Diffie-Hellman key exchange. *) module Dh : Dh (** Digital signature algorithm. *) module Dsa : Dsa end (** The NIST P-256 curve, also known as SECP256R1. *) module P256 : Dh_dsa (** The NIST P-384 curve, also known as SECP384R1. *) module P384 : Dh_dsa (** The NIST P-521 curve, also known as SECP521R1. *) module P521 : Dh_dsa (** Curve 25519 Diffie-Hellman, also known as X25519. *) module X25519 : Dh (** Curve 25519 DSA, also known as Ed25519. *) module Ed25519 : sig type priv (** The type for private keys. *) type pub (** The type for public keys. *) (** {2 Serialisation} *) val priv_of_octets : string -> (priv, error) result (** [priv_of_octets buf] decodes a private key from the buffer [buf]. If the provided data is invalid, an error is returned. *) val priv_to_octets : priv -> string (** [priv_to_octets p] encode the private key [p] to a buffer. *) val pub_of_octets : string -> (pub, error) result (** [pub_of_octets buf] decodes a public key from the buffer [buf]. If the provided data is invalid, an error is returned. *) val pub_to_octets : pub -> string (** [pub_to_octets p] encodes the public key [p] into a buffer. *) (** {2 Deriving the public key} *) val pub_of_priv : priv -> pub (** [pub_of_priv p] extracts the public key from the private key [p]. *) (** {2 Key generation} *) val generate : ?g:Mirage_crypto_rng.g -> unit -> priv * pub (** [generate ~g ()] generates a key pair. *) (** {2 Cryptographic operations} *) val sign : key:priv -> string -> string (** [sign ~key msg] signs the message [msg] using the private [key]. The result is the concatenation of [r] and [s], as specified in RFC 8032. *) val verify : key:pub -> string -> msg:string -> bool (** [verify ~key signature msg] verifies the [signature] on the message [msg] with the public [key]. The return value is [true] if verification was successful, [false] otherwise. *) end
mirage-crypto
2.0.2
ISC
https://github.com/mirage/mirage-crypto
git+https://github.com/mirage/mirage-crypto.git
h
mirage-crypto-2.0.2/ec/native/curve25519_32.h
/* Autogenerated: '../fiat-crypto/src/ExtractionOCaml/unsaturated_solinas' --static --use-value-barrier --inline-internal 25519 32 '(auto)' '2^255 - 19' carry_mul carry_square carry add sub opp selectznz to_bytes from_bytes carry_scmul121666 */ /* curve description: 25519 */ /* machine_wordsize = 32 (from "32") */ /* requested operations: carry_mul, carry_square, carry, add, sub, opp, selectznz, to_bytes, from_bytes, carry_scmul121666 */ /* n = 10 (from "(auto)") */ /* s-c = 2^255 - [(1, 19)] (from "2^255 - 19") */ /* tight_bounds_multiplier = 1 (from "") */ /* */ /* Computed values: */ /* carry_chain = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 0, 1] */ /* eval z = z[0] + (z[1] << 26) + (z[2] << 51) + (z[3] << 77) + (z[4] << 102) + (z[5] << 128) + (z[6] << 153) + (z[7] << 179) + (z[8] << 204) + (z[9] << 230) */ /* bytes_eval z = z[0] + (z[1] << 8) + (z[2] << 16) + (z[3] << 24) + (z[4] << 32) + (z[5] << 40) + (z[6] << 48) + (z[7] << 56) + (z[8] << 64) + (z[9] << 72) + (z[10] << 80) + (z[11] << 88) + (z[12] << 96) + (z[13] << 104) + (z[14] << 112) + (z[15] << 120) + (z[16] << 128) + (z[17] << 136) + (z[18] << 144) + (z[19] << 152) + (z[20] << 160) + (z[21] << 168) + (z[22] << 176) + (z[23] << 184) + (z[24] << 192) + (z[25] << 200) + (z[26] << 208) + (z[27] << 216) + (z[28] << 224) + (z[29] << 232) + (z[30] << 240) + (z[31] << 248) */ /* balance = [0x7ffffda, 0x3fffffe, 0x7fffffe, 0x3fffffe, 0x7fffffe, 0x3fffffe, 0x7fffffe, 0x3fffffe, 0x7fffffe, 0x3fffffe] */ #include <stdint.h> typedef unsigned char fiat_25519_uint1; typedef signed char fiat_25519_int1; #if defined(__GNUC__) || defined(__clang__) # define FIAT_25519_FIAT_INLINE __inline__ #else # define FIAT_25519_FIAT_INLINE #endif /* The type fiat_25519_loose_field_element is a field element with loose bounds. */ /* Bounds: [[0x0 ~> 0xc000000], [0x0 ~> 0x6000000], [0x0 ~> 0xc000000], [0x0 ~> 0x6000000], [0x0 ~> 0xc000000], [0x0 ~> 0x6000000], [0x0 ~> 0xc000000], [0x0 ~> 0x6000000], [0x0 ~> 0xc000000], [0x0 ~> 0x6000000]] */ typedef uint32_t fiat_25519_loose_field_element[10]; /* The type fiat_25519_tight_field_element is a field element with tight bounds. */ /* Bounds: [[0x0 ~> 0x4000000], [0x0 ~> 0x2000000], [0x0 ~> 0x4000000], [0x0 ~> 0x2000000], [0x0 ~> 0x4000000], [0x0 ~> 0x2000000], [0x0 ~> 0x4000000], [0x0 ~> 0x2000000], [0x0 ~> 0x4000000], [0x0 ~> 0x2000000]] */ typedef uint32_t fiat_25519_tight_field_element[10]; #if (-1 & 3) != 3 #error "This code only works on a two's complement system" #endif #if !defined(FIAT_25519_NO_ASM) && (defined(__GNUC__) || defined(__clang__)) static __inline__ uint32_t fiat_25519_value_barrier_u32(uint32_t a) { __asm__("" : "+r"(a) : /* no inputs */); return a; } #else # define fiat_25519_value_barrier_u32(x) (x) #endif /* * The function fiat_25519_addcarryx_u26 is an addition with carry. * * Postconditions: * out1 = (arg1 + arg2 + arg3) mod 2^26 * out2 = ⌊(arg1 + arg2 + arg3) / 2^26⌋ * * Input Bounds: * arg1: [0x0 ~> 0x1] * arg2: [0x0 ~> 0x3ffffff] * arg3: [0x0 ~> 0x3ffffff] * Output Bounds: * out1: [0x0 ~> 0x3ffffff] * out2: [0x0 ~> 0x1] */ static FIAT_25519_FIAT_INLINE void fiat_25519_addcarryx_u26(uint32_t* out1, fiat_25519_uint1* out2, fiat_25519_uint1 arg1, uint32_t arg2, uint32_t arg3) { uint32_t x1; uint32_t x2; fiat_25519_uint1 x3; x1 = ((arg1 + arg2) + arg3); x2 = (x1 & UINT32_C(0x3ffffff)); x3 = (fiat_25519_uint1)(x1 >> 26); *out1 = x2; *out2 = x3; } /* * The function fiat_25519_subborrowx_u26 is a subtraction with borrow. * * Postconditions: * out1 = (-arg1 + arg2 + -arg3) mod 2^26 * out2 = -⌊(-arg1 + arg2 + -arg3) / 2^26⌋ * * Input Bounds: * arg1: [0x0 ~> 0x1] * arg2: [0x0 ~> 0x3ffffff] * arg3: [0x0 ~> 0x3ffffff] * Output Bounds: * out1: [0x0 ~> 0x3ffffff] * out2: [0x0 ~> 0x1] */ static FIAT_25519_FIAT_INLINE void fiat_25519_subborrowx_u26(uint32_t* out1, fiat_25519_uint1* out2, fiat_25519_uint1 arg1, uint32_t arg2, uint32_t arg3) { int32_t x1; fiat_25519_int1 x2; uint32_t x3; x1 = ((int32_t)(arg2 - arg1) - (int32_t)arg3); x2 = (fiat_25519_int1)(x1 >> 26); x3 = (x1 & UINT32_C(0x3ffffff)); *out1 = x3; *out2 = (fiat_25519_uint1)(0x0 - x2); } /* * The function fiat_25519_addcarryx_u25 is an addition with carry. * * Postconditions: * out1 = (arg1 + arg2 + arg3) mod 2^25 * out2 = ⌊(arg1 + arg2 + arg3) / 2^25⌋ * * Input Bounds: * arg1: [0x0 ~> 0x1] * arg2: [0x0 ~> 0x1ffffff] * arg3: [0x0 ~> 0x1ffffff] * Output Bounds: * out1: [0x0 ~> 0x1ffffff] * out2: [0x0 ~> 0x1] */ static FIAT_25519_FIAT_INLINE void fiat_25519_addcarryx_u25(uint32_t* out1, fiat_25519_uint1* out2, fiat_25519_uint1 arg1, uint32_t arg2, uint32_t arg3) { uint32_t x1; uint32_t x2; fiat_25519_uint1 x3; x1 = ((arg1 + arg2) + arg3); x2 = (x1 & UINT32_C(0x1ffffff)); x3 = (fiat_25519_uint1)(x1 >> 25); *out1 = x2; *out2 = x3; } /* * The function fiat_25519_subborrowx_u25 is a subtraction with borrow. * * Postconditions: * out1 = (-arg1 + arg2 + -arg3) mod 2^25 * out2 = -⌊(-arg1 + arg2 + -arg3) / 2^25⌋ * * Input Bounds: * arg1: [0x0 ~> 0x1] * arg2: [0x0 ~> 0x1ffffff] * arg3: [0x0 ~> 0x1ffffff] * Output Bounds: * out1: [0x0 ~> 0x1ffffff] * out2: [0x0 ~> 0x1] */ static FIAT_25519_FIAT_INLINE void fiat_25519_subborrowx_u25(uint32_t* out1, fiat_25519_uint1* out2, fiat_25519_uint1 arg1, uint32_t arg2, uint32_t arg3) { int32_t x1; fiat_25519_int1 x2; uint32_t x3; x1 = ((int32_t)(arg2 - arg1) - (int32_t)arg3); x2 = (fiat_25519_int1)(x1 >> 25); x3 = (x1 & UINT32_C(0x1ffffff)); *out1 = x3; *out2 = (fiat_25519_uint1)(0x0 - x2); } /* * The function fiat_25519_cmovznz_u32 is a single-word conditional move. * * Postconditions: * out1 = (if arg1 = 0 then arg2 else arg3) * * Input Bounds: * arg1: [0x0 ~> 0x1] * arg2: [0x0 ~> 0xffffffff] * arg3: [0x0 ~> 0xffffffff] * Output Bounds: * out1: [0x0 ~> 0xffffffff] */ static FIAT_25519_FIAT_INLINE void fiat_25519_cmovznz_u32(uint32_t* out1, fiat_25519_uint1 arg1, uint32_t arg2, uint32_t arg3) { fiat_25519_uint1 x1; uint32_t x2; uint32_t x3; x1 = (!(!arg1)); x2 = ((fiat_25519_int1)(0x0 - x1) & UINT32_C(0xffffffff)); x3 = ((fiat_25519_value_barrier_u32(x2) & arg3) | (fiat_25519_value_barrier_u32((~x2)) & arg2)); *out1 = x3; } /* * The function fiat_25519_carry_mul multiplies two field elements and reduces the result. * * Postconditions: * eval out1 mod m = (eval arg1 * eval arg2) mod m * */ static void fiat_25519_carry_mul(fiat_25519_tight_field_element out1, const fiat_25519_loose_field_element arg1, const fiat_25519_loose_field_element arg2) { uint64_t x1; uint64_t x2; uint64_t x3; uint64_t x4; uint64_t x5; uint64_t x6; uint64_t x7; uint64_t x8; uint64_t x9; uint64_t x10; uint64_t x11; uint64_t x12; uint64_t x13; uint64_t x14; uint64_t x15; uint64_t x16; uint64_t x17; uint64_t x18; uint64_t x19; uint64_t x20; uint64_t x21; uint64_t x22; uint64_t x23; uint64_t x24; uint64_t x25; uint64_t x26; uint64_t x27; uint64_t x28; uint64_t x29; uint64_t x30; uint64_t x31; uint64_t x32; uint64_t x33; uint64_t x34; uint64_t x35; uint64_t x36; uint64_t x37; uint64_t x38; uint64_t x39; uint64_t x40; uint64_t x41; uint64_t x42; uint64_t x43; uint64_t x44; uint64_t x45; uint64_t x46; uint64_t x47; uint64_t x48; uint64_t x49; uint64_t x50; uint64_t x51; uint64_t x52; uint64_t x53; uint64_t x54; uint64_t x55; uint64_t x56; uint64_t x57; uint64_t x58; uint64_t x59; uint64_t x60; uint64_t x61; uint64_t x62; uint64_t x63; uint64_t x64; uint64_t x65; uint64_t x66; uint64_t x67; uint64_t x68; uint64_t x69; uint64_t x70; uint64_t x71; uint64_t x72; uint64_t x73; uint64_t x74; uint64_t x75; uint64_t x76; uint64_t x77; uint64_t x78; uint64_t x79; uint64_t x80; uint64_t x81; uint64_t x82; uint64_t x83; uint64_t x84; uint64_t x85; uint64_t x86; uint64_t x87; uint64_t x88; uint64_t x89; uint64_t x90; uint64_t x91; uint64_t x92; uint64_t x93; uint64_t x94; uint64_t x95; uint64_t x96; uint64_t x97; uint64_t x98; uint64_t x99; uint64_t x100; uint64_t x101; uint64_t x102; uint32_t x103; uint64_t x104; uint64_t x105; uint64_t x106; uint64_t x107; uint64_t x108; uint64_t x109; uint64_t x110; uint64_t x111; uint64_t x112; uint64_t x113; uint64_t x114; uint32_t x115; uint64_t x116; uint64_t x117; uint32_t x118; uint64_t x119; uint64_t x120; uint32_t x121; uint64_t x122; uint64_t x123; uint32_t x124; uint64_t x125; uint64_t x126; uint32_t x127; uint64_t x128; uint64_t x129; uint32_t x130; uint64_t x131; uint64_t x132; uint32_t x133; uint64_t x134; uint64_t x135; uint32_t x136; uint64_t x137; uint64_t x138; uint32_t x139; uint64_t x140; uint64_t x141; uint32_t x142; uint32_t x143; uint32_t x144; fiat_25519_uint1 x145; uint32_t x146; uint32_t x147; x1 = ((uint64_t)(arg1[9]) * ((arg2[9]) * UINT8_C(0x26))); x2 = ((uint64_t)(arg1[9]) * ((arg2[8]) * UINT8_C(0x13))); x3 = ((uint64_t)(arg1[9]) * ((arg2[7]) * UINT8_C(0x26))); x4 = ((uint64_t)(arg1[9]) * ((arg2[6]) * UINT8_C(0x13))); x5 = ((uint64_t)(arg1[9]) * ((arg2[5]) * UINT8_C(0x26))); x6 = ((uint64_t)(arg1[9]) * ((arg2[4]) * UINT8_C(0x13))); x7 = ((uint64_t)(arg1[9]) * ((arg2[3]) * UINT8_C(0x26))); x8 = ((uint64_t)(arg1[9]) * ((arg2[2]) * UINT8_C(0x13))); x9 = ((uint64_t)(arg1[9]) * ((arg2[1]) * UINT8_C(0x26))); x10 = ((uint64_t)(arg1[8]) * ((arg2[9]) * UINT8_C(0x13))); x11 = ((uint64_t)(arg1[8]) * ((arg2[8]) * UINT8_C(0x13))); x12 = ((uint64_t)(arg1[8]) * ((arg2[7]) * UINT8_C(0x13))); x13 = ((uint64_t)(arg1[8]) * ((arg2[6]) * UINT8_C(0x13))); x14 = ((uint64_t)(arg1[8]) * ((arg2[5]) * UINT8_C(0x13))); x15 = ((uint64_t)(arg1[8]) * ((arg2[4]) * UINT8_C(0x13))); x16 = ((uint64_t)(arg1[8]) * ((arg2[3]) * UINT8_C(0x13))); x17 = ((uint64_t)(arg1[8]) * ((arg2[2]) * UINT8_C(0x13))); x18 = ((uint64_t)(arg1[7]) * ((arg2[9]) * UINT8_C(0x26))); x19 = ((uint64_t)(arg1[7]) * ((arg2[8]) * UINT8_C(0x13))); x20 = ((uint64_t)(arg1[7]) * ((arg2[7]) * UINT8_C(0x26))); x21 = ((uint64_t)(arg1[7]) * ((arg2[6]) * UINT8_C(0x13))); x22 = ((uint64_t)(arg1[7]) * ((arg2[5]) * UINT8_C(0x26))); x23 = ((uint64_t)(arg1[7]) * ((arg2[4]) * UINT8_C(0x13))); x24 = ((uint64_t)(arg1[7]) * ((arg2[3]) * UINT8_C(0x26))); x25 = ((uint64_t)(arg1[6]) * ((arg2[9]) * UINT8_C(0x13))); x26 = ((uint64_t)(arg1[6]) * ((arg2[8]) * UINT8_C(0x13))); x27 = ((uint64_t)(arg1[6]) * ((arg2[7]) * UINT8_C(0x13))); x28 = ((uint64_t)(arg1[6]) * ((arg2[6]) * UINT8_C(0x13))); x29 = ((uint64_t)(arg1[6]) * ((arg2[5]) * UINT8_C(0x13))); x30 = ((uint64_t)(arg1[6]) * ((arg2[4]) * UINT8_C(0x13))); x31 = ((uint64_t)(arg1[5]) * ((arg2[9]) * UINT8_C(0x26))); x32 = ((uint64_t)(arg1[5]) * ((arg2[8]) * UINT8_C(0x13))); x33 = ((uint64_t)(arg1[5]) * ((arg2[7]) * UINT8_C(0x26))); x34 = ((uint64_t)(arg1[5]) * ((arg2[6]) * UINT8_C(0x13))); x35 = ((uint64_t)(arg1[5]) * ((arg2[5]) * UINT8_C(0x26))); x36 = ((uint64_t)(arg1[4]) * ((arg2[9]) * UINT8_C(0x13))); x37 = ((uint64_t)(arg1[4]) * ((arg2[8]) * UINT8_C(0x13))); x38 = ((uint64_t)(arg1[4]) * ((arg2[7]) * UINT8_C(0x13))); x39 = ((uint64_t)(arg1[4]) * ((arg2[6]) * UINT8_C(0x13))); x40 = ((uint64_t)(arg1[3]) * ((arg2[9]) * UINT8_C(0x26))); x41 = ((uint64_t)(arg1[3]) * ((arg2[8]) * UINT8_C(0x13))); x42 = ((uint64_t)(arg1[3]) * ((arg2[7]) * UINT8_C(0x26))); x43 = ((uint64_t)(arg1[2]) * ((arg2[9]) * UINT8_C(0x13))); x44 = ((uint64_t)(arg1[2]) * ((arg2[8]) * UINT8_C(0x13))); x45 = ((uint64_t)(arg1[1]) * ((arg2[9]) * UINT8_C(0x26))); x46 = ((uint64_t)(arg1[9]) * (arg2[0])); x47 = ((uint64_t)(arg1[8]) * (arg2[1])); x48 = ((uint64_t)(arg1[8]) * (arg2[0])); x49 = ((uint64_t)(arg1[7]) * (arg2[2])); x50 = ((uint64_t)(arg1[7]) * ((arg2[1]) * 0x2)); x51 = ((uint64_t)(arg1[7]) * (arg2[0])); x52 = ((uint64_t)(arg1[6]) * (arg2[3])); x53 = ((uint64_t)(arg1[6]) * (arg2[2])); x54 = ((uint64_t)(arg1[6]) * (arg2[1])); x55 = ((uint64_t)(arg1[6]) * (arg2[0])); x56 = ((uint64_t)(arg1[5]) * (arg2[4])); x57 = ((uint64_t)(arg1[5]) * ((arg2[3]) * 0x2)); x58 = ((uint64_t)(arg1[5]) * (arg2[2])); x59 = ((uint64_t)(arg1[5]) * ((arg2[1]) * 0x2)); x60 = ((uint64_t)(arg1[5]) * (arg2[0])); x61 = ((uint64_t)(arg1[4]) * (arg2[5])); x62 = ((uint64_t)(arg1[4]) * (arg2[4])); x63 = ((uint64_t)(arg1[4]) * (arg2[3])); x64 = ((uint64_t)(arg1[4]) * (arg2[2])); x65 = ((uint64_t)(arg1[4]) * (arg2[1])); x66 = ((uint64_t)(arg1[4]) * (arg2[0])); x67 = ((uint64_t)(arg1[3]) * (arg2[6])); x68 = ((uint64_t)(arg1[3]) * ((arg2[5]) * 0x2)); x69 = ((uint64_t)(arg1[3]) * (arg2[4])); x70 = ((uint64_t)(arg1[3]) * ((arg2[3]) * 0x2)); x71 = ((uint64_t)(arg1[3]) * (arg2[2])); x72 = ((uint64_t)(arg1[3]) * ((arg2[1]) * 0x2)); x73 = ((uint64_t)(arg1[3]) * (arg2[0])); x74 = ((uint64_t)(arg1[2]) * (arg2[7])); x75 = ((uint64_t)(arg1[2]) * (arg2[6])); x76 = ((uint64_t)(arg1[2]) * (arg2[5])); x77 = ((uint64_t)(arg1[2]) * (arg2[4])); x78 = ((uint64_t)(arg1[2]) * (arg2[3])); x79 = ((uint64_t)(arg1[2]) * (arg2[2])); x80 = ((uint64_t)(arg1[2]) * (arg2[1])); x81 = ((uint64_t)(arg1[2]) * (arg2[0])); x82 = ((uint64_t)(arg1[1]) * (arg2[8])); x83 = ((uint64_t)(arg1[1]) * ((arg2[7]) * 0x2)); x84 = ((uint64_t)(arg1[1]) * (arg2[6])); x85 = ((uint64_t)(arg1[1]) * ((arg2[5]) * 0x2)); x86 = ((uint64_t)(arg1[1]) * (arg2[4])); x87 = ((uint64_t)(arg1[1]) * ((arg2[3]) * 0x2)); x88 = ((uint64_t)(arg1[1]) * (arg2[2])); x89 = ((uint64_t)(arg1[1]) * ((arg2[1]) * 0x2)); x90 = ((uint64_t)(arg1[1]) * (arg2[0])); x91 = ((uint64_t)(arg1[0]) * (arg2[9])); x92 = ((uint64_t)(arg1[0]) * (arg2[8])); x93 = ((uint64_t)(arg1[0]) * (arg2[7])); x94 = ((uint64_t)(arg1[0]) * (arg2[6])); x95 = ((uint64_t)(arg1[0]) * (arg2[5])); x96 = ((uint64_t)(arg1[0]) * (arg2[4])); x97 = ((uint64_t)(arg1[0]) * (arg2[3])); x98 = ((uint64_t)(arg1[0]) * (arg2[2])); x99 = ((uint64_t)(arg1[0]) * (arg2[1])); x100 = ((uint64_t)(arg1[0]) * (arg2[0])); x101 = (x100 + (x45 + (x44 + (x42 + (x39 + (x35 + (x30 + (x24 + (x17 + x9))))))))); x102 = (x101 >> 26); x103 = (uint32_t)(x101 & UINT32_C(0x3ffffff)); x104 = (x91 + (x82 + (x74 + (x67 + (x61 + (x56 + (x52 + (x49 + (x47 + x46))))))))); x105 = (x92 + (x83 + (x75 + (x68 + (x62 + (x57 + (x53 + (x50 + (x48 + x1))))))))); x106 = (x93 + (x84 + (x76 + (x69 + (x63 + (x58 + (x54 + (x51 + (x10 + x2))))))))); x107 = (x94 + (x85 + (x77 + (x70 + (x64 + (x59 + (x55 + (x18 + (x11 + x3))))))))); x108 = (x95 + (x86 + (x78 + (x71 + (x65 + (x60 + (x25 + (x19 + (x12 + x4))))))))); x109 = (x96 + (x87 + (x79 + (x72 + (x66 + (x31 + (x26 + (x20 + (x13 + x5))))))))); x110 = (x97 + (x88 + (x80 + (x73 + (x36 + (x32 + (x27 + (x21 + (x14 + x6))))))))); x111 = (x98 + (x89 + (x81 + (x40 + (x37 + (x33 + (x28 + (x22 + (x15 + x7))))))))); x112 = (x99 + (x90 + (x43 + (x41 + (x38 + (x34 + (x29 + (x23 + (x16 + x8))))))))); x113 = (x102 + x112); x114 = (x113 >> 25); x115 = (uint32_t)(x113 & UINT32_C(0x1ffffff)); x116 = (x114 + x111); x117 = (x116 >> 26); x118 = (uint32_t)(x116 & UINT32_C(0x3ffffff)); x119 = (x117 + x110); x120 = (x119 >> 25); x121 = (uint32_t)(x119 & UINT32_C(0x1ffffff)); x122 = (x120 + x109); x123 = (x122 >> 26); x124 = (uint32_t)(x122 & UINT32_C(0x3ffffff)); x125 = (x123 + x108); x126 = (x125 >> 25); x127 = (uint32_t)(x125 & UINT32_C(0x1ffffff)); x128 = (x126 + x107); x129 = (x128 >> 26); x130 = (uint32_t)(x128 & UINT32_C(0x3ffffff)); x131 = (x129 + x106); x132 = (x131 >> 25); x133 = (uint32_t)(x131 & UINT32_C(0x1ffffff)); x134 = (x132 + x105); x135 = (x134 >> 26); x136 = (uint32_t)(x134 & UINT32_C(0x3ffffff)); x137 = (x135 + x104); x138 = (x137 >> 25); x139 = (uint32_t)(x137 & UINT32_C(0x1ffffff)); x140 = (x138 * UINT8_C(0x13)); x141 = (x103 + x140); x142 = (uint32_t)(x141 >> 26); x143 = (uint32_t)(x141 & UINT32_C(0x3ffffff)); x144 = (x142 + x115); x145 = (fiat_25519_uint1)(x144 >> 25); x146 = (x144 & UINT32_C(0x1ffffff)); x147 = (x145 + x118); out1[0] = x143; out1[1] = x146; out1[2] = x147; out1[3] = x121; out1[4] = x124; out1[5] = x127; out1[6] = x130; out1[7] = x133; out1[8] = x136; out1[9] = x139; } /* * The function fiat_25519_carry_square squares a field element and reduces the result. * * Postconditions: * eval out1 mod m = (eval arg1 * eval arg1) mod m * */ static void fiat_25519_carry_square(fiat_25519_tight_field_element out1, const fiat_25519_loose_field_element arg1) { uint32_t x1; uint32_t x2; uint32_t x3; uint32_t x4; uint64_t x5; uint32_t x6; uint32_t x7; uint32_t x8; uint32_t x9; uint32_t x10; uint64_t x11; uint32_t x12; uint32_t x13; uint32_t x14; uint32_t x15; uint32_t x16; uint32_t x17; uint32_t x18; uint64_t x19; uint64_t x20; uint64_t x21; uint64_t x22; uint64_t x23; uint64_t x24; uint64_t x25; uint64_t x26; uint64_t x27; uint64_t x28; uint64_t x29; uint64_t x30; uint64_t x31; uint64_t x32; uint64_t x33; uint64_t x34; uint64_t x35; uint64_t x36; uint64_t x37; uint64_t x38; uint64_t x39; uint64_t x40; uint64_t x41; uint64_t x42; uint64_t x43; uint64_t x44; uint64_t x45; uint64_t x46; uint64_t x47; uint64_t x48; uint64_t x49; uint64_t x50; uint64_t x51; uint64_t x52; uint64_t x53; uint64_t x54; uint64_t x55; uint64_t x56; uint64_t x57; uint64_t x58; uint64_t x59; uint64_t x60; uint64_t x61; uint64_t x62; uint64_t x63; uint64_t x64; uint64_t x65; uint64_t x66; uint64_t x67; uint64_t x68; uint64_t x69; uint64_t x70; uint64_t x71; uint64_t x72; uint64_t x73; uint64_t x74; uint64_t x75; uint32_t x76; uint64_t x77; uint64_t x78; uint64_t x79; uint64_t x80; uint64_t x81; uint64_t x82; uint64_t x83; uint64_t x84; uint64_t x85; uint64_t x86; uint64_t x87; uint32_t x88; uint64_t x89; uint64_t x90; uint32_t x91; uint64_t x92; uint64_t x93; uint32_t x94; uint64_t x95; uint64_t x96; uint32_t x97; uint64_t x98; uint64_t x99; uint32_t x100; uint64_t x101; uint64_t x102; uint32_t x103; uint64_t x104; uint64_t x105; uint32_t x106; uint64_t x107; uint64_t x108; uint32_t x109; uint64_t x110; uint64_t x111; uint32_t x112; uint64_t x113; uint64_t x114; uint32_t x115; uint32_t x116; uint32_t x117; fiat_25519_uint1 x118; uint32_t x119; uint32_t x120; x1 = ((arg1[9]) * UINT8_C(0x13)); x2 = (x1 * 0x2); x3 = ((arg1[9]) * 0x2); x4 = ((arg1[8]) * UINT8_C(0x13)); x5 = ((uint64_t)x4 * 0x2); x6 = ((arg1[8]) * 0x2); x7 = ((arg1[7]) * UINT8_C(0x13)); x8 = (x7 * 0x2); x9 = ((arg1[7]) * 0x2); x10 = ((arg1[6]) * UINT8_C(0x13)); x11 = ((uint64_t)x10 * 0x2); x12 = ((arg1[6]) * 0x2); x13 = ((arg1[5]) * UINT8_C(0x13)); x14 = ((arg1[5]) * 0x2); x15 = ((arg1[4]) * 0x2); x16 = ((arg1[3]) * 0x2); x17 = ((arg1[2]) * 0x2); x18 = ((arg1[1]) * 0x2); x19 = ((uint64_t)(arg1[9]) * (x1 * 0x2)); x20 = ((uint64_t)(arg1[8]) * x2); x21 = ((uint64_t)(arg1[8]) * x4); x22 = ((arg1[7]) * ((uint64_t)x2 * 0x2)); x23 = ((arg1[7]) * x5); x24 = ((uint64_t)(arg1[7]) * (x7 * 0x2)); x25 = ((uint64_t)(arg1[6]) * x2); x26 = ((arg1[6]) * x5); x27 = ((uint64_t)(arg1[6]) * x8); x28 = ((uint64_t)(arg1[6]) * x10); x29 = ((arg1[5]) * ((uint64_t)x2 * 0x2)); x30 = ((arg1[5]) * x5); x31 = ((arg1[5]) * ((uint64_t)x8 * 0x2)); x32 = ((arg1[5]) * x11); x33 = ((uint64_t)(arg1[5]) * (x13 * 0x2)); x34 = ((uint64_t)(arg1[4]) * x2); x35 = ((arg1[4]) * x5); x36 = ((uint64_t)(arg1[4]) * x8); x37 = ((arg1[4]) * x11); x38 = ((uint64_t)(arg1[4]) * x14); x39 = ((uint64_t)(arg1[4]) * (arg1[4])); x40 = ((arg1[3]) * ((uint64_t)x2 * 0x2)); x41 = ((arg1[3]) * x5); x42 = ((arg1[3]) * ((uint64_t)x8 * 0x2)); x43 = ((uint64_t)(arg1[3]) * x12); x44 = ((uint64_t)(arg1[3]) * (x14 * 0x2)); x45 = ((uint64_t)(arg1[3]) * x15); x46 = ((uint64_t)(arg1[3]) * ((arg1[3]) * 0x2)); x47 = ((uint64_t)(arg1[2]) * x2); x48 = ((arg1[2]) * x5); x49 = ((uint64_t)(arg1[2]) * x9); x50 = ((uint64_t)(arg1[2]) * x12); x51 = ((uint64_t)(arg1[2]) * x14); x52 = ((uint64_t)(arg1[2]) * x15); x53 = ((uint64_t)(arg1[2]) * x16); x54 = ((uint64_t)(arg1[2]) * (arg1[2])); x55 = ((arg1[1]) * ((uint64_t)x2 * 0x2)); x56 = ((uint64_t)(arg1[1]) * x6); x57 = ((uint64_t)(arg1[1]) * (x9 * 0x2)); x58 = ((uint64_t)(arg1[1]) * x12); x59 = ((uint64_t)(arg1[1]) * (x14 * 0x2)); x60 = ((uint64_t)(arg1[1]) * x15); x61 = ((uint64_t)(arg1[1]) * (x16 * 0x2)); x62 = ((uint64_t)(arg1[1]) * x17); x63 = ((uint64_t)(arg1[1]) * ((arg1[1]) * 0x2)); x64 = ((uint64_t)(arg1[0]) * x3); x65 = ((uint64_t)(arg1[0]) * x6); x66 = ((uint64_t)(arg1[0]) * x9); x67 = ((uint64_t)(arg1[0]) * x12); x68 = ((uint64_t)(arg1[0]) * x14); x69 = ((uint64_t)(arg1[0]) * x15); x70 = ((uint64_t)(arg1[0]) * x16); x71 = ((uint64_t)(arg1[0]) * x17); x72 = ((uint64_t)(arg1[0]) * x18); x73 = ((uint64_t)(arg1[0]) * (arg1[0])); x74 = (x73 + (x55 + (x48 + (x42 + (x37 + x33))))); x75 = (x74 >> 26); x76 = (uint32_t)(x74 & UINT32_C(0x3ffffff)); x77 = (x64 + (x56 + (x49 + (x43 + x38)))); x78 = (x65 + (x57 + (x50 + (x44 + (x39 + x19))))); x79 = (x66 + (x58 + (x51 + (x45 + x20)))); x80 = (x67 + (x59 + (x52 + (x46 + (x22 + x21))))); x81 = (x68 + (x60 + (x53 + (x25 + x23)))); x82 = (x69 + (x61 + (x54 + (x29 + (x26 + x24))))); x83 = (x70 + (x62 + (x34 + (x30 + x27)))); x84 = (x71 + (x63 + (x40 + (x35 + (x31 + x28))))); x85 = (x72 + (x47 + (x41 + (x36 + x32)))); x86 = (x75 + x85); x87 = (x86 >> 25); x88 = (uint32_t)(x86 & UINT32_C(0x1ffffff)); x89 = (x87 + x84); x90 = (x89 >> 26); x91 = (uint32_t)(x89 & UINT32_C(0x3ffffff)); x92 = (x90 + x83); x93 = (x92 >> 25); x94 = (uint32_t)(x92 & UINT32_C(0x1ffffff)); x95 = (x93 + x82); x96 = (x95 >> 26); x97 = (uint32_t)(x95 & UINT32_C(0x3ffffff)); x98 = (x96 + x81); x99 = (x98 >> 25); x100 = (uint32_t)(x98 & UINT32_C(0x1ffffff)); x101 = (x99 + x80); x102 = (x101 >> 26); x103 = (uint32_t)(x101 & UINT32_C(0x3ffffff)); x104 = (x102 + x79); x105 = (x104 >> 25); x106 = (uint32_t)(x104 & UINT32_C(0x1ffffff)); x107 = (x105 + x78); x108 = (x107 >> 26); x109 = (uint32_t)(x107 & UINT32_C(0x3ffffff)); x110 = (x108 + x77); x111 = (x110 >> 25); x112 = (uint32_t)(x110 & UINT32_C(0x1ffffff)); x113 = (x111 * UINT8_C(0x13)); x114 = (x76 + x113); x115 = (uint32_t)(x114 >> 26); x116 = (uint32_t)(x114 & UINT32_C(0x3ffffff)); x117 = (x115 + x88); x118 = (fiat_25519_uint1)(x117 >> 25); x119 = (x117 & UINT32_C(0x1ffffff)); x120 = (x118 + x91); out1[0] = x116; out1[1] = x119; out1[2] = x120; out1[3] = x94; out1[4] = x97; out1[5] = x100; out1[6] = x103; out1[7] = x106; out1[8] = x109; out1[9] = x112; } /* * The function fiat_25519_carry reduces a field element. * * Postconditions: * eval out1 mod m = eval arg1 mod m * */ static void fiat_25519_carry(fiat_25519_tight_field_element out1, const fiat_25519_loose_field_element arg1) { uint32_t x1; uint32_t x2; uint32_t x3; uint32_t x4; uint32_t x5; uint32_t x6; uint32_t x7; uint32_t x8; uint32_t x9; uint32_t x10; uint32_t x11; uint32_t x12; uint32_t x13; uint32_t x14; uint32_t x15; uint32_t x16; uint32_t x17; uint32_t x18; uint32_t x19; uint32_t x20; uint32_t x21; uint32_t x22; x1 = (arg1[0]); x2 = ((x1 >> 26) + (arg1[1])); x3 = ((x2 >> 25) + (arg1[2])); x4 = ((x3 >> 26) + (arg1[3])); x5 = ((x4 >> 25) + (arg1[4])); x6 = ((x5 >> 26) + (arg1[5])); x7 = ((x6 >> 25) + (arg1[6])); x8 = ((x7 >> 26) + (arg1[7])); x9 = ((x8 >> 25) + (arg1[8])); x10 = ((x9 >> 26) + (arg1[9])); x11 = ((x1 & UINT32_C(0x3ffffff)) + ((x10 >> 25) * UINT8_C(0x13))); x12 = ((fiat_25519_uint1)(x11 >> 26) + (x2 & UINT32_C(0x1ffffff))); x13 = (x11 & UINT32_C(0x3ffffff)); x14 = (x12 & UINT32_C(0x1ffffff)); x15 = ((fiat_25519_uint1)(x12 >> 25) + (x3 & UINT32_C(0x3ffffff))); x16 = (x4 & UINT32_C(0x1ffffff)); x17 = (x5 & UINT32_C(0x3ffffff)); x18 = (x6 & UINT32_C(0x1ffffff)); x19 = (x7 & UINT32_C(0x3ffffff)); x20 = (x8 & UINT32_C(0x1ffffff)); x21 = (x9 & UINT32_C(0x3ffffff)); x22 = (x10 & UINT32_C(0x1ffffff)); out1[0] = x13; out1[1] = x14; out1[2] = x15; out1[3] = x16; out1[4] = x17; out1[5] = x18; out1[6] = x19; out1[7] = x20; out1[8] = x21; out1[9] = x22; } /* * The function fiat_25519_add adds two field elements. * * Postconditions: * eval out1 mod m = (eval arg1 + eval arg2) mod m * */ static void fiat_25519_add(fiat_25519_loose_field_element out1, const fiat_25519_tight_field_element arg1, const fiat_25519_tight_field_element arg2) { uint32_t x1; uint32_t x2; uint32_t x3; uint32_t x4; uint32_t x5; uint32_t x6; uint32_t x7; uint32_t x8; uint32_t x9; uint32_t x10; x1 = ((arg1[0]) + (arg2[0])); x2 = ((arg1[1]) + (arg2[1])); x3 = ((arg1[2]) + (arg2[2])); x4 = ((arg1[3]) + (arg2[3])); x5 = ((arg1[4]) + (arg2[4])); x6 = ((arg1[5]) + (arg2[5])); x7 = ((arg1[6]) + (arg2[6])); x8 = ((arg1[7]) + (arg2[7])); x9 = ((arg1[8]) + (arg2[8])); x10 = ((arg1[9]) + (arg2[9])); out1[0] = x1; out1[1] = x2; out1[2] = x3; out1[3] = x4; out1[4] = x5; out1[5] = x6; out1[6] = x7; out1[7] = x8; out1[8] = x9; out1[9] = x10; } /* * The function fiat_25519_sub subtracts two field elements. * * Postconditions: * eval out1 mod m = (eval arg1 - eval arg2) mod m * */ static void fiat_25519_sub(fiat_25519_loose_field_element out1, const fiat_25519_tight_field_element arg1, const fiat_25519_tight_field_element arg2) { uint32_t x1; uint32_t x2; uint32_t x3; uint32_t x4; uint32_t x5; uint32_t x6; uint32_t x7; uint32_t x8; uint32_t x9; uint32_t x10; x1 = ((UINT32_C(0x7ffffda) + (arg1[0])) - (arg2[0])); x2 = ((UINT32_C(0x3fffffe) + (arg1[1])) - (arg2[1])); x3 = ((UINT32_C(0x7fffffe) + (arg1[2])) - (arg2[2])); x4 = ((UINT32_C(0x3fffffe) + (arg1[3])) - (arg2[3])); x5 = ((UINT32_C(0x7fffffe) + (arg1[4])) - (arg2[4])); x6 = ((UINT32_C(0x3fffffe) + (arg1[5])) - (arg2[5])); x7 = ((UINT32_C(0x7fffffe) + (arg1[6])) - (arg2[6])); x8 = ((UINT32_C(0x3fffffe) + (arg1[7])) - (arg2[7])); x9 = ((UINT32_C(0x7fffffe) + (arg1[8])) - (arg2[8])); x10 = ((UINT32_C(0x3fffffe) + (arg1[9])) - (arg2[9])); out1[0] = x1; out1[1] = x2; out1[2] = x3; out1[3] = x4; out1[4] = x5; out1[5] = x6; out1[6] = x7; out1[7] = x8; out1[8] = x9; out1[9] = x10; } /* * The function fiat_25519_opp negates a field element. * * Postconditions: * eval out1 mod m = -eval arg1 mod m * */ static void fiat_25519_opp(fiat_25519_loose_field_element out1, const fiat_25519_tight_field_element arg1) { uint32_t x1; uint32_t x2; uint32_t x3; uint32_t x4; uint32_t x5; uint32_t x6; uint32_t x7; uint32_t x8; uint32_t x9; uint32_t x10; x1 = (UINT32_C(0x7ffffda) - (arg1[0])); x2 = (UINT32_C(0x3fffffe) - (arg1[1])); x3 = (UINT32_C(0x7fffffe) - (arg1[2])); x4 = (UINT32_C(0x3fffffe) - (arg1[3])); x5 = (UINT32_C(0x7fffffe) - (arg1[4])); x6 = (UINT32_C(0x3fffffe) - (arg1[5])); x7 = (UINT32_C(0x7fffffe) - (arg1[6])); x8 = (UINT32_C(0x3fffffe) - (arg1[7])); x9 = (UINT32_C(0x7fffffe) - (arg1[8])); x10 = (UINT32_C(0x3fffffe) - (arg1[9])); out1[0] = x1; out1[1] = x2; out1[2] = x3; out1[3] = x4; out1[4] = x5; out1[5] = x6; out1[6] = x7; out1[7] = x8; out1[8] = x9; out1[9] = x10; } /* * The function fiat_25519_selectznz is a multi-limb conditional select. * * Postconditions: * out1 = (if arg1 = 0 then arg2 else arg3) * * Input Bounds: * arg1: [0x0 ~> 0x1] * arg2: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff]] * arg3: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff]] * Output Bounds: * out1: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff]] */ static void fiat_25519_selectznz(uint32_t out1[10], fiat_25519_uint1 arg1, const uint32_t arg2[10], const uint32_t arg3[10]) { uint32_t x1; uint32_t x2; uint32_t x3; uint32_t x4; uint32_t x5; uint32_t x6; uint32_t x7; uint32_t x8; uint32_t x9; uint32_t x10; fiat_25519_cmovznz_u32(&x1, arg1, (arg2[0]), (arg3[0])); fiat_25519_cmovznz_u32(&x2, arg1, (arg2[1]), (arg3[1])); fiat_25519_cmovznz_u32(&x3, arg1, (arg2[2]), (arg3[2])); fiat_25519_cmovznz_u32(&x4, arg1, (arg2[3]), (arg3[3])); fiat_25519_cmovznz_u32(&x5, arg1, (arg2[4]), (arg3[4])); fiat_25519_cmovznz_u32(&x6, arg1, (arg2[5]), (arg3[5])); fiat_25519_cmovznz_u32(&x7, arg1, (arg2[6]), (arg3[6])); fiat_25519_cmovznz_u32(&x8, arg1, (arg2[7]), (arg3[7])); fiat_25519_cmovznz_u32(&x9, arg1, (arg2[8]), (arg3[8])); fiat_25519_cmovznz_u32(&x10, arg1, (arg2[9]), (arg3[9])); out1[0] = x1; out1[1] = x2; out1[2] = x3; out1[3] = x4; out1[4] = x5; out1[5] = x6; out1[6] = x7; out1[7] = x8; out1[8] = x9; out1[9] = x10; } /* * The function fiat_25519_to_bytes serializes a field element to bytes in little-endian order. * * Postconditions: * out1 = map (λ x, ⌊((eval arg1 mod m) mod 2^(8 * (x + 1))) / 2^(8 * x)⌋) [0..31] * * Output Bounds: * out1: [[0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0x7f]] */ static void fiat_25519_to_bytes(uint8_t out1[32], const fiat_25519_tight_field_element arg1) { uint32_t x1; fiat_25519_uint1 x2; uint32_t x3; fiat_25519_uint1 x4; uint32_t x5; fiat_25519_uint1 x6; uint32_t x7; fiat_25519_uint1 x8; uint32_t x9; fiat_25519_uint1 x10; uint32_t x11; fiat_25519_uint1 x12; uint32_t x13; fiat_25519_uint1 x14; uint32_t x15; fiat_25519_uint1 x16; uint32_t x17; fiat_25519_uint1 x18; uint32_t x19; fiat_25519_uint1 x20; uint32_t x21; uint32_t x22; fiat_25519_uint1 x23; uint32_t x24; fiat_25519_uint1 x25; uint32_t x26; fiat_25519_uint1 x27; uint32_t x28; fiat_25519_uint1 x29; uint32_t x30; fiat_25519_uint1 x31; uint32_t x32; fiat_25519_uint1 x33; uint32_t x34; fiat_25519_uint1 x35; uint32_t x36; fiat_25519_uint1 x37; uint32_t x38; fiat_25519_uint1 x39; uint32_t x40; fiat_25519_uint1 x41; uint32_t x42; uint32_t x43; uint32_t x44; uint32_t x45; uint32_t x46; uint32_t x47; uint32_t x48; uint32_t x49; uint8_t x50; uint32_t x51; uint8_t x52; uint32_t x53; uint8_t x54; uint8_t x55; uint32_t x56; uint8_t x57; uint32_t x58; uint8_t x59; uint32_t x60; uint8_t x61; uint8_t x62; uint32_t x63; uint8_t x64; uint32_t x65; uint8_t x66; uint32_t x67; uint8_t x68; uint8_t x69; uint32_t x70; uint8_t x71; uint32_t x72; uint8_t x73; uint32_t x74; uint8_t x75; uint8_t x76; uint32_t x77; uint8_t x78; uint32_t x79; uint8_t x80; uint32_t x81; uint8_t x82; uint8_t x83; uint8_t x84; uint32_t x85; uint8_t x86; uint32_t x87; uint8_t x88; fiat_25519_uint1 x89; uint32_t x90; uint8_t x91; uint32_t x92; uint8_t x93; uint32_t x94; uint8_t x95; uint8_t x96; uint32_t x97; uint8_t x98; uint32_t x99; uint8_t x100; uint32_t x101; uint8_t x102; uint8_t x103; uint32_t x104; uint8_t x105; uint32_t x106; uint8_t x107; uint32_t x108; uint8_t x109; uint8_t x110; uint32_t x111; uint8_t x112; uint32_t x113; uint8_t x114; uint32_t x115; uint8_t x116; uint8_t x117; fiat_25519_subborrowx_u26(&x1, &x2, 0x0, (arg1[0]), UINT32_C(0x3ffffed)); fiat_25519_subborrowx_u25(&x3, &x4, x2, (arg1[1]), UINT32_C(0x1ffffff)); fiat_25519_subborrowx_u26(&x5, &x6, x4, (arg1[2]), UINT32_C(0x3ffffff)); fiat_25519_subborrowx_u25(&x7, &x8, x6, (arg1[3]), UINT32_C(0x1ffffff)); fiat_25519_subborrowx_u26(&x9, &x10, x8, (arg1[4]), UINT32_C(0x3ffffff)); fiat_25519_subborrowx_u25(&x11, &x12, x10, (arg1[5]), UINT32_C(0x1ffffff)); fiat_25519_subborrowx_u26(&x13, &x14, x12, (arg1[6]), UINT32_C(0x3ffffff)); fiat_25519_subborrowx_u25(&x15, &x16, x14, (arg1[7]), UINT32_C(0x1ffffff)); fiat_25519_subborrowx_u26(&x17, &x18, x16, (arg1[8]), UINT32_C(0x3ffffff)); fiat_25519_subborrowx_u25(&x19, &x20, x18, (arg1[9]), UINT32_C(0x1ffffff)); fiat_25519_cmovznz_u32(&x21, x20, 0x0, UINT32_C(0xffffffff)); fiat_25519_addcarryx_u26(&x22, &x23, 0x0, x1, (x21 & UINT32_C(0x3ffffed))); fiat_25519_addcarryx_u25(&x24, &x25, x23, x3, (x21 & UINT32_C(0x1ffffff))); fiat_25519_addcarryx_u26(&x26, &x27, x25, x5, (x21 & UINT32_C(0x3ffffff))); fiat_25519_addcarryx_u25(&x28, &x29, x27, x7, (x21 & UINT32_C(0x1ffffff))); fiat_25519_addcarryx_u26(&x30, &x31, x29, x9, (x21 & UINT32_C(0x3ffffff))); fiat_25519_addcarryx_u25(&x32, &x33, x31, x11, (x21 & UINT32_C(0x1ffffff))); fiat_25519_addcarryx_u26(&x34, &x35, x33, x13, (x21 & UINT32_C(0x3ffffff))); fiat_25519_addcarryx_u25(&x36, &x37, x35, x15, (x21 & UINT32_C(0x1ffffff))); fiat_25519_addcarryx_u26(&x38, &x39, x37, x17, (x21 & UINT32_C(0x3ffffff))); fiat_25519_addcarryx_u25(&x40, &x41, x39, x19, (x21 & UINT32_C(0x1ffffff))); x42 = (x40 << 6); x43 = (x38 << 4); x44 = (x36 << 3); x45 = (x34 * (uint32_t)0x2); x46 = (x30 << 6); x47 = (x28 << 5); x48 = (x26 << 3); x49 = (x24 << 2); x50 = (uint8_t)(x22 & UINT8_C(0xff)); x51 = (x22 >> 8); x52 = (uint8_t)(x51 & UINT8_C(0xff)); x53 = (x51 >> 8); x54 = (uint8_t)(x53 & UINT8_C(0xff)); x55 = (uint8_t)(x53 >> 8); x56 = (x49 + (uint32_t)x55); x57 = (uint8_t)(x56 & UINT8_C(0xff)); x58 = (x56 >> 8); x59 = (uint8_t)(x58 & UINT8_C(0xff)); x60 = (x58 >> 8); x61 = (uint8_t)(x60 & UINT8_C(0xff)); x62 = (uint8_t)(x60 >> 8); x63 = (x48 + (uint32_t)x62); x64 = (uint8_t)(x63 & UINT8_C(0xff)); x65 = (x63 >> 8); x66 = (uint8_t)(x65 & UINT8_C(0xff)); x67 = (x65 >> 8); x68 = (uint8_t)(x67 & UINT8_C(0xff)); x69 = (uint8_t)(x67 >> 8); x70 = (x47 + (uint32_t)x69); x71 = (uint8_t)(x70 & UINT8_C(0xff)); x72 = (x70 >> 8); x73 = (uint8_t)(x72 & UINT8_C(0xff)); x74 = (x72 >> 8); x75 = (uint8_t)(x74 & UINT8_C(0xff)); x76 = (uint8_t)(x74 >> 8); x77 = (x46 + (uint32_t)x76); x78 = (uint8_t)(x77 & UINT8_C(0xff)); x79 = (x77 >> 8); x80 = (uint8_t)(x79 & UINT8_C(0xff)); x81 = (x79 >> 8); x82 = (uint8_t)(x81 & UINT8_C(0xff)); x83 = (uint8_t)(x81 >> 8); x84 = (uint8_t)(x32 & UINT8_C(0xff)); x85 = (x32 >> 8); x86 = (uint8_t)(x85 & UINT8_C(0xff)); x87 = (x85 >> 8); x88 = (uint8_t)(x87 & UINT8_C(0xff)); x89 = (fiat_25519_uint1)(x87 >> 8); x90 = (x45 + (uint32_t)x89); x91 = (uint8_t)(x90 & UINT8_C(0xff)); x92 = (x90 >> 8); x93 = (uint8_t)(x92 & UINT8_C(0xff)); x94 = (x92 >> 8); x95 = (uint8_t)(x94 & UINT8_C(0xff)); x96 = (uint8_t)(x94 >> 8); x97 = (x44 + (uint32_t)x96); x98 = (uint8_t)(x97 & UINT8_C(0xff)); x99 = (x97 >> 8); x100 = (uint8_t)(x99 & UINT8_C(0xff)); x101 = (x99 >> 8); x102 = (uint8_t)(x101 & UINT8_C(0xff)); x103 = (uint8_t)(x101 >> 8); x104 = (x43 + (uint32_t)x103); x105 = (uint8_t)(x104 & UINT8_C(0xff)); x106 = (x104 >> 8); x107 = (uint8_t)(x106 & UINT8_C(0xff)); x108 = (x106 >> 8); x109 = (uint8_t)(x108 & UINT8_C(0xff)); x110 = (uint8_t)(x108 >> 8); x111 = (x42 + (uint32_t)x110); x112 = (uint8_t)(x111 & UINT8_C(0xff)); x113 = (x111 >> 8); x114 = (uint8_t)(x113 & UINT8_C(0xff)); x115 = (x113 >> 8); x116 = (uint8_t)(x115 & UINT8_C(0xff)); x117 = (uint8_t)(x115 >> 8); out1[0] = x50; out1[1] = x52; out1[2] = x54; out1[3] = x57; out1[4] = x59; out1[5] = x61; out1[6] = x64; out1[7] = x66; out1[8] = x68; out1[9] = x71; out1[10] = x73; out1[11] = x75; out1[12] = x78; out1[13] = x80; out1[14] = x82; out1[15] = x83; out1[16] = x84; out1[17] = x86; out1[18] = x88; out1[19] = x91; out1[20] = x93; out1[21] = x95; out1[22] = x98; out1[23] = x100; out1[24] = x102; out1[25] = x105; out1[26] = x107; out1[27] = x109; out1[28] = x112; out1[29] = x114; out1[30] = x116; out1[31] = x117; } /* * The function fiat_25519_from_bytes deserializes a field element from bytes in little-endian order. * * Postconditions: * eval out1 mod m = bytes_eval arg1 mod m * * Input Bounds: * arg1: [[0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0x7f]] */ static void fiat_25519_from_bytes(fiat_25519_tight_field_element out1, const uint8_t arg1[32]) { uint32_t x1; uint32_t x2; uint32_t x3; uint32_t x4; uint32_t x5; uint32_t x6; uint32_t x7; uint32_t x8; uint32_t x9; uint32_t x10; uint32_t x11; uint32_t x12; uint32_t x13; uint32_t x14; uint32_t x15; uint8_t x16; uint32_t x17; uint32_t x18; uint32_t x19; uint32_t x20; uint32_t x21; uint32_t x22; uint32_t x23; uint32_t x24; uint32_t x25; uint32_t x26; uint32_t x27; uint32_t x28; uint32_t x29; uint32_t x30; uint32_t x31; uint8_t x32; uint32_t x33; uint32_t x34; uint32_t x35; uint32_t x36; uint8_t x37; uint32_t x38; uint32_t x39; uint32_t x40; uint32_t x41; uint8_t x42; uint32_t x43; uint32_t x44; uint32_t x45; uint32_t x46; uint8_t x47; uint32_t x48; uint32_t x49; uint32_t x50; uint32_t x51; uint8_t x52; uint32_t x53; uint32_t x54; uint32_t x55; uint32_t x56; uint32_t x57; uint32_t x58; uint32_t x59; uint8_t x60; uint32_t x61; uint32_t x62; uint32_t x63; uint32_t x64; uint8_t x65; uint32_t x66; uint32_t x67; uint32_t x68; uint32_t x69; uint8_t x70; uint32_t x71; uint32_t x72; uint32_t x73; uint32_t x74; uint8_t x75; uint32_t x76; uint32_t x77; uint32_t x78; x1 = ((uint32_t)(arg1[31]) << 18); x2 = ((uint32_t)(arg1[30]) << 10); x3 = ((uint32_t)(arg1[29]) << 2); x4 = ((uint32_t)(arg1[28]) << 20); x5 = ((uint32_t)(arg1[27]) << 12); x6 = ((uint32_t)(arg1[26]) << 4); x7 = ((uint32_t)(arg1[25]) << 21); x8 = ((uint32_t)(arg1[24]) << 13); x9 = ((uint32_t)(arg1[23]) << 5); x10 = ((uint32_t)(arg1[22]) << 23); x11 = ((uint32_t)(arg1[21]) << 15); x12 = ((uint32_t)(arg1[20]) << 7); x13 = ((uint32_t)(arg1[19]) << 24); x14 = ((uint32_t)(arg1[18]) << 16); x15 = ((uint32_t)(arg1[17]) << 8); x16 = (arg1[16]); x17 = ((uint32_t)(arg1[15]) << 18); x18 = ((uint32_t)(arg1[14]) << 10); x19 = ((uint32_t)(arg1[13]) << 2); x20 = ((uint32_t)(arg1[12]) << 19); x21 = ((uint32_t)(arg1[11]) << 11); x22 = ((uint32_t)(arg1[10]) << 3); x23 = ((uint32_t)(arg1[9]) << 21); x24 = ((uint32_t)(arg1[8]) << 13); x25 = ((uint32_t)(arg1[7]) << 5); x26 = ((uint32_t)(arg1[6]) << 22); x27 = ((uint32_t)(arg1[5]) << 14); x28 = ((uint32_t)(arg1[4]) << 6); x29 = ((uint32_t)(arg1[3]) << 24); x30 = ((uint32_t)(arg1[2]) << 16); x31 = ((uint32_t)(arg1[1]) << 8); x32 = (arg1[0]); x33 = (x31 + (uint32_t)x32); x34 = (x30 + x33); x35 = (x29 + x34); x36 = (x35 & UINT32_C(0x3ffffff)); x37 = (uint8_t)(x35 >> 26); x38 = (x28 + (uint32_t)x37); x39 = (x27 + x38); x40 = (x26 + x39); x41 = (x40 & UINT32_C(0x1ffffff)); x42 = (uint8_t)(x40 >> 25); x43 = (x25 + (uint32_t)x42); x44 = (x24 + x43); x45 = (x23 + x44); x46 = (x45 & UINT32_C(0x3ffffff)); x47 = (uint8_t)(x45 >> 26); x48 = (x22 + (uint32_t)x47); x49 = (x21 + x48); x50 = (x20 + x49); x51 = (x50 & UINT32_C(0x1ffffff)); x52 = (uint8_t)(x50 >> 25); x53 = (x19 + (uint32_t)x52); x54 = (x18 + x53); x55 = (x17 + x54); x56 = (x15 + (uint32_t)x16); x57 = (x14 + x56); x58 = (x13 + x57); x59 = (x58 & UINT32_C(0x1ffffff)); x60 = (uint8_t)(x58 >> 25); x61 = (x12 + (uint32_t)x60); x62 = (x11 + x61); x63 = (x10 + x62); x64 = (x63 & UINT32_C(0x3ffffff)); x65 = (uint8_t)(x63 >> 26); x66 = (x9 + (uint32_t)x65); x67 = (x8 + x66); x68 = (x7 + x67); x69 = (x68 & UINT32_C(0x1ffffff)); x70 = (uint8_t)(x68 >> 25); x71 = (x6 + (uint32_t)x70); x72 = (x5 + x71); x73 = (x4 + x72); x74 = (x73 & UINT32_C(0x3ffffff)); x75 = (uint8_t)(x73 >> 26); x76 = (x3 + (uint32_t)x75); x77 = (x2 + x76); x78 = (x1 + x77); out1[0] = x36; out1[1] = x41; out1[2] = x46; out1[3] = x51; out1[4] = x55; out1[5] = x59; out1[6] = x64; out1[7] = x69; out1[8] = x74; out1[9] = x78; } /* * The function fiat_25519_carry_scmul_121666 multiplies a field element by 121666 and reduces the result. * * Postconditions: * eval out1 mod m = (121666 * eval arg1) mod m * */ static void fiat_25519_carry_scmul_121666(fiat_25519_tight_field_element out1, const fiat_25519_loose_field_element arg1) { uint64_t x1; uint64_t x2; uint64_t x3; uint64_t x4; uint64_t x5; uint64_t x6; uint64_t x7; uint64_t x8; uint64_t x9; uint64_t x10; uint32_t x11; uint32_t x12; uint64_t x13; uint32_t x14; uint32_t x15; uint64_t x16; uint32_t x17; uint32_t x18; uint64_t x19; uint32_t x20; uint32_t x21; uint64_t x22; uint32_t x23; uint32_t x24; uint64_t x25; uint32_t x26; uint32_t x27; uint64_t x28; uint32_t x29; uint32_t x30; uint64_t x31; uint32_t x32; uint32_t x33; uint64_t x34; uint32_t x35; uint32_t x36; uint64_t x37; uint32_t x38; uint32_t x39; uint32_t x40; uint32_t x41; fiat_25519_uint1 x42; uint32_t x43; uint32_t x44; fiat_25519_uint1 x45; uint32_t x46; uint32_t x47; x1 = ((uint64_t)UINT32_C(0x1db42) * (arg1[9])); x2 = ((uint64_t)UINT32_C(0x1db42) * (arg1[8])); x3 = ((uint64_t)UINT32_C(0x1db42) * (arg1[7])); x4 = ((uint64_t)UINT32_C(0x1db42) * (arg1[6])); x5 = ((uint64_t)UINT32_C(0x1db42) * (arg1[5])); x6 = ((uint64_t)UINT32_C(0x1db42) * (arg1[4])); x7 = ((uint64_t)UINT32_C(0x1db42) * (arg1[3])); x8 = ((uint64_t)UINT32_C(0x1db42) * (arg1[2])); x9 = ((uint64_t)UINT32_C(0x1db42) * (arg1[1])); x10 = ((uint64_t)UINT32_C(0x1db42) * (arg1[0])); x11 = (uint32_t)(x10 >> 26); x12 = (uint32_t)(x10 & UINT32_C(0x3ffffff)); x13 = (x11 + x9); x14 = (uint32_t)(x13 >> 25); x15 = (uint32_t)(x13 & UINT32_C(0x1ffffff)); x16 = (x14 + x8); x17 = (uint32_t)(x16 >> 26); x18 = (uint32_t)(x16 & UINT32_C(0x3ffffff)); x19 = (x17 + x7); x20 = (uint32_t)(x19 >> 25); x21 = (uint32_t)(x19 & UINT32_C(0x1ffffff)); x22 = (x20 + x6); x23 = (uint32_t)(x22 >> 26); x24 = (uint32_t)(x22 & UINT32_C(0x3ffffff)); x25 = (x23 + x5); x26 = (uint32_t)(x25 >> 25); x27 = (uint32_t)(x25 & UINT32_C(0x1ffffff)); x28 = (x26 + x4); x29 = (uint32_t)(x28 >> 26); x30 = (uint32_t)(x28 & UINT32_C(0x3ffffff)); x31 = (x29 + x3); x32 = (uint32_t)(x31 >> 25); x33 = (uint32_t)(x31 & UINT32_C(0x1ffffff)); x34 = (x32 + x2); x35 = (uint32_t)(x34 >> 26); x36 = (uint32_t)(x34 & UINT32_C(0x3ffffff)); x37 = (x35 + x1); x38 = (uint32_t)(x37 >> 25); x39 = (uint32_t)(x37 & UINT32_C(0x1ffffff)); x40 = (x38 * UINT8_C(0x13)); x41 = (x12 + x40); x42 = (fiat_25519_uint1)(x41 >> 26); x43 = (x41 & UINT32_C(0x3ffffff)); x44 = (x42 + x15); x45 = (fiat_25519_uint1)(x44 >> 25); x46 = (x44 & UINT32_C(0x1ffffff)); x47 = (x45 + x18); out1[0] = x43; out1[1] = x46; out1[2] = x47; out1[3] = x21; out1[4] = x24; out1[5] = x27; out1[6] = x30; out1[7] = x33; out1[8] = x36; out1[9] = x39; }
mirage-crypto
2.0.2
ISC
https://github.com/mirage/mirage-crypto
git+https://github.com/mirage/mirage-crypto.git
h
mirage-crypto-2.0.2/ec/native/curve25519_64.h
/* Autogenerated: '../fiat-crypto/src/ExtractionOCaml/unsaturated_solinas' --static --use-value-barrier --inline-internal 25519 64 '(auto)' '2^255 - 19' carry_mul carry_square carry add sub opp selectznz to_bytes from_bytes carry_scmul121666 */ /* curve description: 25519 */ /* machine_wordsize = 64 (from "64") */ /* requested operations: carry_mul, carry_square, carry, add, sub, opp, selectznz, to_bytes, from_bytes, carry_scmul121666 */ /* n = 5 (from "(auto)") */ /* s-c = 2^255 - [(1, 19)] (from "2^255 - 19") */ /* tight_bounds_multiplier = 1 (from "") */ /* */ /* Computed values: */ /* carry_chain = [0, 1, 2, 3, 4, 0, 1] */ /* eval z = z[0] + (z[1] << 51) + (z[2] << 102) + (z[3] << 153) + (z[4] << 204) */ /* bytes_eval z = z[0] + (z[1] << 8) + (z[2] << 16) + (z[3] << 24) + (z[4] << 32) + (z[5] << 40) + (z[6] << 48) + (z[7] << 56) + (z[8] << 64) + (z[9] << 72) + (z[10] << 80) + (z[11] << 88) + (z[12] << 96) + (z[13] << 104) + (z[14] << 112) + (z[15] << 120) + (z[16] << 128) + (z[17] << 136) + (z[18] << 144) + (z[19] << 152) + (z[20] << 160) + (z[21] << 168) + (z[22] << 176) + (z[23] << 184) + (z[24] << 192) + (z[25] << 200) + (z[26] << 208) + (z[27] << 216) + (z[28] << 224) + (z[29] << 232) + (z[30] << 240) + (z[31] << 248) */ /* balance = [0xfffffffffffda, 0xffffffffffffe, 0xffffffffffffe, 0xffffffffffffe, 0xffffffffffffe] */ #include <stdint.h> typedef unsigned char fiat_25519_uint1; typedef signed char fiat_25519_int1; #if defined(__GNUC__) || defined(__clang__) # define FIAT_25519_FIAT_EXTENSION __extension__ # define FIAT_25519_FIAT_INLINE __inline__ #else # define FIAT_25519_FIAT_EXTENSION # define FIAT_25519_FIAT_INLINE #endif FIAT_25519_FIAT_EXTENSION typedef signed __int128 fiat_25519_int128; FIAT_25519_FIAT_EXTENSION typedef unsigned __int128 fiat_25519_uint128; /* The type fiat_25519_loose_field_element is a field element with loose bounds. */ /* Bounds: [[0x0 ~> 0x18000000000000], [0x0 ~> 0x18000000000000], [0x0 ~> 0x18000000000000], [0x0 ~> 0x18000000000000], [0x0 ~> 0x18000000000000]] */ typedef uint64_t fiat_25519_loose_field_element[5]; /* The type fiat_25519_tight_field_element is a field element with tight bounds. */ /* Bounds: [[0x0 ~> 0x8000000000000], [0x0 ~> 0x8000000000000], [0x0 ~> 0x8000000000000], [0x0 ~> 0x8000000000000], [0x0 ~> 0x8000000000000]] */ typedef uint64_t fiat_25519_tight_field_element[5]; #if (-1 & 3) != 3 #error "This code only works on a two's complement system" #endif #if !defined(FIAT_25519_NO_ASM) && (defined(__GNUC__) || defined(__clang__)) static __inline__ uint64_t fiat_25519_value_barrier_u64(uint64_t a) { __asm__("" : "+r"(a) : /* no inputs */); return a; } #else # define fiat_25519_value_barrier_u64(x) (x) #endif /* * The function fiat_25519_addcarryx_u51 is an addition with carry. * * Postconditions: * out1 = (arg1 + arg2 + arg3) mod 2^51 * out2 = ⌊(arg1 + arg2 + arg3) / 2^51⌋ * * Input Bounds: * arg1: [0x0 ~> 0x1] * arg2: [0x0 ~> 0x7ffffffffffff] * arg3: [0x0 ~> 0x7ffffffffffff] * Output Bounds: * out1: [0x0 ~> 0x7ffffffffffff] * out2: [0x0 ~> 0x1] */ static FIAT_25519_FIAT_INLINE void fiat_25519_addcarryx_u51(uint64_t* out1, fiat_25519_uint1* out2, fiat_25519_uint1 arg1, uint64_t arg2, uint64_t arg3) { uint64_t x1; uint64_t x2; fiat_25519_uint1 x3; x1 = ((arg1 + arg2) + arg3); x2 = (x1 & UINT64_C(0x7ffffffffffff)); x3 = (fiat_25519_uint1)(x1 >> 51); *out1 = x2; *out2 = x3; } /* * The function fiat_25519_subborrowx_u51 is a subtraction with borrow. * * Postconditions: * out1 = (-arg1 + arg2 + -arg3) mod 2^51 * out2 = -⌊(-arg1 + arg2 + -arg3) / 2^51⌋ * * Input Bounds: * arg1: [0x0 ~> 0x1] * arg2: [0x0 ~> 0x7ffffffffffff] * arg3: [0x0 ~> 0x7ffffffffffff] * Output Bounds: * out1: [0x0 ~> 0x7ffffffffffff] * out2: [0x0 ~> 0x1] */ static FIAT_25519_FIAT_INLINE void fiat_25519_subborrowx_u51(uint64_t* out1, fiat_25519_uint1* out2, fiat_25519_uint1 arg1, uint64_t arg2, uint64_t arg3) { int64_t x1; fiat_25519_int1 x2; uint64_t x3; x1 = ((int64_t)(arg2 - (int64_t)arg1) - (int64_t)arg3); x2 = (fiat_25519_int1)(x1 >> 51); x3 = (x1 & UINT64_C(0x7ffffffffffff)); *out1 = x3; *out2 = (fiat_25519_uint1)(0x0 - x2); } /* * The function fiat_25519_cmovznz_u64 is a single-word conditional move. * * Postconditions: * out1 = (if arg1 = 0 then arg2 else arg3) * * Input Bounds: * arg1: [0x0 ~> 0x1] * arg2: [0x0 ~> 0xffffffffffffffff] * arg3: [0x0 ~> 0xffffffffffffffff] * Output Bounds: * out1: [0x0 ~> 0xffffffffffffffff] */ static FIAT_25519_FIAT_INLINE void fiat_25519_cmovznz_u64(uint64_t* out1, fiat_25519_uint1 arg1, uint64_t arg2, uint64_t arg3) { fiat_25519_uint1 x1; uint64_t x2; uint64_t x3; x1 = (!(!arg1)); x2 = ((fiat_25519_int1)(0x0 - x1) & UINT64_C(0xffffffffffffffff)); x3 = ((fiat_25519_value_barrier_u64(x2) & arg3) | (fiat_25519_value_barrier_u64((~x2)) & arg2)); *out1 = x3; } /* * The function fiat_25519_carry_mul multiplies two field elements and reduces the result. * * Postconditions: * eval out1 mod m = (eval arg1 * eval arg2) mod m * */ static void fiat_25519_carry_mul(fiat_25519_tight_field_element out1, const fiat_25519_loose_field_element arg1, const fiat_25519_loose_field_element arg2) { fiat_25519_uint128 x1; fiat_25519_uint128 x2; fiat_25519_uint128 x3; fiat_25519_uint128 x4; fiat_25519_uint128 x5; fiat_25519_uint128 x6; fiat_25519_uint128 x7; fiat_25519_uint128 x8; fiat_25519_uint128 x9; fiat_25519_uint128 x10; fiat_25519_uint128 x11; fiat_25519_uint128 x12; fiat_25519_uint128 x13; fiat_25519_uint128 x14; fiat_25519_uint128 x15; fiat_25519_uint128 x16; fiat_25519_uint128 x17; fiat_25519_uint128 x18; fiat_25519_uint128 x19; fiat_25519_uint128 x20; fiat_25519_uint128 x21; fiat_25519_uint128 x22; fiat_25519_uint128 x23; fiat_25519_uint128 x24; fiat_25519_uint128 x25; fiat_25519_uint128 x26; uint64_t x27; uint64_t x28; fiat_25519_uint128 x29; fiat_25519_uint128 x30; fiat_25519_uint128 x31; fiat_25519_uint128 x32; fiat_25519_uint128 x33; uint64_t x34; uint64_t x35; fiat_25519_uint128 x36; uint64_t x37; uint64_t x38; fiat_25519_uint128 x39; uint64_t x40; uint64_t x41; fiat_25519_uint128 x42; uint64_t x43; uint64_t x44; uint64_t x45; uint64_t x46; uint64_t x47; uint64_t x48; uint64_t x49; fiat_25519_uint1 x50; uint64_t x51; uint64_t x52; x1 = ((fiat_25519_uint128)(arg1[4]) * ((arg2[4]) * UINT8_C(0x13))); x2 = ((fiat_25519_uint128)(arg1[4]) * ((arg2[3]) * UINT8_C(0x13))); x3 = ((fiat_25519_uint128)(arg1[4]) * ((arg2[2]) * UINT8_C(0x13))); x4 = ((fiat_25519_uint128)(arg1[4]) * ((arg2[1]) * UINT8_C(0x13))); x5 = ((fiat_25519_uint128)(arg1[3]) * ((arg2[4]) * UINT8_C(0x13))); x6 = ((fiat_25519_uint128)(arg1[3]) * ((arg2[3]) * UINT8_C(0x13))); x7 = ((fiat_25519_uint128)(arg1[3]) * ((arg2[2]) * UINT8_C(0x13))); x8 = ((fiat_25519_uint128)(arg1[2]) * ((arg2[4]) * UINT8_C(0x13))); x9 = ((fiat_25519_uint128)(arg1[2]) * ((arg2[3]) * UINT8_C(0x13))); x10 = ((fiat_25519_uint128)(arg1[1]) * ((arg2[4]) * UINT8_C(0x13))); x11 = ((fiat_25519_uint128)(arg1[4]) * (arg2[0])); x12 = ((fiat_25519_uint128)(arg1[3]) * (arg2[1])); x13 = ((fiat_25519_uint128)(arg1[3]) * (arg2[0])); x14 = ((fiat_25519_uint128)(arg1[2]) * (arg2[2])); x15 = ((fiat_25519_uint128)(arg1[2]) * (arg2[1])); x16 = ((fiat_25519_uint128)(arg1[2]) * (arg2[0])); x17 = ((fiat_25519_uint128)(arg1[1]) * (arg2[3])); x18 = ((fiat_25519_uint128)(arg1[1]) * (arg2[2])); x19 = ((fiat_25519_uint128)(arg1[1]) * (arg2[1])); x20 = ((fiat_25519_uint128)(arg1[1]) * (arg2[0])); x21 = ((fiat_25519_uint128)(arg1[0]) * (arg2[4])); x22 = ((fiat_25519_uint128)(arg1[0]) * (arg2[3])); x23 = ((fiat_25519_uint128)(arg1[0]) * (arg2[2])); x24 = ((fiat_25519_uint128)(arg1[0]) * (arg2[1])); x25 = ((fiat_25519_uint128)(arg1[0]) * (arg2[0])); x26 = (x25 + (x10 + (x9 + (x7 + x4)))); x27 = (uint64_t)(x26 >> 51); x28 = (uint64_t)(x26 & UINT64_C(0x7ffffffffffff)); x29 = (x21 + (x17 + (x14 + (x12 + x11)))); x30 = (x22 + (x18 + (x15 + (x13 + x1)))); x31 = (x23 + (x19 + (x16 + (x5 + x2)))); x32 = (x24 + (x20 + (x8 + (x6 + x3)))); x33 = (x27 + x32); x34 = (uint64_t)(x33 >> 51); x35 = (uint64_t)(x33 & UINT64_C(0x7ffffffffffff)); x36 = (x34 + x31); x37 = (uint64_t)(x36 >> 51); x38 = (uint64_t)(x36 & UINT64_C(0x7ffffffffffff)); x39 = (x37 + x30); x40 = (uint64_t)(x39 >> 51); x41 = (uint64_t)(x39 & UINT64_C(0x7ffffffffffff)); x42 = (x40 + x29); x43 = (uint64_t)(x42 >> 51); x44 = (uint64_t)(x42 & UINT64_C(0x7ffffffffffff)); x45 = (x43 * UINT8_C(0x13)); x46 = (x28 + x45); x47 = (x46 >> 51); x48 = (x46 & UINT64_C(0x7ffffffffffff)); x49 = (x47 + x35); x50 = (fiat_25519_uint1)(x49 >> 51); x51 = (x49 & UINT64_C(0x7ffffffffffff)); x52 = (x50 + x38); out1[0] = x48; out1[1] = x51; out1[2] = x52; out1[3] = x41; out1[4] = x44; } /* * The function fiat_25519_carry_square squares a field element and reduces the result. * * Postconditions: * eval out1 mod m = (eval arg1 * eval arg1) mod m * */ static void fiat_25519_carry_square(fiat_25519_tight_field_element out1, const fiat_25519_loose_field_element arg1) { uint64_t x1; uint64_t x2; uint64_t x3; uint64_t x4; uint64_t x5; uint64_t x6; uint64_t x7; uint64_t x8; fiat_25519_uint128 x9; fiat_25519_uint128 x10; fiat_25519_uint128 x11; fiat_25519_uint128 x12; fiat_25519_uint128 x13; fiat_25519_uint128 x14; fiat_25519_uint128 x15; fiat_25519_uint128 x16; fiat_25519_uint128 x17; fiat_25519_uint128 x18; fiat_25519_uint128 x19; fiat_25519_uint128 x20; fiat_25519_uint128 x21; fiat_25519_uint128 x22; fiat_25519_uint128 x23; fiat_25519_uint128 x24; uint64_t x25; uint64_t x26; fiat_25519_uint128 x27; fiat_25519_uint128 x28; fiat_25519_uint128 x29; fiat_25519_uint128 x30; fiat_25519_uint128 x31; uint64_t x32; uint64_t x33; fiat_25519_uint128 x34; uint64_t x35; uint64_t x36; fiat_25519_uint128 x37; uint64_t x38; uint64_t x39; fiat_25519_uint128 x40; uint64_t x41; uint64_t x42; uint64_t x43; uint64_t x44; uint64_t x45; uint64_t x46; uint64_t x47; fiat_25519_uint1 x48; uint64_t x49; uint64_t x50; x1 = ((arg1[4]) * UINT8_C(0x13)); x2 = (x1 * 0x2); x3 = ((arg1[4]) * 0x2); x4 = ((arg1[3]) * UINT8_C(0x13)); x5 = (x4 * 0x2); x6 = ((arg1[3]) * 0x2); x7 = ((arg1[2]) * 0x2); x8 = ((arg1[1]) * 0x2); x9 = ((fiat_25519_uint128)(arg1[4]) * x1); x10 = ((fiat_25519_uint128)(arg1[3]) * x2); x11 = ((fiat_25519_uint128)(arg1[3]) * x4); x12 = ((fiat_25519_uint128)(arg1[2]) * x2); x13 = ((fiat_25519_uint128)(arg1[2]) * x5); x14 = ((fiat_25519_uint128)(arg1[2]) * (arg1[2])); x15 = ((fiat_25519_uint128)(arg1[1]) * x2); x16 = ((fiat_25519_uint128)(arg1[1]) * x6); x17 = ((fiat_25519_uint128)(arg1[1]) * x7); x18 = ((fiat_25519_uint128)(arg1[1]) * (arg1[1])); x19 = ((fiat_25519_uint128)(arg1[0]) * x3); x20 = ((fiat_25519_uint128)(arg1[0]) * x6); x21 = ((fiat_25519_uint128)(arg1[0]) * x7); x22 = ((fiat_25519_uint128)(arg1[0]) * x8); x23 = ((fiat_25519_uint128)(arg1[0]) * (arg1[0])); x24 = (x23 + (x15 + x13)); x25 = (uint64_t)(x24 >> 51); x26 = (uint64_t)(x24 & UINT64_C(0x7ffffffffffff)); x27 = (x19 + (x16 + x14)); x28 = (x20 + (x17 + x9)); x29 = (x21 + (x18 + x10)); x30 = (x22 + (x12 + x11)); x31 = (x25 + x30); x32 = (uint64_t)(x31 >> 51); x33 = (uint64_t)(x31 & UINT64_C(0x7ffffffffffff)); x34 = (x32 + x29); x35 = (uint64_t)(x34 >> 51); x36 = (uint64_t)(x34 & UINT64_C(0x7ffffffffffff)); x37 = (x35 + x28); x38 = (uint64_t)(x37 >> 51); x39 = (uint64_t)(x37 & UINT64_C(0x7ffffffffffff)); x40 = (x38 + x27); x41 = (uint64_t)(x40 >> 51); x42 = (uint64_t)(x40 & UINT64_C(0x7ffffffffffff)); x43 = (x41 * UINT8_C(0x13)); x44 = (x26 + x43); x45 = (x44 >> 51); x46 = (x44 & UINT64_C(0x7ffffffffffff)); x47 = (x45 + x33); x48 = (fiat_25519_uint1)(x47 >> 51); x49 = (x47 & UINT64_C(0x7ffffffffffff)); x50 = (x48 + x36); out1[0] = x46; out1[1] = x49; out1[2] = x50; out1[3] = x39; out1[4] = x42; } /* * The function fiat_25519_carry reduces a field element. * * Postconditions: * eval out1 mod m = eval arg1 mod m * */ static void fiat_25519_carry(fiat_25519_tight_field_element out1, const fiat_25519_loose_field_element arg1) { uint64_t x1; uint64_t x2; uint64_t x3; uint64_t x4; uint64_t x5; uint64_t x6; uint64_t x7; uint64_t x8; uint64_t x9; uint64_t x10; uint64_t x11; uint64_t x12; x1 = (arg1[0]); x2 = ((x1 >> 51) + (arg1[1])); x3 = ((x2 >> 51) + (arg1[2])); x4 = ((x3 >> 51) + (arg1[3])); x5 = ((x4 >> 51) + (arg1[4])); x6 = ((x1 & UINT64_C(0x7ffffffffffff)) + ((x5 >> 51) * UINT8_C(0x13))); x7 = ((fiat_25519_uint1)(x6 >> 51) + (x2 & UINT64_C(0x7ffffffffffff))); x8 = (x6 & UINT64_C(0x7ffffffffffff)); x9 = (x7 & UINT64_C(0x7ffffffffffff)); x10 = ((fiat_25519_uint1)(x7 >> 51) + (x3 & UINT64_C(0x7ffffffffffff))); x11 = (x4 & UINT64_C(0x7ffffffffffff)); x12 = (x5 & UINT64_C(0x7ffffffffffff)); out1[0] = x8; out1[1] = x9; out1[2] = x10; out1[3] = x11; out1[4] = x12; } /* * The function fiat_25519_add adds two field elements. * * Postconditions: * eval out1 mod m = (eval arg1 + eval arg2) mod m * */ static void fiat_25519_add(fiat_25519_loose_field_element out1, const fiat_25519_tight_field_element arg1, const fiat_25519_tight_field_element arg2) { uint64_t x1; uint64_t x2; uint64_t x3; uint64_t x4; uint64_t x5; x1 = ((arg1[0]) + (arg2[0])); x2 = ((arg1[1]) + (arg2[1])); x3 = ((arg1[2]) + (arg2[2])); x4 = ((arg1[3]) + (arg2[3])); x5 = ((arg1[4]) + (arg2[4])); out1[0] = x1; out1[1] = x2; out1[2] = x3; out1[3] = x4; out1[4] = x5; } /* * The function fiat_25519_sub subtracts two field elements. * * Postconditions: * eval out1 mod m = (eval arg1 - eval arg2) mod m * */ static void fiat_25519_sub(fiat_25519_loose_field_element out1, const fiat_25519_tight_field_element arg1, const fiat_25519_tight_field_element arg2) { uint64_t x1; uint64_t x2; uint64_t x3; uint64_t x4; uint64_t x5; x1 = ((UINT64_C(0xfffffffffffda) + (arg1[0])) - (arg2[0])); x2 = ((UINT64_C(0xffffffffffffe) + (arg1[1])) - (arg2[1])); x3 = ((UINT64_C(0xffffffffffffe) + (arg1[2])) - (arg2[2])); x4 = ((UINT64_C(0xffffffffffffe) + (arg1[3])) - (arg2[3])); x5 = ((UINT64_C(0xffffffffffffe) + (arg1[4])) - (arg2[4])); out1[0] = x1; out1[1] = x2; out1[2] = x3; out1[3] = x4; out1[4] = x5; } /* * The function fiat_25519_opp negates a field element. * * Postconditions: * eval out1 mod m = -eval arg1 mod m * */ static void fiat_25519_opp(fiat_25519_loose_field_element out1, const fiat_25519_tight_field_element arg1) { uint64_t x1; uint64_t x2; uint64_t x3; uint64_t x4; uint64_t x5; x1 = (UINT64_C(0xfffffffffffda) - (arg1[0])); x2 = (UINT64_C(0xffffffffffffe) - (arg1[1])); x3 = (UINT64_C(0xffffffffffffe) - (arg1[2])); x4 = (UINT64_C(0xffffffffffffe) - (arg1[3])); x5 = (UINT64_C(0xffffffffffffe) - (arg1[4])); out1[0] = x1; out1[1] = x2; out1[2] = x3; out1[3] = x4; out1[4] = x5; } /* * The function fiat_25519_selectznz is a multi-limb conditional select. * * Postconditions: * out1 = (if arg1 = 0 then arg2 else arg3) * * Input Bounds: * arg1: [0x0 ~> 0x1] * arg2: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]] * arg3: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]] * Output Bounds: * out1: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]] */ static void fiat_25519_selectznz(uint64_t out1[5], fiat_25519_uint1 arg1, const uint64_t arg2[5], const uint64_t arg3[5]) { uint64_t x1; uint64_t x2; uint64_t x3; uint64_t x4; uint64_t x5; fiat_25519_cmovznz_u64(&x1, arg1, (arg2[0]), (arg3[0])); fiat_25519_cmovznz_u64(&x2, arg1, (arg2[1]), (arg3[1])); fiat_25519_cmovznz_u64(&x3, arg1, (arg2[2]), (arg3[2])); fiat_25519_cmovznz_u64(&x4, arg1, (arg2[3]), (arg3[3])); fiat_25519_cmovznz_u64(&x5, arg1, (arg2[4]), (arg3[4])); out1[0] = x1; out1[1] = x2; out1[2] = x3; out1[3] = x4; out1[4] = x5; } /* * The function fiat_25519_to_bytes serializes a field element to bytes in little-endian order. * * Postconditions: * out1 = map (λ x, ⌊((eval arg1 mod m) mod 2^(8 * (x + 1))) / 2^(8 * x)⌋) [0..31] * * Output Bounds: * out1: [[0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0x7f]] */ static void fiat_25519_to_bytes(uint8_t out1[32], const fiat_25519_tight_field_element arg1) { uint64_t x1; fiat_25519_uint1 x2; uint64_t x3; fiat_25519_uint1 x4; uint64_t x5; fiat_25519_uint1 x6; uint64_t x7; fiat_25519_uint1 x8; uint64_t x9; fiat_25519_uint1 x10; uint64_t x11; uint64_t x12; fiat_25519_uint1 x13; uint64_t x14; fiat_25519_uint1 x15; uint64_t x16; fiat_25519_uint1 x17; uint64_t x18; fiat_25519_uint1 x19; uint64_t x20; fiat_25519_uint1 x21; uint64_t x22; uint64_t x23; uint64_t x24; uint64_t x25; uint8_t x26; uint64_t x27; uint8_t x28; uint64_t x29; uint8_t x30; uint64_t x31; uint8_t x32; uint64_t x33; uint8_t x34; uint64_t x35; uint8_t x36; uint8_t x37; uint64_t x38; uint8_t x39; uint64_t x40; uint8_t x41; uint64_t x42; uint8_t x43; uint64_t x44; uint8_t x45; uint64_t x46; uint8_t x47; uint64_t x48; uint8_t x49; uint8_t x50; uint64_t x51; uint8_t x52; uint64_t x53; uint8_t x54; uint64_t x55; uint8_t x56; uint64_t x57; uint8_t x58; uint64_t x59; uint8_t x60; uint64_t x61; uint8_t x62; uint64_t x63; uint8_t x64; fiat_25519_uint1 x65; uint64_t x66; uint8_t x67; uint64_t x68; uint8_t x69; uint64_t x70; uint8_t x71; uint64_t x72; uint8_t x73; uint64_t x74; uint8_t x75; uint64_t x76; uint8_t x77; uint8_t x78; uint64_t x79; uint8_t x80; uint64_t x81; uint8_t x82; uint64_t x83; uint8_t x84; uint64_t x85; uint8_t x86; uint64_t x87; uint8_t x88; uint64_t x89; uint8_t x90; uint8_t x91; fiat_25519_subborrowx_u51(&x1, &x2, 0x0, (arg1[0]), UINT64_C(0x7ffffffffffed)); fiat_25519_subborrowx_u51(&x3, &x4, x2, (arg1[1]), UINT64_C(0x7ffffffffffff)); fiat_25519_subborrowx_u51(&x5, &x6, x4, (arg1[2]), UINT64_C(0x7ffffffffffff)); fiat_25519_subborrowx_u51(&x7, &x8, x6, (arg1[3]), UINT64_C(0x7ffffffffffff)); fiat_25519_subborrowx_u51(&x9, &x10, x8, (arg1[4]), UINT64_C(0x7ffffffffffff)); fiat_25519_cmovznz_u64(&x11, x10, 0x0, UINT64_C(0xffffffffffffffff)); fiat_25519_addcarryx_u51(&x12, &x13, 0x0, x1, (x11 & UINT64_C(0x7ffffffffffed))); fiat_25519_addcarryx_u51(&x14, &x15, x13, x3, (x11 & UINT64_C(0x7ffffffffffff))); fiat_25519_addcarryx_u51(&x16, &x17, x15, x5, (x11 & UINT64_C(0x7ffffffffffff))); fiat_25519_addcarryx_u51(&x18, &x19, x17, x7, (x11 & UINT64_C(0x7ffffffffffff))); fiat_25519_addcarryx_u51(&x20, &x21, x19, x9, (x11 & UINT64_C(0x7ffffffffffff))); x22 = (x20 << 4); x23 = (x18 * (uint64_t)0x2); x24 = (x16 << 6); x25 = (x14 << 3); x26 = (uint8_t)(x12 & UINT8_C(0xff)); x27 = (x12 >> 8); x28 = (uint8_t)(x27 & UINT8_C(0xff)); x29 = (x27 >> 8); x30 = (uint8_t)(x29 & UINT8_C(0xff)); x31 = (x29 >> 8); x32 = (uint8_t)(x31 & UINT8_C(0xff)); x33 = (x31 >> 8); x34 = (uint8_t)(x33 & UINT8_C(0xff)); x35 = (x33 >> 8); x36 = (uint8_t)(x35 & UINT8_C(0xff)); x37 = (uint8_t)(x35 >> 8); x38 = (x25 + (uint64_t)x37); x39 = (uint8_t)(x38 & UINT8_C(0xff)); x40 = (x38 >> 8); x41 = (uint8_t)(x40 & UINT8_C(0xff)); x42 = (x40 >> 8); x43 = (uint8_t)(x42 & UINT8_C(0xff)); x44 = (x42 >> 8); x45 = (uint8_t)(x44 & UINT8_C(0xff)); x46 = (x44 >> 8); x47 = (uint8_t)(x46 & UINT8_C(0xff)); x48 = (x46 >> 8); x49 = (uint8_t)(x48 & UINT8_C(0xff)); x50 = (uint8_t)(x48 >> 8); x51 = (x24 + (uint64_t)x50); x52 = (uint8_t)(x51 & UINT8_C(0xff)); x53 = (x51 >> 8); x54 = (uint8_t)(x53 & UINT8_C(0xff)); x55 = (x53 >> 8); x56 = (uint8_t)(x55 & UINT8_C(0xff)); x57 = (x55 >> 8); x58 = (uint8_t)(x57 & UINT8_C(0xff)); x59 = (x57 >> 8); x60 = (uint8_t)(x59 & UINT8_C(0xff)); x61 = (x59 >> 8); x62 = (uint8_t)(x61 & UINT8_C(0xff)); x63 = (x61 >> 8); x64 = (uint8_t)(x63 & UINT8_C(0xff)); x65 = (fiat_25519_uint1)(x63 >> 8); x66 = (x23 + (uint64_t)x65); x67 = (uint8_t)(x66 & UINT8_C(0xff)); x68 = (x66 >> 8); x69 = (uint8_t)(x68 & UINT8_C(0xff)); x70 = (x68 >> 8); x71 = (uint8_t)(x70 & UINT8_C(0xff)); x72 = (x70 >> 8); x73 = (uint8_t)(x72 & UINT8_C(0xff)); x74 = (x72 >> 8); x75 = (uint8_t)(x74 & UINT8_C(0xff)); x76 = (x74 >> 8); x77 = (uint8_t)(x76 & UINT8_C(0xff)); x78 = (uint8_t)(x76 >> 8); x79 = (x22 + (uint64_t)x78); x80 = (uint8_t)(x79 & UINT8_C(0xff)); x81 = (x79 >> 8); x82 = (uint8_t)(x81 & UINT8_C(0xff)); x83 = (x81 >> 8); x84 = (uint8_t)(x83 & UINT8_C(0xff)); x85 = (x83 >> 8); x86 = (uint8_t)(x85 & UINT8_C(0xff)); x87 = (x85 >> 8); x88 = (uint8_t)(x87 & UINT8_C(0xff)); x89 = (x87 >> 8); x90 = (uint8_t)(x89 & UINT8_C(0xff)); x91 = (uint8_t)(x89 >> 8); out1[0] = x26; out1[1] = x28; out1[2] = x30; out1[3] = x32; out1[4] = x34; out1[5] = x36; out1[6] = x39; out1[7] = x41; out1[8] = x43; out1[9] = x45; out1[10] = x47; out1[11] = x49; out1[12] = x52; out1[13] = x54; out1[14] = x56; out1[15] = x58; out1[16] = x60; out1[17] = x62; out1[18] = x64; out1[19] = x67; out1[20] = x69; out1[21] = x71; out1[22] = x73; out1[23] = x75; out1[24] = x77; out1[25] = x80; out1[26] = x82; out1[27] = x84; out1[28] = x86; out1[29] = x88; out1[30] = x90; out1[31] = x91; } /* * The function fiat_25519_from_bytes deserializes a field element from bytes in little-endian order. * * Postconditions: * eval out1 mod m = bytes_eval arg1 mod m * * Input Bounds: * arg1: [[0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0x7f]] */ static void fiat_25519_from_bytes(fiat_25519_tight_field_element out1, const uint8_t arg1[32]) { uint64_t x1; uint64_t x2; uint64_t x3; uint64_t x4; uint64_t x5; uint64_t x6; uint64_t x7; uint64_t x8; uint64_t x9; uint64_t x10; uint64_t x11; uint64_t x12; uint64_t x13; uint64_t x14; uint64_t x15; uint64_t x16; uint64_t x17; uint64_t x18; uint64_t x19; uint64_t x20; uint64_t x21; uint64_t x22; uint64_t x23; uint64_t x24; uint64_t x25; uint64_t x26; uint64_t x27; uint64_t x28; uint64_t x29; uint64_t x30; uint64_t x31; uint8_t x32; uint64_t x33; uint64_t x34; uint64_t x35; uint64_t x36; uint64_t x37; uint64_t x38; uint64_t x39; uint8_t x40; uint64_t x41; uint64_t x42; uint64_t x43; uint64_t x44; uint64_t x45; uint64_t x46; uint64_t x47; uint8_t x48; uint64_t x49; uint64_t x50; uint64_t x51; uint64_t x52; uint64_t x53; uint64_t x54; uint64_t x55; uint64_t x56; uint8_t x57; uint64_t x58; uint64_t x59; uint64_t x60; uint64_t x61; uint64_t x62; uint64_t x63; uint64_t x64; uint8_t x65; uint64_t x66; uint64_t x67; uint64_t x68; uint64_t x69; uint64_t x70; uint64_t x71; x1 = ((uint64_t)(arg1[31]) << 44); x2 = ((uint64_t)(arg1[30]) << 36); x3 = ((uint64_t)(arg1[29]) << 28); x4 = ((uint64_t)(arg1[28]) << 20); x5 = ((uint64_t)(arg1[27]) << 12); x6 = ((uint64_t)(arg1[26]) << 4); x7 = ((uint64_t)(arg1[25]) << 47); x8 = ((uint64_t)(arg1[24]) << 39); x9 = ((uint64_t)(arg1[23]) << 31); x10 = ((uint64_t)(arg1[22]) << 23); x11 = ((uint64_t)(arg1[21]) << 15); x12 = ((uint64_t)(arg1[20]) << 7); x13 = ((uint64_t)(arg1[19]) << 50); x14 = ((uint64_t)(arg1[18]) << 42); x15 = ((uint64_t)(arg1[17]) << 34); x16 = ((uint64_t)(arg1[16]) << 26); x17 = ((uint64_t)(arg1[15]) << 18); x18 = ((uint64_t)(arg1[14]) << 10); x19 = ((uint64_t)(arg1[13]) << 2); x20 = ((uint64_t)(arg1[12]) << 45); x21 = ((uint64_t)(arg1[11]) << 37); x22 = ((uint64_t)(arg1[10]) << 29); x23 = ((uint64_t)(arg1[9]) << 21); x24 = ((uint64_t)(arg1[8]) << 13); x25 = ((uint64_t)(arg1[7]) << 5); x26 = ((uint64_t)(arg1[6]) << 48); x27 = ((uint64_t)(arg1[5]) << 40); x28 = ((uint64_t)(arg1[4]) << 32); x29 = ((uint64_t)(arg1[3]) << 24); x30 = ((uint64_t)(arg1[2]) << 16); x31 = ((uint64_t)(arg1[1]) << 8); x32 = (arg1[0]); x33 = (x31 + (uint64_t)x32); x34 = (x30 + x33); x35 = (x29 + x34); x36 = (x28 + x35); x37 = (x27 + x36); x38 = (x26 + x37); x39 = (x38 & UINT64_C(0x7ffffffffffff)); x40 = (uint8_t)(x38 >> 51); x41 = (x25 + (uint64_t)x40); x42 = (x24 + x41); x43 = (x23 + x42); x44 = (x22 + x43); x45 = (x21 + x44); x46 = (x20 + x45); x47 = (x46 & UINT64_C(0x7ffffffffffff)); x48 = (uint8_t)(x46 >> 51); x49 = (x19 + (uint64_t)x48); x50 = (x18 + x49); x51 = (x17 + x50); x52 = (x16 + x51); x53 = (x15 + x52); x54 = (x14 + x53); x55 = (x13 + x54); x56 = (x55 & UINT64_C(0x7ffffffffffff)); x57 = (uint8_t)(x55 >> 51); x58 = (x12 + (uint64_t)x57); x59 = (x11 + x58); x60 = (x10 + x59); x61 = (x9 + x60); x62 = (x8 + x61); x63 = (x7 + x62); x64 = (x63 & UINT64_C(0x7ffffffffffff)); x65 = (uint8_t)(x63 >> 51); x66 = (x6 + (uint64_t)x65); x67 = (x5 + x66); x68 = (x4 + x67); x69 = (x3 + x68); x70 = (x2 + x69); x71 = (x1 + x70); out1[0] = x39; out1[1] = x47; out1[2] = x56; out1[3] = x64; out1[4] = x71; } /* * The function fiat_25519_carry_scmul_121666 multiplies a field element by 121666 and reduces the result. * * Postconditions: * eval out1 mod m = (121666 * eval arg1) mod m * */ static void fiat_25519_carry_scmul_121666(fiat_25519_tight_field_element out1, const fiat_25519_loose_field_element arg1) { fiat_25519_uint128 x1; fiat_25519_uint128 x2; fiat_25519_uint128 x3; fiat_25519_uint128 x4; fiat_25519_uint128 x5; uint64_t x6; uint64_t x7; fiat_25519_uint128 x8; uint64_t x9; uint64_t x10; fiat_25519_uint128 x11; uint64_t x12; uint64_t x13; fiat_25519_uint128 x14; uint64_t x15; uint64_t x16; fiat_25519_uint128 x17; uint64_t x18; uint64_t x19; uint64_t x20; uint64_t x21; fiat_25519_uint1 x22; uint64_t x23; uint64_t x24; fiat_25519_uint1 x25; uint64_t x26; uint64_t x27; x1 = ((fiat_25519_uint128)UINT32_C(0x1db42) * (arg1[4])); x2 = ((fiat_25519_uint128)UINT32_C(0x1db42) * (arg1[3])); x3 = ((fiat_25519_uint128)UINT32_C(0x1db42) * (arg1[2])); x4 = ((fiat_25519_uint128)UINT32_C(0x1db42) * (arg1[1])); x5 = ((fiat_25519_uint128)UINT32_C(0x1db42) * (arg1[0])); x6 = (uint64_t)(x5 >> 51); x7 = (uint64_t)(x5 & UINT64_C(0x7ffffffffffff)); x8 = (x6 + x4); x9 = (uint64_t)(x8 >> 51); x10 = (uint64_t)(x8 & UINT64_C(0x7ffffffffffff)); x11 = (x9 + x3); x12 = (uint64_t)(x11 >> 51); x13 = (uint64_t)(x11 & UINT64_C(0x7ffffffffffff)); x14 = (x12 + x2); x15 = (uint64_t)(x14 >> 51); x16 = (uint64_t)(x14 & UINT64_C(0x7ffffffffffff)); x17 = (x15 + x1); x18 = (uint64_t)(x17 >> 51); x19 = (uint64_t)(x17 & UINT64_C(0x7ffffffffffff)); x20 = (x18 * UINT8_C(0x13)); x21 = (x7 + x20); x22 = (fiat_25519_uint1)(x21 >> 51); x23 = (x21 & UINT64_C(0x7ffffffffffff)); x24 = (x22 + x10); x25 = (fiat_25519_uint1)(x24 >> 51); x26 = (x24 & UINT64_C(0x7ffffffffffff)); x27 = (x25 + x13); out1[0] = x23; out1[1] = x26; out1[2] = x27; out1[3] = x16; out1[4] = x19; }
mirage-crypto
2.0.2
ISC
https://github.com/mirage/mirage-crypto
git+https://github.com/mirage/mirage-crypto.git
c
mirage-crypto-2.0.2/ec/native/curve25519_stubs.c
#include "mirage_crypto.h" /* Microsoft compiler does not support 128-bit integers. Drop down to * 32-bit for MSVC. */ #if defined(ARCH_64BIT) && !defined(_MSC_VER) #include "curve25519_64.h" #define WORD uint64_t #define LIMBS 5 #else #include "curve25519_32.h" #define WORD uint32_t #define LIMBS 10 #endif #include <assert.h> typedef WORD fe_limb_t; /* following code is from c47bfce06 and 0fc57bef18 of boringssl (crypto/curve25519) internal.h curve25519.c */ /* Copyright (c) 2020, Google Inc. * * Permission to use, copy, modify, and/or distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies. * * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ // Some of this code is taken from the ref10 version of Ed25519 in SUPERCOP // 20141124 (http://bench.cr.yp.to/supercop.html). That code is released as // public domain. Other parts have been replaced to call into code generated by // Fiat (https://github.com/mit-plv/fiat-crypto) in //third_party/fiat. // // The field functions are shared by Ed25519 and X25519 where possible. typedef struct fe { WORD v[LIMBS]; } fe; typedef struct fe_loose { WORD v[LIMBS]; } fe_loose; typedef struct { fe X; fe Y; fe Z; } ge_p2; typedef struct { fe X; fe Y; fe Z; fe T; } ge_p3; typedef struct { fe_loose X; fe_loose Y; fe_loose Z; fe_loose T; } ge_p1p1; typedef struct { fe_loose yplusx; fe_loose yminusx; fe_loose xy2d; } ge_precomp; typedef struct { fe_loose YplusX; fe_loose YminusX; fe_loose Z; fe_loose T2d; } ge_cached; #include "curve25519_tables.h" // Field operations. #if defined(ARCH_64BIT) // assert_fe asserts that |f| satisfies bounds: // // [[0x0 ~> 0x8cccccccccccc], // [0x0 ~> 0x8cccccccccccc], // [0x0 ~> 0x8cccccccccccc], // [0x0 ~> 0x8cccccccccccc], // [0x0 ~> 0x8cccccccccccc]] // // See comments in curve25519_64.h for which functions use these bounds for // inputs or outputs. #define assert_fe(f) \ do { \ for (unsigned _assert_fe_i = 0; _assert_fe_i < 5; _assert_fe_i++) { \ assert(f[_assert_fe_i] <= UINT64_C(0x8cccccccccccc)); \ } \ } while (0) // assert_fe_loose asserts that |f| satisfies bounds: // // [[0x0 ~> 0x1a666666666664], // [0x0 ~> 0x1a666666666664], // [0x0 ~> 0x1a666666666664], // [0x0 ~> 0x1a666666666664], // [0x0 ~> 0x1a666666666664]] // // See comments in curve25519_64.h for which functions use these bounds for // inputs or outputs. #define assert_fe_loose(f) \ do { \ for (unsigned _assert_fe_i = 0; _assert_fe_i < 5; _assert_fe_i++) { \ assert(f[_assert_fe_i] <= UINT64_C(0x1a666666666664)); \ } \ } while (0) #else // assert_fe asserts that |f| satisfies bounds: // // [[0x0 ~> 0x4666666], [0x0 ~> 0x2333333], // [0x0 ~> 0x4666666], [0x0 ~> 0x2333333], // [0x0 ~> 0x4666666], [0x0 ~> 0x2333333], // [0x0 ~> 0x4666666], [0x0 ~> 0x2333333], // [0x0 ~> 0x4666666], [0x0 ~> 0x2333333]] // // See comments in curve25519_32.h for which functions use these bounds for // inputs or outputs. #define assert_fe(f) \ do { \ for (unsigned _assert_fe_i = 0; _assert_fe_i < 10; _assert_fe_i++) { \ assert(f[_assert_fe_i] <= \ ((_assert_fe_i & 1) ? 0x2333333u : 0x4666666u)); \ } \ } while (0) // assert_fe_loose asserts that |f| satisfies bounds: // // [[0x0 ~> 0xd333332], [0x0 ~> 0x6999999], // [0x0 ~> 0xd333332], [0x0 ~> 0x6999999], // [0x0 ~> 0xd333332], [0x0 ~> 0x6999999], // [0x0 ~> 0xd333332], [0x0 ~> 0x6999999], // [0x0 ~> 0xd333332], [0x0 ~> 0x6999999]] // // See comments in curve25519_32.h for which functions use these bounds for // inputs or outputs. #define assert_fe_loose(f) \ do { \ for (unsigned _assert_fe_i = 0; _assert_fe_i < 10; _assert_fe_i++) { \ assert(f[_assert_fe_i] <= \ ((_assert_fe_i & 1) ? 0x6999999u : 0xd333332u)); \ } \ } while (0) #endif // ARCH_64BIT static void fe_frombytes_strict(fe *h, const uint8_t s[32]) { // |fiat_25519_from_bytes| requires the top-most bit be clear. assert((s[31] & 0x80) == 0); fiat_25519_from_bytes(h->v, s); assert_fe(h->v); } static void fe_frombytes(fe *h, const uint8_t s[32]) { uint8_t s_copy[32]; memcpy(s_copy, s, 32); s_copy[31] &= 0x7f; fe_frombytes_strict(h, s_copy); } static void fe_tobytes(uint8_t s[32], const fe *f) { assert_fe(f->v); fiat_25519_to_bytes(s, f->v); } // h = 0 static void fe_0(fe *h) { memset(h, 0, sizeof(fe)); } static void fe_loose_0(fe_loose *h) { memset(h, 0, sizeof(fe_loose)); } // h = 1 static void fe_1(fe *h) { memset(h, 0, sizeof(fe)); h->v[0] = 1; } static void fe_loose_1(fe_loose *h) { memset(h, 0, sizeof(fe_loose)); h->v[0] = 1; } // h = f + g // Can overlap h with f or g. static void fe_add(fe_loose *h, const fe *f, const fe *g) { assert_fe(f->v); assert_fe(g->v); fiat_25519_add(h->v, f->v, g->v); assert_fe_loose(h->v); } // h = f - g // Can overlap h with f or g. static void fe_sub(fe_loose *h, const fe *f, const fe *g) { assert_fe(f->v); assert_fe(g->v); fiat_25519_sub(h->v, f->v, g->v); assert_fe_loose(h->v); } static void fe_carry(fe *h, const fe_loose* f) { assert_fe_loose(f->v); fiat_25519_carry(h->v, f->v); assert_fe(h->v); } static void fe_mul_impl(fe_limb_t out[LIMBS], const fe_limb_t in1[LIMBS], const fe_limb_t in2[LIMBS]) { assert_fe_loose(in1); assert_fe_loose(in2); fiat_25519_carry_mul(out, in1, in2); assert_fe(out); } static void fe_mul_ltt(fe_loose *h, const fe *f, const fe *g) { fe_mul_impl(h->v, f->v, g->v); } static void fe_mul_llt(fe_loose *h, const fe_loose *f, const fe *g) { fe_mul_impl(h->v, f->v, g->v); } static void fe_mul_ttt(fe *h, const fe *f, const fe *g) { fe_mul_impl(h->v, f->v, g->v); } static void fe_mul_tlt(fe *h, const fe_loose *f, const fe *g) { fe_mul_impl(h->v, f->v, g->v); } static void fe_mul_ttl(fe *h, const fe *f, const fe_loose *g) { fe_mul_impl(h->v, f->v, g->v); } static void fe_mul_tll(fe *h, const fe_loose *f, const fe_loose *g) { fe_mul_impl(h->v, f->v, g->v); } static void fe_sq_tl(fe *h, const fe_loose *f) { assert_fe_loose(f->v); fiat_25519_carry_square(h->v, f->v); assert_fe(h->v); } static void fe_sq_tt(fe *h, const fe *f) { assert_fe_loose(f->v); fiat_25519_carry_square(h->v, f->v); assert_fe(h->v); } // Replace (f,g) with (g,f) if b == 1; // replace (f,g) with (f,g) if b == 0. // // Preconditions: b in {0,1}. static void fe_cswap(fe *f, fe *g, fe_limb_t b) { b = 0-b; for (unsigned i = 0; i < LIMBS; i++) { fe_limb_t x = f->v[i] ^ g->v[i]; x &= b; f->v[i] ^= x; g->v[i] ^= x; } } static void fe_mul121666(fe *h, const fe_loose *f) { assert_fe_loose(f->v); fiat_25519_carry_scmul_121666(h->v, f->v); assert_fe(h->v); } // h = -f static void fe_neg(fe_loose *h, const fe *f) { assert_fe(f->v); fiat_25519_opp(h->v, f->v); assert_fe_loose(h->v); } // Replace (f,g) with (g,g) if b == 1; // replace (f,g) with (f,g) if b == 0. // // Preconditions: b in {0,1}. static void fe_cmov(fe_loose *f, const fe_loose *g, fe_limb_t b) { // Silence an unused function warning. |fiat_25519_selectznz| isn't quite the // calling convention the rest of this code wants, so implement it by hand. // // TODO(davidben): Switch to fiat's calling convention, or ask fiat to emit a // different one. (void)fiat_25519_selectznz; b = 0-b; for (unsigned i = 0; i < LIMBS; i++) { fe_limb_t x = f->v[i] ^ g->v[i]; x &= b; f->v[i] ^= x; } } // h = f static void fe_copy(fe *h, const fe *f) { memmove(h, f, sizeof(fe)); } static void fe_copy_lt(fe_loose *h, const fe *f) { memmove(h, f, sizeof(fe)); } static void fe_loose_invert(fe *out, const fe_loose *z) { fe t0; fe t1; fe t2; fe t3; int i; fe_sq_tl(&t0, z); fe_sq_tt(&t1, &t0); for (i = 1; i < 2; ++i) { fe_sq_tt(&t1, &t1); } fe_mul_tlt(&t1, z, &t1); fe_mul_ttt(&t0, &t0, &t1); fe_sq_tt(&t2, &t0); fe_mul_ttt(&t1, &t1, &t2); fe_sq_tt(&t2, &t1); for (i = 1; i < 5; ++i) { fe_sq_tt(&t2, &t2); } fe_mul_ttt(&t1, &t2, &t1); fe_sq_tt(&t2, &t1); for (i = 1; i < 10; ++i) { fe_sq_tt(&t2, &t2); } fe_mul_ttt(&t2, &t2, &t1); fe_sq_tt(&t3, &t2); for (i = 1; i < 20; ++i) { fe_sq_tt(&t3, &t3); } fe_mul_ttt(&t2, &t3, &t2); fe_sq_tt(&t2, &t2); for (i = 1; i < 10; ++i) { fe_sq_tt(&t2, &t2); } fe_mul_ttt(&t1, &t2, &t1); fe_sq_tt(&t2, &t1); for (i = 1; i < 50; ++i) { fe_sq_tt(&t2, &t2); } fe_mul_ttt(&t2, &t2, &t1); fe_sq_tt(&t3, &t2); for (i = 1; i < 100; ++i) { fe_sq_tt(&t3, &t3); } fe_mul_ttt(&t2, &t3, &t2); fe_sq_tt(&t2, &t2); for (i = 1; i < 50; ++i) { fe_sq_tt(&t2, &t2); } fe_mul_ttt(&t1, &t2, &t1); fe_sq_tt(&t1, &t1); for (i = 1; i < 5; ++i) { fe_sq_tt(&t1, &t1); } fe_mul_ttt(out, &t1, &t0); } static void fe_invert(fe *out, const fe *z) { fe_loose l; fe_copy_lt(&l, z); fe_loose_invert(out, &l); } // return 0 if f == 0 // return 1 if f != 0 static int fe_isnonzero(const fe_loose *f) { fe tight; fe_carry(&tight, f); uint8_t s[32]; fe_tobytes(s, &tight); static const uint8_t zero[32] = {0}; return memcmp(s, zero, sizeof(zero)) != 0; } // return 1 if f is in {1,3,5,...,q-2} // return 0 if f is in {0,2,4,...,q-1} static int fe_isnegative(const fe *f) { uint8_t s[32]; fe_tobytes(s, f); return s[0] & 1; } static void fe_sq2_tt(fe *h, const fe *f) { // h = f^2 fe_sq_tt(h, f); // h = h + h fe_loose tmp; fe_add(&tmp, h, h); fe_carry(h, &tmp); } static void fe_pow22523(fe *out, const fe *z) { fe t0; fe t1; fe t2; int i; fe_sq_tt(&t0, z); fe_sq_tt(&t1, &t0); for (i = 1; i < 2; ++i) { fe_sq_tt(&t1, &t1); } fe_mul_ttt(&t1, z, &t1); fe_mul_ttt(&t0, &t0, &t1); fe_sq_tt(&t0, &t0); fe_mul_ttt(&t0, &t1, &t0); fe_sq_tt(&t1, &t0); for (i = 1; i < 5; ++i) { fe_sq_tt(&t1, &t1); } fe_mul_ttt(&t0, &t1, &t0); fe_sq_tt(&t1, &t0); for (i = 1; i < 10; ++i) { fe_sq_tt(&t1, &t1); } fe_mul_ttt(&t1, &t1, &t0); fe_sq_tt(&t2, &t1); for (i = 1; i < 20; ++i) { fe_sq_tt(&t2, &t2); } fe_mul_ttt(&t1, &t2, &t1); fe_sq_tt(&t1, &t1); for (i = 1; i < 10; ++i) { fe_sq_tt(&t1, &t1); } fe_mul_ttt(&t0, &t1, &t0); fe_sq_tt(&t1, &t0); for (i = 1; i < 50; ++i) { fe_sq_tt(&t1, &t1); } fe_mul_ttt(&t1, &t1, &t0); fe_sq_tt(&t2, &t1); for (i = 1; i < 100; ++i) { fe_sq_tt(&t2, &t2); } fe_mul_ttt(&t1, &t2, &t1); fe_sq_tt(&t1, &t1); for (i = 1; i < 50; ++i) { fe_sq_tt(&t1, &t1); } fe_mul_ttt(&t0, &t1, &t0); fe_sq_tt(&t0, &t0); for (i = 1; i < 2; ++i) { fe_sq_tt(&t0, &t0); } fe_mul_ttt(out, &t0, z); } // Group operations. static void x25519_ge_tobytes(uint8_t s[32], const ge_p2 *h) { fe recip; fe x; fe y; fe_invert(&recip, &h->Z); fe_mul_ttt(&x, &h->X, &recip); fe_mul_ttt(&y, &h->Y, &recip); fe_tobytes(s, &y); s[31] ^= fe_isnegative(&x) << 7; } static void ge_p3_tobytes(uint8_t s[32], const ge_p3 *h) { fe recip; fe x; fe y; fe_invert(&recip, &h->Z); fe_mul_ttt(&x, &h->X, &recip); fe_mul_ttt(&y, &h->Y, &recip); fe_tobytes(s, &y); s[31] ^= fe_isnegative(&x) << 7; } static int x25519_ge_frombytes_vartime(ge_p3 *h, const uint8_t s[32]) { fe u; fe_loose v; fe w; fe vxx; fe_loose check; fe_frombytes(&h->Y, s); fe_1(&h->Z); fe_sq_tt(&w, &h->Y); fe_mul_ttt(&vxx, &w, &d); fe_sub(&v, &w, &h->Z); // u = y^2-1 fe_carry(&u, &v); fe_add(&v, &vxx, &h->Z); // v = dy^2+1 fe_mul_ttl(&w, &u, &v); // w = u*v fe_pow22523(&h->X, &w); // x = w^((q-5)/8) fe_mul_ttt(&h->X, &h->X, &u); // x = u*w^((q-5)/8) fe_sq_tt(&vxx, &h->X); fe_mul_ttl(&vxx, &vxx, &v); fe_sub(&check, &vxx, &u); if (fe_isnonzero(&check)) { fe_add(&check, &vxx, &u); if (fe_isnonzero(&check)) { return 0; } fe_mul_ttt(&h->X, &h->X, &sqrtm1); } if (fe_isnegative(&h->X) != (s[31] >> 7)) { fe_loose t; fe_neg(&t, &h->X); fe_carry(&h->X, &t); } fe_mul_ttt(&h->T, &h->X, &h->Y); return 1; } static void ge_p2_0(ge_p2 *h) { fe_0(&h->X); fe_1(&h->Y); fe_1(&h->Z); } static void ge_p3_0(ge_p3 *h) { fe_0(&h->X); fe_1(&h->Y); fe_1(&h->Z); fe_0(&h->T); } static void ge_precomp_0(ge_precomp *h) { fe_loose_1(&h->yplusx); fe_loose_1(&h->yminusx); fe_loose_0(&h->xy2d); } // r = p static void ge_p3_to_p2(ge_p2 *r, const ge_p3 *p) { fe_copy(&r->X, &p->X); fe_copy(&r->Y, &p->Y); fe_copy(&r->Z, &p->Z); } // r = p static void x25519_ge_p3_to_cached(ge_cached *r, const ge_p3 *p) { fe_add(&r->YplusX, &p->Y, &p->X); fe_sub(&r->YminusX, &p->Y, &p->X); fe_copy_lt(&r->Z, &p->Z); fe_mul_ltt(&r->T2d, &p->T, &d2); } // r = p static void x25519_ge_p1p1_to_p2(ge_p2 *r, const ge_p1p1 *p) { fe_mul_tll(&r->X, &p->X, &p->T); fe_mul_tll(&r->Y, &p->Y, &p->Z); fe_mul_tll(&r->Z, &p->Z, &p->T); } // r = p static void x25519_ge_p1p1_to_p3(ge_p3 *r, const ge_p1p1 *p) { fe_mul_tll(&r->X, &p->X, &p->T); fe_mul_tll(&r->Y, &p->Y, &p->Z); fe_mul_tll(&r->Z, &p->Z, &p->T); fe_mul_tll(&r->T, &p->X, &p->Y); } // r = 2 * p static void ge_p2_dbl(ge_p1p1 *r, const ge_p2 *p) { fe trX, trZ, trT; fe t0; fe_sq_tt(&trX, &p->X); fe_sq_tt(&trZ, &p->Y); fe_sq2_tt(&trT, &p->Z); fe_add(&r->Y, &p->X, &p->Y); fe_sq_tl(&t0, &r->Y); fe_add(&r->Y, &trZ, &trX); fe_sub(&r->Z, &trZ, &trX); fe_carry(&trZ, &r->Y); fe_sub(&r->X, &t0, &trZ); fe_carry(&trZ, &r->Z); fe_sub(&r->T, &trT, &trZ); } // r = 2 * p static void ge_p3_dbl(ge_p1p1 *r, const ge_p3 *p) { ge_p2 q; ge_p3_to_p2(&q, p); ge_p2_dbl(r, &q); } // r = p + q static void ge_madd(ge_p1p1 *r, const ge_p3 *p, const ge_precomp *q) { fe trY, trZ, trT; fe_add(&r->X, &p->Y, &p->X); fe_sub(&r->Y, &p->Y, &p->X); fe_mul_tll(&trZ, &r->X, &q->yplusx); fe_mul_tll(&trY, &r->Y, &q->yminusx); fe_mul_tlt(&trT, &q->xy2d, &p->T); fe_add(&r->T, &p->Z, &p->Z); fe_sub(&r->X, &trZ, &trY); fe_add(&r->Y, &trZ, &trY); fe_carry(&trZ, &r->T); fe_add(&r->Z, &trZ, &trT); fe_sub(&r->T, &trZ, &trT); } // r = p - q static void ge_msub(ge_p1p1 *r, const ge_p3 *p, const ge_precomp *q) { fe trY, trZ, trT; fe_add(&r->X, &p->Y, &p->X); fe_sub(&r->Y, &p->Y, &p->X); fe_mul_tll(&trZ, &r->X, &q->yminusx); fe_mul_tll(&trY, &r->Y, &q->yplusx); fe_mul_tlt(&trT, &q->xy2d, &p->T); fe_add(&r->T, &p->Z, &p->Z); fe_sub(&r->X, &trZ, &trY); fe_add(&r->Y, &trZ, &trY); fe_carry(&trZ, &r->T); fe_sub(&r->Z, &trZ, &trT); fe_add(&r->T, &trZ, &trT); } // r = p + q static void x25519_ge_add(ge_p1p1 *r, const ge_p3 *p, const ge_cached *q) { fe trX, trY, trZ, trT; fe_add(&r->X, &p->Y, &p->X); fe_sub(&r->Y, &p->Y, &p->X); fe_mul_tll(&trZ, &r->X, &q->YplusX); fe_mul_tll(&trY, &r->Y, &q->YminusX); fe_mul_tlt(&trT, &q->T2d, &p->T); fe_mul_ttl(&trX, &p->Z, &q->Z); fe_add(&r->T, &trX, &trX); fe_sub(&r->X, &trZ, &trY); fe_add(&r->Y, &trZ, &trY); fe_carry(&trZ, &r->T); fe_add(&r->Z, &trZ, &trT); fe_sub(&r->T, &trZ, &trT); } // r = p - q static void x25519_ge_sub(ge_p1p1 *r, const ge_p3 *p, const ge_cached *q) { fe trX, trY, trZ, trT; fe_add(&r->X, &p->Y, &p->X); fe_sub(&r->Y, &p->Y, &p->X); fe_mul_tll(&trZ, &r->X, &q->YminusX); fe_mul_tll(&trY, &r->Y, &q->YplusX); fe_mul_tlt(&trT, &q->T2d, &p->T); fe_mul_ttl(&trX, &p->Z, &q->Z); fe_add(&r->T, &trX, &trX); fe_sub(&r->X, &trZ, &trY); fe_add(&r->Y, &trZ, &trY); fe_carry(&trZ, &r->T); fe_sub(&r->Z, &trZ, &trT); fe_add(&r->T, &trZ, &trT); } static uint8_t equal(signed char b, signed char c) { uint8_t ub = b; uint8_t uc = c; uint8_t x = ub ^ uc; // 0: yes; 1..255: no uint32_t y = x; // 0: yes; 1..255: no y -= 1; // 4294967295: yes; 0..254: no y >>= 31; // 1: yes; 0: no return y; } static void cmov(ge_precomp *t, const ge_precomp *u, uint8_t b) { fe_cmov(&t->yplusx, &u->yplusx, b); fe_cmov(&t->yminusx, &u->yminusx, b); fe_cmov(&t->xy2d, &u->xy2d, b); } static void x25519_ge_scalarmult_small_precomp( ge_p3 *h, const uint8_t a[32], const uint8_t precomp_table[15 * 2 * 32]) { // precomp_table is first expanded into matching |ge_precomp| // elements. ge_precomp multiples[15]; unsigned i; for (i = 0; i < 15; i++) { // The precomputed table is assumed to already clear the top bit, so // |fe_frombytes_strict| may be used directly. const uint8_t *bytes = &precomp_table[i*(2 * 32)]; fe x, y; fe_frombytes_strict(&x, bytes); fe_frombytes_strict(&y, bytes + 32); ge_precomp *out = &multiples[i]; fe_add(&out->yplusx, &y, &x); fe_sub(&out->yminusx, &y, &x); fe_mul_ltt(&out->xy2d, &x, &y); fe_mul_llt(&out->xy2d, &out->xy2d, &d2); } // See the comment above |k25519SmallPrecomp| about the structure of the // precomputed elements. This loop does 64 additions and 64 doublings to // calculate the result. ge_p3_0(h); for (i = 63; i < 64; i--) { unsigned j; signed char index = 0; for (j = 0; j < 4; j++) { const uint8_t bit = 1 & (a[(8 * j) + (i / 8)] >> (i & 7)); index |= (bit << j); } ge_precomp e; ge_precomp_0(&e); for (j = 1; j < 16; j++) { cmov(&e, &multiples[j-1], equal(index, j)); } ge_cached cached; ge_p1p1 r; x25519_ge_p3_to_cached(&cached, h); x25519_ge_add(&r, h, &cached); x25519_ge_p1p1_to_p3(h, &r); ge_madd(&r, h, &e); x25519_ge_p1p1_to_p3(h, &r); } } static void x25519_ge_scalarmult_base(ge_p3 *h, const uint8_t a[32]) { x25519_ge_scalarmult_small_precomp(h, a, k25519SmallPrecomp); } static void slide(signed char *r, const uint8_t *a) { int i; int b; int k; for (i = 0; i < 256; ++i) { r[i] = 1 & (a[i >> 3] >> (i & 7)); } for (i = 0; i < 256; ++i) { if (r[i]) { for (b = 1; b <= 6 && i + b < 256; ++b) { if (r[i + b]) { if (r[i] + (r[i + b] << b) <= 15) { r[i] += r[i + b] << b; r[i + b] = 0; } else if (r[i] - (r[i + b] << b) >= -15) { r[i] -= r[i + b] << b; for (k = i + b; k < 256; ++k) { if (!r[k]) { r[k] = 1; break; } r[k] = 0; } } else { break; } } } } } } // r = a * A + b * B // where a = a[0]+256*a[1]+...+256^31 a[31]. // and b = b[0]+256*b[1]+...+256^31 b[31]. // B is the Ed25519 base point (x,4/5) with x positive. static void ge_double_scalarmult_vartime(ge_p2 *r, const uint8_t *a, const ge_p3 *A, const uint8_t *b) { signed char aslide[256]; signed char bslide[256]; ge_cached Ai[8]; // A,3A,5A,7A,9A,11A,13A,15A ge_p1p1 t; ge_p3 u; ge_p3 A2; int i; slide(aslide, a); slide(bslide, b); x25519_ge_p3_to_cached(&Ai[0], A); ge_p3_dbl(&t, A); x25519_ge_p1p1_to_p3(&A2, &t); x25519_ge_add(&t, &A2, &Ai[0]); x25519_ge_p1p1_to_p3(&u, &t); x25519_ge_p3_to_cached(&Ai[1], &u); x25519_ge_add(&t, &A2, &Ai[1]); x25519_ge_p1p1_to_p3(&u, &t); x25519_ge_p3_to_cached(&Ai[2], &u); x25519_ge_add(&t, &A2, &Ai[2]); x25519_ge_p1p1_to_p3(&u, &t); x25519_ge_p3_to_cached(&Ai[3], &u); x25519_ge_add(&t, &A2, &Ai[3]); x25519_ge_p1p1_to_p3(&u, &t); x25519_ge_p3_to_cached(&Ai[4], &u); x25519_ge_add(&t, &A2, &Ai[4]); x25519_ge_p1p1_to_p3(&u, &t); x25519_ge_p3_to_cached(&Ai[5], &u); x25519_ge_add(&t, &A2, &Ai[5]); x25519_ge_p1p1_to_p3(&u, &t); x25519_ge_p3_to_cached(&Ai[6], &u); x25519_ge_add(&t, &A2, &Ai[6]); x25519_ge_p1p1_to_p3(&u, &t); x25519_ge_p3_to_cached(&Ai[7], &u); ge_p2_0(r); for (i = 255; i >= 0; --i) { if (aslide[i] || bslide[i]) { break; } } for (; i >= 0; --i) { ge_p2_dbl(&t, r); if (aslide[i] > 0) { x25519_ge_p1p1_to_p3(&u, &t); x25519_ge_add(&t, &u, &Ai[aslide[i] / 2]); } else if (aslide[i] < 0) { x25519_ge_p1p1_to_p3(&u, &t); x25519_ge_sub(&t, &u, &Ai[(-aslide[i]) / 2]); } if (bslide[i] > 0) { x25519_ge_p1p1_to_p3(&u, &t); ge_madd(&t, &u, &Bi[bslide[i] / 2]); } else if (bslide[i] < 0) { x25519_ge_p1p1_to_p3(&u, &t); ge_msub(&t, &u, &Bi[(-bslide[i]) / 2]); } x25519_ge_p1p1_to_p2(r, &t); } } static void x25519_scalar_mult_generic(uint8_t out[32], const uint8_t scalar[32], const uint8_t point[32]) { fe x1, x2, z2, x3, z3, tmp0, tmp1; fe_loose x2l, z2l, x3l, tmp0l, tmp1l; uint8_t e[32]; memcpy(e, scalar, 32); e[0] &= 248; e[31] &= 127; e[31] |= 64; // The following implementation was transcribed to Coq and proven to // correspond to unary scalar multiplication in affine coordinates given that // x1 != 0 is the x coordinate of some point on the curve. It was also checked // in Coq that doing a ladderstep with x1 = x3 = 0 gives z2' = z3' = 0, and z2 // = z3 = 0 gives z2' = z3' = 0. The statement was quantified over the // underlying field, so it applies to Curve25519 itself and the quadratic // twist of Curve25519. It was not proven in Coq that prime-field arithmetic // correctly simulates extension-field arithmetic on prime-field values. // The decoding of the byte array representation of e was not considered. // Specification of Montgomery curves in affine coordinates: // <https://github.com/mit-plv/fiat-crypto/blob/2456d821825521f7e03e65882cc3521795b0320f/src/Spec/MontgomeryCurve.v#L27> // Proof that these form a group that is isomorphic to a Weierstrass curve: // <https://github.com/mit-plv/fiat-crypto/blob/2456d821825521f7e03e65882cc3521795b0320f/src/Curves/Montgomery/AffineProofs.v#L35> // Coq transcription and correctness proof of the loop (where scalarbits=255): // <https://github.com/mit-plv/fiat-crypto/blob/2456d821825521f7e03e65882cc3521795b0320f/src/Curves/Montgomery/XZ.v#L118> // <https://github.com/mit-plv/fiat-crypto/blob/2456d821825521f7e03e65882cc3521795b0320f/src/Curves/Montgomery/XZProofs.v#L278> // preconditions: 0 <= e < 2^255 (not necessarily e < order), fe_invert(0) = 0 fe_frombytes(&x1, point); fe_1(&x2); fe_0(&z2); fe_copy(&x3, &x1); fe_1(&z3); unsigned swap = 0; int pos; for (pos = 254; pos >= 0; --pos) { // loop invariant as of right before the test, for the case where x1 != 0: // pos >= -1; if z2 = 0 then x2 is nonzero; if z3 = 0 then x3 is nonzero // let r := e >> (pos+1) in the following equalities of projective points: // to_xz (r*P) === if swap then (x3, z3) else (x2, z2) // to_xz ((r+1)*P) === if swap then (x2, z2) else (x3, z3) // x1 is the nonzero x coordinate of the nonzero point (r*P-(r+1)*P) unsigned b = 1 & (e[pos / 8] >> (pos & 7)); swap ^= b; fe_cswap(&x2, &x3, swap); fe_cswap(&z2, &z3, swap); swap = b; // Coq transcription of ladderstep formula (called from transcribed loop): // <https://github.com/mit-plv/fiat-crypto/blob/2456d821825521f7e03e65882cc3521795b0320f/src/Curves/Montgomery/XZ.v#L89> // <https://github.com/mit-plv/fiat-crypto/blob/2456d821825521f7e03e65882cc3521795b0320f/src/Curves/Montgomery/XZProofs.v#L131> // x1 != 0 <https://github.com/mit-plv/fiat-crypto/blob/2456d821825521f7e03e65882cc3521795b0320f/src/Curves/Montgomery/XZProofs.v#L217> // x1 = 0 <https://github.com/mit-plv/fiat-crypto/blob/2456d821825521f7e03e65882cc3521795b0320f/src/Curves/Montgomery/XZProofs.v#L147> fe_sub(&tmp0l, &x3, &z3); fe_sub(&tmp1l, &x2, &z2); fe_add(&x2l, &x2, &z2); fe_add(&z2l, &x3, &z3); fe_mul_tll(&z3, &tmp0l, &x2l); fe_mul_tll(&z2, &z2l, &tmp1l); fe_sq_tl(&tmp0, &tmp1l); fe_sq_tl(&tmp1, &x2l); fe_add(&x3l, &z3, &z2); fe_sub(&z2l, &z3, &z2); fe_mul_ttt(&x2, &tmp1, &tmp0); fe_sub(&tmp1l, &tmp1, &tmp0); fe_sq_tl(&z2, &z2l); fe_mul121666(&z3, &tmp1l); fe_sq_tl(&x3, &x3l); fe_add(&tmp0l, &tmp0, &z3); fe_mul_ttt(&z3, &x1, &z2); fe_mul_tll(&z2, &tmp1l, &tmp0l); } // here pos=-1, so r=e, so to_xz (e*P) === if swap then (x3, z3) else (x2, z2) fe_cswap(&x2, &x3, swap); fe_cswap(&z2, &z3, swap); fe_invert(&z2, &z2); fe_mul_ttt(&x2, &x2, &z2); fe_tobytes(out, &x2); } // Low-level intrinsic operations static uint64_t load_3(const uint8_t *in) { uint64_t result; result = (uint64_t)in[0]; result |= ((uint64_t)in[1]) << 8; result |= ((uint64_t)in[2]) << 16; return result; } static uint64_t load_4(const uint8_t *in) { uint64_t result; result = (uint64_t)in[0]; result |= ((uint64_t)in[1]) << 8; result |= ((uint64_t)in[2]) << 16; result |= ((uint64_t)in[3]) << 24; return result; } // int64_lshift21 returns |a << 21| but is defined when shifting bits into the // sign bit. This works around a language flaw in C. static inline int64_t int64_lshift21(int64_t a) { return (int64_t)((uint64_t)a << 21); } // Input: // s[0]+256*s[1]+...+256^63*s[63] = s // // Output: // s[0]+256*s[1]+...+256^31*s[31] = s mod l // where l = 2^252 + 27742317777372353535851937790883648493. // Overwrites s in place. static void x25519_sc_reduce(uint8_t s[64]) { int64_t s0 = 2097151 & load_3(s); int64_t s1 = 2097151 & (load_4(s + 2) >> 5); int64_t s2 = 2097151 & (load_3(s + 5) >> 2); int64_t s3 = 2097151 & (load_4(s + 7) >> 7); int64_t s4 = 2097151 & (load_4(s + 10) >> 4); int64_t s5 = 2097151 & (load_3(s + 13) >> 1); int64_t s6 = 2097151 & (load_4(s + 15) >> 6); int64_t s7 = 2097151 & (load_3(s + 18) >> 3); int64_t s8 = 2097151 & load_3(s + 21); int64_t s9 = 2097151 & (load_4(s + 23) >> 5); int64_t s10 = 2097151 & (load_3(s + 26) >> 2); int64_t s11 = 2097151 & (load_4(s + 28) >> 7); int64_t s12 = 2097151 & (load_4(s + 31) >> 4); int64_t s13 = 2097151 & (load_3(s + 34) >> 1); int64_t s14 = 2097151 & (load_4(s + 36) >> 6); int64_t s15 = 2097151 & (load_3(s + 39) >> 3); int64_t s16 = 2097151 & load_3(s + 42); int64_t s17 = 2097151 & (load_4(s + 44) >> 5); int64_t s18 = 2097151 & (load_3(s + 47) >> 2); int64_t s19 = 2097151 & (load_4(s + 49) >> 7); int64_t s20 = 2097151 & (load_4(s + 52) >> 4); int64_t s21 = 2097151 & (load_3(s + 55) >> 1); int64_t s22 = 2097151 & (load_4(s + 57) >> 6); int64_t s23 = (load_4(s + 60) >> 3); int64_t carry0; int64_t carry1; int64_t carry2; int64_t carry3; int64_t carry4; int64_t carry5; int64_t carry6; int64_t carry7; int64_t carry8; int64_t carry9; int64_t carry10; int64_t carry11; int64_t carry12; int64_t carry13; int64_t carry14; int64_t carry15; int64_t carry16; s11 += s23 * 666643; s12 += s23 * 470296; s13 += s23 * 654183; s14 -= s23 * 997805; s15 += s23 * 136657; s16 -= s23 * 683901; s23 = 0; s10 += s22 * 666643; s11 += s22 * 470296; s12 += s22 * 654183; s13 -= s22 * 997805; s14 += s22 * 136657; s15 -= s22 * 683901; s22 = 0; s9 += s21 * 666643; s10 += s21 * 470296; s11 += s21 * 654183; s12 -= s21 * 997805; s13 += s21 * 136657; s14 -= s21 * 683901; s21 = 0; s8 += s20 * 666643; s9 += s20 * 470296; s10 += s20 * 654183; s11 -= s20 * 997805; s12 += s20 * 136657; s13 -= s20 * 683901; s20 = 0; s7 += s19 * 666643; s8 += s19 * 470296; s9 += s19 * 654183; s10 -= s19 * 997805; s11 += s19 * 136657; s12 -= s19 * 683901; s19 = 0; s6 += s18 * 666643; s7 += s18 * 470296; s8 += s18 * 654183; s9 -= s18 * 997805; s10 += s18 * 136657; s11 -= s18 * 683901; s18 = 0; carry6 = (s6 + (1 << 20)) >> 21; s7 += carry6; s6 -= int64_lshift21(carry6); carry8 = (s8 + (1 << 20)) >> 21; s9 += carry8; s8 -= int64_lshift21(carry8); carry10 = (s10 + (1 << 20)) >> 21; s11 += carry10; s10 -= int64_lshift21(carry10); carry12 = (s12 + (1 << 20)) >> 21; s13 += carry12; s12 -= int64_lshift21(carry12); carry14 = (s14 + (1 << 20)) >> 21; s15 += carry14; s14 -= int64_lshift21(carry14); carry16 = (s16 + (1 << 20)) >> 21; s17 += carry16; s16 -= int64_lshift21(carry16); carry7 = (s7 + (1 << 20)) >> 21; s8 += carry7; s7 -= int64_lshift21(carry7); carry9 = (s9 + (1 << 20)) >> 21; s10 += carry9; s9 -= int64_lshift21(carry9); carry11 = (s11 + (1 << 20)) >> 21; s12 += carry11; s11 -= int64_lshift21(carry11); carry13 = (s13 + (1 << 20)) >> 21; s14 += carry13; s13 -= int64_lshift21(carry13); carry15 = (s15 + (1 << 20)) >> 21; s16 += carry15; s15 -= int64_lshift21(carry15); s5 += s17 * 666643; s6 += s17 * 470296; s7 += s17 * 654183; s8 -= s17 * 997805; s9 += s17 * 136657; s10 -= s17 * 683901; s17 = 0; s4 += s16 * 666643; s5 += s16 * 470296; s6 += s16 * 654183; s7 -= s16 * 997805; s8 += s16 * 136657; s9 -= s16 * 683901; s16 = 0; s3 += s15 * 666643; s4 += s15 * 470296; s5 += s15 * 654183; s6 -= s15 * 997805; s7 += s15 * 136657; s8 -= s15 * 683901; s15 = 0; s2 += s14 * 666643; s3 += s14 * 470296; s4 += s14 * 654183; s5 -= s14 * 997805; s6 += s14 * 136657; s7 -= s14 * 683901; s14 = 0; s1 += s13 * 666643; s2 += s13 * 470296; s3 += s13 * 654183; s4 -= s13 * 997805; s5 += s13 * 136657; s6 -= s13 * 683901; s13 = 0; s0 += s12 * 666643; s1 += s12 * 470296; s2 += s12 * 654183; s3 -= s12 * 997805; s4 += s12 * 136657; s5 -= s12 * 683901; s12 = 0; carry0 = (s0 + (1 << 20)) >> 21; s1 += carry0; s0 -= int64_lshift21(carry0); carry2 = (s2 + (1 << 20)) >> 21; s3 += carry2; s2 -= int64_lshift21(carry2); carry4 = (s4 + (1 << 20)) >> 21; s5 += carry4; s4 -= int64_lshift21(carry4); carry6 = (s6 + (1 << 20)) >> 21; s7 += carry6; s6 -= int64_lshift21(carry6); carry8 = (s8 + (1 << 20)) >> 21; s9 += carry8; s8 -= int64_lshift21(carry8); carry10 = (s10 + (1 << 20)) >> 21; s11 += carry10; s10 -= int64_lshift21(carry10); carry1 = (s1 + (1 << 20)) >> 21; s2 += carry1; s1 -= int64_lshift21(carry1); carry3 = (s3 + (1 << 20)) >> 21; s4 += carry3; s3 -= int64_lshift21(carry3); carry5 = (s5 + (1 << 20)) >> 21; s6 += carry5; s5 -= int64_lshift21(carry5); carry7 = (s7 + (1 << 20)) >> 21; s8 += carry7; s7 -= int64_lshift21(carry7); carry9 = (s9 + (1 << 20)) >> 21; s10 += carry9; s9 -= int64_lshift21(carry9); carry11 = (s11 + (1 << 20)) >> 21; s12 += carry11; s11 -= int64_lshift21(carry11); s0 += s12 * 666643; s1 += s12 * 470296; s2 += s12 * 654183; s3 -= s12 * 997805; s4 += s12 * 136657; s5 -= s12 * 683901; s12 = 0; carry0 = s0 >> 21; s1 += carry0; s0 -= int64_lshift21(carry0); carry1 = s1 >> 21; s2 += carry1; s1 -= int64_lshift21(carry1); carry2 = s2 >> 21; s3 += carry2; s2 -= int64_lshift21(carry2); carry3 = s3 >> 21; s4 += carry3; s3 -= int64_lshift21(carry3); carry4 = s4 >> 21; s5 += carry4; s4 -= int64_lshift21(carry4); carry5 = s5 >> 21; s6 += carry5; s5 -= int64_lshift21(carry5); carry6 = s6 >> 21; s7 += carry6; s6 -= int64_lshift21(carry6); carry7 = s7 >> 21; s8 += carry7; s7 -= int64_lshift21(carry7); carry8 = s8 >> 21; s9 += carry8; s8 -= int64_lshift21(carry8); carry9 = s9 >> 21; s10 += carry9; s9 -= int64_lshift21(carry9); carry10 = s10 >> 21; s11 += carry10; s10 -= int64_lshift21(carry10); carry11 = s11 >> 21; s12 += carry11; s11 -= int64_lshift21(carry11); s0 += s12 * 666643; s1 += s12 * 470296; s2 += s12 * 654183; s3 -= s12 * 997805; s4 += s12 * 136657; s5 -= s12 * 683901; s12 = 0; carry0 = s0 >> 21; s1 += carry0; s0 -= int64_lshift21(carry0); carry1 = s1 >> 21; s2 += carry1; s1 -= int64_lshift21(carry1); carry2 = s2 >> 21; s3 += carry2; s2 -= int64_lshift21(carry2); carry3 = s3 >> 21; s4 += carry3; s3 -= int64_lshift21(carry3); carry4 = s4 >> 21; s5 += carry4; s4 -= int64_lshift21(carry4); carry5 = s5 >> 21; s6 += carry5; s5 -= int64_lshift21(carry5); carry6 = s6 >> 21; s7 += carry6; s6 -= int64_lshift21(carry6); carry7 = s7 >> 21; s8 += carry7; s7 -= int64_lshift21(carry7); carry8 = s8 >> 21; s9 += carry8; s8 -= int64_lshift21(carry8); carry9 = s9 >> 21; s10 += carry9; s9 -= int64_lshift21(carry9); carry10 = s10 >> 21; s11 += carry10; s10 -= int64_lshift21(carry10); s[0] = s0 >> 0; s[1] = s0 >> 8; s[2] = (s0 >> 16) | (s1 << 5); s[3] = s1 >> 3; s[4] = s1 >> 11; s[5] = (s1 >> 19) | (s2 << 2); s[6] = s2 >> 6; s[7] = (s2 >> 14) | (s3 << 7); s[8] = s3 >> 1; s[9] = s3 >> 9; s[10] = (s3 >> 17) | (s4 << 4); s[11] = s4 >> 4; s[12] = s4 >> 12; s[13] = (s4 >> 20) | (s5 << 1); s[14] = s5 >> 7; s[15] = (s5 >> 15) | (s6 << 6); s[16] = s6 >> 2; s[17] = s6 >> 10; s[18] = (s6 >> 18) | (s7 << 3); s[19] = s7 >> 5; s[20] = s7 >> 13; s[21] = s8 >> 0; s[22] = s8 >> 8; s[23] = (s8 >> 16) | (s9 << 5); s[24] = s9 >> 3; s[25] = s9 >> 11; s[26] = (s9 >> 19) | (s10 << 2); s[27] = s10 >> 6; s[28] = (s10 >> 14) | (s11 << 7); s[29] = s11 >> 1; s[30] = s11 >> 9; s[31] = s11 >> 17; } // Input: // a[0]+256*a[1]+...+256^31*a[31] = a // b[0]+256*b[1]+...+256^31*b[31] = b // c[0]+256*c[1]+...+256^31*c[31] = c // // Output: // s[0]+256*s[1]+...+256^31*s[31] = (ab+c) mod l // where l = 2^252 + 27742317777372353535851937790883648493. static void sc_muladd(uint8_t *s, const uint8_t *a, const uint8_t *b, const uint8_t *c) { int64_t a0 = 2097151 & load_3(a); int64_t a1 = 2097151 & (load_4(a + 2) >> 5); int64_t a2 = 2097151 & (load_3(a + 5) >> 2); int64_t a3 = 2097151 & (load_4(a + 7) >> 7); int64_t a4 = 2097151 & (load_4(a + 10) >> 4); int64_t a5 = 2097151 & (load_3(a + 13) >> 1); int64_t a6 = 2097151 & (load_4(a + 15) >> 6); int64_t a7 = 2097151 & (load_3(a + 18) >> 3); int64_t a8 = 2097151 & load_3(a + 21); int64_t a9 = 2097151 & (load_4(a + 23) >> 5); int64_t a10 = 2097151 & (load_3(a + 26) >> 2); int64_t a11 = (load_4(a + 28) >> 7); int64_t b0 = 2097151 & load_3(b); int64_t b1 = 2097151 & (load_4(b + 2) >> 5); int64_t b2 = 2097151 & (load_3(b + 5) >> 2); int64_t b3 = 2097151 & (load_4(b + 7) >> 7); int64_t b4 = 2097151 & (load_4(b + 10) >> 4); int64_t b5 = 2097151 & (load_3(b + 13) >> 1); int64_t b6 = 2097151 & (load_4(b + 15) >> 6); int64_t b7 = 2097151 & (load_3(b + 18) >> 3); int64_t b8 = 2097151 & load_3(b + 21); int64_t b9 = 2097151 & (load_4(b + 23) >> 5); int64_t b10 = 2097151 & (load_3(b + 26) >> 2); int64_t b11 = (load_4(b + 28) >> 7); int64_t c0 = 2097151 & load_3(c); int64_t c1 = 2097151 & (load_4(c + 2) >> 5); int64_t c2 = 2097151 & (load_3(c + 5) >> 2); int64_t c3 = 2097151 & (load_4(c + 7) >> 7); int64_t c4 = 2097151 & (load_4(c + 10) >> 4); int64_t c5 = 2097151 & (load_3(c + 13) >> 1); int64_t c6 = 2097151 & (load_4(c + 15) >> 6); int64_t c7 = 2097151 & (load_3(c + 18) >> 3); int64_t c8 = 2097151 & load_3(c + 21); int64_t c9 = 2097151 & (load_4(c + 23) >> 5); int64_t c10 = 2097151 & (load_3(c + 26) >> 2); int64_t c11 = (load_4(c + 28) >> 7); int64_t s0; int64_t s1; int64_t s2; int64_t s3; int64_t s4; int64_t s5; int64_t s6; int64_t s7; int64_t s8; int64_t s9; int64_t s10; int64_t s11; int64_t s12; int64_t s13; int64_t s14; int64_t s15; int64_t s16; int64_t s17; int64_t s18; int64_t s19; int64_t s20; int64_t s21; int64_t s22; int64_t s23; int64_t carry0; int64_t carry1; int64_t carry2; int64_t carry3; int64_t carry4; int64_t carry5; int64_t carry6; int64_t carry7; int64_t carry8; int64_t carry9; int64_t carry10; int64_t carry11; int64_t carry12; int64_t carry13; int64_t carry14; int64_t carry15; int64_t carry16; int64_t carry17; int64_t carry18; int64_t carry19; int64_t carry20; int64_t carry21; int64_t carry22; s0 = c0 + a0 * b0; s1 = c1 + a0 * b1 + a1 * b0; s2 = c2 + a0 * b2 + a1 * b1 + a2 * b0; s3 = c3 + a0 * b3 + a1 * b2 + a2 * b1 + a3 * b0; s4 = c4 + a0 * b4 + a1 * b3 + a2 * b2 + a3 * b1 + a4 * b0; s5 = c5 + a0 * b5 + a1 * b4 + a2 * b3 + a3 * b2 + a4 * b1 + a5 * b0; s6 = c6 + a0 * b6 + a1 * b5 + a2 * b4 + a3 * b3 + a4 * b2 + a5 * b1 + a6 * b0; s7 = c7 + a0 * b7 + a1 * b6 + a2 * b5 + a3 * b4 + a4 * b3 + a5 * b2 + a6 * b1 + a7 * b0; s8 = c8 + a0 * b8 + a1 * b7 + a2 * b6 + a3 * b5 + a4 * b4 + a5 * b3 + a6 * b2 + a7 * b1 + a8 * b0; s9 = c9 + a0 * b9 + a1 * b8 + a2 * b7 + a3 * b6 + a4 * b5 + a5 * b4 + a6 * b3 + a7 * b2 + a8 * b1 + a9 * b0; s10 = c10 + a0 * b10 + a1 * b9 + a2 * b8 + a3 * b7 + a4 * b6 + a5 * b5 + a6 * b4 + a7 * b3 + a8 * b2 + a9 * b1 + a10 * b0; s11 = c11 + a0 * b11 + a1 * b10 + a2 * b9 + a3 * b8 + a4 * b7 + a5 * b6 + a6 * b5 + a7 * b4 + a8 * b3 + a9 * b2 + a10 * b1 + a11 * b0; s12 = a1 * b11 + a2 * b10 + a3 * b9 + a4 * b8 + a5 * b7 + a6 * b6 + a7 * b5 + a8 * b4 + a9 * b3 + a10 * b2 + a11 * b1; s13 = a2 * b11 + a3 * b10 + a4 * b9 + a5 * b8 + a6 * b7 + a7 * b6 + a8 * b5 + a9 * b4 + a10 * b3 + a11 * b2; s14 = a3 * b11 + a4 * b10 + a5 * b9 + a6 * b8 + a7 * b7 + a8 * b6 + a9 * b5 + a10 * b4 + a11 * b3; s15 = a4 * b11 + a5 * b10 + a6 * b9 + a7 * b8 + a8 * b7 + a9 * b6 + a10 * b5 + a11 * b4; s16 = a5 * b11 + a6 * b10 + a7 * b9 + a8 * b8 + a9 * b7 + a10 * b6 + a11 * b5; s17 = a6 * b11 + a7 * b10 + a8 * b9 + a9 * b8 + a10 * b7 + a11 * b6; s18 = a7 * b11 + a8 * b10 + a9 * b9 + a10 * b8 + a11 * b7; s19 = a8 * b11 + a9 * b10 + a10 * b9 + a11 * b8; s20 = a9 * b11 + a10 * b10 + a11 * b9; s21 = a10 * b11 + a11 * b10; s22 = a11 * b11; s23 = 0; carry0 = (s0 + (1 << 20)) >> 21; s1 += carry0; s0 -= int64_lshift21(carry0); carry2 = (s2 + (1 << 20)) >> 21; s3 += carry2; s2 -= int64_lshift21(carry2); carry4 = (s4 + (1 << 20)) >> 21; s5 += carry4; s4 -= int64_lshift21(carry4); carry6 = (s6 + (1 << 20)) >> 21; s7 += carry6; s6 -= int64_lshift21(carry6); carry8 = (s8 + (1 << 20)) >> 21; s9 += carry8; s8 -= int64_lshift21(carry8); carry10 = (s10 + (1 << 20)) >> 21; s11 += carry10; s10 -= int64_lshift21(carry10); carry12 = (s12 + (1 << 20)) >> 21; s13 += carry12; s12 -= int64_lshift21(carry12); carry14 = (s14 + (1 << 20)) >> 21; s15 += carry14; s14 -= int64_lshift21(carry14); carry16 = (s16 + (1 << 20)) >> 21; s17 += carry16; s16 -= int64_lshift21(carry16); carry18 = (s18 + (1 << 20)) >> 21; s19 += carry18; s18 -= int64_lshift21(carry18); carry20 = (s20 + (1 << 20)) >> 21; s21 += carry20; s20 -= int64_lshift21(carry20); carry22 = (s22 + (1 << 20)) >> 21; s23 += carry22; s22 -= int64_lshift21(carry22); carry1 = (s1 + (1 << 20)) >> 21; s2 += carry1; s1 -= int64_lshift21(carry1); carry3 = (s3 + (1 << 20)) >> 21; s4 += carry3; s3 -= int64_lshift21(carry3); carry5 = (s5 + (1 << 20)) >> 21; s6 += carry5; s5 -= int64_lshift21(carry5); carry7 = (s7 + (1 << 20)) >> 21; s8 += carry7; s7 -= int64_lshift21(carry7); carry9 = (s9 + (1 << 20)) >> 21; s10 += carry9; s9 -= int64_lshift21(carry9); carry11 = (s11 + (1 << 20)) >> 21; s12 += carry11; s11 -= int64_lshift21(carry11); carry13 = (s13 + (1 << 20)) >> 21; s14 += carry13; s13 -= int64_lshift21(carry13); carry15 = (s15 + (1 << 20)) >> 21; s16 += carry15; s15 -= int64_lshift21(carry15); carry17 = (s17 + (1 << 20)) >> 21; s18 += carry17; s17 -= int64_lshift21(carry17); carry19 = (s19 + (1 << 20)) >> 21; s20 += carry19; s19 -= int64_lshift21(carry19); carry21 = (s21 + (1 << 20)) >> 21; s22 += carry21; s21 -= int64_lshift21(carry21); s11 += s23 * 666643; s12 += s23 * 470296; s13 += s23 * 654183; s14 -= s23 * 997805; s15 += s23 * 136657; s16 -= s23 * 683901; s23 = 0; s10 += s22 * 666643; s11 += s22 * 470296; s12 += s22 * 654183; s13 -= s22 * 997805; s14 += s22 * 136657; s15 -= s22 * 683901; s22 = 0; s9 += s21 * 666643; s10 += s21 * 470296; s11 += s21 * 654183; s12 -= s21 * 997805; s13 += s21 * 136657; s14 -= s21 * 683901; s21 = 0; s8 += s20 * 666643; s9 += s20 * 470296; s10 += s20 * 654183; s11 -= s20 * 997805; s12 += s20 * 136657; s13 -= s20 * 683901; s20 = 0; s7 += s19 * 666643; s8 += s19 * 470296; s9 += s19 * 654183; s10 -= s19 * 997805; s11 += s19 * 136657; s12 -= s19 * 683901; s19 = 0; s6 += s18 * 666643; s7 += s18 * 470296; s8 += s18 * 654183; s9 -= s18 * 997805; s10 += s18 * 136657; s11 -= s18 * 683901; s18 = 0; carry6 = (s6 + (1 << 20)) >> 21; s7 += carry6; s6 -= int64_lshift21(carry6); carry8 = (s8 + (1 << 20)) >> 21; s9 += carry8; s8 -= int64_lshift21(carry8); carry10 = (s10 + (1 << 20)) >> 21; s11 += carry10; s10 -= int64_lshift21(carry10); carry12 = (s12 + (1 << 20)) >> 21; s13 += carry12; s12 -= int64_lshift21(carry12); carry14 = (s14 + (1 << 20)) >> 21; s15 += carry14; s14 -= int64_lshift21(carry14); carry16 = (s16 + (1 << 20)) >> 21; s17 += carry16; s16 -= int64_lshift21(carry16); carry7 = (s7 + (1 << 20)) >> 21; s8 += carry7; s7 -= int64_lshift21(carry7); carry9 = (s9 + (1 << 20)) >> 21; s10 += carry9; s9 -= int64_lshift21(carry9); carry11 = (s11 + (1 << 20)) >> 21; s12 += carry11; s11 -= int64_lshift21(carry11); carry13 = (s13 + (1 << 20)) >> 21; s14 += carry13; s13 -= int64_lshift21(carry13); carry15 = (s15 + (1 << 20)) >> 21; s16 += carry15; s15 -= int64_lshift21(carry15); s5 += s17 * 666643; s6 += s17 * 470296; s7 += s17 * 654183; s8 -= s17 * 997805; s9 += s17 * 136657; s10 -= s17 * 683901; s17 = 0; s4 += s16 * 666643; s5 += s16 * 470296; s6 += s16 * 654183; s7 -= s16 * 997805; s8 += s16 * 136657; s9 -= s16 * 683901; s16 = 0; s3 += s15 * 666643; s4 += s15 * 470296; s5 += s15 * 654183; s6 -= s15 * 997805; s7 += s15 * 136657; s8 -= s15 * 683901; s15 = 0; s2 += s14 * 666643; s3 += s14 * 470296; s4 += s14 * 654183; s5 -= s14 * 997805; s6 += s14 * 136657; s7 -= s14 * 683901; s14 = 0; s1 += s13 * 666643; s2 += s13 * 470296; s3 += s13 * 654183; s4 -= s13 * 997805; s5 += s13 * 136657; s6 -= s13 * 683901; s13 = 0; s0 += s12 * 666643; s1 += s12 * 470296; s2 += s12 * 654183; s3 -= s12 * 997805; s4 += s12 * 136657; s5 -= s12 * 683901; s12 = 0; carry0 = (s0 + (1 << 20)) >> 21; s1 += carry0; s0 -= int64_lshift21(carry0); carry2 = (s2 + (1 << 20)) >> 21; s3 += carry2; s2 -= int64_lshift21(carry2); carry4 = (s4 + (1 << 20)) >> 21; s5 += carry4; s4 -= int64_lshift21(carry4); carry6 = (s6 + (1 << 20)) >> 21; s7 += carry6; s6 -= int64_lshift21(carry6); carry8 = (s8 + (1 << 20)) >> 21; s9 += carry8; s8 -= int64_lshift21(carry8); carry10 = (s10 + (1 << 20)) >> 21; s11 += carry10; s10 -= int64_lshift21(carry10); carry1 = (s1 + (1 << 20)) >> 21; s2 += carry1; s1 -= int64_lshift21(carry1); carry3 = (s3 + (1 << 20)) >> 21; s4 += carry3; s3 -= int64_lshift21(carry3); carry5 = (s5 + (1 << 20)) >> 21; s6 += carry5; s5 -= int64_lshift21(carry5); carry7 = (s7 + (1 << 20)) >> 21; s8 += carry7; s7 -= int64_lshift21(carry7); carry9 = (s9 + (1 << 20)) >> 21; s10 += carry9; s9 -= int64_lshift21(carry9); carry11 = (s11 + (1 << 20)) >> 21; s12 += carry11; s11 -= int64_lshift21(carry11); s0 += s12 * 666643; s1 += s12 * 470296; s2 += s12 * 654183; s3 -= s12 * 997805; s4 += s12 * 136657; s5 -= s12 * 683901; s12 = 0; carry0 = s0 >> 21; s1 += carry0; s0 -= int64_lshift21(carry0); carry1 = s1 >> 21; s2 += carry1; s1 -= int64_lshift21(carry1); carry2 = s2 >> 21; s3 += carry2; s2 -= int64_lshift21(carry2); carry3 = s3 >> 21; s4 += carry3; s3 -= int64_lshift21(carry3); carry4 = s4 >> 21; s5 += carry4; s4 -= int64_lshift21(carry4); carry5 = s5 >> 21; s6 += carry5; s5 -= int64_lshift21(carry5); carry6 = s6 >> 21; s7 += carry6; s6 -= int64_lshift21(carry6); carry7 = s7 >> 21; s8 += carry7; s7 -= int64_lshift21(carry7); carry8 = s8 >> 21; s9 += carry8; s8 -= int64_lshift21(carry8); carry9 = s9 >> 21; s10 += carry9; s9 -= int64_lshift21(carry9); carry10 = s10 >> 21; s11 += carry10; s10 -= int64_lshift21(carry10); carry11 = s11 >> 21; s12 += carry11; s11 -= int64_lshift21(carry11); s0 += s12 * 666643; s1 += s12 * 470296; s2 += s12 * 654183; s3 -= s12 * 997805; s4 += s12 * 136657; s5 -= s12 * 683901; s12 = 0; carry0 = s0 >> 21; s1 += carry0; s0 -= int64_lshift21(carry0); carry1 = s1 >> 21; s2 += carry1; s1 -= int64_lshift21(carry1); carry2 = s2 >> 21; s3 += carry2; s2 -= int64_lshift21(carry2); carry3 = s3 >> 21; s4 += carry3; s3 -= int64_lshift21(carry3); carry4 = s4 >> 21; s5 += carry4; s4 -= int64_lshift21(carry4); carry5 = s5 >> 21; s6 += carry5; s5 -= int64_lshift21(carry5); carry6 = s6 >> 21; s7 += carry6; s6 -= int64_lshift21(carry6); carry7 = s7 >> 21; s8 += carry7; s7 -= int64_lshift21(carry7); carry8 = s8 >> 21; s9 += carry8; s8 -= int64_lshift21(carry8); carry9 = s9 >> 21; s10 += carry9; s9 -= int64_lshift21(carry9); carry10 = s10 >> 21; s11 += carry10; s10 -= int64_lshift21(carry10); s[0] = s0 >> 0; s[1] = s0 >> 8; s[2] = (s0 >> 16) | (s1 << 5); s[3] = s1 >> 3; s[4] = s1 >> 11; s[5] = (s1 >> 19) | (s2 << 2); s[6] = s2 >> 6; s[7] = (s2 >> 14) | (s3 << 7); s[8] = s3 >> 1; s[9] = s3 >> 9; s[10] = (s3 >> 17) | (s4 << 4); s[11] = s4 >> 4; s[12] = s4 >> 12; s[13] = (s4 >> 20) | (s5 << 1); s[14] = s5 >> 7; s[15] = (s5 >> 15) | (s6 << 6); s[16] = s6 >> 2; s[17] = s6 >> 10; s[18] = (s6 >> 18) | (s7 << 3); s[19] = s7 >> 5; s[20] = s7 >> 13; s[21] = s8 >> 0; s[22] = s8 >> 8; s[23] = (s8 >> 16) | (s9 << 5); s[24] = s9 >> 3; s[25] = s9 >> 11; s[26] = (s9 >> 19) | (s10 << 2); s[27] = s10 >> 6; s[28] = (s10 >> 14) | (s11 << 7); s[29] = s11 >> 1; s[30] = s11 >> 9; s[31] = s11 >> 17; } #include <caml/memory.h> CAMLprim value mc_x25519_scalar_mult_generic(value out, value scalar, value point) { CAMLparam3(out, scalar, point); x25519_scalar_mult_generic(Bytes_val(out), _st_uint8(scalar), _st_uint8(point)); CAMLreturn(Val_unit); } CAMLprim value mc_25519_scalar_mult_base(value out, value hash) { CAMLparam2(out, hash); ge_p3 A; ge_p3_0(&A); x25519_ge_scalarmult_base(&A, _st_uint8(hash)); ge_p3_tobytes(Bytes_val(out), &A); CAMLreturn(Val_unit); } CAMLprim value mc_25519_reduce_l(value buf) { CAMLparam1(buf); x25519_sc_reduce(Bytes_val(buf)); CAMLreturn(Val_unit); } CAMLprim value mc_25519_muladd(value out, value a, value b, value c) { CAMLparam4(out, a, b, c); sc_muladd(Bytes_val(out), _st_uint8(a), _st_uint8(b), _st_uint8(c)); CAMLreturn(Val_unit); } CAMLprim value mc_25519_double_scalar_mult(value out, value k, value key, value c) { CAMLparam4(out, k, key, c); ge_p2 R; ge_p3 B; fe_loose t; int success = 0; success = x25519_ge_frombytes_vartime(&B, _st_uint8(key)); fe_neg(&t, &B.X); fe_carry(&B.X, &t); fe_neg(&t, &B.T); fe_carry(&B.T, &t); ge_double_scalarmult_vartime(&R, _st_uint8(k), &B, _st_uint8(c)); x25519_ge_tobytes(Bytes_val(out), &R); CAMLreturn(Val_bool(success)); } CAMLprim value mc_25519_pub_ok(value key) { CAMLparam1(key); int success = 0; ge_p3 B; success = x25519_ge_frombytes_vartime(&B, _st_uint8(key)); CAMLreturn(Val_bool(success)); }
mirage-crypto
2.0.2
ISC
https://github.com/mirage/mirage-crypto
git+https://github.com/mirage/mirage-crypto.git
h
mirage-crypto-2.0.2/ec/native/curve25519_tables.h
/* following code is from c47bfce06 of boringssl: crypto/curve25519 */ /* Copyright (c) 2020, Google Inc. * * Permission to use, copy, modify, and/or distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies. * * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ // This file is generated from // ./make_curve25519_tables.py > curve25519_tables.h static const fe d = {{ #if defined(ARCH_64BIT) 929955233495203, 466365720129213, 1662059464998953, 2033849074728123, 1442794654840575 #else 56195235, 13857412, 51736253, 6949390, 114729, 24766616, 60832955, 30306712, 48412415, 21499315 #endif }}; static const fe sqrtm1 = {{ #if defined(ARCH_64BIT) 1718705420411056, 234908883556509, 2233514472574048, 2117202627021982, 765476049583133 #else 34513072, 25610706, 9377949, 3500415, 12389472, 33281959, 41962654, 31548777, 326685, 11406482 #endif }}; static const fe d2 = {{ #if defined(ARCH_64BIT) 1859910466990425, 932731440258426, 1072319116312658, 1815898335770999, 633789495995903 #else 45281625, 27714825, 36363642, 13898781, 229458, 15978800, 54557047, 27058993, 29715967, 9444199 #endif }}; // This block of code replaces the standard base-point table with a much smaller // one. The standard table is 30,720 bytes while this one is just 960. // // This table contains 15 pairs of group elements, (x, y), where each field // element is serialised with |fe_tobytes|. If |i| is the index of the group // element then consider i+1 as a four-bit number: (i₀, i₁, i₂, i₃) (where i₀ // is the most significant bit). The value of the group element is then: // (i₀×2^192 + i₁×2^128 + i₂×2^64 + i₃)G, where G is the generator. static const uint8_t k25519SmallPrecomp[15 * 2 * 32] = { 0x1a, 0xd5, 0x25, 0x8f, 0x60, 0x2d, 0x56, 0xc9, 0xb2, 0xa7, 0x25, 0x95, 0x60, 0xc7, 0x2c, 0x69, 0x5c, 0xdc, 0xd6, 0xfd, 0x31, 0xe2, 0xa4, 0xc0, 0xfe, 0x53, 0x6e, 0xcd, 0xd3, 0x36, 0x69, 0x21, 0x58, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x02, 0xa2, 0xed, 0xf4, 0x8f, 0x6b, 0x0b, 0x3e, 0xeb, 0x35, 0x1a, 0xd5, 0x7e, 0xdb, 0x78, 0x00, 0x96, 0x8a, 0xa0, 0xb4, 0xcf, 0x60, 0x4b, 0xd4, 0xd5, 0xf9, 0x2d, 0xbf, 0x88, 0xbd, 0x22, 0x62, 0x13, 0x53, 0xe4, 0x82, 0x57, 0xfa, 0x1e, 0x8f, 0x06, 0x2b, 0x90, 0xba, 0x08, 0xb6, 0x10, 0x54, 0x4f, 0x7c, 0x1b, 0x26, 0xed, 0xda, 0x6b, 0xdd, 0x25, 0xd0, 0x4e, 0xea, 0x42, 0xbb, 0x25, 0x03, 0xa2, 0xfb, 0xcc, 0x61, 0x67, 0x06, 0x70, 0x1a, 0xc4, 0x78, 0x3a, 0xff, 0x32, 0x62, 0xdd, 0x2c, 0xab, 0x50, 0x19, 0x3b, 0xf2, 0x9b, 0x7d, 0xb8, 0xfd, 0x4f, 0x29, 0x9c, 0xa7, 0x91, 0xba, 0x0e, 0x46, 0x5e, 0x51, 0xfe, 0x1d, 0xbf, 0xe5, 0xe5, 0x9b, 0x95, 0x0d, 0x67, 0xf8, 0xd1, 0xb5, 0x5a, 0xa1, 0x93, 0x2c, 0xc3, 0xde, 0x0e, 0x97, 0x85, 0x2d, 0x7f, 0xea, 0xab, 0x3e, 0x47, 0x30, 0x18, 0x24, 0xe8, 0xb7, 0x60, 0xae, 0x47, 0x80, 0xfc, 0xe5, 0x23, 0xe7, 0xc2, 0xc9, 0x85, 0xe6, 0x98, 0xa0, 0x29, 0x4e, 0xe1, 0x84, 0x39, 0x2d, 0x95, 0x2c, 0xf3, 0x45, 0x3c, 0xff, 0xaf, 0x27, 0x4c, 0x6b, 0xa6, 0xf5, 0x4b, 0x11, 0xbd, 0xba, 0x5b, 0x9e, 0xc4, 0xa4, 0x51, 0x1e, 0xbe, 0xd0, 0x90, 0x3a, 0x9c, 0xc2, 0x26, 0xb6, 0x1e, 0xf1, 0x95, 0x7d, 0xc8, 0x6d, 0x52, 0xe6, 0x99, 0x2c, 0x5f, 0x9a, 0x96, 0x0c, 0x68, 0x29, 0xfd, 0xe2, 0xfb, 0xe6, 0xbc, 0xec, 0x31, 0x08, 0xec, 0xe6, 0xb0, 0x53, 0x60, 0xc3, 0x8c, 0xbe, 0xc1, 0xb3, 0x8a, 0x8f, 0xe4, 0x88, 0x2b, 0x55, 0xe5, 0x64, 0x6e, 0x9b, 0xd0, 0xaf, 0x7b, 0x64, 0x2a, 0x35, 0x25, 0x10, 0x52, 0xc5, 0x9e, 0x58, 0x11, 0x39, 0x36, 0x45, 0x51, 0xb8, 0x39, 0x93, 0xfc, 0x9d, 0x6a, 0xbe, 0x58, 0xcb, 0xa4, 0x0f, 0x51, 0x3c, 0x38, 0x05, 0xca, 0xab, 0x43, 0x63, 0x0e, 0xf3, 0x8b, 0x41, 0xa6, 0xf8, 0x9b, 0x53, 0x70, 0x80, 0x53, 0x86, 0x5e, 0x8f, 0xe3, 0xc3, 0x0d, 0x18, 0xc8, 0x4b, 0x34, 0x1f, 0xd8, 0x1d, 0xbc, 0xf2, 0x6d, 0x34, 0x3a, 0xbe, 0xdf, 0xd9, 0xf6, 0xf3, 0x89, 0xa1, 0xe1, 0x94, 0x9f, 0x5d, 0x4c, 0x5d, 0xe9, 0xa1, 0x49, 0x92, 0xef, 0x0e, 0x53, 0x81, 0x89, 0x58, 0x87, 0xa6, 0x37, 0xf1, 0xdd, 0x62, 0x60, 0x63, 0x5a, 0x9d, 0x1b, 0x8c, 0xc6, 0x7d, 0x52, 0xea, 0x70, 0x09, 0x6a, 0xe1, 0x32, 0xf3, 0x73, 0x21, 0x1f, 0x07, 0x7b, 0x7c, 0x9b, 0x49, 0xd8, 0xc0, 0xf3, 0x25, 0x72, 0x6f, 0x9d, 0xed, 0x31, 0x67, 0x36, 0x36, 0x54, 0x40, 0x92, 0x71, 0xe6, 0x11, 0x28, 0x11, 0xad, 0x93, 0x32, 0x85, 0x7b, 0x3e, 0xb7, 0x3b, 0x49, 0x13, 0x1c, 0x07, 0xb0, 0x2e, 0x93, 0xaa, 0xfd, 0xfd, 0x28, 0x47, 0x3d, 0x8d, 0xd2, 0xda, 0xc7, 0x44, 0xd6, 0x7a, 0xdb, 0x26, 0x7d, 0x1d, 0xb8, 0xe1, 0xde, 0x9d, 0x7a, 0x7d, 0x17, 0x7e, 0x1c, 0x37, 0x04, 0x8d, 0x2d, 0x7c, 0x5e, 0x18, 0x38, 0x1e, 0xaf, 0xc7, 0x1b, 0x33, 0x48, 0x31, 0x00, 0x59, 0xf6, 0xf2, 0xca, 0x0f, 0x27, 0x1b, 0x63, 0x12, 0x7e, 0x02, 0x1d, 0x49, 0xc0, 0x5d, 0x79, 0x87, 0xef, 0x5e, 0x7a, 0x2f, 0x1f, 0x66, 0x55, 0xd8, 0x09, 0xd9, 0x61, 0x38, 0x68, 0xb0, 0x07, 0xa3, 0xfc, 0xcc, 0x85, 0x10, 0x7f, 0x4c, 0x65, 0x65, 0xb3, 0xfa, 0xfa, 0xa5, 0x53, 0x6f, 0xdb, 0x74, 0x4c, 0x56, 0x46, 0x03, 0xe2, 0xd5, 0x7a, 0x29, 0x1c, 0xc6, 0x02, 0xbc, 0x59, 0xf2, 0x04, 0x75, 0x63, 0xc0, 0x84, 0x2f, 0x60, 0x1c, 0x67, 0x76, 0xfd, 0x63, 0x86, 0xf3, 0xfa, 0xbf, 0xdc, 0xd2, 0x2d, 0x90, 0x91, 0xbd, 0x33, 0xa9, 0xe5, 0x66, 0x0c, 0xda, 0x42, 0x27, 0xca, 0xf4, 0x66, 0xc2, 0xec, 0x92, 0x14, 0x57, 0x06, 0x63, 0xd0, 0x4d, 0x15, 0x06, 0xeb, 0x69, 0x58, 0x4f, 0x77, 0xc5, 0x8b, 0xc7, 0xf0, 0x8e, 0xed, 0x64, 0xa0, 0xb3, 0x3c, 0x66, 0x71, 0xc6, 0x2d, 0xda, 0x0a, 0x0d, 0xfe, 0x70, 0x27, 0x64, 0xf8, 0x27, 0xfa, 0xf6, 0x5f, 0x30, 0xa5, 0x0d, 0x6c, 0xda, 0xf2, 0x62, 0x5e, 0x78, 0x47, 0xd3, 0x66, 0x00, 0x1c, 0xfd, 0x56, 0x1f, 0x5d, 0x3f, 0x6f, 0xf4, 0x4c, 0xd8, 0xfd, 0x0e, 0x27, 0xc9, 0x5c, 0x2b, 0xbc, 0xc0, 0xa4, 0xe7, 0x23, 0x29, 0x02, 0x9f, 0x31, 0xd6, 0xe9, 0xd7, 0x96, 0xf4, 0xe0, 0x5e, 0x0b, 0x0e, 0x13, 0xee, 0x3c, 0x09, 0xed, 0xf2, 0x3d, 0x76, 0x91, 0xc3, 0xa4, 0x97, 0xae, 0xd4, 0x87, 0xd0, 0x5d, 0xf6, 0x18, 0x47, 0x1f, 0x1d, 0x67, 0xf2, 0xcf, 0x63, 0xa0, 0x91, 0x27, 0xf8, 0x93, 0x45, 0x75, 0x23, 0x3f, 0xd1, 0xf1, 0xad, 0x23, 0xdd, 0x64, 0x93, 0x96, 0x41, 0x70, 0x7f, 0xf7, 0xf5, 0xa9, 0x89, 0xa2, 0x34, 0xb0, 0x8d, 0x1b, 0xae, 0x19, 0x15, 0x49, 0x58, 0x23, 0x6d, 0x87, 0x15, 0x4f, 0x81, 0x76, 0xfb, 0x23, 0xb5, 0xea, 0xcf, 0xac, 0x54, 0x8d, 0x4e, 0x42, 0x2f, 0xeb, 0x0f, 0x63, 0xdb, 0x68, 0x37, 0xa8, 0xcf, 0x8b, 0xab, 0xf5, 0xa4, 0x6e, 0x96, 0x2a, 0xb2, 0xd6, 0xbe, 0x9e, 0xbd, 0x0d, 0xb4, 0x42, 0xa9, 0xcf, 0x01, 0x83, 0x8a, 0x17, 0x47, 0x76, 0xc4, 0xc6, 0x83, 0x04, 0x95, 0x0b, 0xfc, 0x11, 0xc9, 0x62, 0xb8, 0x0c, 0x76, 0x84, 0xd9, 0xb9, 0x37, 0xfa, 0xfc, 0x7c, 0xc2, 0x6d, 0x58, 0x3e, 0xb3, 0x04, 0xbb, 0x8c, 0x8f, 0x48, 0xbc, 0x91, 0x27, 0xcc, 0xf9, 0xb7, 0x22, 0x19, 0x83, 0x2e, 0x09, 0xb5, 0x72, 0xd9, 0x54, 0x1c, 0x4d, 0xa1, 0xea, 0x0b, 0xf1, 0xc6, 0x08, 0x72, 0x46, 0x87, 0x7a, 0x6e, 0x80, 0x56, 0x0a, 0x8a, 0xc0, 0xdd, 0x11, 0x6b, 0xd6, 0xdd, 0x47, 0xdf, 0x10, 0xd9, 0xd8, 0xea, 0x7c, 0xb0, 0x8f, 0x03, 0x00, 0x2e, 0xc1, 0x8f, 0x44, 0xa8, 0xd3, 0x30, 0x06, 0x89, 0xa2, 0xf9, 0x34, 0xad, 0xdc, 0x03, 0x85, 0xed, 0x51, 0xa7, 0x82, 0x9c, 0xe7, 0x5d, 0x52, 0x93, 0x0c, 0x32, 0x9a, 0x5b, 0xe1, 0xaa, 0xca, 0xb8, 0x02, 0x6d, 0x3a, 0xd4, 0xb1, 0x3a, 0xf0, 0x5f, 0xbe, 0xb5, 0x0d, 0x10, 0x6b, 0x38, 0x32, 0xac, 0x76, 0x80, 0xbd, 0xca, 0x94, 0x71, 0x7a, 0xf2, 0xc9, 0x35, 0x2a, 0xde, 0x9f, 0x42, 0x49, 0x18, 0x01, 0xab, 0xbc, 0xef, 0x7c, 0x64, 0x3f, 0x58, 0x3d, 0x92, 0x59, 0xdb, 0x13, 0xdb, 0x58, 0x6e, 0x0a, 0xe0, 0xb7, 0x91, 0x4a, 0x08, 0x20, 0xd6, 0x2e, 0x3c, 0x45, 0xc9, 0x8b, 0x17, 0x79, 0xe7, 0xc7, 0x90, 0x99, 0x3a, 0x18, 0x25, }; // Bi[i] = (2*i+1)*B static const ge_precomp Bi[8] = { { {{ #if defined(ARCH_64BIT) 1288382639258501, 245678601348599, 269427782077623, 1462984067271730, 137412439391563 #else 25967493, 19198397, 29566455, 3660896, 54414519, 4014786, 27544626, 21800161, 61029707, 2047604 #endif }}, {{ #if defined(ARCH_64BIT) 62697248952638, 204681361388450, 631292143396476, 338455783676468, 1213667448819585 #else 54563134, 934261, 64385954, 3049989, 66381436, 9406985, 12720692, 5043384, 19500929, 18085054 #endif }}, {{ #if defined(ARCH_64BIT) 301289933810280, 1259582250014073, 1422107436869536, 796239922652654, 1953934009299142 #else 58370664, 4489569, 9688441, 18769238, 10184608, 21191052, 29287918, 11864899, 42594502, 29115885 #endif }}, }, { {{ #if defined(ARCH_64BIT) 1601611775252272, 1720807796594148, 1132070835939856, 1260455018889551, 2147779492816911 #else 15636272, 23865875, 24204772, 25642034, 616976, 16869170, 27787599, 18782243, 28944399, 32004408 #endif }}, {{ #if defined(ARCH_64BIT) 316559037616741, 2177824224946892, 1459442586438991, 1461528397712656, 751590696113597 #else 16568933, 4717097, 55552716, 32452109, 15682895, 21747389, 16354576, 21778470, 7689661, 11199574 #endif }}, {{ #if defined(ARCH_64BIT) 1850748884277385, 1200145853858453, 1068094770532492, 672251375690438, 1586055907191707 #else 30464137, 27578307, 55329429, 17883566, 23220364, 15915852, 7512774, 10017326, 49359771, 23634074 #endif }}, }, { {{ #if defined(ARCH_64BIT) 769950342298419, 132954430919746, 844085933195555, 974092374476333, 726076285546016 #else 10861363, 11473154, 27284546, 1981175, 37044515, 12577860, 32867885, 14515107, 51670560, 10819379 #endif }}, {{ #if defined(ARCH_64BIT) 425251763115706, 608463272472562, 442562545713235, 837766094556764, 374555092627893 #else 4708026, 6336745, 20377586, 9066809, 55836755, 6594695, 41455196, 12483687, 54440373, 5581305 #endif }}, {{ #if defined(ARCH_64BIT) 1086255230780037, 274979815921559, 1960002765731872, 929474102396301, 1190409889297339 #else 19563141, 16186464, 37722007, 4097518, 10237984, 29206317, 28542349, 13850243, 43430843, 17738489 #endif }}, }, { {{ #if defined(ARCH_64BIT) 665000864555967, 2065379846933859, 370231110385876, 350988370788628, 1233371373142985 #else 5153727, 9909285, 1723747, 30776558, 30523604, 5516873, 19480852, 5230134, 43156425, 18378665 #endif }}, {{ #if defined(ARCH_64BIT) 2019367628972465, 676711900706637, 110710997811333, 1108646842542025, 517791959672113 #else 36839857, 30090922, 7665485, 10083793, 28475525, 1649722, 20654025, 16520125, 30598449, 7715701 #endif }}, {{ #if defined(ARCH_64BIT) 965130719900578, 247011430587952, 526356006571389, 91986625355052, 2157223321444601 #else 28881826, 14381568, 9657904, 3680757, 46927229, 7843315, 35708204, 1370707, 29794553, 32145132 #endif }}, }, { {{ #if defined(ARCH_64BIT) 1802695059465007, 1664899123557221, 593559490740857, 2160434469266659, 927570450755031 #else 44589871, 26862249, 14201701, 24808930, 43598457, 8844725, 18474211, 32192982, 54046167, 13821876 #endif }}, {{ #if defined(ARCH_64BIT) 1725674970513508, 1933645953859181, 1542344539275782, 1767788773573747, 1297447965928905 #else 60653668, 25714560, 3374701, 28813570, 40010246, 22982724, 31655027, 26342105, 18853321, 19333481 #endif }}, {{ #if defined(ARCH_64BIT) 1381809363726107, 1430341051343062, 2061843536018959, 1551778050872521, 2036394857967624 #else 4566811, 20590564, 38133974, 21313742, 59506191, 30723862, 58594505, 23123294, 2207752, 30344648 #endif }}, }, { {{ #if defined(ARCH_64BIT) 1970894096313054, 528066325833207, 1619374932191227, 2207306624415883, 1169170329061080 #else 41954014, 29368610, 29681143, 7868801, 60254203, 24130566, 54671499, 32891431, 35997400, 17421995 #endif }}, {{ #if defined(ARCH_64BIT) 2070390218572616, 1458919061857835, 624171843017421, 1055332792707765, 433987520732508 #else 25576264, 30851218, 7349803, 21739588, 16472781, 9300885, 3844789, 15725684, 171356, 6466918 #endif }}, {{ #if defined(ARCH_64BIT) 893653801273833, 1168026499324677, 1242553501121234, 1306366254304474, 1086752658510815 #else 23103977, 13316479, 9739013, 17404951, 817874, 18515490, 8965338, 19466374, 36393951, 16193876 #endif }}, }, { {{ #if defined(ARCH_64BIT) 213454002618221, 939771523987438, 1159882208056014, 317388369627517, 621213314200687 #else 33587053, 3180712, 64714734, 14003686, 50205390, 17283591, 17238397, 4729455, 49034351, 9256799 #endif }}, {{ #if defined(ARCH_64BIT) 1971678598905747, 338026507889165, 762398079972271, 655096486107477, 42299032696322 #else 41926547, 29380300, 32336397, 5036987, 45872047, 11360616, 22616405, 9761698, 47281666, 630304 #endif }}, {{ #if defined(ARCH_64BIT) 177130678690680, 1754759263300204, 1864311296286618, 1180675631479880, 1292726903152791 #else 53388152, 2639452, 42871404, 26147950, 9494426, 27780403, 60554312, 17593437, 64659607, 19263131 #endif }}, }, { {{ #if defined(ARCH_64BIT) 1913163449625248, 460779200291993, 2193883288642314, 1008900146920800, 1721983679009502 #else 63957664, 28508356, 9282713, 6866145, 35201802, 32691408, 48168288, 15033783, 25105118, 25659556 #endif }}, {{ #if defined(ARCH_64BIT) 1070401523076875, 1272492007800961, 1910153608563310, 2075579521696771, 1191169788841221 #else 42782475, 15950225, 35307649, 18961608, 55446126, 28463506, 1573891, 30928545, 2198789, 17749813 #endif }}, {{ #if defined(ARCH_64BIT) 692896803108118, 500174642072499, 2068223309439677, 1162190621851337, 1426986007309901 #else 64009494, 10324966, 64867251, 7453182, 61661885, 30818928, 53296841, 17317989, 34647629, 21263748 #endif }}, }, };
mirage-crypto
2.0.2
ISC
https://github.com/mirage/mirage-crypto
git+https://github.com/mirage/mirage-crypto.git
h
mirage-crypto-2.0.2/ec/native/inversion_template.h
#define MAKE_FN_NAME1(x,y) x ## y #define MAKE_FN_NAME(x,y) MAKE_FN_NAME1(x,y) #define PRECOMP MAKE_FN_NAME(CURVE_DESCRIPTION,_divstep_precomp) #define MSAT MAKE_FN_NAME(CURVE_DESCRIPTION,_msat) #define MONE MAKE_FN_NAME(CURVE_DESCRIPTION,_set_one) #define DIVSTEP MAKE_FN_NAME(CURVE_DESCRIPTION,_divstep) #define OPP MAKE_FN_NAME(CURVE_DESCRIPTION,_opp) #define MUL MAKE_FN_NAME(CURVE_DESCRIPTION,_mul) #define SZNZ MAKE_FN_NAME(CURVE_DESCRIPTION,_selectznz) #if LEN_PRIME < 46 #define ITERATIONS (((49 * LEN_PRIME) + 80) / 17) #else #define ITERATIONS (((49 * LEN_PRIME) + 57) / 17) #endif #define SAT_LIMBS LIMBS + 1 /* we might need 2 more bits to represent m in twos complement */ #define BYTES 8 * (((LEN_PRIME - 1) / 64) + 1) static void inverse(WORD out[LIMBS], WORD g[SAT_LIMBS]) { WORD precomp[LIMBS]; PRECOMP(precomp); WORD d = 1; WORD f[SAT_LIMBS]; WORD v[LIMBS]; WORD r[LIMBS]; WORD out1; WORD out2[SAT_LIMBS], out3[SAT_LIMBS], out4[LIMBS], out5[LIMBS]; MSAT(f); MONE(r); for (int j = 0; j < LIMBS; j++) v[j] = 0; for (int i = 0; i < ITERATIONS - (ITERATIONS % 2); i+=2) { DIVSTEP(&out1,out2,out3,out4,out5,d,f,g,v,r); DIVSTEP(&d,f,g,v,r,out1,out2,out3,out4,out5); } if (ITERATIONS % 2) { DIVSTEP(&out1,out2,out3,out4,out5,d,f,g,v,r); for (int k = 0; k < LIMBS; k++) v[k] = out4[k]; for (int k = 0; k < SAT_LIMBS; k++) f[k] = out2[k]; } WORD h[LIMBS]; OPP(h, v); SZNZ(v, f[SAT_LIMBS -1 ] >> (WORDSIZE - 1), v, h); MUL(out, v, precomp); return; } static void inversion (WORD out[LIMBS], const WORD in[LIMBS]) { WORD in_[SAT_LIMBS]; for (int i = 0; i < LIMBS; i++) in_[i] = in[i]; in_[LIMBS] = 0; inverse(out, in_); return; }
mirage-crypto
2.0.2
ISC
https://github.com/mirage/mirage-crypto
git+https://github.com/mirage/mirage-crypto.git
h
mirage-crypto-2.0.2/ec/native/np256_32.h
/* Autogenerated: '../fiat-crypto/src/ExtractionOCaml/word_by_word_montgomery' --static --use-value-barrier --inline-internal np256 32 0xffffffff00000000ffffffffffffffffbce6faada7179e84f3b9cac2fc632551 mul add opp from_montgomery to_montgomery one msat divstep_precomp divstep to_bytes from_bytes selectznz */ /* curve description: np256 */ /* machine_wordsize = 32 (from "32") */ /* requested operations: mul, add, opp, from_montgomery, to_montgomery, one, msat, divstep_precomp, divstep, to_bytes, from_bytes, selectznz */ /* m = 0xffffffff00000000ffffffffffffffffbce6faada7179e84f3b9cac2fc632551 (from "0xffffffff00000000ffffffffffffffffbce6faada7179e84f3b9cac2fc632551") */ /* */ /* NOTE: In addition to the bounds specified above each function, all */ /* functions synthesized for this Montgomery arithmetic require the */ /* input to be strictly less than the prime modulus (m), and also */ /* require the input to be in the unique saturated representation. */ /* All functions also ensure that these two properties are true of */ /* return values. */ /* */ /* Computed values: */ /* eval z = z[0] + (z[1] << 32) + (z[2] << 64) + (z[3] << 96) + (z[4] << 128) + (z[5] << 160) + (z[6] << 192) + (z[7] << 224) */ /* bytes_eval z = z[0] + (z[1] << 8) + (z[2] << 16) + (z[3] << 24) + (z[4] << 32) + (z[5] << 40) + (z[6] << 48) + (z[7] << 56) + (z[8] << 64) + (z[9] << 72) + (z[10] << 80) + (z[11] << 88) + (z[12] << 96) + (z[13] << 104) + (z[14] << 112) + (z[15] << 120) + (z[16] << 128) + (z[17] << 136) + (z[18] << 144) + (z[19] << 152) + (z[20] << 160) + (z[21] << 168) + (z[22] << 176) + (z[23] << 184) + (z[24] << 192) + (z[25] << 200) + (z[26] << 208) + (z[27] << 216) + (z[28] << 224) + (z[29] << 232) + (z[30] << 240) + (z[31] << 248) */ /* twos_complement_eval z = let x1 := z[0] + (z[1] << 32) + (z[2] << 64) + (z[3] << 96) + (z[4] << 128) + (z[5] << 160) + (z[6] << 192) + (z[7] << 224) in */ /* if x1 & (2^256-1) < 2^255 then x1 & (2^256-1) else (x1 & (2^256-1)) - 2^256 */ #include <stdint.h> typedef unsigned char fiat_np256_uint1; typedef signed char fiat_np256_int1; #if defined(__GNUC__) || defined(__clang__) # define FIAT_NP256_FIAT_INLINE __inline__ #else # define FIAT_NP256_FIAT_INLINE #endif /* The type fiat_np256_montgomery_domain_field_element is a field element in the Montgomery domain. */ /* Bounds: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff]] */ typedef uint32_t fiat_np256_montgomery_domain_field_element[8]; /* The type fiat_np256_non_montgomery_domain_field_element is a field element NOT in the Montgomery domain. */ /* Bounds: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff]] */ typedef uint32_t fiat_np256_non_montgomery_domain_field_element[8]; #if (-1 & 3) != 3 #error "This code only works on a two's complement system" #endif #if !defined(FIAT_NP256_NO_ASM) && (defined(__GNUC__) || defined(__clang__)) static __inline__ uint32_t fiat_np256_value_barrier_u32(uint32_t a) { __asm__("" : "+r"(a) : /* no inputs */); return a; } #else # define fiat_np256_value_barrier_u32(x) (x) #endif /* * The function fiat_np256_addcarryx_u32 is an addition with carry. * * Postconditions: * out1 = (arg1 + arg2 + arg3) mod 2^32 * out2 = ⌊(arg1 + arg2 + arg3) / 2^32⌋ * * Input Bounds: * arg1: [0x0 ~> 0x1] * arg2: [0x0 ~> 0xffffffff] * arg3: [0x0 ~> 0xffffffff] * Output Bounds: * out1: [0x0 ~> 0xffffffff] * out2: [0x0 ~> 0x1] */ static FIAT_NP256_FIAT_INLINE void fiat_np256_addcarryx_u32(uint32_t* out1, fiat_np256_uint1* out2, fiat_np256_uint1 arg1, uint32_t arg2, uint32_t arg3) { uint64_t x1; uint32_t x2; fiat_np256_uint1 x3; x1 = ((arg1 + (uint64_t)arg2) + arg3); x2 = (uint32_t)(x1 & UINT32_C(0xffffffff)); x3 = (fiat_np256_uint1)(x1 >> 32); *out1 = x2; *out2 = x3; } /* * The function fiat_np256_subborrowx_u32 is a subtraction with borrow. * * Postconditions: * out1 = (-arg1 + arg2 + -arg3) mod 2^32 * out2 = -⌊(-arg1 + arg2 + -arg3) / 2^32⌋ * * Input Bounds: * arg1: [0x0 ~> 0x1] * arg2: [0x0 ~> 0xffffffff] * arg3: [0x0 ~> 0xffffffff] * Output Bounds: * out1: [0x0 ~> 0xffffffff] * out2: [0x0 ~> 0x1] */ static FIAT_NP256_FIAT_INLINE void fiat_np256_subborrowx_u32(uint32_t* out1, fiat_np256_uint1* out2, fiat_np256_uint1 arg1, uint32_t arg2, uint32_t arg3) { int64_t x1; fiat_np256_int1 x2; uint32_t x3; x1 = ((arg2 - (int64_t)arg1) - arg3); x2 = (fiat_np256_int1)(x1 >> 32); x3 = (uint32_t)(x1 & UINT32_C(0xffffffff)); *out1 = x3; *out2 = (fiat_np256_uint1)(0x0 - x2); } /* * The function fiat_np256_mulx_u32 is a multiplication, returning the full double-width result. * * Postconditions: * out1 = (arg1 * arg2) mod 2^32 * out2 = ⌊arg1 * arg2 / 2^32⌋ * * Input Bounds: * arg1: [0x0 ~> 0xffffffff] * arg2: [0x0 ~> 0xffffffff] * Output Bounds: * out1: [0x0 ~> 0xffffffff] * out2: [0x0 ~> 0xffffffff] */ static FIAT_NP256_FIAT_INLINE void fiat_np256_mulx_u32(uint32_t* out1, uint32_t* out2, uint32_t arg1, uint32_t arg2) { uint64_t x1; uint32_t x2; uint32_t x3; x1 = ((uint64_t)arg1 * arg2); x2 = (uint32_t)(x1 & UINT32_C(0xffffffff)); x3 = (uint32_t)(x1 >> 32); *out1 = x2; *out2 = x3; } /* * The function fiat_np256_cmovznz_u32 is a single-word conditional move. * * Postconditions: * out1 = (if arg1 = 0 then arg2 else arg3) * * Input Bounds: * arg1: [0x0 ~> 0x1] * arg2: [0x0 ~> 0xffffffff] * arg3: [0x0 ~> 0xffffffff] * Output Bounds: * out1: [0x0 ~> 0xffffffff] */ static FIAT_NP256_FIAT_INLINE void fiat_np256_cmovznz_u32(uint32_t* out1, fiat_np256_uint1 arg1, uint32_t arg2, uint32_t arg3) { fiat_np256_uint1 x1; uint32_t x2; uint32_t x3; x1 = (!(!arg1)); x2 = ((fiat_np256_int1)(0x0 - x1) & UINT32_C(0xffffffff)); x3 = ((fiat_np256_value_barrier_u32(x2) & arg3) | (fiat_np256_value_barrier_u32((~x2)) & arg2)); *out1 = x3; } /* * The function fiat_np256_mul multiplies two field elements in the Montgomery domain. * * Preconditions: * 0 ≤ eval arg1 < m * 0 ≤ eval arg2 < m * Postconditions: * eval (from_montgomery out1) mod m = (eval (from_montgomery arg1) * eval (from_montgomery arg2)) mod m * 0 ≤ eval out1 < m * */ static void fiat_np256_mul(fiat_np256_montgomery_domain_field_element out1, const fiat_np256_montgomery_domain_field_element arg1, const fiat_np256_montgomery_domain_field_element arg2) { uint32_t x1; uint32_t x2; uint32_t x3; uint32_t x4; uint32_t x5; uint32_t x6; uint32_t x7; uint32_t x8; uint32_t x9; uint32_t x10; uint32_t x11; uint32_t x12; uint32_t x13; uint32_t x14; uint32_t x15; uint32_t x16; uint32_t x17; uint32_t x18; uint32_t x19; uint32_t x20; uint32_t x21; uint32_t x22; uint32_t x23; uint32_t x24; uint32_t x25; fiat_np256_uint1 x26; uint32_t x27; fiat_np256_uint1 x28; uint32_t x29; fiat_np256_uint1 x30; uint32_t x31; fiat_np256_uint1 x32; uint32_t x33; fiat_np256_uint1 x34; uint32_t x35; fiat_np256_uint1 x36; uint32_t x37; fiat_np256_uint1 x38; uint32_t x39; uint32_t x40; uint32_t x41; uint32_t x42; uint32_t x43; uint32_t x44; uint32_t x45; uint32_t x46; uint32_t x47; uint32_t x48; uint32_t x49; uint32_t x50; uint32_t x51; uint32_t x52; uint32_t x53; uint32_t x54; uint32_t x55; uint32_t x56; fiat_np256_uint1 x57; uint32_t x58; fiat_np256_uint1 x59; uint32_t x60; fiat_np256_uint1 x61; uint32_t x62; fiat_np256_uint1 x63; uint32_t x64; fiat_np256_uint1 x65; uint32_t x66; uint32_t x67; fiat_np256_uint1 x68; uint32_t x69; fiat_np256_uint1 x70; uint32_t x71; fiat_np256_uint1 x72; uint32_t x73; fiat_np256_uint1 x74; uint32_t x75; fiat_np256_uint1 x76; uint32_t x77; fiat_np256_uint1 x78; uint32_t x79; fiat_np256_uint1 x80; uint32_t x81; fiat_np256_uint1 x82; uint32_t x83; fiat_np256_uint1 x84; uint32_t x85; uint32_t x86; uint32_t x87; uint32_t x88; uint32_t x89; uint32_t x90; uint32_t x91; uint32_t x92; uint32_t x93; uint32_t x94; uint32_t x95; uint32_t x96; uint32_t x97; uint32_t x98; uint32_t x99; uint32_t x100; uint32_t x101; fiat_np256_uint1 x102; uint32_t x103; fiat_np256_uint1 x104; uint32_t x105; fiat_np256_uint1 x106; uint32_t x107; fiat_np256_uint1 x108; uint32_t x109; fiat_np256_uint1 x110; uint32_t x111; fiat_np256_uint1 x112; uint32_t x113; fiat_np256_uint1 x114; uint32_t x115; uint32_t x116; fiat_np256_uint1 x117; uint32_t x118; fiat_np256_uint1 x119; uint32_t x120; fiat_np256_uint1 x121; uint32_t x122; fiat_np256_uint1 x123; uint32_t x124; fiat_np256_uint1 x125; uint32_t x126; fiat_np256_uint1 x127; uint32_t x128; fiat_np256_uint1 x129; uint32_t x130; fiat_np256_uint1 x131; uint32_t x132; fiat_np256_uint1 x133; uint32_t x134; uint32_t x135; uint32_t x136; uint32_t x137; uint32_t x138; uint32_t x139; uint32_t x140; uint32_t x141; uint32_t x142; uint32_t x143; uint32_t x144; uint32_t x145; uint32_t x146; uint32_t x147; uint32_t x148; uint32_t x149; uint32_t x150; fiat_np256_uint1 x151; uint32_t x152; fiat_np256_uint1 x153; uint32_t x154; fiat_np256_uint1 x155; uint32_t x156; fiat_np256_uint1 x157; uint32_t x158; fiat_np256_uint1 x159; uint32_t x160; uint32_t x161; fiat_np256_uint1 x162; uint32_t x163; fiat_np256_uint1 x164; uint32_t x165; fiat_np256_uint1 x166; uint32_t x167; fiat_np256_uint1 x168; uint32_t x169; fiat_np256_uint1 x170; uint32_t x171; fiat_np256_uint1 x172; uint32_t x173; fiat_np256_uint1 x174; uint32_t x175; fiat_np256_uint1 x176; uint32_t x177; fiat_np256_uint1 x178; uint32_t x179; uint32_t x180; uint32_t x181; uint32_t x182; uint32_t x183; uint32_t x184; uint32_t x185; uint32_t x186; uint32_t x187; uint32_t x188; uint32_t x189; uint32_t x190; uint32_t x191; uint32_t x192; uint32_t x193; uint32_t x194; uint32_t x195; uint32_t x196; fiat_np256_uint1 x197; uint32_t x198; fiat_np256_uint1 x199; uint32_t x200; fiat_np256_uint1 x201; uint32_t x202; fiat_np256_uint1 x203; uint32_t x204; fiat_np256_uint1 x205; uint32_t x206; fiat_np256_uint1 x207; uint32_t x208; fiat_np256_uint1 x209; uint32_t x210; uint32_t x211; fiat_np256_uint1 x212; uint32_t x213; fiat_np256_uint1 x214; uint32_t x215; fiat_np256_uint1 x216; uint32_t x217; fiat_np256_uint1 x218; uint32_t x219; fiat_np256_uint1 x220; uint32_t x221; fiat_np256_uint1 x222; uint32_t x223; fiat_np256_uint1 x224; uint32_t x225; fiat_np256_uint1 x226; uint32_t x227; fiat_np256_uint1 x228; uint32_t x229; uint32_t x230; uint32_t x231; uint32_t x232; uint32_t x233; uint32_t x234; uint32_t x235; uint32_t x236; uint32_t x237; uint32_t x238; uint32_t x239; uint32_t x240; uint32_t x241; uint32_t x242; uint32_t x243; uint32_t x244; uint32_t x245; fiat_np256_uint1 x246; uint32_t x247; fiat_np256_uint1 x248; uint32_t x249; fiat_np256_uint1 x250; uint32_t x251; fiat_np256_uint1 x252; uint32_t x253; fiat_np256_uint1 x254; uint32_t x255; uint32_t x256; fiat_np256_uint1 x257; uint32_t x258; fiat_np256_uint1 x259; uint32_t x260; fiat_np256_uint1 x261; uint32_t x262; fiat_np256_uint1 x263; uint32_t x264; fiat_np256_uint1 x265; uint32_t x266; fiat_np256_uint1 x267; uint32_t x268; fiat_np256_uint1 x269; uint32_t x270; fiat_np256_uint1 x271; uint32_t x272; fiat_np256_uint1 x273; uint32_t x274; uint32_t x275; uint32_t x276; uint32_t x277; uint32_t x278; uint32_t x279; uint32_t x280; uint32_t x281; uint32_t x282; uint32_t x283; uint32_t x284; uint32_t x285; uint32_t x286; uint32_t x287; uint32_t x288; uint32_t x289; uint32_t x290; uint32_t x291; fiat_np256_uint1 x292; uint32_t x293; fiat_np256_uint1 x294; uint32_t x295; fiat_np256_uint1 x296; uint32_t x297; fiat_np256_uint1 x298; uint32_t x299; fiat_np256_uint1 x300; uint32_t x301; fiat_np256_uint1 x302; uint32_t x303; fiat_np256_uint1 x304; uint32_t x305; uint32_t x306; fiat_np256_uint1 x307; uint32_t x308; fiat_np256_uint1 x309; uint32_t x310; fiat_np256_uint1 x311; uint32_t x312; fiat_np256_uint1 x313; uint32_t x314; fiat_np256_uint1 x315; uint32_t x316; fiat_np256_uint1 x317; uint32_t x318; fiat_np256_uint1 x319; uint32_t x320; fiat_np256_uint1 x321; uint32_t x322; fiat_np256_uint1 x323; uint32_t x324; uint32_t x325; uint32_t x326; uint32_t x327; uint32_t x328; uint32_t x329; uint32_t x330; uint32_t x331; uint32_t x332; uint32_t x333; uint32_t x334; uint32_t x335; uint32_t x336; uint32_t x337; uint32_t x338; uint32_t x339; uint32_t x340; fiat_np256_uint1 x341; uint32_t x342; fiat_np256_uint1 x343; uint32_t x344; fiat_np256_uint1 x345; uint32_t x346; fiat_np256_uint1 x347; uint32_t x348; fiat_np256_uint1 x349; uint32_t x350; uint32_t x351; fiat_np256_uint1 x352; uint32_t x353; fiat_np256_uint1 x354; uint32_t x355; fiat_np256_uint1 x356; uint32_t x357; fiat_np256_uint1 x358; uint32_t x359; fiat_np256_uint1 x360; uint32_t x361; fiat_np256_uint1 x362; uint32_t x363; fiat_np256_uint1 x364; uint32_t x365; fiat_np256_uint1 x366; uint32_t x367; fiat_np256_uint1 x368; uint32_t x369; uint32_t x370; uint32_t x371; uint32_t x372; uint32_t x373; uint32_t x374; uint32_t x375; uint32_t x376; uint32_t x377; uint32_t x378; uint32_t x379; uint32_t x380; uint32_t x381; uint32_t x382; uint32_t x383; uint32_t x384; uint32_t x385; uint32_t x386; fiat_np256_uint1 x387; uint32_t x388; fiat_np256_uint1 x389; uint32_t x390; fiat_np256_uint1 x391; uint32_t x392; fiat_np256_uint1 x393; uint32_t x394; fiat_np256_uint1 x395; uint32_t x396; fiat_np256_uint1 x397; uint32_t x398; fiat_np256_uint1 x399; uint32_t x400; uint32_t x401; fiat_np256_uint1 x402; uint32_t x403; fiat_np256_uint1 x404; uint32_t x405; fiat_np256_uint1 x406; uint32_t x407; fiat_np256_uint1 x408; uint32_t x409; fiat_np256_uint1 x410; uint32_t x411; fiat_np256_uint1 x412; uint32_t x413; fiat_np256_uint1 x414; uint32_t x415; fiat_np256_uint1 x416; uint32_t x417; fiat_np256_uint1 x418; uint32_t x419; uint32_t x420; uint32_t x421; uint32_t x422; uint32_t x423; uint32_t x424; uint32_t x425; uint32_t x426; uint32_t x427; uint32_t x428; uint32_t x429; uint32_t x430; uint32_t x431; uint32_t x432; uint32_t x433; uint32_t x434; uint32_t x435; fiat_np256_uint1 x436; uint32_t x437; fiat_np256_uint1 x438; uint32_t x439; fiat_np256_uint1 x440; uint32_t x441; fiat_np256_uint1 x442; uint32_t x443; fiat_np256_uint1 x444; uint32_t x445; uint32_t x446; fiat_np256_uint1 x447; uint32_t x448; fiat_np256_uint1 x449; uint32_t x450; fiat_np256_uint1 x451; uint32_t x452; fiat_np256_uint1 x453; uint32_t x454; fiat_np256_uint1 x455; uint32_t x456; fiat_np256_uint1 x457; uint32_t x458; fiat_np256_uint1 x459; uint32_t x460; fiat_np256_uint1 x461; uint32_t x462; fiat_np256_uint1 x463; uint32_t x464; uint32_t x465; uint32_t x466; uint32_t x467; uint32_t x468; uint32_t x469; uint32_t x470; uint32_t x471; uint32_t x472; uint32_t x473; uint32_t x474; uint32_t x475; uint32_t x476; uint32_t x477; uint32_t x478; uint32_t x479; uint32_t x480; uint32_t x481; fiat_np256_uint1 x482; uint32_t x483; fiat_np256_uint1 x484; uint32_t x485; fiat_np256_uint1 x486; uint32_t x487; fiat_np256_uint1 x488; uint32_t x489; fiat_np256_uint1 x490; uint32_t x491; fiat_np256_uint1 x492; uint32_t x493; fiat_np256_uint1 x494; uint32_t x495; uint32_t x496; fiat_np256_uint1 x497; uint32_t x498; fiat_np256_uint1 x499; uint32_t x500; fiat_np256_uint1 x501; uint32_t x502; fiat_np256_uint1 x503; uint32_t x504; fiat_np256_uint1 x505; uint32_t x506; fiat_np256_uint1 x507; uint32_t x508; fiat_np256_uint1 x509; uint32_t x510; fiat_np256_uint1 x511; uint32_t x512; fiat_np256_uint1 x513; uint32_t x514; uint32_t x515; uint32_t x516; uint32_t x517; uint32_t x518; uint32_t x519; uint32_t x520; uint32_t x521; uint32_t x522; uint32_t x523; uint32_t x524; uint32_t x525; uint32_t x526; uint32_t x527; uint32_t x528; uint32_t x529; uint32_t x530; fiat_np256_uint1 x531; uint32_t x532; fiat_np256_uint1 x533; uint32_t x534; fiat_np256_uint1 x535; uint32_t x536; fiat_np256_uint1 x537; uint32_t x538; fiat_np256_uint1 x539; uint32_t x540; uint32_t x541; fiat_np256_uint1 x542; uint32_t x543; fiat_np256_uint1 x544; uint32_t x545; fiat_np256_uint1 x546; uint32_t x547; fiat_np256_uint1 x548; uint32_t x549; fiat_np256_uint1 x550; uint32_t x551; fiat_np256_uint1 x552; uint32_t x553; fiat_np256_uint1 x554; uint32_t x555; fiat_np256_uint1 x556; uint32_t x557; fiat_np256_uint1 x558; uint32_t x559; uint32_t x560; uint32_t x561; uint32_t x562; uint32_t x563; uint32_t x564; uint32_t x565; uint32_t x566; uint32_t x567; uint32_t x568; uint32_t x569; uint32_t x570; uint32_t x571; uint32_t x572; uint32_t x573; uint32_t x574; uint32_t x575; uint32_t x576; fiat_np256_uint1 x577; uint32_t x578; fiat_np256_uint1 x579; uint32_t x580; fiat_np256_uint1 x581; uint32_t x582; fiat_np256_uint1 x583; uint32_t x584; fiat_np256_uint1 x585; uint32_t x586; fiat_np256_uint1 x587; uint32_t x588; fiat_np256_uint1 x589; uint32_t x590; uint32_t x591; fiat_np256_uint1 x592; uint32_t x593; fiat_np256_uint1 x594; uint32_t x595; fiat_np256_uint1 x596; uint32_t x597; fiat_np256_uint1 x598; uint32_t x599; fiat_np256_uint1 x600; uint32_t x601; fiat_np256_uint1 x602; uint32_t x603; fiat_np256_uint1 x604; uint32_t x605; fiat_np256_uint1 x606; uint32_t x607; fiat_np256_uint1 x608; uint32_t x609; uint32_t x610; uint32_t x611; uint32_t x612; uint32_t x613; uint32_t x614; uint32_t x615; uint32_t x616; uint32_t x617; uint32_t x618; uint32_t x619; uint32_t x620; uint32_t x621; uint32_t x622; uint32_t x623; uint32_t x624; uint32_t x625; fiat_np256_uint1 x626; uint32_t x627; fiat_np256_uint1 x628; uint32_t x629; fiat_np256_uint1 x630; uint32_t x631; fiat_np256_uint1 x632; uint32_t x633; fiat_np256_uint1 x634; uint32_t x635; uint32_t x636; fiat_np256_uint1 x637; uint32_t x638; fiat_np256_uint1 x639; uint32_t x640; fiat_np256_uint1 x641; uint32_t x642; fiat_np256_uint1 x643; uint32_t x644; fiat_np256_uint1 x645; uint32_t x646; fiat_np256_uint1 x647; uint32_t x648; fiat_np256_uint1 x649; uint32_t x650; fiat_np256_uint1 x651; uint32_t x652; fiat_np256_uint1 x653; uint32_t x654; uint32_t x655; uint32_t x656; uint32_t x657; uint32_t x658; uint32_t x659; uint32_t x660; uint32_t x661; uint32_t x662; uint32_t x663; uint32_t x664; uint32_t x665; uint32_t x666; uint32_t x667; uint32_t x668; uint32_t x669; uint32_t x670; uint32_t x671; fiat_np256_uint1 x672; uint32_t x673; fiat_np256_uint1 x674; uint32_t x675; fiat_np256_uint1 x676; uint32_t x677; fiat_np256_uint1 x678; uint32_t x679; fiat_np256_uint1 x680; uint32_t x681; fiat_np256_uint1 x682; uint32_t x683; fiat_np256_uint1 x684; uint32_t x685; uint32_t x686; fiat_np256_uint1 x687; uint32_t x688; fiat_np256_uint1 x689; uint32_t x690; fiat_np256_uint1 x691; uint32_t x692; fiat_np256_uint1 x693; uint32_t x694; fiat_np256_uint1 x695; uint32_t x696; fiat_np256_uint1 x697; uint32_t x698; fiat_np256_uint1 x699; uint32_t x700; fiat_np256_uint1 x701; uint32_t x702; fiat_np256_uint1 x703; uint32_t x704; uint32_t x705; uint32_t x706; uint32_t x707; uint32_t x708; uint32_t x709; uint32_t x710; uint32_t x711; uint32_t x712; uint32_t x713; uint32_t x714; uint32_t x715; uint32_t x716; uint32_t x717; uint32_t x718; uint32_t x719; uint32_t x720; fiat_np256_uint1 x721; uint32_t x722; fiat_np256_uint1 x723; uint32_t x724; fiat_np256_uint1 x725; uint32_t x726; fiat_np256_uint1 x727; uint32_t x728; fiat_np256_uint1 x729; uint32_t x730; uint32_t x731; fiat_np256_uint1 x732; uint32_t x733; fiat_np256_uint1 x734; uint32_t x735; fiat_np256_uint1 x736; uint32_t x737; fiat_np256_uint1 x738; uint32_t x739; fiat_np256_uint1 x740; uint32_t x741; fiat_np256_uint1 x742; uint32_t x743; fiat_np256_uint1 x744; uint32_t x745; fiat_np256_uint1 x746; uint32_t x747; fiat_np256_uint1 x748; uint32_t x749; uint32_t x750; fiat_np256_uint1 x751; uint32_t x752; fiat_np256_uint1 x753; uint32_t x754; fiat_np256_uint1 x755; uint32_t x756; fiat_np256_uint1 x757; uint32_t x758; fiat_np256_uint1 x759; uint32_t x760; fiat_np256_uint1 x761; uint32_t x762; fiat_np256_uint1 x763; uint32_t x764; fiat_np256_uint1 x765; uint32_t x766; fiat_np256_uint1 x767; uint32_t x768; uint32_t x769; uint32_t x770; uint32_t x771; uint32_t x772; uint32_t x773; uint32_t x774; uint32_t x775; x1 = (arg1[1]); x2 = (arg1[2]); x3 = (arg1[3]); x4 = (arg1[4]); x5 = (arg1[5]); x6 = (arg1[6]); x7 = (arg1[7]); x8 = (arg1[0]); fiat_np256_mulx_u32(&x9, &x10, x8, (arg2[7])); fiat_np256_mulx_u32(&x11, &x12, x8, (arg2[6])); fiat_np256_mulx_u32(&x13, &x14, x8, (arg2[5])); fiat_np256_mulx_u32(&x15, &x16, x8, (arg2[4])); fiat_np256_mulx_u32(&x17, &x18, x8, (arg2[3])); fiat_np256_mulx_u32(&x19, &x20, x8, (arg2[2])); fiat_np256_mulx_u32(&x21, &x22, x8, (arg2[1])); fiat_np256_mulx_u32(&x23, &x24, x8, (arg2[0])); fiat_np256_addcarryx_u32(&x25, &x26, 0x0, x24, x21); fiat_np256_addcarryx_u32(&x27, &x28, x26, x22, x19); fiat_np256_addcarryx_u32(&x29, &x30, x28, x20, x17); fiat_np256_addcarryx_u32(&x31, &x32, x30, x18, x15); fiat_np256_addcarryx_u32(&x33, &x34, x32, x16, x13); fiat_np256_addcarryx_u32(&x35, &x36, x34, x14, x11); fiat_np256_addcarryx_u32(&x37, &x38, x36, x12, x9); x39 = (x38 + x10); fiat_np256_mulx_u32(&x40, &x41, x23, UINT32_C(0xee00bc4f)); fiat_np256_mulx_u32(&x42, &x43, x40, UINT32_C(0xffffffff)); fiat_np256_mulx_u32(&x44, &x45, x40, UINT32_C(0xffffffff)); fiat_np256_mulx_u32(&x46, &x47, x40, UINT32_C(0xffffffff)); fiat_np256_mulx_u32(&x48, &x49, x40, UINT32_C(0xbce6faad)); fiat_np256_mulx_u32(&x50, &x51, x40, UINT32_C(0xa7179e84)); fiat_np256_mulx_u32(&x52, &x53, x40, UINT32_C(0xf3b9cac2)); fiat_np256_mulx_u32(&x54, &x55, x40, UINT32_C(0xfc632551)); fiat_np256_addcarryx_u32(&x56, &x57, 0x0, x55, x52); fiat_np256_addcarryx_u32(&x58, &x59, x57, x53, x50); fiat_np256_addcarryx_u32(&x60, &x61, x59, x51, x48); fiat_np256_addcarryx_u32(&x62, &x63, x61, x49, x46); fiat_np256_addcarryx_u32(&x64, &x65, x63, x47, x44); x66 = (x65 + x45); fiat_np256_addcarryx_u32(&x67, &x68, 0x0, x23, x54); fiat_np256_addcarryx_u32(&x69, &x70, x68, x25, x56); fiat_np256_addcarryx_u32(&x71, &x72, x70, x27, x58); fiat_np256_addcarryx_u32(&x73, &x74, x72, x29, x60); fiat_np256_addcarryx_u32(&x75, &x76, x74, x31, x62); fiat_np256_addcarryx_u32(&x77, &x78, x76, x33, x64); fiat_np256_addcarryx_u32(&x79, &x80, x78, x35, x66); fiat_np256_addcarryx_u32(&x81, &x82, x80, x37, x42); fiat_np256_addcarryx_u32(&x83, &x84, x82, x39, x43); fiat_np256_mulx_u32(&x85, &x86, x1, (arg2[7])); fiat_np256_mulx_u32(&x87, &x88, x1, (arg2[6])); fiat_np256_mulx_u32(&x89, &x90, x1, (arg2[5])); fiat_np256_mulx_u32(&x91, &x92, x1, (arg2[4])); fiat_np256_mulx_u32(&x93, &x94, x1, (arg2[3])); fiat_np256_mulx_u32(&x95, &x96, x1, (arg2[2])); fiat_np256_mulx_u32(&x97, &x98, x1, (arg2[1])); fiat_np256_mulx_u32(&x99, &x100, x1, (arg2[0])); fiat_np256_addcarryx_u32(&x101, &x102, 0x0, x100, x97); fiat_np256_addcarryx_u32(&x103, &x104, x102, x98, x95); fiat_np256_addcarryx_u32(&x105, &x106, x104, x96, x93); fiat_np256_addcarryx_u32(&x107, &x108, x106, x94, x91); fiat_np256_addcarryx_u32(&x109, &x110, x108, x92, x89); fiat_np256_addcarryx_u32(&x111, &x112, x110, x90, x87); fiat_np256_addcarryx_u32(&x113, &x114, x112, x88, x85); x115 = (x114 + x86); fiat_np256_addcarryx_u32(&x116, &x117, 0x0, x69, x99); fiat_np256_addcarryx_u32(&x118, &x119, x117, x71, x101); fiat_np256_addcarryx_u32(&x120, &x121, x119, x73, x103); fiat_np256_addcarryx_u32(&x122, &x123, x121, x75, x105); fiat_np256_addcarryx_u32(&x124, &x125, x123, x77, x107); fiat_np256_addcarryx_u32(&x126, &x127, x125, x79, x109); fiat_np256_addcarryx_u32(&x128, &x129, x127, x81, x111); fiat_np256_addcarryx_u32(&x130, &x131, x129, x83, x113); fiat_np256_addcarryx_u32(&x132, &x133, x131, x84, x115); fiat_np256_mulx_u32(&x134, &x135, x116, UINT32_C(0xee00bc4f)); fiat_np256_mulx_u32(&x136, &x137, x134, UINT32_C(0xffffffff)); fiat_np256_mulx_u32(&x138, &x139, x134, UINT32_C(0xffffffff)); fiat_np256_mulx_u32(&x140, &x141, x134, UINT32_C(0xffffffff)); fiat_np256_mulx_u32(&x142, &x143, x134, UINT32_C(0xbce6faad)); fiat_np256_mulx_u32(&x144, &x145, x134, UINT32_C(0xa7179e84)); fiat_np256_mulx_u32(&x146, &x147, x134, UINT32_C(0xf3b9cac2)); fiat_np256_mulx_u32(&x148, &x149, x134, UINT32_C(0xfc632551)); fiat_np256_addcarryx_u32(&x150, &x151, 0x0, x149, x146); fiat_np256_addcarryx_u32(&x152, &x153, x151, x147, x144); fiat_np256_addcarryx_u32(&x154, &x155, x153, x145, x142); fiat_np256_addcarryx_u32(&x156, &x157, x155, x143, x140); fiat_np256_addcarryx_u32(&x158, &x159, x157, x141, x138); x160 = (x159 + x139); fiat_np256_addcarryx_u32(&x161, &x162, 0x0, x116, x148); fiat_np256_addcarryx_u32(&x163, &x164, x162, x118, x150); fiat_np256_addcarryx_u32(&x165, &x166, x164, x120, x152); fiat_np256_addcarryx_u32(&x167, &x168, x166, x122, x154); fiat_np256_addcarryx_u32(&x169, &x170, x168, x124, x156); fiat_np256_addcarryx_u32(&x171, &x172, x170, x126, x158); fiat_np256_addcarryx_u32(&x173, &x174, x172, x128, x160); fiat_np256_addcarryx_u32(&x175, &x176, x174, x130, x136); fiat_np256_addcarryx_u32(&x177, &x178, x176, x132, x137); x179 = ((uint32_t)x178 + x133); fiat_np256_mulx_u32(&x180, &x181, x2, (arg2[7])); fiat_np256_mulx_u32(&x182, &x183, x2, (arg2[6])); fiat_np256_mulx_u32(&x184, &x185, x2, (arg2[5])); fiat_np256_mulx_u32(&x186, &x187, x2, (arg2[4])); fiat_np256_mulx_u32(&x188, &x189, x2, (arg2[3])); fiat_np256_mulx_u32(&x190, &x191, x2, (arg2[2])); fiat_np256_mulx_u32(&x192, &x193, x2, (arg2[1])); fiat_np256_mulx_u32(&x194, &x195, x2, (arg2[0])); fiat_np256_addcarryx_u32(&x196, &x197, 0x0, x195, x192); fiat_np256_addcarryx_u32(&x198, &x199, x197, x193, x190); fiat_np256_addcarryx_u32(&x200, &x201, x199, x191, x188); fiat_np256_addcarryx_u32(&x202, &x203, x201, x189, x186); fiat_np256_addcarryx_u32(&x204, &x205, x203, x187, x184); fiat_np256_addcarryx_u32(&x206, &x207, x205, x185, x182); fiat_np256_addcarryx_u32(&x208, &x209, x207, x183, x180); x210 = (x209 + x181); fiat_np256_addcarryx_u32(&x211, &x212, 0x0, x163, x194); fiat_np256_addcarryx_u32(&x213, &x214, x212, x165, x196); fiat_np256_addcarryx_u32(&x215, &x216, x214, x167, x198); fiat_np256_addcarryx_u32(&x217, &x218, x216, x169, x200); fiat_np256_addcarryx_u32(&x219, &x220, x218, x171, x202); fiat_np256_addcarryx_u32(&x221, &x222, x220, x173, x204); fiat_np256_addcarryx_u32(&x223, &x224, x222, x175, x206); fiat_np256_addcarryx_u32(&x225, &x226, x224, x177, x208); fiat_np256_addcarryx_u32(&x227, &x228, x226, x179, x210); fiat_np256_mulx_u32(&x229, &x230, x211, UINT32_C(0xee00bc4f)); fiat_np256_mulx_u32(&x231, &x232, x229, UINT32_C(0xffffffff)); fiat_np256_mulx_u32(&x233, &x234, x229, UINT32_C(0xffffffff)); fiat_np256_mulx_u32(&x235, &x236, x229, UINT32_C(0xffffffff)); fiat_np256_mulx_u32(&x237, &x238, x229, UINT32_C(0xbce6faad)); fiat_np256_mulx_u32(&x239, &x240, x229, UINT32_C(0xa7179e84)); fiat_np256_mulx_u32(&x241, &x242, x229, UINT32_C(0xf3b9cac2)); fiat_np256_mulx_u32(&x243, &x244, x229, UINT32_C(0xfc632551)); fiat_np256_addcarryx_u32(&x245, &x246, 0x0, x244, x241); fiat_np256_addcarryx_u32(&x247, &x248, x246, x242, x239); fiat_np256_addcarryx_u32(&x249, &x250, x248, x240, x237); fiat_np256_addcarryx_u32(&x251, &x252, x250, x238, x235); fiat_np256_addcarryx_u32(&x253, &x254, x252, x236, x233); x255 = (x254 + x234); fiat_np256_addcarryx_u32(&x256, &x257, 0x0, x211, x243); fiat_np256_addcarryx_u32(&x258, &x259, x257, x213, x245); fiat_np256_addcarryx_u32(&x260, &x261, x259, x215, x247); fiat_np256_addcarryx_u32(&x262, &x263, x261, x217, x249); fiat_np256_addcarryx_u32(&x264, &x265, x263, x219, x251); fiat_np256_addcarryx_u32(&x266, &x267, x265, x221, x253); fiat_np256_addcarryx_u32(&x268, &x269, x267, x223, x255); fiat_np256_addcarryx_u32(&x270, &x271, x269, x225, x231); fiat_np256_addcarryx_u32(&x272, &x273, x271, x227, x232); x274 = ((uint32_t)x273 + x228); fiat_np256_mulx_u32(&x275, &x276, x3, (arg2[7])); fiat_np256_mulx_u32(&x277, &x278, x3, (arg2[6])); fiat_np256_mulx_u32(&x279, &x280, x3, (arg2[5])); fiat_np256_mulx_u32(&x281, &x282, x3, (arg2[4])); fiat_np256_mulx_u32(&x283, &x284, x3, (arg2[3])); fiat_np256_mulx_u32(&x285, &x286, x3, (arg2[2])); fiat_np256_mulx_u32(&x287, &x288, x3, (arg2[1])); fiat_np256_mulx_u32(&x289, &x290, x3, (arg2[0])); fiat_np256_addcarryx_u32(&x291, &x292, 0x0, x290, x287); fiat_np256_addcarryx_u32(&x293, &x294, x292, x288, x285); fiat_np256_addcarryx_u32(&x295, &x296, x294, x286, x283); fiat_np256_addcarryx_u32(&x297, &x298, x296, x284, x281); fiat_np256_addcarryx_u32(&x299, &x300, x298, x282, x279); fiat_np256_addcarryx_u32(&x301, &x302, x300, x280, x277); fiat_np256_addcarryx_u32(&x303, &x304, x302, x278, x275); x305 = (x304 + x276); fiat_np256_addcarryx_u32(&x306, &x307, 0x0, x258, x289); fiat_np256_addcarryx_u32(&x308, &x309, x307, x260, x291); fiat_np256_addcarryx_u32(&x310, &x311, x309, x262, x293); fiat_np256_addcarryx_u32(&x312, &x313, x311, x264, x295); fiat_np256_addcarryx_u32(&x314, &x315, x313, x266, x297); fiat_np256_addcarryx_u32(&x316, &x317, x315, x268, x299); fiat_np256_addcarryx_u32(&x318, &x319, x317, x270, x301); fiat_np256_addcarryx_u32(&x320, &x321, x319, x272, x303); fiat_np256_addcarryx_u32(&x322, &x323, x321, x274, x305); fiat_np256_mulx_u32(&x324, &x325, x306, UINT32_C(0xee00bc4f)); fiat_np256_mulx_u32(&x326, &x327, x324, UINT32_C(0xffffffff)); fiat_np256_mulx_u32(&x328, &x329, x324, UINT32_C(0xffffffff)); fiat_np256_mulx_u32(&x330, &x331, x324, UINT32_C(0xffffffff)); fiat_np256_mulx_u32(&x332, &x333, x324, UINT32_C(0xbce6faad)); fiat_np256_mulx_u32(&x334, &x335, x324, UINT32_C(0xa7179e84)); fiat_np256_mulx_u32(&x336, &x337, x324, UINT32_C(0xf3b9cac2)); fiat_np256_mulx_u32(&x338, &x339, x324, UINT32_C(0xfc632551)); fiat_np256_addcarryx_u32(&x340, &x341, 0x0, x339, x336); fiat_np256_addcarryx_u32(&x342, &x343, x341, x337, x334); fiat_np256_addcarryx_u32(&x344, &x345, x343, x335, x332); fiat_np256_addcarryx_u32(&x346, &x347, x345, x333, x330); fiat_np256_addcarryx_u32(&x348, &x349, x347, x331, x328); x350 = (x349 + x329); fiat_np256_addcarryx_u32(&x351, &x352, 0x0, x306, x338); fiat_np256_addcarryx_u32(&x353, &x354, x352, x308, x340); fiat_np256_addcarryx_u32(&x355, &x356, x354, x310, x342); fiat_np256_addcarryx_u32(&x357, &x358, x356, x312, x344); fiat_np256_addcarryx_u32(&x359, &x360, x358, x314, x346); fiat_np256_addcarryx_u32(&x361, &x362, x360, x316, x348); fiat_np256_addcarryx_u32(&x363, &x364, x362, x318, x350); fiat_np256_addcarryx_u32(&x365, &x366, x364, x320, x326); fiat_np256_addcarryx_u32(&x367, &x368, x366, x322, x327); x369 = ((uint32_t)x368 + x323); fiat_np256_mulx_u32(&x370, &x371, x4, (arg2[7])); fiat_np256_mulx_u32(&x372, &x373, x4, (arg2[6])); fiat_np256_mulx_u32(&x374, &x375, x4, (arg2[5])); fiat_np256_mulx_u32(&x376, &x377, x4, (arg2[4])); fiat_np256_mulx_u32(&x378, &x379, x4, (arg2[3])); fiat_np256_mulx_u32(&x380, &x381, x4, (arg2[2])); fiat_np256_mulx_u32(&x382, &x383, x4, (arg2[1])); fiat_np256_mulx_u32(&x384, &x385, x4, (arg2[0])); fiat_np256_addcarryx_u32(&x386, &x387, 0x0, x385, x382); fiat_np256_addcarryx_u32(&x388, &x389, x387, x383, x380); fiat_np256_addcarryx_u32(&x390, &x391, x389, x381, x378); fiat_np256_addcarryx_u32(&x392, &x393, x391, x379, x376); fiat_np256_addcarryx_u32(&x394, &x395, x393, x377, x374); fiat_np256_addcarryx_u32(&x396, &x397, x395, x375, x372); fiat_np256_addcarryx_u32(&x398, &x399, x397, x373, x370); x400 = (x399 + x371); fiat_np256_addcarryx_u32(&x401, &x402, 0x0, x353, x384); fiat_np256_addcarryx_u32(&x403, &x404, x402, x355, x386); fiat_np256_addcarryx_u32(&x405, &x406, x404, x357, x388); fiat_np256_addcarryx_u32(&x407, &x408, x406, x359, x390); fiat_np256_addcarryx_u32(&x409, &x410, x408, x361, x392); fiat_np256_addcarryx_u32(&x411, &x412, x410, x363, x394); fiat_np256_addcarryx_u32(&x413, &x414, x412, x365, x396); fiat_np256_addcarryx_u32(&x415, &x416, x414, x367, x398); fiat_np256_addcarryx_u32(&x417, &x418, x416, x369, x400); fiat_np256_mulx_u32(&x419, &x420, x401, UINT32_C(0xee00bc4f)); fiat_np256_mulx_u32(&x421, &x422, x419, UINT32_C(0xffffffff)); fiat_np256_mulx_u32(&x423, &x424, x419, UINT32_C(0xffffffff)); fiat_np256_mulx_u32(&x425, &x426, x419, UINT32_C(0xffffffff)); fiat_np256_mulx_u32(&x427, &x428, x419, UINT32_C(0xbce6faad)); fiat_np256_mulx_u32(&x429, &x430, x419, UINT32_C(0xa7179e84)); fiat_np256_mulx_u32(&x431, &x432, x419, UINT32_C(0xf3b9cac2)); fiat_np256_mulx_u32(&x433, &x434, x419, UINT32_C(0xfc632551)); fiat_np256_addcarryx_u32(&x435, &x436, 0x0, x434, x431); fiat_np256_addcarryx_u32(&x437, &x438, x436, x432, x429); fiat_np256_addcarryx_u32(&x439, &x440, x438, x430, x427); fiat_np256_addcarryx_u32(&x441, &x442, x440, x428, x425); fiat_np256_addcarryx_u32(&x443, &x444, x442, x426, x423); x445 = (x444 + x424); fiat_np256_addcarryx_u32(&x446, &x447, 0x0, x401, x433); fiat_np256_addcarryx_u32(&x448, &x449, x447, x403, x435); fiat_np256_addcarryx_u32(&x450, &x451, x449, x405, x437); fiat_np256_addcarryx_u32(&x452, &x453, x451, x407, x439); fiat_np256_addcarryx_u32(&x454, &x455, x453, x409, x441); fiat_np256_addcarryx_u32(&x456, &x457, x455, x411, x443); fiat_np256_addcarryx_u32(&x458, &x459, x457, x413, x445); fiat_np256_addcarryx_u32(&x460, &x461, x459, x415, x421); fiat_np256_addcarryx_u32(&x462, &x463, x461, x417, x422); x464 = ((uint32_t)x463 + x418); fiat_np256_mulx_u32(&x465, &x466, x5, (arg2[7])); fiat_np256_mulx_u32(&x467, &x468, x5, (arg2[6])); fiat_np256_mulx_u32(&x469, &x470, x5, (arg2[5])); fiat_np256_mulx_u32(&x471, &x472, x5, (arg2[4])); fiat_np256_mulx_u32(&x473, &x474, x5, (arg2[3])); fiat_np256_mulx_u32(&x475, &x476, x5, (arg2[2])); fiat_np256_mulx_u32(&x477, &x478, x5, (arg2[1])); fiat_np256_mulx_u32(&x479, &x480, x5, (arg2[0])); fiat_np256_addcarryx_u32(&x481, &x482, 0x0, x480, x477); fiat_np256_addcarryx_u32(&x483, &x484, x482, x478, x475); fiat_np256_addcarryx_u32(&x485, &x486, x484, x476, x473); fiat_np256_addcarryx_u32(&x487, &x488, x486, x474, x471); fiat_np256_addcarryx_u32(&x489, &x490, x488, x472, x469); fiat_np256_addcarryx_u32(&x491, &x492, x490, x470, x467); fiat_np256_addcarryx_u32(&x493, &x494, x492, x468, x465); x495 = (x494 + x466); fiat_np256_addcarryx_u32(&x496, &x497, 0x0, x448, x479); fiat_np256_addcarryx_u32(&x498, &x499, x497, x450, x481); fiat_np256_addcarryx_u32(&x500, &x501, x499, x452, x483); fiat_np256_addcarryx_u32(&x502, &x503, x501, x454, x485); fiat_np256_addcarryx_u32(&x504, &x505, x503, x456, x487); fiat_np256_addcarryx_u32(&x506, &x507, x505, x458, x489); fiat_np256_addcarryx_u32(&x508, &x509, x507, x460, x491); fiat_np256_addcarryx_u32(&x510, &x511, x509, x462, x493); fiat_np256_addcarryx_u32(&x512, &x513, x511, x464, x495); fiat_np256_mulx_u32(&x514, &x515, x496, UINT32_C(0xee00bc4f)); fiat_np256_mulx_u32(&x516, &x517, x514, UINT32_C(0xffffffff)); fiat_np256_mulx_u32(&x518, &x519, x514, UINT32_C(0xffffffff)); fiat_np256_mulx_u32(&x520, &x521, x514, UINT32_C(0xffffffff)); fiat_np256_mulx_u32(&x522, &x523, x514, UINT32_C(0xbce6faad)); fiat_np256_mulx_u32(&x524, &x525, x514, UINT32_C(0xa7179e84)); fiat_np256_mulx_u32(&x526, &x527, x514, UINT32_C(0xf3b9cac2)); fiat_np256_mulx_u32(&x528, &x529, x514, UINT32_C(0xfc632551)); fiat_np256_addcarryx_u32(&x530, &x531, 0x0, x529, x526); fiat_np256_addcarryx_u32(&x532, &x533, x531, x527, x524); fiat_np256_addcarryx_u32(&x534, &x535, x533, x525, x522); fiat_np256_addcarryx_u32(&x536, &x537, x535, x523, x520); fiat_np256_addcarryx_u32(&x538, &x539, x537, x521, x518); x540 = (x539 + x519); fiat_np256_addcarryx_u32(&x541, &x542, 0x0, x496, x528); fiat_np256_addcarryx_u32(&x543, &x544, x542, x498, x530); fiat_np256_addcarryx_u32(&x545, &x546, x544, x500, x532); fiat_np256_addcarryx_u32(&x547, &x548, x546, x502, x534); fiat_np256_addcarryx_u32(&x549, &x550, x548, x504, x536); fiat_np256_addcarryx_u32(&x551, &x552, x550, x506, x538); fiat_np256_addcarryx_u32(&x553, &x554, x552, x508, x540); fiat_np256_addcarryx_u32(&x555, &x556, x554, x510, x516); fiat_np256_addcarryx_u32(&x557, &x558, x556, x512, x517); x559 = ((uint32_t)x558 + x513); fiat_np256_mulx_u32(&x560, &x561, x6, (arg2[7])); fiat_np256_mulx_u32(&x562, &x563, x6, (arg2[6])); fiat_np256_mulx_u32(&x564, &x565, x6, (arg2[5])); fiat_np256_mulx_u32(&x566, &x567, x6, (arg2[4])); fiat_np256_mulx_u32(&x568, &x569, x6, (arg2[3])); fiat_np256_mulx_u32(&x570, &x571, x6, (arg2[2])); fiat_np256_mulx_u32(&x572, &x573, x6, (arg2[1])); fiat_np256_mulx_u32(&x574, &x575, x6, (arg2[0])); fiat_np256_addcarryx_u32(&x576, &x577, 0x0, x575, x572); fiat_np256_addcarryx_u32(&x578, &x579, x577, x573, x570); fiat_np256_addcarryx_u32(&x580, &x581, x579, x571, x568); fiat_np256_addcarryx_u32(&x582, &x583, x581, x569, x566); fiat_np256_addcarryx_u32(&x584, &x585, x583, x567, x564); fiat_np256_addcarryx_u32(&x586, &x587, x585, x565, x562); fiat_np256_addcarryx_u32(&x588, &x589, x587, x563, x560); x590 = (x589 + x561); fiat_np256_addcarryx_u32(&x591, &x592, 0x0, x543, x574); fiat_np256_addcarryx_u32(&x593, &x594, x592, x545, x576); fiat_np256_addcarryx_u32(&x595, &x596, x594, x547, x578); fiat_np256_addcarryx_u32(&x597, &x598, x596, x549, x580); fiat_np256_addcarryx_u32(&x599, &x600, x598, x551, x582); fiat_np256_addcarryx_u32(&x601, &x602, x600, x553, x584); fiat_np256_addcarryx_u32(&x603, &x604, x602, x555, x586); fiat_np256_addcarryx_u32(&x605, &x606, x604, x557, x588); fiat_np256_addcarryx_u32(&x607, &x608, x606, x559, x590); fiat_np256_mulx_u32(&x609, &x610, x591, UINT32_C(0xee00bc4f)); fiat_np256_mulx_u32(&x611, &x612, x609, UINT32_C(0xffffffff)); fiat_np256_mulx_u32(&x613, &x614, x609, UINT32_C(0xffffffff)); fiat_np256_mulx_u32(&x615, &x616, x609, UINT32_C(0xffffffff)); fiat_np256_mulx_u32(&x617, &x618, x609, UINT32_C(0xbce6faad)); fiat_np256_mulx_u32(&x619, &x620, x609, UINT32_C(0xa7179e84)); fiat_np256_mulx_u32(&x621, &x622, x609, UINT32_C(0xf3b9cac2)); fiat_np256_mulx_u32(&x623, &x624, x609, UINT32_C(0xfc632551)); fiat_np256_addcarryx_u32(&x625, &x626, 0x0, x624, x621); fiat_np256_addcarryx_u32(&x627, &x628, x626, x622, x619); fiat_np256_addcarryx_u32(&x629, &x630, x628, x620, x617); fiat_np256_addcarryx_u32(&x631, &x632, x630, x618, x615); fiat_np256_addcarryx_u32(&x633, &x634, x632, x616, x613); x635 = (x634 + x614); fiat_np256_addcarryx_u32(&x636, &x637, 0x0, x591, x623); fiat_np256_addcarryx_u32(&x638, &x639, x637, x593, x625); fiat_np256_addcarryx_u32(&x640, &x641, x639, x595, x627); fiat_np256_addcarryx_u32(&x642, &x643, x641, x597, x629); fiat_np256_addcarryx_u32(&x644, &x645, x643, x599, x631); fiat_np256_addcarryx_u32(&x646, &x647, x645, x601, x633); fiat_np256_addcarryx_u32(&x648, &x649, x647, x603, x635); fiat_np256_addcarryx_u32(&x650, &x651, x649, x605, x611); fiat_np256_addcarryx_u32(&x652, &x653, x651, x607, x612); x654 = ((uint32_t)x653 + x608); fiat_np256_mulx_u32(&x655, &x656, x7, (arg2[7])); fiat_np256_mulx_u32(&x657, &x658, x7, (arg2[6])); fiat_np256_mulx_u32(&x659, &x660, x7, (arg2[5])); fiat_np256_mulx_u32(&x661, &x662, x7, (arg2[4])); fiat_np256_mulx_u32(&x663, &x664, x7, (arg2[3])); fiat_np256_mulx_u32(&x665, &x666, x7, (arg2[2])); fiat_np256_mulx_u32(&x667, &x668, x7, (arg2[1])); fiat_np256_mulx_u32(&x669, &x670, x7, (arg2[0])); fiat_np256_addcarryx_u32(&x671, &x672, 0x0, x670, x667); fiat_np256_addcarryx_u32(&x673, &x674, x672, x668, x665); fiat_np256_addcarryx_u32(&x675, &x676, x674, x666, x663); fiat_np256_addcarryx_u32(&x677, &x678, x676, x664, x661); fiat_np256_addcarryx_u32(&x679, &x680, x678, x662, x659); fiat_np256_addcarryx_u32(&x681, &x682, x680, x660, x657); fiat_np256_addcarryx_u32(&x683, &x684, x682, x658, x655); x685 = (x684 + x656); fiat_np256_addcarryx_u32(&x686, &x687, 0x0, x638, x669); fiat_np256_addcarryx_u32(&x688, &x689, x687, x640, x671); fiat_np256_addcarryx_u32(&x690, &x691, x689, x642, x673); fiat_np256_addcarryx_u32(&x692, &x693, x691, x644, x675); fiat_np256_addcarryx_u32(&x694, &x695, x693, x646, x677); fiat_np256_addcarryx_u32(&x696, &x697, x695, x648, x679); fiat_np256_addcarryx_u32(&x698, &x699, x697, x650, x681); fiat_np256_addcarryx_u32(&x700, &x701, x699, x652, x683); fiat_np256_addcarryx_u32(&x702, &x703, x701, x654, x685); fiat_np256_mulx_u32(&x704, &x705, x686, UINT32_C(0xee00bc4f)); fiat_np256_mulx_u32(&x706, &x707, x704, UINT32_C(0xffffffff)); fiat_np256_mulx_u32(&x708, &x709, x704, UINT32_C(0xffffffff)); fiat_np256_mulx_u32(&x710, &x711, x704, UINT32_C(0xffffffff)); fiat_np256_mulx_u32(&x712, &x713, x704, UINT32_C(0xbce6faad)); fiat_np256_mulx_u32(&x714, &x715, x704, UINT32_C(0xa7179e84)); fiat_np256_mulx_u32(&x716, &x717, x704, UINT32_C(0xf3b9cac2)); fiat_np256_mulx_u32(&x718, &x719, x704, UINT32_C(0xfc632551)); fiat_np256_addcarryx_u32(&x720, &x721, 0x0, x719, x716); fiat_np256_addcarryx_u32(&x722, &x723, x721, x717, x714); fiat_np256_addcarryx_u32(&x724, &x725, x723, x715, x712); fiat_np256_addcarryx_u32(&x726, &x727, x725, x713, x710); fiat_np256_addcarryx_u32(&x728, &x729, x727, x711, x708); x730 = (x729 + x709); fiat_np256_addcarryx_u32(&x731, &x732, 0x0, x686, x718); fiat_np256_addcarryx_u32(&x733, &x734, x732, x688, x720); fiat_np256_addcarryx_u32(&x735, &x736, x734, x690, x722); fiat_np256_addcarryx_u32(&x737, &x738, x736, x692, x724); fiat_np256_addcarryx_u32(&x739, &x740, x738, x694, x726); fiat_np256_addcarryx_u32(&x741, &x742, x740, x696, x728); fiat_np256_addcarryx_u32(&x743, &x744, x742, x698, x730); fiat_np256_addcarryx_u32(&x745, &x746, x744, x700, x706); fiat_np256_addcarryx_u32(&x747, &x748, x746, x702, x707); x749 = ((uint32_t)x748 + x703); fiat_np256_subborrowx_u32(&x750, &x751, 0x0, x733, UINT32_C(0xfc632551)); fiat_np256_subborrowx_u32(&x752, &x753, x751, x735, UINT32_C(0xf3b9cac2)); fiat_np256_subborrowx_u32(&x754, &x755, x753, x737, UINT32_C(0xa7179e84)); fiat_np256_subborrowx_u32(&x756, &x757, x755, x739, UINT32_C(0xbce6faad)); fiat_np256_subborrowx_u32(&x758, &x759, x757, x741, UINT32_C(0xffffffff)); fiat_np256_subborrowx_u32(&x760, &x761, x759, x743, UINT32_C(0xffffffff)); fiat_np256_subborrowx_u32(&x762, &x763, x761, x745, 0x0); fiat_np256_subborrowx_u32(&x764, &x765, x763, x747, UINT32_C(0xffffffff)); fiat_np256_subborrowx_u32(&x766, &x767, x765, x749, 0x0); fiat_np256_cmovznz_u32(&x768, x767, x750, x733); fiat_np256_cmovznz_u32(&x769, x767, x752, x735); fiat_np256_cmovznz_u32(&x770, x767, x754, x737); fiat_np256_cmovznz_u32(&x771, x767, x756, x739); fiat_np256_cmovznz_u32(&x772, x767, x758, x741); fiat_np256_cmovznz_u32(&x773, x767, x760, x743); fiat_np256_cmovznz_u32(&x774, x767, x762, x745); fiat_np256_cmovznz_u32(&x775, x767, x764, x747); out1[0] = x768; out1[1] = x769; out1[2] = x770; out1[3] = x771; out1[4] = x772; out1[5] = x773; out1[6] = x774; out1[7] = x775; } /* * The function fiat_np256_add adds two field elements in the Montgomery domain. * * Preconditions: * 0 ≤ eval arg1 < m * 0 ≤ eval arg2 < m * Postconditions: * eval (from_montgomery out1) mod m = (eval (from_montgomery arg1) + eval (from_montgomery arg2)) mod m * 0 ≤ eval out1 < m * */ static void fiat_np256_add(fiat_np256_montgomery_domain_field_element out1, const fiat_np256_montgomery_domain_field_element arg1, const fiat_np256_montgomery_domain_field_element arg2) { uint32_t x1; fiat_np256_uint1 x2; uint32_t x3; fiat_np256_uint1 x4; uint32_t x5; fiat_np256_uint1 x6; uint32_t x7; fiat_np256_uint1 x8; uint32_t x9; fiat_np256_uint1 x10; uint32_t x11; fiat_np256_uint1 x12; uint32_t x13; fiat_np256_uint1 x14; uint32_t x15; fiat_np256_uint1 x16; uint32_t x17; fiat_np256_uint1 x18; uint32_t x19; fiat_np256_uint1 x20; uint32_t x21; fiat_np256_uint1 x22; uint32_t x23; fiat_np256_uint1 x24; uint32_t x25; fiat_np256_uint1 x26; uint32_t x27; fiat_np256_uint1 x28; uint32_t x29; fiat_np256_uint1 x30; uint32_t x31; fiat_np256_uint1 x32; uint32_t x33; fiat_np256_uint1 x34; uint32_t x35; uint32_t x36; uint32_t x37; uint32_t x38; uint32_t x39; uint32_t x40; uint32_t x41; uint32_t x42; fiat_np256_addcarryx_u32(&x1, &x2, 0x0, (arg1[0]), (arg2[0])); fiat_np256_addcarryx_u32(&x3, &x4, x2, (arg1[1]), (arg2[1])); fiat_np256_addcarryx_u32(&x5, &x6, x4, (arg1[2]), (arg2[2])); fiat_np256_addcarryx_u32(&x7, &x8, x6, (arg1[3]), (arg2[3])); fiat_np256_addcarryx_u32(&x9, &x10, x8, (arg1[4]), (arg2[4])); fiat_np256_addcarryx_u32(&x11, &x12, x10, (arg1[5]), (arg2[5])); fiat_np256_addcarryx_u32(&x13, &x14, x12, (arg1[6]), (arg2[6])); fiat_np256_addcarryx_u32(&x15, &x16, x14, (arg1[7]), (arg2[7])); fiat_np256_subborrowx_u32(&x17, &x18, 0x0, x1, UINT32_C(0xfc632551)); fiat_np256_subborrowx_u32(&x19, &x20, x18, x3, UINT32_C(0xf3b9cac2)); fiat_np256_subborrowx_u32(&x21, &x22, x20, x5, UINT32_C(0xa7179e84)); fiat_np256_subborrowx_u32(&x23, &x24, x22, x7, UINT32_C(0xbce6faad)); fiat_np256_subborrowx_u32(&x25, &x26, x24, x9, UINT32_C(0xffffffff)); fiat_np256_subborrowx_u32(&x27, &x28, x26, x11, UINT32_C(0xffffffff)); fiat_np256_subborrowx_u32(&x29, &x30, x28, x13, 0x0); fiat_np256_subborrowx_u32(&x31, &x32, x30, x15, UINT32_C(0xffffffff)); fiat_np256_subborrowx_u32(&x33, &x34, x32, x16, 0x0); fiat_np256_cmovznz_u32(&x35, x34, x17, x1); fiat_np256_cmovznz_u32(&x36, x34, x19, x3); fiat_np256_cmovznz_u32(&x37, x34, x21, x5); fiat_np256_cmovznz_u32(&x38, x34, x23, x7); fiat_np256_cmovznz_u32(&x39, x34, x25, x9); fiat_np256_cmovznz_u32(&x40, x34, x27, x11); fiat_np256_cmovznz_u32(&x41, x34, x29, x13); fiat_np256_cmovznz_u32(&x42, x34, x31, x15); out1[0] = x35; out1[1] = x36; out1[2] = x37; out1[3] = x38; out1[4] = x39; out1[5] = x40; out1[6] = x41; out1[7] = x42; } /* * The function fiat_np256_opp negates a field element in the Montgomery domain. * * Preconditions: * 0 ≤ eval arg1 < m * Postconditions: * eval (from_montgomery out1) mod m = -eval (from_montgomery arg1) mod m * 0 ≤ eval out1 < m * */ static void fiat_np256_opp(fiat_np256_montgomery_domain_field_element out1, const fiat_np256_montgomery_domain_field_element arg1) { uint32_t x1; fiat_np256_uint1 x2; uint32_t x3; fiat_np256_uint1 x4; uint32_t x5; fiat_np256_uint1 x6; uint32_t x7; fiat_np256_uint1 x8; uint32_t x9; fiat_np256_uint1 x10; uint32_t x11; fiat_np256_uint1 x12; uint32_t x13; fiat_np256_uint1 x14; uint32_t x15; fiat_np256_uint1 x16; uint32_t x17; uint32_t x18; fiat_np256_uint1 x19; uint32_t x20; fiat_np256_uint1 x21; uint32_t x22; fiat_np256_uint1 x23; uint32_t x24; fiat_np256_uint1 x25; uint32_t x26; fiat_np256_uint1 x27; uint32_t x28; fiat_np256_uint1 x29; uint32_t x30; fiat_np256_uint1 x31; uint32_t x32; fiat_np256_uint1 x33; fiat_np256_subborrowx_u32(&x1, &x2, 0x0, 0x0, (arg1[0])); fiat_np256_subborrowx_u32(&x3, &x4, x2, 0x0, (arg1[1])); fiat_np256_subborrowx_u32(&x5, &x6, x4, 0x0, (arg1[2])); fiat_np256_subborrowx_u32(&x7, &x8, x6, 0x0, (arg1[3])); fiat_np256_subborrowx_u32(&x9, &x10, x8, 0x0, (arg1[4])); fiat_np256_subborrowx_u32(&x11, &x12, x10, 0x0, (arg1[5])); fiat_np256_subborrowx_u32(&x13, &x14, x12, 0x0, (arg1[6])); fiat_np256_subborrowx_u32(&x15, &x16, x14, 0x0, (arg1[7])); fiat_np256_cmovznz_u32(&x17, x16, 0x0, UINT32_C(0xffffffff)); fiat_np256_addcarryx_u32(&x18, &x19, 0x0, x1, (x17 & UINT32_C(0xfc632551))); fiat_np256_addcarryx_u32(&x20, &x21, x19, x3, (x17 & UINT32_C(0xf3b9cac2))); fiat_np256_addcarryx_u32(&x22, &x23, x21, x5, (x17 & UINT32_C(0xa7179e84))); fiat_np256_addcarryx_u32(&x24, &x25, x23, x7, (x17 & UINT32_C(0xbce6faad))); fiat_np256_addcarryx_u32(&x26, &x27, x25, x9, x17); fiat_np256_addcarryx_u32(&x28, &x29, x27, x11, x17); fiat_np256_addcarryx_u32(&x30, &x31, x29, x13, 0x0); fiat_np256_addcarryx_u32(&x32, &x33, x31, x15, x17); out1[0] = x18; out1[1] = x20; out1[2] = x22; out1[3] = x24; out1[4] = x26; out1[5] = x28; out1[6] = x30; out1[7] = x32; } /* * The function fiat_np256_from_montgomery translates a field element out of the Montgomery domain. * * Preconditions: * 0 ≤ eval arg1 < m * Postconditions: * eval out1 mod m = (eval arg1 * ((2^32)⁻¹ mod m)^8) mod m * 0 ≤ eval out1 < m * */ static void fiat_np256_from_montgomery(fiat_np256_non_montgomery_domain_field_element out1, const fiat_np256_montgomery_domain_field_element arg1) { uint32_t x1; uint32_t x2; uint32_t x3; uint32_t x4; uint32_t x5; uint32_t x6; uint32_t x7; uint32_t x8; uint32_t x9; uint32_t x10; uint32_t x11; uint32_t x12; uint32_t x13; uint32_t x14; uint32_t x15; uint32_t x16; uint32_t x17; uint32_t x18; fiat_np256_uint1 x19; uint32_t x20; fiat_np256_uint1 x21; uint32_t x22; fiat_np256_uint1 x23; uint32_t x24; fiat_np256_uint1 x25; uint32_t x26; fiat_np256_uint1 x27; uint32_t x28; fiat_np256_uint1 x29; uint32_t x30; fiat_np256_uint1 x31; uint32_t x32; fiat_np256_uint1 x33; uint32_t x34; fiat_np256_uint1 x35; uint32_t x36; fiat_np256_uint1 x37; uint32_t x38; fiat_np256_uint1 x39; uint32_t x40; fiat_np256_uint1 x41; uint32_t x42; fiat_np256_uint1 x43; uint32_t x44; fiat_np256_uint1 x45; uint32_t x46; fiat_np256_uint1 x47; uint32_t x48; fiat_np256_uint1 x49; uint32_t x50; fiat_np256_uint1 x51; uint32_t x52; fiat_np256_uint1 x53; uint32_t x54; fiat_np256_uint1 x55; uint32_t x56; fiat_np256_uint1 x57; uint32_t x58; fiat_np256_uint1 x59; uint32_t x60; uint32_t x61; uint32_t x62; uint32_t x63; uint32_t x64; uint32_t x65; uint32_t x66; uint32_t x67; uint32_t x68; uint32_t x69; uint32_t x70; uint32_t x71; uint32_t x72; uint32_t x73; uint32_t x74; uint32_t x75; uint32_t x76; fiat_np256_uint1 x77; uint32_t x78; fiat_np256_uint1 x79; uint32_t x80; fiat_np256_uint1 x81; uint32_t x82; fiat_np256_uint1 x83; uint32_t x84; fiat_np256_uint1 x85; uint32_t x86; fiat_np256_uint1 x87; uint32_t x88; fiat_np256_uint1 x89; uint32_t x90; fiat_np256_uint1 x91; uint32_t x92; fiat_np256_uint1 x93; uint32_t x94; fiat_np256_uint1 x95; uint32_t x96; fiat_np256_uint1 x97; uint32_t x98; fiat_np256_uint1 x99; uint32_t x100; fiat_np256_uint1 x101; uint32_t x102; fiat_np256_uint1 x103; uint32_t x104; fiat_np256_uint1 x105; uint32_t x106; fiat_np256_uint1 x107; uint32_t x108; fiat_np256_uint1 x109; uint32_t x110; fiat_np256_uint1 x111; uint32_t x112; fiat_np256_uint1 x113; uint32_t x114; fiat_np256_uint1 x115; uint32_t x116; fiat_np256_uint1 x117; uint32_t x118; fiat_np256_uint1 x119; uint32_t x120; uint32_t x121; uint32_t x122; uint32_t x123; uint32_t x124; uint32_t x125; uint32_t x126; uint32_t x127; uint32_t x128; uint32_t x129; uint32_t x130; uint32_t x131; uint32_t x132; uint32_t x133; uint32_t x134; uint32_t x135; uint32_t x136; fiat_np256_uint1 x137; uint32_t x138; fiat_np256_uint1 x139; uint32_t x140; fiat_np256_uint1 x141; uint32_t x142; fiat_np256_uint1 x143; uint32_t x144; fiat_np256_uint1 x145; uint32_t x146; fiat_np256_uint1 x147; uint32_t x148; fiat_np256_uint1 x149; uint32_t x150; fiat_np256_uint1 x151; uint32_t x152; fiat_np256_uint1 x153; uint32_t x154; fiat_np256_uint1 x155; uint32_t x156; fiat_np256_uint1 x157; uint32_t x158; fiat_np256_uint1 x159; uint32_t x160; fiat_np256_uint1 x161; uint32_t x162; fiat_np256_uint1 x163; uint32_t x164; fiat_np256_uint1 x165; uint32_t x166; fiat_np256_uint1 x167; uint32_t x168; fiat_np256_uint1 x169; uint32_t x170; fiat_np256_uint1 x171; uint32_t x172; fiat_np256_uint1 x173; uint32_t x174; fiat_np256_uint1 x175; uint32_t x176; fiat_np256_uint1 x177; uint32_t x178; fiat_np256_uint1 x179; uint32_t x180; uint32_t x181; uint32_t x182; uint32_t x183; uint32_t x184; uint32_t x185; uint32_t x186; uint32_t x187; uint32_t x188; uint32_t x189; uint32_t x190; uint32_t x191; uint32_t x192; uint32_t x193; uint32_t x194; uint32_t x195; uint32_t x196; fiat_np256_uint1 x197; uint32_t x198; fiat_np256_uint1 x199; uint32_t x200; fiat_np256_uint1 x201; uint32_t x202; fiat_np256_uint1 x203; uint32_t x204; fiat_np256_uint1 x205; uint32_t x206; fiat_np256_uint1 x207; uint32_t x208; fiat_np256_uint1 x209; uint32_t x210; fiat_np256_uint1 x211; uint32_t x212; fiat_np256_uint1 x213; uint32_t x214; fiat_np256_uint1 x215; uint32_t x216; fiat_np256_uint1 x217; uint32_t x218; fiat_np256_uint1 x219; uint32_t x220; fiat_np256_uint1 x221; uint32_t x222; fiat_np256_uint1 x223; uint32_t x224; fiat_np256_uint1 x225; uint32_t x226; fiat_np256_uint1 x227; uint32_t x228; fiat_np256_uint1 x229; uint32_t x230; fiat_np256_uint1 x231; uint32_t x232; fiat_np256_uint1 x233; uint32_t x234; fiat_np256_uint1 x235; uint32_t x236; fiat_np256_uint1 x237; uint32_t x238; fiat_np256_uint1 x239; uint32_t x240; uint32_t x241; uint32_t x242; uint32_t x243; uint32_t x244; uint32_t x245; uint32_t x246; uint32_t x247; uint32_t x248; uint32_t x249; uint32_t x250; uint32_t x251; uint32_t x252; uint32_t x253; uint32_t x254; uint32_t x255; uint32_t x256; fiat_np256_uint1 x257; uint32_t x258; fiat_np256_uint1 x259; uint32_t x260; fiat_np256_uint1 x261; uint32_t x262; fiat_np256_uint1 x263; uint32_t x264; fiat_np256_uint1 x265; uint32_t x266; fiat_np256_uint1 x267; uint32_t x268; fiat_np256_uint1 x269; uint32_t x270; fiat_np256_uint1 x271; uint32_t x272; fiat_np256_uint1 x273; uint32_t x274; fiat_np256_uint1 x275; uint32_t x276; fiat_np256_uint1 x277; uint32_t x278; fiat_np256_uint1 x279; uint32_t x280; fiat_np256_uint1 x281; uint32_t x282; fiat_np256_uint1 x283; uint32_t x284; fiat_np256_uint1 x285; uint32_t x286; fiat_np256_uint1 x287; uint32_t x288; fiat_np256_uint1 x289; uint32_t x290; fiat_np256_uint1 x291; uint32_t x292; fiat_np256_uint1 x293; uint32_t x294; fiat_np256_uint1 x295; uint32_t x296; fiat_np256_uint1 x297; uint32_t x298; fiat_np256_uint1 x299; uint32_t x300; uint32_t x301; uint32_t x302; uint32_t x303; uint32_t x304; uint32_t x305; uint32_t x306; uint32_t x307; uint32_t x308; uint32_t x309; uint32_t x310; uint32_t x311; uint32_t x312; uint32_t x313; uint32_t x314; uint32_t x315; uint32_t x316; fiat_np256_uint1 x317; uint32_t x318; fiat_np256_uint1 x319; uint32_t x320; fiat_np256_uint1 x321; uint32_t x322; fiat_np256_uint1 x323; uint32_t x324; fiat_np256_uint1 x325; uint32_t x326; fiat_np256_uint1 x327; uint32_t x328; fiat_np256_uint1 x329; uint32_t x330; fiat_np256_uint1 x331; uint32_t x332; fiat_np256_uint1 x333; uint32_t x334; fiat_np256_uint1 x335; uint32_t x336; fiat_np256_uint1 x337; uint32_t x338; fiat_np256_uint1 x339; uint32_t x340; fiat_np256_uint1 x341; uint32_t x342; fiat_np256_uint1 x343; uint32_t x344; fiat_np256_uint1 x345; uint32_t x346; fiat_np256_uint1 x347; uint32_t x348; fiat_np256_uint1 x349; uint32_t x350; fiat_np256_uint1 x351; uint32_t x352; fiat_np256_uint1 x353; uint32_t x354; fiat_np256_uint1 x355; uint32_t x356; fiat_np256_uint1 x357; uint32_t x358; fiat_np256_uint1 x359; uint32_t x360; uint32_t x361; uint32_t x362; uint32_t x363; uint32_t x364; uint32_t x365; uint32_t x366; uint32_t x367; uint32_t x368; uint32_t x369; uint32_t x370; uint32_t x371; uint32_t x372; uint32_t x373; uint32_t x374; uint32_t x375; uint32_t x376; fiat_np256_uint1 x377; uint32_t x378; fiat_np256_uint1 x379; uint32_t x380; fiat_np256_uint1 x381; uint32_t x382; fiat_np256_uint1 x383; uint32_t x384; fiat_np256_uint1 x385; uint32_t x386; fiat_np256_uint1 x387; uint32_t x388; fiat_np256_uint1 x389; uint32_t x390; fiat_np256_uint1 x391; uint32_t x392; fiat_np256_uint1 x393; uint32_t x394; fiat_np256_uint1 x395; uint32_t x396; fiat_np256_uint1 x397; uint32_t x398; fiat_np256_uint1 x399; uint32_t x400; fiat_np256_uint1 x401; uint32_t x402; fiat_np256_uint1 x403; uint32_t x404; fiat_np256_uint1 x405; uint32_t x406; fiat_np256_uint1 x407; uint32_t x408; fiat_np256_uint1 x409; uint32_t x410; fiat_np256_uint1 x411; uint32_t x412; fiat_np256_uint1 x413; uint32_t x414; fiat_np256_uint1 x415; uint32_t x416; fiat_np256_uint1 x417; uint32_t x418; fiat_np256_uint1 x419; uint32_t x420; uint32_t x421; uint32_t x422; uint32_t x423; uint32_t x424; uint32_t x425; uint32_t x426; uint32_t x427; uint32_t x428; uint32_t x429; uint32_t x430; uint32_t x431; uint32_t x432; uint32_t x433; uint32_t x434; uint32_t x435; uint32_t x436; fiat_np256_uint1 x437; uint32_t x438; fiat_np256_uint1 x439; uint32_t x440; fiat_np256_uint1 x441; uint32_t x442; fiat_np256_uint1 x443; uint32_t x444; fiat_np256_uint1 x445; uint32_t x446; fiat_np256_uint1 x447; uint32_t x448; fiat_np256_uint1 x449; uint32_t x450; fiat_np256_uint1 x451; uint32_t x452; fiat_np256_uint1 x453; uint32_t x454; fiat_np256_uint1 x455; uint32_t x456; fiat_np256_uint1 x457; uint32_t x458; fiat_np256_uint1 x459; uint32_t x460; fiat_np256_uint1 x461; uint32_t x462; fiat_np256_uint1 x463; uint32_t x464; fiat_np256_uint1 x465; uint32_t x466; fiat_np256_uint1 x467; uint32_t x468; fiat_np256_uint1 x469; uint32_t x470; fiat_np256_uint1 x471; uint32_t x472; fiat_np256_uint1 x473; uint32_t x474; fiat_np256_uint1 x475; uint32_t x476; fiat_np256_uint1 x477; uint32_t x478; fiat_np256_uint1 x479; uint32_t x480; fiat_np256_uint1 x481; uint32_t x482; uint32_t x483; uint32_t x484; uint32_t x485; uint32_t x486; uint32_t x487; uint32_t x488; uint32_t x489; x1 = (arg1[0]); fiat_np256_mulx_u32(&x2, &x3, x1, UINT32_C(0xee00bc4f)); fiat_np256_mulx_u32(&x4, &x5, x2, UINT32_C(0xffffffff)); fiat_np256_mulx_u32(&x6, &x7, x2, UINT32_C(0xffffffff)); fiat_np256_mulx_u32(&x8, &x9, x2, UINT32_C(0xffffffff)); fiat_np256_mulx_u32(&x10, &x11, x2, UINT32_C(0xbce6faad)); fiat_np256_mulx_u32(&x12, &x13, x2, UINT32_C(0xa7179e84)); fiat_np256_mulx_u32(&x14, &x15, x2, UINT32_C(0xf3b9cac2)); fiat_np256_mulx_u32(&x16, &x17, x2, UINT32_C(0xfc632551)); fiat_np256_addcarryx_u32(&x18, &x19, 0x0, x17, x14); fiat_np256_addcarryx_u32(&x20, &x21, x19, x15, x12); fiat_np256_addcarryx_u32(&x22, &x23, x21, x13, x10); fiat_np256_addcarryx_u32(&x24, &x25, x23, x11, x8); fiat_np256_addcarryx_u32(&x26, &x27, x25, x9, x6); fiat_np256_addcarryx_u32(&x28, &x29, 0x0, x1, x16); fiat_np256_addcarryx_u32(&x30, &x31, x29, 0x0, x18); fiat_np256_addcarryx_u32(&x32, &x33, x31, 0x0, x20); fiat_np256_addcarryx_u32(&x34, &x35, x33, 0x0, x22); fiat_np256_addcarryx_u32(&x36, &x37, x35, 0x0, x24); fiat_np256_addcarryx_u32(&x38, &x39, x37, 0x0, x26); fiat_np256_addcarryx_u32(&x40, &x41, x39, 0x0, (x27 + x7)); fiat_np256_addcarryx_u32(&x42, &x43, x41, 0x0, x4); fiat_np256_addcarryx_u32(&x44, &x45, 0x0, x30, (arg1[1])); fiat_np256_addcarryx_u32(&x46, &x47, x45, x32, 0x0); fiat_np256_addcarryx_u32(&x48, &x49, x47, x34, 0x0); fiat_np256_addcarryx_u32(&x50, &x51, x49, x36, 0x0); fiat_np256_addcarryx_u32(&x52, &x53, x51, x38, 0x0); fiat_np256_addcarryx_u32(&x54, &x55, x53, x40, 0x0); fiat_np256_addcarryx_u32(&x56, &x57, x55, x42, 0x0); fiat_np256_addcarryx_u32(&x58, &x59, x57, (x43 + x5), 0x0); fiat_np256_mulx_u32(&x60, &x61, x44, UINT32_C(0xee00bc4f)); fiat_np256_mulx_u32(&x62, &x63, x60, UINT32_C(0xffffffff)); fiat_np256_mulx_u32(&x64, &x65, x60, UINT32_C(0xffffffff)); fiat_np256_mulx_u32(&x66, &x67, x60, UINT32_C(0xffffffff)); fiat_np256_mulx_u32(&x68, &x69, x60, UINT32_C(0xbce6faad)); fiat_np256_mulx_u32(&x70, &x71, x60, UINT32_C(0xa7179e84)); fiat_np256_mulx_u32(&x72, &x73, x60, UINT32_C(0xf3b9cac2)); fiat_np256_mulx_u32(&x74, &x75, x60, UINT32_C(0xfc632551)); fiat_np256_addcarryx_u32(&x76, &x77, 0x0, x75, x72); fiat_np256_addcarryx_u32(&x78, &x79, x77, x73, x70); fiat_np256_addcarryx_u32(&x80, &x81, x79, x71, x68); fiat_np256_addcarryx_u32(&x82, &x83, x81, x69, x66); fiat_np256_addcarryx_u32(&x84, &x85, x83, x67, x64); fiat_np256_addcarryx_u32(&x86, &x87, 0x0, x44, x74); fiat_np256_addcarryx_u32(&x88, &x89, x87, x46, x76); fiat_np256_addcarryx_u32(&x90, &x91, x89, x48, x78); fiat_np256_addcarryx_u32(&x92, &x93, x91, x50, x80); fiat_np256_addcarryx_u32(&x94, &x95, x93, x52, x82); fiat_np256_addcarryx_u32(&x96, &x97, x95, x54, x84); fiat_np256_addcarryx_u32(&x98, &x99, x97, x56, (x85 + x65)); fiat_np256_addcarryx_u32(&x100, &x101, x99, x58, x62); fiat_np256_addcarryx_u32(&x102, &x103, x101, x59, x63); fiat_np256_addcarryx_u32(&x104, &x105, 0x0, x88, (arg1[2])); fiat_np256_addcarryx_u32(&x106, &x107, x105, x90, 0x0); fiat_np256_addcarryx_u32(&x108, &x109, x107, x92, 0x0); fiat_np256_addcarryx_u32(&x110, &x111, x109, x94, 0x0); fiat_np256_addcarryx_u32(&x112, &x113, x111, x96, 0x0); fiat_np256_addcarryx_u32(&x114, &x115, x113, x98, 0x0); fiat_np256_addcarryx_u32(&x116, &x117, x115, x100, 0x0); fiat_np256_addcarryx_u32(&x118, &x119, x117, x102, 0x0); fiat_np256_mulx_u32(&x120, &x121, x104, UINT32_C(0xee00bc4f)); fiat_np256_mulx_u32(&x122, &x123, x120, UINT32_C(0xffffffff)); fiat_np256_mulx_u32(&x124, &x125, x120, UINT32_C(0xffffffff)); fiat_np256_mulx_u32(&x126, &x127, x120, UINT32_C(0xffffffff)); fiat_np256_mulx_u32(&x128, &x129, x120, UINT32_C(0xbce6faad)); fiat_np256_mulx_u32(&x130, &x131, x120, UINT32_C(0xa7179e84)); fiat_np256_mulx_u32(&x132, &x133, x120, UINT32_C(0xf3b9cac2)); fiat_np256_mulx_u32(&x134, &x135, x120, UINT32_C(0xfc632551)); fiat_np256_addcarryx_u32(&x136, &x137, 0x0, x135, x132); fiat_np256_addcarryx_u32(&x138, &x139, x137, x133, x130); fiat_np256_addcarryx_u32(&x140, &x141, x139, x131, x128); fiat_np256_addcarryx_u32(&x142, &x143, x141, x129, x126); fiat_np256_addcarryx_u32(&x144, &x145, x143, x127, x124); fiat_np256_addcarryx_u32(&x146, &x147, 0x0, x104, x134); fiat_np256_addcarryx_u32(&x148, &x149, x147, x106, x136); fiat_np256_addcarryx_u32(&x150, &x151, x149, x108, x138); fiat_np256_addcarryx_u32(&x152, &x153, x151, x110, x140); fiat_np256_addcarryx_u32(&x154, &x155, x153, x112, x142); fiat_np256_addcarryx_u32(&x156, &x157, x155, x114, x144); fiat_np256_addcarryx_u32(&x158, &x159, x157, x116, (x145 + x125)); fiat_np256_addcarryx_u32(&x160, &x161, x159, x118, x122); fiat_np256_addcarryx_u32(&x162, &x163, x161, ((uint32_t)x119 + x103), x123); fiat_np256_addcarryx_u32(&x164, &x165, 0x0, x148, (arg1[3])); fiat_np256_addcarryx_u32(&x166, &x167, x165, x150, 0x0); fiat_np256_addcarryx_u32(&x168, &x169, x167, x152, 0x0); fiat_np256_addcarryx_u32(&x170, &x171, x169, x154, 0x0); fiat_np256_addcarryx_u32(&x172, &x173, x171, x156, 0x0); fiat_np256_addcarryx_u32(&x174, &x175, x173, x158, 0x0); fiat_np256_addcarryx_u32(&x176, &x177, x175, x160, 0x0); fiat_np256_addcarryx_u32(&x178, &x179, x177, x162, 0x0); fiat_np256_mulx_u32(&x180, &x181, x164, UINT32_C(0xee00bc4f)); fiat_np256_mulx_u32(&x182, &x183, x180, UINT32_C(0xffffffff)); fiat_np256_mulx_u32(&x184, &x185, x180, UINT32_C(0xffffffff)); fiat_np256_mulx_u32(&x186, &x187, x180, UINT32_C(0xffffffff)); fiat_np256_mulx_u32(&x188, &x189, x180, UINT32_C(0xbce6faad)); fiat_np256_mulx_u32(&x190, &x191, x180, UINT32_C(0xa7179e84)); fiat_np256_mulx_u32(&x192, &x193, x180, UINT32_C(0xf3b9cac2)); fiat_np256_mulx_u32(&x194, &x195, x180, UINT32_C(0xfc632551)); fiat_np256_addcarryx_u32(&x196, &x197, 0x0, x195, x192); fiat_np256_addcarryx_u32(&x198, &x199, x197, x193, x190); fiat_np256_addcarryx_u32(&x200, &x201, x199, x191, x188); fiat_np256_addcarryx_u32(&x202, &x203, x201, x189, x186); fiat_np256_addcarryx_u32(&x204, &x205, x203, x187, x184); fiat_np256_addcarryx_u32(&x206, &x207, 0x0, x164, x194); fiat_np256_addcarryx_u32(&x208, &x209, x207, x166, x196); fiat_np256_addcarryx_u32(&x210, &x211, x209, x168, x198); fiat_np256_addcarryx_u32(&x212, &x213, x211, x170, x200); fiat_np256_addcarryx_u32(&x214, &x215, x213, x172, x202); fiat_np256_addcarryx_u32(&x216, &x217, x215, x174, x204); fiat_np256_addcarryx_u32(&x218, &x219, x217, x176, (x205 + x185)); fiat_np256_addcarryx_u32(&x220, &x221, x219, x178, x182); fiat_np256_addcarryx_u32(&x222, &x223, x221, ((uint32_t)x179 + x163), x183); fiat_np256_addcarryx_u32(&x224, &x225, 0x0, x208, (arg1[4])); fiat_np256_addcarryx_u32(&x226, &x227, x225, x210, 0x0); fiat_np256_addcarryx_u32(&x228, &x229, x227, x212, 0x0); fiat_np256_addcarryx_u32(&x230, &x231, x229, x214, 0x0); fiat_np256_addcarryx_u32(&x232, &x233, x231, x216, 0x0); fiat_np256_addcarryx_u32(&x234, &x235, x233, x218, 0x0); fiat_np256_addcarryx_u32(&x236, &x237, x235, x220, 0x0); fiat_np256_addcarryx_u32(&x238, &x239, x237, x222, 0x0); fiat_np256_mulx_u32(&x240, &x241, x224, UINT32_C(0xee00bc4f)); fiat_np256_mulx_u32(&x242, &x243, x240, UINT32_C(0xffffffff)); fiat_np256_mulx_u32(&x244, &x245, x240, UINT32_C(0xffffffff)); fiat_np256_mulx_u32(&x246, &x247, x240, UINT32_C(0xffffffff)); fiat_np256_mulx_u32(&x248, &x249, x240, UINT32_C(0xbce6faad)); fiat_np256_mulx_u32(&x250, &x251, x240, UINT32_C(0xa7179e84)); fiat_np256_mulx_u32(&x252, &x253, x240, UINT32_C(0xf3b9cac2)); fiat_np256_mulx_u32(&x254, &x255, x240, UINT32_C(0xfc632551)); fiat_np256_addcarryx_u32(&x256, &x257, 0x0, x255, x252); fiat_np256_addcarryx_u32(&x258, &x259, x257, x253, x250); fiat_np256_addcarryx_u32(&x260, &x261, x259, x251, x248); fiat_np256_addcarryx_u32(&x262, &x263, x261, x249, x246); fiat_np256_addcarryx_u32(&x264, &x265, x263, x247, x244); fiat_np256_addcarryx_u32(&x266, &x267, 0x0, x224, x254); fiat_np256_addcarryx_u32(&x268, &x269, x267, x226, x256); fiat_np256_addcarryx_u32(&x270, &x271, x269, x228, x258); fiat_np256_addcarryx_u32(&x272, &x273, x271, x230, x260); fiat_np256_addcarryx_u32(&x274, &x275, x273, x232, x262); fiat_np256_addcarryx_u32(&x276, &x277, x275, x234, x264); fiat_np256_addcarryx_u32(&x278, &x279, x277, x236, (x265 + x245)); fiat_np256_addcarryx_u32(&x280, &x281, x279, x238, x242); fiat_np256_addcarryx_u32(&x282, &x283, x281, ((uint32_t)x239 + x223), x243); fiat_np256_addcarryx_u32(&x284, &x285, 0x0, x268, (arg1[5])); fiat_np256_addcarryx_u32(&x286, &x287, x285, x270, 0x0); fiat_np256_addcarryx_u32(&x288, &x289, x287, x272, 0x0); fiat_np256_addcarryx_u32(&x290, &x291, x289, x274, 0x0); fiat_np256_addcarryx_u32(&x292, &x293, x291, x276, 0x0); fiat_np256_addcarryx_u32(&x294, &x295, x293, x278, 0x0); fiat_np256_addcarryx_u32(&x296, &x297, x295, x280, 0x0); fiat_np256_addcarryx_u32(&x298, &x299, x297, x282, 0x0); fiat_np256_mulx_u32(&x300, &x301, x284, UINT32_C(0xee00bc4f)); fiat_np256_mulx_u32(&x302, &x303, x300, UINT32_C(0xffffffff)); fiat_np256_mulx_u32(&x304, &x305, x300, UINT32_C(0xffffffff)); fiat_np256_mulx_u32(&x306, &x307, x300, UINT32_C(0xffffffff)); fiat_np256_mulx_u32(&x308, &x309, x300, UINT32_C(0xbce6faad)); fiat_np256_mulx_u32(&x310, &x311, x300, UINT32_C(0xa7179e84)); fiat_np256_mulx_u32(&x312, &x313, x300, UINT32_C(0xf3b9cac2)); fiat_np256_mulx_u32(&x314, &x315, x300, UINT32_C(0xfc632551)); fiat_np256_addcarryx_u32(&x316, &x317, 0x0, x315, x312); fiat_np256_addcarryx_u32(&x318, &x319, x317, x313, x310); fiat_np256_addcarryx_u32(&x320, &x321, x319, x311, x308); fiat_np256_addcarryx_u32(&x322, &x323, x321, x309, x306); fiat_np256_addcarryx_u32(&x324, &x325, x323, x307, x304); fiat_np256_addcarryx_u32(&x326, &x327, 0x0, x284, x314); fiat_np256_addcarryx_u32(&x328, &x329, x327, x286, x316); fiat_np256_addcarryx_u32(&x330, &x331, x329, x288, x318); fiat_np256_addcarryx_u32(&x332, &x333, x331, x290, x320); fiat_np256_addcarryx_u32(&x334, &x335, x333, x292, x322); fiat_np256_addcarryx_u32(&x336, &x337, x335, x294, x324); fiat_np256_addcarryx_u32(&x338, &x339, x337, x296, (x325 + x305)); fiat_np256_addcarryx_u32(&x340, &x341, x339, x298, x302); fiat_np256_addcarryx_u32(&x342, &x343, x341, ((uint32_t)x299 + x283), x303); fiat_np256_addcarryx_u32(&x344, &x345, 0x0, x328, (arg1[6])); fiat_np256_addcarryx_u32(&x346, &x347, x345, x330, 0x0); fiat_np256_addcarryx_u32(&x348, &x349, x347, x332, 0x0); fiat_np256_addcarryx_u32(&x350, &x351, x349, x334, 0x0); fiat_np256_addcarryx_u32(&x352, &x353, x351, x336, 0x0); fiat_np256_addcarryx_u32(&x354, &x355, x353, x338, 0x0); fiat_np256_addcarryx_u32(&x356, &x357, x355, x340, 0x0); fiat_np256_addcarryx_u32(&x358, &x359, x357, x342, 0x0); fiat_np256_mulx_u32(&x360, &x361, x344, UINT32_C(0xee00bc4f)); fiat_np256_mulx_u32(&x362, &x363, x360, UINT32_C(0xffffffff)); fiat_np256_mulx_u32(&x364, &x365, x360, UINT32_C(0xffffffff)); fiat_np256_mulx_u32(&x366, &x367, x360, UINT32_C(0xffffffff)); fiat_np256_mulx_u32(&x368, &x369, x360, UINT32_C(0xbce6faad)); fiat_np256_mulx_u32(&x370, &x371, x360, UINT32_C(0xa7179e84)); fiat_np256_mulx_u32(&x372, &x373, x360, UINT32_C(0xf3b9cac2)); fiat_np256_mulx_u32(&x374, &x375, x360, UINT32_C(0xfc632551)); fiat_np256_addcarryx_u32(&x376, &x377, 0x0, x375, x372); fiat_np256_addcarryx_u32(&x378, &x379, x377, x373, x370); fiat_np256_addcarryx_u32(&x380, &x381, x379, x371, x368); fiat_np256_addcarryx_u32(&x382, &x383, x381, x369, x366); fiat_np256_addcarryx_u32(&x384, &x385, x383, x367, x364); fiat_np256_addcarryx_u32(&x386, &x387, 0x0, x344, x374); fiat_np256_addcarryx_u32(&x388, &x389, x387, x346, x376); fiat_np256_addcarryx_u32(&x390, &x391, x389, x348, x378); fiat_np256_addcarryx_u32(&x392, &x393, x391, x350, x380); fiat_np256_addcarryx_u32(&x394, &x395, x393, x352, x382); fiat_np256_addcarryx_u32(&x396, &x397, x395, x354, x384); fiat_np256_addcarryx_u32(&x398, &x399, x397, x356, (x385 + x365)); fiat_np256_addcarryx_u32(&x400, &x401, x399, x358, x362); fiat_np256_addcarryx_u32(&x402, &x403, x401, ((uint32_t)x359 + x343), x363); fiat_np256_addcarryx_u32(&x404, &x405, 0x0, x388, (arg1[7])); fiat_np256_addcarryx_u32(&x406, &x407, x405, x390, 0x0); fiat_np256_addcarryx_u32(&x408, &x409, x407, x392, 0x0); fiat_np256_addcarryx_u32(&x410, &x411, x409, x394, 0x0); fiat_np256_addcarryx_u32(&x412, &x413, x411, x396, 0x0); fiat_np256_addcarryx_u32(&x414, &x415, x413, x398, 0x0); fiat_np256_addcarryx_u32(&x416, &x417, x415, x400, 0x0); fiat_np256_addcarryx_u32(&x418, &x419, x417, x402, 0x0); fiat_np256_mulx_u32(&x420, &x421, x404, UINT32_C(0xee00bc4f)); fiat_np256_mulx_u32(&x422, &x423, x420, UINT32_C(0xffffffff)); fiat_np256_mulx_u32(&x424, &x425, x420, UINT32_C(0xffffffff)); fiat_np256_mulx_u32(&x426, &x427, x420, UINT32_C(0xffffffff)); fiat_np256_mulx_u32(&x428, &x429, x420, UINT32_C(0xbce6faad)); fiat_np256_mulx_u32(&x430, &x431, x420, UINT32_C(0xa7179e84)); fiat_np256_mulx_u32(&x432, &x433, x420, UINT32_C(0xf3b9cac2)); fiat_np256_mulx_u32(&x434, &x435, x420, UINT32_C(0xfc632551)); fiat_np256_addcarryx_u32(&x436, &x437, 0x0, x435, x432); fiat_np256_addcarryx_u32(&x438, &x439, x437, x433, x430); fiat_np256_addcarryx_u32(&x440, &x441, x439, x431, x428); fiat_np256_addcarryx_u32(&x442, &x443, x441, x429, x426); fiat_np256_addcarryx_u32(&x444, &x445, x443, x427, x424); fiat_np256_addcarryx_u32(&x446, &x447, 0x0, x404, x434); fiat_np256_addcarryx_u32(&x448, &x449, x447, x406, x436); fiat_np256_addcarryx_u32(&x450, &x451, x449, x408, x438); fiat_np256_addcarryx_u32(&x452, &x453, x451, x410, x440); fiat_np256_addcarryx_u32(&x454, &x455, x453, x412, x442); fiat_np256_addcarryx_u32(&x456, &x457, x455, x414, x444); fiat_np256_addcarryx_u32(&x458, &x459, x457, x416, (x445 + x425)); fiat_np256_addcarryx_u32(&x460, &x461, x459, x418, x422); fiat_np256_addcarryx_u32(&x462, &x463, x461, ((uint32_t)x419 + x403), x423); fiat_np256_subborrowx_u32(&x464, &x465, 0x0, x448, UINT32_C(0xfc632551)); fiat_np256_subborrowx_u32(&x466, &x467, x465, x450, UINT32_C(0xf3b9cac2)); fiat_np256_subborrowx_u32(&x468, &x469, x467, x452, UINT32_C(0xa7179e84)); fiat_np256_subborrowx_u32(&x470, &x471, x469, x454, UINT32_C(0xbce6faad)); fiat_np256_subborrowx_u32(&x472, &x473, x471, x456, UINT32_C(0xffffffff)); fiat_np256_subborrowx_u32(&x474, &x475, x473, x458, UINT32_C(0xffffffff)); fiat_np256_subborrowx_u32(&x476, &x477, x475, x460, 0x0); fiat_np256_subborrowx_u32(&x478, &x479, x477, x462, UINT32_C(0xffffffff)); fiat_np256_subborrowx_u32(&x480, &x481, x479, x463, 0x0); fiat_np256_cmovznz_u32(&x482, x481, x464, x448); fiat_np256_cmovznz_u32(&x483, x481, x466, x450); fiat_np256_cmovznz_u32(&x484, x481, x468, x452); fiat_np256_cmovznz_u32(&x485, x481, x470, x454); fiat_np256_cmovznz_u32(&x486, x481, x472, x456); fiat_np256_cmovznz_u32(&x487, x481, x474, x458); fiat_np256_cmovznz_u32(&x488, x481, x476, x460); fiat_np256_cmovznz_u32(&x489, x481, x478, x462); out1[0] = x482; out1[1] = x483; out1[2] = x484; out1[3] = x485; out1[4] = x486; out1[5] = x487; out1[6] = x488; out1[7] = x489; } /* * The function fiat_np256_to_montgomery translates a field element into the Montgomery domain. * * Preconditions: * 0 ≤ eval arg1 < m * Postconditions: * eval (from_montgomery out1) mod m = eval arg1 mod m * 0 ≤ eval out1 < m * */ static void fiat_np256_to_montgomery(fiat_np256_montgomery_domain_field_element out1, const fiat_np256_non_montgomery_domain_field_element arg1) { uint32_t x1; uint32_t x2; uint32_t x3; uint32_t x4; uint32_t x5; uint32_t x6; uint32_t x7; uint32_t x8; uint32_t x9; uint32_t x10; uint32_t x11; uint32_t x12; uint32_t x13; uint32_t x14; uint32_t x15; uint32_t x16; uint32_t x17; uint32_t x18; uint32_t x19; uint32_t x20; uint32_t x21; uint32_t x22; uint32_t x23; uint32_t x24; uint32_t x25; fiat_np256_uint1 x26; uint32_t x27; fiat_np256_uint1 x28; uint32_t x29; fiat_np256_uint1 x30; uint32_t x31; fiat_np256_uint1 x32; uint32_t x33; fiat_np256_uint1 x34; uint32_t x35; fiat_np256_uint1 x36; uint32_t x37; fiat_np256_uint1 x38; uint32_t x39; uint32_t x40; uint32_t x41; uint32_t x42; uint32_t x43; uint32_t x44; uint32_t x45; uint32_t x46; uint32_t x47; uint32_t x48; uint32_t x49; uint32_t x50; uint32_t x51; uint32_t x52; uint32_t x53; uint32_t x54; uint32_t x55; fiat_np256_uint1 x56; uint32_t x57; fiat_np256_uint1 x58; uint32_t x59; fiat_np256_uint1 x60; uint32_t x61; fiat_np256_uint1 x62; uint32_t x63; fiat_np256_uint1 x64; uint32_t x65; fiat_np256_uint1 x66; uint32_t x67; fiat_np256_uint1 x68; uint32_t x69; fiat_np256_uint1 x70; uint32_t x71; fiat_np256_uint1 x72; uint32_t x73; fiat_np256_uint1 x74; uint32_t x75; fiat_np256_uint1 x76; uint32_t x77; fiat_np256_uint1 x78; uint32_t x79; fiat_np256_uint1 x80; uint32_t x81; fiat_np256_uint1 x82; uint32_t x83; uint32_t x84; uint32_t x85; uint32_t x86; uint32_t x87; uint32_t x88; uint32_t x89; uint32_t x90; uint32_t x91; uint32_t x92; uint32_t x93; uint32_t x94; uint32_t x95; uint32_t x96; uint32_t x97; uint32_t x98; uint32_t x99; fiat_np256_uint1 x100; uint32_t x101; fiat_np256_uint1 x102; uint32_t x103; fiat_np256_uint1 x104; uint32_t x105; fiat_np256_uint1 x106; uint32_t x107; fiat_np256_uint1 x108; uint32_t x109; fiat_np256_uint1 x110; uint32_t x111; fiat_np256_uint1 x112; uint32_t x113; fiat_np256_uint1 x114; uint32_t x115; fiat_np256_uint1 x116; uint32_t x117; fiat_np256_uint1 x118; uint32_t x119; fiat_np256_uint1 x120; uint32_t x121; fiat_np256_uint1 x122; uint32_t x123; fiat_np256_uint1 x124; uint32_t x125; fiat_np256_uint1 x126; uint32_t x127; fiat_np256_uint1 x128; uint32_t x129; uint32_t x130; uint32_t x131; uint32_t x132; uint32_t x133; uint32_t x134; uint32_t x135; uint32_t x136; uint32_t x137; uint32_t x138; uint32_t x139; uint32_t x140; uint32_t x141; uint32_t x142; uint32_t x143; uint32_t x144; uint32_t x145; fiat_np256_uint1 x146; uint32_t x147; fiat_np256_uint1 x148; uint32_t x149; fiat_np256_uint1 x150; uint32_t x151; fiat_np256_uint1 x152; uint32_t x153; fiat_np256_uint1 x154; uint32_t x155; fiat_np256_uint1 x156; uint32_t x157; fiat_np256_uint1 x158; uint32_t x159; fiat_np256_uint1 x160; uint32_t x161; fiat_np256_uint1 x162; uint32_t x163; fiat_np256_uint1 x164; uint32_t x165; fiat_np256_uint1 x166; uint32_t x167; fiat_np256_uint1 x168; uint32_t x169; fiat_np256_uint1 x170; uint32_t x171; fiat_np256_uint1 x172; uint32_t x173; uint32_t x174; uint32_t x175; uint32_t x176; uint32_t x177; uint32_t x178; uint32_t x179; uint32_t x180; uint32_t x181; uint32_t x182; uint32_t x183; uint32_t x184; uint32_t x185; uint32_t x186; uint32_t x187; uint32_t x188; uint32_t x189; fiat_np256_uint1 x190; uint32_t x191; fiat_np256_uint1 x192; uint32_t x193; fiat_np256_uint1 x194; uint32_t x195; fiat_np256_uint1 x196; uint32_t x197; fiat_np256_uint1 x198; uint32_t x199; fiat_np256_uint1 x200; uint32_t x201; fiat_np256_uint1 x202; uint32_t x203; fiat_np256_uint1 x204; uint32_t x205; fiat_np256_uint1 x206; uint32_t x207; fiat_np256_uint1 x208; uint32_t x209; fiat_np256_uint1 x210; uint32_t x211; fiat_np256_uint1 x212; uint32_t x213; fiat_np256_uint1 x214; uint32_t x215; fiat_np256_uint1 x216; uint32_t x217; fiat_np256_uint1 x218; uint32_t x219; uint32_t x220; uint32_t x221; uint32_t x222; uint32_t x223; uint32_t x224; uint32_t x225; uint32_t x226; uint32_t x227; uint32_t x228; uint32_t x229; uint32_t x230; uint32_t x231; uint32_t x232; uint32_t x233; uint32_t x234; uint32_t x235; fiat_np256_uint1 x236; uint32_t x237; fiat_np256_uint1 x238; uint32_t x239; fiat_np256_uint1 x240; uint32_t x241; fiat_np256_uint1 x242; uint32_t x243; fiat_np256_uint1 x244; uint32_t x245; fiat_np256_uint1 x246; uint32_t x247; fiat_np256_uint1 x248; uint32_t x249; fiat_np256_uint1 x250; uint32_t x251; fiat_np256_uint1 x252; uint32_t x253; fiat_np256_uint1 x254; uint32_t x255; fiat_np256_uint1 x256; uint32_t x257; fiat_np256_uint1 x258; uint32_t x259; fiat_np256_uint1 x260; uint32_t x261; fiat_np256_uint1 x262; uint32_t x263; uint32_t x264; uint32_t x265; uint32_t x266; uint32_t x267; uint32_t x268; uint32_t x269; uint32_t x270; uint32_t x271; uint32_t x272; uint32_t x273; uint32_t x274; uint32_t x275; uint32_t x276; uint32_t x277; uint32_t x278; uint32_t x279; fiat_np256_uint1 x280; uint32_t x281; fiat_np256_uint1 x282; uint32_t x283; fiat_np256_uint1 x284; uint32_t x285; fiat_np256_uint1 x286; uint32_t x287; fiat_np256_uint1 x288; uint32_t x289; fiat_np256_uint1 x290; uint32_t x291; fiat_np256_uint1 x292; uint32_t x293; fiat_np256_uint1 x294; uint32_t x295; fiat_np256_uint1 x296; uint32_t x297; fiat_np256_uint1 x298; uint32_t x299; fiat_np256_uint1 x300; uint32_t x301; fiat_np256_uint1 x302; uint32_t x303; fiat_np256_uint1 x304; uint32_t x305; fiat_np256_uint1 x306; uint32_t x307; fiat_np256_uint1 x308; uint32_t x309; uint32_t x310; uint32_t x311; uint32_t x312; uint32_t x313; uint32_t x314; uint32_t x315; uint32_t x316; uint32_t x317; uint32_t x318; uint32_t x319; uint32_t x320; uint32_t x321; uint32_t x322; uint32_t x323; uint32_t x324; uint32_t x325; fiat_np256_uint1 x326; uint32_t x327; fiat_np256_uint1 x328; uint32_t x329; fiat_np256_uint1 x330; uint32_t x331; fiat_np256_uint1 x332; uint32_t x333; fiat_np256_uint1 x334; uint32_t x335; fiat_np256_uint1 x336; uint32_t x337; fiat_np256_uint1 x338; uint32_t x339; fiat_np256_uint1 x340; uint32_t x341; fiat_np256_uint1 x342; uint32_t x343; fiat_np256_uint1 x344; uint32_t x345; fiat_np256_uint1 x346; uint32_t x347; fiat_np256_uint1 x348; uint32_t x349; fiat_np256_uint1 x350; uint32_t x351; fiat_np256_uint1 x352; uint32_t x353; uint32_t x354; uint32_t x355; uint32_t x356; uint32_t x357; uint32_t x358; uint32_t x359; uint32_t x360; uint32_t x361; uint32_t x362; uint32_t x363; uint32_t x364; uint32_t x365; uint32_t x366; uint32_t x367; uint32_t x368; uint32_t x369; fiat_np256_uint1 x370; uint32_t x371; fiat_np256_uint1 x372; uint32_t x373; fiat_np256_uint1 x374; uint32_t x375; fiat_np256_uint1 x376; uint32_t x377; fiat_np256_uint1 x378; uint32_t x379; fiat_np256_uint1 x380; uint32_t x381; fiat_np256_uint1 x382; uint32_t x383; fiat_np256_uint1 x384; uint32_t x385; fiat_np256_uint1 x386; uint32_t x387; fiat_np256_uint1 x388; uint32_t x389; fiat_np256_uint1 x390; uint32_t x391; fiat_np256_uint1 x392; uint32_t x393; fiat_np256_uint1 x394; uint32_t x395; fiat_np256_uint1 x396; uint32_t x397; fiat_np256_uint1 x398; uint32_t x399; uint32_t x400; uint32_t x401; uint32_t x402; uint32_t x403; uint32_t x404; uint32_t x405; uint32_t x406; uint32_t x407; uint32_t x408; uint32_t x409; uint32_t x410; uint32_t x411; uint32_t x412; uint32_t x413; uint32_t x414; uint32_t x415; fiat_np256_uint1 x416; uint32_t x417; fiat_np256_uint1 x418; uint32_t x419; fiat_np256_uint1 x420; uint32_t x421; fiat_np256_uint1 x422; uint32_t x423; fiat_np256_uint1 x424; uint32_t x425; fiat_np256_uint1 x426; uint32_t x427; fiat_np256_uint1 x428; uint32_t x429; fiat_np256_uint1 x430; uint32_t x431; fiat_np256_uint1 x432; uint32_t x433; fiat_np256_uint1 x434; uint32_t x435; fiat_np256_uint1 x436; uint32_t x437; fiat_np256_uint1 x438; uint32_t x439; fiat_np256_uint1 x440; uint32_t x441; fiat_np256_uint1 x442; uint32_t x443; uint32_t x444; uint32_t x445; uint32_t x446; uint32_t x447; uint32_t x448; uint32_t x449; uint32_t x450; uint32_t x451; uint32_t x452; uint32_t x453; uint32_t x454; uint32_t x455; uint32_t x456; uint32_t x457; uint32_t x458; uint32_t x459; fiat_np256_uint1 x460; uint32_t x461; fiat_np256_uint1 x462; uint32_t x463; fiat_np256_uint1 x464; uint32_t x465; fiat_np256_uint1 x466; uint32_t x467; fiat_np256_uint1 x468; uint32_t x469; fiat_np256_uint1 x470; uint32_t x471; fiat_np256_uint1 x472; uint32_t x473; fiat_np256_uint1 x474; uint32_t x475; fiat_np256_uint1 x476; uint32_t x477; fiat_np256_uint1 x478; uint32_t x479; fiat_np256_uint1 x480; uint32_t x481; fiat_np256_uint1 x482; uint32_t x483; fiat_np256_uint1 x484; uint32_t x485; fiat_np256_uint1 x486; uint32_t x487; fiat_np256_uint1 x488; uint32_t x489; uint32_t x490; uint32_t x491; uint32_t x492; uint32_t x493; uint32_t x494; uint32_t x495; uint32_t x496; uint32_t x497; uint32_t x498; uint32_t x499; uint32_t x500; uint32_t x501; uint32_t x502; uint32_t x503; uint32_t x504; uint32_t x505; fiat_np256_uint1 x506; uint32_t x507; fiat_np256_uint1 x508; uint32_t x509; fiat_np256_uint1 x510; uint32_t x511; fiat_np256_uint1 x512; uint32_t x513; fiat_np256_uint1 x514; uint32_t x515; fiat_np256_uint1 x516; uint32_t x517; fiat_np256_uint1 x518; uint32_t x519; fiat_np256_uint1 x520; uint32_t x521; fiat_np256_uint1 x522; uint32_t x523; fiat_np256_uint1 x524; uint32_t x525; fiat_np256_uint1 x526; uint32_t x527; fiat_np256_uint1 x528; uint32_t x529; fiat_np256_uint1 x530; uint32_t x531; fiat_np256_uint1 x532; uint32_t x533; uint32_t x534; uint32_t x535; uint32_t x536; uint32_t x537; uint32_t x538; uint32_t x539; uint32_t x540; uint32_t x541; uint32_t x542; uint32_t x543; uint32_t x544; uint32_t x545; uint32_t x546; uint32_t x547; uint32_t x548; uint32_t x549; fiat_np256_uint1 x550; uint32_t x551; fiat_np256_uint1 x552; uint32_t x553; fiat_np256_uint1 x554; uint32_t x555; fiat_np256_uint1 x556; uint32_t x557; fiat_np256_uint1 x558; uint32_t x559; fiat_np256_uint1 x560; uint32_t x561; fiat_np256_uint1 x562; uint32_t x563; fiat_np256_uint1 x564; uint32_t x565; fiat_np256_uint1 x566; uint32_t x567; fiat_np256_uint1 x568; uint32_t x569; fiat_np256_uint1 x570; uint32_t x571; fiat_np256_uint1 x572; uint32_t x573; fiat_np256_uint1 x574; uint32_t x575; fiat_np256_uint1 x576; uint32_t x577; fiat_np256_uint1 x578; uint32_t x579; uint32_t x580; uint32_t x581; uint32_t x582; uint32_t x583; uint32_t x584; uint32_t x585; uint32_t x586; uint32_t x587; uint32_t x588; uint32_t x589; uint32_t x590; uint32_t x591; uint32_t x592; uint32_t x593; uint32_t x594; uint32_t x595; fiat_np256_uint1 x596; uint32_t x597; fiat_np256_uint1 x598; uint32_t x599; fiat_np256_uint1 x600; uint32_t x601; fiat_np256_uint1 x602; uint32_t x603; fiat_np256_uint1 x604; uint32_t x605; fiat_np256_uint1 x606; uint32_t x607; fiat_np256_uint1 x608; uint32_t x609; fiat_np256_uint1 x610; uint32_t x611; fiat_np256_uint1 x612; uint32_t x613; fiat_np256_uint1 x614; uint32_t x615; fiat_np256_uint1 x616; uint32_t x617; fiat_np256_uint1 x618; uint32_t x619; fiat_np256_uint1 x620; uint32_t x621; fiat_np256_uint1 x622; uint32_t x623; uint32_t x624; uint32_t x625; uint32_t x626; uint32_t x627; uint32_t x628; uint32_t x629; uint32_t x630; uint32_t x631; uint32_t x632; uint32_t x633; uint32_t x634; uint32_t x635; uint32_t x636; uint32_t x637; uint32_t x638; uint32_t x639; fiat_np256_uint1 x640; uint32_t x641; fiat_np256_uint1 x642; uint32_t x643; fiat_np256_uint1 x644; uint32_t x645; fiat_np256_uint1 x646; uint32_t x647; fiat_np256_uint1 x648; uint32_t x649; fiat_np256_uint1 x650; uint32_t x651; fiat_np256_uint1 x652; uint32_t x653; fiat_np256_uint1 x654; uint32_t x655; fiat_np256_uint1 x656; uint32_t x657; fiat_np256_uint1 x658; uint32_t x659; fiat_np256_uint1 x660; uint32_t x661; fiat_np256_uint1 x662; uint32_t x663; fiat_np256_uint1 x664; uint32_t x665; fiat_np256_uint1 x666; uint32_t x667; fiat_np256_uint1 x668; uint32_t x669; uint32_t x670; uint32_t x671; uint32_t x672; uint32_t x673; uint32_t x674; uint32_t x675; uint32_t x676; uint32_t x677; uint32_t x678; uint32_t x679; uint32_t x680; uint32_t x681; uint32_t x682; uint32_t x683; uint32_t x684; uint32_t x685; fiat_np256_uint1 x686; uint32_t x687; fiat_np256_uint1 x688; uint32_t x689; fiat_np256_uint1 x690; uint32_t x691; fiat_np256_uint1 x692; uint32_t x693; fiat_np256_uint1 x694; uint32_t x695; fiat_np256_uint1 x696; uint32_t x697; fiat_np256_uint1 x698; uint32_t x699; fiat_np256_uint1 x700; uint32_t x701; fiat_np256_uint1 x702; uint32_t x703; fiat_np256_uint1 x704; uint32_t x705; fiat_np256_uint1 x706; uint32_t x707; fiat_np256_uint1 x708; uint32_t x709; fiat_np256_uint1 x710; uint32_t x711; fiat_np256_uint1 x712; uint32_t x713; fiat_np256_uint1 x714; uint32_t x715; fiat_np256_uint1 x716; uint32_t x717; fiat_np256_uint1 x718; uint32_t x719; fiat_np256_uint1 x720; uint32_t x721; fiat_np256_uint1 x722; uint32_t x723; fiat_np256_uint1 x724; uint32_t x725; fiat_np256_uint1 x726; uint32_t x727; fiat_np256_uint1 x728; uint32_t x729; fiat_np256_uint1 x730; uint32_t x731; uint32_t x732; uint32_t x733; uint32_t x734; uint32_t x735; uint32_t x736; uint32_t x737; uint32_t x738; x1 = (arg1[1]); x2 = (arg1[2]); x3 = (arg1[3]); x4 = (arg1[4]); x5 = (arg1[5]); x6 = (arg1[6]); x7 = (arg1[7]); x8 = (arg1[0]); fiat_np256_mulx_u32(&x9, &x10, x8, UINT32_C(0x66e12d94)); fiat_np256_mulx_u32(&x11, &x12, x8, UINT32_C(0xf3d95620)); fiat_np256_mulx_u32(&x13, &x14, x8, UINT32_C(0x2845b239)); fiat_np256_mulx_u32(&x15, &x16, x8, UINT32_C(0x2b6bec59)); fiat_np256_mulx_u32(&x17, &x18, x8, UINT32_C(0x4699799c)); fiat_np256_mulx_u32(&x19, &x20, x8, UINT32_C(0x49bd6fa6)); fiat_np256_mulx_u32(&x21, &x22, x8, UINT32_C(0x83244c95)); fiat_np256_mulx_u32(&x23, &x24, x8, UINT32_C(0xbe79eea2)); fiat_np256_addcarryx_u32(&x25, &x26, 0x0, x24, x21); fiat_np256_addcarryx_u32(&x27, &x28, x26, x22, x19); fiat_np256_addcarryx_u32(&x29, &x30, x28, x20, x17); fiat_np256_addcarryx_u32(&x31, &x32, x30, x18, x15); fiat_np256_addcarryx_u32(&x33, &x34, x32, x16, x13); fiat_np256_addcarryx_u32(&x35, &x36, x34, x14, x11); fiat_np256_addcarryx_u32(&x37, &x38, x36, x12, x9); fiat_np256_mulx_u32(&x39, &x40, x23, UINT32_C(0xee00bc4f)); fiat_np256_mulx_u32(&x41, &x42, x39, UINT32_C(0xffffffff)); fiat_np256_mulx_u32(&x43, &x44, x39, UINT32_C(0xffffffff)); fiat_np256_mulx_u32(&x45, &x46, x39, UINT32_C(0xffffffff)); fiat_np256_mulx_u32(&x47, &x48, x39, UINT32_C(0xbce6faad)); fiat_np256_mulx_u32(&x49, &x50, x39, UINT32_C(0xa7179e84)); fiat_np256_mulx_u32(&x51, &x52, x39, UINT32_C(0xf3b9cac2)); fiat_np256_mulx_u32(&x53, &x54, x39, UINT32_C(0xfc632551)); fiat_np256_addcarryx_u32(&x55, &x56, 0x0, x54, x51); fiat_np256_addcarryx_u32(&x57, &x58, x56, x52, x49); fiat_np256_addcarryx_u32(&x59, &x60, x58, x50, x47); fiat_np256_addcarryx_u32(&x61, &x62, x60, x48, x45); fiat_np256_addcarryx_u32(&x63, &x64, x62, x46, x43); fiat_np256_addcarryx_u32(&x65, &x66, 0x0, x23, x53); fiat_np256_addcarryx_u32(&x67, &x68, x66, x25, x55); fiat_np256_addcarryx_u32(&x69, &x70, x68, x27, x57); fiat_np256_addcarryx_u32(&x71, &x72, x70, x29, x59); fiat_np256_addcarryx_u32(&x73, &x74, x72, x31, x61); fiat_np256_addcarryx_u32(&x75, &x76, x74, x33, x63); fiat_np256_addcarryx_u32(&x77, &x78, x76, x35, (x64 + x44)); fiat_np256_addcarryx_u32(&x79, &x80, x78, x37, x41); fiat_np256_addcarryx_u32(&x81, &x82, x80, (x38 + x10), x42); fiat_np256_mulx_u32(&x83, &x84, x1, UINT32_C(0x66e12d94)); fiat_np256_mulx_u32(&x85, &x86, x1, UINT32_C(0xf3d95620)); fiat_np256_mulx_u32(&x87, &x88, x1, UINT32_C(0x2845b239)); fiat_np256_mulx_u32(&x89, &x90, x1, UINT32_C(0x2b6bec59)); fiat_np256_mulx_u32(&x91, &x92, x1, UINT32_C(0x4699799c)); fiat_np256_mulx_u32(&x93, &x94, x1, UINT32_C(0x49bd6fa6)); fiat_np256_mulx_u32(&x95, &x96, x1, UINT32_C(0x83244c95)); fiat_np256_mulx_u32(&x97, &x98, x1, UINT32_C(0xbe79eea2)); fiat_np256_addcarryx_u32(&x99, &x100, 0x0, x98, x95); fiat_np256_addcarryx_u32(&x101, &x102, x100, x96, x93); fiat_np256_addcarryx_u32(&x103, &x104, x102, x94, x91); fiat_np256_addcarryx_u32(&x105, &x106, x104, x92, x89); fiat_np256_addcarryx_u32(&x107, &x108, x106, x90, x87); fiat_np256_addcarryx_u32(&x109, &x110, x108, x88, x85); fiat_np256_addcarryx_u32(&x111, &x112, x110, x86, x83); fiat_np256_addcarryx_u32(&x113, &x114, 0x0, x67, x97); fiat_np256_addcarryx_u32(&x115, &x116, x114, x69, x99); fiat_np256_addcarryx_u32(&x117, &x118, x116, x71, x101); fiat_np256_addcarryx_u32(&x119, &x120, x118, x73, x103); fiat_np256_addcarryx_u32(&x121, &x122, x120, x75, x105); fiat_np256_addcarryx_u32(&x123, &x124, x122, x77, x107); fiat_np256_addcarryx_u32(&x125, &x126, x124, x79, x109); fiat_np256_addcarryx_u32(&x127, &x128, x126, x81, x111); fiat_np256_mulx_u32(&x129, &x130, x113, UINT32_C(0xee00bc4f)); fiat_np256_mulx_u32(&x131, &x132, x129, UINT32_C(0xffffffff)); fiat_np256_mulx_u32(&x133, &x134, x129, UINT32_C(0xffffffff)); fiat_np256_mulx_u32(&x135, &x136, x129, UINT32_C(0xffffffff)); fiat_np256_mulx_u32(&x137, &x138, x129, UINT32_C(0xbce6faad)); fiat_np256_mulx_u32(&x139, &x140, x129, UINT32_C(0xa7179e84)); fiat_np256_mulx_u32(&x141, &x142, x129, UINT32_C(0xf3b9cac2)); fiat_np256_mulx_u32(&x143, &x144, x129, UINT32_C(0xfc632551)); fiat_np256_addcarryx_u32(&x145, &x146, 0x0, x144, x141); fiat_np256_addcarryx_u32(&x147, &x148, x146, x142, x139); fiat_np256_addcarryx_u32(&x149, &x150, x148, x140, x137); fiat_np256_addcarryx_u32(&x151, &x152, x150, x138, x135); fiat_np256_addcarryx_u32(&x153, &x154, x152, x136, x133); fiat_np256_addcarryx_u32(&x155, &x156, 0x0, x113, x143); fiat_np256_addcarryx_u32(&x157, &x158, x156, x115, x145); fiat_np256_addcarryx_u32(&x159, &x160, x158, x117, x147); fiat_np256_addcarryx_u32(&x161, &x162, x160, x119, x149); fiat_np256_addcarryx_u32(&x163, &x164, x162, x121, x151); fiat_np256_addcarryx_u32(&x165, &x166, x164, x123, x153); fiat_np256_addcarryx_u32(&x167, &x168, x166, x125, (x154 + x134)); fiat_np256_addcarryx_u32(&x169, &x170, x168, x127, x131); fiat_np256_addcarryx_u32(&x171, &x172, x170, (((uint32_t)x128 + x82) + (x112 + x84)), x132); fiat_np256_mulx_u32(&x173, &x174, x2, UINT32_C(0x66e12d94)); fiat_np256_mulx_u32(&x175, &x176, x2, UINT32_C(0xf3d95620)); fiat_np256_mulx_u32(&x177, &x178, x2, UINT32_C(0x2845b239)); fiat_np256_mulx_u32(&x179, &x180, x2, UINT32_C(0x2b6bec59)); fiat_np256_mulx_u32(&x181, &x182, x2, UINT32_C(0x4699799c)); fiat_np256_mulx_u32(&x183, &x184, x2, UINT32_C(0x49bd6fa6)); fiat_np256_mulx_u32(&x185, &x186, x2, UINT32_C(0x83244c95)); fiat_np256_mulx_u32(&x187, &x188, x2, UINT32_C(0xbe79eea2)); fiat_np256_addcarryx_u32(&x189, &x190, 0x0, x188, x185); fiat_np256_addcarryx_u32(&x191, &x192, x190, x186, x183); fiat_np256_addcarryx_u32(&x193, &x194, x192, x184, x181); fiat_np256_addcarryx_u32(&x195, &x196, x194, x182, x179); fiat_np256_addcarryx_u32(&x197, &x198, x196, x180, x177); fiat_np256_addcarryx_u32(&x199, &x200, x198, x178, x175); fiat_np256_addcarryx_u32(&x201, &x202, x200, x176, x173); fiat_np256_addcarryx_u32(&x203, &x204, 0x0, x157, x187); fiat_np256_addcarryx_u32(&x205, &x206, x204, x159, x189); fiat_np256_addcarryx_u32(&x207, &x208, x206, x161, x191); fiat_np256_addcarryx_u32(&x209, &x210, x208, x163, x193); fiat_np256_addcarryx_u32(&x211, &x212, x210, x165, x195); fiat_np256_addcarryx_u32(&x213, &x214, x212, x167, x197); fiat_np256_addcarryx_u32(&x215, &x216, x214, x169, x199); fiat_np256_addcarryx_u32(&x217, &x218, x216, x171, x201); fiat_np256_mulx_u32(&x219, &x220, x203, UINT32_C(0xee00bc4f)); fiat_np256_mulx_u32(&x221, &x222, x219, UINT32_C(0xffffffff)); fiat_np256_mulx_u32(&x223, &x224, x219, UINT32_C(0xffffffff)); fiat_np256_mulx_u32(&x225, &x226, x219, UINT32_C(0xffffffff)); fiat_np256_mulx_u32(&x227, &x228, x219, UINT32_C(0xbce6faad)); fiat_np256_mulx_u32(&x229, &x230, x219, UINT32_C(0xa7179e84)); fiat_np256_mulx_u32(&x231, &x232, x219, UINT32_C(0xf3b9cac2)); fiat_np256_mulx_u32(&x233, &x234, x219, UINT32_C(0xfc632551)); fiat_np256_addcarryx_u32(&x235, &x236, 0x0, x234, x231); fiat_np256_addcarryx_u32(&x237, &x238, x236, x232, x229); fiat_np256_addcarryx_u32(&x239, &x240, x238, x230, x227); fiat_np256_addcarryx_u32(&x241, &x242, x240, x228, x225); fiat_np256_addcarryx_u32(&x243, &x244, x242, x226, x223); fiat_np256_addcarryx_u32(&x245, &x246, 0x0, x203, x233); fiat_np256_addcarryx_u32(&x247, &x248, x246, x205, x235); fiat_np256_addcarryx_u32(&x249, &x250, x248, x207, x237); fiat_np256_addcarryx_u32(&x251, &x252, x250, x209, x239); fiat_np256_addcarryx_u32(&x253, &x254, x252, x211, x241); fiat_np256_addcarryx_u32(&x255, &x256, x254, x213, x243); fiat_np256_addcarryx_u32(&x257, &x258, x256, x215, (x244 + x224)); fiat_np256_addcarryx_u32(&x259, &x260, x258, x217, x221); fiat_np256_addcarryx_u32(&x261, &x262, x260, (((uint32_t)x218 + x172) + (x202 + x174)), x222); fiat_np256_mulx_u32(&x263, &x264, x3, UINT32_C(0x66e12d94)); fiat_np256_mulx_u32(&x265, &x266, x3, UINT32_C(0xf3d95620)); fiat_np256_mulx_u32(&x267, &x268, x3, UINT32_C(0x2845b239)); fiat_np256_mulx_u32(&x269, &x270, x3, UINT32_C(0x2b6bec59)); fiat_np256_mulx_u32(&x271, &x272, x3, UINT32_C(0x4699799c)); fiat_np256_mulx_u32(&x273, &x274, x3, UINT32_C(0x49bd6fa6)); fiat_np256_mulx_u32(&x275, &x276, x3, UINT32_C(0x83244c95)); fiat_np256_mulx_u32(&x277, &x278, x3, UINT32_C(0xbe79eea2)); fiat_np256_addcarryx_u32(&x279, &x280, 0x0, x278, x275); fiat_np256_addcarryx_u32(&x281, &x282, x280, x276, x273); fiat_np256_addcarryx_u32(&x283, &x284, x282, x274, x271); fiat_np256_addcarryx_u32(&x285, &x286, x284, x272, x269); fiat_np256_addcarryx_u32(&x287, &x288, x286, x270, x267); fiat_np256_addcarryx_u32(&x289, &x290, x288, x268, x265); fiat_np256_addcarryx_u32(&x291, &x292, x290, x266, x263); fiat_np256_addcarryx_u32(&x293, &x294, 0x0, x247, x277); fiat_np256_addcarryx_u32(&x295, &x296, x294, x249, x279); fiat_np256_addcarryx_u32(&x297, &x298, x296, x251, x281); fiat_np256_addcarryx_u32(&x299, &x300, x298, x253, x283); fiat_np256_addcarryx_u32(&x301, &x302, x300, x255, x285); fiat_np256_addcarryx_u32(&x303, &x304, x302, x257, x287); fiat_np256_addcarryx_u32(&x305, &x306, x304, x259, x289); fiat_np256_addcarryx_u32(&x307, &x308, x306, x261, x291); fiat_np256_mulx_u32(&x309, &x310, x293, UINT32_C(0xee00bc4f)); fiat_np256_mulx_u32(&x311, &x312, x309, UINT32_C(0xffffffff)); fiat_np256_mulx_u32(&x313, &x314, x309, UINT32_C(0xffffffff)); fiat_np256_mulx_u32(&x315, &x316, x309, UINT32_C(0xffffffff)); fiat_np256_mulx_u32(&x317, &x318, x309, UINT32_C(0xbce6faad)); fiat_np256_mulx_u32(&x319, &x320, x309, UINT32_C(0xa7179e84)); fiat_np256_mulx_u32(&x321, &x322, x309, UINT32_C(0xf3b9cac2)); fiat_np256_mulx_u32(&x323, &x324, x309, UINT32_C(0xfc632551)); fiat_np256_addcarryx_u32(&x325, &x326, 0x0, x324, x321); fiat_np256_addcarryx_u32(&x327, &x328, x326, x322, x319); fiat_np256_addcarryx_u32(&x329, &x330, x328, x320, x317); fiat_np256_addcarryx_u32(&x331, &x332, x330, x318, x315); fiat_np256_addcarryx_u32(&x333, &x334, x332, x316, x313); fiat_np256_addcarryx_u32(&x335, &x336, 0x0, x293, x323); fiat_np256_addcarryx_u32(&x337, &x338, x336, x295, x325); fiat_np256_addcarryx_u32(&x339, &x340, x338, x297, x327); fiat_np256_addcarryx_u32(&x341, &x342, x340, x299, x329); fiat_np256_addcarryx_u32(&x343, &x344, x342, x301, x331); fiat_np256_addcarryx_u32(&x345, &x346, x344, x303, x333); fiat_np256_addcarryx_u32(&x347, &x348, x346, x305, (x334 + x314)); fiat_np256_addcarryx_u32(&x349, &x350, x348, x307, x311); fiat_np256_addcarryx_u32(&x351, &x352, x350, (((uint32_t)x308 + x262) + (x292 + x264)), x312); fiat_np256_mulx_u32(&x353, &x354, x4, UINT32_C(0x66e12d94)); fiat_np256_mulx_u32(&x355, &x356, x4, UINT32_C(0xf3d95620)); fiat_np256_mulx_u32(&x357, &x358, x4, UINT32_C(0x2845b239)); fiat_np256_mulx_u32(&x359, &x360, x4, UINT32_C(0x2b6bec59)); fiat_np256_mulx_u32(&x361, &x362, x4, UINT32_C(0x4699799c)); fiat_np256_mulx_u32(&x363, &x364, x4, UINT32_C(0x49bd6fa6)); fiat_np256_mulx_u32(&x365, &x366, x4, UINT32_C(0x83244c95)); fiat_np256_mulx_u32(&x367, &x368, x4, UINT32_C(0xbe79eea2)); fiat_np256_addcarryx_u32(&x369, &x370, 0x0, x368, x365); fiat_np256_addcarryx_u32(&x371, &x372, x370, x366, x363); fiat_np256_addcarryx_u32(&x373, &x374, x372, x364, x361); fiat_np256_addcarryx_u32(&x375, &x376, x374, x362, x359); fiat_np256_addcarryx_u32(&x377, &x378, x376, x360, x357); fiat_np256_addcarryx_u32(&x379, &x380, x378, x358, x355); fiat_np256_addcarryx_u32(&x381, &x382, x380, x356, x353); fiat_np256_addcarryx_u32(&x383, &x384, 0x0, x337, x367); fiat_np256_addcarryx_u32(&x385, &x386, x384, x339, x369); fiat_np256_addcarryx_u32(&x387, &x388, x386, x341, x371); fiat_np256_addcarryx_u32(&x389, &x390, x388, x343, x373); fiat_np256_addcarryx_u32(&x391, &x392, x390, x345, x375); fiat_np256_addcarryx_u32(&x393, &x394, x392, x347, x377); fiat_np256_addcarryx_u32(&x395, &x396, x394, x349, x379); fiat_np256_addcarryx_u32(&x397, &x398, x396, x351, x381); fiat_np256_mulx_u32(&x399, &x400, x383, UINT32_C(0xee00bc4f)); fiat_np256_mulx_u32(&x401, &x402, x399, UINT32_C(0xffffffff)); fiat_np256_mulx_u32(&x403, &x404, x399, UINT32_C(0xffffffff)); fiat_np256_mulx_u32(&x405, &x406, x399, UINT32_C(0xffffffff)); fiat_np256_mulx_u32(&x407, &x408, x399, UINT32_C(0xbce6faad)); fiat_np256_mulx_u32(&x409, &x410, x399, UINT32_C(0xa7179e84)); fiat_np256_mulx_u32(&x411, &x412, x399, UINT32_C(0xf3b9cac2)); fiat_np256_mulx_u32(&x413, &x414, x399, UINT32_C(0xfc632551)); fiat_np256_addcarryx_u32(&x415, &x416, 0x0, x414, x411); fiat_np256_addcarryx_u32(&x417, &x418, x416, x412, x409); fiat_np256_addcarryx_u32(&x419, &x420, x418, x410, x407); fiat_np256_addcarryx_u32(&x421, &x422, x420, x408, x405); fiat_np256_addcarryx_u32(&x423, &x424, x422, x406, x403); fiat_np256_addcarryx_u32(&x425, &x426, 0x0, x383, x413); fiat_np256_addcarryx_u32(&x427, &x428, x426, x385, x415); fiat_np256_addcarryx_u32(&x429, &x430, x428, x387, x417); fiat_np256_addcarryx_u32(&x431, &x432, x430, x389, x419); fiat_np256_addcarryx_u32(&x433, &x434, x432, x391, x421); fiat_np256_addcarryx_u32(&x435, &x436, x434, x393, x423); fiat_np256_addcarryx_u32(&x437, &x438, x436, x395, (x424 + x404)); fiat_np256_addcarryx_u32(&x439, &x440, x438, x397, x401); fiat_np256_addcarryx_u32(&x441, &x442, x440, (((uint32_t)x398 + x352) + (x382 + x354)), x402); fiat_np256_mulx_u32(&x443, &x444, x5, UINT32_C(0x66e12d94)); fiat_np256_mulx_u32(&x445, &x446, x5, UINT32_C(0xf3d95620)); fiat_np256_mulx_u32(&x447, &x448, x5, UINT32_C(0x2845b239)); fiat_np256_mulx_u32(&x449, &x450, x5, UINT32_C(0x2b6bec59)); fiat_np256_mulx_u32(&x451, &x452, x5, UINT32_C(0x4699799c)); fiat_np256_mulx_u32(&x453, &x454, x5, UINT32_C(0x49bd6fa6)); fiat_np256_mulx_u32(&x455, &x456, x5, UINT32_C(0x83244c95)); fiat_np256_mulx_u32(&x457, &x458, x5, UINT32_C(0xbe79eea2)); fiat_np256_addcarryx_u32(&x459, &x460, 0x0, x458, x455); fiat_np256_addcarryx_u32(&x461, &x462, x460, x456, x453); fiat_np256_addcarryx_u32(&x463, &x464, x462, x454, x451); fiat_np256_addcarryx_u32(&x465, &x466, x464, x452, x449); fiat_np256_addcarryx_u32(&x467, &x468, x466, x450, x447); fiat_np256_addcarryx_u32(&x469, &x470, x468, x448, x445); fiat_np256_addcarryx_u32(&x471, &x472, x470, x446, x443); fiat_np256_addcarryx_u32(&x473, &x474, 0x0, x427, x457); fiat_np256_addcarryx_u32(&x475, &x476, x474, x429, x459); fiat_np256_addcarryx_u32(&x477, &x478, x476, x431, x461); fiat_np256_addcarryx_u32(&x479, &x480, x478, x433, x463); fiat_np256_addcarryx_u32(&x481, &x482, x480, x435, x465); fiat_np256_addcarryx_u32(&x483, &x484, x482, x437, x467); fiat_np256_addcarryx_u32(&x485, &x486, x484, x439, x469); fiat_np256_addcarryx_u32(&x487, &x488, x486, x441, x471); fiat_np256_mulx_u32(&x489, &x490, x473, UINT32_C(0xee00bc4f)); fiat_np256_mulx_u32(&x491, &x492, x489, UINT32_C(0xffffffff)); fiat_np256_mulx_u32(&x493, &x494, x489, UINT32_C(0xffffffff)); fiat_np256_mulx_u32(&x495, &x496, x489, UINT32_C(0xffffffff)); fiat_np256_mulx_u32(&x497, &x498, x489, UINT32_C(0xbce6faad)); fiat_np256_mulx_u32(&x499, &x500, x489, UINT32_C(0xa7179e84)); fiat_np256_mulx_u32(&x501, &x502, x489, UINT32_C(0xf3b9cac2)); fiat_np256_mulx_u32(&x503, &x504, x489, UINT32_C(0xfc632551)); fiat_np256_addcarryx_u32(&x505, &x506, 0x0, x504, x501); fiat_np256_addcarryx_u32(&x507, &x508, x506, x502, x499); fiat_np256_addcarryx_u32(&x509, &x510, x508, x500, x497); fiat_np256_addcarryx_u32(&x511, &x512, x510, x498, x495); fiat_np256_addcarryx_u32(&x513, &x514, x512, x496, x493); fiat_np256_addcarryx_u32(&x515, &x516, 0x0, x473, x503); fiat_np256_addcarryx_u32(&x517, &x518, x516, x475, x505); fiat_np256_addcarryx_u32(&x519, &x520, x518, x477, x507); fiat_np256_addcarryx_u32(&x521, &x522, x520, x479, x509); fiat_np256_addcarryx_u32(&x523, &x524, x522, x481, x511); fiat_np256_addcarryx_u32(&x525, &x526, x524, x483, x513); fiat_np256_addcarryx_u32(&x527, &x528, x526, x485, (x514 + x494)); fiat_np256_addcarryx_u32(&x529, &x530, x528, x487, x491); fiat_np256_addcarryx_u32(&x531, &x532, x530, (((uint32_t)x488 + x442) + (x472 + x444)), x492); fiat_np256_mulx_u32(&x533, &x534, x6, UINT32_C(0x66e12d94)); fiat_np256_mulx_u32(&x535, &x536, x6, UINT32_C(0xf3d95620)); fiat_np256_mulx_u32(&x537, &x538, x6, UINT32_C(0x2845b239)); fiat_np256_mulx_u32(&x539, &x540, x6, UINT32_C(0x2b6bec59)); fiat_np256_mulx_u32(&x541, &x542, x6, UINT32_C(0x4699799c)); fiat_np256_mulx_u32(&x543, &x544, x6, UINT32_C(0x49bd6fa6)); fiat_np256_mulx_u32(&x545, &x546, x6, UINT32_C(0x83244c95)); fiat_np256_mulx_u32(&x547, &x548, x6, UINT32_C(0xbe79eea2)); fiat_np256_addcarryx_u32(&x549, &x550, 0x0, x548, x545); fiat_np256_addcarryx_u32(&x551, &x552, x550, x546, x543); fiat_np256_addcarryx_u32(&x553, &x554, x552, x544, x541); fiat_np256_addcarryx_u32(&x555, &x556, x554, x542, x539); fiat_np256_addcarryx_u32(&x557, &x558, x556, x540, x537); fiat_np256_addcarryx_u32(&x559, &x560, x558, x538, x535); fiat_np256_addcarryx_u32(&x561, &x562, x560, x536, x533); fiat_np256_addcarryx_u32(&x563, &x564, 0x0, x517, x547); fiat_np256_addcarryx_u32(&x565, &x566, x564, x519, x549); fiat_np256_addcarryx_u32(&x567, &x568, x566, x521, x551); fiat_np256_addcarryx_u32(&x569, &x570, x568, x523, x553); fiat_np256_addcarryx_u32(&x571, &x572, x570, x525, x555); fiat_np256_addcarryx_u32(&x573, &x574, x572, x527, x557); fiat_np256_addcarryx_u32(&x575, &x576, x574, x529, x559); fiat_np256_addcarryx_u32(&x577, &x578, x576, x531, x561); fiat_np256_mulx_u32(&x579, &x580, x563, UINT32_C(0xee00bc4f)); fiat_np256_mulx_u32(&x581, &x582, x579, UINT32_C(0xffffffff)); fiat_np256_mulx_u32(&x583, &x584, x579, UINT32_C(0xffffffff)); fiat_np256_mulx_u32(&x585, &x586, x579, UINT32_C(0xffffffff)); fiat_np256_mulx_u32(&x587, &x588, x579, UINT32_C(0xbce6faad)); fiat_np256_mulx_u32(&x589, &x590, x579, UINT32_C(0xa7179e84)); fiat_np256_mulx_u32(&x591, &x592, x579, UINT32_C(0xf3b9cac2)); fiat_np256_mulx_u32(&x593, &x594, x579, UINT32_C(0xfc632551)); fiat_np256_addcarryx_u32(&x595, &x596, 0x0, x594, x591); fiat_np256_addcarryx_u32(&x597, &x598, x596, x592, x589); fiat_np256_addcarryx_u32(&x599, &x600, x598, x590, x587); fiat_np256_addcarryx_u32(&x601, &x602, x600, x588, x585); fiat_np256_addcarryx_u32(&x603, &x604, x602, x586, x583); fiat_np256_addcarryx_u32(&x605, &x606, 0x0, x563, x593); fiat_np256_addcarryx_u32(&x607, &x608, x606, x565, x595); fiat_np256_addcarryx_u32(&x609, &x610, x608, x567, x597); fiat_np256_addcarryx_u32(&x611, &x612, x610, x569, x599); fiat_np256_addcarryx_u32(&x613, &x614, x612, x571, x601); fiat_np256_addcarryx_u32(&x615, &x616, x614, x573, x603); fiat_np256_addcarryx_u32(&x617, &x618, x616, x575, (x604 + x584)); fiat_np256_addcarryx_u32(&x619, &x620, x618, x577, x581); fiat_np256_addcarryx_u32(&x621, &x622, x620, (((uint32_t)x578 + x532) + (x562 + x534)), x582); fiat_np256_mulx_u32(&x623, &x624, x7, UINT32_C(0x66e12d94)); fiat_np256_mulx_u32(&x625, &x626, x7, UINT32_C(0xf3d95620)); fiat_np256_mulx_u32(&x627, &x628, x7, UINT32_C(0x2845b239)); fiat_np256_mulx_u32(&x629, &x630, x7, UINT32_C(0x2b6bec59)); fiat_np256_mulx_u32(&x631, &x632, x7, UINT32_C(0x4699799c)); fiat_np256_mulx_u32(&x633, &x634, x7, UINT32_C(0x49bd6fa6)); fiat_np256_mulx_u32(&x635, &x636, x7, UINT32_C(0x83244c95)); fiat_np256_mulx_u32(&x637, &x638, x7, UINT32_C(0xbe79eea2)); fiat_np256_addcarryx_u32(&x639, &x640, 0x0, x638, x635); fiat_np256_addcarryx_u32(&x641, &x642, x640, x636, x633); fiat_np256_addcarryx_u32(&x643, &x644, x642, x634, x631); fiat_np256_addcarryx_u32(&x645, &x646, x644, x632, x629); fiat_np256_addcarryx_u32(&x647, &x648, x646, x630, x627); fiat_np256_addcarryx_u32(&x649, &x650, x648, x628, x625); fiat_np256_addcarryx_u32(&x651, &x652, x650, x626, x623); fiat_np256_addcarryx_u32(&x653, &x654, 0x0, x607, x637); fiat_np256_addcarryx_u32(&x655, &x656, x654, x609, x639); fiat_np256_addcarryx_u32(&x657, &x658, x656, x611, x641); fiat_np256_addcarryx_u32(&x659, &x660, x658, x613, x643); fiat_np256_addcarryx_u32(&x661, &x662, x660, x615, x645); fiat_np256_addcarryx_u32(&x663, &x664, x662, x617, x647); fiat_np256_addcarryx_u32(&x665, &x666, x664, x619, x649); fiat_np256_addcarryx_u32(&x667, &x668, x666, x621, x651); fiat_np256_mulx_u32(&x669, &x670, x653, UINT32_C(0xee00bc4f)); fiat_np256_mulx_u32(&x671, &x672, x669, UINT32_C(0xffffffff)); fiat_np256_mulx_u32(&x673, &x674, x669, UINT32_C(0xffffffff)); fiat_np256_mulx_u32(&x675, &x676, x669, UINT32_C(0xffffffff)); fiat_np256_mulx_u32(&x677, &x678, x669, UINT32_C(0xbce6faad)); fiat_np256_mulx_u32(&x679, &x680, x669, UINT32_C(0xa7179e84)); fiat_np256_mulx_u32(&x681, &x682, x669, UINT32_C(0xf3b9cac2)); fiat_np256_mulx_u32(&x683, &x684, x669, UINT32_C(0xfc632551)); fiat_np256_addcarryx_u32(&x685, &x686, 0x0, x684, x681); fiat_np256_addcarryx_u32(&x687, &x688, x686, x682, x679); fiat_np256_addcarryx_u32(&x689, &x690, x688, x680, x677); fiat_np256_addcarryx_u32(&x691, &x692, x690, x678, x675); fiat_np256_addcarryx_u32(&x693, &x694, x692, x676, x673); fiat_np256_addcarryx_u32(&x695, &x696, 0x0, x653, x683); fiat_np256_addcarryx_u32(&x697, &x698, x696, x655, x685); fiat_np256_addcarryx_u32(&x699, &x700, x698, x657, x687); fiat_np256_addcarryx_u32(&x701, &x702, x700, x659, x689); fiat_np256_addcarryx_u32(&x703, &x704, x702, x661, x691); fiat_np256_addcarryx_u32(&x705, &x706, x704, x663, x693); fiat_np256_addcarryx_u32(&x707, &x708, x706, x665, (x694 + x674)); fiat_np256_addcarryx_u32(&x709, &x710, x708, x667, x671); fiat_np256_addcarryx_u32(&x711, &x712, x710, (((uint32_t)x668 + x622) + (x652 + x624)), x672); fiat_np256_subborrowx_u32(&x713, &x714, 0x0, x697, UINT32_C(0xfc632551)); fiat_np256_subborrowx_u32(&x715, &x716, x714, x699, UINT32_C(0xf3b9cac2)); fiat_np256_subborrowx_u32(&x717, &x718, x716, x701, UINT32_C(0xa7179e84)); fiat_np256_subborrowx_u32(&x719, &x720, x718, x703, UINT32_C(0xbce6faad)); fiat_np256_subborrowx_u32(&x721, &x722, x720, x705, UINT32_C(0xffffffff)); fiat_np256_subborrowx_u32(&x723, &x724, x722, x707, UINT32_C(0xffffffff)); fiat_np256_subborrowx_u32(&x725, &x726, x724, x709, 0x0); fiat_np256_subborrowx_u32(&x727, &x728, x726, x711, UINT32_C(0xffffffff)); fiat_np256_subborrowx_u32(&x729, &x730, x728, x712, 0x0); fiat_np256_cmovznz_u32(&x731, x730, x713, x697); fiat_np256_cmovznz_u32(&x732, x730, x715, x699); fiat_np256_cmovznz_u32(&x733, x730, x717, x701); fiat_np256_cmovznz_u32(&x734, x730, x719, x703); fiat_np256_cmovznz_u32(&x735, x730, x721, x705); fiat_np256_cmovznz_u32(&x736, x730, x723, x707); fiat_np256_cmovznz_u32(&x737, x730, x725, x709); fiat_np256_cmovznz_u32(&x738, x730, x727, x711); out1[0] = x731; out1[1] = x732; out1[2] = x733; out1[3] = x734; out1[4] = x735; out1[5] = x736; out1[6] = x737; out1[7] = x738; } /* * The function fiat_np256_set_one returns the field element one in the Montgomery domain. * * Postconditions: * eval (from_montgomery out1) mod m = 1 mod m * 0 ≤ eval out1 < m * */ static void fiat_np256_set_one(fiat_np256_montgomery_domain_field_element out1) { out1[0] = UINT32_C(0x39cdaaf); out1[1] = UINT32_C(0xc46353d); out1[2] = UINT32_C(0x58e8617b); out1[3] = UINT32_C(0x43190552); out1[4] = 0x0; out1[5] = 0x0; out1[6] = UINT32_C(0xffffffff); out1[7] = 0x0; } /* * The function fiat_np256_msat returns the saturated representation of the prime modulus. * * Postconditions: * twos_complement_eval out1 = m * 0 ≤ eval out1 < m * * Output Bounds: * out1: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff]] */ static void fiat_np256_msat(uint32_t out1[9]) { out1[0] = UINT32_C(0xfc632551); out1[1] = UINT32_C(0xf3b9cac2); out1[2] = UINT32_C(0xa7179e84); out1[3] = UINT32_C(0xbce6faad); out1[4] = UINT32_C(0xffffffff); out1[5] = UINT32_C(0xffffffff); out1[6] = 0x0; out1[7] = UINT32_C(0xffffffff); out1[8] = 0x0; } /* * The function fiat_np256_divstep_precomp returns the precomputed value for Bernstein-Yang-inversion (in montgomery form). * * Postconditions: * eval (from_montgomery out1) = ⌊(m - 1) / 2⌋^(if ⌊log2 m⌋ + 1 < 46 then ⌊(49 * (⌊log2 m⌋ + 1) + 80) / 17⌋ else ⌊(49 * (⌊log2 m⌋ + 1) + 57) / 17⌋) * 0 ≤ eval out1 < m * * Output Bounds: * out1: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff]] */ static void fiat_np256_divstep_precomp(uint32_t out1[8]) { out1[0] = UINT32_C(0xb7fcfbb5); out1[1] = UINT32_C(0xd739262f); out1[2] = UINT32_C(0x20074414); out1[3] = UINT32_C(0x8ac6f75d); out1[4] = UINT32_C(0xb5e3c256); out1[5] = UINT32_C(0xc67428bf); out1[6] = UINT32_C(0xeda7aedf); out1[7] = UINT32_C(0x444962f2); } /* * The function fiat_np256_divstep computes a divstep. * * Preconditions: * 0 ≤ eval arg4 < m * 0 ≤ eval arg5 < m * Postconditions: * out1 = (if 0 < arg1 ∧ (twos_complement_eval arg3) is odd then 1 - arg1 else 1 + arg1) * twos_complement_eval out2 = (if 0 < arg1 ∧ (twos_complement_eval arg3) is odd then twos_complement_eval arg3 else twos_complement_eval arg2) * twos_complement_eval out3 = (if 0 < arg1 ∧ (twos_complement_eval arg3) is odd then ⌊(twos_complement_eval arg3 - twos_complement_eval arg2) / 2⌋ else ⌊(twos_complement_eval arg3 + (twos_complement_eval arg3 mod 2) * twos_complement_eval arg2) / 2⌋) * eval (from_montgomery out4) mod m = (if 0 < arg1 ∧ (twos_complement_eval arg3) is odd then (2 * eval (from_montgomery arg5)) mod m else (2 * eval (from_montgomery arg4)) mod m) * eval (from_montgomery out5) mod m = (if 0 < arg1 ∧ (twos_complement_eval arg3) is odd then (eval (from_montgomery arg4) - eval (from_montgomery arg4)) mod m else (eval (from_montgomery arg5) + (twos_complement_eval arg3 mod 2) * eval (from_montgomery arg4)) mod m) * 0 ≤ eval out5 < m * 0 ≤ eval out5 < m * 0 ≤ eval out2 < m * 0 ≤ eval out3 < m * * Input Bounds: * arg1: [0x0 ~> 0xffffffff] * arg2: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff]] * arg3: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff]] * arg4: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff]] * arg5: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff]] * Output Bounds: * out1: [0x0 ~> 0xffffffff] * out2: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff]] * out3: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff]] * out4: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff]] * out5: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff]] */ static void fiat_np256_divstep(uint32_t* out1, uint32_t out2[9], uint32_t out3[9], uint32_t out4[8], uint32_t out5[8], uint32_t arg1, const uint32_t arg2[9], const uint32_t arg3[9], const uint32_t arg4[8], const uint32_t arg5[8]) { uint32_t x1; fiat_np256_uint1 x2; fiat_np256_uint1 x3; uint32_t x4; fiat_np256_uint1 x5; uint32_t x6; uint32_t x7; uint32_t x8; uint32_t x9; uint32_t x10; uint32_t x11; uint32_t x12; uint32_t x13; uint32_t x14; uint32_t x15; uint32_t x16; fiat_np256_uint1 x17; uint32_t x18; fiat_np256_uint1 x19; uint32_t x20; fiat_np256_uint1 x21; uint32_t x22; fiat_np256_uint1 x23; uint32_t x24; fiat_np256_uint1 x25; uint32_t x26; fiat_np256_uint1 x27; uint32_t x28; fiat_np256_uint1 x29; uint32_t x30; fiat_np256_uint1 x31; uint32_t x32; fiat_np256_uint1 x33; uint32_t x34; uint32_t x35; uint32_t x36; uint32_t x37; uint32_t x38; uint32_t x39; uint32_t x40; uint32_t x41; uint32_t x42; uint32_t x43; uint32_t x44; uint32_t x45; uint32_t x46; uint32_t x47; uint32_t x48; uint32_t x49; uint32_t x50; uint32_t x51; fiat_np256_uint1 x52; uint32_t x53; fiat_np256_uint1 x54; uint32_t x55; fiat_np256_uint1 x56; uint32_t x57; fiat_np256_uint1 x58; uint32_t x59; fiat_np256_uint1 x60; uint32_t x61; fiat_np256_uint1 x62; uint32_t x63; fiat_np256_uint1 x64; uint32_t x65; fiat_np256_uint1 x66; uint32_t x67; fiat_np256_uint1 x68; uint32_t x69; fiat_np256_uint1 x70; uint32_t x71; fiat_np256_uint1 x72; uint32_t x73; fiat_np256_uint1 x74; uint32_t x75; fiat_np256_uint1 x76; uint32_t x77; fiat_np256_uint1 x78; uint32_t x79; fiat_np256_uint1 x80; uint32_t x81; fiat_np256_uint1 x82; uint32_t x83; fiat_np256_uint1 x84; uint32_t x85; uint32_t x86; uint32_t x87; uint32_t x88; uint32_t x89; uint32_t x90; uint32_t x91; uint32_t x92; uint32_t x93; fiat_np256_uint1 x94; uint32_t x95; fiat_np256_uint1 x96; uint32_t x97; fiat_np256_uint1 x98; uint32_t x99; fiat_np256_uint1 x100; uint32_t x101; fiat_np256_uint1 x102; uint32_t x103; fiat_np256_uint1 x104; uint32_t x105; fiat_np256_uint1 x106; uint32_t x107; fiat_np256_uint1 x108; uint32_t x109; uint32_t x110; fiat_np256_uint1 x111; uint32_t x112; fiat_np256_uint1 x113; uint32_t x114; fiat_np256_uint1 x115; uint32_t x116; fiat_np256_uint1 x117; uint32_t x118; fiat_np256_uint1 x119; uint32_t x120; fiat_np256_uint1 x121; uint32_t x122; fiat_np256_uint1 x123; uint32_t x124; fiat_np256_uint1 x125; uint32_t x126; uint32_t x127; uint32_t x128; uint32_t x129; uint32_t x130; uint32_t x131; uint32_t x132; uint32_t x133; fiat_np256_uint1 x134; uint32_t x135; uint32_t x136; uint32_t x137; uint32_t x138; uint32_t x139; uint32_t x140; uint32_t x141; uint32_t x142; uint32_t x143; uint32_t x144; fiat_np256_uint1 x145; uint32_t x146; fiat_np256_uint1 x147; uint32_t x148; fiat_np256_uint1 x149; uint32_t x150; fiat_np256_uint1 x151; uint32_t x152; fiat_np256_uint1 x153; uint32_t x154; fiat_np256_uint1 x155; uint32_t x156; fiat_np256_uint1 x157; uint32_t x158; fiat_np256_uint1 x159; uint32_t x160; fiat_np256_uint1 x161; uint32_t x162; uint32_t x163; uint32_t x164; uint32_t x165; uint32_t x166; uint32_t x167; uint32_t x168; uint32_t x169; uint32_t x170; fiat_np256_uint1 x171; uint32_t x172; fiat_np256_uint1 x173; uint32_t x174; fiat_np256_uint1 x175; uint32_t x176; fiat_np256_uint1 x177; uint32_t x178; fiat_np256_uint1 x179; uint32_t x180; fiat_np256_uint1 x181; uint32_t x182; fiat_np256_uint1 x183; uint32_t x184; fiat_np256_uint1 x185; uint32_t x186; fiat_np256_uint1 x187; uint32_t x188; fiat_np256_uint1 x189; uint32_t x190; fiat_np256_uint1 x191; uint32_t x192; fiat_np256_uint1 x193; uint32_t x194; fiat_np256_uint1 x195; uint32_t x196; fiat_np256_uint1 x197; uint32_t x198; fiat_np256_uint1 x199; uint32_t x200; fiat_np256_uint1 x201; uint32_t x202; fiat_np256_uint1 x203; uint32_t x204; fiat_np256_uint1 x205; uint32_t x206; uint32_t x207; uint32_t x208; uint32_t x209; uint32_t x210; uint32_t x211; uint32_t x212; uint32_t x213; uint32_t x214; uint32_t x215; uint32_t x216; uint32_t x217; uint32_t x218; uint32_t x219; uint32_t x220; uint32_t x221; uint32_t x222; uint32_t x223; uint32_t x224; uint32_t x225; uint32_t x226; uint32_t x227; uint32_t x228; uint32_t x229; uint32_t x230; fiat_np256_addcarryx_u32(&x1, &x2, 0x0, (~arg1), 0x1); x3 = (fiat_np256_uint1)((fiat_np256_uint1)(x1 >> 31) & (fiat_np256_uint1)((arg3[0]) & 0x1)); fiat_np256_addcarryx_u32(&x4, &x5, 0x0, (~arg1), 0x1); fiat_np256_cmovznz_u32(&x6, x3, arg1, x4); fiat_np256_cmovznz_u32(&x7, x3, (arg2[0]), (arg3[0])); fiat_np256_cmovznz_u32(&x8, x3, (arg2[1]), (arg3[1])); fiat_np256_cmovznz_u32(&x9, x3, (arg2[2]), (arg3[2])); fiat_np256_cmovznz_u32(&x10, x3, (arg2[3]), (arg3[3])); fiat_np256_cmovznz_u32(&x11, x3, (arg2[4]), (arg3[4])); fiat_np256_cmovznz_u32(&x12, x3, (arg2[5]), (arg3[5])); fiat_np256_cmovznz_u32(&x13, x3, (arg2[6]), (arg3[6])); fiat_np256_cmovznz_u32(&x14, x3, (arg2[7]), (arg3[7])); fiat_np256_cmovznz_u32(&x15, x3, (arg2[8]), (arg3[8])); fiat_np256_addcarryx_u32(&x16, &x17, 0x0, 0x1, (~(arg2[0]))); fiat_np256_addcarryx_u32(&x18, &x19, x17, 0x0, (~(arg2[1]))); fiat_np256_addcarryx_u32(&x20, &x21, x19, 0x0, (~(arg2[2]))); fiat_np256_addcarryx_u32(&x22, &x23, x21, 0x0, (~(arg2[3]))); fiat_np256_addcarryx_u32(&x24, &x25, x23, 0x0, (~(arg2[4]))); fiat_np256_addcarryx_u32(&x26, &x27, x25, 0x0, (~(arg2[5]))); fiat_np256_addcarryx_u32(&x28, &x29, x27, 0x0, (~(arg2[6]))); fiat_np256_addcarryx_u32(&x30, &x31, x29, 0x0, (~(arg2[7]))); fiat_np256_addcarryx_u32(&x32, &x33, x31, 0x0, (~(arg2[8]))); fiat_np256_cmovznz_u32(&x34, x3, (arg3[0]), x16); fiat_np256_cmovznz_u32(&x35, x3, (arg3[1]), x18); fiat_np256_cmovznz_u32(&x36, x3, (arg3[2]), x20); fiat_np256_cmovznz_u32(&x37, x3, (arg3[3]), x22); fiat_np256_cmovznz_u32(&x38, x3, (arg3[4]), x24); fiat_np256_cmovznz_u32(&x39, x3, (arg3[5]), x26); fiat_np256_cmovznz_u32(&x40, x3, (arg3[6]), x28); fiat_np256_cmovznz_u32(&x41, x3, (arg3[7]), x30); fiat_np256_cmovznz_u32(&x42, x3, (arg3[8]), x32); fiat_np256_cmovznz_u32(&x43, x3, (arg4[0]), (arg5[0])); fiat_np256_cmovznz_u32(&x44, x3, (arg4[1]), (arg5[1])); fiat_np256_cmovznz_u32(&x45, x3, (arg4[2]), (arg5[2])); fiat_np256_cmovznz_u32(&x46, x3, (arg4[3]), (arg5[3])); fiat_np256_cmovznz_u32(&x47, x3, (arg4[4]), (arg5[4])); fiat_np256_cmovznz_u32(&x48, x3, (arg4[5]), (arg5[5])); fiat_np256_cmovznz_u32(&x49, x3, (arg4[6]), (arg5[6])); fiat_np256_cmovznz_u32(&x50, x3, (arg4[7]), (arg5[7])); fiat_np256_addcarryx_u32(&x51, &x52, 0x0, x43, x43); fiat_np256_addcarryx_u32(&x53, &x54, x52, x44, x44); fiat_np256_addcarryx_u32(&x55, &x56, x54, x45, x45); fiat_np256_addcarryx_u32(&x57, &x58, x56, x46, x46); fiat_np256_addcarryx_u32(&x59, &x60, x58, x47, x47); fiat_np256_addcarryx_u32(&x61, &x62, x60, x48, x48); fiat_np256_addcarryx_u32(&x63, &x64, x62, x49, x49); fiat_np256_addcarryx_u32(&x65, &x66, x64, x50, x50); fiat_np256_subborrowx_u32(&x67, &x68, 0x0, x51, UINT32_C(0xfc632551)); fiat_np256_subborrowx_u32(&x69, &x70, x68, x53, UINT32_C(0xf3b9cac2)); fiat_np256_subborrowx_u32(&x71, &x72, x70, x55, UINT32_C(0xa7179e84)); fiat_np256_subborrowx_u32(&x73, &x74, x72, x57, UINT32_C(0xbce6faad)); fiat_np256_subborrowx_u32(&x75, &x76, x74, x59, UINT32_C(0xffffffff)); fiat_np256_subborrowx_u32(&x77, &x78, x76, x61, UINT32_C(0xffffffff)); fiat_np256_subborrowx_u32(&x79, &x80, x78, x63, 0x0); fiat_np256_subborrowx_u32(&x81, &x82, x80, x65, UINT32_C(0xffffffff)); fiat_np256_subborrowx_u32(&x83, &x84, x82, x66, 0x0); x85 = (arg4[7]); x86 = (arg4[6]); x87 = (arg4[5]); x88 = (arg4[4]); x89 = (arg4[3]); x90 = (arg4[2]); x91 = (arg4[1]); x92 = (arg4[0]); fiat_np256_subborrowx_u32(&x93, &x94, 0x0, 0x0, x92); fiat_np256_subborrowx_u32(&x95, &x96, x94, 0x0, x91); fiat_np256_subborrowx_u32(&x97, &x98, x96, 0x0, x90); fiat_np256_subborrowx_u32(&x99, &x100, x98, 0x0, x89); fiat_np256_subborrowx_u32(&x101, &x102, x100, 0x0, x88); fiat_np256_subborrowx_u32(&x103, &x104, x102, 0x0, x87); fiat_np256_subborrowx_u32(&x105, &x106, x104, 0x0, x86); fiat_np256_subborrowx_u32(&x107, &x108, x106, 0x0, x85); fiat_np256_cmovznz_u32(&x109, x108, 0x0, UINT32_C(0xffffffff)); fiat_np256_addcarryx_u32(&x110, &x111, 0x0, x93, (x109 & UINT32_C(0xfc632551))); fiat_np256_addcarryx_u32(&x112, &x113, x111, x95, (x109 & UINT32_C(0xf3b9cac2))); fiat_np256_addcarryx_u32(&x114, &x115, x113, x97, (x109 & UINT32_C(0xa7179e84))); fiat_np256_addcarryx_u32(&x116, &x117, x115, x99, (x109 & UINT32_C(0xbce6faad))); fiat_np256_addcarryx_u32(&x118, &x119, x117, x101, x109); fiat_np256_addcarryx_u32(&x120, &x121, x119, x103, x109); fiat_np256_addcarryx_u32(&x122, &x123, x121, x105, 0x0); fiat_np256_addcarryx_u32(&x124, &x125, x123, x107, x109); fiat_np256_cmovznz_u32(&x126, x3, (arg5[0]), x110); fiat_np256_cmovznz_u32(&x127, x3, (arg5[1]), x112); fiat_np256_cmovznz_u32(&x128, x3, (arg5[2]), x114); fiat_np256_cmovznz_u32(&x129, x3, (arg5[3]), x116); fiat_np256_cmovznz_u32(&x130, x3, (arg5[4]), x118); fiat_np256_cmovznz_u32(&x131, x3, (arg5[5]), x120); fiat_np256_cmovznz_u32(&x132, x3, (arg5[6]), x122); fiat_np256_cmovznz_u32(&x133, x3, (arg5[7]), x124); x134 = (fiat_np256_uint1)(x34 & 0x1); fiat_np256_cmovznz_u32(&x135, x134, 0x0, x7); fiat_np256_cmovznz_u32(&x136, x134, 0x0, x8); fiat_np256_cmovznz_u32(&x137, x134, 0x0, x9); fiat_np256_cmovznz_u32(&x138, x134, 0x0, x10); fiat_np256_cmovznz_u32(&x139, x134, 0x0, x11); fiat_np256_cmovznz_u32(&x140, x134, 0x0, x12); fiat_np256_cmovznz_u32(&x141, x134, 0x0, x13); fiat_np256_cmovznz_u32(&x142, x134, 0x0, x14); fiat_np256_cmovznz_u32(&x143, x134, 0x0, x15); fiat_np256_addcarryx_u32(&x144, &x145, 0x0, x34, x135); fiat_np256_addcarryx_u32(&x146, &x147, x145, x35, x136); fiat_np256_addcarryx_u32(&x148, &x149, x147, x36, x137); fiat_np256_addcarryx_u32(&x150, &x151, x149, x37, x138); fiat_np256_addcarryx_u32(&x152, &x153, x151, x38, x139); fiat_np256_addcarryx_u32(&x154, &x155, x153, x39, x140); fiat_np256_addcarryx_u32(&x156, &x157, x155, x40, x141); fiat_np256_addcarryx_u32(&x158, &x159, x157, x41, x142); fiat_np256_addcarryx_u32(&x160, &x161, x159, x42, x143); fiat_np256_cmovznz_u32(&x162, x134, 0x0, x43); fiat_np256_cmovznz_u32(&x163, x134, 0x0, x44); fiat_np256_cmovznz_u32(&x164, x134, 0x0, x45); fiat_np256_cmovznz_u32(&x165, x134, 0x0, x46); fiat_np256_cmovznz_u32(&x166, x134, 0x0, x47); fiat_np256_cmovznz_u32(&x167, x134, 0x0, x48); fiat_np256_cmovznz_u32(&x168, x134, 0x0, x49); fiat_np256_cmovznz_u32(&x169, x134, 0x0, x50); fiat_np256_addcarryx_u32(&x170, &x171, 0x0, x126, x162); fiat_np256_addcarryx_u32(&x172, &x173, x171, x127, x163); fiat_np256_addcarryx_u32(&x174, &x175, x173, x128, x164); fiat_np256_addcarryx_u32(&x176, &x177, x175, x129, x165); fiat_np256_addcarryx_u32(&x178, &x179, x177, x130, x166); fiat_np256_addcarryx_u32(&x180, &x181, x179, x131, x167); fiat_np256_addcarryx_u32(&x182, &x183, x181, x132, x168); fiat_np256_addcarryx_u32(&x184, &x185, x183, x133, x169); fiat_np256_subborrowx_u32(&x186, &x187, 0x0, x170, UINT32_C(0xfc632551)); fiat_np256_subborrowx_u32(&x188, &x189, x187, x172, UINT32_C(0xf3b9cac2)); fiat_np256_subborrowx_u32(&x190, &x191, x189, x174, UINT32_C(0xa7179e84)); fiat_np256_subborrowx_u32(&x192, &x193, x191, x176, UINT32_C(0xbce6faad)); fiat_np256_subborrowx_u32(&x194, &x195, x193, x178, UINT32_C(0xffffffff)); fiat_np256_subborrowx_u32(&x196, &x197, x195, x180, UINT32_C(0xffffffff)); fiat_np256_subborrowx_u32(&x198, &x199, x197, x182, 0x0); fiat_np256_subborrowx_u32(&x200, &x201, x199, x184, UINT32_C(0xffffffff)); fiat_np256_subborrowx_u32(&x202, &x203, x201, x185, 0x0); fiat_np256_addcarryx_u32(&x204, &x205, 0x0, x6, 0x1); x206 = ((x144 >> 1) | ((x146 << 31) & UINT32_C(0xffffffff))); x207 = ((x146 >> 1) | ((x148 << 31) & UINT32_C(0xffffffff))); x208 = ((x148 >> 1) | ((x150 << 31) & UINT32_C(0xffffffff))); x209 = ((x150 >> 1) | ((x152 << 31) & UINT32_C(0xffffffff))); x210 = ((x152 >> 1) | ((x154 << 31) & UINT32_C(0xffffffff))); x211 = ((x154 >> 1) | ((x156 << 31) & UINT32_C(0xffffffff))); x212 = ((x156 >> 1) | ((x158 << 31) & UINT32_C(0xffffffff))); x213 = ((x158 >> 1) | ((x160 << 31) & UINT32_C(0xffffffff))); x214 = ((x160 & UINT32_C(0x80000000)) | (x160 >> 1)); fiat_np256_cmovznz_u32(&x215, x84, x67, x51); fiat_np256_cmovznz_u32(&x216, x84, x69, x53); fiat_np256_cmovznz_u32(&x217, x84, x71, x55); fiat_np256_cmovznz_u32(&x218, x84, x73, x57); fiat_np256_cmovznz_u32(&x219, x84, x75, x59); fiat_np256_cmovznz_u32(&x220, x84, x77, x61); fiat_np256_cmovznz_u32(&x221, x84, x79, x63); fiat_np256_cmovznz_u32(&x222, x84, x81, x65); fiat_np256_cmovznz_u32(&x223, x203, x186, x170); fiat_np256_cmovznz_u32(&x224, x203, x188, x172); fiat_np256_cmovznz_u32(&x225, x203, x190, x174); fiat_np256_cmovznz_u32(&x226, x203, x192, x176); fiat_np256_cmovznz_u32(&x227, x203, x194, x178); fiat_np256_cmovznz_u32(&x228, x203, x196, x180); fiat_np256_cmovznz_u32(&x229, x203, x198, x182); fiat_np256_cmovznz_u32(&x230, x203, x200, x184); *out1 = x204; out2[0] = x7; out2[1] = x8; out2[2] = x9; out2[3] = x10; out2[4] = x11; out2[5] = x12; out2[6] = x13; out2[7] = x14; out2[8] = x15; out3[0] = x206; out3[1] = x207; out3[2] = x208; out3[3] = x209; out3[4] = x210; out3[5] = x211; out3[6] = x212; out3[7] = x213; out3[8] = x214; out4[0] = x215; out4[1] = x216; out4[2] = x217; out4[3] = x218; out4[4] = x219; out4[5] = x220; out4[6] = x221; out4[7] = x222; out5[0] = x223; out5[1] = x224; out5[2] = x225; out5[3] = x226; out5[4] = x227; out5[5] = x228; out5[6] = x229; out5[7] = x230; } /* * The function fiat_np256_to_bytes serializes a field element NOT in the Montgomery domain to bytes in little-endian order. * * Preconditions: * 0 ≤ eval arg1 < m * Postconditions: * out1 = map (λ x, ⌊((eval arg1 mod m) mod 2^(8 * (x + 1))) / 2^(8 * x)⌋) [0..31] * * Input Bounds: * arg1: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff]] * Output Bounds: * out1: [[0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff]] */ static void fiat_np256_to_bytes(uint8_t out1[32], const uint32_t arg1[8]) { uint32_t x1; uint32_t x2; uint32_t x3; uint32_t x4; uint32_t x5; uint32_t x6; uint32_t x7; uint32_t x8; uint8_t x9; uint32_t x10; uint8_t x11; uint32_t x12; uint8_t x13; uint8_t x14; uint8_t x15; uint32_t x16; uint8_t x17; uint32_t x18; uint8_t x19; uint8_t x20; uint8_t x21; uint32_t x22; uint8_t x23; uint32_t x24; uint8_t x25; uint8_t x26; uint8_t x27; uint32_t x28; uint8_t x29; uint32_t x30; uint8_t x31; uint8_t x32; uint8_t x33; uint32_t x34; uint8_t x35; uint32_t x36; uint8_t x37; uint8_t x38; uint8_t x39; uint32_t x40; uint8_t x41; uint32_t x42; uint8_t x43; uint8_t x44; uint8_t x45; uint32_t x46; uint8_t x47; uint32_t x48; uint8_t x49; uint8_t x50; uint8_t x51; uint32_t x52; uint8_t x53; uint32_t x54; uint8_t x55; uint8_t x56; x1 = (arg1[7]); x2 = (arg1[6]); x3 = (arg1[5]); x4 = (arg1[4]); x5 = (arg1[3]); x6 = (arg1[2]); x7 = (arg1[1]); x8 = (arg1[0]); x9 = (uint8_t)(x8 & UINT8_C(0xff)); x10 = (x8 >> 8); x11 = (uint8_t)(x10 & UINT8_C(0xff)); x12 = (x10 >> 8); x13 = (uint8_t)(x12 & UINT8_C(0xff)); x14 = (uint8_t)(x12 >> 8); x15 = (uint8_t)(x7 & UINT8_C(0xff)); x16 = (x7 >> 8); x17 = (uint8_t)(x16 & UINT8_C(0xff)); x18 = (x16 >> 8); x19 = (uint8_t)(x18 & UINT8_C(0xff)); x20 = (uint8_t)(x18 >> 8); x21 = (uint8_t)(x6 & UINT8_C(0xff)); x22 = (x6 >> 8); x23 = (uint8_t)(x22 & UINT8_C(0xff)); x24 = (x22 >> 8); x25 = (uint8_t)(x24 & UINT8_C(0xff)); x26 = (uint8_t)(x24 >> 8); x27 = (uint8_t)(x5 & UINT8_C(0xff)); x28 = (x5 >> 8); x29 = (uint8_t)(x28 & UINT8_C(0xff)); x30 = (x28 >> 8); x31 = (uint8_t)(x30 & UINT8_C(0xff)); x32 = (uint8_t)(x30 >> 8); x33 = (uint8_t)(x4 & UINT8_C(0xff)); x34 = (x4 >> 8); x35 = (uint8_t)(x34 & UINT8_C(0xff)); x36 = (x34 >> 8); x37 = (uint8_t)(x36 & UINT8_C(0xff)); x38 = (uint8_t)(x36 >> 8); x39 = (uint8_t)(x3 & UINT8_C(0xff)); x40 = (x3 >> 8); x41 = (uint8_t)(x40 & UINT8_C(0xff)); x42 = (x40 >> 8); x43 = (uint8_t)(x42 & UINT8_C(0xff)); x44 = (uint8_t)(x42 >> 8); x45 = (uint8_t)(x2 & UINT8_C(0xff)); x46 = (x2 >> 8); x47 = (uint8_t)(x46 & UINT8_C(0xff)); x48 = (x46 >> 8); x49 = (uint8_t)(x48 & UINT8_C(0xff)); x50 = (uint8_t)(x48 >> 8); x51 = (uint8_t)(x1 & UINT8_C(0xff)); x52 = (x1 >> 8); x53 = (uint8_t)(x52 & UINT8_C(0xff)); x54 = (x52 >> 8); x55 = (uint8_t)(x54 & UINT8_C(0xff)); x56 = (uint8_t)(x54 >> 8); out1[0] = x9; out1[1] = x11; out1[2] = x13; out1[3] = x14; out1[4] = x15; out1[5] = x17; out1[6] = x19; out1[7] = x20; out1[8] = x21; out1[9] = x23; out1[10] = x25; out1[11] = x26; out1[12] = x27; out1[13] = x29; out1[14] = x31; out1[15] = x32; out1[16] = x33; out1[17] = x35; out1[18] = x37; out1[19] = x38; out1[20] = x39; out1[21] = x41; out1[22] = x43; out1[23] = x44; out1[24] = x45; out1[25] = x47; out1[26] = x49; out1[27] = x50; out1[28] = x51; out1[29] = x53; out1[30] = x55; out1[31] = x56; } /* * The function fiat_np256_from_bytes deserializes a field element NOT in the Montgomery domain from bytes in little-endian order. * * Preconditions: * 0 ≤ bytes_eval arg1 < m * Postconditions: * eval out1 mod m = bytes_eval arg1 mod m * 0 ≤ eval out1 < m * * Input Bounds: * arg1: [[0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff]] * Output Bounds: * out1: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff]] */ static void fiat_np256_from_bytes(uint32_t out1[8], const uint8_t arg1[32]) { uint32_t x1; uint32_t x2; uint32_t x3; uint8_t x4; uint32_t x5; uint32_t x6; uint32_t x7; uint8_t x8; uint32_t x9; uint32_t x10; uint32_t x11; uint8_t x12; uint32_t x13; uint32_t x14; uint32_t x15; uint8_t x16; uint32_t x17; uint32_t x18; uint32_t x19; uint8_t x20; uint32_t x21; uint32_t x22; uint32_t x23; uint8_t x24; uint32_t x25; uint32_t x26; uint32_t x27; uint8_t x28; uint32_t x29; uint32_t x30; uint32_t x31; uint8_t x32; uint32_t x33; uint32_t x34; uint32_t x35; uint32_t x36; uint32_t x37; uint32_t x38; uint32_t x39; uint32_t x40; uint32_t x41; uint32_t x42; uint32_t x43; uint32_t x44; uint32_t x45; uint32_t x46; uint32_t x47; uint32_t x48; uint32_t x49; uint32_t x50; uint32_t x51; uint32_t x52; uint32_t x53; uint32_t x54; uint32_t x55; uint32_t x56; x1 = ((uint32_t)(arg1[31]) << 24); x2 = ((uint32_t)(arg1[30]) << 16); x3 = ((uint32_t)(arg1[29]) << 8); x4 = (arg1[28]); x5 = ((uint32_t)(arg1[27]) << 24); x6 = ((uint32_t)(arg1[26]) << 16); x7 = ((uint32_t)(arg1[25]) << 8); x8 = (arg1[24]); x9 = ((uint32_t)(arg1[23]) << 24); x10 = ((uint32_t)(arg1[22]) << 16); x11 = ((uint32_t)(arg1[21]) << 8); x12 = (arg1[20]); x13 = ((uint32_t)(arg1[19]) << 24); x14 = ((uint32_t)(arg1[18]) << 16); x15 = ((uint32_t)(arg1[17]) << 8); x16 = (arg1[16]); x17 = ((uint32_t)(arg1[15]) << 24); x18 = ((uint32_t)(arg1[14]) << 16); x19 = ((uint32_t)(arg1[13]) << 8); x20 = (arg1[12]); x21 = ((uint32_t)(arg1[11]) << 24); x22 = ((uint32_t)(arg1[10]) << 16); x23 = ((uint32_t)(arg1[9]) << 8); x24 = (arg1[8]); x25 = ((uint32_t)(arg1[7]) << 24); x26 = ((uint32_t)(arg1[6]) << 16); x27 = ((uint32_t)(arg1[5]) << 8); x28 = (arg1[4]); x29 = ((uint32_t)(arg1[3]) << 24); x30 = ((uint32_t)(arg1[2]) << 16); x31 = ((uint32_t)(arg1[1]) << 8); x32 = (arg1[0]); x33 = (x31 + (uint32_t)x32); x34 = (x30 + x33); x35 = (x29 + x34); x36 = (x27 + (uint32_t)x28); x37 = (x26 + x36); x38 = (x25 + x37); x39 = (x23 + (uint32_t)x24); x40 = (x22 + x39); x41 = (x21 + x40); x42 = (x19 + (uint32_t)x20); x43 = (x18 + x42); x44 = (x17 + x43); x45 = (x15 + (uint32_t)x16); x46 = (x14 + x45); x47 = (x13 + x46); x48 = (x11 + (uint32_t)x12); x49 = (x10 + x48); x50 = (x9 + x49); x51 = (x7 + (uint32_t)x8); x52 = (x6 + x51); x53 = (x5 + x52); x54 = (x3 + (uint32_t)x4); x55 = (x2 + x54); x56 = (x1 + x55); out1[0] = x35; out1[1] = x38; out1[2] = x41; out1[3] = x44; out1[4] = x47; out1[5] = x50; out1[6] = x53; out1[7] = x56; } /* * The function fiat_np256_selectznz is a multi-limb conditional select. * * Postconditions: * out1 = (if arg1 = 0 then arg2 else arg3) * * Input Bounds: * arg1: [0x0 ~> 0x1] * arg2: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff]] * arg3: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff]] * Output Bounds: * out1: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff]] */ static void fiat_np256_selectznz(uint32_t out1[8], fiat_np256_uint1 arg1, const uint32_t arg2[8], const uint32_t arg3[8]) { uint32_t x1; uint32_t x2; uint32_t x3; uint32_t x4; uint32_t x5; uint32_t x6; uint32_t x7; uint32_t x8; fiat_np256_cmovznz_u32(&x1, arg1, (arg2[0]), (arg3[0])); fiat_np256_cmovznz_u32(&x2, arg1, (arg2[1]), (arg3[1])); fiat_np256_cmovznz_u32(&x3, arg1, (arg2[2]), (arg3[2])); fiat_np256_cmovznz_u32(&x4, arg1, (arg2[3]), (arg3[3])); fiat_np256_cmovznz_u32(&x5, arg1, (arg2[4]), (arg3[4])); fiat_np256_cmovznz_u32(&x6, arg1, (arg2[5]), (arg3[5])); fiat_np256_cmovznz_u32(&x7, arg1, (arg2[6]), (arg3[6])); fiat_np256_cmovznz_u32(&x8, arg1, (arg2[7]), (arg3[7])); out1[0] = x1; out1[1] = x2; out1[2] = x3; out1[3] = x4; out1[4] = x5; out1[5] = x6; out1[6] = x7; out1[7] = x8; }
mirage-crypto
2.0.2
ISC
https://github.com/mirage/mirage-crypto
git+https://github.com/mirage/mirage-crypto.git
h
mirage-crypto-2.0.2/ec/native/np256_64.h
/* Autogenerated: '../fiat-crypto/src/ExtractionOCaml/word_by_word_montgomery' --static --use-value-barrier --inline-internal np256 64 0xffffffff00000000ffffffffffffffffbce6faada7179e84f3b9cac2fc632551 mul add opp from_montgomery to_montgomery one msat divstep_precomp divstep to_bytes from_bytes selectznz */ /* curve description: np256 */ /* machine_wordsize = 64 (from "64") */ /* requested operations: mul, add, opp, from_montgomery, to_montgomery, one, msat, divstep_precomp, divstep, to_bytes, from_bytes, selectznz */ /* m = 0xffffffff00000000ffffffffffffffffbce6faada7179e84f3b9cac2fc632551 (from "0xffffffff00000000ffffffffffffffffbce6faada7179e84f3b9cac2fc632551") */ /* */ /* NOTE: In addition to the bounds specified above each function, all */ /* functions synthesized for this Montgomery arithmetic require the */ /* input to be strictly less than the prime modulus (m), and also */ /* require the input to be in the unique saturated representation. */ /* All functions also ensure that these two properties are true of */ /* return values. */ /* */ /* Computed values: */ /* eval z = z[0] + (z[1] << 64) + (z[2] << 128) + (z[3] << 192) */ /* bytes_eval z = z[0] + (z[1] << 8) + (z[2] << 16) + (z[3] << 24) + (z[4] << 32) + (z[5] << 40) + (z[6] << 48) + (z[7] << 56) + (z[8] << 64) + (z[9] << 72) + (z[10] << 80) + (z[11] << 88) + (z[12] << 96) + (z[13] << 104) + (z[14] << 112) + (z[15] << 120) + (z[16] << 128) + (z[17] << 136) + (z[18] << 144) + (z[19] << 152) + (z[20] << 160) + (z[21] << 168) + (z[22] << 176) + (z[23] << 184) + (z[24] << 192) + (z[25] << 200) + (z[26] << 208) + (z[27] << 216) + (z[28] << 224) + (z[29] << 232) + (z[30] << 240) + (z[31] << 248) */ /* twos_complement_eval z = let x1 := z[0] + (z[1] << 64) + (z[2] << 128) + (z[3] << 192) in */ /* if x1 & (2^256-1) < 2^255 then x1 & (2^256-1) else (x1 & (2^256-1)) - 2^256 */ #include <stdint.h> typedef unsigned char fiat_np256_uint1; typedef signed char fiat_np256_int1; #if defined(__GNUC__) || defined(__clang__) # define FIAT_NP256_FIAT_EXTENSION __extension__ # define FIAT_NP256_FIAT_INLINE __inline__ #else # define FIAT_NP256_FIAT_EXTENSION # define FIAT_NP256_FIAT_INLINE #endif FIAT_NP256_FIAT_EXTENSION typedef signed __int128 fiat_np256_int128; FIAT_NP256_FIAT_EXTENSION typedef unsigned __int128 fiat_np256_uint128; /* The type fiat_np256_montgomery_domain_field_element is a field element in the Montgomery domain. */ /* Bounds: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]] */ typedef uint64_t fiat_np256_montgomery_domain_field_element[4]; /* The type fiat_np256_non_montgomery_domain_field_element is a field element NOT in the Montgomery domain. */ /* Bounds: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]] */ typedef uint64_t fiat_np256_non_montgomery_domain_field_element[4]; #if (-1 & 3) != 3 #error "This code only works on a two's complement system" #endif #if !defined(FIAT_NP256_NO_ASM) && (defined(__GNUC__) || defined(__clang__)) static __inline__ uint64_t fiat_np256_value_barrier_u64(uint64_t a) { __asm__("" : "+r"(a) : /* no inputs */); return a; } #else # define fiat_np256_value_barrier_u64(x) (x) #endif /* * The function fiat_np256_addcarryx_u64 is an addition with carry. * * Postconditions: * out1 = (arg1 + arg2 + arg3) mod 2^64 * out2 = ⌊(arg1 + arg2 + arg3) / 2^64⌋ * * Input Bounds: * arg1: [0x0 ~> 0x1] * arg2: [0x0 ~> 0xffffffffffffffff] * arg3: [0x0 ~> 0xffffffffffffffff] * Output Bounds: * out1: [0x0 ~> 0xffffffffffffffff] * out2: [0x0 ~> 0x1] */ static FIAT_NP256_FIAT_INLINE void fiat_np256_addcarryx_u64(uint64_t* out1, fiat_np256_uint1* out2, fiat_np256_uint1 arg1, uint64_t arg2, uint64_t arg3) { fiat_np256_uint128 x1; uint64_t x2; fiat_np256_uint1 x3; x1 = ((arg1 + (fiat_np256_uint128)arg2) + arg3); x2 = (uint64_t)(x1 & UINT64_C(0xffffffffffffffff)); x3 = (fiat_np256_uint1)(x1 >> 64); *out1 = x2; *out2 = x3; } /* * The function fiat_np256_subborrowx_u64 is a subtraction with borrow. * * Postconditions: * out1 = (-arg1 + arg2 + -arg3) mod 2^64 * out2 = -⌊(-arg1 + arg2 + -arg3) / 2^64⌋ * * Input Bounds: * arg1: [0x0 ~> 0x1] * arg2: [0x0 ~> 0xffffffffffffffff] * arg3: [0x0 ~> 0xffffffffffffffff] * Output Bounds: * out1: [0x0 ~> 0xffffffffffffffff] * out2: [0x0 ~> 0x1] */ static FIAT_NP256_FIAT_INLINE void fiat_np256_subborrowx_u64(uint64_t* out1, fiat_np256_uint1* out2, fiat_np256_uint1 arg1, uint64_t arg2, uint64_t arg3) { fiat_np256_int128 x1; fiat_np256_int1 x2; uint64_t x3; x1 = ((arg2 - (fiat_np256_int128)arg1) - arg3); x2 = (fiat_np256_int1)(x1 >> 64); x3 = (uint64_t)(x1 & UINT64_C(0xffffffffffffffff)); *out1 = x3; *out2 = (fiat_np256_uint1)(0x0 - x2); } /* * The function fiat_np256_mulx_u64 is a multiplication, returning the full double-width result. * * Postconditions: * out1 = (arg1 * arg2) mod 2^64 * out2 = ⌊arg1 * arg2 / 2^64⌋ * * Input Bounds: * arg1: [0x0 ~> 0xffffffffffffffff] * arg2: [0x0 ~> 0xffffffffffffffff] * Output Bounds: * out1: [0x0 ~> 0xffffffffffffffff] * out2: [0x0 ~> 0xffffffffffffffff] */ static FIAT_NP256_FIAT_INLINE void fiat_np256_mulx_u64(uint64_t* out1, uint64_t* out2, uint64_t arg1, uint64_t arg2) { fiat_np256_uint128 x1; uint64_t x2; uint64_t x3; x1 = ((fiat_np256_uint128)arg1 * arg2); x2 = (uint64_t)(x1 & UINT64_C(0xffffffffffffffff)); x3 = (uint64_t)(x1 >> 64); *out1 = x2; *out2 = x3; } /* * The function fiat_np256_cmovznz_u64 is a single-word conditional move. * * Postconditions: * out1 = (if arg1 = 0 then arg2 else arg3) * * Input Bounds: * arg1: [0x0 ~> 0x1] * arg2: [0x0 ~> 0xffffffffffffffff] * arg3: [0x0 ~> 0xffffffffffffffff] * Output Bounds: * out1: [0x0 ~> 0xffffffffffffffff] */ static FIAT_NP256_FIAT_INLINE void fiat_np256_cmovznz_u64(uint64_t* out1, fiat_np256_uint1 arg1, uint64_t arg2, uint64_t arg3) { fiat_np256_uint1 x1; uint64_t x2; uint64_t x3; x1 = (!(!arg1)); x2 = ((fiat_np256_int1)(0x0 - x1) & UINT64_C(0xffffffffffffffff)); x3 = ((fiat_np256_value_barrier_u64(x2) & arg3) | (fiat_np256_value_barrier_u64((~x2)) & arg2)); *out1 = x3; } /* * The function fiat_np256_mul multiplies two field elements in the Montgomery domain. * * Preconditions: * 0 ≤ eval arg1 < m * 0 ≤ eval arg2 < m * Postconditions: * eval (from_montgomery out1) mod m = (eval (from_montgomery arg1) * eval (from_montgomery arg2)) mod m * 0 ≤ eval out1 < m * */ static void fiat_np256_mul(fiat_np256_montgomery_domain_field_element out1, const fiat_np256_montgomery_domain_field_element arg1, const fiat_np256_montgomery_domain_field_element arg2) { uint64_t x1; uint64_t x2; uint64_t x3; uint64_t x4; uint64_t x5; uint64_t x6; uint64_t x7; uint64_t x8; uint64_t x9; uint64_t x10; uint64_t x11; uint64_t x12; uint64_t x13; fiat_np256_uint1 x14; uint64_t x15; fiat_np256_uint1 x16; uint64_t x17; fiat_np256_uint1 x18; uint64_t x19; uint64_t x20; uint64_t x21; uint64_t x22; uint64_t x23; uint64_t x24; uint64_t x25; uint64_t x26; uint64_t x27; uint64_t x28; uint64_t x29; uint64_t x30; fiat_np256_uint1 x31; uint64_t x32; fiat_np256_uint1 x33; uint64_t x34; fiat_np256_uint1 x35; uint64_t x36; uint64_t x37; fiat_np256_uint1 x38; uint64_t x39; fiat_np256_uint1 x40; uint64_t x41; fiat_np256_uint1 x42; uint64_t x43; fiat_np256_uint1 x44; uint64_t x45; fiat_np256_uint1 x46; uint64_t x47; uint64_t x48; uint64_t x49; uint64_t x50; uint64_t x51; uint64_t x52; uint64_t x53; uint64_t x54; uint64_t x55; fiat_np256_uint1 x56; uint64_t x57; fiat_np256_uint1 x58; uint64_t x59; fiat_np256_uint1 x60; uint64_t x61; uint64_t x62; fiat_np256_uint1 x63; uint64_t x64; fiat_np256_uint1 x65; uint64_t x66; fiat_np256_uint1 x67; uint64_t x68; fiat_np256_uint1 x69; uint64_t x70; fiat_np256_uint1 x71; uint64_t x72; uint64_t x73; uint64_t x74; uint64_t x75; uint64_t x76; uint64_t x77; uint64_t x78; uint64_t x79; uint64_t x80; uint64_t x81; uint64_t x82; fiat_np256_uint1 x83; uint64_t x84; fiat_np256_uint1 x85; uint64_t x86; fiat_np256_uint1 x87; uint64_t x88; uint64_t x89; fiat_np256_uint1 x90; uint64_t x91; fiat_np256_uint1 x92; uint64_t x93; fiat_np256_uint1 x94; uint64_t x95; fiat_np256_uint1 x96; uint64_t x97; fiat_np256_uint1 x98; uint64_t x99; uint64_t x100; uint64_t x101; uint64_t x102; uint64_t x103; uint64_t x104; uint64_t x105; uint64_t x106; uint64_t x107; uint64_t x108; fiat_np256_uint1 x109; uint64_t x110; fiat_np256_uint1 x111; uint64_t x112; fiat_np256_uint1 x113; uint64_t x114; uint64_t x115; fiat_np256_uint1 x116; uint64_t x117; fiat_np256_uint1 x118; uint64_t x119; fiat_np256_uint1 x120; uint64_t x121; fiat_np256_uint1 x122; uint64_t x123; fiat_np256_uint1 x124; uint64_t x125; uint64_t x126; uint64_t x127; uint64_t x128; uint64_t x129; uint64_t x130; uint64_t x131; uint64_t x132; uint64_t x133; uint64_t x134; uint64_t x135; fiat_np256_uint1 x136; uint64_t x137; fiat_np256_uint1 x138; uint64_t x139; fiat_np256_uint1 x140; uint64_t x141; uint64_t x142; fiat_np256_uint1 x143; uint64_t x144; fiat_np256_uint1 x145; uint64_t x146; fiat_np256_uint1 x147; uint64_t x148; fiat_np256_uint1 x149; uint64_t x150; fiat_np256_uint1 x151; uint64_t x152; uint64_t x153; uint64_t x154; uint64_t x155; uint64_t x156; uint64_t x157; uint64_t x158; uint64_t x159; uint64_t x160; uint64_t x161; fiat_np256_uint1 x162; uint64_t x163; fiat_np256_uint1 x164; uint64_t x165; fiat_np256_uint1 x166; uint64_t x167; uint64_t x168; fiat_np256_uint1 x169; uint64_t x170; fiat_np256_uint1 x171; uint64_t x172; fiat_np256_uint1 x173; uint64_t x174; fiat_np256_uint1 x175; uint64_t x176; fiat_np256_uint1 x177; uint64_t x178; uint64_t x179; uint64_t x180; uint64_t x181; uint64_t x182; uint64_t x183; uint64_t x184; uint64_t x185; uint64_t x186; uint64_t x187; uint64_t x188; fiat_np256_uint1 x189; uint64_t x190; fiat_np256_uint1 x191; uint64_t x192; fiat_np256_uint1 x193; uint64_t x194; uint64_t x195; fiat_np256_uint1 x196; uint64_t x197; fiat_np256_uint1 x198; uint64_t x199; fiat_np256_uint1 x200; uint64_t x201; fiat_np256_uint1 x202; uint64_t x203; fiat_np256_uint1 x204; uint64_t x205; uint64_t x206; fiat_np256_uint1 x207; uint64_t x208; fiat_np256_uint1 x209; uint64_t x210; fiat_np256_uint1 x211; uint64_t x212; fiat_np256_uint1 x213; uint64_t x214; fiat_np256_uint1 x215; uint64_t x216; uint64_t x217; uint64_t x218; uint64_t x219; x1 = (arg1[1]); x2 = (arg1[2]); x3 = (arg1[3]); x4 = (arg1[0]); fiat_np256_mulx_u64(&x5, &x6, x4, (arg2[3])); fiat_np256_mulx_u64(&x7, &x8, x4, (arg2[2])); fiat_np256_mulx_u64(&x9, &x10, x4, (arg2[1])); fiat_np256_mulx_u64(&x11, &x12, x4, (arg2[0])); fiat_np256_addcarryx_u64(&x13, &x14, 0x0, x12, x9); fiat_np256_addcarryx_u64(&x15, &x16, x14, x10, x7); fiat_np256_addcarryx_u64(&x17, &x18, x16, x8, x5); x19 = (x18 + x6); fiat_np256_mulx_u64(&x20, &x21, x11, UINT64_C(0xccd1c8aaee00bc4f)); fiat_np256_mulx_u64(&x22, &x23, x20, UINT64_C(0xffffffff00000000)); fiat_np256_mulx_u64(&x24, &x25, x20, UINT64_C(0xffffffffffffffff)); fiat_np256_mulx_u64(&x26, &x27, x20, UINT64_C(0xbce6faada7179e84)); fiat_np256_mulx_u64(&x28, &x29, x20, UINT64_C(0xf3b9cac2fc632551)); fiat_np256_addcarryx_u64(&x30, &x31, 0x0, x29, x26); fiat_np256_addcarryx_u64(&x32, &x33, x31, x27, x24); fiat_np256_addcarryx_u64(&x34, &x35, x33, x25, x22); x36 = (x35 + x23); fiat_np256_addcarryx_u64(&x37, &x38, 0x0, x11, x28); fiat_np256_addcarryx_u64(&x39, &x40, x38, x13, x30); fiat_np256_addcarryx_u64(&x41, &x42, x40, x15, x32); fiat_np256_addcarryx_u64(&x43, &x44, x42, x17, x34); fiat_np256_addcarryx_u64(&x45, &x46, x44, x19, x36); fiat_np256_mulx_u64(&x47, &x48, x1, (arg2[3])); fiat_np256_mulx_u64(&x49, &x50, x1, (arg2[2])); fiat_np256_mulx_u64(&x51, &x52, x1, (arg2[1])); fiat_np256_mulx_u64(&x53, &x54, x1, (arg2[0])); fiat_np256_addcarryx_u64(&x55, &x56, 0x0, x54, x51); fiat_np256_addcarryx_u64(&x57, &x58, x56, x52, x49); fiat_np256_addcarryx_u64(&x59, &x60, x58, x50, x47); x61 = (x60 + x48); fiat_np256_addcarryx_u64(&x62, &x63, 0x0, x39, x53); fiat_np256_addcarryx_u64(&x64, &x65, x63, x41, x55); fiat_np256_addcarryx_u64(&x66, &x67, x65, x43, x57); fiat_np256_addcarryx_u64(&x68, &x69, x67, x45, x59); fiat_np256_addcarryx_u64(&x70, &x71, x69, x46, x61); fiat_np256_mulx_u64(&x72, &x73, x62, UINT64_C(0xccd1c8aaee00bc4f)); fiat_np256_mulx_u64(&x74, &x75, x72, UINT64_C(0xffffffff00000000)); fiat_np256_mulx_u64(&x76, &x77, x72, UINT64_C(0xffffffffffffffff)); fiat_np256_mulx_u64(&x78, &x79, x72, UINT64_C(0xbce6faada7179e84)); fiat_np256_mulx_u64(&x80, &x81, x72, UINT64_C(0xf3b9cac2fc632551)); fiat_np256_addcarryx_u64(&x82, &x83, 0x0, x81, x78); fiat_np256_addcarryx_u64(&x84, &x85, x83, x79, x76); fiat_np256_addcarryx_u64(&x86, &x87, x85, x77, x74); x88 = (x87 + x75); fiat_np256_addcarryx_u64(&x89, &x90, 0x0, x62, x80); fiat_np256_addcarryx_u64(&x91, &x92, x90, x64, x82); fiat_np256_addcarryx_u64(&x93, &x94, x92, x66, x84); fiat_np256_addcarryx_u64(&x95, &x96, x94, x68, x86); fiat_np256_addcarryx_u64(&x97, &x98, x96, x70, x88); x99 = ((uint64_t)x98 + x71); fiat_np256_mulx_u64(&x100, &x101, x2, (arg2[3])); fiat_np256_mulx_u64(&x102, &x103, x2, (arg2[2])); fiat_np256_mulx_u64(&x104, &x105, x2, (arg2[1])); fiat_np256_mulx_u64(&x106, &x107, x2, (arg2[0])); fiat_np256_addcarryx_u64(&x108, &x109, 0x0, x107, x104); fiat_np256_addcarryx_u64(&x110, &x111, x109, x105, x102); fiat_np256_addcarryx_u64(&x112, &x113, x111, x103, x100); x114 = (x113 + x101); fiat_np256_addcarryx_u64(&x115, &x116, 0x0, x91, x106); fiat_np256_addcarryx_u64(&x117, &x118, x116, x93, x108); fiat_np256_addcarryx_u64(&x119, &x120, x118, x95, x110); fiat_np256_addcarryx_u64(&x121, &x122, x120, x97, x112); fiat_np256_addcarryx_u64(&x123, &x124, x122, x99, x114); fiat_np256_mulx_u64(&x125, &x126, x115, UINT64_C(0xccd1c8aaee00bc4f)); fiat_np256_mulx_u64(&x127, &x128, x125, UINT64_C(0xffffffff00000000)); fiat_np256_mulx_u64(&x129, &x130, x125, UINT64_C(0xffffffffffffffff)); fiat_np256_mulx_u64(&x131, &x132, x125, UINT64_C(0xbce6faada7179e84)); fiat_np256_mulx_u64(&x133, &x134, x125, UINT64_C(0xf3b9cac2fc632551)); fiat_np256_addcarryx_u64(&x135, &x136, 0x0, x134, x131); fiat_np256_addcarryx_u64(&x137, &x138, x136, x132, x129); fiat_np256_addcarryx_u64(&x139, &x140, x138, x130, x127); x141 = (x140 + x128); fiat_np256_addcarryx_u64(&x142, &x143, 0x0, x115, x133); fiat_np256_addcarryx_u64(&x144, &x145, x143, x117, x135); fiat_np256_addcarryx_u64(&x146, &x147, x145, x119, x137); fiat_np256_addcarryx_u64(&x148, &x149, x147, x121, x139); fiat_np256_addcarryx_u64(&x150, &x151, x149, x123, x141); x152 = ((uint64_t)x151 + x124); fiat_np256_mulx_u64(&x153, &x154, x3, (arg2[3])); fiat_np256_mulx_u64(&x155, &x156, x3, (arg2[2])); fiat_np256_mulx_u64(&x157, &x158, x3, (arg2[1])); fiat_np256_mulx_u64(&x159, &x160, x3, (arg2[0])); fiat_np256_addcarryx_u64(&x161, &x162, 0x0, x160, x157); fiat_np256_addcarryx_u64(&x163, &x164, x162, x158, x155); fiat_np256_addcarryx_u64(&x165, &x166, x164, x156, x153); x167 = (x166 + x154); fiat_np256_addcarryx_u64(&x168, &x169, 0x0, x144, x159); fiat_np256_addcarryx_u64(&x170, &x171, x169, x146, x161); fiat_np256_addcarryx_u64(&x172, &x173, x171, x148, x163); fiat_np256_addcarryx_u64(&x174, &x175, x173, x150, x165); fiat_np256_addcarryx_u64(&x176, &x177, x175, x152, x167); fiat_np256_mulx_u64(&x178, &x179, x168, UINT64_C(0xccd1c8aaee00bc4f)); fiat_np256_mulx_u64(&x180, &x181, x178, UINT64_C(0xffffffff00000000)); fiat_np256_mulx_u64(&x182, &x183, x178, UINT64_C(0xffffffffffffffff)); fiat_np256_mulx_u64(&x184, &x185, x178, UINT64_C(0xbce6faada7179e84)); fiat_np256_mulx_u64(&x186, &x187, x178, UINT64_C(0xf3b9cac2fc632551)); fiat_np256_addcarryx_u64(&x188, &x189, 0x0, x187, x184); fiat_np256_addcarryx_u64(&x190, &x191, x189, x185, x182); fiat_np256_addcarryx_u64(&x192, &x193, x191, x183, x180); x194 = (x193 + x181); fiat_np256_addcarryx_u64(&x195, &x196, 0x0, x168, x186); fiat_np256_addcarryx_u64(&x197, &x198, x196, x170, x188); fiat_np256_addcarryx_u64(&x199, &x200, x198, x172, x190); fiat_np256_addcarryx_u64(&x201, &x202, x200, x174, x192); fiat_np256_addcarryx_u64(&x203, &x204, x202, x176, x194); x205 = ((uint64_t)x204 + x177); fiat_np256_subborrowx_u64(&x206, &x207, 0x0, x197, UINT64_C(0xf3b9cac2fc632551)); fiat_np256_subborrowx_u64(&x208, &x209, x207, x199, UINT64_C(0xbce6faada7179e84)); fiat_np256_subborrowx_u64(&x210, &x211, x209, x201, UINT64_C(0xffffffffffffffff)); fiat_np256_subborrowx_u64(&x212, &x213, x211, x203, UINT64_C(0xffffffff00000000)); fiat_np256_subborrowx_u64(&x214, &x215, x213, x205, 0x0); fiat_np256_cmovznz_u64(&x216, x215, x206, x197); fiat_np256_cmovznz_u64(&x217, x215, x208, x199); fiat_np256_cmovznz_u64(&x218, x215, x210, x201); fiat_np256_cmovznz_u64(&x219, x215, x212, x203); out1[0] = x216; out1[1] = x217; out1[2] = x218; out1[3] = x219; } /* * The function fiat_np256_add adds two field elements in the Montgomery domain. * * Preconditions: * 0 ≤ eval arg1 < m * 0 ≤ eval arg2 < m * Postconditions: * eval (from_montgomery out1) mod m = (eval (from_montgomery arg1) + eval (from_montgomery arg2)) mod m * 0 ≤ eval out1 < m * */ static void fiat_np256_add(fiat_np256_montgomery_domain_field_element out1, const fiat_np256_montgomery_domain_field_element arg1, const fiat_np256_montgomery_domain_field_element arg2) { uint64_t x1; fiat_np256_uint1 x2; uint64_t x3; fiat_np256_uint1 x4; uint64_t x5; fiat_np256_uint1 x6; uint64_t x7; fiat_np256_uint1 x8; uint64_t x9; fiat_np256_uint1 x10; uint64_t x11; fiat_np256_uint1 x12; uint64_t x13; fiat_np256_uint1 x14; uint64_t x15; fiat_np256_uint1 x16; uint64_t x17; fiat_np256_uint1 x18; uint64_t x19; uint64_t x20; uint64_t x21; uint64_t x22; fiat_np256_addcarryx_u64(&x1, &x2, 0x0, (arg1[0]), (arg2[0])); fiat_np256_addcarryx_u64(&x3, &x4, x2, (arg1[1]), (arg2[1])); fiat_np256_addcarryx_u64(&x5, &x6, x4, (arg1[2]), (arg2[2])); fiat_np256_addcarryx_u64(&x7, &x8, x6, (arg1[3]), (arg2[3])); fiat_np256_subborrowx_u64(&x9, &x10, 0x0, x1, UINT64_C(0xf3b9cac2fc632551)); fiat_np256_subborrowx_u64(&x11, &x12, x10, x3, UINT64_C(0xbce6faada7179e84)); fiat_np256_subborrowx_u64(&x13, &x14, x12, x5, UINT64_C(0xffffffffffffffff)); fiat_np256_subborrowx_u64(&x15, &x16, x14, x7, UINT64_C(0xffffffff00000000)); fiat_np256_subborrowx_u64(&x17, &x18, x16, x8, 0x0); fiat_np256_cmovznz_u64(&x19, x18, x9, x1); fiat_np256_cmovznz_u64(&x20, x18, x11, x3); fiat_np256_cmovznz_u64(&x21, x18, x13, x5); fiat_np256_cmovznz_u64(&x22, x18, x15, x7); out1[0] = x19; out1[1] = x20; out1[2] = x21; out1[3] = x22; } /* * The function fiat_np256_opp negates a field element in the Montgomery domain. * * Preconditions: * 0 ≤ eval arg1 < m * Postconditions: * eval (from_montgomery out1) mod m = -eval (from_montgomery arg1) mod m * 0 ≤ eval out1 < m * */ static void fiat_np256_opp(fiat_np256_montgomery_domain_field_element out1, const fiat_np256_montgomery_domain_field_element arg1) { uint64_t x1; fiat_np256_uint1 x2; uint64_t x3; fiat_np256_uint1 x4; uint64_t x5; fiat_np256_uint1 x6; uint64_t x7; fiat_np256_uint1 x8; uint64_t x9; uint64_t x10; fiat_np256_uint1 x11; uint64_t x12; fiat_np256_uint1 x13; uint64_t x14; fiat_np256_uint1 x15; uint64_t x16; fiat_np256_uint1 x17; fiat_np256_subborrowx_u64(&x1, &x2, 0x0, 0x0, (arg1[0])); fiat_np256_subborrowx_u64(&x3, &x4, x2, 0x0, (arg1[1])); fiat_np256_subborrowx_u64(&x5, &x6, x4, 0x0, (arg1[2])); fiat_np256_subborrowx_u64(&x7, &x8, x6, 0x0, (arg1[3])); fiat_np256_cmovznz_u64(&x9, x8, 0x0, UINT64_C(0xffffffffffffffff)); fiat_np256_addcarryx_u64(&x10, &x11, 0x0, x1, (x9 & UINT64_C(0xf3b9cac2fc632551))); fiat_np256_addcarryx_u64(&x12, &x13, x11, x3, (x9 & UINT64_C(0xbce6faada7179e84))); fiat_np256_addcarryx_u64(&x14, &x15, x13, x5, x9); fiat_np256_addcarryx_u64(&x16, &x17, x15, x7, (x9 & UINT64_C(0xffffffff00000000))); out1[0] = x10; out1[1] = x12; out1[2] = x14; out1[3] = x16; } /* * The function fiat_np256_from_montgomery translates a field element out of the Montgomery domain. * * Preconditions: * 0 ≤ eval arg1 < m * Postconditions: * eval out1 mod m = (eval arg1 * ((2^64)⁻¹ mod m)^4) mod m * 0 ≤ eval out1 < m * */ static void fiat_np256_from_montgomery(fiat_np256_non_montgomery_domain_field_element out1, const fiat_np256_montgomery_domain_field_element arg1) { uint64_t x1; uint64_t x2; uint64_t x3; uint64_t x4; uint64_t x5; uint64_t x6; uint64_t x7; uint64_t x8; uint64_t x9; uint64_t x10; uint64_t x11; uint64_t x12; fiat_np256_uint1 x13; uint64_t x14; fiat_np256_uint1 x15; uint64_t x16; fiat_np256_uint1 x17; uint64_t x18; fiat_np256_uint1 x19; uint64_t x20; fiat_np256_uint1 x21; uint64_t x22; fiat_np256_uint1 x23; uint64_t x24; fiat_np256_uint1 x25; uint64_t x26; fiat_np256_uint1 x27; uint64_t x28; fiat_np256_uint1 x29; uint64_t x30; fiat_np256_uint1 x31; uint64_t x32; uint64_t x33; uint64_t x34; uint64_t x35; uint64_t x36; uint64_t x37; uint64_t x38; uint64_t x39; uint64_t x40; uint64_t x41; uint64_t x42; fiat_np256_uint1 x43; uint64_t x44; fiat_np256_uint1 x45; uint64_t x46; fiat_np256_uint1 x47; uint64_t x48; fiat_np256_uint1 x49; uint64_t x50; fiat_np256_uint1 x51; uint64_t x52; fiat_np256_uint1 x53; uint64_t x54; fiat_np256_uint1 x55; uint64_t x56; fiat_np256_uint1 x57; uint64_t x58; fiat_np256_uint1 x59; uint64_t x60; fiat_np256_uint1 x61; uint64_t x62; uint64_t x63; uint64_t x64; uint64_t x65; uint64_t x66; uint64_t x67; uint64_t x68; uint64_t x69; uint64_t x70; uint64_t x71; uint64_t x72; fiat_np256_uint1 x73; uint64_t x74; fiat_np256_uint1 x75; uint64_t x76; fiat_np256_uint1 x77; uint64_t x78; fiat_np256_uint1 x79; uint64_t x80; fiat_np256_uint1 x81; uint64_t x82; fiat_np256_uint1 x83; uint64_t x84; fiat_np256_uint1 x85; uint64_t x86; fiat_np256_uint1 x87; uint64_t x88; fiat_np256_uint1 x89; uint64_t x90; fiat_np256_uint1 x91; uint64_t x92; uint64_t x93; uint64_t x94; uint64_t x95; uint64_t x96; uint64_t x97; uint64_t x98; uint64_t x99; uint64_t x100; uint64_t x101; uint64_t x102; fiat_np256_uint1 x103; uint64_t x104; fiat_np256_uint1 x105; uint64_t x106; fiat_np256_uint1 x107; uint64_t x108; fiat_np256_uint1 x109; uint64_t x110; fiat_np256_uint1 x111; uint64_t x112; fiat_np256_uint1 x113; uint64_t x114; fiat_np256_uint1 x115; uint64_t x116; uint64_t x117; fiat_np256_uint1 x118; uint64_t x119; fiat_np256_uint1 x120; uint64_t x121; fiat_np256_uint1 x122; uint64_t x123; fiat_np256_uint1 x124; uint64_t x125; fiat_np256_uint1 x126; uint64_t x127; uint64_t x128; uint64_t x129; uint64_t x130; x1 = (arg1[0]); fiat_np256_mulx_u64(&x2, &x3, x1, UINT64_C(0xccd1c8aaee00bc4f)); fiat_np256_mulx_u64(&x4, &x5, x2, UINT64_C(0xffffffff00000000)); fiat_np256_mulx_u64(&x6, &x7, x2, UINT64_C(0xffffffffffffffff)); fiat_np256_mulx_u64(&x8, &x9, x2, UINT64_C(0xbce6faada7179e84)); fiat_np256_mulx_u64(&x10, &x11, x2, UINT64_C(0xf3b9cac2fc632551)); fiat_np256_addcarryx_u64(&x12, &x13, 0x0, x11, x8); fiat_np256_addcarryx_u64(&x14, &x15, x13, x9, x6); fiat_np256_addcarryx_u64(&x16, &x17, x15, x7, x4); fiat_np256_addcarryx_u64(&x18, &x19, 0x0, x1, x10); fiat_np256_addcarryx_u64(&x20, &x21, x19, 0x0, x12); fiat_np256_addcarryx_u64(&x22, &x23, x21, 0x0, x14); fiat_np256_addcarryx_u64(&x24, &x25, x23, 0x0, x16); fiat_np256_addcarryx_u64(&x26, &x27, 0x0, x20, (arg1[1])); fiat_np256_addcarryx_u64(&x28, &x29, x27, x22, 0x0); fiat_np256_addcarryx_u64(&x30, &x31, x29, x24, 0x0); fiat_np256_mulx_u64(&x32, &x33, x26, UINT64_C(0xccd1c8aaee00bc4f)); fiat_np256_mulx_u64(&x34, &x35, x32, UINT64_C(0xffffffff00000000)); fiat_np256_mulx_u64(&x36, &x37, x32, UINT64_C(0xffffffffffffffff)); fiat_np256_mulx_u64(&x38, &x39, x32, UINT64_C(0xbce6faada7179e84)); fiat_np256_mulx_u64(&x40, &x41, x32, UINT64_C(0xf3b9cac2fc632551)); fiat_np256_addcarryx_u64(&x42, &x43, 0x0, x41, x38); fiat_np256_addcarryx_u64(&x44, &x45, x43, x39, x36); fiat_np256_addcarryx_u64(&x46, &x47, x45, x37, x34); fiat_np256_addcarryx_u64(&x48, &x49, 0x0, x26, x40); fiat_np256_addcarryx_u64(&x50, &x51, x49, x28, x42); fiat_np256_addcarryx_u64(&x52, &x53, x51, x30, x44); fiat_np256_addcarryx_u64(&x54, &x55, x53, (x31 + (x25 + (x17 + x5))), x46); fiat_np256_addcarryx_u64(&x56, &x57, 0x0, x50, (arg1[2])); fiat_np256_addcarryx_u64(&x58, &x59, x57, x52, 0x0); fiat_np256_addcarryx_u64(&x60, &x61, x59, x54, 0x0); fiat_np256_mulx_u64(&x62, &x63, x56, UINT64_C(0xccd1c8aaee00bc4f)); fiat_np256_mulx_u64(&x64, &x65, x62, UINT64_C(0xffffffff00000000)); fiat_np256_mulx_u64(&x66, &x67, x62, UINT64_C(0xffffffffffffffff)); fiat_np256_mulx_u64(&x68, &x69, x62, UINT64_C(0xbce6faada7179e84)); fiat_np256_mulx_u64(&x70, &x71, x62, UINT64_C(0xf3b9cac2fc632551)); fiat_np256_addcarryx_u64(&x72, &x73, 0x0, x71, x68); fiat_np256_addcarryx_u64(&x74, &x75, x73, x69, x66); fiat_np256_addcarryx_u64(&x76, &x77, x75, x67, x64); fiat_np256_addcarryx_u64(&x78, &x79, 0x0, x56, x70); fiat_np256_addcarryx_u64(&x80, &x81, x79, x58, x72); fiat_np256_addcarryx_u64(&x82, &x83, x81, x60, x74); fiat_np256_addcarryx_u64(&x84, &x85, x83, (x61 + (x55 + (x47 + x35))), x76); fiat_np256_addcarryx_u64(&x86, &x87, 0x0, x80, (arg1[3])); fiat_np256_addcarryx_u64(&x88, &x89, x87, x82, 0x0); fiat_np256_addcarryx_u64(&x90, &x91, x89, x84, 0x0); fiat_np256_mulx_u64(&x92, &x93, x86, UINT64_C(0xccd1c8aaee00bc4f)); fiat_np256_mulx_u64(&x94, &x95, x92, UINT64_C(0xffffffff00000000)); fiat_np256_mulx_u64(&x96, &x97, x92, UINT64_C(0xffffffffffffffff)); fiat_np256_mulx_u64(&x98, &x99, x92, UINT64_C(0xbce6faada7179e84)); fiat_np256_mulx_u64(&x100, &x101, x92, UINT64_C(0xf3b9cac2fc632551)); fiat_np256_addcarryx_u64(&x102, &x103, 0x0, x101, x98); fiat_np256_addcarryx_u64(&x104, &x105, x103, x99, x96); fiat_np256_addcarryx_u64(&x106, &x107, x105, x97, x94); fiat_np256_addcarryx_u64(&x108, &x109, 0x0, x86, x100); fiat_np256_addcarryx_u64(&x110, &x111, x109, x88, x102); fiat_np256_addcarryx_u64(&x112, &x113, x111, x90, x104); fiat_np256_addcarryx_u64(&x114, &x115, x113, (x91 + (x85 + (x77 + x65))), x106); x116 = (x115 + (x107 + x95)); fiat_np256_subborrowx_u64(&x117, &x118, 0x0, x110, UINT64_C(0xf3b9cac2fc632551)); fiat_np256_subborrowx_u64(&x119, &x120, x118, x112, UINT64_C(0xbce6faada7179e84)); fiat_np256_subborrowx_u64(&x121, &x122, x120, x114, UINT64_C(0xffffffffffffffff)); fiat_np256_subborrowx_u64(&x123, &x124, x122, x116, UINT64_C(0xffffffff00000000)); fiat_np256_subborrowx_u64(&x125, &x126, x124, 0x0, 0x0); fiat_np256_cmovznz_u64(&x127, x126, x117, x110); fiat_np256_cmovznz_u64(&x128, x126, x119, x112); fiat_np256_cmovznz_u64(&x129, x126, x121, x114); fiat_np256_cmovznz_u64(&x130, x126, x123, x116); out1[0] = x127; out1[1] = x128; out1[2] = x129; out1[3] = x130; } /* * The function fiat_np256_to_montgomery translates a field element into the Montgomery domain. * * Preconditions: * 0 ≤ eval arg1 < m * Postconditions: * eval (from_montgomery out1) mod m = eval arg1 mod m * 0 ≤ eval out1 < m * */ static void fiat_np256_to_montgomery(fiat_np256_montgomery_domain_field_element out1, const fiat_np256_non_montgomery_domain_field_element arg1) { uint64_t x1; uint64_t x2; uint64_t x3; uint64_t x4; uint64_t x5; uint64_t x6; uint64_t x7; uint64_t x8; uint64_t x9; uint64_t x10; uint64_t x11; uint64_t x12; uint64_t x13; fiat_np256_uint1 x14; uint64_t x15; fiat_np256_uint1 x16; uint64_t x17; fiat_np256_uint1 x18; uint64_t x19; uint64_t x20; uint64_t x21; uint64_t x22; uint64_t x23; uint64_t x24; uint64_t x25; uint64_t x26; uint64_t x27; uint64_t x28; uint64_t x29; fiat_np256_uint1 x30; uint64_t x31; fiat_np256_uint1 x32; uint64_t x33; fiat_np256_uint1 x34; uint64_t x35; fiat_np256_uint1 x36; uint64_t x37; fiat_np256_uint1 x38; uint64_t x39; fiat_np256_uint1 x40; uint64_t x41; fiat_np256_uint1 x42; uint64_t x43; fiat_np256_uint1 x44; uint64_t x45; uint64_t x46; uint64_t x47; uint64_t x48; uint64_t x49; uint64_t x50; uint64_t x51; uint64_t x52; uint64_t x53; fiat_np256_uint1 x54; uint64_t x55; fiat_np256_uint1 x56; uint64_t x57; fiat_np256_uint1 x58; uint64_t x59; fiat_np256_uint1 x60; uint64_t x61; fiat_np256_uint1 x62; uint64_t x63; fiat_np256_uint1 x64; uint64_t x65; fiat_np256_uint1 x66; uint64_t x67; uint64_t x68; uint64_t x69; uint64_t x70; uint64_t x71; uint64_t x72; uint64_t x73; uint64_t x74; uint64_t x75; uint64_t x76; uint64_t x77; fiat_np256_uint1 x78; uint64_t x79; fiat_np256_uint1 x80; uint64_t x81; fiat_np256_uint1 x82; uint64_t x83; fiat_np256_uint1 x84; uint64_t x85; fiat_np256_uint1 x86; uint64_t x87; fiat_np256_uint1 x88; uint64_t x89; fiat_np256_uint1 x90; uint64_t x91; fiat_np256_uint1 x92; uint64_t x93; uint64_t x94; uint64_t x95; uint64_t x96; uint64_t x97; uint64_t x98; uint64_t x99; uint64_t x100; uint64_t x101; fiat_np256_uint1 x102; uint64_t x103; fiat_np256_uint1 x104; uint64_t x105; fiat_np256_uint1 x106; uint64_t x107; fiat_np256_uint1 x108; uint64_t x109; fiat_np256_uint1 x110; uint64_t x111; fiat_np256_uint1 x112; uint64_t x113; fiat_np256_uint1 x114; uint64_t x115; uint64_t x116; uint64_t x117; uint64_t x118; uint64_t x119; uint64_t x120; uint64_t x121; uint64_t x122; uint64_t x123; uint64_t x124; uint64_t x125; fiat_np256_uint1 x126; uint64_t x127; fiat_np256_uint1 x128; uint64_t x129; fiat_np256_uint1 x130; uint64_t x131; fiat_np256_uint1 x132; uint64_t x133; fiat_np256_uint1 x134; uint64_t x135; fiat_np256_uint1 x136; uint64_t x137; fiat_np256_uint1 x138; uint64_t x139; fiat_np256_uint1 x140; uint64_t x141; uint64_t x142; uint64_t x143; uint64_t x144; uint64_t x145; uint64_t x146; uint64_t x147; uint64_t x148; uint64_t x149; fiat_np256_uint1 x150; uint64_t x151; fiat_np256_uint1 x152; uint64_t x153; fiat_np256_uint1 x154; uint64_t x155; fiat_np256_uint1 x156; uint64_t x157; fiat_np256_uint1 x158; uint64_t x159; fiat_np256_uint1 x160; uint64_t x161; fiat_np256_uint1 x162; uint64_t x163; uint64_t x164; uint64_t x165; uint64_t x166; uint64_t x167; uint64_t x168; uint64_t x169; uint64_t x170; uint64_t x171; uint64_t x172; uint64_t x173; fiat_np256_uint1 x174; uint64_t x175; fiat_np256_uint1 x176; uint64_t x177; fiat_np256_uint1 x178; uint64_t x179; fiat_np256_uint1 x180; uint64_t x181; fiat_np256_uint1 x182; uint64_t x183; fiat_np256_uint1 x184; uint64_t x185; fiat_np256_uint1 x186; uint64_t x187; fiat_np256_uint1 x188; uint64_t x189; fiat_np256_uint1 x190; uint64_t x191; fiat_np256_uint1 x192; uint64_t x193; fiat_np256_uint1 x194; uint64_t x195; fiat_np256_uint1 x196; uint64_t x197; fiat_np256_uint1 x198; uint64_t x199; uint64_t x200; uint64_t x201; uint64_t x202; x1 = (arg1[1]); x2 = (arg1[2]); x3 = (arg1[3]); x4 = (arg1[0]); fiat_np256_mulx_u64(&x5, &x6, x4, UINT64_C(0x66e12d94f3d95620)); fiat_np256_mulx_u64(&x7, &x8, x4, UINT64_C(0x2845b2392b6bec59)); fiat_np256_mulx_u64(&x9, &x10, x4, UINT64_C(0x4699799c49bd6fa6)); fiat_np256_mulx_u64(&x11, &x12, x4, UINT64_C(0x83244c95be79eea2)); fiat_np256_addcarryx_u64(&x13, &x14, 0x0, x12, x9); fiat_np256_addcarryx_u64(&x15, &x16, x14, x10, x7); fiat_np256_addcarryx_u64(&x17, &x18, x16, x8, x5); fiat_np256_mulx_u64(&x19, &x20, x11, UINT64_C(0xccd1c8aaee00bc4f)); fiat_np256_mulx_u64(&x21, &x22, x19, UINT64_C(0xffffffff00000000)); fiat_np256_mulx_u64(&x23, &x24, x19, UINT64_C(0xffffffffffffffff)); fiat_np256_mulx_u64(&x25, &x26, x19, UINT64_C(0xbce6faada7179e84)); fiat_np256_mulx_u64(&x27, &x28, x19, UINT64_C(0xf3b9cac2fc632551)); fiat_np256_addcarryx_u64(&x29, &x30, 0x0, x28, x25); fiat_np256_addcarryx_u64(&x31, &x32, x30, x26, x23); fiat_np256_addcarryx_u64(&x33, &x34, x32, x24, x21); fiat_np256_addcarryx_u64(&x35, &x36, 0x0, x11, x27); fiat_np256_addcarryx_u64(&x37, &x38, x36, x13, x29); fiat_np256_addcarryx_u64(&x39, &x40, x38, x15, x31); fiat_np256_addcarryx_u64(&x41, &x42, x40, x17, x33); fiat_np256_addcarryx_u64(&x43, &x44, x42, (x18 + x6), (x34 + x22)); fiat_np256_mulx_u64(&x45, &x46, x1, UINT64_C(0x66e12d94f3d95620)); fiat_np256_mulx_u64(&x47, &x48, x1, UINT64_C(0x2845b2392b6bec59)); fiat_np256_mulx_u64(&x49, &x50, x1, UINT64_C(0x4699799c49bd6fa6)); fiat_np256_mulx_u64(&x51, &x52, x1, UINT64_C(0x83244c95be79eea2)); fiat_np256_addcarryx_u64(&x53, &x54, 0x0, x52, x49); fiat_np256_addcarryx_u64(&x55, &x56, x54, x50, x47); fiat_np256_addcarryx_u64(&x57, &x58, x56, x48, x45); fiat_np256_addcarryx_u64(&x59, &x60, 0x0, x37, x51); fiat_np256_addcarryx_u64(&x61, &x62, x60, x39, x53); fiat_np256_addcarryx_u64(&x63, &x64, x62, x41, x55); fiat_np256_addcarryx_u64(&x65, &x66, x64, x43, x57); fiat_np256_mulx_u64(&x67, &x68, x59, UINT64_C(0xccd1c8aaee00bc4f)); fiat_np256_mulx_u64(&x69, &x70, x67, UINT64_C(0xffffffff00000000)); fiat_np256_mulx_u64(&x71, &x72, x67, UINT64_C(0xffffffffffffffff)); fiat_np256_mulx_u64(&x73, &x74, x67, UINT64_C(0xbce6faada7179e84)); fiat_np256_mulx_u64(&x75, &x76, x67, UINT64_C(0xf3b9cac2fc632551)); fiat_np256_addcarryx_u64(&x77, &x78, 0x0, x76, x73); fiat_np256_addcarryx_u64(&x79, &x80, x78, x74, x71); fiat_np256_addcarryx_u64(&x81, &x82, x80, x72, x69); fiat_np256_addcarryx_u64(&x83, &x84, 0x0, x59, x75); fiat_np256_addcarryx_u64(&x85, &x86, x84, x61, x77); fiat_np256_addcarryx_u64(&x87, &x88, x86, x63, x79); fiat_np256_addcarryx_u64(&x89, &x90, x88, x65, x81); fiat_np256_addcarryx_u64(&x91, &x92, x90, (((uint64_t)x66 + x44) + (x58 + x46)), (x82 + x70)); fiat_np256_mulx_u64(&x93, &x94, x2, UINT64_C(0x66e12d94f3d95620)); fiat_np256_mulx_u64(&x95, &x96, x2, UINT64_C(0x2845b2392b6bec59)); fiat_np256_mulx_u64(&x97, &x98, x2, UINT64_C(0x4699799c49bd6fa6)); fiat_np256_mulx_u64(&x99, &x100, x2, UINT64_C(0x83244c95be79eea2)); fiat_np256_addcarryx_u64(&x101, &x102, 0x0, x100, x97); fiat_np256_addcarryx_u64(&x103, &x104, x102, x98, x95); fiat_np256_addcarryx_u64(&x105, &x106, x104, x96, x93); fiat_np256_addcarryx_u64(&x107, &x108, 0x0, x85, x99); fiat_np256_addcarryx_u64(&x109, &x110, x108, x87, x101); fiat_np256_addcarryx_u64(&x111, &x112, x110, x89, x103); fiat_np256_addcarryx_u64(&x113, &x114, x112, x91, x105); fiat_np256_mulx_u64(&x115, &x116, x107, UINT64_C(0xccd1c8aaee00bc4f)); fiat_np256_mulx_u64(&x117, &x118, x115, UINT64_C(0xffffffff00000000)); fiat_np256_mulx_u64(&x119, &x120, x115, UINT64_C(0xffffffffffffffff)); fiat_np256_mulx_u64(&x121, &x122, x115, UINT64_C(0xbce6faada7179e84)); fiat_np256_mulx_u64(&x123, &x124, x115, UINT64_C(0xf3b9cac2fc632551)); fiat_np256_addcarryx_u64(&x125, &x126, 0x0, x124, x121); fiat_np256_addcarryx_u64(&x127, &x128, x126, x122, x119); fiat_np256_addcarryx_u64(&x129, &x130, x128, x120, x117); fiat_np256_addcarryx_u64(&x131, &x132, 0x0, x107, x123); fiat_np256_addcarryx_u64(&x133, &x134, x132, x109, x125); fiat_np256_addcarryx_u64(&x135, &x136, x134, x111, x127); fiat_np256_addcarryx_u64(&x137, &x138, x136, x113, x129); fiat_np256_addcarryx_u64(&x139, &x140, x138, (((uint64_t)x114 + x92) + (x106 + x94)), (x130 + x118)); fiat_np256_mulx_u64(&x141, &x142, x3, UINT64_C(0x66e12d94f3d95620)); fiat_np256_mulx_u64(&x143, &x144, x3, UINT64_C(0x2845b2392b6bec59)); fiat_np256_mulx_u64(&x145, &x146, x3, UINT64_C(0x4699799c49bd6fa6)); fiat_np256_mulx_u64(&x147, &x148, x3, UINT64_C(0x83244c95be79eea2)); fiat_np256_addcarryx_u64(&x149, &x150, 0x0, x148, x145); fiat_np256_addcarryx_u64(&x151, &x152, x150, x146, x143); fiat_np256_addcarryx_u64(&x153, &x154, x152, x144, x141); fiat_np256_addcarryx_u64(&x155, &x156, 0x0, x133, x147); fiat_np256_addcarryx_u64(&x157, &x158, x156, x135, x149); fiat_np256_addcarryx_u64(&x159, &x160, x158, x137, x151); fiat_np256_addcarryx_u64(&x161, &x162, x160, x139, x153); fiat_np256_mulx_u64(&x163, &x164, x155, UINT64_C(0xccd1c8aaee00bc4f)); fiat_np256_mulx_u64(&x165, &x166, x163, UINT64_C(0xffffffff00000000)); fiat_np256_mulx_u64(&x167, &x168, x163, UINT64_C(0xffffffffffffffff)); fiat_np256_mulx_u64(&x169, &x170, x163, UINT64_C(0xbce6faada7179e84)); fiat_np256_mulx_u64(&x171, &x172, x163, UINT64_C(0xf3b9cac2fc632551)); fiat_np256_addcarryx_u64(&x173, &x174, 0x0, x172, x169); fiat_np256_addcarryx_u64(&x175, &x176, x174, x170, x167); fiat_np256_addcarryx_u64(&x177, &x178, x176, x168, x165); fiat_np256_addcarryx_u64(&x179, &x180, 0x0, x155, x171); fiat_np256_addcarryx_u64(&x181, &x182, x180, x157, x173); fiat_np256_addcarryx_u64(&x183, &x184, x182, x159, x175); fiat_np256_addcarryx_u64(&x185, &x186, x184, x161, x177); fiat_np256_addcarryx_u64(&x187, &x188, x186, (((uint64_t)x162 + x140) + (x154 + x142)), (x178 + x166)); fiat_np256_subborrowx_u64(&x189, &x190, 0x0, x181, UINT64_C(0xf3b9cac2fc632551)); fiat_np256_subborrowx_u64(&x191, &x192, x190, x183, UINT64_C(0xbce6faada7179e84)); fiat_np256_subborrowx_u64(&x193, &x194, x192, x185, UINT64_C(0xffffffffffffffff)); fiat_np256_subborrowx_u64(&x195, &x196, x194, x187, UINT64_C(0xffffffff00000000)); fiat_np256_subborrowx_u64(&x197, &x198, x196, x188, 0x0); fiat_np256_cmovznz_u64(&x199, x198, x189, x181); fiat_np256_cmovznz_u64(&x200, x198, x191, x183); fiat_np256_cmovznz_u64(&x201, x198, x193, x185); fiat_np256_cmovznz_u64(&x202, x198, x195, x187); out1[0] = x199; out1[1] = x200; out1[2] = x201; out1[3] = x202; } /* * The function fiat_np256_set_one returns the field element one in the Montgomery domain. * * Postconditions: * eval (from_montgomery out1) mod m = 1 mod m * 0 ≤ eval out1 < m * */ static void fiat_np256_set_one(fiat_np256_montgomery_domain_field_element out1) { out1[0] = UINT64_C(0xc46353d039cdaaf); out1[1] = UINT64_C(0x4319055258e8617b); out1[2] = 0x0; out1[3] = UINT32_C(0xffffffff); } /* * The function fiat_np256_msat returns the saturated representation of the prime modulus. * * Postconditions: * twos_complement_eval out1 = m * 0 ≤ eval out1 < m * * Output Bounds: * out1: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]] */ static void fiat_np256_msat(uint64_t out1[5]) { out1[0] = UINT64_C(0xf3b9cac2fc632551); out1[1] = UINT64_C(0xbce6faada7179e84); out1[2] = UINT64_C(0xffffffffffffffff); out1[3] = UINT64_C(0xffffffff00000000); out1[4] = 0x0; } /* * The function fiat_np256_divstep_precomp returns the precomputed value for Bernstein-Yang-inversion (in montgomery form). * * Postconditions: * eval (from_montgomery out1) = ⌊(m - 1) / 2⌋^(if ⌊log2 m⌋ + 1 < 46 then ⌊(49 * (⌊log2 m⌋ + 1) + 80) / 17⌋ else ⌊(49 * (⌊log2 m⌋ + 1) + 57) / 17⌋) * 0 ≤ eval out1 < m * * Output Bounds: * out1: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]] */ static void fiat_np256_divstep_precomp(uint64_t out1[4]) { out1[0] = UINT64_C(0xd739262fb7fcfbb5); out1[1] = UINT64_C(0x8ac6f75d20074414); out1[2] = UINT64_C(0xc67428bfb5e3c256); out1[3] = UINT64_C(0x444962f2eda7aedf); } /* * The function fiat_np256_divstep computes a divstep. * * Preconditions: * 0 ≤ eval arg4 < m * 0 ≤ eval arg5 < m * Postconditions: * out1 = (if 0 < arg1 ∧ (twos_complement_eval arg3) is odd then 1 - arg1 else 1 + arg1) * twos_complement_eval out2 = (if 0 < arg1 ∧ (twos_complement_eval arg3) is odd then twos_complement_eval arg3 else twos_complement_eval arg2) * twos_complement_eval out3 = (if 0 < arg1 ∧ (twos_complement_eval arg3) is odd then ⌊(twos_complement_eval arg3 - twos_complement_eval arg2) / 2⌋ else ⌊(twos_complement_eval arg3 + (twos_complement_eval arg3 mod 2) * twos_complement_eval arg2) / 2⌋) * eval (from_montgomery out4) mod m = (if 0 < arg1 ∧ (twos_complement_eval arg3) is odd then (2 * eval (from_montgomery arg5)) mod m else (2 * eval (from_montgomery arg4)) mod m) * eval (from_montgomery out5) mod m = (if 0 < arg1 ∧ (twos_complement_eval arg3) is odd then (eval (from_montgomery arg4) - eval (from_montgomery arg4)) mod m else (eval (from_montgomery arg5) + (twos_complement_eval arg3 mod 2) * eval (from_montgomery arg4)) mod m) * 0 ≤ eval out5 < m * 0 ≤ eval out5 < m * 0 ≤ eval out2 < m * 0 ≤ eval out3 < m * * Input Bounds: * arg1: [0x0 ~> 0xffffffffffffffff] * arg2: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]] * arg3: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]] * arg4: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]] * arg5: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]] * Output Bounds: * out1: [0x0 ~> 0xffffffffffffffff] * out2: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]] * out3: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]] * out4: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]] * out5: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]] */ static void fiat_np256_divstep(uint64_t* out1, uint64_t out2[5], uint64_t out3[5], uint64_t out4[4], uint64_t out5[4], uint64_t arg1, const uint64_t arg2[5], const uint64_t arg3[5], const uint64_t arg4[4], const uint64_t arg5[4]) { uint64_t x1; fiat_np256_uint1 x2; fiat_np256_uint1 x3; uint64_t x4; fiat_np256_uint1 x5; uint64_t x6; uint64_t x7; uint64_t x8; uint64_t x9; uint64_t x10; uint64_t x11; uint64_t x12; fiat_np256_uint1 x13; uint64_t x14; fiat_np256_uint1 x15; uint64_t x16; fiat_np256_uint1 x17; uint64_t x18; fiat_np256_uint1 x19; uint64_t x20; fiat_np256_uint1 x21; uint64_t x22; uint64_t x23; uint64_t x24; uint64_t x25; uint64_t x26; uint64_t x27; uint64_t x28; uint64_t x29; uint64_t x30; uint64_t x31; fiat_np256_uint1 x32; uint64_t x33; fiat_np256_uint1 x34; uint64_t x35; fiat_np256_uint1 x36; uint64_t x37; fiat_np256_uint1 x38; uint64_t x39; fiat_np256_uint1 x40; uint64_t x41; fiat_np256_uint1 x42; uint64_t x43; fiat_np256_uint1 x44; uint64_t x45; fiat_np256_uint1 x46; uint64_t x47; fiat_np256_uint1 x48; uint64_t x49; uint64_t x50; uint64_t x51; uint64_t x52; uint64_t x53; fiat_np256_uint1 x54; uint64_t x55; fiat_np256_uint1 x56; uint64_t x57; fiat_np256_uint1 x58; uint64_t x59; fiat_np256_uint1 x60; uint64_t x61; uint64_t x62; fiat_np256_uint1 x63; uint64_t x64; fiat_np256_uint1 x65; uint64_t x66; fiat_np256_uint1 x67; uint64_t x68; fiat_np256_uint1 x69; uint64_t x70; uint64_t x71; uint64_t x72; uint64_t x73; fiat_np256_uint1 x74; uint64_t x75; uint64_t x76; uint64_t x77; uint64_t x78; uint64_t x79; uint64_t x80; fiat_np256_uint1 x81; uint64_t x82; fiat_np256_uint1 x83; uint64_t x84; fiat_np256_uint1 x85; uint64_t x86; fiat_np256_uint1 x87; uint64_t x88; fiat_np256_uint1 x89; uint64_t x90; uint64_t x91; uint64_t x92; uint64_t x93; uint64_t x94; fiat_np256_uint1 x95; uint64_t x96; fiat_np256_uint1 x97; uint64_t x98; fiat_np256_uint1 x99; uint64_t x100; fiat_np256_uint1 x101; uint64_t x102; fiat_np256_uint1 x103; uint64_t x104; fiat_np256_uint1 x105; uint64_t x106; fiat_np256_uint1 x107; uint64_t x108; fiat_np256_uint1 x109; uint64_t x110; fiat_np256_uint1 x111; uint64_t x112; fiat_np256_uint1 x113; uint64_t x114; uint64_t x115; uint64_t x116; uint64_t x117; uint64_t x118; uint64_t x119; uint64_t x120; uint64_t x121; uint64_t x122; uint64_t x123; uint64_t x124; uint64_t x125; uint64_t x126; fiat_np256_addcarryx_u64(&x1, &x2, 0x0, (~arg1), 0x1); x3 = (fiat_np256_uint1)((fiat_np256_uint1)(x1 >> 63) & (fiat_np256_uint1)((arg3[0]) & 0x1)); fiat_np256_addcarryx_u64(&x4, &x5, 0x0, (~arg1), 0x1); fiat_np256_cmovznz_u64(&x6, x3, arg1, x4); fiat_np256_cmovznz_u64(&x7, x3, (arg2[0]), (arg3[0])); fiat_np256_cmovznz_u64(&x8, x3, (arg2[1]), (arg3[1])); fiat_np256_cmovznz_u64(&x9, x3, (arg2[2]), (arg3[2])); fiat_np256_cmovznz_u64(&x10, x3, (arg2[3]), (arg3[3])); fiat_np256_cmovznz_u64(&x11, x3, (arg2[4]), (arg3[4])); fiat_np256_addcarryx_u64(&x12, &x13, 0x0, 0x1, (~(arg2[0]))); fiat_np256_addcarryx_u64(&x14, &x15, x13, 0x0, (~(arg2[1]))); fiat_np256_addcarryx_u64(&x16, &x17, x15, 0x0, (~(arg2[2]))); fiat_np256_addcarryx_u64(&x18, &x19, x17, 0x0, (~(arg2[3]))); fiat_np256_addcarryx_u64(&x20, &x21, x19, 0x0, (~(arg2[4]))); fiat_np256_cmovznz_u64(&x22, x3, (arg3[0]), x12); fiat_np256_cmovznz_u64(&x23, x3, (arg3[1]), x14); fiat_np256_cmovznz_u64(&x24, x3, (arg3[2]), x16); fiat_np256_cmovznz_u64(&x25, x3, (arg3[3]), x18); fiat_np256_cmovznz_u64(&x26, x3, (arg3[4]), x20); fiat_np256_cmovznz_u64(&x27, x3, (arg4[0]), (arg5[0])); fiat_np256_cmovznz_u64(&x28, x3, (arg4[1]), (arg5[1])); fiat_np256_cmovznz_u64(&x29, x3, (arg4[2]), (arg5[2])); fiat_np256_cmovznz_u64(&x30, x3, (arg4[3]), (arg5[3])); fiat_np256_addcarryx_u64(&x31, &x32, 0x0, x27, x27); fiat_np256_addcarryx_u64(&x33, &x34, x32, x28, x28); fiat_np256_addcarryx_u64(&x35, &x36, x34, x29, x29); fiat_np256_addcarryx_u64(&x37, &x38, x36, x30, x30); fiat_np256_subborrowx_u64(&x39, &x40, 0x0, x31, UINT64_C(0xf3b9cac2fc632551)); fiat_np256_subborrowx_u64(&x41, &x42, x40, x33, UINT64_C(0xbce6faada7179e84)); fiat_np256_subborrowx_u64(&x43, &x44, x42, x35, UINT64_C(0xffffffffffffffff)); fiat_np256_subborrowx_u64(&x45, &x46, x44, x37, UINT64_C(0xffffffff00000000)); fiat_np256_subborrowx_u64(&x47, &x48, x46, x38, 0x0); x49 = (arg4[3]); x50 = (arg4[2]); x51 = (arg4[1]); x52 = (arg4[0]); fiat_np256_subborrowx_u64(&x53, &x54, 0x0, 0x0, x52); fiat_np256_subborrowx_u64(&x55, &x56, x54, 0x0, x51); fiat_np256_subborrowx_u64(&x57, &x58, x56, 0x0, x50); fiat_np256_subborrowx_u64(&x59, &x60, x58, 0x0, x49); fiat_np256_cmovznz_u64(&x61, x60, 0x0, UINT64_C(0xffffffffffffffff)); fiat_np256_addcarryx_u64(&x62, &x63, 0x0, x53, (x61 & UINT64_C(0xf3b9cac2fc632551))); fiat_np256_addcarryx_u64(&x64, &x65, x63, x55, (x61 & UINT64_C(0xbce6faada7179e84))); fiat_np256_addcarryx_u64(&x66, &x67, x65, x57, x61); fiat_np256_addcarryx_u64(&x68, &x69, x67, x59, (x61 & UINT64_C(0xffffffff00000000))); fiat_np256_cmovznz_u64(&x70, x3, (arg5[0]), x62); fiat_np256_cmovznz_u64(&x71, x3, (arg5[1]), x64); fiat_np256_cmovznz_u64(&x72, x3, (arg5[2]), x66); fiat_np256_cmovznz_u64(&x73, x3, (arg5[3]), x68); x74 = (fiat_np256_uint1)(x22 & 0x1); fiat_np256_cmovznz_u64(&x75, x74, 0x0, x7); fiat_np256_cmovznz_u64(&x76, x74, 0x0, x8); fiat_np256_cmovznz_u64(&x77, x74, 0x0, x9); fiat_np256_cmovznz_u64(&x78, x74, 0x0, x10); fiat_np256_cmovznz_u64(&x79, x74, 0x0, x11); fiat_np256_addcarryx_u64(&x80, &x81, 0x0, x22, x75); fiat_np256_addcarryx_u64(&x82, &x83, x81, x23, x76); fiat_np256_addcarryx_u64(&x84, &x85, x83, x24, x77); fiat_np256_addcarryx_u64(&x86, &x87, x85, x25, x78); fiat_np256_addcarryx_u64(&x88, &x89, x87, x26, x79); fiat_np256_cmovznz_u64(&x90, x74, 0x0, x27); fiat_np256_cmovznz_u64(&x91, x74, 0x0, x28); fiat_np256_cmovznz_u64(&x92, x74, 0x0, x29); fiat_np256_cmovznz_u64(&x93, x74, 0x0, x30); fiat_np256_addcarryx_u64(&x94, &x95, 0x0, x70, x90); fiat_np256_addcarryx_u64(&x96, &x97, x95, x71, x91); fiat_np256_addcarryx_u64(&x98, &x99, x97, x72, x92); fiat_np256_addcarryx_u64(&x100, &x101, x99, x73, x93); fiat_np256_subborrowx_u64(&x102, &x103, 0x0, x94, UINT64_C(0xf3b9cac2fc632551)); fiat_np256_subborrowx_u64(&x104, &x105, x103, x96, UINT64_C(0xbce6faada7179e84)); fiat_np256_subborrowx_u64(&x106, &x107, x105, x98, UINT64_C(0xffffffffffffffff)); fiat_np256_subborrowx_u64(&x108, &x109, x107, x100, UINT64_C(0xffffffff00000000)); fiat_np256_subborrowx_u64(&x110, &x111, x109, x101, 0x0); fiat_np256_addcarryx_u64(&x112, &x113, 0x0, x6, 0x1); x114 = ((x80 >> 1) | ((x82 << 63) & UINT64_C(0xffffffffffffffff))); x115 = ((x82 >> 1) | ((x84 << 63) & UINT64_C(0xffffffffffffffff))); x116 = ((x84 >> 1) | ((x86 << 63) & UINT64_C(0xffffffffffffffff))); x117 = ((x86 >> 1) | ((x88 << 63) & UINT64_C(0xffffffffffffffff))); x118 = ((x88 & UINT64_C(0x8000000000000000)) | (x88 >> 1)); fiat_np256_cmovznz_u64(&x119, x48, x39, x31); fiat_np256_cmovznz_u64(&x120, x48, x41, x33); fiat_np256_cmovznz_u64(&x121, x48, x43, x35); fiat_np256_cmovznz_u64(&x122, x48, x45, x37); fiat_np256_cmovznz_u64(&x123, x111, x102, x94); fiat_np256_cmovznz_u64(&x124, x111, x104, x96); fiat_np256_cmovznz_u64(&x125, x111, x106, x98); fiat_np256_cmovznz_u64(&x126, x111, x108, x100); *out1 = x112; out2[0] = x7; out2[1] = x8; out2[2] = x9; out2[3] = x10; out2[4] = x11; out3[0] = x114; out3[1] = x115; out3[2] = x116; out3[3] = x117; out3[4] = x118; out4[0] = x119; out4[1] = x120; out4[2] = x121; out4[3] = x122; out5[0] = x123; out5[1] = x124; out5[2] = x125; out5[3] = x126; } /* * The function fiat_np256_to_bytes serializes a field element NOT in the Montgomery domain to bytes in little-endian order. * * Preconditions: * 0 ≤ eval arg1 < m * Postconditions: * out1 = map (λ x, ⌊((eval arg1 mod m) mod 2^(8 * (x + 1))) / 2^(8 * x)⌋) [0..31] * * Input Bounds: * arg1: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]] * Output Bounds: * out1: [[0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff]] */ static void fiat_np256_to_bytes(uint8_t out1[32], const uint64_t arg1[4]) { uint64_t x1; uint64_t x2; uint64_t x3; uint64_t x4; uint8_t x5; uint64_t x6; uint8_t x7; uint64_t x8; uint8_t x9; uint64_t x10; uint8_t x11; uint64_t x12; uint8_t x13; uint64_t x14; uint8_t x15; uint64_t x16; uint8_t x17; uint8_t x18; uint8_t x19; uint64_t x20; uint8_t x21; uint64_t x22; uint8_t x23; uint64_t x24; uint8_t x25; uint64_t x26; uint8_t x27; uint64_t x28; uint8_t x29; uint64_t x30; uint8_t x31; uint8_t x32; uint8_t x33; uint64_t x34; uint8_t x35; uint64_t x36; uint8_t x37; uint64_t x38; uint8_t x39; uint64_t x40; uint8_t x41; uint64_t x42; uint8_t x43; uint64_t x44; uint8_t x45; uint8_t x46; uint8_t x47; uint64_t x48; uint8_t x49; uint64_t x50; uint8_t x51; uint64_t x52; uint8_t x53; uint64_t x54; uint8_t x55; uint64_t x56; uint8_t x57; uint64_t x58; uint8_t x59; uint8_t x60; x1 = (arg1[3]); x2 = (arg1[2]); x3 = (arg1[1]); x4 = (arg1[0]); x5 = (uint8_t)(x4 & UINT8_C(0xff)); x6 = (x4 >> 8); x7 = (uint8_t)(x6 & UINT8_C(0xff)); x8 = (x6 >> 8); x9 = (uint8_t)(x8 & UINT8_C(0xff)); x10 = (x8 >> 8); x11 = (uint8_t)(x10 & UINT8_C(0xff)); x12 = (x10 >> 8); x13 = (uint8_t)(x12 & UINT8_C(0xff)); x14 = (x12 >> 8); x15 = (uint8_t)(x14 & UINT8_C(0xff)); x16 = (x14 >> 8); x17 = (uint8_t)(x16 & UINT8_C(0xff)); x18 = (uint8_t)(x16 >> 8); x19 = (uint8_t)(x3 & UINT8_C(0xff)); x20 = (x3 >> 8); x21 = (uint8_t)(x20 & UINT8_C(0xff)); x22 = (x20 >> 8); x23 = (uint8_t)(x22 & UINT8_C(0xff)); x24 = (x22 >> 8); x25 = (uint8_t)(x24 & UINT8_C(0xff)); x26 = (x24 >> 8); x27 = (uint8_t)(x26 & UINT8_C(0xff)); x28 = (x26 >> 8); x29 = (uint8_t)(x28 & UINT8_C(0xff)); x30 = (x28 >> 8); x31 = (uint8_t)(x30 & UINT8_C(0xff)); x32 = (uint8_t)(x30 >> 8); x33 = (uint8_t)(x2 & UINT8_C(0xff)); x34 = (x2 >> 8); x35 = (uint8_t)(x34 & UINT8_C(0xff)); x36 = (x34 >> 8); x37 = (uint8_t)(x36 & UINT8_C(0xff)); x38 = (x36 >> 8); x39 = (uint8_t)(x38 & UINT8_C(0xff)); x40 = (x38 >> 8); x41 = (uint8_t)(x40 & UINT8_C(0xff)); x42 = (x40 >> 8); x43 = (uint8_t)(x42 & UINT8_C(0xff)); x44 = (x42 >> 8); x45 = (uint8_t)(x44 & UINT8_C(0xff)); x46 = (uint8_t)(x44 >> 8); x47 = (uint8_t)(x1 & UINT8_C(0xff)); x48 = (x1 >> 8); x49 = (uint8_t)(x48 & UINT8_C(0xff)); x50 = (x48 >> 8); x51 = (uint8_t)(x50 & UINT8_C(0xff)); x52 = (x50 >> 8); x53 = (uint8_t)(x52 & UINT8_C(0xff)); x54 = (x52 >> 8); x55 = (uint8_t)(x54 & UINT8_C(0xff)); x56 = (x54 >> 8); x57 = (uint8_t)(x56 & UINT8_C(0xff)); x58 = (x56 >> 8); x59 = (uint8_t)(x58 & UINT8_C(0xff)); x60 = (uint8_t)(x58 >> 8); out1[0] = x5; out1[1] = x7; out1[2] = x9; out1[3] = x11; out1[4] = x13; out1[5] = x15; out1[6] = x17; out1[7] = x18; out1[8] = x19; out1[9] = x21; out1[10] = x23; out1[11] = x25; out1[12] = x27; out1[13] = x29; out1[14] = x31; out1[15] = x32; out1[16] = x33; out1[17] = x35; out1[18] = x37; out1[19] = x39; out1[20] = x41; out1[21] = x43; out1[22] = x45; out1[23] = x46; out1[24] = x47; out1[25] = x49; out1[26] = x51; out1[27] = x53; out1[28] = x55; out1[29] = x57; out1[30] = x59; out1[31] = x60; } /* * The function fiat_np256_from_bytes deserializes a field element NOT in the Montgomery domain from bytes in little-endian order. * * Preconditions: * 0 ≤ bytes_eval arg1 < m * Postconditions: * eval out1 mod m = bytes_eval arg1 mod m * 0 ≤ eval out1 < m * * Input Bounds: * arg1: [[0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff]] * Output Bounds: * out1: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]] */ static void fiat_np256_from_bytes(uint64_t out1[4], const uint8_t arg1[32]) { uint64_t x1; uint64_t x2; uint64_t x3; uint64_t x4; uint64_t x5; uint64_t x6; uint64_t x7; uint8_t x8; uint64_t x9; uint64_t x10; uint64_t x11; uint64_t x12; uint64_t x13; uint64_t x14; uint64_t x15; uint8_t x16; uint64_t x17; uint64_t x18; uint64_t x19; uint64_t x20; uint64_t x21; uint64_t x22; uint64_t x23; uint8_t x24; uint64_t x25; uint64_t x26; uint64_t x27; uint64_t x28; uint64_t x29; uint64_t x30; uint64_t x31; uint8_t x32; uint64_t x33; uint64_t x34; uint64_t x35; uint64_t x36; uint64_t x37; uint64_t x38; uint64_t x39; uint64_t x40; uint64_t x41; uint64_t x42; uint64_t x43; uint64_t x44; uint64_t x45; uint64_t x46; uint64_t x47; uint64_t x48; uint64_t x49; uint64_t x50; uint64_t x51; uint64_t x52; uint64_t x53; uint64_t x54; uint64_t x55; uint64_t x56; uint64_t x57; uint64_t x58; uint64_t x59; uint64_t x60; x1 = ((uint64_t)(arg1[31]) << 56); x2 = ((uint64_t)(arg1[30]) << 48); x3 = ((uint64_t)(arg1[29]) << 40); x4 = ((uint64_t)(arg1[28]) << 32); x5 = ((uint64_t)(arg1[27]) << 24); x6 = ((uint64_t)(arg1[26]) << 16); x7 = ((uint64_t)(arg1[25]) << 8); x8 = (arg1[24]); x9 = ((uint64_t)(arg1[23]) << 56); x10 = ((uint64_t)(arg1[22]) << 48); x11 = ((uint64_t)(arg1[21]) << 40); x12 = ((uint64_t)(arg1[20]) << 32); x13 = ((uint64_t)(arg1[19]) << 24); x14 = ((uint64_t)(arg1[18]) << 16); x15 = ((uint64_t)(arg1[17]) << 8); x16 = (arg1[16]); x17 = ((uint64_t)(arg1[15]) << 56); x18 = ((uint64_t)(arg1[14]) << 48); x19 = ((uint64_t)(arg1[13]) << 40); x20 = ((uint64_t)(arg1[12]) << 32); x21 = ((uint64_t)(arg1[11]) << 24); x22 = ((uint64_t)(arg1[10]) << 16); x23 = ((uint64_t)(arg1[9]) << 8); x24 = (arg1[8]); x25 = ((uint64_t)(arg1[7]) << 56); x26 = ((uint64_t)(arg1[6]) << 48); x27 = ((uint64_t)(arg1[5]) << 40); x28 = ((uint64_t)(arg1[4]) << 32); x29 = ((uint64_t)(arg1[3]) << 24); x30 = ((uint64_t)(arg1[2]) << 16); x31 = ((uint64_t)(arg1[1]) << 8); x32 = (arg1[0]); x33 = (x31 + (uint64_t)x32); x34 = (x30 + x33); x35 = (x29 + x34); x36 = (x28 + x35); x37 = (x27 + x36); x38 = (x26 + x37); x39 = (x25 + x38); x40 = (x23 + (uint64_t)x24); x41 = (x22 + x40); x42 = (x21 + x41); x43 = (x20 + x42); x44 = (x19 + x43); x45 = (x18 + x44); x46 = (x17 + x45); x47 = (x15 + (uint64_t)x16); x48 = (x14 + x47); x49 = (x13 + x48); x50 = (x12 + x49); x51 = (x11 + x50); x52 = (x10 + x51); x53 = (x9 + x52); x54 = (x7 + (uint64_t)x8); x55 = (x6 + x54); x56 = (x5 + x55); x57 = (x4 + x56); x58 = (x3 + x57); x59 = (x2 + x58); x60 = (x1 + x59); out1[0] = x39; out1[1] = x46; out1[2] = x53; out1[3] = x60; } /* * The function fiat_np256_selectznz is a multi-limb conditional select. * * Postconditions: * out1 = (if arg1 = 0 then arg2 else arg3) * * Input Bounds: * arg1: [0x0 ~> 0x1] * arg2: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]] * arg3: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]] * Output Bounds: * out1: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]] */ static void fiat_np256_selectznz(uint64_t out1[4], fiat_np256_uint1 arg1, const uint64_t arg2[4], const uint64_t arg3[4]) { uint64_t x1; uint64_t x2; uint64_t x3; uint64_t x4; fiat_np256_cmovznz_u64(&x1, arg1, (arg2[0]), (arg3[0])); fiat_np256_cmovznz_u64(&x2, arg1, (arg2[1]), (arg3[1])); fiat_np256_cmovznz_u64(&x3, arg1, (arg2[2]), (arg3[2])); fiat_np256_cmovznz_u64(&x4, arg1, (arg2[3]), (arg3[3])); out1[0] = x1; out1[1] = x2; out1[2] = x3; out1[3] = x4; }
mirage-crypto
2.0.2
ISC
https://github.com/mirage/mirage-crypto
git+https://github.com/mirage/mirage-crypto.git
c
mirage-crypto-2.0.2/ec/native/np256_stubs.c
#include "mirage_crypto.h" /* Microsoft compiler does not support 128-bit integers. Drop down to * 32-bit for MSVC. */ #if defined(ARCH_64BIT) && !defined(_MSC_VER) #include "np256_64.h" #define LIMBS 4 #define WORD uint64_t #define WORDSIZE 64 #else #include "np256_32.h" #define LIMBS 8 #define WORD uint32_t #define WORDSIZE 32 #endif #define LEN_PRIME 256 #define CURVE_DESCRIPTION fiat_np256 #include "inversion_template.h" #include <caml/memory.h> CAMLprim value mc_np256_inv(value out, value in) { CAMLparam2(out, in); inversion((WORD*)Bytes_val(out), (const WORD*)String_val(in)); CAMLreturn(Val_unit); } CAMLprim value mc_np256_mul(value out, value a, value b) { CAMLparam3(out, a, b); fiat_np256_mul((WORD*)Bytes_val(out), (const WORD*)String_val(a), (const WORD*)String_val(b)); CAMLreturn(Val_unit); } CAMLprim value mc_np256_add(value out, value a, value b) { CAMLparam3(out, a, b); fiat_np256_add((WORD*)Bytes_val(out), (const WORD*)String_val(a), (const WORD*)String_val(b)); CAMLreturn(Val_unit); } CAMLprim value mc_np256_one(value out) { CAMLparam1(out); fiat_np256_set_one((WORD*)Bytes_val(out)); CAMLreturn(Val_unit); } CAMLprim value mc_np256_from_bytes(value out, value in) { CAMLparam2(out, in); fiat_np256_from_bytes((WORD*)Bytes_val(out), _st_uint8(in)); CAMLreturn(Val_unit); } CAMLprim value mc_np256_to_bytes(value out, value in) { CAMLparam2(out, in); fiat_np256_to_bytes(Bytes_val(out), (const WORD*)String_val(in)); CAMLreturn(Val_unit); } CAMLprim value mc_np256_from_montgomery(value out, value in) { CAMLparam2(out, in); fiat_np256_from_montgomery((WORD*)Bytes_val(out), (const WORD*)String_val(in)); CAMLreturn(Val_unit); } CAMLprim value mc_np256_to_montgomery(value out, value in) { CAMLparam2(out, in); fiat_np256_to_montgomery((WORD*)Bytes_val(out), (const WORD*)String_val(in)); CAMLreturn(Val_unit); }
mirage-crypto
2.0.2
ISC
https://github.com/mirage/mirage-crypto
git+https://github.com/mirage/mirage-crypto.git
h
mirage-crypto-2.0.2/ec/native/np384_32.h
/* Autogenerated: '../fiat-crypto/src/ExtractionOCaml/word_by_word_montgomery' --static --use-value-barrier --inline-internal np384 32 0xffffffffffffffffffffffffffffffffffffffffffffffffc7634d81f4372ddf581a0db248b0a77aecec196accc52973 mul add opp from_montgomery to_montgomery one msat divstep_precomp divstep to_bytes from_bytes selectznz */ /* curve description: np384 */ /* machine_wordsize = 32 (from "32") */ /* requested operations: mul, add, opp, from_montgomery, to_montgomery, one, msat, divstep_precomp, divstep, to_bytes, from_bytes, selectznz */ /* m = 0xffffffffffffffffffffffffffffffffffffffffffffffffc7634d81f4372ddf581a0db248b0a77aecec196accc52973 (from "0xffffffffffffffffffffffffffffffffffffffffffffffffc7634d81f4372ddf581a0db248b0a77aecec196accc52973") */ /* */ /* NOTE: In addition to the bounds specified above each function, all */ /* functions synthesized for this Montgomery arithmetic require the */ /* input to be strictly less than the prime modulus (m), and also */ /* require the input to be in the unique saturated representation. */ /* All functions also ensure that these two properties are true of */ /* return values. */ /* */ /* Computed values: */ /* eval z = z[0] + (z[1] << 32) + (z[2] << 64) + (z[3] << 96) + (z[4] << 128) + (z[5] << 160) + (z[6] << 192) + (z[7] << 224) + (z[8] << 256) + (z[9] << 0x120) + (z[10] << 0x140) + (z[11] << 0x160) */ /* bytes_eval z = z[0] + (z[1] << 8) + (z[2] << 16) + (z[3] << 24) + (z[4] << 32) + (z[5] << 40) + (z[6] << 48) + (z[7] << 56) + (z[8] << 64) + (z[9] << 72) + (z[10] << 80) + (z[11] << 88) + (z[12] << 96) + (z[13] << 104) + (z[14] << 112) + (z[15] << 120) + (z[16] << 128) + (z[17] << 136) + (z[18] << 144) + (z[19] << 152) + (z[20] << 160) + (z[21] << 168) + (z[22] << 176) + (z[23] << 184) + (z[24] << 192) + (z[25] << 200) + (z[26] << 208) + (z[27] << 216) + (z[28] << 224) + (z[29] << 232) + (z[30] << 240) + (z[31] << 248) + (z[32] << 256) + (z[33] << 0x108) + (z[34] << 0x110) + (z[35] << 0x118) + (z[36] << 0x120) + (z[37] << 0x128) + (z[38] << 0x130) + (z[39] << 0x138) + (z[40] << 0x140) + (z[41] << 0x148) + (z[42] << 0x150) + (z[43] << 0x158) + (z[44] << 0x160) + (z[45] << 0x168) + (z[46] << 0x170) + (z[47] << 0x178) */ /* twos_complement_eval z = let x1 := z[0] + (z[1] << 32) + (z[2] << 64) + (z[3] << 96) + (z[4] << 128) + (z[5] << 160) + (z[6] << 192) + (z[7] << 224) + (z[8] << 256) + (z[9] << 0x120) + (z[10] << 0x140) + (z[11] << 0x160) in */ /* if x1 & (2^384-1) < 2^383 then x1 & (2^384-1) else (x1 & (2^384-1)) - 2^384 */ #include <stdint.h> typedef unsigned char fiat_np384_uint1; typedef signed char fiat_np384_int1; #if defined(__GNUC__) || defined(__clang__) # define FIAT_NP384_FIAT_INLINE __inline__ #else # define FIAT_NP384_FIAT_INLINE #endif /* The type fiat_np384_montgomery_domain_field_element is a field element in the Montgomery domain. */ /* Bounds: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff]] */ typedef uint32_t fiat_np384_montgomery_domain_field_element[12]; /* The type fiat_np384_non_montgomery_domain_field_element is a field element NOT in the Montgomery domain. */ /* Bounds: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff]] */ typedef uint32_t fiat_np384_non_montgomery_domain_field_element[12]; #if (-1 & 3) != 3 #error "This code only works on a two's complement system" #endif #if !defined(FIAT_NP384_NO_ASM) && (defined(__GNUC__) || defined(__clang__)) static __inline__ uint32_t fiat_np384_value_barrier_u32(uint32_t a) { __asm__("" : "+r"(a) : /* no inputs */); return a; } #else # define fiat_np384_value_barrier_u32(x) (x) #endif /* * The function fiat_np384_addcarryx_u32 is an addition with carry. * * Postconditions: * out1 = (arg1 + arg2 + arg3) mod 2^32 * out2 = ⌊(arg1 + arg2 + arg3) / 2^32⌋ * * Input Bounds: * arg1: [0x0 ~> 0x1] * arg2: [0x0 ~> 0xffffffff] * arg3: [0x0 ~> 0xffffffff] * Output Bounds: * out1: [0x0 ~> 0xffffffff] * out2: [0x0 ~> 0x1] */ static FIAT_NP384_FIAT_INLINE void fiat_np384_addcarryx_u32(uint32_t* out1, fiat_np384_uint1* out2, fiat_np384_uint1 arg1, uint32_t arg2, uint32_t arg3) { uint64_t x1; uint32_t x2; fiat_np384_uint1 x3; x1 = ((arg1 + (uint64_t)arg2) + arg3); x2 = (uint32_t)(x1 & UINT32_C(0xffffffff)); x3 = (fiat_np384_uint1)(x1 >> 32); *out1 = x2; *out2 = x3; } /* * The function fiat_np384_subborrowx_u32 is a subtraction with borrow. * * Postconditions: * out1 = (-arg1 + arg2 + -arg3) mod 2^32 * out2 = -⌊(-arg1 + arg2 + -arg3) / 2^32⌋ * * Input Bounds: * arg1: [0x0 ~> 0x1] * arg2: [0x0 ~> 0xffffffff] * arg3: [0x0 ~> 0xffffffff] * Output Bounds: * out1: [0x0 ~> 0xffffffff] * out2: [0x0 ~> 0x1] */ static FIAT_NP384_FIAT_INLINE void fiat_np384_subborrowx_u32(uint32_t* out1, fiat_np384_uint1* out2, fiat_np384_uint1 arg1, uint32_t arg2, uint32_t arg3) { int64_t x1; fiat_np384_int1 x2; uint32_t x3; x1 = ((arg2 - (int64_t)arg1) - arg3); x2 = (fiat_np384_int1)(x1 >> 32); x3 = (uint32_t)(x1 & UINT32_C(0xffffffff)); *out1 = x3; *out2 = (fiat_np384_uint1)(0x0 - x2); } /* * The function fiat_np384_mulx_u32 is a multiplication, returning the full double-width result. * * Postconditions: * out1 = (arg1 * arg2) mod 2^32 * out2 = ⌊arg1 * arg2 / 2^32⌋ * * Input Bounds: * arg1: [0x0 ~> 0xffffffff] * arg2: [0x0 ~> 0xffffffff] * Output Bounds: * out1: [0x0 ~> 0xffffffff] * out2: [0x0 ~> 0xffffffff] */ static FIAT_NP384_FIAT_INLINE void fiat_np384_mulx_u32(uint32_t* out1, uint32_t* out2, uint32_t arg1, uint32_t arg2) { uint64_t x1; uint32_t x2; uint32_t x3; x1 = ((uint64_t)arg1 * arg2); x2 = (uint32_t)(x1 & UINT32_C(0xffffffff)); x3 = (uint32_t)(x1 >> 32); *out1 = x2; *out2 = x3; } /* * The function fiat_np384_cmovznz_u32 is a single-word conditional move. * * Postconditions: * out1 = (if arg1 = 0 then arg2 else arg3) * * Input Bounds: * arg1: [0x0 ~> 0x1] * arg2: [0x0 ~> 0xffffffff] * arg3: [0x0 ~> 0xffffffff] * Output Bounds: * out1: [0x0 ~> 0xffffffff] */ static FIAT_NP384_FIAT_INLINE void fiat_np384_cmovznz_u32(uint32_t* out1, fiat_np384_uint1 arg1, uint32_t arg2, uint32_t arg3) { fiat_np384_uint1 x1; uint32_t x2; uint32_t x3; x1 = (!(!arg1)); x2 = ((fiat_np384_int1)(0x0 - x1) & UINT32_C(0xffffffff)); x3 = ((fiat_np384_value_barrier_u32(x2) & arg3) | (fiat_np384_value_barrier_u32((~x2)) & arg2)); *out1 = x3; } /* * The function fiat_np384_mul multiplies two field elements in the Montgomery domain. * * Preconditions: * 0 ≤ eval arg1 < m * 0 ≤ eval arg2 < m * Postconditions: * eval (from_montgomery out1) mod m = (eval (from_montgomery arg1) * eval (from_montgomery arg2)) mod m * 0 ≤ eval out1 < m * */ static void fiat_np384_mul(fiat_np384_montgomery_domain_field_element out1, const fiat_np384_montgomery_domain_field_element arg1, const fiat_np384_montgomery_domain_field_element arg2) { uint32_t x1; uint32_t x2; uint32_t x3; uint32_t x4; uint32_t x5; uint32_t x6; uint32_t x7; uint32_t x8; uint32_t x9; uint32_t x10; uint32_t x11; uint32_t x12; uint32_t x13; uint32_t x14; uint32_t x15; uint32_t x16; uint32_t x17; uint32_t x18; uint32_t x19; uint32_t x20; uint32_t x21; uint32_t x22; uint32_t x23; uint32_t x24; uint32_t x25; uint32_t x26; uint32_t x27; uint32_t x28; uint32_t x29; uint32_t x30; uint32_t x31; uint32_t x32; uint32_t x33; uint32_t x34; uint32_t x35; uint32_t x36; uint32_t x37; fiat_np384_uint1 x38; uint32_t x39; fiat_np384_uint1 x40; uint32_t x41; fiat_np384_uint1 x42; uint32_t x43; fiat_np384_uint1 x44; uint32_t x45; fiat_np384_uint1 x46; uint32_t x47; fiat_np384_uint1 x48; uint32_t x49; fiat_np384_uint1 x50; uint32_t x51; fiat_np384_uint1 x52; uint32_t x53; fiat_np384_uint1 x54; uint32_t x55; fiat_np384_uint1 x56; uint32_t x57; fiat_np384_uint1 x58; uint32_t x59; uint32_t x60; uint32_t x61; uint32_t x62; uint32_t x63; uint32_t x64; uint32_t x65; uint32_t x66; uint32_t x67; uint32_t x68; uint32_t x69; uint32_t x70; uint32_t x71; uint32_t x72; uint32_t x73; uint32_t x74; uint32_t x75; uint32_t x76; uint32_t x77; uint32_t x78; uint32_t x79; uint32_t x80; uint32_t x81; uint32_t x82; uint32_t x83; uint32_t x84; uint32_t x85; uint32_t x86; fiat_np384_uint1 x87; uint32_t x88; fiat_np384_uint1 x89; uint32_t x90; fiat_np384_uint1 x91; uint32_t x92; fiat_np384_uint1 x93; uint32_t x94; fiat_np384_uint1 x95; uint32_t x96; fiat_np384_uint1 x97; uint32_t x98; fiat_np384_uint1 x99; uint32_t x100; fiat_np384_uint1 x101; uint32_t x102; fiat_np384_uint1 x103; uint32_t x104; fiat_np384_uint1 x105; uint32_t x106; fiat_np384_uint1 x107; uint32_t x108; uint32_t x109; fiat_np384_uint1 x110; uint32_t x111; fiat_np384_uint1 x112; uint32_t x113; fiat_np384_uint1 x114; uint32_t x115; fiat_np384_uint1 x116; uint32_t x117; fiat_np384_uint1 x118; uint32_t x119; fiat_np384_uint1 x120; uint32_t x121; fiat_np384_uint1 x122; uint32_t x123; fiat_np384_uint1 x124; uint32_t x125; fiat_np384_uint1 x126; uint32_t x127; fiat_np384_uint1 x128; uint32_t x129; fiat_np384_uint1 x130; uint32_t x131; fiat_np384_uint1 x132; uint32_t x133; fiat_np384_uint1 x134; uint32_t x135; uint32_t x136; uint32_t x137; uint32_t x138; uint32_t x139; uint32_t x140; uint32_t x141; uint32_t x142; uint32_t x143; uint32_t x144; uint32_t x145; uint32_t x146; uint32_t x147; uint32_t x148; uint32_t x149; uint32_t x150; uint32_t x151; uint32_t x152; uint32_t x153; uint32_t x154; uint32_t x155; uint32_t x156; uint32_t x157; uint32_t x158; uint32_t x159; fiat_np384_uint1 x160; uint32_t x161; fiat_np384_uint1 x162; uint32_t x163; fiat_np384_uint1 x164; uint32_t x165; fiat_np384_uint1 x166; uint32_t x167; fiat_np384_uint1 x168; uint32_t x169; fiat_np384_uint1 x170; uint32_t x171; fiat_np384_uint1 x172; uint32_t x173; fiat_np384_uint1 x174; uint32_t x175; fiat_np384_uint1 x176; uint32_t x177; fiat_np384_uint1 x178; uint32_t x179; fiat_np384_uint1 x180; uint32_t x181; uint32_t x182; fiat_np384_uint1 x183; uint32_t x184; fiat_np384_uint1 x185; uint32_t x186; fiat_np384_uint1 x187; uint32_t x188; fiat_np384_uint1 x189; uint32_t x190; fiat_np384_uint1 x191; uint32_t x192; fiat_np384_uint1 x193; uint32_t x194; fiat_np384_uint1 x195; uint32_t x196; fiat_np384_uint1 x197; uint32_t x198; fiat_np384_uint1 x199; uint32_t x200; fiat_np384_uint1 x201; uint32_t x202; fiat_np384_uint1 x203; uint32_t x204; fiat_np384_uint1 x205; uint32_t x206; fiat_np384_uint1 x207; uint32_t x208; uint32_t x209; uint32_t x210; uint32_t x211; uint32_t x212; uint32_t x213; uint32_t x214; uint32_t x215; uint32_t x216; uint32_t x217; uint32_t x218; uint32_t x219; uint32_t x220; uint32_t x221; uint32_t x222; uint32_t x223; uint32_t x224; uint32_t x225; uint32_t x226; uint32_t x227; uint32_t x228; uint32_t x229; uint32_t x230; uint32_t x231; uint32_t x232; uint32_t x233; uint32_t x234; fiat_np384_uint1 x235; uint32_t x236; fiat_np384_uint1 x237; uint32_t x238; fiat_np384_uint1 x239; uint32_t x240; fiat_np384_uint1 x241; uint32_t x242; fiat_np384_uint1 x243; uint32_t x244; fiat_np384_uint1 x245; uint32_t x246; fiat_np384_uint1 x247; uint32_t x248; fiat_np384_uint1 x249; uint32_t x250; fiat_np384_uint1 x251; uint32_t x252; fiat_np384_uint1 x253; uint32_t x254; fiat_np384_uint1 x255; uint32_t x256; uint32_t x257; fiat_np384_uint1 x258; uint32_t x259; fiat_np384_uint1 x260; uint32_t x261; fiat_np384_uint1 x262; uint32_t x263; fiat_np384_uint1 x264; uint32_t x265; fiat_np384_uint1 x266; uint32_t x267; fiat_np384_uint1 x268; uint32_t x269; fiat_np384_uint1 x270; uint32_t x271; fiat_np384_uint1 x272; uint32_t x273; fiat_np384_uint1 x274; uint32_t x275; fiat_np384_uint1 x276; uint32_t x277; fiat_np384_uint1 x278; uint32_t x279; fiat_np384_uint1 x280; uint32_t x281; fiat_np384_uint1 x282; uint32_t x283; uint32_t x284; uint32_t x285; uint32_t x286; uint32_t x287; uint32_t x288; uint32_t x289; uint32_t x290; uint32_t x291; uint32_t x292; uint32_t x293; uint32_t x294; uint32_t x295; uint32_t x296; uint32_t x297; uint32_t x298; uint32_t x299; uint32_t x300; uint32_t x301; uint32_t x302; uint32_t x303; uint32_t x304; uint32_t x305; uint32_t x306; uint32_t x307; uint32_t x308; fiat_np384_uint1 x309; uint32_t x310; fiat_np384_uint1 x311; uint32_t x312; fiat_np384_uint1 x313; uint32_t x314; fiat_np384_uint1 x315; uint32_t x316; fiat_np384_uint1 x317; uint32_t x318; fiat_np384_uint1 x319; uint32_t x320; fiat_np384_uint1 x321; uint32_t x322; fiat_np384_uint1 x323; uint32_t x324; fiat_np384_uint1 x325; uint32_t x326; fiat_np384_uint1 x327; uint32_t x328; fiat_np384_uint1 x329; uint32_t x330; uint32_t x331; fiat_np384_uint1 x332; uint32_t x333; fiat_np384_uint1 x334; uint32_t x335; fiat_np384_uint1 x336; uint32_t x337; fiat_np384_uint1 x338; uint32_t x339; fiat_np384_uint1 x340; uint32_t x341; fiat_np384_uint1 x342; uint32_t x343; fiat_np384_uint1 x344; uint32_t x345; fiat_np384_uint1 x346; uint32_t x347; fiat_np384_uint1 x348; uint32_t x349; fiat_np384_uint1 x350; uint32_t x351; fiat_np384_uint1 x352; uint32_t x353; fiat_np384_uint1 x354; uint32_t x355; fiat_np384_uint1 x356; uint32_t x357; uint32_t x358; uint32_t x359; uint32_t x360; uint32_t x361; uint32_t x362; uint32_t x363; uint32_t x364; uint32_t x365; uint32_t x366; uint32_t x367; uint32_t x368; uint32_t x369; uint32_t x370; uint32_t x371; uint32_t x372; uint32_t x373; uint32_t x374; uint32_t x375; uint32_t x376; uint32_t x377; uint32_t x378; uint32_t x379; uint32_t x380; uint32_t x381; uint32_t x382; uint32_t x383; fiat_np384_uint1 x384; uint32_t x385; fiat_np384_uint1 x386; uint32_t x387; fiat_np384_uint1 x388; uint32_t x389; fiat_np384_uint1 x390; uint32_t x391; fiat_np384_uint1 x392; uint32_t x393; fiat_np384_uint1 x394; uint32_t x395; fiat_np384_uint1 x396; uint32_t x397; fiat_np384_uint1 x398; uint32_t x399; fiat_np384_uint1 x400; uint32_t x401; fiat_np384_uint1 x402; uint32_t x403; fiat_np384_uint1 x404; uint32_t x405; uint32_t x406; fiat_np384_uint1 x407; uint32_t x408; fiat_np384_uint1 x409; uint32_t x410; fiat_np384_uint1 x411; uint32_t x412; fiat_np384_uint1 x413; uint32_t x414; fiat_np384_uint1 x415; uint32_t x416; fiat_np384_uint1 x417; uint32_t x418; fiat_np384_uint1 x419; uint32_t x420; fiat_np384_uint1 x421; uint32_t x422; fiat_np384_uint1 x423; uint32_t x424; fiat_np384_uint1 x425; uint32_t x426; fiat_np384_uint1 x427; uint32_t x428; fiat_np384_uint1 x429; uint32_t x430; fiat_np384_uint1 x431; uint32_t x432; uint32_t x433; uint32_t x434; uint32_t x435; uint32_t x436; uint32_t x437; uint32_t x438; uint32_t x439; uint32_t x440; uint32_t x441; uint32_t x442; uint32_t x443; uint32_t x444; uint32_t x445; uint32_t x446; uint32_t x447; uint32_t x448; uint32_t x449; uint32_t x450; uint32_t x451; uint32_t x452; uint32_t x453; uint32_t x454; uint32_t x455; uint32_t x456; uint32_t x457; fiat_np384_uint1 x458; uint32_t x459; fiat_np384_uint1 x460; uint32_t x461; fiat_np384_uint1 x462; uint32_t x463; fiat_np384_uint1 x464; uint32_t x465; fiat_np384_uint1 x466; uint32_t x467; fiat_np384_uint1 x468; uint32_t x469; fiat_np384_uint1 x470; uint32_t x471; fiat_np384_uint1 x472; uint32_t x473; fiat_np384_uint1 x474; uint32_t x475; fiat_np384_uint1 x476; uint32_t x477; fiat_np384_uint1 x478; uint32_t x479; uint32_t x480; fiat_np384_uint1 x481; uint32_t x482; fiat_np384_uint1 x483; uint32_t x484; fiat_np384_uint1 x485; uint32_t x486; fiat_np384_uint1 x487; uint32_t x488; fiat_np384_uint1 x489; uint32_t x490; fiat_np384_uint1 x491; uint32_t x492; fiat_np384_uint1 x493; uint32_t x494; fiat_np384_uint1 x495; uint32_t x496; fiat_np384_uint1 x497; uint32_t x498; fiat_np384_uint1 x499; uint32_t x500; fiat_np384_uint1 x501; uint32_t x502; fiat_np384_uint1 x503; uint32_t x504; fiat_np384_uint1 x505; uint32_t x506; uint32_t x507; uint32_t x508; uint32_t x509; uint32_t x510; uint32_t x511; uint32_t x512; uint32_t x513; uint32_t x514; uint32_t x515; uint32_t x516; uint32_t x517; uint32_t x518; uint32_t x519; uint32_t x520; uint32_t x521; uint32_t x522; uint32_t x523; uint32_t x524; uint32_t x525; uint32_t x526; uint32_t x527; uint32_t x528; uint32_t x529; uint32_t x530; uint32_t x531; uint32_t x532; fiat_np384_uint1 x533; uint32_t x534; fiat_np384_uint1 x535; uint32_t x536; fiat_np384_uint1 x537; uint32_t x538; fiat_np384_uint1 x539; uint32_t x540; fiat_np384_uint1 x541; uint32_t x542; fiat_np384_uint1 x543; uint32_t x544; fiat_np384_uint1 x545; uint32_t x546; fiat_np384_uint1 x547; uint32_t x548; fiat_np384_uint1 x549; uint32_t x550; fiat_np384_uint1 x551; uint32_t x552; fiat_np384_uint1 x553; uint32_t x554; uint32_t x555; fiat_np384_uint1 x556; uint32_t x557; fiat_np384_uint1 x558; uint32_t x559; fiat_np384_uint1 x560; uint32_t x561; fiat_np384_uint1 x562; uint32_t x563; fiat_np384_uint1 x564; uint32_t x565; fiat_np384_uint1 x566; uint32_t x567; fiat_np384_uint1 x568; uint32_t x569; fiat_np384_uint1 x570; uint32_t x571; fiat_np384_uint1 x572; uint32_t x573; fiat_np384_uint1 x574; uint32_t x575; fiat_np384_uint1 x576; uint32_t x577; fiat_np384_uint1 x578; uint32_t x579; fiat_np384_uint1 x580; uint32_t x581; uint32_t x582; uint32_t x583; uint32_t x584; uint32_t x585; uint32_t x586; uint32_t x587; uint32_t x588; uint32_t x589; uint32_t x590; uint32_t x591; uint32_t x592; uint32_t x593; uint32_t x594; uint32_t x595; uint32_t x596; uint32_t x597; uint32_t x598; uint32_t x599; uint32_t x600; uint32_t x601; uint32_t x602; uint32_t x603; uint32_t x604; uint32_t x605; uint32_t x606; fiat_np384_uint1 x607; uint32_t x608; fiat_np384_uint1 x609; uint32_t x610; fiat_np384_uint1 x611; uint32_t x612; fiat_np384_uint1 x613; uint32_t x614; fiat_np384_uint1 x615; uint32_t x616; fiat_np384_uint1 x617; uint32_t x618; fiat_np384_uint1 x619; uint32_t x620; fiat_np384_uint1 x621; uint32_t x622; fiat_np384_uint1 x623; uint32_t x624; fiat_np384_uint1 x625; uint32_t x626; fiat_np384_uint1 x627; uint32_t x628; uint32_t x629; fiat_np384_uint1 x630; uint32_t x631; fiat_np384_uint1 x632; uint32_t x633; fiat_np384_uint1 x634; uint32_t x635; fiat_np384_uint1 x636; uint32_t x637; fiat_np384_uint1 x638; uint32_t x639; fiat_np384_uint1 x640; uint32_t x641; fiat_np384_uint1 x642; uint32_t x643; fiat_np384_uint1 x644; uint32_t x645; fiat_np384_uint1 x646; uint32_t x647; fiat_np384_uint1 x648; uint32_t x649; fiat_np384_uint1 x650; uint32_t x651; fiat_np384_uint1 x652; uint32_t x653; fiat_np384_uint1 x654; uint32_t x655; uint32_t x656; uint32_t x657; uint32_t x658; uint32_t x659; uint32_t x660; uint32_t x661; uint32_t x662; uint32_t x663; uint32_t x664; uint32_t x665; uint32_t x666; uint32_t x667; uint32_t x668; uint32_t x669; uint32_t x670; uint32_t x671; uint32_t x672; uint32_t x673; uint32_t x674; uint32_t x675; uint32_t x676; uint32_t x677; uint32_t x678; uint32_t x679; uint32_t x680; uint32_t x681; fiat_np384_uint1 x682; uint32_t x683; fiat_np384_uint1 x684; uint32_t x685; fiat_np384_uint1 x686; uint32_t x687; fiat_np384_uint1 x688; uint32_t x689; fiat_np384_uint1 x690; uint32_t x691; fiat_np384_uint1 x692; uint32_t x693; fiat_np384_uint1 x694; uint32_t x695; fiat_np384_uint1 x696; uint32_t x697; fiat_np384_uint1 x698; uint32_t x699; fiat_np384_uint1 x700; uint32_t x701; fiat_np384_uint1 x702; uint32_t x703; uint32_t x704; fiat_np384_uint1 x705; uint32_t x706; fiat_np384_uint1 x707; uint32_t x708; fiat_np384_uint1 x709; uint32_t x710; fiat_np384_uint1 x711; uint32_t x712; fiat_np384_uint1 x713; uint32_t x714; fiat_np384_uint1 x715; uint32_t x716; fiat_np384_uint1 x717; uint32_t x718; fiat_np384_uint1 x719; uint32_t x720; fiat_np384_uint1 x721; uint32_t x722; fiat_np384_uint1 x723; uint32_t x724; fiat_np384_uint1 x725; uint32_t x726; fiat_np384_uint1 x727; uint32_t x728; fiat_np384_uint1 x729; uint32_t x730; uint32_t x731; uint32_t x732; uint32_t x733; uint32_t x734; uint32_t x735; uint32_t x736; uint32_t x737; uint32_t x738; uint32_t x739; uint32_t x740; uint32_t x741; uint32_t x742; uint32_t x743; uint32_t x744; uint32_t x745; uint32_t x746; uint32_t x747; uint32_t x748; uint32_t x749; uint32_t x750; uint32_t x751; uint32_t x752; uint32_t x753; uint32_t x754; uint32_t x755; fiat_np384_uint1 x756; uint32_t x757; fiat_np384_uint1 x758; uint32_t x759; fiat_np384_uint1 x760; uint32_t x761; fiat_np384_uint1 x762; uint32_t x763; fiat_np384_uint1 x764; uint32_t x765; fiat_np384_uint1 x766; uint32_t x767; fiat_np384_uint1 x768; uint32_t x769; fiat_np384_uint1 x770; uint32_t x771; fiat_np384_uint1 x772; uint32_t x773; fiat_np384_uint1 x774; uint32_t x775; fiat_np384_uint1 x776; uint32_t x777; uint32_t x778; fiat_np384_uint1 x779; uint32_t x780; fiat_np384_uint1 x781; uint32_t x782; fiat_np384_uint1 x783; uint32_t x784; fiat_np384_uint1 x785; uint32_t x786; fiat_np384_uint1 x787; uint32_t x788; fiat_np384_uint1 x789; uint32_t x790; fiat_np384_uint1 x791; uint32_t x792; fiat_np384_uint1 x793; uint32_t x794; fiat_np384_uint1 x795; uint32_t x796; fiat_np384_uint1 x797; uint32_t x798; fiat_np384_uint1 x799; uint32_t x800; fiat_np384_uint1 x801; uint32_t x802; fiat_np384_uint1 x803; uint32_t x804; uint32_t x805; uint32_t x806; uint32_t x807; uint32_t x808; uint32_t x809; uint32_t x810; uint32_t x811; uint32_t x812; uint32_t x813; uint32_t x814; uint32_t x815; uint32_t x816; uint32_t x817; uint32_t x818; uint32_t x819; uint32_t x820; uint32_t x821; uint32_t x822; uint32_t x823; uint32_t x824; uint32_t x825; uint32_t x826; uint32_t x827; uint32_t x828; uint32_t x829; uint32_t x830; fiat_np384_uint1 x831; uint32_t x832; fiat_np384_uint1 x833; uint32_t x834; fiat_np384_uint1 x835; uint32_t x836; fiat_np384_uint1 x837; uint32_t x838; fiat_np384_uint1 x839; uint32_t x840; fiat_np384_uint1 x841; uint32_t x842; fiat_np384_uint1 x843; uint32_t x844; fiat_np384_uint1 x845; uint32_t x846; fiat_np384_uint1 x847; uint32_t x848; fiat_np384_uint1 x849; uint32_t x850; fiat_np384_uint1 x851; uint32_t x852; uint32_t x853; fiat_np384_uint1 x854; uint32_t x855; fiat_np384_uint1 x856; uint32_t x857; fiat_np384_uint1 x858; uint32_t x859; fiat_np384_uint1 x860; uint32_t x861; fiat_np384_uint1 x862; uint32_t x863; fiat_np384_uint1 x864; uint32_t x865; fiat_np384_uint1 x866; uint32_t x867; fiat_np384_uint1 x868; uint32_t x869; fiat_np384_uint1 x870; uint32_t x871; fiat_np384_uint1 x872; uint32_t x873; fiat_np384_uint1 x874; uint32_t x875; fiat_np384_uint1 x876; uint32_t x877; fiat_np384_uint1 x878; uint32_t x879; uint32_t x880; uint32_t x881; uint32_t x882; uint32_t x883; uint32_t x884; uint32_t x885; uint32_t x886; uint32_t x887; uint32_t x888; uint32_t x889; uint32_t x890; uint32_t x891; uint32_t x892; uint32_t x893; uint32_t x894; uint32_t x895; uint32_t x896; uint32_t x897; uint32_t x898; uint32_t x899; uint32_t x900; uint32_t x901; uint32_t x902; uint32_t x903; uint32_t x904; fiat_np384_uint1 x905; uint32_t x906; fiat_np384_uint1 x907; uint32_t x908; fiat_np384_uint1 x909; uint32_t x910; fiat_np384_uint1 x911; uint32_t x912; fiat_np384_uint1 x913; uint32_t x914; fiat_np384_uint1 x915; uint32_t x916; fiat_np384_uint1 x917; uint32_t x918; fiat_np384_uint1 x919; uint32_t x920; fiat_np384_uint1 x921; uint32_t x922; fiat_np384_uint1 x923; uint32_t x924; fiat_np384_uint1 x925; uint32_t x926; uint32_t x927; fiat_np384_uint1 x928; uint32_t x929; fiat_np384_uint1 x930; uint32_t x931; fiat_np384_uint1 x932; uint32_t x933; fiat_np384_uint1 x934; uint32_t x935; fiat_np384_uint1 x936; uint32_t x937; fiat_np384_uint1 x938; uint32_t x939; fiat_np384_uint1 x940; uint32_t x941; fiat_np384_uint1 x942; uint32_t x943; fiat_np384_uint1 x944; uint32_t x945; fiat_np384_uint1 x946; uint32_t x947; fiat_np384_uint1 x948; uint32_t x949; fiat_np384_uint1 x950; uint32_t x951; fiat_np384_uint1 x952; uint32_t x953; uint32_t x954; uint32_t x955; uint32_t x956; uint32_t x957; uint32_t x958; uint32_t x959; uint32_t x960; uint32_t x961; uint32_t x962; uint32_t x963; uint32_t x964; uint32_t x965; uint32_t x966; uint32_t x967; uint32_t x968; uint32_t x969; uint32_t x970; uint32_t x971; uint32_t x972; uint32_t x973; uint32_t x974; uint32_t x975; uint32_t x976; uint32_t x977; uint32_t x978; uint32_t x979; fiat_np384_uint1 x980; uint32_t x981; fiat_np384_uint1 x982; uint32_t x983; fiat_np384_uint1 x984; uint32_t x985; fiat_np384_uint1 x986; uint32_t x987; fiat_np384_uint1 x988; uint32_t x989; fiat_np384_uint1 x990; uint32_t x991; fiat_np384_uint1 x992; uint32_t x993; fiat_np384_uint1 x994; uint32_t x995; fiat_np384_uint1 x996; uint32_t x997; fiat_np384_uint1 x998; uint32_t x999; fiat_np384_uint1 x1000; uint32_t x1001; uint32_t x1002; fiat_np384_uint1 x1003; uint32_t x1004; fiat_np384_uint1 x1005; uint32_t x1006; fiat_np384_uint1 x1007; uint32_t x1008; fiat_np384_uint1 x1009; uint32_t x1010; fiat_np384_uint1 x1011; uint32_t x1012; fiat_np384_uint1 x1013; uint32_t x1014; fiat_np384_uint1 x1015; uint32_t x1016; fiat_np384_uint1 x1017; uint32_t x1018; fiat_np384_uint1 x1019; uint32_t x1020; fiat_np384_uint1 x1021; uint32_t x1022; fiat_np384_uint1 x1023; uint32_t x1024; fiat_np384_uint1 x1025; uint32_t x1026; fiat_np384_uint1 x1027; uint32_t x1028; uint32_t x1029; uint32_t x1030; uint32_t x1031; uint32_t x1032; uint32_t x1033; uint32_t x1034; uint32_t x1035; uint32_t x1036; uint32_t x1037; uint32_t x1038; uint32_t x1039; uint32_t x1040; uint32_t x1041; uint32_t x1042; uint32_t x1043; uint32_t x1044; uint32_t x1045; uint32_t x1046; uint32_t x1047; uint32_t x1048; uint32_t x1049; uint32_t x1050; uint32_t x1051; uint32_t x1052; uint32_t x1053; fiat_np384_uint1 x1054; uint32_t x1055; fiat_np384_uint1 x1056; uint32_t x1057; fiat_np384_uint1 x1058; uint32_t x1059; fiat_np384_uint1 x1060; uint32_t x1061; fiat_np384_uint1 x1062; uint32_t x1063; fiat_np384_uint1 x1064; uint32_t x1065; fiat_np384_uint1 x1066; uint32_t x1067; fiat_np384_uint1 x1068; uint32_t x1069; fiat_np384_uint1 x1070; uint32_t x1071; fiat_np384_uint1 x1072; uint32_t x1073; fiat_np384_uint1 x1074; uint32_t x1075; uint32_t x1076; fiat_np384_uint1 x1077; uint32_t x1078; fiat_np384_uint1 x1079; uint32_t x1080; fiat_np384_uint1 x1081; uint32_t x1082; fiat_np384_uint1 x1083; uint32_t x1084; fiat_np384_uint1 x1085; uint32_t x1086; fiat_np384_uint1 x1087; uint32_t x1088; fiat_np384_uint1 x1089; uint32_t x1090; fiat_np384_uint1 x1091; uint32_t x1092; fiat_np384_uint1 x1093; uint32_t x1094; fiat_np384_uint1 x1095; uint32_t x1096; fiat_np384_uint1 x1097; uint32_t x1098; fiat_np384_uint1 x1099; uint32_t x1100; fiat_np384_uint1 x1101; uint32_t x1102; uint32_t x1103; uint32_t x1104; uint32_t x1105; uint32_t x1106; uint32_t x1107; uint32_t x1108; uint32_t x1109; uint32_t x1110; uint32_t x1111; uint32_t x1112; uint32_t x1113; uint32_t x1114; uint32_t x1115; uint32_t x1116; uint32_t x1117; uint32_t x1118; uint32_t x1119; uint32_t x1120; uint32_t x1121; uint32_t x1122; uint32_t x1123; uint32_t x1124; uint32_t x1125; uint32_t x1126; uint32_t x1127; uint32_t x1128; fiat_np384_uint1 x1129; uint32_t x1130; fiat_np384_uint1 x1131; uint32_t x1132; fiat_np384_uint1 x1133; uint32_t x1134; fiat_np384_uint1 x1135; uint32_t x1136; fiat_np384_uint1 x1137; uint32_t x1138; fiat_np384_uint1 x1139; uint32_t x1140; fiat_np384_uint1 x1141; uint32_t x1142; fiat_np384_uint1 x1143; uint32_t x1144; fiat_np384_uint1 x1145; uint32_t x1146; fiat_np384_uint1 x1147; uint32_t x1148; fiat_np384_uint1 x1149; uint32_t x1150; uint32_t x1151; fiat_np384_uint1 x1152; uint32_t x1153; fiat_np384_uint1 x1154; uint32_t x1155; fiat_np384_uint1 x1156; uint32_t x1157; fiat_np384_uint1 x1158; uint32_t x1159; fiat_np384_uint1 x1160; uint32_t x1161; fiat_np384_uint1 x1162; uint32_t x1163; fiat_np384_uint1 x1164; uint32_t x1165; fiat_np384_uint1 x1166; uint32_t x1167; fiat_np384_uint1 x1168; uint32_t x1169; fiat_np384_uint1 x1170; uint32_t x1171; fiat_np384_uint1 x1172; uint32_t x1173; fiat_np384_uint1 x1174; uint32_t x1175; fiat_np384_uint1 x1176; uint32_t x1177; uint32_t x1178; uint32_t x1179; uint32_t x1180; uint32_t x1181; uint32_t x1182; uint32_t x1183; uint32_t x1184; uint32_t x1185; uint32_t x1186; uint32_t x1187; uint32_t x1188; uint32_t x1189; uint32_t x1190; uint32_t x1191; uint32_t x1192; uint32_t x1193; uint32_t x1194; uint32_t x1195; uint32_t x1196; uint32_t x1197; uint32_t x1198; uint32_t x1199; uint32_t x1200; uint32_t x1201; uint32_t x1202; fiat_np384_uint1 x1203; uint32_t x1204; fiat_np384_uint1 x1205; uint32_t x1206; fiat_np384_uint1 x1207; uint32_t x1208; fiat_np384_uint1 x1209; uint32_t x1210; fiat_np384_uint1 x1211; uint32_t x1212; fiat_np384_uint1 x1213; uint32_t x1214; fiat_np384_uint1 x1215; uint32_t x1216; fiat_np384_uint1 x1217; uint32_t x1218; fiat_np384_uint1 x1219; uint32_t x1220; fiat_np384_uint1 x1221; uint32_t x1222; fiat_np384_uint1 x1223; uint32_t x1224; uint32_t x1225; fiat_np384_uint1 x1226; uint32_t x1227; fiat_np384_uint1 x1228; uint32_t x1229; fiat_np384_uint1 x1230; uint32_t x1231; fiat_np384_uint1 x1232; uint32_t x1233; fiat_np384_uint1 x1234; uint32_t x1235; fiat_np384_uint1 x1236; uint32_t x1237; fiat_np384_uint1 x1238; uint32_t x1239; fiat_np384_uint1 x1240; uint32_t x1241; fiat_np384_uint1 x1242; uint32_t x1243; fiat_np384_uint1 x1244; uint32_t x1245; fiat_np384_uint1 x1246; uint32_t x1247; fiat_np384_uint1 x1248; uint32_t x1249; fiat_np384_uint1 x1250; uint32_t x1251; uint32_t x1252; uint32_t x1253; uint32_t x1254; uint32_t x1255; uint32_t x1256; uint32_t x1257; uint32_t x1258; uint32_t x1259; uint32_t x1260; uint32_t x1261; uint32_t x1262; uint32_t x1263; uint32_t x1264; uint32_t x1265; uint32_t x1266; uint32_t x1267; uint32_t x1268; uint32_t x1269; uint32_t x1270; uint32_t x1271; uint32_t x1272; uint32_t x1273; uint32_t x1274; uint32_t x1275; uint32_t x1276; uint32_t x1277; fiat_np384_uint1 x1278; uint32_t x1279; fiat_np384_uint1 x1280; uint32_t x1281; fiat_np384_uint1 x1282; uint32_t x1283; fiat_np384_uint1 x1284; uint32_t x1285; fiat_np384_uint1 x1286; uint32_t x1287; fiat_np384_uint1 x1288; uint32_t x1289; fiat_np384_uint1 x1290; uint32_t x1291; fiat_np384_uint1 x1292; uint32_t x1293; fiat_np384_uint1 x1294; uint32_t x1295; fiat_np384_uint1 x1296; uint32_t x1297; fiat_np384_uint1 x1298; uint32_t x1299; uint32_t x1300; fiat_np384_uint1 x1301; uint32_t x1302; fiat_np384_uint1 x1303; uint32_t x1304; fiat_np384_uint1 x1305; uint32_t x1306; fiat_np384_uint1 x1307; uint32_t x1308; fiat_np384_uint1 x1309; uint32_t x1310; fiat_np384_uint1 x1311; uint32_t x1312; fiat_np384_uint1 x1313; uint32_t x1314; fiat_np384_uint1 x1315; uint32_t x1316; fiat_np384_uint1 x1317; uint32_t x1318; fiat_np384_uint1 x1319; uint32_t x1320; fiat_np384_uint1 x1321; uint32_t x1322; fiat_np384_uint1 x1323; uint32_t x1324; fiat_np384_uint1 x1325; uint32_t x1326; uint32_t x1327; uint32_t x1328; uint32_t x1329; uint32_t x1330; uint32_t x1331; uint32_t x1332; uint32_t x1333; uint32_t x1334; uint32_t x1335; uint32_t x1336; uint32_t x1337; uint32_t x1338; uint32_t x1339; uint32_t x1340; uint32_t x1341; uint32_t x1342; uint32_t x1343; uint32_t x1344; uint32_t x1345; uint32_t x1346; uint32_t x1347; uint32_t x1348; uint32_t x1349; uint32_t x1350; uint32_t x1351; fiat_np384_uint1 x1352; uint32_t x1353; fiat_np384_uint1 x1354; uint32_t x1355; fiat_np384_uint1 x1356; uint32_t x1357; fiat_np384_uint1 x1358; uint32_t x1359; fiat_np384_uint1 x1360; uint32_t x1361; fiat_np384_uint1 x1362; uint32_t x1363; fiat_np384_uint1 x1364; uint32_t x1365; fiat_np384_uint1 x1366; uint32_t x1367; fiat_np384_uint1 x1368; uint32_t x1369; fiat_np384_uint1 x1370; uint32_t x1371; fiat_np384_uint1 x1372; uint32_t x1373; uint32_t x1374; fiat_np384_uint1 x1375; uint32_t x1376; fiat_np384_uint1 x1377; uint32_t x1378; fiat_np384_uint1 x1379; uint32_t x1380; fiat_np384_uint1 x1381; uint32_t x1382; fiat_np384_uint1 x1383; uint32_t x1384; fiat_np384_uint1 x1385; uint32_t x1386; fiat_np384_uint1 x1387; uint32_t x1388; fiat_np384_uint1 x1389; uint32_t x1390; fiat_np384_uint1 x1391; uint32_t x1392; fiat_np384_uint1 x1393; uint32_t x1394; fiat_np384_uint1 x1395; uint32_t x1396; fiat_np384_uint1 x1397; uint32_t x1398; fiat_np384_uint1 x1399; uint32_t x1400; uint32_t x1401; uint32_t x1402; uint32_t x1403; uint32_t x1404; uint32_t x1405; uint32_t x1406; uint32_t x1407; uint32_t x1408; uint32_t x1409; uint32_t x1410; uint32_t x1411; uint32_t x1412; uint32_t x1413; uint32_t x1414; uint32_t x1415; uint32_t x1416; uint32_t x1417; uint32_t x1418; uint32_t x1419; uint32_t x1420; uint32_t x1421; uint32_t x1422; uint32_t x1423; uint32_t x1424; uint32_t x1425; uint32_t x1426; fiat_np384_uint1 x1427; uint32_t x1428; fiat_np384_uint1 x1429; uint32_t x1430; fiat_np384_uint1 x1431; uint32_t x1432; fiat_np384_uint1 x1433; uint32_t x1434; fiat_np384_uint1 x1435; uint32_t x1436; fiat_np384_uint1 x1437; uint32_t x1438; fiat_np384_uint1 x1439; uint32_t x1440; fiat_np384_uint1 x1441; uint32_t x1442; fiat_np384_uint1 x1443; uint32_t x1444; fiat_np384_uint1 x1445; uint32_t x1446; fiat_np384_uint1 x1447; uint32_t x1448; uint32_t x1449; fiat_np384_uint1 x1450; uint32_t x1451; fiat_np384_uint1 x1452; uint32_t x1453; fiat_np384_uint1 x1454; uint32_t x1455; fiat_np384_uint1 x1456; uint32_t x1457; fiat_np384_uint1 x1458; uint32_t x1459; fiat_np384_uint1 x1460; uint32_t x1461; fiat_np384_uint1 x1462; uint32_t x1463; fiat_np384_uint1 x1464; uint32_t x1465; fiat_np384_uint1 x1466; uint32_t x1467; fiat_np384_uint1 x1468; uint32_t x1469; fiat_np384_uint1 x1470; uint32_t x1471; fiat_np384_uint1 x1472; uint32_t x1473; fiat_np384_uint1 x1474; uint32_t x1475; uint32_t x1476; uint32_t x1477; uint32_t x1478; uint32_t x1479; uint32_t x1480; uint32_t x1481; uint32_t x1482; uint32_t x1483; uint32_t x1484; uint32_t x1485; uint32_t x1486; uint32_t x1487; uint32_t x1488; uint32_t x1489; uint32_t x1490; uint32_t x1491; uint32_t x1492; uint32_t x1493; uint32_t x1494; uint32_t x1495; uint32_t x1496; uint32_t x1497; uint32_t x1498; uint32_t x1499; uint32_t x1500; fiat_np384_uint1 x1501; uint32_t x1502; fiat_np384_uint1 x1503; uint32_t x1504; fiat_np384_uint1 x1505; uint32_t x1506; fiat_np384_uint1 x1507; uint32_t x1508; fiat_np384_uint1 x1509; uint32_t x1510; fiat_np384_uint1 x1511; uint32_t x1512; fiat_np384_uint1 x1513; uint32_t x1514; fiat_np384_uint1 x1515; uint32_t x1516; fiat_np384_uint1 x1517; uint32_t x1518; fiat_np384_uint1 x1519; uint32_t x1520; fiat_np384_uint1 x1521; uint32_t x1522; uint32_t x1523; fiat_np384_uint1 x1524; uint32_t x1525; fiat_np384_uint1 x1526; uint32_t x1527; fiat_np384_uint1 x1528; uint32_t x1529; fiat_np384_uint1 x1530; uint32_t x1531; fiat_np384_uint1 x1532; uint32_t x1533; fiat_np384_uint1 x1534; uint32_t x1535; fiat_np384_uint1 x1536; uint32_t x1537; fiat_np384_uint1 x1538; uint32_t x1539; fiat_np384_uint1 x1540; uint32_t x1541; fiat_np384_uint1 x1542; uint32_t x1543; fiat_np384_uint1 x1544; uint32_t x1545; fiat_np384_uint1 x1546; uint32_t x1547; fiat_np384_uint1 x1548; uint32_t x1549; uint32_t x1550; uint32_t x1551; uint32_t x1552; uint32_t x1553; uint32_t x1554; uint32_t x1555; uint32_t x1556; uint32_t x1557; uint32_t x1558; uint32_t x1559; uint32_t x1560; uint32_t x1561; uint32_t x1562; uint32_t x1563; uint32_t x1564; uint32_t x1565; uint32_t x1566; uint32_t x1567; uint32_t x1568; uint32_t x1569; uint32_t x1570; uint32_t x1571; uint32_t x1572; uint32_t x1573; uint32_t x1574; uint32_t x1575; fiat_np384_uint1 x1576; uint32_t x1577; fiat_np384_uint1 x1578; uint32_t x1579; fiat_np384_uint1 x1580; uint32_t x1581; fiat_np384_uint1 x1582; uint32_t x1583; fiat_np384_uint1 x1584; uint32_t x1585; fiat_np384_uint1 x1586; uint32_t x1587; fiat_np384_uint1 x1588; uint32_t x1589; fiat_np384_uint1 x1590; uint32_t x1591; fiat_np384_uint1 x1592; uint32_t x1593; fiat_np384_uint1 x1594; uint32_t x1595; fiat_np384_uint1 x1596; uint32_t x1597; uint32_t x1598; fiat_np384_uint1 x1599; uint32_t x1600; fiat_np384_uint1 x1601; uint32_t x1602; fiat_np384_uint1 x1603; uint32_t x1604; fiat_np384_uint1 x1605; uint32_t x1606; fiat_np384_uint1 x1607; uint32_t x1608; fiat_np384_uint1 x1609; uint32_t x1610; fiat_np384_uint1 x1611; uint32_t x1612; fiat_np384_uint1 x1613; uint32_t x1614; fiat_np384_uint1 x1615; uint32_t x1616; fiat_np384_uint1 x1617; uint32_t x1618; fiat_np384_uint1 x1619; uint32_t x1620; fiat_np384_uint1 x1621; uint32_t x1622; fiat_np384_uint1 x1623; uint32_t x1624; uint32_t x1625; uint32_t x1626; uint32_t x1627; uint32_t x1628; uint32_t x1629; uint32_t x1630; uint32_t x1631; uint32_t x1632; uint32_t x1633; uint32_t x1634; uint32_t x1635; uint32_t x1636; uint32_t x1637; uint32_t x1638; uint32_t x1639; uint32_t x1640; uint32_t x1641; uint32_t x1642; uint32_t x1643; uint32_t x1644; uint32_t x1645; uint32_t x1646; uint32_t x1647; uint32_t x1648; uint32_t x1649; fiat_np384_uint1 x1650; uint32_t x1651; fiat_np384_uint1 x1652; uint32_t x1653; fiat_np384_uint1 x1654; uint32_t x1655; fiat_np384_uint1 x1656; uint32_t x1657; fiat_np384_uint1 x1658; uint32_t x1659; fiat_np384_uint1 x1660; uint32_t x1661; fiat_np384_uint1 x1662; uint32_t x1663; fiat_np384_uint1 x1664; uint32_t x1665; fiat_np384_uint1 x1666; uint32_t x1667; fiat_np384_uint1 x1668; uint32_t x1669; fiat_np384_uint1 x1670; uint32_t x1671; uint32_t x1672; fiat_np384_uint1 x1673; uint32_t x1674; fiat_np384_uint1 x1675; uint32_t x1676; fiat_np384_uint1 x1677; uint32_t x1678; fiat_np384_uint1 x1679; uint32_t x1680; fiat_np384_uint1 x1681; uint32_t x1682; fiat_np384_uint1 x1683; uint32_t x1684; fiat_np384_uint1 x1685; uint32_t x1686; fiat_np384_uint1 x1687; uint32_t x1688; fiat_np384_uint1 x1689; uint32_t x1690; fiat_np384_uint1 x1691; uint32_t x1692; fiat_np384_uint1 x1693; uint32_t x1694; fiat_np384_uint1 x1695; uint32_t x1696; fiat_np384_uint1 x1697; uint32_t x1698; uint32_t x1699; uint32_t x1700; uint32_t x1701; uint32_t x1702; uint32_t x1703; uint32_t x1704; uint32_t x1705; uint32_t x1706; uint32_t x1707; uint32_t x1708; uint32_t x1709; uint32_t x1710; uint32_t x1711; uint32_t x1712; uint32_t x1713; uint32_t x1714; uint32_t x1715; uint32_t x1716; uint32_t x1717; uint32_t x1718; uint32_t x1719; uint32_t x1720; uint32_t x1721; uint32_t x1722; uint32_t x1723; uint32_t x1724; fiat_np384_uint1 x1725; uint32_t x1726; fiat_np384_uint1 x1727; uint32_t x1728; fiat_np384_uint1 x1729; uint32_t x1730; fiat_np384_uint1 x1731; uint32_t x1732; fiat_np384_uint1 x1733; uint32_t x1734; fiat_np384_uint1 x1735; uint32_t x1736; fiat_np384_uint1 x1737; uint32_t x1738; fiat_np384_uint1 x1739; uint32_t x1740; fiat_np384_uint1 x1741; uint32_t x1742; fiat_np384_uint1 x1743; uint32_t x1744; fiat_np384_uint1 x1745; uint32_t x1746; uint32_t x1747; fiat_np384_uint1 x1748; uint32_t x1749; fiat_np384_uint1 x1750; uint32_t x1751; fiat_np384_uint1 x1752; uint32_t x1753; fiat_np384_uint1 x1754; uint32_t x1755; fiat_np384_uint1 x1756; uint32_t x1757; fiat_np384_uint1 x1758; uint32_t x1759; fiat_np384_uint1 x1760; uint32_t x1761; fiat_np384_uint1 x1762; uint32_t x1763; fiat_np384_uint1 x1764; uint32_t x1765; fiat_np384_uint1 x1766; uint32_t x1767; fiat_np384_uint1 x1768; uint32_t x1769; fiat_np384_uint1 x1770; uint32_t x1771; fiat_np384_uint1 x1772; uint32_t x1773; uint32_t x1774; fiat_np384_uint1 x1775; uint32_t x1776; fiat_np384_uint1 x1777; uint32_t x1778; fiat_np384_uint1 x1779; uint32_t x1780; fiat_np384_uint1 x1781; uint32_t x1782; fiat_np384_uint1 x1783; uint32_t x1784; fiat_np384_uint1 x1785; uint32_t x1786; fiat_np384_uint1 x1787; uint32_t x1788; fiat_np384_uint1 x1789; uint32_t x1790; fiat_np384_uint1 x1791; uint32_t x1792; fiat_np384_uint1 x1793; uint32_t x1794; fiat_np384_uint1 x1795; uint32_t x1796; fiat_np384_uint1 x1797; uint32_t x1798; fiat_np384_uint1 x1799; uint32_t x1800; uint32_t x1801; uint32_t x1802; uint32_t x1803; uint32_t x1804; uint32_t x1805; uint32_t x1806; uint32_t x1807; uint32_t x1808; uint32_t x1809; uint32_t x1810; uint32_t x1811; x1 = (arg1[1]); x2 = (arg1[2]); x3 = (arg1[3]); x4 = (arg1[4]); x5 = (arg1[5]); x6 = (arg1[6]); x7 = (arg1[7]); x8 = (arg1[8]); x9 = (arg1[9]); x10 = (arg1[10]); x11 = (arg1[11]); x12 = (arg1[0]); fiat_np384_mulx_u32(&x13, &x14, x12, (arg2[11])); fiat_np384_mulx_u32(&x15, &x16, x12, (arg2[10])); fiat_np384_mulx_u32(&x17, &x18, x12, (arg2[9])); fiat_np384_mulx_u32(&x19, &x20, x12, (arg2[8])); fiat_np384_mulx_u32(&x21, &x22, x12, (arg2[7])); fiat_np384_mulx_u32(&x23, &x24, x12, (arg2[6])); fiat_np384_mulx_u32(&x25, &x26, x12, (arg2[5])); fiat_np384_mulx_u32(&x27, &x28, x12, (arg2[4])); fiat_np384_mulx_u32(&x29, &x30, x12, (arg2[3])); fiat_np384_mulx_u32(&x31, &x32, x12, (arg2[2])); fiat_np384_mulx_u32(&x33, &x34, x12, (arg2[1])); fiat_np384_mulx_u32(&x35, &x36, x12, (arg2[0])); fiat_np384_addcarryx_u32(&x37, &x38, 0x0, x36, x33); fiat_np384_addcarryx_u32(&x39, &x40, x38, x34, x31); fiat_np384_addcarryx_u32(&x41, &x42, x40, x32, x29); fiat_np384_addcarryx_u32(&x43, &x44, x42, x30, x27); fiat_np384_addcarryx_u32(&x45, &x46, x44, x28, x25); fiat_np384_addcarryx_u32(&x47, &x48, x46, x26, x23); fiat_np384_addcarryx_u32(&x49, &x50, x48, x24, x21); fiat_np384_addcarryx_u32(&x51, &x52, x50, x22, x19); fiat_np384_addcarryx_u32(&x53, &x54, x52, x20, x17); fiat_np384_addcarryx_u32(&x55, &x56, x54, x18, x15); fiat_np384_addcarryx_u32(&x57, &x58, x56, x16, x13); x59 = (x58 + x14); fiat_np384_mulx_u32(&x60, &x61, x35, UINT32_C(0xe88fdc45)); fiat_np384_mulx_u32(&x62, &x63, x60, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x64, &x65, x60, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x66, &x67, x60, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x68, &x69, x60, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x70, &x71, x60, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x72, &x73, x60, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x74, &x75, x60, UINT32_C(0xc7634d81)); fiat_np384_mulx_u32(&x76, &x77, x60, UINT32_C(0xf4372ddf)); fiat_np384_mulx_u32(&x78, &x79, x60, UINT32_C(0x581a0db2)); fiat_np384_mulx_u32(&x80, &x81, x60, UINT32_C(0x48b0a77a)); fiat_np384_mulx_u32(&x82, &x83, x60, UINT32_C(0xecec196a)); fiat_np384_mulx_u32(&x84, &x85, x60, UINT32_C(0xccc52973)); fiat_np384_addcarryx_u32(&x86, &x87, 0x0, x85, x82); fiat_np384_addcarryx_u32(&x88, &x89, x87, x83, x80); fiat_np384_addcarryx_u32(&x90, &x91, x89, x81, x78); fiat_np384_addcarryx_u32(&x92, &x93, x91, x79, x76); fiat_np384_addcarryx_u32(&x94, &x95, x93, x77, x74); fiat_np384_addcarryx_u32(&x96, &x97, x95, x75, x72); fiat_np384_addcarryx_u32(&x98, &x99, x97, x73, x70); fiat_np384_addcarryx_u32(&x100, &x101, x99, x71, x68); fiat_np384_addcarryx_u32(&x102, &x103, x101, x69, x66); fiat_np384_addcarryx_u32(&x104, &x105, x103, x67, x64); fiat_np384_addcarryx_u32(&x106, &x107, x105, x65, x62); x108 = (x107 + x63); fiat_np384_addcarryx_u32(&x109, &x110, 0x0, x35, x84); fiat_np384_addcarryx_u32(&x111, &x112, x110, x37, x86); fiat_np384_addcarryx_u32(&x113, &x114, x112, x39, x88); fiat_np384_addcarryx_u32(&x115, &x116, x114, x41, x90); fiat_np384_addcarryx_u32(&x117, &x118, x116, x43, x92); fiat_np384_addcarryx_u32(&x119, &x120, x118, x45, x94); fiat_np384_addcarryx_u32(&x121, &x122, x120, x47, x96); fiat_np384_addcarryx_u32(&x123, &x124, x122, x49, x98); fiat_np384_addcarryx_u32(&x125, &x126, x124, x51, x100); fiat_np384_addcarryx_u32(&x127, &x128, x126, x53, x102); fiat_np384_addcarryx_u32(&x129, &x130, x128, x55, x104); fiat_np384_addcarryx_u32(&x131, &x132, x130, x57, x106); fiat_np384_addcarryx_u32(&x133, &x134, x132, x59, x108); fiat_np384_mulx_u32(&x135, &x136, x1, (arg2[11])); fiat_np384_mulx_u32(&x137, &x138, x1, (arg2[10])); fiat_np384_mulx_u32(&x139, &x140, x1, (arg2[9])); fiat_np384_mulx_u32(&x141, &x142, x1, (arg2[8])); fiat_np384_mulx_u32(&x143, &x144, x1, (arg2[7])); fiat_np384_mulx_u32(&x145, &x146, x1, (arg2[6])); fiat_np384_mulx_u32(&x147, &x148, x1, (arg2[5])); fiat_np384_mulx_u32(&x149, &x150, x1, (arg2[4])); fiat_np384_mulx_u32(&x151, &x152, x1, (arg2[3])); fiat_np384_mulx_u32(&x153, &x154, x1, (arg2[2])); fiat_np384_mulx_u32(&x155, &x156, x1, (arg2[1])); fiat_np384_mulx_u32(&x157, &x158, x1, (arg2[0])); fiat_np384_addcarryx_u32(&x159, &x160, 0x0, x158, x155); fiat_np384_addcarryx_u32(&x161, &x162, x160, x156, x153); fiat_np384_addcarryx_u32(&x163, &x164, x162, x154, x151); fiat_np384_addcarryx_u32(&x165, &x166, x164, x152, x149); fiat_np384_addcarryx_u32(&x167, &x168, x166, x150, x147); fiat_np384_addcarryx_u32(&x169, &x170, x168, x148, x145); fiat_np384_addcarryx_u32(&x171, &x172, x170, x146, x143); fiat_np384_addcarryx_u32(&x173, &x174, x172, x144, x141); fiat_np384_addcarryx_u32(&x175, &x176, x174, x142, x139); fiat_np384_addcarryx_u32(&x177, &x178, x176, x140, x137); fiat_np384_addcarryx_u32(&x179, &x180, x178, x138, x135); x181 = (x180 + x136); fiat_np384_addcarryx_u32(&x182, &x183, 0x0, x111, x157); fiat_np384_addcarryx_u32(&x184, &x185, x183, x113, x159); fiat_np384_addcarryx_u32(&x186, &x187, x185, x115, x161); fiat_np384_addcarryx_u32(&x188, &x189, x187, x117, x163); fiat_np384_addcarryx_u32(&x190, &x191, x189, x119, x165); fiat_np384_addcarryx_u32(&x192, &x193, x191, x121, x167); fiat_np384_addcarryx_u32(&x194, &x195, x193, x123, x169); fiat_np384_addcarryx_u32(&x196, &x197, x195, x125, x171); fiat_np384_addcarryx_u32(&x198, &x199, x197, x127, x173); fiat_np384_addcarryx_u32(&x200, &x201, x199, x129, x175); fiat_np384_addcarryx_u32(&x202, &x203, x201, x131, x177); fiat_np384_addcarryx_u32(&x204, &x205, x203, x133, x179); fiat_np384_addcarryx_u32(&x206, &x207, x205, x134, x181); fiat_np384_mulx_u32(&x208, &x209, x182, UINT32_C(0xe88fdc45)); fiat_np384_mulx_u32(&x210, &x211, x208, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x212, &x213, x208, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x214, &x215, x208, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x216, &x217, x208, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x218, &x219, x208, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x220, &x221, x208, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x222, &x223, x208, UINT32_C(0xc7634d81)); fiat_np384_mulx_u32(&x224, &x225, x208, UINT32_C(0xf4372ddf)); fiat_np384_mulx_u32(&x226, &x227, x208, UINT32_C(0x581a0db2)); fiat_np384_mulx_u32(&x228, &x229, x208, UINT32_C(0x48b0a77a)); fiat_np384_mulx_u32(&x230, &x231, x208, UINT32_C(0xecec196a)); fiat_np384_mulx_u32(&x232, &x233, x208, UINT32_C(0xccc52973)); fiat_np384_addcarryx_u32(&x234, &x235, 0x0, x233, x230); fiat_np384_addcarryx_u32(&x236, &x237, x235, x231, x228); fiat_np384_addcarryx_u32(&x238, &x239, x237, x229, x226); fiat_np384_addcarryx_u32(&x240, &x241, x239, x227, x224); fiat_np384_addcarryx_u32(&x242, &x243, x241, x225, x222); fiat_np384_addcarryx_u32(&x244, &x245, x243, x223, x220); fiat_np384_addcarryx_u32(&x246, &x247, x245, x221, x218); fiat_np384_addcarryx_u32(&x248, &x249, x247, x219, x216); fiat_np384_addcarryx_u32(&x250, &x251, x249, x217, x214); fiat_np384_addcarryx_u32(&x252, &x253, x251, x215, x212); fiat_np384_addcarryx_u32(&x254, &x255, x253, x213, x210); x256 = (x255 + x211); fiat_np384_addcarryx_u32(&x257, &x258, 0x0, x182, x232); fiat_np384_addcarryx_u32(&x259, &x260, x258, x184, x234); fiat_np384_addcarryx_u32(&x261, &x262, x260, x186, x236); fiat_np384_addcarryx_u32(&x263, &x264, x262, x188, x238); fiat_np384_addcarryx_u32(&x265, &x266, x264, x190, x240); fiat_np384_addcarryx_u32(&x267, &x268, x266, x192, x242); fiat_np384_addcarryx_u32(&x269, &x270, x268, x194, x244); fiat_np384_addcarryx_u32(&x271, &x272, x270, x196, x246); fiat_np384_addcarryx_u32(&x273, &x274, x272, x198, x248); fiat_np384_addcarryx_u32(&x275, &x276, x274, x200, x250); fiat_np384_addcarryx_u32(&x277, &x278, x276, x202, x252); fiat_np384_addcarryx_u32(&x279, &x280, x278, x204, x254); fiat_np384_addcarryx_u32(&x281, &x282, x280, x206, x256); x283 = ((uint32_t)x282 + x207); fiat_np384_mulx_u32(&x284, &x285, x2, (arg2[11])); fiat_np384_mulx_u32(&x286, &x287, x2, (arg2[10])); fiat_np384_mulx_u32(&x288, &x289, x2, (arg2[9])); fiat_np384_mulx_u32(&x290, &x291, x2, (arg2[8])); fiat_np384_mulx_u32(&x292, &x293, x2, (arg2[7])); fiat_np384_mulx_u32(&x294, &x295, x2, (arg2[6])); fiat_np384_mulx_u32(&x296, &x297, x2, (arg2[5])); fiat_np384_mulx_u32(&x298, &x299, x2, (arg2[4])); fiat_np384_mulx_u32(&x300, &x301, x2, (arg2[3])); fiat_np384_mulx_u32(&x302, &x303, x2, (arg2[2])); fiat_np384_mulx_u32(&x304, &x305, x2, (arg2[1])); fiat_np384_mulx_u32(&x306, &x307, x2, (arg2[0])); fiat_np384_addcarryx_u32(&x308, &x309, 0x0, x307, x304); fiat_np384_addcarryx_u32(&x310, &x311, x309, x305, x302); fiat_np384_addcarryx_u32(&x312, &x313, x311, x303, x300); fiat_np384_addcarryx_u32(&x314, &x315, x313, x301, x298); fiat_np384_addcarryx_u32(&x316, &x317, x315, x299, x296); fiat_np384_addcarryx_u32(&x318, &x319, x317, x297, x294); fiat_np384_addcarryx_u32(&x320, &x321, x319, x295, x292); fiat_np384_addcarryx_u32(&x322, &x323, x321, x293, x290); fiat_np384_addcarryx_u32(&x324, &x325, x323, x291, x288); fiat_np384_addcarryx_u32(&x326, &x327, x325, x289, x286); fiat_np384_addcarryx_u32(&x328, &x329, x327, x287, x284); x330 = (x329 + x285); fiat_np384_addcarryx_u32(&x331, &x332, 0x0, x259, x306); fiat_np384_addcarryx_u32(&x333, &x334, x332, x261, x308); fiat_np384_addcarryx_u32(&x335, &x336, x334, x263, x310); fiat_np384_addcarryx_u32(&x337, &x338, x336, x265, x312); fiat_np384_addcarryx_u32(&x339, &x340, x338, x267, x314); fiat_np384_addcarryx_u32(&x341, &x342, x340, x269, x316); fiat_np384_addcarryx_u32(&x343, &x344, x342, x271, x318); fiat_np384_addcarryx_u32(&x345, &x346, x344, x273, x320); fiat_np384_addcarryx_u32(&x347, &x348, x346, x275, x322); fiat_np384_addcarryx_u32(&x349, &x350, x348, x277, x324); fiat_np384_addcarryx_u32(&x351, &x352, x350, x279, x326); fiat_np384_addcarryx_u32(&x353, &x354, x352, x281, x328); fiat_np384_addcarryx_u32(&x355, &x356, x354, x283, x330); fiat_np384_mulx_u32(&x357, &x358, x331, UINT32_C(0xe88fdc45)); fiat_np384_mulx_u32(&x359, &x360, x357, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x361, &x362, x357, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x363, &x364, x357, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x365, &x366, x357, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x367, &x368, x357, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x369, &x370, x357, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x371, &x372, x357, UINT32_C(0xc7634d81)); fiat_np384_mulx_u32(&x373, &x374, x357, UINT32_C(0xf4372ddf)); fiat_np384_mulx_u32(&x375, &x376, x357, UINT32_C(0x581a0db2)); fiat_np384_mulx_u32(&x377, &x378, x357, UINT32_C(0x48b0a77a)); fiat_np384_mulx_u32(&x379, &x380, x357, UINT32_C(0xecec196a)); fiat_np384_mulx_u32(&x381, &x382, x357, UINT32_C(0xccc52973)); fiat_np384_addcarryx_u32(&x383, &x384, 0x0, x382, x379); fiat_np384_addcarryx_u32(&x385, &x386, x384, x380, x377); fiat_np384_addcarryx_u32(&x387, &x388, x386, x378, x375); fiat_np384_addcarryx_u32(&x389, &x390, x388, x376, x373); fiat_np384_addcarryx_u32(&x391, &x392, x390, x374, x371); fiat_np384_addcarryx_u32(&x393, &x394, x392, x372, x369); fiat_np384_addcarryx_u32(&x395, &x396, x394, x370, x367); fiat_np384_addcarryx_u32(&x397, &x398, x396, x368, x365); fiat_np384_addcarryx_u32(&x399, &x400, x398, x366, x363); fiat_np384_addcarryx_u32(&x401, &x402, x400, x364, x361); fiat_np384_addcarryx_u32(&x403, &x404, x402, x362, x359); x405 = (x404 + x360); fiat_np384_addcarryx_u32(&x406, &x407, 0x0, x331, x381); fiat_np384_addcarryx_u32(&x408, &x409, x407, x333, x383); fiat_np384_addcarryx_u32(&x410, &x411, x409, x335, x385); fiat_np384_addcarryx_u32(&x412, &x413, x411, x337, x387); fiat_np384_addcarryx_u32(&x414, &x415, x413, x339, x389); fiat_np384_addcarryx_u32(&x416, &x417, x415, x341, x391); fiat_np384_addcarryx_u32(&x418, &x419, x417, x343, x393); fiat_np384_addcarryx_u32(&x420, &x421, x419, x345, x395); fiat_np384_addcarryx_u32(&x422, &x423, x421, x347, x397); fiat_np384_addcarryx_u32(&x424, &x425, x423, x349, x399); fiat_np384_addcarryx_u32(&x426, &x427, x425, x351, x401); fiat_np384_addcarryx_u32(&x428, &x429, x427, x353, x403); fiat_np384_addcarryx_u32(&x430, &x431, x429, x355, x405); x432 = ((uint32_t)x431 + x356); fiat_np384_mulx_u32(&x433, &x434, x3, (arg2[11])); fiat_np384_mulx_u32(&x435, &x436, x3, (arg2[10])); fiat_np384_mulx_u32(&x437, &x438, x3, (arg2[9])); fiat_np384_mulx_u32(&x439, &x440, x3, (arg2[8])); fiat_np384_mulx_u32(&x441, &x442, x3, (arg2[7])); fiat_np384_mulx_u32(&x443, &x444, x3, (arg2[6])); fiat_np384_mulx_u32(&x445, &x446, x3, (arg2[5])); fiat_np384_mulx_u32(&x447, &x448, x3, (arg2[4])); fiat_np384_mulx_u32(&x449, &x450, x3, (arg2[3])); fiat_np384_mulx_u32(&x451, &x452, x3, (arg2[2])); fiat_np384_mulx_u32(&x453, &x454, x3, (arg2[1])); fiat_np384_mulx_u32(&x455, &x456, x3, (arg2[0])); fiat_np384_addcarryx_u32(&x457, &x458, 0x0, x456, x453); fiat_np384_addcarryx_u32(&x459, &x460, x458, x454, x451); fiat_np384_addcarryx_u32(&x461, &x462, x460, x452, x449); fiat_np384_addcarryx_u32(&x463, &x464, x462, x450, x447); fiat_np384_addcarryx_u32(&x465, &x466, x464, x448, x445); fiat_np384_addcarryx_u32(&x467, &x468, x466, x446, x443); fiat_np384_addcarryx_u32(&x469, &x470, x468, x444, x441); fiat_np384_addcarryx_u32(&x471, &x472, x470, x442, x439); fiat_np384_addcarryx_u32(&x473, &x474, x472, x440, x437); fiat_np384_addcarryx_u32(&x475, &x476, x474, x438, x435); fiat_np384_addcarryx_u32(&x477, &x478, x476, x436, x433); x479 = (x478 + x434); fiat_np384_addcarryx_u32(&x480, &x481, 0x0, x408, x455); fiat_np384_addcarryx_u32(&x482, &x483, x481, x410, x457); fiat_np384_addcarryx_u32(&x484, &x485, x483, x412, x459); fiat_np384_addcarryx_u32(&x486, &x487, x485, x414, x461); fiat_np384_addcarryx_u32(&x488, &x489, x487, x416, x463); fiat_np384_addcarryx_u32(&x490, &x491, x489, x418, x465); fiat_np384_addcarryx_u32(&x492, &x493, x491, x420, x467); fiat_np384_addcarryx_u32(&x494, &x495, x493, x422, x469); fiat_np384_addcarryx_u32(&x496, &x497, x495, x424, x471); fiat_np384_addcarryx_u32(&x498, &x499, x497, x426, x473); fiat_np384_addcarryx_u32(&x500, &x501, x499, x428, x475); fiat_np384_addcarryx_u32(&x502, &x503, x501, x430, x477); fiat_np384_addcarryx_u32(&x504, &x505, x503, x432, x479); fiat_np384_mulx_u32(&x506, &x507, x480, UINT32_C(0xe88fdc45)); fiat_np384_mulx_u32(&x508, &x509, x506, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x510, &x511, x506, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x512, &x513, x506, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x514, &x515, x506, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x516, &x517, x506, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x518, &x519, x506, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x520, &x521, x506, UINT32_C(0xc7634d81)); fiat_np384_mulx_u32(&x522, &x523, x506, UINT32_C(0xf4372ddf)); fiat_np384_mulx_u32(&x524, &x525, x506, UINT32_C(0x581a0db2)); fiat_np384_mulx_u32(&x526, &x527, x506, UINT32_C(0x48b0a77a)); fiat_np384_mulx_u32(&x528, &x529, x506, UINT32_C(0xecec196a)); fiat_np384_mulx_u32(&x530, &x531, x506, UINT32_C(0xccc52973)); fiat_np384_addcarryx_u32(&x532, &x533, 0x0, x531, x528); fiat_np384_addcarryx_u32(&x534, &x535, x533, x529, x526); fiat_np384_addcarryx_u32(&x536, &x537, x535, x527, x524); fiat_np384_addcarryx_u32(&x538, &x539, x537, x525, x522); fiat_np384_addcarryx_u32(&x540, &x541, x539, x523, x520); fiat_np384_addcarryx_u32(&x542, &x543, x541, x521, x518); fiat_np384_addcarryx_u32(&x544, &x545, x543, x519, x516); fiat_np384_addcarryx_u32(&x546, &x547, x545, x517, x514); fiat_np384_addcarryx_u32(&x548, &x549, x547, x515, x512); fiat_np384_addcarryx_u32(&x550, &x551, x549, x513, x510); fiat_np384_addcarryx_u32(&x552, &x553, x551, x511, x508); x554 = (x553 + x509); fiat_np384_addcarryx_u32(&x555, &x556, 0x0, x480, x530); fiat_np384_addcarryx_u32(&x557, &x558, x556, x482, x532); fiat_np384_addcarryx_u32(&x559, &x560, x558, x484, x534); fiat_np384_addcarryx_u32(&x561, &x562, x560, x486, x536); fiat_np384_addcarryx_u32(&x563, &x564, x562, x488, x538); fiat_np384_addcarryx_u32(&x565, &x566, x564, x490, x540); fiat_np384_addcarryx_u32(&x567, &x568, x566, x492, x542); fiat_np384_addcarryx_u32(&x569, &x570, x568, x494, x544); fiat_np384_addcarryx_u32(&x571, &x572, x570, x496, x546); fiat_np384_addcarryx_u32(&x573, &x574, x572, x498, x548); fiat_np384_addcarryx_u32(&x575, &x576, x574, x500, x550); fiat_np384_addcarryx_u32(&x577, &x578, x576, x502, x552); fiat_np384_addcarryx_u32(&x579, &x580, x578, x504, x554); x581 = ((uint32_t)x580 + x505); fiat_np384_mulx_u32(&x582, &x583, x4, (arg2[11])); fiat_np384_mulx_u32(&x584, &x585, x4, (arg2[10])); fiat_np384_mulx_u32(&x586, &x587, x4, (arg2[9])); fiat_np384_mulx_u32(&x588, &x589, x4, (arg2[8])); fiat_np384_mulx_u32(&x590, &x591, x4, (arg2[7])); fiat_np384_mulx_u32(&x592, &x593, x4, (arg2[6])); fiat_np384_mulx_u32(&x594, &x595, x4, (arg2[5])); fiat_np384_mulx_u32(&x596, &x597, x4, (arg2[4])); fiat_np384_mulx_u32(&x598, &x599, x4, (arg2[3])); fiat_np384_mulx_u32(&x600, &x601, x4, (arg2[2])); fiat_np384_mulx_u32(&x602, &x603, x4, (arg2[1])); fiat_np384_mulx_u32(&x604, &x605, x4, (arg2[0])); fiat_np384_addcarryx_u32(&x606, &x607, 0x0, x605, x602); fiat_np384_addcarryx_u32(&x608, &x609, x607, x603, x600); fiat_np384_addcarryx_u32(&x610, &x611, x609, x601, x598); fiat_np384_addcarryx_u32(&x612, &x613, x611, x599, x596); fiat_np384_addcarryx_u32(&x614, &x615, x613, x597, x594); fiat_np384_addcarryx_u32(&x616, &x617, x615, x595, x592); fiat_np384_addcarryx_u32(&x618, &x619, x617, x593, x590); fiat_np384_addcarryx_u32(&x620, &x621, x619, x591, x588); fiat_np384_addcarryx_u32(&x622, &x623, x621, x589, x586); fiat_np384_addcarryx_u32(&x624, &x625, x623, x587, x584); fiat_np384_addcarryx_u32(&x626, &x627, x625, x585, x582); x628 = (x627 + x583); fiat_np384_addcarryx_u32(&x629, &x630, 0x0, x557, x604); fiat_np384_addcarryx_u32(&x631, &x632, x630, x559, x606); fiat_np384_addcarryx_u32(&x633, &x634, x632, x561, x608); fiat_np384_addcarryx_u32(&x635, &x636, x634, x563, x610); fiat_np384_addcarryx_u32(&x637, &x638, x636, x565, x612); fiat_np384_addcarryx_u32(&x639, &x640, x638, x567, x614); fiat_np384_addcarryx_u32(&x641, &x642, x640, x569, x616); fiat_np384_addcarryx_u32(&x643, &x644, x642, x571, x618); fiat_np384_addcarryx_u32(&x645, &x646, x644, x573, x620); fiat_np384_addcarryx_u32(&x647, &x648, x646, x575, x622); fiat_np384_addcarryx_u32(&x649, &x650, x648, x577, x624); fiat_np384_addcarryx_u32(&x651, &x652, x650, x579, x626); fiat_np384_addcarryx_u32(&x653, &x654, x652, x581, x628); fiat_np384_mulx_u32(&x655, &x656, x629, UINT32_C(0xe88fdc45)); fiat_np384_mulx_u32(&x657, &x658, x655, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x659, &x660, x655, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x661, &x662, x655, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x663, &x664, x655, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x665, &x666, x655, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x667, &x668, x655, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x669, &x670, x655, UINT32_C(0xc7634d81)); fiat_np384_mulx_u32(&x671, &x672, x655, UINT32_C(0xf4372ddf)); fiat_np384_mulx_u32(&x673, &x674, x655, UINT32_C(0x581a0db2)); fiat_np384_mulx_u32(&x675, &x676, x655, UINT32_C(0x48b0a77a)); fiat_np384_mulx_u32(&x677, &x678, x655, UINT32_C(0xecec196a)); fiat_np384_mulx_u32(&x679, &x680, x655, UINT32_C(0xccc52973)); fiat_np384_addcarryx_u32(&x681, &x682, 0x0, x680, x677); fiat_np384_addcarryx_u32(&x683, &x684, x682, x678, x675); fiat_np384_addcarryx_u32(&x685, &x686, x684, x676, x673); fiat_np384_addcarryx_u32(&x687, &x688, x686, x674, x671); fiat_np384_addcarryx_u32(&x689, &x690, x688, x672, x669); fiat_np384_addcarryx_u32(&x691, &x692, x690, x670, x667); fiat_np384_addcarryx_u32(&x693, &x694, x692, x668, x665); fiat_np384_addcarryx_u32(&x695, &x696, x694, x666, x663); fiat_np384_addcarryx_u32(&x697, &x698, x696, x664, x661); fiat_np384_addcarryx_u32(&x699, &x700, x698, x662, x659); fiat_np384_addcarryx_u32(&x701, &x702, x700, x660, x657); x703 = (x702 + x658); fiat_np384_addcarryx_u32(&x704, &x705, 0x0, x629, x679); fiat_np384_addcarryx_u32(&x706, &x707, x705, x631, x681); fiat_np384_addcarryx_u32(&x708, &x709, x707, x633, x683); fiat_np384_addcarryx_u32(&x710, &x711, x709, x635, x685); fiat_np384_addcarryx_u32(&x712, &x713, x711, x637, x687); fiat_np384_addcarryx_u32(&x714, &x715, x713, x639, x689); fiat_np384_addcarryx_u32(&x716, &x717, x715, x641, x691); fiat_np384_addcarryx_u32(&x718, &x719, x717, x643, x693); fiat_np384_addcarryx_u32(&x720, &x721, x719, x645, x695); fiat_np384_addcarryx_u32(&x722, &x723, x721, x647, x697); fiat_np384_addcarryx_u32(&x724, &x725, x723, x649, x699); fiat_np384_addcarryx_u32(&x726, &x727, x725, x651, x701); fiat_np384_addcarryx_u32(&x728, &x729, x727, x653, x703); x730 = ((uint32_t)x729 + x654); fiat_np384_mulx_u32(&x731, &x732, x5, (arg2[11])); fiat_np384_mulx_u32(&x733, &x734, x5, (arg2[10])); fiat_np384_mulx_u32(&x735, &x736, x5, (arg2[9])); fiat_np384_mulx_u32(&x737, &x738, x5, (arg2[8])); fiat_np384_mulx_u32(&x739, &x740, x5, (arg2[7])); fiat_np384_mulx_u32(&x741, &x742, x5, (arg2[6])); fiat_np384_mulx_u32(&x743, &x744, x5, (arg2[5])); fiat_np384_mulx_u32(&x745, &x746, x5, (arg2[4])); fiat_np384_mulx_u32(&x747, &x748, x5, (arg2[3])); fiat_np384_mulx_u32(&x749, &x750, x5, (arg2[2])); fiat_np384_mulx_u32(&x751, &x752, x5, (arg2[1])); fiat_np384_mulx_u32(&x753, &x754, x5, (arg2[0])); fiat_np384_addcarryx_u32(&x755, &x756, 0x0, x754, x751); fiat_np384_addcarryx_u32(&x757, &x758, x756, x752, x749); fiat_np384_addcarryx_u32(&x759, &x760, x758, x750, x747); fiat_np384_addcarryx_u32(&x761, &x762, x760, x748, x745); fiat_np384_addcarryx_u32(&x763, &x764, x762, x746, x743); fiat_np384_addcarryx_u32(&x765, &x766, x764, x744, x741); fiat_np384_addcarryx_u32(&x767, &x768, x766, x742, x739); fiat_np384_addcarryx_u32(&x769, &x770, x768, x740, x737); fiat_np384_addcarryx_u32(&x771, &x772, x770, x738, x735); fiat_np384_addcarryx_u32(&x773, &x774, x772, x736, x733); fiat_np384_addcarryx_u32(&x775, &x776, x774, x734, x731); x777 = (x776 + x732); fiat_np384_addcarryx_u32(&x778, &x779, 0x0, x706, x753); fiat_np384_addcarryx_u32(&x780, &x781, x779, x708, x755); fiat_np384_addcarryx_u32(&x782, &x783, x781, x710, x757); fiat_np384_addcarryx_u32(&x784, &x785, x783, x712, x759); fiat_np384_addcarryx_u32(&x786, &x787, x785, x714, x761); fiat_np384_addcarryx_u32(&x788, &x789, x787, x716, x763); fiat_np384_addcarryx_u32(&x790, &x791, x789, x718, x765); fiat_np384_addcarryx_u32(&x792, &x793, x791, x720, x767); fiat_np384_addcarryx_u32(&x794, &x795, x793, x722, x769); fiat_np384_addcarryx_u32(&x796, &x797, x795, x724, x771); fiat_np384_addcarryx_u32(&x798, &x799, x797, x726, x773); fiat_np384_addcarryx_u32(&x800, &x801, x799, x728, x775); fiat_np384_addcarryx_u32(&x802, &x803, x801, x730, x777); fiat_np384_mulx_u32(&x804, &x805, x778, UINT32_C(0xe88fdc45)); fiat_np384_mulx_u32(&x806, &x807, x804, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x808, &x809, x804, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x810, &x811, x804, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x812, &x813, x804, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x814, &x815, x804, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x816, &x817, x804, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x818, &x819, x804, UINT32_C(0xc7634d81)); fiat_np384_mulx_u32(&x820, &x821, x804, UINT32_C(0xf4372ddf)); fiat_np384_mulx_u32(&x822, &x823, x804, UINT32_C(0x581a0db2)); fiat_np384_mulx_u32(&x824, &x825, x804, UINT32_C(0x48b0a77a)); fiat_np384_mulx_u32(&x826, &x827, x804, UINT32_C(0xecec196a)); fiat_np384_mulx_u32(&x828, &x829, x804, UINT32_C(0xccc52973)); fiat_np384_addcarryx_u32(&x830, &x831, 0x0, x829, x826); fiat_np384_addcarryx_u32(&x832, &x833, x831, x827, x824); fiat_np384_addcarryx_u32(&x834, &x835, x833, x825, x822); fiat_np384_addcarryx_u32(&x836, &x837, x835, x823, x820); fiat_np384_addcarryx_u32(&x838, &x839, x837, x821, x818); fiat_np384_addcarryx_u32(&x840, &x841, x839, x819, x816); fiat_np384_addcarryx_u32(&x842, &x843, x841, x817, x814); fiat_np384_addcarryx_u32(&x844, &x845, x843, x815, x812); fiat_np384_addcarryx_u32(&x846, &x847, x845, x813, x810); fiat_np384_addcarryx_u32(&x848, &x849, x847, x811, x808); fiat_np384_addcarryx_u32(&x850, &x851, x849, x809, x806); x852 = (x851 + x807); fiat_np384_addcarryx_u32(&x853, &x854, 0x0, x778, x828); fiat_np384_addcarryx_u32(&x855, &x856, x854, x780, x830); fiat_np384_addcarryx_u32(&x857, &x858, x856, x782, x832); fiat_np384_addcarryx_u32(&x859, &x860, x858, x784, x834); fiat_np384_addcarryx_u32(&x861, &x862, x860, x786, x836); fiat_np384_addcarryx_u32(&x863, &x864, x862, x788, x838); fiat_np384_addcarryx_u32(&x865, &x866, x864, x790, x840); fiat_np384_addcarryx_u32(&x867, &x868, x866, x792, x842); fiat_np384_addcarryx_u32(&x869, &x870, x868, x794, x844); fiat_np384_addcarryx_u32(&x871, &x872, x870, x796, x846); fiat_np384_addcarryx_u32(&x873, &x874, x872, x798, x848); fiat_np384_addcarryx_u32(&x875, &x876, x874, x800, x850); fiat_np384_addcarryx_u32(&x877, &x878, x876, x802, x852); x879 = ((uint32_t)x878 + x803); fiat_np384_mulx_u32(&x880, &x881, x6, (arg2[11])); fiat_np384_mulx_u32(&x882, &x883, x6, (arg2[10])); fiat_np384_mulx_u32(&x884, &x885, x6, (arg2[9])); fiat_np384_mulx_u32(&x886, &x887, x6, (arg2[8])); fiat_np384_mulx_u32(&x888, &x889, x6, (arg2[7])); fiat_np384_mulx_u32(&x890, &x891, x6, (arg2[6])); fiat_np384_mulx_u32(&x892, &x893, x6, (arg2[5])); fiat_np384_mulx_u32(&x894, &x895, x6, (arg2[4])); fiat_np384_mulx_u32(&x896, &x897, x6, (arg2[3])); fiat_np384_mulx_u32(&x898, &x899, x6, (arg2[2])); fiat_np384_mulx_u32(&x900, &x901, x6, (arg2[1])); fiat_np384_mulx_u32(&x902, &x903, x6, (arg2[0])); fiat_np384_addcarryx_u32(&x904, &x905, 0x0, x903, x900); fiat_np384_addcarryx_u32(&x906, &x907, x905, x901, x898); fiat_np384_addcarryx_u32(&x908, &x909, x907, x899, x896); fiat_np384_addcarryx_u32(&x910, &x911, x909, x897, x894); fiat_np384_addcarryx_u32(&x912, &x913, x911, x895, x892); fiat_np384_addcarryx_u32(&x914, &x915, x913, x893, x890); fiat_np384_addcarryx_u32(&x916, &x917, x915, x891, x888); fiat_np384_addcarryx_u32(&x918, &x919, x917, x889, x886); fiat_np384_addcarryx_u32(&x920, &x921, x919, x887, x884); fiat_np384_addcarryx_u32(&x922, &x923, x921, x885, x882); fiat_np384_addcarryx_u32(&x924, &x925, x923, x883, x880); x926 = (x925 + x881); fiat_np384_addcarryx_u32(&x927, &x928, 0x0, x855, x902); fiat_np384_addcarryx_u32(&x929, &x930, x928, x857, x904); fiat_np384_addcarryx_u32(&x931, &x932, x930, x859, x906); fiat_np384_addcarryx_u32(&x933, &x934, x932, x861, x908); fiat_np384_addcarryx_u32(&x935, &x936, x934, x863, x910); fiat_np384_addcarryx_u32(&x937, &x938, x936, x865, x912); fiat_np384_addcarryx_u32(&x939, &x940, x938, x867, x914); fiat_np384_addcarryx_u32(&x941, &x942, x940, x869, x916); fiat_np384_addcarryx_u32(&x943, &x944, x942, x871, x918); fiat_np384_addcarryx_u32(&x945, &x946, x944, x873, x920); fiat_np384_addcarryx_u32(&x947, &x948, x946, x875, x922); fiat_np384_addcarryx_u32(&x949, &x950, x948, x877, x924); fiat_np384_addcarryx_u32(&x951, &x952, x950, x879, x926); fiat_np384_mulx_u32(&x953, &x954, x927, UINT32_C(0xe88fdc45)); fiat_np384_mulx_u32(&x955, &x956, x953, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x957, &x958, x953, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x959, &x960, x953, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x961, &x962, x953, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x963, &x964, x953, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x965, &x966, x953, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x967, &x968, x953, UINT32_C(0xc7634d81)); fiat_np384_mulx_u32(&x969, &x970, x953, UINT32_C(0xf4372ddf)); fiat_np384_mulx_u32(&x971, &x972, x953, UINT32_C(0x581a0db2)); fiat_np384_mulx_u32(&x973, &x974, x953, UINT32_C(0x48b0a77a)); fiat_np384_mulx_u32(&x975, &x976, x953, UINT32_C(0xecec196a)); fiat_np384_mulx_u32(&x977, &x978, x953, UINT32_C(0xccc52973)); fiat_np384_addcarryx_u32(&x979, &x980, 0x0, x978, x975); fiat_np384_addcarryx_u32(&x981, &x982, x980, x976, x973); fiat_np384_addcarryx_u32(&x983, &x984, x982, x974, x971); fiat_np384_addcarryx_u32(&x985, &x986, x984, x972, x969); fiat_np384_addcarryx_u32(&x987, &x988, x986, x970, x967); fiat_np384_addcarryx_u32(&x989, &x990, x988, x968, x965); fiat_np384_addcarryx_u32(&x991, &x992, x990, x966, x963); fiat_np384_addcarryx_u32(&x993, &x994, x992, x964, x961); fiat_np384_addcarryx_u32(&x995, &x996, x994, x962, x959); fiat_np384_addcarryx_u32(&x997, &x998, x996, x960, x957); fiat_np384_addcarryx_u32(&x999, &x1000, x998, x958, x955); x1001 = (x1000 + x956); fiat_np384_addcarryx_u32(&x1002, &x1003, 0x0, x927, x977); fiat_np384_addcarryx_u32(&x1004, &x1005, x1003, x929, x979); fiat_np384_addcarryx_u32(&x1006, &x1007, x1005, x931, x981); fiat_np384_addcarryx_u32(&x1008, &x1009, x1007, x933, x983); fiat_np384_addcarryx_u32(&x1010, &x1011, x1009, x935, x985); fiat_np384_addcarryx_u32(&x1012, &x1013, x1011, x937, x987); fiat_np384_addcarryx_u32(&x1014, &x1015, x1013, x939, x989); fiat_np384_addcarryx_u32(&x1016, &x1017, x1015, x941, x991); fiat_np384_addcarryx_u32(&x1018, &x1019, x1017, x943, x993); fiat_np384_addcarryx_u32(&x1020, &x1021, x1019, x945, x995); fiat_np384_addcarryx_u32(&x1022, &x1023, x1021, x947, x997); fiat_np384_addcarryx_u32(&x1024, &x1025, x1023, x949, x999); fiat_np384_addcarryx_u32(&x1026, &x1027, x1025, x951, x1001); x1028 = ((uint32_t)x1027 + x952); fiat_np384_mulx_u32(&x1029, &x1030, x7, (arg2[11])); fiat_np384_mulx_u32(&x1031, &x1032, x7, (arg2[10])); fiat_np384_mulx_u32(&x1033, &x1034, x7, (arg2[9])); fiat_np384_mulx_u32(&x1035, &x1036, x7, (arg2[8])); fiat_np384_mulx_u32(&x1037, &x1038, x7, (arg2[7])); fiat_np384_mulx_u32(&x1039, &x1040, x7, (arg2[6])); fiat_np384_mulx_u32(&x1041, &x1042, x7, (arg2[5])); fiat_np384_mulx_u32(&x1043, &x1044, x7, (arg2[4])); fiat_np384_mulx_u32(&x1045, &x1046, x7, (arg2[3])); fiat_np384_mulx_u32(&x1047, &x1048, x7, (arg2[2])); fiat_np384_mulx_u32(&x1049, &x1050, x7, (arg2[1])); fiat_np384_mulx_u32(&x1051, &x1052, x7, (arg2[0])); fiat_np384_addcarryx_u32(&x1053, &x1054, 0x0, x1052, x1049); fiat_np384_addcarryx_u32(&x1055, &x1056, x1054, x1050, x1047); fiat_np384_addcarryx_u32(&x1057, &x1058, x1056, x1048, x1045); fiat_np384_addcarryx_u32(&x1059, &x1060, x1058, x1046, x1043); fiat_np384_addcarryx_u32(&x1061, &x1062, x1060, x1044, x1041); fiat_np384_addcarryx_u32(&x1063, &x1064, x1062, x1042, x1039); fiat_np384_addcarryx_u32(&x1065, &x1066, x1064, x1040, x1037); fiat_np384_addcarryx_u32(&x1067, &x1068, x1066, x1038, x1035); fiat_np384_addcarryx_u32(&x1069, &x1070, x1068, x1036, x1033); fiat_np384_addcarryx_u32(&x1071, &x1072, x1070, x1034, x1031); fiat_np384_addcarryx_u32(&x1073, &x1074, x1072, x1032, x1029); x1075 = (x1074 + x1030); fiat_np384_addcarryx_u32(&x1076, &x1077, 0x0, x1004, x1051); fiat_np384_addcarryx_u32(&x1078, &x1079, x1077, x1006, x1053); fiat_np384_addcarryx_u32(&x1080, &x1081, x1079, x1008, x1055); fiat_np384_addcarryx_u32(&x1082, &x1083, x1081, x1010, x1057); fiat_np384_addcarryx_u32(&x1084, &x1085, x1083, x1012, x1059); fiat_np384_addcarryx_u32(&x1086, &x1087, x1085, x1014, x1061); fiat_np384_addcarryx_u32(&x1088, &x1089, x1087, x1016, x1063); fiat_np384_addcarryx_u32(&x1090, &x1091, x1089, x1018, x1065); fiat_np384_addcarryx_u32(&x1092, &x1093, x1091, x1020, x1067); fiat_np384_addcarryx_u32(&x1094, &x1095, x1093, x1022, x1069); fiat_np384_addcarryx_u32(&x1096, &x1097, x1095, x1024, x1071); fiat_np384_addcarryx_u32(&x1098, &x1099, x1097, x1026, x1073); fiat_np384_addcarryx_u32(&x1100, &x1101, x1099, x1028, x1075); fiat_np384_mulx_u32(&x1102, &x1103, x1076, UINT32_C(0xe88fdc45)); fiat_np384_mulx_u32(&x1104, &x1105, x1102, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x1106, &x1107, x1102, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x1108, &x1109, x1102, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x1110, &x1111, x1102, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x1112, &x1113, x1102, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x1114, &x1115, x1102, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x1116, &x1117, x1102, UINT32_C(0xc7634d81)); fiat_np384_mulx_u32(&x1118, &x1119, x1102, UINT32_C(0xf4372ddf)); fiat_np384_mulx_u32(&x1120, &x1121, x1102, UINT32_C(0x581a0db2)); fiat_np384_mulx_u32(&x1122, &x1123, x1102, UINT32_C(0x48b0a77a)); fiat_np384_mulx_u32(&x1124, &x1125, x1102, UINT32_C(0xecec196a)); fiat_np384_mulx_u32(&x1126, &x1127, x1102, UINT32_C(0xccc52973)); fiat_np384_addcarryx_u32(&x1128, &x1129, 0x0, x1127, x1124); fiat_np384_addcarryx_u32(&x1130, &x1131, x1129, x1125, x1122); fiat_np384_addcarryx_u32(&x1132, &x1133, x1131, x1123, x1120); fiat_np384_addcarryx_u32(&x1134, &x1135, x1133, x1121, x1118); fiat_np384_addcarryx_u32(&x1136, &x1137, x1135, x1119, x1116); fiat_np384_addcarryx_u32(&x1138, &x1139, x1137, x1117, x1114); fiat_np384_addcarryx_u32(&x1140, &x1141, x1139, x1115, x1112); fiat_np384_addcarryx_u32(&x1142, &x1143, x1141, x1113, x1110); fiat_np384_addcarryx_u32(&x1144, &x1145, x1143, x1111, x1108); fiat_np384_addcarryx_u32(&x1146, &x1147, x1145, x1109, x1106); fiat_np384_addcarryx_u32(&x1148, &x1149, x1147, x1107, x1104); x1150 = (x1149 + x1105); fiat_np384_addcarryx_u32(&x1151, &x1152, 0x0, x1076, x1126); fiat_np384_addcarryx_u32(&x1153, &x1154, x1152, x1078, x1128); fiat_np384_addcarryx_u32(&x1155, &x1156, x1154, x1080, x1130); fiat_np384_addcarryx_u32(&x1157, &x1158, x1156, x1082, x1132); fiat_np384_addcarryx_u32(&x1159, &x1160, x1158, x1084, x1134); fiat_np384_addcarryx_u32(&x1161, &x1162, x1160, x1086, x1136); fiat_np384_addcarryx_u32(&x1163, &x1164, x1162, x1088, x1138); fiat_np384_addcarryx_u32(&x1165, &x1166, x1164, x1090, x1140); fiat_np384_addcarryx_u32(&x1167, &x1168, x1166, x1092, x1142); fiat_np384_addcarryx_u32(&x1169, &x1170, x1168, x1094, x1144); fiat_np384_addcarryx_u32(&x1171, &x1172, x1170, x1096, x1146); fiat_np384_addcarryx_u32(&x1173, &x1174, x1172, x1098, x1148); fiat_np384_addcarryx_u32(&x1175, &x1176, x1174, x1100, x1150); x1177 = ((uint32_t)x1176 + x1101); fiat_np384_mulx_u32(&x1178, &x1179, x8, (arg2[11])); fiat_np384_mulx_u32(&x1180, &x1181, x8, (arg2[10])); fiat_np384_mulx_u32(&x1182, &x1183, x8, (arg2[9])); fiat_np384_mulx_u32(&x1184, &x1185, x8, (arg2[8])); fiat_np384_mulx_u32(&x1186, &x1187, x8, (arg2[7])); fiat_np384_mulx_u32(&x1188, &x1189, x8, (arg2[6])); fiat_np384_mulx_u32(&x1190, &x1191, x8, (arg2[5])); fiat_np384_mulx_u32(&x1192, &x1193, x8, (arg2[4])); fiat_np384_mulx_u32(&x1194, &x1195, x8, (arg2[3])); fiat_np384_mulx_u32(&x1196, &x1197, x8, (arg2[2])); fiat_np384_mulx_u32(&x1198, &x1199, x8, (arg2[1])); fiat_np384_mulx_u32(&x1200, &x1201, x8, (arg2[0])); fiat_np384_addcarryx_u32(&x1202, &x1203, 0x0, x1201, x1198); fiat_np384_addcarryx_u32(&x1204, &x1205, x1203, x1199, x1196); fiat_np384_addcarryx_u32(&x1206, &x1207, x1205, x1197, x1194); fiat_np384_addcarryx_u32(&x1208, &x1209, x1207, x1195, x1192); fiat_np384_addcarryx_u32(&x1210, &x1211, x1209, x1193, x1190); fiat_np384_addcarryx_u32(&x1212, &x1213, x1211, x1191, x1188); fiat_np384_addcarryx_u32(&x1214, &x1215, x1213, x1189, x1186); fiat_np384_addcarryx_u32(&x1216, &x1217, x1215, x1187, x1184); fiat_np384_addcarryx_u32(&x1218, &x1219, x1217, x1185, x1182); fiat_np384_addcarryx_u32(&x1220, &x1221, x1219, x1183, x1180); fiat_np384_addcarryx_u32(&x1222, &x1223, x1221, x1181, x1178); x1224 = (x1223 + x1179); fiat_np384_addcarryx_u32(&x1225, &x1226, 0x0, x1153, x1200); fiat_np384_addcarryx_u32(&x1227, &x1228, x1226, x1155, x1202); fiat_np384_addcarryx_u32(&x1229, &x1230, x1228, x1157, x1204); fiat_np384_addcarryx_u32(&x1231, &x1232, x1230, x1159, x1206); fiat_np384_addcarryx_u32(&x1233, &x1234, x1232, x1161, x1208); fiat_np384_addcarryx_u32(&x1235, &x1236, x1234, x1163, x1210); fiat_np384_addcarryx_u32(&x1237, &x1238, x1236, x1165, x1212); fiat_np384_addcarryx_u32(&x1239, &x1240, x1238, x1167, x1214); fiat_np384_addcarryx_u32(&x1241, &x1242, x1240, x1169, x1216); fiat_np384_addcarryx_u32(&x1243, &x1244, x1242, x1171, x1218); fiat_np384_addcarryx_u32(&x1245, &x1246, x1244, x1173, x1220); fiat_np384_addcarryx_u32(&x1247, &x1248, x1246, x1175, x1222); fiat_np384_addcarryx_u32(&x1249, &x1250, x1248, x1177, x1224); fiat_np384_mulx_u32(&x1251, &x1252, x1225, UINT32_C(0xe88fdc45)); fiat_np384_mulx_u32(&x1253, &x1254, x1251, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x1255, &x1256, x1251, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x1257, &x1258, x1251, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x1259, &x1260, x1251, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x1261, &x1262, x1251, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x1263, &x1264, x1251, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x1265, &x1266, x1251, UINT32_C(0xc7634d81)); fiat_np384_mulx_u32(&x1267, &x1268, x1251, UINT32_C(0xf4372ddf)); fiat_np384_mulx_u32(&x1269, &x1270, x1251, UINT32_C(0x581a0db2)); fiat_np384_mulx_u32(&x1271, &x1272, x1251, UINT32_C(0x48b0a77a)); fiat_np384_mulx_u32(&x1273, &x1274, x1251, UINT32_C(0xecec196a)); fiat_np384_mulx_u32(&x1275, &x1276, x1251, UINT32_C(0xccc52973)); fiat_np384_addcarryx_u32(&x1277, &x1278, 0x0, x1276, x1273); fiat_np384_addcarryx_u32(&x1279, &x1280, x1278, x1274, x1271); fiat_np384_addcarryx_u32(&x1281, &x1282, x1280, x1272, x1269); fiat_np384_addcarryx_u32(&x1283, &x1284, x1282, x1270, x1267); fiat_np384_addcarryx_u32(&x1285, &x1286, x1284, x1268, x1265); fiat_np384_addcarryx_u32(&x1287, &x1288, x1286, x1266, x1263); fiat_np384_addcarryx_u32(&x1289, &x1290, x1288, x1264, x1261); fiat_np384_addcarryx_u32(&x1291, &x1292, x1290, x1262, x1259); fiat_np384_addcarryx_u32(&x1293, &x1294, x1292, x1260, x1257); fiat_np384_addcarryx_u32(&x1295, &x1296, x1294, x1258, x1255); fiat_np384_addcarryx_u32(&x1297, &x1298, x1296, x1256, x1253); x1299 = (x1298 + x1254); fiat_np384_addcarryx_u32(&x1300, &x1301, 0x0, x1225, x1275); fiat_np384_addcarryx_u32(&x1302, &x1303, x1301, x1227, x1277); fiat_np384_addcarryx_u32(&x1304, &x1305, x1303, x1229, x1279); fiat_np384_addcarryx_u32(&x1306, &x1307, x1305, x1231, x1281); fiat_np384_addcarryx_u32(&x1308, &x1309, x1307, x1233, x1283); fiat_np384_addcarryx_u32(&x1310, &x1311, x1309, x1235, x1285); fiat_np384_addcarryx_u32(&x1312, &x1313, x1311, x1237, x1287); fiat_np384_addcarryx_u32(&x1314, &x1315, x1313, x1239, x1289); fiat_np384_addcarryx_u32(&x1316, &x1317, x1315, x1241, x1291); fiat_np384_addcarryx_u32(&x1318, &x1319, x1317, x1243, x1293); fiat_np384_addcarryx_u32(&x1320, &x1321, x1319, x1245, x1295); fiat_np384_addcarryx_u32(&x1322, &x1323, x1321, x1247, x1297); fiat_np384_addcarryx_u32(&x1324, &x1325, x1323, x1249, x1299); x1326 = ((uint32_t)x1325 + x1250); fiat_np384_mulx_u32(&x1327, &x1328, x9, (arg2[11])); fiat_np384_mulx_u32(&x1329, &x1330, x9, (arg2[10])); fiat_np384_mulx_u32(&x1331, &x1332, x9, (arg2[9])); fiat_np384_mulx_u32(&x1333, &x1334, x9, (arg2[8])); fiat_np384_mulx_u32(&x1335, &x1336, x9, (arg2[7])); fiat_np384_mulx_u32(&x1337, &x1338, x9, (arg2[6])); fiat_np384_mulx_u32(&x1339, &x1340, x9, (arg2[5])); fiat_np384_mulx_u32(&x1341, &x1342, x9, (arg2[4])); fiat_np384_mulx_u32(&x1343, &x1344, x9, (arg2[3])); fiat_np384_mulx_u32(&x1345, &x1346, x9, (arg2[2])); fiat_np384_mulx_u32(&x1347, &x1348, x9, (arg2[1])); fiat_np384_mulx_u32(&x1349, &x1350, x9, (arg2[0])); fiat_np384_addcarryx_u32(&x1351, &x1352, 0x0, x1350, x1347); fiat_np384_addcarryx_u32(&x1353, &x1354, x1352, x1348, x1345); fiat_np384_addcarryx_u32(&x1355, &x1356, x1354, x1346, x1343); fiat_np384_addcarryx_u32(&x1357, &x1358, x1356, x1344, x1341); fiat_np384_addcarryx_u32(&x1359, &x1360, x1358, x1342, x1339); fiat_np384_addcarryx_u32(&x1361, &x1362, x1360, x1340, x1337); fiat_np384_addcarryx_u32(&x1363, &x1364, x1362, x1338, x1335); fiat_np384_addcarryx_u32(&x1365, &x1366, x1364, x1336, x1333); fiat_np384_addcarryx_u32(&x1367, &x1368, x1366, x1334, x1331); fiat_np384_addcarryx_u32(&x1369, &x1370, x1368, x1332, x1329); fiat_np384_addcarryx_u32(&x1371, &x1372, x1370, x1330, x1327); x1373 = (x1372 + x1328); fiat_np384_addcarryx_u32(&x1374, &x1375, 0x0, x1302, x1349); fiat_np384_addcarryx_u32(&x1376, &x1377, x1375, x1304, x1351); fiat_np384_addcarryx_u32(&x1378, &x1379, x1377, x1306, x1353); fiat_np384_addcarryx_u32(&x1380, &x1381, x1379, x1308, x1355); fiat_np384_addcarryx_u32(&x1382, &x1383, x1381, x1310, x1357); fiat_np384_addcarryx_u32(&x1384, &x1385, x1383, x1312, x1359); fiat_np384_addcarryx_u32(&x1386, &x1387, x1385, x1314, x1361); fiat_np384_addcarryx_u32(&x1388, &x1389, x1387, x1316, x1363); fiat_np384_addcarryx_u32(&x1390, &x1391, x1389, x1318, x1365); fiat_np384_addcarryx_u32(&x1392, &x1393, x1391, x1320, x1367); fiat_np384_addcarryx_u32(&x1394, &x1395, x1393, x1322, x1369); fiat_np384_addcarryx_u32(&x1396, &x1397, x1395, x1324, x1371); fiat_np384_addcarryx_u32(&x1398, &x1399, x1397, x1326, x1373); fiat_np384_mulx_u32(&x1400, &x1401, x1374, UINT32_C(0xe88fdc45)); fiat_np384_mulx_u32(&x1402, &x1403, x1400, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x1404, &x1405, x1400, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x1406, &x1407, x1400, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x1408, &x1409, x1400, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x1410, &x1411, x1400, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x1412, &x1413, x1400, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x1414, &x1415, x1400, UINT32_C(0xc7634d81)); fiat_np384_mulx_u32(&x1416, &x1417, x1400, UINT32_C(0xf4372ddf)); fiat_np384_mulx_u32(&x1418, &x1419, x1400, UINT32_C(0x581a0db2)); fiat_np384_mulx_u32(&x1420, &x1421, x1400, UINT32_C(0x48b0a77a)); fiat_np384_mulx_u32(&x1422, &x1423, x1400, UINT32_C(0xecec196a)); fiat_np384_mulx_u32(&x1424, &x1425, x1400, UINT32_C(0xccc52973)); fiat_np384_addcarryx_u32(&x1426, &x1427, 0x0, x1425, x1422); fiat_np384_addcarryx_u32(&x1428, &x1429, x1427, x1423, x1420); fiat_np384_addcarryx_u32(&x1430, &x1431, x1429, x1421, x1418); fiat_np384_addcarryx_u32(&x1432, &x1433, x1431, x1419, x1416); fiat_np384_addcarryx_u32(&x1434, &x1435, x1433, x1417, x1414); fiat_np384_addcarryx_u32(&x1436, &x1437, x1435, x1415, x1412); fiat_np384_addcarryx_u32(&x1438, &x1439, x1437, x1413, x1410); fiat_np384_addcarryx_u32(&x1440, &x1441, x1439, x1411, x1408); fiat_np384_addcarryx_u32(&x1442, &x1443, x1441, x1409, x1406); fiat_np384_addcarryx_u32(&x1444, &x1445, x1443, x1407, x1404); fiat_np384_addcarryx_u32(&x1446, &x1447, x1445, x1405, x1402); x1448 = (x1447 + x1403); fiat_np384_addcarryx_u32(&x1449, &x1450, 0x0, x1374, x1424); fiat_np384_addcarryx_u32(&x1451, &x1452, x1450, x1376, x1426); fiat_np384_addcarryx_u32(&x1453, &x1454, x1452, x1378, x1428); fiat_np384_addcarryx_u32(&x1455, &x1456, x1454, x1380, x1430); fiat_np384_addcarryx_u32(&x1457, &x1458, x1456, x1382, x1432); fiat_np384_addcarryx_u32(&x1459, &x1460, x1458, x1384, x1434); fiat_np384_addcarryx_u32(&x1461, &x1462, x1460, x1386, x1436); fiat_np384_addcarryx_u32(&x1463, &x1464, x1462, x1388, x1438); fiat_np384_addcarryx_u32(&x1465, &x1466, x1464, x1390, x1440); fiat_np384_addcarryx_u32(&x1467, &x1468, x1466, x1392, x1442); fiat_np384_addcarryx_u32(&x1469, &x1470, x1468, x1394, x1444); fiat_np384_addcarryx_u32(&x1471, &x1472, x1470, x1396, x1446); fiat_np384_addcarryx_u32(&x1473, &x1474, x1472, x1398, x1448); x1475 = ((uint32_t)x1474 + x1399); fiat_np384_mulx_u32(&x1476, &x1477, x10, (arg2[11])); fiat_np384_mulx_u32(&x1478, &x1479, x10, (arg2[10])); fiat_np384_mulx_u32(&x1480, &x1481, x10, (arg2[9])); fiat_np384_mulx_u32(&x1482, &x1483, x10, (arg2[8])); fiat_np384_mulx_u32(&x1484, &x1485, x10, (arg2[7])); fiat_np384_mulx_u32(&x1486, &x1487, x10, (arg2[6])); fiat_np384_mulx_u32(&x1488, &x1489, x10, (arg2[5])); fiat_np384_mulx_u32(&x1490, &x1491, x10, (arg2[4])); fiat_np384_mulx_u32(&x1492, &x1493, x10, (arg2[3])); fiat_np384_mulx_u32(&x1494, &x1495, x10, (arg2[2])); fiat_np384_mulx_u32(&x1496, &x1497, x10, (arg2[1])); fiat_np384_mulx_u32(&x1498, &x1499, x10, (arg2[0])); fiat_np384_addcarryx_u32(&x1500, &x1501, 0x0, x1499, x1496); fiat_np384_addcarryx_u32(&x1502, &x1503, x1501, x1497, x1494); fiat_np384_addcarryx_u32(&x1504, &x1505, x1503, x1495, x1492); fiat_np384_addcarryx_u32(&x1506, &x1507, x1505, x1493, x1490); fiat_np384_addcarryx_u32(&x1508, &x1509, x1507, x1491, x1488); fiat_np384_addcarryx_u32(&x1510, &x1511, x1509, x1489, x1486); fiat_np384_addcarryx_u32(&x1512, &x1513, x1511, x1487, x1484); fiat_np384_addcarryx_u32(&x1514, &x1515, x1513, x1485, x1482); fiat_np384_addcarryx_u32(&x1516, &x1517, x1515, x1483, x1480); fiat_np384_addcarryx_u32(&x1518, &x1519, x1517, x1481, x1478); fiat_np384_addcarryx_u32(&x1520, &x1521, x1519, x1479, x1476); x1522 = (x1521 + x1477); fiat_np384_addcarryx_u32(&x1523, &x1524, 0x0, x1451, x1498); fiat_np384_addcarryx_u32(&x1525, &x1526, x1524, x1453, x1500); fiat_np384_addcarryx_u32(&x1527, &x1528, x1526, x1455, x1502); fiat_np384_addcarryx_u32(&x1529, &x1530, x1528, x1457, x1504); fiat_np384_addcarryx_u32(&x1531, &x1532, x1530, x1459, x1506); fiat_np384_addcarryx_u32(&x1533, &x1534, x1532, x1461, x1508); fiat_np384_addcarryx_u32(&x1535, &x1536, x1534, x1463, x1510); fiat_np384_addcarryx_u32(&x1537, &x1538, x1536, x1465, x1512); fiat_np384_addcarryx_u32(&x1539, &x1540, x1538, x1467, x1514); fiat_np384_addcarryx_u32(&x1541, &x1542, x1540, x1469, x1516); fiat_np384_addcarryx_u32(&x1543, &x1544, x1542, x1471, x1518); fiat_np384_addcarryx_u32(&x1545, &x1546, x1544, x1473, x1520); fiat_np384_addcarryx_u32(&x1547, &x1548, x1546, x1475, x1522); fiat_np384_mulx_u32(&x1549, &x1550, x1523, UINT32_C(0xe88fdc45)); fiat_np384_mulx_u32(&x1551, &x1552, x1549, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x1553, &x1554, x1549, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x1555, &x1556, x1549, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x1557, &x1558, x1549, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x1559, &x1560, x1549, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x1561, &x1562, x1549, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x1563, &x1564, x1549, UINT32_C(0xc7634d81)); fiat_np384_mulx_u32(&x1565, &x1566, x1549, UINT32_C(0xf4372ddf)); fiat_np384_mulx_u32(&x1567, &x1568, x1549, UINT32_C(0x581a0db2)); fiat_np384_mulx_u32(&x1569, &x1570, x1549, UINT32_C(0x48b0a77a)); fiat_np384_mulx_u32(&x1571, &x1572, x1549, UINT32_C(0xecec196a)); fiat_np384_mulx_u32(&x1573, &x1574, x1549, UINT32_C(0xccc52973)); fiat_np384_addcarryx_u32(&x1575, &x1576, 0x0, x1574, x1571); fiat_np384_addcarryx_u32(&x1577, &x1578, x1576, x1572, x1569); fiat_np384_addcarryx_u32(&x1579, &x1580, x1578, x1570, x1567); fiat_np384_addcarryx_u32(&x1581, &x1582, x1580, x1568, x1565); fiat_np384_addcarryx_u32(&x1583, &x1584, x1582, x1566, x1563); fiat_np384_addcarryx_u32(&x1585, &x1586, x1584, x1564, x1561); fiat_np384_addcarryx_u32(&x1587, &x1588, x1586, x1562, x1559); fiat_np384_addcarryx_u32(&x1589, &x1590, x1588, x1560, x1557); fiat_np384_addcarryx_u32(&x1591, &x1592, x1590, x1558, x1555); fiat_np384_addcarryx_u32(&x1593, &x1594, x1592, x1556, x1553); fiat_np384_addcarryx_u32(&x1595, &x1596, x1594, x1554, x1551); x1597 = (x1596 + x1552); fiat_np384_addcarryx_u32(&x1598, &x1599, 0x0, x1523, x1573); fiat_np384_addcarryx_u32(&x1600, &x1601, x1599, x1525, x1575); fiat_np384_addcarryx_u32(&x1602, &x1603, x1601, x1527, x1577); fiat_np384_addcarryx_u32(&x1604, &x1605, x1603, x1529, x1579); fiat_np384_addcarryx_u32(&x1606, &x1607, x1605, x1531, x1581); fiat_np384_addcarryx_u32(&x1608, &x1609, x1607, x1533, x1583); fiat_np384_addcarryx_u32(&x1610, &x1611, x1609, x1535, x1585); fiat_np384_addcarryx_u32(&x1612, &x1613, x1611, x1537, x1587); fiat_np384_addcarryx_u32(&x1614, &x1615, x1613, x1539, x1589); fiat_np384_addcarryx_u32(&x1616, &x1617, x1615, x1541, x1591); fiat_np384_addcarryx_u32(&x1618, &x1619, x1617, x1543, x1593); fiat_np384_addcarryx_u32(&x1620, &x1621, x1619, x1545, x1595); fiat_np384_addcarryx_u32(&x1622, &x1623, x1621, x1547, x1597); x1624 = ((uint32_t)x1623 + x1548); fiat_np384_mulx_u32(&x1625, &x1626, x11, (arg2[11])); fiat_np384_mulx_u32(&x1627, &x1628, x11, (arg2[10])); fiat_np384_mulx_u32(&x1629, &x1630, x11, (arg2[9])); fiat_np384_mulx_u32(&x1631, &x1632, x11, (arg2[8])); fiat_np384_mulx_u32(&x1633, &x1634, x11, (arg2[7])); fiat_np384_mulx_u32(&x1635, &x1636, x11, (arg2[6])); fiat_np384_mulx_u32(&x1637, &x1638, x11, (arg2[5])); fiat_np384_mulx_u32(&x1639, &x1640, x11, (arg2[4])); fiat_np384_mulx_u32(&x1641, &x1642, x11, (arg2[3])); fiat_np384_mulx_u32(&x1643, &x1644, x11, (arg2[2])); fiat_np384_mulx_u32(&x1645, &x1646, x11, (arg2[1])); fiat_np384_mulx_u32(&x1647, &x1648, x11, (arg2[0])); fiat_np384_addcarryx_u32(&x1649, &x1650, 0x0, x1648, x1645); fiat_np384_addcarryx_u32(&x1651, &x1652, x1650, x1646, x1643); fiat_np384_addcarryx_u32(&x1653, &x1654, x1652, x1644, x1641); fiat_np384_addcarryx_u32(&x1655, &x1656, x1654, x1642, x1639); fiat_np384_addcarryx_u32(&x1657, &x1658, x1656, x1640, x1637); fiat_np384_addcarryx_u32(&x1659, &x1660, x1658, x1638, x1635); fiat_np384_addcarryx_u32(&x1661, &x1662, x1660, x1636, x1633); fiat_np384_addcarryx_u32(&x1663, &x1664, x1662, x1634, x1631); fiat_np384_addcarryx_u32(&x1665, &x1666, x1664, x1632, x1629); fiat_np384_addcarryx_u32(&x1667, &x1668, x1666, x1630, x1627); fiat_np384_addcarryx_u32(&x1669, &x1670, x1668, x1628, x1625); x1671 = (x1670 + x1626); fiat_np384_addcarryx_u32(&x1672, &x1673, 0x0, x1600, x1647); fiat_np384_addcarryx_u32(&x1674, &x1675, x1673, x1602, x1649); fiat_np384_addcarryx_u32(&x1676, &x1677, x1675, x1604, x1651); fiat_np384_addcarryx_u32(&x1678, &x1679, x1677, x1606, x1653); fiat_np384_addcarryx_u32(&x1680, &x1681, x1679, x1608, x1655); fiat_np384_addcarryx_u32(&x1682, &x1683, x1681, x1610, x1657); fiat_np384_addcarryx_u32(&x1684, &x1685, x1683, x1612, x1659); fiat_np384_addcarryx_u32(&x1686, &x1687, x1685, x1614, x1661); fiat_np384_addcarryx_u32(&x1688, &x1689, x1687, x1616, x1663); fiat_np384_addcarryx_u32(&x1690, &x1691, x1689, x1618, x1665); fiat_np384_addcarryx_u32(&x1692, &x1693, x1691, x1620, x1667); fiat_np384_addcarryx_u32(&x1694, &x1695, x1693, x1622, x1669); fiat_np384_addcarryx_u32(&x1696, &x1697, x1695, x1624, x1671); fiat_np384_mulx_u32(&x1698, &x1699, x1672, UINT32_C(0xe88fdc45)); fiat_np384_mulx_u32(&x1700, &x1701, x1698, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x1702, &x1703, x1698, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x1704, &x1705, x1698, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x1706, &x1707, x1698, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x1708, &x1709, x1698, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x1710, &x1711, x1698, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x1712, &x1713, x1698, UINT32_C(0xc7634d81)); fiat_np384_mulx_u32(&x1714, &x1715, x1698, UINT32_C(0xf4372ddf)); fiat_np384_mulx_u32(&x1716, &x1717, x1698, UINT32_C(0x581a0db2)); fiat_np384_mulx_u32(&x1718, &x1719, x1698, UINT32_C(0x48b0a77a)); fiat_np384_mulx_u32(&x1720, &x1721, x1698, UINT32_C(0xecec196a)); fiat_np384_mulx_u32(&x1722, &x1723, x1698, UINT32_C(0xccc52973)); fiat_np384_addcarryx_u32(&x1724, &x1725, 0x0, x1723, x1720); fiat_np384_addcarryx_u32(&x1726, &x1727, x1725, x1721, x1718); fiat_np384_addcarryx_u32(&x1728, &x1729, x1727, x1719, x1716); fiat_np384_addcarryx_u32(&x1730, &x1731, x1729, x1717, x1714); fiat_np384_addcarryx_u32(&x1732, &x1733, x1731, x1715, x1712); fiat_np384_addcarryx_u32(&x1734, &x1735, x1733, x1713, x1710); fiat_np384_addcarryx_u32(&x1736, &x1737, x1735, x1711, x1708); fiat_np384_addcarryx_u32(&x1738, &x1739, x1737, x1709, x1706); fiat_np384_addcarryx_u32(&x1740, &x1741, x1739, x1707, x1704); fiat_np384_addcarryx_u32(&x1742, &x1743, x1741, x1705, x1702); fiat_np384_addcarryx_u32(&x1744, &x1745, x1743, x1703, x1700); x1746 = (x1745 + x1701); fiat_np384_addcarryx_u32(&x1747, &x1748, 0x0, x1672, x1722); fiat_np384_addcarryx_u32(&x1749, &x1750, x1748, x1674, x1724); fiat_np384_addcarryx_u32(&x1751, &x1752, x1750, x1676, x1726); fiat_np384_addcarryx_u32(&x1753, &x1754, x1752, x1678, x1728); fiat_np384_addcarryx_u32(&x1755, &x1756, x1754, x1680, x1730); fiat_np384_addcarryx_u32(&x1757, &x1758, x1756, x1682, x1732); fiat_np384_addcarryx_u32(&x1759, &x1760, x1758, x1684, x1734); fiat_np384_addcarryx_u32(&x1761, &x1762, x1760, x1686, x1736); fiat_np384_addcarryx_u32(&x1763, &x1764, x1762, x1688, x1738); fiat_np384_addcarryx_u32(&x1765, &x1766, x1764, x1690, x1740); fiat_np384_addcarryx_u32(&x1767, &x1768, x1766, x1692, x1742); fiat_np384_addcarryx_u32(&x1769, &x1770, x1768, x1694, x1744); fiat_np384_addcarryx_u32(&x1771, &x1772, x1770, x1696, x1746); x1773 = ((uint32_t)x1772 + x1697); fiat_np384_subborrowx_u32(&x1774, &x1775, 0x0, x1749, UINT32_C(0xccc52973)); fiat_np384_subborrowx_u32(&x1776, &x1777, x1775, x1751, UINT32_C(0xecec196a)); fiat_np384_subborrowx_u32(&x1778, &x1779, x1777, x1753, UINT32_C(0x48b0a77a)); fiat_np384_subborrowx_u32(&x1780, &x1781, x1779, x1755, UINT32_C(0x581a0db2)); fiat_np384_subborrowx_u32(&x1782, &x1783, x1781, x1757, UINT32_C(0xf4372ddf)); fiat_np384_subborrowx_u32(&x1784, &x1785, x1783, x1759, UINT32_C(0xc7634d81)); fiat_np384_subborrowx_u32(&x1786, &x1787, x1785, x1761, UINT32_C(0xffffffff)); fiat_np384_subborrowx_u32(&x1788, &x1789, x1787, x1763, UINT32_C(0xffffffff)); fiat_np384_subborrowx_u32(&x1790, &x1791, x1789, x1765, UINT32_C(0xffffffff)); fiat_np384_subborrowx_u32(&x1792, &x1793, x1791, x1767, UINT32_C(0xffffffff)); fiat_np384_subborrowx_u32(&x1794, &x1795, x1793, x1769, UINT32_C(0xffffffff)); fiat_np384_subborrowx_u32(&x1796, &x1797, x1795, x1771, UINT32_C(0xffffffff)); fiat_np384_subborrowx_u32(&x1798, &x1799, x1797, x1773, 0x0); fiat_np384_cmovznz_u32(&x1800, x1799, x1774, x1749); fiat_np384_cmovznz_u32(&x1801, x1799, x1776, x1751); fiat_np384_cmovznz_u32(&x1802, x1799, x1778, x1753); fiat_np384_cmovznz_u32(&x1803, x1799, x1780, x1755); fiat_np384_cmovznz_u32(&x1804, x1799, x1782, x1757); fiat_np384_cmovznz_u32(&x1805, x1799, x1784, x1759); fiat_np384_cmovznz_u32(&x1806, x1799, x1786, x1761); fiat_np384_cmovznz_u32(&x1807, x1799, x1788, x1763); fiat_np384_cmovznz_u32(&x1808, x1799, x1790, x1765); fiat_np384_cmovznz_u32(&x1809, x1799, x1792, x1767); fiat_np384_cmovznz_u32(&x1810, x1799, x1794, x1769); fiat_np384_cmovznz_u32(&x1811, x1799, x1796, x1771); out1[0] = x1800; out1[1] = x1801; out1[2] = x1802; out1[3] = x1803; out1[4] = x1804; out1[5] = x1805; out1[6] = x1806; out1[7] = x1807; out1[8] = x1808; out1[9] = x1809; out1[10] = x1810; out1[11] = x1811; } /* * The function fiat_np384_add adds two field elements in the Montgomery domain. * * Preconditions: * 0 ≤ eval arg1 < m * 0 ≤ eval arg2 < m * Postconditions: * eval (from_montgomery out1) mod m = (eval (from_montgomery arg1) + eval (from_montgomery arg2)) mod m * 0 ≤ eval out1 < m * */ static void fiat_np384_add(fiat_np384_montgomery_domain_field_element out1, const fiat_np384_montgomery_domain_field_element arg1, const fiat_np384_montgomery_domain_field_element arg2) { uint32_t x1; fiat_np384_uint1 x2; uint32_t x3; fiat_np384_uint1 x4; uint32_t x5; fiat_np384_uint1 x6; uint32_t x7; fiat_np384_uint1 x8; uint32_t x9; fiat_np384_uint1 x10; uint32_t x11; fiat_np384_uint1 x12; uint32_t x13; fiat_np384_uint1 x14; uint32_t x15; fiat_np384_uint1 x16; uint32_t x17; fiat_np384_uint1 x18; uint32_t x19; fiat_np384_uint1 x20; uint32_t x21; fiat_np384_uint1 x22; uint32_t x23; fiat_np384_uint1 x24; uint32_t x25; fiat_np384_uint1 x26; uint32_t x27; fiat_np384_uint1 x28; uint32_t x29; fiat_np384_uint1 x30; uint32_t x31; fiat_np384_uint1 x32; uint32_t x33; fiat_np384_uint1 x34; uint32_t x35; fiat_np384_uint1 x36; uint32_t x37; fiat_np384_uint1 x38; uint32_t x39; fiat_np384_uint1 x40; uint32_t x41; fiat_np384_uint1 x42; uint32_t x43; fiat_np384_uint1 x44; uint32_t x45; fiat_np384_uint1 x46; uint32_t x47; fiat_np384_uint1 x48; uint32_t x49; fiat_np384_uint1 x50; uint32_t x51; uint32_t x52; uint32_t x53; uint32_t x54; uint32_t x55; uint32_t x56; uint32_t x57; uint32_t x58; uint32_t x59; uint32_t x60; uint32_t x61; uint32_t x62; fiat_np384_addcarryx_u32(&x1, &x2, 0x0, (arg1[0]), (arg2[0])); fiat_np384_addcarryx_u32(&x3, &x4, x2, (arg1[1]), (arg2[1])); fiat_np384_addcarryx_u32(&x5, &x6, x4, (arg1[2]), (arg2[2])); fiat_np384_addcarryx_u32(&x7, &x8, x6, (arg1[3]), (arg2[3])); fiat_np384_addcarryx_u32(&x9, &x10, x8, (arg1[4]), (arg2[4])); fiat_np384_addcarryx_u32(&x11, &x12, x10, (arg1[5]), (arg2[5])); fiat_np384_addcarryx_u32(&x13, &x14, x12, (arg1[6]), (arg2[6])); fiat_np384_addcarryx_u32(&x15, &x16, x14, (arg1[7]), (arg2[7])); fiat_np384_addcarryx_u32(&x17, &x18, x16, (arg1[8]), (arg2[8])); fiat_np384_addcarryx_u32(&x19, &x20, x18, (arg1[9]), (arg2[9])); fiat_np384_addcarryx_u32(&x21, &x22, x20, (arg1[10]), (arg2[10])); fiat_np384_addcarryx_u32(&x23, &x24, x22, (arg1[11]), (arg2[11])); fiat_np384_subborrowx_u32(&x25, &x26, 0x0, x1, UINT32_C(0xccc52973)); fiat_np384_subborrowx_u32(&x27, &x28, x26, x3, UINT32_C(0xecec196a)); fiat_np384_subborrowx_u32(&x29, &x30, x28, x5, UINT32_C(0x48b0a77a)); fiat_np384_subborrowx_u32(&x31, &x32, x30, x7, UINT32_C(0x581a0db2)); fiat_np384_subborrowx_u32(&x33, &x34, x32, x9, UINT32_C(0xf4372ddf)); fiat_np384_subborrowx_u32(&x35, &x36, x34, x11, UINT32_C(0xc7634d81)); fiat_np384_subborrowx_u32(&x37, &x38, x36, x13, UINT32_C(0xffffffff)); fiat_np384_subborrowx_u32(&x39, &x40, x38, x15, UINT32_C(0xffffffff)); fiat_np384_subborrowx_u32(&x41, &x42, x40, x17, UINT32_C(0xffffffff)); fiat_np384_subborrowx_u32(&x43, &x44, x42, x19, UINT32_C(0xffffffff)); fiat_np384_subborrowx_u32(&x45, &x46, x44, x21, UINT32_C(0xffffffff)); fiat_np384_subborrowx_u32(&x47, &x48, x46, x23, UINT32_C(0xffffffff)); fiat_np384_subborrowx_u32(&x49, &x50, x48, x24, 0x0); fiat_np384_cmovznz_u32(&x51, x50, x25, x1); fiat_np384_cmovznz_u32(&x52, x50, x27, x3); fiat_np384_cmovznz_u32(&x53, x50, x29, x5); fiat_np384_cmovznz_u32(&x54, x50, x31, x7); fiat_np384_cmovznz_u32(&x55, x50, x33, x9); fiat_np384_cmovznz_u32(&x56, x50, x35, x11); fiat_np384_cmovznz_u32(&x57, x50, x37, x13); fiat_np384_cmovznz_u32(&x58, x50, x39, x15); fiat_np384_cmovznz_u32(&x59, x50, x41, x17); fiat_np384_cmovznz_u32(&x60, x50, x43, x19); fiat_np384_cmovznz_u32(&x61, x50, x45, x21); fiat_np384_cmovznz_u32(&x62, x50, x47, x23); out1[0] = x51; out1[1] = x52; out1[2] = x53; out1[3] = x54; out1[4] = x55; out1[5] = x56; out1[6] = x57; out1[7] = x58; out1[8] = x59; out1[9] = x60; out1[10] = x61; out1[11] = x62; } /* * The function fiat_np384_opp negates a field element in the Montgomery domain. * * Preconditions: * 0 ≤ eval arg1 < m * Postconditions: * eval (from_montgomery out1) mod m = -eval (from_montgomery arg1) mod m * 0 ≤ eval out1 < m * */ static void fiat_np384_opp(fiat_np384_montgomery_domain_field_element out1, const fiat_np384_montgomery_domain_field_element arg1) { uint32_t x1; fiat_np384_uint1 x2; uint32_t x3; fiat_np384_uint1 x4; uint32_t x5; fiat_np384_uint1 x6; uint32_t x7; fiat_np384_uint1 x8; uint32_t x9; fiat_np384_uint1 x10; uint32_t x11; fiat_np384_uint1 x12; uint32_t x13; fiat_np384_uint1 x14; uint32_t x15; fiat_np384_uint1 x16; uint32_t x17; fiat_np384_uint1 x18; uint32_t x19; fiat_np384_uint1 x20; uint32_t x21; fiat_np384_uint1 x22; uint32_t x23; fiat_np384_uint1 x24; uint32_t x25; uint32_t x26; fiat_np384_uint1 x27; uint32_t x28; fiat_np384_uint1 x29; uint32_t x30; fiat_np384_uint1 x31; uint32_t x32; fiat_np384_uint1 x33; uint32_t x34; fiat_np384_uint1 x35; uint32_t x36; fiat_np384_uint1 x37; uint32_t x38; fiat_np384_uint1 x39; uint32_t x40; fiat_np384_uint1 x41; uint32_t x42; fiat_np384_uint1 x43; uint32_t x44; fiat_np384_uint1 x45; uint32_t x46; fiat_np384_uint1 x47; uint32_t x48; fiat_np384_uint1 x49; fiat_np384_subborrowx_u32(&x1, &x2, 0x0, 0x0, (arg1[0])); fiat_np384_subborrowx_u32(&x3, &x4, x2, 0x0, (arg1[1])); fiat_np384_subborrowx_u32(&x5, &x6, x4, 0x0, (arg1[2])); fiat_np384_subborrowx_u32(&x7, &x8, x6, 0x0, (arg1[3])); fiat_np384_subborrowx_u32(&x9, &x10, x8, 0x0, (arg1[4])); fiat_np384_subborrowx_u32(&x11, &x12, x10, 0x0, (arg1[5])); fiat_np384_subborrowx_u32(&x13, &x14, x12, 0x0, (arg1[6])); fiat_np384_subborrowx_u32(&x15, &x16, x14, 0x0, (arg1[7])); fiat_np384_subborrowx_u32(&x17, &x18, x16, 0x0, (arg1[8])); fiat_np384_subborrowx_u32(&x19, &x20, x18, 0x0, (arg1[9])); fiat_np384_subborrowx_u32(&x21, &x22, x20, 0x0, (arg1[10])); fiat_np384_subborrowx_u32(&x23, &x24, x22, 0x0, (arg1[11])); fiat_np384_cmovznz_u32(&x25, x24, 0x0, UINT32_C(0xffffffff)); fiat_np384_addcarryx_u32(&x26, &x27, 0x0, x1, (x25 & UINT32_C(0xccc52973))); fiat_np384_addcarryx_u32(&x28, &x29, x27, x3, (x25 & UINT32_C(0xecec196a))); fiat_np384_addcarryx_u32(&x30, &x31, x29, x5, (x25 & UINT32_C(0x48b0a77a))); fiat_np384_addcarryx_u32(&x32, &x33, x31, x7, (x25 & UINT32_C(0x581a0db2))); fiat_np384_addcarryx_u32(&x34, &x35, x33, x9, (x25 & UINT32_C(0xf4372ddf))); fiat_np384_addcarryx_u32(&x36, &x37, x35, x11, (x25 & UINT32_C(0xc7634d81))); fiat_np384_addcarryx_u32(&x38, &x39, x37, x13, x25); fiat_np384_addcarryx_u32(&x40, &x41, x39, x15, x25); fiat_np384_addcarryx_u32(&x42, &x43, x41, x17, x25); fiat_np384_addcarryx_u32(&x44, &x45, x43, x19, x25); fiat_np384_addcarryx_u32(&x46, &x47, x45, x21, x25); fiat_np384_addcarryx_u32(&x48, &x49, x47, x23, x25); out1[0] = x26; out1[1] = x28; out1[2] = x30; out1[3] = x32; out1[4] = x34; out1[5] = x36; out1[6] = x38; out1[7] = x40; out1[8] = x42; out1[9] = x44; out1[10] = x46; out1[11] = x48; } /* * The function fiat_np384_from_montgomery translates a field element out of the Montgomery domain. * * Preconditions: * 0 ≤ eval arg1 < m * Postconditions: * eval out1 mod m = (eval arg1 * ((2^32)⁻¹ mod m)^12) mod m * 0 ≤ eval out1 < m * */ static void fiat_np384_from_montgomery(fiat_np384_non_montgomery_domain_field_element out1, const fiat_np384_montgomery_domain_field_element arg1) { uint32_t x1; uint32_t x2; uint32_t x3; uint32_t x4; uint32_t x5; uint32_t x6; uint32_t x7; uint32_t x8; uint32_t x9; uint32_t x10; uint32_t x11; uint32_t x12; uint32_t x13; uint32_t x14; uint32_t x15; uint32_t x16; uint32_t x17; uint32_t x18; uint32_t x19; uint32_t x20; uint32_t x21; uint32_t x22; uint32_t x23; uint32_t x24; uint32_t x25; uint32_t x26; uint32_t x27; uint32_t x28; fiat_np384_uint1 x29; uint32_t x30; fiat_np384_uint1 x31; uint32_t x32; fiat_np384_uint1 x33; uint32_t x34; fiat_np384_uint1 x35; uint32_t x36; fiat_np384_uint1 x37; uint32_t x38; fiat_np384_uint1 x39; uint32_t x40; fiat_np384_uint1 x41; uint32_t x42; fiat_np384_uint1 x43; uint32_t x44; fiat_np384_uint1 x45; uint32_t x46; fiat_np384_uint1 x47; uint32_t x48; fiat_np384_uint1 x49; uint32_t x50; fiat_np384_uint1 x51; uint32_t x52; fiat_np384_uint1 x53; uint32_t x54; fiat_np384_uint1 x55; uint32_t x56; fiat_np384_uint1 x57; uint32_t x58; fiat_np384_uint1 x59; uint32_t x60; fiat_np384_uint1 x61; uint32_t x62; fiat_np384_uint1 x63; uint32_t x64; fiat_np384_uint1 x65; uint32_t x66; fiat_np384_uint1 x67; uint32_t x68; fiat_np384_uint1 x69; uint32_t x70; fiat_np384_uint1 x71; uint32_t x72; fiat_np384_uint1 x73; uint32_t x74; fiat_np384_uint1 x75; uint32_t x76; fiat_np384_uint1 x77; uint32_t x78; fiat_np384_uint1 x79; uint32_t x80; fiat_np384_uint1 x81; uint32_t x82; fiat_np384_uint1 x83; uint32_t x84; fiat_np384_uint1 x85; uint32_t x86; fiat_np384_uint1 x87; uint32_t x88; fiat_np384_uint1 x89; uint32_t x90; fiat_np384_uint1 x91; uint32_t x92; fiat_np384_uint1 x93; uint32_t x94; fiat_np384_uint1 x95; uint32_t x96; fiat_np384_uint1 x97; uint32_t x98; fiat_np384_uint1 x99; uint32_t x100; uint32_t x101; uint32_t x102; uint32_t x103; uint32_t x104; uint32_t x105; uint32_t x106; uint32_t x107; uint32_t x108; uint32_t x109; uint32_t x110; uint32_t x111; uint32_t x112; uint32_t x113; uint32_t x114; uint32_t x115; uint32_t x116; uint32_t x117; uint32_t x118; uint32_t x119; uint32_t x120; uint32_t x121; uint32_t x122; uint32_t x123; uint32_t x124; uint32_t x125; uint32_t x126; fiat_np384_uint1 x127; uint32_t x128; fiat_np384_uint1 x129; uint32_t x130; fiat_np384_uint1 x131; uint32_t x132; fiat_np384_uint1 x133; uint32_t x134; fiat_np384_uint1 x135; uint32_t x136; fiat_np384_uint1 x137; uint32_t x138; fiat_np384_uint1 x139; uint32_t x140; fiat_np384_uint1 x141; uint32_t x142; fiat_np384_uint1 x143; uint32_t x144; fiat_np384_uint1 x145; uint32_t x146; fiat_np384_uint1 x147; uint32_t x148; fiat_np384_uint1 x149; uint32_t x150; fiat_np384_uint1 x151; uint32_t x152; fiat_np384_uint1 x153; uint32_t x154; fiat_np384_uint1 x155; uint32_t x156; fiat_np384_uint1 x157; uint32_t x158; fiat_np384_uint1 x159; uint32_t x160; fiat_np384_uint1 x161; uint32_t x162; fiat_np384_uint1 x163; uint32_t x164; fiat_np384_uint1 x165; uint32_t x166; fiat_np384_uint1 x167; uint32_t x168; fiat_np384_uint1 x169; uint32_t x170; fiat_np384_uint1 x171; uint32_t x172; fiat_np384_uint1 x173; uint32_t x174; fiat_np384_uint1 x175; uint32_t x176; fiat_np384_uint1 x177; uint32_t x178; fiat_np384_uint1 x179; uint32_t x180; fiat_np384_uint1 x181; uint32_t x182; fiat_np384_uint1 x183; uint32_t x184; fiat_np384_uint1 x185; uint32_t x186; fiat_np384_uint1 x187; uint32_t x188; fiat_np384_uint1 x189; uint32_t x190; fiat_np384_uint1 x191; uint32_t x192; fiat_np384_uint1 x193; uint32_t x194; fiat_np384_uint1 x195; uint32_t x196; fiat_np384_uint1 x197; uint32_t x198; uint32_t x199; uint32_t x200; uint32_t x201; uint32_t x202; uint32_t x203; uint32_t x204; uint32_t x205; uint32_t x206; uint32_t x207; uint32_t x208; uint32_t x209; uint32_t x210; uint32_t x211; uint32_t x212; uint32_t x213; uint32_t x214; uint32_t x215; uint32_t x216; uint32_t x217; uint32_t x218; uint32_t x219; uint32_t x220; uint32_t x221; uint32_t x222; uint32_t x223; uint32_t x224; fiat_np384_uint1 x225; uint32_t x226; fiat_np384_uint1 x227; uint32_t x228; fiat_np384_uint1 x229; uint32_t x230; fiat_np384_uint1 x231; uint32_t x232; fiat_np384_uint1 x233; uint32_t x234; fiat_np384_uint1 x235; uint32_t x236; fiat_np384_uint1 x237; uint32_t x238; fiat_np384_uint1 x239; uint32_t x240; fiat_np384_uint1 x241; uint32_t x242; fiat_np384_uint1 x243; uint32_t x244; fiat_np384_uint1 x245; uint32_t x246; fiat_np384_uint1 x247; uint32_t x248; fiat_np384_uint1 x249; uint32_t x250; fiat_np384_uint1 x251; uint32_t x252; fiat_np384_uint1 x253; uint32_t x254; fiat_np384_uint1 x255; uint32_t x256; fiat_np384_uint1 x257; uint32_t x258; fiat_np384_uint1 x259; uint32_t x260; fiat_np384_uint1 x261; uint32_t x262; fiat_np384_uint1 x263; uint32_t x264; fiat_np384_uint1 x265; uint32_t x266; fiat_np384_uint1 x267; uint32_t x268; fiat_np384_uint1 x269; uint32_t x270; fiat_np384_uint1 x271; uint32_t x272; fiat_np384_uint1 x273; uint32_t x274; fiat_np384_uint1 x275; uint32_t x276; fiat_np384_uint1 x277; uint32_t x278; fiat_np384_uint1 x279; uint32_t x280; fiat_np384_uint1 x281; uint32_t x282; fiat_np384_uint1 x283; uint32_t x284; fiat_np384_uint1 x285; uint32_t x286; fiat_np384_uint1 x287; uint32_t x288; fiat_np384_uint1 x289; uint32_t x290; fiat_np384_uint1 x291; uint32_t x292; fiat_np384_uint1 x293; uint32_t x294; fiat_np384_uint1 x295; uint32_t x296; uint32_t x297; uint32_t x298; uint32_t x299; uint32_t x300; uint32_t x301; uint32_t x302; uint32_t x303; uint32_t x304; uint32_t x305; uint32_t x306; uint32_t x307; uint32_t x308; uint32_t x309; uint32_t x310; uint32_t x311; uint32_t x312; uint32_t x313; uint32_t x314; uint32_t x315; uint32_t x316; uint32_t x317; uint32_t x318; uint32_t x319; uint32_t x320; uint32_t x321; uint32_t x322; fiat_np384_uint1 x323; uint32_t x324; fiat_np384_uint1 x325; uint32_t x326; fiat_np384_uint1 x327; uint32_t x328; fiat_np384_uint1 x329; uint32_t x330; fiat_np384_uint1 x331; uint32_t x332; fiat_np384_uint1 x333; uint32_t x334; fiat_np384_uint1 x335; uint32_t x336; fiat_np384_uint1 x337; uint32_t x338; fiat_np384_uint1 x339; uint32_t x340; fiat_np384_uint1 x341; uint32_t x342; fiat_np384_uint1 x343; uint32_t x344; fiat_np384_uint1 x345; uint32_t x346; fiat_np384_uint1 x347; uint32_t x348; fiat_np384_uint1 x349; uint32_t x350; fiat_np384_uint1 x351; uint32_t x352; fiat_np384_uint1 x353; uint32_t x354; fiat_np384_uint1 x355; uint32_t x356; fiat_np384_uint1 x357; uint32_t x358; fiat_np384_uint1 x359; uint32_t x360; fiat_np384_uint1 x361; uint32_t x362; fiat_np384_uint1 x363; uint32_t x364; fiat_np384_uint1 x365; uint32_t x366; fiat_np384_uint1 x367; uint32_t x368; fiat_np384_uint1 x369; uint32_t x370; fiat_np384_uint1 x371; uint32_t x372; fiat_np384_uint1 x373; uint32_t x374; fiat_np384_uint1 x375; uint32_t x376; fiat_np384_uint1 x377; uint32_t x378; fiat_np384_uint1 x379; uint32_t x380; fiat_np384_uint1 x381; uint32_t x382; fiat_np384_uint1 x383; uint32_t x384; fiat_np384_uint1 x385; uint32_t x386; fiat_np384_uint1 x387; uint32_t x388; fiat_np384_uint1 x389; uint32_t x390; fiat_np384_uint1 x391; uint32_t x392; fiat_np384_uint1 x393; uint32_t x394; uint32_t x395; uint32_t x396; uint32_t x397; uint32_t x398; uint32_t x399; uint32_t x400; uint32_t x401; uint32_t x402; uint32_t x403; uint32_t x404; uint32_t x405; uint32_t x406; uint32_t x407; uint32_t x408; uint32_t x409; uint32_t x410; uint32_t x411; uint32_t x412; uint32_t x413; uint32_t x414; uint32_t x415; uint32_t x416; uint32_t x417; uint32_t x418; uint32_t x419; uint32_t x420; fiat_np384_uint1 x421; uint32_t x422; fiat_np384_uint1 x423; uint32_t x424; fiat_np384_uint1 x425; uint32_t x426; fiat_np384_uint1 x427; uint32_t x428; fiat_np384_uint1 x429; uint32_t x430; fiat_np384_uint1 x431; uint32_t x432; fiat_np384_uint1 x433; uint32_t x434; fiat_np384_uint1 x435; uint32_t x436; fiat_np384_uint1 x437; uint32_t x438; fiat_np384_uint1 x439; uint32_t x440; fiat_np384_uint1 x441; uint32_t x442; fiat_np384_uint1 x443; uint32_t x444; fiat_np384_uint1 x445; uint32_t x446; fiat_np384_uint1 x447; uint32_t x448; fiat_np384_uint1 x449; uint32_t x450; fiat_np384_uint1 x451; uint32_t x452; fiat_np384_uint1 x453; uint32_t x454; fiat_np384_uint1 x455; uint32_t x456; fiat_np384_uint1 x457; uint32_t x458; fiat_np384_uint1 x459; uint32_t x460; fiat_np384_uint1 x461; uint32_t x462; fiat_np384_uint1 x463; uint32_t x464; fiat_np384_uint1 x465; uint32_t x466; fiat_np384_uint1 x467; uint32_t x468; fiat_np384_uint1 x469; uint32_t x470; fiat_np384_uint1 x471; uint32_t x472; fiat_np384_uint1 x473; uint32_t x474; fiat_np384_uint1 x475; uint32_t x476; fiat_np384_uint1 x477; uint32_t x478; fiat_np384_uint1 x479; uint32_t x480; fiat_np384_uint1 x481; uint32_t x482; fiat_np384_uint1 x483; uint32_t x484; fiat_np384_uint1 x485; uint32_t x486; fiat_np384_uint1 x487; uint32_t x488; fiat_np384_uint1 x489; uint32_t x490; fiat_np384_uint1 x491; uint32_t x492; uint32_t x493; uint32_t x494; uint32_t x495; uint32_t x496; uint32_t x497; uint32_t x498; uint32_t x499; uint32_t x500; uint32_t x501; uint32_t x502; uint32_t x503; uint32_t x504; uint32_t x505; uint32_t x506; uint32_t x507; uint32_t x508; uint32_t x509; uint32_t x510; uint32_t x511; uint32_t x512; uint32_t x513; uint32_t x514; uint32_t x515; uint32_t x516; uint32_t x517; uint32_t x518; fiat_np384_uint1 x519; uint32_t x520; fiat_np384_uint1 x521; uint32_t x522; fiat_np384_uint1 x523; uint32_t x524; fiat_np384_uint1 x525; uint32_t x526; fiat_np384_uint1 x527; uint32_t x528; fiat_np384_uint1 x529; uint32_t x530; fiat_np384_uint1 x531; uint32_t x532; fiat_np384_uint1 x533; uint32_t x534; fiat_np384_uint1 x535; uint32_t x536; fiat_np384_uint1 x537; uint32_t x538; fiat_np384_uint1 x539; uint32_t x540; fiat_np384_uint1 x541; uint32_t x542; fiat_np384_uint1 x543; uint32_t x544; fiat_np384_uint1 x545; uint32_t x546; fiat_np384_uint1 x547; uint32_t x548; fiat_np384_uint1 x549; uint32_t x550; fiat_np384_uint1 x551; uint32_t x552; fiat_np384_uint1 x553; uint32_t x554; fiat_np384_uint1 x555; uint32_t x556; fiat_np384_uint1 x557; uint32_t x558; fiat_np384_uint1 x559; uint32_t x560; fiat_np384_uint1 x561; uint32_t x562; fiat_np384_uint1 x563; uint32_t x564; fiat_np384_uint1 x565; uint32_t x566; fiat_np384_uint1 x567; uint32_t x568; fiat_np384_uint1 x569; uint32_t x570; fiat_np384_uint1 x571; uint32_t x572; fiat_np384_uint1 x573; uint32_t x574; fiat_np384_uint1 x575; uint32_t x576; fiat_np384_uint1 x577; uint32_t x578; fiat_np384_uint1 x579; uint32_t x580; fiat_np384_uint1 x581; uint32_t x582; fiat_np384_uint1 x583; uint32_t x584; fiat_np384_uint1 x585; uint32_t x586; fiat_np384_uint1 x587; uint32_t x588; fiat_np384_uint1 x589; uint32_t x590; uint32_t x591; uint32_t x592; uint32_t x593; uint32_t x594; uint32_t x595; uint32_t x596; uint32_t x597; uint32_t x598; uint32_t x599; uint32_t x600; uint32_t x601; uint32_t x602; uint32_t x603; uint32_t x604; uint32_t x605; uint32_t x606; uint32_t x607; uint32_t x608; uint32_t x609; uint32_t x610; uint32_t x611; uint32_t x612; uint32_t x613; uint32_t x614; uint32_t x615; uint32_t x616; fiat_np384_uint1 x617; uint32_t x618; fiat_np384_uint1 x619; uint32_t x620; fiat_np384_uint1 x621; uint32_t x622; fiat_np384_uint1 x623; uint32_t x624; fiat_np384_uint1 x625; uint32_t x626; fiat_np384_uint1 x627; uint32_t x628; fiat_np384_uint1 x629; uint32_t x630; fiat_np384_uint1 x631; uint32_t x632; fiat_np384_uint1 x633; uint32_t x634; fiat_np384_uint1 x635; uint32_t x636; fiat_np384_uint1 x637; uint32_t x638; fiat_np384_uint1 x639; uint32_t x640; fiat_np384_uint1 x641; uint32_t x642; fiat_np384_uint1 x643; uint32_t x644; fiat_np384_uint1 x645; uint32_t x646; fiat_np384_uint1 x647; uint32_t x648; fiat_np384_uint1 x649; uint32_t x650; fiat_np384_uint1 x651; uint32_t x652; fiat_np384_uint1 x653; uint32_t x654; fiat_np384_uint1 x655; uint32_t x656; fiat_np384_uint1 x657; uint32_t x658; fiat_np384_uint1 x659; uint32_t x660; fiat_np384_uint1 x661; uint32_t x662; fiat_np384_uint1 x663; uint32_t x664; fiat_np384_uint1 x665; uint32_t x666; fiat_np384_uint1 x667; uint32_t x668; fiat_np384_uint1 x669; uint32_t x670; fiat_np384_uint1 x671; uint32_t x672; fiat_np384_uint1 x673; uint32_t x674; fiat_np384_uint1 x675; uint32_t x676; fiat_np384_uint1 x677; uint32_t x678; fiat_np384_uint1 x679; uint32_t x680; fiat_np384_uint1 x681; uint32_t x682; fiat_np384_uint1 x683; uint32_t x684; fiat_np384_uint1 x685; uint32_t x686; fiat_np384_uint1 x687; uint32_t x688; uint32_t x689; uint32_t x690; uint32_t x691; uint32_t x692; uint32_t x693; uint32_t x694; uint32_t x695; uint32_t x696; uint32_t x697; uint32_t x698; uint32_t x699; uint32_t x700; uint32_t x701; uint32_t x702; uint32_t x703; uint32_t x704; uint32_t x705; uint32_t x706; uint32_t x707; uint32_t x708; uint32_t x709; uint32_t x710; uint32_t x711; uint32_t x712; uint32_t x713; uint32_t x714; fiat_np384_uint1 x715; uint32_t x716; fiat_np384_uint1 x717; uint32_t x718; fiat_np384_uint1 x719; uint32_t x720; fiat_np384_uint1 x721; uint32_t x722; fiat_np384_uint1 x723; uint32_t x724; fiat_np384_uint1 x725; uint32_t x726; fiat_np384_uint1 x727; uint32_t x728; fiat_np384_uint1 x729; uint32_t x730; fiat_np384_uint1 x731; uint32_t x732; fiat_np384_uint1 x733; uint32_t x734; fiat_np384_uint1 x735; uint32_t x736; fiat_np384_uint1 x737; uint32_t x738; fiat_np384_uint1 x739; uint32_t x740; fiat_np384_uint1 x741; uint32_t x742; fiat_np384_uint1 x743; uint32_t x744; fiat_np384_uint1 x745; uint32_t x746; fiat_np384_uint1 x747; uint32_t x748; fiat_np384_uint1 x749; uint32_t x750; fiat_np384_uint1 x751; uint32_t x752; fiat_np384_uint1 x753; uint32_t x754; fiat_np384_uint1 x755; uint32_t x756; fiat_np384_uint1 x757; uint32_t x758; fiat_np384_uint1 x759; uint32_t x760; fiat_np384_uint1 x761; uint32_t x762; fiat_np384_uint1 x763; uint32_t x764; fiat_np384_uint1 x765; uint32_t x766; fiat_np384_uint1 x767; uint32_t x768; fiat_np384_uint1 x769; uint32_t x770; fiat_np384_uint1 x771; uint32_t x772; fiat_np384_uint1 x773; uint32_t x774; fiat_np384_uint1 x775; uint32_t x776; fiat_np384_uint1 x777; uint32_t x778; fiat_np384_uint1 x779; uint32_t x780; fiat_np384_uint1 x781; uint32_t x782; fiat_np384_uint1 x783; uint32_t x784; fiat_np384_uint1 x785; uint32_t x786; uint32_t x787; uint32_t x788; uint32_t x789; uint32_t x790; uint32_t x791; uint32_t x792; uint32_t x793; uint32_t x794; uint32_t x795; uint32_t x796; uint32_t x797; uint32_t x798; uint32_t x799; uint32_t x800; uint32_t x801; uint32_t x802; uint32_t x803; uint32_t x804; uint32_t x805; uint32_t x806; uint32_t x807; uint32_t x808; uint32_t x809; uint32_t x810; uint32_t x811; uint32_t x812; fiat_np384_uint1 x813; uint32_t x814; fiat_np384_uint1 x815; uint32_t x816; fiat_np384_uint1 x817; uint32_t x818; fiat_np384_uint1 x819; uint32_t x820; fiat_np384_uint1 x821; uint32_t x822; fiat_np384_uint1 x823; uint32_t x824; fiat_np384_uint1 x825; uint32_t x826; fiat_np384_uint1 x827; uint32_t x828; fiat_np384_uint1 x829; uint32_t x830; fiat_np384_uint1 x831; uint32_t x832; fiat_np384_uint1 x833; uint32_t x834; fiat_np384_uint1 x835; uint32_t x836; fiat_np384_uint1 x837; uint32_t x838; fiat_np384_uint1 x839; uint32_t x840; fiat_np384_uint1 x841; uint32_t x842; fiat_np384_uint1 x843; uint32_t x844; fiat_np384_uint1 x845; uint32_t x846; fiat_np384_uint1 x847; uint32_t x848; fiat_np384_uint1 x849; uint32_t x850; fiat_np384_uint1 x851; uint32_t x852; fiat_np384_uint1 x853; uint32_t x854; fiat_np384_uint1 x855; uint32_t x856; fiat_np384_uint1 x857; uint32_t x858; fiat_np384_uint1 x859; uint32_t x860; fiat_np384_uint1 x861; uint32_t x862; fiat_np384_uint1 x863; uint32_t x864; fiat_np384_uint1 x865; uint32_t x866; fiat_np384_uint1 x867; uint32_t x868; fiat_np384_uint1 x869; uint32_t x870; fiat_np384_uint1 x871; uint32_t x872; fiat_np384_uint1 x873; uint32_t x874; fiat_np384_uint1 x875; uint32_t x876; fiat_np384_uint1 x877; uint32_t x878; fiat_np384_uint1 x879; uint32_t x880; fiat_np384_uint1 x881; uint32_t x882; fiat_np384_uint1 x883; uint32_t x884; uint32_t x885; uint32_t x886; uint32_t x887; uint32_t x888; uint32_t x889; uint32_t x890; uint32_t x891; uint32_t x892; uint32_t x893; uint32_t x894; uint32_t x895; uint32_t x896; uint32_t x897; uint32_t x898; uint32_t x899; uint32_t x900; uint32_t x901; uint32_t x902; uint32_t x903; uint32_t x904; uint32_t x905; uint32_t x906; uint32_t x907; uint32_t x908; uint32_t x909; uint32_t x910; fiat_np384_uint1 x911; uint32_t x912; fiat_np384_uint1 x913; uint32_t x914; fiat_np384_uint1 x915; uint32_t x916; fiat_np384_uint1 x917; uint32_t x918; fiat_np384_uint1 x919; uint32_t x920; fiat_np384_uint1 x921; uint32_t x922; fiat_np384_uint1 x923; uint32_t x924; fiat_np384_uint1 x925; uint32_t x926; fiat_np384_uint1 x927; uint32_t x928; fiat_np384_uint1 x929; uint32_t x930; fiat_np384_uint1 x931; uint32_t x932; fiat_np384_uint1 x933; uint32_t x934; fiat_np384_uint1 x935; uint32_t x936; fiat_np384_uint1 x937; uint32_t x938; fiat_np384_uint1 x939; uint32_t x940; fiat_np384_uint1 x941; uint32_t x942; fiat_np384_uint1 x943; uint32_t x944; fiat_np384_uint1 x945; uint32_t x946; fiat_np384_uint1 x947; uint32_t x948; fiat_np384_uint1 x949; uint32_t x950; fiat_np384_uint1 x951; uint32_t x952; fiat_np384_uint1 x953; uint32_t x954; fiat_np384_uint1 x955; uint32_t x956; fiat_np384_uint1 x957; uint32_t x958; fiat_np384_uint1 x959; uint32_t x960; fiat_np384_uint1 x961; uint32_t x962; fiat_np384_uint1 x963; uint32_t x964; fiat_np384_uint1 x965; uint32_t x966; fiat_np384_uint1 x967; uint32_t x968; fiat_np384_uint1 x969; uint32_t x970; fiat_np384_uint1 x971; uint32_t x972; fiat_np384_uint1 x973; uint32_t x974; fiat_np384_uint1 x975; uint32_t x976; fiat_np384_uint1 x977; uint32_t x978; fiat_np384_uint1 x979; uint32_t x980; fiat_np384_uint1 x981; uint32_t x982; uint32_t x983; uint32_t x984; uint32_t x985; uint32_t x986; uint32_t x987; uint32_t x988; uint32_t x989; uint32_t x990; uint32_t x991; uint32_t x992; uint32_t x993; uint32_t x994; uint32_t x995; uint32_t x996; uint32_t x997; uint32_t x998; uint32_t x999; uint32_t x1000; uint32_t x1001; uint32_t x1002; uint32_t x1003; uint32_t x1004; uint32_t x1005; uint32_t x1006; uint32_t x1007; uint32_t x1008; fiat_np384_uint1 x1009; uint32_t x1010; fiat_np384_uint1 x1011; uint32_t x1012; fiat_np384_uint1 x1013; uint32_t x1014; fiat_np384_uint1 x1015; uint32_t x1016; fiat_np384_uint1 x1017; uint32_t x1018; fiat_np384_uint1 x1019; uint32_t x1020; fiat_np384_uint1 x1021; uint32_t x1022; fiat_np384_uint1 x1023; uint32_t x1024; fiat_np384_uint1 x1025; uint32_t x1026; fiat_np384_uint1 x1027; uint32_t x1028; fiat_np384_uint1 x1029; uint32_t x1030; fiat_np384_uint1 x1031; uint32_t x1032; fiat_np384_uint1 x1033; uint32_t x1034; fiat_np384_uint1 x1035; uint32_t x1036; fiat_np384_uint1 x1037; uint32_t x1038; fiat_np384_uint1 x1039; uint32_t x1040; fiat_np384_uint1 x1041; uint32_t x1042; fiat_np384_uint1 x1043; uint32_t x1044; fiat_np384_uint1 x1045; uint32_t x1046; fiat_np384_uint1 x1047; uint32_t x1048; fiat_np384_uint1 x1049; uint32_t x1050; fiat_np384_uint1 x1051; uint32_t x1052; fiat_np384_uint1 x1053; uint32_t x1054; fiat_np384_uint1 x1055; uint32_t x1056; fiat_np384_uint1 x1057; uint32_t x1058; fiat_np384_uint1 x1059; uint32_t x1060; fiat_np384_uint1 x1061; uint32_t x1062; fiat_np384_uint1 x1063; uint32_t x1064; fiat_np384_uint1 x1065; uint32_t x1066; fiat_np384_uint1 x1067; uint32_t x1068; fiat_np384_uint1 x1069; uint32_t x1070; fiat_np384_uint1 x1071; uint32_t x1072; fiat_np384_uint1 x1073; uint32_t x1074; fiat_np384_uint1 x1075; uint32_t x1076; fiat_np384_uint1 x1077; uint32_t x1078; fiat_np384_uint1 x1079; uint32_t x1080; uint32_t x1081; uint32_t x1082; uint32_t x1083; uint32_t x1084; uint32_t x1085; uint32_t x1086; uint32_t x1087; uint32_t x1088; uint32_t x1089; uint32_t x1090; uint32_t x1091; uint32_t x1092; uint32_t x1093; uint32_t x1094; uint32_t x1095; uint32_t x1096; uint32_t x1097; uint32_t x1098; uint32_t x1099; uint32_t x1100; uint32_t x1101; uint32_t x1102; uint32_t x1103; uint32_t x1104; uint32_t x1105; uint32_t x1106; fiat_np384_uint1 x1107; uint32_t x1108; fiat_np384_uint1 x1109; uint32_t x1110; fiat_np384_uint1 x1111; uint32_t x1112; fiat_np384_uint1 x1113; uint32_t x1114; fiat_np384_uint1 x1115; uint32_t x1116; fiat_np384_uint1 x1117; uint32_t x1118; fiat_np384_uint1 x1119; uint32_t x1120; fiat_np384_uint1 x1121; uint32_t x1122; fiat_np384_uint1 x1123; uint32_t x1124; fiat_np384_uint1 x1125; uint32_t x1126; fiat_np384_uint1 x1127; uint32_t x1128; fiat_np384_uint1 x1129; uint32_t x1130; fiat_np384_uint1 x1131; uint32_t x1132; fiat_np384_uint1 x1133; uint32_t x1134; fiat_np384_uint1 x1135; uint32_t x1136; fiat_np384_uint1 x1137; uint32_t x1138; fiat_np384_uint1 x1139; uint32_t x1140; fiat_np384_uint1 x1141; uint32_t x1142; fiat_np384_uint1 x1143; uint32_t x1144; fiat_np384_uint1 x1145; uint32_t x1146; fiat_np384_uint1 x1147; uint32_t x1148; fiat_np384_uint1 x1149; uint32_t x1150; fiat_np384_uint1 x1151; uint32_t x1152; fiat_np384_uint1 x1153; uint32_t x1154; fiat_np384_uint1 x1155; uint32_t x1156; fiat_np384_uint1 x1157; uint32_t x1158; fiat_np384_uint1 x1159; uint32_t x1160; fiat_np384_uint1 x1161; uint32_t x1162; fiat_np384_uint1 x1163; uint32_t x1164; fiat_np384_uint1 x1165; uint32_t x1166; fiat_np384_uint1 x1167; uint32_t x1168; fiat_np384_uint1 x1169; uint32_t x1170; fiat_np384_uint1 x1171; uint32_t x1172; fiat_np384_uint1 x1173; uint32_t x1174; fiat_np384_uint1 x1175; uint32_t x1176; fiat_np384_uint1 x1177; uint32_t x1178; fiat_np384_uint1 x1179; uint32_t x1180; uint32_t x1181; uint32_t x1182; uint32_t x1183; uint32_t x1184; uint32_t x1185; uint32_t x1186; uint32_t x1187; uint32_t x1188; uint32_t x1189; uint32_t x1190; uint32_t x1191; x1 = (arg1[0]); fiat_np384_mulx_u32(&x2, &x3, x1, UINT32_C(0xe88fdc45)); fiat_np384_mulx_u32(&x4, &x5, x2, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x6, &x7, x2, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x8, &x9, x2, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x10, &x11, x2, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x12, &x13, x2, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x14, &x15, x2, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x16, &x17, x2, UINT32_C(0xc7634d81)); fiat_np384_mulx_u32(&x18, &x19, x2, UINT32_C(0xf4372ddf)); fiat_np384_mulx_u32(&x20, &x21, x2, UINT32_C(0x581a0db2)); fiat_np384_mulx_u32(&x22, &x23, x2, UINT32_C(0x48b0a77a)); fiat_np384_mulx_u32(&x24, &x25, x2, UINT32_C(0xecec196a)); fiat_np384_mulx_u32(&x26, &x27, x2, UINT32_C(0xccc52973)); fiat_np384_addcarryx_u32(&x28, &x29, 0x0, x27, x24); fiat_np384_addcarryx_u32(&x30, &x31, x29, x25, x22); fiat_np384_addcarryx_u32(&x32, &x33, x31, x23, x20); fiat_np384_addcarryx_u32(&x34, &x35, x33, x21, x18); fiat_np384_addcarryx_u32(&x36, &x37, x35, x19, x16); fiat_np384_addcarryx_u32(&x38, &x39, x37, x17, x14); fiat_np384_addcarryx_u32(&x40, &x41, x39, x15, x12); fiat_np384_addcarryx_u32(&x42, &x43, x41, x13, x10); fiat_np384_addcarryx_u32(&x44, &x45, x43, x11, x8); fiat_np384_addcarryx_u32(&x46, &x47, x45, x9, x6); fiat_np384_addcarryx_u32(&x48, &x49, x47, x7, x4); fiat_np384_addcarryx_u32(&x50, &x51, 0x0, x1, x26); fiat_np384_addcarryx_u32(&x52, &x53, x51, 0x0, x28); fiat_np384_addcarryx_u32(&x54, &x55, x53, 0x0, x30); fiat_np384_addcarryx_u32(&x56, &x57, x55, 0x0, x32); fiat_np384_addcarryx_u32(&x58, &x59, x57, 0x0, x34); fiat_np384_addcarryx_u32(&x60, &x61, x59, 0x0, x36); fiat_np384_addcarryx_u32(&x62, &x63, x61, 0x0, x38); fiat_np384_addcarryx_u32(&x64, &x65, x63, 0x0, x40); fiat_np384_addcarryx_u32(&x66, &x67, x65, 0x0, x42); fiat_np384_addcarryx_u32(&x68, &x69, x67, 0x0, x44); fiat_np384_addcarryx_u32(&x70, &x71, x69, 0x0, x46); fiat_np384_addcarryx_u32(&x72, &x73, x71, 0x0, x48); fiat_np384_addcarryx_u32(&x74, &x75, x73, 0x0, (x49 + x5)); fiat_np384_addcarryx_u32(&x76, &x77, 0x0, x52, (arg1[1])); fiat_np384_addcarryx_u32(&x78, &x79, x77, x54, 0x0); fiat_np384_addcarryx_u32(&x80, &x81, x79, x56, 0x0); fiat_np384_addcarryx_u32(&x82, &x83, x81, x58, 0x0); fiat_np384_addcarryx_u32(&x84, &x85, x83, x60, 0x0); fiat_np384_addcarryx_u32(&x86, &x87, x85, x62, 0x0); fiat_np384_addcarryx_u32(&x88, &x89, x87, x64, 0x0); fiat_np384_addcarryx_u32(&x90, &x91, x89, x66, 0x0); fiat_np384_addcarryx_u32(&x92, &x93, x91, x68, 0x0); fiat_np384_addcarryx_u32(&x94, &x95, x93, x70, 0x0); fiat_np384_addcarryx_u32(&x96, &x97, x95, x72, 0x0); fiat_np384_addcarryx_u32(&x98, &x99, x97, x74, 0x0); fiat_np384_mulx_u32(&x100, &x101, x76, UINT32_C(0xe88fdc45)); fiat_np384_mulx_u32(&x102, &x103, x100, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x104, &x105, x100, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x106, &x107, x100, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x108, &x109, x100, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x110, &x111, x100, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x112, &x113, x100, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x114, &x115, x100, UINT32_C(0xc7634d81)); fiat_np384_mulx_u32(&x116, &x117, x100, UINT32_C(0xf4372ddf)); fiat_np384_mulx_u32(&x118, &x119, x100, UINT32_C(0x581a0db2)); fiat_np384_mulx_u32(&x120, &x121, x100, UINT32_C(0x48b0a77a)); fiat_np384_mulx_u32(&x122, &x123, x100, UINT32_C(0xecec196a)); fiat_np384_mulx_u32(&x124, &x125, x100, UINT32_C(0xccc52973)); fiat_np384_addcarryx_u32(&x126, &x127, 0x0, x125, x122); fiat_np384_addcarryx_u32(&x128, &x129, x127, x123, x120); fiat_np384_addcarryx_u32(&x130, &x131, x129, x121, x118); fiat_np384_addcarryx_u32(&x132, &x133, x131, x119, x116); fiat_np384_addcarryx_u32(&x134, &x135, x133, x117, x114); fiat_np384_addcarryx_u32(&x136, &x137, x135, x115, x112); fiat_np384_addcarryx_u32(&x138, &x139, x137, x113, x110); fiat_np384_addcarryx_u32(&x140, &x141, x139, x111, x108); fiat_np384_addcarryx_u32(&x142, &x143, x141, x109, x106); fiat_np384_addcarryx_u32(&x144, &x145, x143, x107, x104); fiat_np384_addcarryx_u32(&x146, &x147, x145, x105, x102); fiat_np384_addcarryx_u32(&x148, &x149, 0x0, x76, x124); fiat_np384_addcarryx_u32(&x150, &x151, x149, x78, x126); fiat_np384_addcarryx_u32(&x152, &x153, x151, x80, x128); fiat_np384_addcarryx_u32(&x154, &x155, x153, x82, x130); fiat_np384_addcarryx_u32(&x156, &x157, x155, x84, x132); fiat_np384_addcarryx_u32(&x158, &x159, x157, x86, x134); fiat_np384_addcarryx_u32(&x160, &x161, x159, x88, x136); fiat_np384_addcarryx_u32(&x162, &x163, x161, x90, x138); fiat_np384_addcarryx_u32(&x164, &x165, x163, x92, x140); fiat_np384_addcarryx_u32(&x166, &x167, x165, x94, x142); fiat_np384_addcarryx_u32(&x168, &x169, x167, x96, x144); fiat_np384_addcarryx_u32(&x170, &x171, x169, x98, x146); fiat_np384_addcarryx_u32(&x172, &x173, x171, ((uint32_t)x99 + x75), (x147 + x103)); fiat_np384_addcarryx_u32(&x174, &x175, 0x0, x150, (arg1[2])); fiat_np384_addcarryx_u32(&x176, &x177, x175, x152, 0x0); fiat_np384_addcarryx_u32(&x178, &x179, x177, x154, 0x0); fiat_np384_addcarryx_u32(&x180, &x181, x179, x156, 0x0); fiat_np384_addcarryx_u32(&x182, &x183, x181, x158, 0x0); fiat_np384_addcarryx_u32(&x184, &x185, x183, x160, 0x0); fiat_np384_addcarryx_u32(&x186, &x187, x185, x162, 0x0); fiat_np384_addcarryx_u32(&x188, &x189, x187, x164, 0x0); fiat_np384_addcarryx_u32(&x190, &x191, x189, x166, 0x0); fiat_np384_addcarryx_u32(&x192, &x193, x191, x168, 0x0); fiat_np384_addcarryx_u32(&x194, &x195, x193, x170, 0x0); fiat_np384_addcarryx_u32(&x196, &x197, x195, x172, 0x0); fiat_np384_mulx_u32(&x198, &x199, x174, UINT32_C(0xe88fdc45)); fiat_np384_mulx_u32(&x200, &x201, x198, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x202, &x203, x198, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x204, &x205, x198, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x206, &x207, x198, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x208, &x209, x198, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x210, &x211, x198, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x212, &x213, x198, UINT32_C(0xc7634d81)); fiat_np384_mulx_u32(&x214, &x215, x198, UINT32_C(0xf4372ddf)); fiat_np384_mulx_u32(&x216, &x217, x198, UINT32_C(0x581a0db2)); fiat_np384_mulx_u32(&x218, &x219, x198, UINT32_C(0x48b0a77a)); fiat_np384_mulx_u32(&x220, &x221, x198, UINT32_C(0xecec196a)); fiat_np384_mulx_u32(&x222, &x223, x198, UINT32_C(0xccc52973)); fiat_np384_addcarryx_u32(&x224, &x225, 0x0, x223, x220); fiat_np384_addcarryx_u32(&x226, &x227, x225, x221, x218); fiat_np384_addcarryx_u32(&x228, &x229, x227, x219, x216); fiat_np384_addcarryx_u32(&x230, &x231, x229, x217, x214); fiat_np384_addcarryx_u32(&x232, &x233, x231, x215, x212); fiat_np384_addcarryx_u32(&x234, &x235, x233, x213, x210); fiat_np384_addcarryx_u32(&x236, &x237, x235, x211, x208); fiat_np384_addcarryx_u32(&x238, &x239, x237, x209, x206); fiat_np384_addcarryx_u32(&x240, &x241, x239, x207, x204); fiat_np384_addcarryx_u32(&x242, &x243, x241, x205, x202); fiat_np384_addcarryx_u32(&x244, &x245, x243, x203, x200); fiat_np384_addcarryx_u32(&x246, &x247, 0x0, x174, x222); fiat_np384_addcarryx_u32(&x248, &x249, x247, x176, x224); fiat_np384_addcarryx_u32(&x250, &x251, x249, x178, x226); fiat_np384_addcarryx_u32(&x252, &x253, x251, x180, x228); fiat_np384_addcarryx_u32(&x254, &x255, x253, x182, x230); fiat_np384_addcarryx_u32(&x256, &x257, x255, x184, x232); fiat_np384_addcarryx_u32(&x258, &x259, x257, x186, x234); fiat_np384_addcarryx_u32(&x260, &x261, x259, x188, x236); fiat_np384_addcarryx_u32(&x262, &x263, x261, x190, x238); fiat_np384_addcarryx_u32(&x264, &x265, x263, x192, x240); fiat_np384_addcarryx_u32(&x266, &x267, x265, x194, x242); fiat_np384_addcarryx_u32(&x268, &x269, x267, x196, x244); fiat_np384_addcarryx_u32(&x270, &x271, x269, ((uint32_t)x197 + x173), (x245 + x201)); fiat_np384_addcarryx_u32(&x272, &x273, 0x0, x248, (arg1[3])); fiat_np384_addcarryx_u32(&x274, &x275, x273, x250, 0x0); fiat_np384_addcarryx_u32(&x276, &x277, x275, x252, 0x0); fiat_np384_addcarryx_u32(&x278, &x279, x277, x254, 0x0); fiat_np384_addcarryx_u32(&x280, &x281, x279, x256, 0x0); fiat_np384_addcarryx_u32(&x282, &x283, x281, x258, 0x0); fiat_np384_addcarryx_u32(&x284, &x285, x283, x260, 0x0); fiat_np384_addcarryx_u32(&x286, &x287, x285, x262, 0x0); fiat_np384_addcarryx_u32(&x288, &x289, x287, x264, 0x0); fiat_np384_addcarryx_u32(&x290, &x291, x289, x266, 0x0); fiat_np384_addcarryx_u32(&x292, &x293, x291, x268, 0x0); fiat_np384_addcarryx_u32(&x294, &x295, x293, x270, 0x0); fiat_np384_mulx_u32(&x296, &x297, x272, UINT32_C(0xe88fdc45)); fiat_np384_mulx_u32(&x298, &x299, x296, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x300, &x301, x296, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x302, &x303, x296, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x304, &x305, x296, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x306, &x307, x296, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x308, &x309, x296, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x310, &x311, x296, UINT32_C(0xc7634d81)); fiat_np384_mulx_u32(&x312, &x313, x296, UINT32_C(0xf4372ddf)); fiat_np384_mulx_u32(&x314, &x315, x296, UINT32_C(0x581a0db2)); fiat_np384_mulx_u32(&x316, &x317, x296, UINT32_C(0x48b0a77a)); fiat_np384_mulx_u32(&x318, &x319, x296, UINT32_C(0xecec196a)); fiat_np384_mulx_u32(&x320, &x321, x296, UINT32_C(0xccc52973)); fiat_np384_addcarryx_u32(&x322, &x323, 0x0, x321, x318); fiat_np384_addcarryx_u32(&x324, &x325, x323, x319, x316); fiat_np384_addcarryx_u32(&x326, &x327, x325, x317, x314); fiat_np384_addcarryx_u32(&x328, &x329, x327, x315, x312); fiat_np384_addcarryx_u32(&x330, &x331, x329, x313, x310); fiat_np384_addcarryx_u32(&x332, &x333, x331, x311, x308); fiat_np384_addcarryx_u32(&x334, &x335, x333, x309, x306); fiat_np384_addcarryx_u32(&x336, &x337, x335, x307, x304); fiat_np384_addcarryx_u32(&x338, &x339, x337, x305, x302); fiat_np384_addcarryx_u32(&x340, &x341, x339, x303, x300); fiat_np384_addcarryx_u32(&x342, &x343, x341, x301, x298); fiat_np384_addcarryx_u32(&x344, &x345, 0x0, x272, x320); fiat_np384_addcarryx_u32(&x346, &x347, x345, x274, x322); fiat_np384_addcarryx_u32(&x348, &x349, x347, x276, x324); fiat_np384_addcarryx_u32(&x350, &x351, x349, x278, x326); fiat_np384_addcarryx_u32(&x352, &x353, x351, x280, x328); fiat_np384_addcarryx_u32(&x354, &x355, x353, x282, x330); fiat_np384_addcarryx_u32(&x356, &x357, x355, x284, x332); fiat_np384_addcarryx_u32(&x358, &x359, x357, x286, x334); fiat_np384_addcarryx_u32(&x360, &x361, x359, x288, x336); fiat_np384_addcarryx_u32(&x362, &x363, x361, x290, x338); fiat_np384_addcarryx_u32(&x364, &x365, x363, x292, x340); fiat_np384_addcarryx_u32(&x366, &x367, x365, x294, x342); fiat_np384_addcarryx_u32(&x368, &x369, x367, ((uint32_t)x295 + x271), (x343 + x299)); fiat_np384_addcarryx_u32(&x370, &x371, 0x0, x346, (arg1[4])); fiat_np384_addcarryx_u32(&x372, &x373, x371, x348, 0x0); fiat_np384_addcarryx_u32(&x374, &x375, x373, x350, 0x0); fiat_np384_addcarryx_u32(&x376, &x377, x375, x352, 0x0); fiat_np384_addcarryx_u32(&x378, &x379, x377, x354, 0x0); fiat_np384_addcarryx_u32(&x380, &x381, x379, x356, 0x0); fiat_np384_addcarryx_u32(&x382, &x383, x381, x358, 0x0); fiat_np384_addcarryx_u32(&x384, &x385, x383, x360, 0x0); fiat_np384_addcarryx_u32(&x386, &x387, x385, x362, 0x0); fiat_np384_addcarryx_u32(&x388, &x389, x387, x364, 0x0); fiat_np384_addcarryx_u32(&x390, &x391, x389, x366, 0x0); fiat_np384_addcarryx_u32(&x392, &x393, x391, x368, 0x0); fiat_np384_mulx_u32(&x394, &x395, x370, UINT32_C(0xe88fdc45)); fiat_np384_mulx_u32(&x396, &x397, x394, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x398, &x399, x394, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x400, &x401, x394, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x402, &x403, x394, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x404, &x405, x394, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x406, &x407, x394, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x408, &x409, x394, UINT32_C(0xc7634d81)); fiat_np384_mulx_u32(&x410, &x411, x394, UINT32_C(0xf4372ddf)); fiat_np384_mulx_u32(&x412, &x413, x394, UINT32_C(0x581a0db2)); fiat_np384_mulx_u32(&x414, &x415, x394, UINT32_C(0x48b0a77a)); fiat_np384_mulx_u32(&x416, &x417, x394, UINT32_C(0xecec196a)); fiat_np384_mulx_u32(&x418, &x419, x394, UINT32_C(0xccc52973)); fiat_np384_addcarryx_u32(&x420, &x421, 0x0, x419, x416); fiat_np384_addcarryx_u32(&x422, &x423, x421, x417, x414); fiat_np384_addcarryx_u32(&x424, &x425, x423, x415, x412); fiat_np384_addcarryx_u32(&x426, &x427, x425, x413, x410); fiat_np384_addcarryx_u32(&x428, &x429, x427, x411, x408); fiat_np384_addcarryx_u32(&x430, &x431, x429, x409, x406); fiat_np384_addcarryx_u32(&x432, &x433, x431, x407, x404); fiat_np384_addcarryx_u32(&x434, &x435, x433, x405, x402); fiat_np384_addcarryx_u32(&x436, &x437, x435, x403, x400); fiat_np384_addcarryx_u32(&x438, &x439, x437, x401, x398); fiat_np384_addcarryx_u32(&x440, &x441, x439, x399, x396); fiat_np384_addcarryx_u32(&x442, &x443, 0x0, x370, x418); fiat_np384_addcarryx_u32(&x444, &x445, x443, x372, x420); fiat_np384_addcarryx_u32(&x446, &x447, x445, x374, x422); fiat_np384_addcarryx_u32(&x448, &x449, x447, x376, x424); fiat_np384_addcarryx_u32(&x450, &x451, x449, x378, x426); fiat_np384_addcarryx_u32(&x452, &x453, x451, x380, x428); fiat_np384_addcarryx_u32(&x454, &x455, x453, x382, x430); fiat_np384_addcarryx_u32(&x456, &x457, x455, x384, x432); fiat_np384_addcarryx_u32(&x458, &x459, x457, x386, x434); fiat_np384_addcarryx_u32(&x460, &x461, x459, x388, x436); fiat_np384_addcarryx_u32(&x462, &x463, x461, x390, x438); fiat_np384_addcarryx_u32(&x464, &x465, x463, x392, x440); fiat_np384_addcarryx_u32(&x466, &x467, x465, ((uint32_t)x393 + x369), (x441 + x397)); fiat_np384_addcarryx_u32(&x468, &x469, 0x0, x444, (arg1[5])); fiat_np384_addcarryx_u32(&x470, &x471, x469, x446, 0x0); fiat_np384_addcarryx_u32(&x472, &x473, x471, x448, 0x0); fiat_np384_addcarryx_u32(&x474, &x475, x473, x450, 0x0); fiat_np384_addcarryx_u32(&x476, &x477, x475, x452, 0x0); fiat_np384_addcarryx_u32(&x478, &x479, x477, x454, 0x0); fiat_np384_addcarryx_u32(&x480, &x481, x479, x456, 0x0); fiat_np384_addcarryx_u32(&x482, &x483, x481, x458, 0x0); fiat_np384_addcarryx_u32(&x484, &x485, x483, x460, 0x0); fiat_np384_addcarryx_u32(&x486, &x487, x485, x462, 0x0); fiat_np384_addcarryx_u32(&x488, &x489, x487, x464, 0x0); fiat_np384_addcarryx_u32(&x490, &x491, x489, x466, 0x0); fiat_np384_mulx_u32(&x492, &x493, x468, UINT32_C(0xe88fdc45)); fiat_np384_mulx_u32(&x494, &x495, x492, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x496, &x497, x492, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x498, &x499, x492, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x500, &x501, x492, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x502, &x503, x492, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x504, &x505, x492, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x506, &x507, x492, UINT32_C(0xc7634d81)); fiat_np384_mulx_u32(&x508, &x509, x492, UINT32_C(0xf4372ddf)); fiat_np384_mulx_u32(&x510, &x511, x492, UINT32_C(0x581a0db2)); fiat_np384_mulx_u32(&x512, &x513, x492, UINT32_C(0x48b0a77a)); fiat_np384_mulx_u32(&x514, &x515, x492, UINT32_C(0xecec196a)); fiat_np384_mulx_u32(&x516, &x517, x492, UINT32_C(0xccc52973)); fiat_np384_addcarryx_u32(&x518, &x519, 0x0, x517, x514); fiat_np384_addcarryx_u32(&x520, &x521, x519, x515, x512); fiat_np384_addcarryx_u32(&x522, &x523, x521, x513, x510); fiat_np384_addcarryx_u32(&x524, &x525, x523, x511, x508); fiat_np384_addcarryx_u32(&x526, &x527, x525, x509, x506); fiat_np384_addcarryx_u32(&x528, &x529, x527, x507, x504); fiat_np384_addcarryx_u32(&x530, &x531, x529, x505, x502); fiat_np384_addcarryx_u32(&x532, &x533, x531, x503, x500); fiat_np384_addcarryx_u32(&x534, &x535, x533, x501, x498); fiat_np384_addcarryx_u32(&x536, &x537, x535, x499, x496); fiat_np384_addcarryx_u32(&x538, &x539, x537, x497, x494); fiat_np384_addcarryx_u32(&x540, &x541, 0x0, x468, x516); fiat_np384_addcarryx_u32(&x542, &x543, x541, x470, x518); fiat_np384_addcarryx_u32(&x544, &x545, x543, x472, x520); fiat_np384_addcarryx_u32(&x546, &x547, x545, x474, x522); fiat_np384_addcarryx_u32(&x548, &x549, x547, x476, x524); fiat_np384_addcarryx_u32(&x550, &x551, x549, x478, x526); fiat_np384_addcarryx_u32(&x552, &x553, x551, x480, x528); fiat_np384_addcarryx_u32(&x554, &x555, x553, x482, x530); fiat_np384_addcarryx_u32(&x556, &x557, x555, x484, x532); fiat_np384_addcarryx_u32(&x558, &x559, x557, x486, x534); fiat_np384_addcarryx_u32(&x560, &x561, x559, x488, x536); fiat_np384_addcarryx_u32(&x562, &x563, x561, x490, x538); fiat_np384_addcarryx_u32(&x564, &x565, x563, ((uint32_t)x491 + x467), (x539 + x495)); fiat_np384_addcarryx_u32(&x566, &x567, 0x0, x542, (arg1[6])); fiat_np384_addcarryx_u32(&x568, &x569, x567, x544, 0x0); fiat_np384_addcarryx_u32(&x570, &x571, x569, x546, 0x0); fiat_np384_addcarryx_u32(&x572, &x573, x571, x548, 0x0); fiat_np384_addcarryx_u32(&x574, &x575, x573, x550, 0x0); fiat_np384_addcarryx_u32(&x576, &x577, x575, x552, 0x0); fiat_np384_addcarryx_u32(&x578, &x579, x577, x554, 0x0); fiat_np384_addcarryx_u32(&x580, &x581, x579, x556, 0x0); fiat_np384_addcarryx_u32(&x582, &x583, x581, x558, 0x0); fiat_np384_addcarryx_u32(&x584, &x585, x583, x560, 0x0); fiat_np384_addcarryx_u32(&x586, &x587, x585, x562, 0x0); fiat_np384_addcarryx_u32(&x588, &x589, x587, x564, 0x0); fiat_np384_mulx_u32(&x590, &x591, x566, UINT32_C(0xe88fdc45)); fiat_np384_mulx_u32(&x592, &x593, x590, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x594, &x595, x590, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x596, &x597, x590, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x598, &x599, x590, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x600, &x601, x590, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x602, &x603, x590, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x604, &x605, x590, UINT32_C(0xc7634d81)); fiat_np384_mulx_u32(&x606, &x607, x590, UINT32_C(0xf4372ddf)); fiat_np384_mulx_u32(&x608, &x609, x590, UINT32_C(0x581a0db2)); fiat_np384_mulx_u32(&x610, &x611, x590, UINT32_C(0x48b0a77a)); fiat_np384_mulx_u32(&x612, &x613, x590, UINT32_C(0xecec196a)); fiat_np384_mulx_u32(&x614, &x615, x590, UINT32_C(0xccc52973)); fiat_np384_addcarryx_u32(&x616, &x617, 0x0, x615, x612); fiat_np384_addcarryx_u32(&x618, &x619, x617, x613, x610); fiat_np384_addcarryx_u32(&x620, &x621, x619, x611, x608); fiat_np384_addcarryx_u32(&x622, &x623, x621, x609, x606); fiat_np384_addcarryx_u32(&x624, &x625, x623, x607, x604); fiat_np384_addcarryx_u32(&x626, &x627, x625, x605, x602); fiat_np384_addcarryx_u32(&x628, &x629, x627, x603, x600); fiat_np384_addcarryx_u32(&x630, &x631, x629, x601, x598); fiat_np384_addcarryx_u32(&x632, &x633, x631, x599, x596); fiat_np384_addcarryx_u32(&x634, &x635, x633, x597, x594); fiat_np384_addcarryx_u32(&x636, &x637, x635, x595, x592); fiat_np384_addcarryx_u32(&x638, &x639, 0x0, x566, x614); fiat_np384_addcarryx_u32(&x640, &x641, x639, x568, x616); fiat_np384_addcarryx_u32(&x642, &x643, x641, x570, x618); fiat_np384_addcarryx_u32(&x644, &x645, x643, x572, x620); fiat_np384_addcarryx_u32(&x646, &x647, x645, x574, x622); fiat_np384_addcarryx_u32(&x648, &x649, x647, x576, x624); fiat_np384_addcarryx_u32(&x650, &x651, x649, x578, x626); fiat_np384_addcarryx_u32(&x652, &x653, x651, x580, x628); fiat_np384_addcarryx_u32(&x654, &x655, x653, x582, x630); fiat_np384_addcarryx_u32(&x656, &x657, x655, x584, x632); fiat_np384_addcarryx_u32(&x658, &x659, x657, x586, x634); fiat_np384_addcarryx_u32(&x660, &x661, x659, x588, x636); fiat_np384_addcarryx_u32(&x662, &x663, x661, ((uint32_t)x589 + x565), (x637 + x593)); fiat_np384_addcarryx_u32(&x664, &x665, 0x0, x640, (arg1[7])); fiat_np384_addcarryx_u32(&x666, &x667, x665, x642, 0x0); fiat_np384_addcarryx_u32(&x668, &x669, x667, x644, 0x0); fiat_np384_addcarryx_u32(&x670, &x671, x669, x646, 0x0); fiat_np384_addcarryx_u32(&x672, &x673, x671, x648, 0x0); fiat_np384_addcarryx_u32(&x674, &x675, x673, x650, 0x0); fiat_np384_addcarryx_u32(&x676, &x677, x675, x652, 0x0); fiat_np384_addcarryx_u32(&x678, &x679, x677, x654, 0x0); fiat_np384_addcarryx_u32(&x680, &x681, x679, x656, 0x0); fiat_np384_addcarryx_u32(&x682, &x683, x681, x658, 0x0); fiat_np384_addcarryx_u32(&x684, &x685, x683, x660, 0x0); fiat_np384_addcarryx_u32(&x686, &x687, x685, x662, 0x0); fiat_np384_mulx_u32(&x688, &x689, x664, UINT32_C(0xe88fdc45)); fiat_np384_mulx_u32(&x690, &x691, x688, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x692, &x693, x688, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x694, &x695, x688, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x696, &x697, x688, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x698, &x699, x688, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x700, &x701, x688, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x702, &x703, x688, UINT32_C(0xc7634d81)); fiat_np384_mulx_u32(&x704, &x705, x688, UINT32_C(0xf4372ddf)); fiat_np384_mulx_u32(&x706, &x707, x688, UINT32_C(0x581a0db2)); fiat_np384_mulx_u32(&x708, &x709, x688, UINT32_C(0x48b0a77a)); fiat_np384_mulx_u32(&x710, &x711, x688, UINT32_C(0xecec196a)); fiat_np384_mulx_u32(&x712, &x713, x688, UINT32_C(0xccc52973)); fiat_np384_addcarryx_u32(&x714, &x715, 0x0, x713, x710); fiat_np384_addcarryx_u32(&x716, &x717, x715, x711, x708); fiat_np384_addcarryx_u32(&x718, &x719, x717, x709, x706); fiat_np384_addcarryx_u32(&x720, &x721, x719, x707, x704); fiat_np384_addcarryx_u32(&x722, &x723, x721, x705, x702); fiat_np384_addcarryx_u32(&x724, &x725, x723, x703, x700); fiat_np384_addcarryx_u32(&x726, &x727, x725, x701, x698); fiat_np384_addcarryx_u32(&x728, &x729, x727, x699, x696); fiat_np384_addcarryx_u32(&x730, &x731, x729, x697, x694); fiat_np384_addcarryx_u32(&x732, &x733, x731, x695, x692); fiat_np384_addcarryx_u32(&x734, &x735, x733, x693, x690); fiat_np384_addcarryx_u32(&x736, &x737, 0x0, x664, x712); fiat_np384_addcarryx_u32(&x738, &x739, x737, x666, x714); fiat_np384_addcarryx_u32(&x740, &x741, x739, x668, x716); fiat_np384_addcarryx_u32(&x742, &x743, x741, x670, x718); fiat_np384_addcarryx_u32(&x744, &x745, x743, x672, x720); fiat_np384_addcarryx_u32(&x746, &x747, x745, x674, x722); fiat_np384_addcarryx_u32(&x748, &x749, x747, x676, x724); fiat_np384_addcarryx_u32(&x750, &x751, x749, x678, x726); fiat_np384_addcarryx_u32(&x752, &x753, x751, x680, x728); fiat_np384_addcarryx_u32(&x754, &x755, x753, x682, x730); fiat_np384_addcarryx_u32(&x756, &x757, x755, x684, x732); fiat_np384_addcarryx_u32(&x758, &x759, x757, x686, x734); fiat_np384_addcarryx_u32(&x760, &x761, x759, ((uint32_t)x687 + x663), (x735 + x691)); fiat_np384_addcarryx_u32(&x762, &x763, 0x0, x738, (arg1[8])); fiat_np384_addcarryx_u32(&x764, &x765, x763, x740, 0x0); fiat_np384_addcarryx_u32(&x766, &x767, x765, x742, 0x0); fiat_np384_addcarryx_u32(&x768, &x769, x767, x744, 0x0); fiat_np384_addcarryx_u32(&x770, &x771, x769, x746, 0x0); fiat_np384_addcarryx_u32(&x772, &x773, x771, x748, 0x0); fiat_np384_addcarryx_u32(&x774, &x775, x773, x750, 0x0); fiat_np384_addcarryx_u32(&x776, &x777, x775, x752, 0x0); fiat_np384_addcarryx_u32(&x778, &x779, x777, x754, 0x0); fiat_np384_addcarryx_u32(&x780, &x781, x779, x756, 0x0); fiat_np384_addcarryx_u32(&x782, &x783, x781, x758, 0x0); fiat_np384_addcarryx_u32(&x784, &x785, x783, x760, 0x0); fiat_np384_mulx_u32(&x786, &x787, x762, UINT32_C(0xe88fdc45)); fiat_np384_mulx_u32(&x788, &x789, x786, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x790, &x791, x786, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x792, &x793, x786, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x794, &x795, x786, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x796, &x797, x786, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x798, &x799, x786, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x800, &x801, x786, UINT32_C(0xc7634d81)); fiat_np384_mulx_u32(&x802, &x803, x786, UINT32_C(0xf4372ddf)); fiat_np384_mulx_u32(&x804, &x805, x786, UINT32_C(0x581a0db2)); fiat_np384_mulx_u32(&x806, &x807, x786, UINT32_C(0x48b0a77a)); fiat_np384_mulx_u32(&x808, &x809, x786, UINT32_C(0xecec196a)); fiat_np384_mulx_u32(&x810, &x811, x786, UINT32_C(0xccc52973)); fiat_np384_addcarryx_u32(&x812, &x813, 0x0, x811, x808); fiat_np384_addcarryx_u32(&x814, &x815, x813, x809, x806); fiat_np384_addcarryx_u32(&x816, &x817, x815, x807, x804); fiat_np384_addcarryx_u32(&x818, &x819, x817, x805, x802); fiat_np384_addcarryx_u32(&x820, &x821, x819, x803, x800); fiat_np384_addcarryx_u32(&x822, &x823, x821, x801, x798); fiat_np384_addcarryx_u32(&x824, &x825, x823, x799, x796); fiat_np384_addcarryx_u32(&x826, &x827, x825, x797, x794); fiat_np384_addcarryx_u32(&x828, &x829, x827, x795, x792); fiat_np384_addcarryx_u32(&x830, &x831, x829, x793, x790); fiat_np384_addcarryx_u32(&x832, &x833, x831, x791, x788); fiat_np384_addcarryx_u32(&x834, &x835, 0x0, x762, x810); fiat_np384_addcarryx_u32(&x836, &x837, x835, x764, x812); fiat_np384_addcarryx_u32(&x838, &x839, x837, x766, x814); fiat_np384_addcarryx_u32(&x840, &x841, x839, x768, x816); fiat_np384_addcarryx_u32(&x842, &x843, x841, x770, x818); fiat_np384_addcarryx_u32(&x844, &x845, x843, x772, x820); fiat_np384_addcarryx_u32(&x846, &x847, x845, x774, x822); fiat_np384_addcarryx_u32(&x848, &x849, x847, x776, x824); fiat_np384_addcarryx_u32(&x850, &x851, x849, x778, x826); fiat_np384_addcarryx_u32(&x852, &x853, x851, x780, x828); fiat_np384_addcarryx_u32(&x854, &x855, x853, x782, x830); fiat_np384_addcarryx_u32(&x856, &x857, x855, x784, x832); fiat_np384_addcarryx_u32(&x858, &x859, x857, ((uint32_t)x785 + x761), (x833 + x789)); fiat_np384_addcarryx_u32(&x860, &x861, 0x0, x836, (arg1[9])); fiat_np384_addcarryx_u32(&x862, &x863, x861, x838, 0x0); fiat_np384_addcarryx_u32(&x864, &x865, x863, x840, 0x0); fiat_np384_addcarryx_u32(&x866, &x867, x865, x842, 0x0); fiat_np384_addcarryx_u32(&x868, &x869, x867, x844, 0x0); fiat_np384_addcarryx_u32(&x870, &x871, x869, x846, 0x0); fiat_np384_addcarryx_u32(&x872, &x873, x871, x848, 0x0); fiat_np384_addcarryx_u32(&x874, &x875, x873, x850, 0x0); fiat_np384_addcarryx_u32(&x876, &x877, x875, x852, 0x0); fiat_np384_addcarryx_u32(&x878, &x879, x877, x854, 0x0); fiat_np384_addcarryx_u32(&x880, &x881, x879, x856, 0x0); fiat_np384_addcarryx_u32(&x882, &x883, x881, x858, 0x0); fiat_np384_mulx_u32(&x884, &x885, x860, UINT32_C(0xe88fdc45)); fiat_np384_mulx_u32(&x886, &x887, x884, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x888, &x889, x884, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x890, &x891, x884, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x892, &x893, x884, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x894, &x895, x884, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x896, &x897, x884, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x898, &x899, x884, UINT32_C(0xc7634d81)); fiat_np384_mulx_u32(&x900, &x901, x884, UINT32_C(0xf4372ddf)); fiat_np384_mulx_u32(&x902, &x903, x884, UINT32_C(0x581a0db2)); fiat_np384_mulx_u32(&x904, &x905, x884, UINT32_C(0x48b0a77a)); fiat_np384_mulx_u32(&x906, &x907, x884, UINT32_C(0xecec196a)); fiat_np384_mulx_u32(&x908, &x909, x884, UINT32_C(0xccc52973)); fiat_np384_addcarryx_u32(&x910, &x911, 0x0, x909, x906); fiat_np384_addcarryx_u32(&x912, &x913, x911, x907, x904); fiat_np384_addcarryx_u32(&x914, &x915, x913, x905, x902); fiat_np384_addcarryx_u32(&x916, &x917, x915, x903, x900); fiat_np384_addcarryx_u32(&x918, &x919, x917, x901, x898); fiat_np384_addcarryx_u32(&x920, &x921, x919, x899, x896); fiat_np384_addcarryx_u32(&x922, &x923, x921, x897, x894); fiat_np384_addcarryx_u32(&x924, &x925, x923, x895, x892); fiat_np384_addcarryx_u32(&x926, &x927, x925, x893, x890); fiat_np384_addcarryx_u32(&x928, &x929, x927, x891, x888); fiat_np384_addcarryx_u32(&x930, &x931, x929, x889, x886); fiat_np384_addcarryx_u32(&x932, &x933, 0x0, x860, x908); fiat_np384_addcarryx_u32(&x934, &x935, x933, x862, x910); fiat_np384_addcarryx_u32(&x936, &x937, x935, x864, x912); fiat_np384_addcarryx_u32(&x938, &x939, x937, x866, x914); fiat_np384_addcarryx_u32(&x940, &x941, x939, x868, x916); fiat_np384_addcarryx_u32(&x942, &x943, x941, x870, x918); fiat_np384_addcarryx_u32(&x944, &x945, x943, x872, x920); fiat_np384_addcarryx_u32(&x946, &x947, x945, x874, x922); fiat_np384_addcarryx_u32(&x948, &x949, x947, x876, x924); fiat_np384_addcarryx_u32(&x950, &x951, x949, x878, x926); fiat_np384_addcarryx_u32(&x952, &x953, x951, x880, x928); fiat_np384_addcarryx_u32(&x954, &x955, x953, x882, x930); fiat_np384_addcarryx_u32(&x956, &x957, x955, ((uint32_t)x883 + x859), (x931 + x887)); fiat_np384_addcarryx_u32(&x958, &x959, 0x0, x934, (arg1[10])); fiat_np384_addcarryx_u32(&x960, &x961, x959, x936, 0x0); fiat_np384_addcarryx_u32(&x962, &x963, x961, x938, 0x0); fiat_np384_addcarryx_u32(&x964, &x965, x963, x940, 0x0); fiat_np384_addcarryx_u32(&x966, &x967, x965, x942, 0x0); fiat_np384_addcarryx_u32(&x968, &x969, x967, x944, 0x0); fiat_np384_addcarryx_u32(&x970, &x971, x969, x946, 0x0); fiat_np384_addcarryx_u32(&x972, &x973, x971, x948, 0x0); fiat_np384_addcarryx_u32(&x974, &x975, x973, x950, 0x0); fiat_np384_addcarryx_u32(&x976, &x977, x975, x952, 0x0); fiat_np384_addcarryx_u32(&x978, &x979, x977, x954, 0x0); fiat_np384_addcarryx_u32(&x980, &x981, x979, x956, 0x0); fiat_np384_mulx_u32(&x982, &x983, x958, UINT32_C(0xe88fdc45)); fiat_np384_mulx_u32(&x984, &x985, x982, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x986, &x987, x982, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x988, &x989, x982, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x990, &x991, x982, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x992, &x993, x982, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x994, &x995, x982, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x996, &x997, x982, UINT32_C(0xc7634d81)); fiat_np384_mulx_u32(&x998, &x999, x982, UINT32_C(0xf4372ddf)); fiat_np384_mulx_u32(&x1000, &x1001, x982, UINT32_C(0x581a0db2)); fiat_np384_mulx_u32(&x1002, &x1003, x982, UINT32_C(0x48b0a77a)); fiat_np384_mulx_u32(&x1004, &x1005, x982, UINT32_C(0xecec196a)); fiat_np384_mulx_u32(&x1006, &x1007, x982, UINT32_C(0xccc52973)); fiat_np384_addcarryx_u32(&x1008, &x1009, 0x0, x1007, x1004); fiat_np384_addcarryx_u32(&x1010, &x1011, x1009, x1005, x1002); fiat_np384_addcarryx_u32(&x1012, &x1013, x1011, x1003, x1000); fiat_np384_addcarryx_u32(&x1014, &x1015, x1013, x1001, x998); fiat_np384_addcarryx_u32(&x1016, &x1017, x1015, x999, x996); fiat_np384_addcarryx_u32(&x1018, &x1019, x1017, x997, x994); fiat_np384_addcarryx_u32(&x1020, &x1021, x1019, x995, x992); fiat_np384_addcarryx_u32(&x1022, &x1023, x1021, x993, x990); fiat_np384_addcarryx_u32(&x1024, &x1025, x1023, x991, x988); fiat_np384_addcarryx_u32(&x1026, &x1027, x1025, x989, x986); fiat_np384_addcarryx_u32(&x1028, &x1029, x1027, x987, x984); fiat_np384_addcarryx_u32(&x1030, &x1031, 0x0, x958, x1006); fiat_np384_addcarryx_u32(&x1032, &x1033, x1031, x960, x1008); fiat_np384_addcarryx_u32(&x1034, &x1035, x1033, x962, x1010); fiat_np384_addcarryx_u32(&x1036, &x1037, x1035, x964, x1012); fiat_np384_addcarryx_u32(&x1038, &x1039, x1037, x966, x1014); fiat_np384_addcarryx_u32(&x1040, &x1041, x1039, x968, x1016); fiat_np384_addcarryx_u32(&x1042, &x1043, x1041, x970, x1018); fiat_np384_addcarryx_u32(&x1044, &x1045, x1043, x972, x1020); fiat_np384_addcarryx_u32(&x1046, &x1047, x1045, x974, x1022); fiat_np384_addcarryx_u32(&x1048, &x1049, x1047, x976, x1024); fiat_np384_addcarryx_u32(&x1050, &x1051, x1049, x978, x1026); fiat_np384_addcarryx_u32(&x1052, &x1053, x1051, x980, x1028); fiat_np384_addcarryx_u32(&x1054, &x1055, x1053, ((uint32_t)x981 + x957), (x1029 + x985)); fiat_np384_addcarryx_u32(&x1056, &x1057, 0x0, x1032, (arg1[11])); fiat_np384_addcarryx_u32(&x1058, &x1059, x1057, x1034, 0x0); fiat_np384_addcarryx_u32(&x1060, &x1061, x1059, x1036, 0x0); fiat_np384_addcarryx_u32(&x1062, &x1063, x1061, x1038, 0x0); fiat_np384_addcarryx_u32(&x1064, &x1065, x1063, x1040, 0x0); fiat_np384_addcarryx_u32(&x1066, &x1067, x1065, x1042, 0x0); fiat_np384_addcarryx_u32(&x1068, &x1069, x1067, x1044, 0x0); fiat_np384_addcarryx_u32(&x1070, &x1071, x1069, x1046, 0x0); fiat_np384_addcarryx_u32(&x1072, &x1073, x1071, x1048, 0x0); fiat_np384_addcarryx_u32(&x1074, &x1075, x1073, x1050, 0x0); fiat_np384_addcarryx_u32(&x1076, &x1077, x1075, x1052, 0x0); fiat_np384_addcarryx_u32(&x1078, &x1079, x1077, x1054, 0x0); fiat_np384_mulx_u32(&x1080, &x1081, x1056, UINT32_C(0xe88fdc45)); fiat_np384_mulx_u32(&x1082, &x1083, x1080, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x1084, &x1085, x1080, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x1086, &x1087, x1080, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x1088, &x1089, x1080, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x1090, &x1091, x1080, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x1092, &x1093, x1080, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x1094, &x1095, x1080, UINT32_C(0xc7634d81)); fiat_np384_mulx_u32(&x1096, &x1097, x1080, UINT32_C(0xf4372ddf)); fiat_np384_mulx_u32(&x1098, &x1099, x1080, UINT32_C(0x581a0db2)); fiat_np384_mulx_u32(&x1100, &x1101, x1080, UINT32_C(0x48b0a77a)); fiat_np384_mulx_u32(&x1102, &x1103, x1080, UINT32_C(0xecec196a)); fiat_np384_mulx_u32(&x1104, &x1105, x1080, UINT32_C(0xccc52973)); fiat_np384_addcarryx_u32(&x1106, &x1107, 0x0, x1105, x1102); fiat_np384_addcarryx_u32(&x1108, &x1109, x1107, x1103, x1100); fiat_np384_addcarryx_u32(&x1110, &x1111, x1109, x1101, x1098); fiat_np384_addcarryx_u32(&x1112, &x1113, x1111, x1099, x1096); fiat_np384_addcarryx_u32(&x1114, &x1115, x1113, x1097, x1094); fiat_np384_addcarryx_u32(&x1116, &x1117, x1115, x1095, x1092); fiat_np384_addcarryx_u32(&x1118, &x1119, x1117, x1093, x1090); fiat_np384_addcarryx_u32(&x1120, &x1121, x1119, x1091, x1088); fiat_np384_addcarryx_u32(&x1122, &x1123, x1121, x1089, x1086); fiat_np384_addcarryx_u32(&x1124, &x1125, x1123, x1087, x1084); fiat_np384_addcarryx_u32(&x1126, &x1127, x1125, x1085, x1082); fiat_np384_addcarryx_u32(&x1128, &x1129, 0x0, x1056, x1104); fiat_np384_addcarryx_u32(&x1130, &x1131, x1129, x1058, x1106); fiat_np384_addcarryx_u32(&x1132, &x1133, x1131, x1060, x1108); fiat_np384_addcarryx_u32(&x1134, &x1135, x1133, x1062, x1110); fiat_np384_addcarryx_u32(&x1136, &x1137, x1135, x1064, x1112); fiat_np384_addcarryx_u32(&x1138, &x1139, x1137, x1066, x1114); fiat_np384_addcarryx_u32(&x1140, &x1141, x1139, x1068, x1116); fiat_np384_addcarryx_u32(&x1142, &x1143, x1141, x1070, x1118); fiat_np384_addcarryx_u32(&x1144, &x1145, x1143, x1072, x1120); fiat_np384_addcarryx_u32(&x1146, &x1147, x1145, x1074, x1122); fiat_np384_addcarryx_u32(&x1148, &x1149, x1147, x1076, x1124); fiat_np384_addcarryx_u32(&x1150, &x1151, x1149, x1078, x1126); fiat_np384_addcarryx_u32(&x1152, &x1153, x1151, ((uint32_t)x1079 + x1055), (x1127 + x1083)); fiat_np384_subborrowx_u32(&x1154, &x1155, 0x0, x1130, UINT32_C(0xccc52973)); fiat_np384_subborrowx_u32(&x1156, &x1157, x1155, x1132, UINT32_C(0xecec196a)); fiat_np384_subborrowx_u32(&x1158, &x1159, x1157, x1134, UINT32_C(0x48b0a77a)); fiat_np384_subborrowx_u32(&x1160, &x1161, x1159, x1136, UINT32_C(0x581a0db2)); fiat_np384_subborrowx_u32(&x1162, &x1163, x1161, x1138, UINT32_C(0xf4372ddf)); fiat_np384_subborrowx_u32(&x1164, &x1165, x1163, x1140, UINT32_C(0xc7634d81)); fiat_np384_subborrowx_u32(&x1166, &x1167, x1165, x1142, UINT32_C(0xffffffff)); fiat_np384_subborrowx_u32(&x1168, &x1169, x1167, x1144, UINT32_C(0xffffffff)); fiat_np384_subborrowx_u32(&x1170, &x1171, x1169, x1146, UINT32_C(0xffffffff)); fiat_np384_subborrowx_u32(&x1172, &x1173, x1171, x1148, UINT32_C(0xffffffff)); fiat_np384_subborrowx_u32(&x1174, &x1175, x1173, x1150, UINT32_C(0xffffffff)); fiat_np384_subborrowx_u32(&x1176, &x1177, x1175, x1152, UINT32_C(0xffffffff)); fiat_np384_subborrowx_u32(&x1178, &x1179, x1177, x1153, 0x0); fiat_np384_cmovznz_u32(&x1180, x1179, x1154, x1130); fiat_np384_cmovznz_u32(&x1181, x1179, x1156, x1132); fiat_np384_cmovznz_u32(&x1182, x1179, x1158, x1134); fiat_np384_cmovznz_u32(&x1183, x1179, x1160, x1136); fiat_np384_cmovznz_u32(&x1184, x1179, x1162, x1138); fiat_np384_cmovznz_u32(&x1185, x1179, x1164, x1140); fiat_np384_cmovznz_u32(&x1186, x1179, x1166, x1142); fiat_np384_cmovznz_u32(&x1187, x1179, x1168, x1144); fiat_np384_cmovznz_u32(&x1188, x1179, x1170, x1146); fiat_np384_cmovznz_u32(&x1189, x1179, x1172, x1148); fiat_np384_cmovznz_u32(&x1190, x1179, x1174, x1150); fiat_np384_cmovznz_u32(&x1191, x1179, x1176, x1152); out1[0] = x1180; out1[1] = x1181; out1[2] = x1182; out1[3] = x1183; out1[4] = x1184; out1[5] = x1185; out1[6] = x1186; out1[7] = x1187; out1[8] = x1188; out1[9] = x1189; out1[10] = x1190; out1[11] = x1191; } /* * The function fiat_np384_to_montgomery translates a field element into the Montgomery domain. * * Preconditions: * 0 ≤ eval arg1 < m * Postconditions: * eval (from_montgomery out1) mod m = eval arg1 mod m * 0 ≤ eval out1 < m * */ static void fiat_np384_to_montgomery(fiat_np384_montgomery_domain_field_element out1, const fiat_np384_non_montgomery_domain_field_element arg1) { uint32_t x1; uint32_t x2; uint32_t x3; uint32_t x4; uint32_t x5; uint32_t x6; uint32_t x7; uint32_t x8; uint32_t x9; uint32_t x10; uint32_t x11; uint32_t x12; uint32_t x13; uint32_t x14; uint32_t x15; uint32_t x16; uint32_t x17; uint32_t x18; uint32_t x19; uint32_t x20; uint32_t x21; uint32_t x22; uint32_t x23; uint32_t x24; uint32_t x25; uint32_t x26; uint32_t x27; uint32_t x28; uint32_t x29; uint32_t x30; uint32_t x31; uint32_t x32; uint32_t x33; uint32_t x34; uint32_t x35; uint32_t x36; uint32_t x37; fiat_np384_uint1 x38; uint32_t x39; fiat_np384_uint1 x40; uint32_t x41; fiat_np384_uint1 x42; uint32_t x43; fiat_np384_uint1 x44; uint32_t x45; fiat_np384_uint1 x46; uint32_t x47; fiat_np384_uint1 x48; uint32_t x49; fiat_np384_uint1 x50; uint32_t x51; fiat_np384_uint1 x52; uint32_t x53; fiat_np384_uint1 x54; uint32_t x55; fiat_np384_uint1 x56; uint32_t x57; fiat_np384_uint1 x58; uint32_t x59; uint32_t x60; uint32_t x61; uint32_t x62; uint32_t x63; uint32_t x64; uint32_t x65; uint32_t x66; uint32_t x67; uint32_t x68; uint32_t x69; uint32_t x70; uint32_t x71; uint32_t x72; uint32_t x73; uint32_t x74; uint32_t x75; uint32_t x76; uint32_t x77; uint32_t x78; uint32_t x79; uint32_t x80; uint32_t x81; uint32_t x82; uint32_t x83; uint32_t x84; uint32_t x85; fiat_np384_uint1 x86; uint32_t x87; fiat_np384_uint1 x88; uint32_t x89; fiat_np384_uint1 x90; uint32_t x91; fiat_np384_uint1 x92; uint32_t x93; fiat_np384_uint1 x94; uint32_t x95; fiat_np384_uint1 x96; uint32_t x97; fiat_np384_uint1 x98; uint32_t x99; fiat_np384_uint1 x100; uint32_t x101; fiat_np384_uint1 x102; uint32_t x103; fiat_np384_uint1 x104; uint32_t x105; fiat_np384_uint1 x106; uint32_t x107; fiat_np384_uint1 x108; uint32_t x109; fiat_np384_uint1 x110; uint32_t x111; fiat_np384_uint1 x112; uint32_t x113; fiat_np384_uint1 x114; uint32_t x115; fiat_np384_uint1 x116; uint32_t x117; fiat_np384_uint1 x118; uint32_t x119; fiat_np384_uint1 x120; uint32_t x121; fiat_np384_uint1 x122; uint32_t x123; fiat_np384_uint1 x124; uint32_t x125; fiat_np384_uint1 x126; uint32_t x127; fiat_np384_uint1 x128; uint32_t x129; fiat_np384_uint1 x130; uint32_t x131; fiat_np384_uint1 x132; uint32_t x133; uint32_t x134; uint32_t x135; uint32_t x136; uint32_t x137; uint32_t x138; uint32_t x139; uint32_t x140; uint32_t x141; uint32_t x142; uint32_t x143; uint32_t x144; uint32_t x145; uint32_t x146; uint32_t x147; uint32_t x148; uint32_t x149; uint32_t x150; uint32_t x151; uint32_t x152; uint32_t x153; uint32_t x154; uint32_t x155; uint32_t x156; uint32_t x157; fiat_np384_uint1 x158; uint32_t x159; fiat_np384_uint1 x160; uint32_t x161; fiat_np384_uint1 x162; uint32_t x163; fiat_np384_uint1 x164; uint32_t x165; fiat_np384_uint1 x166; uint32_t x167; fiat_np384_uint1 x168; uint32_t x169; fiat_np384_uint1 x170; uint32_t x171; fiat_np384_uint1 x172; uint32_t x173; fiat_np384_uint1 x174; uint32_t x175; fiat_np384_uint1 x176; uint32_t x177; fiat_np384_uint1 x178; uint32_t x179; fiat_np384_uint1 x180; uint32_t x181; fiat_np384_uint1 x182; uint32_t x183; fiat_np384_uint1 x184; uint32_t x185; fiat_np384_uint1 x186; uint32_t x187; fiat_np384_uint1 x188; uint32_t x189; fiat_np384_uint1 x190; uint32_t x191; fiat_np384_uint1 x192; uint32_t x193; fiat_np384_uint1 x194; uint32_t x195; fiat_np384_uint1 x196; uint32_t x197; fiat_np384_uint1 x198; uint32_t x199; fiat_np384_uint1 x200; uint32_t x201; fiat_np384_uint1 x202; uint32_t x203; uint32_t x204; uint32_t x205; uint32_t x206; uint32_t x207; uint32_t x208; uint32_t x209; uint32_t x210; uint32_t x211; uint32_t x212; uint32_t x213; uint32_t x214; uint32_t x215; uint32_t x216; uint32_t x217; uint32_t x218; uint32_t x219; uint32_t x220; uint32_t x221; uint32_t x222; uint32_t x223; uint32_t x224; uint32_t x225; uint32_t x226; uint32_t x227; uint32_t x228; uint32_t x229; fiat_np384_uint1 x230; uint32_t x231; fiat_np384_uint1 x232; uint32_t x233; fiat_np384_uint1 x234; uint32_t x235; fiat_np384_uint1 x236; uint32_t x237; fiat_np384_uint1 x238; uint32_t x239; fiat_np384_uint1 x240; uint32_t x241; fiat_np384_uint1 x242; uint32_t x243; fiat_np384_uint1 x244; uint32_t x245; fiat_np384_uint1 x246; uint32_t x247; fiat_np384_uint1 x248; uint32_t x249; fiat_np384_uint1 x250; uint32_t x251; fiat_np384_uint1 x252; uint32_t x253; fiat_np384_uint1 x254; uint32_t x255; fiat_np384_uint1 x256; uint32_t x257; fiat_np384_uint1 x258; uint32_t x259; fiat_np384_uint1 x260; uint32_t x261; fiat_np384_uint1 x262; uint32_t x263; fiat_np384_uint1 x264; uint32_t x265; fiat_np384_uint1 x266; uint32_t x267; fiat_np384_uint1 x268; uint32_t x269; fiat_np384_uint1 x270; uint32_t x271; fiat_np384_uint1 x272; uint32_t x273; fiat_np384_uint1 x274; uint32_t x275; fiat_np384_uint1 x276; uint32_t x277; uint32_t x278; uint32_t x279; uint32_t x280; uint32_t x281; uint32_t x282; uint32_t x283; uint32_t x284; uint32_t x285; uint32_t x286; uint32_t x287; uint32_t x288; uint32_t x289; uint32_t x290; uint32_t x291; uint32_t x292; uint32_t x293; uint32_t x294; uint32_t x295; uint32_t x296; uint32_t x297; uint32_t x298; uint32_t x299; uint32_t x300; uint32_t x301; fiat_np384_uint1 x302; uint32_t x303; fiat_np384_uint1 x304; uint32_t x305; fiat_np384_uint1 x306; uint32_t x307; fiat_np384_uint1 x308; uint32_t x309; fiat_np384_uint1 x310; uint32_t x311; fiat_np384_uint1 x312; uint32_t x313; fiat_np384_uint1 x314; uint32_t x315; fiat_np384_uint1 x316; uint32_t x317; fiat_np384_uint1 x318; uint32_t x319; fiat_np384_uint1 x320; uint32_t x321; fiat_np384_uint1 x322; uint32_t x323; fiat_np384_uint1 x324; uint32_t x325; fiat_np384_uint1 x326; uint32_t x327; fiat_np384_uint1 x328; uint32_t x329; fiat_np384_uint1 x330; uint32_t x331; fiat_np384_uint1 x332; uint32_t x333; fiat_np384_uint1 x334; uint32_t x335; fiat_np384_uint1 x336; uint32_t x337; fiat_np384_uint1 x338; uint32_t x339; fiat_np384_uint1 x340; uint32_t x341; fiat_np384_uint1 x342; uint32_t x343; fiat_np384_uint1 x344; uint32_t x345; fiat_np384_uint1 x346; uint32_t x347; uint32_t x348; uint32_t x349; uint32_t x350; uint32_t x351; uint32_t x352; uint32_t x353; uint32_t x354; uint32_t x355; uint32_t x356; uint32_t x357; uint32_t x358; uint32_t x359; uint32_t x360; uint32_t x361; uint32_t x362; uint32_t x363; uint32_t x364; uint32_t x365; uint32_t x366; uint32_t x367; uint32_t x368; uint32_t x369; uint32_t x370; uint32_t x371; uint32_t x372; uint32_t x373; fiat_np384_uint1 x374; uint32_t x375; fiat_np384_uint1 x376; uint32_t x377; fiat_np384_uint1 x378; uint32_t x379; fiat_np384_uint1 x380; uint32_t x381; fiat_np384_uint1 x382; uint32_t x383; fiat_np384_uint1 x384; uint32_t x385; fiat_np384_uint1 x386; uint32_t x387; fiat_np384_uint1 x388; uint32_t x389; fiat_np384_uint1 x390; uint32_t x391; fiat_np384_uint1 x392; uint32_t x393; fiat_np384_uint1 x394; uint32_t x395; fiat_np384_uint1 x396; uint32_t x397; fiat_np384_uint1 x398; uint32_t x399; fiat_np384_uint1 x400; uint32_t x401; fiat_np384_uint1 x402; uint32_t x403; fiat_np384_uint1 x404; uint32_t x405; fiat_np384_uint1 x406; uint32_t x407; fiat_np384_uint1 x408; uint32_t x409; fiat_np384_uint1 x410; uint32_t x411; fiat_np384_uint1 x412; uint32_t x413; fiat_np384_uint1 x414; uint32_t x415; fiat_np384_uint1 x416; uint32_t x417; fiat_np384_uint1 x418; uint32_t x419; fiat_np384_uint1 x420; uint32_t x421; uint32_t x422; uint32_t x423; uint32_t x424; uint32_t x425; uint32_t x426; uint32_t x427; uint32_t x428; uint32_t x429; uint32_t x430; uint32_t x431; uint32_t x432; uint32_t x433; uint32_t x434; uint32_t x435; uint32_t x436; uint32_t x437; uint32_t x438; uint32_t x439; uint32_t x440; uint32_t x441; uint32_t x442; uint32_t x443; uint32_t x444; uint32_t x445; fiat_np384_uint1 x446; uint32_t x447; fiat_np384_uint1 x448; uint32_t x449; fiat_np384_uint1 x450; uint32_t x451; fiat_np384_uint1 x452; uint32_t x453; fiat_np384_uint1 x454; uint32_t x455; fiat_np384_uint1 x456; uint32_t x457; fiat_np384_uint1 x458; uint32_t x459; fiat_np384_uint1 x460; uint32_t x461; fiat_np384_uint1 x462; uint32_t x463; fiat_np384_uint1 x464; uint32_t x465; fiat_np384_uint1 x466; uint32_t x467; fiat_np384_uint1 x468; uint32_t x469; fiat_np384_uint1 x470; uint32_t x471; fiat_np384_uint1 x472; uint32_t x473; fiat_np384_uint1 x474; uint32_t x475; fiat_np384_uint1 x476; uint32_t x477; fiat_np384_uint1 x478; uint32_t x479; fiat_np384_uint1 x480; uint32_t x481; fiat_np384_uint1 x482; uint32_t x483; fiat_np384_uint1 x484; uint32_t x485; fiat_np384_uint1 x486; uint32_t x487; fiat_np384_uint1 x488; uint32_t x489; fiat_np384_uint1 x490; uint32_t x491; uint32_t x492; uint32_t x493; uint32_t x494; uint32_t x495; uint32_t x496; uint32_t x497; uint32_t x498; uint32_t x499; uint32_t x500; uint32_t x501; uint32_t x502; uint32_t x503; uint32_t x504; uint32_t x505; uint32_t x506; uint32_t x507; uint32_t x508; uint32_t x509; uint32_t x510; uint32_t x511; uint32_t x512; uint32_t x513; uint32_t x514; uint32_t x515; uint32_t x516; uint32_t x517; fiat_np384_uint1 x518; uint32_t x519; fiat_np384_uint1 x520; uint32_t x521; fiat_np384_uint1 x522; uint32_t x523; fiat_np384_uint1 x524; uint32_t x525; fiat_np384_uint1 x526; uint32_t x527; fiat_np384_uint1 x528; uint32_t x529; fiat_np384_uint1 x530; uint32_t x531; fiat_np384_uint1 x532; uint32_t x533; fiat_np384_uint1 x534; uint32_t x535; fiat_np384_uint1 x536; uint32_t x537; fiat_np384_uint1 x538; uint32_t x539; fiat_np384_uint1 x540; uint32_t x541; fiat_np384_uint1 x542; uint32_t x543; fiat_np384_uint1 x544; uint32_t x545; fiat_np384_uint1 x546; uint32_t x547; fiat_np384_uint1 x548; uint32_t x549; fiat_np384_uint1 x550; uint32_t x551; fiat_np384_uint1 x552; uint32_t x553; fiat_np384_uint1 x554; uint32_t x555; fiat_np384_uint1 x556; uint32_t x557; fiat_np384_uint1 x558; uint32_t x559; fiat_np384_uint1 x560; uint32_t x561; fiat_np384_uint1 x562; uint32_t x563; fiat_np384_uint1 x564; uint32_t x565; uint32_t x566; uint32_t x567; uint32_t x568; uint32_t x569; uint32_t x570; uint32_t x571; uint32_t x572; uint32_t x573; uint32_t x574; uint32_t x575; uint32_t x576; uint32_t x577; uint32_t x578; uint32_t x579; uint32_t x580; uint32_t x581; uint32_t x582; uint32_t x583; uint32_t x584; uint32_t x585; uint32_t x586; uint32_t x587; uint32_t x588; uint32_t x589; fiat_np384_uint1 x590; uint32_t x591; fiat_np384_uint1 x592; uint32_t x593; fiat_np384_uint1 x594; uint32_t x595; fiat_np384_uint1 x596; uint32_t x597; fiat_np384_uint1 x598; uint32_t x599; fiat_np384_uint1 x600; uint32_t x601; fiat_np384_uint1 x602; uint32_t x603; fiat_np384_uint1 x604; uint32_t x605; fiat_np384_uint1 x606; uint32_t x607; fiat_np384_uint1 x608; uint32_t x609; fiat_np384_uint1 x610; uint32_t x611; fiat_np384_uint1 x612; uint32_t x613; fiat_np384_uint1 x614; uint32_t x615; fiat_np384_uint1 x616; uint32_t x617; fiat_np384_uint1 x618; uint32_t x619; fiat_np384_uint1 x620; uint32_t x621; fiat_np384_uint1 x622; uint32_t x623; fiat_np384_uint1 x624; uint32_t x625; fiat_np384_uint1 x626; uint32_t x627; fiat_np384_uint1 x628; uint32_t x629; fiat_np384_uint1 x630; uint32_t x631; fiat_np384_uint1 x632; uint32_t x633; fiat_np384_uint1 x634; uint32_t x635; uint32_t x636; uint32_t x637; uint32_t x638; uint32_t x639; uint32_t x640; uint32_t x641; uint32_t x642; uint32_t x643; uint32_t x644; uint32_t x645; uint32_t x646; uint32_t x647; uint32_t x648; uint32_t x649; uint32_t x650; uint32_t x651; uint32_t x652; uint32_t x653; uint32_t x654; uint32_t x655; uint32_t x656; uint32_t x657; uint32_t x658; uint32_t x659; uint32_t x660; uint32_t x661; fiat_np384_uint1 x662; uint32_t x663; fiat_np384_uint1 x664; uint32_t x665; fiat_np384_uint1 x666; uint32_t x667; fiat_np384_uint1 x668; uint32_t x669; fiat_np384_uint1 x670; uint32_t x671; fiat_np384_uint1 x672; uint32_t x673; fiat_np384_uint1 x674; uint32_t x675; fiat_np384_uint1 x676; uint32_t x677; fiat_np384_uint1 x678; uint32_t x679; fiat_np384_uint1 x680; uint32_t x681; fiat_np384_uint1 x682; uint32_t x683; fiat_np384_uint1 x684; uint32_t x685; fiat_np384_uint1 x686; uint32_t x687; fiat_np384_uint1 x688; uint32_t x689; fiat_np384_uint1 x690; uint32_t x691; fiat_np384_uint1 x692; uint32_t x693; fiat_np384_uint1 x694; uint32_t x695; fiat_np384_uint1 x696; uint32_t x697; fiat_np384_uint1 x698; uint32_t x699; fiat_np384_uint1 x700; uint32_t x701; fiat_np384_uint1 x702; uint32_t x703; fiat_np384_uint1 x704; uint32_t x705; fiat_np384_uint1 x706; uint32_t x707; fiat_np384_uint1 x708; uint32_t x709; uint32_t x710; uint32_t x711; uint32_t x712; uint32_t x713; uint32_t x714; uint32_t x715; uint32_t x716; uint32_t x717; uint32_t x718; uint32_t x719; uint32_t x720; uint32_t x721; uint32_t x722; uint32_t x723; uint32_t x724; uint32_t x725; uint32_t x726; uint32_t x727; uint32_t x728; uint32_t x729; uint32_t x730; uint32_t x731; uint32_t x732; uint32_t x733; fiat_np384_uint1 x734; uint32_t x735; fiat_np384_uint1 x736; uint32_t x737; fiat_np384_uint1 x738; uint32_t x739; fiat_np384_uint1 x740; uint32_t x741; fiat_np384_uint1 x742; uint32_t x743; fiat_np384_uint1 x744; uint32_t x745; fiat_np384_uint1 x746; uint32_t x747; fiat_np384_uint1 x748; uint32_t x749; fiat_np384_uint1 x750; uint32_t x751; fiat_np384_uint1 x752; uint32_t x753; fiat_np384_uint1 x754; uint32_t x755; fiat_np384_uint1 x756; uint32_t x757; fiat_np384_uint1 x758; uint32_t x759; fiat_np384_uint1 x760; uint32_t x761; fiat_np384_uint1 x762; uint32_t x763; fiat_np384_uint1 x764; uint32_t x765; fiat_np384_uint1 x766; uint32_t x767; fiat_np384_uint1 x768; uint32_t x769; fiat_np384_uint1 x770; uint32_t x771; fiat_np384_uint1 x772; uint32_t x773; fiat_np384_uint1 x774; uint32_t x775; fiat_np384_uint1 x776; uint32_t x777; fiat_np384_uint1 x778; uint32_t x779; uint32_t x780; uint32_t x781; uint32_t x782; uint32_t x783; uint32_t x784; uint32_t x785; uint32_t x786; uint32_t x787; uint32_t x788; uint32_t x789; uint32_t x790; uint32_t x791; uint32_t x792; uint32_t x793; uint32_t x794; uint32_t x795; uint32_t x796; uint32_t x797; uint32_t x798; uint32_t x799; uint32_t x800; uint32_t x801; uint32_t x802; uint32_t x803; uint32_t x804; uint32_t x805; fiat_np384_uint1 x806; uint32_t x807; fiat_np384_uint1 x808; uint32_t x809; fiat_np384_uint1 x810; uint32_t x811; fiat_np384_uint1 x812; uint32_t x813; fiat_np384_uint1 x814; uint32_t x815; fiat_np384_uint1 x816; uint32_t x817; fiat_np384_uint1 x818; uint32_t x819; fiat_np384_uint1 x820; uint32_t x821; fiat_np384_uint1 x822; uint32_t x823; fiat_np384_uint1 x824; uint32_t x825; fiat_np384_uint1 x826; uint32_t x827; fiat_np384_uint1 x828; uint32_t x829; fiat_np384_uint1 x830; uint32_t x831; fiat_np384_uint1 x832; uint32_t x833; fiat_np384_uint1 x834; uint32_t x835; fiat_np384_uint1 x836; uint32_t x837; fiat_np384_uint1 x838; uint32_t x839; fiat_np384_uint1 x840; uint32_t x841; fiat_np384_uint1 x842; uint32_t x843; fiat_np384_uint1 x844; uint32_t x845; fiat_np384_uint1 x846; uint32_t x847; fiat_np384_uint1 x848; uint32_t x849; fiat_np384_uint1 x850; uint32_t x851; fiat_np384_uint1 x852; uint32_t x853; uint32_t x854; uint32_t x855; uint32_t x856; uint32_t x857; uint32_t x858; uint32_t x859; uint32_t x860; uint32_t x861; uint32_t x862; uint32_t x863; uint32_t x864; uint32_t x865; uint32_t x866; uint32_t x867; uint32_t x868; uint32_t x869; uint32_t x870; uint32_t x871; uint32_t x872; uint32_t x873; uint32_t x874; uint32_t x875; uint32_t x876; uint32_t x877; fiat_np384_uint1 x878; uint32_t x879; fiat_np384_uint1 x880; uint32_t x881; fiat_np384_uint1 x882; uint32_t x883; fiat_np384_uint1 x884; uint32_t x885; fiat_np384_uint1 x886; uint32_t x887; fiat_np384_uint1 x888; uint32_t x889; fiat_np384_uint1 x890; uint32_t x891; fiat_np384_uint1 x892; uint32_t x893; fiat_np384_uint1 x894; uint32_t x895; fiat_np384_uint1 x896; uint32_t x897; fiat_np384_uint1 x898; uint32_t x899; fiat_np384_uint1 x900; uint32_t x901; fiat_np384_uint1 x902; uint32_t x903; fiat_np384_uint1 x904; uint32_t x905; fiat_np384_uint1 x906; uint32_t x907; fiat_np384_uint1 x908; uint32_t x909; fiat_np384_uint1 x910; uint32_t x911; fiat_np384_uint1 x912; uint32_t x913; fiat_np384_uint1 x914; uint32_t x915; fiat_np384_uint1 x916; uint32_t x917; fiat_np384_uint1 x918; uint32_t x919; fiat_np384_uint1 x920; uint32_t x921; fiat_np384_uint1 x922; uint32_t x923; uint32_t x924; uint32_t x925; uint32_t x926; uint32_t x927; uint32_t x928; uint32_t x929; uint32_t x930; uint32_t x931; uint32_t x932; uint32_t x933; uint32_t x934; uint32_t x935; uint32_t x936; uint32_t x937; uint32_t x938; uint32_t x939; uint32_t x940; uint32_t x941; uint32_t x942; uint32_t x943; uint32_t x944; uint32_t x945; uint32_t x946; uint32_t x947; uint32_t x948; uint32_t x949; fiat_np384_uint1 x950; uint32_t x951; fiat_np384_uint1 x952; uint32_t x953; fiat_np384_uint1 x954; uint32_t x955; fiat_np384_uint1 x956; uint32_t x957; fiat_np384_uint1 x958; uint32_t x959; fiat_np384_uint1 x960; uint32_t x961; fiat_np384_uint1 x962; uint32_t x963; fiat_np384_uint1 x964; uint32_t x965; fiat_np384_uint1 x966; uint32_t x967; fiat_np384_uint1 x968; uint32_t x969; fiat_np384_uint1 x970; uint32_t x971; fiat_np384_uint1 x972; uint32_t x973; fiat_np384_uint1 x974; uint32_t x975; fiat_np384_uint1 x976; uint32_t x977; fiat_np384_uint1 x978; uint32_t x979; fiat_np384_uint1 x980; uint32_t x981; fiat_np384_uint1 x982; uint32_t x983; fiat_np384_uint1 x984; uint32_t x985; fiat_np384_uint1 x986; uint32_t x987; fiat_np384_uint1 x988; uint32_t x989; fiat_np384_uint1 x990; uint32_t x991; fiat_np384_uint1 x992; uint32_t x993; fiat_np384_uint1 x994; uint32_t x995; fiat_np384_uint1 x996; uint32_t x997; uint32_t x998; uint32_t x999; uint32_t x1000; uint32_t x1001; uint32_t x1002; uint32_t x1003; uint32_t x1004; uint32_t x1005; uint32_t x1006; uint32_t x1007; uint32_t x1008; uint32_t x1009; uint32_t x1010; uint32_t x1011; uint32_t x1012; uint32_t x1013; uint32_t x1014; uint32_t x1015; uint32_t x1016; uint32_t x1017; uint32_t x1018; uint32_t x1019; uint32_t x1020; uint32_t x1021; fiat_np384_uint1 x1022; uint32_t x1023; fiat_np384_uint1 x1024; uint32_t x1025; fiat_np384_uint1 x1026; uint32_t x1027; fiat_np384_uint1 x1028; uint32_t x1029; fiat_np384_uint1 x1030; uint32_t x1031; fiat_np384_uint1 x1032; uint32_t x1033; fiat_np384_uint1 x1034; uint32_t x1035; fiat_np384_uint1 x1036; uint32_t x1037; fiat_np384_uint1 x1038; uint32_t x1039; fiat_np384_uint1 x1040; uint32_t x1041; fiat_np384_uint1 x1042; uint32_t x1043; fiat_np384_uint1 x1044; uint32_t x1045; fiat_np384_uint1 x1046; uint32_t x1047; fiat_np384_uint1 x1048; uint32_t x1049; fiat_np384_uint1 x1050; uint32_t x1051; fiat_np384_uint1 x1052; uint32_t x1053; fiat_np384_uint1 x1054; uint32_t x1055; fiat_np384_uint1 x1056; uint32_t x1057; fiat_np384_uint1 x1058; uint32_t x1059; fiat_np384_uint1 x1060; uint32_t x1061; fiat_np384_uint1 x1062; uint32_t x1063; fiat_np384_uint1 x1064; uint32_t x1065; fiat_np384_uint1 x1066; uint32_t x1067; uint32_t x1068; uint32_t x1069; uint32_t x1070; uint32_t x1071; uint32_t x1072; uint32_t x1073; uint32_t x1074; uint32_t x1075; uint32_t x1076; uint32_t x1077; uint32_t x1078; uint32_t x1079; uint32_t x1080; uint32_t x1081; uint32_t x1082; uint32_t x1083; uint32_t x1084; uint32_t x1085; uint32_t x1086; uint32_t x1087; uint32_t x1088; uint32_t x1089; uint32_t x1090; uint32_t x1091; uint32_t x1092; uint32_t x1093; fiat_np384_uint1 x1094; uint32_t x1095; fiat_np384_uint1 x1096; uint32_t x1097; fiat_np384_uint1 x1098; uint32_t x1099; fiat_np384_uint1 x1100; uint32_t x1101; fiat_np384_uint1 x1102; uint32_t x1103; fiat_np384_uint1 x1104; uint32_t x1105; fiat_np384_uint1 x1106; uint32_t x1107; fiat_np384_uint1 x1108; uint32_t x1109; fiat_np384_uint1 x1110; uint32_t x1111; fiat_np384_uint1 x1112; uint32_t x1113; fiat_np384_uint1 x1114; uint32_t x1115; fiat_np384_uint1 x1116; uint32_t x1117; fiat_np384_uint1 x1118; uint32_t x1119; fiat_np384_uint1 x1120; uint32_t x1121; fiat_np384_uint1 x1122; uint32_t x1123; fiat_np384_uint1 x1124; uint32_t x1125; fiat_np384_uint1 x1126; uint32_t x1127; fiat_np384_uint1 x1128; uint32_t x1129; fiat_np384_uint1 x1130; uint32_t x1131; fiat_np384_uint1 x1132; uint32_t x1133; fiat_np384_uint1 x1134; uint32_t x1135; fiat_np384_uint1 x1136; uint32_t x1137; fiat_np384_uint1 x1138; uint32_t x1139; fiat_np384_uint1 x1140; uint32_t x1141; uint32_t x1142; uint32_t x1143; uint32_t x1144; uint32_t x1145; uint32_t x1146; uint32_t x1147; uint32_t x1148; uint32_t x1149; uint32_t x1150; uint32_t x1151; uint32_t x1152; uint32_t x1153; uint32_t x1154; uint32_t x1155; uint32_t x1156; uint32_t x1157; uint32_t x1158; uint32_t x1159; uint32_t x1160; uint32_t x1161; uint32_t x1162; uint32_t x1163; uint32_t x1164; uint32_t x1165; fiat_np384_uint1 x1166; uint32_t x1167; fiat_np384_uint1 x1168; uint32_t x1169; fiat_np384_uint1 x1170; uint32_t x1171; fiat_np384_uint1 x1172; uint32_t x1173; fiat_np384_uint1 x1174; uint32_t x1175; fiat_np384_uint1 x1176; uint32_t x1177; fiat_np384_uint1 x1178; uint32_t x1179; fiat_np384_uint1 x1180; uint32_t x1181; fiat_np384_uint1 x1182; uint32_t x1183; fiat_np384_uint1 x1184; uint32_t x1185; fiat_np384_uint1 x1186; uint32_t x1187; fiat_np384_uint1 x1188; uint32_t x1189; fiat_np384_uint1 x1190; uint32_t x1191; fiat_np384_uint1 x1192; uint32_t x1193; fiat_np384_uint1 x1194; uint32_t x1195; fiat_np384_uint1 x1196; uint32_t x1197; fiat_np384_uint1 x1198; uint32_t x1199; fiat_np384_uint1 x1200; uint32_t x1201; fiat_np384_uint1 x1202; uint32_t x1203; fiat_np384_uint1 x1204; uint32_t x1205; fiat_np384_uint1 x1206; uint32_t x1207; fiat_np384_uint1 x1208; uint32_t x1209; fiat_np384_uint1 x1210; uint32_t x1211; uint32_t x1212; uint32_t x1213; uint32_t x1214; uint32_t x1215; uint32_t x1216; uint32_t x1217; uint32_t x1218; uint32_t x1219; uint32_t x1220; uint32_t x1221; uint32_t x1222; uint32_t x1223; uint32_t x1224; uint32_t x1225; uint32_t x1226; uint32_t x1227; uint32_t x1228; uint32_t x1229; uint32_t x1230; uint32_t x1231; uint32_t x1232; uint32_t x1233; uint32_t x1234; uint32_t x1235; uint32_t x1236; uint32_t x1237; fiat_np384_uint1 x1238; uint32_t x1239; fiat_np384_uint1 x1240; uint32_t x1241; fiat_np384_uint1 x1242; uint32_t x1243; fiat_np384_uint1 x1244; uint32_t x1245; fiat_np384_uint1 x1246; uint32_t x1247; fiat_np384_uint1 x1248; uint32_t x1249; fiat_np384_uint1 x1250; uint32_t x1251; fiat_np384_uint1 x1252; uint32_t x1253; fiat_np384_uint1 x1254; uint32_t x1255; fiat_np384_uint1 x1256; uint32_t x1257; fiat_np384_uint1 x1258; uint32_t x1259; fiat_np384_uint1 x1260; uint32_t x1261; fiat_np384_uint1 x1262; uint32_t x1263; fiat_np384_uint1 x1264; uint32_t x1265; fiat_np384_uint1 x1266; uint32_t x1267; fiat_np384_uint1 x1268; uint32_t x1269; fiat_np384_uint1 x1270; uint32_t x1271; fiat_np384_uint1 x1272; uint32_t x1273; fiat_np384_uint1 x1274; uint32_t x1275; fiat_np384_uint1 x1276; uint32_t x1277; fiat_np384_uint1 x1278; uint32_t x1279; fiat_np384_uint1 x1280; uint32_t x1281; fiat_np384_uint1 x1282; uint32_t x1283; fiat_np384_uint1 x1284; uint32_t x1285; uint32_t x1286; uint32_t x1287; uint32_t x1288; uint32_t x1289; uint32_t x1290; uint32_t x1291; uint32_t x1292; uint32_t x1293; uint32_t x1294; uint32_t x1295; uint32_t x1296; uint32_t x1297; uint32_t x1298; uint32_t x1299; uint32_t x1300; uint32_t x1301; uint32_t x1302; uint32_t x1303; uint32_t x1304; uint32_t x1305; uint32_t x1306; uint32_t x1307; uint32_t x1308; uint32_t x1309; fiat_np384_uint1 x1310; uint32_t x1311; fiat_np384_uint1 x1312; uint32_t x1313; fiat_np384_uint1 x1314; uint32_t x1315; fiat_np384_uint1 x1316; uint32_t x1317; fiat_np384_uint1 x1318; uint32_t x1319; fiat_np384_uint1 x1320; uint32_t x1321; fiat_np384_uint1 x1322; uint32_t x1323; fiat_np384_uint1 x1324; uint32_t x1325; fiat_np384_uint1 x1326; uint32_t x1327; fiat_np384_uint1 x1328; uint32_t x1329; fiat_np384_uint1 x1330; uint32_t x1331; fiat_np384_uint1 x1332; uint32_t x1333; fiat_np384_uint1 x1334; uint32_t x1335; fiat_np384_uint1 x1336; uint32_t x1337; fiat_np384_uint1 x1338; uint32_t x1339; fiat_np384_uint1 x1340; uint32_t x1341; fiat_np384_uint1 x1342; uint32_t x1343; fiat_np384_uint1 x1344; uint32_t x1345; fiat_np384_uint1 x1346; uint32_t x1347; fiat_np384_uint1 x1348; uint32_t x1349; fiat_np384_uint1 x1350; uint32_t x1351; fiat_np384_uint1 x1352; uint32_t x1353; fiat_np384_uint1 x1354; uint32_t x1355; uint32_t x1356; uint32_t x1357; uint32_t x1358; uint32_t x1359; uint32_t x1360; uint32_t x1361; uint32_t x1362; uint32_t x1363; uint32_t x1364; uint32_t x1365; uint32_t x1366; uint32_t x1367; uint32_t x1368; uint32_t x1369; uint32_t x1370; uint32_t x1371; uint32_t x1372; uint32_t x1373; uint32_t x1374; uint32_t x1375; uint32_t x1376; uint32_t x1377; uint32_t x1378; uint32_t x1379; uint32_t x1380; uint32_t x1381; fiat_np384_uint1 x1382; uint32_t x1383; fiat_np384_uint1 x1384; uint32_t x1385; fiat_np384_uint1 x1386; uint32_t x1387; fiat_np384_uint1 x1388; uint32_t x1389; fiat_np384_uint1 x1390; uint32_t x1391; fiat_np384_uint1 x1392; uint32_t x1393; fiat_np384_uint1 x1394; uint32_t x1395; fiat_np384_uint1 x1396; uint32_t x1397; fiat_np384_uint1 x1398; uint32_t x1399; fiat_np384_uint1 x1400; uint32_t x1401; fiat_np384_uint1 x1402; uint32_t x1403; fiat_np384_uint1 x1404; uint32_t x1405; fiat_np384_uint1 x1406; uint32_t x1407; fiat_np384_uint1 x1408; uint32_t x1409; fiat_np384_uint1 x1410; uint32_t x1411; fiat_np384_uint1 x1412; uint32_t x1413; fiat_np384_uint1 x1414; uint32_t x1415; fiat_np384_uint1 x1416; uint32_t x1417; fiat_np384_uint1 x1418; uint32_t x1419; fiat_np384_uint1 x1420; uint32_t x1421; fiat_np384_uint1 x1422; uint32_t x1423; fiat_np384_uint1 x1424; uint32_t x1425; fiat_np384_uint1 x1426; uint32_t x1427; fiat_np384_uint1 x1428; uint32_t x1429; uint32_t x1430; uint32_t x1431; uint32_t x1432; uint32_t x1433; uint32_t x1434; uint32_t x1435; uint32_t x1436; uint32_t x1437; uint32_t x1438; uint32_t x1439; uint32_t x1440; uint32_t x1441; uint32_t x1442; uint32_t x1443; uint32_t x1444; uint32_t x1445; uint32_t x1446; uint32_t x1447; uint32_t x1448; uint32_t x1449; uint32_t x1450; uint32_t x1451; uint32_t x1452; uint32_t x1453; fiat_np384_uint1 x1454; uint32_t x1455; fiat_np384_uint1 x1456; uint32_t x1457; fiat_np384_uint1 x1458; uint32_t x1459; fiat_np384_uint1 x1460; uint32_t x1461; fiat_np384_uint1 x1462; uint32_t x1463; fiat_np384_uint1 x1464; uint32_t x1465; fiat_np384_uint1 x1466; uint32_t x1467; fiat_np384_uint1 x1468; uint32_t x1469; fiat_np384_uint1 x1470; uint32_t x1471; fiat_np384_uint1 x1472; uint32_t x1473; fiat_np384_uint1 x1474; uint32_t x1475; fiat_np384_uint1 x1476; uint32_t x1477; fiat_np384_uint1 x1478; uint32_t x1479; fiat_np384_uint1 x1480; uint32_t x1481; fiat_np384_uint1 x1482; uint32_t x1483; fiat_np384_uint1 x1484; uint32_t x1485; fiat_np384_uint1 x1486; uint32_t x1487; fiat_np384_uint1 x1488; uint32_t x1489; fiat_np384_uint1 x1490; uint32_t x1491; fiat_np384_uint1 x1492; uint32_t x1493; fiat_np384_uint1 x1494; uint32_t x1495; fiat_np384_uint1 x1496; uint32_t x1497; fiat_np384_uint1 x1498; uint32_t x1499; uint32_t x1500; uint32_t x1501; uint32_t x1502; uint32_t x1503; uint32_t x1504; uint32_t x1505; uint32_t x1506; uint32_t x1507; uint32_t x1508; uint32_t x1509; uint32_t x1510; uint32_t x1511; uint32_t x1512; uint32_t x1513; uint32_t x1514; uint32_t x1515; uint32_t x1516; uint32_t x1517; uint32_t x1518; uint32_t x1519; uint32_t x1520; uint32_t x1521; uint32_t x1522; uint32_t x1523; uint32_t x1524; uint32_t x1525; fiat_np384_uint1 x1526; uint32_t x1527; fiat_np384_uint1 x1528; uint32_t x1529; fiat_np384_uint1 x1530; uint32_t x1531; fiat_np384_uint1 x1532; uint32_t x1533; fiat_np384_uint1 x1534; uint32_t x1535; fiat_np384_uint1 x1536; uint32_t x1537; fiat_np384_uint1 x1538; uint32_t x1539; fiat_np384_uint1 x1540; uint32_t x1541; fiat_np384_uint1 x1542; uint32_t x1543; fiat_np384_uint1 x1544; uint32_t x1545; fiat_np384_uint1 x1546; uint32_t x1547; fiat_np384_uint1 x1548; uint32_t x1549; fiat_np384_uint1 x1550; uint32_t x1551; fiat_np384_uint1 x1552; uint32_t x1553; fiat_np384_uint1 x1554; uint32_t x1555; fiat_np384_uint1 x1556; uint32_t x1557; fiat_np384_uint1 x1558; uint32_t x1559; fiat_np384_uint1 x1560; uint32_t x1561; fiat_np384_uint1 x1562; uint32_t x1563; fiat_np384_uint1 x1564; uint32_t x1565; fiat_np384_uint1 x1566; uint32_t x1567; fiat_np384_uint1 x1568; uint32_t x1569; fiat_np384_uint1 x1570; uint32_t x1571; fiat_np384_uint1 x1572; uint32_t x1573; uint32_t x1574; uint32_t x1575; uint32_t x1576; uint32_t x1577; uint32_t x1578; uint32_t x1579; uint32_t x1580; uint32_t x1581; uint32_t x1582; uint32_t x1583; uint32_t x1584; uint32_t x1585; uint32_t x1586; uint32_t x1587; uint32_t x1588; uint32_t x1589; uint32_t x1590; uint32_t x1591; uint32_t x1592; uint32_t x1593; uint32_t x1594; uint32_t x1595; uint32_t x1596; uint32_t x1597; fiat_np384_uint1 x1598; uint32_t x1599; fiat_np384_uint1 x1600; uint32_t x1601; fiat_np384_uint1 x1602; uint32_t x1603; fiat_np384_uint1 x1604; uint32_t x1605; fiat_np384_uint1 x1606; uint32_t x1607; fiat_np384_uint1 x1608; uint32_t x1609; fiat_np384_uint1 x1610; uint32_t x1611; fiat_np384_uint1 x1612; uint32_t x1613; fiat_np384_uint1 x1614; uint32_t x1615; fiat_np384_uint1 x1616; uint32_t x1617; fiat_np384_uint1 x1618; uint32_t x1619; fiat_np384_uint1 x1620; uint32_t x1621; fiat_np384_uint1 x1622; uint32_t x1623; fiat_np384_uint1 x1624; uint32_t x1625; fiat_np384_uint1 x1626; uint32_t x1627; fiat_np384_uint1 x1628; uint32_t x1629; fiat_np384_uint1 x1630; uint32_t x1631; fiat_np384_uint1 x1632; uint32_t x1633; fiat_np384_uint1 x1634; uint32_t x1635; fiat_np384_uint1 x1636; uint32_t x1637; fiat_np384_uint1 x1638; uint32_t x1639; fiat_np384_uint1 x1640; uint32_t x1641; fiat_np384_uint1 x1642; uint32_t x1643; uint32_t x1644; uint32_t x1645; uint32_t x1646; uint32_t x1647; uint32_t x1648; uint32_t x1649; uint32_t x1650; uint32_t x1651; uint32_t x1652; uint32_t x1653; uint32_t x1654; uint32_t x1655; uint32_t x1656; uint32_t x1657; uint32_t x1658; uint32_t x1659; uint32_t x1660; uint32_t x1661; uint32_t x1662; uint32_t x1663; uint32_t x1664; uint32_t x1665; uint32_t x1666; uint32_t x1667; uint32_t x1668; uint32_t x1669; fiat_np384_uint1 x1670; uint32_t x1671; fiat_np384_uint1 x1672; uint32_t x1673; fiat_np384_uint1 x1674; uint32_t x1675; fiat_np384_uint1 x1676; uint32_t x1677; fiat_np384_uint1 x1678; uint32_t x1679; fiat_np384_uint1 x1680; uint32_t x1681; fiat_np384_uint1 x1682; uint32_t x1683; fiat_np384_uint1 x1684; uint32_t x1685; fiat_np384_uint1 x1686; uint32_t x1687; fiat_np384_uint1 x1688; uint32_t x1689; fiat_np384_uint1 x1690; uint32_t x1691; fiat_np384_uint1 x1692; uint32_t x1693; fiat_np384_uint1 x1694; uint32_t x1695; fiat_np384_uint1 x1696; uint32_t x1697; fiat_np384_uint1 x1698; uint32_t x1699; fiat_np384_uint1 x1700; uint32_t x1701; fiat_np384_uint1 x1702; uint32_t x1703; fiat_np384_uint1 x1704; uint32_t x1705; fiat_np384_uint1 x1706; uint32_t x1707; fiat_np384_uint1 x1708; uint32_t x1709; fiat_np384_uint1 x1710; uint32_t x1711; fiat_np384_uint1 x1712; uint32_t x1713; fiat_np384_uint1 x1714; uint32_t x1715; fiat_np384_uint1 x1716; uint32_t x1717; fiat_np384_uint1 x1718; uint32_t x1719; fiat_np384_uint1 x1720; uint32_t x1721; fiat_np384_uint1 x1722; uint32_t x1723; fiat_np384_uint1 x1724; uint32_t x1725; fiat_np384_uint1 x1726; uint32_t x1727; fiat_np384_uint1 x1728; uint32_t x1729; fiat_np384_uint1 x1730; uint32_t x1731; fiat_np384_uint1 x1732; uint32_t x1733; fiat_np384_uint1 x1734; uint32_t x1735; fiat_np384_uint1 x1736; uint32_t x1737; fiat_np384_uint1 x1738; uint32_t x1739; fiat_np384_uint1 x1740; uint32_t x1741; fiat_np384_uint1 x1742; uint32_t x1743; uint32_t x1744; uint32_t x1745; uint32_t x1746; uint32_t x1747; uint32_t x1748; uint32_t x1749; uint32_t x1750; uint32_t x1751; uint32_t x1752; uint32_t x1753; uint32_t x1754; x1 = (arg1[1]); x2 = (arg1[2]); x3 = (arg1[3]); x4 = (arg1[4]); x5 = (arg1[5]); x6 = (arg1[6]); x7 = (arg1[7]); x8 = (arg1[8]); x9 = (arg1[9]); x10 = (arg1[10]); x11 = (arg1[11]); x12 = (arg1[0]); fiat_np384_mulx_u32(&x13, &x14, x12, UINT32_C(0xc84ee01)); fiat_np384_mulx_u32(&x15, &x16, x12, UINT32_C(0x2b39bf21)); fiat_np384_mulx_u32(&x17, &x18, x12, UINT32_C(0x3fb05b7a)); fiat_np384_mulx_u32(&x19, &x20, x12, UINT32_C(0x28266895)); fiat_np384_mulx_u32(&x21, &x22, x12, UINT32_C(0xd40d4917)); fiat_np384_mulx_u32(&x23, &x24, x12, UINT32_C(0x4aab1cc5)); fiat_np384_mulx_u32(&x25, &x26, x12, UINT32_C(0xbc3e483a)); fiat_np384_mulx_u32(&x27, &x28, x12, UINT32_C(0xfcb82947)); fiat_np384_mulx_u32(&x29, &x30, x12, UINT32_C(0xff3d81e5)); fiat_np384_mulx_u32(&x31, &x32, x12, UINT32_C(0xdf1aa419)); fiat_np384_mulx_u32(&x33, &x34, x12, UINT32_C(0x2d319b24)); fiat_np384_mulx_u32(&x35, &x36, x12, UINT32_C(0x19b409a9)); fiat_np384_addcarryx_u32(&x37, &x38, 0x0, x36, x33); fiat_np384_addcarryx_u32(&x39, &x40, x38, x34, x31); fiat_np384_addcarryx_u32(&x41, &x42, x40, x32, x29); fiat_np384_addcarryx_u32(&x43, &x44, x42, x30, x27); fiat_np384_addcarryx_u32(&x45, &x46, x44, x28, x25); fiat_np384_addcarryx_u32(&x47, &x48, x46, x26, x23); fiat_np384_addcarryx_u32(&x49, &x50, x48, x24, x21); fiat_np384_addcarryx_u32(&x51, &x52, x50, x22, x19); fiat_np384_addcarryx_u32(&x53, &x54, x52, x20, x17); fiat_np384_addcarryx_u32(&x55, &x56, x54, x18, x15); fiat_np384_addcarryx_u32(&x57, &x58, x56, x16, x13); fiat_np384_mulx_u32(&x59, &x60, x35, UINT32_C(0xe88fdc45)); fiat_np384_mulx_u32(&x61, &x62, x59, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x63, &x64, x59, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x65, &x66, x59, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x67, &x68, x59, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x69, &x70, x59, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x71, &x72, x59, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x73, &x74, x59, UINT32_C(0xc7634d81)); fiat_np384_mulx_u32(&x75, &x76, x59, UINT32_C(0xf4372ddf)); fiat_np384_mulx_u32(&x77, &x78, x59, UINT32_C(0x581a0db2)); fiat_np384_mulx_u32(&x79, &x80, x59, UINT32_C(0x48b0a77a)); fiat_np384_mulx_u32(&x81, &x82, x59, UINT32_C(0xecec196a)); fiat_np384_mulx_u32(&x83, &x84, x59, UINT32_C(0xccc52973)); fiat_np384_addcarryx_u32(&x85, &x86, 0x0, x84, x81); fiat_np384_addcarryx_u32(&x87, &x88, x86, x82, x79); fiat_np384_addcarryx_u32(&x89, &x90, x88, x80, x77); fiat_np384_addcarryx_u32(&x91, &x92, x90, x78, x75); fiat_np384_addcarryx_u32(&x93, &x94, x92, x76, x73); fiat_np384_addcarryx_u32(&x95, &x96, x94, x74, x71); fiat_np384_addcarryx_u32(&x97, &x98, x96, x72, x69); fiat_np384_addcarryx_u32(&x99, &x100, x98, x70, x67); fiat_np384_addcarryx_u32(&x101, &x102, x100, x68, x65); fiat_np384_addcarryx_u32(&x103, &x104, x102, x66, x63); fiat_np384_addcarryx_u32(&x105, &x106, x104, x64, x61); fiat_np384_addcarryx_u32(&x107, &x108, 0x0, x35, x83); fiat_np384_addcarryx_u32(&x109, &x110, x108, x37, x85); fiat_np384_addcarryx_u32(&x111, &x112, x110, x39, x87); fiat_np384_addcarryx_u32(&x113, &x114, x112, x41, x89); fiat_np384_addcarryx_u32(&x115, &x116, x114, x43, x91); fiat_np384_addcarryx_u32(&x117, &x118, x116, x45, x93); fiat_np384_addcarryx_u32(&x119, &x120, x118, x47, x95); fiat_np384_addcarryx_u32(&x121, &x122, x120, x49, x97); fiat_np384_addcarryx_u32(&x123, &x124, x122, x51, x99); fiat_np384_addcarryx_u32(&x125, &x126, x124, x53, x101); fiat_np384_addcarryx_u32(&x127, &x128, x126, x55, x103); fiat_np384_addcarryx_u32(&x129, &x130, x128, x57, x105); fiat_np384_addcarryx_u32(&x131, &x132, x130, (x58 + x14), (x106 + x62)); fiat_np384_mulx_u32(&x133, &x134, x1, UINT32_C(0xc84ee01)); fiat_np384_mulx_u32(&x135, &x136, x1, UINT32_C(0x2b39bf21)); fiat_np384_mulx_u32(&x137, &x138, x1, UINT32_C(0x3fb05b7a)); fiat_np384_mulx_u32(&x139, &x140, x1, UINT32_C(0x28266895)); fiat_np384_mulx_u32(&x141, &x142, x1, UINT32_C(0xd40d4917)); fiat_np384_mulx_u32(&x143, &x144, x1, UINT32_C(0x4aab1cc5)); fiat_np384_mulx_u32(&x145, &x146, x1, UINT32_C(0xbc3e483a)); fiat_np384_mulx_u32(&x147, &x148, x1, UINT32_C(0xfcb82947)); fiat_np384_mulx_u32(&x149, &x150, x1, UINT32_C(0xff3d81e5)); fiat_np384_mulx_u32(&x151, &x152, x1, UINT32_C(0xdf1aa419)); fiat_np384_mulx_u32(&x153, &x154, x1, UINT32_C(0x2d319b24)); fiat_np384_mulx_u32(&x155, &x156, x1, UINT32_C(0x19b409a9)); fiat_np384_addcarryx_u32(&x157, &x158, 0x0, x156, x153); fiat_np384_addcarryx_u32(&x159, &x160, x158, x154, x151); fiat_np384_addcarryx_u32(&x161, &x162, x160, x152, x149); fiat_np384_addcarryx_u32(&x163, &x164, x162, x150, x147); fiat_np384_addcarryx_u32(&x165, &x166, x164, x148, x145); fiat_np384_addcarryx_u32(&x167, &x168, x166, x146, x143); fiat_np384_addcarryx_u32(&x169, &x170, x168, x144, x141); fiat_np384_addcarryx_u32(&x171, &x172, x170, x142, x139); fiat_np384_addcarryx_u32(&x173, &x174, x172, x140, x137); fiat_np384_addcarryx_u32(&x175, &x176, x174, x138, x135); fiat_np384_addcarryx_u32(&x177, &x178, x176, x136, x133); fiat_np384_addcarryx_u32(&x179, &x180, 0x0, x109, x155); fiat_np384_addcarryx_u32(&x181, &x182, x180, x111, x157); fiat_np384_addcarryx_u32(&x183, &x184, x182, x113, x159); fiat_np384_addcarryx_u32(&x185, &x186, x184, x115, x161); fiat_np384_addcarryx_u32(&x187, &x188, x186, x117, x163); fiat_np384_addcarryx_u32(&x189, &x190, x188, x119, x165); fiat_np384_addcarryx_u32(&x191, &x192, x190, x121, x167); fiat_np384_addcarryx_u32(&x193, &x194, x192, x123, x169); fiat_np384_addcarryx_u32(&x195, &x196, x194, x125, x171); fiat_np384_addcarryx_u32(&x197, &x198, x196, x127, x173); fiat_np384_addcarryx_u32(&x199, &x200, x198, x129, x175); fiat_np384_addcarryx_u32(&x201, &x202, x200, x131, x177); fiat_np384_mulx_u32(&x203, &x204, x179, UINT32_C(0xe88fdc45)); fiat_np384_mulx_u32(&x205, &x206, x203, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x207, &x208, x203, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x209, &x210, x203, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x211, &x212, x203, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x213, &x214, x203, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x215, &x216, x203, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x217, &x218, x203, UINT32_C(0xc7634d81)); fiat_np384_mulx_u32(&x219, &x220, x203, UINT32_C(0xf4372ddf)); fiat_np384_mulx_u32(&x221, &x222, x203, UINT32_C(0x581a0db2)); fiat_np384_mulx_u32(&x223, &x224, x203, UINT32_C(0x48b0a77a)); fiat_np384_mulx_u32(&x225, &x226, x203, UINT32_C(0xecec196a)); fiat_np384_mulx_u32(&x227, &x228, x203, UINT32_C(0xccc52973)); fiat_np384_addcarryx_u32(&x229, &x230, 0x0, x228, x225); fiat_np384_addcarryx_u32(&x231, &x232, x230, x226, x223); fiat_np384_addcarryx_u32(&x233, &x234, x232, x224, x221); fiat_np384_addcarryx_u32(&x235, &x236, x234, x222, x219); fiat_np384_addcarryx_u32(&x237, &x238, x236, x220, x217); fiat_np384_addcarryx_u32(&x239, &x240, x238, x218, x215); fiat_np384_addcarryx_u32(&x241, &x242, x240, x216, x213); fiat_np384_addcarryx_u32(&x243, &x244, x242, x214, x211); fiat_np384_addcarryx_u32(&x245, &x246, x244, x212, x209); fiat_np384_addcarryx_u32(&x247, &x248, x246, x210, x207); fiat_np384_addcarryx_u32(&x249, &x250, x248, x208, x205); fiat_np384_addcarryx_u32(&x251, &x252, 0x0, x179, x227); fiat_np384_addcarryx_u32(&x253, &x254, x252, x181, x229); fiat_np384_addcarryx_u32(&x255, &x256, x254, x183, x231); fiat_np384_addcarryx_u32(&x257, &x258, x256, x185, x233); fiat_np384_addcarryx_u32(&x259, &x260, x258, x187, x235); fiat_np384_addcarryx_u32(&x261, &x262, x260, x189, x237); fiat_np384_addcarryx_u32(&x263, &x264, x262, x191, x239); fiat_np384_addcarryx_u32(&x265, &x266, x264, x193, x241); fiat_np384_addcarryx_u32(&x267, &x268, x266, x195, x243); fiat_np384_addcarryx_u32(&x269, &x270, x268, x197, x245); fiat_np384_addcarryx_u32(&x271, &x272, x270, x199, x247); fiat_np384_addcarryx_u32(&x273, &x274, x272, x201, x249); fiat_np384_addcarryx_u32(&x275, &x276, x274, (((uint32_t)x202 + x132) + (x178 + x134)), (x250 + x206)); fiat_np384_mulx_u32(&x277, &x278, x2, UINT32_C(0xc84ee01)); fiat_np384_mulx_u32(&x279, &x280, x2, UINT32_C(0x2b39bf21)); fiat_np384_mulx_u32(&x281, &x282, x2, UINT32_C(0x3fb05b7a)); fiat_np384_mulx_u32(&x283, &x284, x2, UINT32_C(0x28266895)); fiat_np384_mulx_u32(&x285, &x286, x2, UINT32_C(0xd40d4917)); fiat_np384_mulx_u32(&x287, &x288, x2, UINT32_C(0x4aab1cc5)); fiat_np384_mulx_u32(&x289, &x290, x2, UINT32_C(0xbc3e483a)); fiat_np384_mulx_u32(&x291, &x292, x2, UINT32_C(0xfcb82947)); fiat_np384_mulx_u32(&x293, &x294, x2, UINT32_C(0xff3d81e5)); fiat_np384_mulx_u32(&x295, &x296, x2, UINT32_C(0xdf1aa419)); fiat_np384_mulx_u32(&x297, &x298, x2, UINT32_C(0x2d319b24)); fiat_np384_mulx_u32(&x299, &x300, x2, UINT32_C(0x19b409a9)); fiat_np384_addcarryx_u32(&x301, &x302, 0x0, x300, x297); fiat_np384_addcarryx_u32(&x303, &x304, x302, x298, x295); fiat_np384_addcarryx_u32(&x305, &x306, x304, x296, x293); fiat_np384_addcarryx_u32(&x307, &x308, x306, x294, x291); fiat_np384_addcarryx_u32(&x309, &x310, x308, x292, x289); fiat_np384_addcarryx_u32(&x311, &x312, x310, x290, x287); fiat_np384_addcarryx_u32(&x313, &x314, x312, x288, x285); fiat_np384_addcarryx_u32(&x315, &x316, x314, x286, x283); fiat_np384_addcarryx_u32(&x317, &x318, x316, x284, x281); fiat_np384_addcarryx_u32(&x319, &x320, x318, x282, x279); fiat_np384_addcarryx_u32(&x321, &x322, x320, x280, x277); fiat_np384_addcarryx_u32(&x323, &x324, 0x0, x253, x299); fiat_np384_addcarryx_u32(&x325, &x326, x324, x255, x301); fiat_np384_addcarryx_u32(&x327, &x328, x326, x257, x303); fiat_np384_addcarryx_u32(&x329, &x330, x328, x259, x305); fiat_np384_addcarryx_u32(&x331, &x332, x330, x261, x307); fiat_np384_addcarryx_u32(&x333, &x334, x332, x263, x309); fiat_np384_addcarryx_u32(&x335, &x336, x334, x265, x311); fiat_np384_addcarryx_u32(&x337, &x338, x336, x267, x313); fiat_np384_addcarryx_u32(&x339, &x340, x338, x269, x315); fiat_np384_addcarryx_u32(&x341, &x342, x340, x271, x317); fiat_np384_addcarryx_u32(&x343, &x344, x342, x273, x319); fiat_np384_addcarryx_u32(&x345, &x346, x344, x275, x321); fiat_np384_mulx_u32(&x347, &x348, x323, UINT32_C(0xe88fdc45)); fiat_np384_mulx_u32(&x349, &x350, x347, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x351, &x352, x347, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x353, &x354, x347, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x355, &x356, x347, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x357, &x358, x347, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x359, &x360, x347, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x361, &x362, x347, UINT32_C(0xc7634d81)); fiat_np384_mulx_u32(&x363, &x364, x347, UINT32_C(0xf4372ddf)); fiat_np384_mulx_u32(&x365, &x366, x347, UINT32_C(0x581a0db2)); fiat_np384_mulx_u32(&x367, &x368, x347, UINT32_C(0x48b0a77a)); fiat_np384_mulx_u32(&x369, &x370, x347, UINT32_C(0xecec196a)); fiat_np384_mulx_u32(&x371, &x372, x347, UINT32_C(0xccc52973)); fiat_np384_addcarryx_u32(&x373, &x374, 0x0, x372, x369); fiat_np384_addcarryx_u32(&x375, &x376, x374, x370, x367); fiat_np384_addcarryx_u32(&x377, &x378, x376, x368, x365); fiat_np384_addcarryx_u32(&x379, &x380, x378, x366, x363); fiat_np384_addcarryx_u32(&x381, &x382, x380, x364, x361); fiat_np384_addcarryx_u32(&x383, &x384, x382, x362, x359); fiat_np384_addcarryx_u32(&x385, &x386, x384, x360, x357); fiat_np384_addcarryx_u32(&x387, &x388, x386, x358, x355); fiat_np384_addcarryx_u32(&x389, &x390, x388, x356, x353); fiat_np384_addcarryx_u32(&x391, &x392, x390, x354, x351); fiat_np384_addcarryx_u32(&x393, &x394, x392, x352, x349); fiat_np384_addcarryx_u32(&x395, &x396, 0x0, x323, x371); fiat_np384_addcarryx_u32(&x397, &x398, x396, x325, x373); fiat_np384_addcarryx_u32(&x399, &x400, x398, x327, x375); fiat_np384_addcarryx_u32(&x401, &x402, x400, x329, x377); fiat_np384_addcarryx_u32(&x403, &x404, x402, x331, x379); fiat_np384_addcarryx_u32(&x405, &x406, x404, x333, x381); fiat_np384_addcarryx_u32(&x407, &x408, x406, x335, x383); fiat_np384_addcarryx_u32(&x409, &x410, x408, x337, x385); fiat_np384_addcarryx_u32(&x411, &x412, x410, x339, x387); fiat_np384_addcarryx_u32(&x413, &x414, x412, x341, x389); fiat_np384_addcarryx_u32(&x415, &x416, x414, x343, x391); fiat_np384_addcarryx_u32(&x417, &x418, x416, x345, x393); fiat_np384_addcarryx_u32(&x419, &x420, x418, (((uint32_t)x346 + x276) + (x322 + x278)), (x394 + x350)); fiat_np384_mulx_u32(&x421, &x422, x3, UINT32_C(0xc84ee01)); fiat_np384_mulx_u32(&x423, &x424, x3, UINT32_C(0x2b39bf21)); fiat_np384_mulx_u32(&x425, &x426, x3, UINT32_C(0x3fb05b7a)); fiat_np384_mulx_u32(&x427, &x428, x3, UINT32_C(0x28266895)); fiat_np384_mulx_u32(&x429, &x430, x3, UINT32_C(0xd40d4917)); fiat_np384_mulx_u32(&x431, &x432, x3, UINT32_C(0x4aab1cc5)); fiat_np384_mulx_u32(&x433, &x434, x3, UINT32_C(0xbc3e483a)); fiat_np384_mulx_u32(&x435, &x436, x3, UINT32_C(0xfcb82947)); fiat_np384_mulx_u32(&x437, &x438, x3, UINT32_C(0xff3d81e5)); fiat_np384_mulx_u32(&x439, &x440, x3, UINT32_C(0xdf1aa419)); fiat_np384_mulx_u32(&x441, &x442, x3, UINT32_C(0x2d319b24)); fiat_np384_mulx_u32(&x443, &x444, x3, UINT32_C(0x19b409a9)); fiat_np384_addcarryx_u32(&x445, &x446, 0x0, x444, x441); fiat_np384_addcarryx_u32(&x447, &x448, x446, x442, x439); fiat_np384_addcarryx_u32(&x449, &x450, x448, x440, x437); fiat_np384_addcarryx_u32(&x451, &x452, x450, x438, x435); fiat_np384_addcarryx_u32(&x453, &x454, x452, x436, x433); fiat_np384_addcarryx_u32(&x455, &x456, x454, x434, x431); fiat_np384_addcarryx_u32(&x457, &x458, x456, x432, x429); fiat_np384_addcarryx_u32(&x459, &x460, x458, x430, x427); fiat_np384_addcarryx_u32(&x461, &x462, x460, x428, x425); fiat_np384_addcarryx_u32(&x463, &x464, x462, x426, x423); fiat_np384_addcarryx_u32(&x465, &x466, x464, x424, x421); fiat_np384_addcarryx_u32(&x467, &x468, 0x0, x397, x443); fiat_np384_addcarryx_u32(&x469, &x470, x468, x399, x445); fiat_np384_addcarryx_u32(&x471, &x472, x470, x401, x447); fiat_np384_addcarryx_u32(&x473, &x474, x472, x403, x449); fiat_np384_addcarryx_u32(&x475, &x476, x474, x405, x451); fiat_np384_addcarryx_u32(&x477, &x478, x476, x407, x453); fiat_np384_addcarryx_u32(&x479, &x480, x478, x409, x455); fiat_np384_addcarryx_u32(&x481, &x482, x480, x411, x457); fiat_np384_addcarryx_u32(&x483, &x484, x482, x413, x459); fiat_np384_addcarryx_u32(&x485, &x486, x484, x415, x461); fiat_np384_addcarryx_u32(&x487, &x488, x486, x417, x463); fiat_np384_addcarryx_u32(&x489, &x490, x488, x419, x465); fiat_np384_mulx_u32(&x491, &x492, x467, UINT32_C(0xe88fdc45)); fiat_np384_mulx_u32(&x493, &x494, x491, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x495, &x496, x491, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x497, &x498, x491, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x499, &x500, x491, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x501, &x502, x491, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x503, &x504, x491, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x505, &x506, x491, UINT32_C(0xc7634d81)); fiat_np384_mulx_u32(&x507, &x508, x491, UINT32_C(0xf4372ddf)); fiat_np384_mulx_u32(&x509, &x510, x491, UINT32_C(0x581a0db2)); fiat_np384_mulx_u32(&x511, &x512, x491, UINT32_C(0x48b0a77a)); fiat_np384_mulx_u32(&x513, &x514, x491, UINT32_C(0xecec196a)); fiat_np384_mulx_u32(&x515, &x516, x491, UINT32_C(0xccc52973)); fiat_np384_addcarryx_u32(&x517, &x518, 0x0, x516, x513); fiat_np384_addcarryx_u32(&x519, &x520, x518, x514, x511); fiat_np384_addcarryx_u32(&x521, &x522, x520, x512, x509); fiat_np384_addcarryx_u32(&x523, &x524, x522, x510, x507); fiat_np384_addcarryx_u32(&x525, &x526, x524, x508, x505); fiat_np384_addcarryx_u32(&x527, &x528, x526, x506, x503); fiat_np384_addcarryx_u32(&x529, &x530, x528, x504, x501); fiat_np384_addcarryx_u32(&x531, &x532, x530, x502, x499); fiat_np384_addcarryx_u32(&x533, &x534, x532, x500, x497); fiat_np384_addcarryx_u32(&x535, &x536, x534, x498, x495); fiat_np384_addcarryx_u32(&x537, &x538, x536, x496, x493); fiat_np384_addcarryx_u32(&x539, &x540, 0x0, x467, x515); fiat_np384_addcarryx_u32(&x541, &x542, x540, x469, x517); fiat_np384_addcarryx_u32(&x543, &x544, x542, x471, x519); fiat_np384_addcarryx_u32(&x545, &x546, x544, x473, x521); fiat_np384_addcarryx_u32(&x547, &x548, x546, x475, x523); fiat_np384_addcarryx_u32(&x549, &x550, x548, x477, x525); fiat_np384_addcarryx_u32(&x551, &x552, x550, x479, x527); fiat_np384_addcarryx_u32(&x553, &x554, x552, x481, x529); fiat_np384_addcarryx_u32(&x555, &x556, x554, x483, x531); fiat_np384_addcarryx_u32(&x557, &x558, x556, x485, x533); fiat_np384_addcarryx_u32(&x559, &x560, x558, x487, x535); fiat_np384_addcarryx_u32(&x561, &x562, x560, x489, x537); fiat_np384_addcarryx_u32(&x563, &x564, x562, (((uint32_t)x490 + x420) + (x466 + x422)), (x538 + x494)); fiat_np384_mulx_u32(&x565, &x566, x4, UINT32_C(0xc84ee01)); fiat_np384_mulx_u32(&x567, &x568, x4, UINT32_C(0x2b39bf21)); fiat_np384_mulx_u32(&x569, &x570, x4, UINT32_C(0x3fb05b7a)); fiat_np384_mulx_u32(&x571, &x572, x4, UINT32_C(0x28266895)); fiat_np384_mulx_u32(&x573, &x574, x4, UINT32_C(0xd40d4917)); fiat_np384_mulx_u32(&x575, &x576, x4, UINT32_C(0x4aab1cc5)); fiat_np384_mulx_u32(&x577, &x578, x4, UINT32_C(0xbc3e483a)); fiat_np384_mulx_u32(&x579, &x580, x4, UINT32_C(0xfcb82947)); fiat_np384_mulx_u32(&x581, &x582, x4, UINT32_C(0xff3d81e5)); fiat_np384_mulx_u32(&x583, &x584, x4, UINT32_C(0xdf1aa419)); fiat_np384_mulx_u32(&x585, &x586, x4, UINT32_C(0x2d319b24)); fiat_np384_mulx_u32(&x587, &x588, x4, UINT32_C(0x19b409a9)); fiat_np384_addcarryx_u32(&x589, &x590, 0x0, x588, x585); fiat_np384_addcarryx_u32(&x591, &x592, x590, x586, x583); fiat_np384_addcarryx_u32(&x593, &x594, x592, x584, x581); fiat_np384_addcarryx_u32(&x595, &x596, x594, x582, x579); fiat_np384_addcarryx_u32(&x597, &x598, x596, x580, x577); fiat_np384_addcarryx_u32(&x599, &x600, x598, x578, x575); fiat_np384_addcarryx_u32(&x601, &x602, x600, x576, x573); fiat_np384_addcarryx_u32(&x603, &x604, x602, x574, x571); fiat_np384_addcarryx_u32(&x605, &x606, x604, x572, x569); fiat_np384_addcarryx_u32(&x607, &x608, x606, x570, x567); fiat_np384_addcarryx_u32(&x609, &x610, x608, x568, x565); fiat_np384_addcarryx_u32(&x611, &x612, 0x0, x541, x587); fiat_np384_addcarryx_u32(&x613, &x614, x612, x543, x589); fiat_np384_addcarryx_u32(&x615, &x616, x614, x545, x591); fiat_np384_addcarryx_u32(&x617, &x618, x616, x547, x593); fiat_np384_addcarryx_u32(&x619, &x620, x618, x549, x595); fiat_np384_addcarryx_u32(&x621, &x622, x620, x551, x597); fiat_np384_addcarryx_u32(&x623, &x624, x622, x553, x599); fiat_np384_addcarryx_u32(&x625, &x626, x624, x555, x601); fiat_np384_addcarryx_u32(&x627, &x628, x626, x557, x603); fiat_np384_addcarryx_u32(&x629, &x630, x628, x559, x605); fiat_np384_addcarryx_u32(&x631, &x632, x630, x561, x607); fiat_np384_addcarryx_u32(&x633, &x634, x632, x563, x609); fiat_np384_mulx_u32(&x635, &x636, x611, UINT32_C(0xe88fdc45)); fiat_np384_mulx_u32(&x637, &x638, x635, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x639, &x640, x635, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x641, &x642, x635, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x643, &x644, x635, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x645, &x646, x635, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x647, &x648, x635, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x649, &x650, x635, UINT32_C(0xc7634d81)); fiat_np384_mulx_u32(&x651, &x652, x635, UINT32_C(0xf4372ddf)); fiat_np384_mulx_u32(&x653, &x654, x635, UINT32_C(0x581a0db2)); fiat_np384_mulx_u32(&x655, &x656, x635, UINT32_C(0x48b0a77a)); fiat_np384_mulx_u32(&x657, &x658, x635, UINT32_C(0xecec196a)); fiat_np384_mulx_u32(&x659, &x660, x635, UINT32_C(0xccc52973)); fiat_np384_addcarryx_u32(&x661, &x662, 0x0, x660, x657); fiat_np384_addcarryx_u32(&x663, &x664, x662, x658, x655); fiat_np384_addcarryx_u32(&x665, &x666, x664, x656, x653); fiat_np384_addcarryx_u32(&x667, &x668, x666, x654, x651); fiat_np384_addcarryx_u32(&x669, &x670, x668, x652, x649); fiat_np384_addcarryx_u32(&x671, &x672, x670, x650, x647); fiat_np384_addcarryx_u32(&x673, &x674, x672, x648, x645); fiat_np384_addcarryx_u32(&x675, &x676, x674, x646, x643); fiat_np384_addcarryx_u32(&x677, &x678, x676, x644, x641); fiat_np384_addcarryx_u32(&x679, &x680, x678, x642, x639); fiat_np384_addcarryx_u32(&x681, &x682, x680, x640, x637); fiat_np384_addcarryx_u32(&x683, &x684, 0x0, x611, x659); fiat_np384_addcarryx_u32(&x685, &x686, x684, x613, x661); fiat_np384_addcarryx_u32(&x687, &x688, x686, x615, x663); fiat_np384_addcarryx_u32(&x689, &x690, x688, x617, x665); fiat_np384_addcarryx_u32(&x691, &x692, x690, x619, x667); fiat_np384_addcarryx_u32(&x693, &x694, x692, x621, x669); fiat_np384_addcarryx_u32(&x695, &x696, x694, x623, x671); fiat_np384_addcarryx_u32(&x697, &x698, x696, x625, x673); fiat_np384_addcarryx_u32(&x699, &x700, x698, x627, x675); fiat_np384_addcarryx_u32(&x701, &x702, x700, x629, x677); fiat_np384_addcarryx_u32(&x703, &x704, x702, x631, x679); fiat_np384_addcarryx_u32(&x705, &x706, x704, x633, x681); fiat_np384_addcarryx_u32(&x707, &x708, x706, (((uint32_t)x634 + x564) + (x610 + x566)), (x682 + x638)); fiat_np384_mulx_u32(&x709, &x710, x5, UINT32_C(0xc84ee01)); fiat_np384_mulx_u32(&x711, &x712, x5, UINT32_C(0x2b39bf21)); fiat_np384_mulx_u32(&x713, &x714, x5, UINT32_C(0x3fb05b7a)); fiat_np384_mulx_u32(&x715, &x716, x5, UINT32_C(0x28266895)); fiat_np384_mulx_u32(&x717, &x718, x5, UINT32_C(0xd40d4917)); fiat_np384_mulx_u32(&x719, &x720, x5, UINT32_C(0x4aab1cc5)); fiat_np384_mulx_u32(&x721, &x722, x5, UINT32_C(0xbc3e483a)); fiat_np384_mulx_u32(&x723, &x724, x5, UINT32_C(0xfcb82947)); fiat_np384_mulx_u32(&x725, &x726, x5, UINT32_C(0xff3d81e5)); fiat_np384_mulx_u32(&x727, &x728, x5, UINT32_C(0xdf1aa419)); fiat_np384_mulx_u32(&x729, &x730, x5, UINT32_C(0x2d319b24)); fiat_np384_mulx_u32(&x731, &x732, x5, UINT32_C(0x19b409a9)); fiat_np384_addcarryx_u32(&x733, &x734, 0x0, x732, x729); fiat_np384_addcarryx_u32(&x735, &x736, x734, x730, x727); fiat_np384_addcarryx_u32(&x737, &x738, x736, x728, x725); fiat_np384_addcarryx_u32(&x739, &x740, x738, x726, x723); fiat_np384_addcarryx_u32(&x741, &x742, x740, x724, x721); fiat_np384_addcarryx_u32(&x743, &x744, x742, x722, x719); fiat_np384_addcarryx_u32(&x745, &x746, x744, x720, x717); fiat_np384_addcarryx_u32(&x747, &x748, x746, x718, x715); fiat_np384_addcarryx_u32(&x749, &x750, x748, x716, x713); fiat_np384_addcarryx_u32(&x751, &x752, x750, x714, x711); fiat_np384_addcarryx_u32(&x753, &x754, x752, x712, x709); fiat_np384_addcarryx_u32(&x755, &x756, 0x0, x685, x731); fiat_np384_addcarryx_u32(&x757, &x758, x756, x687, x733); fiat_np384_addcarryx_u32(&x759, &x760, x758, x689, x735); fiat_np384_addcarryx_u32(&x761, &x762, x760, x691, x737); fiat_np384_addcarryx_u32(&x763, &x764, x762, x693, x739); fiat_np384_addcarryx_u32(&x765, &x766, x764, x695, x741); fiat_np384_addcarryx_u32(&x767, &x768, x766, x697, x743); fiat_np384_addcarryx_u32(&x769, &x770, x768, x699, x745); fiat_np384_addcarryx_u32(&x771, &x772, x770, x701, x747); fiat_np384_addcarryx_u32(&x773, &x774, x772, x703, x749); fiat_np384_addcarryx_u32(&x775, &x776, x774, x705, x751); fiat_np384_addcarryx_u32(&x777, &x778, x776, x707, x753); fiat_np384_mulx_u32(&x779, &x780, x755, UINT32_C(0xe88fdc45)); fiat_np384_mulx_u32(&x781, &x782, x779, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x783, &x784, x779, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x785, &x786, x779, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x787, &x788, x779, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x789, &x790, x779, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x791, &x792, x779, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x793, &x794, x779, UINT32_C(0xc7634d81)); fiat_np384_mulx_u32(&x795, &x796, x779, UINT32_C(0xf4372ddf)); fiat_np384_mulx_u32(&x797, &x798, x779, UINT32_C(0x581a0db2)); fiat_np384_mulx_u32(&x799, &x800, x779, UINT32_C(0x48b0a77a)); fiat_np384_mulx_u32(&x801, &x802, x779, UINT32_C(0xecec196a)); fiat_np384_mulx_u32(&x803, &x804, x779, UINT32_C(0xccc52973)); fiat_np384_addcarryx_u32(&x805, &x806, 0x0, x804, x801); fiat_np384_addcarryx_u32(&x807, &x808, x806, x802, x799); fiat_np384_addcarryx_u32(&x809, &x810, x808, x800, x797); fiat_np384_addcarryx_u32(&x811, &x812, x810, x798, x795); fiat_np384_addcarryx_u32(&x813, &x814, x812, x796, x793); fiat_np384_addcarryx_u32(&x815, &x816, x814, x794, x791); fiat_np384_addcarryx_u32(&x817, &x818, x816, x792, x789); fiat_np384_addcarryx_u32(&x819, &x820, x818, x790, x787); fiat_np384_addcarryx_u32(&x821, &x822, x820, x788, x785); fiat_np384_addcarryx_u32(&x823, &x824, x822, x786, x783); fiat_np384_addcarryx_u32(&x825, &x826, x824, x784, x781); fiat_np384_addcarryx_u32(&x827, &x828, 0x0, x755, x803); fiat_np384_addcarryx_u32(&x829, &x830, x828, x757, x805); fiat_np384_addcarryx_u32(&x831, &x832, x830, x759, x807); fiat_np384_addcarryx_u32(&x833, &x834, x832, x761, x809); fiat_np384_addcarryx_u32(&x835, &x836, x834, x763, x811); fiat_np384_addcarryx_u32(&x837, &x838, x836, x765, x813); fiat_np384_addcarryx_u32(&x839, &x840, x838, x767, x815); fiat_np384_addcarryx_u32(&x841, &x842, x840, x769, x817); fiat_np384_addcarryx_u32(&x843, &x844, x842, x771, x819); fiat_np384_addcarryx_u32(&x845, &x846, x844, x773, x821); fiat_np384_addcarryx_u32(&x847, &x848, x846, x775, x823); fiat_np384_addcarryx_u32(&x849, &x850, x848, x777, x825); fiat_np384_addcarryx_u32(&x851, &x852, x850, (((uint32_t)x778 + x708) + (x754 + x710)), (x826 + x782)); fiat_np384_mulx_u32(&x853, &x854, x6, UINT32_C(0xc84ee01)); fiat_np384_mulx_u32(&x855, &x856, x6, UINT32_C(0x2b39bf21)); fiat_np384_mulx_u32(&x857, &x858, x6, UINT32_C(0x3fb05b7a)); fiat_np384_mulx_u32(&x859, &x860, x6, UINT32_C(0x28266895)); fiat_np384_mulx_u32(&x861, &x862, x6, UINT32_C(0xd40d4917)); fiat_np384_mulx_u32(&x863, &x864, x6, UINT32_C(0x4aab1cc5)); fiat_np384_mulx_u32(&x865, &x866, x6, UINT32_C(0xbc3e483a)); fiat_np384_mulx_u32(&x867, &x868, x6, UINT32_C(0xfcb82947)); fiat_np384_mulx_u32(&x869, &x870, x6, UINT32_C(0xff3d81e5)); fiat_np384_mulx_u32(&x871, &x872, x6, UINT32_C(0xdf1aa419)); fiat_np384_mulx_u32(&x873, &x874, x6, UINT32_C(0x2d319b24)); fiat_np384_mulx_u32(&x875, &x876, x6, UINT32_C(0x19b409a9)); fiat_np384_addcarryx_u32(&x877, &x878, 0x0, x876, x873); fiat_np384_addcarryx_u32(&x879, &x880, x878, x874, x871); fiat_np384_addcarryx_u32(&x881, &x882, x880, x872, x869); fiat_np384_addcarryx_u32(&x883, &x884, x882, x870, x867); fiat_np384_addcarryx_u32(&x885, &x886, x884, x868, x865); fiat_np384_addcarryx_u32(&x887, &x888, x886, x866, x863); fiat_np384_addcarryx_u32(&x889, &x890, x888, x864, x861); fiat_np384_addcarryx_u32(&x891, &x892, x890, x862, x859); fiat_np384_addcarryx_u32(&x893, &x894, x892, x860, x857); fiat_np384_addcarryx_u32(&x895, &x896, x894, x858, x855); fiat_np384_addcarryx_u32(&x897, &x898, x896, x856, x853); fiat_np384_addcarryx_u32(&x899, &x900, 0x0, x829, x875); fiat_np384_addcarryx_u32(&x901, &x902, x900, x831, x877); fiat_np384_addcarryx_u32(&x903, &x904, x902, x833, x879); fiat_np384_addcarryx_u32(&x905, &x906, x904, x835, x881); fiat_np384_addcarryx_u32(&x907, &x908, x906, x837, x883); fiat_np384_addcarryx_u32(&x909, &x910, x908, x839, x885); fiat_np384_addcarryx_u32(&x911, &x912, x910, x841, x887); fiat_np384_addcarryx_u32(&x913, &x914, x912, x843, x889); fiat_np384_addcarryx_u32(&x915, &x916, x914, x845, x891); fiat_np384_addcarryx_u32(&x917, &x918, x916, x847, x893); fiat_np384_addcarryx_u32(&x919, &x920, x918, x849, x895); fiat_np384_addcarryx_u32(&x921, &x922, x920, x851, x897); fiat_np384_mulx_u32(&x923, &x924, x899, UINT32_C(0xe88fdc45)); fiat_np384_mulx_u32(&x925, &x926, x923, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x927, &x928, x923, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x929, &x930, x923, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x931, &x932, x923, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x933, &x934, x923, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x935, &x936, x923, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x937, &x938, x923, UINT32_C(0xc7634d81)); fiat_np384_mulx_u32(&x939, &x940, x923, UINT32_C(0xf4372ddf)); fiat_np384_mulx_u32(&x941, &x942, x923, UINT32_C(0x581a0db2)); fiat_np384_mulx_u32(&x943, &x944, x923, UINT32_C(0x48b0a77a)); fiat_np384_mulx_u32(&x945, &x946, x923, UINT32_C(0xecec196a)); fiat_np384_mulx_u32(&x947, &x948, x923, UINT32_C(0xccc52973)); fiat_np384_addcarryx_u32(&x949, &x950, 0x0, x948, x945); fiat_np384_addcarryx_u32(&x951, &x952, x950, x946, x943); fiat_np384_addcarryx_u32(&x953, &x954, x952, x944, x941); fiat_np384_addcarryx_u32(&x955, &x956, x954, x942, x939); fiat_np384_addcarryx_u32(&x957, &x958, x956, x940, x937); fiat_np384_addcarryx_u32(&x959, &x960, x958, x938, x935); fiat_np384_addcarryx_u32(&x961, &x962, x960, x936, x933); fiat_np384_addcarryx_u32(&x963, &x964, x962, x934, x931); fiat_np384_addcarryx_u32(&x965, &x966, x964, x932, x929); fiat_np384_addcarryx_u32(&x967, &x968, x966, x930, x927); fiat_np384_addcarryx_u32(&x969, &x970, x968, x928, x925); fiat_np384_addcarryx_u32(&x971, &x972, 0x0, x899, x947); fiat_np384_addcarryx_u32(&x973, &x974, x972, x901, x949); fiat_np384_addcarryx_u32(&x975, &x976, x974, x903, x951); fiat_np384_addcarryx_u32(&x977, &x978, x976, x905, x953); fiat_np384_addcarryx_u32(&x979, &x980, x978, x907, x955); fiat_np384_addcarryx_u32(&x981, &x982, x980, x909, x957); fiat_np384_addcarryx_u32(&x983, &x984, x982, x911, x959); fiat_np384_addcarryx_u32(&x985, &x986, x984, x913, x961); fiat_np384_addcarryx_u32(&x987, &x988, x986, x915, x963); fiat_np384_addcarryx_u32(&x989, &x990, x988, x917, x965); fiat_np384_addcarryx_u32(&x991, &x992, x990, x919, x967); fiat_np384_addcarryx_u32(&x993, &x994, x992, x921, x969); fiat_np384_addcarryx_u32(&x995, &x996, x994, (((uint32_t)x922 + x852) + (x898 + x854)), (x970 + x926)); fiat_np384_mulx_u32(&x997, &x998, x7, UINT32_C(0xc84ee01)); fiat_np384_mulx_u32(&x999, &x1000, x7, UINT32_C(0x2b39bf21)); fiat_np384_mulx_u32(&x1001, &x1002, x7, UINT32_C(0x3fb05b7a)); fiat_np384_mulx_u32(&x1003, &x1004, x7, UINT32_C(0x28266895)); fiat_np384_mulx_u32(&x1005, &x1006, x7, UINT32_C(0xd40d4917)); fiat_np384_mulx_u32(&x1007, &x1008, x7, UINT32_C(0x4aab1cc5)); fiat_np384_mulx_u32(&x1009, &x1010, x7, UINT32_C(0xbc3e483a)); fiat_np384_mulx_u32(&x1011, &x1012, x7, UINT32_C(0xfcb82947)); fiat_np384_mulx_u32(&x1013, &x1014, x7, UINT32_C(0xff3d81e5)); fiat_np384_mulx_u32(&x1015, &x1016, x7, UINT32_C(0xdf1aa419)); fiat_np384_mulx_u32(&x1017, &x1018, x7, UINT32_C(0x2d319b24)); fiat_np384_mulx_u32(&x1019, &x1020, x7, UINT32_C(0x19b409a9)); fiat_np384_addcarryx_u32(&x1021, &x1022, 0x0, x1020, x1017); fiat_np384_addcarryx_u32(&x1023, &x1024, x1022, x1018, x1015); fiat_np384_addcarryx_u32(&x1025, &x1026, x1024, x1016, x1013); fiat_np384_addcarryx_u32(&x1027, &x1028, x1026, x1014, x1011); fiat_np384_addcarryx_u32(&x1029, &x1030, x1028, x1012, x1009); fiat_np384_addcarryx_u32(&x1031, &x1032, x1030, x1010, x1007); fiat_np384_addcarryx_u32(&x1033, &x1034, x1032, x1008, x1005); fiat_np384_addcarryx_u32(&x1035, &x1036, x1034, x1006, x1003); fiat_np384_addcarryx_u32(&x1037, &x1038, x1036, x1004, x1001); fiat_np384_addcarryx_u32(&x1039, &x1040, x1038, x1002, x999); fiat_np384_addcarryx_u32(&x1041, &x1042, x1040, x1000, x997); fiat_np384_addcarryx_u32(&x1043, &x1044, 0x0, x973, x1019); fiat_np384_addcarryx_u32(&x1045, &x1046, x1044, x975, x1021); fiat_np384_addcarryx_u32(&x1047, &x1048, x1046, x977, x1023); fiat_np384_addcarryx_u32(&x1049, &x1050, x1048, x979, x1025); fiat_np384_addcarryx_u32(&x1051, &x1052, x1050, x981, x1027); fiat_np384_addcarryx_u32(&x1053, &x1054, x1052, x983, x1029); fiat_np384_addcarryx_u32(&x1055, &x1056, x1054, x985, x1031); fiat_np384_addcarryx_u32(&x1057, &x1058, x1056, x987, x1033); fiat_np384_addcarryx_u32(&x1059, &x1060, x1058, x989, x1035); fiat_np384_addcarryx_u32(&x1061, &x1062, x1060, x991, x1037); fiat_np384_addcarryx_u32(&x1063, &x1064, x1062, x993, x1039); fiat_np384_addcarryx_u32(&x1065, &x1066, x1064, x995, x1041); fiat_np384_mulx_u32(&x1067, &x1068, x1043, UINT32_C(0xe88fdc45)); fiat_np384_mulx_u32(&x1069, &x1070, x1067, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x1071, &x1072, x1067, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x1073, &x1074, x1067, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x1075, &x1076, x1067, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x1077, &x1078, x1067, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x1079, &x1080, x1067, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x1081, &x1082, x1067, UINT32_C(0xc7634d81)); fiat_np384_mulx_u32(&x1083, &x1084, x1067, UINT32_C(0xf4372ddf)); fiat_np384_mulx_u32(&x1085, &x1086, x1067, UINT32_C(0x581a0db2)); fiat_np384_mulx_u32(&x1087, &x1088, x1067, UINT32_C(0x48b0a77a)); fiat_np384_mulx_u32(&x1089, &x1090, x1067, UINT32_C(0xecec196a)); fiat_np384_mulx_u32(&x1091, &x1092, x1067, UINT32_C(0xccc52973)); fiat_np384_addcarryx_u32(&x1093, &x1094, 0x0, x1092, x1089); fiat_np384_addcarryx_u32(&x1095, &x1096, x1094, x1090, x1087); fiat_np384_addcarryx_u32(&x1097, &x1098, x1096, x1088, x1085); fiat_np384_addcarryx_u32(&x1099, &x1100, x1098, x1086, x1083); fiat_np384_addcarryx_u32(&x1101, &x1102, x1100, x1084, x1081); fiat_np384_addcarryx_u32(&x1103, &x1104, x1102, x1082, x1079); fiat_np384_addcarryx_u32(&x1105, &x1106, x1104, x1080, x1077); fiat_np384_addcarryx_u32(&x1107, &x1108, x1106, x1078, x1075); fiat_np384_addcarryx_u32(&x1109, &x1110, x1108, x1076, x1073); fiat_np384_addcarryx_u32(&x1111, &x1112, x1110, x1074, x1071); fiat_np384_addcarryx_u32(&x1113, &x1114, x1112, x1072, x1069); fiat_np384_addcarryx_u32(&x1115, &x1116, 0x0, x1043, x1091); fiat_np384_addcarryx_u32(&x1117, &x1118, x1116, x1045, x1093); fiat_np384_addcarryx_u32(&x1119, &x1120, x1118, x1047, x1095); fiat_np384_addcarryx_u32(&x1121, &x1122, x1120, x1049, x1097); fiat_np384_addcarryx_u32(&x1123, &x1124, x1122, x1051, x1099); fiat_np384_addcarryx_u32(&x1125, &x1126, x1124, x1053, x1101); fiat_np384_addcarryx_u32(&x1127, &x1128, x1126, x1055, x1103); fiat_np384_addcarryx_u32(&x1129, &x1130, x1128, x1057, x1105); fiat_np384_addcarryx_u32(&x1131, &x1132, x1130, x1059, x1107); fiat_np384_addcarryx_u32(&x1133, &x1134, x1132, x1061, x1109); fiat_np384_addcarryx_u32(&x1135, &x1136, x1134, x1063, x1111); fiat_np384_addcarryx_u32(&x1137, &x1138, x1136, x1065, x1113); fiat_np384_addcarryx_u32(&x1139, &x1140, x1138, (((uint32_t)x1066 + x996) + (x1042 + x998)), (x1114 + x1070)); fiat_np384_mulx_u32(&x1141, &x1142, x8, UINT32_C(0xc84ee01)); fiat_np384_mulx_u32(&x1143, &x1144, x8, UINT32_C(0x2b39bf21)); fiat_np384_mulx_u32(&x1145, &x1146, x8, UINT32_C(0x3fb05b7a)); fiat_np384_mulx_u32(&x1147, &x1148, x8, UINT32_C(0x28266895)); fiat_np384_mulx_u32(&x1149, &x1150, x8, UINT32_C(0xd40d4917)); fiat_np384_mulx_u32(&x1151, &x1152, x8, UINT32_C(0x4aab1cc5)); fiat_np384_mulx_u32(&x1153, &x1154, x8, UINT32_C(0xbc3e483a)); fiat_np384_mulx_u32(&x1155, &x1156, x8, UINT32_C(0xfcb82947)); fiat_np384_mulx_u32(&x1157, &x1158, x8, UINT32_C(0xff3d81e5)); fiat_np384_mulx_u32(&x1159, &x1160, x8, UINT32_C(0xdf1aa419)); fiat_np384_mulx_u32(&x1161, &x1162, x8, UINT32_C(0x2d319b24)); fiat_np384_mulx_u32(&x1163, &x1164, x8, UINT32_C(0x19b409a9)); fiat_np384_addcarryx_u32(&x1165, &x1166, 0x0, x1164, x1161); fiat_np384_addcarryx_u32(&x1167, &x1168, x1166, x1162, x1159); fiat_np384_addcarryx_u32(&x1169, &x1170, x1168, x1160, x1157); fiat_np384_addcarryx_u32(&x1171, &x1172, x1170, x1158, x1155); fiat_np384_addcarryx_u32(&x1173, &x1174, x1172, x1156, x1153); fiat_np384_addcarryx_u32(&x1175, &x1176, x1174, x1154, x1151); fiat_np384_addcarryx_u32(&x1177, &x1178, x1176, x1152, x1149); fiat_np384_addcarryx_u32(&x1179, &x1180, x1178, x1150, x1147); fiat_np384_addcarryx_u32(&x1181, &x1182, x1180, x1148, x1145); fiat_np384_addcarryx_u32(&x1183, &x1184, x1182, x1146, x1143); fiat_np384_addcarryx_u32(&x1185, &x1186, x1184, x1144, x1141); fiat_np384_addcarryx_u32(&x1187, &x1188, 0x0, x1117, x1163); fiat_np384_addcarryx_u32(&x1189, &x1190, x1188, x1119, x1165); fiat_np384_addcarryx_u32(&x1191, &x1192, x1190, x1121, x1167); fiat_np384_addcarryx_u32(&x1193, &x1194, x1192, x1123, x1169); fiat_np384_addcarryx_u32(&x1195, &x1196, x1194, x1125, x1171); fiat_np384_addcarryx_u32(&x1197, &x1198, x1196, x1127, x1173); fiat_np384_addcarryx_u32(&x1199, &x1200, x1198, x1129, x1175); fiat_np384_addcarryx_u32(&x1201, &x1202, x1200, x1131, x1177); fiat_np384_addcarryx_u32(&x1203, &x1204, x1202, x1133, x1179); fiat_np384_addcarryx_u32(&x1205, &x1206, x1204, x1135, x1181); fiat_np384_addcarryx_u32(&x1207, &x1208, x1206, x1137, x1183); fiat_np384_addcarryx_u32(&x1209, &x1210, x1208, x1139, x1185); fiat_np384_mulx_u32(&x1211, &x1212, x1187, UINT32_C(0xe88fdc45)); fiat_np384_mulx_u32(&x1213, &x1214, x1211, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x1215, &x1216, x1211, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x1217, &x1218, x1211, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x1219, &x1220, x1211, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x1221, &x1222, x1211, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x1223, &x1224, x1211, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x1225, &x1226, x1211, UINT32_C(0xc7634d81)); fiat_np384_mulx_u32(&x1227, &x1228, x1211, UINT32_C(0xf4372ddf)); fiat_np384_mulx_u32(&x1229, &x1230, x1211, UINT32_C(0x581a0db2)); fiat_np384_mulx_u32(&x1231, &x1232, x1211, UINT32_C(0x48b0a77a)); fiat_np384_mulx_u32(&x1233, &x1234, x1211, UINT32_C(0xecec196a)); fiat_np384_mulx_u32(&x1235, &x1236, x1211, UINT32_C(0xccc52973)); fiat_np384_addcarryx_u32(&x1237, &x1238, 0x0, x1236, x1233); fiat_np384_addcarryx_u32(&x1239, &x1240, x1238, x1234, x1231); fiat_np384_addcarryx_u32(&x1241, &x1242, x1240, x1232, x1229); fiat_np384_addcarryx_u32(&x1243, &x1244, x1242, x1230, x1227); fiat_np384_addcarryx_u32(&x1245, &x1246, x1244, x1228, x1225); fiat_np384_addcarryx_u32(&x1247, &x1248, x1246, x1226, x1223); fiat_np384_addcarryx_u32(&x1249, &x1250, x1248, x1224, x1221); fiat_np384_addcarryx_u32(&x1251, &x1252, x1250, x1222, x1219); fiat_np384_addcarryx_u32(&x1253, &x1254, x1252, x1220, x1217); fiat_np384_addcarryx_u32(&x1255, &x1256, x1254, x1218, x1215); fiat_np384_addcarryx_u32(&x1257, &x1258, x1256, x1216, x1213); fiat_np384_addcarryx_u32(&x1259, &x1260, 0x0, x1187, x1235); fiat_np384_addcarryx_u32(&x1261, &x1262, x1260, x1189, x1237); fiat_np384_addcarryx_u32(&x1263, &x1264, x1262, x1191, x1239); fiat_np384_addcarryx_u32(&x1265, &x1266, x1264, x1193, x1241); fiat_np384_addcarryx_u32(&x1267, &x1268, x1266, x1195, x1243); fiat_np384_addcarryx_u32(&x1269, &x1270, x1268, x1197, x1245); fiat_np384_addcarryx_u32(&x1271, &x1272, x1270, x1199, x1247); fiat_np384_addcarryx_u32(&x1273, &x1274, x1272, x1201, x1249); fiat_np384_addcarryx_u32(&x1275, &x1276, x1274, x1203, x1251); fiat_np384_addcarryx_u32(&x1277, &x1278, x1276, x1205, x1253); fiat_np384_addcarryx_u32(&x1279, &x1280, x1278, x1207, x1255); fiat_np384_addcarryx_u32(&x1281, &x1282, x1280, x1209, x1257); fiat_np384_addcarryx_u32(&x1283, &x1284, x1282, (((uint32_t)x1210 + x1140) + (x1186 + x1142)), (x1258 + x1214)); fiat_np384_mulx_u32(&x1285, &x1286, x9, UINT32_C(0xc84ee01)); fiat_np384_mulx_u32(&x1287, &x1288, x9, UINT32_C(0x2b39bf21)); fiat_np384_mulx_u32(&x1289, &x1290, x9, UINT32_C(0x3fb05b7a)); fiat_np384_mulx_u32(&x1291, &x1292, x9, UINT32_C(0x28266895)); fiat_np384_mulx_u32(&x1293, &x1294, x9, UINT32_C(0xd40d4917)); fiat_np384_mulx_u32(&x1295, &x1296, x9, UINT32_C(0x4aab1cc5)); fiat_np384_mulx_u32(&x1297, &x1298, x9, UINT32_C(0xbc3e483a)); fiat_np384_mulx_u32(&x1299, &x1300, x9, UINT32_C(0xfcb82947)); fiat_np384_mulx_u32(&x1301, &x1302, x9, UINT32_C(0xff3d81e5)); fiat_np384_mulx_u32(&x1303, &x1304, x9, UINT32_C(0xdf1aa419)); fiat_np384_mulx_u32(&x1305, &x1306, x9, UINT32_C(0x2d319b24)); fiat_np384_mulx_u32(&x1307, &x1308, x9, UINT32_C(0x19b409a9)); fiat_np384_addcarryx_u32(&x1309, &x1310, 0x0, x1308, x1305); fiat_np384_addcarryx_u32(&x1311, &x1312, x1310, x1306, x1303); fiat_np384_addcarryx_u32(&x1313, &x1314, x1312, x1304, x1301); fiat_np384_addcarryx_u32(&x1315, &x1316, x1314, x1302, x1299); fiat_np384_addcarryx_u32(&x1317, &x1318, x1316, x1300, x1297); fiat_np384_addcarryx_u32(&x1319, &x1320, x1318, x1298, x1295); fiat_np384_addcarryx_u32(&x1321, &x1322, x1320, x1296, x1293); fiat_np384_addcarryx_u32(&x1323, &x1324, x1322, x1294, x1291); fiat_np384_addcarryx_u32(&x1325, &x1326, x1324, x1292, x1289); fiat_np384_addcarryx_u32(&x1327, &x1328, x1326, x1290, x1287); fiat_np384_addcarryx_u32(&x1329, &x1330, x1328, x1288, x1285); fiat_np384_addcarryx_u32(&x1331, &x1332, 0x0, x1261, x1307); fiat_np384_addcarryx_u32(&x1333, &x1334, x1332, x1263, x1309); fiat_np384_addcarryx_u32(&x1335, &x1336, x1334, x1265, x1311); fiat_np384_addcarryx_u32(&x1337, &x1338, x1336, x1267, x1313); fiat_np384_addcarryx_u32(&x1339, &x1340, x1338, x1269, x1315); fiat_np384_addcarryx_u32(&x1341, &x1342, x1340, x1271, x1317); fiat_np384_addcarryx_u32(&x1343, &x1344, x1342, x1273, x1319); fiat_np384_addcarryx_u32(&x1345, &x1346, x1344, x1275, x1321); fiat_np384_addcarryx_u32(&x1347, &x1348, x1346, x1277, x1323); fiat_np384_addcarryx_u32(&x1349, &x1350, x1348, x1279, x1325); fiat_np384_addcarryx_u32(&x1351, &x1352, x1350, x1281, x1327); fiat_np384_addcarryx_u32(&x1353, &x1354, x1352, x1283, x1329); fiat_np384_mulx_u32(&x1355, &x1356, x1331, UINT32_C(0xe88fdc45)); fiat_np384_mulx_u32(&x1357, &x1358, x1355, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x1359, &x1360, x1355, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x1361, &x1362, x1355, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x1363, &x1364, x1355, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x1365, &x1366, x1355, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x1367, &x1368, x1355, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x1369, &x1370, x1355, UINT32_C(0xc7634d81)); fiat_np384_mulx_u32(&x1371, &x1372, x1355, UINT32_C(0xf4372ddf)); fiat_np384_mulx_u32(&x1373, &x1374, x1355, UINT32_C(0x581a0db2)); fiat_np384_mulx_u32(&x1375, &x1376, x1355, UINT32_C(0x48b0a77a)); fiat_np384_mulx_u32(&x1377, &x1378, x1355, UINT32_C(0xecec196a)); fiat_np384_mulx_u32(&x1379, &x1380, x1355, UINT32_C(0xccc52973)); fiat_np384_addcarryx_u32(&x1381, &x1382, 0x0, x1380, x1377); fiat_np384_addcarryx_u32(&x1383, &x1384, x1382, x1378, x1375); fiat_np384_addcarryx_u32(&x1385, &x1386, x1384, x1376, x1373); fiat_np384_addcarryx_u32(&x1387, &x1388, x1386, x1374, x1371); fiat_np384_addcarryx_u32(&x1389, &x1390, x1388, x1372, x1369); fiat_np384_addcarryx_u32(&x1391, &x1392, x1390, x1370, x1367); fiat_np384_addcarryx_u32(&x1393, &x1394, x1392, x1368, x1365); fiat_np384_addcarryx_u32(&x1395, &x1396, x1394, x1366, x1363); fiat_np384_addcarryx_u32(&x1397, &x1398, x1396, x1364, x1361); fiat_np384_addcarryx_u32(&x1399, &x1400, x1398, x1362, x1359); fiat_np384_addcarryx_u32(&x1401, &x1402, x1400, x1360, x1357); fiat_np384_addcarryx_u32(&x1403, &x1404, 0x0, x1331, x1379); fiat_np384_addcarryx_u32(&x1405, &x1406, x1404, x1333, x1381); fiat_np384_addcarryx_u32(&x1407, &x1408, x1406, x1335, x1383); fiat_np384_addcarryx_u32(&x1409, &x1410, x1408, x1337, x1385); fiat_np384_addcarryx_u32(&x1411, &x1412, x1410, x1339, x1387); fiat_np384_addcarryx_u32(&x1413, &x1414, x1412, x1341, x1389); fiat_np384_addcarryx_u32(&x1415, &x1416, x1414, x1343, x1391); fiat_np384_addcarryx_u32(&x1417, &x1418, x1416, x1345, x1393); fiat_np384_addcarryx_u32(&x1419, &x1420, x1418, x1347, x1395); fiat_np384_addcarryx_u32(&x1421, &x1422, x1420, x1349, x1397); fiat_np384_addcarryx_u32(&x1423, &x1424, x1422, x1351, x1399); fiat_np384_addcarryx_u32(&x1425, &x1426, x1424, x1353, x1401); fiat_np384_addcarryx_u32(&x1427, &x1428, x1426, (((uint32_t)x1354 + x1284) + (x1330 + x1286)), (x1402 + x1358)); fiat_np384_mulx_u32(&x1429, &x1430, x10, UINT32_C(0xc84ee01)); fiat_np384_mulx_u32(&x1431, &x1432, x10, UINT32_C(0x2b39bf21)); fiat_np384_mulx_u32(&x1433, &x1434, x10, UINT32_C(0x3fb05b7a)); fiat_np384_mulx_u32(&x1435, &x1436, x10, UINT32_C(0x28266895)); fiat_np384_mulx_u32(&x1437, &x1438, x10, UINT32_C(0xd40d4917)); fiat_np384_mulx_u32(&x1439, &x1440, x10, UINT32_C(0x4aab1cc5)); fiat_np384_mulx_u32(&x1441, &x1442, x10, UINT32_C(0xbc3e483a)); fiat_np384_mulx_u32(&x1443, &x1444, x10, UINT32_C(0xfcb82947)); fiat_np384_mulx_u32(&x1445, &x1446, x10, UINT32_C(0xff3d81e5)); fiat_np384_mulx_u32(&x1447, &x1448, x10, UINT32_C(0xdf1aa419)); fiat_np384_mulx_u32(&x1449, &x1450, x10, UINT32_C(0x2d319b24)); fiat_np384_mulx_u32(&x1451, &x1452, x10, UINT32_C(0x19b409a9)); fiat_np384_addcarryx_u32(&x1453, &x1454, 0x0, x1452, x1449); fiat_np384_addcarryx_u32(&x1455, &x1456, x1454, x1450, x1447); fiat_np384_addcarryx_u32(&x1457, &x1458, x1456, x1448, x1445); fiat_np384_addcarryx_u32(&x1459, &x1460, x1458, x1446, x1443); fiat_np384_addcarryx_u32(&x1461, &x1462, x1460, x1444, x1441); fiat_np384_addcarryx_u32(&x1463, &x1464, x1462, x1442, x1439); fiat_np384_addcarryx_u32(&x1465, &x1466, x1464, x1440, x1437); fiat_np384_addcarryx_u32(&x1467, &x1468, x1466, x1438, x1435); fiat_np384_addcarryx_u32(&x1469, &x1470, x1468, x1436, x1433); fiat_np384_addcarryx_u32(&x1471, &x1472, x1470, x1434, x1431); fiat_np384_addcarryx_u32(&x1473, &x1474, x1472, x1432, x1429); fiat_np384_addcarryx_u32(&x1475, &x1476, 0x0, x1405, x1451); fiat_np384_addcarryx_u32(&x1477, &x1478, x1476, x1407, x1453); fiat_np384_addcarryx_u32(&x1479, &x1480, x1478, x1409, x1455); fiat_np384_addcarryx_u32(&x1481, &x1482, x1480, x1411, x1457); fiat_np384_addcarryx_u32(&x1483, &x1484, x1482, x1413, x1459); fiat_np384_addcarryx_u32(&x1485, &x1486, x1484, x1415, x1461); fiat_np384_addcarryx_u32(&x1487, &x1488, x1486, x1417, x1463); fiat_np384_addcarryx_u32(&x1489, &x1490, x1488, x1419, x1465); fiat_np384_addcarryx_u32(&x1491, &x1492, x1490, x1421, x1467); fiat_np384_addcarryx_u32(&x1493, &x1494, x1492, x1423, x1469); fiat_np384_addcarryx_u32(&x1495, &x1496, x1494, x1425, x1471); fiat_np384_addcarryx_u32(&x1497, &x1498, x1496, x1427, x1473); fiat_np384_mulx_u32(&x1499, &x1500, x1475, UINT32_C(0xe88fdc45)); fiat_np384_mulx_u32(&x1501, &x1502, x1499, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x1503, &x1504, x1499, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x1505, &x1506, x1499, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x1507, &x1508, x1499, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x1509, &x1510, x1499, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x1511, &x1512, x1499, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x1513, &x1514, x1499, UINT32_C(0xc7634d81)); fiat_np384_mulx_u32(&x1515, &x1516, x1499, UINT32_C(0xf4372ddf)); fiat_np384_mulx_u32(&x1517, &x1518, x1499, UINT32_C(0x581a0db2)); fiat_np384_mulx_u32(&x1519, &x1520, x1499, UINT32_C(0x48b0a77a)); fiat_np384_mulx_u32(&x1521, &x1522, x1499, UINT32_C(0xecec196a)); fiat_np384_mulx_u32(&x1523, &x1524, x1499, UINT32_C(0xccc52973)); fiat_np384_addcarryx_u32(&x1525, &x1526, 0x0, x1524, x1521); fiat_np384_addcarryx_u32(&x1527, &x1528, x1526, x1522, x1519); fiat_np384_addcarryx_u32(&x1529, &x1530, x1528, x1520, x1517); fiat_np384_addcarryx_u32(&x1531, &x1532, x1530, x1518, x1515); fiat_np384_addcarryx_u32(&x1533, &x1534, x1532, x1516, x1513); fiat_np384_addcarryx_u32(&x1535, &x1536, x1534, x1514, x1511); fiat_np384_addcarryx_u32(&x1537, &x1538, x1536, x1512, x1509); fiat_np384_addcarryx_u32(&x1539, &x1540, x1538, x1510, x1507); fiat_np384_addcarryx_u32(&x1541, &x1542, x1540, x1508, x1505); fiat_np384_addcarryx_u32(&x1543, &x1544, x1542, x1506, x1503); fiat_np384_addcarryx_u32(&x1545, &x1546, x1544, x1504, x1501); fiat_np384_addcarryx_u32(&x1547, &x1548, 0x0, x1475, x1523); fiat_np384_addcarryx_u32(&x1549, &x1550, x1548, x1477, x1525); fiat_np384_addcarryx_u32(&x1551, &x1552, x1550, x1479, x1527); fiat_np384_addcarryx_u32(&x1553, &x1554, x1552, x1481, x1529); fiat_np384_addcarryx_u32(&x1555, &x1556, x1554, x1483, x1531); fiat_np384_addcarryx_u32(&x1557, &x1558, x1556, x1485, x1533); fiat_np384_addcarryx_u32(&x1559, &x1560, x1558, x1487, x1535); fiat_np384_addcarryx_u32(&x1561, &x1562, x1560, x1489, x1537); fiat_np384_addcarryx_u32(&x1563, &x1564, x1562, x1491, x1539); fiat_np384_addcarryx_u32(&x1565, &x1566, x1564, x1493, x1541); fiat_np384_addcarryx_u32(&x1567, &x1568, x1566, x1495, x1543); fiat_np384_addcarryx_u32(&x1569, &x1570, x1568, x1497, x1545); fiat_np384_addcarryx_u32(&x1571, &x1572, x1570, (((uint32_t)x1498 + x1428) + (x1474 + x1430)), (x1546 + x1502)); fiat_np384_mulx_u32(&x1573, &x1574, x11, UINT32_C(0xc84ee01)); fiat_np384_mulx_u32(&x1575, &x1576, x11, UINT32_C(0x2b39bf21)); fiat_np384_mulx_u32(&x1577, &x1578, x11, UINT32_C(0x3fb05b7a)); fiat_np384_mulx_u32(&x1579, &x1580, x11, UINT32_C(0x28266895)); fiat_np384_mulx_u32(&x1581, &x1582, x11, UINT32_C(0xd40d4917)); fiat_np384_mulx_u32(&x1583, &x1584, x11, UINT32_C(0x4aab1cc5)); fiat_np384_mulx_u32(&x1585, &x1586, x11, UINT32_C(0xbc3e483a)); fiat_np384_mulx_u32(&x1587, &x1588, x11, UINT32_C(0xfcb82947)); fiat_np384_mulx_u32(&x1589, &x1590, x11, UINT32_C(0xff3d81e5)); fiat_np384_mulx_u32(&x1591, &x1592, x11, UINT32_C(0xdf1aa419)); fiat_np384_mulx_u32(&x1593, &x1594, x11, UINT32_C(0x2d319b24)); fiat_np384_mulx_u32(&x1595, &x1596, x11, UINT32_C(0x19b409a9)); fiat_np384_addcarryx_u32(&x1597, &x1598, 0x0, x1596, x1593); fiat_np384_addcarryx_u32(&x1599, &x1600, x1598, x1594, x1591); fiat_np384_addcarryx_u32(&x1601, &x1602, x1600, x1592, x1589); fiat_np384_addcarryx_u32(&x1603, &x1604, x1602, x1590, x1587); fiat_np384_addcarryx_u32(&x1605, &x1606, x1604, x1588, x1585); fiat_np384_addcarryx_u32(&x1607, &x1608, x1606, x1586, x1583); fiat_np384_addcarryx_u32(&x1609, &x1610, x1608, x1584, x1581); fiat_np384_addcarryx_u32(&x1611, &x1612, x1610, x1582, x1579); fiat_np384_addcarryx_u32(&x1613, &x1614, x1612, x1580, x1577); fiat_np384_addcarryx_u32(&x1615, &x1616, x1614, x1578, x1575); fiat_np384_addcarryx_u32(&x1617, &x1618, x1616, x1576, x1573); fiat_np384_addcarryx_u32(&x1619, &x1620, 0x0, x1549, x1595); fiat_np384_addcarryx_u32(&x1621, &x1622, x1620, x1551, x1597); fiat_np384_addcarryx_u32(&x1623, &x1624, x1622, x1553, x1599); fiat_np384_addcarryx_u32(&x1625, &x1626, x1624, x1555, x1601); fiat_np384_addcarryx_u32(&x1627, &x1628, x1626, x1557, x1603); fiat_np384_addcarryx_u32(&x1629, &x1630, x1628, x1559, x1605); fiat_np384_addcarryx_u32(&x1631, &x1632, x1630, x1561, x1607); fiat_np384_addcarryx_u32(&x1633, &x1634, x1632, x1563, x1609); fiat_np384_addcarryx_u32(&x1635, &x1636, x1634, x1565, x1611); fiat_np384_addcarryx_u32(&x1637, &x1638, x1636, x1567, x1613); fiat_np384_addcarryx_u32(&x1639, &x1640, x1638, x1569, x1615); fiat_np384_addcarryx_u32(&x1641, &x1642, x1640, x1571, x1617); fiat_np384_mulx_u32(&x1643, &x1644, x1619, UINT32_C(0xe88fdc45)); fiat_np384_mulx_u32(&x1645, &x1646, x1643, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x1647, &x1648, x1643, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x1649, &x1650, x1643, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x1651, &x1652, x1643, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x1653, &x1654, x1643, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x1655, &x1656, x1643, UINT32_C(0xffffffff)); fiat_np384_mulx_u32(&x1657, &x1658, x1643, UINT32_C(0xc7634d81)); fiat_np384_mulx_u32(&x1659, &x1660, x1643, UINT32_C(0xf4372ddf)); fiat_np384_mulx_u32(&x1661, &x1662, x1643, UINT32_C(0x581a0db2)); fiat_np384_mulx_u32(&x1663, &x1664, x1643, UINT32_C(0x48b0a77a)); fiat_np384_mulx_u32(&x1665, &x1666, x1643, UINT32_C(0xecec196a)); fiat_np384_mulx_u32(&x1667, &x1668, x1643, UINT32_C(0xccc52973)); fiat_np384_addcarryx_u32(&x1669, &x1670, 0x0, x1668, x1665); fiat_np384_addcarryx_u32(&x1671, &x1672, x1670, x1666, x1663); fiat_np384_addcarryx_u32(&x1673, &x1674, x1672, x1664, x1661); fiat_np384_addcarryx_u32(&x1675, &x1676, x1674, x1662, x1659); fiat_np384_addcarryx_u32(&x1677, &x1678, x1676, x1660, x1657); fiat_np384_addcarryx_u32(&x1679, &x1680, x1678, x1658, x1655); fiat_np384_addcarryx_u32(&x1681, &x1682, x1680, x1656, x1653); fiat_np384_addcarryx_u32(&x1683, &x1684, x1682, x1654, x1651); fiat_np384_addcarryx_u32(&x1685, &x1686, x1684, x1652, x1649); fiat_np384_addcarryx_u32(&x1687, &x1688, x1686, x1650, x1647); fiat_np384_addcarryx_u32(&x1689, &x1690, x1688, x1648, x1645); fiat_np384_addcarryx_u32(&x1691, &x1692, 0x0, x1619, x1667); fiat_np384_addcarryx_u32(&x1693, &x1694, x1692, x1621, x1669); fiat_np384_addcarryx_u32(&x1695, &x1696, x1694, x1623, x1671); fiat_np384_addcarryx_u32(&x1697, &x1698, x1696, x1625, x1673); fiat_np384_addcarryx_u32(&x1699, &x1700, x1698, x1627, x1675); fiat_np384_addcarryx_u32(&x1701, &x1702, x1700, x1629, x1677); fiat_np384_addcarryx_u32(&x1703, &x1704, x1702, x1631, x1679); fiat_np384_addcarryx_u32(&x1705, &x1706, x1704, x1633, x1681); fiat_np384_addcarryx_u32(&x1707, &x1708, x1706, x1635, x1683); fiat_np384_addcarryx_u32(&x1709, &x1710, x1708, x1637, x1685); fiat_np384_addcarryx_u32(&x1711, &x1712, x1710, x1639, x1687); fiat_np384_addcarryx_u32(&x1713, &x1714, x1712, x1641, x1689); fiat_np384_addcarryx_u32(&x1715, &x1716, x1714, (((uint32_t)x1642 + x1572) + (x1618 + x1574)), (x1690 + x1646)); fiat_np384_subborrowx_u32(&x1717, &x1718, 0x0, x1693, UINT32_C(0xccc52973)); fiat_np384_subborrowx_u32(&x1719, &x1720, x1718, x1695, UINT32_C(0xecec196a)); fiat_np384_subborrowx_u32(&x1721, &x1722, x1720, x1697, UINT32_C(0x48b0a77a)); fiat_np384_subborrowx_u32(&x1723, &x1724, x1722, x1699, UINT32_C(0x581a0db2)); fiat_np384_subborrowx_u32(&x1725, &x1726, x1724, x1701, UINT32_C(0xf4372ddf)); fiat_np384_subborrowx_u32(&x1727, &x1728, x1726, x1703, UINT32_C(0xc7634d81)); fiat_np384_subborrowx_u32(&x1729, &x1730, x1728, x1705, UINT32_C(0xffffffff)); fiat_np384_subborrowx_u32(&x1731, &x1732, x1730, x1707, UINT32_C(0xffffffff)); fiat_np384_subborrowx_u32(&x1733, &x1734, x1732, x1709, UINT32_C(0xffffffff)); fiat_np384_subborrowx_u32(&x1735, &x1736, x1734, x1711, UINT32_C(0xffffffff)); fiat_np384_subborrowx_u32(&x1737, &x1738, x1736, x1713, UINT32_C(0xffffffff)); fiat_np384_subborrowx_u32(&x1739, &x1740, x1738, x1715, UINT32_C(0xffffffff)); fiat_np384_subborrowx_u32(&x1741, &x1742, x1740, x1716, 0x0); fiat_np384_cmovznz_u32(&x1743, x1742, x1717, x1693); fiat_np384_cmovznz_u32(&x1744, x1742, x1719, x1695); fiat_np384_cmovznz_u32(&x1745, x1742, x1721, x1697); fiat_np384_cmovznz_u32(&x1746, x1742, x1723, x1699); fiat_np384_cmovznz_u32(&x1747, x1742, x1725, x1701); fiat_np384_cmovznz_u32(&x1748, x1742, x1727, x1703); fiat_np384_cmovznz_u32(&x1749, x1742, x1729, x1705); fiat_np384_cmovznz_u32(&x1750, x1742, x1731, x1707); fiat_np384_cmovznz_u32(&x1751, x1742, x1733, x1709); fiat_np384_cmovznz_u32(&x1752, x1742, x1735, x1711); fiat_np384_cmovznz_u32(&x1753, x1742, x1737, x1713); fiat_np384_cmovznz_u32(&x1754, x1742, x1739, x1715); out1[0] = x1743; out1[1] = x1744; out1[2] = x1745; out1[3] = x1746; out1[4] = x1747; out1[5] = x1748; out1[6] = x1749; out1[7] = x1750; out1[8] = x1751; out1[9] = x1752; out1[10] = x1753; out1[11] = x1754; } /* * The function fiat_np384_set_one returns the field element one in the Montgomery domain. * * Postconditions: * eval (from_montgomery out1) mod m = 1 mod m * 0 ≤ eval out1 < m * */ static void fiat_np384_set_one(fiat_np384_montgomery_domain_field_element out1) { out1[0] = UINT32_C(0x333ad68d); out1[1] = UINT32_C(0x1313e695); out1[2] = UINT32_C(0xb74f5885); out1[3] = UINT32_C(0xa7e5f24d); out1[4] = UINT32_C(0xbc8d220); out1[5] = UINT32_C(0x389cb27e); out1[6] = 0x0; out1[7] = 0x0; out1[8] = 0x0; out1[9] = 0x0; out1[10] = 0x0; out1[11] = 0x0; } /* * The function fiat_np384_msat returns the saturated representation of the prime modulus. * * Postconditions: * twos_complement_eval out1 = m * 0 ≤ eval out1 < m * * Output Bounds: * out1: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff]] */ static void fiat_np384_msat(uint32_t out1[13]) { out1[0] = UINT32_C(0xccc52973); out1[1] = UINT32_C(0xecec196a); out1[2] = UINT32_C(0x48b0a77a); out1[3] = UINT32_C(0x581a0db2); out1[4] = UINT32_C(0xf4372ddf); out1[5] = UINT32_C(0xc7634d81); out1[6] = UINT32_C(0xffffffff); out1[7] = UINT32_C(0xffffffff); out1[8] = UINT32_C(0xffffffff); out1[9] = UINT32_C(0xffffffff); out1[10] = UINT32_C(0xffffffff); out1[11] = UINT32_C(0xffffffff); out1[12] = 0x0; } /* * The function fiat_np384_divstep_precomp returns the precomputed value for Bernstein-Yang-inversion (in montgomery form). * * Postconditions: * eval (from_montgomery out1) = ⌊(m - 1) / 2⌋^(if ⌊log2 m⌋ + 1 < 46 then ⌊(49 * (⌊log2 m⌋ + 1) + 80) / 17⌋ else ⌊(49 * (⌊log2 m⌋ + 1) + 57) / 17⌋) * 0 ≤ eval out1 < m * * Output Bounds: * out1: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff]] */ static void fiat_np384_divstep_precomp(uint32_t out1[12]) { out1[0] = UINT32_C(0xe6045b6a); out1[1] = UINT32_C(0x49589ae0); out1[2] = UINT32_C(0x870040ed); out1[3] = UINT32_C(0x3c9a5352); out1[4] = UINT32_C(0x977dc242); out1[5] = UINT32_C(0xdacb097e); out1[6] = UINT32_C(0xd1ecbe36); out1[7] = UINT32_C(0xb5ab30a6); out1[8] = UINT32_C(0x1f959973); out1[9] = UINT32_C(0x97d7a108); out1[10] = UINT32_C(0xd27192bc); out1[11] = UINT32_C(0x2ba012f8); } /* * The function fiat_np384_divstep computes a divstep. * * Preconditions: * 0 ≤ eval arg4 < m * 0 ≤ eval arg5 < m * Postconditions: * out1 = (if 0 < arg1 ∧ (twos_complement_eval arg3) is odd then 1 - arg1 else 1 + arg1) * twos_complement_eval out2 = (if 0 < arg1 ∧ (twos_complement_eval arg3) is odd then twos_complement_eval arg3 else twos_complement_eval arg2) * twos_complement_eval out3 = (if 0 < arg1 ∧ (twos_complement_eval arg3) is odd then ⌊(twos_complement_eval arg3 - twos_complement_eval arg2) / 2⌋ else ⌊(twos_complement_eval arg3 + (twos_complement_eval arg3 mod 2) * twos_complement_eval arg2) / 2⌋) * eval (from_montgomery out4) mod m = (if 0 < arg1 ∧ (twos_complement_eval arg3) is odd then (2 * eval (from_montgomery arg5)) mod m else (2 * eval (from_montgomery arg4)) mod m) * eval (from_montgomery out5) mod m = (if 0 < arg1 ∧ (twos_complement_eval arg3) is odd then (eval (from_montgomery arg4) - eval (from_montgomery arg4)) mod m else (eval (from_montgomery arg5) + (twos_complement_eval arg3 mod 2) * eval (from_montgomery arg4)) mod m) * 0 ≤ eval out5 < m * 0 ≤ eval out5 < m * 0 ≤ eval out2 < m * 0 ≤ eval out3 < m * * Input Bounds: * arg1: [0x0 ~> 0xffffffff] * arg2: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff]] * arg3: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff]] * arg4: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff]] * arg5: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff]] * Output Bounds: * out1: [0x0 ~> 0xffffffff] * out2: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff]] * out3: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff]] * out4: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff]] * out5: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff]] */ static void fiat_np384_divstep(uint32_t* out1, uint32_t out2[13], uint32_t out3[13], uint32_t out4[12], uint32_t out5[12], uint32_t arg1, const uint32_t arg2[13], const uint32_t arg3[13], const uint32_t arg4[12], const uint32_t arg5[12]) { uint32_t x1; fiat_np384_uint1 x2; fiat_np384_uint1 x3; uint32_t x4; fiat_np384_uint1 x5; uint32_t x6; uint32_t x7; uint32_t x8; uint32_t x9; uint32_t x10; uint32_t x11; uint32_t x12; uint32_t x13; uint32_t x14; uint32_t x15; uint32_t x16; uint32_t x17; uint32_t x18; uint32_t x19; uint32_t x20; fiat_np384_uint1 x21; uint32_t x22; fiat_np384_uint1 x23; uint32_t x24; fiat_np384_uint1 x25; uint32_t x26; fiat_np384_uint1 x27; uint32_t x28; fiat_np384_uint1 x29; uint32_t x30; fiat_np384_uint1 x31; uint32_t x32; fiat_np384_uint1 x33; uint32_t x34; fiat_np384_uint1 x35; uint32_t x36; fiat_np384_uint1 x37; uint32_t x38; fiat_np384_uint1 x39; uint32_t x40; fiat_np384_uint1 x41; uint32_t x42; fiat_np384_uint1 x43; uint32_t x44; fiat_np384_uint1 x45; uint32_t x46; uint32_t x47; uint32_t x48; uint32_t x49; uint32_t x50; uint32_t x51; uint32_t x52; uint32_t x53; uint32_t x54; uint32_t x55; uint32_t x56; uint32_t x57; uint32_t x58; uint32_t x59; uint32_t x60; uint32_t x61; uint32_t x62; uint32_t x63; uint32_t x64; uint32_t x65; uint32_t x66; uint32_t x67; uint32_t x68; uint32_t x69; uint32_t x70; uint32_t x71; fiat_np384_uint1 x72; uint32_t x73; fiat_np384_uint1 x74; uint32_t x75; fiat_np384_uint1 x76; uint32_t x77; fiat_np384_uint1 x78; uint32_t x79; fiat_np384_uint1 x80; uint32_t x81; fiat_np384_uint1 x82; uint32_t x83; fiat_np384_uint1 x84; uint32_t x85; fiat_np384_uint1 x86; uint32_t x87; fiat_np384_uint1 x88; uint32_t x89; fiat_np384_uint1 x90; uint32_t x91; fiat_np384_uint1 x92; uint32_t x93; fiat_np384_uint1 x94; uint32_t x95; fiat_np384_uint1 x96; uint32_t x97; fiat_np384_uint1 x98; uint32_t x99; fiat_np384_uint1 x100; uint32_t x101; fiat_np384_uint1 x102; uint32_t x103; fiat_np384_uint1 x104; uint32_t x105; fiat_np384_uint1 x106; uint32_t x107; fiat_np384_uint1 x108; uint32_t x109; fiat_np384_uint1 x110; uint32_t x111; fiat_np384_uint1 x112; uint32_t x113; fiat_np384_uint1 x114; uint32_t x115; fiat_np384_uint1 x116; uint32_t x117; fiat_np384_uint1 x118; uint32_t x119; fiat_np384_uint1 x120; uint32_t x121; uint32_t x122; uint32_t x123; uint32_t x124; uint32_t x125; uint32_t x126; uint32_t x127; uint32_t x128; uint32_t x129; uint32_t x130; uint32_t x131; uint32_t x132; uint32_t x133; fiat_np384_uint1 x134; uint32_t x135; fiat_np384_uint1 x136; uint32_t x137; fiat_np384_uint1 x138; uint32_t x139; fiat_np384_uint1 x140; uint32_t x141; fiat_np384_uint1 x142; uint32_t x143; fiat_np384_uint1 x144; uint32_t x145; fiat_np384_uint1 x146; uint32_t x147; fiat_np384_uint1 x148; uint32_t x149; fiat_np384_uint1 x150; uint32_t x151; fiat_np384_uint1 x152; uint32_t x153; fiat_np384_uint1 x154; uint32_t x155; fiat_np384_uint1 x156; uint32_t x157; uint32_t x158; fiat_np384_uint1 x159; uint32_t x160; fiat_np384_uint1 x161; uint32_t x162; fiat_np384_uint1 x163; uint32_t x164; fiat_np384_uint1 x165; uint32_t x166; fiat_np384_uint1 x167; uint32_t x168; fiat_np384_uint1 x169; uint32_t x170; fiat_np384_uint1 x171; uint32_t x172; fiat_np384_uint1 x173; uint32_t x174; fiat_np384_uint1 x175; uint32_t x176; fiat_np384_uint1 x177; uint32_t x178; fiat_np384_uint1 x179; uint32_t x180; fiat_np384_uint1 x181; uint32_t x182; uint32_t x183; uint32_t x184; uint32_t x185; uint32_t x186; uint32_t x187; uint32_t x188; uint32_t x189; uint32_t x190; uint32_t x191; uint32_t x192; uint32_t x193; fiat_np384_uint1 x194; uint32_t x195; uint32_t x196; uint32_t x197; uint32_t x198; uint32_t x199; uint32_t x200; uint32_t x201; uint32_t x202; uint32_t x203; uint32_t x204; uint32_t x205; uint32_t x206; uint32_t x207; uint32_t x208; fiat_np384_uint1 x209; uint32_t x210; fiat_np384_uint1 x211; uint32_t x212; fiat_np384_uint1 x213; uint32_t x214; fiat_np384_uint1 x215; uint32_t x216; fiat_np384_uint1 x217; uint32_t x218; fiat_np384_uint1 x219; uint32_t x220; fiat_np384_uint1 x221; uint32_t x222; fiat_np384_uint1 x223; uint32_t x224; fiat_np384_uint1 x225; uint32_t x226; fiat_np384_uint1 x227; uint32_t x228; fiat_np384_uint1 x229; uint32_t x230; fiat_np384_uint1 x231; uint32_t x232; fiat_np384_uint1 x233; uint32_t x234; uint32_t x235; uint32_t x236; uint32_t x237; uint32_t x238; uint32_t x239; uint32_t x240; uint32_t x241; uint32_t x242; uint32_t x243; uint32_t x244; uint32_t x245; uint32_t x246; fiat_np384_uint1 x247; uint32_t x248; fiat_np384_uint1 x249; uint32_t x250; fiat_np384_uint1 x251; uint32_t x252; fiat_np384_uint1 x253; uint32_t x254; fiat_np384_uint1 x255; uint32_t x256; fiat_np384_uint1 x257; uint32_t x258; fiat_np384_uint1 x259; uint32_t x260; fiat_np384_uint1 x261; uint32_t x262; fiat_np384_uint1 x263; uint32_t x264; fiat_np384_uint1 x265; uint32_t x266; fiat_np384_uint1 x267; uint32_t x268; fiat_np384_uint1 x269; uint32_t x270; fiat_np384_uint1 x271; uint32_t x272; fiat_np384_uint1 x273; uint32_t x274; fiat_np384_uint1 x275; uint32_t x276; fiat_np384_uint1 x277; uint32_t x278; fiat_np384_uint1 x279; uint32_t x280; fiat_np384_uint1 x281; uint32_t x282; fiat_np384_uint1 x283; uint32_t x284; fiat_np384_uint1 x285; uint32_t x286; fiat_np384_uint1 x287; uint32_t x288; fiat_np384_uint1 x289; uint32_t x290; fiat_np384_uint1 x291; uint32_t x292; fiat_np384_uint1 x293; uint32_t x294; fiat_np384_uint1 x295; uint32_t x296; fiat_np384_uint1 x297; uint32_t x298; uint32_t x299; uint32_t x300; uint32_t x301; uint32_t x302; uint32_t x303; uint32_t x304; uint32_t x305; uint32_t x306; uint32_t x307; uint32_t x308; uint32_t x309; uint32_t x310; uint32_t x311; uint32_t x312; uint32_t x313; uint32_t x314; uint32_t x315; uint32_t x316; uint32_t x317; uint32_t x318; uint32_t x319; uint32_t x320; uint32_t x321; uint32_t x322; uint32_t x323; uint32_t x324; uint32_t x325; uint32_t x326; uint32_t x327; uint32_t x328; uint32_t x329; uint32_t x330; uint32_t x331; uint32_t x332; uint32_t x333; uint32_t x334; fiat_np384_addcarryx_u32(&x1, &x2, 0x0, (~arg1), 0x1); x3 = (fiat_np384_uint1)((fiat_np384_uint1)(x1 >> 31) & (fiat_np384_uint1)((arg3[0]) & 0x1)); fiat_np384_addcarryx_u32(&x4, &x5, 0x0, (~arg1), 0x1); fiat_np384_cmovznz_u32(&x6, x3, arg1, x4); fiat_np384_cmovznz_u32(&x7, x3, (arg2[0]), (arg3[0])); fiat_np384_cmovznz_u32(&x8, x3, (arg2[1]), (arg3[1])); fiat_np384_cmovznz_u32(&x9, x3, (arg2[2]), (arg3[2])); fiat_np384_cmovznz_u32(&x10, x3, (arg2[3]), (arg3[3])); fiat_np384_cmovznz_u32(&x11, x3, (arg2[4]), (arg3[4])); fiat_np384_cmovznz_u32(&x12, x3, (arg2[5]), (arg3[5])); fiat_np384_cmovznz_u32(&x13, x3, (arg2[6]), (arg3[6])); fiat_np384_cmovznz_u32(&x14, x3, (arg2[7]), (arg3[7])); fiat_np384_cmovznz_u32(&x15, x3, (arg2[8]), (arg3[8])); fiat_np384_cmovznz_u32(&x16, x3, (arg2[9]), (arg3[9])); fiat_np384_cmovznz_u32(&x17, x3, (arg2[10]), (arg3[10])); fiat_np384_cmovznz_u32(&x18, x3, (arg2[11]), (arg3[11])); fiat_np384_cmovznz_u32(&x19, x3, (arg2[12]), (arg3[12])); fiat_np384_addcarryx_u32(&x20, &x21, 0x0, 0x1, (~(arg2[0]))); fiat_np384_addcarryx_u32(&x22, &x23, x21, 0x0, (~(arg2[1]))); fiat_np384_addcarryx_u32(&x24, &x25, x23, 0x0, (~(arg2[2]))); fiat_np384_addcarryx_u32(&x26, &x27, x25, 0x0, (~(arg2[3]))); fiat_np384_addcarryx_u32(&x28, &x29, x27, 0x0, (~(arg2[4]))); fiat_np384_addcarryx_u32(&x30, &x31, x29, 0x0, (~(arg2[5]))); fiat_np384_addcarryx_u32(&x32, &x33, x31, 0x0, (~(arg2[6]))); fiat_np384_addcarryx_u32(&x34, &x35, x33, 0x0, (~(arg2[7]))); fiat_np384_addcarryx_u32(&x36, &x37, x35, 0x0, (~(arg2[8]))); fiat_np384_addcarryx_u32(&x38, &x39, x37, 0x0, (~(arg2[9]))); fiat_np384_addcarryx_u32(&x40, &x41, x39, 0x0, (~(arg2[10]))); fiat_np384_addcarryx_u32(&x42, &x43, x41, 0x0, (~(arg2[11]))); fiat_np384_addcarryx_u32(&x44, &x45, x43, 0x0, (~(arg2[12]))); fiat_np384_cmovznz_u32(&x46, x3, (arg3[0]), x20); fiat_np384_cmovznz_u32(&x47, x3, (arg3[1]), x22); fiat_np384_cmovznz_u32(&x48, x3, (arg3[2]), x24); fiat_np384_cmovznz_u32(&x49, x3, (arg3[3]), x26); fiat_np384_cmovznz_u32(&x50, x3, (arg3[4]), x28); fiat_np384_cmovznz_u32(&x51, x3, (arg3[5]), x30); fiat_np384_cmovznz_u32(&x52, x3, (arg3[6]), x32); fiat_np384_cmovznz_u32(&x53, x3, (arg3[7]), x34); fiat_np384_cmovznz_u32(&x54, x3, (arg3[8]), x36); fiat_np384_cmovznz_u32(&x55, x3, (arg3[9]), x38); fiat_np384_cmovznz_u32(&x56, x3, (arg3[10]), x40); fiat_np384_cmovznz_u32(&x57, x3, (arg3[11]), x42); fiat_np384_cmovznz_u32(&x58, x3, (arg3[12]), x44); fiat_np384_cmovznz_u32(&x59, x3, (arg4[0]), (arg5[0])); fiat_np384_cmovznz_u32(&x60, x3, (arg4[1]), (arg5[1])); fiat_np384_cmovznz_u32(&x61, x3, (arg4[2]), (arg5[2])); fiat_np384_cmovznz_u32(&x62, x3, (arg4[3]), (arg5[3])); fiat_np384_cmovznz_u32(&x63, x3, (arg4[4]), (arg5[4])); fiat_np384_cmovznz_u32(&x64, x3, (arg4[5]), (arg5[5])); fiat_np384_cmovznz_u32(&x65, x3, (arg4[6]), (arg5[6])); fiat_np384_cmovznz_u32(&x66, x3, (arg4[7]), (arg5[7])); fiat_np384_cmovznz_u32(&x67, x3, (arg4[8]), (arg5[8])); fiat_np384_cmovznz_u32(&x68, x3, (arg4[9]), (arg5[9])); fiat_np384_cmovznz_u32(&x69, x3, (arg4[10]), (arg5[10])); fiat_np384_cmovznz_u32(&x70, x3, (arg4[11]), (arg5[11])); fiat_np384_addcarryx_u32(&x71, &x72, 0x0, x59, x59); fiat_np384_addcarryx_u32(&x73, &x74, x72, x60, x60); fiat_np384_addcarryx_u32(&x75, &x76, x74, x61, x61); fiat_np384_addcarryx_u32(&x77, &x78, x76, x62, x62); fiat_np384_addcarryx_u32(&x79, &x80, x78, x63, x63); fiat_np384_addcarryx_u32(&x81, &x82, x80, x64, x64); fiat_np384_addcarryx_u32(&x83, &x84, x82, x65, x65); fiat_np384_addcarryx_u32(&x85, &x86, x84, x66, x66); fiat_np384_addcarryx_u32(&x87, &x88, x86, x67, x67); fiat_np384_addcarryx_u32(&x89, &x90, x88, x68, x68); fiat_np384_addcarryx_u32(&x91, &x92, x90, x69, x69); fiat_np384_addcarryx_u32(&x93, &x94, x92, x70, x70); fiat_np384_subborrowx_u32(&x95, &x96, 0x0, x71, UINT32_C(0xccc52973)); fiat_np384_subborrowx_u32(&x97, &x98, x96, x73, UINT32_C(0xecec196a)); fiat_np384_subborrowx_u32(&x99, &x100, x98, x75, UINT32_C(0x48b0a77a)); fiat_np384_subborrowx_u32(&x101, &x102, x100, x77, UINT32_C(0x581a0db2)); fiat_np384_subborrowx_u32(&x103, &x104, x102, x79, UINT32_C(0xf4372ddf)); fiat_np384_subborrowx_u32(&x105, &x106, x104, x81, UINT32_C(0xc7634d81)); fiat_np384_subborrowx_u32(&x107, &x108, x106, x83, UINT32_C(0xffffffff)); fiat_np384_subborrowx_u32(&x109, &x110, x108, x85, UINT32_C(0xffffffff)); fiat_np384_subborrowx_u32(&x111, &x112, x110, x87, UINT32_C(0xffffffff)); fiat_np384_subborrowx_u32(&x113, &x114, x112, x89, UINT32_C(0xffffffff)); fiat_np384_subborrowx_u32(&x115, &x116, x114, x91, UINT32_C(0xffffffff)); fiat_np384_subborrowx_u32(&x117, &x118, x116, x93, UINT32_C(0xffffffff)); fiat_np384_subborrowx_u32(&x119, &x120, x118, x94, 0x0); x121 = (arg4[11]); x122 = (arg4[10]); x123 = (arg4[9]); x124 = (arg4[8]); x125 = (arg4[7]); x126 = (arg4[6]); x127 = (arg4[5]); x128 = (arg4[4]); x129 = (arg4[3]); x130 = (arg4[2]); x131 = (arg4[1]); x132 = (arg4[0]); fiat_np384_subborrowx_u32(&x133, &x134, 0x0, 0x0, x132); fiat_np384_subborrowx_u32(&x135, &x136, x134, 0x0, x131); fiat_np384_subborrowx_u32(&x137, &x138, x136, 0x0, x130); fiat_np384_subborrowx_u32(&x139, &x140, x138, 0x0, x129); fiat_np384_subborrowx_u32(&x141, &x142, x140, 0x0, x128); fiat_np384_subborrowx_u32(&x143, &x144, x142, 0x0, x127); fiat_np384_subborrowx_u32(&x145, &x146, x144, 0x0, x126); fiat_np384_subborrowx_u32(&x147, &x148, x146, 0x0, x125); fiat_np384_subborrowx_u32(&x149, &x150, x148, 0x0, x124); fiat_np384_subborrowx_u32(&x151, &x152, x150, 0x0, x123); fiat_np384_subborrowx_u32(&x153, &x154, x152, 0x0, x122); fiat_np384_subborrowx_u32(&x155, &x156, x154, 0x0, x121); fiat_np384_cmovznz_u32(&x157, x156, 0x0, UINT32_C(0xffffffff)); fiat_np384_addcarryx_u32(&x158, &x159, 0x0, x133, (x157 & UINT32_C(0xccc52973))); fiat_np384_addcarryx_u32(&x160, &x161, x159, x135, (x157 & UINT32_C(0xecec196a))); fiat_np384_addcarryx_u32(&x162, &x163, x161, x137, (x157 & UINT32_C(0x48b0a77a))); fiat_np384_addcarryx_u32(&x164, &x165, x163, x139, (x157 & UINT32_C(0x581a0db2))); fiat_np384_addcarryx_u32(&x166, &x167, x165, x141, (x157 & UINT32_C(0xf4372ddf))); fiat_np384_addcarryx_u32(&x168, &x169, x167, x143, (x157 & UINT32_C(0xc7634d81))); fiat_np384_addcarryx_u32(&x170, &x171, x169, x145, x157); fiat_np384_addcarryx_u32(&x172, &x173, x171, x147, x157); fiat_np384_addcarryx_u32(&x174, &x175, x173, x149, x157); fiat_np384_addcarryx_u32(&x176, &x177, x175, x151, x157); fiat_np384_addcarryx_u32(&x178, &x179, x177, x153, x157); fiat_np384_addcarryx_u32(&x180, &x181, x179, x155, x157); fiat_np384_cmovznz_u32(&x182, x3, (arg5[0]), x158); fiat_np384_cmovznz_u32(&x183, x3, (arg5[1]), x160); fiat_np384_cmovznz_u32(&x184, x3, (arg5[2]), x162); fiat_np384_cmovznz_u32(&x185, x3, (arg5[3]), x164); fiat_np384_cmovznz_u32(&x186, x3, (arg5[4]), x166); fiat_np384_cmovznz_u32(&x187, x3, (arg5[5]), x168); fiat_np384_cmovznz_u32(&x188, x3, (arg5[6]), x170); fiat_np384_cmovznz_u32(&x189, x3, (arg5[7]), x172); fiat_np384_cmovznz_u32(&x190, x3, (arg5[8]), x174); fiat_np384_cmovznz_u32(&x191, x3, (arg5[9]), x176); fiat_np384_cmovznz_u32(&x192, x3, (arg5[10]), x178); fiat_np384_cmovznz_u32(&x193, x3, (arg5[11]), x180); x194 = (fiat_np384_uint1)(x46 & 0x1); fiat_np384_cmovznz_u32(&x195, x194, 0x0, x7); fiat_np384_cmovznz_u32(&x196, x194, 0x0, x8); fiat_np384_cmovznz_u32(&x197, x194, 0x0, x9); fiat_np384_cmovznz_u32(&x198, x194, 0x0, x10); fiat_np384_cmovznz_u32(&x199, x194, 0x0, x11); fiat_np384_cmovznz_u32(&x200, x194, 0x0, x12); fiat_np384_cmovznz_u32(&x201, x194, 0x0, x13); fiat_np384_cmovznz_u32(&x202, x194, 0x0, x14); fiat_np384_cmovznz_u32(&x203, x194, 0x0, x15); fiat_np384_cmovznz_u32(&x204, x194, 0x0, x16); fiat_np384_cmovznz_u32(&x205, x194, 0x0, x17); fiat_np384_cmovznz_u32(&x206, x194, 0x0, x18); fiat_np384_cmovznz_u32(&x207, x194, 0x0, x19); fiat_np384_addcarryx_u32(&x208, &x209, 0x0, x46, x195); fiat_np384_addcarryx_u32(&x210, &x211, x209, x47, x196); fiat_np384_addcarryx_u32(&x212, &x213, x211, x48, x197); fiat_np384_addcarryx_u32(&x214, &x215, x213, x49, x198); fiat_np384_addcarryx_u32(&x216, &x217, x215, x50, x199); fiat_np384_addcarryx_u32(&x218, &x219, x217, x51, x200); fiat_np384_addcarryx_u32(&x220, &x221, x219, x52, x201); fiat_np384_addcarryx_u32(&x222, &x223, x221, x53, x202); fiat_np384_addcarryx_u32(&x224, &x225, x223, x54, x203); fiat_np384_addcarryx_u32(&x226, &x227, x225, x55, x204); fiat_np384_addcarryx_u32(&x228, &x229, x227, x56, x205); fiat_np384_addcarryx_u32(&x230, &x231, x229, x57, x206); fiat_np384_addcarryx_u32(&x232, &x233, x231, x58, x207); fiat_np384_cmovznz_u32(&x234, x194, 0x0, x59); fiat_np384_cmovznz_u32(&x235, x194, 0x0, x60); fiat_np384_cmovznz_u32(&x236, x194, 0x0, x61); fiat_np384_cmovznz_u32(&x237, x194, 0x0, x62); fiat_np384_cmovznz_u32(&x238, x194, 0x0, x63); fiat_np384_cmovznz_u32(&x239, x194, 0x0, x64); fiat_np384_cmovznz_u32(&x240, x194, 0x0, x65); fiat_np384_cmovznz_u32(&x241, x194, 0x0, x66); fiat_np384_cmovznz_u32(&x242, x194, 0x0, x67); fiat_np384_cmovznz_u32(&x243, x194, 0x0, x68); fiat_np384_cmovznz_u32(&x244, x194, 0x0, x69); fiat_np384_cmovznz_u32(&x245, x194, 0x0, x70); fiat_np384_addcarryx_u32(&x246, &x247, 0x0, x182, x234); fiat_np384_addcarryx_u32(&x248, &x249, x247, x183, x235); fiat_np384_addcarryx_u32(&x250, &x251, x249, x184, x236); fiat_np384_addcarryx_u32(&x252, &x253, x251, x185, x237); fiat_np384_addcarryx_u32(&x254, &x255, x253, x186, x238); fiat_np384_addcarryx_u32(&x256, &x257, x255, x187, x239); fiat_np384_addcarryx_u32(&x258, &x259, x257, x188, x240); fiat_np384_addcarryx_u32(&x260, &x261, x259, x189, x241); fiat_np384_addcarryx_u32(&x262, &x263, x261, x190, x242); fiat_np384_addcarryx_u32(&x264, &x265, x263, x191, x243); fiat_np384_addcarryx_u32(&x266, &x267, x265, x192, x244); fiat_np384_addcarryx_u32(&x268, &x269, x267, x193, x245); fiat_np384_subborrowx_u32(&x270, &x271, 0x0, x246, UINT32_C(0xccc52973)); fiat_np384_subborrowx_u32(&x272, &x273, x271, x248, UINT32_C(0xecec196a)); fiat_np384_subborrowx_u32(&x274, &x275, x273, x250, UINT32_C(0x48b0a77a)); fiat_np384_subborrowx_u32(&x276, &x277, x275, x252, UINT32_C(0x581a0db2)); fiat_np384_subborrowx_u32(&x278, &x279, x277, x254, UINT32_C(0xf4372ddf)); fiat_np384_subborrowx_u32(&x280, &x281, x279, x256, UINT32_C(0xc7634d81)); fiat_np384_subborrowx_u32(&x282, &x283, x281, x258, UINT32_C(0xffffffff)); fiat_np384_subborrowx_u32(&x284, &x285, x283, x260, UINT32_C(0xffffffff)); fiat_np384_subborrowx_u32(&x286, &x287, x285, x262, UINT32_C(0xffffffff)); fiat_np384_subborrowx_u32(&x288, &x289, x287, x264, UINT32_C(0xffffffff)); fiat_np384_subborrowx_u32(&x290, &x291, x289, x266, UINT32_C(0xffffffff)); fiat_np384_subborrowx_u32(&x292, &x293, x291, x268, UINT32_C(0xffffffff)); fiat_np384_subborrowx_u32(&x294, &x295, x293, x269, 0x0); fiat_np384_addcarryx_u32(&x296, &x297, 0x0, x6, 0x1); x298 = ((x208 >> 1) | ((x210 << 31) & UINT32_C(0xffffffff))); x299 = ((x210 >> 1) | ((x212 << 31) & UINT32_C(0xffffffff))); x300 = ((x212 >> 1) | ((x214 << 31) & UINT32_C(0xffffffff))); x301 = ((x214 >> 1) | ((x216 << 31) & UINT32_C(0xffffffff))); x302 = ((x216 >> 1) | ((x218 << 31) & UINT32_C(0xffffffff))); x303 = ((x218 >> 1) | ((x220 << 31) & UINT32_C(0xffffffff))); x304 = ((x220 >> 1) | ((x222 << 31) & UINT32_C(0xffffffff))); x305 = ((x222 >> 1) | ((x224 << 31) & UINT32_C(0xffffffff))); x306 = ((x224 >> 1) | ((x226 << 31) & UINT32_C(0xffffffff))); x307 = ((x226 >> 1) | ((x228 << 31) & UINT32_C(0xffffffff))); x308 = ((x228 >> 1) | ((x230 << 31) & UINT32_C(0xffffffff))); x309 = ((x230 >> 1) | ((x232 << 31) & UINT32_C(0xffffffff))); x310 = ((x232 & UINT32_C(0x80000000)) | (x232 >> 1)); fiat_np384_cmovznz_u32(&x311, x120, x95, x71); fiat_np384_cmovznz_u32(&x312, x120, x97, x73); fiat_np384_cmovznz_u32(&x313, x120, x99, x75); fiat_np384_cmovznz_u32(&x314, x120, x101, x77); fiat_np384_cmovznz_u32(&x315, x120, x103, x79); fiat_np384_cmovznz_u32(&x316, x120, x105, x81); fiat_np384_cmovznz_u32(&x317, x120, x107, x83); fiat_np384_cmovznz_u32(&x318, x120, x109, x85); fiat_np384_cmovznz_u32(&x319, x120, x111, x87); fiat_np384_cmovznz_u32(&x320, x120, x113, x89); fiat_np384_cmovznz_u32(&x321, x120, x115, x91); fiat_np384_cmovznz_u32(&x322, x120, x117, x93); fiat_np384_cmovznz_u32(&x323, x295, x270, x246); fiat_np384_cmovznz_u32(&x324, x295, x272, x248); fiat_np384_cmovznz_u32(&x325, x295, x274, x250); fiat_np384_cmovznz_u32(&x326, x295, x276, x252); fiat_np384_cmovznz_u32(&x327, x295, x278, x254); fiat_np384_cmovznz_u32(&x328, x295, x280, x256); fiat_np384_cmovznz_u32(&x329, x295, x282, x258); fiat_np384_cmovznz_u32(&x330, x295, x284, x260); fiat_np384_cmovznz_u32(&x331, x295, x286, x262); fiat_np384_cmovznz_u32(&x332, x295, x288, x264); fiat_np384_cmovznz_u32(&x333, x295, x290, x266); fiat_np384_cmovznz_u32(&x334, x295, x292, x268); *out1 = x296; out2[0] = x7; out2[1] = x8; out2[2] = x9; out2[3] = x10; out2[4] = x11; out2[5] = x12; out2[6] = x13; out2[7] = x14; out2[8] = x15; out2[9] = x16; out2[10] = x17; out2[11] = x18; out2[12] = x19; out3[0] = x298; out3[1] = x299; out3[2] = x300; out3[3] = x301; out3[4] = x302; out3[5] = x303; out3[6] = x304; out3[7] = x305; out3[8] = x306; out3[9] = x307; out3[10] = x308; out3[11] = x309; out3[12] = x310; out4[0] = x311; out4[1] = x312; out4[2] = x313; out4[3] = x314; out4[4] = x315; out4[5] = x316; out4[6] = x317; out4[7] = x318; out4[8] = x319; out4[9] = x320; out4[10] = x321; out4[11] = x322; out5[0] = x323; out5[1] = x324; out5[2] = x325; out5[3] = x326; out5[4] = x327; out5[5] = x328; out5[6] = x329; out5[7] = x330; out5[8] = x331; out5[9] = x332; out5[10] = x333; out5[11] = x334; } /* * The function fiat_np384_to_bytes serializes a field element NOT in the Montgomery domain to bytes in little-endian order. * * Preconditions: * 0 ≤ eval arg1 < m * Postconditions: * out1 = map (λ x, ⌊((eval arg1 mod m) mod 2^(8 * (x + 1))) / 2^(8 * x)⌋) [0..47] * * Input Bounds: * arg1: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff]] * Output Bounds: * out1: [[0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff]] */ static void fiat_np384_to_bytes(uint8_t out1[48], const uint32_t arg1[12]) { uint32_t x1; uint32_t x2; uint32_t x3; uint32_t x4; uint32_t x5; uint32_t x6; uint32_t x7; uint32_t x8; uint32_t x9; uint32_t x10; uint32_t x11; uint32_t x12; uint8_t x13; uint32_t x14; uint8_t x15; uint32_t x16; uint8_t x17; uint8_t x18; uint8_t x19; uint32_t x20; uint8_t x21; uint32_t x22; uint8_t x23; uint8_t x24; uint8_t x25; uint32_t x26; uint8_t x27; uint32_t x28; uint8_t x29; uint8_t x30; uint8_t x31; uint32_t x32; uint8_t x33; uint32_t x34; uint8_t x35; uint8_t x36; uint8_t x37; uint32_t x38; uint8_t x39; uint32_t x40; uint8_t x41; uint8_t x42; uint8_t x43; uint32_t x44; uint8_t x45; uint32_t x46; uint8_t x47; uint8_t x48; uint8_t x49; uint32_t x50; uint8_t x51; uint32_t x52; uint8_t x53; uint8_t x54; uint8_t x55; uint32_t x56; uint8_t x57; uint32_t x58; uint8_t x59; uint8_t x60; uint8_t x61; uint32_t x62; uint8_t x63; uint32_t x64; uint8_t x65; uint8_t x66; uint8_t x67; uint32_t x68; uint8_t x69; uint32_t x70; uint8_t x71; uint8_t x72; uint8_t x73; uint32_t x74; uint8_t x75; uint32_t x76; uint8_t x77; uint8_t x78; uint8_t x79; uint32_t x80; uint8_t x81; uint32_t x82; uint8_t x83; uint8_t x84; x1 = (arg1[11]); x2 = (arg1[10]); x3 = (arg1[9]); x4 = (arg1[8]); x5 = (arg1[7]); x6 = (arg1[6]); x7 = (arg1[5]); x8 = (arg1[4]); x9 = (arg1[3]); x10 = (arg1[2]); x11 = (arg1[1]); x12 = (arg1[0]); x13 = (uint8_t)(x12 & UINT8_C(0xff)); x14 = (x12 >> 8); x15 = (uint8_t)(x14 & UINT8_C(0xff)); x16 = (x14 >> 8); x17 = (uint8_t)(x16 & UINT8_C(0xff)); x18 = (uint8_t)(x16 >> 8); x19 = (uint8_t)(x11 & UINT8_C(0xff)); x20 = (x11 >> 8); x21 = (uint8_t)(x20 & UINT8_C(0xff)); x22 = (x20 >> 8); x23 = (uint8_t)(x22 & UINT8_C(0xff)); x24 = (uint8_t)(x22 >> 8); x25 = (uint8_t)(x10 & UINT8_C(0xff)); x26 = (x10 >> 8); x27 = (uint8_t)(x26 & UINT8_C(0xff)); x28 = (x26 >> 8); x29 = (uint8_t)(x28 & UINT8_C(0xff)); x30 = (uint8_t)(x28 >> 8); x31 = (uint8_t)(x9 & UINT8_C(0xff)); x32 = (x9 >> 8); x33 = (uint8_t)(x32 & UINT8_C(0xff)); x34 = (x32 >> 8); x35 = (uint8_t)(x34 & UINT8_C(0xff)); x36 = (uint8_t)(x34 >> 8); x37 = (uint8_t)(x8 & UINT8_C(0xff)); x38 = (x8 >> 8); x39 = (uint8_t)(x38 & UINT8_C(0xff)); x40 = (x38 >> 8); x41 = (uint8_t)(x40 & UINT8_C(0xff)); x42 = (uint8_t)(x40 >> 8); x43 = (uint8_t)(x7 & UINT8_C(0xff)); x44 = (x7 >> 8); x45 = (uint8_t)(x44 & UINT8_C(0xff)); x46 = (x44 >> 8); x47 = (uint8_t)(x46 & UINT8_C(0xff)); x48 = (uint8_t)(x46 >> 8); x49 = (uint8_t)(x6 & UINT8_C(0xff)); x50 = (x6 >> 8); x51 = (uint8_t)(x50 & UINT8_C(0xff)); x52 = (x50 >> 8); x53 = (uint8_t)(x52 & UINT8_C(0xff)); x54 = (uint8_t)(x52 >> 8); x55 = (uint8_t)(x5 & UINT8_C(0xff)); x56 = (x5 >> 8); x57 = (uint8_t)(x56 & UINT8_C(0xff)); x58 = (x56 >> 8); x59 = (uint8_t)(x58 & UINT8_C(0xff)); x60 = (uint8_t)(x58 >> 8); x61 = (uint8_t)(x4 & UINT8_C(0xff)); x62 = (x4 >> 8); x63 = (uint8_t)(x62 & UINT8_C(0xff)); x64 = (x62 >> 8); x65 = (uint8_t)(x64 & UINT8_C(0xff)); x66 = (uint8_t)(x64 >> 8); x67 = (uint8_t)(x3 & UINT8_C(0xff)); x68 = (x3 >> 8); x69 = (uint8_t)(x68 & UINT8_C(0xff)); x70 = (x68 >> 8); x71 = (uint8_t)(x70 & UINT8_C(0xff)); x72 = (uint8_t)(x70 >> 8); x73 = (uint8_t)(x2 & UINT8_C(0xff)); x74 = (x2 >> 8); x75 = (uint8_t)(x74 & UINT8_C(0xff)); x76 = (x74 >> 8); x77 = (uint8_t)(x76 & UINT8_C(0xff)); x78 = (uint8_t)(x76 >> 8); x79 = (uint8_t)(x1 & UINT8_C(0xff)); x80 = (x1 >> 8); x81 = (uint8_t)(x80 & UINT8_C(0xff)); x82 = (x80 >> 8); x83 = (uint8_t)(x82 & UINT8_C(0xff)); x84 = (uint8_t)(x82 >> 8); out1[0] = x13; out1[1] = x15; out1[2] = x17; out1[3] = x18; out1[4] = x19; out1[5] = x21; out1[6] = x23; out1[7] = x24; out1[8] = x25; out1[9] = x27; out1[10] = x29; out1[11] = x30; out1[12] = x31; out1[13] = x33; out1[14] = x35; out1[15] = x36; out1[16] = x37; out1[17] = x39; out1[18] = x41; out1[19] = x42; out1[20] = x43; out1[21] = x45; out1[22] = x47; out1[23] = x48; out1[24] = x49; out1[25] = x51; out1[26] = x53; out1[27] = x54; out1[28] = x55; out1[29] = x57; out1[30] = x59; out1[31] = x60; out1[32] = x61; out1[33] = x63; out1[34] = x65; out1[35] = x66; out1[36] = x67; out1[37] = x69; out1[38] = x71; out1[39] = x72; out1[40] = x73; out1[41] = x75; out1[42] = x77; out1[43] = x78; out1[44] = x79; out1[45] = x81; out1[46] = x83; out1[47] = x84; } /* * The function fiat_np384_from_bytes deserializes a field element NOT in the Montgomery domain from bytes in little-endian order. * * Preconditions: * 0 ≤ bytes_eval arg1 < m * Postconditions: * eval out1 mod m = bytes_eval arg1 mod m * 0 ≤ eval out1 < m * * Input Bounds: * arg1: [[0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff]] * Output Bounds: * out1: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff]] */ static void fiat_np384_from_bytes(uint32_t out1[12], const uint8_t arg1[48]) { uint32_t x1; uint32_t x2; uint32_t x3; uint8_t x4; uint32_t x5; uint32_t x6; uint32_t x7; uint8_t x8; uint32_t x9; uint32_t x10; uint32_t x11; uint8_t x12; uint32_t x13; uint32_t x14; uint32_t x15; uint8_t x16; uint32_t x17; uint32_t x18; uint32_t x19; uint8_t x20; uint32_t x21; uint32_t x22; uint32_t x23; uint8_t x24; uint32_t x25; uint32_t x26; uint32_t x27; uint8_t x28; uint32_t x29; uint32_t x30; uint32_t x31; uint8_t x32; uint32_t x33; uint32_t x34; uint32_t x35; uint8_t x36; uint32_t x37; uint32_t x38; uint32_t x39; uint8_t x40; uint32_t x41; uint32_t x42; uint32_t x43; uint8_t x44; uint32_t x45; uint32_t x46; uint32_t x47; uint8_t x48; uint32_t x49; uint32_t x50; uint32_t x51; uint32_t x52; uint32_t x53; uint32_t x54; uint32_t x55; uint32_t x56; uint32_t x57; uint32_t x58; uint32_t x59; uint32_t x60; uint32_t x61; uint32_t x62; uint32_t x63; uint32_t x64; uint32_t x65; uint32_t x66; uint32_t x67; uint32_t x68; uint32_t x69; uint32_t x70; uint32_t x71; uint32_t x72; uint32_t x73; uint32_t x74; uint32_t x75; uint32_t x76; uint32_t x77; uint32_t x78; uint32_t x79; uint32_t x80; uint32_t x81; uint32_t x82; uint32_t x83; uint32_t x84; x1 = ((uint32_t)(arg1[47]) << 24); x2 = ((uint32_t)(arg1[46]) << 16); x3 = ((uint32_t)(arg1[45]) << 8); x4 = (arg1[44]); x5 = ((uint32_t)(arg1[43]) << 24); x6 = ((uint32_t)(arg1[42]) << 16); x7 = ((uint32_t)(arg1[41]) << 8); x8 = (arg1[40]); x9 = ((uint32_t)(arg1[39]) << 24); x10 = ((uint32_t)(arg1[38]) << 16); x11 = ((uint32_t)(arg1[37]) << 8); x12 = (arg1[36]); x13 = ((uint32_t)(arg1[35]) << 24); x14 = ((uint32_t)(arg1[34]) << 16); x15 = ((uint32_t)(arg1[33]) << 8); x16 = (arg1[32]); x17 = ((uint32_t)(arg1[31]) << 24); x18 = ((uint32_t)(arg1[30]) << 16); x19 = ((uint32_t)(arg1[29]) << 8); x20 = (arg1[28]); x21 = ((uint32_t)(arg1[27]) << 24); x22 = ((uint32_t)(arg1[26]) << 16); x23 = ((uint32_t)(arg1[25]) << 8); x24 = (arg1[24]); x25 = ((uint32_t)(arg1[23]) << 24); x26 = ((uint32_t)(arg1[22]) << 16); x27 = ((uint32_t)(arg1[21]) << 8); x28 = (arg1[20]); x29 = ((uint32_t)(arg1[19]) << 24); x30 = ((uint32_t)(arg1[18]) << 16); x31 = ((uint32_t)(arg1[17]) << 8); x32 = (arg1[16]); x33 = ((uint32_t)(arg1[15]) << 24); x34 = ((uint32_t)(arg1[14]) << 16); x35 = ((uint32_t)(arg1[13]) << 8); x36 = (arg1[12]); x37 = ((uint32_t)(arg1[11]) << 24); x38 = ((uint32_t)(arg1[10]) << 16); x39 = ((uint32_t)(arg1[9]) << 8); x40 = (arg1[8]); x41 = ((uint32_t)(arg1[7]) << 24); x42 = ((uint32_t)(arg1[6]) << 16); x43 = ((uint32_t)(arg1[5]) << 8); x44 = (arg1[4]); x45 = ((uint32_t)(arg1[3]) << 24); x46 = ((uint32_t)(arg1[2]) << 16); x47 = ((uint32_t)(arg1[1]) << 8); x48 = (arg1[0]); x49 = (x47 + (uint32_t)x48); x50 = (x46 + x49); x51 = (x45 + x50); x52 = (x43 + (uint32_t)x44); x53 = (x42 + x52); x54 = (x41 + x53); x55 = (x39 + (uint32_t)x40); x56 = (x38 + x55); x57 = (x37 + x56); x58 = (x35 + (uint32_t)x36); x59 = (x34 + x58); x60 = (x33 + x59); x61 = (x31 + (uint32_t)x32); x62 = (x30 + x61); x63 = (x29 + x62); x64 = (x27 + (uint32_t)x28); x65 = (x26 + x64); x66 = (x25 + x65); x67 = (x23 + (uint32_t)x24); x68 = (x22 + x67); x69 = (x21 + x68); x70 = (x19 + (uint32_t)x20); x71 = (x18 + x70); x72 = (x17 + x71); x73 = (x15 + (uint32_t)x16); x74 = (x14 + x73); x75 = (x13 + x74); x76 = (x11 + (uint32_t)x12); x77 = (x10 + x76); x78 = (x9 + x77); x79 = (x7 + (uint32_t)x8); x80 = (x6 + x79); x81 = (x5 + x80); x82 = (x3 + (uint32_t)x4); x83 = (x2 + x82); x84 = (x1 + x83); out1[0] = x51; out1[1] = x54; out1[2] = x57; out1[3] = x60; out1[4] = x63; out1[5] = x66; out1[6] = x69; out1[7] = x72; out1[8] = x75; out1[9] = x78; out1[10] = x81; out1[11] = x84; } /* * The function fiat_np384_selectznz is a multi-limb conditional select. * * Postconditions: * out1 = (if arg1 = 0 then arg2 else arg3) * * Input Bounds: * arg1: [0x0 ~> 0x1] * arg2: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff]] * arg3: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff]] * Output Bounds: * out1: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff]] */ static void fiat_np384_selectznz(uint32_t out1[12], fiat_np384_uint1 arg1, const uint32_t arg2[12], const uint32_t arg3[12]) { uint32_t x1; uint32_t x2; uint32_t x3; uint32_t x4; uint32_t x5; uint32_t x6; uint32_t x7; uint32_t x8; uint32_t x9; uint32_t x10; uint32_t x11; uint32_t x12; fiat_np384_cmovznz_u32(&x1, arg1, (arg2[0]), (arg3[0])); fiat_np384_cmovznz_u32(&x2, arg1, (arg2[1]), (arg3[1])); fiat_np384_cmovznz_u32(&x3, arg1, (arg2[2]), (arg3[2])); fiat_np384_cmovznz_u32(&x4, arg1, (arg2[3]), (arg3[3])); fiat_np384_cmovznz_u32(&x5, arg1, (arg2[4]), (arg3[4])); fiat_np384_cmovznz_u32(&x6, arg1, (arg2[5]), (arg3[5])); fiat_np384_cmovznz_u32(&x7, arg1, (arg2[6]), (arg3[6])); fiat_np384_cmovznz_u32(&x8, arg1, (arg2[7]), (arg3[7])); fiat_np384_cmovznz_u32(&x9, arg1, (arg2[8]), (arg3[8])); fiat_np384_cmovznz_u32(&x10, arg1, (arg2[9]), (arg3[9])); fiat_np384_cmovznz_u32(&x11, arg1, (arg2[10]), (arg3[10])); fiat_np384_cmovznz_u32(&x12, arg1, (arg2[11]), (arg3[11])); out1[0] = x1; out1[1] = x2; out1[2] = x3; out1[3] = x4; out1[4] = x5; out1[5] = x6; out1[6] = x7; out1[7] = x8; out1[8] = x9; out1[9] = x10; out1[10] = x11; out1[11] = x12; }
mirage-crypto
2.0.2
ISC
https://github.com/mirage/mirage-crypto
git+https://github.com/mirage/mirage-crypto.git
h
mirage-crypto-2.0.2/ec/native/np384_64.h
/* Autogenerated: '../fiat-crypto/src/ExtractionOCaml/word_by_word_montgomery' --static --use-value-barrier --inline-internal np384 64 0xffffffffffffffffffffffffffffffffffffffffffffffffc7634d81f4372ddf581a0db248b0a77aecec196accc52973 mul add opp from_montgomery to_montgomery one msat divstep_precomp divstep to_bytes from_bytes selectznz */ /* curve description: np384 */ /* machine_wordsize = 64 (from "64") */ /* requested operations: mul, add, opp, from_montgomery, to_montgomery, one, msat, divstep_precomp, divstep, to_bytes, from_bytes, selectznz */ /* m = 0xffffffffffffffffffffffffffffffffffffffffffffffffc7634d81f4372ddf581a0db248b0a77aecec196accc52973 (from "0xffffffffffffffffffffffffffffffffffffffffffffffffc7634d81f4372ddf581a0db248b0a77aecec196accc52973") */ /* */ /* NOTE: In addition to the bounds specified above each function, all */ /* functions synthesized for this Montgomery arithmetic require the */ /* input to be strictly less than the prime modulus (m), and also */ /* require the input to be in the unique saturated representation. */ /* All functions also ensure that these two properties are true of */ /* return values. */ /* */ /* Computed values: */ /* eval z = z[0] + (z[1] << 64) + (z[2] << 128) + (z[3] << 192) + (z[4] << 256) + (z[5] << 0x140) */ /* bytes_eval z = z[0] + (z[1] << 8) + (z[2] << 16) + (z[3] << 24) + (z[4] << 32) + (z[5] << 40) + (z[6] << 48) + (z[7] << 56) + (z[8] << 64) + (z[9] << 72) + (z[10] << 80) + (z[11] << 88) + (z[12] << 96) + (z[13] << 104) + (z[14] << 112) + (z[15] << 120) + (z[16] << 128) + (z[17] << 136) + (z[18] << 144) + (z[19] << 152) + (z[20] << 160) + (z[21] << 168) + (z[22] << 176) + (z[23] << 184) + (z[24] << 192) + (z[25] << 200) + (z[26] << 208) + (z[27] << 216) + (z[28] << 224) + (z[29] << 232) + (z[30] << 240) + (z[31] << 248) + (z[32] << 256) + (z[33] << 0x108) + (z[34] << 0x110) + (z[35] << 0x118) + (z[36] << 0x120) + (z[37] << 0x128) + (z[38] << 0x130) + (z[39] << 0x138) + (z[40] << 0x140) + (z[41] << 0x148) + (z[42] << 0x150) + (z[43] << 0x158) + (z[44] << 0x160) + (z[45] << 0x168) + (z[46] << 0x170) + (z[47] << 0x178) */ /* twos_complement_eval z = let x1 := z[0] + (z[1] << 64) + (z[2] << 128) + (z[3] << 192) + (z[4] << 256) + (z[5] << 0x140) in */ /* if x1 & (2^384-1) < 2^383 then x1 & (2^384-1) else (x1 & (2^384-1)) - 2^384 */ #include <stdint.h> typedef unsigned char fiat_np384_uint1; typedef signed char fiat_np384_int1; #if defined(__GNUC__) || defined(__clang__) # define FIAT_NP384_FIAT_EXTENSION __extension__ # define FIAT_NP384_FIAT_INLINE __inline__ #else # define FIAT_NP384_FIAT_EXTENSION # define FIAT_NP384_FIAT_INLINE #endif FIAT_NP384_FIAT_EXTENSION typedef signed __int128 fiat_np384_int128; FIAT_NP384_FIAT_EXTENSION typedef unsigned __int128 fiat_np384_uint128; /* The type fiat_np384_montgomery_domain_field_element is a field element in the Montgomery domain. */ /* Bounds: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]] */ typedef uint64_t fiat_np384_montgomery_domain_field_element[6]; /* The type fiat_np384_non_montgomery_domain_field_element is a field element NOT in the Montgomery domain. */ /* Bounds: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]] */ typedef uint64_t fiat_np384_non_montgomery_domain_field_element[6]; #if (-1 & 3) != 3 #error "This code only works on a two's complement system" #endif #if !defined(FIAT_NP384_NO_ASM) && (defined(__GNUC__) || defined(__clang__)) static __inline__ uint64_t fiat_np384_value_barrier_u64(uint64_t a) { __asm__("" : "+r"(a) : /* no inputs */); return a; } #else # define fiat_np384_value_barrier_u64(x) (x) #endif /* * The function fiat_np384_addcarryx_u64 is an addition with carry. * * Postconditions: * out1 = (arg1 + arg2 + arg3) mod 2^64 * out2 = ⌊(arg1 + arg2 + arg3) / 2^64⌋ * * Input Bounds: * arg1: [0x0 ~> 0x1] * arg2: [0x0 ~> 0xffffffffffffffff] * arg3: [0x0 ~> 0xffffffffffffffff] * Output Bounds: * out1: [0x0 ~> 0xffffffffffffffff] * out2: [0x0 ~> 0x1] */ static FIAT_NP384_FIAT_INLINE void fiat_np384_addcarryx_u64(uint64_t* out1, fiat_np384_uint1* out2, fiat_np384_uint1 arg1, uint64_t arg2, uint64_t arg3) { fiat_np384_uint128 x1; uint64_t x2; fiat_np384_uint1 x3; x1 = ((arg1 + (fiat_np384_uint128)arg2) + arg3); x2 = (uint64_t)(x1 & UINT64_C(0xffffffffffffffff)); x3 = (fiat_np384_uint1)(x1 >> 64); *out1 = x2; *out2 = x3; } /* * The function fiat_np384_subborrowx_u64 is a subtraction with borrow. * * Postconditions: * out1 = (-arg1 + arg2 + -arg3) mod 2^64 * out2 = -⌊(-arg1 + arg2 + -arg3) / 2^64⌋ * * Input Bounds: * arg1: [0x0 ~> 0x1] * arg2: [0x0 ~> 0xffffffffffffffff] * arg3: [0x0 ~> 0xffffffffffffffff] * Output Bounds: * out1: [0x0 ~> 0xffffffffffffffff] * out2: [0x0 ~> 0x1] */ static FIAT_NP384_FIAT_INLINE void fiat_np384_subborrowx_u64(uint64_t* out1, fiat_np384_uint1* out2, fiat_np384_uint1 arg1, uint64_t arg2, uint64_t arg3) { fiat_np384_int128 x1; fiat_np384_int1 x2; uint64_t x3; x1 = ((arg2 - (fiat_np384_int128)arg1) - arg3); x2 = (fiat_np384_int1)(x1 >> 64); x3 = (uint64_t)(x1 & UINT64_C(0xffffffffffffffff)); *out1 = x3; *out2 = (fiat_np384_uint1)(0x0 - x2); } /* * The function fiat_np384_mulx_u64 is a multiplication, returning the full double-width result. * * Postconditions: * out1 = (arg1 * arg2) mod 2^64 * out2 = ⌊arg1 * arg2 / 2^64⌋ * * Input Bounds: * arg1: [0x0 ~> 0xffffffffffffffff] * arg2: [0x0 ~> 0xffffffffffffffff] * Output Bounds: * out1: [0x0 ~> 0xffffffffffffffff] * out2: [0x0 ~> 0xffffffffffffffff] */ static FIAT_NP384_FIAT_INLINE void fiat_np384_mulx_u64(uint64_t* out1, uint64_t* out2, uint64_t arg1, uint64_t arg2) { fiat_np384_uint128 x1; uint64_t x2; uint64_t x3; x1 = ((fiat_np384_uint128)arg1 * arg2); x2 = (uint64_t)(x1 & UINT64_C(0xffffffffffffffff)); x3 = (uint64_t)(x1 >> 64); *out1 = x2; *out2 = x3; } /* * The function fiat_np384_cmovznz_u64 is a single-word conditional move. * * Postconditions: * out1 = (if arg1 = 0 then arg2 else arg3) * * Input Bounds: * arg1: [0x0 ~> 0x1] * arg2: [0x0 ~> 0xffffffffffffffff] * arg3: [0x0 ~> 0xffffffffffffffff] * Output Bounds: * out1: [0x0 ~> 0xffffffffffffffff] */ static FIAT_NP384_FIAT_INLINE void fiat_np384_cmovznz_u64(uint64_t* out1, fiat_np384_uint1 arg1, uint64_t arg2, uint64_t arg3) { fiat_np384_uint1 x1; uint64_t x2; uint64_t x3; x1 = (!(!arg1)); x2 = ((fiat_np384_int1)(0x0 - x1) & UINT64_C(0xffffffffffffffff)); x3 = ((fiat_np384_value_barrier_u64(x2) & arg3) | (fiat_np384_value_barrier_u64((~x2)) & arg2)); *out1 = x3; } /* * The function fiat_np384_mul multiplies two field elements in the Montgomery domain. * * Preconditions: * 0 ≤ eval arg1 < m * 0 ≤ eval arg2 < m * Postconditions: * eval (from_montgomery out1) mod m = (eval (from_montgomery arg1) * eval (from_montgomery arg2)) mod m * 0 ≤ eval out1 < m * */ static void fiat_np384_mul(fiat_np384_montgomery_domain_field_element out1, const fiat_np384_montgomery_domain_field_element arg1, const fiat_np384_montgomery_domain_field_element arg2) { uint64_t x1; uint64_t x2; uint64_t x3; uint64_t x4; uint64_t x5; uint64_t x6; uint64_t x7; uint64_t x8; uint64_t x9; uint64_t x10; uint64_t x11; uint64_t x12; uint64_t x13; uint64_t x14; uint64_t x15; uint64_t x16; uint64_t x17; uint64_t x18; uint64_t x19; fiat_np384_uint1 x20; uint64_t x21; fiat_np384_uint1 x22; uint64_t x23; fiat_np384_uint1 x24; uint64_t x25; fiat_np384_uint1 x26; uint64_t x27; fiat_np384_uint1 x28; uint64_t x29; uint64_t x30; uint64_t x31; uint64_t x32; uint64_t x33; uint64_t x34; uint64_t x35; uint64_t x36; uint64_t x37; uint64_t x38; uint64_t x39; uint64_t x40; uint64_t x41; uint64_t x42; uint64_t x43; uint64_t x44; fiat_np384_uint1 x45; uint64_t x46; fiat_np384_uint1 x47; uint64_t x48; fiat_np384_uint1 x49; uint64_t x50; fiat_np384_uint1 x51; uint64_t x52; fiat_np384_uint1 x53; uint64_t x54; uint64_t x55; fiat_np384_uint1 x56; uint64_t x57; fiat_np384_uint1 x58; uint64_t x59; fiat_np384_uint1 x60; uint64_t x61; fiat_np384_uint1 x62; uint64_t x63; fiat_np384_uint1 x64; uint64_t x65; fiat_np384_uint1 x66; uint64_t x67; fiat_np384_uint1 x68; uint64_t x69; uint64_t x70; uint64_t x71; uint64_t x72; uint64_t x73; uint64_t x74; uint64_t x75; uint64_t x76; uint64_t x77; uint64_t x78; uint64_t x79; uint64_t x80; uint64_t x81; fiat_np384_uint1 x82; uint64_t x83; fiat_np384_uint1 x84; uint64_t x85; fiat_np384_uint1 x86; uint64_t x87; fiat_np384_uint1 x88; uint64_t x89; fiat_np384_uint1 x90; uint64_t x91; uint64_t x92; fiat_np384_uint1 x93; uint64_t x94; fiat_np384_uint1 x95; uint64_t x96; fiat_np384_uint1 x97; uint64_t x98; fiat_np384_uint1 x99; uint64_t x100; fiat_np384_uint1 x101; uint64_t x102; fiat_np384_uint1 x103; uint64_t x104; fiat_np384_uint1 x105; uint64_t x106; uint64_t x107; uint64_t x108; uint64_t x109; uint64_t x110; uint64_t x111; uint64_t x112; uint64_t x113; uint64_t x114; uint64_t x115; uint64_t x116; uint64_t x117; uint64_t x118; uint64_t x119; uint64_t x120; fiat_np384_uint1 x121; uint64_t x122; fiat_np384_uint1 x123; uint64_t x124; fiat_np384_uint1 x125; uint64_t x126; fiat_np384_uint1 x127; uint64_t x128; fiat_np384_uint1 x129; uint64_t x130; uint64_t x131; fiat_np384_uint1 x132; uint64_t x133; fiat_np384_uint1 x134; uint64_t x135; fiat_np384_uint1 x136; uint64_t x137; fiat_np384_uint1 x138; uint64_t x139; fiat_np384_uint1 x140; uint64_t x141; fiat_np384_uint1 x142; uint64_t x143; fiat_np384_uint1 x144; uint64_t x145; uint64_t x146; uint64_t x147; uint64_t x148; uint64_t x149; uint64_t x150; uint64_t x151; uint64_t x152; uint64_t x153; uint64_t x154; uint64_t x155; uint64_t x156; uint64_t x157; uint64_t x158; fiat_np384_uint1 x159; uint64_t x160; fiat_np384_uint1 x161; uint64_t x162; fiat_np384_uint1 x163; uint64_t x164; fiat_np384_uint1 x165; uint64_t x166; fiat_np384_uint1 x167; uint64_t x168; uint64_t x169; fiat_np384_uint1 x170; uint64_t x171; fiat_np384_uint1 x172; uint64_t x173; fiat_np384_uint1 x174; uint64_t x175; fiat_np384_uint1 x176; uint64_t x177; fiat_np384_uint1 x178; uint64_t x179; fiat_np384_uint1 x180; uint64_t x181; fiat_np384_uint1 x182; uint64_t x183; uint64_t x184; uint64_t x185; uint64_t x186; uint64_t x187; uint64_t x188; uint64_t x189; uint64_t x190; uint64_t x191; uint64_t x192; uint64_t x193; uint64_t x194; uint64_t x195; uint64_t x196; uint64_t x197; fiat_np384_uint1 x198; uint64_t x199; fiat_np384_uint1 x200; uint64_t x201; fiat_np384_uint1 x202; uint64_t x203; fiat_np384_uint1 x204; uint64_t x205; fiat_np384_uint1 x206; uint64_t x207; uint64_t x208; fiat_np384_uint1 x209; uint64_t x210; fiat_np384_uint1 x211; uint64_t x212; fiat_np384_uint1 x213; uint64_t x214; fiat_np384_uint1 x215; uint64_t x216; fiat_np384_uint1 x217; uint64_t x218; fiat_np384_uint1 x219; uint64_t x220; fiat_np384_uint1 x221; uint64_t x222; uint64_t x223; uint64_t x224; uint64_t x225; uint64_t x226; uint64_t x227; uint64_t x228; uint64_t x229; uint64_t x230; uint64_t x231; uint64_t x232; uint64_t x233; uint64_t x234; uint64_t x235; fiat_np384_uint1 x236; uint64_t x237; fiat_np384_uint1 x238; uint64_t x239; fiat_np384_uint1 x240; uint64_t x241; fiat_np384_uint1 x242; uint64_t x243; fiat_np384_uint1 x244; uint64_t x245; uint64_t x246; fiat_np384_uint1 x247; uint64_t x248; fiat_np384_uint1 x249; uint64_t x250; fiat_np384_uint1 x251; uint64_t x252; fiat_np384_uint1 x253; uint64_t x254; fiat_np384_uint1 x255; uint64_t x256; fiat_np384_uint1 x257; uint64_t x258; fiat_np384_uint1 x259; uint64_t x260; uint64_t x261; uint64_t x262; uint64_t x263; uint64_t x264; uint64_t x265; uint64_t x266; uint64_t x267; uint64_t x268; uint64_t x269; uint64_t x270; uint64_t x271; uint64_t x272; uint64_t x273; uint64_t x274; fiat_np384_uint1 x275; uint64_t x276; fiat_np384_uint1 x277; uint64_t x278; fiat_np384_uint1 x279; uint64_t x280; fiat_np384_uint1 x281; uint64_t x282; fiat_np384_uint1 x283; uint64_t x284; uint64_t x285; fiat_np384_uint1 x286; uint64_t x287; fiat_np384_uint1 x288; uint64_t x289; fiat_np384_uint1 x290; uint64_t x291; fiat_np384_uint1 x292; uint64_t x293; fiat_np384_uint1 x294; uint64_t x295; fiat_np384_uint1 x296; uint64_t x297; fiat_np384_uint1 x298; uint64_t x299; uint64_t x300; uint64_t x301; uint64_t x302; uint64_t x303; uint64_t x304; uint64_t x305; uint64_t x306; uint64_t x307; uint64_t x308; uint64_t x309; uint64_t x310; uint64_t x311; uint64_t x312; fiat_np384_uint1 x313; uint64_t x314; fiat_np384_uint1 x315; uint64_t x316; fiat_np384_uint1 x317; uint64_t x318; fiat_np384_uint1 x319; uint64_t x320; fiat_np384_uint1 x321; uint64_t x322; uint64_t x323; fiat_np384_uint1 x324; uint64_t x325; fiat_np384_uint1 x326; uint64_t x327; fiat_np384_uint1 x328; uint64_t x329; fiat_np384_uint1 x330; uint64_t x331; fiat_np384_uint1 x332; uint64_t x333; fiat_np384_uint1 x334; uint64_t x335; fiat_np384_uint1 x336; uint64_t x337; uint64_t x338; uint64_t x339; uint64_t x340; uint64_t x341; uint64_t x342; uint64_t x343; uint64_t x344; uint64_t x345; uint64_t x346; uint64_t x347; uint64_t x348; uint64_t x349; uint64_t x350; uint64_t x351; fiat_np384_uint1 x352; uint64_t x353; fiat_np384_uint1 x354; uint64_t x355; fiat_np384_uint1 x356; uint64_t x357; fiat_np384_uint1 x358; uint64_t x359; fiat_np384_uint1 x360; uint64_t x361; uint64_t x362; fiat_np384_uint1 x363; uint64_t x364; fiat_np384_uint1 x365; uint64_t x366; fiat_np384_uint1 x367; uint64_t x368; fiat_np384_uint1 x369; uint64_t x370; fiat_np384_uint1 x371; uint64_t x372; fiat_np384_uint1 x373; uint64_t x374; fiat_np384_uint1 x375; uint64_t x376; uint64_t x377; uint64_t x378; uint64_t x379; uint64_t x380; uint64_t x381; uint64_t x382; uint64_t x383; uint64_t x384; uint64_t x385; uint64_t x386; uint64_t x387; uint64_t x388; uint64_t x389; fiat_np384_uint1 x390; uint64_t x391; fiat_np384_uint1 x392; uint64_t x393; fiat_np384_uint1 x394; uint64_t x395; fiat_np384_uint1 x396; uint64_t x397; fiat_np384_uint1 x398; uint64_t x399; uint64_t x400; fiat_np384_uint1 x401; uint64_t x402; fiat_np384_uint1 x403; uint64_t x404; fiat_np384_uint1 x405; uint64_t x406; fiat_np384_uint1 x407; uint64_t x408; fiat_np384_uint1 x409; uint64_t x410; fiat_np384_uint1 x411; uint64_t x412; fiat_np384_uint1 x413; uint64_t x414; uint64_t x415; uint64_t x416; uint64_t x417; uint64_t x418; uint64_t x419; uint64_t x420; uint64_t x421; uint64_t x422; uint64_t x423; uint64_t x424; uint64_t x425; uint64_t x426; uint64_t x427; uint64_t x428; fiat_np384_uint1 x429; uint64_t x430; fiat_np384_uint1 x431; uint64_t x432; fiat_np384_uint1 x433; uint64_t x434; fiat_np384_uint1 x435; uint64_t x436; fiat_np384_uint1 x437; uint64_t x438; uint64_t x439; fiat_np384_uint1 x440; uint64_t x441; fiat_np384_uint1 x442; uint64_t x443; fiat_np384_uint1 x444; uint64_t x445; fiat_np384_uint1 x446; uint64_t x447; fiat_np384_uint1 x448; uint64_t x449; fiat_np384_uint1 x450; uint64_t x451; fiat_np384_uint1 x452; uint64_t x453; uint64_t x454; fiat_np384_uint1 x455; uint64_t x456; fiat_np384_uint1 x457; uint64_t x458; fiat_np384_uint1 x459; uint64_t x460; fiat_np384_uint1 x461; uint64_t x462; fiat_np384_uint1 x463; uint64_t x464; fiat_np384_uint1 x465; uint64_t x466; fiat_np384_uint1 x467; uint64_t x468; uint64_t x469; uint64_t x470; uint64_t x471; uint64_t x472; uint64_t x473; x1 = (arg1[1]); x2 = (arg1[2]); x3 = (arg1[3]); x4 = (arg1[4]); x5 = (arg1[5]); x6 = (arg1[0]); fiat_np384_mulx_u64(&x7, &x8, x6, (arg2[5])); fiat_np384_mulx_u64(&x9, &x10, x6, (arg2[4])); fiat_np384_mulx_u64(&x11, &x12, x6, (arg2[3])); fiat_np384_mulx_u64(&x13, &x14, x6, (arg2[2])); fiat_np384_mulx_u64(&x15, &x16, x6, (arg2[1])); fiat_np384_mulx_u64(&x17, &x18, x6, (arg2[0])); fiat_np384_addcarryx_u64(&x19, &x20, 0x0, x18, x15); fiat_np384_addcarryx_u64(&x21, &x22, x20, x16, x13); fiat_np384_addcarryx_u64(&x23, &x24, x22, x14, x11); fiat_np384_addcarryx_u64(&x25, &x26, x24, x12, x9); fiat_np384_addcarryx_u64(&x27, &x28, x26, x10, x7); x29 = (x28 + x8); fiat_np384_mulx_u64(&x30, &x31, x17, UINT64_C(0x6ed46089e88fdc45)); fiat_np384_mulx_u64(&x32, &x33, x30, UINT64_C(0xffffffffffffffff)); fiat_np384_mulx_u64(&x34, &x35, x30, UINT64_C(0xffffffffffffffff)); fiat_np384_mulx_u64(&x36, &x37, x30, UINT64_C(0xffffffffffffffff)); fiat_np384_mulx_u64(&x38, &x39, x30, UINT64_C(0xc7634d81f4372ddf)); fiat_np384_mulx_u64(&x40, &x41, x30, UINT64_C(0x581a0db248b0a77a)); fiat_np384_mulx_u64(&x42, &x43, x30, UINT64_C(0xecec196accc52973)); fiat_np384_addcarryx_u64(&x44, &x45, 0x0, x43, x40); fiat_np384_addcarryx_u64(&x46, &x47, x45, x41, x38); fiat_np384_addcarryx_u64(&x48, &x49, x47, x39, x36); fiat_np384_addcarryx_u64(&x50, &x51, x49, x37, x34); fiat_np384_addcarryx_u64(&x52, &x53, x51, x35, x32); x54 = (x53 + x33); fiat_np384_addcarryx_u64(&x55, &x56, 0x0, x17, x42); fiat_np384_addcarryx_u64(&x57, &x58, x56, x19, x44); fiat_np384_addcarryx_u64(&x59, &x60, x58, x21, x46); fiat_np384_addcarryx_u64(&x61, &x62, x60, x23, x48); fiat_np384_addcarryx_u64(&x63, &x64, x62, x25, x50); fiat_np384_addcarryx_u64(&x65, &x66, x64, x27, x52); fiat_np384_addcarryx_u64(&x67, &x68, x66, x29, x54); fiat_np384_mulx_u64(&x69, &x70, x1, (arg2[5])); fiat_np384_mulx_u64(&x71, &x72, x1, (arg2[4])); fiat_np384_mulx_u64(&x73, &x74, x1, (arg2[3])); fiat_np384_mulx_u64(&x75, &x76, x1, (arg2[2])); fiat_np384_mulx_u64(&x77, &x78, x1, (arg2[1])); fiat_np384_mulx_u64(&x79, &x80, x1, (arg2[0])); fiat_np384_addcarryx_u64(&x81, &x82, 0x0, x80, x77); fiat_np384_addcarryx_u64(&x83, &x84, x82, x78, x75); fiat_np384_addcarryx_u64(&x85, &x86, x84, x76, x73); fiat_np384_addcarryx_u64(&x87, &x88, x86, x74, x71); fiat_np384_addcarryx_u64(&x89, &x90, x88, x72, x69); x91 = (x90 + x70); fiat_np384_addcarryx_u64(&x92, &x93, 0x0, x57, x79); fiat_np384_addcarryx_u64(&x94, &x95, x93, x59, x81); fiat_np384_addcarryx_u64(&x96, &x97, x95, x61, x83); fiat_np384_addcarryx_u64(&x98, &x99, x97, x63, x85); fiat_np384_addcarryx_u64(&x100, &x101, x99, x65, x87); fiat_np384_addcarryx_u64(&x102, &x103, x101, x67, x89); fiat_np384_addcarryx_u64(&x104, &x105, x103, x68, x91); fiat_np384_mulx_u64(&x106, &x107, x92, UINT64_C(0x6ed46089e88fdc45)); fiat_np384_mulx_u64(&x108, &x109, x106, UINT64_C(0xffffffffffffffff)); fiat_np384_mulx_u64(&x110, &x111, x106, UINT64_C(0xffffffffffffffff)); fiat_np384_mulx_u64(&x112, &x113, x106, UINT64_C(0xffffffffffffffff)); fiat_np384_mulx_u64(&x114, &x115, x106, UINT64_C(0xc7634d81f4372ddf)); fiat_np384_mulx_u64(&x116, &x117, x106, UINT64_C(0x581a0db248b0a77a)); fiat_np384_mulx_u64(&x118, &x119, x106, UINT64_C(0xecec196accc52973)); fiat_np384_addcarryx_u64(&x120, &x121, 0x0, x119, x116); fiat_np384_addcarryx_u64(&x122, &x123, x121, x117, x114); fiat_np384_addcarryx_u64(&x124, &x125, x123, x115, x112); fiat_np384_addcarryx_u64(&x126, &x127, x125, x113, x110); fiat_np384_addcarryx_u64(&x128, &x129, x127, x111, x108); x130 = (x129 + x109); fiat_np384_addcarryx_u64(&x131, &x132, 0x0, x92, x118); fiat_np384_addcarryx_u64(&x133, &x134, x132, x94, x120); fiat_np384_addcarryx_u64(&x135, &x136, x134, x96, x122); fiat_np384_addcarryx_u64(&x137, &x138, x136, x98, x124); fiat_np384_addcarryx_u64(&x139, &x140, x138, x100, x126); fiat_np384_addcarryx_u64(&x141, &x142, x140, x102, x128); fiat_np384_addcarryx_u64(&x143, &x144, x142, x104, x130); x145 = ((uint64_t)x144 + x105); fiat_np384_mulx_u64(&x146, &x147, x2, (arg2[5])); fiat_np384_mulx_u64(&x148, &x149, x2, (arg2[4])); fiat_np384_mulx_u64(&x150, &x151, x2, (arg2[3])); fiat_np384_mulx_u64(&x152, &x153, x2, (arg2[2])); fiat_np384_mulx_u64(&x154, &x155, x2, (arg2[1])); fiat_np384_mulx_u64(&x156, &x157, x2, (arg2[0])); fiat_np384_addcarryx_u64(&x158, &x159, 0x0, x157, x154); fiat_np384_addcarryx_u64(&x160, &x161, x159, x155, x152); fiat_np384_addcarryx_u64(&x162, &x163, x161, x153, x150); fiat_np384_addcarryx_u64(&x164, &x165, x163, x151, x148); fiat_np384_addcarryx_u64(&x166, &x167, x165, x149, x146); x168 = (x167 + x147); fiat_np384_addcarryx_u64(&x169, &x170, 0x0, x133, x156); fiat_np384_addcarryx_u64(&x171, &x172, x170, x135, x158); fiat_np384_addcarryx_u64(&x173, &x174, x172, x137, x160); fiat_np384_addcarryx_u64(&x175, &x176, x174, x139, x162); fiat_np384_addcarryx_u64(&x177, &x178, x176, x141, x164); fiat_np384_addcarryx_u64(&x179, &x180, x178, x143, x166); fiat_np384_addcarryx_u64(&x181, &x182, x180, x145, x168); fiat_np384_mulx_u64(&x183, &x184, x169, UINT64_C(0x6ed46089e88fdc45)); fiat_np384_mulx_u64(&x185, &x186, x183, UINT64_C(0xffffffffffffffff)); fiat_np384_mulx_u64(&x187, &x188, x183, UINT64_C(0xffffffffffffffff)); fiat_np384_mulx_u64(&x189, &x190, x183, UINT64_C(0xffffffffffffffff)); fiat_np384_mulx_u64(&x191, &x192, x183, UINT64_C(0xc7634d81f4372ddf)); fiat_np384_mulx_u64(&x193, &x194, x183, UINT64_C(0x581a0db248b0a77a)); fiat_np384_mulx_u64(&x195, &x196, x183, UINT64_C(0xecec196accc52973)); fiat_np384_addcarryx_u64(&x197, &x198, 0x0, x196, x193); fiat_np384_addcarryx_u64(&x199, &x200, x198, x194, x191); fiat_np384_addcarryx_u64(&x201, &x202, x200, x192, x189); fiat_np384_addcarryx_u64(&x203, &x204, x202, x190, x187); fiat_np384_addcarryx_u64(&x205, &x206, x204, x188, x185); x207 = (x206 + x186); fiat_np384_addcarryx_u64(&x208, &x209, 0x0, x169, x195); fiat_np384_addcarryx_u64(&x210, &x211, x209, x171, x197); fiat_np384_addcarryx_u64(&x212, &x213, x211, x173, x199); fiat_np384_addcarryx_u64(&x214, &x215, x213, x175, x201); fiat_np384_addcarryx_u64(&x216, &x217, x215, x177, x203); fiat_np384_addcarryx_u64(&x218, &x219, x217, x179, x205); fiat_np384_addcarryx_u64(&x220, &x221, x219, x181, x207); x222 = ((uint64_t)x221 + x182); fiat_np384_mulx_u64(&x223, &x224, x3, (arg2[5])); fiat_np384_mulx_u64(&x225, &x226, x3, (arg2[4])); fiat_np384_mulx_u64(&x227, &x228, x3, (arg2[3])); fiat_np384_mulx_u64(&x229, &x230, x3, (arg2[2])); fiat_np384_mulx_u64(&x231, &x232, x3, (arg2[1])); fiat_np384_mulx_u64(&x233, &x234, x3, (arg2[0])); fiat_np384_addcarryx_u64(&x235, &x236, 0x0, x234, x231); fiat_np384_addcarryx_u64(&x237, &x238, x236, x232, x229); fiat_np384_addcarryx_u64(&x239, &x240, x238, x230, x227); fiat_np384_addcarryx_u64(&x241, &x242, x240, x228, x225); fiat_np384_addcarryx_u64(&x243, &x244, x242, x226, x223); x245 = (x244 + x224); fiat_np384_addcarryx_u64(&x246, &x247, 0x0, x210, x233); fiat_np384_addcarryx_u64(&x248, &x249, x247, x212, x235); fiat_np384_addcarryx_u64(&x250, &x251, x249, x214, x237); fiat_np384_addcarryx_u64(&x252, &x253, x251, x216, x239); fiat_np384_addcarryx_u64(&x254, &x255, x253, x218, x241); fiat_np384_addcarryx_u64(&x256, &x257, x255, x220, x243); fiat_np384_addcarryx_u64(&x258, &x259, x257, x222, x245); fiat_np384_mulx_u64(&x260, &x261, x246, UINT64_C(0x6ed46089e88fdc45)); fiat_np384_mulx_u64(&x262, &x263, x260, UINT64_C(0xffffffffffffffff)); fiat_np384_mulx_u64(&x264, &x265, x260, UINT64_C(0xffffffffffffffff)); fiat_np384_mulx_u64(&x266, &x267, x260, UINT64_C(0xffffffffffffffff)); fiat_np384_mulx_u64(&x268, &x269, x260, UINT64_C(0xc7634d81f4372ddf)); fiat_np384_mulx_u64(&x270, &x271, x260, UINT64_C(0x581a0db248b0a77a)); fiat_np384_mulx_u64(&x272, &x273, x260, UINT64_C(0xecec196accc52973)); fiat_np384_addcarryx_u64(&x274, &x275, 0x0, x273, x270); fiat_np384_addcarryx_u64(&x276, &x277, x275, x271, x268); fiat_np384_addcarryx_u64(&x278, &x279, x277, x269, x266); fiat_np384_addcarryx_u64(&x280, &x281, x279, x267, x264); fiat_np384_addcarryx_u64(&x282, &x283, x281, x265, x262); x284 = (x283 + x263); fiat_np384_addcarryx_u64(&x285, &x286, 0x0, x246, x272); fiat_np384_addcarryx_u64(&x287, &x288, x286, x248, x274); fiat_np384_addcarryx_u64(&x289, &x290, x288, x250, x276); fiat_np384_addcarryx_u64(&x291, &x292, x290, x252, x278); fiat_np384_addcarryx_u64(&x293, &x294, x292, x254, x280); fiat_np384_addcarryx_u64(&x295, &x296, x294, x256, x282); fiat_np384_addcarryx_u64(&x297, &x298, x296, x258, x284); x299 = ((uint64_t)x298 + x259); fiat_np384_mulx_u64(&x300, &x301, x4, (arg2[5])); fiat_np384_mulx_u64(&x302, &x303, x4, (arg2[4])); fiat_np384_mulx_u64(&x304, &x305, x4, (arg2[3])); fiat_np384_mulx_u64(&x306, &x307, x4, (arg2[2])); fiat_np384_mulx_u64(&x308, &x309, x4, (arg2[1])); fiat_np384_mulx_u64(&x310, &x311, x4, (arg2[0])); fiat_np384_addcarryx_u64(&x312, &x313, 0x0, x311, x308); fiat_np384_addcarryx_u64(&x314, &x315, x313, x309, x306); fiat_np384_addcarryx_u64(&x316, &x317, x315, x307, x304); fiat_np384_addcarryx_u64(&x318, &x319, x317, x305, x302); fiat_np384_addcarryx_u64(&x320, &x321, x319, x303, x300); x322 = (x321 + x301); fiat_np384_addcarryx_u64(&x323, &x324, 0x0, x287, x310); fiat_np384_addcarryx_u64(&x325, &x326, x324, x289, x312); fiat_np384_addcarryx_u64(&x327, &x328, x326, x291, x314); fiat_np384_addcarryx_u64(&x329, &x330, x328, x293, x316); fiat_np384_addcarryx_u64(&x331, &x332, x330, x295, x318); fiat_np384_addcarryx_u64(&x333, &x334, x332, x297, x320); fiat_np384_addcarryx_u64(&x335, &x336, x334, x299, x322); fiat_np384_mulx_u64(&x337, &x338, x323, UINT64_C(0x6ed46089e88fdc45)); fiat_np384_mulx_u64(&x339, &x340, x337, UINT64_C(0xffffffffffffffff)); fiat_np384_mulx_u64(&x341, &x342, x337, UINT64_C(0xffffffffffffffff)); fiat_np384_mulx_u64(&x343, &x344, x337, UINT64_C(0xffffffffffffffff)); fiat_np384_mulx_u64(&x345, &x346, x337, UINT64_C(0xc7634d81f4372ddf)); fiat_np384_mulx_u64(&x347, &x348, x337, UINT64_C(0x581a0db248b0a77a)); fiat_np384_mulx_u64(&x349, &x350, x337, UINT64_C(0xecec196accc52973)); fiat_np384_addcarryx_u64(&x351, &x352, 0x0, x350, x347); fiat_np384_addcarryx_u64(&x353, &x354, x352, x348, x345); fiat_np384_addcarryx_u64(&x355, &x356, x354, x346, x343); fiat_np384_addcarryx_u64(&x357, &x358, x356, x344, x341); fiat_np384_addcarryx_u64(&x359, &x360, x358, x342, x339); x361 = (x360 + x340); fiat_np384_addcarryx_u64(&x362, &x363, 0x0, x323, x349); fiat_np384_addcarryx_u64(&x364, &x365, x363, x325, x351); fiat_np384_addcarryx_u64(&x366, &x367, x365, x327, x353); fiat_np384_addcarryx_u64(&x368, &x369, x367, x329, x355); fiat_np384_addcarryx_u64(&x370, &x371, x369, x331, x357); fiat_np384_addcarryx_u64(&x372, &x373, x371, x333, x359); fiat_np384_addcarryx_u64(&x374, &x375, x373, x335, x361); x376 = ((uint64_t)x375 + x336); fiat_np384_mulx_u64(&x377, &x378, x5, (arg2[5])); fiat_np384_mulx_u64(&x379, &x380, x5, (arg2[4])); fiat_np384_mulx_u64(&x381, &x382, x5, (arg2[3])); fiat_np384_mulx_u64(&x383, &x384, x5, (arg2[2])); fiat_np384_mulx_u64(&x385, &x386, x5, (arg2[1])); fiat_np384_mulx_u64(&x387, &x388, x5, (arg2[0])); fiat_np384_addcarryx_u64(&x389, &x390, 0x0, x388, x385); fiat_np384_addcarryx_u64(&x391, &x392, x390, x386, x383); fiat_np384_addcarryx_u64(&x393, &x394, x392, x384, x381); fiat_np384_addcarryx_u64(&x395, &x396, x394, x382, x379); fiat_np384_addcarryx_u64(&x397, &x398, x396, x380, x377); x399 = (x398 + x378); fiat_np384_addcarryx_u64(&x400, &x401, 0x0, x364, x387); fiat_np384_addcarryx_u64(&x402, &x403, x401, x366, x389); fiat_np384_addcarryx_u64(&x404, &x405, x403, x368, x391); fiat_np384_addcarryx_u64(&x406, &x407, x405, x370, x393); fiat_np384_addcarryx_u64(&x408, &x409, x407, x372, x395); fiat_np384_addcarryx_u64(&x410, &x411, x409, x374, x397); fiat_np384_addcarryx_u64(&x412, &x413, x411, x376, x399); fiat_np384_mulx_u64(&x414, &x415, x400, UINT64_C(0x6ed46089e88fdc45)); fiat_np384_mulx_u64(&x416, &x417, x414, UINT64_C(0xffffffffffffffff)); fiat_np384_mulx_u64(&x418, &x419, x414, UINT64_C(0xffffffffffffffff)); fiat_np384_mulx_u64(&x420, &x421, x414, UINT64_C(0xffffffffffffffff)); fiat_np384_mulx_u64(&x422, &x423, x414, UINT64_C(0xc7634d81f4372ddf)); fiat_np384_mulx_u64(&x424, &x425, x414, UINT64_C(0x581a0db248b0a77a)); fiat_np384_mulx_u64(&x426, &x427, x414, UINT64_C(0xecec196accc52973)); fiat_np384_addcarryx_u64(&x428, &x429, 0x0, x427, x424); fiat_np384_addcarryx_u64(&x430, &x431, x429, x425, x422); fiat_np384_addcarryx_u64(&x432, &x433, x431, x423, x420); fiat_np384_addcarryx_u64(&x434, &x435, x433, x421, x418); fiat_np384_addcarryx_u64(&x436, &x437, x435, x419, x416); x438 = (x437 + x417); fiat_np384_addcarryx_u64(&x439, &x440, 0x0, x400, x426); fiat_np384_addcarryx_u64(&x441, &x442, x440, x402, x428); fiat_np384_addcarryx_u64(&x443, &x444, x442, x404, x430); fiat_np384_addcarryx_u64(&x445, &x446, x444, x406, x432); fiat_np384_addcarryx_u64(&x447, &x448, x446, x408, x434); fiat_np384_addcarryx_u64(&x449, &x450, x448, x410, x436); fiat_np384_addcarryx_u64(&x451, &x452, x450, x412, x438); x453 = ((uint64_t)x452 + x413); fiat_np384_subborrowx_u64(&x454, &x455, 0x0, x441, UINT64_C(0xecec196accc52973)); fiat_np384_subborrowx_u64(&x456, &x457, x455, x443, UINT64_C(0x581a0db248b0a77a)); fiat_np384_subborrowx_u64(&x458, &x459, x457, x445, UINT64_C(0xc7634d81f4372ddf)); fiat_np384_subborrowx_u64(&x460, &x461, x459, x447, UINT64_C(0xffffffffffffffff)); fiat_np384_subborrowx_u64(&x462, &x463, x461, x449, UINT64_C(0xffffffffffffffff)); fiat_np384_subborrowx_u64(&x464, &x465, x463, x451, UINT64_C(0xffffffffffffffff)); fiat_np384_subborrowx_u64(&x466, &x467, x465, x453, 0x0); fiat_np384_cmovznz_u64(&x468, x467, x454, x441); fiat_np384_cmovznz_u64(&x469, x467, x456, x443); fiat_np384_cmovznz_u64(&x470, x467, x458, x445); fiat_np384_cmovznz_u64(&x471, x467, x460, x447); fiat_np384_cmovznz_u64(&x472, x467, x462, x449); fiat_np384_cmovznz_u64(&x473, x467, x464, x451); out1[0] = x468; out1[1] = x469; out1[2] = x470; out1[3] = x471; out1[4] = x472; out1[5] = x473; } /* * The function fiat_np384_add adds two field elements in the Montgomery domain. * * Preconditions: * 0 ≤ eval arg1 < m * 0 ≤ eval arg2 < m * Postconditions: * eval (from_montgomery out1) mod m = (eval (from_montgomery arg1) + eval (from_montgomery arg2)) mod m * 0 ≤ eval out1 < m * */ static void fiat_np384_add(fiat_np384_montgomery_domain_field_element out1, const fiat_np384_montgomery_domain_field_element arg1, const fiat_np384_montgomery_domain_field_element arg2) { uint64_t x1; fiat_np384_uint1 x2; uint64_t x3; fiat_np384_uint1 x4; uint64_t x5; fiat_np384_uint1 x6; uint64_t x7; fiat_np384_uint1 x8; uint64_t x9; fiat_np384_uint1 x10; uint64_t x11; fiat_np384_uint1 x12; uint64_t x13; fiat_np384_uint1 x14; uint64_t x15; fiat_np384_uint1 x16; uint64_t x17; fiat_np384_uint1 x18; uint64_t x19; fiat_np384_uint1 x20; uint64_t x21; fiat_np384_uint1 x22; uint64_t x23; fiat_np384_uint1 x24; uint64_t x25; fiat_np384_uint1 x26; uint64_t x27; uint64_t x28; uint64_t x29; uint64_t x30; uint64_t x31; uint64_t x32; fiat_np384_addcarryx_u64(&x1, &x2, 0x0, (arg1[0]), (arg2[0])); fiat_np384_addcarryx_u64(&x3, &x4, x2, (arg1[1]), (arg2[1])); fiat_np384_addcarryx_u64(&x5, &x6, x4, (arg1[2]), (arg2[2])); fiat_np384_addcarryx_u64(&x7, &x8, x6, (arg1[3]), (arg2[3])); fiat_np384_addcarryx_u64(&x9, &x10, x8, (arg1[4]), (arg2[4])); fiat_np384_addcarryx_u64(&x11, &x12, x10, (arg1[5]), (arg2[5])); fiat_np384_subborrowx_u64(&x13, &x14, 0x0, x1, UINT64_C(0xecec196accc52973)); fiat_np384_subborrowx_u64(&x15, &x16, x14, x3, UINT64_C(0x581a0db248b0a77a)); fiat_np384_subborrowx_u64(&x17, &x18, x16, x5, UINT64_C(0xc7634d81f4372ddf)); fiat_np384_subborrowx_u64(&x19, &x20, x18, x7, UINT64_C(0xffffffffffffffff)); fiat_np384_subborrowx_u64(&x21, &x22, x20, x9, UINT64_C(0xffffffffffffffff)); fiat_np384_subborrowx_u64(&x23, &x24, x22, x11, UINT64_C(0xffffffffffffffff)); fiat_np384_subborrowx_u64(&x25, &x26, x24, x12, 0x0); fiat_np384_cmovznz_u64(&x27, x26, x13, x1); fiat_np384_cmovznz_u64(&x28, x26, x15, x3); fiat_np384_cmovznz_u64(&x29, x26, x17, x5); fiat_np384_cmovznz_u64(&x30, x26, x19, x7); fiat_np384_cmovznz_u64(&x31, x26, x21, x9); fiat_np384_cmovznz_u64(&x32, x26, x23, x11); out1[0] = x27; out1[1] = x28; out1[2] = x29; out1[3] = x30; out1[4] = x31; out1[5] = x32; } /* * The function fiat_np384_opp negates a field element in the Montgomery domain. * * Preconditions: * 0 ≤ eval arg1 < m * Postconditions: * eval (from_montgomery out1) mod m = -eval (from_montgomery arg1) mod m * 0 ≤ eval out1 < m * */ static void fiat_np384_opp(fiat_np384_montgomery_domain_field_element out1, const fiat_np384_montgomery_domain_field_element arg1) { uint64_t x1; fiat_np384_uint1 x2; uint64_t x3; fiat_np384_uint1 x4; uint64_t x5; fiat_np384_uint1 x6; uint64_t x7; fiat_np384_uint1 x8; uint64_t x9; fiat_np384_uint1 x10; uint64_t x11; fiat_np384_uint1 x12; uint64_t x13; uint64_t x14; fiat_np384_uint1 x15; uint64_t x16; fiat_np384_uint1 x17; uint64_t x18; fiat_np384_uint1 x19; uint64_t x20; fiat_np384_uint1 x21; uint64_t x22; fiat_np384_uint1 x23; uint64_t x24; fiat_np384_uint1 x25; fiat_np384_subborrowx_u64(&x1, &x2, 0x0, 0x0, (arg1[0])); fiat_np384_subborrowx_u64(&x3, &x4, x2, 0x0, (arg1[1])); fiat_np384_subborrowx_u64(&x5, &x6, x4, 0x0, (arg1[2])); fiat_np384_subborrowx_u64(&x7, &x8, x6, 0x0, (arg1[3])); fiat_np384_subborrowx_u64(&x9, &x10, x8, 0x0, (arg1[4])); fiat_np384_subborrowx_u64(&x11, &x12, x10, 0x0, (arg1[5])); fiat_np384_cmovznz_u64(&x13, x12, 0x0, UINT64_C(0xffffffffffffffff)); fiat_np384_addcarryx_u64(&x14, &x15, 0x0, x1, (x13 & UINT64_C(0xecec196accc52973))); fiat_np384_addcarryx_u64(&x16, &x17, x15, x3, (x13 & UINT64_C(0x581a0db248b0a77a))); fiat_np384_addcarryx_u64(&x18, &x19, x17, x5, (x13 & UINT64_C(0xc7634d81f4372ddf))); fiat_np384_addcarryx_u64(&x20, &x21, x19, x7, x13); fiat_np384_addcarryx_u64(&x22, &x23, x21, x9, x13); fiat_np384_addcarryx_u64(&x24, &x25, x23, x11, x13); out1[0] = x14; out1[1] = x16; out1[2] = x18; out1[3] = x20; out1[4] = x22; out1[5] = x24; } /* * The function fiat_np384_from_montgomery translates a field element out of the Montgomery domain. * * Preconditions: * 0 ≤ eval arg1 < m * Postconditions: * eval out1 mod m = (eval arg1 * ((2^64)⁻¹ mod m)^6) mod m * 0 ≤ eval out1 < m * */ static void fiat_np384_from_montgomery(fiat_np384_non_montgomery_domain_field_element out1, const fiat_np384_montgomery_domain_field_element arg1) { uint64_t x1; uint64_t x2; uint64_t x3; uint64_t x4; uint64_t x5; uint64_t x6; uint64_t x7; uint64_t x8; uint64_t x9; uint64_t x10; uint64_t x11; uint64_t x12; uint64_t x13; uint64_t x14; uint64_t x15; uint64_t x16; fiat_np384_uint1 x17; uint64_t x18; fiat_np384_uint1 x19; uint64_t x20; fiat_np384_uint1 x21; uint64_t x22; fiat_np384_uint1 x23; uint64_t x24; fiat_np384_uint1 x25; uint64_t x26; fiat_np384_uint1 x27; uint64_t x28; fiat_np384_uint1 x29; uint64_t x30; fiat_np384_uint1 x31; uint64_t x32; fiat_np384_uint1 x33; uint64_t x34; fiat_np384_uint1 x35; uint64_t x36; fiat_np384_uint1 x37; uint64_t x38; fiat_np384_uint1 x39; uint64_t x40; fiat_np384_uint1 x41; uint64_t x42; fiat_np384_uint1 x43; uint64_t x44; fiat_np384_uint1 x45; uint64_t x46; fiat_np384_uint1 x47; uint64_t x48; fiat_np384_uint1 x49; uint64_t x50; fiat_np384_uint1 x51; uint64_t x52; uint64_t x53; uint64_t x54; uint64_t x55; uint64_t x56; uint64_t x57; uint64_t x58; uint64_t x59; uint64_t x60; uint64_t x61; uint64_t x62; uint64_t x63; uint64_t x64; uint64_t x65; uint64_t x66; fiat_np384_uint1 x67; uint64_t x68; fiat_np384_uint1 x69; uint64_t x70; fiat_np384_uint1 x71; uint64_t x72; fiat_np384_uint1 x73; uint64_t x74; fiat_np384_uint1 x75; uint64_t x76; fiat_np384_uint1 x77; uint64_t x78; fiat_np384_uint1 x79; uint64_t x80; fiat_np384_uint1 x81; uint64_t x82; fiat_np384_uint1 x83; uint64_t x84; fiat_np384_uint1 x85; uint64_t x86; fiat_np384_uint1 x87; uint64_t x88; fiat_np384_uint1 x89; uint64_t x90; fiat_np384_uint1 x91; uint64_t x92; fiat_np384_uint1 x93; uint64_t x94; fiat_np384_uint1 x95; uint64_t x96; fiat_np384_uint1 x97; uint64_t x98; fiat_np384_uint1 x99; uint64_t x100; fiat_np384_uint1 x101; uint64_t x102; uint64_t x103; uint64_t x104; uint64_t x105; uint64_t x106; uint64_t x107; uint64_t x108; uint64_t x109; uint64_t x110; uint64_t x111; uint64_t x112; uint64_t x113; uint64_t x114; uint64_t x115; uint64_t x116; fiat_np384_uint1 x117; uint64_t x118; fiat_np384_uint1 x119; uint64_t x120; fiat_np384_uint1 x121; uint64_t x122; fiat_np384_uint1 x123; uint64_t x124; fiat_np384_uint1 x125; uint64_t x126; fiat_np384_uint1 x127; uint64_t x128; fiat_np384_uint1 x129; uint64_t x130; fiat_np384_uint1 x131; uint64_t x132; fiat_np384_uint1 x133; uint64_t x134; fiat_np384_uint1 x135; uint64_t x136; fiat_np384_uint1 x137; uint64_t x138; fiat_np384_uint1 x139; uint64_t x140; fiat_np384_uint1 x141; uint64_t x142; fiat_np384_uint1 x143; uint64_t x144; fiat_np384_uint1 x145; uint64_t x146; fiat_np384_uint1 x147; uint64_t x148; fiat_np384_uint1 x149; uint64_t x150; fiat_np384_uint1 x151; uint64_t x152; uint64_t x153; uint64_t x154; uint64_t x155; uint64_t x156; uint64_t x157; uint64_t x158; uint64_t x159; uint64_t x160; uint64_t x161; uint64_t x162; uint64_t x163; uint64_t x164; uint64_t x165; uint64_t x166; fiat_np384_uint1 x167; uint64_t x168; fiat_np384_uint1 x169; uint64_t x170; fiat_np384_uint1 x171; uint64_t x172; fiat_np384_uint1 x173; uint64_t x174; fiat_np384_uint1 x175; uint64_t x176; fiat_np384_uint1 x177; uint64_t x178; fiat_np384_uint1 x179; uint64_t x180; fiat_np384_uint1 x181; uint64_t x182; fiat_np384_uint1 x183; uint64_t x184; fiat_np384_uint1 x185; uint64_t x186; fiat_np384_uint1 x187; uint64_t x188; fiat_np384_uint1 x189; uint64_t x190; fiat_np384_uint1 x191; uint64_t x192; fiat_np384_uint1 x193; uint64_t x194; fiat_np384_uint1 x195; uint64_t x196; fiat_np384_uint1 x197; uint64_t x198; fiat_np384_uint1 x199; uint64_t x200; fiat_np384_uint1 x201; uint64_t x202; uint64_t x203; uint64_t x204; uint64_t x205; uint64_t x206; uint64_t x207; uint64_t x208; uint64_t x209; uint64_t x210; uint64_t x211; uint64_t x212; uint64_t x213; uint64_t x214; uint64_t x215; uint64_t x216; fiat_np384_uint1 x217; uint64_t x218; fiat_np384_uint1 x219; uint64_t x220; fiat_np384_uint1 x221; uint64_t x222; fiat_np384_uint1 x223; uint64_t x224; fiat_np384_uint1 x225; uint64_t x226; fiat_np384_uint1 x227; uint64_t x228; fiat_np384_uint1 x229; uint64_t x230; fiat_np384_uint1 x231; uint64_t x232; fiat_np384_uint1 x233; uint64_t x234; fiat_np384_uint1 x235; uint64_t x236; fiat_np384_uint1 x237; uint64_t x238; fiat_np384_uint1 x239; uint64_t x240; fiat_np384_uint1 x241; uint64_t x242; fiat_np384_uint1 x243; uint64_t x244; fiat_np384_uint1 x245; uint64_t x246; fiat_np384_uint1 x247; uint64_t x248; fiat_np384_uint1 x249; uint64_t x250; fiat_np384_uint1 x251; uint64_t x252; uint64_t x253; uint64_t x254; uint64_t x255; uint64_t x256; uint64_t x257; uint64_t x258; uint64_t x259; uint64_t x260; uint64_t x261; uint64_t x262; uint64_t x263; uint64_t x264; uint64_t x265; uint64_t x266; fiat_np384_uint1 x267; uint64_t x268; fiat_np384_uint1 x269; uint64_t x270; fiat_np384_uint1 x271; uint64_t x272; fiat_np384_uint1 x273; uint64_t x274; fiat_np384_uint1 x275; uint64_t x276; fiat_np384_uint1 x277; uint64_t x278; fiat_np384_uint1 x279; uint64_t x280; fiat_np384_uint1 x281; uint64_t x282; fiat_np384_uint1 x283; uint64_t x284; fiat_np384_uint1 x285; uint64_t x286; fiat_np384_uint1 x287; uint64_t x288; fiat_np384_uint1 x289; uint64_t x290; fiat_np384_uint1 x291; uint64_t x292; fiat_np384_uint1 x293; uint64_t x294; fiat_np384_uint1 x295; uint64_t x296; fiat_np384_uint1 x297; uint64_t x298; fiat_np384_uint1 x299; uint64_t x300; fiat_np384_uint1 x301; uint64_t x302; fiat_np384_uint1 x303; uint64_t x304; uint64_t x305; uint64_t x306; uint64_t x307; uint64_t x308; uint64_t x309; x1 = (arg1[0]); fiat_np384_mulx_u64(&x2, &x3, x1, UINT64_C(0x6ed46089e88fdc45)); fiat_np384_mulx_u64(&x4, &x5, x2, UINT64_C(0xffffffffffffffff)); fiat_np384_mulx_u64(&x6, &x7, x2, UINT64_C(0xffffffffffffffff)); fiat_np384_mulx_u64(&x8, &x9, x2, UINT64_C(0xffffffffffffffff)); fiat_np384_mulx_u64(&x10, &x11, x2, UINT64_C(0xc7634d81f4372ddf)); fiat_np384_mulx_u64(&x12, &x13, x2, UINT64_C(0x581a0db248b0a77a)); fiat_np384_mulx_u64(&x14, &x15, x2, UINT64_C(0xecec196accc52973)); fiat_np384_addcarryx_u64(&x16, &x17, 0x0, x15, x12); fiat_np384_addcarryx_u64(&x18, &x19, x17, x13, x10); fiat_np384_addcarryx_u64(&x20, &x21, x19, x11, x8); fiat_np384_addcarryx_u64(&x22, &x23, x21, x9, x6); fiat_np384_addcarryx_u64(&x24, &x25, x23, x7, x4); fiat_np384_addcarryx_u64(&x26, &x27, 0x0, x1, x14); fiat_np384_addcarryx_u64(&x28, &x29, x27, 0x0, x16); fiat_np384_addcarryx_u64(&x30, &x31, x29, 0x0, x18); fiat_np384_addcarryx_u64(&x32, &x33, x31, 0x0, x20); fiat_np384_addcarryx_u64(&x34, &x35, x33, 0x0, x22); fiat_np384_addcarryx_u64(&x36, &x37, x35, 0x0, x24); fiat_np384_addcarryx_u64(&x38, &x39, x37, 0x0, (x25 + x5)); fiat_np384_addcarryx_u64(&x40, &x41, 0x0, x28, (arg1[1])); fiat_np384_addcarryx_u64(&x42, &x43, x41, x30, 0x0); fiat_np384_addcarryx_u64(&x44, &x45, x43, x32, 0x0); fiat_np384_addcarryx_u64(&x46, &x47, x45, x34, 0x0); fiat_np384_addcarryx_u64(&x48, &x49, x47, x36, 0x0); fiat_np384_addcarryx_u64(&x50, &x51, x49, x38, 0x0); fiat_np384_mulx_u64(&x52, &x53, x40, UINT64_C(0x6ed46089e88fdc45)); fiat_np384_mulx_u64(&x54, &x55, x52, UINT64_C(0xffffffffffffffff)); fiat_np384_mulx_u64(&x56, &x57, x52, UINT64_C(0xffffffffffffffff)); fiat_np384_mulx_u64(&x58, &x59, x52, UINT64_C(0xffffffffffffffff)); fiat_np384_mulx_u64(&x60, &x61, x52, UINT64_C(0xc7634d81f4372ddf)); fiat_np384_mulx_u64(&x62, &x63, x52, UINT64_C(0x581a0db248b0a77a)); fiat_np384_mulx_u64(&x64, &x65, x52, UINT64_C(0xecec196accc52973)); fiat_np384_addcarryx_u64(&x66, &x67, 0x0, x65, x62); fiat_np384_addcarryx_u64(&x68, &x69, x67, x63, x60); fiat_np384_addcarryx_u64(&x70, &x71, x69, x61, x58); fiat_np384_addcarryx_u64(&x72, &x73, x71, x59, x56); fiat_np384_addcarryx_u64(&x74, &x75, x73, x57, x54); fiat_np384_addcarryx_u64(&x76, &x77, 0x0, x40, x64); fiat_np384_addcarryx_u64(&x78, &x79, x77, x42, x66); fiat_np384_addcarryx_u64(&x80, &x81, x79, x44, x68); fiat_np384_addcarryx_u64(&x82, &x83, x81, x46, x70); fiat_np384_addcarryx_u64(&x84, &x85, x83, x48, x72); fiat_np384_addcarryx_u64(&x86, &x87, x85, x50, x74); fiat_np384_addcarryx_u64(&x88, &x89, x87, ((uint64_t)x51 + x39), (x75 + x55)); fiat_np384_addcarryx_u64(&x90, &x91, 0x0, x78, (arg1[2])); fiat_np384_addcarryx_u64(&x92, &x93, x91, x80, 0x0); fiat_np384_addcarryx_u64(&x94, &x95, x93, x82, 0x0); fiat_np384_addcarryx_u64(&x96, &x97, x95, x84, 0x0); fiat_np384_addcarryx_u64(&x98, &x99, x97, x86, 0x0); fiat_np384_addcarryx_u64(&x100, &x101, x99, x88, 0x0); fiat_np384_mulx_u64(&x102, &x103, x90, UINT64_C(0x6ed46089e88fdc45)); fiat_np384_mulx_u64(&x104, &x105, x102, UINT64_C(0xffffffffffffffff)); fiat_np384_mulx_u64(&x106, &x107, x102, UINT64_C(0xffffffffffffffff)); fiat_np384_mulx_u64(&x108, &x109, x102, UINT64_C(0xffffffffffffffff)); fiat_np384_mulx_u64(&x110, &x111, x102, UINT64_C(0xc7634d81f4372ddf)); fiat_np384_mulx_u64(&x112, &x113, x102, UINT64_C(0x581a0db248b0a77a)); fiat_np384_mulx_u64(&x114, &x115, x102, UINT64_C(0xecec196accc52973)); fiat_np384_addcarryx_u64(&x116, &x117, 0x0, x115, x112); fiat_np384_addcarryx_u64(&x118, &x119, x117, x113, x110); fiat_np384_addcarryx_u64(&x120, &x121, x119, x111, x108); fiat_np384_addcarryx_u64(&x122, &x123, x121, x109, x106); fiat_np384_addcarryx_u64(&x124, &x125, x123, x107, x104); fiat_np384_addcarryx_u64(&x126, &x127, 0x0, x90, x114); fiat_np384_addcarryx_u64(&x128, &x129, x127, x92, x116); fiat_np384_addcarryx_u64(&x130, &x131, x129, x94, x118); fiat_np384_addcarryx_u64(&x132, &x133, x131, x96, x120); fiat_np384_addcarryx_u64(&x134, &x135, x133, x98, x122); fiat_np384_addcarryx_u64(&x136, &x137, x135, x100, x124); fiat_np384_addcarryx_u64(&x138, &x139, x137, ((uint64_t)x101 + x89), (x125 + x105)); fiat_np384_addcarryx_u64(&x140, &x141, 0x0, x128, (arg1[3])); fiat_np384_addcarryx_u64(&x142, &x143, x141, x130, 0x0); fiat_np384_addcarryx_u64(&x144, &x145, x143, x132, 0x0); fiat_np384_addcarryx_u64(&x146, &x147, x145, x134, 0x0); fiat_np384_addcarryx_u64(&x148, &x149, x147, x136, 0x0); fiat_np384_addcarryx_u64(&x150, &x151, x149, x138, 0x0); fiat_np384_mulx_u64(&x152, &x153, x140, UINT64_C(0x6ed46089e88fdc45)); fiat_np384_mulx_u64(&x154, &x155, x152, UINT64_C(0xffffffffffffffff)); fiat_np384_mulx_u64(&x156, &x157, x152, UINT64_C(0xffffffffffffffff)); fiat_np384_mulx_u64(&x158, &x159, x152, UINT64_C(0xffffffffffffffff)); fiat_np384_mulx_u64(&x160, &x161, x152, UINT64_C(0xc7634d81f4372ddf)); fiat_np384_mulx_u64(&x162, &x163, x152, UINT64_C(0x581a0db248b0a77a)); fiat_np384_mulx_u64(&x164, &x165, x152, UINT64_C(0xecec196accc52973)); fiat_np384_addcarryx_u64(&x166, &x167, 0x0, x165, x162); fiat_np384_addcarryx_u64(&x168, &x169, x167, x163, x160); fiat_np384_addcarryx_u64(&x170, &x171, x169, x161, x158); fiat_np384_addcarryx_u64(&x172, &x173, x171, x159, x156); fiat_np384_addcarryx_u64(&x174, &x175, x173, x157, x154); fiat_np384_addcarryx_u64(&x176, &x177, 0x0, x140, x164); fiat_np384_addcarryx_u64(&x178, &x179, x177, x142, x166); fiat_np384_addcarryx_u64(&x180, &x181, x179, x144, x168); fiat_np384_addcarryx_u64(&x182, &x183, x181, x146, x170); fiat_np384_addcarryx_u64(&x184, &x185, x183, x148, x172); fiat_np384_addcarryx_u64(&x186, &x187, x185, x150, x174); fiat_np384_addcarryx_u64(&x188, &x189, x187, ((uint64_t)x151 + x139), (x175 + x155)); fiat_np384_addcarryx_u64(&x190, &x191, 0x0, x178, (arg1[4])); fiat_np384_addcarryx_u64(&x192, &x193, x191, x180, 0x0); fiat_np384_addcarryx_u64(&x194, &x195, x193, x182, 0x0); fiat_np384_addcarryx_u64(&x196, &x197, x195, x184, 0x0); fiat_np384_addcarryx_u64(&x198, &x199, x197, x186, 0x0); fiat_np384_addcarryx_u64(&x200, &x201, x199, x188, 0x0); fiat_np384_mulx_u64(&x202, &x203, x190, UINT64_C(0x6ed46089e88fdc45)); fiat_np384_mulx_u64(&x204, &x205, x202, UINT64_C(0xffffffffffffffff)); fiat_np384_mulx_u64(&x206, &x207, x202, UINT64_C(0xffffffffffffffff)); fiat_np384_mulx_u64(&x208, &x209, x202, UINT64_C(0xffffffffffffffff)); fiat_np384_mulx_u64(&x210, &x211, x202, UINT64_C(0xc7634d81f4372ddf)); fiat_np384_mulx_u64(&x212, &x213, x202, UINT64_C(0x581a0db248b0a77a)); fiat_np384_mulx_u64(&x214, &x215, x202, UINT64_C(0xecec196accc52973)); fiat_np384_addcarryx_u64(&x216, &x217, 0x0, x215, x212); fiat_np384_addcarryx_u64(&x218, &x219, x217, x213, x210); fiat_np384_addcarryx_u64(&x220, &x221, x219, x211, x208); fiat_np384_addcarryx_u64(&x222, &x223, x221, x209, x206); fiat_np384_addcarryx_u64(&x224, &x225, x223, x207, x204); fiat_np384_addcarryx_u64(&x226, &x227, 0x0, x190, x214); fiat_np384_addcarryx_u64(&x228, &x229, x227, x192, x216); fiat_np384_addcarryx_u64(&x230, &x231, x229, x194, x218); fiat_np384_addcarryx_u64(&x232, &x233, x231, x196, x220); fiat_np384_addcarryx_u64(&x234, &x235, x233, x198, x222); fiat_np384_addcarryx_u64(&x236, &x237, x235, x200, x224); fiat_np384_addcarryx_u64(&x238, &x239, x237, ((uint64_t)x201 + x189), (x225 + x205)); fiat_np384_addcarryx_u64(&x240, &x241, 0x0, x228, (arg1[5])); fiat_np384_addcarryx_u64(&x242, &x243, x241, x230, 0x0); fiat_np384_addcarryx_u64(&x244, &x245, x243, x232, 0x0); fiat_np384_addcarryx_u64(&x246, &x247, x245, x234, 0x0); fiat_np384_addcarryx_u64(&x248, &x249, x247, x236, 0x0); fiat_np384_addcarryx_u64(&x250, &x251, x249, x238, 0x0); fiat_np384_mulx_u64(&x252, &x253, x240, UINT64_C(0x6ed46089e88fdc45)); fiat_np384_mulx_u64(&x254, &x255, x252, UINT64_C(0xffffffffffffffff)); fiat_np384_mulx_u64(&x256, &x257, x252, UINT64_C(0xffffffffffffffff)); fiat_np384_mulx_u64(&x258, &x259, x252, UINT64_C(0xffffffffffffffff)); fiat_np384_mulx_u64(&x260, &x261, x252, UINT64_C(0xc7634d81f4372ddf)); fiat_np384_mulx_u64(&x262, &x263, x252, UINT64_C(0x581a0db248b0a77a)); fiat_np384_mulx_u64(&x264, &x265, x252, UINT64_C(0xecec196accc52973)); fiat_np384_addcarryx_u64(&x266, &x267, 0x0, x265, x262); fiat_np384_addcarryx_u64(&x268, &x269, x267, x263, x260); fiat_np384_addcarryx_u64(&x270, &x271, x269, x261, x258); fiat_np384_addcarryx_u64(&x272, &x273, x271, x259, x256); fiat_np384_addcarryx_u64(&x274, &x275, x273, x257, x254); fiat_np384_addcarryx_u64(&x276, &x277, 0x0, x240, x264); fiat_np384_addcarryx_u64(&x278, &x279, x277, x242, x266); fiat_np384_addcarryx_u64(&x280, &x281, x279, x244, x268); fiat_np384_addcarryx_u64(&x282, &x283, x281, x246, x270); fiat_np384_addcarryx_u64(&x284, &x285, x283, x248, x272); fiat_np384_addcarryx_u64(&x286, &x287, x285, x250, x274); fiat_np384_addcarryx_u64(&x288, &x289, x287, ((uint64_t)x251 + x239), (x275 + x255)); fiat_np384_subborrowx_u64(&x290, &x291, 0x0, x278, UINT64_C(0xecec196accc52973)); fiat_np384_subborrowx_u64(&x292, &x293, x291, x280, UINT64_C(0x581a0db248b0a77a)); fiat_np384_subborrowx_u64(&x294, &x295, x293, x282, UINT64_C(0xc7634d81f4372ddf)); fiat_np384_subborrowx_u64(&x296, &x297, x295, x284, UINT64_C(0xffffffffffffffff)); fiat_np384_subborrowx_u64(&x298, &x299, x297, x286, UINT64_C(0xffffffffffffffff)); fiat_np384_subborrowx_u64(&x300, &x301, x299, x288, UINT64_C(0xffffffffffffffff)); fiat_np384_subborrowx_u64(&x302, &x303, x301, x289, 0x0); fiat_np384_cmovznz_u64(&x304, x303, x290, x278); fiat_np384_cmovznz_u64(&x305, x303, x292, x280); fiat_np384_cmovznz_u64(&x306, x303, x294, x282); fiat_np384_cmovznz_u64(&x307, x303, x296, x284); fiat_np384_cmovznz_u64(&x308, x303, x298, x286); fiat_np384_cmovznz_u64(&x309, x303, x300, x288); out1[0] = x304; out1[1] = x305; out1[2] = x306; out1[3] = x307; out1[4] = x308; out1[5] = x309; } /* * The function fiat_np384_to_montgomery translates a field element into the Montgomery domain. * * Preconditions: * 0 ≤ eval arg1 < m * Postconditions: * eval (from_montgomery out1) mod m = eval arg1 mod m * 0 ≤ eval out1 < m * */ static void fiat_np384_to_montgomery(fiat_np384_montgomery_domain_field_element out1, const fiat_np384_non_montgomery_domain_field_element arg1) { uint64_t x1; uint64_t x2; uint64_t x3; uint64_t x4; uint64_t x5; uint64_t x6; uint64_t x7; uint64_t x8; uint64_t x9; uint64_t x10; uint64_t x11; uint64_t x12; uint64_t x13; uint64_t x14; uint64_t x15; uint64_t x16; uint64_t x17; uint64_t x18; uint64_t x19; fiat_np384_uint1 x20; uint64_t x21; fiat_np384_uint1 x22; uint64_t x23; fiat_np384_uint1 x24; uint64_t x25; fiat_np384_uint1 x26; uint64_t x27; fiat_np384_uint1 x28; uint64_t x29; uint64_t x30; uint64_t x31; uint64_t x32; uint64_t x33; uint64_t x34; uint64_t x35; uint64_t x36; uint64_t x37; uint64_t x38; uint64_t x39; uint64_t x40; uint64_t x41; uint64_t x42; uint64_t x43; fiat_np384_uint1 x44; uint64_t x45; fiat_np384_uint1 x46; uint64_t x47; fiat_np384_uint1 x48; uint64_t x49; fiat_np384_uint1 x50; uint64_t x51; fiat_np384_uint1 x52; uint64_t x53; fiat_np384_uint1 x54; uint64_t x55; fiat_np384_uint1 x56; uint64_t x57; fiat_np384_uint1 x58; uint64_t x59; fiat_np384_uint1 x60; uint64_t x61; fiat_np384_uint1 x62; uint64_t x63; fiat_np384_uint1 x64; uint64_t x65; fiat_np384_uint1 x66; uint64_t x67; uint64_t x68; uint64_t x69; uint64_t x70; uint64_t x71; uint64_t x72; uint64_t x73; uint64_t x74; uint64_t x75; uint64_t x76; uint64_t x77; uint64_t x78; uint64_t x79; fiat_np384_uint1 x80; uint64_t x81; fiat_np384_uint1 x82; uint64_t x83; fiat_np384_uint1 x84; uint64_t x85; fiat_np384_uint1 x86; uint64_t x87; fiat_np384_uint1 x88; uint64_t x89; fiat_np384_uint1 x90; uint64_t x91; fiat_np384_uint1 x92; uint64_t x93; fiat_np384_uint1 x94; uint64_t x95; fiat_np384_uint1 x96; uint64_t x97; fiat_np384_uint1 x98; uint64_t x99; fiat_np384_uint1 x100; uint64_t x101; uint64_t x102; uint64_t x103; uint64_t x104; uint64_t x105; uint64_t x106; uint64_t x107; uint64_t x108; uint64_t x109; uint64_t x110; uint64_t x111; uint64_t x112; uint64_t x113; uint64_t x114; uint64_t x115; fiat_np384_uint1 x116; uint64_t x117; fiat_np384_uint1 x118; uint64_t x119; fiat_np384_uint1 x120; uint64_t x121; fiat_np384_uint1 x122; uint64_t x123; fiat_np384_uint1 x124; uint64_t x125; fiat_np384_uint1 x126; uint64_t x127; fiat_np384_uint1 x128; uint64_t x129; fiat_np384_uint1 x130; uint64_t x131; fiat_np384_uint1 x132; uint64_t x133; fiat_np384_uint1 x134; uint64_t x135; fiat_np384_uint1 x136; uint64_t x137; fiat_np384_uint1 x138; uint64_t x139; uint64_t x140; uint64_t x141; uint64_t x142; uint64_t x143; uint64_t x144; uint64_t x145; uint64_t x146; uint64_t x147; uint64_t x148; uint64_t x149; uint64_t x150; uint64_t x151; fiat_np384_uint1 x152; uint64_t x153; fiat_np384_uint1 x154; uint64_t x155; fiat_np384_uint1 x156; uint64_t x157; fiat_np384_uint1 x158; uint64_t x159; fiat_np384_uint1 x160; uint64_t x161; fiat_np384_uint1 x162; uint64_t x163; fiat_np384_uint1 x164; uint64_t x165; fiat_np384_uint1 x166; uint64_t x167; fiat_np384_uint1 x168; uint64_t x169; fiat_np384_uint1 x170; uint64_t x171; fiat_np384_uint1 x172; uint64_t x173; uint64_t x174; uint64_t x175; uint64_t x176; uint64_t x177; uint64_t x178; uint64_t x179; uint64_t x180; uint64_t x181; uint64_t x182; uint64_t x183; uint64_t x184; uint64_t x185; uint64_t x186; uint64_t x187; fiat_np384_uint1 x188; uint64_t x189; fiat_np384_uint1 x190; uint64_t x191; fiat_np384_uint1 x192; uint64_t x193; fiat_np384_uint1 x194; uint64_t x195; fiat_np384_uint1 x196; uint64_t x197; fiat_np384_uint1 x198; uint64_t x199; fiat_np384_uint1 x200; uint64_t x201; fiat_np384_uint1 x202; uint64_t x203; fiat_np384_uint1 x204; uint64_t x205; fiat_np384_uint1 x206; uint64_t x207; fiat_np384_uint1 x208; uint64_t x209; fiat_np384_uint1 x210; uint64_t x211; uint64_t x212; uint64_t x213; uint64_t x214; uint64_t x215; uint64_t x216; uint64_t x217; uint64_t x218; uint64_t x219; uint64_t x220; uint64_t x221; uint64_t x222; uint64_t x223; fiat_np384_uint1 x224; uint64_t x225; fiat_np384_uint1 x226; uint64_t x227; fiat_np384_uint1 x228; uint64_t x229; fiat_np384_uint1 x230; uint64_t x231; fiat_np384_uint1 x232; uint64_t x233; fiat_np384_uint1 x234; uint64_t x235; fiat_np384_uint1 x236; uint64_t x237; fiat_np384_uint1 x238; uint64_t x239; fiat_np384_uint1 x240; uint64_t x241; fiat_np384_uint1 x242; uint64_t x243; fiat_np384_uint1 x244; uint64_t x245; uint64_t x246; uint64_t x247; uint64_t x248; uint64_t x249; uint64_t x250; uint64_t x251; uint64_t x252; uint64_t x253; uint64_t x254; uint64_t x255; uint64_t x256; uint64_t x257; uint64_t x258; uint64_t x259; fiat_np384_uint1 x260; uint64_t x261; fiat_np384_uint1 x262; uint64_t x263; fiat_np384_uint1 x264; uint64_t x265; fiat_np384_uint1 x266; uint64_t x267; fiat_np384_uint1 x268; uint64_t x269; fiat_np384_uint1 x270; uint64_t x271; fiat_np384_uint1 x272; uint64_t x273; fiat_np384_uint1 x274; uint64_t x275; fiat_np384_uint1 x276; uint64_t x277; fiat_np384_uint1 x278; uint64_t x279; fiat_np384_uint1 x280; uint64_t x281; fiat_np384_uint1 x282; uint64_t x283; uint64_t x284; uint64_t x285; uint64_t x286; uint64_t x287; uint64_t x288; uint64_t x289; uint64_t x290; uint64_t x291; uint64_t x292; uint64_t x293; uint64_t x294; uint64_t x295; fiat_np384_uint1 x296; uint64_t x297; fiat_np384_uint1 x298; uint64_t x299; fiat_np384_uint1 x300; uint64_t x301; fiat_np384_uint1 x302; uint64_t x303; fiat_np384_uint1 x304; uint64_t x305; fiat_np384_uint1 x306; uint64_t x307; fiat_np384_uint1 x308; uint64_t x309; fiat_np384_uint1 x310; uint64_t x311; fiat_np384_uint1 x312; uint64_t x313; fiat_np384_uint1 x314; uint64_t x315; fiat_np384_uint1 x316; uint64_t x317; uint64_t x318; uint64_t x319; uint64_t x320; uint64_t x321; uint64_t x322; uint64_t x323; uint64_t x324; uint64_t x325; uint64_t x326; uint64_t x327; uint64_t x328; uint64_t x329; uint64_t x330; uint64_t x331; fiat_np384_uint1 x332; uint64_t x333; fiat_np384_uint1 x334; uint64_t x335; fiat_np384_uint1 x336; uint64_t x337; fiat_np384_uint1 x338; uint64_t x339; fiat_np384_uint1 x340; uint64_t x341; fiat_np384_uint1 x342; uint64_t x343; fiat_np384_uint1 x344; uint64_t x345; fiat_np384_uint1 x346; uint64_t x347; fiat_np384_uint1 x348; uint64_t x349; fiat_np384_uint1 x350; uint64_t x351; fiat_np384_uint1 x352; uint64_t x353; fiat_np384_uint1 x354; uint64_t x355; uint64_t x356; uint64_t x357; uint64_t x358; uint64_t x359; uint64_t x360; uint64_t x361; uint64_t x362; uint64_t x363; uint64_t x364; uint64_t x365; uint64_t x366; uint64_t x367; fiat_np384_uint1 x368; uint64_t x369; fiat_np384_uint1 x370; uint64_t x371; fiat_np384_uint1 x372; uint64_t x373; fiat_np384_uint1 x374; uint64_t x375; fiat_np384_uint1 x376; uint64_t x377; fiat_np384_uint1 x378; uint64_t x379; fiat_np384_uint1 x380; uint64_t x381; fiat_np384_uint1 x382; uint64_t x383; fiat_np384_uint1 x384; uint64_t x385; fiat_np384_uint1 x386; uint64_t x387; fiat_np384_uint1 x388; uint64_t x389; uint64_t x390; uint64_t x391; uint64_t x392; uint64_t x393; uint64_t x394; uint64_t x395; uint64_t x396; uint64_t x397; uint64_t x398; uint64_t x399; uint64_t x400; uint64_t x401; uint64_t x402; uint64_t x403; fiat_np384_uint1 x404; uint64_t x405; fiat_np384_uint1 x406; uint64_t x407; fiat_np384_uint1 x408; uint64_t x409; fiat_np384_uint1 x410; uint64_t x411; fiat_np384_uint1 x412; uint64_t x413; fiat_np384_uint1 x414; uint64_t x415; fiat_np384_uint1 x416; uint64_t x417; fiat_np384_uint1 x418; uint64_t x419; fiat_np384_uint1 x420; uint64_t x421; fiat_np384_uint1 x422; uint64_t x423; fiat_np384_uint1 x424; uint64_t x425; fiat_np384_uint1 x426; uint64_t x427; fiat_np384_uint1 x428; uint64_t x429; fiat_np384_uint1 x430; uint64_t x431; fiat_np384_uint1 x432; uint64_t x433; fiat_np384_uint1 x434; uint64_t x435; fiat_np384_uint1 x436; uint64_t x437; fiat_np384_uint1 x438; uint64_t x439; fiat_np384_uint1 x440; uint64_t x441; uint64_t x442; uint64_t x443; uint64_t x444; uint64_t x445; uint64_t x446; x1 = (arg1[1]); x2 = (arg1[2]); x3 = (arg1[3]); x4 = (arg1[4]); x5 = (arg1[5]); x6 = (arg1[0]); fiat_np384_mulx_u64(&x7, &x8, x6, UINT64_C(0xc84ee012b39bf21)); fiat_np384_mulx_u64(&x9, &x10, x6, UINT64_C(0x3fb05b7a28266895)); fiat_np384_mulx_u64(&x11, &x12, x6, UINT64_C(0xd40d49174aab1cc5)); fiat_np384_mulx_u64(&x13, &x14, x6, UINT64_C(0xbc3e483afcb82947)); fiat_np384_mulx_u64(&x15, &x16, x6, UINT64_C(0xff3d81e5df1aa419)); fiat_np384_mulx_u64(&x17, &x18, x6, UINT64_C(0x2d319b2419b409a9)); fiat_np384_addcarryx_u64(&x19, &x20, 0x0, x18, x15); fiat_np384_addcarryx_u64(&x21, &x22, x20, x16, x13); fiat_np384_addcarryx_u64(&x23, &x24, x22, x14, x11); fiat_np384_addcarryx_u64(&x25, &x26, x24, x12, x9); fiat_np384_addcarryx_u64(&x27, &x28, x26, x10, x7); fiat_np384_mulx_u64(&x29, &x30, x17, UINT64_C(0x6ed46089e88fdc45)); fiat_np384_mulx_u64(&x31, &x32, x29, UINT64_C(0xffffffffffffffff)); fiat_np384_mulx_u64(&x33, &x34, x29, UINT64_C(0xffffffffffffffff)); fiat_np384_mulx_u64(&x35, &x36, x29, UINT64_C(0xffffffffffffffff)); fiat_np384_mulx_u64(&x37, &x38, x29, UINT64_C(0xc7634d81f4372ddf)); fiat_np384_mulx_u64(&x39, &x40, x29, UINT64_C(0x581a0db248b0a77a)); fiat_np384_mulx_u64(&x41, &x42, x29, UINT64_C(0xecec196accc52973)); fiat_np384_addcarryx_u64(&x43, &x44, 0x0, x42, x39); fiat_np384_addcarryx_u64(&x45, &x46, x44, x40, x37); fiat_np384_addcarryx_u64(&x47, &x48, x46, x38, x35); fiat_np384_addcarryx_u64(&x49, &x50, x48, x36, x33); fiat_np384_addcarryx_u64(&x51, &x52, x50, x34, x31); fiat_np384_addcarryx_u64(&x53, &x54, 0x0, x17, x41); fiat_np384_addcarryx_u64(&x55, &x56, x54, x19, x43); fiat_np384_addcarryx_u64(&x57, &x58, x56, x21, x45); fiat_np384_addcarryx_u64(&x59, &x60, x58, x23, x47); fiat_np384_addcarryx_u64(&x61, &x62, x60, x25, x49); fiat_np384_addcarryx_u64(&x63, &x64, x62, x27, x51); fiat_np384_addcarryx_u64(&x65, &x66, x64, (x28 + x8), (x52 + x32)); fiat_np384_mulx_u64(&x67, &x68, x1, UINT64_C(0xc84ee012b39bf21)); fiat_np384_mulx_u64(&x69, &x70, x1, UINT64_C(0x3fb05b7a28266895)); fiat_np384_mulx_u64(&x71, &x72, x1, UINT64_C(0xd40d49174aab1cc5)); fiat_np384_mulx_u64(&x73, &x74, x1, UINT64_C(0xbc3e483afcb82947)); fiat_np384_mulx_u64(&x75, &x76, x1, UINT64_C(0xff3d81e5df1aa419)); fiat_np384_mulx_u64(&x77, &x78, x1, UINT64_C(0x2d319b2419b409a9)); fiat_np384_addcarryx_u64(&x79, &x80, 0x0, x78, x75); fiat_np384_addcarryx_u64(&x81, &x82, x80, x76, x73); fiat_np384_addcarryx_u64(&x83, &x84, x82, x74, x71); fiat_np384_addcarryx_u64(&x85, &x86, x84, x72, x69); fiat_np384_addcarryx_u64(&x87, &x88, x86, x70, x67); fiat_np384_addcarryx_u64(&x89, &x90, 0x0, x55, x77); fiat_np384_addcarryx_u64(&x91, &x92, x90, x57, x79); fiat_np384_addcarryx_u64(&x93, &x94, x92, x59, x81); fiat_np384_addcarryx_u64(&x95, &x96, x94, x61, x83); fiat_np384_addcarryx_u64(&x97, &x98, x96, x63, x85); fiat_np384_addcarryx_u64(&x99, &x100, x98, x65, x87); fiat_np384_mulx_u64(&x101, &x102, x89, UINT64_C(0x6ed46089e88fdc45)); fiat_np384_mulx_u64(&x103, &x104, x101, UINT64_C(0xffffffffffffffff)); fiat_np384_mulx_u64(&x105, &x106, x101, UINT64_C(0xffffffffffffffff)); fiat_np384_mulx_u64(&x107, &x108, x101, UINT64_C(0xffffffffffffffff)); fiat_np384_mulx_u64(&x109, &x110, x101, UINT64_C(0xc7634d81f4372ddf)); fiat_np384_mulx_u64(&x111, &x112, x101, UINT64_C(0x581a0db248b0a77a)); fiat_np384_mulx_u64(&x113, &x114, x101, UINT64_C(0xecec196accc52973)); fiat_np384_addcarryx_u64(&x115, &x116, 0x0, x114, x111); fiat_np384_addcarryx_u64(&x117, &x118, x116, x112, x109); fiat_np384_addcarryx_u64(&x119, &x120, x118, x110, x107); fiat_np384_addcarryx_u64(&x121, &x122, x120, x108, x105); fiat_np384_addcarryx_u64(&x123, &x124, x122, x106, x103); fiat_np384_addcarryx_u64(&x125, &x126, 0x0, x89, x113); fiat_np384_addcarryx_u64(&x127, &x128, x126, x91, x115); fiat_np384_addcarryx_u64(&x129, &x130, x128, x93, x117); fiat_np384_addcarryx_u64(&x131, &x132, x130, x95, x119); fiat_np384_addcarryx_u64(&x133, &x134, x132, x97, x121); fiat_np384_addcarryx_u64(&x135, &x136, x134, x99, x123); fiat_np384_addcarryx_u64(&x137, &x138, x136, (((uint64_t)x100 + x66) + (x88 + x68)), (x124 + x104)); fiat_np384_mulx_u64(&x139, &x140, x2, UINT64_C(0xc84ee012b39bf21)); fiat_np384_mulx_u64(&x141, &x142, x2, UINT64_C(0x3fb05b7a28266895)); fiat_np384_mulx_u64(&x143, &x144, x2, UINT64_C(0xd40d49174aab1cc5)); fiat_np384_mulx_u64(&x145, &x146, x2, UINT64_C(0xbc3e483afcb82947)); fiat_np384_mulx_u64(&x147, &x148, x2, UINT64_C(0xff3d81e5df1aa419)); fiat_np384_mulx_u64(&x149, &x150, x2, UINT64_C(0x2d319b2419b409a9)); fiat_np384_addcarryx_u64(&x151, &x152, 0x0, x150, x147); fiat_np384_addcarryx_u64(&x153, &x154, x152, x148, x145); fiat_np384_addcarryx_u64(&x155, &x156, x154, x146, x143); fiat_np384_addcarryx_u64(&x157, &x158, x156, x144, x141); fiat_np384_addcarryx_u64(&x159, &x160, x158, x142, x139); fiat_np384_addcarryx_u64(&x161, &x162, 0x0, x127, x149); fiat_np384_addcarryx_u64(&x163, &x164, x162, x129, x151); fiat_np384_addcarryx_u64(&x165, &x166, x164, x131, x153); fiat_np384_addcarryx_u64(&x167, &x168, x166, x133, x155); fiat_np384_addcarryx_u64(&x169, &x170, x168, x135, x157); fiat_np384_addcarryx_u64(&x171, &x172, x170, x137, x159); fiat_np384_mulx_u64(&x173, &x174, x161, UINT64_C(0x6ed46089e88fdc45)); fiat_np384_mulx_u64(&x175, &x176, x173, UINT64_C(0xffffffffffffffff)); fiat_np384_mulx_u64(&x177, &x178, x173, UINT64_C(0xffffffffffffffff)); fiat_np384_mulx_u64(&x179, &x180, x173, UINT64_C(0xffffffffffffffff)); fiat_np384_mulx_u64(&x181, &x182, x173, UINT64_C(0xc7634d81f4372ddf)); fiat_np384_mulx_u64(&x183, &x184, x173, UINT64_C(0x581a0db248b0a77a)); fiat_np384_mulx_u64(&x185, &x186, x173, UINT64_C(0xecec196accc52973)); fiat_np384_addcarryx_u64(&x187, &x188, 0x0, x186, x183); fiat_np384_addcarryx_u64(&x189, &x190, x188, x184, x181); fiat_np384_addcarryx_u64(&x191, &x192, x190, x182, x179); fiat_np384_addcarryx_u64(&x193, &x194, x192, x180, x177); fiat_np384_addcarryx_u64(&x195, &x196, x194, x178, x175); fiat_np384_addcarryx_u64(&x197, &x198, 0x0, x161, x185); fiat_np384_addcarryx_u64(&x199, &x200, x198, x163, x187); fiat_np384_addcarryx_u64(&x201, &x202, x200, x165, x189); fiat_np384_addcarryx_u64(&x203, &x204, x202, x167, x191); fiat_np384_addcarryx_u64(&x205, &x206, x204, x169, x193); fiat_np384_addcarryx_u64(&x207, &x208, x206, x171, x195); fiat_np384_addcarryx_u64(&x209, &x210, x208, (((uint64_t)x172 + x138) + (x160 + x140)), (x196 + x176)); fiat_np384_mulx_u64(&x211, &x212, x3, UINT64_C(0xc84ee012b39bf21)); fiat_np384_mulx_u64(&x213, &x214, x3, UINT64_C(0x3fb05b7a28266895)); fiat_np384_mulx_u64(&x215, &x216, x3, UINT64_C(0xd40d49174aab1cc5)); fiat_np384_mulx_u64(&x217, &x218, x3, UINT64_C(0xbc3e483afcb82947)); fiat_np384_mulx_u64(&x219, &x220, x3, UINT64_C(0xff3d81e5df1aa419)); fiat_np384_mulx_u64(&x221, &x222, x3, UINT64_C(0x2d319b2419b409a9)); fiat_np384_addcarryx_u64(&x223, &x224, 0x0, x222, x219); fiat_np384_addcarryx_u64(&x225, &x226, x224, x220, x217); fiat_np384_addcarryx_u64(&x227, &x228, x226, x218, x215); fiat_np384_addcarryx_u64(&x229, &x230, x228, x216, x213); fiat_np384_addcarryx_u64(&x231, &x232, x230, x214, x211); fiat_np384_addcarryx_u64(&x233, &x234, 0x0, x199, x221); fiat_np384_addcarryx_u64(&x235, &x236, x234, x201, x223); fiat_np384_addcarryx_u64(&x237, &x238, x236, x203, x225); fiat_np384_addcarryx_u64(&x239, &x240, x238, x205, x227); fiat_np384_addcarryx_u64(&x241, &x242, x240, x207, x229); fiat_np384_addcarryx_u64(&x243, &x244, x242, x209, x231); fiat_np384_mulx_u64(&x245, &x246, x233, UINT64_C(0x6ed46089e88fdc45)); fiat_np384_mulx_u64(&x247, &x248, x245, UINT64_C(0xffffffffffffffff)); fiat_np384_mulx_u64(&x249, &x250, x245, UINT64_C(0xffffffffffffffff)); fiat_np384_mulx_u64(&x251, &x252, x245, UINT64_C(0xffffffffffffffff)); fiat_np384_mulx_u64(&x253, &x254, x245, UINT64_C(0xc7634d81f4372ddf)); fiat_np384_mulx_u64(&x255, &x256, x245, UINT64_C(0x581a0db248b0a77a)); fiat_np384_mulx_u64(&x257, &x258, x245, UINT64_C(0xecec196accc52973)); fiat_np384_addcarryx_u64(&x259, &x260, 0x0, x258, x255); fiat_np384_addcarryx_u64(&x261, &x262, x260, x256, x253); fiat_np384_addcarryx_u64(&x263, &x264, x262, x254, x251); fiat_np384_addcarryx_u64(&x265, &x266, x264, x252, x249); fiat_np384_addcarryx_u64(&x267, &x268, x266, x250, x247); fiat_np384_addcarryx_u64(&x269, &x270, 0x0, x233, x257); fiat_np384_addcarryx_u64(&x271, &x272, x270, x235, x259); fiat_np384_addcarryx_u64(&x273, &x274, x272, x237, x261); fiat_np384_addcarryx_u64(&x275, &x276, x274, x239, x263); fiat_np384_addcarryx_u64(&x277, &x278, x276, x241, x265); fiat_np384_addcarryx_u64(&x279, &x280, x278, x243, x267); fiat_np384_addcarryx_u64(&x281, &x282, x280, (((uint64_t)x244 + x210) + (x232 + x212)), (x268 + x248)); fiat_np384_mulx_u64(&x283, &x284, x4, UINT64_C(0xc84ee012b39bf21)); fiat_np384_mulx_u64(&x285, &x286, x4, UINT64_C(0x3fb05b7a28266895)); fiat_np384_mulx_u64(&x287, &x288, x4, UINT64_C(0xd40d49174aab1cc5)); fiat_np384_mulx_u64(&x289, &x290, x4, UINT64_C(0xbc3e483afcb82947)); fiat_np384_mulx_u64(&x291, &x292, x4, UINT64_C(0xff3d81e5df1aa419)); fiat_np384_mulx_u64(&x293, &x294, x4, UINT64_C(0x2d319b2419b409a9)); fiat_np384_addcarryx_u64(&x295, &x296, 0x0, x294, x291); fiat_np384_addcarryx_u64(&x297, &x298, x296, x292, x289); fiat_np384_addcarryx_u64(&x299, &x300, x298, x290, x287); fiat_np384_addcarryx_u64(&x301, &x302, x300, x288, x285); fiat_np384_addcarryx_u64(&x303, &x304, x302, x286, x283); fiat_np384_addcarryx_u64(&x305, &x306, 0x0, x271, x293); fiat_np384_addcarryx_u64(&x307, &x308, x306, x273, x295); fiat_np384_addcarryx_u64(&x309, &x310, x308, x275, x297); fiat_np384_addcarryx_u64(&x311, &x312, x310, x277, x299); fiat_np384_addcarryx_u64(&x313, &x314, x312, x279, x301); fiat_np384_addcarryx_u64(&x315, &x316, x314, x281, x303); fiat_np384_mulx_u64(&x317, &x318, x305, UINT64_C(0x6ed46089e88fdc45)); fiat_np384_mulx_u64(&x319, &x320, x317, UINT64_C(0xffffffffffffffff)); fiat_np384_mulx_u64(&x321, &x322, x317, UINT64_C(0xffffffffffffffff)); fiat_np384_mulx_u64(&x323, &x324, x317, UINT64_C(0xffffffffffffffff)); fiat_np384_mulx_u64(&x325, &x326, x317, UINT64_C(0xc7634d81f4372ddf)); fiat_np384_mulx_u64(&x327, &x328, x317, UINT64_C(0x581a0db248b0a77a)); fiat_np384_mulx_u64(&x329, &x330, x317, UINT64_C(0xecec196accc52973)); fiat_np384_addcarryx_u64(&x331, &x332, 0x0, x330, x327); fiat_np384_addcarryx_u64(&x333, &x334, x332, x328, x325); fiat_np384_addcarryx_u64(&x335, &x336, x334, x326, x323); fiat_np384_addcarryx_u64(&x337, &x338, x336, x324, x321); fiat_np384_addcarryx_u64(&x339, &x340, x338, x322, x319); fiat_np384_addcarryx_u64(&x341, &x342, 0x0, x305, x329); fiat_np384_addcarryx_u64(&x343, &x344, x342, x307, x331); fiat_np384_addcarryx_u64(&x345, &x346, x344, x309, x333); fiat_np384_addcarryx_u64(&x347, &x348, x346, x311, x335); fiat_np384_addcarryx_u64(&x349, &x350, x348, x313, x337); fiat_np384_addcarryx_u64(&x351, &x352, x350, x315, x339); fiat_np384_addcarryx_u64(&x353, &x354, x352, (((uint64_t)x316 + x282) + (x304 + x284)), (x340 + x320)); fiat_np384_mulx_u64(&x355, &x356, x5, UINT64_C(0xc84ee012b39bf21)); fiat_np384_mulx_u64(&x357, &x358, x5, UINT64_C(0x3fb05b7a28266895)); fiat_np384_mulx_u64(&x359, &x360, x5, UINT64_C(0xd40d49174aab1cc5)); fiat_np384_mulx_u64(&x361, &x362, x5, UINT64_C(0xbc3e483afcb82947)); fiat_np384_mulx_u64(&x363, &x364, x5, UINT64_C(0xff3d81e5df1aa419)); fiat_np384_mulx_u64(&x365, &x366, x5, UINT64_C(0x2d319b2419b409a9)); fiat_np384_addcarryx_u64(&x367, &x368, 0x0, x366, x363); fiat_np384_addcarryx_u64(&x369, &x370, x368, x364, x361); fiat_np384_addcarryx_u64(&x371, &x372, x370, x362, x359); fiat_np384_addcarryx_u64(&x373, &x374, x372, x360, x357); fiat_np384_addcarryx_u64(&x375, &x376, x374, x358, x355); fiat_np384_addcarryx_u64(&x377, &x378, 0x0, x343, x365); fiat_np384_addcarryx_u64(&x379, &x380, x378, x345, x367); fiat_np384_addcarryx_u64(&x381, &x382, x380, x347, x369); fiat_np384_addcarryx_u64(&x383, &x384, x382, x349, x371); fiat_np384_addcarryx_u64(&x385, &x386, x384, x351, x373); fiat_np384_addcarryx_u64(&x387, &x388, x386, x353, x375); fiat_np384_mulx_u64(&x389, &x390, x377, UINT64_C(0x6ed46089e88fdc45)); fiat_np384_mulx_u64(&x391, &x392, x389, UINT64_C(0xffffffffffffffff)); fiat_np384_mulx_u64(&x393, &x394, x389, UINT64_C(0xffffffffffffffff)); fiat_np384_mulx_u64(&x395, &x396, x389, UINT64_C(0xffffffffffffffff)); fiat_np384_mulx_u64(&x397, &x398, x389, UINT64_C(0xc7634d81f4372ddf)); fiat_np384_mulx_u64(&x399, &x400, x389, UINT64_C(0x581a0db248b0a77a)); fiat_np384_mulx_u64(&x401, &x402, x389, UINT64_C(0xecec196accc52973)); fiat_np384_addcarryx_u64(&x403, &x404, 0x0, x402, x399); fiat_np384_addcarryx_u64(&x405, &x406, x404, x400, x397); fiat_np384_addcarryx_u64(&x407, &x408, x406, x398, x395); fiat_np384_addcarryx_u64(&x409, &x410, x408, x396, x393); fiat_np384_addcarryx_u64(&x411, &x412, x410, x394, x391); fiat_np384_addcarryx_u64(&x413, &x414, 0x0, x377, x401); fiat_np384_addcarryx_u64(&x415, &x416, x414, x379, x403); fiat_np384_addcarryx_u64(&x417, &x418, x416, x381, x405); fiat_np384_addcarryx_u64(&x419, &x420, x418, x383, x407); fiat_np384_addcarryx_u64(&x421, &x422, x420, x385, x409); fiat_np384_addcarryx_u64(&x423, &x424, x422, x387, x411); fiat_np384_addcarryx_u64(&x425, &x426, x424, (((uint64_t)x388 + x354) + (x376 + x356)), (x412 + x392)); fiat_np384_subborrowx_u64(&x427, &x428, 0x0, x415, UINT64_C(0xecec196accc52973)); fiat_np384_subborrowx_u64(&x429, &x430, x428, x417, UINT64_C(0x581a0db248b0a77a)); fiat_np384_subborrowx_u64(&x431, &x432, x430, x419, UINT64_C(0xc7634d81f4372ddf)); fiat_np384_subborrowx_u64(&x433, &x434, x432, x421, UINT64_C(0xffffffffffffffff)); fiat_np384_subborrowx_u64(&x435, &x436, x434, x423, UINT64_C(0xffffffffffffffff)); fiat_np384_subborrowx_u64(&x437, &x438, x436, x425, UINT64_C(0xffffffffffffffff)); fiat_np384_subborrowx_u64(&x439, &x440, x438, x426, 0x0); fiat_np384_cmovznz_u64(&x441, x440, x427, x415); fiat_np384_cmovznz_u64(&x442, x440, x429, x417); fiat_np384_cmovznz_u64(&x443, x440, x431, x419); fiat_np384_cmovznz_u64(&x444, x440, x433, x421); fiat_np384_cmovznz_u64(&x445, x440, x435, x423); fiat_np384_cmovznz_u64(&x446, x440, x437, x425); out1[0] = x441; out1[1] = x442; out1[2] = x443; out1[3] = x444; out1[4] = x445; out1[5] = x446; } /* * The function fiat_np384_set_one returns the field element one in the Montgomery domain. * * Postconditions: * eval (from_montgomery out1) mod m = 1 mod m * 0 ≤ eval out1 < m * */ static void fiat_np384_set_one(fiat_np384_montgomery_domain_field_element out1) { out1[0] = UINT64_C(0x1313e695333ad68d); out1[1] = UINT64_C(0xa7e5f24db74f5885); out1[2] = UINT64_C(0x389cb27e0bc8d220); out1[3] = 0x0; out1[4] = 0x0; out1[5] = 0x0; } /* * The function fiat_np384_msat returns the saturated representation of the prime modulus. * * Postconditions: * twos_complement_eval out1 = m * 0 ≤ eval out1 < m * * Output Bounds: * out1: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]] */ static void fiat_np384_msat(uint64_t out1[7]) { out1[0] = UINT64_C(0xecec196accc52973); out1[1] = UINT64_C(0x581a0db248b0a77a); out1[2] = UINT64_C(0xc7634d81f4372ddf); out1[3] = UINT64_C(0xffffffffffffffff); out1[4] = UINT64_C(0xffffffffffffffff); out1[5] = UINT64_C(0xffffffffffffffff); out1[6] = 0x0; } /* * The function fiat_np384_divstep_precomp returns the precomputed value for Bernstein-Yang-inversion (in montgomery form). * * Postconditions: * eval (from_montgomery out1) = ⌊(m - 1) / 2⌋^(if ⌊log2 m⌋ + 1 < 46 then ⌊(49 * (⌊log2 m⌋ + 1) + 80) / 17⌋ else ⌊(49 * (⌊log2 m⌋ + 1) + 57) / 17⌋) * 0 ≤ eval out1 < m * * Output Bounds: * out1: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]] */ static void fiat_np384_divstep_precomp(uint64_t out1[6]) { out1[0] = UINT64_C(0x49589ae0e6045b6a); out1[1] = UINT64_C(0x3c9a5352870040ed); out1[2] = UINT64_C(0xdacb097e977dc242); out1[3] = UINT64_C(0xb5ab30a6d1ecbe36); out1[4] = UINT64_C(0x97d7a1081f959973); out1[5] = UINT64_C(0x2ba012f8d27192bc); } /* * The function fiat_np384_divstep computes a divstep. * * Preconditions: * 0 ≤ eval arg4 < m * 0 ≤ eval arg5 < m * Postconditions: * out1 = (if 0 < arg1 ∧ (twos_complement_eval arg3) is odd then 1 - arg1 else 1 + arg1) * twos_complement_eval out2 = (if 0 < arg1 ∧ (twos_complement_eval arg3) is odd then twos_complement_eval arg3 else twos_complement_eval arg2) * twos_complement_eval out3 = (if 0 < arg1 ∧ (twos_complement_eval arg3) is odd then ⌊(twos_complement_eval arg3 - twos_complement_eval arg2) / 2⌋ else ⌊(twos_complement_eval arg3 + (twos_complement_eval arg3 mod 2) * twos_complement_eval arg2) / 2⌋) * eval (from_montgomery out4) mod m = (if 0 < arg1 ∧ (twos_complement_eval arg3) is odd then (2 * eval (from_montgomery arg5)) mod m else (2 * eval (from_montgomery arg4)) mod m) * eval (from_montgomery out5) mod m = (if 0 < arg1 ∧ (twos_complement_eval arg3) is odd then (eval (from_montgomery arg4) - eval (from_montgomery arg4)) mod m else (eval (from_montgomery arg5) + (twos_complement_eval arg3 mod 2) * eval (from_montgomery arg4)) mod m) * 0 ≤ eval out5 < m * 0 ≤ eval out5 < m * 0 ≤ eval out2 < m * 0 ≤ eval out3 < m * * Input Bounds: * arg1: [0x0 ~> 0xffffffffffffffff] * arg2: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]] * arg3: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]] * arg4: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]] * arg5: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]] * Output Bounds: * out1: [0x0 ~> 0xffffffffffffffff] * out2: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]] * out3: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]] * out4: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]] * out5: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]] */ static void fiat_np384_divstep(uint64_t* out1, uint64_t out2[7], uint64_t out3[7], uint64_t out4[6], uint64_t out5[6], uint64_t arg1, const uint64_t arg2[7], const uint64_t arg3[7], const uint64_t arg4[6], const uint64_t arg5[6]) { uint64_t x1; fiat_np384_uint1 x2; fiat_np384_uint1 x3; uint64_t x4; fiat_np384_uint1 x5; uint64_t x6; uint64_t x7; uint64_t x8; uint64_t x9; uint64_t x10; uint64_t x11; uint64_t x12; uint64_t x13; uint64_t x14; fiat_np384_uint1 x15; uint64_t x16; fiat_np384_uint1 x17; uint64_t x18; fiat_np384_uint1 x19; uint64_t x20; fiat_np384_uint1 x21; uint64_t x22; fiat_np384_uint1 x23; uint64_t x24; fiat_np384_uint1 x25; uint64_t x26; fiat_np384_uint1 x27; uint64_t x28; uint64_t x29; uint64_t x30; uint64_t x31; uint64_t x32; uint64_t x33; uint64_t x34; uint64_t x35; uint64_t x36; uint64_t x37; uint64_t x38; uint64_t x39; uint64_t x40; uint64_t x41; fiat_np384_uint1 x42; uint64_t x43; fiat_np384_uint1 x44; uint64_t x45; fiat_np384_uint1 x46; uint64_t x47; fiat_np384_uint1 x48; uint64_t x49; fiat_np384_uint1 x50; uint64_t x51; fiat_np384_uint1 x52; uint64_t x53; fiat_np384_uint1 x54; uint64_t x55; fiat_np384_uint1 x56; uint64_t x57; fiat_np384_uint1 x58; uint64_t x59; fiat_np384_uint1 x60; uint64_t x61; fiat_np384_uint1 x62; uint64_t x63; fiat_np384_uint1 x64; uint64_t x65; fiat_np384_uint1 x66; uint64_t x67; uint64_t x68; uint64_t x69; uint64_t x70; uint64_t x71; uint64_t x72; uint64_t x73; fiat_np384_uint1 x74; uint64_t x75; fiat_np384_uint1 x76; uint64_t x77; fiat_np384_uint1 x78; uint64_t x79; fiat_np384_uint1 x80; uint64_t x81; fiat_np384_uint1 x82; uint64_t x83; fiat_np384_uint1 x84; uint64_t x85; uint64_t x86; fiat_np384_uint1 x87; uint64_t x88; fiat_np384_uint1 x89; uint64_t x90; fiat_np384_uint1 x91; uint64_t x92; fiat_np384_uint1 x93; uint64_t x94; fiat_np384_uint1 x95; uint64_t x96; fiat_np384_uint1 x97; uint64_t x98; uint64_t x99; uint64_t x100; uint64_t x101; uint64_t x102; uint64_t x103; fiat_np384_uint1 x104; uint64_t x105; uint64_t x106; uint64_t x107; uint64_t x108; uint64_t x109; uint64_t x110; uint64_t x111; uint64_t x112; fiat_np384_uint1 x113; uint64_t x114; fiat_np384_uint1 x115; uint64_t x116; fiat_np384_uint1 x117; uint64_t x118; fiat_np384_uint1 x119; uint64_t x120; fiat_np384_uint1 x121; uint64_t x122; fiat_np384_uint1 x123; uint64_t x124; fiat_np384_uint1 x125; uint64_t x126; uint64_t x127; uint64_t x128; uint64_t x129; uint64_t x130; uint64_t x131; uint64_t x132; fiat_np384_uint1 x133; uint64_t x134; fiat_np384_uint1 x135; uint64_t x136; fiat_np384_uint1 x137; uint64_t x138; fiat_np384_uint1 x139; uint64_t x140; fiat_np384_uint1 x141; uint64_t x142; fiat_np384_uint1 x143; uint64_t x144; fiat_np384_uint1 x145; uint64_t x146; fiat_np384_uint1 x147; uint64_t x148; fiat_np384_uint1 x149; uint64_t x150; fiat_np384_uint1 x151; uint64_t x152; fiat_np384_uint1 x153; uint64_t x154; fiat_np384_uint1 x155; uint64_t x156; fiat_np384_uint1 x157; uint64_t x158; fiat_np384_uint1 x159; uint64_t x160; uint64_t x161; uint64_t x162; uint64_t x163; uint64_t x164; uint64_t x165; uint64_t x166; uint64_t x167; uint64_t x168; uint64_t x169; uint64_t x170; uint64_t x171; uint64_t x172; uint64_t x173; uint64_t x174; uint64_t x175; uint64_t x176; uint64_t x177; uint64_t x178; fiat_np384_addcarryx_u64(&x1, &x2, 0x0, (~arg1), 0x1); x3 = (fiat_np384_uint1)((fiat_np384_uint1)(x1 >> 63) & (fiat_np384_uint1)((arg3[0]) & 0x1)); fiat_np384_addcarryx_u64(&x4, &x5, 0x0, (~arg1), 0x1); fiat_np384_cmovznz_u64(&x6, x3, arg1, x4); fiat_np384_cmovznz_u64(&x7, x3, (arg2[0]), (arg3[0])); fiat_np384_cmovznz_u64(&x8, x3, (arg2[1]), (arg3[1])); fiat_np384_cmovznz_u64(&x9, x3, (arg2[2]), (arg3[2])); fiat_np384_cmovznz_u64(&x10, x3, (arg2[3]), (arg3[3])); fiat_np384_cmovznz_u64(&x11, x3, (arg2[4]), (arg3[4])); fiat_np384_cmovznz_u64(&x12, x3, (arg2[5]), (arg3[5])); fiat_np384_cmovznz_u64(&x13, x3, (arg2[6]), (arg3[6])); fiat_np384_addcarryx_u64(&x14, &x15, 0x0, 0x1, (~(arg2[0]))); fiat_np384_addcarryx_u64(&x16, &x17, x15, 0x0, (~(arg2[1]))); fiat_np384_addcarryx_u64(&x18, &x19, x17, 0x0, (~(arg2[2]))); fiat_np384_addcarryx_u64(&x20, &x21, x19, 0x0, (~(arg2[3]))); fiat_np384_addcarryx_u64(&x22, &x23, x21, 0x0, (~(arg2[4]))); fiat_np384_addcarryx_u64(&x24, &x25, x23, 0x0, (~(arg2[5]))); fiat_np384_addcarryx_u64(&x26, &x27, x25, 0x0, (~(arg2[6]))); fiat_np384_cmovznz_u64(&x28, x3, (arg3[0]), x14); fiat_np384_cmovznz_u64(&x29, x3, (arg3[1]), x16); fiat_np384_cmovznz_u64(&x30, x3, (arg3[2]), x18); fiat_np384_cmovznz_u64(&x31, x3, (arg3[3]), x20); fiat_np384_cmovznz_u64(&x32, x3, (arg3[4]), x22); fiat_np384_cmovznz_u64(&x33, x3, (arg3[5]), x24); fiat_np384_cmovznz_u64(&x34, x3, (arg3[6]), x26); fiat_np384_cmovznz_u64(&x35, x3, (arg4[0]), (arg5[0])); fiat_np384_cmovznz_u64(&x36, x3, (arg4[1]), (arg5[1])); fiat_np384_cmovznz_u64(&x37, x3, (arg4[2]), (arg5[2])); fiat_np384_cmovznz_u64(&x38, x3, (arg4[3]), (arg5[3])); fiat_np384_cmovznz_u64(&x39, x3, (arg4[4]), (arg5[4])); fiat_np384_cmovznz_u64(&x40, x3, (arg4[5]), (arg5[5])); fiat_np384_addcarryx_u64(&x41, &x42, 0x0, x35, x35); fiat_np384_addcarryx_u64(&x43, &x44, x42, x36, x36); fiat_np384_addcarryx_u64(&x45, &x46, x44, x37, x37); fiat_np384_addcarryx_u64(&x47, &x48, x46, x38, x38); fiat_np384_addcarryx_u64(&x49, &x50, x48, x39, x39); fiat_np384_addcarryx_u64(&x51, &x52, x50, x40, x40); fiat_np384_subborrowx_u64(&x53, &x54, 0x0, x41, UINT64_C(0xecec196accc52973)); fiat_np384_subborrowx_u64(&x55, &x56, x54, x43, UINT64_C(0x581a0db248b0a77a)); fiat_np384_subborrowx_u64(&x57, &x58, x56, x45, UINT64_C(0xc7634d81f4372ddf)); fiat_np384_subborrowx_u64(&x59, &x60, x58, x47, UINT64_C(0xffffffffffffffff)); fiat_np384_subborrowx_u64(&x61, &x62, x60, x49, UINT64_C(0xffffffffffffffff)); fiat_np384_subborrowx_u64(&x63, &x64, x62, x51, UINT64_C(0xffffffffffffffff)); fiat_np384_subborrowx_u64(&x65, &x66, x64, x52, 0x0); x67 = (arg4[5]); x68 = (arg4[4]); x69 = (arg4[3]); x70 = (arg4[2]); x71 = (arg4[1]); x72 = (arg4[0]); fiat_np384_subborrowx_u64(&x73, &x74, 0x0, 0x0, x72); fiat_np384_subborrowx_u64(&x75, &x76, x74, 0x0, x71); fiat_np384_subborrowx_u64(&x77, &x78, x76, 0x0, x70); fiat_np384_subborrowx_u64(&x79, &x80, x78, 0x0, x69); fiat_np384_subborrowx_u64(&x81, &x82, x80, 0x0, x68); fiat_np384_subborrowx_u64(&x83, &x84, x82, 0x0, x67); fiat_np384_cmovznz_u64(&x85, x84, 0x0, UINT64_C(0xffffffffffffffff)); fiat_np384_addcarryx_u64(&x86, &x87, 0x0, x73, (x85 & UINT64_C(0xecec196accc52973))); fiat_np384_addcarryx_u64(&x88, &x89, x87, x75, (x85 & UINT64_C(0x581a0db248b0a77a))); fiat_np384_addcarryx_u64(&x90, &x91, x89, x77, (x85 & UINT64_C(0xc7634d81f4372ddf))); fiat_np384_addcarryx_u64(&x92, &x93, x91, x79, x85); fiat_np384_addcarryx_u64(&x94, &x95, x93, x81, x85); fiat_np384_addcarryx_u64(&x96, &x97, x95, x83, x85); fiat_np384_cmovznz_u64(&x98, x3, (arg5[0]), x86); fiat_np384_cmovznz_u64(&x99, x3, (arg5[1]), x88); fiat_np384_cmovznz_u64(&x100, x3, (arg5[2]), x90); fiat_np384_cmovznz_u64(&x101, x3, (arg5[3]), x92); fiat_np384_cmovznz_u64(&x102, x3, (arg5[4]), x94); fiat_np384_cmovznz_u64(&x103, x3, (arg5[5]), x96); x104 = (fiat_np384_uint1)(x28 & 0x1); fiat_np384_cmovznz_u64(&x105, x104, 0x0, x7); fiat_np384_cmovznz_u64(&x106, x104, 0x0, x8); fiat_np384_cmovznz_u64(&x107, x104, 0x0, x9); fiat_np384_cmovznz_u64(&x108, x104, 0x0, x10); fiat_np384_cmovznz_u64(&x109, x104, 0x0, x11); fiat_np384_cmovznz_u64(&x110, x104, 0x0, x12); fiat_np384_cmovznz_u64(&x111, x104, 0x0, x13); fiat_np384_addcarryx_u64(&x112, &x113, 0x0, x28, x105); fiat_np384_addcarryx_u64(&x114, &x115, x113, x29, x106); fiat_np384_addcarryx_u64(&x116, &x117, x115, x30, x107); fiat_np384_addcarryx_u64(&x118, &x119, x117, x31, x108); fiat_np384_addcarryx_u64(&x120, &x121, x119, x32, x109); fiat_np384_addcarryx_u64(&x122, &x123, x121, x33, x110); fiat_np384_addcarryx_u64(&x124, &x125, x123, x34, x111); fiat_np384_cmovznz_u64(&x126, x104, 0x0, x35); fiat_np384_cmovznz_u64(&x127, x104, 0x0, x36); fiat_np384_cmovznz_u64(&x128, x104, 0x0, x37); fiat_np384_cmovznz_u64(&x129, x104, 0x0, x38); fiat_np384_cmovznz_u64(&x130, x104, 0x0, x39); fiat_np384_cmovznz_u64(&x131, x104, 0x0, x40); fiat_np384_addcarryx_u64(&x132, &x133, 0x0, x98, x126); fiat_np384_addcarryx_u64(&x134, &x135, x133, x99, x127); fiat_np384_addcarryx_u64(&x136, &x137, x135, x100, x128); fiat_np384_addcarryx_u64(&x138, &x139, x137, x101, x129); fiat_np384_addcarryx_u64(&x140, &x141, x139, x102, x130); fiat_np384_addcarryx_u64(&x142, &x143, x141, x103, x131); fiat_np384_subborrowx_u64(&x144, &x145, 0x0, x132, UINT64_C(0xecec196accc52973)); fiat_np384_subborrowx_u64(&x146, &x147, x145, x134, UINT64_C(0x581a0db248b0a77a)); fiat_np384_subborrowx_u64(&x148, &x149, x147, x136, UINT64_C(0xc7634d81f4372ddf)); fiat_np384_subborrowx_u64(&x150, &x151, x149, x138, UINT64_C(0xffffffffffffffff)); fiat_np384_subborrowx_u64(&x152, &x153, x151, x140, UINT64_C(0xffffffffffffffff)); fiat_np384_subborrowx_u64(&x154, &x155, x153, x142, UINT64_C(0xffffffffffffffff)); fiat_np384_subborrowx_u64(&x156, &x157, x155, x143, 0x0); fiat_np384_addcarryx_u64(&x158, &x159, 0x0, x6, 0x1); x160 = ((x112 >> 1) | ((x114 << 63) & UINT64_C(0xffffffffffffffff))); x161 = ((x114 >> 1) | ((x116 << 63) & UINT64_C(0xffffffffffffffff))); x162 = ((x116 >> 1) | ((x118 << 63) & UINT64_C(0xffffffffffffffff))); x163 = ((x118 >> 1) | ((x120 << 63) & UINT64_C(0xffffffffffffffff))); x164 = ((x120 >> 1) | ((x122 << 63) & UINT64_C(0xffffffffffffffff))); x165 = ((x122 >> 1) | ((x124 << 63) & UINT64_C(0xffffffffffffffff))); x166 = ((x124 & UINT64_C(0x8000000000000000)) | (x124 >> 1)); fiat_np384_cmovznz_u64(&x167, x66, x53, x41); fiat_np384_cmovznz_u64(&x168, x66, x55, x43); fiat_np384_cmovznz_u64(&x169, x66, x57, x45); fiat_np384_cmovznz_u64(&x170, x66, x59, x47); fiat_np384_cmovznz_u64(&x171, x66, x61, x49); fiat_np384_cmovznz_u64(&x172, x66, x63, x51); fiat_np384_cmovznz_u64(&x173, x157, x144, x132); fiat_np384_cmovznz_u64(&x174, x157, x146, x134); fiat_np384_cmovznz_u64(&x175, x157, x148, x136); fiat_np384_cmovznz_u64(&x176, x157, x150, x138); fiat_np384_cmovznz_u64(&x177, x157, x152, x140); fiat_np384_cmovznz_u64(&x178, x157, x154, x142); *out1 = x158; out2[0] = x7; out2[1] = x8; out2[2] = x9; out2[3] = x10; out2[4] = x11; out2[5] = x12; out2[6] = x13; out3[0] = x160; out3[1] = x161; out3[2] = x162; out3[3] = x163; out3[4] = x164; out3[5] = x165; out3[6] = x166; out4[0] = x167; out4[1] = x168; out4[2] = x169; out4[3] = x170; out4[4] = x171; out4[5] = x172; out5[0] = x173; out5[1] = x174; out5[2] = x175; out5[3] = x176; out5[4] = x177; out5[5] = x178; } /* * The function fiat_np384_to_bytes serializes a field element NOT in the Montgomery domain to bytes in little-endian order. * * Preconditions: * 0 ≤ eval arg1 < m * Postconditions: * out1 = map (λ x, ⌊((eval arg1 mod m) mod 2^(8 * (x + 1))) / 2^(8 * x)⌋) [0..47] * * Input Bounds: * arg1: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]] * Output Bounds: * out1: [[0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff]] */ static void fiat_np384_to_bytes(uint8_t out1[48], const uint64_t arg1[6]) { uint64_t x1; uint64_t x2; uint64_t x3; uint64_t x4; uint64_t x5; uint64_t x6; uint8_t x7; uint64_t x8; uint8_t x9; uint64_t x10; uint8_t x11; uint64_t x12; uint8_t x13; uint64_t x14; uint8_t x15; uint64_t x16; uint8_t x17; uint64_t x18; uint8_t x19; uint8_t x20; uint8_t x21; uint64_t x22; uint8_t x23; uint64_t x24; uint8_t x25; uint64_t x26; uint8_t x27; uint64_t x28; uint8_t x29; uint64_t x30; uint8_t x31; uint64_t x32; uint8_t x33; uint8_t x34; uint8_t x35; uint64_t x36; uint8_t x37; uint64_t x38; uint8_t x39; uint64_t x40; uint8_t x41; uint64_t x42; uint8_t x43; uint64_t x44; uint8_t x45; uint64_t x46; uint8_t x47; uint8_t x48; uint8_t x49; uint64_t x50; uint8_t x51; uint64_t x52; uint8_t x53; uint64_t x54; uint8_t x55; uint64_t x56; uint8_t x57; uint64_t x58; uint8_t x59; uint64_t x60; uint8_t x61; uint8_t x62; uint8_t x63; uint64_t x64; uint8_t x65; uint64_t x66; uint8_t x67; uint64_t x68; uint8_t x69; uint64_t x70; uint8_t x71; uint64_t x72; uint8_t x73; uint64_t x74; uint8_t x75; uint8_t x76; uint8_t x77; uint64_t x78; uint8_t x79; uint64_t x80; uint8_t x81; uint64_t x82; uint8_t x83; uint64_t x84; uint8_t x85; uint64_t x86; uint8_t x87; uint64_t x88; uint8_t x89; uint8_t x90; x1 = (arg1[5]); x2 = (arg1[4]); x3 = (arg1[3]); x4 = (arg1[2]); x5 = (arg1[1]); x6 = (arg1[0]); x7 = (uint8_t)(x6 & UINT8_C(0xff)); x8 = (x6 >> 8); x9 = (uint8_t)(x8 & UINT8_C(0xff)); x10 = (x8 >> 8); x11 = (uint8_t)(x10 & UINT8_C(0xff)); x12 = (x10 >> 8); x13 = (uint8_t)(x12 & UINT8_C(0xff)); x14 = (x12 >> 8); x15 = (uint8_t)(x14 & UINT8_C(0xff)); x16 = (x14 >> 8); x17 = (uint8_t)(x16 & UINT8_C(0xff)); x18 = (x16 >> 8); x19 = (uint8_t)(x18 & UINT8_C(0xff)); x20 = (uint8_t)(x18 >> 8); x21 = (uint8_t)(x5 & UINT8_C(0xff)); x22 = (x5 >> 8); x23 = (uint8_t)(x22 & UINT8_C(0xff)); x24 = (x22 >> 8); x25 = (uint8_t)(x24 & UINT8_C(0xff)); x26 = (x24 >> 8); x27 = (uint8_t)(x26 & UINT8_C(0xff)); x28 = (x26 >> 8); x29 = (uint8_t)(x28 & UINT8_C(0xff)); x30 = (x28 >> 8); x31 = (uint8_t)(x30 & UINT8_C(0xff)); x32 = (x30 >> 8); x33 = (uint8_t)(x32 & UINT8_C(0xff)); x34 = (uint8_t)(x32 >> 8); x35 = (uint8_t)(x4 & UINT8_C(0xff)); x36 = (x4 >> 8); x37 = (uint8_t)(x36 & UINT8_C(0xff)); x38 = (x36 >> 8); x39 = (uint8_t)(x38 & UINT8_C(0xff)); x40 = (x38 >> 8); x41 = (uint8_t)(x40 & UINT8_C(0xff)); x42 = (x40 >> 8); x43 = (uint8_t)(x42 & UINT8_C(0xff)); x44 = (x42 >> 8); x45 = (uint8_t)(x44 & UINT8_C(0xff)); x46 = (x44 >> 8); x47 = (uint8_t)(x46 & UINT8_C(0xff)); x48 = (uint8_t)(x46 >> 8); x49 = (uint8_t)(x3 & UINT8_C(0xff)); x50 = (x3 >> 8); x51 = (uint8_t)(x50 & UINT8_C(0xff)); x52 = (x50 >> 8); x53 = (uint8_t)(x52 & UINT8_C(0xff)); x54 = (x52 >> 8); x55 = (uint8_t)(x54 & UINT8_C(0xff)); x56 = (x54 >> 8); x57 = (uint8_t)(x56 & UINT8_C(0xff)); x58 = (x56 >> 8); x59 = (uint8_t)(x58 & UINT8_C(0xff)); x60 = (x58 >> 8); x61 = (uint8_t)(x60 & UINT8_C(0xff)); x62 = (uint8_t)(x60 >> 8); x63 = (uint8_t)(x2 & UINT8_C(0xff)); x64 = (x2 >> 8); x65 = (uint8_t)(x64 & UINT8_C(0xff)); x66 = (x64 >> 8); x67 = (uint8_t)(x66 & UINT8_C(0xff)); x68 = (x66 >> 8); x69 = (uint8_t)(x68 & UINT8_C(0xff)); x70 = (x68 >> 8); x71 = (uint8_t)(x70 & UINT8_C(0xff)); x72 = (x70 >> 8); x73 = (uint8_t)(x72 & UINT8_C(0xff)); x74 = (x72 >> 8); x75 = (uint8_t)(x74 & UINT8_C(0xff)); x76 = (uint8_t)(x74 >> 8); x77 = (uint8_t)(x1 & UINT8_C(0xff)); x78 = (x1 >> 8); x79 = (uint8_t)(x78 & UINT8_C(0xff)); x80 = (x78 >> 8); x81 = (uint8_t)(x80 & UINT8_C(0xff)); x82 = (x80 >> 8); x83 = (uint8_t)(x82 & UINT8_C(0xff)); x84 = (x82 >> 8); x85 = (uint8_t)(x84 & UINT8_C(0xff)); x86 = (x84 >> 8); x87 = (uint8_t)(x86 & UINT8_C(0xff)); x88 = (x86 >> 8); x89 = (uint8_t)(x88 & UINT8_C(0xff)); x90 = (uint8_t)(x88 >> 8); out1[0] = x7; out1[1] = x9; out1[2] = x11; out1[3] = x13; out1[4] = x15; out1[5] = x17; out1[6] = x19; out1[7] = x20; out1[8] = x21; out1[9] = x23; out1[10] = x25; out1[11] = x27; out1[12] = x29; out1[13] = x31; out1[14] = x33; out1[15] = x34; out1[16] = x35; out1[17] = x37; out1[18] = x39; out1[19] = x41; out1[20] = x43; out1[21] = x45; out1[22] = x47; out1[23] = x48; out1[24] = x49; out1[25] = x51; out1[26] = x53; out1[27] = x55; out1[28] = x57; out1[29] = x59; out1[30] = x61; out1[31] = x62; out1[32] = x63; out1[33] = x65; out1[34] = x67; out1[35] = x69; out1[36] = x71; out1[37] = x73; out1[38] = x75; out1[39] = x76; out1[40] = x77; out1[41] = x79; out1[42] = x81; out1[43] = x83; out1[44] = x85; out1[45] = x87; out1[46] = x89; out1[47] = x90; } /* * The function fiat_np384_from_bytes deserializes a field element NOT in the Montgomery domain from bytes in little-endian order. * * Preconditions: * 0 ≤ bytes_eval arg1 < m * Postconditions: * eval out1 mod m = bytes_eval arg1 mod m * 0 ≤ eval out1 < m * * Input Bounds: * arg1: [[0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff]] * Output Bounds: * out1: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]] */ static void fiat_np384_from_bytes(uint64_t out1[6], const uint8_t arg1[48]) { uint64_t x1; uint64_t x2; uint64_t x3; uint64_t x4; uint64_t x5; uint64_t x6; uint64_t x7; uint8_t x8; uint64_t x9; uint64_t x10; uint64_t x11; uint64_t x12; uint64_t x13; uint64_t x14; uint64_t x15; uint8_t x16; uint64_t x17; uint64_t x18; uint64_t x19; uint64_t x20; uint64_t x21; uint64_t x22; uint64_t x23; uint8_t x24; uint64_t x25; uint64_t x26; uint64_t x27; uint64_t x28; uint64_t x29; uint64_t x30; uint64_t x31; uint8_t x32; uint64_t x33; uint64_t x34; uint64_t x35; uint64_t x36; uint64_t x37; uint64_t x38; uint64_t x39; uint8_t x40; uint64_t x41; uint64_t x42; uint64_t x43; uint64_t x44; uint64_t x45; uint64_t x46; uint64_t x47; uint8_t x48; uint64_t x49; uint64_t x50; uint64_t x51; uint64_t x52; uint64_t x53; uint64_t x54; uint64_t x55; uint64_t x56; uint64_t x57; uint64_t x58; uint64_t x59; uint64_t x60; uint64_t x61; uint64_t x62; uint64_t x63; uint64_t x64; uint64_t x65; uint64_t x66; uint64_t x67; uint64_t x68; uint64_t x69; uint64_t x70; uint64_t x71; uint64_t x72; uint64_t x73; uint64_t x74; uint64_t x75; uint64_t x76; uint64_t x77; uint64_t x78; uint64_t x79; uint64_t x80; uint64_t x81; uint64_t x82; uint64_t x83; uint64_t x84; uint64_t x85; uint64_t x86; uint64_t x87; uint64_t x88; uint64_t x89; uint64_t x90; x1 = ((uint64_t)(arg1[47]) << 56); x2 = ((uint64_t)(arg1[46]) << 48); x3 = ((uint64_t)(arg1[45]) << 40); x4 = ((uint64_t)(arg1[44]) << 32); x5 = ((uint64_t)(arg1[43]) << 24); x6 = ((uint64_t)(arg1[42]) << 16); x7 = ((uint64_t)(arg1[41]) << 8); x8 = (arg1[40]); x9 = ((uint64_t)(arg1[39]) << 56); x10 = ((uint64_t)(arg1[38]) << 48); x11 = ((uint64_t)(arg1[37]) << 40); x12 = ((uint64_t)(arg1[36]) << 32); x13 = ((uint64_t)(arg1[35]) << 24); x14 = ((uint64_t)(arg1[34]) << 16); x15 = ((uint64_t)(arg1[33]) << 8); x16 = (arg1[32]); x17 = ((uint64_t)(arg1[31]) << 56); x18 = ((uint64_t)(arg1[30]) << 48); x19 = ((uint64_t)(arg1[29]) << 40); x20 = ((uint64_t)(arg1[28]) << 32); x21 = ((uint64_t)(arg1[27]) << 24); x22 = ((uint64_t)(arg1[26]) << 16); x23 = ((uint64_t)(arg1[25]) << 8); x24 = (arg1[24]); x25 = ((uint64_t)(arg1[23]) << 56); x26 = ((uint64_t)(arg1[22]) << 48); x27 = ((uint64_t)(arg1[21]) << 40); x28 = ((uint64_t)(arg1[20]) << 32); x29 = ((uint64_t)(arg1[19]) << 24); x30 = ((uint64_t)(arg1[18]) << 16); x31 = ((uint64_t)(arg1[17]) << 8); x32 = (arg1[16]); x33 = ((uint64_t)(arg1[15]) << 56); x34 = ((uint64_t)(arg1[14]) << 48); x35 = ((uint64_t)(arg1[13]) << 40); x36 = ((uint64_t)(arg1[12]) << 32); x37 = ((uint64_t)(arg1[11]) << 24); x38 = ((uint64_t)(arg1[10]) << 16); x39 = ((uint64_t)(arg1[9]) << 8); x40 = (arg1[8]); x41 = ((uint64_t)(arg1[7]) << 56); x42 = ((uint64_t)(arg1[6]) << 48); x43 = ((uint64_t)(arg1[5]) << 40); x44 = ((uint64_t)(arg1[4]) << 32); x45 = ((uint64_t)(arg1[3]) << 24); x46 = ((uint64_t)(arg1[2]) << 16); x47 = ((uint64_t)(arg1[1]) << 8); x48 = (arg1[0]); x49 = (x47 + (uint64_t)x48); x50 = (x46 + x49); x51 = (x45 + x50); x52 = (x44 + x51); x53 = (x43 + x52); x54 = (x42 + x53); x55 = (x41 + x54); x56 = (x39 + (uint64_t)x40); x57 = (x38 + x56); x58 = (x37 + x57); x59 = (x36 + x58); x60 = (x35 + x59); x61 = (x34 + x60); x62 = (x33 + x61); x63 = (x31 + (uint64_t)x32); x64 = (x30 + x63); x65 = (x29 + x64); x66 = (x28 + x65); x67 = (x27 + x66); x68 = (x26 + x67); x69 = (x25 + x68); x70 = (x23 + (uint64_t)x24); x71 = (x22 + x70); x72 = (x21 + x71); x73 = (x20 + x72); x74 = (x19 + x73); x75 = (x18 + x74); x76 = (x17 + x75); x77 = (x15 + (uint64_t)x16); x78 = (x14 + x77); x79 = (x13 + x78); x80 = (x12 + x79); x81 = (x11 + x80); x82 = (x10 + x81); x83 = (x9 + x82); x84 = (x7 + (uint64_t)x8); x85 = (x6 + x84); x86 = (x5 + x85); x87 = (x4 + x86); x88 = (x3 + x87); x89 = (x2 + x88); x90 = (x1 + x89); out1[0] = x55; out1[1] = x62; out1[2] = x69; out1[3] = x76; out1[4] = x83; out1[5] = x90; } /* * The function fiat_np384_selectznz is a multi-limb conditional select. * * Postconditions: * out1 = (if arg1 = 0 then arg2 else arg3) * * Input Bounds: * arg1: [0x0 ~> 0x1] * arg2: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]] * arg3: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]] * Output Bounds: * out1: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]] */ static void fiat_np384_selectznz(uint64_t out1[6], fiat_np384_uint1 arg1, const uint64_t arg2[6], const uint64_t arg3[6]) { uint64_t x1; uint64_t x2; uint64_t x3; uint64_t x4; uint64_t x5; uint64_t x6; fiat_np384_cmovznz_u64(&x1, arg1, (arg2[0]), (arg3[0])); fiat_np384_cmovznz_u64(&x2, arg1, (arg2[1]), (arg3[1])); fiat_np384_cmovznz_u64(&x3, arg1, (arg2[2]), (arg3[2])); fiat_np384_cmovznz_u64(&x4, arg1, (arg2[3]), (arg3[3])); fiat_np384_cmovznz_u64(&x5, arg1, (arg2[4]), (arg3[4])); fiat_np384_cmovznz_u64(&x6, arg1, (arg2[5]), (arg3[5])); out1[0] = x1; out1[1] = x2; out1[2] = x3; out1[3] = x4; out1[4] = x5; out1[5] = x6; }
mirage-crypto
2.0.2
ISC
https://github.com/mirage/mirage-crypto
git+https://github.com/mirage/mirage-crypto.git
c
mirage-crypto-2.0.2/ec/native/np384_stubs.c
#include "mirage_crypto.h" /* Microsoft compiler does not support 128-bit integers. Drop down to * 32-bit for MSVC. */ #if defined(ARCH_64BIT) && !defined(_MSC_VER) #include "np384_64.h" #define LIMBS 6 #define WORD uint64_t #define WORDSIZE 64 #else #include "np384_32.h" #define LIMBS 12 #define WORD uint32_t #define WORDSIZE 32 #endif #define LEN_PRIME 384 #define CURVE_DESCRIPTION fiat_np384 #include "inversion_template.h" #include <caml/memory.h> CAMLprim value mc_np384_inv(value out, value in) { CAMLparam2(out, in); inversion((WORD*)Bytes_val(out), (const WORD*)String_val(in)); CAMLreturn(Val_unit); } CAMLprim value mc_np384_mul(value out, value a, value b) { CAMLparam3(out, a, b); fiat_np384_mul((WORD*)Bytes_val(out), (const WORD*)String_val(a), (const WORD*)String_val(b)); CAMLreturn(Val_unit); } CAMLprim value mc_np384_add(value out, value a, value b) { CAMLparam3(out, a, b); fiat_np384_add((WORD*)Bytes_val(out), (const WORD*)String_val(a), (const WORD*)String_val(b)); CAMLreturn(Val_unit); } CAMLprim value mc_np384_one(value out) { CAMLparam1(out); fiat_np384_set_one((WORD*)Bytes_val(out)); CAMLreturn(Val_unit); } CAMLprim value mc_np384_from_bytes(value out, value in) { CAMLparam2(out, in); fiat_np384_from_bytes((WORD*)Bytes_val(out), _st_uint8(in)); CAMLreturn(Val_unit); } CAMLprim value mc_np384_to_bytes(value out, value in) { CAMLparam2(out, in); fiat_np384_to_bytes(Bytes_val(out), (const WORD*)String_val(in)); CAMLreturn(Val_unit); } CAMLprim value mc_np384_from_montgomery(value out, value in) { CAMLparam2(out, in); fiat_np384_from_montgomery((WORD*)Bytes_val(out), (const WORD*)String_val(in)); CAMLreturn(Val_unit); } CAMLprim value mc_np384_to_montgomery(value out, value in) { CAMLparam2(out, in); fiat_np384_to_montgomery((WORD*)Bytes_val(out), (const WORD*)String_val(in)); CAMLreturn(Val_unit); }
mirage-crypto
2.0.2
ISC
https://github.com/mirage/mirage-crypto
git+https://github.com/mirage/mirage-crypto.git
h
mirage-crypto-2.0.2/ec/native/np521_32.h
/* Autogenerated: '../fiat-crypto/src/ExtractionOCaml/word_by_word_montgomery' --static --use-value-barrier --inline-internal np521 32 0x01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFA51868783BF2F966B7FCC0148F709A5D03BB5C9B8899C47AEBB6FB71E91386409 mul add opp from_montgomery to_montgomery one msat divstep_precomp divstep to_bytes from_bytes selectznz */ /* curve description: np521 */ /* machine_wordsize = 32 (from "32") */ /* requested operations: mul, add, opp, from_montgomery, to_montgomery, one, msat, divstep_precomp, divstep, to_bytes, from_bytes, selectznz */ /* m = 0x1fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffa51868783bf2f966b7fcc0148f709a5d03bb5c9b8899c47aebb6fb71e91386409 (from "0x01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFA51868783BF2F966B7FCC0148F709A5D03BB5C9B8899C47AEBB6FB71E91386409") */ /* */ /* NOTE: In addition to the bounds specified above each function, all */ /* functions synthesized for this Montgomery arithmetic require the */ /* input to be strictly less than the prime modulus (m), and also */ /* require the input to be in the unique saturated representation. */ /* All functions also ensure that these two properties are true of */ /* return values. */ /* */ /* Computed values: */ /* eval z = z[0] + (z[1] << 32) + (z[2] << 64) + (z[3] << 96) + (z[4] << 128) + (z[5] << 160) + (z[6] << 192) + (z[7] << 224) + (z[8] << 256) + (z[9] << 0x120) + (z[10] << 0x140) + (z[11] << 0x160) + (z[12] << 0x180) + (z[13] << 0x1a0) + (z[14] << 0x1c0) + (z[15] << 0x1e0) + (z[16] << 2^9) */ /* bytes_eval z = z[0] + (z[1] << 8) + (z[2] << 16) + (z[3] << 24) + (z[4] << 32) + (z[5] << 40) + (z[6] << 48) + (z[7] << 56) + (z[8] << 64) + (z[9] << 72) + (z[10] << 80) + (z[11] << 88) + (z[12] << 96) + (z[13] << 104) + (z[14] << 112) + (z[15] << 120) + (z[16] << 128) + (z[17] << 136) + (z[18] << 144) + (z[19] << 152) + (z[20] << 160) + (z[21] << 168) + (z[22] << 176) + (z[23] << 184) + (z[24] << 192) + (z[25] << 200) + (z[26] << 208) + (z[27] << 216) + (z[28] << 224) + (z[29] << 232) + (z[30] << 240) + (z[31] << 248) + (z[32] << 256) + (z[33] << 0x108) + (z[34] << 0x110) + (z[35] << 0x118) + (z[36] << 0x120) + (z[37] << 0x128) + (z[38] << 0x130) + (z[39] << 0x138) + (z[40] << 0x140) + (z[41] << 0x148) + (z[42] << 0x150) + (z[43] << 0x158) + (z[44] << 0x160) + (z[45] << 0x168) + (z[46] << 0x170) + (z[47] << 0x178) + (z[48] << 0x180) + (z[49] << 0x188) + (z[50] << 0x190) + (z[51] << 0x198) + (z[52] << 0x1a0) + (z[53] << 0x1a8) + (z[54] << 0x1b0) + (z[55] << 0x1b8) + (z[56] << 0x1c0) + (z[57] << 0x1c8) + (z[58] << 0x1d0) + (z[59] << 0x1d8) + (z[60] << 0x1e0) + (z[61] << 0x1e8) + (z[62] << 0x1f0) + (z[63] << 0x1f8) + (z[64] << 2^9) + (z[65] << 0x208) */ /* twos_complement_eval z = let x1 := z[0] + (z[1] << 32) + (z[2] << 64) + (z[3] << 96) + (z[4] << 128) + (z[5] << 160) + (z[6] << 192) + (z[7] << 224) + (z[8] << 256) + (z[9] << 0x120) + (z[10] << 0x140) + (z[11] << 0x160) + (z[12] << 0x180) + (z[13] << 0x1a0) + (z[14] << 0x1c0) + (z[15] << 0x1e0) + (z[16] << 2^9) in */ /* if x1 & (2^544-1) < 2^543 then x1 & (2^544-1) else (x1 & (2^544-1)) - 2^544 */ #include <stdint.h> typedef unsigned char fiat_np521_uint1; typedef signed char fiat_np521_int1; #if defined(__GNUC__) || defined(__clang__) # define FIAT_NP521_FIAT_INLINE __inline__ #else # define FIAT_NP521_FIAT_INLINE #endif /* The type fiat_np521_montgomery_domain_field_element is a field element in the Montgomery domain. */ /* Bounds: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff]] */ typedef uint32_t fiat_np521_montgomery_domain_field_element[17]; /* The type fiat_np521_non_montgomery_domain_field_element is a field element NOT in the Montgomery domain. */ /* Bounds: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff]] */ typedef uint32_t fiat_np521_non_montgomery_domain_field_element[17]; #if (-1 & 3) != 3 #error "This code only works on a two's complement system" #endif #if !defined(FIAT_NP521_NO_ASM) && (defined(__GNUC__) || defined(__clang__)) static __inline__ uint32_t fiat_np521_value_barrier_u32(uint32_t a) { __asm__("" : "+r"(a) : /* no inputs */); return a; } #else # define fiat_np521_value_barrier_u32(x) (x) #endif /* * The function fiat_np521_addcarryx_u32 is an addition with carry. * * Postconditions: * out1 = (arg1 + arg2 + arg3) mod 2^32 * out2 = ⌊(arg1 + arg2 + arg3) / 2^32⌋ * * Input Bounds: * arg1: [0x0 ~> 0x1] * arg2: [0x0 ~> 0xffffffff] * arg3: [0x0 ~> 0xffffffff] * Output Bounds: * out1: [0x0 ~> 0xffffffff] * out2: [0x0 ~> 0x1] */ static FIAT_NP521_FIAT_INLINE void fiat_np521_addcarryx_u32(uint32_t* out1, fiat_np521_uint1* out2, fiat_np521_uint1 arg1, uint32_t arg2, uint32_t arg3) { uint64_t x1; uint32_t x2; fiat_np521_uint1 x3; x1 = ((arg1 + (uint64_t)arg2) + arg3); x2 = (uint32_t)(x1 & UINT32_C(0xffffffff)); x3 = (fiat_np521_uint1)(x1 >> 32); *out1 = x2; *out2 = x3; } /* * The function fiat_np521_subborrowx_u32 is a subtraction with borrow. * * Postconditions: * out1 = (-arg1 + arg2 + -arg3) mod 2^32 * out2 = -⌊(-arg1 + arg2 + -arg3) / 2^32⌋ * * Input Bounds: * arg1: [0x0 ~> 0x1] * arg2: [0x0 ~> 0xffffffff] * arg3: [0x0 ~> 0xffffffff] * Output Bounds: * out1: [0x0 ~> 0xffffffff] * out2: [0x0 ~> 0x1] */ static FIAT_NP521_FIAT_INLINE void fiat_np521_subborrowx_u32(uint32_t* out1, fiat_np521_uint1* out2, fiat_np521_uint1 arg1, uint32_t arg2, uint32_t arg3) { int64_t x1; fiat_np521_int1 x2; uint32_t x3; x1 = ((arg2 - (int64_t)arg1) - arg3); x2 = (fiat_np521_int1)(x1 >> 32); x3 = (uint32_t)(x1 & UINT32_C(0xffffffff)); *out1 = x3; *out2 = (fiat_np521_uint1)(0x0 - x2); } /* * The function fiat_np521_mulx_u32 is a multiplication, returning the full double-width result. * * Postconditions: * out1 = (arg1 * arg2) mod 2^32 * out2 = ⌊arg1 * arg2 / 2^32⌋ * * Input Bounds: * arg1: [0x0 ~> 0xffffffff] * arg2: [0x0 ~> 0xffffffff] * Output Bounds: * out1: [0x0 ~> 0xffffffff] * out2: [0x0 ~> 0xffffffff] */ static FIAT_NP521_FIAT_INLINE void fiat_np521_mulx_u32(uint32_t* out1, uint32_t* out2, uint32_t arg1, uint32_t arg2) { uint64_t x1; uint32_t x2; uint32_t x3; x1 = ((uint64_t)arg1 * arg2); x2 = (uint32_t)(x1 & UINT32_C(0xffffffff)); x3 = (uint32_t)(x1 >> 32); *out1 = x2; *out2 = x3; } /* * The function fiat_np521_cmovznz_u32 is a single-word conditional move. * * Postconditions: * out1 = (if arg1 = 0 then arg2 else arg3) * * Input Bounds: * arg1: [0x0 ~> 0x1] * arg2: [0x0 ~> 0xffffffff] * arg3: [0x0 ~> 0xffffffff] * Output Bounds: * out1: [0x0 ~> 0xffffffff] */ static FIAT_NP521_FIAT_INLINE void fiat_np521_cmovznz_u32(uint32_t* out1, fiat_np521_uint1 arg1, uint32_t arg2, uint32_t arg3) { fiat_np521_uint1 x1; uint32_t x2; uint32_t x3; x1 = (!(!arg1)); x2 = ((fiat_np521_int1)(0x0 - x1) & UINT32_C(0xffffffff)); x3 = ((fiat_np521_value_barrier_u32(x2) & arg3) | (fiat_np521_value_barrier_u32((~x2)) & arg2)); *out1 = x3; } /* * The function fiat_np521_mul multiplies two field elements in the Montgomery domain. * * Preconditions: * 0 ≤ eval arg1 < m * 0 ≤ eval arg2 < m * Postconditions: * eval (from_montgomery out1) mod m = (eval (from_montgomery arg1) * eval (from_montgomery arg2)) mod m * 0 ≤ eval out1 < m * */ static void fiat_np521_mul(fiat_np521_montgomery_domain_field_element out1, const fiat_np521_montgomery_domain_field_element arg1, const fiat_np521_montgomery_domain_field_element arg2) { uint32_t x1; uint32_t x2; uint32_t x3; uint32_t x4; uint32_t x5; uint32_t x6; uint32_t x7; uint32_t x8; uint32_t x9; uint32_t x10; uint32_t x11; uint32_t x12; uint32_t x13; uint32_t x14; uint32_t x15; uint32_t x16; uint32_t x17; uint32_t x18; uint32_t x19; uint32_t x20; uint32_t x21; uint32_t x22; uint32_t x23; uint32_t x24; uint32_t x25; uint32_t x26; uint32_t x27; uint32_t x28; uint32_t x29; uint32_t x30; uint32_t x31; uint32_t x32; uint32_t x33; uint32_t x34; uint32_t x35; uint32_t x36; uint32_t x37; uint32_t x38; uint32_t x39; uint32_t x40; uint32_t x41; uint32_t x42; uint32_t x43; uint32_t x44; uint32_t x45; uint32_t x46; uint32_t x47; uint32_t x48; uint32_t x49; uint32_t x50; uint32_t x51; uint32_t x52; fiat_np521_uint1 x53; uint32_t x54; fiat_np521_uint1 x55; uint32_t x56; fiat_np521_uint1 x57; uint32_t x58; fiat_np521_uint1 x59; uint32_t x60; fiat_np521_uint1 x61; uint32_t x62; fiat_np521_uint1 x63; uint32_t x64; fiat_np521_uint1 x65; uint32_t x66; fiat_np521_uint1 x67; uint32_t x68; fiat_np521_uint1 x69; uint32_t x70; fiat_np521_uint1 x71; uint32_t x72; fiat_np521_uint1 x73; uint32_t x74; fiat_np521_uint1 x75; uint32_t x76; fiat_np521_uint1 x77; uint32_t x78; fiat_np521_uint1 x79; uint32_t x80; fiat_np521_uint1 x81; uint32_t x82; fiat_np521_uint1 x83; uint32_t x84; uint32_t x85; uint32_t x86; uint32_t x87; uint32_t x88; uint32_t x89; uint32_t x90; uint32_t x91; uint32_t x92; uint32_t x93; uint32_t x94; uint32_t x95; uint32_t x96; uint32_t x97; uint32_t x98; uint32_t x99; uint32_t x100; uint32_t x101; uint32_t x102; uint32_t x103; uint32_t x104; uint32_t x105; uint32_t x106; uint32_t x107; uint32_t x108; uint32_t x109; uint32_t x110; uint32_t x111; uint32_t x112; uint32_t x113; uint32_t x114; uint32_t x115; uint32_t x116; uint32_t x117; uint32_t x118; uint32_t x119; uint32_t x120; uint32_t x121; fiat_np521_uint1 x122; uint32_t x123; fiat_np521_uint1 x124; uint32_t x125; fiat_np521_uint1 x126; uint32_t x127; fiat_np521_uint1 x128; uint32_t x129; fiat_np521_uint1 x130; uint32_t x131; fiat_np521_uint1 x132; uint32_t x133; fiat_np521_uint1 x134; uint32_t x135; fiat_np521_uint1 x136; uint32_t x137; fiat_np521_uint1 x138; uint32_t x139; fiat_np521_uint1 x140; uint32_t x141; fiat_np521_uint1 x142; uint32_t x143; fiat_np521_uint1 x144; uint32_t x145; fiat_np521_uint1 x146; uint32_t x147; fiat_np521_uint1 x148; uint32_t x149; fiat_np521_uint1 x150; uint32_t x151; fiat_np521_uint1 x152; uint32_t x153; uint32_t x154; fiat_np521_uint1 x155; uint32_t x156; fiat_np521_uint1 x157; uint32_t x158; fiat_np521_uint1 x159; uint32_t x160; fiat_np521_uint1 x161; uint32_t x162; fiat_np521_uint1 x163; uint32_t x164; fiat_np521_uint1 x165; uint32_t x166; fiat_np521_uint1 x167; uint32_t x168; fiat_np521_uint1 x169; uint32_t x170; fiat_np521_uint1 x171; uint32_t x172; fiat_np521_uint1 x173; uint32_t x174; fiat_np521_uint1 x175; uint32_t x176; fiat_np521_uint1 x177; uint32_t x178; fiat_np521_uint1 x179; uint32_t x180; fiat_np521_uint1 x181; uint32_t x182; fiat_np521_uint1 x183; uint32_t x184; fiat_np521_uint1 x185; uint32_t x186; fiat_np521_uint1 x187; uint32_t x188; fiat_np521_uint1 x189; uint32_t x190; uint32_t x191; uint32_t x192; uint32_t x193; uint32_t x194; uint32_t x195; uint32_t x196; uint32_t x197; uint32_t x198; uint32_t x199; uint32_t x200; uint32_t x201; uint32_t x202; uint32_t x203; uint32_t x204; uint32_t x205; uint32_t x206; uint32_t x207; uint32_t x208; uint32_t x209; uint32_t x210; uint32_t x211; uint32_t x212; uint32_t x213; uint32_t x214; uint32_t x215; uint32_t x216; uint32_t x217; uint32_t x218; uint32_t x219; uint32_t x220; uint32_t x221; uint32_t x222; uint32_t x223; uint32_t x224; fiat_np521_uint1 x225; uint32_t x226; fiat_np521_uint1 x227; uint32_t x228; fiat_np521_uint1 x229; uint32_t x230; fiat_np521_uint1 x231; uint32_t x232; fiat_np521_uint1 x233; uint32_t x234; fiat_np521_uint1 x235; uint32_t x236; fiat_np521_uint1 x237; uint32_t x238; fiat_np521_uint1 x239; uint32_t x240; fiat_np521_uint1 x241; uint32_t x242; fiat_np521_uint1 x243; uint32_t x244; fiat_np521_uint1 x245; uint32_t x246; fiat_np521_uint1 x247; uint32_t x248; fiat_np521_uint1 x249; uint32_t x250; fiat_np521_uint1 x251; uint32_t x252; fiat_np521_uint1 x253; uint32_t x254; fiat_np521_uint1 x255; uint32_t x256; uint32_t x257; fiat_np521_uint1 x258; uint32_t x259; fiat_np521_uint1 x260; uint32_t x261; fiat_np521_uint1 x262; uint32_t x263; fiat_np521_uint1 x264; uint32_t x265; fiat_np521_uint1 x266; uint32_t x267; fiat_np521_uint1 x268; uint32_t x269; fiat_np521_uint1 x270; uint32_t x271; fiat_np521_uint1 x272; uint32_t x273; fiat_np521_uint1 x274; uint32_t x275; fiat_np521_uint1 x276; uint32_t x277; fiat_np521_uint1 x278; uint32_t x279; fiat_np521_uint1 x280; uint32_t x281; fiat_np521_uint1 x282; uint32_t x283; fiat_np521_uint1 x284; uint32_t x285; fiat_np521_uint1 x286; uint32_t x287; fiat_np521_uint1 x288; uint32_t x289; fiat_np521_uint1 x290; uint32_t x291; fiat_np521_uint1 x292; uint32_t x293; uint32_t x294; uint32_t x295; uint32_t x296; uint32_t x297; uint32_t x298; uint32_t x299; uint32_t x300; uint32_t x301; uint32_t x302; uint32_t x303; uint32_t x304; uint32_t x305; uint32_t x306; uint32_t x307; uint32_t x308; uint32_t x309; uint32_t x310; uint32_t x311; uint32_t x312; uint32_t x313; uint32_t x314; uint32_t x315; uint32_t x316; uint32_t x317; uint32_t x318; uint32_t x319; uint32_t x320; uint32_t x321; uint32_t x322; uint32_t x323; uint32_t x324; uint32_t x325; uint32_t x326; uint32_t x327; uint32_t x328; uint32_t x329; fiat_np521_uint1 x330; uint32_t x331; fiat_np521_uint1 x332; uint32_t x333; fiat_np521_uint1 x334; uint32_t x335; fiat_np521_uint1 x336; uint32_t x337; fiat_np521_uint1 x338; uint32_t x339; fiat_np521_uint1 x340; uint32_t x341; fiat_np521_uint1 x342; uint32_t x343; fiat_np521_uint1 x344; uint32_t x345; fiat_np521_uint1 x346; uint32_t x347; fiat_np521_uint1 x348; uint32_t x349; fiat_np521_uint1 x350; uint32_t x351; fiat_np521_uint1 x352; uint32_t x353; fiat_np521_uint1 x354; uint32_t x355; fiat_np521_uint1 x356; uint32_t x357; fiat_np521_uint1 x358; uint32_t x359; fiat_np521_uint1 x360; uint32_t x361; uint32_t x362; fiat_np521_uint1 x363; uint32_t x364; fiat_np521_uint1 x365; uint32_t x366; fiat_np521_uint1 x367; uint32_t x368; fiat_np521_uint1 x369; uint32_t x370; fiat_np521_uint1 x371; uint32_t x372; fiat_np521_uint1 x373; uint32_t x374; fiat_np521_uint1 x375; uint32_t x376; fiat_np521_uint1 x377; uint32_t x378; fiat_np521_uint1 x379; uint32_t x380; fiat_np521_uint1 x381; uint32_t x382; fiat_np521_uint1 x383; uint32_t x384; fiat_np521_uint1 x385; uint32_t x386; fiat_np521_uint1 x387; uint32_t x388; fiat_np521_uint1 x389; uint32_t x390; fiat_np521_uint1 x391; uint32_t x392; fiat_np521_uint1 x393; uint32_t x394; fiat_np521_uint1 x395; uint32_t x396; fiat_np521_uint1 x397; uint32_t x398; uint32_t x399; uint32_t x400; uint32_t x401; uint32_t x402; uint32_t x403; uint32_t x404; uint32_t x405; uint32_t x406; uint32_t x407; uint32_t x408; uint32_t x409; uint32_t x410; uint32_t x411; uint32_t x412; uint32_t x413; uint32_t x414; uint32_t x415; uint32_t x416; uint32_t x417; uint32_t x418; uint32_t x419; uint32_t x420; uint32_t x421; uint32_t x422; uint32_t x423; uint32_t x424; uint32_t x425; uint32_t x426; uint32_t x427; uint32_t x428; uint32_t x429; uint32_t x430; uint32_t x431; uint32_t x432; uint32_t x433; fiat_np521_uint1 x434; uint32_t x435; fiat_np521_uint1 x436; uint32_t x437; fiat_np521_uint1 x438; uint32_t x439; fiat_np521_uint1 x440; uint32_t x441; fiat_np521_uint1 x442; uint32_t x443; fiat_np521_uint1 x444; uint32_t x445; fiat_np521_uint1 x446; uint32_t x447; fiat_np521_uint1 x448; uint32_t x449; fiat_np521_uint1 x450; uint32_t x451; fiat_np521_uint1 x452; uint32_t x453; fiat_np521_uint1 x454; uint32_t x455; fiat_np521_uint1 x456; uint32_t x457; fiat_np521_uint1 x458; uint32_t x459; fiat_np521_uint1 x460; uint32_t x461; fiat_np521_uint1 x462; uint32_t x463; fiat_np521_uint1 x464; uint32_t x465; uint32_t x466; fiat_np521_uint1 x467; uint32_t x468; fiat_np521_uint1 x469; uint32_t x470; fiat_np521_uint1 x471; uint32_t x472; fiat_np521_uint1 x473; uint32_t x474; fiat_np521_uint1 x475; uint32_t x476; fiat_np521_uint1 x477; uint32_t x478; fiat_np521_uint1 x479; uint32_t x480; fiat_np521_uint1 x481; uint32_t x482; fiat_np521_uint1 x483; uint32_t x484; fiat_np521_uint1 x485; uint32_t x486; fiat_np521_uint1 x487; uint32_t x488; fiat_np521_uint1 x489; uint32_t x490; fiat_np521_uint1 x491; uint32_t x492; fiat_np521_uint1 x493; uint32_t x494; fiat_np521_uint1 x495; uint32_t x496; fiat_np521_uint1 x497; uint32_t x498; fiat_np521_uint1 x499; uint32_t x500; fiat_np521_uint1 x501; uint32_t x502; uint32_t x503; uint32_t x504; uint32_t x505; uint32_t x506; uint32_t x507; uint32_t x508; uint32_t x509; uint32_t x510; uint32_t x511; uint32_t x512; uint32_t x513; uint32_t x514; uint32_t x515; uint32_t x516; uint32_t x517; uint32_t x518; uint32_t x519; uint32_t x520; uint32_t x521; uint32_t x522; uint32_t x523; uint32_t x524; uint32_t x525; uint32_t x526; uint32_t x527; uint32_t x528; uint32_t x529; uint32_t x530; uint32_t x531; uint32_t x532; uint32_t x533; uint32_t x534; uint32_t x535; uint32_t x536; uint32_t x537; uint32_t x538; fiat_np521_uint1 x539; uint32_t x540; fiat_np521_uint1 x541; uint32_t x542; fiat_np521_uint1 x543; uint32_t x544; fiat_np521_uint1 x545; uint32_t x546; fiat_np521_uint1 x547; uint32_t x548; fiat_np521_uint1 x549; uint32_t x550; fiat_np521_uint1 x551; uint32_t x552; fiat_np521_uint1 x553; uint32_t x554; fiat_np521_uint1 x555; uint32_t x556; fiat_np521_uint1 x557; uint32_t x558; fiat_np521_uint1 x559; uint32_t x560; fiat_np521_uint1 x561; uint32_t x562; fiat_np521_uint1 x563; uint32_t x564; fiat_np521_uint1 x565; uint32_t x566; fiat_np521_uint1 x567; uint32_t x568; fiat_np521_uint1 x569; uint32_t x570; uint32_t x571; fiat_np521_uint1 x572; uint32_t x573; fiat_np521_uint1 x574; uint32_t x575; fiat_np521_uint1 x576; uint32_t x577; fiat_np521_uint1 x578; uint32_t x579; fiat_np521_uint1 x580; uint32_t x581; fiat_np521_uint1 x582; uint32_t x583; fiat_np521_uint1 x584; uint32_t x585; fiat_np521_uint1 x586; uint32_t x587; fiat_np521_uint1 x588; uint32_t x589; fiat_np521_uint1 x590; uint32_t x591; fiat_np521_uint1 x592; uint32_t x593; fiat_np521_uint1 x594; uint32_t x595; fiat_np521_uint1 x596; uint32_t x597; fiat_np521_uint1 x598; uint32_t x599; fiat_np521_uint1 x600; uint32_t x601; fiat_np521_uint1 x602; uint32_t x603; fiat_np521_uint1 x604; uint32_t x605; fiat_np521_uint1 x606; uint32_t x607; uint32_t x608; uint32_t x609; uint32_t x610; uint32_t x611; uint32_t x612; uint32_t x613; uint32_t x614; uint32_t x615; uint32_t x616; uint32_t x617; uint32_t x618; uint32_t x619; uint32_t x620; uint32_t x621; uint32_t x622; uint32_t x623; uint32_t x624; uint32_t x625; uint32_t x626; uint32_t x627; uint32_t x628; uint32_t x629; uint32_t x630; uint32_t x631; uint32_t x632; uint32_t x633; uint32_t x634; uint32_t x635; uint32_t x636; uint32_t x637; uint32_t x638; uint32_t x639; uint32_t x640; uint32_t x641; uint32_t x642; fiat_np521_uint1 x643; uint32_t x644; fiat_np521_uint1 x645; uint32_t x646; fiat_np521_uint1 x647; uint32_t x648; fiat_np521_uint1 x649; uint32_t x650; fiat_np521_uint1 x651; uint32_t x652; fiat_np521_uint1 x653; uint32_t x654; fiat_np521_uint1 x655; uint32_t x656; fiat_np521_uint1 x657; uint32_t x658; fiat_np521_uint1 x659; uint32_t x660; fiat_np521_uint1 x661; uint32_t x662; fiat_np521_uint1 x663; uint32_t x664; fiat_np521_uint1 x665; uint32_t x666; fiat_np521_uint1 x667; uint32_t x668; fiat_np521_uint1 x669; uint32_t x670; fiat_np521_uint1 x671; uint32_t x672; fiat_np521_uint1 x673; uint32_t x674; uint32_t x675; fiat_np521_uint1 x676; uint32_t x677; fiat_np521_uint1 x678; uint32_t x679; fiat_np521_uint1 x680; uint32_t x681; fiat_np521_uint1 x682; uint32_t x683; fiat_np521_uint1 x684; uint32_t x685; fiat_np521_uint1 x686; uint32_t x687; fiat_np521_uint1 x688; uint32_t x689; fiat_np521_uint1 x690; uint32_t x691; fiat_np521_uint1 x692; uint32_t x693; fiat_np521_uint1 x694; uint32_t x695; fiat_np521_uint1 x696; uint32_t x697; fiat_np521_uint1 x698; uint32_t x699; fiat_np521_uint1 x700; uint32_t x701; fiat_np521_uint1 x702; uint32_t x703; fiat_np521_uint1 x704; uint32_t x705; fiat_np521_uint1 x706; uint32_t x707; fiat_np521_uint1 x708; uint32_t x709; fiat_np521_uint1 x710; uint32_t x711; uint32_t x712; uint32_t x713; uint32_t x714; uint32_t x715; uint32_t x716; uint32_t x717; uint32_t x718; uint32_t x719; uint32_t x720; uint32_t x721; uint32_t x722; uint32_t x723; uint32_t x724; uint32_t x725; uint32_t x726; uint32_t x727; uint32_t x728; uint32_t x729; uint32_t x730; uint32_t x731; uint32_t x732; uint32_t x733; uint32_t x734; uint32_t x735; uint32_t x736; uint32_t x737; uint32_t x738; uint32_t x739; uint32_t x740; uint32_t x741; uint32_t x742; uint32_t x743; uint32_t x744; uint32_t x745; uint32_t x746; uint32_t x747; fiat_np521_uint1 x748; uint32_t x749; fiat_np521_uint1 x750; uint32_t x751; fiat_np521_uint1 x752; uint32_t x753; fiat_np521_uint1 x754; uint32_t x755; fiat_np521_uint1 x756; uint32_t x757; fiat_np521_uint1 x758; uint32_t x759; fiat_np521_uint1 x760; uint32_t x761; fiat_np521_uint1 x762; uint32_t x763; fiat_np521_uint1 x764; uint32_t x765; fiat_np521_uint1 x766; uint32_t x767; fiat_np521_uint1 x768; uint32_t x769; fiat_np521_uint1 x770; uint32_t x771; fiat_np521_uint1 x772; uint32_t x773; fiat_np521_uint1 x774; uint32_t x775; fiat_np521_uint1 x776; uint32_t x777; fiat_np521_uint1 x778; uint32_t x779; uint32_t x780; fiat_np521_uint1 x781; uint32_t x782; fiat_np521_uint1 x783; uint32_t x784; fiat_np521_uint1 x785; uint32_t x786; fiat_np521_uint1 x787; uint32_t x788; fiat_np521_uint1 x789; uint32_t x790; fiat_np521_uint1 x791; uint32_t x792; fiat_np521_uint1 x793; uint32_t x794; fiat_np521_uint1 x795; uint32_t x796; fiat_np521_uint1 x797; uint32_t x798; fiat_np521_uint1 x799; uint32_t x800; fiat_np521_uint1 x801; uint32_t x802; fiat_np521_uint1 x803; uint32_t x804; fiat_np521_uint1 x805; uint32_t x806; fiat_np521_uint1 x807; uint32_t x808; fiat_np521_uint1 x809; uint32_t x810; fiat_np521_uint1 x811; uint32_t x812; fiat_np521_uint1 x813; uint32_t x814; fiat_np521_uint1 x815; uint32_t x816; uint32_t x817; uint32_t x818; uint32_t x819; uint32_t x820; uint32_t x821; uint32_t x822; uint32_t x823; uint32_t x824; uint32_t x825; uint32_t x826; uint32_t x827; uint32_t x828; uint32_t x829; uint32_t x830; uint32_t x831; uint32_t x832; uint32_t x833; uint32_t x834; uint32_t x835; uint32_t x836; uint32_t x837; uint32_t x838; uint32_t x839; uint32_t x840; uint32_t x841; uint32_t x842; uint32_t x843; uint32_t x844; uint32_t x845; uint32_t x846; uint32_t x847; uint32_t x848; uint32_t x849; uint32_t x850; uint32_t x851; fiat_np521_uint1 x852; uint32_t x853; fiat_np521_uint1 x854; uint32_t x855; fiat_np521_uint1 x856; uint32_t x857; fiat_np521_uint1 x858; uint32_t x859; fiat_np521_uint1 x860; uint32_t x861; fiat_np521_uint1 x862; uint32_t x863; fiat_np521_uint1 x864; uint32_t x865; fiat_np521_uint1 x866; uint32_t x867; fiat_np521_uint1 x868; uint32_t x869; fiat_np521_uint1 x870; uint32_t x871; fiat_np521_uint1 x872; uint32_t x873; fiat_np521_uint1 x874; uint32_t x875; fiat_np521_uint1 x876; uint32_t x877; fiat_np521_uint1 x878; uint32_t x879; fiat_np521_uint1 x880; uint32_t x881; fiat_np521_uint1 x882; uint32_t x883; uint32_t x884; fiat_np521_uint1 x885; uint32_t x886; fiat_np521_uint1 x887; uint32_t x888; fiat_np521_uint1 x889; uint32_t x890; fiat_np521_uint1 x891; uint32_t x892; fiat_np521_uint1 x893; uint32_t x894; fiat_np521_uint1 x895; uint32_t x896; fiat_np521_uint1 x897; uint32_t x898; fiat_np521_uint1 x899; uint32_t x900; fiat_np521_uint1 x901; uint32_t x902; fiat_np521_uint1 x903; uint32_t x904; fiat_np521_uint1 x905; uint32_t x906; fiat_np521_uint1 x907; uint32_t x908; fiat_np521_uint1 x909; uint32_t x910; fiat_np521_uint1 x911; uint32_t x912; fiat_np521_uint1 x913; uint32_t x914; fiat_np521_uint1 x915; uint32_t x916; fiat_np521_uint1 x917; uint32_t x918; fiat_np521_uint1 x919; uint32_t x920; uint32_t x921; uint32_t x922; uint32_t x923; uint32_t x924; uint32_t x925; uint32_t x926; uint32_t x927; uint32_t x928; uint32_t x929; uint32_t x930; uint32_t x931; uint32_t x932; uint32_t x933; uint32_t x934; uint32_t x935; uint32_t x936; uint32_t x937; uint32_t x938; uint32_t x939; uint32_t x940; uint32_t x941; uint32_t x942; uint32_t x943; uint32_t x944; uint32_t x945; uint32_t x946; uint32_t x947; uint32_t x948; uint32_t x949; uint32_t x950; uint32_t x951; uint32_t x952; uint32_t x953; uint32_t x954; uint32_t x955; uint32_t x956; fiat_np521_uint1 x957; uint32_t x958; fiat_np521_uint1 x959; uint32_t x960; fiat_np521_uint1 x961; uint32_t x962; fiat_np521_uint1 x963; uint32_t x964; fiat_np521_uint1 x965; uint32_t x966; fiat_np521_uint1 x967; uint32_t x968; fiat_np521_uint1 x969; uint32_t x970; fiat_np521_uint1 x971; uint32_t x972; fiat_np521_uint1 x973; uint32_t x974; fiat_np521_uint1 x975; uint32_t x976; fiat_np521_uint1 x977; uint32_t x978; fiat_np521_uint1 x979; uint32_t x980; fiat_np521_uint1 x981; uint32_t x982; fiat_np521_uint1 x983; uint32_t x984; fiat_np521_uint1 x985; uint32_t x986; fiat_np521_uint1 x987; uint32_t x988; uint32_t x989; fiat_np521_uint1 x990; uint32_t x991; fiat_np521_uint1 x992; uint32_t x993; fiat_np521_uint1 x994; uint32_t x995; fiat_np521_uint1 x996; uint32_t x997; fiat_np521_uint1 x998; uint32_t x999; fiat_np521_uint1 x1000; uint32_t x1001; fiat_np521_uint1 x1002; uint32_t x1003; fiat_np521_uint1 x1004; uint32_t x1005; fiat_np521_uint1 x1006; uint32_t x1007; fiat_np521_uint1 x1008; uint32_t x1009; fiat_np521_uint1 x1010; uint32_t x1011; fiat_np521_uint1 x1012; uint32_t x1013; fiat_np521_uint1 x1014; uint32_t x1015; fiat_np521_uint1 x1016; uint32_t x1017; fiat_np521_uint1 x1018; uint32_t x1019; fiat_np521_uint1 x1020; uint32_t x1021; fiat_np521_uint1 x1022; uint32_t x1023; fiat_np521_uint1 x1024; uint32_t x1025; uint32_t x1026; uint32_t x1027; uint32_t x1028; uint32_t x1029; uint32_t x1030; uint32_t x1031; uint32_t x1032; uint32_t x1033; uint32_t x1034; uint32_t x1035; uint32_t x1036; uint32_t x1037; uint32_t x1038; uint32_t x1039; uint32_t x1040; uint32_t x1041; uint32_t x1042; uint32_t x1043; uint32_t x1044; uint32_t x1045; uint32_t x1046; uint32_t x1047; uint32_t x1048; uint32_t x1049; uint32_t x1050; uint32_t x1051; uint32_t x1052; uint32_t x1053; uint32_t x1054; uint32_t x1055; uint32_t x1056; uint32_t x1057; uint32_t x1058; uint32_t x1059; uint32_t x1060; fiat_np521_uint1 x1061; uint32_t x1062; fiat_np521_uint1 x1063; uint32_t x1064; fiat_np521_uint1 x1065; uint32_t x1066; fiat_np521_uint1 x1067; uint32_t x1068; fiat_np521_uint1 x1069; uint32_t x1070; fiat_np521_uint1 x1071; uint32_t x1072; fiat_np521_uint1 x1073; uint32_t x1074; fiat_np521_uint1 x1075; uint32_t x1076; fiat_np521_uint1 x1077; uint32_t x1078; fiat_np521_uint1 x1079; uint32_t x1080; fiat_np521_uint1 x1081; uint32_t x1082; fiat_np521_uint1 x1083; uint32_t x1084; fiat_np521_uint1 x1085; uint32_t x1086; fiat_np521_uint1 x1087; uint32_t x1088; fiat_np521_uint1 x1089; uint32_t x1090; fiat_np521_uint1 x1091; uint32_t x1092; uint32_t x1093; fiat_np521_uint1 x1094; uint32_t x1095; fiat_np521_uint1 x1096; uint32_t x1097; fiat_np521_uint1 x1098; uint32_t x1099; fiat_np521_uint1 x1100; uint32_t x1101; fiat_np521_uint1 x1102; uint32_t x1103; fiat_np521_uint1 x1104; uint32_t x1105; fiat_np521_uint1 x1106; uint32_t x1107; fiat_np521_uint1 x1108; uint32_t x1109; fiat_np521_uint1 x1110; uint32_t x1111; fiat_np521_uint1 x1112; uint32_t x1113; fiat_np521_uint1 x1114; uint32_t x1115; fiat_np521_uint1 x1116; uint32_t x1117; fiat_np521_uint1 x1118; uint32_t x1119; fiat_np521_uint1 x1120; uint32_t x1121; fiat_np521_uint1 x1122; uint32_t x1123; fiat_np521_uint1 x1124; uint32_t x1125; fiat_np521_uint1 x1126; uint32_t x1127; fiat_np521_uint1 x1128; uint32_t x1129; uint32_t x1130; uint32_t x1131; uint32_t x1132; uint32_t x1133; uint32_t x1134; uint32_t x1135; uint32_t x1136; uint32_t x1137; uint32_t x1138; uint32_t x1139; uint32_t x1140; uint32_t x1141; uint32_t x1142; uint32_t x1143; uint32_t x1144; uint32_t x1145; uint32_t x1146; uint32_t x1147; uint32_t x1148; uint32_t x1149; uint32_t x1150; uint32_t x1151; uint32_t x1152; uint32_t x1153; uint32_t x1154; uint32_t x1155; uint32_t x1156; uint32_t x1157; uint32_t x1158; uint32_t x1159; uint32_t x1160; uint32_t x1161; uint32_t x1162; uint32_t x1163; uint32_t x1164; uint32_t x1165; fiat_np521_uint1 x1166; uint32_t x1167; fiat_np521_uint1 x1168; uint32_t x1169; fiat_np521_uint1 x1170; uint32_t x1171; fiat_np521_uint1 x1172; uint32_t x1173; fiat_np521_uint1 x1174; uint32_t x1175; fiat_np521_uint1 x1176; uint32_t x1177; fiat_np521_uint1 x1178; uint32_t x1179; fiat_np521_uint1 x1180; uint32_t x1181; fiat_np521_uint1 x1182; uint32_t x1183; fiat_np521_uint1 x1184; uint32_t x1185; fiat_np521_uint1 x1186; uint32_t x1187; fiat_np521_uint1 x1188; uint32_t x1189; fiat_np521_uint1 x1190; uint32_t x1191; fiat_np521_uint1 x1192; uint32_t x1193; fiat_np521_uint1 x1194; uint32_t x1195; fiat_np521_uint1 x1196; uint32_t x1197; uint32_t x1198; fiat_np521_uint1 x1199; uint32_t x1200; fiat_np521_uint1 x1201; uint32_t x1202; fiat_np521_uint1 x1203; uint32_t x1204; fiat_np521_uint1 x1205; uint32_t x1206; fiat_np521_uint1 x1207; uint32_t x1208; fiat_np521_uint1 x1209; uint32_t x1210; fiat_np521_uint1 x1211; uint32_t x1212; fiat_np521_uint1 x1213; uint32_t x1214; fiat_np521_uint1 x1215; uint32_t x1216; fiat_np521_uint1 x1217; uint32_t x1218; fiat_np521_uint1 x1219; uint32_t x1220; fiat_np521_uint1 x1221; uint32_t x1222; fiat_np521_uint1 x1223; uint32_t x1224; fiat_np521_uint1 x1225; uint32_t x1226; fiat_np521_uint1 x1227; uint32_t x1228; fiat_np521_uint1 x1229; uint32_t x1230; fiat_np521_uint1 x1231; uint32_t x1232; fiat_np521_uint1 x1233; uint32_t x1234; uint32_t x1235; uint32_t x1236; uint32_t x1237; uint32_t x1238; uint32_t x1239; uint32_t x1240; uint32_t x1241; uint32_t x1242; uint32_t x1243; uint32_t x1244; uint32_t x1245; uint32_t x1246; uint32_t x1247; uint32_t x1248; uint32_t x1249; uint32_t x1250; uint32_t x1251; uint32_t x1252; uint32_t x1253; uint32_t x1254; uint32_t x1255; uint32_t x1256; uint32_t x1257; uint32_t x1258; uint32_t x1259; uint32_t x1260; uint32_t x1261; uint32_t x1262; uint32_t x1263; uint32_t x1264; uint32_t x1265; uint32_t x1266; uint32_t x1267; uint32_t x1268; uint32_t x1269; fiat_np521_uint1 x1270; uint32_t x1271; fiat_np521_uint1 x1272; uint32_t x1273; fiat_np521_uint1 x1274; uint32_t x1275; fiat_np521_uint1 x1276; uint32_t x1277; fiat_np521_uint1 x1278; uint32_t x1279; fiat_np521_uint1 x1280; uint32_t x1281; fiat_np521_uint1 x1282; uint32_t x1283; fiat_np521_uint1 x1284; uint32_t x1285; fiat_np521_uint1 x1286; uint32_t x1287; fiat_np521_uint1 x1288; uint32_t x1289; fiat_np521_uint1 x1290; uint32_t x1291; fiat_np521_uint1 x1292; uint32_t x1293; fiat_np521_uint1 x1294; uint32_t x1295; fiat_np521_uint1 x1296; uint32_t x1297; fiat_np521_uint1 x1298; uint32_t x1299; fiat_np521_uint1 x1300; uint32_t x1301; uint32_t x1302; fiat_np521_uint1 x1303; uint32_t x1304; fiat_np521_uint1 x1305; uint32_t x1306; fiat_np521_uint1 x1307; uint32_t x1308; fiat_np521_uint1 x1309; uint32_t x1310; fiat_np521_uint1 x1311; uint32_t x1312; fiat_np521_uint1 x1313; uint32_t x1314; fiat_np521_uint1 x1315; uint32_t x1316; fiat_np521_uint1 x1317; uint32_t x1318; fiat_np521_uint1 x1319; uint32_t x1320; fiat_np521_uint1 x1321; uint32_t x1322; fiat_np521_uint1 x1323; uint32_t x1324; fiat_np521_uint1 x1325; uint32_t x1326; fiat_np521_uint1 x1327; uint32_t x1328; fiat_np521_uint1 x1329; uint32_t x1330; fiat_np521_uint1 x1331; uint32_t x1332; fiat_np521_uint1 x1333; uint32_t x1334; fiat_np521_uint1 x1335; uint32_t x1336; fiat_np521_uint1 x1337; uint32_t x1338; uint32_t x1339; uint32_t x1340; uint32_t x1341; uint32_t x1342; uint32_t x1343; uint32_t x1344; uint32_t x1345; uint32_t x1346; uint32_t x1347; uint32_t x1348; uint32_t x1349; uint32_t x1350; uint32_t x1351; uint32_t x1352; uint32_t x1353; uint32_t x1354; uint32_t x1355; uint32_t x1356; uint32_t x1357; uint32_t x1358; uint32_t x1359; uint32_t x1360; uint32_t x1361; uint32_t x1362; uint32_t x1363; uint32_t x1364; uint32_t x1365; uint32_t x1366; uint32_t x1367; uint32_t x1368; uint32_t x1369; uint32_t x1370; uint32_t x1371; uint32_t x1372; uint32_t x1373; uint32_t x1374; fiat_np521_uint1 x1375; uint32_t x1376; fiat_np521_uint1 x1377; uint32_t x1378; fiat_np521_uint1 x1379; uint32_t x1380; fiat_np521_uint1 x1381; uint32_t x1382; fiat_np521_uint1 x1383; uint32_t x1384; fiat_np521_uint1 x1385; uint32_t x1386; fiat_np521_uint1 x1387; uint32_t x1388; fiat_np521_uint1 x1389; uint32_t x1390; fiat_np521_uint1 x1391; uint32_t x1392; fiat_np521_uint1 x1393; uint32_t x1394; fiat_np521_uint1 x1395; uint32_t x1396; fiat_np521_uint1 x1397; uint32_t x1398; fiat_np521_uint1 x1399; uint32_t x1400; fiat_np521_uint1 x1401; uint32_t x1402; fiat_np521_uint1 x1403; uint32_t x1404; fiat_np521_uint1 x1405; uint32_t x1406; uint32_t x1407; fiat_np521_uint1 x1408; uint32_t x1409; fiat_np521_uint1 x1410; uint32_t x1411; fiat_np521_uint1 x1412; uint32_t x1413; fiat_np521_uint1 x1414; uint32_t x1415; fiat_np521_uint1 x1416; uint32_t x1417; fiat_np521_uint1 x1418; uint32_t x1419; fiat_np521_uint1 x1420; uint32_t x1421; fiat_np521_uint1 x1422; uint32_t x1423; fiat_np521_uint1 x1424; uint32_t x1425; fiat_np521_uint1 x1426; uint32_t x1427; fiat_np521_uint1 x1428; uint32_t x1429; fiat_np521_uint1 x1430; uint32_t x1431; fiat_np521_uint1 x1432; uint32_t x1433; fiat_np521_uint1 x1434; uint32_t x1435; fiat_np521_uint1 x1436; uint32_t x1437; fiat_np521_uint1 x1438; uint32_t x1439; fiat_np521_uint1 x1440; uint32_t x1441; fiat_np521_uint1 x1442; uint32_t x1443; uint32_t x1444; uint32_t x1445; uint32_t x1446; uint32_t x1447; uint32_t x1448; uint32_t x1449; uint32_t x1450; uint32_t x1451; uint32_t x1452; uint32_t x1453; uint32_t x1454; uint32_t x1455; uint32_t x1456; uint32_t x1457; uint32_t x1458; uint32_t x1459; uint32_t x1460; uint32_t x1461; uint32_t x1462; uint32_t x1463; uint32_t x1464; uint32_t x1465; uint32_t x1466; uint32_t x1467; uint32_t x1468; uint32_t x1469; uint32_t x1470; uint32_t x1471; uint32_t x1472; uint32_t x1473; uint32_t x1474; uint32_t x1475; uint32_t x1476; uint32_t x1477; uint32_t x1478; fiat_np521_uint1 x1479; uint32_t x1480; fiat_np521_uint1 x1481; uint32_t x1482; fiat_np521_uint1 x1483; uint32_t x1484; fiat_np521_uint1 x1485; uint32_t x1486; fiat_np521_uint1 x1487; uint32_t x1488; fiat_np521_uint1 x1489; uint32_t x1490; fiat_np521_uint1 x1491; uint32_t x1492; fiat_np521_uint1 x1493; uint32_t x1494; fiat_np521_uint1 x1495; uint32_t x1496; fiat_np521_uint1 x1497; uint32_t x1498; fiat_np521_uint1 x1499; uint32_t x1500; fiat_np521_uint1 x1501; uint32_t x1502; fiat_np521_uint1 x1503; uint32_t x1504; fiat_np521_uint1 x1505; uint32_t x1506; fiat_np521_uint1 x1507; uint32_t x1508; fiat_np521_uint1 x1509; uint32_t x1510; uint32_t x1511; fiat_np521_uint1 x1512; uint32_t x1513; fiat_np521_uint1 x1514; uint32_t x1515; fiat_np521_uint1 x1516; uint32_t x1517; fiat_np521_uint1 x1518; uint32_t x1519; fiat_np521_uint1 x1520; uint32_t x1521; fiat_np521_uint1 x1522; uint32_t x1523; fiat_np521_uint1 x1524; uint32_t x1525; fiat_np521_uint1 x1526; uint32_t x1527; fiat_np521_uint1 x1528; uint32_t x1529; fiat_np521_uint1 x1530; uint32_t x1531; fiat_np521_uint1 x1532; uint32_t x1533; fiat_np521_uint1 x1534; uint32_t x1535; fiat_np521_uint1 x1536; uint32_t x1537; fiat_np521_uint1 x1538; uint32_t x1539; fiat_np521_uint1 x1540; uint32_t x1541; fiat_np521_uint1 x1542; uint32_t x1543; fiat_np521_uint1 x1544; uint32_t x1545; fiat_np521_uint1 x1546; uint32_t x1547; uint32_t x1548; uint32_t x1549; uint32_t x1550; uint32_t x1551; uint32_t x1552; uint32_t x1553; uint32_t x1554; uint32_t x1555; uint32_t x1556; uint32_t x1557; uint32_t x1558; uint32_t x1559; uint32_t x1560; uint32_t x1561; uint32_t x1562; uint32_t x1563; uint32_t x1564; uint32_t x1565; uint32_t x1566; uint32_t x1567; uint32_t x1568; uint32_t x1569; uint32_t x1570; uint32_t x1571; uint32_t x1572; uint32_t x1573; uint32_t x1574; uint32_t x1575; uint32_t x1576; uint32_t x1577; uint32_t x1578; uint32_t x1579; uint32_t x1580; uint32_t x1581; uint32_t x1582; uint32_t x1583; fiat_np521_uint1 x1584; uint32_t x1585; fiat_np521_uint1 x1586; uint32_t x1587; fiat_np521_uint1 x1588; uint32_t x1589; fiat_np521_uint1 x1590; uint32_t x1591; fiat_np521_uint1 x1592; uint32_t x1593; fiat_np521_uint1 x1594; uint32_t x1595; fiat_np521_uint1 x1596; uint32_t x1597; fiat_np521_uint1 x1598; uint32_t x1599; fiat_np521_uint1 x1600; uint32_t x1601; fiat_np521_uint1 x1602; uint32_t x1603; fiat_np521_uint1 x1604; uint32_t x1605; fiat_np521_uint1 x1606; uint32_t x1607; fiat_np521_uint1 x1608; uint32_t x1609; fiat_np521_uint1 x1610; uint32_t x1611; fiat_np521_uint1 x1612; uint32_t x1613; fiat_np521_uint1 x1614; uint32_t x1615; uint32_t x1616; fiat_np521_uint1 x1617; uint32_t x1618; fiat_np521_uint1 x1619; uint32_t x1620; fiat_np521_uint1 x1621; uint32_t x1622; fiat_np521_uint1 x1623; uint32_t x1624; fiat_np521_uint1 x1625; uint32_t x1626; fiat_np521_uint1 x1627; uint32_t x1628; fiat_np521_uint1 x1629; uint32_t x1630; fiat_np521_uint1 x1631; uint32_t x1632; fiat_np521_uint1 x1633; uint32_t x1634; fiat_np521_uint1 x1635; uint32_t x1636; fiat_np521_uint1 x1637; uint32_t x1638; fiat_np521_uint1 x1639; uint32_t x1640; fiat_np521_uint1 x1641; uint32_t x1642; fiat_np521_uint1 x1643; uint32_t x1644; fiat_np521_uint1 x1645; uint32_t x1646; fiat_np521_uint1 x1647; uint32_t x1648; fiat_np521_uint1 x1649; uint32_t x1650; fiat_np521_uint1 x1651; uint32_t x1652; uint32_t x1653; uint32_t x1654; uint32_t x1655; uint32_t x1656; uint32_t x1657; uint32_t x1658; uint32_t x1659; uint32_t x1660; uint32_t x1661; uint32_t x1662; uint32_t x1663; uint32_t x1664; uint32_t x1665; uint32_t x1666; uint32_t x1667; uint32_t x1668; uint32_t x1669; uint32_t x1670; uint32_t x1671; uint32_t x1672; uint32_t x1673; uint32_t x1674; uint32_t x1675; uint32_t x1676; uint32_t x1677; uint32_t x1678; uint32_t x1679; uint32_t x1680; uint32_t x1681; uint32_t x1682; uint32_t x1683; uint32_t x1684; uint32_t x1685; uint32_t x1686; uint32_t x1687; fiat_np521_uint1 x1688; uint32_t x1689; fiat_np521_uint1 x1690; uint32_t x1691; fiat_np521_uint1 x1692; uint32_t x1693; fiat_np521_uint1 x1694; uint32_t x1695; fiat_np521_uint1 x1696; uint32_t x1697; fiat_np521_uint1 x1698; uint32_t x1699; fiat_np521_uint1 x1700; uint32_t x1701; fiat_np521_uint1 x1702; uint32_t x1703; fiat_np521_uint1 x1704; uint32_t x1705; fiat_np521_uint1 x1706; uint32_t x1707; fiat_np521_uint1 x1708; uint32_t x1709; fiat_np521_uint1 x1710; uint32_t x1711; fiat_np521_uint1 x1712; uint32_t x1713; fiat_np521_uint1 x1714; uint32_t x1715; fiat_np521_uint1 x1716; uint32_t x1717; fiat_np521_uint1 x1718; uint32_t x1719; uint32_t x1720; fiat_np521_uint1 x1721; uint32_t x1722; fiat_np521_uint1 x1723; uint32_t x1724; fiat_np521_uint1 x1725; uint32_t x1726; fiat_np521_uint1 x1727; uint32_t x1728; fiat_np521_uint1 x1729; uint32_t x1730; fiat_np521_uint1 x1731; uint32_t x1732; fiat_np521_uint1 x1733; uint32_t x1734; fiat_np521_uint1 x1735; uint32_t x1736; fiat_np521_uint1 x1737; uint32_t x1738; fiat_np521_uint1 x1739; uint32_t x1740; fiat_np521_uint1 x1741; uint32_t x1742; fiat_np521_uint1 x1743; uint32_t x1744; fiat_np521_uint1 x1745; uint32_t x1746; fiat_np521_uint1 x1747; uint32_t x1748; fiat_np521_uint1 x1749; uint32_t x1750; fiat_np521_uint1 x1751; uint32_t x1752; fiat_np521_uint1 x1753; uint32_t x1754; fiat_np521_uint1 x1755; uint32_t x1756; uint32_t x1757; uint32_t x1758; uint32_t x1759; uint32_t x1760; uint32_t x1761; uint32_t x1762; uint32_t x1763; uint32_t x1764; uint32_t x1765; uint32_t x1766; uint32_t x1767; uint32_t x1768; uint32_t x1769; uint32_t x1770; uint32_t x1771; uint32_t x1772; uint32_t x1773; uint32_t x1774; uint32_t x1775; uint32_t x1776; uint32_t x1777; uint32_t x1778; uint32_t x1779; uint32_t x1780; uint32_t x1781; uint32_t x1782; uint32_t x1783; uint32_t x1784; uint32_t x1785; uint32_t x1786; uint32_t x1787; uint32_t x1788; uint32_t x1789; uint32_t x1790; uint32_t x1791; uint32_t x1792; fiat_np521_uint1 x1793; uint32_t x1794; fiat_np521_uint1 x1795; uint32_t x1796; fiat_np521_uint1 x1797; uint32_t x1798; fiat_np521_uint1 x1799; uint32_t x1800; fiat_np521_uint1 x1801; uint32_t x1802; fiat_np521_uint1 x1803; uint32_t x1804; fiat_np521_uint1 x1805; uint32_t x1806; fiat_np521_uint1 x1807; uint32_t x1808; fiat_np521_uint1 x1809; uint32_t x1810; fiat_np521_uint1 x1811; uint32_t x1812; fiat_np521_uint1 x1813; uint32_t x1814; fiat_np521_uint1 x1815; uint32_t x1816; fiat_np521_uint1 x1817; uint32_t x1818; fiat_np521_uint1 x1819; uint32_t x1820; fiat_np521_uint1 x1821; uint32_t x1822; fiat_np521_uint1 x1823; uint32_t x1824; uint32_t x1825; fiat_np521_uint1 x1826; uint32_t x1827; fiat_np521_uint1 x1828; uint32_t x1829; fiat_np521_uint1 x1830; uint32_t x1831; fiat_np521_uint1 x1832; uint32_t x1833; fiat_np521_uint1 x1834; uint32_t x1835; fiat_np521_uint1 x1836; uint32_t x1837; fiat_np521_uint1 x1838; uint32_t x1839; fiat_np521_uint1 x1840; uint32_t x1841; fiat_np521_uint1 x1842; uint32_t x1843; fiat_np521_uint1 x1844; uint32_t x1845; fiat_np521_uint1 x1846; uint32_t x1847; fiat_np521_uint1 x1848; uint32_t x1849; fiat_np521_uint1 x1850; uint32_t x1851; fiat_np521_uint1 x1852; uint32_t x1853; fiat_np521_uint1 x1854; uint32_t x1855; fiat_np521_uint1 x1856; uint32_t x1857; fiat_np521_uint1 x1858; uint32_t x1859; fiat_np521_uint1 x1860; uint32_t x1861; uint32_t x1862; uint32_t x1863; uint32_t x1864; uint32_t x1865; uint32_t x1866; uint32_t x1867; uint32_t x1868; uint32_t x1869; uint32_t x1870; uint32_t x1871; uint32_t x1872; uint32_t x1873; uint32_t x1874; uint32_t x1875; uint32_t x1876; uint32_t x1877; uint32_t x1878; uint32_t x1879; uint32_t x1880; uint32_t x1881; uint32_t x1882; uint32_t x1883; uint32_t x1884; uint32_t x1885; uint32_t x1886; uint32_t x1887; uint32_t x1888; uint32_t x1889; uint32_t x1890; uint32_t x1891; uint32_t x1892; uint32_t x1893; uint32_t x1894; uint32_t x1895; uint32_t x1896; fiat_np521_uint1 x1897; uint32_t x1898; fiat_np521_uint1 x1899; uint32_t x1900; fiat_np521_uint1 x1901; uint32_t x1902; fiat_np521_uint1 x1903; uint32_t x1904; fiat_np521_uint1 x1905; uint32_t x1906; fiat_np521_uint1 x1907; uint32_t x1908; fiat_np521_uint1 x1909; uint32_t x1910; fiat_np521_uint1 x1911; uint32_t x1912; fiat_np521_uint1 x1913; uint32_t x1914; fiat_np521_uint1 x1915; uint32_t x1916; fiat_np521_uint1 x1917; uint32_t x1918; fiat_np521_uint1 x1919; uint32_t x1920; fiat_np521_uint1 x1921; uint32_t x1922; fiat_np521_uint1 x1923; uint32_t x1924; fiat_np521_uint1 x1925; uint32_t x1926; fiat_np521_uint1 x1927; uint32_t x1928; uint32_t x1929; fiat_np521_uint1 x1930; uint32_t x1931; fiat_np521_uint1 x1932; uint32_t x1933; fiat_np521_uint1 x1934; uint32_t x1935; fiat_np521_uint1 x1936; uint32_t x1937; fiat_np521_uint1 x1938; uint32_t x1939; fiat_np521_uint1 x1940; uint32_t x1941; fiat_np521_uint1 x1942; uint32_t x1943; fiat_np521_uint1 x1944; uint32_t x1945; fiat_np521_uint1 x1946; uint32_t x1947; fiat_np521_uint1 x1948; uint32_t x1949; fiat_np521_uint1 x1950; uint32_t x1951; fiat_np521_uint1 x1952; uint32_t x1953; fiat_np521_uint1 x1954; uint32_t x1955; fiat_np521_uint1 x1956; uint32_t x1957; fiat_np521_uint1 x1958; uint32_t x1959; fiat_np521_uint1 x1960; uint32_t x1961; fiat_np521_uint1 x1962; uint32_t x1963; fiat_np521_uint1 x1964; uint32_t x1965; uint32_t x1966; uint32_t x1967; uint32_t x1968; uint32_t x1969; uint32_t x1970; uint32_t x1971; uint32_t x1972; uint32_t x1973; uint32_t x1974; uint32_t x1975; uint32_t x1976; uint32_t x1977; uint32_t x1978; uint32_t x1979; uint32_t x1980; uint32_t x1981; uint32_t x1982; uint32_t x1983; uint32_t x1984; uint32_t x1985; uint32_t x1986; uint32_t x1987; uint32_t x1988; uint32_t x1989; uint32_t x1990; uint32_t x1991; uint32_t x1992; uint32_t x1993; uint32_t x1994; uint32_t x1995; uint32_t x1996; uint32_t x1997; uint32_t x1998; uint32_t x1999; uint32_t x2000; uint32_t x2001; fiat_np521_uint1 x2002; uint32_t x2003; fiat_np521_uint1 x2004; uint32_t x2005; fiat_np521_uint1 x2006; uint32_t x2007; fiat_np521_uint1 x2008; uint32_t x2009; fiat_np521_uint1 x2010; uint32_t x2011; fiat_np521_uint1 x2012; uint32_t x2013; fiat_np521_uint1 x2014; uint32_t x2015; fiat_np521_uint1 x2016; uint32_t x2017; fiat_np521_uint1 x2018; uint32_t x2019; fiat_np521_uint1 x2020; uint32_t x2021; fiat_np521_uint1 x2022; uint32_t x2023; fiat_np521_uint1 x2024; uint32_t x2025; fiat_np521_uint1 x2026; uint32_t x2027; fiat_np521_uint1 x2028; uint32_t x2029; fiat_np521_uint1 x2030; uint32_t x2031; fiat_np521_uint1 x2032; uint32_t x2033; uint32_t x2034; fiat_np521_uint1 x2035; uint32_t x2036; fiat_np521_uint1 x2037; uint32_t x2038; fiat_np521_uint1 x2039; uint32_t x2040; fiat_np521_uint1 x2041; uint32_t x2042; fiat_np521_uint1 x2043; uint32_t x2044; fiat_np521_uint1 x2045; uint32_t x2046; fiat_np521_uint1 x2047; uint32_t x2048; fiat_np521_uint1 x2049; uint32_t x2050; fiat_np521_uint1 x2051; uint32_t x2052; fiat_np521_uint1 x2053; uint32_t x2054; fiat_np521_uint1 x2055; uint32_t x2056; fiat_np521_uint1 x2057; uint32_t x2058; fiat_np521_uint1 x2059; uint32_t x2060; fiat_np521_uint1 x2061; uint32_t x2062; fiat_np521_uint1 x2063; uint32_t x2064; fiat_np521_uint1 x2065; uint32_t x2066; fiat_np521_uint1 x2067; uint32_t x2068; fiat_np521_uint1 x2069; uint32_t x2070; uint32_t x2071; uint32_t x2072; uint32_t x2073; uint32_t x2074; uint32_t x2075; uint32_t x2076; uint32_t x2077; uint32_t x2078; uint32_t x2079; uint32_t x2080; uint32_t x2081; uint32_t x2082; uint32_t x2083; uint32_t x2084; uint32_t x2085; uint32_t x2086; uint32_t x2087; uint32_t x2088; uint32_t x2089; uint32_t x2090; uint32_t x2091; uint32_t x2092; uint32_t x2093; uint32_t x2094; uint32_t x2095; uint32_t x2096; uint32_t x2097; uint32_t x2098; uint32_t x2099; uint32_t x2100; uint32_t x2101; uint32_t x2102; uint32_t x2103; uint32_t x2104; uint32_t x2105; fiat_np521_uint1 x2106; uint32_t x2107; fiat_np521_uint1 x2108; uint32_t x2109; fiat_np521_uint1 x2110; uint32_t x2111; fiat_np521_uint1 x2112; uint32_t x2113; fiat_np521_uint1 x2114; uint32_t x2115; fiat_np521_uint1 x2116; uint32_t x2117; fiat_np521_uint1 x2118; uint32_t x2119; fiat_np521_uint1 x2120; uint32_t x2121; fiat_np521_uint1 x2122; uint32_t x2123; fiat_np521_uint1 x2124; uint32_t x2125; fiat_np521_uint1 x2126; uint32_t x2127; fiat_np521_uint1 x2128; uint32_t x2129; fiat_np521_uint1 x2130; uint32_t x2131; fiat_np521_uint1 x2132; uint32_t x2133; fiat_np521_uint1 x2134; uint32_t x2135; fiat_np521_uint1 x2136; uint32_t x2137; uint32_t x2138; fiat_np521_uint1 x2139; uint32_t x2140; fiat_np521_uint1 x2141; uint32_t x2142; fiat_np521_uint1 x2143; uint32_t x2144; fiat_np521_uint1 x2145; uint32_t x2146; fiat_np521_uint1 x2147; uint32_t x2148; fiat_np521_uint1 x2149; uint32_t x2150; fiat_np521_uint1 x2151; uint32_t x2152; fiat_np521_uint1 x2153; uint32_t x2154; fiat_np521_uint1 x2155; uint32_t x2156; fiat_np521_uint1 x2157; uint32_t x2158; fiat_np521_uint1 x2159; uint32_t x2160; fiat_np521_uint1 x2161; uint32_t x2162; fiat_np521_uint1 x2163; uint32_t x2164; fiat_np521_uint1 x2165; uint32_t x2166; fiat_np521_uint1 x2167; uint32_t x2168; fiat_np521_uint1 x2169; uint32_t x2170; fiat_np521_uint1 x2171; uint32_t x2172; fiat_np521_uint1 x2173; uint32_t x2174; uint32_t x2175; uint32_t x2176; uint32_t x2177; uint32_t x2178; uint32_t x2179; uint32_t x2180; uint32_t x2181; uint32_t x2182; uint32_t x2183; uint32_t x2184; uint32_t x2185; uint32_t x2186; uint32_t x2187; uint32_t x2188; uint32_t x2189; uint32_t x2190; uint32_t x2191; uint32_t x2192; uint32_t x2193; uint32_t x2194; uint32_t x2195; uint32_t x2196; uint32_t x2197; uint32_t x2198; uint32_t x2199; uint32_t x2200; uint32_t x2201; uint32_t x2202; uint32_t x2203; uint32_t x2204; uint32_t x2205; uint32_t x2206; uint32_t x2207; uint32_t x2208; uint32_t x2209; uint32_t x2210; fiat_np521_uint1 x2211; uint32_t x2212; fiat_np521_uint1 x2213; uint32_t x2214; fiat_np521_uint1 x2215; uint32_t x2216; fiat_np521_uint1 x2217; uint32_t x2218; fiat_np521_uint1 x2219; uint32_t x2220; fiat_np521_uint1 x2221; uint32_t x2222; fiat_np521_uint1 x2223; uint32_t x2224; fiat_np521_uint1 x2225; uint32_t x2226; fiat_np521_uint1 x2227; uint32_t x2228; fiat_np521_uint1 x2229; uint32_t x2230; fiat_np521_uint1 x2231; uint32_t x2232; fiat_np521_uint1 x2233; uint32_t x2234; fiat_np521_uint1 x2235; uint32_t x2236; fiat_np521_uint1 x2237; uint32_t x2238; fiat_np521_uint1 x2239; uint32_t x2240; fiat_np521_uint1 x2241; uint32_t x2242; uint32_t x2243; fiat_np521_uint1 x2244; uint32_t x2245; fiat_np521_uint1 x2246; uint32_t x2247; fiat_np521_uint1 x2248; uint32_t x2249; fiat_np521_uint1 x2250; uint32_t x2251; fiat_np521_uint1 x2252; uint32_t x2253; fiat_np521_uint1 x2254; uint32_t x2255; fiat_np521_uint1 x2256; uint32_t x2257; fiat_np521_uint1 x2258; uint32_t x2259; fiat_np521_uint1 x2260; uint32_t x2261; fiat_np521_uint1 x2262; uint32_t x2263; fiat_np521_uint1 x2264; uint32_t x2265; fiat_np521_uint1 x2266; uint32_t x2267; fiat_np521_uint1 x2268; uint32_t x2269; fiat_np521_uint1 x2270; uint32_t x2271; fiat_np521_uint1 x2272; uint32_t x2273; fiat_np521_uint1 x2274; uint32_t x2275; fiat_np521_uint1 x2276; uint32_t x2277; fiat_np521_uint1 x2278; uint32_t x2279; uint32_t x2280; uint32_t x2281; uint32_t x2282; uint32_t x2283; uint32_t x2284; uint32_t x2285; uint32_t x2286; uint32_t x2287; uint32_t x2288; uint32_t x2289; uint32_t x2290; uint32_t x2291; uint32_t x2292; uint32_t x2293; uint32_t x2294; uint32_t x2295; uint32_t x2296; uint32_t x2297; uint32_t x2298; uint32_t x2299; uint32_t x2300; uint32_t x2301; uint32_t x2302; uint32_t x2303; uint32_t x2304; uint32_t x2305; uint32_t x2306; uint32_t x2307; uint32_t x2308; uint32_t x2309; uint32_t x2310; uint32_t x2311; uint32_t x2312; uint32_t x2313; uint32_t x2314; fiat_np521_uint1 x2315; uint32_t x2316; fiat_np521_uint1 x2317; uint32_t x2318; fiat_np521_uint1 x2319; uint32_t x2320; fiat_np521_uint1 x2321; uint32_t x2322; fiat_np521_uint1 x2323; uint32_t x2324; fiat_np521_uint1 x2325; uint32_t x2326; fiat_np521_uint1 x2327; uint32_t x2328; fiat_np521_uint1 x2329; uint32_t x2330; fiat_np521_uint1 x2331; uint32_t x2332; fiat_np521_uint1 x2333; uint32_t x2334; fiat_np521_uint1 x2335; uint32_t x2336; fiat_np521_uint1 x2337; uint32_t x2338; fiat_np521_uint1 x2339; uint32_t x2340; fiat_np521_uint1 x2341; uint32_t x2342; fiat_np521_uint1 x2343; uint32_t x2344; fiat_np521_uint1 x2345; uint32_t x2346; uint32_t x2347; fiat_np521_uint1 x2348; uint32_t x2349; fiat_np521_uint1 x2350; uint32_t x2351; fiat_np521_uint1 x2352; uint32_t x2353; fiat_np521_uint1 x2354; uint32_t x2355; fiat_np521_uint1 x2356; uint32_t x2357; fiat_np521_uint1 x2358; uint32_t x2359; fiat_np521_uint1 x2360; uint32_t x2361; fiat_np521_uint1 x2362; uint32_t x2363; fiat_np521_uint1 x2364; uint32_t x2365; fiat_np521_uint1 x2366; uint32_t x2367; fiat_np521_uint1 x2368; uint32_t x2369; fiat_np521_uint1 x2370; uint32_t x2371; fiat_np521_uint1 x2372; uint32_t x2373; fiat_np521_uint1 x2374; uint32_t x2375; fiat_np521_uint1 x2376; uint32_t x2377; fiat_np521_uint1 x2378; uint32_t x2379; fiat_np521_uint1 x2380; uint32_t x2381; fiat_np521_uint1 x2382; uint32_t x2383; uint32_t x2384; uint32_t x2385; uint32_t x2386; uint32_t x2387; uint32_t x2388; uint32_t x2389; uint32_t x2390; uint32_t x2391; uint32_t x2392; uint32_t x2393; uint32_t x2394; uint32_t x2395; uint32_t x2396; uint32_t x2397; uint32_t x2398; uint32_t x2399; uint32_t x2400; uint32_t x2401; uint32_t x2402; uint32_t x2403; uint32_t x2404; uint32_t x2405; uint32_t x2406; uint32_t x2407; uint32_t x2408; uint32_t x2409; uint32_t x2410; uint32_t x2411; uint32_t x2412; uint32_t x2413; uint32_t x2414; uint32_t x2415; uint32_t x2416; uint32_t x2417; uint32_t x2418; uint32_t x2419; fiat_np521_uint1 x2420; uint32_t x2421; fiat_np521_uint1 x2422; uint32_t x2423; fiat_np521_uint1 x2424; uint32_t x2425; fiat_np521_uint1 x2426; uint32_t x2427; fiat_np521_uint1 x2428; uint32_t x2429; fiat_np521_uint1 x2430; uint32_t x2431; fiat_np521_uint1 x2432; uint32_t x2433; fiat_np521_uint1 x2434; uint32_t x2435; fiat_np521_uint1 x2436; uint32_t x2437; fiat_np521_uint1 x2438; uint32_t x2439; fiat_np521_uint1 x2440; uint32_t x2441; fiat_np521_uint1 x2442; uint32_t x2443; fiat_np521_uint1 x2444; uint32_t x2445; fiat_np521_uint1 x2446; uint32_t x2447; fiat_np521_uint1 x2448; uint32_t x2449; fiat_np521_uint1 x2450; uint32_t x2451; uint32_t x2452; fiat_np521_uint1 x2453; uint32_t x2454; fiat_np521_uint1 x2455; uint32_t x2456; fiat_np521_uint1 x2457; uint32_t x2458; fiat_np521_uint1 x2459; uint32_t x2460; fiat_np521_uint1 x2461; uint32_t x2462; fiat_np521_uint1 x2463; uint32_t x2464; fiat_np521_uint1 x2465; uint32_t x2466; fiat_np521_uint1 x2467; uint32_t x2468; fiat_np521_uint1 x2469; uint32_t x2470; fiat_np521_uint1 x2471; uint32_t x2472; fiat_np521_uint1 x2473; uint32_t x2474; fiat_np521_uint1 x2475; uint32_t x2476; fiat_np521_uint1 x2477; uint32_t x2478; fiat_np521_uint1 x2479; uint32_t x2480; fiat_np521_uint1 x2481; uint32_t x2482; fiat_np521_uint1 x2483; uint32_t x2484; fiat_np521_uint1 x2485; uint32_t x2486; fiat_np521_uint1 x2487; uint32_t x2488; uint32_t x2489; uint32_t x2490; uint32_t x2491; uint32_t x2492; uint32_t x2493; uint32_t x2494; uint32_t x2495; uint32_t x2496; uint32_t x2497; uint32_t x2498; uint32_t x2499; uint32_t x2500; uint32_t x2501; uint32_t x2502; uint32_t x2503; uint32_t x2504; uint32_t x2505; uint32_t x2506; uint32_t x2507; uint32_t x2508; uint32_t x2509; uint32_t x2510; uint32_t x2511; uint32_t x2512; uint32_t x2513; uint32_t x2514; uint32_t x2515; uint32_t x2516; uint32_t x2517; uint32_t x2518; uint32_t x2519; uint32_t x2520; uint32_t x2521; uint32_t x2522; uint32_t x2523; fiat_np521_uint1 x2524; uint32_t x2525; fiat_np521_uint1 x2526; uint32_t x2527; fiat_np521_uint1 x2528; uint32_t x2529; fiat_np521_uint1 x2530; uint32_t x2531; fiat_np521_uint1 x2532; uint32_t x2533; fiat_np521_uint1 x2534; uint32_t x2535; fiat_np521_uint1 x2536; uint32_t x2537; fiat_np521_uint1 x2538; uint32_t x2539; fiat_np521_uint1 x2540; uint32_t x2541; fiat_np521_uint1 x2542; uint32_t x2543; fiat_np521_uint1 x2544; uint32_t x2545; fiat_np521_uint1 x2546; uint32_t x2547; fiat_np521_uint1 x2548; uint32_t x2549; fiat_np521_uint1 x2550; uint32_t x2551; fiat_np521_uint1 x2552; uint32_t x2553; fiat_np521_uint1 x2554; uint32_t x2555; uint32_t x2556; fiat_np521_uint1 x2557; uint32_t x2558; fiat_np521_uint1 x2559; uint32_t x2560; fiat_np521_uint1 x2561; uint32_t x2562; fiat_np521_uint1 x2563; uint32_t x2564; fiat_np521_uint1 x2565; uint32_t x2566; fiat_np521_uint1 x2567; uint32_t x2568; fiat_np521_uint1 x2569; uint32_t x2570; fiat_np521_uint1 x2571; uint32_t x2572; fiat_np521_uint1 x2573; uint32_t x2574; fiat_np521_uint1 x2575; uint32_t x2576; fiat_np521_uint1 x2577; uint32_t x2578; fiat_np521_uint1 x2579; uint32_t x2580; fiat_np521_uint1 x2581; uint32_t x2582; fiat_np521_uint1 x2583; uint32_t x2584; fiat_np521_uint1 x2585; uint32_t x2586; fiat_np521_uint1 x2587; uint32_t x2588; fiat_np521_uint1 x2589; uint32_t x2590; fiat_np521_uint1 x2591; uint32_t x2592; uint32_t x2593; uint32_t x2594; uint32_t x2595; uint32_t x2596; uint32_t x2597; uint32_t x2598; uint32_t x2599; uint32_t x2600; uint32_t x2601; uint32_t x2602; uint32_t x2603; uint32_t x2604; uint32_t x2605; uint32_t x2606; uint32_t x2607; uint32_t x2608; uint32_t x2609; uint32_t x2610; uint32_t x2611; uint32_t x2612; uint32_t x2613; uint32_t x2614; uint32_t x2615; uint32_t x2616; uint32_t x2617; uint32_t x2618; uint32_t x2619; uint32_t x2620; uint32_t x2621; uint32_t x2622; uint32_t x2623; uint32_t x2624; uint32_t x2625; uint32_t x2626; uint32_t x2627; uint32_t x2628; fiat_np521_uint1 x2629; uint32_t x2630; fiat_np521_uint1 x2631; uint32_t x2632; fiat_np521_uint1 x2633; uint32_t x2634; fiat_np521_uint1 x2635; uint32_t x2636; fiat_np521_uint1 x2637; uint32_t x2638; fiat_np521_uint1 x2639; uint32_t x2640; fiat_np521_uint1 x2641; uint32_t x2642; fiat_np521_uint1 x2643; uint32_t x2644; fiat_np521_uint1 x2645; uint32_t x2646; fiat_np521_uint1 x2647; uint32_t x2648; fiat_np521_uint1 x2649; uint32_t x2650; fiat_np521_uint1 x2651; uint32_t x2652; fiat_np521_uint1 x2653; uint32_t x2654; fiat_np521_uint1 x2655; uint32_t x2656; fiat_np521_uint1 x2657; uint32_t x2658; fiat_np521_uint1 x2659; uint32_t x2660; uint32_t x2661; fiat_np521_uint1 x2662; uint32_t x2663; fiat_np521_uint1 x2664; uint32_t x2665; fiat_np521_uint1 x2666; uint32_t x2667; fiat_np521_uint1 x2668; uint32_t x2669; fiat_np521_uint1 x2670; uint32_t x2671; fiat_np521_uint1 x2672; uint32_t x2673; fiat_np521_uint1 x2674; uint32_t x2675; fiat_np521_uint1 x2676; uint32_t x2677; fiat_np521_uint1 x2678; uint32_t x2679; fiat_np521_uint1 x2680; uint32_t x2681; fiat_np521_uint1 x2682; uint32_t x2683; fiat_np521_uint1 x2684; uint32_t x2685; fiat_np521_uint1 x2686; uint32_t x2687; fiat_np521_uint1 x2688; uint32_t x2689; fiat_np521_uint1 x2690; uint32_t x2691; fiat_np521_uint1 x2692; uint32_t x2693; fiat_np521_uint1 x2694; uint32_t x2695; fiat_np521_uint1 x2696; uint32_t x2697; uint32_t x2698; uint32_t x2699; uint32_t x2700; uint32_t x2701; uint32_t x2702; uint32_t x2703; uint32_t x2704; uint32_t x2705; uint32_t x2706; uint32_t x2707; uint32_t x2708; uint32_t x2709; uint32_t x2710; uint32_t x2711; uint32_t x2712; uint32_t x2713; uint32_t x2714; uint32_t x2715; uint32_t x2716; uint32_t x2717; uint32_t x2718; uint32_t x2719; uint32_t x2720; uint32_t x2721; uint32_t x2722; uint32_t x2723; uint32_t x2724; uint32_t x2725; uint32_t x2726; uint32_t x2727; uint32_t x2728; uint32_t x2729; uint32_t x2730; uint32_t x2731; uint32_t x2732; fiat_np521_uint1 x2733; uint32_t x2734; fiat_np521_uint1 x2735; uint32_t x2736; fiat_np521_uint1 x2737; uint32_t x2738; fiat_np521_uint1 x2739; uint32_t x2740; fiat_np521_uint1 x2741; uint32_t x2742; fiat_np521_uint1 x2743; uint32_t x2744; fiat_np521_uint1 x2745; uint32_t x2746; fiat_np521_uint1 x2747; uint32_t x2748; fiat_np521_uint1 x2749; uint32_t x2750; fiat_np521_uint1 x2751; uint32_t x2752; fiat_np521_uint1 x2753; uint32_t x2754; fiat_np521_uint1 x2755; uint32_t x2756; fiat_np521_uint1 x2757; uint32_t x2758; fiat_np521_uint1 x2759; uint32_t x2760; fiat_np521_uint1 x2761; uint32_t x2762; fiat_np521_uint1 x2763; uint32_t x2764; uint32_t x2765; fiat_np521_uint1 x2766; uint32_t x2767; fiat_np521_uint1 x2768; uint32_t x2769; fiat_np521_uint1 x2770; uint32_t x2771; fiat_np521_uint1 x2772; uint32_t x2773; fiat_np521_uint1 x2774; uint32_t x2775; fiat_np521_uint1 x2776; uint32_t x2777; fiat_np521_uint1 x2778; uint32_t x2779; fiat_np521_uint1 x2780; uint32_t x2781; fiat_np521_uint1 x2782; uint32_t x2783; fiat_np521_uint1 x2784; uint32_t x2785; fiat_np521_uint1 x2786; uint32_t x2787; fiat_np521_uint1 x2788; uint32_t x2789; fiat_np521_uint1 x2790; uint32_t x2791; fiat_np521_uint1 x2792; uint32_t x2793; fiat_np521_uint1 x2794; uint32_t x2795; fiat_np521_uint1 x2796; uint32_t x2797; fiat_np521_uint1 x2798; uint32_t x2799; fiat_np521_uint1 x2800; uint32_t x2801; uint32_t x2802; uint32_t x2803; uint32_t x2804; uint32_t x2805; uint32_t x2806; uint32_t x2807; uint32_t x2808; uint32_t x2809; uint32_t x2810; uint32_t x2811; uint32_t x2812; uint32_t x2813; uint32_t x2814; uint32_t x2815; uint32_t x2816; uint32_t x2817; uint32_t x2818; uint32_t x2819; uint32_t x2820; uint32_t x2821; uint32_t x2822; uint32_t x2823; uint32_t x2824; uint32_t x2825; uint32_t x2826; uint32_t x2827; uint32_t x2828; uint32_t x2829; uint32_t x2830; uint32_t x2831; uint32_t x2832; uint32_t x2833; uint32_t x2834; uint32_t x2835; uint32_t x2836; uint32_t x2837; fiat_np521_uint1 x2838; uint32_t x2839; fiat_np521_uint1 x2840; uint32_t x2841; fiat_np521_uint1 x2842; uint32_t x2843; fiat_np521_uint1 x2844; uint32_t x2845; fiat_np521_uint1 x2846; uint32_t x2847; fiat_np521_uint1 x2848; uint32_t x2849; fiat_np521_uint1 x2850; uint32_t x2851; fiat_np521_uint1 x2852; uint32_t x2853; fiat_np521_uint1 x2854; uint32_t x2855; fiat_np521_uint1 x2856; uint32_t x2857; fiat_np521_uint1 x2858; uint32_t x2859; fiat_np521_uint1 x2860; uint32_t x2861; fiat_np521_uint1 x2862; uint32_t x2863; fiat_np521_uint1 x2864; uint32_t x2865; fiat_np521_uint1 x2866; uint32_t x2867; fiat_np521_uint1 x2868; uint32_t x2869; uint32_t x2870; fiat_np521_uint1 x2871; uint32_t x2872; fiat_np521_uint1 x2873; uint32_t x2874; fiat_np521_uint1 x2875; uint32_t x2876; fiat_np521_uint1 x2877; uint32_t x2878; fiat_np521_uint1 x2879; uint32_t x2880; fiat_np521_uint1 x2881; uint32_t x2882; fiat_np521_uint1 x2883; uint32_t x2884; fiat_np521_uint1 x2885; uint32_t x2886; fiat_np521_uint1 x2887; uint32_t x2888; fiat_np521_uint1 x2889; uint32_t x2890; fiat_np521_uint1 x2891; uint32_t x2892; fiat_np521_uint1 x2893; uint32_t x2894; fiat_np521_uint1 x2895; uint32_t x2896; fiat_np521_uint1 x2897; uint32_t x2898; fiat_np521_uint1 x2899; uint32_t x2900; fiat_np521_uint1 x2901; uint32_t x2902; fiat_np521_uint1 x2903; uint32_t x2904; fiat_np521_uint1 x2905; uint32_t x2906; uint32_t x2907; uint32_t x2908; uint32_t x2909; uint32_t x2910; uint32_t x2911; uint32_t x2912; uint32_t x2913; uint32_t x2914; uint32_t x2915; uint32_t x2916; uint32_t x2917; uint32_t x2918; uint32_t x2919; uint32_t x2920; uint32_t x2921; uint32_t x2922; uint32_t x2923; uint32_t x2924; uint32_t x2925; uint32_t x2926; uint32_t x2927; uint32_t x2928; uint32_t x2929; uint32_t x2930; uint32_t x2931; uint32_t x2932; uint32_t x2933; uint32_t x2934; uint32_t x2935; uint32_t x2936; uint32_t x2937; uint32_t x2938; uint32_t x2939; uint32_t x2940; uint32_t x2941; fiat_np521_uint1 x2942; uint32_t x2943; fiat_np521_uint1 x2944; uint32_t x2945; fiat_np521_uint1 x2946; uint32_t x2947; fiat_np521_uint1 x2948; uint32_t x2949; fiat_np521_uint1 x2950; uint32_t x2951; fiat_np521_uint1 x2952; uint32_t x2953; fiat_np521_uint1 x2954; uint32_t x2955; fiat_np521_uint1 x2956; uint32_t x2957; fiat_np521_uint1 x2958; uint32_t x2959; fiat_np521_uint1 x2960; uint32_t x2961; fiat_np521_uint1 x2962; uint32_t x2963; fiat_np521_uint1 x2964; uint32_t x2965; fiat_np521_uint1 x2966; uint32_t x2967; fiat_np521_uint1 x2968; uint32_t x2969; fiat_np521_uint1 x2970; uint32_t x2971; fiat_np521_uint1 x2972; uint32_t x2973; uint32_t x2974; fiat_np521_uint1 x2975; uint32_t x2976; fiat_np521_uint1 x2977; uint32_t x2978; fiat_np521_uint1 x2979; uint32_t x2980; fiat_np521_uint1 x2981; uint32_t x2982; fiat_np521_uint1 x2983; uint32_t x2984; fiat_np521_uint1 x2985; uint32_t x2986; fiat_np521_uint1 x2987; uint32_t x2988; fiat_np521_uint1 x2989; uint32_t x2990; fiat_np521_uint1 x2991; uint32_t x2992; fiat_np521_uint1 x2993; uint32_t x2994; fiat_np521_uint1 x2995; uint32_t x2996; fiat_np521_uint1 x2997; uint32_t x2998; fiat_np521_uint1 x2999; uint32_t x3000; fiat_np521_uint1 x3001; uint32_t x3002; fiat_np521_uint1 x3003; uint32_t x3004; fiat_np521_uint1 x3005; uint32_t x3006; fiat_np521_uint1 x3007; uint32_t x3008; fiat_np521_uint1 x3009; uint32_t x3010; uint32_t x3011; uint32_t x3012; uint32_t x3013; uint32_t x3014; uint32_t x3015; uint32_t x3016; uint32_t x3017; uint32_t x3018; uint32_t x3019; uint32_t x3020; uint32_t x3021; uint32_t x3022; uint32_t x3023; uint32_t x3024; uint32_t x3025; uint32_t x3026; uint32_t x3027; uint32_t x3028; uint32_t x3029; uint32_t x3030; uint32_t x3031; uint32_t x3032; uint32_t x3033; uint32_t x3034; uint32_t x3035; uint32_t x3036; uint32_t x3037; uint32_t x3038; uint32_t x3039; uint32_t x3040; uint32_t x3041; uint32_t x3042; uint32_t x3043; uint32_t x3044; uint32_t x3045; uint32_t x3046; fiat_np521_uint1 x3047; uint32_t x3048; fiat_np521_uint1 x3049; uint32_t x3050; fiat_np521_uint1 x3051; uint32_t x3052; fiat_np521_uint1 x3053; uint32_t x3054; fiat_np521_uint1 x3055; uint32_t x3056; fiat_np521_uint1 x3057; uint32_t x3058; fiat_np521_uint1 x3059; uint32_t x3060; fiat_np521_uint1 x3061; uint32_t x3062; fiat_np521_uint1 x3063; uint32_t x3064; fiat_np521_uint1 x3065; uint32_t x3066; fiat_np521_uint1 x3067; uint32_t x3068; fiat_np521_uint1 x3069; uint32_t x3070; fiat_np521_uint1 x3071; uint32_t x3072; fiat_np521_uint1 x3073; uint32_t x3074; fiat_np521_uint1 x3075; uint32_t x3076; fiat_np521_uint1 x3077; uint32_t x3078; uint32_t x3079; fiat_np521_uint1 x3080; uint32_t x3081; fiat_np521_uint1 x3082; uint32_t x3083; fiat_np521_uint1 x3084; uint32_t x3085; fiat_np521_uint1 x3086; uint32_t x3087; fiat_np521_uint1 x3088; uint32_t x3089; fiat_np521_uint1 x3090; uint32_t x3091; fiat_np521_uint1 x3092; uint32_t x3093; fiat_np521_uint1 x3094; uint32_t x3095; fiat_np521_uint1 x3096; uint32_t x3097; fiat_np521_uint1 x3098; uint32_t x3099; fiat_np521_uint1 x3100; uint32_t x3101; fiat_np521_uint1 x3102; uint32_t x3103; fiat_np521_uint1 x3104; uint32_t x3105; fiat_np521_uint1 x3106; uint32_t x3107; fiat_np521_uint1 x3108; uint32_t x3109; fiat_np521_uint1 x3110; uint32_t x3111; fiat_np521_uint1 x3112; uint32_t x3113; fiat_np521_uint1 x3114; uint32_t x3115; uint32_t x3116; uint32_t x3117; uint32_t x3118; uint32_t x3119; uint32_t x3120; uint32_t x3121; uint32_t x3122; uint32_t x3123; uint32_t x3124; uint32_t x3125; uint32_t x3126; uint32_t x3127; uint32_t x3128; uint32_t x3129; uint32_t x3130; uint32_t x3131; uint32_t x3132; uint32_t x3133; uint32_t x3134; uint32_t x3135; uint32_t x3136; uint32_t x3137; uint32_t x3138; uint32_t x3139; uint32_t x3140; uint32_t x3141; uint32_t x3142; uint32_t x3143; uint32_t x3144; uint32_t x3145; uint32_t x3146; uint32_t x3147; uint32_t x3148; uint32_t x3149; uint32_t x3150; fiat_np521_uint1 x3151; uint32_t x3152; fiat_np521_uint1 x3153; uint32_t x3154; fiat_np521_uint1 x3155; uint32_t x3156; fiat_np521_uint1 x3157; uint32_t x3158; fiat_np521_uint1 x3159; uint32_t x3160; fiat_np521_uint1 x3161; uint32_t x3162; fiat_np521_uint1 x3163; uint32_t x3164; fiat_np521_uint1 x3165; uint32_t x3166; fiat_np521_uint1 x3167; uint32_t x3168; fiat_np521_uint1 x3169; uint32_t x3170; fiat_np521_uint1 x3171; uint32_t x3172; fiat_np521_uint1 x3173; uint32_t x3174; fiat_np521_uint1 x3175; uint32_t x3176; fiat_np521_uint1 x3177; uint32_t x3178; fiat_np521_uint1 x3179; uint32_t x3180; fiat_np521_uint1 x3181; uint32_t x3182; uint32_t x3183; fiat_np521_uint1 x3184; uint32_t x3185; fiat_np521_uint1 x3186; uint32_t x3187; fiat_np521_uint1 x3188; uint32_t x3189; fiat_np521_uint1 x3190; uint32_t x3191; fiat_np521_uint1 x3192; uint32_t x3193; fiat_np521_uint1 x3194; uint32_t x3195; fiat_np521_uint1 x3196; uint32_t x3197; fiat_np521_uint1 x3198; uint32_t x3199; fiat_np521_uint1 x3200; uint32_t x3201; fiat_np521_uint1 x3202; uint32_t x3203; fiat_np521_uint1 x3204; uint32_t x3205; fiat_np521_uint1 x3206; uint32_t x3207; fiat_np521_uint1 x3208; uint32_t x3209; fiat_np521_uint1 x3210; uint32_t x3211; fiat_np521_uint1 x3212; uint32_t x3213; fiat_np521_uint1 x3214; uint32_t x3215; fiat_np521_uint1 x3216; uint32_t x3217; fiat_np521_uint1 x3218; uint32_t x3219; uint32_t x3220; uint32_t x3221; uint32_t x3222; uint32_t x3223; uint32_t x3224; uint32_t x3225; uint32_t x3226; uint32_t x3227; uint32_t x3228; uint32_t x3229; uint32_t x3230; uint32_t x3231; uint32_t x3232; uint32_t x3233; uint32_t x3234; uint32_t x3235; uint32_t x3236; uint32_t x3237; uint32_t x3238; uint32_t x3239; uint32_t x3240; uint32_t x3241; uint32_t x3242; uint32_t x3243; uint32_t x3244; uint32_t x3245; uint32_t x3246; uint32_t x3247; uint32_t x3248; uint32_t x3249; uint32_t x3250; uint32_t x3251; uint32_t x3252; uint32_t x3253; uint32_t x3254; uint32_t x3255; fiat_np521_uint1 x3256; uint32_t x3257; fiat_np521_uint1 x3258; uint32_t x3259; fiat_np521_uint1 x3260; uint32_t x3261; fiat_np521_uint1 x3262; uint32_t x3263; fiat_np521_uint1 x3264; uint32_t x3265; fiat_np521_uint1 x3266; uint32_t x3267; fiat_np521_uint1 x3268; uint32_t x3269; fiat_np521_uint1 x3270; uint32_t x3271; fiat_np521_uint1 x3272; uint32_t x3273; fiat_np521_uint1 x3274; uint32_t x3275; fiat_np521_uint1 x3276; uint32_t x3277; fiat_np521_uint1 x3278; uint32_t x3279; fiat_np521_uint1 x3280; uint32_t x3281; fiat_np521_uint1 x3282; uint32_t x3283; fiat_np521_uint1 x3284; uint32_t x3285; fiat_np521_uint1 x3286; uint32_t x3287; uint32_t x3288; fiat_np521_uint1 x3289; uint32_t x3290; fiat_np521_uint1 x3291; uint32_t x3292; fiat_np521_uint1 x3293; uint32_t x3294; fiat_np521_uint1 x3295; uint32_t x3296; fiat_np521_uint1 x3297; uint32_t x3298; fiat_np521_uint1 x3299; uint32_t x3300; fiat_np521_uint1 x3301; uint32_t x3302; fiat_np521_uint1 x3303; uint32_t x3304; fiat_np521_uint1 x3305; uint32_t x3306; fiat_np521_uint1 x3307; uint32_t x3308; fiat_np521_uint1 x3309; uint32_t x3310; fiat_np521_uint1 x3311; uint32_t x3312; fiat_np521_uint1 x3313; uint32_t x3314; fiat_np521_uint1 x3315; uint32_t x3316; fiat_np521_uint1 x3317; uint32_t x3318; fiat_np521_uint1 x3319; uint32_t x3320; fiat_np521_uint1 x3321; uint32_t x3322; fiat_np521_uint1 x3323; uint32_t x3324; uint32_t x3325; uint32_t x3326; uint32_t x3327; uint32_t x3328; uint32_t x3329; uint32_t x3330; uint32_t x3331; uint32_t x3332; uint32_t x3333; uint32_t x3334; uint32_t x3335; uint32_t x3336; uint32_t x3337; uint32_t x3338; uint32_t x3339; uint32_t x3340; uint32_t x3341; uint32_t x3342; uint32_t x3343; uint32_t x3344; uint32_t x3345; uint32_t x3346; uint32_t x3347; uint32_t x3348; uint32_t x3349; uint32_t x3350; uint32_t x3351; uint32_t x3352; uint32_t x3353; uint32_t x3354; uint32_t x3355; uint32_t x3356; uint32_t x3357; uint32_t x3358; uint32_t x3359; fiat_np521_uint1 x3360; uint32_t x3361; fiat_np521_uint1 x3362; uint32_t x3363; fiat_np521_uint1 x3364; uint32_t x3365; fiat_np521_uint1 x3366; uint32_t x3367; fiat_np521_uint1 x3368; uint32_t x3369; fiat_np521_uint1 x3370; uint32_t x3371; fiat_np521_uint1 x3372; uint32_t x3373; fiat_np521_uint1 x3374; uint32_t x3375; fiat_np521_uint1 x3376; uint32_t x3377; fiat_np521_uint1 x3378; uint32_t x3379; fiat_np521_uint1 x3380; uint32_t x3381; fiat_np521_uint1 x3382; uint32_t x3383; fiat_np521_uint1 x3384; uint32_t x3385; fiat_np521_uint1 x3386; uint32_t x3387; fiat_np521_uint1 x3388; uint32_t x3389; fiat_np521_uint1 x3390; uint32_t x3391; uint32_t x3392; fiat_np521_uint1 x3393; uint32_t x3394; fiat_np521_uint1 x3395; uint32_t x3396; fiat_np521_uint1 x3397; uint32_t x3398; fiat_np521_uint1 x3399; uint32_t x3400; fiat_np521_uint1 x3401; uint32_t x3402; fiat_np521_uint1 x3403; uint32_t x3404; fiat_np521_uint1 x3405; uint32_t x3406; fiat_np521_uint1 x3407; uint32_t x3408; fiat_np521_uint1 x3409; uint32_t x3410; fiat_np521_uint1 x3411; uint32_t x3412; fiat_np521_uint1 x3413; uint32_t x3414; fiat_np521_uint1 x3415; uint32_t x3416; fiat_np521_uint1 x3417; uint32_t x3418; fiat_np521_uint1 x3419; uint32_t x3420; fiat_np521_uint1 x3421; uint32_t x3422; fiat_np521_uint1 x3423; uint32_t x3424; fiat_np521_uint1 x3425; uint32_t x3426; fiat_np521_uint1 x3427; uint32_t x3428; uint32_t x3429; uint32_t x3430; uint32_t x3431; uint32_t x3432; uint32_t x3433; uint32_t x3434; uint32_t x3435; uint32_t x3436; uint32_t x3437; uint32_t x3438; uint32_t x3439; uint32_t x3440; uint32_t x3441; uint32_t x3442; uint32_t x3443; uint32_t x3444; uint32_t x3445; uint32_t x3446; uint32_t x3447; uint32_t x3448; uint32_t x3449; uint32_t x3450; uint32_t x3451; uint32_t x3452; uint32_t x3453; uint32_t x3454; uint32_t x3455; uint32_t x3456; uint32_t x3457; uint32_t x3458; uint32_t x3459; uint32_t x3460; uint32_t x3461; uint32_t x3462; uint32_t x3463; uint32_t x3464; fiat_np521_uint1 x3465; uint32_t x3466; fiat_np521_uint1 x3467; uint32_t x3468; fiat_np521_uint1 x3469; uint32_t x3470; fiat_np521_uint1 x3471; uint32_t x3472; fiat_np521_uint1 x3473; uint32_t x3474; fiat_np521_uint1 x3475; uint32_t x3476; fiat_np521_uint1 x3477; uint32_t x3478; fiat_np521_uint1 x3479; uint32_t x3480; fiat_np521_uint1 x3481; uint32_t x3482; fiat_np521_uint1 x3483; uint32_t x3484; fiat_np521_uint1 x3485; uint32_t x3486; fiat_np521_uint1 x3487; uint32_t x3488; fiat_np521_uint1 x3489; uint32_t x3490; fiat_np521_uint1 x3491; uint32_t x3492; fiat_np521_uint1 x3493; uint32_t x3494; fiat_np521_uint1 x3495; uint32_t x3496; uint32_t x3497; fiat_np521_uint1 x3498; uint32_t x3499; fiat_np521_uint1 x3500; uint32_t x3501; fiat_np521_uint1 x3502; uint32_t x3503; fiat_np521_uint1 x3504; uint32_t x3505; fiat_np521_uint1 x3506; uint32_t x3507; fiat_np521_uint1 x3508; uint32_t x3509; fiat_np521_uint1 x3510; uint32_t x3511; fiat_np521_uint1 x3512; uint32_t x3513; fiat_np521_uint1 x3514; uint32_t x3515; fiat_np521_uint1 x3516; uint32_t x3517; fiat_np521_uint1 x3518; uint32_t x3519; fiat_np521_uint1 x3520; uint32_t x3521; fiat_np521_uint1 x3522; uint32_t x3523; fiat_np521_uint1 x3524; uint32_t x3525; fiat_np521_uint1 x3526; uint32_t x3527; fiat_np521_uint1 x3528; uint32_t x3529; fiat_np521_uint1 x3530; uint32_t x3531; fiat_np521_uint1 x3532; uint32_t x3533; uint32_t x3534; fiat_np521_uint1 x3535; uint32_t x3536; fiat_np521_uint1 x3537; uint32_t x3538; fiat_np521_uint1 x3539; uint32_t x3540; fiat_np521_uint1 x3541; uint32_t x3542; fiat_np521_uint1 x3543; uint32_t x3544; fiat_np521_uint1 x3545; uint32_t x3546; fiat_np521_uint1 x3547; uint32_t x3548; fiat_np521_uint1 x3549; uint32_t x3550; fiat_np521_uint1 x3551; uint32_t x3552; fiat_np521_uint1 x3553; uint32_t x3554; fiat_np521_uint1 x3555; uint32_t x3556; fiat_np521_uint1 x3557; uint32_t x3558; fiat_np521_uint1 x3559; uint32_t x3560; fiat_np521_uint1 x3561; uint32_t x3562; fiat_np521_uint1 x3563; uint32_t x3564; fiat_np521_uint1 x3565; uint32_t x3566; fiat_np521_uint1 x3567; uint32_t x3568; fiat_np521_uint1 x3569; uint32_t x3570; uint32_t x3571; uint32_t x3572; uint32_t x3573; uint32_t x3574; uint32_t x3575; uint32_t x3576; uint32_t x3577; uint32_t x3578; uint32_t x3579; uint32_t x3580; uint32_t x3581; uint32_t x3582; uint32_t x3583; uint32_t x3584; uint32_t x3585; uint32_t x3586; x1 = (arg1[1]); x2 = (arg1[2]); x3 = (arg1[3]); x4 = (arg1[4]); x5 = (arg1[5]); x6 = (arg1[6]); x7 = (arg1[7]); x8 = (arg1[8]); x9 = (arg1[9]); x10 = (arg1[10]); x11 = (arg1[11]); x12 = (arg1[12]); x13 = (arg1[13]); x14 = (arg1[14]); x15 = (arg1[15]); x16 = (arg1[16]); x17 = (arg1[0]); fiat_np521_mulx_u32(&x18, &x19, x17, (arg2[16])); fiat_np521_mulx_u32(&x20, &x21, x17, (arg2[15])); fiat_np521_mulx_u32(&x22, &x23, x17, (arg2[14])); fiat_np521_mulx_u32(&x24, &x25, x17, (arg2[13])); fiat_np521_mulx_u32(&x26, &x27, x17, (arg2[12])); fiat_np521_mulx_u32(&x28, &x29, x17, (arg2[11])); fiat_np521_mulx_u32(&x30, &x31, x17, (arg2[10])); fiat_np521_mulx_u32(&x32, &x33, x17, (arg2[9])); fiat_np521_mulx_u32(&x34, &x35, x17, (arg2[8])); fiat_np521_mulx_u32(&x36, &x37, x17, (arg2[7])); fiat_np521_mulx_u32(&x38, &x39, x17, (arg2[6])); fiat_np521_mulx_u32(&x40, &x41, x17, (arg2[5])); fiat_np521_mulx_u32(&x42, &x43, x17, (arg2[4])); fiat_np521_mulx_u32(&x44, &x45, x17, (arg2[3])); fiat_np521_mulx_u32(&x46, &x47, x17, (arg2[2])); fiat_np521_mulx_u32(&x48, &x49, x17, (arg2[1])); fiat_np521_mulx_u32(&x50, &x51, x17, (arg2[0])); fiat_np521_addcarryx_u32(&x52, &x53, 0x0, x51, x48); fiat_np521_addcarryx_u32(&x54, &x55, x53, x49, x46); fiat_np521_addcarryx_u32(&x56, &x57, x55, x47, x44); fiat_np521_addcarryx_u32(&x58, &x59, x57, x45, x42); fiat_np521_addcarryx_u32(&x60, &x61, x59, x43, x40); fiat_np521_addcarryx_u32(&x62, &x63, x61, x41, x38); fiat_np521_addcarryx_u32(&x64, &x65, x63, x39, x36); fiat_np521_addcarryx_u32(&x66, &x67, x65, x37, x34); fiat_np521_addcarryx_u32(&x68, &x69, x67, x35, x32); fiat_np521_addcarryx_u32(&x70, &x71, x69, x33, x30); fiat_np521_addcarryx_u32(&x72, &x73, x71, x31, x28); fiat_np521_addcarryx_u32(&x74, &x75, x73, x29, x26); fiat_np521_addcarryx_u32(&x76, &x77, x75, x27, x24); fiat_np521_addcarryx_u32(&x78, &x79, x77, x25, x22); fiat_np521_addcarryx_u32(&x80, &x81, x79, x23, x20); fiat_np521_addcarryx_u32(&x82, &x83, x81, x21, x18); x84 = (x83 + x19); fiat_np521_mulx_u32(&x85, &x86, x50, UINT32_C(0x79a995c7)); fiat_np521_mulx_u32(&x87, &x88, x85, UINT16_C(0x1ff)); fiat_np521_mulx_u32(&x89, &x90, x85, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x91, &x92, x85, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x93, &x94, x85, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x95, &x96, x85, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x97, &x98, x85, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x99, &x100, x85, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x101, &x102, x85, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x103, &x104, x85, UINT32_C(0xfffffffa)); fiat_np521_mulx_u32(&x105, &x106, x85, UINT32_C(0x51868783)); fiat_np521_mulx_u32(&x107, &x108, x85, UINT32_C(0xbf2f966b)); fiat_np521_mulx_u32(&x109, &x110, x85, UINT32_C(0x7fcc0148)); fiat_np521_mulx_u32(&x111, &x112, x85, UINT32_C(0xf709a5d0)); fiat_np521_mulx_u32(&x113, &x114, x85, UINT32_C(0x3bb5c9b8)); fiat_np521_mulx_u32(&x115, &x116, x85, UINT32_C(0x899c47ae)); fiat_np521_mulx_u32(&x117, &x118, x85, UINT32_C(0xbb6fb71e)); fiat_np521_mulx_u32(&x119, &x120, x85, UINT32_C(0x91386409)); fiat_np521_addcarryx_u32(&x121, &x122, 0x0, x120, x117); fiat_np521_addcarryx_u32(&x123, &x124, x122, x118, x115); fiat_np521_addcarryx_u32(&x125, &x126, x124, x116, x113); fiat_np521_addcarryx_u32(&x127, &x128, x126, x114, x111); fiat_np521_addcarryx_u32(&x129, &x130, x128, x112, x109); fiat_np521_addcarryx_u32(&x131, &x132, x130, x110, x107); fiat_np521_addcarryx_u32(&x133, &x134, x132, x108, x105); fiat_np521_addcarryx_u32(&x135, &x136, x134, x106, x103); fiat_np521_addcarryx_u32(&x137, &x138, x136, x104, x101); fiat_np521_addcarryx_u32(&x139, &x140, x138, x102, x99); fiat_np521_addcarryx_u32(&x141, &x142, x140, x100, x97); fiat_np521_addcarryx_u32(&x143, &x144, x142, x98, x95); fiat_np521_addcarryx_u32(&x145, &x146, x144, x96, x93); fiat_np521_addcarryx_u32(&x147, &x148, x146, x94, x91); fiat_np521_addcarryx_u32(&x149, &x150, x148, x92, x89); fiat_np521_addcarryx_u32(&x151, &x152, x150, x90, x87); x153 = (x152 + x88); fiat_np521_addcarryx_u32(&x154, &x155, 0x0, x50, x119); fiat_np521_addcarryx_u32(&x156, &x157, x155, x52, x121); fiat_np521_addcarryx_u32(&x158, &x159, x157, x54, x123); fiat_np521_addcarryx_u32(&x160, &x161, x159, x56, x125); fiat_np521_addcarryx_u32(&x162, &x163, x161, x58, x127); fiat_np521_addcarryx_u32(&x164, &x165, x163, x60, x129); fiat_np521_addcarryx_u32(&x166, &x167, x165, x62, x131); fiat_np521_addcarryx_u32(&x168, &x169, x167, x64, x133); fiat_np521_addcarryx_u32(&x170, &x171, x169, x66, x135); fiat_np521_addcarryx_u32(&x172, &x173, x171, x68, x137); fiat_np521_addcarryx_u32(&x174, &x175, x173, x70, x139); fiat_np521_addcarryx_u32(&x176, &x177, x175, x72, x141); fiat_np521_addcarryx_u32(&x178, &x179, x177, x74, x143); fiat_np521_addcarryx_u32(&x180, &x181, x179, x76, x145); fiat_np521_addcarryx_u32(&x182, &x183, x181, x78, x147); fiat_np521_addcarryx_u32(&x184, &x185, x183, x80, x149); fiat_np521_addcarryx_u32(&x186, &x187, x185, x82, x151); fiat_np521_addcarryx_u32(&x188, &x189, x187, x84, x153); fiat_np521_mulx_u32(&x190, &x191, x1, (arg2[16])); fiat_np521_mulx_u32(&x192, &x193, x1, (arg2[15])); fiat_np521_mulx_u32(&x194, &x195, x1, (arg2[14])); fiat_np521_mulx_u32(&x196, &x197, x1, (arg2[13])); fiat_np521_mulx_u32(&x198, &x199, x1, (arg2[12])); fiat_np521_mulx_u32(&x200, &x201, x1, (arg2[11])); fiat_np521_mulx_u32(&x202, &x203, x1, (arg2[10])); fiat_np521_mulx_u32(&x204, &x205, x1, (arg2[9])); fiat_np521_mulx_u32(&x206, &x207, x1, (arg2[8])); fiat_np521_mulx_u32(&x208, &x209, x1, (arg2[7])); fiat_np521_mulx_u32(&x210, &x211, x1, (arg2[6])); fiat_np521_mulx_u32(&x212, &x213, x1, (arg2[5])); fiat_np521_mulx_u32(&x214, &x215, x1, (arg2[4])); fiat_np521_mulx_u32(&x216, &x217, x1, (arg2[3])); fiat_np521_mulx_u32(&x218, &x219, x1, (arg2[2])); fiat_np521_mulx_u32(&x220, &x221, x1, (arg2[1])); fiat_np521_mulx_u32(&x222, &x223, x1, (arg2[0])); fiat_np521_addcarryx_u32(&x224, &x225, 0x0, x223, x220); fiat_np521_addcarryx_u32(&x226, &x227, x225, x221, x218); fiat_np521_addcarryx_u32(&x228, &x229, x227, x219, x216); fiat_np521_addcarryx_u32(&x230, &x231, x229, x217, x214); fiat_np521_addcarryx_u32(&x232, &x233, x231, x215, x212); fiat_np521_addcarryx_u32(&x234, &x235, x233, x213, x210); fiat_np521_addcarryx_u32(&x236, &x237, x235, x211, x208); fiat_np521_addcarryx_u32(&x238, &x239, x237, x209, x206); fiat_np521_addcarryx_u32(&x240, &x241, x239, x207, x204); fiat_np521_addcarryx_u32(&x242, &x243, x241, x205, x202); fiat_np521_addcarryx_u32(&x244, &x245, x243, x203, x200); fiat_np521_addcarryx_u32(&x246, &x247, x245, x201, x198); fiat_np521_addcarryx_u32(&x248, &x249, x247, x199, x196); fiat_np521_addcarryx_u32(&x250, &x251, x249, x197, x194); fiat_np521_addcarryx_u32(&x252, &x253, x251, x195, x192); fiat_np521_addcarryx_u32(&x254, &x255, x253, x193, x190); x256 = (x255 + x191); fiat_np521_addcarryx_u32(&x257, &x258, 0x0, x156, x222); fiat_np521_addcarryx_u32(&x259, &x260, x258, x158, x224); fiat_np521_addcarryx_u32(&x261, &x262, x260, x160, x226); fiat_np521_addcarryx_u32(&x263, &x264, x262, x162, x228); fiat_np521_addcarryx_u32(&x265, &x266, x264, x164, x230); fiat_np521_addcarryx_u32(&x267, &x268, x266, x166, x232); fiat_np521_addcarryx_u32(&x269, &x270, x268, x168, x234); fiat_np521_addcarryx_u32(&x271, &x272, x270, x170, x236); fiat_np521_addcarryx_u32(&x273, &x274, x272, x172, x238); fiat_np521_addcarryx_u32(&x275, &x276, x274, x174, x240); fiat_np521_addcarryx_u32(&x277, &x278, x276, x176, x242); fiat_np521_addcarryx_u32(&x279, &x280, x278, x178, x244); fiat_np521_addcarryx_u32(&x281, &x282, x280, x180, x246); fiat_np521_addcarryx_u32(&x283, &x284, x282, x182, x248); fiat_np521_addcarryx_u32(&x285, &x286, x284, x184, x250); fiat_np521_addcarryx_u32(&x287, &x288, x286, x186, x252); fiat_np521_addcarryx_u32(&x289, &x290, x288, x188, x254); fiat_np521_addcarryx_u32(&x291, &x292, x290, x189, x256); fiat_np521_mulx_u32(&x293, &x294, x257, UINT32_C(0x79a995c7)); fiat_np521_mulx_u32(&x295, &x296, x293, UINT16_C(0x1ff)); fiat_np521_mulx_u32(&x297, &x298, x293, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x299, &x300, x293, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x301, &x302, x293, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x303, &x304, x293, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x305, &x306, x293, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x307, &x308, x293, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x309, &x310, x293, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x311, &x312, x293, UINT32_C(0xfffffffa)); fiat_np521_mulx_u32(&x313, &x314, x293, UINT32_C(0x51868783)); fiat_np521_mulx_u32(&x315, &x316, x293, UINT32_C(0xbf2f966b)); fiat_np521_mulx_u32(&x317, &x318, x293, UINT32_C(0x7fcc0148)); fiat_np521_mulx_u32(&x319, &x320, x293, UINT32_C(0xf709a5d0)); fiat_np521_mulx_u32(&x321, &x322, x293, UINT32_C(0x3bb5c9b8)); fiat_np521_mulx_u32(&x323, &x324, x293, UINT32_C(0x899c47ae)); fiat_np521_mulx_u32(&x325, &x326, x293, UINT32_C(0xbb6fb71e)); fiat_np521_mulx_u32(&x327, &x328, x293, UINT32_C(0x91386409)); fiat_np521_addcarryx_u32(&x329, &x330, 0x0, x328, x325); fiat_np521_addcarryx_u32(&x331, &x332, x330, x326, x323); fiat_np521_addcarryx_u32(&x333, &x334, x332, x324, x321); fiat_np521_addcarryx_u32(&x335, &x336, x334, x322, x319); fiat_np521_addcarryx_u32(&x337, &x338, x336, x320, x317); fiat_np521_addcarryx_u32(&x339, &x340, x338, x318, x315); fiat_np521_addcarryx_u32(&x341, &x342, x340, x316, x313); fiat_np521_addcarryx_u32(&x343, &x344, x342, x314, x311); fiat_np521_addcarryx_u32(&x345, &x346, x344, x312, x309); fiat_np521_addcarryx_u32(&x347, &x348, x346, x310, x307); fiat_np521_addcarryx_u32(&x349, &x350, x348, x308, x305); fiat_np521_addcarryx_u32(&x351, &x352, x350, x306, x303); fiat_np521_addcarryx_u32(&x353, &x354, x352, x304, x301); fiat_np521_addcarryx_u32(&x355, &x356, x354, x302, x299); fiat_np521_addcarryx_u32(&x357, &x358, x356, x300, x297); fiat_np521_addcarryx_u32(&x359, &x360, x358, x298, x295); x361 = (x360 + x296); fiat_np521_addcarryx_u32(&x362, &x363, 0x0, x257, x327); fiat_np521_addcarryx_u32(&x364, &x365, x363, x259, x329); fiat_np521_addcarryx_u32(&x366, &x367, x365, x261, x331); fiat_np521_addcarryx_u32(&x368, &x369, x367, x263, x333); fiat_np521_addcarryx_u32(&x370, &x371, x369, x265, x335); fiat_np521_addcarryx_u32(&x372, &x373, x371, x267, x337); fiat_np521_addcarryx_u32(&x374, &x375, x373, x269, x339); fiat_np521_addcarryx_u32(&x376, &x377, x375, x271, x341); fiat_np521_addcarryx_u32(&x378, &x379, x377, x273, x343); fiat_np521_addcarryx_u32(&x380, &x381, x379, x275, x345); fiat_np521_addcarryx_u32(&x382, &x383, x381, x277, x347); fiat_np521_addcarryx_u32(&x384, &x385, x383, x279, x349); fiat_np521_addcarryx_u32(&x386, &x387, x385, x281, x351); fiat_np521_addcarryx_u32(&x388, &x389, x387, x283, x353); fiat_np521_addcarryx_u32(&x390, &x391, x389, x285, x355); fiat_np521_addcarryx_u32(&x392, &x393, x391, x287, x357); fiat_np521_addcarryx_u32(&x394, &x395, x393, x289, x359); fiat_np521_addcarryx_u32(&x396, &x397, x395, x291, x361); x398 = ((uint32_t)x397 + x292); fiat_np521_mulx_u32(&x399, &x400, x2, (arg2[16])); fiat_np521_mulx_u32(&x401, &x402, x2, (arg2[15])); fiat_np521_mulx_u32(&x403, &x404, x2, (arg2[14])); fiat_np521_mulx_u32(&x405, &x406, x2, (arg2[13])); fiat_np521_mulx_u32(&x407, &x408, x2, (arg2[12])); fiat_np521_mulx_u32(&x409, &x410, x2, (arg2[11])); fiat_np521_mulx_u32(&x411, &x412, x2, (arg2[10])); fiat_np521_mulx_u32(&x413, &x414, x2, (arg2[9])); fiat_np521_mulx_u32(&x415, &x416, x2, (arg2[8])); fiat_np521_mulx_u32(&x417, &x418, x2, (arg2[7])); fiat_np521_mulx_u32(&x419, &x420, x2, (arg2[6])); fiat_np521_mulx_u32(&x421, &x422, x2, (arg2[5])); fiat_np521_mulx_u32(&x423, &x424, x2, (arg2[4])); fiat_np521_mulx_u32(&x425, &x426, x2, (arg2[3])); fiat_np521_mulx_u32(&x427, &x428, x2, (arg2[2])); fiat_np521_mulx_u32(&x429, &x430, x2, (arg2[1])); fiat_np521_mulx_u32(&x431, &x432, x2, (arg2[0])); fiat_np521_addcarryx_u32(&x433, &x434, 0x0, x432, x429); fiat_np521_addcarryx_u32(&x435, &x436, x434, x430, x427); fiat_np521_addcarryx_u32(&x437, &x438, x436, x428, x425); fiat_np521_addcarryx_u32(&x439, &x440, x438, x426, x423); fiat_np521_addcarryx_u32(&x441, &x442, x440, x424, x421); fiat_np521_addcarryx_u32(&x443, &x444, x442, x422, x419); fiat_np521_addcarryx_u32(&x445, &x446, x444, x420, x417); fiat_np521_addcarryx_u32(&x447, &x448, x446, x418, x415); fiat_np521_addcarryx_u32(&x449, &x450, x448, x416, x413); fiat_np521_addcarryx_u32(&x451, &x452, x450, x414, x411); fiat_np521_addcarryx_u32(&x453, &x454, x452, x412, x409); fiat_np521_addcarryx_u32(&x455, &x456, x454, x410, x407); fiat_np521_addcarryx_u32(&x457, &x458, x456, x408, x405); fiat_np521_addcarryx_u32(&x459, &x460, x458, x406, x403); fiat_np521_addcarryx_u32(&x461, &x462, x460, x404, x401); fiat_np521_addcarryx_u32(&x463, &x464, x462, x402, x399); x465 = (x464 + x400); fiat_np521_addcarryx_u32(&x466, &x467, 0x0, x364, x431); fiat_np521_addcarryx_u32(&x468, &x469, x467, x366, x433); fiat_np521_addcarryx_u32(&x470, &x471, x469, x368, x435); fiat_np521_addcarryx_u32(&x472, &x473, x471, x370, x437); fiat_np521_addcarryx_u32(&x474, &x475, x473, x372, x439); fiat_np521_addcarryx_u32(&x476, &x477, x475, x374, x441); fiat_np521_addcarryx_u32(&x478, &x479, x477, x376, x443); fiat_np521_addcarryx_u32(&x480, &x481, x479, x378, x445); fiat_np521_addcarryx_u32(&x482, &x483, x481, x380, x447); fiat_np521_addcarryx_u32(&x484, &x485, x483, x382, x449); fiat_np521_addcarryx_u32(&x486, &x487, x485, x384, x451); fiat_np521_addcarryx_u32(&x488, &x489, x487, x386, x453); fiat_np521_addcarryx_u32(&x490, &x491, x489, x388, x455); fiat_np521_addcarryx_u32(&x492, &x493, x491, x390, x457); fiat_np521_addcarryx_u32(&x494, &x495, x493, x392, x459); fiat_np521_addcarryx_u32(&x496, &x497, x495, x394, x461); fiat_np521_addcarryx_u32(&x498, &x499, x497, x396, x463); fiat_np521_addcarryx_u32(&x500, &x501, x499, x398, x465); fiat_np521_mulx_u32(&x502, &x503, x466, UINT32_C(0x79a995c7)); fiat_np521_mulx_u32(&x504, &x505, x502, UINT16_C(0x1ff)); fiat_np521_mulx_u32(&x506, &x507, x502, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x508, &x509, x502, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x510, &x511, x502, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x512, &x513, x502, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x514, &x515, x502, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x516, &x517, x502, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x518, &x519, x502, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x520, &x521, x502, UINT32_C(0xfffffffa)); fiat_np521_mulx_u32(&x522, &x523, x502, UINT32_C(0x51868783)); fiat_np521_mulx_u32(&x524, &x525, x502, UINT32_C(0xbf2f966b)); fiat_np521_mulx_u32(&x526, &x527, x502, UINT32_C(0x7fcc0148)); fiat_np521_mulx_u32(&x528, &x529, x502, UINT32_C(0xf709a5d0)); fiat_np521_mulx_u32(&x530, &x531, x502, UINT32_C(0x3bb5c9b8)); fiat_np521_mulx_u32(&x532, &x533, x502, UINT32_C(0x899c47ae)); fiat_np521_mulx_u32(&x534, &x535, x502, UINT32_C(0xbb6fb71e)); fiat_np521_mulx_u32(&x536, &x537, x502, UINT32_C(0x91386409)); fiat_np521_addcarryx_u32(&x538, &x539, 0x0, x537, x534); fiat_np521_addcarryx_u32(&x540, &x541, x539, x535, x532); fiat_np521_addcarryx_u32(&x542, &x543, x541, x533, x530); fiat_np521_addcarryx_u32(&x544, &x545, x543, x531, x528); fiat_np521_addcarryx_u32(&x546, &x547, x545, x529, x526); fiat_np521_addcarryx_u32(&x548, &x549, x547, x527, x524); fiat_np521_addcarryx_u32(&x550, &x551, x549, x525, x522); fiat_np521_addcarryx_u32(&x552, &x553, x551, x523, x520); fiat_np521_addcarryx_u32(&x554, &x555, x553, x521, x518); fiat_np521_addcarryx_u32(&x556, &x557, x555, x519, x516); fiat_np521_addcarryx_u32(&x558, &x559, x557, x517, x514); fiat_np521_addcarryx_u32(&x560, &x561, x559, x515, x512); fiat_np521_addcarryx_u32(&x562, &x563, x561, x513, x510); fiat_np521_addcarryx_u32(&x564, &x565, x563, x511, x508); fiat_np521_addcarryx_u32(&x566, &x567, x565, x509, x506); fiat_np521_addcarryx_u32(&x568, &x569, x567, x507, x504); x570 = (x569 + x505); fiat_np521_addcarryx_u32(&x571, &x572, 0x0, x466, x536); fiat_np521_addcarryx_u32(&x573, &x574, x572, x468, x538); fiat_np521_addcarryx_u32(&x575, &x576, x574, x470, x540); fiat_np521_addcarryx_u32(&x577, &x578, x576, x472, x542); fiat_np521_addcarryx_u32(&x579, &x580, x578, x474, x544); fiat_np521_addcarryx_u32(&x581, &x582, x580, x476, x546); fiat_np521_addcarryx_u32(&x583, &x584, x582, x478, x548); fiat_np521_addcarryx_u32(&x585, &x586, x584, x480, x550); fiat_np521_addcarryx_u32(&x587, &x588, x586, x482, x552); fiat_np521_addcarryx_u32(&x589, &x590, x588, x484, x554); fiat_np521_addcarryx_u32(&x591, &x592, x590, x486, x556); fiat_np521_addcarryx_u32(&x593, &x594, x592, x488, x558); fiat_np521_addcarryx_u32(&x595, &x596, x594, x490, x560); fiat_np521_addcarryx_u32(&x597, &x598, x596, x492, x562); fiat_np521_addcarryx_u32(&x599, &x600, x598, x494, x564); fiat_np521_addcarryx_u32(&x601, &x602, x600, x496, x566); fiat_np521_addcarryx_u32(&x603, &x604, x602, x498, x568); fiat_np521_addcarryx_u32(&x605, &x606, x604, x500, x570); x607 = ((uint32_t)x606 + x501); fiat_np521_mulx_u32(&x608, &x609, x3, (arg2[16])); fiat_np521_mulx_u32(&x610, &x611, x3, (arg2[15])); fiat_np521_mulx_u32(&x612, &x613, x3, (arg2[14])); fiat_np521_mulx_u32(&x614, &x615, x3, (arg2[13])); fiat_np521_mulx_u32(&x616, &x617, x3, (arg2[12])); fiat_np521_mulx_u32(&x618, &x619, x3, (arg2[11])); fiat_np521_mulx_u32(&x620, &x621, x3, (arg2[10])); fiat_np521_mulx_u32(&x622, &x623, x3, (arg2[9])); fiat_np521_mulx_u32(&x624, &x625, x3, (arg2[8])); fiat_np521_mulx_u32(&x626, &x627, x3, (arg2[7])); fiat_np521_mulx_u32(&x628, &x629, x3, (arg2[6])); fiat_np521_mulx_u32(&x630, &x631, x3, (arg2[5])); fiat_np521_mulx_u32(&x632, &x633, x3, (arg2[4])); fiat_np521_mulx_u32(&x634, &x635, x3, (arg2[3])); fiat_np521_mulx_u32(&x636, &x637, x3, (arg2[2])); fiat_np521_mulx_u32(&x638, &x639, x3, (arg2[1])); fiat_np521_mulx_u32(&x640, &x641, x3, (arg2[0])); fiat_np521_addcarryx_u32(&x642, &x643, 0x0, x641, x638); fiat_np521_addcarryx_u32(&x644, &x645, x643, x639, x636); fiat_np521_addcarryx_u32(&x646, &x647, x645, x637, x634); fiat_np521_addcarryx_u32(&x648, &x649, x647, x635, x632); fiat_np521_addcarryx_u32(&x650, &x651, x649, x633, x630); fiat_np521_addcarryx_u32(&x652, &x653, x651, x631, x628); fiat_np521_addcarryx_u32(&x654, &x655, x653, x629, x626); fiat_np521_addcarryx_u32(&x656, &x657, x655, x627, x624); fiat_np521_addcarryx_u32(&x658, &x659, x657, x625, x622); fiat_np521_addcarryx_u32(&x660, &x661, x659, x623, x620); fiat_np521_addcarryx_u32(&x662, &x663, x661, x621, x618); fiat_np521_addcarryx_u32(&x664, &x665, x663, x619, x616); fiat_np521_addcarryx_u32(&x666, &x667, x665, x617, x614); fiat_np521_addcarryx_u32(&x668, &x669, x667, x615, x612); fiat_np521_addcarryx_u32(&x670, &x671, x669, x613, x610); fiat_np521_addcarryx_u32(&x672, &x673, x671, x611, x608); x674 = (x673 + x609); fiat_np521_addcarryx_u32(&x675, &x676, 0x0, x573, x640); fiat_np521_addcarryx_u32(&x677, &x678, x676, x575, x642); fiat_np521_addcarryx_u32(&x679, &x680, x678, x577, x644); fiat_np521_addcarryx_u32(&x681, &x682, x680, x579, x646); fiat_np521_addcarryx_u32(&x683, &x684, x682, x581, x648); fiat_np521_addcarryx_u32(&x685, &x686, x684, x583, x650); fiat_np521_addcarryx_u32(&x687, &x688, x686, x585, x652); fiat_np521_addcarryx_u32(&x689, &x690, x688, x587, x654); fiat_np521_addcarryx_u32(&x691, &x692, x690, x589, x656); fiat_np521_addcarryx_u32(&x693, &x694, x692, x591, x658); fiat_np521_addcarryx_u32(&x695, &x696, x694, x593, x660); fiat_np521_addcarryx_u32(&x697, &x698, x696, x595, x662); fiat_np521_addcarryx_u32(&x699, &x700, x698, x597, x664); fiat_np521_addcarryx_u32(&x701, &x702, x700, x599, x666); fiat_np521_addcarryx_u32(&x703, &x704, x702, x601, x668); fiat_np521_addcarryx_u32(&x705, &x706, x704, x603, x670); fiat_np521_addcarryx_u32(&x707, &x708, x706, x605, x672); fiat_np521_addcarryx_u32(&x709, &x710, x708, x607, x674); fiat_np521_mulx_u32(&x711, &x712, x675, UINT32_C(0x79a995c7)); fiat_np521_mulx_u32(&x713, &x714, x711, UINT16_C(0x1ff)); fiat_np521_mulx_u32(&x715, &x716, x711, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x717, &x718, x711, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x719, &x720, x711, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x721, &x722, x711, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x723, &x724, x711, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x725, &x726, x711, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x727, &x728, x711, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x729, &x730, x711, UINT32_C(0xfffffffa)); fiat_np521_mulx_u32(&x731, &x732, x711, UINT32_C(0x51868783)); fiat_np521_mulx_u32(&x733, &x734, x711, UINT32_C(0xbf2f966b)); fiat_np521_mulx_u32(&x735, &x736, x711, UINT32_C(0x7fcc0148)); fiat_np521_mulx_u32(&x737, &x738, x711, UINT32_C(0xf709a5d0)); fiat_np521_mulx_u32(&x739, &x740, x711, UINT32_C(0x3bb5c9b8)); fiat_np521_mulx_u32(&x741, &x742, x711, UINT32_C(0x899c47ae)); fiat_np521_mulx_u32(&x743, &x744, x711, UINT32_C(0xbb6fb71e)); fiat_np521_mulx_u32(&x745, &x746, x711, UINT32_C(0x91386409)); fiat_np521_addcarryx_u32(&x747, &x748, 0x0, x746, x743); fiat_np521_addcarryx_u32(&x749, &x750, x748, x744, x741); fiat_np521_addcarryx_u32(&x751, &x752, x750, x742, x739); fiat_np521_addcarryx_u32(&x753, &x754, x752, x740, x737); fiat_np521_addcarryx_u32(&x755, &x756, x754, x738, x735); fiat_np521_addcarryx_u32(&x757, &x758, x756, x736, x733); fiat_np521_addcarryx_u32(&x759, &x760, x758, x734, x731); fiat_np521_addcarryx_u32(&x761, &x762, x760, x732, x729); fiat_np521_addcarryx_u32(&x763, &x764, x762, x730, x727); fiat_np521_addcarryx_u32(&x765, &x766, x764, x728, x725); fiat_np521_addcarryx_u32(&x767, &x768, x766, x726, x723); fiat_np521_addcarryx_u32(&x769, &x770, x768, x724, x721); fiat_np521_addcarryx_u32(&x771, &x772, x770, x722, x719); fiat_np521_addcarryx_u32(&x773, &x774, x772, x720, x717); fiat_np521_addcarryx_u32(&x775, &x776, x774, x718, x715); fiat_np521_addcarryx_u32(&x777, &x778, x776, x716, x713); x779 = (x778 + x714); fiat_np521_addcarryx_u32(&x780, &x781, 0x0, x675, x745); fiat_np521_addcarryx_u32(&x782, &x783, x781, x677, x747); fiat_np521_addcarryx_u32(&x784, &x785, x783, x679, x749); fiat_np521_addcarryx_u32(&x786, &x787, x785, x681, x751); fiat_np521_addcarryx_u32(&x788, &x789, x787, x683, x753); fiat_np521_addcarryx_u32(&x790, &x791, x789, x685, x755); fiat_np521_addcarryx_u32(&x792, &x793, x791, x687, x757); fiat_np521_addcarryx_u32(&x794, &x795, x793, x689, x759); fiat_np521_addcarryx_u32(&x796, &x797, x795, x691, x761); fiat_np521_addcarryx_u32(&x798, &x799, x797, x693, x763); fiat_np521_addcarryx_u32(&x800, &x801, x799, x695, x765); fiat_np521_addcarryx_u32(&x802, &x803, x801, x697, x767); fiat_np521_addcarryx_u32(&x804, &x805, x803, x699, x769); fiat_np521_addcarryx_u32(&x806, &x807, x805, x701, x771); fiat_np521_addcarryx_u32(&x808, &x809, x807, x703, x773); fiat_np521_addcarryx_u32(&x810, &x811, x809, x705, x775); fiat_np521_addcarryx_u32(&x812, &x813, x811, x707, x777); fiat_np521_addcarryx_u32(&x814, &x815, x813, x709, x779); x816 = ((uint32_t)x815 + x710); fiat_np521_mulx_u32(&x817, &x818, x4, (arg2[16])); fiat_np521_mulx_u32(&x819, &x820, x4, (arg2[15])); fiat_np521_mulx_u32(&x821, &x822, x4, (arg2[14])); fiat_np521_mulx_u32(&x823, &x824, x4, (arg2[13])); fiat_np521_mulx_u32(&x825, &x826, x4, (arg2[12])); fiat_np521_mulx_u32(&x827, &x828, x4, (arg2[11])); fiat_np521_mulx_u32(&x829, &x830, x4, (arg2[10])); fiat_np521_mulx_u32(&x831, &x832, x4, (arg2[9])); fiat_np521_mulx_u32(&x833, &x834, x4, (arg2[8])); fiat_np521_mulx_u32(&x835, &x836, x4, (arg2[7])); fiat_np521_mulx_u32(&x837, &x838, x4, (arg2[6])); fiat_np521_mulx_u32(&x839, &x840, x4, (arg2[5])); fiat_np521_mulx_u32(&x841, &x842, x4, (arg2[4])); fiat_np521_mulx_u32(&x843, &x844, x4, (arg2[3])); fiat_np521_mulx_u32(&x845, &x846, x4, (arg2[2])); fiat_np521_mulx_u32(&x847, &x848, x4, (arg2[1])); fiat_np521_mulx_u32(&x849, &x850, x4, (arg2[0])); fiat_np521_addcarryx_u32(&x851, &x852, 0x0, x850, x847); fiat_np521_addcarryx_u32(&x853, &x854, x852, x848, x845); fiat_np521_addcarryx_u32(&x855, &x856, x854, x846, x843); fiat_np521_addcarryx_u32(&x857, &x858, x856, x844, x841); fiat_np521_addcarryx_u32(&x859, &x860, x858, x842, x839); fiat_np521_addcarryx_u32(&x861, &x862, x860, x840, x837); fiat_np521_addcarryx_u32(&x863, &x864, x862, x838, x835); fiat_np521_addcarryx_u32(&x865, &x866, x864, x836, x833); fiat_np521_addcarryx_u32(&x867, &x868, x866, x834, x831); fiat_np521_addcarryx_u32(&x869, &x870, x868, x832, x829); fiat_np521_addcarryx_u32(&x871, &x872, x870, x830, x827); fiat_np521_addcarryx_u32(&x873, &x874, x872, x828, x825); fiat_np521_addcarryx_u32(&x875, &x876, x874, x826, x823); fiat_np521_addcarryx_u32(&x877, &x878, x876, x824, x821); fiat_np521_addcarryx_u32(&x879, &x880, x878, x822, x819); fiat_np521_addcarryx_u32(&x881, &x882, x880, x820, x817); x883 = (x882 + x818); fiat_np521_addcarryx_u32(&x884, &x885, 0x0, x782, x849); fiat_np521_addcarryx_u32(&x886, &x887, x885, x784, x851); fiat_np521_addcarryx_u32(&x888, &x889, x887, x786, x853); fiat_np521_addcarryx_u32(&x890, &x891, x889, x788, x855); fiat_np521_addcarryx_u32(&x892, &x893, x891, x790, x857); fiat_np521_addcarryx_u32(&x894, &x895, x893, x792, x859); fiat_np521_addcarryx_u32(&x896, &x897, x895, x794, x861); fiat_np521_addcarryx_u32(&x898, &x899, x897, x796, x863); fiat_np521_addcarryx_u32(&x900, &x901, x899, x798, x865); fiat_np521_addcarryx_u32(&x902, &x903, x901, x800, x867); fiat_np521_addcarryx_u32(&x904, &x905, x903, x802, x869); fiat_np521_addcarryx_u32(&x906, &x907, x905, x804, x871); fiat_np521_addcarryx_u32(&x908, &x909, x907, x806, x873); fiat_np521_addcarryx_u32(&x910, &x911, x909, x808, x875); fiat_np521_addcarryx_u32(&x912, &x913, x911, x810, x877); fiat_np521_addcarryx_u32(&x914, &x915, x913, x812, x879); fiat_np521_addcarryx_u32(&x916, &x917, x915, x814, x881); fiat_np521_addcarryx_u32(&x918, &x919, x917, x816, x883); fiat_np521_mulx_u32(&x920, &x921, x884, UINT32_C(0x79a995c7)); fiat_np521_mulx_u32(&x922, &x923, x920, UINT16_C(0x1ff)); fiat_np521_mulx_u32(&x924, &x925, x920, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x926, &x927, x920, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x928, &x929, x920, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x930, &x931, x920, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x932, &x933, x920, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x934, &x935, x920, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x936, &x937, x920, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x938, &x939, x920, UINT32_C(0xfffffffa)); fiat_np521_mulx_u32(&x940, &x941, x920, UINT32_C(0x51868783)); fiat_np521_mulx_u32(&x942, &x943, x920, UINT32_C(0xbf2f966b)); fiat_np521_mulx_u32(&x944, &x945, x920, UINT32_C(0x7fcc0148)); fiat_np521_mulx_u32(&x946, &x947, x920, UINT32_C(0xf709a5d0)); fiat_np521_mulx_u32(&x948, &x949, x920, UINT32_C(0x3bb5c9b8)); fiat_np521_mulx_u32(&x950, &x951, x920, UINT32_C(0x899c47ae)); fiat_np521_mulx_u32(&x952, &x953, x920, UINT32_C(0xbb6fb71e)); fiat_np521_mulx_u32(&x954, &x955, x920, UINT32_C(0x91386409)); fiat_np521_addcarryx_u32(&x956, &x957, 0x0, x955, x952); fiat_np521_addcarryx_u32(&x958, &x959, x957, x953, x950); fiat_np521_addcarryx_u32(&x960, &x961, x959, x951, x948); fiat_np521_addcarryx_u32(&x962, &x963, x961, x949, x946); fiat_np521_addcarryx_u32(&x964, &x965, x963, x947, x944); fiat_np521_addcarryx_u32(&x966, &x967, x965, x945, x942); fiat_np521_addcarryx_u32(&x968, &x969, x967, x943, x940); fiat_np521_addcarryx_u32(&x970, &x971, x969, x941, x938); fiat_np521_addcarryx_u32(&x972, &x973, x971, x939, x936); fiat_np521_addcarryx_u32(&x974, &x975, x973, x937, x934); fiat_np521_addcarryx_u32(&x976, &x977, x975, x935, x932); fiat_np521_addcarryx_u32(&x978, &x979, x977, x933, x930); fiat_np521_addcarryx_u32(&x980, &x981, x979, x931, x928); fiat_np521_addcarryx_u32(&x982, &x983, x981, x929, x926); fiat_np521_addcarryx_u32(&x984, &x985, x983, x927, x924); fiat_np521_addcarryx_u32(&x986, &x987, x985, x925, x922); x988 = (x987 + x923); fiat_np521_addcarryx_u32(&x989, &x990, 0x0, x884, x954); fiat_np521_addcarryx_u32(&x991, &x992, x990, x886, x956); fiat_np521_addcarryx_u32(&x993, &x994, x992, x888, x958); fiat_np521_addcarryx_u32(&x995, &x996, x994, x890, x960); fiat_np521_addcarryx_u32(&x997, &x998, x996, x892, x962); fiat_np521_addcarryx_u32(&x999, &x1000, x998, x894, x964); fiat_np521_addcarryx_u32(&x1001, &x1002, x1000, x896, x966); fiat_np521_addcarryx_u32(&x1003, &x1004, x1002, x898, x968); fiat_np521_addcarryx_u32(&x1005, &x1006, x1004, x900, x970); fiat_np521_addcarryx_u32(&x1007, &x1008, x1006, x902, x972); fiat_np521_addcarryx_u32(&x1009, &x1010, x1008, x904, x974); fiat_np521_addcarryx_u32(&x1011, &x1012, x1010, x906, x976); fiat_np521_addcarryx_u32(&x1013, &x1014, x1012, x908, x978); fiat_np521_addcarryx_u32(&x1015, &x1016, x1014, x910, x980); fiat_np521_addcarryx_u32(&x1017, &x1018, x1016, x912, x982); fiat_np521_addcarryx_u32(&x1019, &x1020, x1018, x914, x984); fiat_np521_addcarryx_u32(&x1021, &x1022, x1020, x916, x986); fiat_np521_addcarryx_u32(&x1023, &x1024, x1022, x918, x988); x1025 = ((uint32_t)x1024 + x919); fiat_np521_mulx_u32(&x1026, &x1027, x5, (arg2[16])); fiat_np521_mulx_u32(&x1028, &x1029, x5, (arg2[15])); fiat_np521_mulx_u32(&x1030, &x1031, x5, (arg2[14])); fiat_np521_mulx_u32(&x1032, &x1033, x5, (arg2[13])); fiat_np521_mulx_u32(&x1034, &x1035, x5, (arg2[12])); fiat_np521_mulx_u32(&x1036, &x1037, x5, (arg2[11])); fiat_np521_mulx_u32(&x1038, &x1039, x5, (arg2[10])); fiat_np521_mulx_u32(&x1040, &x1041, x5, (arg2[9])); fiat_np521_mulx_u32(&x1042, &x1043, x5, (arg2[8])); fiat_np521_mulx_u32(&x1044, &x1045, x5, (arg2[7])); fiat_np521_mulx_u32(&x1046, &x1047, x5, (arg2[6])); fiat_np521_mulx_u32(&x1048, &x1049, x5, (arg2[5])); fiat_np521_mulx_u32(&x1050, &x1051, x5, (arg2[4])); fiat_np521_mulx_u32(&x1052, &x1053, x5, (arg2[3])); fiat_np521_mulx_u32(&x1054, &x1055, x5, (arg2[2])); fiat_np521_mulx_u32(&x1056, &x1057, x5, (arg2[1])); fiat_np521_mulx_u32(&x1058, &x1059, x5, (arg2[0])); fiat_np521_addcarryx_u32(&x1060, &x1061, 0x0, x1059, x1056); fiat_np521_addcarryx_u32(&x1062, &x1063, x1061, x1057, x1054); fiat_np521_addcarryx_u32(&x1064, &x1065, x1063, x1055, x1052); fiat_np521_addcarryx_u32(&x1066, &x1067, x1065, x1053, x1050); fiat_np521_addcarryx_u32(&x1068, &x1069, x1067, x1051, x1048); fiat_np521_addcarryx_u32(&x1070, &x1071, x1069, x1049, x1046); fiat_np521_addcarryx_u32(&x1072, &x1073, x1071, x1047, x1044); fiat_np521_addcarryx_u32(&x1074, &x1075, x1073, x1045, x1042); fiat_np521_addcarryx_u32(&x1076, &x1077, x1075, x1043, x1040); fiat_np521_addcarryx_u32(&x1078, &x1079, x1077, x1041, x1038); fiat_np521_addcarryx_u32(&x1080, &x1081, x1079, x1039, x1036); fiat_np521_addcarryx_u32(&x1082, &x1083, x1081, x1037, x1034); fiat_np521_addcarryx_u32(&x1084, &x1085, x1083, x1035, x1032); fiat_np521_addcarryx_u32(&x1086, &x1087, x1085, x1033, x1030); fiat_np521_addcarryx_u32(&x1088, &x1089, x1087, x1031, x1028); fiat_np521_addcarryx_u32(&x1090, &x1091, x1089, x1029, x1026); x1092 = (x1091 + x1027); fiat_np521_addcarryx_u32(&x1093, &x1094, 0x0, x991, x1058); fiat_np521_addcarryx_u32(&x1095, &x1096, x1094, x993, x1060); fiat_np521_addcarryx_u32(&x1097, &x1098, x1096, x995, x1062); fiat_np521_addcarryx_u32(&x1099, &x1100, x1098, x997, x1064); fiat_np521_addcarryx_u32(&x1101, &x1102, x1100, x999, x1066); fiat_np521_addcarryx_u32(&x1103, &x1104, x1102, x1001, x1068); fiat_np521_addcarryx_u32(&x1105, &x1106, x1104, x1003, x1070); fiat_np521_addcarryx_u32(&x1107, &x1108, x1106, x1005, x1072); fiat_np521_addcarryx_u32(&x1109, &x1110, x1108, x1007, x1074); fiat_np521_addcarryx_u32(&x1111, &x1112, x1110, x1009, x1076); fiat_np521_addcarryx_u32(&x1113, &x1114, x1112, x1011, x1078); fiat_np521_addcarryx_u32(&x1115, &x1116, x1114, x1013, x1080); fiat_np521_addcarryx_u32(&x1117, &x1118, x1116, x1015, x1082); fiat_np521_addcarryx_u32(&x1119, &x1120, x1118, x1017, x1084); fiat_np521_addcarryx_u32(&x1121, &x1122, x1120, x1019, x1086); fiat_np521_addcarryx_u32(&x1123, &x1124, x1122, x1021, x1088); fiat_np521_addcarryx_u32(&x1125, &x1126, x1124, x1023, x1090); fiat_np521_addcarryx_u32(&x1127, &x1128, x1126, x1025, x1092); fiat_np521_mulx_u32(&x1129, &x1130, x1093, UINT32_C(0x79a995c7)); fiat_np521_mulx_u32(&x1131, &x1132, x1129, UINT16_C(0x1ff)); fiat_np521_mulx_u32(&x1133, &x1134, x1129, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x1135, &x1136, x1129, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x1137, &x1138, x1129, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x1139, &x1140, x1129, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x1141, &x1142, x1129, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x1143, &x1144, x1129, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x1145, &x1146, x1129, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x1147, &x1148, x1129, UINT32_C(0xfffffffa)); fiat_np521_mulx_u32(&x1149, &x1150, x1129, UINT32_C(0x51868783)); fiat_np521_mulx_u32(&x1151, &x1152, x1129, UINT32_C(0xbf2f966b)); fiat_np521_mulx_u32(&x1153, &x1154, x1129, UINT32_C(0x7fcc0148)); fiat_np521_mulx_u32(&x1155, &x1156, x1129, UINT32_C(0xf709a5d0)); fiat_np521_mulx_u32(&x1157, &x1158, x1129, UINT32_C(0x3bb5c9b8)); fiat_np521_mulx_u32(&x1159, &x1160, x1129, UINT32_C(0x899c47ae)); fiat_np521_mulx_u32(&x1161, &x1162, x1129, UINT32_C(0xbb6fb71e)); fiat_np521_mulx_u32(&x1163, &x1164, x1129, UINT32_C(0x91386409)); fiat_np521_addcarryx_u32(&x1165, &x1166, 0x0, x1164, x1161); fiat_np521_addcarryx_u32(&x1167, &x1168, x1166, x1162, x1159); fiat_np521_addcarryx_u32(&x1169, &x1170, x1168, x1160, x1157); fiat_np521_addcarryx_u32(&x1171, &x1172, x1170, x1158, x1155); fiat_np521_addcarryx_u32(&x1173, &x1174, x1172, x1156, x1153); fiat_np521_addcarryx_u32(&x1175, &x1176, x1174, x1154, x1151); fiat_np521_addcarryx_u32(&x1177, &x1178, x1176, x1152, x1149); fiat_np521_addcarryx_u32(&x1179, &x1180, x1178, x1150, x1147); fiat_np521_addcarryx_u32(&x1181, &x1182, x1180, x1148, x1145); fiat_np521_addcarryx_u32(&x1183, &x1184, x1182, x1146, x1143); fiat_np521_addcarryx_u32(&x1185, &x1186, x1184, x1144, x1141); fiat_np521_addcarryx_u32(&x1187, &x1188, x1186, x1142, x1139); fiat_np521_addcarryx_u32(&x1189, &x1190, x1188, x1140, x1137); fiat_np521_addcarryx_u32(&x1191, &x1192, x1190, x1138, x1135); fiat_np521_addcarryx_u32(&x1193, &x1194, x1192, x1136, x1133); fiat_np521_addcarryx_u32(&x1195, &x1196, x1194, x1134, x1131); x1197 = (x1196 + x1132); fiat_np521_addcarryx_u32(&x1198, &x1199, 0x0, x1093, x1163); fiat_np521_addcarryx_u32(&x1200, &x1201, x1199, x1095, x1165); fiat_np521_addcarryx_u32(&x1202, &x1203, x1201, x1097, x1167); fiat_np521_addcarryx_u32(&x1204, &x1205, x1203, x1099, x1169); fiat_np521_addcarryx_u32(&x1206, &x1207, x1205, x1101, x1171); fiat_np521_addcarryx_u32(&x1208, &x1209, x1207, x1103, x1173); fiat_np521_addcarryx_u32(&x1210, &x1211, x1209, x1105, x1175); fiat_np521_addcarryx_u32(&x1212, &x1213, x1211, x1107, x1177); fiat_np521_addcarryx_u32(&x1214, &x1215, x1213, x1109, x1179); fiat_np521_addcarryx_u32(&x1216, &x1217, x1215, x1111, x1181); fiat_np521_addcarryx_u32(&x1218, &x1219, x1217, x1113, x1183); fiat_np521_addcarryx_u32(&x1220, &x1221, x1219, x1115, x1185); fiat_np521_addcarryx_u32(&x1222, &x1223, x1221, x1117, x1187); fiat_np521_addcarryx_u32(&x1224, &x1225, x1223, x1119, x1189); fiat_np521_addcarryx_u32(&x1226, &x1227, x1225, x1121, x1191); fiat_np521_addcarryx_u32(&x1228, &x1229, x1227, x1123, x1193); fiat_np521_addcarryx_u32(&x1230, &x1231, x1229, x1125, x1195); fiat_np521_addcarryx_u32(&x1232, &x1233, x1231, x1127, x1197); x1234 = ((uint32_t)x1233 + x1128); fiat_np521_mulx_u32(&x1235, &x1236, x6, (arg2[16])); fiat_np521_mulx_u32(&x1237, &x1238, x6, (arg2[15])); fiat_np521_mulx_u32(&x1239, &x1240, x6, (arg2[14])); fiat_np521_mulx_u32(&x1241, &x1242, x6, (arg2[13])); fiat_np521_mulx_u32(&x1243, &x1244, x6, (arg2[12])); fiat_np521_mulx_u32(&x1245, &x1246, x6, (arg2[11])); fiat_np521_mulx_u32(&x1247, &x1248, x6, (arg2[10])); fiat_np521_mulx_u32(&x1249, &x1250, x6, (arg2[9])); fiat_np521_mulx_u32(&x1251, &x1252, x6, (arg2[8])); fiat_np521_mulx_u32(&x1253, &x1254, x6, (arg2[7])); fiat_np521_mulx_u32(&x1255, &x1256, x6, (arg2[6])); fiat_np521_mulx_u32(&x1257, &x1258, x6, (arg2[5])); fiat_np521_mulx_u32(&x1259, &x1260, x6, (arg2[4])); fiat_np521_mulx_u32(&x1261, &x1262, x6, (arg2[3])); fiat_np521_mulx_u32(&x1263, &x1264, x6, (arg2[2])); fiat_np521_mulx_u32(&x1265, &x1266, x6, (arg2[1])); fiat_np521_mulx_u32(&x1267, &x1268, x6, (arg2[0])); fiat_np521_addcarryx_u32(&x1269, &x1270, 0x0, x1268, x1265); fiat_np521_addcarryx_u32(&x1271, &x1272, x1270, x1266, x1263); fiat_np521_addcarryx_u32(&x1273, &x1274, x1272, x1264, x1261); fiat_np521_addcarryx_u32(&x1275, &x1276, x1274, x1262, x1259); fiat_np521_addcarryx_u32(&x1277, &x1278, x1276, x1260, x1257); fiat_np521_addcarryx_u32(&x1279, &x1280, x1278, x1258, x1255); fiat_np521_addcarryx_u32(&x1281, &x1282, x1280, x1256, x1253); fiat_np521_addcarryx_u32(&x1283, &x1284, x1282, x1254, x1251); fiat_np521_addcarryx_u32(&x1285, &x1286, x1284, x1252, x1249); fiat_np521_addcarryx_u32(&x1287, &x1288, x1286, x1250, x1247); fiat_np521_addcarryx_u32(&x1289, &x1290, x1288, x1248, x1245); fiat_np521_addcarryx_u32(&x1291, &x1292, x1290, x1246, x1243); fiat_np521_addcarryx_u32(&x1293, &x1294, x1292, x1244, x1241); fiat_np521_addcarryx_u32(&x1295, &x1296, x1294, x1242, x1239); fiat_np521_addcarryx_u32(&x1297, &x1298, x1296, x1240, x1237); fiat_np521_addcarryx_u32(&x1299, &x1300, x1298, x1238, x1235); x1301 = (x1300 + x1236); fiat_np521_addcarryx_u32(&x1302, &x1303, 0x0, x1200, x1267); fiat_np521_addcarryx_u32(&x1304, &x1305, x1303, x1202, x1269); fiat_np521_addcarryx_u32(&x1306, &x1307, x1305, x1204, x1271); fiat_np521_addcarryx_u32(&x1308, &x1309, x1307, x1206, x1273); fiat_np521_addcarryx_u32(&x1310, &x1311, x1309, x1208, x1275); fiat_np521_addcarryx_u32(&x1312, &x1313, x1311, x1210, x1277); fiat_np521_addcarryx_u32(&x1314, &x1315, x1313, x1212, x1279); fiat_np521_addcarryx_u32(&x1316, &x1317, x1315, x1214, x1281); fiat_np521_addcarryx_u32(&x1318, &x1319, x1317, x1216, x1283); fiat_np521_addcarryx_u32(&x1320, &x1321, x1319, x1218, x1285); fiat_np521_addcarryx_u32(&x1322, &x1323, x1321, x1220, x1287); fiat_np521_addcarryx_u32(&x1324, &x1325, x1323, x1222, x1289); fiat_np521_addcarryx_u32(&x1326, &x1327, x1325, x1224, x1291); fiat_np521_addcarryx_u32(&x1328, &x1329, x1327, x1226, x1293); fiat_np521_addcarryx_u32(&x1330, &x1331, x1329, x1228, x1295); fiat_np521_addcarryx_u32(&x1332, &x1333, x1331, x1230, x1297); fiat_np521_addcarryx_u32(&x1334, &x1335, x1333, x1232, x1299); fiat_np521_addcarryx_u32(&x1336, &x1337, x1335, x1234, x1301); fiat_np521_mulx_u32(&x1338, &x1339, x1302, UINT32_C(0x79a995c7)); fiat_np521_mulx_u32(&x1340, &x1341, x1338, UINT16_C(0x1ff)); fiat_np521_mulx_u32(&x1342, &x1343, x1338, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x1344, &x1345, x1338, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x1346, &x1347, x1338, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x1348, &x1349, x1338, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x1350, &x1351, x1338, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x1352, &x1353, x1338, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x1354, &x1355, x1338, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x1356, &x1357, x1338, UINT32_C(0xfffffffa)); fiat_np521_mulx_u32(&x1358, &x1359, x1338, UINT32_C(0x51868783)); fiat_np521_mulx_u32(&x1360, &x1361, x1338, UINT32_C(0xbf2f966b)); fiat_np521_mulx_u32(&x1362, &x1363, x1338, UINT32_C(0x7fcc0148)); fiat_np521_mulx_u32(&x1364, &x1365, x1338, UINT32_C(0xf709a5d0)); fiat_np521_mulx_u32(&x1366, &x1367, x1338, UINT32_C(0x3bb5c9b8)); fiat_np521_mulx_u32(&x1368, &x1369, x1338, UINT32_C(0x899c47ae)); fiat_np521_mulx_u32(&x1370, &x1371, x1338, UINT32_C(0xbb6fb71e)); fiat_np521_mulx_u32(&x1372, &x1373, x1338, UINT32_C(0x91386409)); fiat_np521_addcarryx_u32(&x1374, &x1375, 0x0, x1373, x1370); fiat_np521_addcarryx_u32(&x1376, &x1377, x1375, x1371, x1368); fiat_np521_addcarryx_u32(&x1378, &x1379, x1377, x1369, x1366); fiat_np521_addcarryx_u32(&x1380, &x1381, x1379, x1367, x1364); fiat_np521_addcarryx_u32(&x1382, &x1383, x1381, x1365, x1362); fiat_np521_addcarryx_u32(&x1384, &x1385, x1383, x1363, x1360); fiat_np521_addcarryx_u32(&x1386, &x1387, x1385, x1361, x1358); fiat_np521_addcarryx_u32(&x1388, &x1389, x1387, x1359, x1356); fiat_np521_addcarryx_u32(&x1390, &x1391, x1389, x1357, x1354); fiat_np521_addcarryx_u32(&x1392, &x1393, x1391, x1355, x1352); fiat_np521_addcarryx_u32(&x1394, &x1395, x1393, x1353, x1350); fiat_np521_addcarryx_u32(&x1396, &x1397, x1395, x1351, x1348); fiat_np521_addcarryx_u32(&x1398, &x1399, x1397, x1349, x1346); fiat_np521_addcarryx_u32(&x1400, &x1401, x1399, x1347, x1344); fiat_np521_addcarryx_u32(&x1402, &x1403, x1401, x1345, x1342); fiat_np521_addcarryx_u32(&x1404, &x1405, x1403, x1343, x1340); x1406 = (x1405 + x1341); fiat_np521_addcarryx_u32(&x1407, &x1408, 0x0, x1302, x1372); fiat_np521_addcarryx_u32(&x1409, &x1410, x1408, x1304, x1374); fiat_np521_addcarryx_u32(&x1411, &x1412, x1410, x1306, x1376); fiat_np521_addcarryx_u32(&x1413, &x1414, x1412, x1308, x1378); fiat_np521_addcarryx_u32(&x1415, &x1416, x1414, x1310, x1380); fiat_np521_addcarryx_u32(&x1417, &x1418, x1416, x1312, x1382); fiat_np521_addcarryx_u32(&x1419, &x1420, x1418, x1314, x1384); fiat_np521_addcarryx_u32(&x1421, &x1422, x1420, x1316, x1386); fiat_np521_addcarryx_u32(&x1423, &x1424, x1422, x1318, x1388); fiat_np521_addcarryx_u32(&x1425, &x1426, x1424, x1320, x1390); fiat_np521_addcarryx_u32(&x1427, &x1428, x1426, x1322, x1392); fiat_np521_addcarryx_u32(&x1429, &x1430, x1428, x1324, x1394); fiat_np521_addcarryx_u32(&x1431, &x1432, x1430, x1326, x1396); fiat_np521_addcarryx_u32(&x1433, &x1434, x1432, x1328, x1398); fiat_np521_addcarryx_u32(&x1435, &x1436, x1434, x1330, x1400); fiat_np521_addcarryx_u32(&x1437, &x1438, x1436, x1332, x1402); fiat_np521_addcarryx_u32(&x1439, &x1440, x1438, x1334, x1404); fiat_np521_addcarryx_u32(&x1441, &x1442, x1440, x1336, x1406); x1443 = ((uint32_t)x1442 + x1337); fiat_np521_mulx_u32(&x1444, &x1445, x7, (arg2[16])); fiat_np521_mulx_u32(&x1446, &x1447, x7, (arg2[15])); fiat_np521_mulx_u32(&x1448, &x1449, x7, (arg2[14])); fiat_np521_mulx_u32(&x1450, &x1451, x7, (arg2[13])); fiat_np521_mulx_u32(&x1452, &x1453, x7, (arg2[12])); fiat_np521_mulx_u32(&x1454, &x1455, x7, (arg2[11])); fiat_np521_mulx_u32(&x1456, &x1457, x7, (arg2[10])); fiat_np521_mulx_u32(&x1458, &x1459, x7, (arg2[9])); fiat_np521_mulx_u32(&x1460, &x1461, x7, (arg2[8])); fiat_np521_mulx_u32(&x1462, &x1463, x7, (arg2[7])); fiat_np521_mulx_u32(&x1464, &x1465, x7, (arg2[6])); fiat_np521_mulx_u32(&x1466, &x1467, x7, (arg2[5])); fiat_np521_mulx_u32(&x1468, &x1469, x7, (arg2[4])); fiat_np521_mulx_u32(&x1470, &x1471, x7, (arg2[3])); fiat_np521_mulx_u32(&x1472, &x1473, x7, (arg2[2])); fiat_np521_mulx_u32(&x1474, &x1475, x7, (arg2[1])); fiat_np521_mulx_u32(&x1476, &x1477, x7, (arg2[0])); fiat_np521_addcarryx_u32(&x1478, &x1479, 0x0, x1477, x1474); fiat_np521_addcarryx_u32(&x1480, &x1481, x1479, x1475, x1472); fiat_np521_addcarryx_u32(&x1482, &x1483, x1481, x1473, x1470); fiat_np521_addcarryx_u32(&x1484, &x1485, x1483, x1471, x1468); fiat_np521_addcarryx_u32(&x1486, &x1487, x1485, x1469, x1466); fiat_np521_addcarryx_u32(&x1488, &x1489, x1487, x1467, x1464); fiat_np521_addcarryx_u32(&x1490, &x1491, x1489, x1465, x1462); fiat_np521_addcarryx_u32(&x1492, &x1493, x1491, x1463, x1460); fiat_np521_addcarryx_u32(&x1494, &x1495, x1493, x1461, x1458); fiat_np521_addcarryx_u32(&x1496, &x1497, x1495, x1459, x1456); fiat_np521_addcarryx_u32(&x1498, &x1499, x1497, x1457, x1454); fiat_np521_addcarryx_u32(&x1500, &x1501, x1499, x1455, x1452); fiat_np521_addcarryx_u32(&x1502, &x1503, x1501, x1453, x1450); fiat_np521_addcarryx_u32(&x1504, &x1505, x1503, x1451, x1448); fiat_np521_addcarryx_u32(&x1506, &x1507, x1505, x1449, x1446); fiat_np521_addcarryx_u32(&x1508, &x1509, x1507, x1447, x1444); x1510 = (x1509 + x1445); fiat_np521_addcarryx_u32(&x1511, &x1512, 0x0, x1409, x1476); fiat_np521_addcarryx_u32(&x1513, &x1514, x1512, x1411, x1478); fiat_np521_addcarryx_u32(&x1515, &x1516, x1514, x1413, x1480); fiat_np521_addcarryx_u32(&x1517, &x1518, x1516, x1415, x1482); fiat_np521_addcarryx_u32(&x1519, &x1520, x1518, x1417, x1484); fiat_np521_addcarryx_u32(&x1521, &x1522, x1520, x1419, x1486); fiat_np521_addcarryx_u32(&x1523, &x1524, x1522, x1421, x1488); fiat_np521_addcarryx_u32(&x1525, &x1526, x1524, x1423, x1490); fiat_np521_addcarryx_u32(&x1527, &x1528, x1526, x1425, x1492); fiat_np521_addcarryx_u32(&x1529, &x1530, x1528, x1427, x1494); fiat_np521_addcarryx_u32(&x1531, &x1532, x1530, x1429, x1496); fiat_np521_addcarryx_u32(&x1533, &x1534, x1532, x1431, x1498); fiat_np521_addcarryx_u32(&x1535, &x1536, x1534, x1433, x1500); fiat_np521_addcarryx_u32(&x1537, &x1538, x1536, x1435, x1502); fiat_np521_addcarryx_u32(&x1539, &x1540, x1538, x1437, x1504); fiat_np521_addcarryx_u32(&x1541, &x1542, x1540, x1439, x1506); fiat_np521_addcarryx_u32(&x1543, &x1544, x1542, x1441, x1508); fiat_np521_addcarryx_u32(&x1545, &x1546, x1544, x1443, x1510); fiat_np521_mulx_u32(&x1547, &x1548, x1511, UINT32_C(0x79a995c7)); fiat_np521_mulx_u32(&x1549, &x1550, x1547, UINT16_C(0x1ff)); fiat_np521_mulx_u32(&x1551, &x1552, x1547, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x1553, &x1554, x1547, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x1555, &x1556, x1547, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x1557, &x1558, x1547, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x1559, &x1560, x1547, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x1561, &x1562, x1547, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x1563, &x1564, x1547, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x1565, &x1566, x1547, UINT32_C(0xfffffffa)); fiat_np521_mulx_u32(&x1567, &x1568, x1547, UINT32_C(0x51868783)); fiat_np521_mulx_u32(&x1569, &x1570, x1547, UINT32_C(0xbf2f966b)); fiat_np521_mulx_u32(&x1571, &x1572, x1547, UINT32_C(0x7fcc0148)); fiat_np521_mulx_u32(&x1573, &x1574, x1547, UINT32_C(0xf709a5d0)); fiat_np521_mulx_u32(&x1575, &x1576, x1547, UINT32_C(0x3bb5c9b8)); fiat_np521_mulx_u32(&x1577, &x1578, x1547, UINT32_C(0x899c47ae)); fiat_np521_mulx_u32(&x1579, &x1580, x1547, UINT32_C(0xbb6fb71e)); fiat_np521_mulx_u32(&x1581, &x1582, x1547, UINT32_C(0x91386409)); fiat_np521_addcarryx_u32(&x1583, &x1584, 0x0, x1582, x1579); fiat_np521_addcarryx_u32(&x1585, &x1586, x1584, x1580, x1577); fiat_np521_addcarryx_u32(&x1587, &x1588, x1586, x1578, x1575); fiat_np521_addcarryx_u32(&x1589, &x1590, x1588, x1576, x1573); fiat_np521_addcarryx_u32(&x1591, &x1592, x1590, x1574, x1571); fiat_np521_addcarryx_u32(&x1593, &x1594, x1592, x1572, x1569); fiat_np521_addcarryx_u32(&x1595, &x1596, x1594, x1570, x1567); fiat_np521_addcarryx_u32(&x1597, &x1598, x1596, x1568, x1565); fiat_np521_addcarryx_u32(&x1599, &x1600, x1598, x1566, x1563); fiat_np521_addcarryx_u32(&x1601, &x1602, x1600, x1564, x1561); fiat_np521_addcarryx_u32(&x1603, &x1604, x1602, x1562, x1559); fiat_np521_addcarryx_u32(&x1605, &x1606, x1604, x1560, x1557); fiat_np521_addcarryx_u32(&x1607, &x1608, x1606, x1558, x1555); fiat_np521_addcarryx_u32(&x1609, &x1610, x1608, x1556, x1553); fiat_np521_addcarryx_u32(&x1611, &x1612, x1610, x1554, x1551); fiat_np521_addcarryx_u32(&x1613, &x1614, x1612, x1552, x1549); x1615 = (x1614 + x1550); fiat_np521_addcarryx_u32(&x1616, &x1617, 0x0, x1511, x1581); fiat_np521_addcarryx_u32(&x1618, &x1619, x1617, x1513, x1583); fiat_np521_addcarryx_u32(&x1620, &x1621, x1619, x1515, x1585); fiat_np521_addcarryx_u32(&x1622, &x1623, x1621, x1517, x1587); fiat_np521_addcarryx_u32(&x1624, &x1625, x1623, x1519, x1589); fiat_np521_addcarryx_u32(&x1626, &x1627, x1625, x1521, x1591); fiat_np521_addcarryx_u32(&x1628, &x1629, x1627, x1523, x1593); fiat_np521_addcarryx_u32(&x1630, &x1631, x1629, x1525, x1595); fiat_np521_addcarryx_u32(&x1632, &x1633, x1631, x1527, x1597); fiat_np521_addcarryx_u32(&x1634, &x1635, x1633, x1529, x1599); fiat_np521_addcarryx_u32(&x1636, &x1637, x1635, x1531, x1601); fiat_np521_addcarryx_u32(&x1638, &x1639, x1637, x1533, x1603); fiat_np521_addcarryx_u32(&x1640, &x1641, x1639, x1535, x1605); fiat_np521_addcarryx_u32(&x1642, &x1643, x1641, x1537, x1607); fiat_np521_addcarryx_u32(&x1644, &x1645, x1643, x1539, x1609); fiat_np521_addcarryx_u32(&x1646, &x1647, x1645, x1541, x1611); fiat_np521_addcarryx_u32(&x1648, &x1649, x1647, x1543, x1613); fiat_np521_addcarryx_u32(&x1650, &x1651, x1649, x1545, x1615); x1652 = ((uint32_t)x1651 + x1546); fiat_np521_mulx_u32(&x1653, &x1654, x8, (arg2[16])); fiat_np521_mulx_u32(&x1655, &x1656, x8, (arg2[15])); fiat_np521_mulx_u32(&x1657, &x1658, x8, (arg2[14])); fiat_np521_mulx_u32(&x1659, &x1660, x8, (arg2[13])); fiat_np521_mulx_u32(&x1661, &x1662, x8, (arg2[12])); fiat_np521_mulx_u32(&x1663, &x1664, x8, (arg2[11])); fiat_np521_mulx_u32(&x1665, &x1666, x8, (arg2[10])); fiat_np521_mulx_u32(&x1667, &x1668, x8, (arg2[9])); fiat_np521_mulx_u32(&x1669, &x1670, x8, (arg2[8])); fiat_np521_mulx_u32(&x1671, &x1672, x8, (arg2[7])); fiat_np521_mulx_u32(&x1673, &x1674, x8, (arg2[6])); fiat_np521_mulx_u32(&x1675, &x1676, x8, (arg2[5])); fiat_np521_mulx_u32(&x1677, &x1678, x8, (arg2[4])); fiat_np521_mulx_u32(&x1679, &x1680, x8, (arg2[3])); fiat_np521_mulx_u32(&x1681, &x1682, x8, (arg2[2])); fiat_np521_mulx_u32(&x1683, &x1684, x8, (arg2[1])); fiat_np521_mulx_u32(&x1685, &x1686, x8, (arg2[0])); fiat_np521_addcarryx_u32(&x1687, &x1688, 0x0, x1686, x1683); fiat_np521_addcarryx_u32(&x1689, &x1690, x1688, x1684, x1681); fiat_np521_addcarryx_u32(&x1691, &x1692, x1690, x1682, x1679); fiat_np521_addcarryx_u32(&x1693, &x1694, x1692, x1680, x1677); fiat_np521_addcarryx_u32(&x1695, &x1696, x1694, x1678, x1675); fiat_np521_addcarryx_u32(&x1697, &x1698, x1696, x1676, x1673); fiat_np521_addcarryx_u32(&x1699, &x1700, x1698, x1674, x1671); fiat_np521_addcarryx_u32(&x1701, &x1702, x1700, x1672, x1669); fiat_np521_addcarryx_u32(&x1703, &x1704, x1702, x1670, x1667); fiat_np521_addcarryx_u32(&x1705, &x1706, x1704, x1668, x1665); fiat_np521_addcarryx_u32(&x1707, &x1708, x1706, x1666, x1663); fiat_np521_addcarryx_u32(&x1709, &x1710, x1708, x1664, x1661); fiat_np521_addcarryx_u32(&x1711, &x1712, x1710, x1662, x1659); fiat_np521_addcarryx_u32(&x1713, &x1714, x1712, x1660, x1657); fiat_np521_addcarryx_u32(&x1715, &x1716, x1714, x1658, x1655); fiat_np521_addcarryx_u32(&x1717, &x1718, x1716, x1656, x1653); x1719 = (x1718 + x1654); fiat_np521_addcarryx_u32(&x1720, &x1721, 0x0, x1618, x1685); fiat_np521_addcarryx_u32(&x1722, &x1723, x1721, x1620, x1687); fiat_np521_addcarryx_u32(&x1724, &x1725, x1723, x1622, x1689); fiat_np521_addcarryx_u32(&x1726, &x1727, x1725, x1624, x1691); fiat_np521_addcarryx_u32(&x1728, &x1729, x1727, x1626, x1693); fiat_np521_addcarryx_u32(&x1730, &x1731, x1729, x1628, x1695); fiat_np521_addcarryx_u32(&x1732, &x1733, x1731, x1630, x1697); fiat_np521_addcarryx_u32(&x1734, &x1735, x1733, x1632, x1699); fiat_np521_addcarryx_u32(&x1736, &x1737, x1735, x1634, x1701); fiat_np521_addcarryx_u32(&x1738, &x1739, x1737, x1636, x1703); fiat_np521_addcarryx_u32(&x1740, &x1741, x1739, x1638, x1705); fiat_np521_addcarryx_u32(&x1742, &x1743, x1741, x1640, x1707); fiat_np521_addcarryx_u32(&x1744, &x1745, x1743, x1642, x1709); fiat_np521_addcarryx_u32(&x1746, &x1747, x1745, x1644, x1711); fiat_np521_addcarryx_u32(&x1748, &x1749, x1747, x1646, x1713); fiat_np521_addcarryx_u32(&x1750, &x1751, x1749, x1648, x1715); fiat_np521_addcarryx_u32(&x1752, &x1753, x1751, x1650, x1717); fiat_np521_addcarryx_u32(&x1754, &x1755, x1753, x1652, x1719); fiat_np521_mulx_u32(&x1756, &x1757, x1720, UINT32_C(0x79a995c7)); fiat_np521_mulx_u32(&x1758, &x1759, x1756, UINT16_C(0x1ff)); fiat_np521_mulx_u32(&x1760, &x1761, x1756, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x1762, &x1763, x1756, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x1764, &x1765, x1756, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x1766, &x1767, x1756, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x1768, &x1769, x1756, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x1770, &x1771, x1756, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x1772, &x1773, x1756, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x1774, &x1775, x1756, UINT32_C(0xfffffffa)); fiat_np521_mulx_u32(&x1776, &x1777, x1756, UINT32_C(0x51868783)); fiat_np521_mulx_u32(&x1778, &x1779, x1756, UINT32_C(0xbf2f966b)); fiat_np521_mulx_u32(&x1780, &x1781, x1756, UINT32_C(0x7fcc0148)); fiat_np521_mulx_u32(&x1782, &x1783, x1756, UINT32_C(0xf709a5d0)); fiat_np521_mulx_u32(&x1784, &x1785, x1756, UINT32_C(0x3bb5c9b8)); fiat_np521_mulx_u32(&x1786, &x1787, x1756, UINT32_C(0x899c47ae)); fiat_np521_mulx_u32(&x1788, &x1789, x1756, UINT32_C(0xbb6fb71e)); fiat_np521_mulx_u32(&x1790, &x1791, x1756, UINT32_C(0x91386409)); fiat_np521_addcarryx_u32(&x1792, &x1793, 0x0, x1791, x1788); fiat_np521_addcarryx_u32(&x1794, &x1795, x1793, x1789, x1786); fiat_np521_addcarryx_u32(&x1796, &x1797, x1795, x1787, x1784); fiat_np521_addcarryx_u32(&x1798, &x1799, x1797, x1785, x1782); fiat_np521_addcarryx_u32(&x1800, &x1801, x1799, x1783, x1780); fiat_np521_addcarryx_u32(&x1802, &x1803, x1801, x1781, x1778); fiat_np521_addcarryx_u32(&x1804, &x1805, x1803, x1779, x1776); fiat_np521_addcarryx_u32(&x1806, &x1807, x1805, x1777, x1774); fiat_np521_addcarryx_u32(&x1808, &x1809, x1807, x1775, x1772); fiat_np521_addcarryx_u32(&x1810, &x1811, x1809, x1773, x1770); fiat_np521_addcarryx_u32(&x1812, &x1813, x1811, x1771, x1768); fiat_np521_addcarryx_u32(&x1814, &x1815, x1813, x1769, x1766); fiat_np521_addcarryx_u32(&x1816, &x1817, x1815, x1767, x1764); fiat_np521_addcarryx_u32(&x1818, &x1819, x1817, x1765, x1762); fiat_np521_addcarryx_u32(&x1820, &x1821, x1819, x1763, x1760); fiat_np521_addcarryx_u32(&x1822, &x1823, x1821, x1761, x1758); x1824 = (x1823 + x1759); fiat_np521_addcarryx_u32(&x1825, &x1826, 0x0, x1720, x1790); fiat_np521_addcarryx_u32(&x1827, &x1828, x1826, x1722, x1792); fiat_np521_addcarryx_u32(&x1829, &x1830, x1828, x1724, x1794); fiat_np521_addcarryx_u32(&x1831, &x1832, x1830, x1726, x1796); fiat_np521_addcarryx_u32(&x1833, &x1834, x1832, x1728, x1798); fiat_np521_addcarryx_u32(&x1835, &x1836, x1834, x1730, x1800); fiat_np521_addcarryx_u32(&x1837, &x1838, x1836, x1732, x1802); fiat_np521_addcarryx_u32(&x1839, &x1840, x1838, x1734, x1804); fiat_np521_addcarryx_u32(&x1841, &x1842, x1840, x1736, x1806); fiat_np521_addcarryx_u32(&x1843, &x1844, x1842, x1738, x1808); fiat_np521_addcarryx_u32(&x1845, &x1846, x1844, x1740, x1810); fiat_np521_addcarryx_u32(&x1847, &x1848, x1846, x1742, x1812); fiat_np521_addcarryx_u32(&x1849, &x1850, x1848, x1744, x1814); fiat_np521_addcarryx_u32(&x1851, &x1852, x1850, x1746, x1816); fiat_np521_addcarryx_u32(&x1853, &x1854, x1852, x1748, x1818); fiat_np521_addcarryx_u32(&x1855, &x1856, x1854, x1750, x1820); fiat_np521_addcarryx_u32(&x1857, &x1858, x1856, x1752, x1822); fiat_np521_addcarryx_u32(&x1859, &x1860, x1858, x1754, x1824); x1861 = ((uint32_t)x1860 + x1755); fiat_np521_mulx_u32(&x1862, &x1863, x9, (arg2[16])); fiat_np521_mulx_u32(&x1864, &x1865, x9, (arg2[15])); fiat_np521_mulx_u32(&x1866, &x1867, x9, (arg2[14])); fiat_np521_mulx_u32(&x1868, &x1869, x9, (arg2[13])); fiat_np521_mulx_u32(&x1870, &x1871, x9, (arg2[12])); fiat_np521_mulx_u32(&x1872, &x1873, x9, (arg2[11])); fiat_np521_mulx_u32(&x1874, &x1875, x9, (arg2[10])); fiat_np521_mulx_u32(&x1876, &x1877, x9, (arg2[9])); fiat_np521_mulx_u32(&x1878, &x1879, x9, (arg2[8])); fiat_np521_mulx_u32(&x1880, &x1881, x9, (arg2[7])); fiat_np521_mulx_u32(&x1882, &x1883, x9, (arg2[6])); fiat_np521_mulx_u32(&x1884, &x1885, x9, (arg2[5])); fiat_np521_mulx_u32(&x1886, &x1887, x9, (arg2[4])); fiat_np521_mulx_u32(&x1888, &x1889, x9, (arg2[3])); fiat_np521_mulx_u32(&x1890, &x1891, x9, (arg2[2])); fiat_np521_mulx_u32(&x1892, &x1893, x9, (arg2[1])); fiat_np521_mulx_u32(&x1894, &x1895, x9, (arg2[0])); fiat_np521_addcarryx_u32(&x1896, &x1897, 0x0, x1895, x1892); fiat_np521_addcarryx_u32(&x1898, &x1899, x1897, x1893, x1890); fiat_np521_addcarryx_u32(&x1900, &x1901, x1899, x1891, x1888); fiat_np521_addcarryx_u32(&x1902, &x1903, x1901, x1889, x1886); fiat_np521_addcarryx_u32(&x1904, &x1905, x1903, x1887, x1884); fiat_np521_addcarryx_u32(&x1906, &x1907, x1905, x1885, x1882); fiat_np521_addcarryx_u32(&x1908, &x1909, x1907, x1883, x1880); fiat_np521_addcarryx_u32(&x1910, &x1911, x1909, x1881, x1878); fiat_np521_addcarryx_u32(&x1912, &x1913, x1911, x1879, x1876); fiat_np521_addcarryx_u32(&x1914, &x1915, x1913, x1877, x1874); fiat_np521_addcarryx_u32(&x1916, &x1917, x1915, x1875, x1872); fiat_np521_addcarryx_u32(&x1918, &x1919, x1917, x1873, x1870); fiat_np521_addcarryx_u32(&x1920, &x1921, x1919, x1871, x1868); fiat_np521_addcarryx_u32(&x1922, &x1923, x1921, x1869, x1866); fiat_np521_addcarryx_u32(&x1924, &x1925, x1923, x1867, x1864); fiat_np521_addcarryx_u32(&x1926, &x1927, x1925, x1865, x1862); x1928 = (x1927 + x1863); fiat_np521_addcarryx_u32(&x1929, &x1930, 0x0, x1827, x1894); fiat_np521_addcarryx_u32(&x1931, &x1932, x1930, x1829, x1896); fiat_np521_addcarryx_u32(&x1933, &x1934, x1932, x1831, x1898); fiat_np521_addcarryx_u32(&x1935, &x1936, x1934, x1833, x1900); fiat_np521_addcarryx_u32(&x1937, &x1938, x1936, x1835, x1902); fiat_np521_addcarryx_u32(&x1939, &x1940, x1938, x1837, x1904); fiat_np521_addcarryx_u32(&x1941, &x1942, x1940, x1839, x1906); fiat_np521_addcarryx_u32(&x1943, &x1944, x1942, x1841, x1908); fiat_np521_addcarryx_u32(&x1945, &x1946, x1944, x1843, x1910); fiat_np521_addcarryx_u32(&x1947, &x1948, x1946, x1845, x1912); fiat_np521_addcarryx_u32(&x1949, &x1950, x1948, x1847, x1914); fiat_np521_addcarryx_u32(&x1951, &x1952, x1950, x1849, x1916); fiat_np521_addcarryx_u32(&x1953, &x1954, x1952, x1851, x1918); fiat_np521_addcarryx_u32(&x1955, &x1956, x1954, x1853, x1920); fiat_np521_addcarryx_u32(&x1957, &x1958, x1956, x1855, x1922); fiat_np521_addcarryx_u32(&x1959, &x1960, x1958, x1857, x1924); fiat_np521_addcarryx_u32(&x1961, &x1962, x1960, x1859, x1926); fiat_np521_addcarryx_u32(&x1963, &x1964, x1962, x1861, x1928); fiat_np521_mulx_u32(&x1965, &x1966, x1929, UINT32_C(0x79a995c7)); fiat_np521_mulx_u32(&x1967, &x1968, x1965, UINT16_C(0x1ff)); fiat_np521_mulx_u32(&x1969, &x1970, x1965, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x1971, &x1972, x1965, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x1973, &x1974, x1965, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x1975, &x1976, x1965, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x1977, &x1978, x1965, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x1979, &x1980, x1965, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x1981, &x1982, x1965, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x1983, &x1984, x1965, UINT32_C(0xfffffffa)); fiat_np521_mulx_u32(&x1985, &x1986, x1965, UINT32_C(0x51868783)); fiat_np521_mulx_u32(&x1987, &x1988, x1965, UINT32_C(0xbf2f966b)); fiat_np521_mulx_u32(&x1989, &x1990, x1965, UINT32_C(0x7fcc0148)); fiat_np521_mulx_u32(&x1991, &x1992, x1965, UINT32_C(0xf709a5d0)); fiat_np521_mulx_u32(&x1993, &x1994, x1965, UINT32_C(0x3bb5c9b8)); fiat_np521_mulx_u32(&x1995, &x1996, x1965, UINT32_C(0x899c47ae)); fiat_np521_mulx_u32(&x1997, &x1998, x1965, UINT32_C(0xbb6fb71e)); fiat_np521_mulx_u32(&x1999, &x2000, x1965, UINT32_C(0x91386409)); fiat_np521_addcarryx_u32(&x2001, &x2002, 0x0, x2000, x1997); fiat_np521_addcarryx_u32(&x2003, &x2004, x2002, x1998, x1995); fiat_np521_addcarryx_u32(&x2005, &x2006, x2004, x1996, x1993); fiat_np521_addcarryx_u32(&x2007, &x2008, x2006, x1994, x1991); fiat_np521_addcarryx_u32(&x2009, &x2010, x2008, x1992, x1989); fiat_np521_addcarryx_u32(&x2011, &x2012, x2010, x1990, x1987); fiat_np521_addcarryx_u32(&x2013, &x2014, x2012, x1988, x1985); fiat_np521_addcarryx_u32(&x2015, &x2016, x2014, x1986, x1983); fiat_np521_addcarryx_u32(&x2017, &x2018, x2016, x1984, x1981); fiat_np521_addcarryx_u32(&x2019, &x2020, x2018, x1982, x1979); fiat_np521_addcarryx_u32(&x2021, &x2022, x2020, x1980, x1977); fiat_np521_addcarryx_u32(&x2023, &x2024, x2022, x1978, x1975); fiat_np521_addcarryx_u32(&x2025, &x2026, x2024, x1976, x1973); fiat_np521_addcarryx_u32(&x2027, &x2028, x2026, x1974, x1971); fiat_np521_addcarryx_u32(&x2029, &x2030, x2028, x1972, x1969); fiat_np521_addcarryx_u32(&x2031, &x2032, x2030, x1970, x1967); x2033 = (x2032 + x1968); fiat_np521_addcarryx_u32(&x2034, &x2035, 0x0, x1929, x1999); fiat_np521_addcarryx_u32(&x2036, &x2037, x2035, x1931, x2001); fiat_np521_addcarryx_u32(&x2038, &x2039, x2037, x1933, x2003); fiat_np521_addcarryx_u32(&x2040, &x2041, x2039, x1935, x2005); fiat_np521_addcarryx_u32(&x2042, &x2043, x2041, x1937, x2007); fiat_np521_addcarryx_u32(&x2044, &x2045, x2043, x1939, x2009); fiat_np521_addcarryx_u32(&x2046, &x2047, x2045, x1941, x2011); fiat_np521_addcarryx_u32(&x2048, &x2049, x2047, x1943, x2013); fiat_np521_addcarryx_u32(&x2050, &x2051, x2049, x1945, x2015); fiat_np521_addcarryx_u32(&x2052, &x2053, x2051, x1947, x2017); fiat_np521_addcarryx_u32(&x2054, &x2055, x2053, x1949, x2019); fiat_np521_addcarryx_u32(&x2056, &x2057, x2055, x1951, x2021); fiat_np521_addcarryx_u32(&x2058, &x2059, x2057, x1953, x2023); fiat_np521_addcarryx_u32(&x2060, &x2061, x2059, x1955, x2025); fiat_np521_addcarryx_u32(&x2062, &x2063, x2061, x1957, x2027); fiat_np521_addcarryx_u32(&x2064, &x2065, x2063, x1959, x2029); fiat_np521_addcarryx_u32(&x2066, &x2067, x2065, x1961, x2031); fiat_np521_addcarryx_u32(&x2068, &x2069, x2067, x1963, x2033); x2070 = ((uint32_t)x2069 + x1964); fiat_np521_mulx_u32(&x2071, &x2072, x10, (arg2[16])); fiat_np521_mulx_u32(&x2073, &x2074, x10, (arg2[15])); fiat_np521_mulx_u32(&x2075, &x2076, x10, (arg2[14])); fiat_np521_mulx_u32(&x2077, &x2078, x10, (arg2[13])); fiat_np521_mulx_u32(&x2079, &x2080, x10, (arg2[12])); fiat_np521_mulx_u32(&x2081, &x2082, x10, (arg2[11])); fiat_np521_mulx_u32(&x2083, &x2084, x10, (arg2[10])); fiat_np521_mulx_u32(&x2085, &x2086, x10, (arg2[9])); fiat_np521_mulx_u32(&x2087, &x2088, x10, (arg2[8])); fiat_np521_mulx_u32(&x2089, &x2090, x10, (arg2[7])); fiat_np521_mulx_u32(&x2091, &x2092, x10, (arg2[6])); fiat_np521_mulx_u32(&x2093, &x2094, x10, (arg2[5])); fiat_np521_mulx_u32(&x2095, &x2096, x10, (arg2[4])); fiat_np521_mulx_u32(&x2097, &x2098, x10, (arg2[3])); fiat_np521_mulx_u32(&x2099, &x2100, x10, (arg2[2])); fiat_np521_mulx_u32(&x2101, &x2102, x10, (arg2[1])); fiat_np521_mulx_u32(&x2103, &x2104, x10, (arg2[0])); fiat_np521_addcarryx_u32(&x2105, &x2106, 0x0, x2104, x2101); fiat_np521_addcarryx_u32(&x2107, &x2108, x2106, x2102, x2099); fiat_np521_addcarryx_u32(&x2109, &x2110, x2108, x2100, x2097); fiat_np521_addcarryx_u32(&x2111, &x2112, x2110, x2098, x2095); fiat_np521_addcarryx_u32(&x2113, &x2114, x2112, x2096, x2093); fiat_np521_addcarryx_u32(&x2115, &x2116, x2114, x2094, x2091); fiat_np521_addcarryx_u32(&x2117, &x2118, x2116, x2092, x2089); fiat_np521_addcarryx_u32(&x2119, &x2120, x2118, x2090, x2087); fiat_np521_addcarryx_u32(&x2121, &x2122, x2120, x2088, x2085); fiat_np521_addcarryx_u32(&x2123, &x2124, x2122, x2086, x2083); fiat_np521_addcarryx_u32(&x2125, &x2126, x2124, x2084, x2081); fiat_np521_addcarryx_u32(&x2127, &x2128, x2126, x2082, x2079); fiat_np521_addcarryx_u32(&x2129, &x2130, x2128, x2080, x2077); fiat_np521_addcarryx_u32(&x2131, &x2132, x2130, x2078, x2075); fiat_np521_addcarryx_u32(&x2133, &x2134, x2132, x2076, x2073); fiat_np521_addcarryx_u32(&x2135, &x2136, x2134, x2074, x2071); x2137 = (x2136 + x2072); fiat_np521_addcarryx_u32(&x2138, &x2139, 0x0, x2036, x2103); fiat_np521_addcarryx_u32(&x2140, &x2141, x2139, x2038, x2105); fiat_np521_addcarryx_u32(&x2142, &x2143, x2141, x2040, x2107); fiat_np521_addcarryx_u32(&x2144, &x2145, x2143, x2042, x2109); fiat_np521_addcarryx_u32(&x2146, &x2147, x2145, x2044, x2111); fiat_np521_addcarryx_u32(&x2148, &x2149, x2147, x2046, x2113); fiat_np521_addcarryx_u32(&x2150, &x2151, x2149, x2048, x2115); fiat_np521_addcarryx_u32(&x2152, &x2153, x2151, x2050, x2117); fiat_np521_addcarryx_u32(&x2154, &x2155, x2153, x2052, x2119); fiat_np521_addcarryx_u32(&x2156, &x2157, x2155, x2054, x2121); fiat_np521_addcarryx_u32(&x2158, &x2159, x2157, x2056, x2123); fiat_np521_addcarryx_u32(&x2160, &x2161, x2159, x2058, x2125); fiat_np521_addcarryx_u32(&x2162, &x2163, x2161, x2060, x2127); fiat_np521_addcarryx_u32(&x2164, &x2165, x2163, x2062, x2129); fiat_np521_addcarryx_u32(&x2166, &x2167, x2165, x2064, x2131); fiat_np521_addcarryx_u32(&x2168, &x2169, x2167, x2066, x2133); fiat_np521_addcarryx_u32(&x2170, &x2171, x2169, x2068, x2135); fiat_np521_addcarryx_u32(&x2172, &x2173, x2171, x2070, x2137); fiat_np521_mulx_u32(&x2174, &x2175, x2138, UINT32_C(0x79a995c7)); fiat_np521_mulx_u32(&x2176, &x2177, x2174, UINT16_C(0x1ff)); fiat_np521_mulx_u32(&x2178, &x2179, x2174, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x2180, &x2181, x2174, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x2182, &x2183, x2174, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x2184, &x2185, x2174, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x2186, &x2187, x2174, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x2188, &x2189, x2174, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x2190, &x2191, x2174, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x2192, &x2193, x2174, UINT32_C(0xfffffffa)); fiat_np521_mulx_u32(&x2194, &x2195, x2174, UINT32_C(0x51868783)); fiat_np521_mulx_u32(&x2196, &x2197, x2174, UINT32_C(0xbf2f966b)); fiat_np521_mulx_u32(&x2198, &x2199, x2174, UINT32_C(0x7fcc0148)); fiat_np521_mulx_u32(&x2200, &x2201, x2174, UINT32_C(0xf709a5d0)); fiat_np521_mulx_u32(&x2202, &x2203, x2174, UINT32_C(0x3bb5c9b8)); fiat_np521_mulx_u32(&x2204, &x2205, x2174, UINT32_C(0x899c47ae)); fiat_np521_mulx_u32(&x2206, &x2207, x2174, UINT32_C(0xbb6fb71e)); fiat_np521_mulx_u32(&x2208, &x2209, x2174, UINT32_C(0x91386409)); fiat_np521_addcarryx_u32(&x2210, &x2211, 0x0, x2209, x2206); fiat_np521_addcarryx_u32(&x2212, &x2213, x2211, x2207, x2204); fiat_np521_addcarryx_u32(&x2214, &x2215, x2213, x2205, x2202); fiat_np521_addcarryx_u32(&x2216, &x2217, x2215, x2203, x2200); fiat_np521_addcarryx_u32(&x2218, &x2219, x2217, x2201, x2198); fiat_np521_addcarryx_u32(&x2220, &x2221, x2219, x2199, x2196); fiat_np521_addcarryx_u32(&x2222, &x2223, x2221, x2197, x2194); fiat_np521_addcarryx_u32(&x2224, &x2225, x2223, x2195, x2192); fiat_np521_addcarryx_u32(&x2226, &x2227, x2225, x2193, x2190); fiat_np521_addcarryx_u32(&x2228, &x2229, x2227, x2191, x2188); fiat_np521_addcarryx_u32(&x2230, &x2231, x2229, x2189, x2186); fiat_np521_addcarryx_u32(&x2232, &x2233, x2231, x2187, x2184); fiat_np521_addcarryx_u32(&x2234, &x2235, x2233, x2185, x2182); fiat_np521_addcarryx_u32(&x2236, &x2237, x2235, x2183, x2180); fiat_np521_addcarryx_u32(&x2238, &x2239, x2237, x2181, x2178); fiat_np521_addcarryx_u32(&x2240, &x2241, x2239, x2179, x2176); x2242 = (x2241 + x2177); fiat_np521_addcarryx_u32(&x2243, &x2244, 0x0, x2138, x2208); fiat_np521_addcarryx_u32(&x2245, &x2246, x2244, x2140, x2210); fiat_np521_addcarryx_u32(&x2247, &x2248, x2246, x2142, x2212); fiat_np521_addcarryx_u32(&x2249, &x2250, x2248, x2144, x2214); fiat_np521_addcarryx_u32(&x2251, &x2252, x2250, x2146, x2216); fiat_np521_addcarryx_u32(&x2253, &x2254, x2252, x2148, x2218); fiat_np521_addcarryx_u32(&x2255, &x2256, x2254, x2150, x2220); fiat_np521_addcarryx_u32(&x2257, &x2258, x2256, x2152, x2222); fiat_np521_addcarryx_u32(&x2259, &x2260, x2258, x2154, x2224); fiat_np521_addcarryx_u32(&x2261, &x2262, x2260, x2156, x2226); fiat_np521_addcarryx_u32(&x2263, &x2264, x2262, x2158, x2228); fiat_np521_addcarryx_u32(&x2265, &x2266, x2264, x2160, x2230); fiat_np521_addcarryx_u32(&x2267, &x2268, x2266, x2162, x2232); fiat_np521_addcarryx_u32(&x2269, &x2270, x2268, x2164, x2234); fiat_np521_addcarryx_u32(&x2271, &x2272, x2270, x2166, x2236); fiat_np521_addcarryx_u32(&x2273, &x2274, x2272, x2168, x2238); fiat_np521_addcarryx_u32(&x2275, &x2276, x2274, x2170, x2240); fiat_np521_addcarryx_u32(&x2277, &x2278, x2276, x2172, x2242); x2279 = ((uint32_t)x2278 + x2173); fiat_np521_mulx_u32(&x2280, &x2281, x11, (arg2[16])); fiat_np521_mulx_u32(&x2282, &x2283, x11, (arg2[15])); fiat_np521_mulx_u32(&x2284, &x2285, x11, (arg2[14])); fiat_np521_mulx_u32(&x2286, &x2287, x11, (arg2[13])); fiat_np521_mulx_u32(&x2288, &x2289, x11, (arg2[12])); fiat_np521_mulx_u32(&x2290, &x2291, x11, (arg2[11])); fiat_np521_mulx_u32(&x2292, &x2293, x11, (arg2[10])); fiat_np521_mulx_u32(&x2294, &x2295, x11, (arg2[9])); fiat_np521_mulx_u32(&x2296, &x2297, x11, (arg2[8])); fiat_np521_mulx_u32(&x2298, &x2299, x11, (arg2[7])); fiat_np521_mulx_u32(&x2300, &x2301, x11, (arg2[6])); fiat_np521_mulx_u32(&x2302, &x2303, x11, (arg2[5])); fiat_np521_mulx_u32(&x2304, &x2305, x11, (arg2[4])); fiat_np521_mulx_u32(&x2306, &x2307, x11, (arg2[3])); fiat_np521_mulx_u32(&x2308, &x2309, x11, (arg2[2])); fiat_np521_mulx_u32(&x2310, &x2311, x11, (arg2[1])); fiat_np521_mulx_u32(&x2312, &x2313, x11, (arg2[0])); fiat_np521_addcarryx_u32(&x2314, &x2315, 0x0, x2313, x2310); fiat_np521_addcarryx_u32(&x2316, &x2317, x2315, x2311, x2308); fiat_np521_addcarryx_u32(&x2318, &x2319, x2317, x2309, x2306); fiat_np521_addcarryx_u32(&x2320, &x2321, x2319, x2307, x2304); fiat_np521_addcarryx_u32(&x2322, &x2323, x2321, x2305, x2302); fiat_np521_addcarryx_u32(&x2324, &x2325, x2323, x2303, x2300); fiat_np521_addcarryx_u32(&x2326, &x2327, x2325, x2301, x2298); fiat_np521_addcarryx_u32(&x2328, &x2329, x2327, x2299, x2296); fiat_np521_addcarryx_u32(&x2330, &x2331, x2329, x2297, x2294); fiat_np521_addcarryx_u32(&x2332, &x2333, x2331, x2295, x2292); fiat_np521_addcarryx_u32(&x2334, &x2335, x2333, x2293, x2290); fiat_np521_addcarryx_u32(&x2336, &x2337, x2335, x2291, x2288); fiat_np521_addcarryx_u32(&x2338, &x2339, x2337, x2289, x2286); fiat_np521_addcarryx_u32(&x2340, &x2341, x2339, x2287, x2284); fiat_np521_addcarryx_u32(&x2342, &x2343, x2341, x2285, x2282); fiat_np521_addcarryx_u32(&x2344, &x2345, x2343, x2283, x2280); x2346 = (x2345 + x2281); fiat_np521_addcarryx_u32(&x2347, &x2348, 0x0, x2245, x2312); fiat_np521_addcarryx_u32(&x2349, &x2350, x2348, x2247, x2314); fiat_np521_addcarryx_u32(&x2351, &x2352, x2350, x2249, x2316); fiat_np521_addcarryx_u32(&x2353, &x2354, x2352, x2251, x2318); fiat_np521_addcarryx_u32(&x2355, &x2356, x2354, x2253, x2320); fiat_np521_addcarryx_u32(&x2357, &x2358, x2356, x2255, x2322); fiat_np521_addcarryx_u32(&x2359, &x2360, x2358, x2257, x2324); fiat_np521_addcarryx_u32(&x2361, &x2362, x2360, x2259, x2326); fiat_np521_addcarryx_u32(&x2363, &x2364, x2362, x2261, x2328); fiat_np521_addcarryx_u32(&x2365, &x2366, x2364, x2263, x2330); fiat_np521_addcarryx_u32(&x2367, &x2368, x2366, x2265, x2332); fiat_np521_addcarryx_u32(&x2369, &x2370, x2368, x2267, x2334); fiat_np521_addcarryx_u32(&x2371, &x2372, x2370, x2269, x2336); fiat_np521_addcarryx_u32(&x2373, &x2374, x2372, x2271, x2338); fiat_np521_addcarryx_u32(&x2375, &x2376, x2374, x2273, x2340); fiat_np521_addcarryx_u32(&x2377, &x2378, x2376, x2275, x2342); fiat_np521_addcarryx_u32(&x2379, &x2380, x2378, x2277, x2344); fiat_np521_addcarryx_u32(&x2381, &x2382, x2380, x2279, x2346); fiat_np521_mulx_u32(&x2383, &x2384, x2347, UINT32_C(0x79a995c7)); fiat_np521_mulx_u32(&x2385, &x2386, x2383, UINT16_C(0x1ff)); fiat_np521_mulx_u32(&x2387, &x2388, x2383, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x2389, &x2390, x2383, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x2391, &x2392, x2383, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x2393, &x2394, x2383, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x2395, &x2396, x2383, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x2397, &x2398, x2383, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x2399, &x2400, x2383, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x2401, &x2402, x2383, UINT32_C(0xfffffffa)); fiat_np521_mulx_u32(&x2403, &x2404, x2383, UINT32_C(0x51868783)); fiat_np521_mulx_u32(&x2405, &x2406, x2383, UINT32_C(0xbf2f966b)); fiat_np521_mulx_u32(&x2407, &x2408, x2383, UINT32_C(0x7fcc0148)); fiat_np521_mulx_u32(&x2409, &x2410, x2383, UINT32_C(0xf709a5d0)); fiat_np521_mulx_u32(&x2411, &x2412, x2383, UINT32_C(0x3bb5c9b8)); fiat_np521_mulx_u32(&x2413, &x2414, x2383, UINT32_C(0x899c47ae)); fiat_np521_mulx_u32(&x2415, &x2416, x2383, UINT32_C(0xbb6fb71e)); fiat_np521_mulx_u32(&x2417, &x2418, x2383, UINT32_C(0x91386409)); fiat_np521_addcarryx_u32(&x2419, &x2420, 0x0, x2418, x2415); fiat_np521_addcarryx_u32(&x2421, &x2422, x2420, x2416, x2413); fiat_np521_addcarryx_u32(&x2423, &x2424, x2422, x2414, x2411); fiat_np521_addcarryx_u32(&x2425, &x2426, x2424, x2412, x2409); fiat_np521_addcarryx_u32(&x2427, &x2428, x2426, x2410, x2407); fiat_np521_addcarryx_u32(&x2429, &x2430, x2428, x2408, x2405); fiat_np521_addcarryx_u32(&x2431, &x2432, x2430, x2406, x2403); fiat_np521_addcarryx_u32(&x2433, &x2434, x2432, x2404, x2401); fiat_np521_addcarryx_u32(&x2435, &x2436, x2434, x2402, x2399); fiat_np521_addcarryx_u32(&x2437, &x2438, x2436, x2400, x2397); fiat_np521_addcarryx_u32(&x2439, &x2440, x2438, x2398, x2395); fiat_np521_addcarryx_u32(&x2441, &x2442, x2440, x2396, x2393); fiat_np521_addcarryx_u32(&x2443, &x2444, x2442, x2394, x2391); fiat_np521_addcarryx_u32(&x2445, &x2446, x2444, x2392, x2389); fiat_np521_addcarryx_u32(&x2447, &x2448, x2446, x2390, x2387); fiat_np521_addcarryx_u32(&x2449, &x2450, x2448, x2388, x2385); x2451 = (x2450 + x2386); fiat_np521_addcarryx_u32(&x2452, &x2453, 0x0, x2347, x2417); fiat_np521_addcarryx_u32(&x2454, &x2455, x2453, x2349, x2419); fiat_np521_addcarryx_u32(&x2456, &x2457, x2455, x2351, x2421); fiat_np521_addcarryx_u32(&x2458, &x2459, x2457, x2353, x2423); fiat_np521_addcarryx_u32(&x2460, &x2461, x2459, x2355, x2425); fiat_np521_addcarryx_u32(&x2462, &x2463, x2461, x2357, x2427); fiat_np521_addcarryx_u32(&x2464, &x2465, x2463, x2359, x2429); fiat_np521_addcarryx_u32(&x2466, &x2467, x2465, x2361, x2431); fiat_np521_addcarryx_u32(&x2468, &x2469, x2467, x2363, x2433); fiat_np521_addcarryx_u32(&x2470, &x2471, x2469, x2365, x2435); fiat_np521_addcarryx_u32(&x2472, &x2473, x2471, x2367, x2437); fiat_np521_addcarryx_u32(&x2474, &x2475, x2473, x2369, x2439); fiat_np521_addcarryx_u32(&x2476, &x2477, x2475, x2371, x2441); fiat_np521_addcarryx_u32(&x2478, &x2479, x2477, x2373, x2443); fiat_np521_addcarryx_u32(&x2480, &x2481, x2479, x2375, x2445); fiat_np521_addcarryx_u32(&x2482, &x2483, x2481, x2377, x2447); fiat_np521_addcarryx_u32(&x2484, &x2485, x2483, x2379, x2449); fiat_np521_addcarryx_u32(&x2486, &x2487, x2485, x2381, x2451); x2488 = ((uint32_t)x2487 + x2382); fiat_np521_mulx_u32(&x2489, &x2490, x12, (arg2[16])); fiat_np521_mulx_u32(&x2491, &x2492, x12, (arg2[15])); fiat_np521_mulx_u32(&x2493, &x2494, x12, (arg2[14])); fiat_np521_mulx_u32(&x2495, &x2496, x12, (arg2[13])); fiat_np521_mulx_u32(&x2497, &x2498, x12, (arg2[12])); fiat_np521_mulx_u32(&x2499, &x2500, x12, (arg2[11])); fiat_np521_mulx_u32(&x2501, &x2502, x12, (arg2[10])); fiat_np521_mulx_u32(&x2503, &x2504, x12, (arg2[9])); fiat_np521_mulx_u32(&x2505, &x2506, x12, (arg2[8])); fiat_np521_mulx_u32(&x2507, &x2508, x12, (arg2[7])); fiat_np521_mulx_u32(&x2509, &x2510, x12, (arg2[6])); fiat_np521_mulx_u32(&x2511, &x2512, x12, (arg2[5])); fiat_np521_mulx_u32(&x2513, &x2514, x12, (arg2[4])); fiat_np521_mulx_u32(&x2515, &x2516, x12, (arg2[3])); fiat_np521_mulx_u32(&x2517, &x2518, x12, (arg2[2])); fiat_np521_mulx_u32(&x2519, &x2520, x12, (arg2[1])); fiat_np521_mulx_u32(&x2521, &x2522, x12, (arg2[0])); fiat_np521_addcarryx_u32(&x2523, &x2524, 0x0, x2522, x2519); fiat_np521_addcarryx_u32(&x2525, &x2526, x2524, x2520, x2517); fiat_np521_addcarryx_u32(&x2527, &x2528, x2526, x2518, x2515); fiat_np521_addcarryx_u32(&x2529, &x2530, x2528, x2516, x2513); fiat_np521_addcarryx_u32(&x2531, &x2532, x2530, x2514, x2511); fiat_np521_addcarryx_u32(&x2533, &x2534, x2532, x2512, x2509); fiat_np521_addcarryx_u32(&x2535, &x2536, x2534, x2510, x2507); fiat_np521_addcarryx_u32(&x2537, &x2538, x2536, x2508, x2505); fiat_np521_addcarryx_u32(&x2539, &x2540, x2538, x2506, x2503); fiat_np521_addcarryx_u32(&x2541, &x2542, x2540, x2504, x2501); fiat_np521_addcarryx_u32(&x2543, &x2544, x2542, x2502, x2499); fiat_np521_addcarryx_u32(&x2545, &x2546, x2544, x2500, x2497); fiat_np521_addcarryx_u32(&x2547, &x2548, x2546, x2498, x2495); fiat_np521_addcarryx_u32(&x2549, &x2550, x2548, x2496, x2493); fiat_np521_addcarryx_u32(&x2551, &x2552, x2550, x2494, x2491); fiat_np521_addcarryx_u32(&x2553, &x2554, x2552, x2492, x2489); x2555 = (x2554 + x2490); fiat_np521_addcarryx_u32(&x2556, &x2557, 0x0, x2454, x2521); fiat_np521_addcarryx_u32(&x2558, &x2559, x2557, x2456, x2523); fiat_np521_addcarryx_u32(&x2560, &x2561, x2559, x2458, x2525); fiat_np521_addcarryx_u32(&x2562, &x2563, x2561, x2460, x2527); fiat_np521_addcarryx_u32(&x2564, &x2565, x2563, x2462, x2529); fiat_np521_addcarryx_u32(&x2566, &x2567, x2565, x2464, x2531); fiat_np521_addcarryx_u32(&x2568, &x2569, x2567, x2466, x2533); fiat_np521_addcarryx_u32(&x2570, &x2571, x2569, x2468, x2535); fiat_np521_addcarryx_u32(&x2572, &x2573, x2571, x2470, x2537); fiat_np521_addcarryx_u32(&x2574, &x2575, x2573, x2472, x2539); fiat_np521_addcarryx_u32(&x2576, &x2577, x2575, x2474, x2541); fiat_np521_addcarryx_u32(&x2578, &x2579, x2577, x2476, x2543); fiat_np521_addcarryx_u32(&x2580, &x2581, x2579, x2478, x2545); fiat_np521_addcarryx_u32(&x2582, &x2583, x2581, x2480, x2547); fiat_np521_addcarryx_u32(&x2584, &x2585, x2583, x2482, x2549); fiat_np521_addcarryx_u32(&x2586, &x2587, x2585, x2484, x2551); fiat_np521_addcarryx_u32(&x2588, &x2589, x2587, x2486, x2553); fiat_np521_addcarryx_u32(&x2590, &x2591, x2589, x2488, x2555); fiat_np521_mulx_u32(&x2592, &x2593, x2556, UINT32_C(0x79a995c7)); fiat_np521_mulx_u32(&x2594, &x2595, x2592, UINT16_C(0x1ff)); fiat_np521_mulx_u32(&x2596, &x2597, x2592, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x2598, &x2599, x2592, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x2600, &x2601, x2592, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x2602, &x2603, x2592, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x2604, &x2605, x2592, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x2606, &x2607, x2592, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x2608, &x2609, x2592, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x2610, &x2611, x2592, UINT32_C(0xfffffffa)); fiat_np521_mulx_u32(&x2612, &x2613, x2592, UINT32_C(0x51868783)); fiat_np521_mulx_u32(&x2614, &x2615, x2592, UINT32_C(0xbf2f966b)); fiat_np521_mulx_u32(&x2616, &x2617, x2592, UINT32_C(0x7fcc0148)); fiat_np521_mulx_u32(&x2618, &x2619, x2592, UINT32_C(0xf709a5d0)); fiat_np521_mulx_u32(&x2620, &x2621, x2592, UINT32_C(0x3bb5c9b8)); fiat_np521_mulx_u32(&x2622, &x2623, x2592, UINT32_C(0x899c47ae)); fiat_np521_mulx_u32(&x2624, &x2625, x2592, UINT32_C(0xbb6fb71e)); fiat_np521_mulx_u32(&x2626, &x2627, x2592, UINT32_C(0x91386409)); fiat_np521_addcarryx_u32(&x2628, &x2629, 0x0, x2627, x2624); fiat_np521_addcarryx_u32(&x2630, &x2631, x2629, x2625, x2622); fiat_np521_addcarryx_u32(&x2632, &x2633, x2631, x2623, x2620); fiat_np521_addcarryx_u32(&x2634, &x2635, x2633, x2621, x2618); fiat_np521_addcarryx_u32(&x2636, &x2637, x2635, x2619, x2616); fiat_np521_addcarryx_u32(&x2638, &x2639, x2637, x2617, x2614); fiat_np521_addcarryx_u32(&x2640, &x2641, x2639, x2615, x2612); fiat_np521_addcarryx_u32(&x2642, &x2643, x2641, x2613, x2610); fiat_np521_addcarryx_u32(&x2644, &x2645, x2643, x2611, x2608); fiat_np521_addcarryx_u32(&x2646, &x2647, x2645, x2609, x2606); fiat_np521_addcarryx_u32(&x2648, &x2649, x2647, x2607, x2604); fiat_np521_addcarryx_u32(&x2650, &x2651, x2649, x2605, x2602); fiat_np521_addcarryx_u32(&x2652, &x2653, x2651, x2603, x2600); fiat_np521_addcarryx_u32(&x2654, &x2655, x2653, x2601, x2598); fiat_np521_addcarryx_u32(&x2656, &x2657, x2655, x2599, x2596); fiat_np521_addcarryx_u32(&x2658, &x2659, x2657, x2597, x2594); x2660 = (x2659 + x2595); fiat_np521_addcarryx_u32(&x2661, &x2662, 0x0, x2556, x2626); fiat_np521_addcarryx_u32(&x2663, &x2664, x2662, x2558, x2628); fiat_np521_addcarryx_u32(&x2665, &x2666, x2664, x2560, x2630); fiat_np521_addcarryx_u32(&x2667, &x2668, x2666, x2562, x2632); fiat_np521_addcarryx_u32(&x2669, &x2670, x2668, x2564, x2634); fiat_np521_addcarryx_u32(&x2671, &x2672, x2670, x2566, x2636); fiat_np521_addcarryx_u32(&x2673, &x2674, x2672, x2568, x2638); fiat_np521_addcarryx_u32(&x2675, &x2676, x2674, x2570, x2640); fiat_np521_addcarryx_u32(&x2677, &x2678, x2676, x2572, x2642); fiat_np521_addcarryx_u32(&x2679, &x2680, x2678, x2574, x2644); fiat_np521_addcarryx_u32(&x2681, &x2682, x2680, x2576, x2646); fiat_np521_addcarryx_u32(&x2683, &x2684, x2682, x2578, x2648); fiat_np521_addcarryx_u32(&x2685, &x2686, x2684, x2580, x2650); fiat_np521_addcarryx_u32(&x2687, &x2688, x2686, x2582, x2652); fiat_np521_addcarryx_u32(&x2689, &x2690, x2688, x2584, x2654); fiat_np521_addcarryx_u32(&x2691, &x2692, x2690, x2586, x2656); fiat_np521_addcarryx_u32(&x2693, &x2694, x2692, x2588, x2658); fiat_np521_addcarryx_u32(&x2695, &x2696, x2694, x2590, x2660); x2697 = ((uint32_t)x2696 + x2591); fiat_np521_mulx_u32(&x2698, &x2699, x13, (arg2[16])); fiat_np521_mulx_u32(&x2700, &x2701, x13, (arg2[15])); fiat_np521_mulx_u32(&x2702, &x2703, x13, (arg2[14])); fiat_np521_mulx_u32(&x2704, &x2705, x13, (arg2[13])); fiat_np521_mulx_u32(&x2706, &x2707, x13, (arg2[12])); fiat_np521_mulx_u32(&x2708, &x2709, x13, (arg2[11])); fiat_np521_mulx_u32(&x2710, &x2711, x13, (arg2[10])); fiat_np521_mulx_u32(&x2712, &x2713, x13, (arg2[9])); fiat_np521_mulx_u32(&x2714, &x2715, x13, (arg2[8])); fiat_np521_mulx_u32(&x2716, &x2717, x13, (arg2[7])); fiat_np521_mulx_u32(&x2718, &x2719, x13, (arg2[6])); fiat_np521_mulx_u32(&x2720, &x2721, x13, (arg2[5])); fiat_np521_mulx_u32(&x2722, &x2723, x13, (arg2[4])); fiat_np521_mulx_u32(&x2724, &x2725, x13, (arg2[3])); fiat_np521_mulx_u32(&x2726, &x2727, x13, (arg2[2])); fiat_np521_mulx_u32(&x2728, &x2729, x13, (arg2[1])); fiat_np521_mulx_u32(&x2730, &x2731, x13, (arg2[0])); fiat_np521_addcarryx_u32(&x2732, &x2733, 0x0, x2731, x2728); fiat_np521_addcarryx_u32(&x2734, &x2735, x2733, x2729, x2726); fiat_np521_addcarryx_u32(&x2736, &x2737, x2735, x2727, x2724); fiat_np521_addcarryx_u32(&x2738, &x2739, x2737, x2725, x2722); fiat_np521_addcarryx_u32(&x2740, &x2741, x2739, x2723, x2720); fiat_np521_addcarryx_u32(&x2742, &x2743, x2741, x2721, x2718); fiat_np521_addcarryx_u32(&x2744, &x2745, x2743, x2719, x2716); fiat_np521_addcarryx_u32(&x2746, &x2747, x2745, x2717, x2714); fiat_np521_addcarryx_u32(&x2748, &x2749, x2747, x2715, x2712); fiat_np521_addcarryx_u32(&x2750, &x2751, x2749, x2713, x2710); fiat_np521_addcarryx_u32(&x2752, &x2753, x2751, x2711, x2708); fiat_np521_addcarryx_u32(&x2754, &x2755, x2753, x2709, x2706); fiat_np521_addcarryx_u32(&x2756, &x2757, x2755, x2707, x2704); fiat_np521_addcarryx_u32(&x2758, &x2759, x2757, x2705, x2702); fiat_np521_addcarryx_u32(&x2760, &x2761, x2759, x2703, x2700); fiat_np521_addcarryx_u32(&x2762, &x2763, x2761, x2701, x2698); x2764 = (x2763 + x2699); fiat_np521_addcarryx_u32(&x2765, &x2766, 0x0, x2663, x2730); fiat_np521_addcarryx_u32(&x2767, &x2768, x2766, x2665, x2732); fiat_np521_addcarryx_u32(&x2769, &x2770, x2768, x2667, x2734); fiat_np521_addcarryx_u32(&x2771, &x2772, x2770, x2669, x2736); fiat_np521_addcarryx_u32(&x2773, &x2774, x2772, x2671, x2738); fiat_np521_addcarryx_u32(&x2775, &x2776, x2774, x2673, x2740); fiat_np521_addcarryx_u32(&x2777, &x2778, x2776, x2675, x2742); fiat_np521_addcarryx_u32(&x2779, &x2780, x2778, x2677, x2744); fiat_np521_addcarryx_u32(&x2781, &x2782, x2780, x2679, x2746); fiat_np521_addcarryx_u32(&x2783, &x2784, x2782, x2681, x2748); fiat_np521_addcarryx_u32(&x2785, &x2786, x2784, x2683, x2750); fiat_np521_addcarryx_u32(&x2787, &x2788, x2786, x2685, x2752); fiat_np521_addcarryx_u32(&x2789, &x2790, x2788, x2687, x2754); fiat_np521_addcarryx_u32(&x2791, &x2792, x2790, x2689, x2756); fiat_np521_addcarryx_u32(&x2793, &x2794, x2792, x2691, x2758); fiat_np521_addcarryx_u32(&x2795, &x2796, x2794, x2693, x2760); fiat_np521_addcarryx_u32(&x2797, &x2798, x2796, x2695, x2762); fiat_np521_addcarryx_u32(&x2799, &x2800, x2798, x2697, x2764); fiat_np521_mulx_u32(&x2801, &x2802, x2765, UINT32_C(0x79a995c7)); fiat_np521_mulx_u32(&x2803, &x2804, x2801, UINT16_C(0x1ff)); fiat_np521_mulx_u32(&x2805, &x2806, x2801, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x2807, &x2808, x2801, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x2809, &x2810, x2801, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x2811, &x2812, x2801, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x2813, &x2814, x2801, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x2815, &x2816, x2801, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x2817, &x2818, x2801, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x2819, &x2820, x2801, UINT32_C(0xfffffffa)); fiat_np521_mulx_u32(&x2821, &x2822, x2801, UINT32_C(0x51868783)); fiat_np521_mulx_u32(&x2823, &x2824, x2801, UINT32_C(0xbf2f966b)); fiat_np521_mulx_u32(&x2825, &x2826, x2801, UINT32_C(0x7fcc0148)); fiat_np521_mulx_u32(&x2827, &x2828, x2801, UINT32_C(0xf709a5d0)); fiat_np521_mulx_u32(&x2829, &x2830, x2801, UINT32_C(0x3bb5c9b8)); fiat_np521_mulx_u32(&x2831, &x2832, x2801, UINT32_C(0x899c47ae)); fiat_np521_mulx_u32(&x2833, &x2834, x2801, UINT32_C(0xbb6fb71e)); fiat_np521_mulx_u32(&x2835, &x2836, x2801, UINT32_C(0x91386409)); fiat_np521_addcarryx_u32(&x2837, &x2838, 0x0, x2836, x2833); fiat_np521_addcarryx_u32(&x2839, &x2840, x2838, x2834, x2831); fiat_np521_addcarryx_u32(&x2841, &x2842, x2840, x2832, x2829); fiat_np521_addcarryx_u32(&x2843, &x2844, x2842, x2830, x2827); fiat_np521_addcarryx_u32(&x2845, &x2846, x2844, x2828, x2825); fiat_np521_addcarryx_u32(&x2847, &x2848, x2846, x2826, x2823); fiat_np521_addcarryx_u32(&x2849, &x2850, x2848, x2824, x2821); fiat_np521_addcarryx_u32(&x2851, &x2852, x2850, x2822, x2819); fiat_np521_addcarryx_u32(&x2853, &x2854, x2852, x2820, x2817); fiat_np521_addcarryx_u32(&x2855, &x2856, x2854, x2818, x2815); fiat_np521_addcarryx_u32(&x2857, &x2858, x2856, x2816, x2813); fiat_np521_addcarryx_u32(&x2859, &x2860, x2858, x2814, x2811); fiat_np521_addcarryx_u32(&x2861, &x2862, x2860, x2812, x2809); fiat_np521_addcarryx_u32(&x2863, &x2864, x2862, x2810, x2807); fiat_np521_addcarryx_u32(&x2865, &x2866, x2864, x2808, x2805); fiat_np521_addcarryx_u32(&x2867, &x2868, x2866, x2806, x2803); x2869 = (x2868 + x2804); fiat_np521_addcarryx_u32(&x2870, &x2871, 0x0, x2765, x2835); fiat_np521_addcarryx_u32(&x2872, &x2873, x2871, x2767, x2837); fiat_np521_addcarryx_u32(&x2874, &x2875, x2873, x2769, x2839); fiat_np521_addcarryx_u32(&x2876, &x2877, x2875, x2771, x2841); fiat_np521_addcarryx_u32(&x2878, &x2879, x2877, x2773, x2843); fiat_np521_addcarryx_u32(&x2880, &x2881, x2879, x2775, x2845); fiat_np521_addcarryx_u32(&x2882, &x2883, x2881, x2777, x2847); fiat_np521_addcarryx_u32(&x2884, &x2885, x2883, x2779, x2849); fiat_np521_addcarryx_u32(&x2886, &x2887, x2885, x2781, x2851); fiat_np521_addcarryx_u32(&x2888, &x2889, x2887, x2783, x2853); fiat_np521_addcarryx_u32(&x2890, &x2891, x2889, x2785, x2855); fiat_np521_addcarryx_u32(&x2892, &x2893, x2891, x2787, x2857); fiat_np521_addcarryx_u32(&x2894, &x2895, x2893, x2789, x2859); fiat_np521_addcarryx_u32(&x2896, &x2897, x2895, x2791, x2861); fiat_np521_addcarryx_u32(&x2898, &x2899, x2897, x2793, x2863); fiat_np521_addcarryx_u32(&x2900, &x2901, x2899, x2795, x2865); fiat_np521_addcarryx_u32(&x2902, &x2903, x2901, x2797, x2867); fiat_np521_addcarryx_u32(&x2904, &x2905, x2903, x2799, x2869); x2906 = ((uint32_t)x2905 + x2800); fiat_np521_mulx_u32(&x2907, &x2908, x14, (arg2[16])); fiat_np521_mulx_u32(&x2909, &x2910, x14, (arg2[15])); fiat_np521_mulx_u32(&x2911, &x2912, x14, (arg2[14])); fiat_np521_mulx_u32(&x2913, &x2914, x14, (arg2[13])); fiat_np521_mulx_u32(&x2915, &x2916, x14, (arg2[12])); fiat_np521_mulx_u32(&x2917, &x2918, x14, (arg2[11])); fiat_np521_mulx_u32(&x2919, &x2920, x14, (arg2[10])); fiat_np521_mulx_u32(&x2921, &x2922, x14, (arg2[9])); fiat_np521_mulx_u32(&x2923, &x2924, x14, (arg2[8])); fiat_np521_mulx_u32(&x2925, &x2926, x14, (arg2[7])); fiat_np521_mulx_u32(&x2927, &x2928, x14, (arg2[6])); fiat_np521_mulx_u32(&x2929, &x2930, x14, (arg2[5])); fiat_np521_mulx_u32(&x2931, &x2932, x14, (arg2[4])); fiat_np521_mulx_u32(&x2933, &x2934, x14, (arg2[3])); fiat_np521_mulx_u32(&x2935, &x2936, x14, (arg2[2])); fiat_np521_mulx_u32(&x2937, &x2938, x14, (arg2[1])); fiat_np521_mulx_u32(&x2939, &x2940, x14, (arg2[0])); fiat_np521_addcarryx_u32(&x2941, &x2942, 0x0, x2940, x2937); fiat_np521_addcarryx_u32(&x2943, &x2944, x2942, x2938, x2935); fiat_np521_addcarryx_u32(&x2945, &x2946, x2944, x2936, x2933); fiat_np521_addcarryx_u32(&x2947, &x2948, x2946, x2934, x2931); fiat_np521_addcarryx_u32(&x2949, &x2950, x2948, x2932, x2929); fiat_np521_addcarryx_u32(&x2951, &x2952, x2950, x2930, x2927); fiat_np521_addcarryx_u32(&x2953, &x2954, x2952, x2928, x2925); fiat_np521_addcarryx_u32(&x2955, &x2956, x2954, x2926, x2923); fiat_np521_addcarryx_u32(&x2957, &x2958, x2956, x2924, x2921); fiat_np521_addcarryx_u32(&x2959, &x2960, x2958, x2922, x2919); fiat_np521_addcarryx_u32(&x2961, &x2962, x2960, x2920, x2917); fiat_np521_addcarryx_u32(&x2963, &x2964, x2962, x2918, x2915); fiat_np521_addcarryx_u32(&x2965, &x2966, x2964, x2916, x2913); fiat_np521_addcarryx_u32(&x2967, &x2968, x2966, x2914, x2911); fiat_np521_addcarryx_u32(&x2969, &x2970, x2968, x2912, x2909); fiat_np521_addcarryx_u32(&x2971, &x2972, x2970, x2910, x2907); x2973 = (x2972 + x2908); fiat_np521_addcarryx_u32(&x2974, &x2975, 0x0, x2872, x2939); fiat_np521_addcarryx_u32(&x2976, &x2977, x2975, x2874, x2941); fiat_np521_addcarryx_u32(&x2978, &x2979, x2977, x2876, x2943); fiat_np521_addcarryx_u32(&x2980, &x2981, x2979, x2878, x2945); fiat_np521_addcarryx_u32(&x2982, &x2983, x2981, x2880, x2947); fiat_np521_addcarryx_u32(&x2984, &x2985, x2983, x2882, x2949); fiat_np521_addcarryx_u32(&x2986, &x2987, x2985, x2884, x2951); fiat_np521_addcarryx_u32(&x2988, &x2989, x2987, x2886, x2953); fiat_np521_addcarryx_u32(&x2990, &x2991, x2989, x2888, x2955); fiat_np521_addcarryx_u32(&x2992, &x2993, x2991, x2890, x2957); fiat_np521_addcarryx_u32(&x2994, &x2995, x2993, x2892, x2959); fiat_np521_addcarryx_u32(&x2996, &x2997, x2995, x2894, x2961); fiat_np521_addcarryx_u32(&x2998, &x2999, x2997, x2896, x2963); fiat_np521_addcarryx_u32(&x3000, &x3001, x2999, x2898, x2965); fiat_np521_addcarryx_u32(&x3002, &x3003, x3001, x2900, x2967); fiat_np521_addcarryx_u32(&x3004, &x3005, x3003, x2902, x2969); fiat_np521_addcarryx_u32(&x3006, &x3007, x3005, x2904, x2971); fiat_np521_addcarryx_u32(&x3008, &x3009, x3007, x2906, x2973); fiat_np521_mulx_u32(&x3010, &x3011, x2974, UINT32_C(0x79a995c7)); fiat_np521_mulx_u32(&x3012, &x3013, x3010, UINT16_C(0x1ff)); fiat_np521_mulx_u32(&x3014, &x3015, x3010, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x3016, &x3017, x3010, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x3018, &x3019, x3010, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x3020, &x3021, x3010, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x3022, &x3023, x3010, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x3024, &x3025, x3010, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x3026, &x3027, x3010, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x3028, &x3029, x3010, UINT32_C(0xfffffffa)); fiat_np521_mulx_u32(&x3030, &x3031, x3010, UINT32_C(0x51868783)); fiat_np521_mulx_u32(&x3032, &x3033, x3010, UINT32_C(0xbf2f966b)); fiat_np521_mulx_u32(&x3034, &x3035, x3010, UINT32_C(0x7fcc0148)); fiat_np521_mulx_u32(&x3036, &x3037, x3010, UINT32_C(0xf709a5d0)); fiat_np521_mulx_u32(&x3038, &x3039, x3010, UINT32_C(0x3bb5c9b8)); fiat_np521_mulx_u32(&x3040, &x3041, x3010, UINT32_C(0x899c47ae)); fiat_np521_mulx_u32(&x3042, &x3043, x3010, UINT32_C(0xbb6fb71e)); fiat_np521_mulx_u32(&x3044, &x3045, x3010, UINT32_C(0x91386409)); fiat_np521_addcarryx_u32(&x3046, &x3047, 0x0, x3045, x3042); fiat_np521_addcarryx_u32(&x3048, &x3049, x3047, x3043, x3040); fiat_np521_addcarryx_u32(&x3050, &x3051, x3049, x3041, x3038); fiat_np521_addcarryx_u32(&x3052, &x3053, x3051, x3039, x3036); fiat_np521_addcarryx_u32(&x3054, &x3055, x3053, x3037, x3034); fiat_np521_addcarryx_u32(&x3056, &x3057, x3055, x3035, x3032); fiat_np521_addcarryx_u32(&x3058, &x3059, x3057, x3033, x3030); fiat_np521_addcarryx_u32(&x3060, &x3061, x3059, x3031, x3028); fiat_np521_addcarryx_u32(&x3062, &x3063, x3061, x3029, x3026); fiat_np521_addcarryx_u32(&x3064, &x3065, x3063, x3027, x3024); fiat_np521_addcarryx_u32(&x3066, &x3067, x3065, x3025, x3022); fiat_np521_addcarryx_u32(&x3068, &x3069, x3067, x3023, x3020); fiat_np521_addcarryx_u32(&x3070, &x3071, x3069, x3021, x3018); fiat_np521_addcarryx_u32(&x3072, &x3073, x3071, x3019, x3016); fiat_np521_addcarryx_u32(&x3074, &x3075, x3073, x3017, x3014); fiat_np521_addcarryx_u32(&x3076, &x3077, x3075, x3015, x3012); x3078 = (x3077 + x3013); fiat_np521_addcarryx_u32(&x3079, &x3080, 0x0, x2974, x3044); fiat_np521_addcarryx_u32(&x3081, &x3082, x3080, x2976, x3046); fiat_np521_addcarryx_u32(&x3083, &x3084, x3082, x2978, x3048); fiat_np521_addcarryx_u32(&x3085, &x3086, x3084, x2980, x3050); fiat_np521_addcarryx_u32(&x3087, &x3088, x3086, x2982, x3052); fiat_np521_addcarryx_u32(&x3089, &x3090, x3088, x2984, x3054); fiat_np521_addcarryx_u32(&x3091, &x3092, x3090, x2986, x3056); fiat_np521_addcarryx_u32(&x3093, &x3094, x3092, x2988, x3058); fiat_np521_addcarryx_u32(&x3095, &x3096, x3094, x2990, x3060); fiat_np521_addcarryx_u32(&x3097, &x3098, x3096, x2992, x3062); fiat_np521_addcarryx_u32(&x3099, &x3100, x3098, x2994, x3064); fiat_np521_addcarryx_u32(&x3101, &x3102, x3100, x2996, x3066); fiat_np521_addcarryx_u32(&x3103, &x3104, x3102, x2998, x3068); fiat_np521_addcarryx_u32(&x3105, &x3106, x3104, x3000, x3070); fiat_np521_addcarryx_u32(&x3107, &x3108, x3106, x3002, x3072); fiat_np521_addcarryx_u32(&x3109, &x3110, x3108, x3004, x3074); fiat_np521_addcarryx_u32(&x3111, &x3112, x3110, x3006, x3076); fiat_np521_addcarryx_u32(&x3113, &x3114, x3112, x3008, x3078); x3115 = ((uint32_t)x3114 + x3009); fiat_np521_mulx_u32(&x3116, &x3117, x15, (arg2[16])); fiat_np521_mulx_u32(&x3118, &x3119, x15, (arg2[15])); fiat_np521_mulx_u32(&x3120, &x3121, x15, (arg2[14])); fiat_np521_mulx_u32(&x3122, &x3123, x15, (arg2[13])); fiat_np521_mulx_u32(&x3124, &x3125, x15, (arg2[12])); fiat_np521_mulx_u32(&x3126, &x3127, x15, (arg2[11])); fiat_np521_mulx_u32(&x3128, &x3129, x15, (arg2[10])); fiat_np521_mulx_u32(&x3130, &x3131, x15, (arg2[9])); fiat_np521_mulx_u32(&x3132, &x3133, x15, (arg2[8])); fiat_np521_mulx_u32(&x3134, &x3135, x15, (arg2[7])); fiat_np521_mulx_u32(&x3136, &x3137, x15, (arg2[6])); fiat_np521_mulx_u32(&x3138, &x3139, x15, (arg2[5])); fiat_np521_mulx_u32(&x3140, &x3141, x15, (arg2[4])); fiat_np521_mulx_u32(&x3142, &x3143, x15, (arg2[3])); fiat_np521_mulx_u32(&x3144, &x3145, x15, (arg2[2])); fiat_np521_mulx_u32(&x3146, &x3147, x15, (arg2[1])); fiat_np521_mulx_u32(&x3148, &x3149, x15, (arg2[0])); fiat_np521_addcarryx_u32(&x3150, &x3151, 0x0, x3149, x3146); fiat_np521_addcarryx_u32(&x3152, &x3153, x3151, x3147, x3144); fiat_np521_addcarryx_u32(&x3154, &x3155, x3153, x3145, x3142); fiat_np521_addcarryx_u32(&x3156, &x3157, x3155, x3143, x3140); fiat_np521_addcarryx_u32(&x3158, &x3159, x3157, x3141, x3138); fiat_np521_addcarryx_u32(&x3160, &x3161, x3159, x3139, x3136); fiat_np521_addcarryx_u32(&x3162, &x3163, x3161, x3137, x3134); fiat_np521_addcarryx_u32(&x3164, &x3165, x3163, x3135, x3132); fiat_np521_addcarryx_u32(&x3166, &x3167, x3165, x3133, x3130); fiat_np521_addcarryx_u32(&x3168, &x3169, x3167, x3131, x3128); fiat_np521_addcarryx_u32(&x3170, &x3171, x3169, x3129, x3126); fiat_np521_addcarryx_u32(&x3172, &x3173, x3171, x3127, x3124); fiat_np521_addcarryx_u32(&x3174, &x3175, x3173, x3125, x3122); fiat_np521_addcarryx_u32(&x3176, &x3177, x3175, x3123, x3120); fiat_np521_addcarryx_u32(&x3178, &x3179, x3177, x3121, x3118); fiat_np521_addcarryx_u32(&x3180, &x3181, x3179, x3119, x3116); x3182 = (x3181 + x3117); fiat_np521_addcarryx_u32(&x3183, &x3184, 0x0, x3081, x3148); fiat_np521_addcarryx_u32(&x3185, &x3186, x3184, x3083, x3150); fiat_np521_addcarryx_u32(&x3187, &x3188, x3186, x3085, x3152); fiat_np521_addcarryx_u32(&x3189, &x3190, x3188, x3087, x3154); fiat_np521_addcarryx_u32(&x3191, &x3192, x3190, x3089, x3156); fiat_np521_addcarryx_u32(&x3193, &x3194, x3192, x3091, x3158); fiat_np521_addcarryx_u32(&x3195, &x3196, x3194, x3093, x3160); fiat_np521_addcarryx_u32(&x3197, &x3198, x3196, x3095, x3162); fiat_np521_addcarryx_u32(&x3199, &x3200, x3198, x3097, x3164); fiat_np521_addcarryx_u32(&x3201, &x3202, x3200, x3099, x3166); fiat_np521_addcarryx_u32(&x3203, &x3204, x3202, x3101, x3168); fiat_np521_addcarryx_u32(&x3205, &x3206, x3204, x3103, x3170); fiat_np521_addcarryx_u32(&x3207, &x3208, x3206, x3105, x3172); fiat_np521_addcarryx_u32(&x3209, &x3210, x3208, x3107, x3174); fiat_np521_addcarryx_u32(&x3211, &x3212, x3210, x3109, x3176); fiat_np521_addcarryx_u32(&x3213, &x3214, x3212, x3111, x3178); fiat_np521_addcarryx_u32(&x3215, &x3216, x3214, x3113, x3180); fiat_np521_addcarryx_u32(&x3217, &x3218, x3216, x3115, x3182); fiat_np521_mulx_u32(&x3219, &x3220, x3183, UINT32_C(0x79a995c7)); fiat_np521_mulx_u32(&x3221, &x3222, x3219, UINT16_C(0x1ff)); fiat_np521_mulx_u32(&x3223, &x3224, x3219, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x3225, &x3226, x3219, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x3227, &x3228, x3219, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x3229, &x3230, x3219, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x3231, &x3232, x3219, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x3233, &x3234, x3219, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x3235, &x3236, x3219, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x3237, &x3238, x3219, UINT32_C(0xfffffffa)); fiat_np521_mulx_u32(&x3239, &x3240, x3219, UINT32_C(0x51868783)); fiat_np521_mulx_u32(&x3241, &x3242, x3219, UINT32_C(0xbf2f966b)); fiat_np521_mulx_u32(&x3243, &x3244, x3219, UINT32_C(0x7fcc0148)); fiat_np521_mulx_u32(&x3245, &x3246, x3219, UINT32_C(0xf709a5d0)); fiat_np521_mulx_u32(&x3247, &x3248, x3219, UINT32_C(0x3bb5c9b8)); fiat_np521_mulx_u32(&x3249, &x3250, x3219, UINT32_C(0x899c47ae)); fiat_np521_mulx_u32(&x3251, &x3252, x3219, UINT32_C(0xbb6fb71e)); fiat_np521_mulx_u32(&x3253, &x3254, x3219, UINT32_C(0x91386409)); fiat_np521_addcarryx_u32(&x3255, &x3256, 0x0, x3254, x3251); fiat_np521_addcarryx_u32(&x3257, &x3258, x3256, x3252, x3249); fiat_np521_addcarryx_u32(&x3259, &x3260, x3258, x3250, x3247); fiat_np521_addcarryx_u32(&x3261, &x3262, x3260, x3248, x3245); fiat_np521_addcarryx_u32(&x3263, &x3264, x3262, x3246, x3243); fiat_np521_addcarryx_u32(&x3265, &x3266, x3264, x3244, x3241); fiat_np521_addcarryx_u32(&x3267, &x3268, x3266, x3242, x3239); fiat_np521_addcarryx_u32(&x3269, &x3270, x3268, x3240, x3237); fiat_np521_addcarryx_u32(&x3271, &x3272, x3270, x3238, x3235); fiat_np521_addcarryx_u32(&x3273, &x3274, x3272, x3236, x3233); fiat_np521_addcarryx_u32(&x3275, &x3276, x3274, x3234, x3231); fiat_np521_addcarryx_u32(&x3277, &x3278, x3276, x3232, x3229); fiat_np521_addcarryx_u32(&x3279, &x3280, x3278, x3230, x3227); fiat_np521_addcarryx_u32(&x3281, &x3282, x3280, x3228, x3225); fiat_np521_addcarryx_u32(&x3283, &x3284, x3282, x3226, x3223); fiat_np521_addcarryx_u32(&x3285, &x3286, x3284, x3224, x3221); x3287 = (x3286 + x3222); fiat_np521_addcarryx_u32(&x3288, &x3289, 0x0, x3183, x3253); fiat_np521_addcarryx_u32(&x3290, &x3291, x3289, x3185, x3255); fiat_np521_addcarryx_u32(&x3292, &x3293, x3291, x3187, x3257); fiat_np521_addcarryx_u32(&x3294, &x3295, x3293, x3189, x3259); fiat_np521_addcarryx_u32(&x3296, &x3297, x3295, x3191, x3261); fiat_np521_addcarryx_u32(&x3298, &x3299, x3297, x3193, x3263); fiat_np521_addcarryx_u32(&x3300, &x3301, x3299, x3195, x3265); fiat_np521_addcarryx_u32(&x3302, &x3303, x3301, x3197, x3267); fiat_np521_addcarryx_u32(&x3304, &x3305, x3303, x3199, x3269); fiat_np521_addcarryx_u32(&x3306, &x3307, x3305, x3201, x3271); fiat_np521_addcarryx_u32(&x3308, &x3309, x3307, x3203, x3273); fiat_np521_addcarryx_u32(&x3310, &x3311, x3309, x3205, x3275); fiat_np521_addcarryx_u32(&x3312, &x3313, x3311, x3207, x3277); fiat_np521_addcarryx_u32(&x3314, &x3315, x3313, x3209, x3279); fiat_np521_addcarryx_u32(&x3316, &x3317, x3315, x3211, x3281); fiat_np521_addcarryx_u32(&x3318, &x3319, x3317, x3213, x3283); fiat_np521_addcarryx_u32(&x3320, &x3321, x3319, x3215, x3285); fiat_np521_addcarryx_u32(&x3322, &x3323, x3321, x3217, x3287); x3324 = ((uint32_t)x3323 + x3218); fiat_np521_mulx_u32(&x3325, &x3326, x16, (arg2[16])); fiat_np521_mulx_u32(&x3327, &x3328, x16, (arg2[15])); fiat_np521_mulx_u32(&x3329, &x3330, x16, (arg2[14])); fiat_np521_mulx_u32(&x3331, &x3332, x16, (arg2[13])); fiat_np521_mulx_u32(&x3333, &x3334, x16, (arg2[12])); fiat_np521_mulx_u32(&x3335, &x3336, x16, (arg2[11])); fiat_np521_mulx_u32(&x3337, &x3338, x16, (arg2[10])); fiat_np521_mulx_u32(&x3339, &x3340, x16, (arg2[9])); fiat_np521_mulx_u32(&x3341, &x3342, x16, (arg2[8])); fiat_np521_mulx_u32(&x3343, &x3344, x16, (arg2[7])); fiat_np521_mulx_u32(&x3345, &x3346, x16, (arg2[6])); fiat_np521_mulx_u32(&x3347, &x3348, x16, (arg2[5])); fiat_np521_mulx_u32(&x3349, &x3350, x16, (arg2[4])); fiat_np521_mulx_u32(&x3351, &x3352, x16, (arg2[3])); fiat_np521_mulx_u32(&x3353, &x3354, x16, (arg2[2])); fiat_np521_mulx_u32(&x3355, &x3356, x16, (arg2[1])); fiat_np521_mulx_u32(&x3357, &x3358, x16, (arg2[0])); fiat_np521_addcarryx_u32(&x3359, &x3360, 0x0, x3358, x3355); fiat_np521_addcarryx_u32(&x3361, &x3362, x3360, x3356, x3353); fiat_np521_addcarryx_u32(&x3363, &x3364, x3362, x3354, x3351); fiat_np521_addcarryx_u32(&x3365, &x3366, x3364, x3352, x3349); fiat_np521_addcarryx_u32(&x3367, &x3368, x3366, x3350, x3347); fiat_np521_addcarryx_u32(&x3369, &x3370, x3368, x3348, x3345); fiat_np521_addcarryx_u32(&x3371, &x3372, x3370, x3346, x3343); fiat_np521_addcarryx_u32(&x3373, &x3374, x3372, x3344, x3341); fiat_np521_addcarryx_u32(&x3375, &x3376, x3374, x3342, x3339); fiat_np521_addcarryx_u32(&x3377, &x3378, x3376, x3340, x3337); fiat_np521_addcarryx_u32(&x3379, &x3380, x3378, x3338, x3335); fiat_np521_addcarryx_u32(&x3381, &x3382, x3380, x3336, x3333); fiat_np521_addcarryx_u32(&x3383, &x3384, x3382, x3334, x3331); fiat_np521_addcarryx_u32(&x3385, &x3386, x3384, x3332, x3329); fiat_np521_addcarryx_u32(&x3387, &x3388, x3386, x3330, x3327); fiat_np521_addcarryx_u32(&x3389, &x3390, x3388, x3328, x3325); x3391 = (x3390 + x3326); fiat_np521_addcarryx_u32(&x3392, &x3393, 0x0, x3290, x3357); fiat_np521_addcarryx_u32(&x3394, &x3395, x3393, x3292, x3359); fiat_np521_addcarryx_u32(&x3396, &x3397, x3395, x3294, x3361); fiat_np521_addcarryx_u32(&x3398, &x3399, x3397, x3296, x3363); fiat_np521_addcarryx_u32(&x3400, &x3401, x3399, x3298, x3365); fiat_np521_addcarryx_u32(&x3402, &x3403, x3401, x3300, x3367); fiat_np521_addcarryx_u32(&x3404, &x3405, x3403, x3302, x3369); fiat_np521_addcarryx_u32(&x3406, &x3407, x3405, x3304, x3371); fiat_np521_addcarryx_u32(&x3408, &x3409, x3407, x3306, x3373); fiat_np521_addcarryx_u32(&x3410, &x3411, x3409, x3308, x3375); fiat_np521_addcarryx_u32(&x3412, &x3413, x3411, x3310, x3377); fiat_np521_addcarryx_u32(&x3414, &x3415, x3413, x3312, x3379); fiat_np521_addcarryx_u32(&x3416, &x3417, x3415, x3314, x3381); fiat_np521_addcarryx_u32(&x3418, &x3419, x3417, x3316, x3383); fiat_np521_addcarryx_u32(&x3420, &x3421, x3419, x3318, x3385); fiat_np521_addcarryx_u32(&x3422, &x3423, x3421, x3320, x3387); fiat_np521_addcarryx_u32(&x3424, &x3425, x3423, x3322, x3389); fiat_np521_addcarryx_u32(&x3426, &x3427, x3425, x3324, x3391); fiat_np521_mulx_u32(&x3428, &x3429, x3392, UINT32_C(0x79a995c7)); fiat_np521_mulx_u32(&x3430, &x3431, x3428, UINT16_C(0x1ff)); fiat_np521_mulx_u32(&x3432, &x3433, x3428, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x3434, &x3435, x3428, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x3436, &x3437, x3428, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x3438, &x3439, x3428, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x3440, &x3441, x3428, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x3442, &x3443, x3428, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x3444, &x3445, x3428, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x3446, &x3447, x3428, UINT32_C(0xfffffffa)); fiat_np521_mulx_u32(&x3448, &x3449, x3428, UINT32_C(0x51868783)); fiat_np521_mulx_u32(&x3450, &x3451, x3428, UINT32_C(0xbf2f966b)); fiat_np521_mulx_u32(&x3452, &x3453, x3428, UINT32_C(0x7fcc0148)); fiat_np521_mulx_u32(&x3454, &x3455, x3428, UINT32_C(0xf709a5d0)); fiat_np521_mulx_u32(&x3456, &x3457, x3428, UINT32_C(0x3bb5c9b8)); fiat_np521_mulx_u32(&x3458, &x3459, x3428, UINT32_C(0x899c47ae)); fiat_np521_mulx_u32(&x3460, &x3461, x3428, UINT32_C(0xbb6fb71e)); fiat_np521_mulx_u32(&x3462, &x3463, x3428, UINT32_C(0x91386409)); fiat_np521_addcarryx_u32(&x3464, &x3465, 0x0, x3463, x3460); fiat_np521_addcarryx_u32(&x3466, &x3467, x3465, x3461, x3458); fiat_np521_addcarryx_u32(&x3468, &x3469, x3467, x3459, x3456); fiat_np521_addcarryx_u32(&x3470, &x3471, x3469, x3457, x3454); fiat_np521_addcarryx_u32(&x3472, &x3473, x3471, x3455, x3452); fiat_np521_addcarryx_u32(&x3474, &x3475, x3473, x3453, x3450); fiat_np521_addcarryx_u32(&x3476, &x3477, x3475, x3451, x3448); fiat_np521_addcarryx_u32(&x3478, &x3479, x3477, x3449, x3446); fiat_np521_addcarryx_u32(&x3480, &x3481, x3479, x3447, x3444); fiat_np521_addcarryx_u32(&x3482, &x3483, x3481, x3445, x3442); fiat_np521_addcarryx_u32(&x3484, &x3485, x3483, x3443, x3440); fiat_np521_addcarryx_u32(&x3486, &x3487, x3485, x3441, x3438); fiat_np521_addcarryx_u32(&x3488, &x3489, x3487, x3439, x3436); fiat_np521_addcarryx_u32(&x3490, &x3491, x3489, x3437, x3434); fiat_np521_addcarryx_u32(&x3492, &x3493, x3491, x3435, x3432); fiat_np521_addcarryx_u32(&x3494, &x3495, x3493, x3433, x3430); x3496 = (x3495 + x3431); fiat_np521_addcarryx_u32(&x3497, &x3498, 0x0, x3392, x3462); fiat_np521_addcarryx_u32(&x3499, &x3500, x3498, x3394, x3464); fiat_np521_addcarryx_u32(&x3501, &x3502, x3500, x3396, x3466); fiat_np521_addcarryx_u32(&x3503, &x3504, x3502, x3398, x3468); fiat_np521_addcarryx_u32(&x3505, &x3506, x3504, x3400, x3470); fiat_np521_addcarryx_u32(&x3507, &x3508, x3506, x3402, x3472); fiat_np521_addcarryx_u32(&x3509, &x3510, x3508, x3404, x3474); fiat_np521_addcarryx_u32(&x3511, &x3512, x3510, x3406, x3476); fiat_np521_addcarryx_u32(&x3513, &x3514, x3512, x3408, x3478); fiat_np521_addcarryx_u32(&x3515, &x3516, x3514, x3410, x3480); fiat_np521_addcarryx_u32(&x3517, &x3518, x3516, x3412, x3482); fiat_np521_addcarryx_u32(&x3519, &x3520, x3518, x3414, x3484); fiat_np521_addcarryx_u32(&x3521, &x3522, x3520, x3416, x3486); fiat_np521_addcarryx_u32(&x3523, &x3524, x3522, x3418, x3488); fiat_np521_addcarryx_u32(&x3525, &x3526, x3524, x3420, x3490); fiat_np521_addcarryx_u32(&x3527, &x3528, x3526, x3422, x3492); fiat_np521_addcarryx_u32(&x3529, &x3530, x3528, x3424, x3494); fiat_np521_addcarryx_u32(&x3531, &x3532, x3530, x3426, x3496); x3533 = ((uint32_t)x3532 + x3427); fiat_np521_subborrowx_u32(&x3534, &x3535, 0x0, x3499, UINT32_C(0x91386409)); fiat_np521_subborrowx_u32(&x3536, &x3537, x3535, x3501, UINT32_C(0xbb6fb71e)); fiat_np521_subborrowx_u32(&x3538, &x3539, x3537, x3503, UINT32_C(0x899c47ae)); fiat_np521_subborrowx_u32(&x3540, &x3541, x3539, x3505, UINT32_C(0x3bb5c9b8)); fiat_np521_subborrowx_u32(&x3542, &x3543, x3541, x3507, UINT32_C(0xf709a5d0)); fiat_np521_subborrowx_u32(&x3544, &x3545, x3543, x3509, UINT32_C(0x7fcc0148)); fiat_np521_subborrowx_u32(&x3546, &x3547, x3545, x3511, UINT32_C(0xbf2f966b)); fiat_np521_subborrowx_u32(&x3548, &x3549, x3547, x3513, UINT32_C(0x51868783)); fiat_np521_subborrowx_u32(&x3550, &x3551, x3549, x3515, UINT32_C(0xfffffffa)); fiat_np521_subborrowx_u32(&x3552, &x3553, x3551, x3517, UINT32_C(0xffffffff)); fiat_np521_subborrowx_u32(&x3554, &x3555, x3553, x3519, UINT32_C(0xffffffff)); fiat_np521_subborrowx_u32(&x3556, &x3557, x3555, x3521, UINT32_C(0xffffffff)); fiat_np521_subborrowx_u32(&x3558, &x3559, x3557, x3523, UINT32_C(0xffffffff)); fiat_np521_subborrowx_u32(&x3560, &x3561, x3559, x3525, UINT32_C(0xffffffff)); fiat_np521_subborrowx_u32(&x3562, &x3563, x3561, x3527, UINT32_C(0xffffffff)); fiat_np521_subborrowx_u32(&x3564, &x3565, x3563, x3529, UINT32_C(0xffffffff)); fiat_np521_subborrowx_u32(&x3566, &x3567, x3565, x3531, UINT16_C(0x1ff)); fiat_np521_subborrowx_u32(&x3568, &x3569, x3567, x3533, 0x0); fiat_np521_cmovznz_u32(&x3570, x3569, x3534, x3499); fiat_np521_cmovznz_u32(&x3571, x3569, x3536, x3501); fiat_np521_cmovznz_u32(&x3572, x3569, x3538, x3503); fiat_np521_cmovznz_u32(&x3573, x3569, x3540, x3505); fiat_np521_cmovznz_u32(&x3574, x3569, x3542, x3507); fiat_np521_cmovznz_u32(&x3575, x3569, x3544, x3509); fiat_np521_cmovznz_u32(&x3576, x3569, x3546, x3511); fiat_np521_cmovznz_u32(&x3577, x3569, x3548, x3513); fiat_np521_cmovznz_u32(&x3578, x3569, x3550, x3515); fiat_np521_cmovznz_u32(&x3579, x3569, x3552, x3517); fiat_np521_cmovznz_u32(&x3580, x3569, x3554, x3519); fiat_np521_cmovznz_u32(&x3581, x3569, x3556, x3521); fiat_np521_cmovznz_u32(&x3582, x3569, x3558, x3523); fiat_np521_cmovznz_u32(&x3583, x3569, x3560, x3525); fiat_np521_cmovznz_u32(&x3584, x3569, x3562, x3527); fiat_np521_cmovznz_u32(&x3585, x3569, x3564, x3529); fiat_np521_cmovznz_u32(&x3586, x3569, x3566, x3531); out1[0] = x3570; out1[1] = x3571; out1[2] = x3572; out1[3] = x3573; out1[4] = x3574; out1[5] = x3575; out1[6] = x3576; out1[7] = x3577; out1[8] = x3578; out1[9] = x3579; out1[10] = x3580; out1[11] = x3581; out1[12] = x3582; out1[13] = x3583; out1[14] = x3584; out1[15] = x3585; out1[16] = x3586; } /* * The function fiat_np521_add adds two field elements in the Montgomery domain. * * Preconditions: * 0 ≤ eval arg1 < m * 0 ≤ eval arg2 < m * Postconditions: * eval (from_montgomery out1) mod m = (eval (from_montgomery arg1) + eval (from_montgomery arg2)) mod m * 0 ≤ eval out1 < m * */ static void fiat_np521_add(fiat_np521_montgomery_domain_field_element out1, const fiat_np521_montgomery_domain_field_element arg1, const fiat_np521_montgomery_domain_field_element arg2) { uint32_t x1; fiat_np521_uint1 x2; uint32_t x3; fiat_np521_uint1 x4; uint32_t x5; fiat_np521_uint1 x6; uint32_t x7; fiat_np521_uint1 x8; uint32_t x9; fiat_np521_uint1 x10; uint32_t x11; fiat_np521_uint1 x12; uint32_t x13; fiat_np521_uint1 x14; uint32_t x15; fiat_np521_uint1 x16; uint32_t x17; fiat_np521_uint1 x18; uint32_t x19; fiat_np521_uint1 x20; uint32_t x21; fiat_np521_uint1 x22; uint32_t x23; fiat_np521_uint1 x24; uint32_t x25; fiat_np521_uint1 x26; uint32_t x27; fiat_np521_uint1 x28; uint32_t x29; fiat_np521_uint1 x30; uint32_t x31; fiat_np521_uint1 x32; uint32_t x33; fiat_np521_uint1 x34; uint32_t x35; fiat_np521_uint1 x36; uint32_t x37; fiat_np521_uint1 x38; uint32_t x39; fiat_np521_uint1 x40; uint32_t x41; fiat_np521_uint1 x42; uint32_t x43; fiat_np521_uint1 x44; uint32_t x45; fiat_np521_uint1 x46; uint32_t x47; fiat_np521_uint1 x48; uint32_t x49; fiat_np521_uint1 x50; uint32_t x51; fiat_np521_uint1 x52; uint32_t x53; fiat_np521_uint1 x54; uint32_t x55; fiat_np521_uint1 x56; uint32_t x57; fiat_np521_uint1 x58; uint32_t x59; fiat_np521_uint1 x60; uint32_t x61; fiat_np521_uint1 x62; uint32_t x63; fiat_np521_uint1 x64; uint32_t x65; fiat_np521_uint1 x66; uint32_t x67; fiat_np521_uint1 x68; uint32_t x69; fiat_np521_uint1 x70; uint32_t x71; uint32_t x72; uint32_t x73; uint32_t x74; uint32_t x75; uint32_t x76; uint32_t x77; uint32_t x78; uint32_t x79; uint32_t x80; uint32_t x81; uint32_t x82; uint32_t x83; uint32_t x84; uint32_t x85; uint32_t x86; uint32_t x87; fiat_np521_addcarryx_u32(&x1, &x2, 0x0, (arg1[0]), (arg2[0])); fiat_np521_addcarryx_u32(&x3, &x4, x2, (arg1[1]), (arg2[1])); fiat_np521_addcarryx_u32(&x5, &x6, x4, (arg1[2]), (arg2[2])); fiat_np521_addcarryx_u32(&x7, &x8, x6, (arg1[3]), (arg2[3])); fiat_np521_addcarryx_u32(&x9, &x10, x8, (arg1[4]), (arg2[4])); fiat_np521_addcarryx_u32(&x11, &x12, x10, (arg1[5]), (arg2[5])); fiat_np521_addcarryx_u32(&x13, &x14, x12, (arg1[6]), (arg2[6])); fiat_np521_addcarryx_u32(&x15, &x16, x14, (arg1[7]), (arg2[7])); fiat_np521_addcarryx_u32(&x17, &x18, x16, (arg1[8]), (arg2[8])); fiat_np521_addcarryx_u32(&x19, &x20, x18, (arg1[9]), (arg2[9])); fiat_np521_addcarryx_u32(&x21, &x22, x20, (arg1[10]), (arg2[10])); fiat_np521_addcarryx_u32(&x23, &x24, x22, (arg1[11]), (arg2[11])); fiat_np521_addcarryx_u32(&x25, &x26, x24, (arg1[12]), (arg2[12])); fiat_np521_addcarryx_u32(&x27, &x28, x26, (arg1[13]), (arg2[13])); fiat_np521_addcarryx_u32(&x29, &x30, x28, (arg1[14]), (arg2[14])); fiat_np521_addcarryx_u32(&x31, &x32, x30, (arg1[15]), (arg2[15])); fiat_np521_addcarryx_u32(&x33, &x34, x32, (arg1[16]), (arg2[16])); fiat_np521_subborrowx_u32(&x35, &x36, 0x0, x1, UINT32_C(0x91386409)); fiat_np521_subborrowx_u32(&x37, &x38, x36, x3, UINT32_C(0xbb6fb71e)); fiat_np521_subborrowx_u32(&x39, &x40, x38, x5, UINT32_C(0x899c47ae)); fiat_np521_subborrowx_u32(&x41, &x42, x40, x7, UINT32_C(0x3bb5c9b8)); fiat_np521_subborrowx_u32(&x43, &x44, x42, x9, UINT32_C(0xf709a5d0)); fiat_np521_subborrowx_u32(&x45, &x46, x44, x11, UINT32_C(0x7fcc0148)); fiat_np521_subborrowx_u32(&x47, &x48, x46, x13, UINT32_C(0xbf2f966b)); fiat_np521_subborrowx_u32(&x49, &x50, x48, x15, UINT32_C(0x51868783)); fiat_np521_subborrowx_u32(&x51, &x52, x50, x17, UINT32_C(0xfffffffa)); fiat_np521_subborrowx_u32(&x53, &x54, x52, x19, UINT32_C(0xffffffff)); fiat_np521_subborrowx_u32(&x55, &x56, x54, x21, UINT32_C(0xffffffff)); fiat_np521_subborrowx_u32(&x57, &x58, x56, x23, UINT32_C(0xffffffff)); fiat_np521_subborrowx_u32(&x59, &x60, x58, x25, UINT32_C(0xffffffff)); fiat_np521_subborrowx_u32(&x61, &x62, x60, x27, UINT32_C(0xffffffff)); fiat_np521_subborrowx_u32(&x63, &x64, x62, x29, UINT32_C(0xffffffff)); fiat_np521_subborrowx_u32(&x65, &x66, x64, x31, UINT32_C(0xffffffff)); fiat_np521_subborrowx_u32(&x67, &x68, x66, x33, UINT16_C(0x1ff)); fiat_np521_subborrowx_u32(&x69, &x70, x68, x34, 0x0); fiat_np521_cmovznz_u32(&x71, x70, x35, x1); fiat_np521_cmovznz_u32(&x72, x70, x37, x3); fiat_np521_cmovznz_u32(&x73, x70, x39, x5); fiat_np521_cmovznz_u32(&x74, x70, x41, x7); fiat_np521_cmovznz_u32(&x75, x70, x43, x9); fiat_np521_cmovznz_u32(&x76, x70, x45, x11); fiat_np521_cmovznz_u32(&x77, x70, x47, x13); fiat_np521_cmovznz_u32(&x78, x70, x49, x15); fiat_np521_cmovznz_u32(&x79, x70, x51, x17); fiat_np521_cmovznz_u32(&x80, x70, x53, x19); fiat_np521_cmovznz_u32(&x81, x70, x55, x21); fiat_np521_cmovznz_u32(&x82, x70, x57, x23); fiat_np521_cmovznz_u32(&x83, x70, x59, x25); fiat_np521_cmovznz_u32(&x84, x70, x61, x27); fiat_np521_cmovznz_u32(&x85, x70, x63, x29); fiat_np521_cmovznz_u32(&x86, x70, x65, x31); fiat_np521_cmovznz_u32(&x87, x70, x67, x33); out1[0] = x71; out1[1] = x72; out1[2] = x73; out1[3] = x74; out1[4] = x75; out1[5] = x76; out1[6] = x77; out1[7] = x78; out1[8] = x79; out1[9] = x80; out1[10] = x81; out1[11] = x82; out1[12] = x83; out1[13] = x84; out1[14] = x85; out1[15] = x86; out1[16] = x87; } /* * The function fiat_np521_opp negates a field element in the Montgomery domain. * * Preconditions: * 0 ≤ eval arg1 < m * Postconditions: * eval (from_montgomery out1) mod m = -eval (from_montgomery arg1) mod m * 0 ≤ eval out1 < m * */ static void fiat_np521_opp(fiat_np521_montgomery_domain_field_element out1, const fiat_np521_montgomery_domain_field_element arg1) { uint32_t x1; fiat_np521_uint1 x2; uint32_t x3; fiat_np521_uint1 x4; uint32_t x5; fiat_np521_uint1 x6; uint32_t x7; fiat_np521_uint1 x8; uint32_t x9; fiat_np521_uint1 x10; uint32_t x11; fiat_np521_uint1 x12; uint32_t x13; fiat_np521_uint1 x14; uint32_t x15; fiat_np521_uint1 x16; uint32_t x17; fiat_np521_uint1 x18; uint32_t x19; fiat_np521_uint1 x20; uint32_t x21; fiat_np521_uint1 x22; uint32_t x23; fiat_np521_uint1 x24; uint32_t x25; fiat_np521_uint1 x26; uint32_t x27; fiat_np521_uint1 x28; uint32_t x29; fiat_np521_uint1 x30; uint32_t x31; fiat_np521_uint1 x32; uint32_t x33; fiat_np521_uint1 x34; uint32_t x35; uint32_t x36; fiat_np521_uint1 x37; uint32_t x38; fiat_np521_uint1 x39; uint32_t x40; fiat_np521_uint1 x41; uint32_t x42; fiat_np521_uint1 x43; uint32_t x44; fiat_np521_uint1 x45; uint32_t x46; fiat_np521_uint1 x47; uint32_t x48; fiat_np521_uint1 x49; uint32_t x50; fiat_np521_uint1 x51; uint32_t x52; fiat_np521_uint1 x53; uint32_t x54; fiat_np521_uint1 x55; uint32_t x56; fiat_np521_uint1 x57; uint32_t x58; fiat_np521_uint1 x59; uint32_t x60; fiat_np521_uint1 x61; uint32_t x62; fiat_np521_uint1 x63; uint32_t x64; fiat_np521_uint1 x65; uint32_t x66; fiat_np521_uint1 x67; uint32_t x68; fiat_np521_uint1 x69; fiat_np521_subborrowx_u32(&x1, &x2, 0x0, 0x0, (arg1[0])); fiat_np521_subborrowx_u32(&x3, &x4, x2, 0x0, (arg1[1])); fiat_np521_subborrowx_u32(&x5, &x6, x4, 0x0, (arg1[2])); fiat_np521_subborrowx_u32(&x7, &x8, x6, 0x0, (arg1[3])); fiat_np521_subborrowx_u32(&x9, &x10, x8, 0x0, (arg1[4])); fiat_np521_subborrowx_u32(&x11, &x12, x10, 0x0, (arg1[5])); fiat_np521_subborrowx_u32(&x13, &x14, x12, 0x0, (arg1[6])); fiat_np521_subborrowx_u32(&x15, &x16, x14, 0x0, (arg1[7])); fiat_np521_subborrowx_u32(&x17, &x18, x16, 0x0, (arg1[8])); fiat_np521_subborrowx_u32(&x19, &x20, x18, 0x0, (arg1[9])); fiat_np521_subborrowx_u32(&x21, &x22, x20, 0x0, (arg1[10])); fiat_np521_subborrowx_u32(&x23, &x24, x22, 0x0, (arg1[11])); fiat_np521_subborrowx_u32(&x25, &x26, x24, 0x0, (arg1[12])); fiat_np521_subborrowx_u32(&x27, &x28, x26, 0x0, (arg1[13])); fiat_np521_subborrowx_u32(&x29, &x30, x28, 0x0, (arg1[14])); fiat_np521_subborrowx_u32(&x31, &x32, x30, 0x0, (arg1[15])); fiat_np521_subborrowx_u32(&x33, &x34, x32, 0x0, (arg1[16])); fiat_np521_cmovznz_u32(&x35, x34, 0x0, UINT32_C(0xffffffff)); fiat_np521_addcarryx_u32(&x36, &x37, 0x0, x1, (x35 & UINT32_C(0x91386409))); fiat_np521_addcarryx_u32(&x38, &x39, x37, x3, (x35 & UINT32_C(0xbb6fb71e))); fiat_np521_addcarryx_u32(&x40, &x41, x39, x5, (x35 & UINT32_C(0x899c47ae))); fiat_np521_addcarryx_u32(&x42, &x43, x41, x7, (x35 & UINT32_C(0x3bb5c9b8))); fiat_np521_addcarryx_u32(&x44, &x45, x43, x9, (x35 & UINT32_C(0xf709a5d0))); fiat_np521_addcarryx_u32(&x46, &x47, x45, x11, (x35 & UINT32_C(0x7fcc0148))); fiat_np521_addcarryx_u32(&x48, &x49, x47, x13, (x35 & UINT32_C(0xbf2f966b))); fiat_np521_addcarryx_u32(&x50, &x51, x49, x15, (x35 & UINT32_C(0x51868783))); fiat_np521_addcarryx_u32(&x52, &x53, x51, x17, (x35 & UINT32_C(0xfffffffa))); fiat_np521_addcarryx_u32(&x54, &x55, x53, x19, x35); fiat_np521_addcarryx_u32(&x56, &x57, x55, x21, x35); fiat_np521_addcarryx_u32(&x58, &x59, x57, x23, x35); fiat_np521_addcarryx_u32(&x60, &x61, x59, x25, x35); fiat_np521_addcarryx_u32(&x62, &x63, x61, x27, x35); fiat_np521_addcarryx_u32(&x64, &x65, x63, x29, x35); fiat_np521_addcarryx_u32(&x66, &x67, x65, x31, x35); fiat_np521_addcarryx_u32(&x68, &x69, x67, x33, (x35 & UINT16_C(0x1ff))); out1[0] = x36; out1[1] = x38; out1[2] = x40; out1[3] = x42; out1[4] = x44; out1[5] = x46; out1[6] = x48; out1[7] = x50; out1[8] = x52; out1[9] = x54; out1[10] = x56; out1[11] = x58; out1[12] = x60; out1[13] = x62; out1[14] = x64; out1[15] = x66; out1[16] = x68; } /* * The function fiat_np521_from_montgomery translates a field element out of the Montgomery domain. * * Preconditions: * 0 ≤ eval arg1 < m * Postconditions: * eval out1 mod m = (eval arg1 * ((2^32)⁻¹ mod m)^17) mod m * 0 ≤ eval out1 < m * */ static void fiat_np521_from_montgomery(fiat_np521_non_montgomery_domain_field_element out1, const fiat_np521_montgomery_domain_field_element arg1) { uint32_t x1; uint32_t x2; uint32_t x3; uint32_t x4; uint32_t x5; uint32_t x6; uint32_t x7; uint32_t x8; uint32_t x9; uint32_t x10; uint32_t x11; uint32_t x12; uint32_t x13; uint32_t x14; uint32_t x15; uint32_t x16; uint32_t x17; uint32_t x18; uint32_t x19; uint32_t x20; uint32_t x21; uint32_t x22; uint32_t x23; uint32_t x24; uint32_t x25; uint32_t x26; uint32_t x27; uint32_t x28; uint32_t x29; uint32_t x30; uint32_t x31; uint32_t x32; uint32_t x33; uint32_t x34; uint32_t x35; uint32_t x36; uint32_t x37; uint32_t x38; fiat_np521_uint1 x39; uint32_t x40; fiat_np521_uint1 x41; uint32_t x42; fiat_np521_uint1 x43; uint32_t x44; fiat_np521_uint1 x45; uint32_t x46; fiat_np521_uint1 x47; uint32_t x48; fiat_np521_uint1 x49; uint32_t x50; fiat_np521_uint1 x51; uint32_t x52; fiat_np521_uint1 x53; uint32_t x54; fiat_np521_uint1 x55; uint32_t x56; fiat_np521_uint1 x57; uint32_t x58; fiat_np521_uint1 x59; uint32_t x60; fiat_np521_uint1 x61; uint32_t x62; fiat_np521_uint1 x63; uint32_t x64; fiat_np521_uint1 x65; uint32_t x66; fiat_np521_uint1 x67; uint32_t x68; fiat_np521_uint1 x69; uint32_t x70; fiat_np521_uint1 x71; uint32_t x72; fiat_np521_uint1 x73; uint32_t x74; fiat_np521_uint1 x75; uint32_t x76; fiat_np521_uint1 x77; uint32_t x78; fiat_np521_uint1 x79; uint32_t x80; fiat_np521_uint1 x81; uint32_t x82; fiat_np521_uint1 x83; uint32_t x84; fiat_np521_uint1 x85; uint32_t x86; fiat_np521_uint1 x87; uint32_t x88; fiat_np521_uint1 x89; uint32_t x90; fiat_np521_uint1 x91; uint32_t x92; fiat_np521_uint1 x93; uint32_t x94; fiat_np521_uint1 x95; uint32_t x96; fiat_np521_uint1 x97; uint32_t x98; fiat_np521_uint1 x99; uint32_t x100; fiat_np521_uint1 x101; uint32_t x102; fiat_np521_uint1 x103; uint32_t x104; fiat_np521_uint1 x105; uint32_t x106; fiat_np521_uint1 x107; uint32_t x108; fiat_np521_uint1 x109; uint32_t x110; fiat_np521_uint1 x111; uint32_t x112; fiat_np521_uint1 x113; uint32_t x114; fiat_np521_uint1 x115; uint32_t x116; fiat_np521_uint1 x117; uint32_t x118; fiat_np521_uint1 x119; uint32_t x120; fiat_np521_uint1 x121; uint32_t x122; fiat_np521_uint1 x123; uint32_t x124; fiat_np521_uint1 x125; uint32_t x126; fiat_np521_uint1 x127; uint32_t x128; fiat_np521_uint1 x129; uint32_t x130; fiat_np521_uint1 x131; uint32_t x132; fiat_np521_uint1 x133; uint32_t x134; fiat_np521_uint1 x135; uint32_t x136; uint32_t x137; uint32_t x138; uint32_t x139; uint32_t x140; uint32_t x141; uint32_t x142; uint32_t x143; uint32_t x144; uint32_t x145; uint32_t x146; uint32_t x147; uint32_t x148; uint32_t x149; uint32_t x150; uint32_t x151; uint32_t x152; uint32_t x153; uint32_t x154; uint32_t x155; uint32_t x156; uint32_t x157; uint32_t x158; uint32_t x159; uint32_t x160; uint32_t x161; uint32_t x162; uint32_t x163; uint32_t x164; uint32_t x165; uint32_t x166; uint32_t x167; uint32_t x168; uint32_t x169; uint32_t x170; uint32_t x171; uint32_t x172; fiat_np521_uint1 x173; uint32_t x174; fiat_np521_uint1 x175; uint32_t x176; fiat_np521_uint1 x177; uint32_t x178; fiat_np521_uint1 x179; uint32_t x180; fiat_np521_uint1 x181; uint32_t x182; fiat_np521_uint1 x183; uint32_t x184; fiat_np521_uint1 x185; uint32_t x186; fiat_np521_uint1 x187; uint32_t x188; fiat_np521_uint1 x189; uint32_t x190; fiat_np521_uint1 x191; uint32_t x192; fiat_np521_uint1 x193; uint32_t x194; fiat_np521_uint1 x195; uint32_t x196; fiat_np521_uint1 x197; uint32_t x198; fiat_np521_uint1 x199; uint32_t x200; fiat_np521_uint1 x201; uint32_t x202; fiat_np521_uint1 x203; uint32_t x204; fiat_np521_uint1 x205; uint32_t x206; fiat_np521_uint1 x207; uint32_t x208; fiat_np521_uint1 x209; uint32_t x210; fiat_np521_uint1 x211; uint32_t x212; fiat_np521_uint1 x213; uint32_t x214; fiat_np521_uint1 x215; uint32_t x216; fiat_np521_uint1 x217; uint32_t x218; fiat_np521_uint1 x219; uint32_t x220; fiat_np521_uint1 x221; uint32_t x222; fiat_np521_uint1 x223; uint32_t x224; fiat_np521_uint1 x225; uint32_t x226; fiat_np521_uint1 x227; uint32_t x228; fiat_np521_uint1 x229; uint32_t x230; fiat_np521_uint1 x231; uint32_t x232; fiat_np521_uint1 x233; uint32_t x234; fiat_np521_uint1 x235; uint32_t x236; fiat_np521_uint1 x237; uint32_t x238; fiat_np521_uint1 x239; uint32_t x240; fiat_np521_uint1 x241; uint32_t x242; fiat_np521_uint1 x243; uint32_t x244; fiat_np521_uint1 x245; uint32_t x246; fiat_np521_uint1 x247; uint32_t x248; fiat_np521_uint1 x249; uint32_t x250; fiat_np521_uint1 x251; uint32_t x252; fiat_np521_uint1 x253; uint32_t x254; fiat_np521_uint1 x255; uint32_t x256; fiat_np521_uint1 x257; uint32_t x258; fiat_np521_uint1 x259; uint32_t x260; fiat_np521_uint1 x261; uint32_t x262; fiat_np521_uint1 x263; uint32_t x264; fiat_np521_uint1 x265; uint32_t x266; fiat_np521_uint1 x267; uint32_t x268; fiat_np521_uint1 x269; uint32_t x270; uint32_t x271; uint32_t x272; uint32_t x273; uint32_t x274; uint32_t x275; uint32_t x276; uint32_t x277; uint32_t x278; uint32_t x279; uint32_t x280; uint32_t x281; uint32_t x282; uint32_t x283; uint32_t x284; uint32_t x285; uint32_t x286; uint32_t x287; uint32_t x288; uint32_t x289; uint32_t x290; uint32_t x291; uint32_t x292; uint32_t x293; uint32_t x294; uint32_t x295; uint32_t x296; uint32_t x297; uint32_t x298; uint32_t x299; uint32_t x300; uint32_t x301; uint32_t x302; uint32_t x303; uint32_t x304; uint32_t x305; uint32_t x306; fiat_np521_uint1 x307; uint32_t x308; fiat_np521_uint1 x309; uint32_t x310; fiat_np521_uint1 x311; uint32_t x312; fiat_np521_uint1 x313; uint32_t x314; fiat_np521_uint1 x315; uint32_t x316; fiat_np521_uint1 x317; uint32_t x318; fiat_np521_uint1 x319; uint32_t x320; fiat_np521_uint1 x321; uint32_t x322; fiat_np521_uint1 x323; uint32_t x324; fiat_np521_uint1 x325; uint32_t x326; fiat_np521_uint1 x327; uint32_t x328; fiat_np521_uint1 x329; uint32_t x330; fiat_np521_uint1 x331; uint32_t x332; fiat_np521_uint1 x333; uint32_t x334; fiat_np521_uint1 x335; uint32_t x336; fiat_np521_uint1 x337; uint32_t x338; fiat_np521_uint1 x339; uint32_t x340; fiat_np521_uint1 x341; uint32_t x342; fiat_np521_uint1 x343; uint32_t x344; fiat_np521_uint1 x345; uint32_t x346; fiat_np521_uint1 x347; uint32_t x348; fiat_np521_uint1 x349; uint32_t x350; fiat_np521_uint1 x351; uint32_t x352; fiat_np521_uint1 x353; uint32_t x354; fiat_np521_uint1 x355; uint32_t x356; fiat_np521_uint1 x357; uint32_t x358; fiat_np521_uint1 x359; uint32_t x360; fiat_np521_uint1 x361; uint32_t x362; fiat_np521_uint1 x363; uint32_t x364; fiat_np521_uint1 x365; uint32_t x366; fiat_np521_uint1 x367; uint32_t x368; fiat_np521_uint1 x369; uint32_t x370; fiat_np521_uint1 x371; uint32_t x372; fiat_np521_uint1 x373; uint32_t x374; fiat_np521_uint1 x375; uint32_t x376; fiat_np521_uint1 x377; uint32_t x378; fiat_np521_uint1 x379; uint32_t x380; fiat_np521_uint1 x381; uint32_t x382; fiat_np521_uint1 x383; uint32_t x384; fiat_np521_uint1 x385; uint32_t x386; fiat_np521_uint1 x387; uint32_t x388; fiat_np521_uint1 x389; uint32_t x390; fiat_np521_uint1 x391; uint32_t x392; fiat_np521_uint1 x393; uint32_t x394; fiat_np521_uint1 x395; uint32_t x396; fiat_np521_uint1 x397; uint32_t x398; fiat_np521_uint1 x399; uint32_t x400; fiat_np521_uint1 x401; uint32_t x402; fiat_np521_uint1 x403; uint32_t x404; uint32_t x405; uint32_t x406; uint32_t x407; uint32_t x408; uint32_t x409; uint32_t x410; uint32_t x411; uint32_t x412; uint32_t x413; uint32_t x414; uint32_t x415; uint32_t x416; uint32_t x417; uint32_t x418; uint32_t x419; uint32_t x420; uint32_t x421; uint32_t x422; uint32_t x423; uint32_t x424; uint32_t x425; uint32_t x426; uint32_t x427; uint32_t x428; uint32_t x429; uint32_t x430; uint32_t x431; uint32_t x432; uint32_t x433; uint32_t x434; uint32_t x435; uint32_t x436; uint32_t x437; uint32_t x438; uint32_t x439; uint32_t x440; fiat_np521_uint1 x441; uint32_t x442; fiat_np521_uint1 x443; uint32_t x444; fiat_np521_uint1 x445; uint32_t x446; fiat_np521_uint1 x447; uint32_t x448; fiat_np521_uint1 x449; uint32_t x450; fiat_np521_uint1 x451; uint32_t x452; fiat_np521_uint1 x453; uint32_t x454; fiat_np521_uint1 x455; uint32_t x456; fiat_np521_uint1 x457; uint32_t x458; fiat_np521_uint1 x459; uint32_t x460; fiat_np521_uint1 x461; uint32_t x462; fiat_np521_uint1 x463; uint32_t x464; fiat_np521_uint1 x465; uint32_t x466; fiat_np521_uint1 x467; uint32_t x468; fiat_np521_uint1 x469; uint32_t x470; fiat_np521_uint1 x471; uint32_t x472; fiat_np521_uint1 x473; uint32_t x474; fiat_np521_uint1 x475; uint32_t x476; fiat_np521_uint1 x477; uint32_t x478; fiat_np521_uint1 x479; uint32_t x480; fiat_np521_uint1 x481; uint32_t x482; fiat_np521_uint1 x483; uint32_t x484; fiat_np521_uint1 x485; uint32_t x486; fiat_np521_uint1 x487; uint32_t x488; fiat_np521_uint1 x489; uint32_t x490; fiat_np521_uint1 x491; uint32_t x492; fiat_np521_uint1 x493; uint32_t x494; fiat_np521_uint1 x495; uint32_t x496; fiat_np521_uint1 x497; uint32_t x498; fiat_np521_uint1 x499; uint32_t x500; fiat_np521_uint1 x501; uint32_t x502; fiat_np521_uint1 x503; uint32_t x504; fiat_np521_uint1 x505; uint32_t x506; fiat_np521_uint1 x507; uint32_t x508; fiat_np521_uint1 x509; uint32_t x510; fiat_np521_uint1 x511; uint32_t x512; fiat_np521_uint1 x513; uint32_t x514; fiat_np521_uint1 x515; uint32_t x516; fiat_np521_uint1 x517; uint32_t x518; fiat_np521_uint1 x519; uint32_t x520; fiat_np521_uint1 x521; uint32_t x522; fiat_np521_uint1 x523; uint32_t x524; fiat_np521_uint1 x525; uint32_t x526; fiat_np521_uint1 x527; uint32_t x528; fiat_np521_uint1 x529; uint32_t x530; fiat_np521_uint1 x531; uint32_t x532; fiat_np521_uint1 x533; uint32_t x534; fiat_np521_uint1 x535; uint32_t x536; fiat_np521_uint1 x537; uint32_t x538; uint32_t x539; uint32_t x540; uint32_t x541; uint32_t x542; uint32_t x543; uint32_t x544; uint32_t x545; uint32_t x546; uint32_t x547; uint32_t x548; uint32_t x549; uint32_t x550; uint32_t x551; uint32_t x552; uint32_t x553; uint32_t x554; uint32_t x555; uint32_t x556; uint32_t x557; uint32_t x558; uint32_t x559; uint32_t x560; uint32_t x561; uint32_t x562; uint32_t x563; uint32_t x564; uint32_t x565; uint32_t x566; uint32_t x567; uint32_t x568; uint32_t x569; uint32_t x570; uint32_t x571; uint32_t x572; uint32_t x573; uint32_t x574; fiat_np521_uint1 x575; uint32_t x576; fiat_np521_uint1 x577; uint32_t x578; fiat_np521_uint1 x579; uint32_t x580; fiat_np521_uint1 x581; uint32_t x582; fiat_np521_uint1 x583; uint32_t x584; fiat_np521_uint1 x585; uint32_t x586; fiat_np521_uint1 x587; uint32_t x588; fiat_np521_uint1 x589; uint32_t x590; fiat_np521_uint1 x591; uint32_t x592; fiat_np521_uint1 x593; uint32_t x594; fiat_np521_uint1 x595; uint32_t x596; fiat_np521_uint1 x597; uint32_t x598; fiat_np521_uint1 x599; uint32_t x600; fiat_np521_uint1 x601; uint32_t x602; fiat_np521_uint1 x603; uint32_t x604; fiat_np521_uint1 x605; uint32_t x606; fiat_np521_uint1 x607; uint32_t x608; fiat_np521_uint1 x609; uint32_t x610; fiat_np521_uint1 x611; uint32_t x612; fiat_np521_uint1 x613; uint32_t x614; fiat_np521_uint1 x615; uint32_t x616; fiat_np521_uint1 x617; uint32_t x618; fiat_np521_uint1 x619; uint32_t x620; fiat_np521_uint1 x621; uint32_t x622; fiat_np521_uint1 x623; uint32_t x624; fiat_np521_uint1 x625; uint32_t x626; fiat_np521_uint1 x627; uint32_t x628; fiat_np521_uint1 x629; uint32_t x630; fiat_np521_uint1 x631; uint32_t x632; fiat_np521_uint1 x633; uint32_t x634; fiat_np521_uint1 x635; uint32_t x636; fiat_np521_uint1 x637; uint32_t x638; fiat_np521_uint1 x639; uint32_t x640; fiat_np521_uint1 x641; uint32_t x642; fiat_np521_uint1 x643; uint32_t x644; fiat_np521_uint1 x645; uint32_t x646; fiat_np521_uint1 x647; uint32_t x648; fiat_np521_uint1 x649; uint32_t x650; fiat_np521_uint1 x651; uint32_t x652; fiat_np521_uint1 x653; uint32_t x654; fiat_np521_uint1 x655; uint32_t x656; fiat_np521_uint1 x657; uint32_t x658; fiat_np521_uint1 x659; uint32_t x660; fiat_np521_uint1 x661; uint32_t x662; fiat_np521_uint1 x663; uint32_t x664; fiat_np521_uint1 x665; uint32_t x666; fiat_np521_uint1 x667; uint32_t x668; fiat_np521_uint1 x669; uint32_t x670; fiat_np521_uint1 x671; uint32_t x672; uint32_t x673; uint32_t x674; uint32_t x675; uint32_t x676; uint32_t x677; uint32_t x678; uint32_t x679; uint32_t x680; uint32_t x681; uint32_t x682; uint32_t x683; uint32_t x684; uint32_t x685; uint32_t x686; uint32_t x687; uint32_t x688; uint32_t x689; uint32_t x690; uint32_t x691; uint32_t x692; uint32_t x693; uint32_t x694; uint32_t x695; uint32_t x696; uint32_t x697; uint32_t x698; uint32_t x699; uint32_t x700; uint32_t x701; uint32_t x702; uint32_t x703; uint32_t x704; uint32_t x705; uint32_t x706; uint32_t x707; uint32_t x708; fiat_np521_uint1 x709; uint32_t x710; fiat_np521_uint1 x711; uint32_t x712; fiat_np521_uint1 x713; uint32_t x714; fiat_np521_uint1 x715; uint32_t x716; fiat_np521_uint1 x717; uint32_t x718; fiat_np521_uint1 x719; uint32_t x720; fiat_np521_uint1 x721; uint32_t x722; fiat_np521_uint1 x723; uint32_t x724; fiat_np521_uint1 x725; uint32_t x726; fiat_np521_uint1 x727; uint32_t x728; fiat_np521_uint1 x729; uint32_t x730; fiat_np521_uint1 x731; uint32_t x732; fiat_np521_uint1 x733; uint32_t x734; fiat_np521_uint1 x735; uint32_t x736; fiat_np521_uint1 x737; uint32_t x738; fiat_np521_uint1 x739; uint32_t x740; fiat_np521_uint1 x741; uint32_t x742; fiat_np521_uint1 x743; uint32_t x744; fiat_np521_uint1 x745; uint32_t x746; fiat_np521_uint1 x747; uint32_t x748; fiat_np521_uint1 x749; uint32_t x750; fiat_np521_uint1 x751; uint32_t x752; fiat_np521_uint1 x753; uint32_t x754; fiat_np521_uint1 x755; uint32_t x756; fiat_np521_uint1 x757; uint32_t x758; fiat_np521_uint1 x759; uint32_t x760; fiat_np521_uint1 x761; uint32_t x762; fiat_np521_uint1 x763; uint32_t x764; fiat_np521_uint1 x765; uint32_t x766; fiat_np521_uint1 x767; uint32_t x768; fiat_np521_uint1 x769; uint32_t x770; fiat_np521_uint1 x771; uint32_t x772; fiat_np521_uint1 x773; uint32_t x774; fiat_np521_uint1 x775; uint32_t x776; fiat_np521_uint1 x777; uint32_t x778; fiat_np521_uint1 x779; uint32_t x780; fiat_np521_uint1 x781; uint32_t x782; fiat_np521_uint1 x783; uint32_t x784; fiat_np521_uint1 x785; uint32_t x786; fiat_np521_uint1 x787; uint32_t x788; fiat_np521_uint1 x789; uint32_t x790; fiat_np521_uint1 x791; uint32_t x792; fiat_np521_uint1 x793; uint32_t x794; fiat_np521_uint1 x795; uint32_t x796; fiat_np521_uint1 x797; uint32_t x798; fiat_np521_uint1 x799; uint32_t x800; fiat_np521_uint1 x801; uint32_t x802; fiat_np521_uint1 x803; uint32_t x804; fiat_np521_uint1 x805; uint32_t x806; uint32_t x807; uint32_t x808; uint32_t x809; uint32_t x810; uint32_t x811; uint32_t x812; uint32_t x813; uint32_t x814; uint32_t x815; uint32_t x816; uint32_t x817; uint32_t x818; uint32_t x819; uint32_t x820; uint32_t x821; uint32_t x822; uint32_t x823; uint32_t x824; uint32_t x825; uint32_t x826; uint32_t x827; uint32_t x828; uint32_t x829; uint32_t x830; uint32_t x831; uint32_t x832; uint32_t x833; uint32_t x834; uint32_t x835; uint32_t x836; uint32_t x837; uint32_t x838; uint32_t x839; uint32_t x840; uint32_t x841; uint32_t x842; fiat_np521_uint1 x843; uint32_t x844; fiat_np521_uint1 x845; uint32_t x846; fiat_np521_uint1 x847; uint32_t x848; fiat_np521_uint1 x849; uint32_t x850; fiat_np521_uint1 x851; uint32_t x852; fiat_np521_uint1 x853; uint32_t x854; fiat_np521_uint1 x855; uint32_t x856; fiat_np521_uint1 x857; uint32_t x858; fiat_np521_uint1 x859; uint32_t x860; fiat_np521_uint1 x861; uint32_t x862; fiat_np521_uint1 x863; uint32_t x864; fiat_np521_uint1 x865; uint32_t x866; fiat_np521_uint1 x867; uint32_t x868; fiat_np521_uint1 x869; uint32_t x870; fiat_np521_uint1 x871; uint32_t x872; fiat_np521_uint1 x873; uint32_t x874; fiat_np521_uint1 x875; uint32_t x876; fiat_np521_uint1 x877; uint32_t x878; fiat_np521_uint1 x879; uint32_t x880; fiat_np521_uint1 x881; uint32_t x882; fiat_np521_uint1 x883; uint32_t x884; fiat_np521_uint1 x885; uint32_t x886; fiat_np521_uint1 x887; uint32_t x888; fiat_np521_uint1 x889; uint32_t x890; fiat_np521_uint1 x891; uint32_t x892; fiat_np521_uint1 x893; uint32_t x894; fiat_np521_uint1 x895; uint32_t x896; fiat_np521_uint1 x897; uint32_t x898; fiat_np521_uint1 x899; uint32_t x900; fiat_np521_uint1 x901; uint32_t x902; fiat_np521_uint1 x903; uint32_t x904; fiat_np521_uint1 x905; uint32_t x906; fiat_np521_uint1 x907; uint32_t x908; fiat_np521_uint1 x909; uint32_t x910; fiat_np521_uint1 x911; uint32_t x912; fiat_np521_uint1 x913; uint32_t x914; fiat_np521_uint1 x915; uint32_t x916; fiat_np521_uint1 x917; uint32_t x918; fiat_np521_uint1 x919; uint32_t x920; fiat_np521_uint1 x921; uint32_t x922; fiat_np521_uint1 x923; uint32_t x924; fiat_np521_uint1 x925; uint32_t x926; fiat_np521_uint1 x927; uint32_t x928; fiat_np521_uint1 x929; uint32_t x930; fiat_np521_uint1 x931; uint32_t x932; fiat_np521_uint1 x933; uint32_t x934; fiat_np521_uint1 x935; uint32_t x936; fiat_np521_uint1 x937; uint32_t x938; fiat_np521_uint1 x939; uint32_t x940; uint32_t x941; uint32_t x942; uint32_t x943; uint32_t x944; uint32_t x945; uint32_t x946; uint32_t x947; uint32_t x948; uint32_t x949; uint32_t x950; uint32_t x951; uint32_t x952; uint32_t x953; uint32_t x954; uint32_t x955; uint32_t x956; uint32_t x957; uint32_t x958; uint32_t x959; uint32_t x960; uint32_t x961; uint32_t x962; uint32_t x963; uint32_t x964; uint32_t x965; uint32_t x966; uint32_t x967; uint32_t x968; uint32_t x969; uint32_t x970; uint32_t x971; uint32_t x972; uint32_t x973; uint32_t x974; uint32_t x975; uint32_t x976; fiat_np521_uint1 x977; uint32_t x978; fiat_np521_uint1 x979; uint32_t x980; fiat_np521_uint1 x981; uint32_t x982; fiat_np521_uint1 x983; uint32_t x984; fiat_np521_uint1 x985; uint32_t x986; fiat_np521_uint1 x987; uint32_t x988; fiat_np521_uint1 x989; uint32_t x990; fiat_np521_uint1 x991; uint32_t x992; fiat_np521_uint1 x993; uint32_t x994; fiat_np521_uint1 x995; uint32_t x996; fiat_np521_uint1 x997; uint32_t x998; fiat_np521_uint1 x999; uint32_t x1000; fiat_np521_uint1 x1001; uint32_t x1002; fiat_np521_uint1 x1003; uint32_t x1004; fiat_np521_uint1 x1005; uint32_t x1006; fiat_np521_uint1 x1007; uint32_t x1008; fiat_np521_uint1 x1009; uint32_t x1010; fiat_np521_uint1 x1011; uint32_t x1012; fiat_np521_uint1 x1013; uint32_t x1014; fiat_np521_uint1 x1015; uint32_t x1016; fiat_np521_uint1 x1017; uint32_t x1018; fiat_np521_uint1 x1019; uint32_t x1020; fiat_np521_uint1 x1021; uint32_t x1022; fiat_np521_uint1 x1023; uint32_t x1024; fiat_np521_uint1 x1025; uint32_t x1026; fiat_np521_uint1 x1027; uint32_t x1028; fiat_np521_uint1 x1029; uint32_t x1030; fiat_np521_uint1 x1031; uint32_t x1032; fiat_np521_uint1 x1033; uint32_t x1034; fiat_np521_uint1 x1035; uint32_t x1036; fiat_np521_uint1 x1037; uint32_t x1038; fiat_np521_uint1 x1039; uint32_t x1040; fiat_np521_uint1 x1041; uint32_t x1042; fiat_np521_uint1 x1043; uint32_t x1044; fiat_np521_uint1 x1045; uint32_t x1046; fiat_np521_uint1 x1047; uint32_t x1048; fiat_np521_uint1 x1049; uint32_t x1050; fiat_np521_uint1 x1051; uint32_t x1052; fiat_np521_uint1 x1053; uint32_t x1054; fiat_np521_uint1 x1055; uint32_t x1056; fiat_np521_uint1 x1057; uint32_t x1058; fiat_np521_uint1 x1059; uint32_t x1060; fiat_np521_uint1 x1061; uint32_t x1062; fiat_np521_uint1 x1063; uint32_t x1064; fiat_np521_uint1 x1065; uint32_t x1066; fiat_np521_uint1 x1067; uint32_t x1068; fiat_np521_uint1 x1069; uint32_t x1070; fiat_np521_uint1 x1071; uint32_t x1072; fiat_np521_uint1 x1073; uint32_t x1074; uint32_t x1075; uint32_t x1076; uint32_t x1077; uint32_t x1078; uint32_t x1079; uint32_t x1080; uint32_t x1081; uint32_t x1082; uint32_t x1083; uint32_t x1084; uint32_t x1085; uint32_t x1086; uint32_t x1087; uint32_t x1088; uint32_t x1089; uint32_t x1090; uint32_t x1091; uint32_t x1092; uint32_t x1093; uint32_t x1094; uint32_t x1095; uint32_t x1096; uint32_t x1097; uint32_t x1098; uint32_t x1099; uint32_t x1100; uint32_t x1101; uint32_t x1102; uint32_t x1103; uint32_t x1104; uint32_t x1105; uint32_t x1106; uint32_t x1107; uint32_t x1108; uint32_t x1109; uint32_t x1110; fiat_np521_uint1 x1111; uint32_t x1112; fiat_np521_uint1 x1113; uint32_t x1114; fiat_np521_uint1 x1115; uint32_t x1116; fiat_np521_uint1 x1117; uint32_t x1118; fiat_np521_uint1 x1119; uint32_t x1120; fiat_np521_uint1 x1121; uint32_t x1122; fiat_np521_uint1 x1123; uint32_t x1124; fiat_np521_uint1 x1125; uint32_t x1126; fiat_np521_uint1 x1127; uint32_t x1128; fiat_np521_uint1 x1129; uint32_t x1130; fiat_np521_uint1 x1131; uint32_t x1132; fiat_np521_uint1 x1133; uint32_t x1134; fiat_np521_uint1 x1135; uint32_t x1136; fiat_np521_uint1 x1137; uint32_t x1138; fiat_np521_uint1 x1139; uint32_t x1140; fiat_np521_uint1 x1141; uint32_t x1142; fiat_np521_uint1 x1143; uint32_t x1144; fiat_np521_uint1 x1145; uint32_t x1146; fiat_np521_uint1 x1147; uint32_t x1148; fiat_np521_uint1 x1149; uint32_t x1150; fiat_np521_uint1 x1151; uint32_t x1152; fiat_np521_uint1 x1153; uint32_t x1154; fiat_np521_uint1 x1155; uint32_t x1156; fiat_np521_uint1 x1157; uint32_t x1158; fiat_np521_uint1 x1159; uint32_t x1160; fiat_np521_uint1 x1161; uint32_t x1162; fiat_np521_uint1 x1163; uint32_t x1164; fiat_np521_uint1 x1165; uint32_t x1166; fiat_np521_uint1 x1167; uint32_t x1168; fiat_np521_uint1 x1169; uint32_t x1170; fiat_np521_uint1 x1171; uint32_t x1172; fiat_np521_uint1 x1173; uint32_t x1174; fiat_np521_uint1 x1175; uint32_t x1176; fiat_np521_uint1 x1177; uint32_t x1178; fiat_np521_uint1 x1179; uint32_t x1180; fiat_np521_uint1 x1181; uint32_t x1182; fiat_np521_uint1 x1183; uint32_t x1184; fiat_np521_uint1 x1185; uint32_t x1186; fiat_np521_uint1 x1187; uint32_t x1188; fiat_np521_uint1 x1189; uint32_t x1190; fiat_np521_uint1 x1191; uint32_t x1192; fiat_np521_uint1 x1193; uint32_t x1194; fiat_np521_uint1 x1195; uint32_t x1196; fiat_np521_uint1 x1197; uint32_t x1198; fiat_np521_uint1 x1199; uint32_t x1200; fiat_np521_uint1 x1201; uint32_t x1202; fiat_np521_uint1 x1203; uint32_t x1204; fiat_np521_uint1 x1205; uint32_t x1206; fiat_np521_uint1 x1207; uint32_t x1208; uint32_t x1209; uint32_t x1210; uint32_t x1211; uint32_t x1212; uint32_t x1213; uint32_t x1214; uint32_t x1215; uint32_t x1216; uint32_t x1217; uint32_t x1218; uint32_t x1219; uint32_t x1220; uint32_t x1221; uint32_t x1222; uint32_t x1223; uint32_t x1224; uint32_t x1225; uint32_t x1226; uint32_t x1227; uint32_t x1228; uint32_t x1229; uint32_t x1230; uint32_t x1231; uint32_t x1232; uint32_t x1233; uint32_t x1234; uint32_t x1235; uint32_t x1236; uint32_t x1237; uint32_t x1238; uint32_t x1239; uint32_t x1240; uint32_t x1241; uint32_t x1242; uint32_t x1243; uint32_t x1244; fiat_np521_uint1 x1245; uint32_t x1246; fiat_np521_uint1 x1247; uint32_t x1248; fiat_np521_uint1 x1249; uint32_t x1250; fiat_np521_uint1 x1251; uint32_t x1252; fiat_np521_uint1 x1253; uint32_t x1254; fiat_np521_uint1 x1255; uint32_t x1256; fiat_np521_uint1 x1257; uint32_t x1258; fiat_np521_uint1 x1259; uint32_t x1260; fiat_np521_uint1 x1261; uint32_t x1262; fiat_np521_uint1 x1263; uint32_t x1264; fiat_np521_uint1 x1265; uint32_t x1266; fiat_np521_uint1 x1267; uint32_t x1268; fiat_np521_uint1 x1269; uint32_t x1270; fiat_np521_uint1 x1271; uint32_t x1272; fiat_np521_uint1 x1273; uint32_t x1274; fiat_np521_uint1 x1275; uint32_t x1276; fiat_np521_uint1 x1277; uint32_t x1278; fiat_np521_uint1 x1279; uint32_t x1280; fiat_np521_uint1 x1281; uint32_t x1282; fiat_np521_uint1 x1283; uint32_t x1284; fiat_np521_uint1 x1285; uint32_t x1286; fiat_np521_uint1 x1287; uint32_t x1288; fiat_np521_uint1 x1289; uint32_t x1290; fiat_np521_uint1 x1291; uint32_t x1292; fiat_np521_uint1 x1293; uint32_t x1294; fiat_np521_uint1 x1295; uint32_t x1296; fiat_np521_uint1 x1297; uint32_t x1298; fiat_np521_uint1 x1299; uint32_t x1300; fiat_np521_uint1 x1301; uint32_t x1302; fiat_np521_uint1 x1303; uint32_t x1304; fiat_np521_uint1 x1305; uint32_t x1306; fiat_np521_uint1 x1307; uint32_t x1308; fiat_np521_uint1 x1309; uint32_t x1310; fiat_np521_uint1 x1311; uint32_t x1312; fiat_np521_uint1 x1313; uint32_t x1314; fiat_np521_uint1 x1315; uint32_t x1316; fiat_np521_uint1 x1317; uint32_t x1318; fiat_np521_uint1 x1319; uint32_t x1320; fiat_np521_uint1 x1321; uint32_t x1322; fiat_np521_uint1 x1323; uint32_t x1324; fiat_np521_uint1 x1325; uint32_t x1326; fiat_np521_uint1 x1327; uint32_t x1328; fiat_np521_uint1 x1329; uint32_t x1330; fiat_np521_uint1 x1331; uint32_t x1332; fiat_np521_uint1 x1333; uint32_t x1334; fiat_np521_uint1 x1335; uint32_t x1336; fiat_np521_uint1 x1337; uint32_t x1338; fiat_np521_uint1 x1339; uint32_t x1340; fiat_np521_uint1 x1341; uint32_t x1342; uint32_t x1343; uint32_t x1344; uint32_t x1345; uint32_t x1346; uint32_t x1347; uint32_t x1348; uint32_t x1349; uint32_t x1350; uint32_t x1351; uint32_t x1352; uint32_t x1353; uint32_t x1354; uint32_t x1355; uint32_t x1356; uint32_t x1357; uint32_t x1358; uint32_t x1359; uint32_t x1360; uint32_t x1361; uint32_t x1362; uint32_t x1363; uint32_t x1364; uint32_t x1365; uint32_t x1366; uint32_t x1367; uint32_t x1368; uint32_t x1369; uint32_t x1370; uint32_t x1371; uint32_t x1372; uint32_t x1373; uint32_t x1374; uint32_t x1375; uint32_t x1376; uint32_t x1377; uint32_t x1378; fiat_np521_uint1 x1379; uint32_t x1380; fiat_np521_uint1 x1381; uint32_t x1382; fiat_np521_uint1 x1383; uint32_t x1384; fiat_np521_uint1 x1385; uint32_t x1386; fiat_np521_uint1 x1387; uint32_t x1388; fiat_np521_uint1 x1389; uint32_t x1390; fiat_np521_uint1 x1391; uint32_t x1392; fiat_np521_uint1 x1393; uint32_t x1394; fiat_np521_uint1 x1395; uint32_t x1396; fiat_np521_uint1 x1397; uint32_t x1398; fiat_np521_uint1 x1399; uint32_t x1400; fiat_np521_uint1 x1401; uint32_t x1402; fiat_np521_uint1 x1403; uint32_t x1404; fiat_np521_uint1 x1405; uint32_t x1406; fiat_np521_uint1 x1407; uint32_t x1408; fiat_np521_uint1 x1409; uint32_t x1410; fiat_np521_uint1 x1411; uint32_t x1412; fiat_np521_uint1 x1413; uint32_t x1414; fiat_np521_uint1 x1415; uint32_t x1416; fiat_np521_uint1 x1417; uint32_t x1418; fiat_np521_uint1 x1419; uint32_t x1420; fiat_np521_uint1 x1421; uint32_t x1422; fiat_np521_uint1 x1423; uint32_t x1424; fiat_np521_uint1 x1425; uint32_t x1426; fiat_np521_uint1 x1427; uint32_t x1428; fiat_np521_uint1 x1429; uint32_t x1430; fiat_np521_uint1 x1431; uint32_t x1432; fiat_np521_uint1 x1433; uint32_t x1434; fiat_np521_uint1 x1435; uint32_t x1436; fiat_np521_uint1 x1437; uint32_t x1438; fiat_np521_uint1 x1439; uint32_t x1440; fiat_np521_uint1 x1441; uint32_t x1442; fiat_np521_uint1 x1443; uint32_t x1444; fiat_np521_uint1 x1445; uint32_t x1446; fiat_np521_uint1 x1447; uint32_t x1448; fiat_np521_uint1 x1449; uint32_t x1450; fiat_np521_uint1 x1451; uint32_t x1452; fiat_np521_uint1 x1453; uint32_t x1454; fiat_np521_uint1 x1455; uint32_t x1456; fiat_np521_uint1 x1457; uint32_t x1458; fiat_np521_uint1 x1459; uint32_t x1460; fiat_np521_uint1 x1461; uint32_t x1462; fiat_np521_uint1 x1463; uint32_t x1464; fiat_np521_uint1 x1465; uint32_t x1466; fiat_np521_uint1 x1467; uint32_t x1468; fiat_np521_uint1 x1469; uint32_t x1470; fiat_np521_uint1 x1471; uint32_t x1472; fiat_np521_uint1 x1473; uint32_t x1474; fiat_np521_uint1 x1475; uint32_t x1476; uint32_t x1477; uint32_t x1478; uint32_t x1479; uint32_t x1480; uint32_t x1481; uint32_t x1482; uint32_t x1483; uint32_t x1484; uint32_t x1485; uint32_t x1486; uint32_t x1487; uint32_t x1488; uint32_t x1489; uint32_t x1490; uint32_t x1491; uint32_t x1492; uint32_t x1493; uint32_t x1494; uint32_t x1495; uint32_t x1496; uint32_t x1497; uint32_t x1498; uint32_t x1499; uint32_t x1500; uint32_t x1501; uint32_t x1502; uint32_t x1503; uint32_t x1504; uint32_t x1505; uint32_t x1506; uint32_t x1507; uint32_t x1508; uint32_t x1509; uint32_t x1510; uint32_t x1511; uint32_t x1512; fiat_np521_uint1 x1513; uint32_t x1514; fiat_np521_uint1 x1515; uint32_t x1516; fiat_np521_uint1 x1517; uint32_t x1518; fiat_np521_uint1 x1519; uint32_t x1520; fiat_np521_uint1 x1521; uint32_t x1522; fiat_np521_uint1 x1523; uint32_t x1524; fiat_np521_uint1 x1525; uint32_t x1526; fiat_np521_uint1 x1527; uint32_t x1528; fiat_np521_uint1 x1529; uint32_t x1530; fiat_np521_uint1 x1531; uint32_t x1532; fiat_np521_uint1 x1533; uint32_t x1534; fiat_np521_uint1 x1535; uint32_t x1536; fiat_np521_uint1 x1537; uint32_t x1538; fiat_np521_uint1 x1539; uint32_t x1540; fiat_np521_uint1 x1541; uint32_t x1542; fiat_np521_uint1 x1543; uint32_t x1544; fiat_np521_uint1 x1545; uint32_t x1546; fiat_np521_uint1 x1547; uint32_t x1548; fiat_np521_uint1 x1549; uint32_t x1550; fiat_np521_uint1 x1551; uint32_t x1552; fiat_np521_uint1 x1553; uint32_t x1554; fiat_np521_uint1 x1555; uint32_t x1556; fiat_np521_uint1 x1557; uint32_t x1558; fiat_np521_uint1 x1559; uint32_t x1560; fiat_np521_uint1 x1561; uint32_t x1562; fiat_np521_uint1 x1563; uint32_t x1564; fiat_np521_uint1 x1565; uint32_t x1566; fiat_np521_uint1 x1567; uint32_t x1568; fiat_np521_uint1 x1569; uint32_t x1570; fiat_np521_uint1 x1571; uint32_t x1572; fiat_np521_uint1 x1573; uint32_t x1574; fiat_np521_uint1 x1575; uint32_t x1576; fiat_np521_uint1 x1577; uint32_t x1578; fiat_np521_uint1 x1579; uint32_t x1580; fiat_np521_uint1 x1581; uint32_t x1582; fiat_np521_uint1 x1583; uint32_t x1584; fiat_np521_uint1 x1585; uint32_t x1586; fiat_np521_uint1 x1587; uint32_t x1588; fiat_np521_uint1 x1589; uint32_t x1590; fiat_np521_uint1 x1591; uint32_t x1592; fiat_np521_uint1 x1593; uint32_t x1594; fiat_np521_uint1 x1595; uint32_t x1596; fiat_np521_uint1 x1597; uint32_t x1598; fiat_np521_uint1 x1599; uint32_t x1600; fiat_np521_uint1 x1601; uint32_t x1602; fiat_np521_uint1 x1603; uint32_t x1604; fiat_np521_uint1 x1605; uint32_t x1606; fiat_np521_uint1 x1607; uint32_t x1608; fiat_np521_uint1 x1609; uint32_t x1610; uint32_t x1611; uint32_t x1612; uint32_t x1613; uint32_t x1614; uint32_t x1615; uint32_t x1616; uint32_t x1617; uint32_t x1618; uint32_t x1619; uint32_t x1620; uint32_t x1621; uint32_t x1622; uint32_t x1623; uint32_t x1624; uint32_t x1625; uint32_t x1626; uint32_t x1627; uint32_t x1628; uint32_t x1629; uint32_t x1630; uint32_t x1631; uint32_t x1632; uint32_t x1633; uint32_t x1634; uint32_t x1635; uint32_t x1636; uint32_t x1637; uint32_t x1638; uint32_t x1639; uint32_t x1640; uint32_t x1641; uint32_t x1642; uint32_t x1643; uint32_t x1644; uint32_t x1645; uint32_t x1646; fiat_np521_uint1 x1647; uint32_t x1648; fiat_np521_uint1 x1649; uint32_t x1650; fiat_np521_uint1 x1651; uint32_t x1652; fiat_np521_uint1 x1653; uint32_t x1654; fiat_np521_uint1 x1655; uint32_t x1656; fiat_np521_uint1 x1657; uint32_t x1658; fiat_np521_uint1 x1659; uint32_t x1660; fiat_np521_uint1 x1661; uint32_t x1662; fiat_np521_uint1 x1663; uint32_t x1664; fiat_np521_uint1 x1665; uint32_t x1666; fiat_np521_uint1 x1667; uint32_t x1668; fiat_np521_uint1 x1669; uint32_t x1670; fiat_np521_uint1 x1671; uint32_t x1672; fiat_np521_uint1 x1673; uint32_t x1674; fiat_np521_uint1 x1675; uint32_t x1676; fiat_np521_uint1 x1677; uint32_t x1678; fiat_np521_uint1 x1679; uint32_t x1680; fiat_np521_uint1 x1681; uint32_t x1682; fiat_np521_uint1 x1683; uint32_t x1684; fiat_np521_uint1 x1685; uint32_t x1686; fiat_np521_uint1 x1687; uint32_t x1688; fiat_np521_uint1 x1689; uint32_t x1690; fiat_np521_uint1 x1691; uint32_t x1692; fiat_np521_uint1 x1693; uint32_t x1694; fiat_np521_uint1 x1695; uint32_t x1696; fiat_np521_uint1 x1697; uint32_t x1698; fiat_np521_uint1 x1699; uint32_t x1700; fiat_np521_uint1 x1701; uint32_t x1702; fiat_np521_uint1 x1703; uint32_t x1704; fiat_np521_uint1 x1705; uint32_t x1706; fiat_np521_uint1 x1707; uint32_t x1708; fiat_np521_uint1 x1709; uint32_t x1710; fiat_np521_uint1 x1711; uint32_t x1712; fiat_np521_uint1 x1713; uint32_t x1714; fiat_np521_uint1 x1715; uint32_t x1716; fiat_np521_uint1 x1717; uint32_t x1718; fiat_np521_uint1 x1719; uint32_t x1720; fiat_np521_uint1 x1721; uint32_t x1722; fiat_np521_uint1 x1723; uint32_t x1724; fiat_np521_uint1 x1725; uint32_t x1726; fiat_np521_uint1 x1727; uint32_t x1728; fiat_np521_uint1 x1729; uint32_t x1730; fiat_np521_uint1 x1731; uint32_t x1732; fiat_np521_uint1 x1733; uint32_t x1734; fiat_np521_uint1 x1735; uint32_t x1736; fiat_np521_uint1 x1737; uint32_t x1738; fiat_np521_uint1 x1739; uint32_t x1740; fiat_np521_uint1 x1741; uint32_t x1742; fiat_np521_uint1 x1743; uint32_t x1744; uint32_t x1745; uint32_t x1746; uint32_t x1747; uint32_t x1748; uint32_t x1749; uint32_t x1750; uint32_t x1751; uint32_t x1752; uint32_t x1753; uint32_t x1754; uint32_t x1755; uint32_t x1756; uint32_t x1757; uint32_t x1758; uint32_t x1759; uint32_t x1760; uint32_t x1761; uint32_t x1762; uint32_t x1763; uint32_t x1764; uint32_t x1765; uint32_t x1766; uint32_t x1767; uint32_t x1768; uint32_t x1769; uint32_t x1770; uint32_t x1771; uint32_t x1772; uint32_t x1773; uint32_t x1774; uint32_t x1775; uint32_t x1776; uint32_t x1777; uint32_t x1778; uint32_t x1779; uint32_t x1780; fiat_np521_uint1 x1781; uint32_t x1782; fiat_np521_uint1 x1783; uint32_t x1784; fiat_np521_uint1 x1785; uint32_t x1786; fiat_np521_uint1 x1787; uint32_t x1788; fiat_np521_uint1 x1789; uint32_t x1790; fiat_np521_uint1 x1791; uint32_t x1792; fiat_np521_uint1 x1793; uint32_t x1794; fiat_np521_uint1 x1795; uint32_t x1796; fiat_np521_uint1 x1797; uint32_t x1798; fiat_np521_uint1 x1799; uint32_t x1800; fiat_np521_uint1 x1801; uint32_t x1802; fiat_np521_uint1 x1803; uint32_t x1804; fiat_np521_uint1 x1805; uint32_t x1806; fiat_np521_uint1 x1807; uint32_t x1808; fiat_np521_uint1 x1809; uint32_t x1810; fiat_np521_uint1 x1811; uint32_t x1812; fiat_np521_uint1 x1813; uint32_t x1814; fiat_np521_uint1 x1815; uint32_t x1816; fiat_np521_uint1 x1817; uint32_t x1818; fiat_np521_uint1 x1819; uint32_t x1820; fiat_np521_uint1 x1821; uint32_t x1822; fiat_np521_uint1 x1823; uint32_t x1824; fiat_np521_uint1 x1825; uint32_t x1826; fiat_np521_uint1 x1827; uint32_t x1828; fiat_np521_uint1 x1829; uint32_t x1830; fiat_np521_uint1 x1831; uint32_t x1832; fiat_np521_uint1 x1833; uint32_t x1834; fiat_np521_uint1 x1835; uint32_t x1836; fiat_np521_uint1 x1837; uint32_t x1838; fiat_np521_uint1 x1839; uint32_t x1840; fiat_np521_uint1 x1841; uint32_t x1842; fiat_np521_uint1 x1843; uint32_t x1844; fiat_np521_uint1 x1845; uint32_t x1846; fiat_np521_uint1 x1847; uint32_t x1848; fiat_np521_uint1 x1849; uint32_t x1850; fiat_np521_uint1 x1851; uint32_t x1852; fiat_np521_uint1 x1853; uint32_t x1854; fiat_np521_uint1 x1855; uint32_t x1856; fiat_np521_uint1 x1857; uint32_t x1858; fiat_np521_uint1 x1859; uint32_t x1860; fiat_np521_uint1 x1861; uint32_t x1862; fiat_np521_uint1 x1863; uint32_t x1864; fiat_np521_uint1 x1865; uint32_t x1866; fiat_np521_uint1 x1867; uint32_t x1868; fiat_np521_uint1 x1869; uint32_t x1870; fiat_np521_uint1 x1871; uint32_t x1872; fiat_np521_uint1 x1873; uint32_t x1874; fiat_np521_uint1 x1875; uint32_t x1876; fiat_np521_uint1 x1877; uint32_t x1878; uint32_t x1879; uint32_t x1880; uint32_t x1881; uint32_t x1882; uint32_t x1883; uint32_t x1884; uint32_t x1885; uint32_t x1886; uint32_t x1887; uint32_t x1888; uint32_t x1889; uint32_t x1890; uint32_t x1891; uint32_t x1892; uint32_t x1893; uint32_t x1894; uint32_t x1895; uint32_t x1896; uint32_t x1897; uint32_t x1898; uint32_t x1899; uint32_t x1900; uint32_t x1901; uint32_t x1902; uint32_t x1903; uint32_t x1904; uint32_t x1905; uint32_t x1906; uint32_t x1907; uint32_t x1908; uint32_t x1909; uint32_t x1910; uint32_t x1911; uint32_t x1912; uint32_t x1913; uint32_t x1914; fiat_np521_uint1 x1915; uint32_t x1916; fiat_np521_uint1 x1917; uint32_t x1918; fiat_np521_uint1 x1919; uint32_t x1920; fiat_np521_uint1 x1921; uint32_t x1922; fiat_np521_uint1 x1923; uint32_t x1924; fiat_np521_uint1 x1925; uint32_t x1926; fiat_np521_uint1 x1927; uint32_t x1928; fiat_np521_uint1 x1929; uint32_t x1930; fiat_np521_uint1 x1931; uint32_t x1932; fiat_np521_uint1 x1933; uint32_t x1934; fiat_np521_uint1 x1935; uint32_t x1936; fiat_np521_uint1 x1937; uint32_t x1938; fiat_np521_uint1 x1939; uint32_t x1940; fiat_np521_uint1 x1941; uint32_t x1942; fiat_np521_uint1 x1943; uint32_t x1944; fiat_np521_uint1 x1945; uint32_t x1946; fiat_np521_uint1 x1947; uint32_t x1948; fiat_np521_uint1 x1949; uint32_t x1950; fiat_np521_uint1 x1951; uint32_t x1952; fiat_np521_uint1 x1953; uint32_t x1954; fiat_np521_uint1 x1955; uint32_t x1956; fiat_np521_uint1 x1957; uint32_t x1958; fiat_np521_uint1 x1959; uint32_t x1960; fiat_np521_uint1 x1961; uint32_t x1962; fiat_np521_uint1 x1963; uint32_t x1964; fiat_np521_uint1 x1965; uint32_t x1966; fiat_np521_uint1 x1967; uint32_t x1968; fiat_np521_uint1 x1969; uint32_t x1970; fiat_np521_uint1 x1971; uint32_t x1972; fiat_np521_uint1 x1973; uint32_t x1974; fiat_np521_uint1 x1975; uint32_t x1976; fiat_np521_uint1 x1977; uint32_t x1978; fiat_np521_uint1 x1979; uint32_t x1980; fiat_np521_uint1 x1981; uint32_t x1982; fiat_np521_uint1 x1983; uint32_t x1984; fiat_np521_uint1 x1985; uint32_t x1986; fiat_np521_uint1 x1987; uint32_t x1988; fiat_np521_uint1 x1989; uint32_t x1990; fiat_np521_uint1 x1991; uint32_t x1992; fiat_np521_uint1 x1993; uint32_t x1994; fiat_np521_uint1 x1995; uint32_t x1996; fiat_np521_uint1 x1997; uint32_t x1998; fiat_np521_uint1 x1999; uint32_t x2000; fiat_np521_uint1 x2001; uint32_t x2002; fiat_np521_uint1 x2003; uint32_t x2004; fiat_np521_uint1 x2005; uint32_t x2006; fiat_np521_uint1 x2007; uint32_t x2008; fiat_np521_uint1 x2009; uint32_t x2010; fiat_np521_uint1 x2011; uint32_t x2012; uint32_t x2013; uint32_t x2014; uint32_t x2015; uint32_t x2016; uint32_t x2017; uint32_t x2018; uint32_t x2019; uint32_t x2020; uint32_t x2021; uint32_t x2022; uint32_t x2023; uint32_t x2024; uint32_t x2025; uint32_t x2026; uint32_t x2027; uint32_t x2028; uint32_t x2029; uint32_t x2030; uint32_t x2031; uint32_t x2032; uint32_t x2033; uint32_t x2034; uint32_t x2035; uint32_t x2036; uint32_t x2037; uint32_t x2038; uint32_t x2039; uint32_t x2040; uint32_t x2041; uint32_t x2042; uint32_t x2043; uint32_t x2044; uint32_t x2045; uint32_t x2046; uint32_t x2047; uint32_t x2048; fiat_np521_uint1 x2049; uint32_t x2050; fiat_np521_uint1 x2051; uint32_t x2052; fiat_np521_uint1 x2053; uint32_t x2054; fiat_np521_uint1 x2055; uint32_t x2056; fiat_np521_uint1 x2057; uint32_t x2058; fiat_np521_uint1 x2059; uint32_t x2060; fiat_np521_uint1 x2061; uint32_t x2062; fiat_np521_uint1 x2063; uint32_t x2064; fiat_np521_uint1 x2065; uint32_t x2066; fiat_np521_uint1 x2067; uint32_t x2068; fiat_np521_uint1 x2069; uint32_t x2070; fiat_np521_uint1 x2071; uint32_t x2072; fiat_np521_uint1 x2073; uint32_t x2074; fiat_np521_uint1 x2075; uint32_t x2076; fiat_np521_uint1 x2077; uint32_t x2078; fiat_np521_uint1 x2079; uint32_t x2080; fiat_np521_uint1 x2081; uint32_t x2082; fiat_np521_uint1 x2083; uint32_t x2084; fiat_np521_uint1 x2085; uint32_t x2086; fiat_np521_uint1 x2087; uint32_t x2088; fiat_np521_uint1 x2089; uint32_t x2090; fiat_np521_uint1 x2091; uint32_t x2092; fiat_np521_uint1 x2093; uint32_t x2094; fiat_np521_uint1 x2095; uint32_t x2096; fiat_np521_uint1 x2097; uint32_t x2098; fiat_np521_uint1 x2099; uint32_t x2100; fiat_np521_uint1 x2101; uint32_t x2102; fiat_np521_uint1 x2103; uint32_t x2104; fiat_np521_uint1 x2105; uint32_t x2106; fiat_np521_uint1 x2107; uint32_t x2108; fiat_np521_uint1 x2109; uint32_t x2110; fiat_np521_uint1 x2111; uint32_t x2112; fiat_np521_uint1 x2113; uint32_t x2114; fiat_np521_uint1 x2115; uint32_t x2116; fiat_np521_uint1 x2117; uint32_t x2118; fiat_np521_uint1 x2119; uint32_t x2120; fiat_np521_uint1 x2121; uint32_t x2122; fiat_np521_uint1 x2123; uint32_t x2124; fiat_np521_uint1 x2125; uint32_t x2126; fiat_np521_uint1 x2127; uint32_t x2128; fiat_np521_uint1 x2129; uint32_t x2130; fiat_np521_uint1 x2131; uint32_t x2132; fiat_np521_uint1 x2133; uint32_t x2134; fiat_np521_uint1 x2135; uint32_t x2136; fiat_np521_uint1 x2137; uint32_t x2138; fiat_np521_uint1 x2139; uint32_t x2140; fiat_np521_uint1 x2141; uint32_t x2142; fiat_np521_uint1 x2143; uint32_t x2144; fiat_np521_uint1 x2145; uint32_t x2146; uint32_t x2147; uint32_t x2148; uint32_t x2149; uint32_t x2150; uint32_t x2151; uint32_t x2152; uint32_t x2153; uint32_t x2154; uint32_t x2155; uint32_t x2156; uint32_t x2157; uint32_t x2158; uint32_t x2159; uint32_t x2160; uint32_t x2161; uint32_t x2162; uint32_t x2163; uint32_t x2164; uint32_t x2165; uint32_t x2166; uint32_t x2167; uint32_t x2168; uint32_t x2169; uint32_t x2170; uint32_t x2171; uint32_t x2172; uint32_t x2173; uint32_t x2174; uint32_t x2175; uint32_t x2176; uint32_t x2177; uint32_t x2178; uint32_t x2179; uint32_t x2180; uint32_t x2181; uint32_t x2182; fiat_np521_uint1 x2183; uint32_t x2184; fiat_np521_uint1 x2185; uint32_t x2186; fiat_np521_uint1 x2187; uint32_t x2188; fiat_np521_uint1 x2189; uint32_t x2190; fiat_np521_uint1 x2191; uint32_t x2192; fiat_np521_uint1 x2193; uint32_t x2194; fiat_np521_uint1 x2195; uint32_t x2196; fiat_np521_uint1 x2197; uint32_t x2198; fiat_np521_uint1 x2199; uint32_t x2200; fiat_np521_uint1 x2201; uint32_t x2202; fiat_np521_uint1 x2203; uint32_t x2204; fiat_np521_uint1 x2205; uint32_t x2206; fiat_np521_uint1 x2207; uint32_t x2208; fiat_np521_uint1 x2209; uint32_t x2210; fiat_np521_uint1 x2211; uint32_t x2212; fiat_np521_uint1 x2213; uint32_t x2214; fiat_np521_uint1 x2215; uint32_t x2216; fiat_np521_uint1 x2217; uint32_t x2218; fiat_np521_uint1 x2219; uint32_t x2220; fiat_np521_uint1 x2221; uint32_t x2222; fiat_np521_uint1 x2223; uint32_t x2224; fiat_np521_uint1 x2225; uint32_t x2226; fiat_np521_uint1 x2227; uint32_t x2228; fiat_np521_uint1 x2229; uint32_t x2230; fiat_np521_uint1 x2231; uint32_t x2232; fiat_np521_uint1 x2233; uint32_t x2234; fiat_np521_uint1 x2235; uint32_t x2236; fiat_np521_uint1 x2237; uint32_t x2238; fiat_np521_uint1 x2239; uint32_t x2240; fiat_np521_uint1 x2241; uint32_t x2242; fiat_np521_uint1 x2243; uint32_t x2244; fiat_np521_uint1 x2245; uint32_t x2246; fiat_np521_uint1 x2247; uint32_t x2248; uint32_t x2249; fiat_np521_uint1 x2250; uint32_t x2251; fiat_np521_uint1 x2252; uint32_t x2253; fiat_np521_uint1 x2254; uint32_t x2255; fiat_np521_uint1 x2256; uint32_t x2257; fiat_np521_uint1 x2258; uint32_t x2259; fiat_np521_uint1 x2260; uint32_t x2261; fiat_np521_uint1 x2262; uint32_t x2263; fiat_np521_uint1 x2264; uint32_t x2265; fiat_np521_uint1 x2266; uint32_t x2267; fiat_np521_uint1 x2268; uint32_t x2269; fiat_np521_uint1 x2270; uint32_t x2271; fiat_np521_uint1 x2272; uint32_t x2273; fiat_np521_uint1 x2274; uint32_t x2275; fiat_np521_uint1 x2276; uint32_t x2277; fiat_np521_uint1 x2278; uint32_t x2279; fiat_np521_uint1 x2280; uint32_t x2281; fiat_np521_uint1 x2282; uint32_t x2283; fiat_np521_uint1 x2284; uint32_t x2285; uint32_t x2286; uint32_t x2287; uint32_t x2288; uint32_t x2289; uint32_t x2290; uint32_t x2291; uint32_t x2292; uint32_t x2293; uint32_t x2294; uint32_t x2295; uint32_t x2296; uint32_t x2297; uint32_t x2298; uint32_t x2299; uint32_t x2300; uint32_t x2301; x1 = (arg1[0]); fiat_np521_mulx_u32(&x2, &x3, x1, UINT32_C(0x79a995c7)); fiat_np521_mulx_u32(&x4, &x5, x2, UINT16_C(0x1ff)); fiat_np521_mulx_u32(&x6, &x7, x2, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x8, &x9, x2, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x10, &x11, x2, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x12, &x13, x2, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x14, &x15, x2, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x16, &x17, x2, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x18, &x19, x2, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x20, &x21, x2, UINT32_C(0xfffffffa)); fiat_np521_mulx_u32(&x22, &x23, x2, UINT32_C(0x51868783)); fiat_np521_mulx_u32(&x24, &x25, x2, UINT32_C(0xbf2f966b)); fiat_np521_mulx_u32(&x26, &x27, x2, UINT32_C(0x7fcc0148)); fiat_np521_mulx_u32(&x28, &x29, x2, UINT32_C(0xf709a5d0)); fiat_np521_mulx_u32(&x30, &x31, x2, UINT32_C(0x3bb5c9b8)); fiat_np521_mulx_u32(&x32, &x33, x2, UINT32_C(0x899c47ae)); fiat_np521_mulx_u32(&x34, &x35, x2, UINT32_C(0xbb6fb71e)); fiat_np521_mulx_u32(&x36, &x37, x2, UINT32_C(0x91386409)); fiat_np521_addcarryx_u32(&x38, &x39, 0x0, x37, x34); fiat_np521_addcarryx_u32(&x40, &x41, x39, x35, x32); fiat_np521_addcarryx_u32(&x42, &x43, x41, x33, x30); fiat_np521_addcarryx_u32(&x44, &x45, x43, x31, x28); fiat_np521_addcarryx_u32(&x46, &x47, x45, x29, x26); fiat_np521_addcarryx_u32(&x48, &x49, x47, x27, x24); fiat_np521_addcarryx_u32(&x50, &x51, x49, x25, x22); fiat_np521_addcarryx_u32(&x52, &x53, x51, x23, x20); fiat_np521_addcarryx_u32(&x54, &x55, x53, x21, x18); fiat_np521_addcarryx_u32(&x56, &x57, x55, x19, x16); fiat_np521_addcarryx_u32(&x58, &x59, x57, x17, x14); fiat_np521_addcarryx_u32(&x60, &x61, x59, x15, x12); fiat_np521_addcarryx_u32(&x62, &x63, x61, x13, x10); fiat_np521_addcarryx_u32(&x64, &x65, x63, x11, x8); fiat_np521_addcarryx_u32(&x66, &x67, x65, x9, x6); fiat_np521_addcarryx_u32(&x68, &x69, x67, x7, x4); fiat_np521_addcarryx_u32(&x70, &x71, 0x0, x1, x36); fiat_np521_addcarryx_u32(&x72, &x73, x71, 0x0, x38); fiat_np521_addcarryx_u32(&x74, &x75, x73, 0x0, x40); fiat_np521_addcarryx_u32(&x76, &x77, x75, 0x0, x42); fiat_np521_addcarryx_u32(&x78, &x79, x77, 0x0, x44); fiat_np521_addcarryx_u32(&x80, &x81, x79, 0x0, x46); fiat_np521_addcarryx_u32(&x82, &x83, x81, 0x0, x48); fiat_np521_addcarryx_u32(&x84, &x85, x83, 0x0, x50); fiat_np521_addcarryx_u32(&x86, &x87, x85, 0x0, x52); fiat_np521_addcarryx_u32(&x88, &x89, x87, 0x0, x54); fiat_np521_addcarryx_u32(&x90, &x91, x89, 0x0, x56); fiat_np521_addcarryx_u32(&x92, &x93, x91, 0x0, x58); fiat_np521_addcarryx_u32(&x94, &x95, x93, 0x0, x60); fiat_np521_addcarryx_u32(&x96, &x97, x95, 0x0, x62); fiat_np521_addcarryx_u32(&x98, &x99, x97, 0x0, x64); fiat_np521_addcarryx_u32(&x100, &x101, x99, 0x0, x66); fiat_np521_addcarryx_u32(&x102, &x103, x101, 0x0, x68); fiat_np521_addcarryx_u32(&x104, &x105, 0x0, x72, (arg1[1])); fiat_np521_addcarryx_u32(&x106, &x107, x105, x74, 0x0); fiat_np521_addcarryx_u32(&x108, &x109, x107, x76, 0x0); fiat_np521_addcarryx_u32(&x110, &x111, x109, x78, 0x0); fiat_np521_addcarryx_u32(&x112, &x113, x111, x80, 0x0); fiat_np521_addcarryx_u32(&x114, &x115, x113, x82, 0x0); fiat_np521_addcarryx_u32(&x116, &x117, x115, x84, 0x0); fiat_np521_addcarryx_u32(&x118, &x119, x117, x86, 0x0); fiat_np521_addcarryx_u32(&x120, &x121, x119, x88, 0x0); fiat_np521_addcarryx_u32(&x122, &x123, x121, x90, 0x0); fiat_np521_addcarryx_u32(&x124, &x125, x123, x92, 0x0); fiat_np521_addcarryx_u32(&x126, &x127, x125, x94, 0x0); fiat_np521_addcarryx_u32(&x128, &x129, x127, x96, 0x0); fiat_np521_addcarryx_u32(&x130, &x131, x129, x98, 0x0); fiat_np521_addcarryx_u32(&x132, &x133, x131, x100, 0x0); fiat_np521_addcarryx_u32(&x134, &x135, x133, x102, 0x0); fiat_np521_mulx_u32(&x136, &x137, x104, UINT32_C(0x79a995c7)); fiat_np521_mulx_u32(&x138, &x139, x136, UINT16_C(0x1ff)); fiat_np521_mulx_u32(&x140, &x141, x136, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x142, &x143, x136, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x144, &x145, x136, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x146, &x147, x136, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x148, &x149, x136, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x150, &x151, x136, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x152, &x153, x136, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x154, &x155, x136, UINT32_C(0xfffffffa)); fiat_np521_mulx_u32(&x156, &x157, x136, UINT32_C(0x51868783)); fiat_np521_mulx_u32(&x158, &x159, x136, UINT32_C(0xbf2f966b)); fiat_np521_mulx_u32(&x160, &x161, x136, UINT32_C(0x7fcc0148)); fiat_np521_mulx_u32(&x162, &x163, x136, UINT32_C(0xf709a5d0)); fiat_np521_mulx_u32(&x164, &x165, x136, UINT32_C(0x3bb5c9b8)); fiat_np521_mulx_u32(&x166, &x167, x136, UINT32_C(0x899c47ae)); fiat_np521_mulx_u32(&x168, &x169, x136, UINT32_C(0xbb6fb71e)); fiat_np521_mulx_u32(&x170, &x171, x136, UINT32_C(0x91386409)); fiat_np521_addcarryx_u32(&x172, &x173, 0x0, x171, x168); fiat_np521_addcarryx_u32(&x174, &x175, x173, x169, x166); fiat_np521_addcarryx_u32(&x176, &x177, x175, x167, x164); fiat_np521_addcarryx_u32(&x178, &x179, x177, x165, x162); fiat_np521_addcarryx_u32(&x180, &x181, x179, x163, x160); fiat_np521_addcarryx_u32(&x182, &x183, x181, x161, x158); fiat_np521_addcarryx_u32(&x184, &x185, x183, x159, x156); fiat_np521_addcarryx_u32(&x186, &x187, x185, x157, x154); fiat_np521_addcarryx_u32(&x188, &x189, x187, x155, x152); fiat_np521_addcarryx_u32(&x190, &x191, x189, x153, x150); fiat_np521_addcarryx_u32(&x192, &x193, x191, x151, x148); fiat_np521_addcarryx_u32(&x194, &x195, x193, x149, x146); fiat_np521_addcarryx_u32(&x196, &x197, x195, x147, x144); fiat_np521_addcarryx_u32(&x198, &x199, x197, x145, x142); fiat_np521_addcarryx_u32(&x200, &x201, x199, x143, x140); fiat_np521_addcarryx_u32(&x202, &x203, x201, x141, x138); fiat_np521_addcarryx_u32(&x204, &x205, 0x0, x104, x170); fiat_np521_addcarryx_u32(&x206, &x207, x205, x106, x172); fiat_np521_addcarryx_u32(&x208, &x209, x207, x108, x174); fiat_np521_addcarryx_u32(&x210, &x211, x209, x110, x176); fiat_np521_addcarryx_u32(&x212, &x213, x211, x112, x178); fiat_np521_addcarryx_u32(&x214, &x215, x213, x114, x180); fiat_np521_addcarryx_u32(&x216, &x217, x215, x116, x182); fiat_np521_addcarryx_u32(&x218, &x219, x217, x118, x184); fiat_np521_addcarryx_u32(&x220, &x221, x219, x120, x186); fiat_np521_addcarryx_u32(&x222, &x223, x221, x122, x188); fiat_np521_addcarryx_u32(&x224, &x225, x223, x124, x190); fiat_np521_addcarryx_u32(&x226, &x227, x225, x126, x192); fiat_np521_addcarryx_u32(&x228, &x229, x227, x128, x194); fiat_np521_addcarryx_u32(&x230, &x231, x229, x130, x196); fiat_np521_addcarryx_u32(&x232, &x233, x231, x132, x198); fiat_np521_addcarryx_u32(&x234, &x235, x233, x134, x200); fiat_np521_addcarryx_u32(&x236, &x237, x235, (x135 + (x103 + (x69 + x5))), x202); fiat_np521_addcarryx_u32(&x238, &x239, 0x0, x206, (arg1[2])); fiat_np521_addcarryx_u32(&x240, &x241, x239, x208, 0x0); fiat_np521_addcarryx_u32(&x242, &x243, x241, x210, 0x0); fiat_np521_addcarryx_u32(&x244, &x245, x243, x212, 0x0); fiat_np521_addcarryx_u32(&x246, &x247, x245, x214, 0x0); fiat_np521_addcarryx_u32(&x248, &x249, x247, x216, 0x0); fiat_np521_addcarryx_u32(&x250, &x251, x249, x218, 0x0); fiat_np521_addcarryx_u32(&x252, &x253, x251, x220, 0x0); fiat_np521_addcarryx_u32(&x254, &x255, x253, x222, 0x0); fiat_np521_addcarryx_u32(&x256, &x257, x255, x224, 0x0); fiat_np521_addcarryx_u32(&x258, &x259, x257, x226, 0x0); fiat_np521_addcarryx_u32(&x260, &x261, x259, x228, 0x0); fiat_np521_addcarryx_u32(&x262, &x263, x261, x230, 0x0); fiat_np521_addcarryx_u32(&x264, &x265, x263, x232, 0x0); fiat_np521_addcarryx_u32(&x266, &x267, x265, x234, 0x0); fiat_np521_addcarryx_u32(&x268, &x269, x267, x236, 0x0); fiat_np521_mulx_u32(&x270, &x271, x238, UINT32_C(0x79a995c7)); fiat_np521_mulx_u32(&x272, &x273, x270, UINT16_C(0x1ff)); fiat_np521_mulx_u32(&x274, &x275, x270, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x276, &x277, x270, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x278, &x279, x270, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x280, &x281, x270, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x282, &x283, x270, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x284, &x285, x270, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x286, &x287, x270, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x288, &x289, x270, UINT32_C(0xfffffffa)); fiat_np521_mulx_u32(&x290, &x291, x270, UINT32_C(0x51868783)); fiat_np521_mulx_u32(&x292, &x293, x270, UINT32_C(0xbf2f966b)); fiat_np521_mulx_u32(&x294, &x295, x270, UINT32_C(0x7fcc0148)); fiat_np521_mulx_u32(&x296, &x297, x270, UINT32_C(0xf709a5d0)); fiat_np521_mulx_u32(&x298, &x299, x270, UINT32_C(0x3bb5c9b8)); fiat_np521_mulx_u32(&x300, &x301, x270, UINT32_C(0x899c47ae)); fiat_np521_mulx_u32(&x302, &x303, x270, UINT32_C(0xbb6fb71e)); fiat_np521_mulx_u32(&x304, &x305, x270, UINT32_C(0x91386409)); fiat_np521_addcarryx_u32(&x306, &x307, 0x0, x305, x302); fiat_np521_addcarryx_u32(&x308, &x309, x307, x303, x300); fiat_np521_addcarryx_u32(&x310, &x311, x309, x301, x298); fiat_np521_addcarryx_u32(&x312, &x313, x311, x299, x296); fiat_np521_addcarryx_u32(&x314, &x315, x313, x297, x294); fiat_np521_addcarryx_u32(&x316, &x317, x315, x295, x292); fiat_np521_addcarryx_u32(&x318, &x319, x317, x293, x290); fiat_np521_addcarryx_u32(&x320, &x321, x319, x291, x288); fiat_np521_addcarryx_u32(&x322, &x323, x321, x289, x286); fiat_np521_addcarryx_u32(&x324, &x325, x323, x287, x284); fiat_np521_addcarryx_u32(&x326, &x327, x325, x285, x282); fiat_np521_addcarryx_u32(&x328, &x329, x327, x283, x280); fiat_np521_addcarryx_u32(&x330, &x331, x329, x281, x278); fiat_np521_addcarryx_u32(&x332, &x333, x331, x279, x276); fiat_np521_addcarryx_u32(&x334, &x335, x333, x277, x274); fiat_np521_addcarryx_u32(&x336, &x337, x335, x275, x272); fiat_np521_addcarryx_u32(&x338, &x339, 0x0, x238, x304); fiat_np521_addcarryx_u32(&x340, &x341, x339, x240, x306); fiat_np521_addcarryx_u32(&x342, &x343, x341, x242, x308); fiat_np521_addcarryx_u32(&x344, &x345, x343, x244, x310); fiat_np521_addcarryx_u32(&x346, &x347, x345, x246, x312); fiat_np521_addcarryx_u32(&x348, &x349, x347, x248, x314); fiat_np521_addcarryx_u32(&x350, &x351, x349, x250, x316); fiat_np521_addcarryx_u32(&x352, &x353, x351, x252, x318); fiat_np521_addcarryx_u32(&x354, &x355, x353, x254, x320); fiat_np521_addcarryx_u32(&x356, &x357, x355, x256, x322); fiat_np521_addcarryx_u32(&x358, &x359, x357, x258, x324); fiat_np521_addcarryx_u32(&x360, &x361, x359, x260, x326); fiat_np521_addcarryx_u32(&x362, &x363, x361, x262, x328); fiat_np521_addcarryx_u32(&x364, &x365, x363, x264, x330); fiat_np521_addcarryx_u32(&x366, &x367, x365, x266, x332); fiat_np521_addcarryx_u32(&x368, &x369, x367, x268, x334); fiat_np521_addcarryx_u32(&x370, &x371, x369, (x269 + (x237 + (x203 + x139))), x336); fiat_np521_addcarryx_u32(&x372, &x373, 0x0, x340, (arg1[3])); fiat_np521_addcarryx_u32(&x374, &x375, x373, x342, 0x0); fiat_np521_addcarryx_u32(&x376, &x377, x375, x344, 0x0); fiat_np521_addcarryx_u32(&x378, &x379, x377, x346, 0x0); fiat_np521_addcarryx_u32(&x380, &x381, x379, x348, 0x0); fiat_np521_addcarryx_u32(&x382, &x383, x381, x350, 0x0); fiat_np521_addcarryx_u32(&x384, &x385, x383, x352, 0x0); fiat_np521_addcarryx_u32(&x386, &x387, x385, x354, 0x0); fiat_np521_addcarryx_u32(&x388, &x389, x387, x356, 0x0); fiat_np521_addcarryx_u32(&x390, &x391, x389, x358, 0x0); fiat_np521_addcarryx_u32(&x392, &x393, x391, x360, 0x0); fiat_np521_addcarryx_u32(&x394, &x395, x393, x362, 0x0); fiat_np521_addcarryx_u32(&x396, &x397, x395, x364, 0x0); fiat_np521_addcarryx_u32(&x398, &x399, x397, x366, 0x0); fiat_np521_addcarryx_u32(&x400, &x401, x399, x368, 0x0); fiat_np521_addcarryx_u32(&x402, &x403, x401, x370, 0x0); fiat_np521_mulx_u32(&x404, &x405, x372, UINT32_C(0x79a995c7)); fiat_np521_mulx_u32(&x406, &x407, x404, UINT16_C(0x1ff)); fiat_np521_mulx_u32(&x408, &x409, x404, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x410, &x411, x404, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x412, &x413, x404, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x414, &x415, x404, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x416, &x417, x404, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x418, &x419, x404, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x420, &x421, x404, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x422, &x423, x404, UINT32_C(0xfffffffa)); fiat_np521_mulx_u32(&x424, &x425, x404, UINT32_C(0x51868783)); fiat_np521_mulx_u32(&x426, &x427, x404, UINT32_C(0xbf2f966b)); fiat_np521_mulx_u32(&x428, &x429, x404, UINT32_C(0x7fcc0148)); fiat_np521_mulx_u32(&x430, &x431, x404, UINT32_C(0xf709a5d0)); fiat_np521_mulx_u32(&x432, &x433, x404, UINT32_C(0x3bb5c9b8)); fiat_np521_mulx_u32(&x434, &x435, x404, UINT32_C(0x899c47ae)); fiat_np521_mulx_u32(&x436, &x437, x404, UINT32_C(0xbb6fb71e)); fiat_np521_mulx_u32(&x438, &x439, x404, UINT32_C(0x91386409)); fiat_np521_addcarryx_u32(&x440, &x441, 0x0, x439, x436); fiat_np521_addcarryx_u32(&x442, &x443, x441, x437, x434); fiat_np521_addcarryx_u32(&x444, &x445, x443, x435, x432); fiat_np521_addcarryx_u32(&x446, &x447, x445, x433, x430); fiat_np521_addcarryx_u32(&x448, &x449, x447, x431, x428); fiat_np521_addcarryx_u32(&x450, &x451, x449, x429, x426); fiat_np521_addcarryx_u32(&x452, &x453, x451, x427, x424); fiat_np521_addcarryx_u32(&x454, &x455, x453, x425, x422); fiat_np521_addcarryx_u32(&x456, &x457, x455, x423, x420); fiat_np521_addcarryx_u32(&x458, &x459, x457, x421, x418); fiat_np521_addcarryx_u32(&x460, &x461, x459, x419, x416); fiat_np521_addcarryx_u32(&x462, &x463, x461, x417, x414); fiat_np521_addcarryx_u32(&x464, &x465, x463, x415, x412); fiat_np521_addcarryx_u32(&x466, &x467, x465, x413, x410); fiat_np521_addcarryx_u32(&x468, &x469, x467, x411, x408); fiat_np521_addcarryx_u32(&x470, &x471, x469, x409, x406); fiat_np521_addcarryx_u32(&x472, &x473, 0x0, x372, x438); fiat_np521_addcarryx_u32(&x474, &x475, x473, x374, x440); fiat_np521_addcarryx_u32(&x476, &x477, x475, x376, x442); fiat_np521_addcarryx_u32(&x478, &x479, x477, x378, x444); fiat_np521_addcarryx_u32(&x480, &x481, x479, x380, x446); fiat_np521_addcarryx_u32(&x482, &x483, x481, x382, x448); fiat_np521_addcarryx_u32(&x484, &x485, x483, x384, x450); fiat_np521_addcarryx_u32(&x486, &x487, x485, x386, x452); fiat_np521_addcarryx_u32(&x488, &x489, x487, x388, x454); fiat_np521_addcarryx_u32(&x490, &x491, x489, x390, x456); fiat_np521_addcarryx_u32(&x492, &x493, x491, x392, x458); fiat_np521_addcarryx_u32(&x494, &x495, x493, x394, x460); fiat_np521_addcarryx_u32(&x496, &x497, x495, x396, x462); fiat_np521_addcarryx_u32(&x498, &x499, x497, x398, x464); fiat_np521_addcarryx_u32(&x500, &x501, x499, x400, x466); fiat_np521_addcarryx_u32(&x502, &x503, x501, x402, x468); fiat_np521_addcarryx_u32(&x504, &x505, x503, (x403 + (x371 + (x337 + x273))), x470); fiat_np521_addcarryx_u32(&x506, &x507, 0x0, x474, (arg1[4])); fiat_np521_addcarryx_u32(&x508, &x509, x507, x476, 0x0); fiat_np521_addcarryx_u32(&x510, &x511, x509, x478, 0x0); fiat_np521_addcarryx_u32(&x512, &x513, x511, x480, 0x0); fiat_np521_addcarryx_u32(&x514, &x515, x513, x482, 0x0); fiat_np521_addcarryx_u32(&x516, &x517, x515, x484, 0x0); fiat_np521_addcarryx_u32(&x518, &x519, x517, x486, 0x0); fiat_np521_addcarryx_u32(&x520, &x521, x519, x488, 0x0); fiat_np521_addcarryx_u32(&x522, &x523, x521, x490, 0x0); fiat_np521_addcarryx_u32(&x524, &x525, x523, x492, 0x0); fiat_np521_addcarryx_u32(&x526, &x527, x525, x494, 0x0); fiat_np521_addcarryx_u32(&x528, &x529, x527, x496, 0x0); fiat_np521_addcarryx_u32(&x530, &x531, x529, x498, 0x0); fiat_np521_addcarryx_u32(&x532, &x533, x531, x500, 0x0); fiat_np521_addcarryx_u32(&x534, &x535, x533, x502, 0x0); fiat_np521_addcarryx_u32(&x536, &x537, x535, x504, 0x0); fiat_np521_mulx_u32(&x538, &x539, x506, UINT32_C(0x79a995c7)); fiat_np521_mulx_u32(&x540, &x541, x538, UINT16_C(0x1ff)); fiat_np521_mulx_u32(&x542, &x543, x538, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x544, &x545, x538, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x546, &x547, x538, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x548, &x549, x538, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x550, &x551, x538, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x552, &x553, x538, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x554, &x555, x538, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x556, &x557, x538, UINT32_C(0xfffffffa)); fiat_np521_mulx_u32(&x558, &x559, x538, UINT32_C(0x51868783)); fiat_np521_mulx_u32(&x560, &x561, x538, UINT32_C(0xbf2f966b)); fiat_np521_mulx_u32(&x562, &x563, x538, UINT32_C(0x7fcc0148)); fiat_np521_mulx_u32(&x564, &x565, x538, UINT32_C(0xf709a5d0)); fiat_np521_mulx_u32(&x566, &x567, x538, UINT32_C(0x3bb5c9b8)); fiat_np521_mulx_u32(&x568, &x569, x538, UINT32_C(0x899c47ae)); fiat_np521_mulx_u32(&x570, &x571, x538, UINT32_C(0xbb6fb71e)); fiat_np521_mulx_u32(&x572, &x573, x538, UINT32_C(0x91386409)); fiat_np521_addcarryx_u32(&x574, &x575, 0x0, x573, x570); fiat_np521_addcarryx_u32(&x576, &x577, x575, x571, x568); fiat_np521_addcarryx_u32(&x578, &x579, x577, x569, x566); fiat_np521_addcarryx_u32(&x580, &x581, x579, x567, x564); fiat_np521_addcarryx_u32(&x582, &x583, x581, x565, x562); fiat_np521_addcarryx_u32(&x584, &x585, x583, x563, x560); fiat_np521_addcarryx_u32(&x586, &x587, x585, x561, x558); fiat_np521_addcarryx_u32(&x588, &x589, x587, x559, x556); fiat_np521_addcarryx_u32(&x590, &x591, x589, x557, x554); fiat_np521_addcarryx_u32(&x592, &x593, x591, x555, x552); fiat_np521_addcarryx_u32(&x594, &x595, x593, x553, x550); fiat_np521_addcarryx_u32(&x596, &x597, x595, x551, x548); fiat_np521_addcarryx_u32(&x598, &x599, x597, x549, x546); fiat_np521_addcarryx_u32(&x600, &x601, x599, x547, x544); fiat_np521_addcarryx_u32(&x602, &x603, x601, x545, x542); fiat_np521_addcarryx_u32(&x604, &x605, x603, x543, x540); fiat_np521_addcarryx_u32(&x606, &x607, 0x0, x506, x572); fiat_np521_addcarryx_u32(&x608, &x609, x607, x508, x574); fiat_np521_addcarryx_u32(&x610, &x611, x609, x510, x576); fiat_np521_addcarryx_u32(&x612, &x613, x611, x512, x578); fiat_np521_addcarryx_u32(&x614, &x615, x613, x514, x580); fiat_np521_addcarryx_u32(&x616, &x617, x615, x516, x582); fiat_np521_addcarryx_u32(&x618, &x619, x617, x518, x584); fiat_np521_addcarryx_u32(&x620, &x621, x619, x520, x586); fiat_np521_addcarryx_u32(&x622, &x623, x621, x522, x588); fiat_np521_addcarryx_u32(&x624, &x625, x623, x524, x590); fiat_np521_addcarryx_u32(&x626, &x627, x625, x526, x592); fiat_np521_addcarryx_u32(&x628, &x629, x627, x528, x594); fiat_np521_addcarryx_u32(&x630, &x631, x629, x530, x596); fiat_np521_addcarryx_u32(&x632, &x633, x631, x532, x598); fiat_np521_addcarryx_u32(&x634, &x635, x633, x534, x600); fiat_np521_addcarryx_u32(&x636, &x637, x635, x536, x602); fiat_np521_addcarryx_u32(&x638, &x639, x637, (x537 + (x505 + (x471 + x407))), x604); fiat_np521_addcarryx_u32(&x640, &x641, 0x0, x608, (arg1[5])); fiat_np521_addcarryx_u32(&x642, &x643, x641, x610, 0x0); fiat_np521_addcarryx_u32(&x644, &x645, x643, x612, 0x0); fiat_np521_addcarryx_u32(&x646, &x647, x645, x614, 0x0); fiat_np521_addcarryx_u32(&x648, &x649, x647, x616, 0x0); fiat_np521_addcarryx_u32(&x650, &x651, x649, x618, 0x0); fiat_np521_addcarryx_u32(&x652, &x653, x651, x620, 0x0); fiat_np521_addcarryx_u32(&x654, &x655, x653, x622, 0x0); fiat_np521_addcarryx_u32(&x656, &x657, x655, x624, 0x0); fiat_np521_addcarryx_u32(&x658, &x659, x657, x626, 0x0); fiat_np521_addcarryx_u32(&x660, &x661, x659, x628, 0x0); fiat_np521_addcarryx_u32(&x662, &x663, x661, x630, 0x0); fiat_np521_addcarryx_u32(&x664, &x665, x663, x632, 0x0); fiat_np521_addcarryx_u32(&x666, &x667, x665, x634, 0x0); fiat_np521_addcarryx_u32(&x668, &x669, x667, x636, 0x0); fiat_np521_addcarryx_u32(&x670, &x671, x669, x638, 0x0); fiat_np521_mulx_u32(&x672, &x673, x640, UINT32_C(0x79a995c7)); fiat_np521_mulx_u32(&x674, &x675, x672, UINT16_C(0x1ff)); fiat_np521_mulx_u32(&x676, &x677, x672, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x678, &x679, x672, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x680, &x681, x672, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x682, &x683, x672, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x684, &x685, x672, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x686, &x687, x672, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x688, &x689, x672, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x690, &x691, x672, UINT32_C(0xfffffffa)); fiat_np521_mulx_u32(&x692, &x693, x672, UINT32_C(0x51868783)); fiat_np521_mulx_u32(&x694, &x695, x672, UINT32_C(0xbf2f966b)); fiat_np521_mulx_u32(&x696, &x697, x672, UINT32_C(0x7fcc0148)); fiat_np521_mulx_u32(&x698, &x699, x672, UINT32_C(0xf709a5d0)); fiat_np521_mulx_u32(&x700, &x701, x672, UINT32_C(0x3bb5c9b8)); fiat_np521_mulx_u32(&x702, &x703, x672, UINT32_C(0x899c47ae)); fiat_np521_mulx_u32(&x704, &x705, x672, UINT32_C(0xbb6fb71e)); fiat_np521_mulx_u32(&x706, &x707, x672, UINT32_C(0x91386409)); fiat_np521_addcarryx_u32(&x708, &x709, 0x0, x707, x704); fiat_np521_addcarryx_u32(&x710, &x711, x709, x705, x702); fiat_np521_addcarryx_u32(&x712, &x713, x711, x703, x700); fiat_np521_addcarryx_u32(&x714, &x715, x713, x701, x698); fiat_np521_addcarryx_u32(&x716, &x717, x715, x699, x696); fiat_np521_addcarryx_u32(&x718, &x719, x717, x697, x694); fiat_np521_addcarryx_u32(&x720, &x721, x719, x695, x692); fiat_np521_addcarryx_u32(&x722, &x723, x721, x693, x690); fiat_np521_addcarryx_u32(&x724, &x725, x723, x691, x688); fiat_np521_addcarryx_u32(&x726, &x727, x725, x689, x686); fiat_np521_addcarryx_u32(&x728, &x729, x727, x687, x684); fiat_np521_addcarryx_u32(&x730, &x731, x729, x685, x682); fiat_np521_addcarryx_u32(&x732, &x733, x731, x683, x680); fiat_np521_addcarryx_u32(&x734, &x735, x733, x681, x678); fiat_np521_addcarryx_u32(&x736, &x737, x735, x679, x676); fiat_np521_addcarryx_u32(&x738, &x739, x737, x677, x674); fiat_np521_addcarryx_u32(&x740, &x741, 0x0, x640, x706); fiat_np521_addcarryx_u32(&x742, &x743, x741, x642, x708); fiat_np521_addcarryx_u32(&x744, &x745, x743, x644, x710); fiat_np521_addcarryx_u32(&x746, &x747, x745, x646, x712); fiat_np521_addcarryx_u32(&x748, &x749, x747, x648, x714); fiat_np521_addcarryx_u32(&x750, &x751, x749, x650, x716); fiat_np521_addcarryx_u32(&x752, &x753, x751, x652, x718); fiat_np521_addcarryx_u32(&x754, &x755, x753, x654, x720); fiat_np521_addcarryx_u32(&x756, &x757, x755, x656, x722); fiat_np521_addcarryx_u32(&x758, &x759, x757, x658, x724); fiat_np521_addcarryx_u32(&x760, &x761, x759, x660, x726); fiat_np521_addcarryx_u32(&x762, &x763, x761, x662, x728); fiat_np521_addcarryx_u32(&x764, &x765, x763, x664, x730); fiat_np521_addcarryx_u32(&x766, &x767, x765, x666, x732); fiat_np521_addcarryx_u32(&x768, &x769, x767, x668, x734); fiat_np521_addcarryx_u32(&x770, &x771, x769, x670, x736); fiat_np521_addcarryx_u32(&x772, &x773, x771, (x671 + (x639 + (x605 + x541))), x738); fiat_np521_addcarryx_u32(&x774, &x775, 0x0, x742, (arg1[6])); fiat_np521_addcarryx_u32(&x776, &x777, x775, x744, 0x0); fiat_np521_addcarryx_u32(&x778, &x779, x777, x746, 0x0); fiat_np521_addcarryx_u32(&x780, &x781, x779, x748, 0x0); fiat_np521_addcarryx_u32(&x782, &x783, x781, x750, 0x0); fiat_np521_addcarryx_u32(&x784, &x785, x783, x752, 0x0); fiat_np521_addcarryx_u32(&x786, &x787, x785, x754, 0x0); fiat_np521_addcarryx_u32(&x788, &x789, x787, x756, 0x0); fiat_np521_addcarryx_u32(&x790, &x791, x789, x758, 0x0); fiat_np521_addcarryx_u32(&x792, &x793, x791, x760, 0x0); fiat_np521_addcarryx_u32(&x794, &x795, x793, x762, 0x0); fiat_np521_addcarryx_u32(&x796, &x797, x795, x764, 0x0); fiat_np521_addcarryx_u32(&x798, &x799, x797, x766, 0x0); fiat_np521_addcarryx_u32(&x800, &x801, x799, x768, 0x0); fiat_np521_addcarryx_u32(&x802, &x803, x801, x770, 0x0); fiat_np521_addcarryx_u32(&x804, &x805, x803, x772, 0x0); fiat_np521_mulx_u32(&x806, &x807, x774, UINT32_C(0x79a995c7)); fiat_np521_mulx_u32(&x808, &x809, x806, UINT16_C(0x1ff)); fiat_np521_mulx_u32(&x810, &x811, x806, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x812, &x813, x806, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x814, &x815, x806, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x816, &x817, x806, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x818, &x819, x806, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x820, &x821, x806, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x822, &x823, x806, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x824, &x825, x806, UINT32_C(0xfffffffa)); fiat_np521_mulx_u32(&x826, &x827, x806, UINT32_C(0x51868783)); fiat_np521_mulx_u32(&x828, &x829, x806, UINT32_C(0xbf2f966b)); fiat_np521_mulx_u32(&x830, &x831, x806, UINT32_C(0x7fcc0148)); fiat_np521_mulx_u32(&x832, &x833, x806, UINT32_C(0xf709a5d0)); fiat_np521_mulx_u32(&x834, &x835, x806, UINT32_C(0x3bb5c9b8)); fiat_np521_mulx_u32(&x836, &x837, x806, UINT32_C(0x899c47ae)); fiat_np521_mulx_u32(&x838, &x839, x806, UINT32_C(0xbb6fb71e)); fiat_np521_mulx_u32(&x840, &x841, x806, UINT32_C(0x91386409)); fiat_np521_addcarryx_u32(&x842, &x843, 0x0, x841, x838); fiat_np521_addcarryx_u32(&x844, &x845, x843, x839, x836); fiat_np521_addcarryx_u32(&x846, &x847, x845, x837, x834); fiat_np521_addcarryx_u32(&x848, &x849, x847, x835, x832); fiat_np521_addcarryx_u32(&x850, &x851, x849, x833, x830); fiat_np521_addcarryx_u32(&x852, &x853, x851, x831, x828); fiat_np521_addcarryx_u32(&x854, &x855, x853, x829, x826); fiat_np521_addcarryx_u32(&x856, &x857, x855, x827, x824); fiat_np521_addcarryx_u32(&x858, &x859, x857, x825, x822); fiat_np521_addcarryx_u32(&x860, &x861, x859, x823, x820); fiat_np521_addcarryx_u32(&x862, &x863, x861, x821, x818); fiat_np521_addcarryx_u32(&x864, &x865, x863, x819, x816); fiat_np521_addcarryx_u32(&x866, &x867, x865, x817, x814); fiat_np521_addcarryx_u32(&x868, &x869, x867, x815, x812); fiat_np521_addcarryx_u32(&x870, &x871, x869, x813, x810); fiat_np521_addcarryx_u32(&x872, &x873, x871, x811, x808); fiat_np521_addcarryx_u32(&x874, &x875, 0x0, x774, x840); fiat_np521_addcarryx_u32(&x876, &x877, x875, x776, x842); fiat_np521_addcarryx_u32(&x878, &x879, x877, x778, x844); fiat_np521_addcarryx_u32(&x880, &x881, x879, x780, x846); fiat_np521_addcarryx_u32(&x882, &x883, x881, x782, x848); fiat_np521_addcarryx_u32(&x884, &x885, x883, x784, x850); fiat_np521_addcarryx_u32(&x886, &x887, x885, x786, x852); fiat_np521_addcarryx_u32(&x888, &x889, x887, x788, x854); fiat_np521_addcarryx_u32(&x890, &x891, x889, x790, x856); fiat_np521_addcarryx_u32(&x892, &x893, x891, x792, x858); fiat_np521_addcarryx_u32(&x894, &x895, x893, x794, x860); fiat_np521_addcarryx_u32(&x896, &x897, x895, x796, x862); fiat_np521_addcarryx_u32(&x898, &x899, x897, x798, x864); fiat_np521_addcarryx_u32(&x900, &x901, x899, x800, x866); fiat_np521_addcarryx_u32(&x902, &x903, x901, x802, x868); fiat_np521_addcarryx_u32(&x904, &x905, x903, x804, x870); fiat_np521_addcarryx_u32(&x906, &x907, x905, (x805 + (x773 + (x739 + x675))), x872); fiat_np521_addcarryx_u32(&x908, &x909, 0x0, x876, (arg1[7])); fiat_np521_addcarryx_u32(&x910, &x911, x909, x878, 0x0); fiat_np521_addcarryx_u32(&x912, &x913, x911, x880, 0x0); fiat_np521_addcarryx_u32(&x914, &x915, x913, x882, 0x0); fiat_np521_addcarryx_u32(&x916, &x917, x915, x884, 0x0); fiat_np521_addcarryx_u32(&x918, &x919, x917, x886, 0x0); fiat_np521_addcarryx_u32(&x920, &x921, x919, x888, 0x0); fiat_np521_addcarryx_u32(&x922, &x923, x921, x890, 0x0); fiat_np521_addcarryx_u32(&x924, &x925, x923, x892, 0x0); fiat_np521_addcarryx_u32(&x926, &x927, x925, x894, 0x0); fiat_np521_addcarryx_u32(&x928, &x929, x927, x896, 0x0); fiat_np521_addcarryx_u32(&x930, &x931, x929, x898, 0x0); fiat_np521_addcarryx_u32(&x932, &x933, x931, x900, 0x0); fiat_np521_addcarryx_u32(&x934, &x935, x933, x902, 0x0); fiat_np521_addcarryx_u32(&x936, &x937, x935, x904, 0x0); fiat_np521_addcarryx_u32(&x938, &x939, x937, x906, 0x0); fiat_np521_mulx_u32(&x940, &x941, x908, UINT32_C(0x79a995c7)); fiat_np521_mulx_u32(&x942, &x943, x940, UINT16_C(0x1ff)); fiat_np521_mulx_u32(&x944, &x945, x940, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x946, &x947, x940, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x948, &x949, x940, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x950, &x951, x940, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x952, &x953, x940, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x954, &x955, x940, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x956, &x957, x940, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x958, &x959, x940, UINT32_C(0xfffffffa)); fiat_np521_mulx_u32(&x960, &x961, x940, UINT32_C(0x51868783)); fiat_np521_mulx_u32(&x962, &x963, x940, UINT32_C(0xbf2f966b)); fiat_np521_mulx_u32(&x964, &x965, x940, UINT32_C(0x7fcc0148)); fiat_np521_mulx_u32(&x966, &x967, x940, UINT32_C(0xf709a5d0)); fiat_np521_mulx_u32(&x968, &x969, x940, UINT32_C(0x3bb5c9b8)); fiat_np521_mulx_u32(&x970, &x971, x940, UINT32_C(0x899c47ae)); fiat_np521_mulx_u32(&x972, &x973, x940, UINT32_C(0xbb6fb71e)); fiat_np521_mulx_u32(&x974, &x975, x940, UINT32_C(0x91386409)); fiat_np521_addcarryx_u32(&x976, &x977, 0x0, x975, x972); fiat_np521_addcarryx_u32(&x978, &x979, x977, x973, x970); fiat_np521_addcarryx_u32(&x980, &x981, x979, x971, x968); fiat_np521_addcarryx_u32(&x982, &x983, x981, x969, x966); fiat_np521_addcarryx_u32(&x984, &x985, x983, x967, x964); fiat_np521_addcarryx_u32(&x986, &x987, x985, x965, x962); fiat_np521_addcarryx_u32(&x988, &x989, x987, x963, x960); fiat_np521_addcarryx_u32(&x990, &x991, x989, x961, x958); fiat_np521_addcarryx_u32(&x992, &x993, x991, x959, x956); fiat_np521_addcarryx_u32(&x994, &x995, x993, x957, x954); fiat_np521_addcarryx_u32(&x996, &x997, x995, x955, x952); fiat_np521_addcarryx_u32(&x998, &x999, x997, x953, x950); fiat_np521_addcarryx_u32(&x1000, &x1001, x999, x951, x948); fiat_np521_addcarryx_u32(&x1002, &x1003, x1001, x949, x946); fiat_np521_addcarryx_u32(&x1004, &x1005, x1003, x947, x944); fiat_np521_addcarryx_u32(&x1006, &x1007, x1005, x945, x942); fiat_np521_addcarryx_u32(&x1008, &x1009, 0x0, x908, x974); fiat_np521_addcarryx_u32(&x1010, &x1011, x1009, x910, x976); fiat_np521_addcarryx_u32(&x1012, &x1013, x1011, x912, x978); fiat_np521_addcarryx_u32(&x1014, &x1015, x1013, x914, x980); fiat_np521_addcarryx_u32(&x1016, &x1017, x1015, x916, x982); fiat_np521_addcarryx_u32(&x1018, &x1019, x1017, x918, x984); fiat_np521_addcarryx_u32(&x1020, &x1021, x1019, x920, x986); fiat_np521_addcarryx_u32(&x1022, &x1023, x1021, x922, x988); fiat_np521_addcarryx_u32(&x1024, &x1025, x1023, x924, x990); fiat_np521_addcarryx_u32(&x1026, &x1027, x1025, x926, x992); fiat_np521_addcarryx_u32(&x1028, &x1029, x1027, x928, x994); fiat_np521_addcarryx_u32(&x1030, &x1031, x1029, x930, x996); fiat_np521_addcarryx_u32(&x1032, &x1033, x1031, x932, x998); fiat_np521_addcarryx_u32(&x1034, &x1035, x1033, x934, x1000); fiat_np521_addcarryx_u32(&x1036, &x1037, x1035, x936, x1002); fiat_np521_addcarryx_u32(&x1038, &x1039, x1037, x938, x1004); fiat_np521_addcarryx_u32(&x1040, &x1041, x1039, (x939 + (x907 + (x873 + x809))), x1006); fiat_np521_addcarryx_u32(&x1042, &x1043, 0x0, x1010, (arg1[8])); fiat_np521_addcarryx_u32(&x1044, &x1045, x1043, x1012, 0x0); fiat_np521_addcarryx_u32(&x1046, &x1047, x1045, x1014, 0x0); fiat_np521_addcarryx_u32(&x1048, &x1049, x1047, x1016, 0x0); fiat_np521_addcarryx_u32(&x1050, &x1051, x1049, x1018, 0x0); fiat_np521_addcarryx_u32(&x1052, &x1053, x1051, x1020, 0x0); fiat_np521_addcarryx_u32(&x1054, &x1055, x1053, x1022, 0x0); fiat_np521_addcarryx_u32(&x1056, &x1057, x1055, x1024, 0x0); fiat_np521_addcarryx_u32(&x1058, &x1059, x1057, x1026, 0x0); fiat_np521_addcarryx_u32(&x1060, &x1061, x1059, x1028, 0x0); fiat_np521_addcarryx_u32(&x1062, &x1063, x1061, x1030, 0x0); fiat_np521_addcarryx_u32(&x1064, &x1065, x1063, x1032, 0x0); fiat_np521_addcarryx_u32(&x1066, &x1067, x1065, x1034, 0x0); fiat_np521_addcarryx_u32(&x1068, &x1069, x1067, x1036, 0x0); fiat_np521_addcarryx_u32(&x1070, &x1071, x1069, x1038, 0x0); fiat_np521_addcarryx_u32(&x1072, &x1073, x1071, x1040, 0x0); fiat_np521_mulx_u32(&x1074, &x1075, x1042, UINT32_C(0x79a995c7)); fiat_np521_mulx_u32(&x1076, &x1077, x1074, UINT16_C(0x1ff)); fiat_np521_mulx_u32(&x1078, &x1079, x1074, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x1080, &x1081, x1074, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x1082, &x1083, x1074, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x1084, &x1085, x1074, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x1086, &x1087, x1074, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x1088, &x1089, x1074, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x1090, &x1091, x1074, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x1092, &x1093, x1074, UINT32_C(0xfffffffa)); fiat_np521_mulx_u32(&x1094, &x1095, x1074, UINT32_C(0x51868783)); fiat_np521_mulx_u32(&x1096, &x1097, x1074, UINT32_C(0xbf2f966b)); fiat_np521_mulx_u32(&x1098, &x1099, x1074, UINT32_C(0x7fcc0148)); fiat_np521_mulx_u32(&x1100, &x1101, x1074, UINT32_C(0xf709a5d0)); fiat_np521_mulx_u32(&x1102, &x1103, x1074, UINT32_C(0x3bb5c9b8)); fiat_np521_mulx_u32(&x1104, &x1105, x1074, UINT32_C(0x899c47ae)); fiat_np521_mulx_u32(&x1106, &x1107, x1074, UINT32_C(0xbb6fb71e)); fiat_np521_mulx_u32(&x1108, &x1109, x1074, UINT32_C(0x91386409)); fiat_np521_addcarryx_u32(&x1110, &x1111, 0x0, x1109, x1106); fiat_np521_addcarryx_u32(&x1112, &x1113, x1111, x1107, x1104); fiat_np521_addcarryx_u32(&x1114, &x1115, x1113, x1105, x1102); fiat_np521_addcarryx_u32(&x1116, &x1117, x1115, x1103, x1100); fiat_np521_addcarryx_u32(&x1118, &x1119, x1117, x1101, x1098); fiat_np521_addcarryx_u32(&x1120, &x1121, x1119, x1099, x1096); fiat_np521_addcarryx_u32(&x1122, &x1123, x1121, x1097, x1094); fiat_np521_addcarryx_u32(&x1124, &x1125, x1123, x1095, x1092); fiat_np521_addcarryx_u32(&x1126, &x1127, x1125, x1093, x1090); fiat_np521_addcarryx_u32(&x1128, &x1129, x1127, x1091, x1088); fiat_np521_addcarryx_u32(&x1130, &x1131, x1129, x1089, x1086); fiat_np521_addcarryx_u32(&x1132, &x1133, x1131, x1087, x1084); fiat_np521_addcarryx_u32(&x1134, &x1135, x1133, x1085, x1082); fiat_np521_addcarryx_u32(&x1136, &x1137, x1135, x1083, x1080); fiat_np521_addcarryx_u32(&x1138, &x1139, x1137, x1081, x1078); fiat_np521_addcarryx_u32(&x1140, &x1141, x1139, x1079, x1076); fiat_np521_addcarryx_u32(&x1142, &x1143, 0x0, x1042, x1108); fiat_np521_addcarryx_u32(&x1144, &x1145, x1143, x1044, x1110); fiat_np521_addcarryx_u32(&x1146, &x1147, x1145, x1046, x1112); fiat_np521_addcarryx_u32(&x1148, &x1149, x1147, x1048, x1114); fiat_np521_addcarryx_u32(&x1150, &x1151, x1149, x1050, x1116); fiat_np521_addcarryx_u32(&x1152, &x1153, x1151, x1052, x1118); fiat_np521_addcarryx_u32(&x1154, &x1155, x1153, x1054, x1120); fiat_np521_addcarryx_u32(&x1156, &x1157, x1155, x1056, x1122); fiat_np521_addcarryx_u32(&x1158, &x1159, x1157, x1058, x1124); fiat_np521_addcarryx_u32(&x1160, &x1161, x1159, x1060, x1126); fiat_np521_addcarryx_u32(&x1162, &x1163, x1161, x1062, x1128); fiat_np521_addcarryx_u32(&x1164, &x1165, x1163, x1064, x1130); fiat_np521_addcarryx_u32(&x1166, &x1167, x1165, x1066, x1132); fiat_np521_addcarryx_u32(&x1168, &x1169, x1167, x1068, x1134); fiat_np521_addcarryx_u32(&x1170, &x1171, x1169, x1070, x1136); fiat_np521_addcarryx_u32(&x1172, &x1173, x1171, x1072, x1138); fiat_np521_addcarryx_u32(&x1174, &x1175, x1173, (x1073 + (x1041 + (x1007 + x943))), x1140); fiat_np521_addcarryx_u32(&x1176, &x1177, 0x0, x1144, (arg1[9])); fiat_np521_addcarryx_u32(&x1178, &x1179, x1177, x1146, 0x0); fiat_np521_addcarryx_u32(&x1180, &x1181, x1179, x1148, 0x0); fiat_np521_addcarryx_u32(&x1182, &x1183, x1181, x1150, 0x0); fiat_np521_addcarryx_u32(&x1184, &x1185, x1183, x1152, 0x0); fiat_np521_addcarryx_u32(&x1186, &x1187, x1185, x1154, 0x0); fiat_np521_addcarryx_u32(&x1188, &x1189, x1187, x1156, 0x0); fiat_np521_addcarryx_u32(&x1190, &x1191, x1189, x1158, 0x0); fiat_np521_addcarryx_u32(&x1192, &x1193, x1191, x1160, 0x0); fiat_np521_addcarryx_u32(&x1194, &x1195, x1193, x1162, 0x0); fiat_np521_addcarryx_u32(&x1196, &x1197, x1195, x1164, 0x0); fiat_np521_addcarryx_u32(&x1198, &x1199, x1197, x1166, 0x0); fiat_np521_addcarryx_u32(&x1200, &x1201, x1199, x1168, 0x0); fiat_np521_addcarryx_u32(&x1202, &x1203, x1201, x1170, 0x0); fiat_np521_addcarryx_u32(&x1204, &x1205, x1203, x1172, 0x0); fiat_np521_addcarryx_u32(&x1206, &x1207, x1205, x1174, 0x0); fiat_np521_mulx_u32(&x1208, &x1209, x1176, UINT32_C(0x79a995c7)); fiat_np521_mulx_u32(&x1210, &x1211, x1208, UINT16_C(0x1ff)); fiat_np521_mulx_u32(&x1212, &x1213, x1208, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x1214, &x1215, x1208, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x1216, &x1217, x1208, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x1218, &x1219, x1208, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x1220, &x1221, x1208, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x1222, &x1223, x1208, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x1224, &x1225, x1208, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x1226, &x1227, x1208, UINT32_C(0xfffffffa)); fiat_np521_mulx_u32(&x1228, &x1229, x1208, UINT32_C(0x51868783)); fiat_np521_mulx_u32(&x1230, &x1231, x1208, UINT32_C(0xbf2f966b)); fiat_np521_mulx_u32(&x1232, &x1233, x1208, UINT32_C(0x7fcc0148)); fiat_np521_mulx_u32(&x1234, &x1235, x1208, UINT32_C(0xf709a5d0)); fiat_np521_mulx_u32(&x1236, &x1237, x1208, UINT32_C(0x3bb5c9b8)); fiat_np521_mulx_u32(&x1238, &x1239, x1208, UINT32_C(0x899c47ae)); fiat_np521_mulx_u32(&x1240, &x1241, x1208, UINT32_C(0xbb6fb71e)); fiat_np521_mulx_u32(&x1242, &x1243, x1208, UINT32_C(0x91386409)); fiat_np521_addcarryx_u32(&x1244, &x1245, 0x0, x1243, x1240); fiat_np521_addcarryx_u32(&x1246, &x1247, x1245, x1241, x1238); fiat_np521_addcarryx_u32(&x1248, &x1249, x1247, x1239, x1236); fiat_np521_addcarryx_u32(&x1250, &x1251, x1249, x1237, x1234); fiat_np521_addcarryx_u32(&x1252, &x1253, x1251, x1235, x1232); fiat_np521_addcarryx_u32(&x1254, &x1255, x1253, x1233, x1230); fiat_np521_addcarryx_u32(&x1256, &x1257, x1255, x1231, x1228); fiat_np521_addcarryx_u32(&x1258, &x1259, x1257, x1229, x1226); fiat_np521_addcarryx_u32(&x1260, &x1261, x1259, x1227, x1224); fiat_np521_addcarryx_u32(&x1262, &x1263, x1261, x1225, x1222); fiat_np521_addcarryx_u32(&x1264, &x1265, x1263, x1223, x1220); fiat_np521_addcarryx_u32(&x1266, &x1267, x1265, x1221, x1218); fiat_np521_addcarryx_u32(&x1268, &x1269, x1267, x1219, x1216); fiat_np521_addcarryx_u32(&x1270, &x1271, x1269, x1217, x1214); fiat_np521_addcarryx_u32(&x1272, &x1273, x1271, x1215, x1212); fiat_np521_addcarryx_u32(&x1274, &x1275, x1273, x1213, x1210); fiat_np521_addcarryx_u32(&x1276, &x1277, 0x0, x1176, x1242); fiat_np521_addcarryx_u32(&x1278, &x1279, x1277, x1178, x1244); fiat_np521_addcarryx_u32(&x1280, &x1281, x1279, x1180, x1246); fiat_np521_addcarryx_u32(&x1282, &x1283, x1281, x1182, x1248); fiat_np521_addcarryx_u32(&x1284, &x1285, x1283, x1184, x1250); fiat_np521_addcarryx_u32(&x1286, &x1287, x1285, x1186, x1252); fiat_np521_addcarryx_u32(&x1288, &x1289, x1287, x1188, x1254); fiat_np521_addcarryx_u32(&x1290, &x1291, x1289, x1190, x1256); fiat_np521_addcarryx_u32(&x1292, &x1293, x1291, x1192, x1258); fiat_np521_addcarryx_u32(&x1294, &x1295, x1293, x1194, x1260); fiat_np521_addcarryx_u32(&x1296, &x1297, x1295, x1196, x1262); fiat_np521_addcarryx_u32(&x1298, &x1299, x1297, x1198, x1264); fiat_np521_addcarryx_u32(&x1300, &x1301, x1299, x1200, x1266); fiat_np521_addcarryx_u32(&x1302, &x1303, x1301, x1202, x1268); fiat_np521_addcarryx_u32(&x1304, &x1305, x1303, x1204, x1270); fiat_np521_addcarryx_u32(&x1306, &x1307, x1305, x1206, x1272); fiat_np521_addcarryx_u32(&x1308, &x1309, x1307, (x1207 + (x1175 + (x1141 + x1077))), x1274); fiat_np521_addcarryx_u32(&x1310, &x1311, 0x0, x1278, (arg1[10])); fiat_np521_addcarryx_u32(&x1312, &x1313, x1311, x1280, 0x0); fiat_np521_addcarryx_u32(&x1314, &x1315, x1313, x1282, 0x0); fiat_np521_addcarryx_u32(&x1316, &x1317, x1315, x1284, 0x0); fiat_np521_addcarryx_u32(&x1318, &x1319, x1317, x1286, 0x0); fiat_np521_addcarryx_u32(&x1320, &x1321, x1319, x1288, 0x0); fiat_np521_addcarryx_u32(&x1322, &x1323, x1321, x1290, 0x0); fiat_np521_addcarryx_u32(&x1324, &x1325, x1323, x1292, 0x0); fiat_np521_addcarryx_u32(&x1326, &x1327, x1325, x1294, 0x0); fiat_np521_addcarryx_u32(&x1328, &x1329, x1327, x1296, 0x0); fiat_np521_addcarryx_u32(&x1330, &x1331, x1329, x1298, 0x0); fiat_np521_addcarryx_u32(&x1332, &x1333, x1331, x1300, 0x0); fiat_np521_addcarryx_u32(&x1334, &x1335, x1333, x1302, 0x0); fiat_np521_addcarryx_u32(&x1336, &x1337, x1335, x1304, 0x0); fiat_np521_addcarryx_u32(&x1338, &x1339, x1337, x1306, 0x0); fiat_np521_addcarryx_u32(&x1340, &x1341, x1339, x1308, 0x0); fiat_np521_mulx_u32(&x1342, &x1343, x1310, UINT32_C(0x79a995c7)); fiat_np521_mulx_u32(&x1344, &x1345, x1342, UINT16_C(0x1ff)); fiat_np521_mulx_u32(&x1346, &x1347, x1342, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x1348, &x1349, x1342, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x1350, &x1351, x1342, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x1352, &x1353, x1342, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x1354, &x1355, x1342, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x1356, &x1357, x1342, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x1358, &x1359, x1342, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x1360, &x1361, x1342, UINT32_C(0xfffffffa)); fiat_np521_mulx_u32(&x1362, &x1363, x1342, UINT32_C(0x51868783)); fiat_np521_mulx_u32(&x1364, &x1365, x1342, UINT32_C(0xbf2f966b)); fiat_np521_mulx_u32(&x1366, &x1367, x1342, UINT32_C(0x7fcc0148)); fiat_np521_mulx_u32(&x1368, &x1369, x1342, UINT32_C(0xf709a5d0)); fiat_np521_mulx_u32(&x1370, &x1371, x1342, UINT32_C(0x3bb5c9b8)); fiat_np521_mulx_u32(&x1372, &x1373, x1342, UINT32_C(0x899c47ae)); fiat_np521_mulx_u32(&x1374, &x1375, x1342, UINT32_C(0xbb6fb71e)); fiat_np521_mulx_u32(&x1376, &x1377, x1342, UINT32_C(0x91386409)); fiat_np521_addcarryx_u32(&x1378, &x1379, 0x0, x1377, x1374); fiat_np521_addcarryx_u32(&x1380, &x1381, x1379, x1375, x1372); fiat_np521_addcarryx_u32(&x1382, &x1383, x1381, x1373, x1370); fiat_np521_addcarryx_u32(&x1384, &x1385, x1383, x1371, x1368); fiat_np521_addcarryx_u32(&x1386, &x1387, x1385, x1369, x1366); fiat_np521_addcarryx_u32(&x1388, &x1389, x1387, x1367, x1364); fiat_np521_addcarryx_u32(&x1390, &x1391, x1389, x1365, x1362); fiat_np521_addcarryx_u32(&x1392, &x1393, x1391, x1363, x1360); fiat_np521_addcarryx_u32(&x1394, &x1395, x1393, x1361, x1358); fiat_np521_addcarryx_u32(&x1396, &x1397, x1395, x1359, x1356); fiat_np521_addcarryx_u32(&x1398, &x1399, x1397, x1357, x1354); fiat_np521_addcarryx_u32(&x1400, &x1401, x1399, x1355, x1352); fiat_np521_addcarryx_u32(&x1402, &x1403, x1401, x1353, x1350); fiat_np521_addcarryx_u32(&x1404, &x1405, x1403, x1351, x1348); fiat_np521_addcarryx_u32(&x1406, &x1407, x1405, x1349, x1346); fiat_np521_addcarryx_u32(&x1408, &x1409, x1407, x1347, x1344); fiat_np521_addcarryx_u32(&x1410, &x1411, 0x0, x1310, x1376); fiat_np521_addcarryx_u32(&x1412, &x1413, x1411, x1312, x1378); fiat_np521_addcarryx_u32(&x1414, &x1415, x1413, x1314, x1380); fiat_np521_addcarryx_u32(&x1416, &x1417, x1415, x1316, x1382); fiat_np521_addcarryx_u32(&x1418, &x1419, x1417, x1318, x1384); fiat_np521_addcarryx_u32(&x1420, &x1421, x1419, x1320, x1386); fiat_np521_addcarryx_u32(&x1422, &x1423, x1421, x1322, x1388); fiat_np521_addcarryx_u32(&x1424, &x1425, x1423, x1324, x1390); fiat_np521_addcarryx_u32(&x1426, &x1427, x1425, x1326, x1392); fiat_np521_addcarryx_u32(&x1428, &x1429, x1427, x1328, x1394); fiat_np521_addcarryx_u32(&x1430, &x1431, x1429, x1330, x1396); fiat_np521_addcarryx_u32(&x1432, &x1433, x1431, x1332, x1398); fiat_np521_addcarryx_u32(&x1434, &x1435, x1433, x1334, x1400); fiat_np521_addcarryx_u32(&x1436, &x1437, x1435, x1336, x1402); fiat_np521_addcarryx_u32(&x1438, &x1439, x1437, x1338, x1404); fiat_np521_addcarryx_u32(&x1440, &x1441, x1439, x1340, x1406); fiat_np521_addcarryx_u32(&x1442, &x1443, x1441, (x1341 + (x1309 + (x1275 + x1211))), x1408); fiat_np521_addcarryx_u32(&x1444, &x1445, 0x0, x1412, (arg1[11])); fiat_np521_addcarryx_u32(&x1446, &x1447, x1445, x1414, 0x0); fiat_np521_addcarryx_u32(&x1448, &x1449, x1447, x1416, 0x0); fiat_np521_addcarryx_u32(&x1450, &x1451, x1449, x1418, 0x0); fiat_np521_addcarryx_u32(&x1452, &x1453, x1451, x1420, 0x0); fiat_np521_addcarryx_u32(&x1454, &x1455, x1453, x1422, 0x0); fiat_np521_addcarryx_u32(&x1456, &x1457, x1455, x1424, 0x0); fiat_np521_addcarryx_u32(&x1458, &x1459, x1457, x1426, 0x0); fiat_np521_addcarryx_u32(&x1460, &x1461, x1459, x1428, 0x0); fiat_np521_addcarryx_u32(&x1462, &x1463, x1461, x1430, 0x0); fiat_np521_addcarryx_u32(&x1464, &x1465, x1463, x1432, 0x0); fiat_np521_addcarryx_u32(&x1466, &x1467, x1465, x1434, 0x0); fiat_np521_addcarryx_u32(&x1468, &x1469, x1467, x1436, 0x0); fiat_np521_addcarryx_u32(&x1470, &x1471, x1469, x1438, 0x0); fiat_np521_addcarryx_u32(&x1472, &x1473, x1471, x1440, 0x0); fiat_np521_addcarryx_u32(&x1474, &x1475, x1473, x1442, 0x0); fiat_np521_mulx_u32(&x1476, &x1477, x1444, UINT32_C(0x79a995c7)); fiat_np521_mulx_u32(&x1478, &x1479, x1476, UINT16_C(0x1ff)); fiat_np521_mulx_u32(&x1480, &x1481, x1476, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x1482, &x1483, x1476, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x1484, &x1485, x1476, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x1486, &x1487, x1476, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x1488, &x1489, x1476, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x1490, &x1491, x1476, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x1492, &x1493, x1476, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x1494, &x1495, x1476, UINT32_C(0xfffffffa)); fiat_np521_mulx_u32(&x1496, &x1497, x1476, UINT32_C(0x51868783)); fiat_np521_mulx_u32(&x1498, &x1499, x1476, UINT32_C(0xbf2f966b)); fiat_np521_mulx_u32(&x1500, &x1501, x1476, UINT32_C(0x7fcc0148)); fiat_np521_mulx_u32(&x1502, &x1503, x1476, UINT32_C(0xf709a5d0)); fiat_np521_mulx_u32(&x1504, &x1505, x1476, UINT32_C(0x3bb5c9b8)); fiat_np521_mulx_u32(&x1506, &x1507, x1476, UINT32_C(0x899c47ae)); fiat_np521_mulx_u32(&x1508, &x1509, x1476, UINT32_C(0xbb6fb71e)); fiat_np521_mulx_u32(&x1510, &x1511, x1476, UINT32_C(0x91386409)); fiat_np521_addcarryx_u32(&x1512, &x1513, 0x0, x1511, x1508); fiat_np521_addcarryx_u32(&x1514, &x1515, x1513, x1509, x1506); fiat_np521_addcarryx_u32(&x1516, &x1517, x1515, x1507, x1504); fiat_np521_addcarryx_u32(&x1518, &x1519, x1517, x1505, x1502); fiat_np521_addcarryx_u32(&x1520, &x1521, x1519, x1503, x1500); fiat_np521_addcarryx_u32(&x1522, &x1523, x1521, x1501, x1498); fiat_np521_addcarryx_u32(&x1524, &x1525, x1523, x1499, x1496); fiat_np521_addcarryx_u32(&x1526, &x1527, x1525, x1497, x1494); fiat_np521_addcarryx_u32(&x1528, &x1529, x1527, x1495, x1492); fiat_np521_addcarryx_u32(&x1530, &x1531, x1529, x1493, x1490); fiat_np521_addcarryx_u32(&x1532, &x1533, x1531, x1491, x1488); fiat_np521_addcarryx_u32(&x1534, &x1535, x1533, x1489, x1486); fiat_np521_addcarryx_u32(&x1536, &x1537, x1535, x1487, x1484); fiat_np521_addcarryx_u32(&x1538, &x1539, x1537, x1485, x1482); fiat_np521_addcarryx_u32(&x1540, &x1541, x1539, x1483, x1480); fiat_np521_addcarryx_u32(&x1542, &x1543, x1541, x1481, x1478); fiat_np521_addcarryx_u32(&x1544, &x1545, 0x0, x1444, x1510); fiat_np521_addcarryx_u32(&x1546, &x1547, x1545, x1446, x1512); fiat_np521_addcarryx_u32(&x1548, &x1549, x1547, x1448, x1514); fiat_np521_addcarryx_u32(&x1550, &x1551, x1549, x1450, x1516); fiat_np521_addcarryx_u32(&x1552, &x1553, x1551, x1452, x1518); fiat_np521_addcarryx_u32(&x1554, &x1555, x1553, x1454, x1520); fiat_np521_addcarryx_u32(&x1556, &x1557, x1555, x1456, x1522); fiat_np521_addcarryx_u32(&x1558, &x1559, x1557, x1458, x1524); fiat_np521_addcarryx_u32(&x1560, &x1561, x1559, x1460, x1526); fiat_np521_addcarryx_u32(&x1562, &x1563, x1561, x1462, x1528); fiat_np521_addcarryx_u32(&x1564, &x1565, x1563, x1464, x1530); fiat_np521_addcarryx_u32(&x1566, &x1567, x1565, x1466, x1532); fiat_np521_addcarryx_u32(&x1568, &x1569, x1567, x1468, x1534); fiat_np521_addcarryx_u32(&x1570, &x1571, x1569, x1470, x1536); fiat_np521_addcarryx_u32(&x1572, &x1573, x1571, x1472, x1538); fiat_np521_addcarryx_u32(&x1574, &x1575, x1573, x1474, x1540); fiat_np521_addcarryx_u32(&x1576, &x1577, x1575, (x1475 + (x1443 + (x1409 + x1345))), x1542); fiat_np521_addcarryx_u32(&x1578, &x1579, 0x0, x1546, (arg1[12])); fiat_np521_addcarryx_u32(&x1580, &x1581, x1579, x1548, 0x0); fiat_np521_addcarryx_u32(&x1582, &x1583, x1581, x1550, 0x0); fiat_np521_addcarryx_u32(&x1584, &x1585, x1583, x1552, 0x0); fiat_np521_addcarryx_u32(&x1586, &x1587, x1585, x1554, 0x0); fiat_np521_addcarryx_u32(&x1588, &x1589, x1587, x1556, 0x0); fiat_np521_addcarryx_u32(&x1590, &x1591, x1589, x1558, 0x0); fiat_np521_addcarryx_u32(&x1592, &x1593, x1591, x1560, 0x0); fiat_np521_addcarryx_u32(&x1594, &x1595, x1593, x1562, 0x0); fiat_np521_addcarryx_u32(&x1596, &x1597, x1595, x1564, 0x0); fiat_np521_addcarryx_u32(&x1598, &x1599, x1597, x1566, 0x0); fiat_np521_addcarryx_u32(&x1600, &x1601, x1599, x1568, 0x0); fiat_np521_addcarryx_u32(&x1602, &x1603, x1601, x1570, 0x0); fiat_np521_addcarryx_u32(&x1604, &x1605, x1603, x1572, 0x0); fiat_np521_addcarryx_u32(&x1606, &x1607, x1605, x1574, 0x0); fiat_np521_addcarryx_u32(&x1608, &x1609, x1607, x1576, 0x0); fiat_np521_mulx_u32(&x1610, &x1611, x1578, UINT32_C(0x79a995c7)); fiat_np521_mulx_u32(&x1612, &x1613, x1610, UINT16_C(0x1ff)); fiat_np521_mulx_u32(&x1614, &x1615, x1610, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x1616, &x1617, x1610, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x1618, &x1619, x1610, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x1620, &x1621, x1610, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x1622, &x1623, x1610, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x1624, &x1625, x1610, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x1626, &x1627, x1610, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x1628, &x1629, x1610, UINT32_C(0xfffffffa)); fiat_np521_mulx_u32(&x1630, &x1631, x1610, UINT32_C(0x51868783)); fiat_np521_mulx_u32(&x1632, &x1633, x1610, UINT32_C(0xbf2f966b)); fiat_np521_mulx_u32(&x1634, &x1635, x1610, UINT32_C(0x7fcc0148)); fiat_np521_mulx_u32(&x1636, &x1637, x1610, UINT32_C(0xf709a5d0)); fiat_np521_mulx_u32(&x1638, &x1639, x1610, UINT32_C(0x3bb5c9b8)); fiat_np521_mulx_u32(&x1640, &x1641, x1610, UINT32_C(0x899c47ae)); fiat_np521_mulx_u32(&x1642, &x1643, x1610, UINT32_C(0xbb6fb71e)); fiat_np521_mulx_u32(&x1644, &x1645, x1610, UINT32_C(0x91386409)); fiat_np521_addcarryx_u32(&x1646, &x1647, 0x0, x1645, x1642); fiat_np521_addcarryx_u32(&x1648, &x1649, x1647, x1643, x1640); fiat_np521_addcarryx_u32(&x1650, &x1651, x1649, x1641, x1638); fiat_np521_addcarryx_u32(&x1652, &x1653, x1651, x1639, x1636); fiat_np521_addcarryx_u32(&x1654, &x1655, x1653, x1637, x1634); fiat_np521_addcarryx_u32(&x1656, &x1657, x1655, x1635, x1632); fiat_np521_addcarryx_u32(&x1658, &x1659, x1657, x1633, x1630); fiat_np521_addcarryx_u32(&x1660, &x1661, x1659, x1631, x1628); fiat_np521_addcarryx_u32(&x1662, &x1663, x1661, x1629, x1626); fiat_np521_addcarryx_u32(&x1664, &x1665, x1663, x1627, x1624); fiat_np521_addcarryx_u32(&x1666, &x1667, x1665, x1625, x1622); fiat_np521_addcarryx_u32(&x1668, &x1669, x1667, x1623, x1620); fiat_np521_addcarryx_u32(&x1670, &x1671, x1669, x1621, x1618); fiat_np521_addcarryx_u32(&x1672, &x1673, x1671, x1619, x1616); fiat_np521_addcarryx_u32(&x1674, &x1675, x1673, x1617, x1614); fiat_np521_addcarryx_u32(&x1676, &x1677, x1675, x1615, x1612); fiat_np521_addcarryx_u32(&x1678, &x1679, 0x0, x1578, x1644); fiat_np521_addcarryx_u32(&x1680, &x1681, x1679, x1580, x1646); fiat_np521_addcarryx_u32(&x1682, &x1683, x1681, x1582, x1648); fiat_np521_addcarryx_u32(&x1684, &x1685, x1683, x1584, x1650); fiat_np521_addcarryx_u32(&x1686, &x1687, x1685, x1586, x1652); fiat_np521_addcarryx_u32(&x1688, &x1689, x1687, x1588, x1654); fiat_np521_addcarryx_u32(&x1690, &x1691, x1689, x1590, x1656); fiat_np521_addcarryx_u32(&x1692, &x1693, x1691, x1592, x1658); fiat_np521_addcarryx_u32(&x1694, &x1695, x1693, x1594, x1660); fiat_np521_addcarryx_u32(&x1696, &x1697, x1695, x1596, x1662); fiat_np521_addcarryx_u32(&x1698, &x1699, x1697, x1598, x1664); fiat_np521_addcarryx_u32(&x1700, &x1701, x1699, x1600, x1666); fiat_np521_addcarryx_u32(&x1702, &x1703, x1701, x1602, x1668); fiat_np521_addcarryx_u32(&x1704, &x1705, x1703, x1604, x1670); fiat_np521_addcarryx_u32(&x1706, &x1707, x1705, x1606, x1672); fiat_np521_addcarryx_u32(&x1708, &x1709, x1707, x1608, x1674); fiat_np521_addcarryx_u32(&x1710, &x1711, x1709, (x1609 + (x1577 + (x1543 + x1479))), x1676); fiat_np521_addcarryx_u32(&x1712, &x1713, 0x0, x1680, (arg1[13])); fiat_np521_addcarryx_u32(&x1714, &x1715, x1713, x1682, 0x0); fiat_np521_addcarryx_u32(&x1716, &x1717, x1715, x1684, 0x0); fiat_np521_addcarryx_u32(&x1718, &x1719, x1717, x1686, 0x0); fiat_np521_addcarryx_u32(&x1720, &x1721, x1719, x1688, 0x0); fiat_np521_addcarryx_u32(&x1722, &x1723, x1721, x1690, 0x0); fiat_np521_addcarryx_u32(&x1724, &x1725, x1723, x1692, 0x0); fiat_np521_addcarryx_u32(&x1726, &x1727, x1725, x1694, 0x0); fiat_np521_addcarryx_u32(&x1728, &x1729, x1727, x1696, 0x0); fiat_np521_addcarryx_u32(&x1730, &x1731, x1729, x1698, 0x0); fiat_np521_addcarryx_u32(&x1732, &x1733, x1731, x1700, 0x0); fiat_np521_addcarryx_u32(&x1734, &x1735, x1733, x1702, 0x0); fiat_np521_addcarryx_u32(&x1736, &x1737, x1735, x1704, 0x0); fiat_np521_addcarryx_u32(&x1738, &x1739, x1737, x1706, 0x0); fiat_np521_addcarryx_u32(&x1740, &x1741, x1739, x1708, 0x0); fiat_np521_addcarryx_u32(&x1742, &x1743, x1741, x1710, 0x0); fiat_np521_mulx_u32(&x1744, &x1745, x1712, UINT32_C(0x79a995c7)); fiat_np521_mulx_u32(&x1746, &x1747, x1744, UINT16_C(0x1ff)); fiat_np521_mulx_u32(&x1748, &x1749, x1744, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x1750, &x1751, x1744, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x1752, &x1753, x1744, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x1754, &x1755, x1744, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x1756, &x1757, x1744, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x1758, &x1759, x1744, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x1760, &x1761, x1744, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x1762, &x1763, x1744, UINT32_C(0xfffffffa)); fiat_np521_mulx_u32(&x1764, &x1765, x1744, UINT32_C(0x51868783)); fiat_np521_mulx_u32(&x1766, &x1767, x1744, UINT32_C(0xbf2f966b)); fiat_np521_mulx_u32(&x1768, &x1769, x1744, UINT32_C(0x7fcc0148)); fiat_np521_mulx_u32(&x1770, &x1771, x1744, UINT32_C(0xf709a5d0)); fiat_np521_mulx_u32(&x1772, &x1773, x1744, UINT32_C(0x3bb5c9b8)); fiat_np521_mulx_u32(&x1774, &x1775, x1744, UINT32_C(0x899c47ae)); fiat_np521_mulx_u32(&x1776, &x1777, x1744, UINT32_C(0xbb6fb71e)); fiat_np521_mulx_u32(&x1778, &x1779, x1744, UINT32_C(0x91386409)); fiat_np521_addcarryx_u32(&x1780, &x1781, 0x0, x1779, x1776); fiat_np521_addcarryx_u32(&x1782, &x1783, x1781, x1777, x1774); fiat_np521_addcarryx_u32(&x1784, &x1785, x1783, x1775, x1772); fiat_np521_addcarryx_u32(&x1786, &x1787, x1785, x1773, x1770); fiat_np521_addcarryx_u32(&x1788, &x1789, x1787, x1771, x1768); fiat_np521_addcarryx_u32(&x1790, &x1791, x1789, x1769, x1766); fiat_np521_addcarryx_u32(&x1792, &x1793, x1791, x1767, x1764); fiat_np521_addcarryx_u32(&x1794, &x1795, x1793, x1765, x1762); fiat_np521_addcarryx_u32(&x1796, &x1797, x1795, x1763, x1760); fiat_np521_addcarryx_u32(&x1798, &x1799, x1797, x1761, x1758); fiat_np521_addcarryx_u32(&x1800, &x1801, x1799, x1759, x1756); fiat_np521_addcarryx_u32(&x1802, &x1803, x1801, x1757, x1754); fiat_np521_addcarryx_u32(&x1804, &x1805, x1803, x1755, x1752); fiat_np521_addcarryx_u32(&x1806, &x1807, x1805, x1753, x1750); fiat_np521_addcarryx_u32(&x1808, &x1809, x1807, x1751, x1748); fiat_np521_addcarryx_u32(&x1810, &x1811, x1809, x1749, x1746); fiat_np521_addcarryx_u32(&x1812, &x1813, 0x0, x1712, x1778); fiat_np521_addcarryx_u32(&x1814, &x1815, x1813, x1714, x1780); fiat_np521_addcarryx_u32(&x1816, &x1817, x1815, x1716, x1782); fiat_np521_addcarryx_u32(&x1818, &x1819, x1817, x1718, x1784); fiat_np521_addcarryx_u32(&x1820, &x1821, x1819, x1720, x1786); fiat_np521_addcarryx_u32(&x1822, &x1823, x1821, x1722, x1788); fiat_np521_addcarryx_u32(&x1824, &x1825, x1823, x1724, x1790); fiat_np521_addcarryx_u32(&x1826, &x1827, x1825, x1726, x1792); fiat_np521_addcarryx_u32(&x1828, &x1829, x1827, x1728, x1794); fiat_np521_addcarryx_u32(&x1830, &x1831, x1829, x1730, x1796); fiat_np521_addcarryx_u32(&x1832, &x1833, x1831, x1732, x1798); fiat_np521_addcarryx_u32(&x1834, &x1835, x1833, x1734, x1800); fiat_np521_addcarryx_u32(&x1836, &x1837, x1835, x1736, x1802); fiat_np521_addcarryx_u32(&x1838, &x1839, x1837, x1738, x1804); fiat_np521_addcarryx_u32(&x1840, &x1841, x1839, x1740, x1806); fiat_np521_addcarryx_u32(&x1842, &x1843, x1841, x1742, x1808); fiat_np521_addcarryx_u32(&x1844, &x1845, x1843, (x1743 + (x1711 + (x1677 + x1613))), x1810); fiat_np521_addcarryx_u32(&x1846, &x1847, 0x0, x1814, (arg1[14])); fiat_np521_addcarryx_u32(&x1848, &x1849, x1847, x1816, 0x0); fiat_np521_addcarryx_u32(&x1850, &x1851, x1849, x1818, 0x0); fiat_np521_addcarryx_u32(&x1852, &x1853, x1851, x1820, 0x0); fiat_np521_addcarryx_u32(&x1854, &x1855, x1853, x1822, 0x0); fiat_np521_addcarryx_u32(&x1856, &x1857, x1855, x1824, 0x0); fiat_np521_addcarryx_u32(&x1858, &x1859, x1857, x1826, 0x0); fiat_np521_addcarryx_u32(&x1860, &x1861, x1859, x1828, 0x0); fiat_np521_addcarryx_u32(&x1862, &x1863, x1861, x1830, 0x0); fiat_np521_addcarryx_u32(&x1864, &x1865, x1863, x1832, 0x0); fiat_np521_addcarryx_u32(&x1866, &x1867, x1865, x1834, 0x0); fiat_np521_addcarryx_u32(&x1868, &x1869, x1867, x1836, 0x0); fiat_np521_addcarryx_u32(&x1870, &x1871, x1869, x1838, 0x0); fiat_np521_addcarryx_u32(&x1872, &x1873, x1871, x1840, 0x0); fiat_np521_addcarryx_u32(&x1874, &x1875, x1873, x1842, 0x0); fiat_np521_addcarryx_u32(&x1876, &x1877, x1875, x1844, 0x0); fiat_np521_mulx_u32(&x1878, &x1879, x1846, UINT32_C(0x79a995c7)); fiat_np521_mulx_u32(&x1880, &x1881, x1878, UINT16_C(0x1ff)); fiat_np521_mulx_u32(&x1882, &x1883, x1878, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x1884, &x1885, x1878, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x1886, &x1887, x1878, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x1888, &x1889, x1878, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x1890, &x1891, x1878, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x1892, &x1893, x1878, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x1894, &x1895, x1878, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x1896, &x1897, x1878, UINT32_C(0xfffffffa)); fiat_np521_mulx_u32(&x1898, &x1899, x1878, UINT32_C(0x51868783)); fiat_np521_mulx_u32(&x1900, &x1901, x1878, UINT32_C(0xbf2f966b)); fiat_np521_mulx_u32(&x1902, &x1903, x1878, UINT32_C(0x7fcc0148)); fiat_np521_mulx_u32(&x1904, &x1905, x1878, UINT32_C(0xf709a5d0)); fiat_np521_mulx_u32(&x1906, &x1907, x1878, UINT32_C(0x3bb5c9b8)); fiat_np521_mulx_u32(&x1908, &x1909, x1878, UINT32_C(0x899c47ae)); fiat_np521_mulx_u32(&x1910, &x1911, x1878, UINT32_C(0xbb6fb71e)); fiat_np521_mulx_u32(&x1912, &x1913, x1878, UINT32_C(0x91386409)); fiat_np521_addcarryx_u32(&x1914, &x1915, 0x0, x1913, x1910); fiat_np521_addcarryx_u32(&x1916, &x1917, x1915, x1911, x1908); fiat_np521_addcarryx_u32(&x1918, &x1919, x1917, x1909, x1906); fiat_np521_addcarryx_u32(&x1920, &x1921, x1919, x1907, x1904); fiat_np521_addcarryx_u32(&x1922, &x1923, x1921, x1905, x1902); fiat_np521_addcarryx_u32(&x1924, &x1925, x1923, x1903, x1900); fiat_np521_addcarryx_u32(&x1926, &x1927, x1925, x1901, x1898); fiat_np521_addcarryx_u32(&x1928, &x1929, x1927, x1899, x1896); fiat_np521_addcarryx_u32(&x1930, &x1931, x1929, x1897, x1894); fiat_np521_addcarryx_u32(&x1932, &x1933, x1931, x1895, x1892); fiat_np521_addcarryx_u32(&x1934, &x1935, x1933, x1893, x1890); fiat_np521_addcarryx_u32(&x1936, &x1937, x1935, x1891, x1888); fiat_np521_addcarryx_u32(&x1938, &x1939, x1937, x1889, x1886); fiat_np521_addcarryx_u32(&x1940, &x1941, x1939, x1887, x1884); fiat_np521_addcarryx_u32(&x1942, &x1943, x1941, x1885, x1882); fiat_np521_addcarryx_u32(&x1944, &x1945, x1943, x1883, x1880); fiat_np521_addcarryx_u32(&x1946, &x1947, 0x0, x1846, x1912); fiat_np521_addcarryx_u32(&x1948, &x1949, x1947, x1848, x1914); fiat_np521_addcarryx_u32(&x1950, &x1951, x1949, x1850, x1916); fiat_np521_addcarryx_u32(&x1952, &x1953, x1951, x1852, x1918); fiat_np521_addcarryx_u32(&x1954, &x1955, x1953, x1854, x1920); fiat_np521_addcarryx_u32(&x1956, &x1957, x1955, x1856, x1922); fiat_np521_addcarryx_u32(&x1958, &x1959, x1957, x1858, x1924); fiat_np521_addcarryx_u32(&x1960, &x1961, x1959, x1860, x1926); fiat_np521_addcarryx_u32(&x1962, &x1963, x1961, x1862, x1928); fiat_np521_addcarryx_u32(&x1964, &x1965, x1963, x1864, x1930); fiat_np521_addcarryx_u32(&x1966, &x1967, x1965, x1866, x1932); fiat_np521_addcarryx_u32(&x1968, &x1969, x1967, x1868, x1934); fiat_np521_addcarryx_u32(&x1970, &x1971, x1969, x1870, x1936); fiat_np521_addcarryx_u32(&x1972, &x1973, x1971, x1872, x1938); fiat_np521_addcarryx_u32(&x1974, &x1975, x1973, x1874, x1940); fiat_np521_addcarryx_u32(&x1976, &x1977, x1975, x1876, x1942); fiat_np521_addcarryx_u32(&x1978, &x1979, x1977, (x1877 + (x1845 + (x1811 + x1747))), x1944); fiat_np521_addcarryx_u32(&x1980, &x1981, 0x0, x1948, (arg1[15])); fiat_np521_addcarryx_u32(&x1982, &x1983, x1981, x1950, 0x0); fiat_np521_addcarryx_u32(&x1984, &x1985, x1983, x1952, 0x0); fiat_np521_addcarryx_u32(&x1986, &x1987, x1985, x1954, 0x0); fiat_np521_addcarryx_u32(&x1988, &x1989, x1987, x1956, 0x0); fiat_np521_addcarryx_u32(&x1990, &x1991, x1989, x1958, 0x0); fiat_np521_addcarryx_u32(&x1992, &x1993, x1991, x1960, 0x0); fiat_np521_addcarryx_u32(&x1994, &x1995, x1993, x1962, 0x0); fiat_np521_addcarryx_u32(&x1996, &x1997, x1995, x1964, 0x0); fiat_np521_addcarryx_u32(&x1998, &x1999, x1997, x1966, 0x0); fiat_np521_addcarryx_u32(&x2000, &x2001, x1999, x1968, 0x0); fiat_np521_addcarryx_u32(&x2002, &x2003, x2001, x1970, 0x0); fiat_np521_addcarryx_u32(&x2004, &x2005, x2003, x1972, 0x0); fiat_np521_addcarryx_u32(&x2006, &x2007, x2005, x1974, 0x0); fiat_np521_addcarryx_u32(&x2008, &x2009, x2007, x1976, 0x0); fiat_np521_addcarryx_u32(&x2010, &x2011, x2009, x1978, 0x0); fiat_np521_mulx_u32(&x2012, &x2013, x1980, UINT32_C(0x79a995c7)); fiat_np521_mulx_u32(&x2014, &x2015, x2012, UINT16_C(0x1ff)); fiat_np521_mulx_u32(&x2016, &x2017, x2012, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x2018, &x2019, x2012, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x2020, &x2021, x2012, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x2022, &x2023, x2012, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x2024, &x2025, x2012, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x2026, &x2027, x2012, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x2028, &x2029, x2012, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x2030, &x2031, x2012, UINT32_C(0xfffffffa)); fiat_np521_mulx_u32(&x2032, &x2033, x2012, UINT32_C(0x51868783)); fiat_np521_mulx_u32(&x2034, &x2035, x2012, UINT32_C(0xbf2f966b)); fiat_np521_mulx_u32(&x2036, &x2037, x2012, UINT32_C(0x7fcc0148)); fiat_np521_mulx_u32(&x2038, &x2039, x2012, UINT32_C(0xf709a5d0)); fiat_np521_mulx_u32(&x2040, &x2041, x2012, UINT32_C(0x3bb5c9b8)); fiat_np521_mulx_u32(&x2042, &x2043, x2012, UINT32_C(0x899c47ae)); fiat_np521_mulx_u32(&x2044, &x2045, x2012, UINT32_C(0xbb6fb71e)); fiat_np521_mulx_u32(&x2046, &x2047, x2012, UINT32_C(0x91386409)); fiat_np521_addcarryx_u32(&x2048, &x2049, 0x0, x2047, x2044); fiat_np521_addcarryx_u32(&x2050, &x2051, x2049, x2045, x2042); fiat_np521_addcarryx_u32(&x2052, &x2053, x2051, x2043, x2040); fiat_np521_addcarryx_u32(&x2054, &x2055, x2053, x2041, x2038); fiat_np521_addcarryx_u32(&x2056, &x2057, x2055, x2039, x2036); fiat_np521_addcarryx_u32(&x2058, &x2059, x2057, x2037, x2034); fiat_np521_addcarryx_u32(&x2060, &x2061, x2059, x2035, x2032); fiat_np521_addcarryx_u32(&x2062, &x2063, x2061, x2033, x2030); fiat_np521_addcarryx_u32(&x2064, &x2065, x2063, x2031, x2028); fiat_np521_addcarryx_u32(&x2066, &x2067, x2065, x2029, x2026); fiat_np521_addcarryx_u32(&x2068, &x2069, x2067, x2027, x2024); fiat_np521_addcarryx_u32(&x2070, &x2071, x2069, x2025, x2022); fiat_np521_addcarryx_u32(&x2072, &x2073, x2071, x2023, x2020); fiat_np521_addcarryx_u32(&x2074, &x2075, x2073, x2021, x2018); fiat_np521_addcarryx_u32(&x2076, &x2077, x2075, x2019, x2016); fiat_np521_addcarryx_u32(&x2078, &x2079, x2077, x2017, x2014); fiat_np521_addcarryx_u32(&x2080, &x2081, 0x0, x1980, x2046); fiat_np521_addcarryx_u32(&x2082, &x2083, x2081, x1982, x2048); fiat_np521_addcarryx_u32(&x2084, &x2085, x2083, x1984, x2050); fiat_np521_addcarryx_u32(&x2086, &x2087, x2085, x1986, x2052); fiat_np521_addcarryx_u32(&x2088, &x2089, x2087, x1988, x2054); fiat_np521_addcarryx_u32(&x2090, &x2091, x2089, x1990, x2056); fiat_np521_addcarryx_u32(&x2092, &x2093, x2091, x1992, x2058); fiat_np521_addcarryx_u32(&x2094, &x2095, x2093, x1994, x2060); fiat_np521_addcarryx_u32(&x2096, &x2097, x2095, x1996, x2062); fiat_np521_addcarryx_u32(&x2098, &x2099, x2097, x1998, x2064); fiat_np521_addcarryx_u32(&x2100, &x2101, x2099, x2000, x2066); fiat_np521_addcarryx_u32(&x2102, &x2103, x2101, x2002, x2068); fiat_np521_addcarryx_u32(&x2104, &x2105, x2103, x2004, x2070); fiat_np521_addcarryx_u32(&x2106, &x2107, x2105, x2006, x2072); fiat_np521_addcarryx_u32(&x2108, &x2109, x2107, x2008, x2074); fiat_np521_addcarryx_u32(&x2110, &x2111, x2109, x2010, x2076); fiat_np521_addcarryx_u32(&x2112, &x2113, x2111, (x2011 + (x1979 + (x1945 + x1881))), x2078); fiat_np521_addcarryx_u32(&x2114, &x2115, 0x0, x2082, (arg1[16])); fiat_np521_addcarryx_u32(&x2116, &x2117, x2115, x2084, 0x0); fiat_np521_addcarryx_u32(&x2118, &x2119, x2117, x2086, 0x0); fiat_np521_addcarryx_u32(&x2120, &x2121, x2119, x2088, 0x0); fiat_np521_addcarryx_u32(&x2122, &x2123, x2121, x2090, 0x0); fiat_np521_addcarryx_u32(&x2124, &x2125, x2123, x2092, 0x0); fiat_np521_addcarryx_u32(&x2126, &x2127, x2125, x2094, 0x0); fiat_np521_addcarryx_u32(&x2128, &x2129, x2127, x2096, 0x0); fiat_np521_addcarryx_u32(&x2130, &x2131, x2129, x2098, 0x0); fiat_np521_addcarryx_u32(&x2132, &x2133, x2131, x2100, 0x0); fiat_np521_addcarryx_u32(&x2134, &x2135, x2133, x2102, 0x0); fiat_np521_addcarryx_u32(&x2136, &x2137, x2135, x2104, 0x0); fiat_np521_addcarryx_u32(&x2138, &x2139, x2137, x2106, 0x0); fiat_np521_addcarryx_u32(&x2140, &x2141, x2139, x2108, 0x0); fiat_np521_addcarryx_u32(&x2142, &x2143, x2141, x2110, 0x0); fiat_np521_addcarryx_u32(&x2144, &x2145, x2143, x2112, 0x0); fiat_np521_mulx_u32(&x2146, &x2147, x2114, UINT32_C(0x79a995c7)); fiat_np521_mulx_u32(&x2148, &x2149, x2146, UINT16_C(0x1ff)); fiat_np521_mulx_u32(&x2150, &x2151, x2146, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x2152, &x2153, x2146, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x2154, &x2155, x2146, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x2156, &x2157, x2146, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x2158, &x2159, x2146, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x2160, &x2161, x2146, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x2162, &x2163, x2146, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x2164, &x2165, x2146, UINT32_C(0xfffffffa)); fiat_np521_mulx_u32(&x2166, &x2167, x2146, UINT32_C(0x51868783)); fiat_np521_mulx_u32(&x2168, &x2169, x2146, UINT32_C(0xbf2f966b)); fiat_np521_mulx_u32(&x2170, &x2171, x2146, UINT32_C(0x7fcc0148)); fiat_np521_mulx_u32(&x2172, &x2173, x2146, UINT32_C(0xf709a5d0)); fiat_np521_mulx_u32(&x2174, &x2175, x2146, UINT32_C(0x3bb5c9b8)); fiat_np521_mulx_u32(&x2176, &x2177, x2146, UINT32_C(0x899c47ae)); fiat_np521_mulx_u32(&x2178, &x2179, x2146, UINT32_C(0xbb6fb71e)); fiat_np521_mulx_u32(&x2180, &x2181, x2146, UINT32_C(0x91386409)); fiat_np521_addcarryx_u32(&x2182, &x2183, 0x0, x2181, x2178); fiat_np521_addcarryx_u32(&x2184, &x2185, x2183, x2179, x2176); fiat_np521_addcarryx_u32(&x2186, &x2187, x2185, x2177, x2174); fiat_np521_addcarryx_u32(&x2188, &x2189, x2187, x2175, x2172); fiat_np521_addcarryx_u32(&x2190, &x2191, x2189, x2173, x2170); fiat_np521_addcarryx_u32(&x2192, &x2193, x2191, x2171, x2168); fiat_np521_addcarryx_u32(&x2194, &x2195, x2193, x2169, x2166); fiat_np521_addcarryx_u32(&x2196, &x2197, x2195, x2167, x2164); fiat_np521_addcarryx_u32(&x2198, &x2199, x2197, x2165, x2162); fiat_np521_addcarryx_u32(&x2200, &x2201, x2199, x2163, x2160); fiat_np521_addcarryx_u32(&x2202, &x2203, x2201, x2161, x2158); fiat_np521_addcarryx_u32(&x2204, &x2205, x2203, x2159, x2156); fiat_np521_addcarryx_u32(&x2206, &x2207, x2205, x2157, x2154); fiat_np521_addcarryx_u32(&x2208, &x2209, x2207, x2155, x2152); fiat_np521_addcarryx_u32(&x2210, &x2211, x2209, x2153, x2150); fiat_np521_addcarryx_u32(&x2212, &x2213, x2211, x2151, x2148); fiat_np521_addcarryx_u32(&x2214, &x2215, 0x0, x2114, x2180); fiat_np521_addcarryx_u32(&x2216, &x2217, x2215, x2116, x2182); fiat_np521_addcarryx_u32(&x2218, &x2219, x2217, x2118, x2184); fiat_np521_addcarryx_u32(&x2220, &x2221, x2219, x2120, x2186); fiat_np521_addcarryx_u32(&x2222, &x2223, x2221, x2122, x2188); fiat_np521_addcarryx_u32(&x2224, &x2225, x2223, x2124, x2190); fiat_np521_addcarryx_u32(&x2226, &x2227, x2225, x2126, x2192); fiat_np521_addcarryx_u32(&x2228, &x2229, x2227, x2128, x2194); fiat_np521_addcarryx_u32(&x2230, &x2231, x2229, x2130, x2196); fiat_np521_addcarryx_u32(&x2232, &x2233, x2231, x2132, x2198); fiat_np521_addcarryx_u32(&x2234, &x2235, x2233, x2134, x2200); fiat_np521_addcarryx_u32(&x2236, &x2237, x2235, x2136, x2202); fiat_np521_addcarryx_u32(&x2238, &x2239, x2237, x2138, x2204); fiat_np521_addcarryx_u32(&x2240, &x2241, x2239, x2140, x2206); fiat_np521_addcarryx_u32(&x2242, &x2243, x2241, x2142, x2208); fiat_np521_addcarryx_u32(&x2244, &x2245, x2243, x2144, x2210); fiat_np521_addcarryx_u32(&x2246, &x2247, x2245, (x2145 + (x2113 + (x2079 + x2015))), x2212); x2248 = (x2247 + (x2213 + x2149)); fiat_np521_subborrowx_u32(&x2249, &x2250, 0x0, x2216, UINT32_C(0x91386409)); fiat_np521_subborrowx_u32(&x2251, &x2252, x2250, x2218, UINT32_C(0xbb6fb71e)); fiat_np521_subborrowx_u32(&x2253, &x2254, x2252, x2220, UINT32_C(0x899c47ae)); fiat_np521_subborrowx_u32(&x2255, &x2256, x2254, x2222, UINT32_C(0x3bb5c9b8)); fiat_np521_subborrowx_u32(&x2257, &x2258, x2256, x2224, UINT32_C(0xf709a5d0)); fiat_np521_subborrowx_u32(&x2259, &x2260, x2258, x2226, UINT32_C(0x7fcc0148)); fiat_np521_subborrowx_u32(&x2261, &x2262, x2260, x2228, UINT32_C(0xbf2f966b)); fiat_np521_subborrowx_u32(&x2263, &x2264, x2262, x2230, UINT32_C(0x51868783)); fiat_np521_subborrowx_u32(&x2265, &x2266, x2264, x2232, UINT32_C(0xfffffffa)); fiat_np521_subborrowx_u32(&x2267, &x2268, x2266, x2234, UINT32_C(0xffffffff)); fiat_np521_subborrowx_u32(&x2269, &x2270, x2268, x2236, UINT32_C(0xffffffff)); fiat_np521_subborrowx_u32(&x2271, &x2272, x2270, x2238, UINT32_C(0xffffffff)); fiat_np521_subborrowx_u32(&x2273, &x2274, x2272, x2240, UINT32_C(0xffffffff)); fiat_np521_subborrowx_u32(&x2275, &x2276, x2274, x2242, UINT32_C(0xffffffff)); fiat_np521_subborrowx_u32(&x2277, &x2278, x2276, x2244, UINT32_C(0xffffffff)); fiat_np521_subborrowx_u32(&x2279, &x2280, x2278, x2246, UINT32_C(0xffffffff)); fiat_np521_subborrowx_u32(&x2281, &x2282, x2280, x2248, UINT16_C(0x1ff)); fiat_np521_subborrowx_u32(&x2283, &x2284, x2282, 0x0, 0x0); fiat_np521_cmovznz_u32(&x2285, x2284, x2249, x2216); fiat_np521_cmovznz_u32(&x2286, x2284, x2251, x2218); fiat_np521_cmovznz_u32(&x2287, x2284, x2253, x2220); fiat_np521_cmovznz_u32(&x2288, x2284, x2255, x2222); fiat_np521_cmovznz_u32(&x2289, x2284, x2257, x2224); fiat_np521_cmovznz_u32(&x2290, x2284, x2259, x2226); fiat_np521_cmovznz_u32(&x2291, x2284, x2261, x2228); fiat_np521_cmovznz_u32(&x2292, x2284, x2263, x2230); fiat_np521_cmovznz_u32(&x2293, x2284, x2265, x2232); fiat_np521_cmovznz_u32(&x2294, x2284, x2267, x2234); fiat_np521_cmovznz_u32(&x2295, x2284, x2269, x2236); fiat_np521_cmovznz_u32(&x2296, x2284, x2271, x2238); fiat_np521_cmovznz_u32(&x2297, x2284, x2273, x2240); fiat_np521_cmovznz_u32(&x2298, x2284, x2275, x2242); fiat_np521_cmovznz_u32(&x2299, x2284, x2277, x2244); fiat_np521_cmovznz_u32(&x2300, x2284, x2279, x2246); fiat_np521_cmovznz_u32(&x2301, x2284, x2281, x2248); out1[0] = x2285; out1[1] = x2286; out1[2] = x2287; out1[3] = x2288; out1[4] = x2289; out1[5] = x2290; out1[6] = x2291; out1[7] = x2292; out1[8] = x2293; out1[9] = x2294; out1[10] = x2295; out1[11] = x2296; out1[12] = x2297; out1[13] = x2298; out1[14] = x2299; out1[15] = x2300; out1[16] = x2301; } /* * The function fiat_np521_to_montgomery translates a field element into the Montgomery domain. * * Preconditions: * 0 ≤ eval arg1 < m * Postconditions: * eval (from_montgomery out1) mod m = eval arg1 mod m * 0 ≤ eval out1 < m * */ static void fiat_np521_to_montgomery(fiat_np521_montgomery_domain_field_element out1, const fiat_np521_non_montgomery_domain_field_element arg1) { uint32_t x1; uint32_t x2; uint32_t x3; uint32_t x4; uint32_t x5; uint32_t x6; uint32_t x7; uint32_t x8; uint32_t x9; uint32_t x10; uint32_t x11; uint32_t x12; uint32_t x13; uint32_t x14; uint32_t x15; uint32_t x16; uint32_t x17; uint32_t x18; uint32_t x19; uint32_t x20; uint32_t x21; uint32_t x22; uint32_t x23; uint32_t x24; uint32_t x25; uint32_t x26; uint32_t x27; uint32_t x28; uint32_t x29; uint32_t x30; uint32_t x31; uint32_t x32; uint32_t x33; uint32_t x34; uint32_t x35; uint32_t x36; uint32_t x37; uint32_t x38; uint32_t x39; uint32_t x40; uint32_t x41; uint32_t x42; uint32_t x43; uint32_t x44; uint32_t x45; uint32_t x46; uint32_t x47; uint32_t x48; uint32_t x49; uint32_t x50; uint32_t x51; uint32_t x52; fiat_np521_uint1 x53; uint32_t x54; fiat_np521_uint1 x55; uint32_t x56; fiat_np521_uint1 x57; uint32_t x58; fiat_np521_uint1 x59; uint32_t x60; fiat_np521_uint1 x61; uint32_t x62; fiat_np521_uint1 x63; uint32_t x64; fiat_np521_uint1 x65; uint32_t x66; fiat_np521_uint1 x67; uint32_t x68; fiat_np521_uint1 x69; uint32_t x70; fiat_np521_uint1 x71; uint32_t x72; fiat_np521_uint1 x73; uint32_t x74; fiat_np521_uint1 x75; uint32_t x76; fiat_np521_uint1 x77; uint32_t x78; fiat_np521_uint1 x79; uint32_t x80; fiat_np521_uint1 x81; uint32_t x82; fiat_np521_uint1 x83; uint32_t x84; uint32_t x85; uint32_t x86; uint32_t x87; uint32_t x88; uint32_t x89; uint32_t x90; uint32_t x91; uint32_t x92; uint32_t x93; uint32_t x94; uint32_t x95; uint32_t x96; uint32_t x97; uint32_t x98; uint32_t x99; uint32_t x100; uint32_t x101; uint32_t x102; uint32_t x103; uint32_t x104; uint32_t x105; uint32_t x106; uint32_t x107; uint32_t x108; uint32_t x109; uint32_t x110; uint32_t x111; uint32_t x112; uint32_t x113; uint32_t x114; uint32_t x115; uint32_t x116; uint32_t x117; uint32_t x118; uint32_t x119; uint32_t x120; fiat_np521_uint1 x121; uint32_t x122; fiat_np521_uint1 x123; uint32_t x124; fiat_np521_uint1 x125; uint32_t x126; fiat_np521_uint1 x127; uint32_t x128; fiat_np521_uint1 x129; uint32_t x130; fiat_np521_uint1 x131; uint32_t x132; fiat_np521_uint1 x133; uint32_t x134; fiat_np521_uint1 x135; uint32_t x136; fiat_np521_uint1 x137; uint32_t x138; fiat_np521_uint1 x139; uint32_t x140; fiat_np521_uint1 x141; uint32_t x142; fiat_np521_uint1 x143; uint32_t x144; fiat_np521_uint1 x145; uint32_t x146; fiat_np521_uint1 x147; uint32_t x148; fiat_np521_uint1 x149; uint32_t x150; fiat_np521_uint1 x151; uint32_t x152; fiat_np521_uint1 x153; uint32_t x154; fiat_np521_uint1 x155; uint32_t x156; fiat_np521_uint1 x157; uint32_t x158; fiat_np521_uint1 x159; uint32_t x160; fiat_np521_uint1 x161; uint32_t x162; fiat_np521_uint1 x163; uint32_t x164; fiat_np521_uint1 x165; uint32_t x166; fiat_np521_uint1 x167; uint32_t x168; fiat_np521_uint1 x169; uint32_t x170; fiat_np521_uint1 x171; uint32_t x172; fiat_np521_uint1 x173; uint32_t x174; fiat_np521_uint1 x175; uint32_t x176; fiat_np521_uint1 x177; uint32_t x178; fiat_np521_uint1 x179; uint32_t x180; fiat_np521_uint1 x181; uint32_t x182; fiat_np521_uint1 x183; uint32_t x184; fiat_np521_uint1 x185; uint32_t x186; uint32_t x187; uint32_t x188; uint32_t x189; uint32_t x190; uint32_t x191; uint32_t x192; uint32_t x193; uint32_t x194; uint32_t x195; uint32_t x196; uint32_t x197; uint32_t x198; uint32_t x199; uint32_t x200; uint32_t x201; uint32_t x202; uint32_t x203; uint32_t x204; uint32_t x205; uint32_t x206; uint32_t x207; uint32_t x208; uint32_t x209; uint32_t x210; uint32_t x211; uint32_t x212; uint32_t x213; uint32_t x214; uint32_t x215; uint32_t x216; uint32_t x217; uint32_t x218; uint32_t x219; uint32_t x220; fiat_np521_uint1 x221; uint32_t x222; fiat_np521_uint1 x223; uint32_t x224; fiat_np521_uint1 x225; uint32_t x226; fiat_np521_uint1 x227; uint32_t x228; fiat_np521_uint1 x229; uint32_t x230; fiat_np521_uint1 x231; uint32_t x232; fiat_np521_uint1 x233; uint32_t x234; fiat_np521_uint1 x235; uint32_t x236; fiat_np521_uint1 x237; uint32_t x238; fiat_np521_uint1 x239; uint32_t x240; fiat_np521_uint1 x241; uint32_t x242; fiat_np521_uint1 x243; uint32_t x244; fiat_np521_uint1 x245; uint32_t x246; fiat_np521_uint1 x247; uint32_t x248; fiat_np521_uint1 x249; uint32_t x250; fiat_np521_uint1 x251; uint32_t x252; fiat_np521_uint1 x253; uint32_t x254; fiat_np521_uint1 x255; uint32_t x256; fiat_np521_uint1 x257; uint32_t x258; fiat_np521_uint1 x259; uint32_t x260; fiat_np521_uint1 x261; uint32_t x262; fiat_np521_uint1 x263; uint32_t x264; fiat_np521_uint1 x265; uint32_t x266; fiat_np521_uint1 x267; uint32_t x268; fiat_np521_uint1 x269; uint32_t x270; fiat_np521_uint1 x271; uint32_t x272; fiat_np521_uint1 x273; uint32_t x274; fiat_np521_uint1 x275; uint32_t x276; fiat_np521_uint1 x277; uint32_t x278; fiat_np521_uint1 x279; uint32_t x280; fiat_np521_uint1 x281; uint32_t x282; fiat_np521_uint1 x283; uint32_t x284; fiat_np521_uint1 x285; uint32_t x286; uint32_t x287; uint32_t x288; uint32_t x289; uint32_t x290; uint32_t x291; uint32_t x292; uint32_t x293; uint32_t x294; uint32_t x295; uint32_t x296; uint32_t x297; uint32_t x298; uint32_t x299; uint32_t x300; uint32_t x301; uint32_t x302; uint32_t x303; uint32_t x304; uint32_t x305; uint32_t x306; uint32_t x307; uint32_t x308; uint32_t x309; uint32_t x310; uint32_t x311; uint32_t x312; uint32_t x313; uint32_t x314; uint32_t x315; uint32_t x316; uint32_t x317; uint32_t x318; uint32_t x319; uint32_t x320; uint32_t x321; uint32_t x322; fiat_np521_uint1 x323; uint32_t x324; fiat_np521_uint1 x325; uint32_t x326; fiat_np521_uint1 x327; uint32_t x328; fiat_np521_uint1 x329; uint32_t x330; fiat_np521_uint1 x331; uint32_t x332; fiat_np521_uint1 x333; uint32_t x334; fiat_np521_uint1 x335; uint32_t x336; fiat_np521_uint1 x337; uint32_t x338; fiat_np521_uint1 x339; uint32_t x340; fiat_np521_uint1 x341; uint32_t x342; fiat_np521_uint1 x343; uint32_t x344; fiat_np521_uint1 x345; uint32_t x346; fiat_np521_uint1 x347; uint32_t x348; fiat_np521_uint1 x349; uint32_t x350; fiat_np521_uint1 x351; uint32_t x352; fiat_np521_uint1 x353; uint32_t x354; fiat_np521_uint1 x355; uint32_t x356; fiat_np521_uint1 x357; uint32_t x358; fiat_np521_uint1 x359; uint32_t x360; fiat_np521_uint1 x361; uint32_t x362; fiat_np521_uint1 x363; uint32_t x364; fiat_np521_uint1 x365; uint32_t x366; fiat_np521_uint1 x367; uint32_t x368; fiat_np521_uint1 x369; uint32_t x370; fiat_np521_uint1 x371; uint32_t x372; fiat_np521_uint1 x373; uint32_t x374; fiat_np521_uint1 x375; uint32_t x376; fiat_np521_uint1 x377; uint32_t x378; fiat_np521_uint1 x379; uint32_t x380; fiat_np521_uint1 x381; uint32_t x382; fiat_np521_uint1 x383; uint32_t x384; fiat_np521_uint1 x385; uint32_t x386; fiat_np521_uint1 x387; uint32_t x388; uint32_t x389; uint32_t x390; uint32_t x391; uint32_t x392; uint32_t x393; uint32_t x394; uint32_t x395; uint32_t x396; uint32_t x397; uint32_t x398; uint32_t x399; uint32_t x400; uint32_t x401; uint32_t x402; uint32_t x403; uint32_t x404; uint32_t x405; uint32_t x406; uint32_t x407; uint32_t x408; uint32_t x409; uint32_t x410; uint32_t x411; uint32_t x412; uint32_t x413; uint32_t x414; uint32_t x415; uint32_t x416; uint32_t x417; uint32_t x418; uint32_t x419; uint32_t x420; uint32_t x421; uint32_t x422; fiat_np521_uint1 x423; uint32_t x424; fiat_np521_uint1 x425; uint32_t x426; fiat_np521_uint1 x427; uint32_t x428; fiat_np521_uint1 x429; uint32_t x430; fiat_np521_uint1 x431; uint32_t x432; fiat_np521_uint1 x433; uint32_t x434; fiat_np521_uint1 x435; uint32_t x436; fiat_np521_uint1 x437; uint32_t x438; fiat_np521_uint1 x439; uint32_t x440; fiat_np521_uint1 x441; uint32_t x442; fiat_np521_uint1 x443; uint32_t x444; fiat_np521_uint1 x445; uint32_t x446; fiat_np521_uint1 x447; uint32_t x448; fiat_np521_uint1 x449; uint32_t x450; fiat_np521_uint1 x451; uint32_t x452; fiat_np521_uint1 x453; uint32_t x454; fiat_np521_uint1 x455; uint32_t x456; fiat_np521_uint1 x457; uint32_t x458; fiat_np521_uint1 x459; uint32_t x460; fiat_np521_uint1 x461; uint32_t x462; fiat_np521_uint1 x463; uint32_t x464; fiat_np521_uint1 x465; uint32_t x466; fiat_np521_uint1 x467; uint32_t x468; fiat_np521_uint1 x469; uint32_t x470; fiat_np521_uint1 x471; uint32_t x472; fiat_np521_uint1 x473; uint32_t x474; fiat_np521_uint1 x475; uint32_t x476; fiat_np521_uint1 x477; uint32_t x478; fiat_np521_uint1 x479; uint32_t x480; fiat_np521_uint1 x481; uint32_t x482; fiat_np521_uint1 x483; uint32_t x484; fiat_np521_uint1 x485; uint32_t x486; fiat_np521_uint1 x487; uint32_t x488; uint32_t x489; uint32_t x490; uint32_t x491; uint32_t x492; uint32_t x493; uint32_t x494; uint32_t x495; uint32_t x496; uint32_t x497; uint32_t x498; uint32_t x499; uint32_t x500; uint32_t x501; uint32_t x502; uint32_t x503; uint32_t x504; uint32_t x505; uint32_t x506; uint32_t x507; uint32_t x508; uint32_t x509; uint32_t x510; uint32_t x511; uint32_t x512; uint32_t x513; uint32_t x514; uint32_t x515; uint32_t x516; uint32_t x517; uint32_t x518; uint32_t x519; uint32_t x520; uint32_t x521; uint32_t x522; uint32_t x523; uint32_t x524; fiat_np521_uint1 x525; uint32_t x526; fiat_np521_uint1 x527; uint32_t x528; fiat_np521_uint1 x529; uint32_t x530; fiat_np521_uint1 x531; uint32_t x532; fiat_np521_uint1 x533; uint32_t x534; fiat_np521_uint1 x535; uint32_t x536; fiat_np521_uint1 x537; uint32_t x538; fiat_np521_uint1 x539; uint32_t x540; fiat_np521_uint1 x541; uint32_t x542; fiat_np521_uint1 x543; uint32_t x544; fiat_np521_uint1 x545; uint32_t x546; fiat_np521_uint1 x547; uint32_t x548; fiat_np521_uint1 x549; uint32_t x550; fiat_np521_uint1 x551; uint32_t x552; fiat_np521_uint1 x553; uint32_t x554; fiat_np521_uint1 x555; uint32_t x556; fiat_np521_uint1 x557; uint32_t x558; fiat_np521_uint1 x559; uint32_t x560; fiat_np521_uint1 x561; uint32_t x562; fiat_np521_uint1 x563; uint32_t x564; fiat_np521_uint1 x565; uint32_t x566; fiat_np521_uint1 x567; uint32_t x568; fiat_np521_uint1 x569; uint32_t x570; fiat_np521_uint1 x571; uint32_t x572; fiat_np521_uint1 x573; uint32_t x574; fiat_np521_uint1 x575; uint32_t x576; fiat_np521_uint1 x577; uint32_t x578; fiat_np521_uint1 x579; uint32_t x580; fiat_np521_uint1 x581; uint32_t x582; fiat_np521_uint1 x583; uint32_t x584; fiat_np521_uint1 x585; uint32_t x586; fiat_np521_uint1 x587; uint32_t x588; fiat_np521_uint1 x589; uint32_t x590; uint32_t x591; uint32_t x592; uint32_t x593; uint32_t x594; uint32_t x595; uint32_t x596; uint32_t x597; uint32_t x598; uint32_t x599; uint32_t x600; uint32_t x601; uint32_t x602; uint32_t x603; uint32_t x604; uint32_t x605; uint32_t x606; uint32_t x607; uint32_t x608; uint32_t x609; uint32_t x610; uint32_t x611; uint32_t x612; uint32_t x613; uint32_t x614; uint32_t x615; uint32_t x616; uint32_t x617; uint32_t x618; uint32_t x619; uint32_t x620; uint32_t x621; uint32_t x622; uint32_t x623; uint32_t x624; fiat_np521_uint1 x625; uint32_t x626; fiat_np521_uint1 x627; uint32_t x628; fiat_np521_uint1 x629; uint32_t x630; fiat_np521_uint1 x631; uint32_t x632; fiat_np521_uint1 x633; uint32_t x634; fiat_np521_uint1 x635; uint32_t x636; fiat_np521_uint1 x637; uint32_t x638; fiat_np521_uint1 x639; uint32_t x640; fiat_np521_uint1 x641; uint32_t x642; fiat_np521_uint1 x643; uint32_t x644; fiat_np521_uint1 x645; uint32_t x646; fiat_np521_uint1 x647; uint32_t x648; fiat_np521_uint1 x649; uint32_t x650; fiat_np521_uint1 x651; uint32_t x652; fiat_np521_uint1 x653; uint32_t x654; fiat_np521_uint1 x655; uint32_t x656; fiat_np521_uint1 x657; uint32_t x658; fiat_np521_uint1 x659; uint32_t x660; fiat_np521_uint1 x661; uint32_t x662; fiat_np521_uint1 x663; uint32_t x664; fiat_np521_uint1 x665; uint32_t x666; fiat_np521_uint1 x667; uint32_t x668; fiat_np521_uint1 x669; uint32_t x670; fiat_np521_uint1 x671; uint32_t x672; fiat_np521_uint1 x673; uint32_t x674; fiat_np521_uint1 x675; uint32_t x676; fiat_np521_uint1 x677; uint32_t x678; fiat_np521_uint1 x679; uint32_t x680; fiat_np521_uint1 x681; uint32_t x682; fiat_np521_uint1 x683; uint32_t x684; fiat_np521_uint1 x685; uint32_t x686; fiat_np521_uint1 x687; uint32_t x688; fiat_np521_uint1 x689; uint32_t x690; uint32_t x691; uint32_t x692; uint32_t x693; uint32_t x694; uint32_t x695; uint32_t x696; uint32_t x697; uint32_t x698; uint32_t x699; uint32_t x700; uint32_t x701; uint32_t x702; uint32_t x703; uint32_t x704; uint32_t x705; uint32_t x706; uint32_t x707; uint32_t x708; uint32_t x709; uint32_t x710; uint32_t x711; uint32_t x712; uint32_t x713; uint32_t x714; uint32_t x715; uint32_t x716; uint32_t x717; uint32_t x718; uint32_t x719; uint32_t x720; uint32_t x721; uint32_t x722; uint32_t x723; uint32_t x724; uint32_t x725; uint32_t x726; fiat_np521_uint1 x727; uint32_t x728; fiat_np521_uint1 x729; uint32_t x730; fiat_np521_uint1 x731; uint32_t x732; fiat_np521_uint1 x733; uint32_t x734; fiat_np521_uint1 x735; uint32_t x736; fiat_np521_uint1 x737; uint32_t x738; fiat_np521_uint1 x739; uint32_t x740; fiat_np521_uint1 x741; uint32_t x742; fiat_np521_uint1 x743; uint32_t x744; fiat_np521_uint1 x745; uint32_t x746; fiat_np521_uint1 x747; uint32_t x748; fiat_np521_uint1 x749; uint32_t x750; fiat_np521_uint1 x751; uint32_t x752; fiat_np521_uint1 x753; uint32_t x754; fiat_np521_uint1 x755; uint32_t x756; fiat_np521_uint1 x757; uint32_t x758; fiat_np521_uint1 x759; uint32_t x760; fiat_np521_uint1 x761; uint32_t x762; fiat_np521_uint1 x763; uint32_t x764; fiat_np521_uint1 x765; uint32_t x766; fiat_np521_uint1 x767; uint32_t x768; fiat_np521_uint1 x769; uint32_t x770; fiat_np521_uint1 x771; uint32_t x772; fiat_np521_uint1 x773; uint32_t x774; fiat_np521_uint1 x775; uint32_t x776; fiat_np521_uint1 x777; uint32_t x778; fiat_np521_uint1 x779; uint32_t x780; fiat_np521_uint1 x781; uint32_t x782; fiat_np521_uint1 x783; uint32_t x784; fiat_np521_uint1 x785; uint32_t x786; fiat_np521_uint1 x787; uint32_t x788; fiat_np521_uint1 x789; uint32_t x790; fiat_np521_uint1 x791; uint32_t x792; uint32_t x793; uint32_t x794; uint32_t x795; uint32_t x796; uint32_t x797; uint32_t x798; uint32_t x799; uint32_t x800; uint32_t x801; uint32_t x802; uint32_t x803; uint32_t x804; uint32_t x805; uint32_t x806; uint32_t x807; uint32_t x808; uint32_t x809; uint32_t x810; uint32_t x811; uint32_t x812; uint32_t x813; uint32_t x814; uint32_t x815; uint32_t x816; uint32_t x817; uint32_t x818; uint32_t x819; uint32_t x820; uint32_t x821; uint32_t x822; uint32_t x823; uint32_t x824; uint32_t x825; uint32_t x826; fiat_np521_uint1 x827; uint32_t x828; fiat_np521_uint1 x829; uint32_t x830; fiat_np521_uint1 x831; uint32_t x832; fiat_np521_uint1 x833; uint32_t x834; fiat_np521_uint1 x835; uint32_t x836; fiat_np521_uint1 x837; uint32_t x838; fiat_np521_uint1 x839; uint32_t x840; fiat_np521_uint1 x841; uint32_t x842; fiat_np521_uint1 x843; uint32_t x844; fiat_np521_uint1 x845; uint32_t x846; fiat_np521_uint1 x847; uint32_t x848; fiat_np521_uint1 x849; uint32_t x850; fiat_np521_uint1 x851; uint32_t x852; fiat_np521_uint1 x853; uint32_t x854; fiat_np521_uint1 x855; uint32_t x856; fiat_np521_uint1 x857; uint32_t x858; fiat_np521_uint1 x859; uint32_t x860; fiat_np521_uint1 x861; uint32_t x862; fiat_np521_uint1 x863; uint32_t x864; fiat_np521_uint1 x865; uint32_t x866; fiat_np521_uint1 x867; uint32_t x868; fiat_np521_uint1 x869; uint32_t x870; fiat_np521_uint1 x871; uint32_t x872; fiat_np521_uint1 x873; uint32_t x874; fiat_np521_uint1 x875; uint32_t x876; fiat_np521_uint1 x877; uint32_t x878; fiat_np521_uint1 x879; uint32_t x880; fiat_np521_uint1 x881; uint32_t x882; fiat_np521_uint1 x883; uint32_t x884; fiat_np521_uint1 x885; uint32_t x886; fiat_np521_uint1 x887; uint32_t x888; fiat_np521_uint1 x889; uint32_t x890; fiat_np521_uint1 x891; uint32_t x892; uint32_t x893; uint32_t x894; uint32_t x895; uint32_t x896; uint32_t x897; uint32_t x898; uint32_t x899; uint32_t x900; uint32_t x901; uint32_t x902; uint32_t x903; uint32_t x904; uint32_t x905; uint32_t x906; uint32_t x907; uint32_t x908; uint32_t x909; uint32_t x910; uint32_t x911; uint32_t x912; uint32_t x913; uint32_t x914; uint32_t x915; uint32_t x916; uint32_t x917; uint32_t x918; uint32_t x919; uint32_t x920; uint32_t x921; uint32_t x922; uint32_t x923; uint32_t x924; uint32_t x925; uint32_t x926; uint32_t x927; uint32_t x928; fiat_np521_uint1 x929; uint32_t x930; fiat_np521_uint1 x931; uint32_t x932; fiat_np521_uint1 x933; uint32_t x934; fiat_np521_uint1 x935; uint32_t x936; fiat_np521_uint1 x937; uint32_t x938; fiat_np521_uint1 x939; uint32_t x940; fiat_np521_uint1 x941; uint32_t x942; fiat_np521_uint1 x943; uint32_t x944; fiat_np521_uint1 x945; uint32_t x946; fiat_np521_uint1 x947; uint32_t x948; fiat_np521_uint1 x949; uint32_t x950; fiat_np521_uint1 x951; uint32_t x952; fiat_np521_uint1 x953; uint32_t x954; fiat_np521_uint1 x955; uint32_t x956; fiat_np521_uint1 x957; uint32_t x958; fiat_np521_uint1 x959; uint32_t x960; fiat_np521_uint1 x961; uint32_t x962; fiat_np521_uint1 x963; uint32_t x964; fiat_np521_uint1 x965; uint32_t x966; fiat_np521_uint1 x967; uint32_t x968; fiat_np521_uint1 x969; uint32_t x970; fiat_np521_uint1 x971; uint32_t x972; fiat_np521_uint1 x973; uint32_t x974; fiat_np521_uint1 x975; uint32_t x976; fiat_np521_uint1 x977; uint32_t x978; fiat_np521_uint1 x979; uint32_t x980; fiat_np521_uint1 x981; uint32_t x982; fiat_np521_uint1 x983; uint32_t x984; fiat_np521_uint1 x985; uint32_t x986; fiat_np521_uint1 x987; uint32_t x988; fiat_np521_uint1 x989; uint32_t x990; fiat_np521_uint1 x991; uint32_t x992; fiat_np521_uint1 x993; uint32_t x994; uint32_t x995; uint32_t x996; uint32_t x997; uint32_t x998; uint32_t x999; uint32_t x1000; uint32_t x1001; uint32_t x1002; uint32_t x1003; uint32_t x1004; uint32_t x1005; uint32_t x1006; uint32_t x1007; uint32_t x1008; uint32_t x1009; uint32_t x1010; uint32_t x1011; uint32_t x1012; uint32_t x1013; uint32_t x1014; uint32_t x1015; uint32_t x1016; uint32_t x1017; uint32_t x1018; uint32_t x1019; uint32_t x1020; uint32_t x1021; uint32_t x1022; uint32_t x1023; uint32_t x1024; uint32_t x1025; uint32_t x1026; uint32_t x1027; uint32_t x1028; fiat_np521_uint1 x1029; uint32_t x1030; fiat_np521_uint1 x1031; uint32_t x1032; fiat_np521_uint1 x1033; uint32_t x1034; fiat_np521_uint1 x1035; uint32_t x1036; fiat_np521_uint1 x1037; uint32_t x1038; fiat_np521_uint1 x1039; uint32_t x1040; fiat_np521_uint1 x1041; uint32_t x1042; fiat_np521_uint1 x1043; uint32_t x1044; fiat_np521_uint1 x1045; uint32_t x1046; fiat_np521_uint1 x1047; uint32_t x1048; fiat_np521_uint1 x1049; uint32_t x1050; fiat_np521_uint1 x1051; uint32_t x1052; fiat_np521_uint1 x1053; uint32_t x1054; fiat_np521_uint1 x1055; uint32_t x1056; fiat_np521_uint1 x1057; uint32_t x1058; fiat_np521_uint1 x1059; uint32_t x1060; fiat_np521_uint1 x1061; uint32_t x1062; fiat_np521_uint1 x1063; uint32_t x1064; fiat_np521_uint1 x1065; uint32_t x1066; fiat_np521_uint1 x1067; uint32_t x1068; fiat_np521_uint1 x1069; uint32_t x1070; fiat_np521_uint1 x1071; uint32_t x1072; fiat_np521_uint1 x1073; uint32_t x1074; fiat_np521_uint1 x1075; uint32_t x1076; fiat_np521_uint1 x1077; uint32_t x1078; fiat_np521_uint1 x1079; uint32_t x1080; fiat_np521_uint1 x1081; uint32_t x1082; fiat_np521_uint1 x1083; uint32_t x1084; fiat_np521_uint1 x1085; uint32_t x1086; fiat_np521_uint1 x1087; uint32_t x1088; fiat_np521_uint1 x1089; uint32_t x1090; fiat_np521_uint1 x1091; uint32_t x1092; fiat_np521_uint1 x1093; uint32_t x1094; uint32_t x1095; uint32_t x1096; uint32_t x1097; uint32_t x1098; uint32_t x1099; uint32_t x1100; uint32_t x1101; uint32_t x1102; uint32_t x1103; uint32_t x1104; uint32_t x1105; uint32_t x1106; uint32_t x1107; uint32_t x1108; uint32_t x1109; uint32_t x1110; uint32_t x1111; uint32_t x1112; uint32_t x1113; uint32_t x1114; uint32_t x1115; uint32_t x1116; uint32_t x1117; uint32_t x1118; uint32_t x1119; uint32_t x1120; uint32_t x1121; uint32_t x1122; uint32_t x1123; uint32_t x1124; uint32_t x1125; uint32_t x1126; uint32_t x1127; uint32_t x1128; uint32_t x1129; uint32_t x1130; fiat_np521_uint1 x1131; uint32_t x1132; fiat_np521_uint1 x1133; uint32_t x1134; fiat_np521_uint1 x1135; uint32_t x1136; fiat_np521_uint1 x1137; uint32_t x1138; fiat_np521_uint1 x1139; uint32_t x1140; fiat_np521_uint1 x1141; uint32_t x1142; fiat_np521_uint1 x1143; uint32_t x1144; fiat_np521_uint1 x1145; uint32_t x1146; fiat_np521_uint1 x1147; uint32_t x1148; fiat_np521_uint1 x1149; uint32_t x1150; fiat_np521_uint1 x1151; uint32_t x1152; fiat_np521_uint1 x1153; uint32_t x1154; fiat_np521_uint1 x1155; uint32_t x1156; fiat_np521_uint1 x1157; uint32_t x1158; fiat_np521_uint1 x1159; uint32_t x1160; fiat_np521_uint1 x1161; uint32_t x1162; fiat_np521_uint1 x1163; uint32_t x1164; fiat_np521_uint1 x1165; uint32_t x1166; fiat_np521_uint1 x1167; uint32_t x1168; fiat_np521_uint1 x1169; uint32_t x1170; fiat_np521_uint1 x1171; uint32_t x1172; fiat_np521_uint1 x1173; uint32_t x1174; fiat_np521_uint1 x1175; uint32_t x1176; fiat_np521_uint1 x1177; uint32_t x1178; fiat_np521_uint1 x1179; uint32_t x1180; fiat_np521_uint1 x1181; uint32_t x1182; fiat_np521_uint1 x1183; uint32_t x1184; fiat_np521_uint1 x1185; uint32_t x1186; fiat_np521_uint1 x1187; uint32_t x1188; fiat_np521_uint1 x1189; uint32_t x1190; fiat_np521_uint1 x1191; uint32_t x1192; fiat_np521_uint1 x1193; uint32_t x1194; fiat_np521_uint1 x1195; uint32_t x1196; uint32_t x1197; uint32_t x1198; uint32_t x1199; uint32_t x1200; uint32_t x1201; uint32_t x1202; uint32_t x1203; uint32_t x1204; uint32_t x1205; uint32_t x1206; uint32_t x1207; uint32_t x1208; uint32_t x1209; uint32_t x1210; uint32_t x1211; uint32_t x1212; uint32_t x1213; uint32_t x1214; uint32_t x1215; uint32_t x1216; uint32_t x1217; uint32_t x1218; uint32_t x1219; uint32_t x1220; uint32_t x1221; uint32_t x1222; uint32_t x1223; uint32_t x1224; uint32_t x1225; uint32_t x1226; uint32_t x1227; uint32_t x1228; uint32_t x1229; uint32_t x1230; fiat_np521_uint1 x1231; uint32_t x1232; fiat_np521_uint1 x1233; uint32_t x1234; fiat_np521_uint1 x1235; uint32_t x1236; fiat_np521_uint1 x1237; uint32_t x1238; fiat_np521_uint1 x1239; uint32_t x1240; fiat_np521_uint1 x1241; uint32_t x1242; fiat_np521_uint1 x1243; uint32_t x1244; fiat_np521_uint1 x1245; uint32_t x1246; fiat_np521_uint1 x1247; uint32_t x1248; fiat_np521_uint1 x1249; uint32_t x1250; fiat_np521_uint1 x1251; uint32_t x1252; fiat_np521_uint1 x1253; uint32_t x1254; fiat_np521_uint1 x1255; uint32_t x1256; fiat_np521_uint1 x1257; uint32_t x1258; fiat_np521_uint1 x1259; uint32_t x1260; fiat_np521_uint1 x1261; uint32_t x1262; fiat_np521_uint1 x1263; uint32_t x1264; fiat_np521_uint1 x1265; uint32_t x1266; fiat_np521_uint1 x1267; uint32_t x1268; fiat_np521_uint1 x1269; uint32_t x1270; fiat_np521_uint1 x1271; uint32_t x1272; fiat_np521_uint1 x1273; uint32_t x1274; fiat_np521_uint1 x1275; uint32_t x1276; fiat_np521_uint1 x1277; uint32_t x1278; fiat_np521_uint1 x1279; uint32_t x1280; fiat_np521_uint1 x1281; uint32_t x1282; fiat_np521_uint1 x1283; uint32_t x1284; fiat_np521_uint1 x1285; uint32_t x1286; fiat_np521_uint1 x1287; uint32_t x1288; fiat_np521_uint1 x1289; uint32_t x1290; fiat_np521_uint1 x1291; uint32_t x1292; fiat_np521_uint1 x1293; uint32_t x1294; fiat_np521_uint1 x1295; uint32_t x1296; uint32_t x1297; uint32_t x1298; uint32_t x1299; uint32_t x1300; uint32_t x1301; uint32_t x1302; uint32_t x1303; uint32_t x1304; uint32_t x1305; uint32_t x1306; uint32_t x1307; uint32_t x1308; uint32_t x1309; uint32_t x1310; uint32_t x1311; uint32_t x1312; uint32_t x1313; uint32_t x1314; uint32_t x1315; uint32_t x1316; uint32_t x1317; uint32_t x1318; uint32_t x1319; uint32_t x1320; uint32_t x1321; uint32_t x1322; uint32_t x1323; uint32_t x1324; uint32_t x1325; uint32_t x1326; uint32_t x1327; uint32_t x1328; uint32_t x1329; uint32_t x1330; uint32_t x1331; uint32_t x1332; fiat_np521_uint1 x1333; uint32_t x1334; fiat_np521_uint1 x1335; uint32_t x1336; fiat_np521_uint1 x1337; uint32_t x1338; fiat_np521_uint1 x1339; uint32_t x1340; fiat_np521_uint1 x1341; uint32_t x1342; fiat_np521_uint1 x1343; uint32_t x1344; fiat_np521_uint1 x1345; uint32_t x1346; fiat_np521_uint1 x1347; uint32_t x1348; fiat_np521_uint1 x1349; uint32_t x1350; fiat_np521_uint1 x1351; uint32_t x1352; fiat_np521_uint1 x1353; uint32_t x1354; fiat_np521_uint1 x1355; uint32_t x1356; fiat_np521_uint1 x1357; uint32_t x1358; fiat_np521_uint1 x1359; uint32_t x1360; fiat_np521_uint1 x1361; uint32_t x1362; fiat_np521_uint1 x1363; uint32_t x1364; fiat_np521_uint1 x1365; uint32_t x1366; fiat_np521_uint1 x1367; uint32_t x1368; fiat_np521_uint1 x1369; uint32_t x1370; fiat_np521_uint1 x1371; uint32_t x1372; fiat_np521_uint1 x1373; uint32_t x1374; fiat_np521_uint1 x1375; uint32_t x1376; fiat_np521_uint1 x1377; uint32_t x1378; fiat_np521_uint1 x1379; uint32_t x1380; fiat_np521_uint1 x1381; uint32_t x1382; fiat_np521_uint1 x1383; uint32_t x1384; fiat_np521_uint1 x1385; uint32_t x1386; fiat_np521_uint1 x1387; uint32_t x1388; fiat_np521_uint1 x1389; uint32_t x1390; fiat_np521_uint1 x1391; uint32_t x1392; fiat_np521_uint1 x1393; uint32_t x1394; fiat_np521_uint1 x1395; uint32_t x1396; fiat_np521_uint1 x1397; uint32_t x1398; uint32_t x1399; uint32_t x1400; uint32_t x1401; uint32_t x1402; uint32_t x1403; uint32_t x1404; uint32_t x1405; uint32_t x1406; uint32_t x1407; uint32_t x1408; uint32_t x1409; uint32_t x1410; uint32_t x1411; uint32_t x1412; uint32_t x1413; uint32_t x1414; uint32_t x1415; uint32_t x1416; uint32_t x1417; uint32_t x1418; uint32_t x1419; uint32_t x1420; uint32_t x1421; uint32_t x1422; uint32_t x1423; uint32_t x1424; uint32_t x1425; uint32_t x1426; uint32_t x1427; uint32_t x1428; uint32_t x1429; uint32_t x1430; uint32_t x1431; uint32_t x1432; fiat_np521_uint1 x1433; uint32_t x1434; fiat_np521_uint1 x1435; uint32_t x1436; fiat_np521_uint1 x1437; uint32_t x1438; fiat_np521_uint1 x1439; uint32_t x1440; fiat_np521_uint1 x1441; uint32_t x1442; fiat_np521_uint1 x1443; uint32_t x1444; fiat_np521_uint1 x1445; uint32_t x1446; fiat_np521_uint1 x1447; uint32_t x1448; fiat_np521_uint1 x1449; uint32_t x1450; fiat_np521_uint1 x1451; uint32_t x1452; fiat_np521_uint1 x1453; uint32_t x1454; fiat_np521_uint1 x1455; uint32_t x1456; fiat_np521_uint1 x1457; uint32_t x1458; fiat_np521_uint1 x1459; uint32_t x1460; fiat_np521_uint1 x1461; uint32_t x1462; fiat_np521_uint1 x1463; uint32_t x1464; fiat_np521_uint1 x1465; uint32_t x1466; fiat_np521_uint1 x1467; uint32_t x1468; fiat_np521_uint1 x1469; uint32_t x1470; fiat_np521_uint1 x1471; uint32_t x1472; fiat_np521_uint1 x1473; uint32_t x1474; fiat_np521_uint1 x1475; uint32_t x1476; fiat_np521_uint1 x1477; uint32_t x1478; fiat_np521_uint1 x1479; uint32_t x1480; fiat_np521_uint1 x1481; uint32_t x1482; fiat_np521_uint1 x1483; uint32_t x1484; fiat_np521_uint1 x1485; uint32_t x1486; fiat_np521_uint1 x1487; uint32_t x1488; fiat_np521_uint1 x1489; uint32_t x1490; fiat_np521_uint1 x1491; uint32_t x1492; fiat_np521_uint1 x1493; uint32_t x1494; fiat_np521_uint1 x1495; uint32_t x1496; fiat_np521_uint1 x1497; uint32_t x1498; uint32_t x1499; uint32_t x1500; uint32_t x1501; uint32_t x1502; uint32_t x1503; uint32_t x1504; uint32_t x1505; uint32_t x1506; uint32_t x1507; uint32_t x1508; uint32_t x1509; uint32_t x1510; uint32_t x1511; uint32_t x1512; uint32_t x1513; uint32_t x1514; uint32_t x1515; uint32_t x1516; uint32_t x1517; uint32_t x1518; uint32_t x1519; uint32_t x1520; uint32_t x1521; uint32_t x1522; uint32_t x1523; uint32_t x1524; uint32_t x1525; uint32_t x1526; uint32_t x1527; uint32_t x1528; uint32_t x1529; uint32_t x1530; uint32_t x1531; uint32_t x1532; uint32_t x1533; uint32_t x1534; fiat_np521_uint1 x1535; uint32_t x1536; fiat_np521_uint1 x1537; uint32_t x1538; fiat_np521_uint1 x1539; uint32_t x1540; fiat_np521_uint1 x1541; uint32_t x1542; fiat_np521_uint1 x1543; uint32_t x1544; fiat_np521_uint1 x1545; uint32_t x1546; fiat_np521_uint1 x1547; uint32_t x1548; fiat_np521_uint1 x1549; uint32_t x1550; fiat_np521_uint1 x1551; uint32_t x1552; fiat_np521_uint1 x1553; uint32_t x1554; fiat_np521_uint1 x1555; uint32_t x1556; fiat_np521_uint1 x1557; uint32_t x1558; fiat_np521_uint1 x1559; uint32_t x1560; fiat_np521_uint1 x1561; uint32_t x1562; fiat_np521_uint1 x1563; uint32_t x1564; fiat_np521_uint1 x1565; uint32_t x1566; fiat_np521_uint1 x1567; uint32_t x1568; fiat_np521_uint1 x1569; uint32_t x1570; fiat_np521_uint1 x1571; uint32_t x1572; fiat_np521_uint1 x1573; uint32_t x1574; fiat_np521_uint1 x1575; uint32_t x1576; fiat_np521_uint1 x1577; uint32_t x1578; fiat_np521_uint1 x1579; uint32_t x1580; fiat_np521_uint1 x1581; uint32_t x1582; fiat_np521_uint1 x1583; uint32_t x1584; fiat_np521_uint1 x1585; uint32_t x1586; fiat_np521_uint1 x1587; uint32_t x1588; fiat_np521_uint1 x1589; uint32_t x1590; fiat_np521_uint1 x1591; uint32_t x1592; fiat_np521_uint1 x1593; uint32_t x1594; fiat_np521_uint1 x1595; uint32_t x1596; fiat_np521_uint1 x1597; uint32_t x1598; fiat_np521_uint1 x1599; uint32_t x1600; uint32_t x1601; uint32_t x1602; uint32_t x1603; uint32_t x1604; uint32_t x1605; uint32_t x1606; uint32_t x1607; uint32_t x1608; uint32_t x1609; uint32_t x1610; uint32_t x1611; uint32_t x1612; uint32_t x1613; uint32_t x1614; uint32_t x1615; uint32_t x1616; uint32_t x1617; uint32_t x1618; uint32_t x1619; uint32_t x1620; uint32_t x1621; uint32_t x1622; uint32_t x1623; uint32_t x1624; uint32_t x1625; uint32_t x1626; uint32_t x1627; uint32_t x1628; uint32_t x1629; uint32_t x1630; uint32_t x1631; uint32_t x1632; uint32_t x1633; uint32_t x1634; fiat_np521_uint1 x1635; uint32_t x1636; fiat_np521_uint1 x1637; uint32_t x1638; fiat_np521_uint1 x1639; uint32_t x1640; fiat_np521_uint1 x1641; uint32_t x1642; fiat_np521_uint1 x1643; uint32_t x1644; fiat_np521_uint1 x1645; uint32_t x1646; fiat_np521_uint1 x1647; uint32_t x1648; fiat_np521_uint1 x1649; uint32_t x1650; fiat_np521_uint1 x1651; uint32_t x1652; fiat_np521_uint1 x1653; uint32_t x1654; fiat_np521_uint1 x1655; uint32_t x1656; fiat_np521_uint1 x1657; uint32_t x1658; fiat_np521_uint1 x1659; uint32_t x1660; fiat_np521_uint1 x1661; uint32_t x1662; fiat_np521_uint1 x1663; uint32_t x1664; fiat_np521_uint1 x1665; uint32_t x1666; fiat_np521_uint1 x1667; uint32_t x1668; fiat_np521_uint1 x1669; uint32_t x1670; fiat_np521_uint1 x1671; uint32_t x1672; fiat_np521_uint1 x1673; uint32_t x1674; fiat_np521_uint1 x1675; uint32_t x1676; fiat_np521_uint1 x1677; uint32_t x1678; fiat_np521_uint1 x1679; uint32_t x1680; fiat_np521_uint1 x1681; uint32_t x1682; fiat_np521_uint1 x1683; uint32_t x1684; fiat_np521_uint1 x1685; uint32_t x1686; fiat_np521_uint1 x1687; uint32_t x1688; fiat_np521_uint1 x1689; uint32_t x1690; fiat_np521_uint1 x1691; uint32_t x1692; fiat_np521_uint1 x1693; uint32_t x1694; fiat_np521_uint1 x1695; uint32_t x1696; fiat_np521_uint1 x1697; uint32_t x1698; fiat_np521_uint1 x1699; uint32_t x1700; uint32_t x1701; uint32_t x1702; uint32_t x1703; uint32_t x1704; uint32_t x1705; uint32_t x1706; uint32_t x1707; uint32_t x1708; uint32_t x1709; uint32_t x1710; uint32_t x1711; uint32_t x1712; uint32_t x1713; uint32_t x1714; uint32_t x1715; uint32_t x1716; uint32_t x1717; uint32_t x1718; uint32_t x1719; uint32_t x1720; uint32_t x1721; uint32_t x1722; uint32_t x1723; uint32_t x1724; uint32_t x1725; uint32_t x1726; uint32_t x1727; uint32_t x1728; uint32_t x1729; uint32_t x1730; uint32_t x1731; uint32_t x1732; uint32_t x1733; uint32_t x1734; uint32_t x1735; uint32_t x1736; fiat_np521_uint1 x1737; uint32_t x1738; fiat_np521_uint1 x1739; uint32_t x1740; fiat_np521_uint1 x1741; uint32_t x1742; fiat_np521_uint1 x1743; uint32_t x1744; fiat_np521_uint1 x1745; uint32_t x1746; fiat_np521_uint1 x1747; uint32_t x1748; fiat_np521_uint1 x1749; uint32_t x1750; fiat_np521_uint1 x1751; uint32_t x1752; fiat_np521_uint1 x1753; uint32_t x1754; fiat_np521_uint1 x1755; uint32_t x1756; fiat_np521_uint1 x1757; uint32_t x1758; fiat_np521_uint1 x1759; uint32_t x1760; fiat_np521_uint1 x1761; uint32_t x1762; fiat_np521_uint1 x1763; uint32_t x1764; fiat_np521_uint1 x1765; uint32_t x1766; fiat_np521_uint1 x1767; uint32_t x1768; fiat_np521_uint1 x1769; uint32_t x1770; fiat_np521_uint1 x1771; uint32_t x1772; fiat_np521_uint1 x1773; uint32_t x1774; fiat_np521_uint1 x1775; uint32_t x1776; fiat_np521_uint1 x1777; uint32_t x1778; fiat_np521_uint1 x1779; uint32_t x1780; fiat_np521_uint1 x1781; uint32_t x1782; fiat_np521_uint1 x1783; uint32_t x1784; fiat_np521_uint1 x1785; uint32_t x1786; fiat_np521_uint1 x1787; uint32_t x1788; fiat_np521_uint1 x1789; uint32_t x1790; fiat_np521_uint1 x1791; uint32_t x1792; fiat_np521_uint1 x1793; uint32_t x1794; fiat_np521_uint1 x1795; uint32_t x1796; fiat_np521_uint1 x1797; uint32_t x1798; fiat_np521_uint1 x1799; uint32_t x1800; fiat_np521_uint1 x1801; uint32_t x1802; uint32_t x1803; uint32_t x1804; uint32_t x1805; uint32_t x1806; uint32_t x1807; uint32_t x1808; uint32_t x1809; uint32_t x1810; uint32_t x1811; uint32_t x1812; uint32_t x1813; uint32_t x1814; uint32_t x1815; uint32_t x1816; uint32_t x1817; uint32_t x1818; uint32_t x1819; uint32_t x1820; uint32_t x1821; uint32_t x1822; uint32_t x1823; uint32_t x1824; uint32_t x1825; uint32_t x1826; uint32_t x1827; uint32_t x1828; uint32_t x1829; uint32_t x1830; uint32_t x1831; uint32_t x1832; uint32_t x1833; uint32_t x1834; uint32_t x1835; uint32_t x1836; fiat_np521_uint1 x1837; uint32_t x1838; fiat_np521_uint1 x1839; uint32_t x1840; fiat_np521_uint1 x1841; uint32_t x1842; fiat_np521_uint1 x1843; uint32_t x1844; fiat_np521_uint1 x1845; uint32_t x1846; fiat_np521_uint1 x1847; uint32_t x1848; fiat_np521_uint1 x1849; uint32_t x1850; fiat_np521_uint1 x1851; uint32_t x1852; fiat_np521_uint1 x1853; uint32_t x1854; fiat_np521_uint1 x1855; uint32_t x1856; fiat_np521_uint1 x1857; uint32_t x1858; fiat_np521_uint1 x1859; uint32_t x1860; fiat_np521_uint1 x1861; uint32_t x1862; fiat_np521_uint1 x1863; uint32_t x1864; fiat_np521_uint1 x1865; uint32_t x1866; fiat_np521_uint1 x1867; uint32_t x1868; fiat_np521_uint1 x1869; uint32_t x1870; fiat_np521_uint1 x1871; uint32_t x1872; fiat_np521_uint1 x1873; uint32_t x1874; fiat_np521_uint1 x1875; uint32_t x1876; fiat_np521_uint1 x1877; uint32_t x1878; fiat_np521_uint1 x1879; uint32_t x1880; fiat_np521_uint1 x1881; uint32_t x1882; fiat_np521_uint1 x1883; uint32_t x1884; fiat_np521_uint1 x1885; uint32_t x1886; fiat_np521_uint1 x1887; uint32_t x1888; fiat_np521_uint1 x1889; uint32_t x1890; fiat_np521_uint1 x1891; uint32_t x1892; fiat_np521_uint1 x1893; uint32_t x1894; fiat_np521_uint1 x1895; uint32_t x1896; fiat_np521_uint1 x1897; uint32_t x1898; fiat_np521_uint1 x1899; uint32_t x1900; fiat_np521_uint1 x1901; uint32_t x1902; uint32_t x1903; uint32_t x1904; uint32_t x1905; uint32_t x1906; uint32_t x1907; uint32_t x1908; uint32_t x1909; uint32_t x1910; uint32_t x1911; uint32_t x1912; uint32_t x1913; uint32_t x1914; uint32_t x1915; uint32_t x1916; uint32_t x1917; uint32_t x1918; uint32_t x1919; uint32_t x1920; uint32_t x1921; uint32_t x1922; uint32_t x1923; uint32_t x1924; uint32_t x1925; uint32_t x1926; uint32_t x1927; uint32_t x1928; uint32_t x1929; uint32_t x1930; uint32_t x1931; uint32_t x1932; uint32_t x1933; uint32_t x1934; uint32_t x1935; uint32_t x1936; uint32_t x1937; uint32_t x1938; fiat_np521_uint1 x1939; uint32_t x1940; fiat_np521_uint1 x1941; uint32_t x1942; fiat_np521_uint1 x1943; uint32_t x1944; fiat_np521_uint1 x1945; uint32_t x1946; fiat_np521_uint1 x1947; uint32_t x1948; fiat_np521_uint1 x1949; uint32_t x1950; fiat_np521_uint1 x1951; uint32_t x1952; fiat_np521_uint1 x1953; uint32_t x1954; fiat_np521_uint1 x1955; uint32_t x1956; fiat_np521_uint1 x1957; uint32_t x1958; fiat_np521_uint1 x1959; uint32_t x1960; fiat_np521_uint1 x1961; uint32_t x1962; fiat_np521_uint1 x1963; uint32_t x1964; fiat_np521_uint1 x1965; uint32_t x1966; fiat_np521_uint1 x1967; uint32_t x1968; fiat_np521_uint1 x1969; uint32_t x1970; fiat_np521_uint1 x1971; uint32_t x1972; fiat_np521_uint1 x1973; uint32_t x1974; fiat_np521_uint1 x1975; uint32_t x1976; fiat_np521_uint1 x1977; uint32_t x1978; fiat_np521_uint1 x1979; uint32_t x1980; fiat_np521_uint1 x1981; uint32_t x1982; fiat_np521_uint1 x1983; uint32_t x1984; fiat_np521_uint1 x1985; uint32_t x1986; fiat_np521_uint1 x1987; uint32_t x1988; fiat_np521_uint1 x1989; uint32_t x1990; fiat_np521_uint1 x1991; uint32_t x1992; fiat_np521_uint1 x1993; uint32_t x1994; fiat_np521_uint1 x1995; uint32_t x1996; fiat_np521_uint1 x1997; uint32_t x1998; fiat_np521_uint1 x1999; uint32_t x2000; fiat_np521_uint1 x2001; uint32_t x2002; fiat_np521_uint1 x2003; uint32_t x2004; uint32_t x2005; uint32_t x2006; uint32_t x2007; uint32_t x2008; uint32_t x2009; uint32_t x2010; uint32_t x2011; uint32_t x2012; uint32_t x2013; uint32_t x2014; uint32_t x2015; uint32_t x2016; uint32_t x2017; uint32_t x2018; uint32_t x2019; uint32_t x2020; uint32_t x2021; uint32_t x2022; uint32_t x2023; uint32_t x2024; uint32_t x2025; uint32_t x2026; uint32_t x2027; uint32_t x2028; uint32_t x2029; uint32_t x2030; uint32_t x2031; uint32_t x2032; uint32_t x2033; uint32_t x2034; uint32_t x2035; uint32_t x2036; uint32_t x2037; uint32_t x2038; fiat_np521_uint1 x2039; uint32_t x2040; fiat_np521_uint1 x2041; uint32_t x2042; fiat_np521_uint1 x2043; uint32_t x2044; fiat_np521_uint1 x2045; uint32_t x2046; fiat_np521_uint1 x2047; uint32_t x2048; fiat_np521_uint1 x2049; uint32_t x2050; fiat_np521_uint1 x2051; uint32_t x2052; fiat_np521_uint1 x2053; uint32_t x2054; fiat_np521_uint1 x2055; uint32_t x2056; fiat_np521_uint1 x2057; uint32_t x2058; fiat_np521_uint1 x2059; uint32_t x2060; fiat_np521_uint1 x2061; uint32_t x2062; fiat_np521_uint1 x2063; uint32_t x2064; fiat_np521_uint1 x2065; uint32_t x2066; fiat_np521_uint1 x2067; uint32_t x2068; fiat_np521_uint1 x2069; uint32_t x2070; fiat_np521_uint1 x2071; uint32_t x2072; fiat_np521_uint1 x2073; uint32_t x2074; fiat_np521_uint1 x2075; uint32_t x2076; fiat_np521_uint1 x2077; uint32_t x2078; fiat_np521_uint1 x2079; uint32_t x2080; fiat_np521_uint1 x2081; uint32_t x2082; fiat_np521_uint1 x2083; uint32_t x2084; fiat_np521_uint1 x2085; uint32_t x2086; fiat_np521_uint1 x2087; uint32_t x2088; fiat_np521_uint1 x2089; uint32_t x2090; fiat_np521_uint1 x2091; uint32_t x2092; fiat_np521_uint1 x2093; uint32_t x2094; fiat_np521_uint1 x2095; uint32_t x2096; fiat_np521_uint1 x2097; uint32_t x2098; fiat_np521_uint1 x2099; uint32_t x2100; fiat_np521_uint1 x2101; uint32_t x2102; fiat_np521_uint1 x2103; uint32_t x2104; uint32_t x2105; uint32_t x2106; uint32_t x2107; uint32_t x2108; uint32_t x2109; uint32_t x2110; uint32_t x2111; uint32_t x2112; uint32_t x2113; uint32_t x2114; uint32_t x2115; uint32_t x2116; uint32_t x2117; uint32_t x2118; uint32_t x2119; uint32_t x2120; uint32_t x2121; uint32_t x2122; uint32_t x2123; uint32_t x2124; uint32_t x2125; uint32_t x2126; uint32_t x2127; uint32_t x2128; uint32_t x2129; uint32_t x2130; uint32_t x2131; uint32_t x2132; uint32_t x2133; uint32_t x2134; uint32_t x2135; uint32_t x2136; uint32_t x2137; uint32_t x2138; uint32_t x2139; uint32_t x2140; fiat_np521_uint1 x2141; uint32_t x2142; fiat_np521_uint1 x2143; uint32_t x2144; fiat_np521_uint1 x2145; uint32_t x2146; fiat_np521_uint1 x2147; uint32_t x2148; fiat_np521_uint1 x2149; uint32_t x2150; fiat_np521_uint1 x2151; uint32_t x2152; fiat_np521_uint1 x2153; uint32_t x2154; fiat_np521_uint1 x2155; uint32_t x2156; fiat_np521_uint1 x2157; uint32_t x2158; fiat_np521_uint1 x2159; uint32_t x2160; fiat_np521_uint1 x2161; uint32_t x2162; fiat_np521_uint1 x2163; uint32_t x2164; fiat_np521_uint1 x2165; uint32_t x2166; fiat_np521_uint1 x2167; uint32_t x2168; fiat_np521_uint1 x2169; uint32_t x2170; fiat_np521_uint1 x2171; uint32_t x2172; fiat_np521_uint1 x2173; uint32_t x2174; fiat_np521_uint1 x2175; uint32_t x2176; fiat_np521_uint1 x2177; uint32_t x2178; fiat_np521_uint1 x2179; uint32_t x2180; fiat_np521_uint1 x2181; uint32_t x2182; fiat_np521_uint1 x2183; uint32_t x2184; fiat_np521_uint1 x2185; uint32_t x2186; fiat_np521_uint1 x2187; uint32_t x2188; fiat_np521_uint1 x2189; uint32_t x2190; fiat_np521_uint1 x2191; uint32_t x2192; fiat_np521_uint1 x2193; uint32_t x2194; fiat_np521_uint1 x2195; uint32_t x2196; fiat_np521_uint1 x2197; uint32_t x2198; fiat_np521_uint1 x2199; uint32_t x2200; fiat_np521_uint1 x2201; uint32_t x2202; fiat_np521_uint1 x2203; uint32_t x2204; fiat_np521_uint1 x2205; uint32_t x2206; uint32_t x2207; uint32_t x2208; uint32_t x2209; uint32_t x2210; uint32_t x2211; uint32_t x2212; uint32_t x2213; uint32_t x2214; uint32_t x2215; uint32_t x2216; uint32_t x2217; uint32_t x2218; uint32_t x2219; uint32_t x2220; uint32_t x2221; uint32_t x2222; uint32_t x2223; uint32_t x2224; uint32_t x2225; uint32_t x2226; uint32_t x2227; uint32_t x2228; uint32_t x2229; uint32_t x2230; uint32_t x2231; uint32_t x2232; uint32_t x2233; uint32_t x2234; uint32_t x2235; uint32_t x2236; uint32_t x2237; uint32_t x2238; uint32_t x2239; uint32_t x2240; fiat_np521_uint1 x2241; uint32_t x2242; fiat_np521_uint1 x2243; uint32_t x2244; fiat_np521_uint1 x2245; uint32_t x2246; fiat_np521_uint1 x2247; uint32_t x2248; fiat_np521_uint1 x2249; uint32_t x2250; fiat_np521_uint1 x2251; uint32_t x2252; fiat_np521_uint1 x2253; uint32_t x2254; fiat_np521_uint1 x2255; uint32_t x2256; fiat_np521_uint1 x2257; uint32_t x2258; fiat_np521_uint1 x2259; uint32_t x2260; fiat_np521_uint1 x2261; uint32_t x2262; fiat_np521_uint1 x2263; uint32_t x2264; fiat_np521_uint1 x2265; uint32_t x2266; fiat_np521_uint1 x2267; uint32_t x2268; fiat_np521_uint1 x2269; uint32_t x2270; fiat_np521_uint1 x2271; uint32_t x2272; fiat_np521_uint1 x2273; uint32_t x2274; fiat_np521_uint1 x2275; uint32_t x2276; fiat_np521_uint1 x2277; uint32_t x2278; fiat_np521_uint1 x2279; uint32_t x2280; fiat_np521_uint1 x2281; uint32_t x2282; fiat_np521_uint1 x2283; uint32_t x2284; fiat_np521_uint1 x2285; uint32_t x2286; fiat_np521_uint1 x2287; uint32_t x2288; fiat_np521_uint1 x2289; uint32_t x2290; fiat_np521_uint1 x2291; uint32_t x2292; fiat_np521_uint1 x2293; uint32_t x2294; fiat_np521_uint1 x2295; uint32_t x2296; fiat_np521_uint1 x2297; uint32_t x2298; fiat_np521_uint1 x2299; uint32_t x2300; fiat_np521_uint1 x2301; uint32_t x2302; fiat_np521_uint1 x2303; uint32_t x2304; fiat_np521_uint1 x2305; uint32_t x2306; uint32_t x2307; uint32_t x2308; uint32_t x2309; uint32_t x2310; uint32_t x2311; uint32_t x2312; uint32_t x2313; uint32_t x2314; uint32_t x2315; uint32_t x2316; uint32_t x2317; uint32_t x2318; uint32_t x2319; uint32_t x2320; uint32_t x2321; uint32_t x2322; uint32_t x2323; uint32_t x2324; uint32_t x2325; uint32_t x2326; uint32_t x2327; uint32_t x2328; uint32_t x2329; uint32_t x2330; uint32_t x2331; uint32_t x2332; uint32_t x2333; uint32_t x2334; uint32_t x2335; uint32_t x2336; uint32_t x2337; uint32_t x2338; uint32_t x2339; uint32_t x2340; uint32_t x2341; uint32_t x2342; fiat_np521_uint1 x2343; uint32_t x2344; fiat_np521_uint1 x2345; uint32_t x2346; fiat_np521_uint1 x2347; uint32_t x2348; fiat_np521_uint1 x2349; uint32_t x2350; fiat_np521_uint1 x2351; uint32_t x2352; fiat_np521_uint1 x2353; uint32_t x2354; fiat_np521_uint1 x2355; uint32_t x2356; fiat_np521_uint1 x2357; uint32_t x2358; fiat_np521_uint1 x2359; uint32_t x2360; fiat_np521_uint1 x2361; uint32_t x2362; fiat_np521_uint1 x2363; uint32_t x2364; fiat_np521_uint1 x2365; uint32_t x2366; fiat_np521_uint1 x2367; uint32_t x2368; fiat_np521_uint1 x2369; uint32_t x2370; fiat_np521_uint1 x2371; uint32_t x2372; fiat_np521_uint1 x2373; uint32_t x2374; fiat_np521_uint1 x2375; uint32_t x2376; fiat_np521_uint1 x2377; uint32_t x2378; fiat_np521_uint1 x2379; uint32_t x2380; fiat_np521_uint1 x2381; uint32_t x2382; fiat_np521_uint1 x2383; uint32_t x2384; fiat_np521_uint1 x2385; uint32_t x2386; fiat_np521_uint1 x2387; uint32_t x2388; fiat_np521_uint1 x2389; uint32_t x2390; fiat_np521_uint1 x2391; uint32_t x2392; fiat_np521_uint1 x2393; uint32_t x2394; fiat_np521_uint1 x2395; uint32_t x2396; fiat_np521_uint1 x2397; uint32_t x2398; fiat_np521_uint1 x2399; uint32_t x2400; fiat_np521_uint1 x2401; uint32_t x2402; fiat_np521_uint1 x2403; uint32_t x2404; fiat_np521_uint1 x2405; uint32_t x2406; fiat_np521_uint1 x2407; uint32_t x2408; uint32_t x2409; uint32_t x2410; uint32_t x2411; uint32_t x2412; uint32_t x2413; uint32_t x2414; uint32_t x2415; uint32_t x2416; uint32_t x2417; uint32_t x2418; uint32_t x2419; uint32_t x2420; uint32_t x2421; uint32_t x2422; uint32_t x2423; uint32_t x2424; uint32_t x2425; uint32_t x2426; uint32_t x2427; uint32_t x2428; uint32_t x2429; uint32_t x2430; uint32_t x2431; uint32_t x2432; uint32_t x2433; uint32_t x2434; uint32_t x2435; uint32_t x2436; uint32_t x2437; uint32_t x2438; uint32_t x2439; uint32_t x2440; uint32_t x2441; uint32_t x2442; fiat_np521_uint1 x2443; uint32_t x2444; fiat_np521_uint1 x2445; uint32_t x2446; fiat_np521_uint1 x2447; uint32_t x2448; fiat_np521_uint1 x2449; uint32_t x2450; fiat_np521_uint1 x2451; uint32_t x2452; fiat_np521_uint1 x2453; uint32_t x2454; fiat_np521_uint1 x2455; uint32_t x2456; fiat_np521_uint1 x2457; uint32_t x2458; fiat_np521_uint1 x2459; uint32_t x2460; fiat_np521_uint1 x2461; uint32_t x2462; fiat_np521_uint1 x2463; uint32_t x2464; fiat_np521_uint1 x2465; uint32_t x2466; fiat_np521_uint1 x2467; uint32_t x2468; fiat_np521_uint1 x2469; uint32_t x2470; fiat_np521_uint1 x2471; uint32_t x2472; fiat_np521_uint1 x2473; uint32_t x2474; fiat_np521_uint1 x2475; uint32_t x2476; fiat_np521_uint1 x2477; uint32_t x2478; fiat_np521_uint1 x2479; uint32_t x2480; fiat_np521_uint1 x2481; uint32_t x2482; fiat_np521_uint1 x2483; uint32_t x2484; fiat_np521_uint1 x2485; uint32_t x2486; fiat_np521_uint1 x2487; uint32_t x2488; fiat_np521_uint1 x2489; uint32_t x2490; fiat_np521_uint1 x2491; uint32_t x2492; fiat_np521_uint1 x2493; uint32_t x2494; fiat_np521_uint1 x2495; uint32_t x2496; fiat_np521_uint1 x2497; uint32_t x2498; fiat_np521_uint1 x2499; uint32_t x2500; fiat_np521_uint1 x2501; uint32_t x2502; fiat_np521_uint1 x2503; uint32_t x2504; fiat_np521_uint1 x2505; uint32_t x2506; fiat_np521_uint1 x2507; uint32_t x2508; uint32_t x2509; uint32_t x2510; uint32_t x2511; uint32_t x2512; uint32_t x2513; uint32_t x2514; uint32_t x2515; uint32_t x2516; uint32_t x2517; uint32_t x2518; uint32_t x2519; uint32_t x2520; uint32_t x2521; uint32_t x2522; uint32_t x2523; uint32_t x2524; uint32_t x2525; uint32_t x2526; uint32_t x2527; uint32_t x2528; uint32_t x2529; uint32_t x2530; uint32_t x2531; uint32_t x2532; uint32_t x2533; uint32_t x2534; uint32_t x2535; uint32_t x2536; uint32_t x2537; uint32_t x2538; uint32_t x2539; uint32_t x2540; uint32_t x2541; uint32_t x2542; uint32_t x2543; uint32_t x2544; fiat_np521_uint1 x2545; uint32_t x2546; fiat_np521_uint1 x2547; uint32_t x2548; fiat_np521_uint1 x2549; uint32_t x2550; fiat_np521_uint1 x2551; uint32_t x2552; fiat_np521_uint1 x2553; uint32_t x2554; fiat_np521_uint1 x2555; uint32_t x2556; fiat_np521_uint1 x2557; uint32_t x2558; fiat_np521_uint1 x2559; uint32_t x2560; fiat_np521_uint1 x2561; uint32_t x2562; fiat_np521_uint1 x2563; uint32_t x2564; fiat_np521_uint1 x2565; uint32_t x2566; fiat_np521_uint1 x2567; uint32_t x2568; fiat_np521_uint1 x2569; uint32_t x2570; fiat_np521_uint1 x2571; uint32_t x2572; fiat_np521_uint1 x2573; uint32_t x2574; fiat_np521_uint1 x2575; uint32_t x2576; fiat_np521_uint1 x2577; uint32_t x2578; fiat_np521_uint1 x2579; uint32_t x2580; fiat_np521_uint1 x2581; uint32_t x2582; fiat_np521_uint1 x2583; uint32_t x2584; fiat_np521_uint1 x2585; uint32_t x2586; fiat_np521_uint1 x2587; uint32_t x2588; fiat_np521_uint1 x2589; uint32_t x2590; fiat_np521_uint1 x2591; uint32_t x2592; fiat_np521_uint1 x2593; uint32_t x2594; fiat_np521_uint1 x2595; uint32_t x2596; fiat_np521_uint1 x2597; uint32_t x2598; fiat_np521_uint1 x2599; uint32_t x2600; fiat_np521_uint1 x2601; uint32_t x2602; fiat_np521_uint1 x2603; uint32_t x2604; fiat_np521_uint1 x2605; uint32_t x2606; fiat_np521_uint1 x2607; uint32_t x2608; fiat_np521_uint1 x2609; uint32_t x2610; uint32_t x2611; uint32_t x2612; uint32_t x2613; uint32_t x2614; uint32_t x2615; uint32_t x2616; uint32_t x2617; uint32_t x2618; uint32_t x2619; uint32_t x2620; uint32_t x2621; uint32_t x2622; uint32_t x2623; uint32_t x2624; uint32_t x2625; uint32_t x2626; uint32_t x2627; uint32_t x2628; uint32_t x2629; uint32_t x2630; uint32_t x2631; uint32_t x2632; uint32_t x2633; uint32_t x2634; uint32_t x2635; uint32_t x2636; uint32_t x2637; uint32_t x2638; uint32_t x2639; uint32_t x2640; uint32_t x2641; uint32_t x2642; uint32_t x2643; uint32_t x2644; fiat_np521_uint1 x2645; uint32_t x2646; fiat_np521_uint1 x2647; uint32_t x2648; fiat_np521_uint1 x2649; uint32_t x2650; fiat_np521_uint1 x2651; uint32_t x2652; fiat_np521_uint1 x2653; uint32_t x2654; fiat_np521_uint1 x2655; uint32_t x2656; fiat_np521_uint1 x2657; uint32_t x2658; fiat_np521_uint1 x2659; uint32_t x2660; fiat_np521_uint1 x2661; uint32_t x2662; fiat_np521_uint1 x2663; uint32_t x2664; fiat_np521_uint1 x2665; uint32_t x2666; fiat_np521_uint1 x2667; uint32_t x2668; fiat_np521_uint1 x2669; uint32_t x2670; fiat_np521_uint1 x2671; uint32_t x2672; fiat_np521_uint1 x2673; uint32_t x2674; fiat_np521_uint1 x2675; uint32_t x2676; fiat_np521_uint1 x2677; uint32_t x2678; fiat_np521_uint1 x2679; uint32_t x2680; fiat_np521_uint1 x2681; uint32_t x2682; fiat_np521_uint1 x2683; uint32_t x2684; fiat_np521_uint1 x2685; uint32_t x2686; fiat_np521_uint1 x2687; uint32_t x2688; fiat_np521_uint1 x2689; uint32_t x2690; fiat_np521_uint1 x2691; uint32_t x2692; fiat_np521_uint1 x2693; uint32_t x2694; fiat_np521_uint1 x2695; uint32_t x2696; fiat_np521_uint1 x2697; uint32_t x2698; fiat_np521_uint1 x2699; uint32_t x2700; fiat_np521_uint1 x2701; uint32_t x2702; fiat_np521_uint1 x2703; uint32_t x2704; fiat_np521_uint1 x2705; uint32_t x2706; fiat_np521_uint1 x2707; uint32_t x2708; fiat_np521_uint1 x2709; uint32_t x2710; uint32_t x2711; uint32_t x2712; uint32_t x2713; uint32_t x2714; uint32_t x2715; uint32_t x2716; uint32_t x2717; uint32_t x2718; uint32_t x2719; uint32_t x2720; uint32_t x2721; uint32_t x2722; uint32_t x2723; uint32_t x2724; uint32_t x2725; uint32_t x2726; uint32_t x2727; uint32_t x2728; uint32_t x2729; uint32_t x2730; uint32_t x2731; uint32_t x2732; uint32_t x2733; uint32_t x2734; uint32_t x2735; uint32_t x2736; uint32_t x2737; uint32_t x2738; uint32_t x2739; uint32_t x2740; uint32_t x2741; uint32_t x2742; uint32_t x2743; uint32_t x2744; uint32_t x2745; uint32_t x2746; fiat_np521_uint1 x2747; uint32_t x2748; fiat_np521_uint1 x2749; uint32_t x2750; fiat_np521_uint1 x2751; uint32_t x2752; fiat_np521_uint1 x2753; uint32_t x2754; fiat_np521_uint1 x2755; uint32_t x2756; fiat_np521_uint1 x2757; uint32_t x2758; fiat_np521_uint1 x2759; uint32_t x2760; fiat_np521_uint1 x2761; uint32_t x2762; fiat_np521_uint1 x2763; uint32_t x2764; fiat_np521_uint1 x2765; uint32_t x2766; fiat_np521_uint1 x2767; uint32_t x2768; fiat_np521_uint1 x2769; uint32_t x2770; fiat_np521_uint1 x2771; uint32_t x2772; fiat_np521_uint1 x2773; uint32_t x2774; fiat_np521_uint1 x2775; uint32_t x2776; fiat_np521_uint1 x2777; uint32_t x2778; fiat_np521_uint1 x2779; uint32_t x2780; fiat_np521_uint1 x2781; uint32_t x2782; fiat_np521_uint1 x2783; uint32_t x2784; fiat_np521_uint1 x2785; uint32_t x2786; fiat_np521_uint1 x2787; uint32_t x2788; fiat_np521_uint1 x2789; uint32_t x2790; fiat_np521_uint1 x2791; uint32_t x2792; fiat_np521_uint1 x2793; uint32_t x2794; fiat_np521_uint1 x2795; uint32_t x2796; fiat_np521_uint1 x2797; uint32_t x2798; fiat_np521_uint1 x2799; uint32_t x2800; fiat_np521_uint1 x2801; uint32_t x2802; fiat_np521_uint1 x2803; uint32_t x2804; fiat_np521_uint1 x2805; uint32_t x2806; fiat_np521_uint1 x2807; uint32_t x2808; fiat_np521_uint1 x2809; uint32_t x2810; fiat_np521_uint1 x2811; uint32_t x2812; uint32_t x2813; uint32_t x2814; uint32_t x2815; uint32_t x2816; uint32_t x2817; uint32_t x2818; uint32_t x2819; uint32_t x2820; uint32_t x2821; uint32_t x2822; uint32_t x2823; uint32_t x2824; uint32_t x2825; uint32_t x2826; uint32_t x2827; uint32_t x2828; uint32_t x2829; uint32_t x2830; uint32_t x2831; uint32_t x2832; uint32_t x2833; uint32_t x2834; uint32_t x2835; uint32_t x2836; uint32_t x2837; uint32_t x2838; uint32_t x2839; uint32_t x2840; uint32_t x2841; uint32_t x2842; uint32_t x2843; uint32_t x2844; uint32_t x2845; uint32_t x2846; fiat_np521_uint1 x2847; uint32_t x2848; fiat_np521_uint1 x2849; uint32_t x2850; fiat_np521_uint1 x2851; uint32_t x2852; fiat_np521_uint1 x2853; uint32_t x2854; fiat_np521_uint1 x2855; uint32_t x2856; fiat_np521_uint1 x2857; uint32_t x2858; fiat_np521_uint1 x2859; uint32_t x2860; fiat_np521_uint1 x2861; uint32_t x2862; fiat_np521_uint1 x2863; uint32_t x2864; fiat_np521_uint1 x2865; uint32_t x2866; fiat_np521_uint1 x2867; uint32_t x2868; fiat_np521_uint1 x2869; uint32_t x2870; fiat_np521_uint1 x2871; uint32_t x2872; fiat_np521_uint1 x2873; uint32_t x2874; fiat_np521_uint1 x2875; uint32_t x2876; fiat_np521_uint1 x2877; uint32_t x2878; fiat_np521_uint1 x2879; uint32_t x2880; fiat_np521_uint1 x2881; uint32_t x2882; fiat_np521_uint1 x2883; uint32_t x2884; fiat_np521_uint1 x2885; uint32_t x2886; fiat_np521_uint1 x2887; uint32_t x2888; fiat_np521_uint1 x2889; uint32_t x2890; fiat_np521_uint1 x2891; uint32_t x2892; fiat_np521_uint1 x2893; uint32_t x2894; fiat_np521_uint1 x2895; uint32_t x2896; fiat_np521_uint1 x2897; uint32_t x2898; fiat_np521_uint1 x2899; uint32_t x2900; fiat_np521_uint1 x2901; uint32_t x2902; fiat_np521_uint1 x2903; uint32_t x2904; fiat_np521_uint1 x2905; uint32_t x2906; fiat_np521_uint1 x2907; uint32_t x2908; fiat_np521_uint1 x2909; uint32_t x2910; fiat_np521_uint1 x2911; uint32_t x2912; uint32_t x2913; uint32_t x2914; uint32_t x2915; uint32_t x2916; uint32_t x2917; uint32_t x2918; uint32_t x2919; uint32_t x2920; uint32_t x2921; uint32_t x2922; uint32_t x2923; uint32_t x2924; uint32_t x2925; uint32_t x2926; uint32_t x2927; uint32_t x2928; uint32_t x2929; uint32_t x2930; uint32_t x2931; uint32_t x2932; uint32_t x2933; uint32_t x2934; uint32_t x2935; uint32_t x2936; uint32_t x2937; uint32_t x2938; uint32_t x2939; uint32_t x2940; uint32_t x2941; uint32_t x2942; uint32_t x2943; uint32_t x2944; uint32_t x2945; uint32_t x2946; uint32_t x2947; uint32_t x2948; fiat_np521_uint1 x2949; uint32_t x2950; fiat_np521_uint1 x2951; uint32_t x2952; fiat_np521_uint1 x2953; uint32_t x2954; fiat_np521_uint1 x2955; uint32_t x2956; fiat_np521_uint1 x2957; uint32_t x2958; fiat_np521_uint1 x2959; uint32_t x2960; fiat_np521_uint1 x2961; uint32_t x2962; fiat_np521_uint1 x2963; uint32_t x2964; fiat_np521_uint1 x2965; uint32_t x2966; fiat_np521_uint1 x2967; uint32_t x2968; fiat_np521_uint1 x2969; uint32_t x2970; fiat_np521_uint1 x2971; uint32_t x2972; fiat_np521_uint1 x2973; uint32_t x2974; fiat_np521_uint1 x2975; uint32_t x2976; fiat_np521_uint1 x2977; uint32_t x2978; fiat_np521_uint1 x2979; uint32_t x2980; fiat_np521_uint1 x2981; uint32_t x2982; fiat_np521_uint1 x2983; uint32_t x2984; fiat_np521_uint1 x2985; uint32_t x2986; fiat_np521_uint1 x2987; uint32_t x2988; fiat_np521_uint1 x2989; uint32_t x2990; fiat_np521_uint1 x2991; uint32_t x2992; fiat_np521_uint1 x2993; uint32_t x2994; fiat_np521_uint1 x2995; uint32_t x2996; fiat_np521_uint1 x2997; uint32_t x2998; fiat_np521_uint1 x2999; uint32_t x3000; fiat_np521_uint1 x3001; uint32_t x3002; fiat_np521_uint1 x3003; uint32_t x3004; fiat_np521_uint1 x3005; uint32_t x3006; fiat_np521_uint1 x3007; uint32_t x3008; fiat_np521_uint1 x3009; uint32_t x3010; fiat_np521_uint1 x3011; uint32_t x3012; fiat_np521_uint1 x3013; uint32_t x3014; uint32_t x3015; uint32_t x3016; uint32_t x3017; uint32_t x3018; uint32_t x3019; uint32_t x3020; uint32_t x3021; uint32_t x3022; uint32_t x3023; uint32_t x3024; uint32_t x3025; uint32_t x3026; uint32_t x3027; uint32_t x3028; uint32_t x3029; uint32_t x3030; uint32_t x3031; uint32_t x3032; uint32_t x3033; uint32_t x3034; uint32_t x3035; uint32_t x3036; uint32_t x3037; uint32_t x3038; uint32_t x3039; uint32_t x3040; uint32_t x3041; uint32_t x3042; uint32_t x3043; uint32_t x3044; uint32_t x3045; uint32_t x3046; uint32_t x3047; uint32_t x3048; fiat_np521_uint1 x3049; uint32_t x3050; fiat_np521_uint1 x3051; uint32_t x3052; fiat_np521_uint1 x3053; uint32_t x3054; fiat_np521_uint1 x3055; uint32_t x3056; fiat_np521_uint1 x3057; uint32_t x3058; fiat_np521_uint1 x3059; uint32_t x3060; fiat_np521_uint1 x3061; uint32_t x3062; fiat_np521_uint1 x3063; uint32_t x3064; fiat_np521_uint1 x3065; uint32_t x3066; fiat_np521_uint1 x3067; uint32_t x3068; fiat_np521_uint1 x3069; uint32_t x3070; fiat_np521_uint1 x3071; uint32_t x3072; fiat_np521_uint1 x3073; uint32_t x3074; fiat_np521_uint1 x3075; uint32_t x3076; fiat_np521_uint1 x3077; uint32_t x3078; fiat_np521_uint1 x3079; uint32_t x3080; fiat_np521_uint1 x3081; uint32_t x3082; fiat_np521_uint1 x3083; uint32_t x3084; fiat_np521_uint1 x3085; uint32_t x3086; fiat_np521_uint1 x3087; uint32_t x3088; fiat_np521_uint1 x3089; uint32_t x3090; fiat_np521_uint1 x3091; uint32_t x3092; fiat_np521_uint1 x3093; uint32_t x3094; fiat_np521_uint1 x3095; uint32_t x3096; fiat_np521_uint1 x3097; uint32_t x3098; fiat_np521_uint1 x3099; uint32_t x3100; fiat_np521_uint1 x3101; uint32_t x3102; fiat_np521_uint1 x3103; uint32_t x3104; fiat_np521_uint1 x3105; uint32_t x3106; fiat_np521_uint1 x3107; uint32_t x3108; fiat_np521_uint1 x3109; uint32_t x3110; fiat_np521_uint1 x3111; uint32_t x3112; fiat_np521_uint1 x3113; uint32_t x3114; uint32_t x3115; uint32_t x3116; uint32_t x3117; uint32_t x3118; uint32_t x3119; uint32_t x3120; uint32_t x3121; uint32_t x3122; uint32_t x3123; uint32_t x3124; uint32_t x3125; uint32_t x3126; uint32_t x3127; uint32_t x3128; uint32_t x3129; uint32_t x3130; uint32_t x3131; uint32_t x3132; uint32_t x3133; uint32_t x3134; uint32_t x3135; uint32_t x3136; uint32_t x3137; uint32_t x3138; uint32_t x3139; uint32_t x3140; uint32_t x3141; uint32_t x3142; uint32_t x3143; uint32_t x3144; uint32_t x3145; uint32_t x3146; uint32_t x3147; uint32_t x3148; uint32_t x3149; uint32_t x3150; fiat_np521_uint1 x3151; uint32_t x3152; fiat_np521_uint1 x3153; uint32_t x3154; fiat_np521_uint1 x3155; uint32_t x3156; fiat_np521_uint1 x3157; uint32_t x3158; fiat_np521_uint1 x3159; uint32_t x3160; fiat_np521_uint1 x3161; uint32_t x3162; fiat_np521_uint1 x3163; uint32_t x3164; fiat_np521_uint1 x3165; uint32_t x3166; fiat_np521_uint1 x3167; uint32_t x3168; fiat_np521_uint1 x3169; uint32_t x3170; fiat_np521_uint1 x3171; uint32_t x3172; fiat_np521_uint1 x3173; uint32_t x3174; fiat_np521_uint1 x3175; uint32_t x3176; fiat_np521_uint1 x3177; uint32_t x3178; fiat_np521_uint1 x3179; uint32_t x3180; fiat_np521_uint1 x3181; uint32_t x3182; fiat_np521_uint1 x3183; uint32_t x3184; fiat_np521_uint1 x3185; uint32_t x3186; fiat_np521_uint1 x3187; uint32_t x3188; fiat_np521_uint1 x3189; uint32_t x3190; fiat_np521_uint1 x3191; uint32_t x3192; fiat_np521_uint1 x3193; uint32_t x3194; fiat_np521_uint1 x3195; uint32_t x3196; fiat_np521_uint1 x3197; uint32_t x3198; fiat_np521_uint1 x3199; uint32_t x3200; fiat_np521_uint1 x3201; uint32_t x3202; fiat_np521_uint1 x3203; uint32_t x3204; fiat_np521_uint1 x3205; uint32_t x3206; fiat_np521_uint1 x3207; uint32_t x3208; fiat_np521_uint1 x3209; uint32_t x3210; fiat_np521_uint1 x3211; uint32_t x3212; fiat_np521_uint1 x3213; uint32_t x3214; fiat_np521_uint1 x3215; uint32_t x3216; uint32_t x3217; uint32_t x3218; uint32_t x3219; uint32_t x3220; uint32_t x3221; uint32_t x3222; uint32_t x3223; uint32_t x3224; uint32_t x3225; uint32_t x3226; uint32_t x3227; uint32_t x3228; uint32_t x3229; uint32_t x3230; uint32_t x3231; uint32_t x3232; uint32_t x3233; uint32_t x3234; uint32_t x3235; uint32_t x3236; uint32_t x3237; uint32_t x3238; uint32_t x3239; uint32_t x3240; uint32_t x3241; uint32_t x3242; uint32_t x3243; uint32_t x3244; uint32_t x3245; uint32_t x3246; uint32_t x3247; uint32_t x3248; uint32_t x3249; uint32_t x3250; fiat_np521_uint1 x3251; uint32_t x3252; fiat_np521_uint1 x3253; uint32_t x3254; fiat_np521_uint1 x3255; uint32_t x3256; fiat_np521_uint1 x3257; uint32_t x3258; fiat_np521_uint1 x3259; uint32_t x3260; fiat_np521_uint1 x3261; uint32_t x3262; fiat_np521_uint1 x3263; uint32_t x3264; fiat_np521_uint1 x3265; uint32_t x3266; fiat_np521_uint1 x3267; uint32_t x3268; fiat_np521_uint1 x3269; uint32_t x3270; fiat_np521_uint1 x3271; uint32_t x3272; fiat_np521_uint1 x3273; uint32_t x3274; fiat_np521_uint1 x3275; uint32_t x3276; fiat_np521_uint1 x3277; uint32_t x3278; fiat_np521_uint1 x3279; uint32_t x3280; fiat_np521_uint1 x3281; uint32_t x3282; fiat_np521_uint1 x3283; uint32_t x3284; fiat_np521_uint1 x3285; uint32_t x3286; fiat_np521_uint1 x3287; uint32_t x3288; fiat_np521_uint1 x3289; uint32_t x3290; fiat_np521_uint1 x3291; uint32_t x3292; fiat_np521_uint1 x3293; uint32_t x3294; fiat_np521_uint1 x3295; uint32_t x3296; fiat_np521_uint1 x3297; uint32_t x3298; fiat_np521_uint1 x3299; uint32_t x3300; fiat_np521_uint1 x3301; uint32_t x3302; fiat_np521_uint1 x3303; uint32_t x3304; fiat_np521_uint1 x3305; uint32_t x3306; fiat_np521_uint1 x3307; uint32_t x3308; fiat_np521_uint1 x3309; uint32_t x3310; fiat_np521_uint1 x3311; uint32_t x3312; fiat_np521_uint1 x3313; uint32_t x3314; fiat_np521_uint1 x3315; uint32_t x3316; uint32_t x3317; uint32_t x3318; uint32_t x3319; uint32_t x3320; uint32_t x3321; uint32_t x3322; uint32_t x3323; uint32_t x3324; uint32_t x3325; uint32_t x3326; uint32_t x3327; uint32_t x3328; uint32_t x3329; uint32_t x3330; uint32_t x3331; uint32_t x3332; uint32_t x3333; uint32_t x3334; uint32_t x3335; uint32_t x3336; uint32_t x3337; uint32_t x3338; uint32_t x3339; uint32_t x3340; uint32_t x3341; uint32_t x3342; uint32_t x3343; uint32_t x3344; uint32_t x3345; uint32_t x3346; uint32_t x3347; uint32_t x3348; uint32_t x3349; uint32_t x3350; uint32_t x3351; uint32_t x3352; fiat_np521_uint1 x3353; uint32_t x3354; fiat_np521_uint1 x3355; uint32_t x3356; fiat_np521_uint1 x3357; uint32_t x3358; fiat_np521_uint1 x3359; uint32_t x3360; fiat_np521_uint1 x3361; uint32_t x3362; fiat_np521_uint1 x3363; uint32_t x3364; fiat_np521_uint1 x3365; uint32_t x3366; fiat_np521_uint1 x3367; uint32_t x3368; fiat_np521_uint1 x3369; uint32_t x3370; fiat_np521_uint1 x3371; uint32_t x3372; fiat_np521_uint1 x3373; uint32_t x3374; fiat_np521_uint1 x3375; uint32_t x3376; fiat_np521_uint1 x3377; uint32_t x3378; fiat_np521_uint1 x3379; uint32_t x3380; fiat_np521_uint1 x3381; uint32_t x3382; fiat_np521_uint1 x3383; uint32_t x3384; fiat_np521_uint1 x3385; uint32_t x3386; fiat_np521_uint1 x3387; uint32_t x3388; fiat_np521_uint1 x3389; uint32_t x3390; fiat_np521_uint1 x3391; uint32_t x3392; fiat_np521_uint1 x3393; uint32_t x3394; fiat_np521_uint1 x3395; uint32_t x3396; fiat_np521_uint1 x3397; uint32_t x3398; fiat_np521_uint1 x3399; uint32_t x3400; fiat_np521_uint1 x3401; uint32_t x3402; fiat_np521_uint1 x3403; uint32_t x3404; fiat_np521_uint1 x3405; uint32_t x3406; fiat_np521_uint1 x3407; uint32_t x3408; fiat_np521_uint1 x3409; uint32_t x3410; fiat_np521_uint1 x3411; uint32_t x3412; fiat_np521_uint1 x3413; uint32_t x3414; fiat_np521_uint1 x3415; uint32_t x3416; fiat_np521_uint1 x3417; uint32_t x3418; uint32_t x3419; fiat_np521_uint1 x3420; uint32_t x3421; fiat_np521_uint1 x3422; uint32_t x3423; fiat_np521_uint1 x3424; uint32_t x3425; fiat_np521_uint1 x3426; uint32_t x3427; fiat_np521_uint1 x3428; uint32_t x3429; fiat_np521_uint1 x3430; uint32_t x3431; fiat_np521_uint1 x3432; uint32_t x3433; fiat_np521_uint1 x3434; uint32_t x3435; fiat_np521_uint1 x3436; uint32_t x3437; fiat_np521_uint1 x3438; uint32_t x3439; fiat_np521_uint1 x3440; uint32_t x3441; fiat_np521_uint1 x3442; uint32_t x3443; fiat_np521_uint1 x3444; uint32_t x3445; fiat_np521_uint1 x3446; uint32_t x3447; fiat_np521_uint1 x3448; uint32_t x3449; fiat_np521_uint1 x3450; uint32_t x3451; fiat_np521_uint1 x3452; uint32_t x3453; fiat_np521_uint1 x3454; uint32_t x3455; uint32_t x3456; uint32_t x3457; uint32_t x3458; uint32_t x3459; uint32_t x3460; uint32_t x3461; uint32_t x3462; uint32_t x3463; uint32_t x3464; uint32_t x3465; uint32_t x3466; uint32_t x3467; uint32_t x3468; uint32_t x3469; uint32_t x3470; uint32_t x3471; x1 = (arg1[1]); x2 = (arg1[2]); x3 = (arg1[3]); x4 = (arg1[4]); x5 = (arg1[5]); x6 = (arg1[6]); x7 = (arg1[7]); x8 = (arg1[8]); x9 = (arg1[9]); x10 = (arg1[10]); x11 = (arg1[11]); x12 = (arg1[12]); x13 = (arg1[13]); x14 = (arg1[14]); x15 = (arg1[15]); x16 = (arg1[16]); x17 = (arg1[0]); fiat_np521_mulx_u32(&x18, &x19, x17, UINT16_C(0x19a)); fiat_np521_mulx_u32(&x20, &x21, x17, UINT32_C(0x5b5a3afe)); fiat_np521_mulx_u32(&x22, &x23, x17, UINT32_C(0x8c44383d)); fiat_np521_mulx_u32(&x24, &x25, x17, UINT32_C(0x2d8e03d1)); fiat_np521_mulx_u32(&x26, &x27, x17, UINT32_C(0x492d0d45)); fiat_np521_mulx_u32(&x28, &x29, x17, UINT32_C(0x5bcc6d61)); fiat_np521_mulx_u32(&x30, &x31, x17, UINT32_C(0xa8e567bc)); fiat_np521_mulx_u32(&x32, &x33, x17, UINT32_C(0xcff3d142)); fiat_np521_mulx_u32(&x34, &x35, x17, UINT32_C(0xb7756e3a)); fiat_np521_mulx_u32(&x36, &x37, x17, UINT32_C(0x4fb35b72)); fiat_np521_mulx_u32(&x38, &x39, x17, UINT32_C(0xd3402705)); fiat_np521_mulx_u32(&x40, &x41, x17, UINT32_C(0x5d4dd6d3)); fiat_np521_mulx_u32(&x42, &x43, x17, UINT32_C(0x791d9dc)); fiat_np521_mulx_u32(&x44, &x45, x17, UINT32_C(0x18354a56)); fiat_np521_mulx_u32(&x46, &x47, x17, UINT32_C(0x4374a642)); fiat_np521_mulx_u32(&x48, &x49, x17, UINT32_C(0x1163115a)); fiat_np521_mulx_u32(&x50, &x51, x17, UINT32_C(0x61c64ca7)); fiat_np521_addcarryx_u32(&x52, &x53, 0x0, x51, x48); fiat_np521_addcarryx_u32(&x54, &x55, x53, x49, x46); fiat_np521_addcarryx_u32(&x56, &x57, x55, x47, x44); fiat_np521_addcarryx_u32(&x58, &x59, x57, x45, x42); fiat_np521_addcarryx_u32(&x60, &x61, x59, x43, x40); fiat_np521_addcarryx_u32(&x62, &x63, x61, x41, x38); fiat_np521_addcarryx_u32(&x64, &x65, x63, x39, x36); fiat_np521_addcarryx_u32(&x66, &x67, x65, x37, x34); fiat_np521_addcarryx_u32(&x68, &x69, x67, x35, x32); fiat_np521_addcarryx_u32(&x70, &x71, x69, x33, x30); fiat_np521_addcarryx_u32(&x72, &x73, x71, x31, x28); fiat_np521_addcarryx_u32(&x74, &x75, x73, x29, x26); fiat_np521_addcarryx_u32(&x76, &x77, x75, x27, x24); fiat_np521_addcarryx_u32(&x78, &x79, x77, x25, x22); fiat_np521_addcarryx_u32(&x80, &x81, x79, x23, x20); fiat_np521_addcarryx_u32(&x82, &x83, x81, x21, x18); fiat_np521_mulx_u32(&x84, &x85, x50, UINT32_C(0x79a995c7)); fiat_np521_mulx_u32(&x86, &x87, x84, UINT16_C(0x1ff)); fiat_np521_mulx_u32(&x88, &x89, x84, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x90, &x91, x84, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x92, &x93, x84, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x94, &x95, x84, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x96, &x97, x84, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x98, &x99, x84, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x100, &x101, x84, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x102, &x103, x84, UINT32_C(0xfffffffa)); fiat_np521_mulx_u32(&x104, &x105, x84, UINT32_C(0x51868783)); fiat_np521_mulx_u32(&x106, &x107, x84, UINT32_C(0xbf2f966b)); fiat_np521_mulx_u32(&x108, &x109, x84, UINT32_C(0x7fcc0148)); fiat_np521_mulx_u32(&x110, &x111, x84, UINT32_C(0xf709a5d0)); fiat_np521_mulx_u32(&x112, &x113, x84, UINT32_C(0x3bb5c9b8)); fiat_np521_mulx_u32(&x114, &x115, x84, UINT32_C(0x899c47ae)); fiat_np521_mulx_u32(&x116, &x117, x84, UINT32_C(0xbb6fb71e)); fiat_np521_mulx_u32(&x118, &x119, x84, UINT32_C(0x91386409)); fiat_np521_addcarryx_u32(&x120, &x121, 0x0, x119, x116); fiat_np521_addcarryx_u32(&x122, &x123, x121, x117, x114); fiat_np521_addcarryx_u32(&x124, &x125, x123, x115, x112); fiat_np521_addcarryx_u32(&x126, &x127, x125, x113, x110); fiat_np521_addcarryx_u32(&x128, &x129, x127, x111, x108); fiat_np521_addcarryx_u32(&x130, &x131, x129, x109, x106); fiat_np521_addcarryx_u32(&x132, &x133, x131, x107, x104); fiat_np521_addcarryx_u32(&x134, &x135, x133, x105, x102); fiat_np521_addcarryx_u32(&x136, &x137, x135, x103, x100); fiat_np521_addcarryx_u32(&x138, &x139, x137, x101, x98); fiat_np521_addcarryx_u32(&x140, &x141, x139, x99, x96); fiat_np521_addcarryx_u32(&x142, &x143, x141, x97, x94); fiat_np521_addcarryx_u32(&x144, &x145, x143, x95, x92); fiat_np521_addcarryx_u32(&x146, &x147, x145, x93, x90); fiat_np521_addcarryx_u32(&x148, &x149, x147, x91, x88); fiat_np521_addcarryx_u32(&x150, &x151, x149, x89, x86); fiat_np521_addcarryx_u32(&x152, &x153, 0x0, x50, x118); fiat_np521_addcarryx_u32(&x154, &x155, x153, x52, x120); fiat_np521_addcarryx_u32(&x156, &x157, x155, x54, x122); fiat_np521_addcarryx_u32(&x158, &x159, x157, x56, x124); fiat_np521_addcarryx_u32(&x160, &x161, x159, x58, x126); fiat_np521_addcarryx_u32(&x162, &x163, x161, x60, x128); fiat_np521_addcarryx_u32(&x164, &x165, x163, x62, x130); fiat_np521_addcarryx_u32(&x166, &x167, x165, x64, x132); fiat_np521_addcarryx_u32(&x168, &x169, x167, x66, x134); fiat_np521_addcarryx_u32(&x170, &x171, x169, x68, x136); fiat_np521_addcarryx_u32(&x172, &x173, x171, x70, x138); fiat_np521_addcarryx_u32(&x174, &x175, x173, x72, x140); fiat_np521_addcarryx_u32(&x176, &x177, x175, x74, x142); fiat_np521_addcarryx_u32(&x178, &x179, x177, x76, x144); fiat_np521_addcarryx_u32(&x180, &x181, x179, x78, x146); fiat_np521_addcarryx_u32(&x182, &x183, x181, x80, x148); fiat_np521_addcarryx_u32(&x184, &x185, x183, x82, x150); fiat_np521_mulx_u32(&x186, &x187, x1, UINT16_C(0x19a)); fiat_np521_mulx_u32(&x188, &x189, x1, UINT32_C(0x5b5a3afe)); fiat_np521_mulx_u32(&x190, &x191, x1, UINT32_C(0x8c44383d)); fiat_np521_mulx_u32(&x192, &x193, x1, UINT32_C(0x2d8e03d1)); fiat_np521_mulx_u32(&x194, &x195, x1, UINT32_C(0x492d0d45)); fiat_np521_mulx_u32(&x196, &x197, x1, UINT32_C(0x5bcc6d61)); fiat_np521_mulx_u32(&x198, &x199, x1, UINT32_C(0xa8e567bc)); fiat_np521_mulx_u32(&x200, &x201, x1, UINT32_C(0xcff3d142)); fiat_np521_mulx_u32(&x202, &x203, x1, UINT32_C(0xb7756e3a)); fiat_np521_mulx_u32(&x204, &x205, x1, UINT32_C(0x4fb35b72)); fiat_np521_mulx_u32(&x206, &x207, x1, UINT32_C(0xd3402705)); fiat_np521_mulx_u32(&x208, &x209, x1, UINT32_C(0x5d4dd6d3)); fiat_np521_mulx_u32(&x210, &x211, x1, UINT32_C(0x791d9dc)); fiat_np521_mulx_u32(&x212, &x213, x1, UINT32_C(0x18354a56)); fiat_np521_mulx_u32(&x214, &x215, x1, UINT32_C(0x4374a642)); fiat_np521_mulx_u32(&x216, &x217, x1, UINT32_C(0x1163115a)); fiat_np521_mulx_u32(&x218, &x219, x1, UINT32_C(0x61c64ca7)); fiat_np521_addcarryx_u32(&x220, &x221, 0x0, x219, x216); fiat_np521_addcarryx_u32(&x222, &x223, x221, x217, x214); fiat_np521_addcarryx_u32(&x224, &x225, x223, x215, x212); fiat_np521_addcarryx_u32(&x226, &x227, x225, x213, x210); fiat_np521_addcarryx_u32(&x228, &x229, x227, x211, x208); fiat_np521_addcarryx_u32(&x230, &x231, x229, x209, x206); fiat_np521_addcarryx_u32(&x232, &x233, x231, x207, x204); fiat_np521_addcarryx_u32(&x234, &x235, x233, x205, x202); fiat_np521_addcarryx_u32(&x236, &x237, x235, x203, x200); fiat_np521_addcarryx_u32(&x238, &x239, x237, x201, x198); fiat_np521_addcarryx_u32(&x240, &x241, x239, x199, x196); fiat_np521_addcarryx_u32(&x242, &x243, x241, x197, x194); fiat_np521_addcarryx_u32(&x244, &x245, x243, x195, x192); fiat_np521_addcarryx_u32(&x246, &x247, x245, x193, x190); fiat_np521_addcarryx_u32(&x248, &x249, x247, x191, x188); fiat_np521_addcarryx_u32(&x250, &x251, x249, x189, x186); fiat_np521_addcarryx_u32(&x252, &x253, 0x0, x154, x218); fiat_np521_addcarryx_u32(&x254, &x255, x253, x156, x220); fiat_np521_addcarryx_u32(&x256, &x257, x255, x158, x222); fiat_np521_addcarryx_u32(&x258, &x259, x257, x160, x224); fiat_np521_addcarryx_u32(&x260, &x261, x259, x162, x226); fiat_np521_addcarryx_u32(&x262, &x263, x261, x164, x228); fiat_np521_addcarryx_u32(&x264, &x265, x263, x166, x230); fiat_np521_addcarryx_u32(&x266, &x267, x265, x168, x232); fiat_np521_addcarryx_u32(&x268, &x269, x267, x170, x234); fiat_np521_addcarryx_u32(&x270, &x271, x269, x172, x236); fiat_np521_addcarryx_u32(&x272, &x273, x271, x174, x238); fiat_np521_addcarryx_u32(&x274, &x275, x273, x176, x240); fiat_np521_addcarryx_u32(&x276, &x277, x275, x178, x242); fiat_np521_addcarryx_u32(&x278, &x279, x277, x180, x244); fiat_np521_addcarryx_u32(&x280, &x281, x279, x182, x246); fiat_np521_addcarryx_u32(&x282, &x283, x281, x184, x248); fiat_np521_addcarryx_u32(&x284, &x285, x283, ((x185 + (x83 + x19)) + (x151 + x87)), x250); fiat_np521_mulx_u32(&x286, &x287, x252, UINT32_C(0x79a995c7)); fiat_np521_mulx_u32(&x288, &x289, x286, UINT16_C(0x1ff)); fiat_np521_mulx_u32(&x290, &x291, x286, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x292, &x293, x286, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x294, &x295, x286, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x296, &x297, x286, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x298, &x299, x286, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x300, &x301, x286, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x302, &x303, x286, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x304, &x305, x286, UINT32_C(0xfffffffa)); fiat_np521_mulx_u32(&x306, &x307, x286, UINT32_C(0x51868783)); fiat_np521_mulx_u32(&x308, &x309, x286, UINT32_C(0xbf2f966b)); fiat_np521_mulx_u32(&x310, &x311, x286, UINT32_C(0x7fcc0148)); fiat_np521_mulx_u32(&x312, &x313, x286, UINT32_C(0xf709a5d0)); fiat_np521_mulx_u32(&x314, &x315, x286, UINT32_C(0x3bb5c9b8)); fiat_np521_mulx_u32(&x316, &x317, x286, UINT32_C(0x899c47ae)); fiat_np521_mulx_u32(&x318, &x319, x286, UINT32_C(0xbb6fb71e)); fiat_np521_mulx_u32(&x320, &x321, x286, UINT32_C(0x91386409)); fiat_np521_addcarryx_u32(&x322, &x323, 0x0, x321, x318); fiat_np521_addcarryx_u32(&x324, &x325, x323, x319, x316); fiat_np521_addcarryx_u32(&x326, &x327, x325, x317, x314); fiat_np521_addcarryx_u32(&x328, &x329, x327, x315, x312); fiat_np521_addcarryx_u32(&x330, &x331, x329, x313, x310); fiat_np521_addcarryx_u32(&x332, &x333, x331, x311, x308); fiat_np521_addcarryx_u32(&x334, &x335, x333, x309, x306); fiat_np521_addcarryx_u32(&x336, &x337, x335, x307, x304); fiat_np521_addcarryx_u32(&x338, &x339, x337, x305, x302); fiat_np521_addcarryx_u32(&x340, &x341, x339, x303, x300); fiat_np521_addcarryx_u32(&x342, &x343, x341, x301, x298); fiat_np521_addcarryx_u32(&x344, &x345, x343, x299, x296); fiat_np521_addcarryx_u32(&x346, &x347, x345, x297, x294); fiat_np521_addcarryx_u32(&x348, &x349, x347, x295, x292); fiat_np521_addcarryx_u32(&x350, &x351, x349, x293, x290); fiat_np521_addcarryx_u32(&x352, &x353, x351, x291, x288); fiat_np521_addcarryx_u32(&x354, &x355, 0x0, x252, x320); fiat_np521_addcarryx_u32(&x356, &x357, x355, x254, x322); fiat_np521_addcarryx_u32(&x358, &x359, x357, x256, x324); fiat_np521_addcarryx_u32(&x360, &x361, x359, x258, x326); fiat_np521_addcarryx_u32(&x362, &x363, x361, x260, x328); fiat_np521_addcarryx_u32(&x364, &x365, x363, x262, x330); fiat_np521_addcarryx_u32(&x366, &x367, x365, x264, x332); fiat_np521_addcarryx_u32(&x368, &x369, x367, x266, x334); fiat_np521_addcarryx_u32(&x370, &x371, x369, x268, x336); fiat_np521_addcarryx_u32(&x372, &x373, x371, x270, x338); fiat_np521_addcarryx_u32(&x374, &x375, x373, x272, x340); fiat_np521_addcarryx_u32(&x376, &x377, x375, x274, x342); fiat_np521_addcarryx_u32(&x378, &x379, x377, x276, x344); fiat_np521_addcarryx_u32(&x380, &x381, x379, x278, x346); fiat_np521_addcarryx_u32(&x382, &x383, x381, x280, x348); fiat_np521_addcarryx_u32(&x384, &x385, x383, x282, x350); fiat_np521_addcarryx_u32(&x386, &x387, x385, x284, x352); fiat_np521_mulx_u32(&x388, &x389, x2, UINT16_C(0x19a)); fiat_np521_mulx_u32(&x390, &x391, x2, UINT32_C(0x5b5a3afe)); fiat_np521_mulx_u32(&x392, &x393, x2, UINT32_C(0x8c44383d)); fiat_np521_mulx_u32(&x394, &x395, x2, UINT32_C(0x2d8e03d1)); fiat_np521_mulx_u32(&x396, &x397, x2, UINT32_C(0x492d0d45)); fiat_np521_mulx_u32(&x398, &x399, x2, UINT32_C(0x5bcc6d61)); fiat_np521_mulx_u32(&x400, &x401, x2, UINT32_C(0xa8e567bc)); fiat_np521_mulx_u32(&x402, &x403, x2, UINT32_C(0xcff3d142)); fiat_np521_mulx_u32(&x404, &x405, x2, UINT32_C(0xb7756e3a)); fiat_np521_mulx_u32(&x406, &x407, x2, UINT32_C(0x4fb35b72)); fiat_np521_mulx_u32(&x408, &x409, x2, UINT32_C(0xd3402705)); fiat_np521_mulx_u32(&x410, &x411, x2, UINT32_C(0x5d4dd6d3)); fiat_np521_mulx_u32(&x412, &x413, x2, UINT32_C(0x791d9dc)); fiat_np521_mulx_u32(&x414, &x415, x2, UINT32_C(0x18354a56)); fiat_np521_mulx_u32(&x416, &x417, x2, UINT32_C(0x4374a642)); fiat_np521_mulx_u32(&x418, &x419, x2, UINT32_C(0x1163115a)); fiat_np521_mulx_u32(&x420, &x421, x2, UINT32_C(0x61c64ca7)); fiat_np521_addcarryx_u32(&x422, &x423, 0x0, x421, x418); fiat_np521_addcarryx_u32(&x424, &x425, x423, x419, x416); fiat_np521_addcarryx_u32(&x426, &x427, x425, x417, x414); fiat_np521_addcarryx_u32(&x428, &x429, x427, x415, x412); fiat_np521_addcarryx_u32(&x430, &x431, x429, x413, x410); fiat_np521_addcarryx_u32(&x432, &x433, x431, x411, x408); fiat_np521_addcarryx_u32(&x434, &x435, x433, x409, x406); fiat_np521_addcarryx_u32(&x436, &x437, x435, x407, x404); fiat_np521_addcarryx_u32(&x438, &x439, x437, x405, x402); fiat_np521_addcarryx_u32(&x440, &x441, x439, x403, x400); fiat_np521_addcarryx_u32(&x442, &x443, x441, x401, x398); fiat_np521_addcarryx_u32(&x444, &x445, x443, x399, x396); fiat_np521_addcarryx_u32(&x446, &x447, x445, x397, x394); fiat_np521_addcarryx_u32(&x448, &x449, x447, x395, x392); fiat_np521_addcarryx_u32(&x450, &x451, x449, x393, x390); fiat_np521_addcarryx_u32(&x452, &x453, x451, x391, x388); fiat_np521_addcarryx_u32(&x454, &x455, 0x0, x356, x420); fiat_np521_addcarryx_u32(&x456, &x457, x455, x358, x422); fiat_np521_addcarryx_u32(&x458, &x459, x457, x360, x424); fiat_np521_addcarryx_u32(&x460, &x461, x459, x362, x426); fiat_np521_addcarryx_u32(&x462, &x463, x461, x364, x428); fiat_np521_addcarryx_u32(&x464, &x465, x463, x366, x430); fiat_np521_addcarryx_u32(&x466, &x467, x465, x368, x432); fiat_np521_addcarryx_u32(&x468, &x469, x467, x370, x434); fiat_np521_addcarryx_u32(&x470, &x471, x469, x372, x436); fiat_np521_addcarryx_u32(&x472, &x473, x471, x374, x438); fiat_np521_addcarryx_u32(&x474, &x475, x473, x376, x440); fiat_np521_addcarryx_u32(&x476, &x477, x475, x378, x442); fiat_np521_addcarryx_u32(&x478, &x479, x477, x380, x444); fiat_np521_addcarryx_u32(&x480, &x481, x479, x382, x446); fiat_np521_addcarryx_u32(&x482, &x483, x481, x384, x448); fiat_np521_addcarryx_u32(&x484, &x485, x483, x386, x450); fiat_np521_addcarryx_u32(&x486, &x487, x485, ((x387 + (x285 + (x251 + x187))) + (x353 + x289)), x452); fiat_np521_mulx_u32(&x488, &x489, x454, UINT32_C(0x79a995c7)); fiat_np521_mulx_u32(&x490, &x491, x488, UINT16_C(0x1ff)); fiat_np521_mulx_u32(&x492, &x493, x488, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x494, &x495, x488, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x496, &x497, x488, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x498, &x499, x488, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x500, &x501, x488, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x502, &x503, x488, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x504, &x505, x488, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x506, &x507, x488, UINT32_C(0xfffffffa)); fiat_np521_mulx_u32(&x508, &x509, x488, UINT32_C(0x51868783)); fiat_np521_mulx_u32(&x510, &x511, x488, UINT32_C(0xbf2f966b)); fiat_np521_mulx_u32(&x512, &x513, x488, UINT32_C(0x7fcc0148)); fiat_np521_mulx_u32(&x514, &x515, x488, UINT32_C(0xf709a5d0)); fiat_np521_mulx_u32(&x516, &x517, x488, UINT32_C(0x3bb5c9b8)); fiat_np521_mulx_u32(&x518, &x519, x488, UINT32_C(0x899c47ae)); fiat_np521_mulx_u32(&x520, &x521, x488, UINT32_C(0xbb6fb71e)); fiat_np521_mulx_u32(&x522, &x523, x488, UINT32_C(0x91386409)); fiat_np521_addcarryx_u32(&x524, &x525, 0x0, x523, x520); fiat_np521_addcarryx_u32(&x526, &x527, x525, x521, x518); fiat_np521_addcarryx_u32(&x528, &x529, x527, x519, x516); fiat_np521_addcarryx_u32(&x530, &x531, x529, x517, x514); fiat_np521_addcarryx_u32(&x532, &x533, x531, x515, x512); fiat_np521_addcarryx_u32(&x534, &x535, x533, x513, x510); fiat_np521_addcarryx_u32(&x536, &x537, x535, x511, x508); fiat_np521_addcarryx_u32(&x538, &x539, x537, x509, x506); fiat_np521_addcarryx_u32(&x540, &x541, x539, x507, x504); fiat_np521_addcarryx_u32(&x542, &x543, x541, x505, x502); fiat_np521_addcarryx_u32(&x544, &x545, x543, x503, x500); fiat_np521_addcarryx_u32(&x546, &x547, x545, x501, x498); fiat_np521_addcarryx_u32(&x548, &x549, x547, x499, x496); fiat_np521_addcarryx_u32(&x550, &x551, x549, x497, x494); fiat_np521_addcarryx_u32(&x552, &x553, x551, x495, x492); fiat_np521_addcarryx_u32(&x554, &x555, x553, x493, x490); fiat_np521_addcarryx_u32(&x556, &x557, 0x0, x454, x522); fiat_np521_addcarryx_u32(&x558, &x559, x557, x456, x524); fiat_np521_addcarryx_u32(&x560, &x561, x559, x458, x526); fiat_np521_addcarryx_u32(&x562, &x563, x561, x460, x528); fiat_np521_addcarryx_u32(&x564, &x565, x563, x462, x530); fiat_np521_addcarryx_u32(&x566, &x567, x565, x464, x532); fiat_np521_addcarryx_u32(&x568, &x569, x567, x466, x534); fiat_np521_addcarryx_u32(&x570, &x571, x569, x468, x536); fiat_np521_addcarryx_u32(&x572, &x573, x571, x470, x538); fiat_np521_addcarryx_u32(&x574, &x575, x573, x472, x540); fiat_np521_addcarryx_u32(&x576, &x577, x575, x474, x542); fiat_np521_addcarryx_u32(&x578, &x579, x577, x476, x544); fiat_np521_addcarryx_u32(&x580, &x581, x579, x478, x546); fiat_np521_addcarryx_u32(&x582, &x583, x581, x480, x548); fiat_np521_addcarryx_u32(&x584, &x585, x583, x482, x550); fiat_np521_addcarryx_u32(&x586, &x587, x585, x484, x552); fiat_np521_addcarryx_u32(&x588, &x589, x587, x486, x554); fiat_np521_mulx_u32(&x590, &x591, x3, UINT16_C(0x19a)); fiat_np521_mulx_u32(&x592, &x593, x3, UINT32_C(0x5b5a3afe)); fiat_np521_mulx_u32(&x594, &x595, x3, UINT32_C(0x8c44383d)); fiat_np521_mulx_u32(&x596, &x597, x3, UINT32_C(0x2d8e03d1)); fiat_np521_mulx_u32(&x598, &x599, x3, UINT32_C(0x492d0d45)); fiat_np521_mulx_u32(&x600, &x601, x3, UINT32_C(0x5bcc6d61)); fiat_np521_mulx_u32(&x602, &x603, x3, UINT32_C(0xa8e567bc)); fiat_np521_mulx_u32(&x604, &x605, x3, UINT32_C(0xcff3d142)); fiat_np521_mulx_u32(&x606, &x607, x3, UINT32_C(0xb7756e3a)); fiat_np521_mulx_u32(&x608, &x609, x3, UINT32_C(0x4fb35b72)); fiat_np521_mulx_u32(&x610, &x611, x3, UINT32_C(0xd3402705)); fiat_np521_mulx_u32(&x612, &x613, x3, UINT32_C(0x5d4dd6d3)); fiat_np521_mulx_u32(&x614, &x615, x3, UINT32_C(0x791d9dc)); fiat_np521_mulx_u32(&x616, &x617, x3, UINT32_C(0x18354a56)); fiat_np521_mulx_u32(&x618, &x619, x3, UINT32_C(0x4374a642)); fiat_np521_mulx_u32(&x620, &x621, x3, UINT32_C(0x1163115a)); fiat_np521_mulx_u32(&x622, &x623, x3, UINT32_C(0x61c64ca7)); fiat_np521_addcarryx_u32(&x624, &x625, 0x0, x623, x620); fiat_np521_addcarryx_u32(&x626, &x627, x625, x621, x618); fiat_np521_addcarryx_u32(&x628, &x629, x627, x619, x616); fiat_np521_addcarryx_u32(&x630, &x631, x629, x617, x614); fiat_np521_addcarryx_u32(&x632, &x633, x631, x615, x612); fiat_np521_addcarryx_u32(&x634, &x635, x633, x613, x610); fiat_np521_addcarryx_u32(&x636, &x637, x635, x611, x608); fiat_np521_addcarryx_u32(&x638, &x639, x637, x609, x606); fiat_np521_addcarryx_u32(&x640, &x641, x639, x607, x604); fiat_np521_addcarryx_u32(&x642, &x643, x641, x605, x602); fiat_np521_addcarryx_u32(&x644, &x645, x643, x603, x600); fiat_np521_addcarryx_u32(&x646, &x647, x645, x601, x598); fiat_np521_addcarryx_u32(&x648, &x649, x647, x599, x596); fiat_np521_addcarryx_u32(&x650, &x651, x649, x597, x594); fiat_np521_addcarryx_u32(&x652, &x653, x651, x595, x592); fiat_np521_addcarryx_u32(&x654, &x655, x653, x593, x590); fiat_np521_addcarryx_u32(&x656, &x657, 0x0, x558, x622); fiat_np521_addcarryx_u32(&x658, &x659, x657, x560, x624); fiat_np521_addcarryx_u32(&x660, &x661, x659, x562, x626); fiat_np521_addcarryx_u32(&x662, &x663, x661, x564, x628); fiat_np521_addcarryx_u32(&x664, &x665, x663, x566, x630); fiat_np521_addcarryx_u32(&x666, &x667, x665, x568, x632); fiat_np521_addcarryx_u32(&x668, &x669, x667, x570, x634); fiat_np521_addcarryx_u32(&x670, &x671, x669, x572, x636); fiat_np521_addcarryx_u32(&x672, &x673, x671, x574, x638); fiat_np521_addcarryx_u32(&x674, &x675, x673, x576, x640); fiat_np521_addcarryx_u32(&x676, &x677, x675, x578, x642); fiat_np521_addcarryx_u32(&x678, &x679, x677, x580, x644); fiat_np521_addcarryx_u32(&x680, &x681, x679, x582, x646); fiat_np521_addcarryx_u32(&x682, &x683, x681, x584, x648); fiat_np521_addcarryx_u32(&x684, &x685, x683, x586, x650); fiat_np521_addcarryx_u32(&x686, &x687, x685, x588, x652); fiat_np521_addcarryx_u32(&x688, &x689, x687, ((x589 + (x487 + (x453 + x389))) + (x555 + x491)), x654); fiat_np521_mulx_u32(&x690, &x691, x656, UINT32_C(0x79a995c7)); fiat_np521_mulx_u32(&x692, &x693, x690, UINT16_C(0x1ff)); fiat_np521_mulx_u32(&x694, &x695, x690, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x696, &x697, x690, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x698, &x699, x690, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x700, &x701, x690, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x702, &x703, x690, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x704, &x705, x690, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x706, &x707, x690, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x708, &x709, x690, UINT32_C(0xfffffffa)); fiat_np521_mulx_u32(&x710, &x711, x690, UINT32_C(0x51868783)); fiat_np521_mulx_u32(&x712, &x713, x690, UINT32_C(0xbf2f966b)); fiat_np521_mulx_u32(&x714, &x715, x690, UINT32_C(0x7fcc0148)); fiat_np521_mulx_u32(&x716, &x717, x690, UINT32_C(0xf709a5d0)); fiat_np521_mulx_u32(&x718, &x719, x690, UINT32_C(0x3bb5c9b8)); fiat_np521_mulx_u32(&x720, &x721, x690, UINT32_C(0x899c47ae)); fiat_np521_mulx_u32(&x722, &x723, x690, UINT32_C(0xbb6fb71e)); fiat_np521_mulx_u32(&x724, &x725, x690, UINT32_C(0x91386409)); fiat_np521_addcarryx_u32(&x726, &x727, 0x0, x725, x722); fiat_np521_addcarryx_u32(&x728, &x729, x727, x723, x720); fiat_np521_addcarryx_u32(&x730, &x731, x729, x721, x718); fiat_np521_addcarryx_u32(&x732, &x733, x731, x719, x716); fiat_np521_addcarryx_u32(&x734, &x735, x733, x717, x714); fiat_np521_addcarryx_u32(&x736, &x737, x735, x715, x712); fiat_np521_addcarryx_u32(&x738, &x739, x737, x713, x710); fiat_np521_addcarryx_u32(&x740, &x741, x739, x711, x708); fiat_np521_addcarryx_u32(&x742, &x743, x741, x709, x706); fiat_np521_addcarryx_u32(&x744, &x745, x743, x707, x704); fiat_np521_addcarryx_u32(&x746, &x747, x745, x705, x702); fiat_np521_addcarryx_u32(&x748, &x749, x747, x703, x700); fiat_np521_addcarryx_u32(&x750, &x751, x749, x701, x698); fiat_np521_addcarryx_u32(&x752, &x753, x751, x699, x696); fiat_np521_addcarryx_u32(&x754, &x755, x753, x697, x694); fiat_np521_addcarryx_u32(&x756, &x757, x755, x695, x692); fiat_np521_addcarryx_u32(&x758, &x759, 0x0, x656, x724); fiat_np521_addcarryx_u32(&x760, &x761, x759, x658, x726); fiat_np521_addcarryx_u32(&x762, &x763, x761, x660, x728); fiat_np521_addcarryx_u32(&x764, &x765, x763, x662, x730); fiat_np521_addcarryx_u32(&x766, &x767, x765, x664, x732); fiat_np521_addcarryx_u32(&x768, &x769, x767, x666, x734); fiat_np521_addcarryx_u32(&x770, &x771, x769, x668, x736); fiat_np521_addcarryx_u32(&x772, &x773, x771, x670, x738); fiat_np521_addcarryx_u32(&x774, &x775, x773, x672, x740); fiat_np521_addcarryx_u32(&x776, &x777, x775, x674, x742); fiat_np521_addcarryx_u32(&x778, &x779, x777, x676, x744); fiat_np521_addcarryx_u32(&x780, &x781, x779, x678, x746); fiat_np521_addcarryx_u32(&x782, &x783, x781, x680, x748); fiat_np521_addcarryx_u32(&x784, &x785, x783, x682, x750); fiat_np521_addcarryx_u32(&x786, &x787, x785, x684, x752); fiat_np521_addcarryx_u32(&x788, &x789, x787, x686, x754); fiat_np521_addcarryx_u32(&x790, &x791, x789, x688, x756); fiat_np521_mulx_u32(&x792, &x793, x4, UINT16_C(0x19a)); fiat_np521_mulx_u32(&x794, &x795, x4, UINT32_C(0x5b5a3afe)); fiat_np521_mulx_u32(&x796, &x797, x4, UINT32_C(0x8c44383d)); fiat_np521_mulx_u32(&x798, &x799, x4, UINT32_C(0x2d8e03d1)); fiat_np521_mulx_u32(&x800, &x801, x4, UINT32_C(0x492d0d45)); fiat_np521_mulx_u32(&x802, &x803, x4, UINT32_C(0x5bcc6d61)); fiat_np521_mulx_u32(&x804, &x805, x4, UINT32_C(0xa8e567bc)); fiat_np521_mulx_u32(&x806, &x807, x4, UINT32_C(0xcff3d142)); fiat_np521_mulx_u32(&x808, &x809, x4, UINT32_C(0xb7756e3a)); fiat_np521_mulx_u32(&x810, &x811, x4, UINT32_C(0x4fb35b72)); fiat_np521_mulx_u32(&x812, &x813, x4, UINT32_C(0xd3402705)); fiat_np521_mulx_u32(&x814, &x815, x4, UINT32_C(0x5d4dd6d3)); fiat_np521_mulx_u32(&x816, &x817, x4, UINT32_C(0x791d9dc)); fiat_np521_mulx_u32(&x818, &x819, x4, UINT32_C(0x18354a56)); fiat_np521_mulx_u32(&x820, &x821, x4, UINT32_C(0x4374a642)); fiat_np521_mulx_u32(&x822, &x823, x4, UINT32_C(0x1163115a)); fiat_np521_mulx_u32(&x824, &x825, x4, UINT32_C(0x61c64ca7)); fiat_np521_addcarryx_u32(&x826, &x827, 0x0, x825, x822); fiat_np521_addcarryx_u32(&x828, &x829, x827, x823, x820); fiat_np521_addcarryx_u32(&x830, &x831, x829, x821, x818); fiat_np521_addcarryx_u32(&x832, &x833, x831, x819, x816); fiat_np521_addcarryx_u32(&x834, &x835, x833, x817, x814); fiat_np521_addcarryx_u32(&x836, &x837, x835, x815, x812); fiat_np521_addcarryx_u32(&x838, &x839, x837, x813, x810); fiat_np521_addcarryx_u32(&x840, &x841, x839, x811, x808); fiat_np521_addcarryx_u32(&x842, &x843, x841, x809, x806); fiat_np521_addcarryx_u32(&x844, &x845, x843, x807, x804); fiat_np521_addcarryx_u32(&x846, &x847, x845, x805, x802); fiat_np521_addcarryx_u32(&x848, &x849, x847, x803, x800); fiat_np521_addcarryx_u32(&x850, &x851, x849, x801, x798); fiat_np521_addcarryx_u32(&x852, &x853, x851, x799, x796); fiat_np521_addcarryx_u32(&x854, &x855, x853, x797, x794); fiat_np521_addcarryx_u32(&x856, &x857, x855, x795, x792); fiat_np521_addcarryx_u32(&x858, &x859, 0x0, x760, x824); fiat_np521_addcarryx_u32(&x860, &x861, x859, x762, x826); fiat_np521_addcarryx_u32(&x862, &x863, x861, x764, x828); fiat_np521_addcarryx_u32(&x864, &x865, x863, x766, x830); fiat_np521_addcarryx_u32(&x866, &x867, x865, x768, x832); fiat_np521_addcarryx_u32(&x868, &x869, x867, x770, x834); fiat_np521_addcarryx_u32(&x870, &x871, x869, x772, x836); fiat_np521_addcarryx_u32(&x872, &x873, x871, x774, x838); fiat_np521_addcarryx_u32(&x874, &x875, x873, x776, x840); fiat_np521_addcarryx_u32(&x876, &x877, x875, x778, x842); fiat_np521_addcarryx_u32(&x878, &x879, x877, x780, x844); fiat_np521_addcarryx_u32(&x880, &x881, x879, x782, x846); fiat_np521_addcarryx_u32(&x882, &x883, x881, x784, x848); fiat_np521_addcarryx_u32(&x884, &x885, x883, x786, x850); fiat_np521_addcarryx_u32(&x886, &x887, x885, x788, x852); fiat_np521_addcarryx_u32(&x888, &x889, x887, x790, x854); fiat_np521_addcarryx_u32(&x890, &x891, x889, ((x791 + (x689 + (x655 + x591))) + (x757 + x693)), x856); fiat_np521_mulx_u32(&x892, &x893, x858, UINT32_C(0x79a995c7)); fiat_np521_mulx_u32(&x894, &x895, x892, UINT16_C(0x1ff)); fiat_np521_mulx_u32(&x896, &x897, x892, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x898, &x899, x892, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x900, &x901, x892, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x902, &x903, x892, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x904, &x905, x892, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x906, &x907, x892, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x908, &x909, x892, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x910, &x911, x892, UINT32_C(0xfffffffa)); fiat_np521_mulx_u32(&x912, &x913, x892, UINT32_C(0x51868783)); fiat_np521_mulx_u32(&x914, &x915, x892, UINT32_C(0xbf2f966b)); fiat_np521_mulx_u32(&x916, &x917, x892, UINT32_C(0x7fcc0148)); fiat_np521_mulx_u32(&x918, &x919, x892, UINT32_C(0xf709a5d0)); fiat_np521_mulx_u32(&x920, &x921, x892, UINT32_C(0x3bb5c9b8)); fiat_np521_mulx_u32(&x922, &x923, x892, UINT32_C(0x899c47ae)); fiat_np521_mulx_u32(&x924, &x925, x892, UINT32_C(0xbb6fb71e)); fiat_np521_mulx_u32(&x926, &x927, x892, UINT32_C(0x91386409)); fiat_np521_addcarryx_u32(&x928, &x929, 0x0, x927, x924); fiat_np521_addcarryx_u32(&x930, &x931, x929, x925, x922); fiat_np521_addcarryx_u32(&x932, &x933, x931, x923, x920); fiat_np521_addcarryx_u32(&x934, &x935, x933, x921, x918); fiat_np521_addcarryx_u32(&x936, &x937, x935, x919, x916); fiat_np521_addcarryx_u32(&x938, &x939, x937, x917, x914); fiat_np521_addcarryx_u32(&x940, &x941, x939, x915, x912); fiat_np521_addcarryx_u32(&x942, &x943, x941, x913, x910); fiat_np521_addcarryx_u32(&x944, &x945, x943, x911, x908); fiat_np521_addcarryx_u32(&x946, &x947, x945, x909, x906); fiat_np521_addcarryx_u32(&x948, &x949, x947, x907, x904); fiat_np521_addcarryx_u32(&x950, &x951, x949, x905, x902); fiat_np521_addcarryx_u32(&x952, &x953, x951, x903, x900); fiat_np521_addcarryx_u32(&x954, &x955, x953, x901, x898); fiat_np521_addcarryx_u32(&x956, &x957, x955, x899, x896); fiat_np521_addcarryx_u32(&x958, &x959, x957, x897, x894); fiat_np521_addcarryx_u32(&x960, &x961, 0x0, x858, x926); fiat_np521_addcarryx_u32(&x962, &x963, x961, x860, x928); fiat_np521_addcarryx_u32(&x964, &x965, x963, x862, x930); fiat_np521_addcarryx_u32(&x966, &x967, x965, x864, x932); fiat_np521_addcarryx_u32(&x968, &x969, x967, x866, x934); fiat_np521_addcarryx_u32(&x970, &x971, x969, x868, x936); fiat_np521_addcarryx_u32(&x972, &x973, x971, x870, x938); fiat_np521_addcarryx_u32(&x974, &x975, x973, x872, x940); fiat_np521_addcarryx_u32(&x976, &x977, x975, x874, x942); fiat_np521_addcarryx_u32(&x978, &x979, x977, x876, x944); fiat_np521_addcarryx_u32(&x980, &x981, x979, x878, x946); fiat_np521_addcarryx_u32(&x982, &x983, x981, x880, x948); fiat_np521_addcarryx_u32(&x984, &x985, x983, x882, x950); fiat_np521_addcarryx_u32(&x986, &x987, x985, x884, x952); fiat_np521_addcarryx_u32(&x988, &x989, x987, x886, x954); fiat_np521_addcarryx_u32(&x990, &x991, x989, x888, x956); fiat_np521_addcarryx_u32(&x992, &x993, x991, x890, x958); fiat_np521_mulx_u32(&x994, &x995, x5, UINT16_C(0x19a)); fiat_np521_mulx_u32(&x996, &x997, x5, UINT32_C(0x5b5a3afe)); fiat_np521_mulx_u32(&x998, &x999, x5, UINT32_C(0x8c44383d)); fiat_np521_mulx_u32(&x1000, &x1001, x5, UINT32_C(0x2d8e03d1)); fiat_np521_mulx_u32(&x1002, &x1003, x5, UINT32_C(0x492d0d45)); fiat_np521_mulx_u32(&x1004, &x1005, x5, UINT32_C(0x5bcc6d61)); fiat_np521_mulx_u32(&x1006, &x1007, x5, UINT32_C(0xa8e567bc)); fiat_np521_mulx_u32(&x1008, &x1009, x5, UINT32_C(0xcff3d142)); fiat_np521_mulx_u32(&x1010, &x1011, x5, UINT32_C(0xb7756e3a)); fiat_np521_mulx_u32(&x1012, &x1013, x5, UINT32_C(0x4fb35b72)); fiat_np521_mulx_u32(&x1014, &x1015, x5, UINT32_C(0xd3402705)); fiat_np521_mulx_u32(&x1016, &x1017, x5, UINT32_C(0x5d4dd6d3)); fiat_np521_mulx_u32(&x1018, &x1019, x5, UINT32_C(0x791d9dc)); fiat_np521_mulx_u32(&x1020, &x1021, x5, UINT32_C(0x18354a56)); fiat_np521_mulx_u32(&x1022, &x1023, x5, UINT32_C(0x4374a642)); fiat_np521_mulx_u32(&x1024, &x1025, x5, UINT32_C(0x1163115a)); fiat_np521_mulx_u32(&x1026, &x1027, x5, UINT32_C(0x61c64ca7)); fiat_np521_addcarryx_u32(&x1028, &x1029, 0x0, x1027, x1024); fiat_np521_addcarryx_u32(&x1030, &x1031, x1029, x1025, x1022); fiat_np521_addcarryx_u32(&x1032, &x1033, x1031, x1023, x1020); fiat_np521_addcarryx_u32(&x1034, &x1035, x1033, x1021, x1018); fiat_np521_addcarryx_u32(&x1036, &x1037, x1035, x1019, x1016); fiat_np521_addcarryx_u32(&x1038, &x1039, x1037, x1017, x1014); fiat_np521_addcarryx_u32(&x1040, &x1041, x1039, x1015, x1012); fiat_np521_addcarryx_u32(&x1042, &x1043, x1041, x1013, x1010); fiat_np521_addcarryx_u32(&x1044, &x1045, x1043, x1011, x1008); fiat_np521_addcarryx_u32(&x1046, &x1047, x1045, x1009, x1006); fiat_np521_addcarryx_u32(&x1048, &x1049, x1047, x1007, x1004); fiat_np521_addcarryx_u32(&x1050, &x1051, x1049, x1005, x1002); fiat_np521_addcarryx_u32(&x1052, &x1053, x1051, x1003, x1000); fiat_np521_addcarryx_u32(&x1054, &x1055, x1053, x1001, x998); fiat_np521_addcarryx_u32(&x1056, &x1057, x1055, x999, x996); fiat_np521_addcarryx_u32(&x1058, &x1059, x1057, x997, x994); fiat_np521_addcarryx_u32(&x1060, &x1061, 0x0, x962, x1026); fiat_np521_addcarryx_u32(&x1062, &x1063, x1061, x964, x1028); fiat_np521_addcarryx_u32(&x1064, &x1065, x1063, x966, x1030); fiat_np521_addcarryx_u32(&x1066, &x1067, x1065, x968, x1032); fiat_np521_addcarryx_u32(&x1068, &x1069, x1067, x970, x1034); fiat_np521_addcarryx_u32(&x1070, &x1071, x1069, x972, x1036); fiat_np521_addcarryx_u32(&x1072, &x1073, x1071, x974, x1038); fiat_np521_addcarryx_u32(&x1074, &x1075, x1073, x976, x1040); fiat_np521_addcarryx_u32(&x1076, &x1077, x1075, x978, x1042); fiat_np521_addcarryx_u32(&x1078, &x1079, x1077, x980, x1044); fiat_np521_addcarryx_u32(&x1080, &x1081, x1079, x982, x1046); fiat_np521_addcarryx_u32(&x1082, &x1083, x1081, x984, x1048); fiat_np521_addcarryx_u32(&x1084, &x1085, x1083, x986, x1050); fiat_np521_addcarryx_u32(&x1086, &x1087, x1085, x988, x1052); fiat_np521_addcarryx_u32(&x1088, &x1089, x1087, x990, x1054); fiat_np521_addcarryx_u32(&x1090, &x1091, x1089, x992, x1056); fiat_np521_addcarryx_u32(&x1092, &x1093, x1091, ((x993 + (x891 + (x857 + x793))) + (x959 + x895)), x1058); fiat_np521_mulx_u32(&x1094, &x1095, x1060, UINT32_C(0x79a995c7)); fiat_np521_mulx_u32(&x1096, &x1097, x1094, UINT16_C(0x1ff)); fiat_np521_mulx_u32(&x1098, &x1099, x1094, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x1100, &x1101, x1094, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x1102, &x1103, x1094, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x1104, &x1105, x1094, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x1106, &x1107, x1094, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x1108, &x1109, x1094, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x1110, &x1111, x1094, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x1112, &x1113, x1094, UINT32_C(0xfffffffa)); fiat_np521_mulx_u32(&x1114, &x1115, x1094, UINT32_C(0x51868783)); fiat_np521_mulx_u32(&x1116, &x1117, x1094, UINT32_C(0xbf2f966b)); fiat_np521_mulx_u32(&x1118, &x1119, x1094, UINT32_C(0x7fcc0148)); fiat_np521_mulx_u32(&x1120, &x1121, x1094, UINT32_C(0xf709a5d0)); fiat_np521_mulx_u32(&x1122, &x1123, x1094, UINT32_C(0x3bb5c9b8)); fiat_np521_mulx_u32(&x1124, &x1125, x1094, UINT32_C(0x899c47ae)); fiat_np521_mulx_u32(&x1126, &x1127, x1094, UINT32_C(0xbb6fb71e)); fiat_np521_mulx_u32(&x1128, &x1129, x1094, UINT32_C(0x91386409)); fiat_np521_addcarryx_u32(&x1130, &x1131, 0x0, x1129, x1126); fiat_np521_addcarryx_u32(&x1132, &x1133, x1131, x1127, x1124); fiat_np521_addcarryx_u32(&x1134, &x1135, x1133, x1125, x1122); fiat_np521_addcarryx_u32(&x1136, &x1137, x1135, x1123, x1120); fiat_np521_addcarryx_u32(&x1138, &x1139, x1137, x1121, x1118); fiat_np521_addcarryx_u32(&x1140, &x1141, x1139, x1119, x1116); fiat_np521_addcarryx_u32(&x1142, &x1143, x1141, x1117, x1114); fiat_np521_addcarryx_u32(&x1144, &x1145, x1143, x1115, x1112); fiat_np521_addcarryx_u32(&x1146, &x1147, x1145, x1113, x1110); fiat_np521_addcarryx_u32(&x1148, &x1149, x1147, x1111, x1108); fiat_np521_addcarryx_u32(&x1150, &x1151, x1149, x1109, x1106); fiat_np521_addcarryx_u32(&x1152, &x1153, x1151, x1107, x1104); fiat_np521_addcarryx_u32(&x1154, &x1155, x1153, x1105, x1102); fiat_np521_addcarryx_u32(&x1156, &x1157, x1155, x1103, x1100); fiat_np521_addcarryx_u32(&x1158, &x1159, x1157, x1101, x1098); fiat_np521_addcarryx_u32(&x1160, &x1161, x1159, x1099, x1096); fiat_np521_addcarryx_u32(&x1162, &x1163, 0x0, x1060, x1128); fiat_np521_addcarryx_u32(&x1164, &x1165, x1163, x1062, x1130); fiat_np521_addcarryx_u32(&x1166, &x1167, x1165, x1064, x1132); fiat_np521_addcarryx_u32(&x1168, &x1169, x1167, x1066, x1134); fiat_np521_addcarryx_u32(&x1170, &x1171, x1169, x1068, x1136); fiat_np521_addcarryx_u32(&x1172, &x1173, x1171, x1070, x1138); fiat_np521_addcarryx_u32(&x1174, &x1175, x1173, x1072, x1140); fiat_np521_addcarryx_u32(&x1176, &x1177, x1175, x1074, x1142); fiat_np521_addcarryx_u32(&x1178, &x1179, x1177, x1076, x1144); fiat_np521_addcarryx_u32(&x1180, &x1181, x1179, x1078, x1146); fiat_np521_addcarryx_u32(&x1182, &x1183, x1181, x1080, x1148); fiat_np521_addcarryx_u32(&x1184, &x1185, x1183, x1082, x1150); fiat_np521_addcarryx_u32(&x1186, &x1187, x1185, x1084, x1152); fiat_np521_addcarryx_u32(&x1188, &x1189, x1187, x1086, x1154); fiat_np521_addcarryx_u32(&x1190, &x1191, x1189, x1088, x1156); fiat_np521_addcarryx_u32(&x1192, &x1193, x1191, x1090, x1158); fiat_np521_addcarryx_u32(&x1194, &x1195, x1193, x1092, x1160); fiat_np521_mulx_u32(&x1196, &x1197, x6, UINT16_C(0x19a)); fiat_np521_mulx_u32(&x1198, &x1199, x6, UINT32_C(0x5b5a3afe)); fiat_np521_mulx_u32(&x1200, &x1201, x6, UINT32_C(0x8c44383d)); fiat_np521_mulx_u32(&x1202, &x1203, x6, UINT32_C(0x2d8e03d1)); fiat_np521_mulx_u32(&x1204, &x1205, x6, UINT32_C(0x492d0d45)); fiat_np521_mulx_u32(&x1206, &x1207, x6, UINT32_C(0x5bcc6d61)); fiat_np521_mulx_u32(&x1208, &x1209, x6, UINT32_C(0xa8e567bc)); fiat_np521_mulx_u32(&x1210, &x1211, x6, UINT32_C(0xcff3d142)); fiat_np521_mulx_u32(&x1212, &x1213, x6, UINT32_C(0xb7756e3a)); fiat_np521_mulx_u32(&x1214, &x1215, x6, UINT32_C(0x4fb35b72)); fiat_np521_mulx_u32(&x1216, &x1217, x6, UINT32_C(0xd3402705)); fiat_np521_mulx_u32(&x1218, &x1219, x6, UINT32_C(0x5d4dd6d3)); fiat_np521_mulx_u32(&x1220, &x1221, x6, UINT32_C(0x791d9dc)); fiat_np521_mulx_u32(&x1222, &x1223, x6, UINT32_C(0x18354a56)); fiat_np521_mulx_u32(&x1224, &x1225, x6, UINT32_C(0x4374a642)); fiat_np521_mulx_u32(&x1226, &x1227, x6, UINT32_C(0x1163115a)); fiat_np521_mulx_u32(&x1228, &x1229, x6, UINT32_C(0x61c64ca7)); fiat_np521_addcarryx_u32(&x1230, &x1231, 0x0, x1229, x1226); fiat_np521_addcarryx_u32(&x1232, &x1233, x1231, x1227, x1224); fiat_np521_addcarryx_u32(&x1234, &x1235, x1233, x1225, x1222); fiat_np521_addcarryx_u32(&x1236, &x1237, x1235, x1223, x1220); fiat_np521_addcarryx_u32(&x1238, &x1239, x1237, x1221, x1218); fiat_np521_addcarryx_u32(&x1240, &x1241, x1239, x1219, x1216); fiat_np521_addcarryx_u32(&x1242, &x1243, x1241, x1217, x1214); fiat_np521_addcarryx_u32(&x1244, &x1245, x1243, x1215, x1212); fiat_np521_addcarryx_u32(&x1246, &x1247, x1245, x1213, x1210); fiat_np521_addcarryx_u32(&x1248, &x1249, x1247, x1211, x1208); fiat_np521_addcarryx_u32(&x1250, &x1251, x1249, x1209, x1206); fiat_np521_addcarryx_u32(&x1252, &x1253, x1251, x1207, x1204); fiat_np521_addcarryx_u32(&x1254, &x1255, x1253, x1205, x1202); fiat_np521_addcarryx_u32(&x1256, &x1257, x1255, x1203, x1200); fiat_np521_addcarryx_u32(&x1258, &x1259, x1257, x1201, x1198); fiat_np521_addcarryx_u32(&x1260, &x1261, x1259, x1199, x1196); fiat_np521_addcarryx_u32(&x1262, &x1263, 0x0, x1164, x1228); fiat_np521_addcarryx_u32(&x1264, &x1265, x1263, x1166, x1230); fiat_np521_addcarryx_u32(&x1266, &x1267, x1265, x1168, x1232); fiat_np521_addcarryx_u32(&x1268, &x1269, x1267, x1170, x1234); fiat_np521_addcarryx_u32(&x1270, &x1271, x1269, x1172, x1236); fiat_np521_addcarryx_u32(&x1272, &x1273, x1271, x1174, x1238); fiat_np521_addcarryx_u32(&x1274, &x1275, x1273, x1176, x1240); fiat_np521_addcarryx_u32(&x1276, &x1277, x1275, x1178, x1242); fiat_np521_addcarryx_u32(&x1278, &x1279, x1277, x1180, x1244); fiat_np521_addcarryx_u32(&x1280, &x1281, x1279, x1182, x1246); fiat_np521_addcarryx_u32(&x1282, &x1283, x1281, x1184, x1248); fiat_np521_addcarryx_u32(&x1284, &x1285, x1283, x1186, x1250); fiat_np521_addcarryx_u32(&x1286, &x1287, x1285, x1188, x1252); fiat_np521_addcarryx_u32(&x1288, &x1289, x1287, x1190, x1254); fiat_np521_addcarryx_u32(&x1290, &x1291, x1289, x1192, x1256); fiat_np521_addcarryx_u32(&x1292, &x1293, x1291, x1194, x1258); fiat_np521_addcarryx_u32(&x1294, &x1295, x1293, ((x1195 + (x1093 + (x1059 + x995))) + (x1161 + x1097)), x1260); fiat_np521_mulx_u32(&x1296, &x1297, x1262, UINT32_C(0x79a995c7)); fiat_np521_mulx_u32(&x1298, &x1299, x1296, UINT16_C(0x1ff)); fiat_np521_mulx_u32(&x1300, &x1301, x1296, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x1302, &x1303, x1296, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x1304, &x1305, x1296, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x1306, &x1307, x1296, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x1308, &x1309, x1296, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x1310, &x1311, x1296, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x1312, &x1313, x1296, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x1314, &x1315, x1296, UINT32_C(0xfffffffa)); fiat_np521_mulx_u32(&x1316, &x1317, x1296, UINT32_C(0x51868783)); fiat_np521_mulx_u32(&x1318, &x1319, x1296, UINT32_C(0xbf2f966b)); fiat_np521_mulx_u32(&x1320, &x1321, x1296, UINT32_C(0x7fcc0148)); fiat_np521_mulx_u32(&x1322, &x1323, x1296, UINT32_C(0xf709a5d0)); fiat_np521_mulx_u32(&x1324, &x1325, x1296, UINT32_C(0x3bb5c9b8)); fiat_np521_mulx_u32(&x1326, &x1327, x1296, UINT32_C(0x899c47ae)); fiat_np521_mulx_u32(&x1328, &x1329, x1296, UINT32_C(0xbb6fb71e)); fiat_np521_mulx_u32(&x1330, &x1331, x1296, UINT32_C(0x91386409)); fiat_np521_addcarryx_u32(&x1332, &x1333, 0x0, x1331, x1328); fiat_np521_addcarryx_u32(&x1334, &x1335, x1333, x1329, x1326); fiat_np521_addcarryx_u32(&x1336, &x1337, x1335, x1327, x1324); fiat_np521_addcarryx_u32(&x1338, &x1339, x1337, x1325, x1322); fiat_np521_addcarryx_u32(&x1340, &x1341, x1339, x1323, x1320); fiat_np521_addcarryx_u32(&x1342, &x1343, x1341, x1321, x1318); fiat_np521_addcarryx_u32(&x1344, &x1345, x1343, x1319, x1316); fiat_np521_addcarryx_u32(&x1346, &x1347, x1345, x1317, x1314); fiat_np521_addcarryx_u32(&x1348, &x1349, x1347, x1315, x1312); fiat_np521_addcarryx_u32(&x1350, &x1351, x1349, x1313, x1310); fiat_np521_addcarryx_u32(&x1352, &x1353, x1351, x1311, x1308); fiat_np521_addcarryx_u32(&x1354, &x1355, x1353, x1309, x1306); fiat_np521_addcarryx_u32(&x1356, &x1357, x1355, x1307, x1304); fiat_np521_addcarryx_u32(&x1358, &x1359, x1357, x1305, x1302); fiat_np521_addcarryx_u32(&x1360, &x1361, x1359, x1303, x1300); fiat_np521_addcarryx_u32(&x1362, &x1363, x1361, x1301, x1298); fiat_np521_addcarryx_u32(&x1364, &x1365, 0x0, x1262, x1330); fiat_np521_addcarryx_u32(&x1366, &x1367, x1365, x1264, x1332); fiat_np521_addcarryx_u32(&x1368, &x1369, x1367, x1266, x1334); fiat_np521_addcarryx_u32(&x1370, &x1371, x1369, x1268, x1336); fiat_np521_addcarryx_u32(&x1372, &x1373, x1371, x1270, x1338); fiat_np521_addcarryx_u32(&x1374, &x1375, x1373, x1272, x1340); fiat_np521_addcarryx_u32(&x1376, &x1377, x1375, x1274, x1342); fiat_np521_addcarryx_u32(&x1378, &x1379, x1377, x1276, x1344); fiat_np521_addcarryx_u32(&x1380, &x1381, x1379, x1278, x1346); fiat_np521_addcarryx_u32(&x1382, &x1383, x1381, x1280, x1348); fiat_np521_addcarryx_u32(&x1384, &x1385, x1383, x1282, x1350); fiat_np521_addcarryx_u32(&x1386, &x1387, x1385, x1284, x1352); fiat_np521_addcarryx_u32(&x1388, &x1389, x1387, x1286, x1354); fiat_np521_addcarryx_u32(&x1390, &x1391, x1389, x1288, x1356); fiat_np521_addcarryx_u32(&x1392, &x1393, x1391, x1290, x1358); fiat_np521_addcarryx_u32(&x1394, &x1395, x1393, x1292, x1360); fiat_np521_addcarryx_u32(&x1396, &x1397, x1395, x1294, x1362); fiat_np521_mulx_u32(&x1398, &x1399, x7, UINT16_C(0x19a)); fiat_np521_mulx_u32(&x1400, &x1401, x7, UINT32_C(0x5b5a3afe)); fiat_np521_mulx_u32(&x1402, &x1403, x7, UINT32_C(0x8c44383d)); fiat_np521_mulx_u32(&x1404, &x1405, x7, UINT32_C(0x2d8e03d1)); fiat_np521_mulx_u32(&x1406, &x1407, x7, UINT32_C(0x492d0d45)); fiat_np521_mulx_u32(&x1408, &x1409, x7, UINT32_C(0x5bcc6d61)); fiat_np521_mulx_u32(&x1410, &x1411, x7, UINT32_C(0xa8e567bc)); fiat_np521_mulx_u32(&x1412, &x1413, x7, UINT32_C(0xcff3d142)); fiat_np521_mulx_u32(&x1414, &x1415, x7, UINT32_C(0xb7756e3a)); fiat_np521_mulx_u32(&x1416, &x1417, x7, UINT32_C(0x4fb35b72)); fiat_np521_mulx_u32(&x1418, &x1419, x7, UINT32_C(0xd3402705)); fiat_np521_mulx_u32(&x1420, &x1421, x7, UINT32_C(0x5d4dd6d3)); fiat_np521_mulx_u32(&x1422, &x1423, x7, UINT32_C(0x791d9dc)); fiat_np521_mulx_u32(&x1424, &x1425, x7, UINT32_C(0x18354a56)); fiat_np521_mulx_u32(&x1426, &x1427, x7, UINT32_C(0x4374a642)); fiat_np521_mulx_u32(&x1428, &x1429, x7, UINT32_C(0x1163115a)); fiat_np521_mulx_u32(&x1430, &x1431, x7, UINT32_C(0x61c64ca7)); fiat_np521_addcarryx_u32(&x1432, &x1433, 0x0, x1431, x1428); fiat_np521_addcarryx_u32(&x1434, &x1435, x1433, x1429, x1426); fiat_np521_addcarryx_u32(&x1436, &x1437, x1435, x1427, x1424); fiat_np521_addcarryx_u32(&x1438, &x1439, x1437, x1425, x1422); fiat_np521_addcarryx_u32(&x1440, &x1441, x1439, x1423, x1420); fiat_np521_addcarryx_u32(&x1442, &x1443, x1441, x1421, x1418); fiat_np521_addcarryx_u32(&x1444, &x1445, x1443, x1419, x1416); fiat_np521_addcarryx_u32(&x1446, &x1447, x1445, x1417, x1414); fiat_np521_addcarryx_u32(&x1448, &x1449, x1447, x1415, x1412); fiat_np521_addcarryx_u32(&x1450, &x1451, x1449, x1413, x1410); fiat_np521_addcarryx_u32(&x1452, &x1453, x1451, x1411, x1408); fiat_np521_addcarryx_u32(&x1454, &x1455, x1453, x1409, x1406); fiat_np521_addcarryx_u32(&x1456, &x1457, x1455, x1407, x1404); fiat_np521_addcarryx_u32(&x1458, &x1459, x1457, x1405, x1402); fiat_np521_addcarryx_u32(&x1460, &x1461, x1459, x1403, x1400); fiat_np521_addcarryx_u32(&x1462, &x1463, x1461, x1401, x1398); fiat_np521_addcarryx_u32(&x1464, &x1465, 0x0, x1366, x1430); fiat_np521_addcarryx_u32(&x1466, &x1467, x1465, x1368, x1432); fiat_np521_addcarryx_u32(&x1468, &x1469, x1467, x1370, x1434); fiat_np521_addcarryx_u32(&x1470, &x1471, x1469, x1372, x1436); fiat_np521_addcarryx_u32(&x1472, &x1473, x1471, x1374, x1438); fiat_np521_addcarryx_u32(&x1474, &x1475, x1473, x1376, x1440); fiat_np521_addcarryx_u32(&x1476, &x1477, x1475, x1378, x1442); fiat_np521_addcarryx_u32(&x1478, &x1479, x1477, x1380, x1444); fiat_np521_addcarryx_u32(&x1480, &x1481, x1479, x1382, x1446); fiat_np521_addcarryx_u32(&x1482, &x1483, x1481, x1384, x1448); fiat_np521_addcarryx_u32(&x1484, &x1485, x1483, x1386, x1450); fiat_np521_addcarryx_u32(&x1486, &x1487, x1485, x1388, x1452); fiat_np521_addcarryx_u32(&x1488, &x1489, x1487, x1390, x1454); fiat_np521_addcarryx_u32(&x1490, &x1491, x1489, x1392, x1456); fiat_np521_addcarryx_u32(&x1492, &x1493, x1491, x1394, x1458); fiat_np521_addcarryx_u32(&x1494, &x1495, x1493, x1396, x1460); fiat_np521_addcarryx_u32(&x1496, &x1497, x1495, ((x1397 + (x1295 + (x1261 + x1197))) + (x1363 + x1299)), x1462); fiat_np521_mulx_u32(&x1498, &x1499, x1464, UINT32_C(0x79a995c7)); fiat_np521_mulx_u32(&x1500, &x1501, x1498, UINT16_C(0x1ff)); fiat_np521_mulx_u32(&x1502, &x1503, x1498, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x1504, &x1505, x1498, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x1506, &x1507, x1498, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x1508, &x1509, x1498, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x1510, &x1511, x1498, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x1512, &x1513, x1498, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x1514, &x1515, x1498, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x1516, &x1517, x1498, UINT32_C(0xfffffffa)); fiat_np521_mulx_u32(&x1518, &x1519, x1498, UINT32_C(0x51868783)); fiat_np521_mulx_u32(&x1520, &x1521, x1498, UINT32_C(0xbf2f966b)); fiat_np521_mulx_u32(&x1522, &x1523, x1498, UINT32_C(0x7fcc0148)); fiat_np521_mulx_u32(&x1524, &x1525, x1498, UINT32_C(0xf709a5d0)); fiat_np521_mulx_u32(&x1526, &x1527, x1498, UINT32_C(0x3bb5c9b8)); fiat_np521_mulx_u32(&x1528, &x1529, x1498, UINT32_C(0x899c47ae)); fiat_np521_mulx_u32(&x1530, &x1531, x1498, UINT32_C(0xbb6fb71e)); fiat_np521_mulx_u32(&x1532, &x1533, x1498, UINT32_C(0x91386409)); fiat_np521_addcarryx_u32(&x1534, &x1535, 0x0, x1533, x1530); fiat_np521_addcarryx_u32(&x1536, &x1537, x1535, x1531, x1528); fiat_np521_addcarryx_u32(&x1538, &x1539, x1537, x1529, x1526); fiat_np521_addcarryx_u32(&x1540, &x1541, x1539, x1527, x1524); fiat_np521_addcarryx_u32(&x1542, &x1543, x1541, x1525, x1522); fiat_np521_addcarryx_u32(&x1544, &x1545, x1543, x1523, x1520); fiat_np521_addcarryx_u32(&x1546, &x1547, x1545, x1521, x1518); fiat_np521_addcarryx_u32(&x1548, &x1549, x1547, x1519, x1516); fiat_np521_addcarryx_u32(&x1550, &x1551, x1549, x1517, x1514); fiat_np521_addcarryx_u32(&x1552, &x1553, x1551, x1515, x1512); fiat_np521_addcarryx_u32(&x1554, &x1555, x1553, x1513, x1510); fiat_np521_addcarryx_u32(&x1556, &x1557, x1555, x1511, x1508); fiat_np521_addcarryx_u32(&x1558, &x1559, x1557, x1509, x1506); fiat_np521_addcarryx_u32(&x1560, &x1561, x1559, x1507, x1504); fiat_np521_addcarryx_u32(&x1562, &x1563, x1561, x1505, x1502); fiat_np521_addcarryx_u32(&x1564, &x1565, x1563, x1503, x1500); fiat_np521_addcarryx_u32(&x1566, &x1567, 0x0, x1464, x1532); fiat_np521_addcarryx_u32(&x1568, &x1569, x1567, x1466, x1534); fiat_np521_addcarryx_u32(&x1570, &x1571, x1569, x1468, x1536); fiat_np521_addcarryx_u32(&x1572, &x1573, x1571, x1470, x1538); fiat_np521_addcarryx_u32(&x1574, &x1575, x1573, x1472, x1540); fiat_np521_addcarryx_u32(&x1576, &x1577, x1575, x1474, x1542); fiat_np521_addcarryx_u32(&x1578, &x1579, x1577, x1476, x1544); fiat_np521_addcarryx_u32(&x1580, &x1581, x1579, x1478, x1546); fiat_np521_addcarryx_u32(&x1582, &x1583, x1581, x1480, x1548); fiat_np521_addcarryx_u32(&x1584, &x1585, x1583, x1482, x1550); fiat_np521_addcarryx_u32(&x1586, &x1587, x1585, x1484, x1552); fiat_np521_addcarryx_u32(&x1588, &x1589, x1587, x1486, x1554); fiat_np521_addcarryx_u32(&x1590, &x1591, x1589, x1488, x1556); fiat_np521_addcarryx_u32(&x1592, &x1593, x1591, x1490, x1558); fiat_np521_addcarryx_u32(&x1594, &x1595, x1593, x1492, x1560); fiat_np521_addcarryx_u32(&x1596, &x1597, x1595, x1494, x1562); fiat_np521_addcarryx_u32(&x1598, &x1599, x1597, x1496, x1564); fiat_np521_mulx_u32(&x1600, &x1601, x8, UINT16_C(0x19a)); fiat_np521_mulx_u32(&x1602, &x1603, x8, UINT32_C(0x5b5a3afe)); fiat_np521_mulx_u32(&x1604, &x1605, x8, UINT32_C(0x8c44383d)); fiat_np521_mulx_u32(&x1606, &x1607, x8, UINT32_C(0x2d8e03d1)); fiat_np521_mulx_u32(&x1608, &x1609, x8, UINT32_C(0x492d0d45)); fiat_np521_mulx_u32(&x1610, &x1611, x8, UINT32_C(0x5bcc6d61)); fiat_np521_mulx_u32(&x1612, &x1613, x8, UINT32_C(0xa8e567bc)); fiat_np521_mulx_u32(&x1614, &x1615, x8, UINT32_C(0xcff3d142)); fiat_np521_mulx_u32(&x1616, &x1617, x8, UINT32_C(0xb7756e3a)); fiat_np521_mulx_u32(&x1618, &x1619, x8, UINT32_C(0x4fb35b72)); fiat_np521_mulx_u32(&x1620, &x1621, x8, UINT32_C(0xd3402705)); fiat_np521_mulx_u32(&x1622, &x1623, x8, UINT32_C(0x5d4dd6d3)); fiat_np521_mulx_u32(&x1624, &x1625, x8, UINT32_C(0x791d9dc)); fiat_np521_mulx_u32(&x1626, &x1627, x8, UINT32_C(0x18354a56)); fiat_np521_mulx_u32(&x1628, &x1629, x8, UINT32_C(0x4374a642)); fiat_np521_mulx_u32(&x1630, &x1631, x8, UINT32_C(0x1163115a)); fiat_np521_mulx_u32(&x1632, &x1633, x8, UINT32_C(0x61c64ca7)); fiat_np521_addcarryx_u32(&x1634, &x1635, 0x0, x1633, x1630); fiat_np521_addcarryx_u32(&x1636, &x1637, x1635, x1631, x1628); fiat_np521_addcarryx_u32(&x1638, &x1639, x1637, x1629, x1626); fiat_np521_addcarryx_u32(&x1640, &x1641, x1639, x1627, x1624); fiat_np521_addcarryx_u32(&x1642, &x1643, x1641, x1625, x1622); fiat_np521_addcarryx_u32(&x1644, &x1645, x1643, x1623, x1620); fiat_np521_addcarryx_u32(&x1646, &x1647, x1645, x1621, x1618); fiat_np521_addcarryx_u32(&x1648, &x1649, x1647, x1619, x1616); fiat_np521_addcarryx_u32(&x1650, &x1651, x1649, x1617, x1614); fiat_np521_addcarryx_u32(&x1652, &x1653, x1651, x1615, x1612); fiat_np521_addcarryx_u32(&x1654, &x1655, x1653, x1613, x1610); fiat_np521_addcarryx_u32(&x1656, &x1657, x1655, x1611, x1608); fiat_np521_addcarryx_u32(&x1658, &x1659, x1657, x1609, x1606); fiat_np521_addcarryx_u32(&x1660, &x1661, x1659, x1607, x1604); fiat_np521_addcarryx_u32(&x1662, &x1663, x1661, x1605, x1602); fiat_np521_addcarryx_u32(&x1664, &x1665, x1663, x1603, x1600); fiat_np521_addcarryx_u32(&x1666, &x1667, 0x0, x1568, x1632); fiat_np521_addcarryx_u32(&x1668, &x1669, x1667, x1570, x1634); fiat_np521_addcarryx_u32(&x1670, &x1671, x1669, x1572, x1636); fiat_np521_addcarryx_u32(&x1672, &x1673, x1671, x1574, x1638); fiat_np521_addcarryx_u32(&x1674, &x1675, x1673, x1576, x1640); fiat_np521_addcarryx_u32(&x1676, &x1677, x1675, x1578, x1642); fiat_np521_addcarryx_u32(&x1678, &x1679, x1677, x1580, x1644); fiat_np521_addcarryx_u32(&x1680, &x1681, x1679, x1582, x1646); fiat_np521_addcarryx_u32(&x1682, &x1683, x1681, x1584, x1648); fiat_np521_addcarryx_u32(&x1684, &x1685, x1683, x1586, x1650); fiat_np521_addcarryx_u32(&x1686, &x1687, x1685, x1588, x1652); fiat_np521_addcarryx_u32(&x1688, &x1689, x1687, x1590, x1654); fiat_np521_addcarryx_u32(&x1690, &x1691, x1689, x1592, x1656); fiat_np521_addcarryx_u32(&x1692, &x1693, x1691, x1594, x1658); fiat_np521_addcarryx_u32(&x1694, &x1695, x1693, x1596, x1660); fiat_np521_addcarryx_u32(&x1696, &x1697, x1695, x1598, x1662); fiat_np521_addcarryx_u32(&x1698, &x1699, x1697, ((x1599 + (x1497 + (x1463 + x1399))) + (x1565 + x1501)), x1664); fiat_np521_mulx_u32(&x1700, &x1701, x1666, UINT32_C(0x79a995c7)); fiat_np521_mulx_u32(&x1702, &x1703, x1700, UINT16_C(0x1ff)); fiat_np521_mulx_u32(&x1704, &x1705, x1700, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x1706, &x1707, x1700, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x1708, &x1709, x1700, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x1710, &x1711, x1700, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x1712, &x1713, x1700, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x1714, &x1715, x1700, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x1716, &x1717, x1700, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x1718, &x1719, x1700, UINT32_C(0xfffffffa)); fiat_np521_mulx_u32(&x1720, &x1721, x1700, UINT32_C(0x51868783)); fiat_np521_mulx_u32(&x1722, &x1723, x1700, UINT32_C(0xbf2f966b)); fiat_np521_mulx_u32(&x1724, &x1725, x1700, UINT32_C(0x7fcc0148)); fiat_np521_mulx_u32(&x1726, &x1727, x1700, UINT32_C(0xf709a5d0)); fiat_np521_mulx_u32(&x1728, &x1729, x1700, UINT32_C(0x3bb5c9b8)); fiat_np521_mulx_u32(&x1730, &x1731, x1700, UINT32_C(0x899c47ae)); fiat_np521_mulx_u32(&x1732, &x1733, x1700, UINT32_C(0xbb6fb71e)); fiat_np521_mulx_u32(&x1734, &x1735, x1700, UINT32_C(0x91386409)); fiat_np521_addcarryx_u32(&x1736, &x1737, 0x0, x1735, x1732); fiat_np521_addcarryx_u32(&x1738, &x1739, x1737, x1733, x1730); fiat_np521_addcarryx_u32(&x1740, &x1741, x1739, x1731, x1728); fiat_np521_addcarryx_u32(&x1742, &x1743, x1741, x1729, x1726); fiat_np521_addcarryx_u32(&x1744, &x1745, x1743, x1727, x1724); fiat_np521_addcarryx_u32(&x1746, &x1747, x1745, x1725, x1722); fiat_np521_addcarryx_u32(&x1748, &x1749, x1747, x1723, x1720); fiat_np521_addcarryx_u32(&x1750, &x1751, x1749, x1721, x1718); fiat_np521_addcarryx_u32(&x1752, &x1753, x1751, x1719, x1716); fiat_np521_addcarryx_u32(&x1754, &x1755, x1753, x1717, x1714); fiat_np521_addcarryx_u32(&x1756, &x1757, x1755, x1715, x1712); fiat_np521_addcarryx_u32(&x1758, &x1759, x1757, x1713, x1710); fiat_np521_addcarryx_u32(&x1760, &x1761, x1759, x1711, x1708); fiat_np521_addcarryx_u32(&x1762, &x1763, x1761, x1709, x1706); fiat_np521_addcarryx_u32(&x1764, &x1765, x1763, x1707, x1704); fiat_np521_addcarryx_u32(&x1766, &x1767, x1765, x1705, x1702); fiat_np521_addcarryx_u32(&x1768, &x1769, 0x0, x1666, x1734); fiat_np521_addcarryx_u32(&x1770, &x1771, x1769, x1668, x1736); fiat_np521_addcarryx_u32(&x1772, &x1773, x1771, x1670, x1738); fiat_np521_addcarryx_u32(&x1774, &x1775, x1773, x1672, x1740); fiat_np521_addcarryx_u32(&x1776, &x1777, x1775, x1674, x1742); fiat_np521_addcarryx_u32(&x1778, &x1779, x1777, x1676, x1744); fiat_np521_addcarryx_u32(&x1780, &x1781, x1779, x1678, x1746); fiat_np521_addcarryx_u32(&x1782, &x1783, x1781, x1680, x1748); fiat_np521_addcarryx_u32(&x1784, &x1785, x1783, x1682, x1750); fiat_np521_addcarryx_u32(&x1786, &x1787, x1785, x1684, x1752); fiat_np521_addcarryx_u32(&x1788, &x1789, x1787, x1686, x1754); fiat_np521_addcarryx_u32(&x1790, &x1791, x1789, x1688, x1756); fiat_np521_addcarryx_u32(&x1792, &x1793, x1791, x1690, x1758); fiat_np521_addcarryx_u32(&x1794, &x1795, x1793, x1692, x1760); fiat_np521_addcarryx_u32(&x1796, &x1797, x1795, x1694, x1762); fiat_np521_addcarryx_u32(&x1798, &x1799, x1797, x1696, x1764); fiat_np521_addcarryx_u32(&x1800, &x1801, x1799, x1698, x1766); fiat_np521_mulx_u32(&x1802, &x1803, x9, UINT16_C(0x19a)); fiat_np521_mulx_u32(&x1804, &x1805, x9, UINT32_C(0x5b5a3afe)); fiat_np521_mulx_u32(&x1806, &x1807, x9, UINT32_C(0x8c44383d)); fiat_np521_mulx_u32(&x1808, &x1809, x9, UINT32_C(0x2d8e03d1)); fiat_np521_mulx_u32(&x1810, &x1811, x9, UINT32_C(0x492d0d45)); fiat_np521_mulx_u32(&x1812, &x1813, x9, UINT32_C(0x5bcc6d61)); fiat_np521_mulx_u32(&x1814, &x1815, x9, UINT32_C(0xa8e567bc)); fiat_np521_mulx_u32(&x1816, &x1817, x9, UINT32_C(0xcff3d142)); fiat_np521_mulx_u32(&x1818, &x1819, x9, UINT32_C(0xb7756e3a)); fiat_np521_mulx_u32(&x1820, &x1821, x9, UINT32_C(0x4fb35b72)); fiat_np521_mulx_u32(&x1822, &x1823, x9, UINT32_C(0xd3402705)); fiat_np521_mulx_u32(&x1824, &x1825, x9, UINT32_C(0x5d4dd6d3)); fiat_np521_mulx_u32(&x1826, &x1827, x9, UINT32_C(0x791d9dc)); fiat_np521_mulx_u32(&x1828, &x1829, x9, UINT32_C(0x18354a56)); fiat_np521_mulx_u32(&x1830, &x1831, x9, UINT32_C(0x4374a642)); fiat_np521_mulx_u32(&x1832, &x1833, x9, UINT32_C(0x1163115a)); fiat_np521_mulx_u32(&x1834, &x1835, x9, UINT32_C(0x61c64ca7)); fiat_np521_addcarryx_u32(&x1836, &x1837, 0x0, x1835, x1832); fiat_np521_addcarryx_u32(&x1838, &x1839, x1837, x1833, x1830); fiat_np521_addcarryx_u32(&x1840, &x1841, x1839, x1831, x1828); fiat_np521_addcarryx_u32(&x1842, &x1843, x1841, x1829, x1826); fiat_np521_addcarryx_u32(&x1844, &x1845, x1843, x1827, x1824); fiat_np521_addcarryx_u32(&x1846, &x1847, x1845, x1825, x1822); fiat_np521_addcarryx_u32(&x1848, &x1849, x1847, x1823, x1820); fiat_np521_addcarryx_u32(&x1850, &x1851, x1849, x1821, x1818); fiat_np521_addcarryx_u32(&x1852, &x1853, x1851, x1819, x1816); fiat_np521_addcarryx_u32(&x1854, &x1855, x1853, x1817, x1814); fiat_np521_addcarryx_u32(&x1856, &x1857, x1855, x1815, x1812); fiat_np521_addcarryx_u32(&x1858, &x1859, x1857, x1813, x1810); fiat_np521_addcarryx_u32(&x1860, &x1861, x1859, x1811, x1808); fiat_np521_addcarryx_u32(&x1862, &x1863, x1861, x1809, x1806); fiat_np521_addcarryx_u32(&x1864, &x1865, x1863, x1807, x1804); fiat_np521_addcarryx_u32(&x1866, &x1867, x1865, x1805, x1802); fiat_np521_addcarryx_u32(&x1868, &x1869, 0x0, x1770, x1834); fiat_np521_addcarryx_u32(&x1870, &x1871, x1869, x1772, x1836); fiat_np521_addcarryx_u32(&x1872, &x1873, x1871, x1774, x1838); fiat_np521_addcarryx_u32(&x1874, &x1875, x1873, x1776, x1840); fiat_np521_addcarryx_u32(&x1876, &x1877, x1875, x1778, x1842); fiat_np521_addcarryx_u32(&x1878, &x1879, x1877, x1780, x1844); fiat_np521_addcarryx_u32(&x1880, &x1881, x1879, x1782, x1846); fiat_np521_addcarryx_u32(&x1882, &x1883, x1881, x1784, x1848); fiat_np521_addcarryx_u32(&x1884, &x1885, x1883, x1786, x1850); fiat_np521_addcarryx_u32(&x1886, &x1887, x1885, x1788, x1852); fiat_np521_addcarryx_u32(&x1888, &x1889, x1887, x1790, x1854); fiat_np521_addcarryx_u32(&x1890, &x1891, x1889, x1792, x1856); fiat_np521_addcarryx_u32(&x1892, &x1893, x1891, x1794, x1858); fiat_np521_addcarryx_u32(&x1894, &x1895, x1893, x1796, x1860); fiat_np521_addcarryx_u32(&x1896, &x1897, x1895, x1798, x1862); fiat_np521_addcarryx_u32(&x1898, &x1899, x1897, x1800, x1864); fiat_np521_addcarryx_u32(&x1900, &x1901, x1899, ((x1801 + (x1699 + (x1665 + x1601))) + (x1767 + x1703)), x1866); fiat_np521_mulx_u32(&x1902, &x1903, x1868, UINT32_C(0x79a995c7)); fiat_np521_mulx_u32(&x1904, &x1905, x1902, UINT16_C(0x1ff)); fiat_np521_mulx_u32(&x1906, &x1907, x1902, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x1908, &x1909, x1902, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x1910, &x1911, x1902, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x1912, &x1913, x1902, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x1914, &x1915, x1902, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x1916, &x1917, x1902, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x1918, &x1919, x1902, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x1920, &x1921, x1902, UINT32_C(0xfffffffa)); fiat_np521_mulx_u32(&x1922, &x1923, x1902, UINT32_C(0x51868783)); fiat_np521_mulx_u32(&x1924, &x1925, x1902, UINT32_C(0xbf2f966b)); fiat_np521_mulx_u32(&x1926, &x1927, x1902, UINT32_C(0x7fcc0148)); fiat_np521_mulx_u32(&x1928, &x1929, x1902, UINT32_C(0xf709a5d0)); fiat_np521_mulx_u32(&x1930, &x1931, x1902, UINT32_C(0x3bb5c9b8)); fiat_np521_mulx_u32(&x1932, &x1933, x1902, UINT32_C(0x899c47ae)); fiat_np521_mulx_u32(&x1934, &x1935, x1902, UINT32_C(0xbb6fb71e)); fiat_np521_mulx_u32(&x1936, &x1937, x1902, UINT32_C(0x91386409)); fiat_np521_addcarryx_u32(&x1938, &x1939, 0x0, x1937, x1934); fiat_np521_addcarryx_u32(&x1940, &x1941, x1939, x1935, x1932); fiat_np521_addcarryx_u32(&x1942, &x1943, x1941, x1933, x1930); fiat_np521_addcarryx_u32(&x1944, &x1945, x1943, x1931, x1928); fiat_np521_addcarryx_u32(&x1946, &x1947, x1945, x1929, x1926); fiat_np521_addcarryx_u32(&x1948, &x1949, x1947, x1927, x1924); fiat_np521_addcarryx_u32(&x1950, &x1951, x1949, x1925, x1922); fiat_np521_addcarryx_u32(&x1952, &x1953, x1951, x1923, x1920); fiat_np521_addcarryx_u32(&x1954, &x1955, x1953, x1921, x1918); fiat_np521_addcarryx_u32(&x1956, &x1957, x1955, x1919, x1916); fiat_np521_addcarryx_u32(&x1958, &x1959, x1957, x1917, x1914); fiat_np521_addcarryx_u32(&x1960, &x1961, x1959, x1915, x1912); fiat_np521_addcarryx_u32(&x1962, &x1963, x1961, x1913, x1910); fiat_np521_addcarryx_u32(&x1964, &x1965, x1963, x1911, x1908); fiat_np521_addcarryx_u32(&x1966, &x1967, x1965, x1909, x1906); fiat_np521_addcarryx_u32(&x1968, &x1969, x1967, x1907, x1904); fiat_np521_addcarryx_u32(&x1970, &x1971, 0x0, x1868, x1936); fiat_np521_addcarryx_u32(&x1972, &x1973, x1971, x1870, x1938); fiat_np521_addcarryx_u32(&x1974, &x1975, x1973, x1872, x1940); fiat_np521_addcarryx_u32(&x1976, &x1977, x1975, x1874, x1942); fiat_np521_addcarryx_u32(&x1978, &x1979, x1977, x1876, x1944); fiat_np521_addcarryx_u32(&x1980, &x1981, x1979, x1878, x1946); fiat_np521_addcarryx_u32(&x1982, &x1983, x1981, x1880, x1948); fiat_np521_addcarryx_u32(&x1984, &x1985, x1983, x1882, x1950); fiat_np521_addcarryx_u32(&x1986, &x1987, x1985, x1884, x1952); fiat_np521_addcarryx_u32(&x1988, &x1989, x1987, x1886, x1954); fiat_np521_addcarryx_u32(&x1990, &x1991, x1989, x1888, x1956); fiat_np521_addcarryx_u32(&x1992, &x1993, x1991, x1890, x1958); fiat_np521_addcarryx_u32(&x1994, &x1995, x1993, x1892, x1960); fiat_np521_addcarryx_u32(&x1996, &x1997, x1995, x1894, x1962); fiat_np521_addcarryx_u32(&x1998, &x1999, x1997, x1896, x1964); fiat_np521_addcarryx_u32(&x2000, &x2001, x1999, x1898, x1966); fiat_np521_addcarryx_u32(&x2002, &x2003, x2001, x1900, x1968); fiat_np521_mulx_u32(&x2004, &x2005, x10, UINT16_C(0x19a)); fiat_np521_mulx_u32(&x2006, &x2007, x10, UINT32_C(0x5b5a3afe)); fiat_np521_mulx_u32(&x2008, &x2009, x10, UINT32_C(0x8c44383d)); fiat_np521_mulx_u32(&x2010, &x2011, x10, UINT32_C(0x2d8e03d1)); fiat_np521_mulx_u32(&x2012, &x2013, x10, UINT32_C(0x492d0d45)); fiat_np521_mulx_u32(&x2014, &x2015, x10, UINT32_C(0x5bcc6d61)); fiat_np521_mulx_u32(&x2016, &x2017, x10, UINT32_C(0xa8e567bc)); fiat_np521_mulx_u32(&x2018, &x2019, x10, UINT32_C(0xcff3d142)); fiat_np521_mulx_u32(&x2020, &x2021, x10, UINT32_C(0xb7756e3a)); fiat_np521_mulx_u32(&x2022, &x2023, x10, UINT32_C(0x4fb35b72)); fiat_np521_mulx_u32(&x2024, &x2025, x10, UINT32_C(0xd3402705)); fiat_np521_mulx_u32(&x2026, &x2027, x10, UINT32_C(0x5d4dd6d3)); fiat_np521_mulx_u32(&x2028, &x2029, x10, UINT32_C(0x791d9dc)); fiat_np521_mulx_u32(&x2030, &x2031, x10, UINT32_C(0x18354a56)); fiat_np521_mulx_u32(&x2032, &x2033, x10, UINT32_C(0x4374a642)); fiat_np521_mulx_u32(&x2034, &x2035, x10, UINT32_C(0x1163115a)); fiat_np521_mulx_u32(&x2036, &x2037, x10, UINT32_C(0x61c64ca7)); fiat_np521_addcarryx_u32(&x2038, &x2039, 0x0, x2037, x2034); fiat_np521_addcarryx_u32(&x2040, &x2041, x2039, x2035, x2032); fiat_np521_addcarryx_u32(&x2042, &x2043, x2041, x2033, x2030); fiat_np521_addcarryx_u32(&x2044, &x2045, x2043, x2031, x2028); fiat_np521_addcarryx_u32(&x2046, &x2047, x2045, x2029, x2026); fiat_np521_addcarryx_u32(&x2048, &x2049, x2047, x2027, x2024); fiat_np521_addcarryx_u32(&x2050, &x2051, x2049, x2025, x2022); fiat_np521_addcarryx_u32(&x2052, &x2053, x2051, x2023, x2020); fiat_np521_addcarryx_u32(&x2054, &x2055, x2053, x2021, x2018); fiat_np521_addcarryx_u32(&x2056, &x2057, x2055, x2019, x2016); fiat_np521_addcarryx_u32(&x2058, &x2059, x2057, x2017, x2014); fiat_np521_addcarryx_u32(&x2060, &x2061, x2059, x2015, x2012); fiat_np521_addcarryx_u32(&x2062, &x2063, x2061, x2013, x2010); fiat_np521_addcarryx_u32(&x2064, &x2065, x2063, x2011, x2008); fiat_np521_addcarryx_u32(&x2066, &x2067, x2065, x2009, x2006); fiat_np521_addcarryx_u32(&x2068, &x2069, x2067, x2007, x2004); fiat_np521_addcarryx_u32(&x2070, &x2071, 0x0, x1972, x2036); fiat_np521_addcarryx_u32(&x2072, &x2073, x2071, x1974, x2038); fiat_np521_addcarryx_u32(&x2074, &x2075, x2073, x1976, x2040); fiat_np521_addcarryx_u32(&x2076, &x2077, x2075, x1978, x2042); fiat_np521_addcarryx_u32(&x2078, &x2079, x2077, x1980, x2044); fiat_np521_addcarryx_u32(&x2080, &x2081, x2079, x1982, x2046); fiat_np521_addcarryx_u32(&x2082, &x2083, x2081, x1984, x2048); fiat_np521_addcarryx_u32(&x2084, &x2085, x2083, x1986, x2050); fiat_np521_addcarryx_u32(&x2086, &x2087, x2085, x1988, x2052); fiat_np521_addcarryx_u32(&x2088, &x2089, x2087, x1990, x2054); fiat_np521_addcarryx_u32(&x2090, &x2091, x2089, x1992, x2056); fiat_np521_addcarryx_u32(&x2092, &x2093, x2091, x1994, x2058); fiat_np521_addcarryx_u32(&x2094, &x2095, x2093, x1996, x2060); fiat_np521_addcarryx_u32(&x2096, &x2097, x2095, x1998, x2062); fiat_np521_addcarryx_u32(&x2098, &x2099, x2097, x2000, x2064); fiat_np521_addcarryx_u32(&x2100, &x2101, x2099, x2002, x2066); fiat_np521_addcarryx_u32(&x2102, &x2103, x2101, ((x2003 + (x1901 + (x1867 + x1803))) + (x1969 + x1905)), x2068); fiat_np521_mulx_u32(&x2104, &x2105, x2070, UINT32_C(0x79a995c7)); fiat_np521_mulx_u32(&x2106, &x2107, x2104, UINT16_C(0x1ff)); fiat_np521_mulx_u32(&x2108, &x2109, x2104, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x2110, &x2111, x2104, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x2112, &x2113, x2104, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x2114, &x2115, x2104, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x2116, &x2117, x2104, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x2118, &x2119, x2104, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x2120, &x2121, x2104, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x2122, &x2123, x2104, UINT32_C(0xfffffffa)); fiat_np521_mulx_u32(&x2124, &x2125, x2104, UINT32_C(0x51868783)); fiat_np521_mulx_u32(&x2126, &x2127, x2104, UINT32_C(0xbf2f966b)); fiat_np521_mulx_u32(&x2128, &x2129, x2104, UINT32_C(0x7fcc0148)); fiat_np521_mulx_u32(&x2130, &x2131, x2104, UINT32_C(0xf709a5d0)); fiat_np521_mulx_u32(&x2132, &x2133, x2104, UINT32_C(0x3bb5c9b8)); fiat_np521_mulx_u32(&x2134, &x2135, x2104, UINT32_C(0x899c47ae)); fiat_np521_mulx_u32(&x2136, &x2137, x2104, UINT32_C(0xbb6fb71e)); fiat_np521_mulx_u32(&x2138, &x2139, x2104, UINT32_C(0x91386409)); fiat_np521_addcarryx_u32(&x2140, &x2141, 0x0, x2139, x2136); fiat_np521_addcarryx_u32(&x2142, &x2143, x2141, x2137, x2134); fiat_np521_addcarryx_u32(&x2144, &x2145, x2143, x2135, x2132); fiat_np521_addcarryx_u32(&x2146, &x2147, x2145, x2133, x2130); fiat_np521_addcarryx_u32(&x2148, &x2149, x2147, x2131, x2128); fiat_np521_addcarryx_u32(&x2150, &x2151, x2149, x2129, x2126); fiat_np521_addcarryx_u32(&x2152, &x2153, x2151, x2127, x2124); fiat_np521_addcarryx_u32(&x2154, &x2155, x2153, x2125, x2122); fiat_np521_addcarryx_u32(&x2156, &x2157, x2155, x2123, x2120); fiat_np521_addcarryx_u32(&x2158, &x2159, x2157, x2121, x2118); fiat_np521_addcarryx_u32(&x2160, &x2161, x2159, x2119, x2116); fiat_np521_addcarryx_u32(&x2162, &x2163, x2161, x2117, x2114); fiat_np521_addcarryx_u32(&x2164, &x2165, x2163, x2115, x2112); fiat_np521_addcarryx_u32(&x2166, &x2167, x2165, x2113, x2110); fiat_np521_addcarryx_u32(&x2168, &x2169, x2167, x2111, x2108); fiat_np521_addcarryx_u32(&x2170, &x2171, x2169, x2109, x2106); fiat_np521_addcarryx_u32(&x2172, &x2173, 0x0, x2070, x2138); fiat_np521_addcarryx_u32(&x2174, &x2175, x2173, x2072, x2140); fiat_np521_addcarryx_u32(&x2176, &x2177, x2175, x2074, x2142); fiat_np521_addcarryx_u32(&x2178, &x2179, x2177, x2076, x2144); fiat_np521_addcarryx_u32(&x2180, &x2181, x2179, x2078, x2146); fiat_np521_addcarryx_u32(&x2182, &x2183, x2181, x2080, x2148); fiat_np521_addcarryx_u32(&x2184, &x2185, x2183, x2082, x2150); fiat_np521_addcarryx_u32(&x2186, &x2187, x2185, x2084, x2152); fiat_np521_addcarryx_u32(&x2188, &x2189, x2187, x2086, x2154); fiat_np521_addcarryx_u32(&x2190, &x2191, x2189, x2088, x2156); fiat_np521_addcarryx_u32(&x2192, &x2193, x2191, x2090, x2158); fiat_np521_addcarryx_u32(&x2194, &x2195, x2193, x2092, x2160); fiat_np521_addcarryx_u32(&x2196, &x2197, x2195, x2094, x2162); fiat_np521_addcarryx_u32(&x2198, &x2199, x2197, x2096, x2164); fiat_np521_addcarryx_u32(&x2200, &x2201, x2199, x2098, x2166); fiat_np521_addcarryx_u32(&x2202, &x2203, x2201, x2100, x2168); fiat_np521_addcarryx_u32(&x2204, &x2205, x2203, x2102, x2170); fiat_np521_mulx_u32(&x2206, &x2207, x11, UINT16_C(0x19a)); fiat_np521_mulx_u32(&x2208, &x2209, x11, UINT32_C(0x5b5a3afe)); fiat_np521_mulx_u32(&x2210, &x2211, x11, UINT32_C(0x8c44383d)); fiat_np521_mulx_u32(&x2212, &x2213, x11, UINT32_C(0x2d8e03d1)); fiat_np521_mulx_u32(&x2214, &x2215, x11, UINT32_C(0x492d0d45)); fiat_np521_mulx_u32(&x2216, &x2217, x11, UINT32_C(0x5bcc6d61)); fiat_np521_mulx_u32(&x2218, &x2219, x11, UINT32_C(0xa8e567bc)); fiat_np521_mulx_u32(&x2220, &x2221, x11, UINT32_C(0xcff3d142)); fiat_np521_mulx_u32(&x2222, &x2223, x11, UINT32_C(0xb7756e3a)); fiat_np521_mulx_u32(&x2224, &x2225, x11, UINT32_C(0x4fb35b72)); fiat_np521_mulx_u32(&x2226, &x2227, x11, UINT32_C(0xd3402705)); fiat_np521_mulx_u32(&x2228, &x2229, x11, UINT32_C(0x5d4dd6d3)); fiat_np521_mulx_u32(&x2230, &x2231, x11, UINT32_C(0x791d9dc)); fiat_np521_mulx_u32(&x2232, &x2233, x11, UINT32_C(0x18354a56)); fiat_np521_mulx_u32(&x2234, &x2235, x11, UINT32_C(0x4374a642)); fiat_np521_mulx_u32(&x2236, &x2237, x11, UINT32_C(0x1163115a)); fiat_np521_mulx_u32(&x2238, &x2239, x11, UINT32_C(0x61c64ca7)); fiat_np521_addcarryx_u32(&x2240, &x2241, 0x0, x2239, x2236); fiat_np521_addcarryx_u32(&x2242, &x2243, x2241, x2237, x2234); fiat_np521_addcarryx_u32(&x2244, &x2245, x2243, x2235, x2232); fiat_np521_addcarryx_u32(&x2246, &x2247, x2245, x2233, x2230); fiat_np521_addcarryx_u32(&x2248, &x2249, x2247, x2231, x2228); fiat_np521_addcarryx_u32(&x2250, &x2251, x2249, x2229, x2226); fiat_np521_addcarryx_u32(&x2252, &x2253, x2251, x2227, x2224); fiat_np521_addcarryx_u32(&x2254, &x2255, x2253, x2225, x2222); fiat_np521_addcarryx_u32(&x2256, &x2257, x2255, x2223, x2220); fiat_np521_addcarryx_u32(&x2258, &x2259, x2257, x2221, x2218); fiat_np521_addcarryx_u32(&x2260, &x2261, x2259, x2219, x2216); fiat_np521_addcarryx_u32(&x2262, &x2263, x2261, x2217, x2214); fiat_np521_addcarryx_u32(&x2264, &x2265, x2263, x2215, x2212); fiat_np521_addcarryx_u32(&x2266, &x2267, x2265, x2213, x2210); fiat_np521_addcarryx_u32(&x2268, &x2269, x2267, x2211, x2208); fiat_np521_addcarryx_u32(&x2270, &x2271, x2269, x2209, x2206); fiat_np521_addcarryx_u32(&x2272, &x2273, 0x0, x2174, x2238); fiat_np521_addcarryx_u32(&x2274, &x2275, x2273, x2176, x2240); fiat_np521_addcarryx_u32(&x2276, &x2277, x2275, x2178, x2242); fiat_np521_addcarryx_u32(&x2278, &x2279, x2277, x2180, x2244); fiat_np521_addcarryx_u32(&x2280, &x2281, x2279, x2182, x2246); fiat_np521_addcarryx_u32(&x2282, &x2283, x2281, x2184, x2248); fiat_np521_addcarryx_u32(&x2284, &x2285, x2283, x2186, x2250); fiat_np521_addcarryx_u32(&x2286, &x2287, x2285, x2188, x2252); fiat_np521_addcarryx_u32(&x2288, &x2289, x2287, x2190, x2254); fiat_np521_addcarryx_u32(&x2290, &x2291, x2289, x2192, x2256); fiat_np521_addcarryx_u32(&x2292, &x2293, x2291, x2194, x2258); fiat_np521_addcarryx_u32(&x2294, &x2295, x2293, x2196, x2260); fiat_np521_addcarryx_u32(&x2296, &x2297, x2295, x2198, x2262); fiat_np521_addcarryx_u32(&x2298, &x2299, x2297, x2200, x2264); fiat_np521_addcarryx_u32(&x2300, &x2301, x2299, x2202, x2266); fiat_np521_addcarryx_u32(&x2302, &x2303, x2301, x2204, x2268); fiat_np521_addcarryx_u32(&x2304, &x2305, x2303, ((x2205 + (x2103 + (x2069 + x2005))) + (x2171 + x2107)), x2270); fiat_np521_mulx_u32(&x2306, &x2307, x2272, UINT32_C(0x79a995c7)); fiat_np521_mulx_u32(&x2308, &x2309, x2306, UINT16_C(0x1ff)); fiat_np521_mulx_u32(&x2310, &x2311, x2306, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x2312, &x2313, x2306, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x2314, &x2315, x2306, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x2316, &x2317, x2306, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x2318, &x2319, x2306, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x2320, &x2321, x2306, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x2322, &x2323, x2306, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x2324, &x2325, x2306, UINT32_C(0xfffffffa)); fiat_np521_mulx_u32(&x2326, &x2327, x2306, UINT32_C(0x51868783)); fiat_np521_mulx_u32(&x2328, &x2329, x2306, UINT32_C(0xbf2f966b)); fiat_np521_mulx_u32(&x2330, &x2331, x2306, UINT32_C(0x7fcc0148)); fiat_np521_mulx_u32(&x2332, &x2333, x2306, UINT32_C(0xf709a5d0)); fiat_np521_mulx_u32(&x2334, &x2335, x2306, UINT32_C(0x3bb5c9b8)); fiat_np521_mulx_u32(&x2336, &x2337, x2306, UINT32_C(0x899c47ae)); fiat_np521_mulx_u32(&x2338, &x2339, x2306, UINT32_C(0xbb6fb71e)); fiat_np521_mulx_u32(&x2340, &x2341, x2306, UINT32_C(0x91386409)); fiat_np521_addcarryx_u32(&x2342, &x2343, 0x0, x2341, x2338); fiat_np521_addcarryx_u32(&x2344, &x2345, x2343, x2339, x2336); fiat_np521_addcarryx_u32(&x2346, &x2347, x2345, x2337, x2334); fiat_np521_addcarryx_u32(&x2348, &x2349, x2347, x2335, x2332); fiat_np521_addcarryx_u32(&x2350, &x2351, x2349, x2333, x2330); fiat_np521_addcarryx_u32(&x2352, &x2353, x2351, x2331, x2328); fiat_np521_addcarryx_u32(&x2354, &x2355, x2353, x2329, x2326); fiat_np521_addcarryx_u32(&x2356, &x2357, x2355, x2327, x2324); fiat_np521_addcarryx_u32(&x2358, &x2359, x2357, x2325, x2322); fiat_np521_addcarryx_u32(&x2360, &x2361, x2359, x2323, x2320); fiat_np521_addcarryx_u32(&x2362, &x2363, x2361, x2321, x2318); fiat_np521_addcarryx_u32(&x2364, &x2365, x2363, x2319, x2316); fiat_np521_addcarryx_u32(&x2366, &x2367, x2365, x2317, x2314); fiat_np521_addcarryx_u32(&x2368, &x2369, x2367, x2315, x2312); fiat_np521_addcarryx_u32(&x2370, &x2371, x2369, x2313, x2310); fiat_np521_addcarryx_u32(&x2372, &x2373, x2371, x2311, x2308); fiat_np521_addcarryx_u32(&x2374, &x2375, 0x0, x2272, x2340); fiat_np521_addcarryx_u32(&x2376, &x2377, x2375, x2274, x2342); fiat_np521_addcarryx_u32(&x2378, &x2379, x2377, x2276, x2344); fiat_np521_addcarryx_u32(&x2380, &x2381, x2379, x2278, x2346); fiat_np521_addcarryx_u32(&x2382, &x2383, x2381, x2280, x2348); fiat_np521_addcarryx_u32(&x2384, &x2385, x2383, x2282, x2350); fiat_np521_addcarryx_u32(&x2386, &x2387, x2385, x2284, x2352); fiat_np521_addcarryx_u32(&x2388, &x2389, x2387, x2286, x2354); fiat_np521_addcarryx_u32(&x2390, &x2391, x2389, x2288, x2356); fiat_np521_addcarryx_u32(&x2392, &x2393, x2391, x2290, x2358); fiat_np521_addcarryx_u32(&x2394, &x2395, x2393, x2292, x2360); fiat_np521_addcarryx_u32(&x2396, &x2397, x2395, x2294, x2362); fiat_np521_addcarryx_u32(&x2398, &x2399, x2397, x2296, x2364); fiat_np521_addcarryx_u32(&x2400, &x2401, x2399, x2298, x2366); fiat_np521_addcarryx_u32(&x2402, &x2403, x2401, x2300, x2368); fiat_np521_addcarryx_u32(&x2404, &x2405, x2403, x2302, x2370); fiat_np521_addcarryx_u32(&x2406, &x2407, x2405, x2304, x2372); fiat_np521_mulx_u32(&x2408, &x2409, x12, UINT16_C(0x19a)); fiat_np521_mulx_u32(&x2410, &x2411, x12, UINT32_C(0x5b5a3afe)); fiat_np521_mulx_u32(&x2412, &x2413, x12, UINT32_C(0x8c44383d)); fiat_np521_mulx_u32(&x2414, &x2415, x12, UINT32_C(0x2d8e03d1)); fiat_np521_mulx_u32(&x2416, &x2417, x12, UINT32_C(0x492d0d45)); fiat_np521_mulx_u32(&x2418, &x2419, x12, UINT32_C(0x5bcc6d61)); fiat_np521_mulx_u32(&x2420, &x2421, x12, UINT32_C(0xa8e567bc)); fiat_np521_mulx_u32(&x2422, &x2423, x12, UINT32_C(0xcff3d142)); fiat_np521_mulx_u32(&x2424, &x2425, x12, UINT32_C(0xb7756e3a)); fiat_np521_mulx_u32(&x2426, &x2427, x12, UINT32_C(0x4fb35b72)); fiat_np521_mulx_u32(&x2428, &x2429, x12, UINT32_C(0xd3402705)); fiat_np521_mulx_u32(&x2430, &x2431, x12, UINT32_C(0x5d4dd6d3)); fiat_np521_mulx_u32(&x2432, &x2433, x12, UINT32_C(0x791d9dc)); fiat_np521_mulx_u32(&x2434, &x2435, x12, UINT32_C(0x18354a56)); fiat_np521_mulx_u32(&x2436, &x2437, x12, UINT32_C(0x4374a642)); fiat_np521_mulx_u32(&x2438, &x2439, x12, UINT32_C(0x1163115a)); fiat_np521_mulx_u32(&x2440, &x2441, x12, UINT32_C(0x61c64ca7)); fiat_np521_addcarryx_u32(&x2442, &x2443, 0x0, x2441, x2438); fiat_np521_addcarryx_u32(&x2444, &x2445, x2443, x2439, x2436); fiat_np521_addcarryx_u32(&x2446, &x2447, x2445, x2437, x2434); fiat_np521_addcarryx_u32(&x2448, &x2449, x2447, x2435, x2432); fiat_np521_addcarryx_u32(&x2450, &x2451, x2449, x2433, x2430); fiat_np521_addcarryx_u32(&x2452, &x2453, x2451, x2431, x2428); fiat_np521_addcarryx_u32(&x2454, &x2455, x2453, x2429, x2426); fiat_np521_addcarryx_u32(&x2456, &x2457, x2455, x2427, x2424); fiat_np521_addcarryx_u32(&x2458, &x2459, x2457, x2425, x2422); fiat_np521_addcarryx_u32(&x2460, &x2461, x2459, x2423, x2420); fiat_np521_addcarryx_u32(&x2462, &x2463, x2461, x2421, x2418); fiat_np521_addcarryx_u32(&x2464, &x2465, x2463, x2419, x2416); fiat_np521_addcarryx_u32(&x2466, &x2467, x2465, x2417, x2414); fiat_np521_addcarryx_u32(&x2468, &x2469, x2467, x2415, x2412); fiat_np521_addcarryx_u32(&x2470, &x2471, x2469, x2413, x2410); fiat_np521_addcarryx_u32(&x2472, &x2473, x2471, x2411, x2408); fiat_np521_addcarryx_u32(&x2474, &x2475, 0x0, x2376, x2440); fiat_np521_addcarryx_u32(&x2476, &x2477, x2475, x2378, x2442); fiat_np521_addcarryx_u32(&x2478, &x2479, x2477, x2380, x2444); fiat_np521_addcarryx_u32(&x2480, &x2481, x2479, x2382, x2446); fiat_np521_addcarryx_u32(&x2482, &x2483, x2481, x2384, x2448); fiat_np521_addcarryx_u32(&x2484, &x2485, x2483, x2386, x2450); fiat_np521_addcarryx_u32(&x2486, &x2487, x2485, x2388, x2452); fiat_np521_addcarryx_u32(&x2488, &x2489, x2487, x2390, x2454); fiat_np521_addcarryx_u32(&x2490, &x2491, x2489, x2392, x2456); fiat_np521_addcarryx_u32(&x2492, &x2493, x2491, x2394, x2458); fiat_np521_addcarryx_u32(&x2494, &x2495, x2493, x2396, x2460); fiat_np521_addcarryx_u32(&x2496, &x2497, x2495, x2398, x2462); fiat_np521_addcarryx_u32(&x2498, &x2499, x2497, x2400, x2464); fiat_np521_addcarryx_u32(&x2500, &x2501, x2499, x2402, x2466); fiat_np521_addcarryx_u32(&x2502, &x2503, x2501, x2404, x2468); fiat_np521_addcarryx_u32(&x2504, &x2505, x2503, x2406, x2470); fiat_np521_addcarryx_u32(&x2506, &x2507, x2505, ((x2407 + (x2305 + (x2271 + x2207))) + (x2373 + x2309)), x2472); fiat_np521_mulx_u32(&x2508, &x2509, x2474, UINT32_C(0x79a995c7)); fiat_np521_mulx_u32(&x2510, &x2511, x2508, UINT16_C(0x1ff)); fiat_np521_mulx_u32(&x2512, &x2513, x2508, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x2514, &x2515, x2508, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x2516, &x2517, x2508, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x2518, &x2519, x2508, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x2520, &x2521, x2508, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x2522, &x2523, x2508, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x2524, &x2525, x2508, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x2526, &x2527, x2508, UINT32_C(0xfffffffa)); fiat_np521_mulx_u32(&x2528, &x2529, x2508, UINT32_C(0x51868783)); fiat_np521_mulx_u32(&x2530, &x2531, x2508, UINT32_C(0xbf2f966b)); fiat_np521_mulx_u32(&x2532, &x2533, x2508, UINT32_C(0x7fcc0148)); fiat_np521_mulx_u32(&x2534, &x2535, x2508, UINT32_C(0xf709a5d0)); fiat_np521_mulx_u32(&x2536, &x2537, x2508, UINT32_C(0x3bb5c9b8)); fiat_np521_mulx_u32(&x2538, &x2539, x2508, UINT32_C(0x899c47ae)); fiat_np521_mulx_u32(&x2540, &x2541, x2508, UINT32_C(0xbb6fb71e)); fiat_np521_mulx_u32(&x2542, &x2543, x2508, UINT32_C(0x91386409)); fiat_np521_addcarryx_u32(&x2544, &x2545, 0x0, x2543, x2540); fiat_np521_addcarryx_u32(&x2546, &x2547, x2545, x2541, x2538); fiat_np521_addcarryx_u32(&x2548, &x2549, x2547, x2539, x2536); fiat_np521_addcarryx_u32(&x2550, &x2551, x2549, x2537, x2534); fiat_np521_addcarryx_u32(&x2552, &x2553, x2551, x2535, x2532); fiat_np521_addcarryx_u32(&x2554, &x2555, x2553, x2533, x2530); fiat_np521_addcarryx_u32(&x2556, &x2557, x2555, x2531, x2528); fiat_np521_addcarryx_u32(&x2558, &x2559, x2557, x2529, x2526); fiat_np521_addcarryx_u32(&x2560, &x2561, x2559, x2527, x2524); fiat_np521_addcarryx_u32(&x2562, &x2563, x2561, x2525, x2522); fiat_np521_addcarryx_u32(&x2564, &x2565, x2563, x2523, x2520); fiat_np521_addcarryx_u32(&x2566, &x2567, x2565, x2521, x2518); fiat_np521_addcarryx_u32(&x2568, &x2569, x2567, x2519, x2516); fiat_np521_addcarryx_u32(&x2570, &x2571, x2569, x2517, x2514); fiat_np521_addcarryx_u32(&x2572, &x2573, x2571, x2515, x2512); fiat_np521_addcarryx_u32(&x2574, &x2575, x2573, x2513, x2510); fiat_np521_addcarryx_u32(&x2576, &x2577, 0x0, x2474, x2542); fiat_np521_addcarryx_u32(&x2578, &x2579, x2577, x2476, x2544); fiat_np521_addcarryx_u32(&x2580, &x2581, x2579, x2478, x2546); fiat_np521_addcarryx_u32(&x2582, &x2583, x2581, x2480, x2548); fiat_np521_addcarryx_u32(&x2584, &x2585, x2583, x2482, x2550); fiat_np521_addcarryx_u32(&x2586, &x2587, x2585, x2484, x2552); fiat_np521_addcarryx_u32(&x2588, &x2589, x2587, x2486, x2554); fiat_np521_addcarryx_u32(&x2590, &x2591, x2589, x2488, x2556); fiat_np521_addcarryx_u32(&x2592, &x2593, x2591, x2490, x2558); fiat_np521_addcarryx_u32(&x2594, &x2595, x2593, x2492, x2560); fiat_np521_addcarryx_u32(&x2596, &x2597, x2595, x2494, x2562); fiat_np521_addcarryx_u32(&x2598, &x2599, x2597, x2496, x2564); fiat_np521_addcarryx_u32(&x2600, &x2601, x2599, x2498, x2566); fiat_np521_addcarryx_u32(&x2602, &x2603, x2601, x2500, x2568); fiat_np521_addcarryx_u32(&x2604, &x2605, x2603, x2502, x2570); fiat_np521_addcarryx_u32(&x2606, &x2607, x2605, x2504, x2572); fiat_np521_addcarryx_u32(&x2608, &x2609, x2607, x2506, x2574); fiat_np521_mulx_u32(&x2610, &x2611, x13, UINT16_C(0x19a)); fiat_np521_mulx_u32(&x2612, &x2613, x13, UINT32_C(0x5b5a3afe)); fiat_np521_mulx_u32(&x2614, &x2615, x13, UINT32_C(0x8c44383d)); fiat_np521_mulx_u32(&x2616, &x2617, x13, UINT32_C(0x2d8e03d1)); fiat_np521_mulx_u32(&x2618, &x2619, x13, UINT32_C(0x492d0d45)); fiat_np521_mulx_u32(&x2620, &x2621, x13, UINT32_C(0x5bcc6d61)); fiat_np521_mulx_u32(&x2622, &x2623, x13, UINT32_C(0xa8e567bc)); fiat_np521_mulx_u32(&x2624, &x2625, x13, UINT32_C(0xcff3d142)); fiat_np521_mulx_u32(&x2626, &x2627, x13, UINT32_C(0xb7756e3a)); fiat_np521_mulx_u32(&x2628, &x2629, x13, UINT32_C(0x4fb35b72)); fiat_np521_mulx_u32(&x2630, &x2631, x13, UINT32_C(0xd3402705)); fiat_np521_mulx_u32(&x2632, &x2633, x13, UINT32_C(0x5d4dd6d3)); fiat_np521_mulx_u32(&x2634, &x2635, x13, UINT32_C(0x791d9dc)); fiat_np521_mulx_u32(&x2636, &x2637, x13, UINT32_C(0x18354a56)); fiat_np521_mulx_u32(&x2638, &x2639, x13, UINT32_C(0x4374a642)); fiat_np521_mulx_u32(&x2640, &x2641, x13, UINT32_C(0x1163115a)); fiat_np521_mulx_u32(&x2642, &x2643, x13, UINT32_C(0x61c64ca7)); fiat_np521_addcarryx_u32(&x2644, &x2645, 0x0, x2643, x2640); fiat_np521_addcarryx_u32(&x2646, &x2647, x2645, x2641, x2638); fiat_np521_addcarryx_u32(&x2648, &x2649, x2647, x2639, x2636); fiat_np521_addcarryx_u32(&x2650, &x2651, x2649, x2637, x2634); fiat_np521_addcarryx_u32(&x2652, &x2653, x2651, x2635, x2632); fiat_np521_addcarryx_u32(&x2654, &x2655, x2653, x2633, x2630); fiat_np521_addcarryx_u32(&x2656, &x2657, x2655, x2631, x2628); fiat_np521_addcarryx_u32(&x2658, &x2659, x2657, x2629, x2626); fiat_np521_addcarryx_u32(&x2660, &x2661, x2659, x2627, x2624); fiat_np521_addcarryx_u32(&x2662, &x2663, x2661, x2625, x2622); fiat_np521_addcarryx_u32(&x2664, &x2665, x2663, x2623, x2620); fiat_np521_addcarryx_u32(&x2666, &x2667, x2665, x2621, x2618); fiat_np521_addcarryx_u32(&x2668, &x2669, x2667, x2619, x2616); fiat_np521_addcarryx_u32(&x2670, &x2671, x2669, x2617, x2614); fiat_np521_addcarryx_u32(&x2672, &x2673, x2671, x2615, x2612); fiat_np521_addcarryx_u32(&x2674, &x2675, x2673, x2613, x2610); fiat_np521_addcarryx_u32(&x2676, &x2677, 0x0, x2578, x2642); fiat_np521_addcarryx_u32(&x2678, &x2679, x2677, x2580, x2644); fiat_np521_addcarryx_u32(&x2680, &x2681, x2679, x2582, x2646); fiat_np521_addcarryx_u32(&x2682, &x2683, x2681, x2584, x2648); fiat_np521_addcarryx_u32(&x2684, &x2685, x2683, x2586, x2650); fiat_np521_addcarryx_u32(&x2686, &x2687, x2685, x2588, x2652); fiat_np521_addcarryx_u32(&x2688, &x2689, x2687, x2590, x2654); fiat_np521_addcarryx_u32(&x2690, &x2691, x2689, x2592, x2656); fiat_np521_addcarryx_u32(&x2692, &x2693, x2691, x2594, x2658); fiat_np521_addcarryx_u32(&x2694, &x2695, x2693, x2596, x2660); fiat_np521_addcarryx_u32(&x2696, &x2697, x2695, x2598, x2662); fiat_np521_addcarryx_u32(&x2698, &x2699, x2697, x2600, x2664); fiat_np521_addcarryx_u32(&x2700, &x2701, x2699, x2602, x2666); fiat_np521_addcarryx_u32(&x2702, &x2703, x2701, x2604, x2668); fiat_np521_addcarryx_u32(&x2704, &x2705, x2703, x2606, x2670); fiat_np521_addcarryx_u32(&x2706, &x2707, x2705, x2608, x2672); fiat_np521_addcarryx_u32(&x2708, &x2709, x2707, ((x2609 + (x2507 + (x2473 + x2409))) + (x2575 + x2511)), x2674); fiat_np521_mulx_u32(&x2710, &x2711, x2676, UINT32_C(0x79a995c7)); fiat_np521_mulx_u32(&x2712, &x2713, x2710, UINT16_C(0x1ff)); fiat_np521_mulx_u32(&x2714, &x2715, x2710, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x2716, &x2717, x2710, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x2718, &x2719, x2710, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x2720, &x2721, x2710, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x2722, &x2723, x2710, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x2724, &x2725, x2710, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x2726, &x2727, x2710, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x2728, &x2729, x2710, UINT32_C(0xfffffffa)); fiat_np521_mulx_u32(&x2730, &x2731, x2710, UINT32_C(0x51868783)); fiat_np521_mulx_u32(&x2732, &x2733, x2710, UINT32_C(0xbf2f966b)); fiat_np521_mulx_u32(&x2734, &x2735, x2710, UINT32_C(0x7fcc0148)); fiat_np521_mulx_u32(&x2736, &x2737, x2710, UINT32_C(0xf709a5d0)); fiat_np521_mulx_u32(&x2738, &x2739, x2710, UINT32_C(0x3bb5c9b8)); fiat_np521_mulx_u32(&x2740, &x2741, x2710, UINT32_C(0x899c47ae)); fiat_np521_mulx_u32(&x2742, &x2743, x2710, UINT32_C(0xbb6fb71e)); fiat_np521_mulx_u32(&x2744, &x2745, x2710, UINT32_C(0x91386409)); fiat_np521_addcarryx_u32(&x2746, &x2747, 0x0, x2745, x2742); fiat_np521_addcarryx_u32(&x2748, &x2749, x2747, x2743, x2740); fiat_np521_addcarryx_u32(&x2750, &x2751, x2749, x2741, x2738); fiat_np521_addcarryx_u32(&x2752, &x2753, x2751, x2739, x2736); fiat_np521_addcarryx_u32(&x2754, &x2755, x2753, x2737, x2734); fiat_np521_addcarryx_u32(&x2756, &x2757, x2755, x2735, x2732); fiat_np521_addcarryx_u32(&x2758, &x2759, x2757, x2733, x2730); fiat_np521_addcarryx_u32(&x2760, &x2761, x2759, x2731, x2728); fiat_np521_addcarryx_u32(&x2762, &x2763, x2761, x2729, x2726); fiat_np521_addcarryx_u32(&x2764, &x2765, x2763, x2727, x2724); fiat_np521_addcarryx_u32(&x2766, &x2767, x2765, x2725, x2722); fiat_np521_addcarryx_u32(&x2768, &x2769, x2767, x2723, x2720); fiat_np521_addcarryx_u32(&x2770, &x2771, x2769, x2721, x2718); fiat_np521_addcarryx_u32(&x2772, &x2773, x2771, x2719, x2716); fiat_np521_addcarryx_u32(&x2774, &x2775, x2773, x2717, x2714); fiat_np521_addcarryx_u32(&x2776, &x2777, x2775, x2715, x2712); fiat_np521_addcarryx_u32(&x2778, &x2779, 0x0, x2676, x2744); fiat_np521_addcarryx_u32(&x2780, &x2781, x2779, x2678, x2746); fiat_np521_addcarryx_u32(&x2782, &x2783, x2781, x2680, x2748); fiat_np521_addcarryx_u32(&x2784, &x2785, x2783, x2682, x2750); fiat_np521_addcarryx_u32(&x2786, &x2787, x2785, x2684, x2752); fiat_np521_addcarryx_u32(&x2788, &x2789, x2787, x2686, x2754); fiat_np521_addcarryx_u32(&x2790, &x2791, x2789, x2688, x2756); fiat_np521_addcarryx_u32(&x2792, &x2793, x2791, x2690, x2758); fiat_np521_addcarryx_u32(&x2794, &x2795, x2793, x2692, x2760); fiat_np521_addcarryx_u32(&x2796, &x2797, x2795, x2694, x2762); fiat_np521_addcarryx_u32(&x2798, &x2799, x2797, x2696, x2764); fiat_np521_addcarryx_u32(&x2800, &x2801, x2799, x2698, x2766); fiat_np521_addcarryx_u32(&x2802, &x2803, x2801, x2700, x2768); fiat_np521_addcarryx_u32(&x2804, &x2805, x2803, x2702, x2770); fiat_np521_addcarryx_u32(&x2806, &x2807, x2805, x2704, x2772); fiat_np521_addcarryx_u32(&x2808, &x2809, x2807, x2706, x2774); fiat_np521_addcarryx_u32(&x2810, &x2811, x2809, x2708, x2776); fiat_np521_mulx_u32(&x2812, &x2813, x14, UINT16_C(0x19a)); fiat_np521_mulx_u32(&x2814, &x2815, x14, UINT32_C(0x5b5a3afe)); fiat_np521_mulx_u32(&x2816, &x2817, x14, UINT32_C(0x8c44383d)); fiat_np521_mulx_u32(&x2818, &x2819, x14, UINT32_C(0x2d8e03d1)); fiat_np521_mulx_u32(&x2820, &x2821, x14, UINT32_C(0x492d0d45)); fiat_np521_mulx_u32(&x2822, &x2823, x14, UINT32_C(0x5bcc6d61)); fiat_np521_mulx_u32(&x2824, &x2825, x14, UINT32_C(0xa8e567bc)); fiat_np521_mulx_u32(&x2826, &x2827, x14, UINT32_C(0xcff3d142)); fiat_np521_mulx_u32(&x2828, &x2829, x14, UINT32_C(0xb7756e3a)); fiat_np521_mulx_u32(&x2830, &x2831, x14, UINT32_C(0x4fb35b72)); fiat_np521_mulx_u32(&x2832, &x2833, x14, UINT32_C(0xd3402705)); fiat_np521_mulx_u32(&x2834, &x2835, x14, UINT32_C(0x5d4dd6d3)); fiat_np521_mulx_u32(&x2836, &x2837, x14, UINT32_C(0x791d9dc)); fiat_np521_mulx_u32(&x2838, &x2839, x14, UINT32_C(0x18354a56)); fiat_np521_mulx_u32(&x2840, &x2841, x14, UINT32_C(0x4374a642)); fiat_np521_mulx_u32(&x2842, &x2843, x14, UINT32_C(0x1163115a)); fiat_np521_mulx_u32(&x2844, &x2845, x14, UINT32_C(0x61c64ca7)); fiat_np521_addcarryx_u32(&x2846, &x2847, 0x0, x2845, x2842); fiat_np521_addcarryx_u32(&x2848, &x2849, x2847, x2843, x2840); fiat_np521_addcarryx_u32(&x2850, &x2851, x2849, x2841, x2838); fiat_np521_addcarryx_u32(&x2852, &x2853, x2851, x2839, x2836); fiat_np521_addcarryx_u32(&x2854, &x2855, x2853, x2837, x2834); fiat_np521_addcarryx_u32(&x2856, &x2857, x2855, x2835, x2832); fiat_np521_addcarryx_u32(&x2858, &x2859, x2857, x2833, x2830); fiat_np521_addcarryx_u32(&x2860, &x2861, x2859, x2831, x2828); fiat_np521_addcarryx_u32(&x2862, &x2863, x2861, x2829, x2826); fiat_np521_addcarryx_u32(&x2864, &x2865, x2863, x2827, x2824); fiat_np521_addcarryx_u32(&x2866, &x2867, x2865, x2825, x2822); fiat_np521_addcarryx_u32(&x2868, &x2869, x2867, x2823, x2820); fiat_np521_addcarryx_u32(&x2870, &x2871, x2869, x2821, x2818); fiat_np521_addcarryx_u32(&x2872, &x2873, x2871, x2819, x2816); fiat_np521_addcarryx_u32(&x2874, &x2875, x2873, x2817, x2814); fiat_np521_addcarryx_u32(&x2876, &x2877, x2875, x2815, x2812); fiat_np521_addcarryx_u32(&x2878, &x2879, 0x0, x2780, x2844); fiat_np521_addcarryx_u32(&x2880, &x2881, x2879, x2782, x2846); fiat_np521_addcarryx_u32(&x2882, &x2883, x2881, x2784, x2848); fiat_np521_addcarryx_u32(&x2884, &x2885, x2883, x2786, x2850); fiat_np521_addcarryx_u32(&x2886, &x2887, x2885, x2788, x2852); fiat_np521_addcarryx_u32(&x2888, &x2889, x2887, x2790, x2854); fiat_np521_addcarryx_u32(&x2890, &x2891, x2889, x2792, x2856); fiat_np521_addcarryx_u32(&x2892, &x2893, x2891, x2794, x2858); fiat_np521_addcarryx_u32(&x2894, &x2895, x2893, x2796, x2860); fiat_np521_addcarryx_u32(&x2896, &x2897, x2895, x2798, x2862); fiat_np521_addcarryx_u32(&x2898, &x2899, x2897, x2800, x2864); fiat_np521_addcarryx_u32(&x2900, &x2901, x2899, x2802, x2866); fiat_np521_addcarryx_u32(&x2902, &x2903, x2901, x2804, x2868); fiat_np521_addcarryx_u32(&x2904, &x2905, x2903, x2806, x2870); fiat_np521_addcarryx_u32(&x2906, &x2907, x2905, x2808, x2872); fiat_np521_addcarryx_u32(&x2908, &x2909, x2907, x2810, x2874); fiat_np521_addcarryx_u32(&x2910, &x2911, x2909, ((x2811 + (x2709 + (x2675 + x2611))) + (x2777 + x2713)), x2876); fiat_np521_mulx_u32(&x2912, &x2913, x2878, UINT32_C(0x79a995c7)); fiat_np521_mulx_u32(&x2914, &x2915, x2912, UINT16_C(0x1ff)); fiat_np521_mulx_u32(&x2916, &x2917, x2912, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x2918, &x2919, x2912, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x2920, &x2921, x2912, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x2922, &x2923, x2912, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x2924, &x2925, x2912, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x2926, &x2927, x2912, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x2928, &x2929, x2912, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x2930, &x2931, x2912, UINT32_C(0xfffffffa)); fiat_np521_mulx_u32(&x2932, &x2933, x2912, UINT32_C(0x51868783)); fiat_np521_mulx_u32(&x2934, &x2935, x2912, UINT32_C(0xbf2f966b)); fiat_np521_mulx_u32(&x2936, &x2937, x2912, UINT32_C(0x7fcc0148)); fiat_np521_mulx_u32(&x2938, &x2939, x2912, UINT32_C(0xf709a5d0)); fiat_np521_mulx_u32(&x2940, &x2941, x2912, UINT32_C(0x3bb5c9b8)); fiat_np521_mulx_u32(&x2942, &x2943, x2912, UINT32_C(0x899c47ae)); fiat_np521_mulx_u32(&x2944, &x2945, x2912, UINT32_C(0xbb6fb71e)); fiat_np521_mulx_u32(&x2946, &x2947, x2912, UINT32_C(0x91386409)); fiat_np521_addcarryx_u32(&x2948, &x2949, 0x0, x2947, x2944); fiat_np521_addcarryx_u32(&x2950, &x2951, x2949, x2945, x2942); fiat_np521_addcarryx_u32(&x2952, &x2953, x2951, x2943, x2940); fiat_np521_addcarryx_u32(&x2954, &x2955, x2953, x2941, x2938); fiat_np521_addcarryx_u32(&x2956, &x2957, x2955, x2939, x2936); fiat_np521_addcarryx_u32(&x2958, &x2959, x2957, x2937, x2934); fiat_np521_addcarryx_u32(&x2960, &x2961, x2959, x2935, x2932); fiat_np521_addcarryx_u32(&x2962, &x2963, x2961, x2933, x2930); fiat_np521_addcarryx_u32(&x2964, &x2965, x2963, x2931, x2928); fiat_np521_addcarryx_u32(&x2966, &x2967, x2965, x2929, x2926); fiat_np521_addcarryx_u32(&x2968, &x2969, x2967, x2927, x2924); fiat_np521_addcarryx_u32(&x2970, &x2971, x2969, x2925, x2922); fiat_np521_addcarryx_u32(&x2972, &x2973, x2971, x2923, x2920); fiat_np521_addcarryx_u32(&x2974, &x2975, x2973, x2921, x2918); fiat_np521_addcarryx_u32(&x2976, &x2977, x2975, x2919, x2916); fiat_np521_addcarryx_u32(&x2978, &x2979, x2977, x2917, x2914); fiat_np521_addcarryx_u32(&x2980, &x2981, 0x0, x2878, x2946); fiat_np521_addcarryx_u32(&x2982, &x2983, x2981, x2880, x2948); fiat_np521_addcarryx_u32(&x2984, &x2985, x2983, x2882, x2950); fiat_np521_addcarryx_u32(&x2986, &x2987, x2985, x2884, x2952); fiat_np521_addcarryx_u32(&x2988, &x2989, x2987, x2886, x2954); fiat_np521_addcarryx_u32(&x2990, &x2991, x2989, x2888, x2956); fiat_np521_addcarryx_u32(&x2992, &x2993, x2991, x2890, x2958); fiat_np521_addcarryx_u32(&x2994, &x2995, x2993, x2892, x2960); fiat_np521_addcarryx_u32(&x2996, &x2997, x2995, x2894, x2962); fiat_np521_addcarryx_u32(&x2998, &x2999, x2997, x2896, x2964); fiat_np521_addcarryx_u32(&x3000, &x3001, x2999, x2898, x2966); fiat_np521_addcarryx_u32(&x3002, &x3003, x3001, x2900, x2968); fiat_np521_addcarryx_u32(&x3004, &x3005, x3003, x2902, x2970); fiat_np521_addcarryx_u32(&x3006, &x3007, x3005, x2904, x2972); fiat_np521_addcarryx_u32(&x3008, &x3009, x3007, x2906, x2974); fiat_np521_addcarryx_u32(&x3010, &x3011, x3009, x2908, x2976); fiat_np521_addcarryx_u32(&x3012, &x3013, x3011, x2910, x2978); fiat_np521_mulx_u32(&x3014, &x3015, x15, UINT16_C(0x19a)); fiat_np521_mulx_u32(&x3016, &x3017, x15, UINT32_C(0x5b5a3afe)); fiat_np521_mulx_u32(&x3018, &x3019, x15, UINT32_C(0x8c44383d)); fiat_np521_mulx_u32(&x3020, &x3021, x15, UINT32_C(0x2d8e03d1)); fiat_np521_mulx_u32(&x3022, &x3023, x15, UINT32_C(0x492d0d45)); fiat_np521_mulx_u32(&x3024, &x3025, x15, UINT32_C(0x5bcc6d61)); fiat_np521_mulx_u32(&x3026, &x3027, x15, UINT32_C(0xa8e567bc)); fiat_np521_mulx_u32(&x3028, &x3029, x15, UINT32_C(0xcff3d142)); fiat_np521_mulx_u32(&x3030, &x3031, x15, UINT32_C(0xb7756e3a)); fiat_np521_mulx_u32(&x3032, &x3033, x15, UINT32_C(0x4fb35b72)); fiat_np521_mulx_u32(&x3034, &x3035, x15, UINT32_C(0xd3402705)); fiat_np521_mulx_u32(&x3036, &x3037, x15, UINT32_C(0x5d4dd6d3)); fiat_np521_mulx_u32(&x3038, &x3039, x15, UINT32_C(0x791d9dc)); fiat_np521_mulx_u32(&x3040, &x3041, x15, UINT32_C(0x18354a56)); fiat_np521_mulx_u32(&x3042, &x3043, x15, UINT32_C(0x4374a642)); fiat_np521_mulx_u32(&x3044, &x3045, x15, UINT32_C(0x1163115a)); fiat_np521_mulx_u32(&x3046, &x3047, x15, UINT32_C(0x61c64ca7)); fiat_np521_addcarryx_u32(&x3048, &x3049, 0x0, x3047, x3044); fiat_np521_addcarryx_u32(&x3050, &x3051, x3049, x3045, x3042); fiat_np521_addcarryx_u32(&x3052, &x3053, x3051, x3043, x3040); fiat_np521_addcarryx_u32(&x3054, &x3055, x3053, x3041, x3038); fiat_np521_addcarryx_u32(&x3056, &x3057, x3055, x3039, x3036); fiat_np521_addcarryx_u32(&x3058, &x3059, x3057, x3037, x3034); fiat_np521_addcarryx_u32(&x3060, &x3061, x3059, x3035, x3032); fiat_np521_addcarryx_u32(&x3062, &x3063, x3061, x3033, x3030); fiat_np521_addcarryx_u32(&x3064, &x3065, x3063, x3031, x3028); fiat_np521_addcarryx_u32(&x3066, &x3067, x3065, x3029, x3026); fiat_np521_addcarryx_u32(&x3068, &x3069, x3067, x3027, x3024); fiat_np521_addcarryx_u32(&x3070, &x3071, x3069, x3025, x3022); fiat_np521_addcarryx_u32(&x3072, &x3073, x3071, x3023, x3020); fiat_np521_addcarryx_u32(&x3074, &x3075, x3073, x3021, x3018); fiat_np521_addcarryx_u32(&x3076, &x3077, x3075, x3019, x3016); fiat_np521_addcarryx_u32(&x3078, &x3079, x3077, x3017, x3014); fiat_np521_addcarryx_u32(&x3080, &x3081, 0x0, x2982, x3046); fiat_np521_addcarryx_u32(&x3082, &x3083, x3081, x2984, x3048); fiat_np521_addcarryx_u32(&x3084, &x3085, x3083, x2986, x3050); fiat_np521_addcarryx_u32(&x3086, &x3087, x3085, x2988, x3052); fiat_np521_addcarryx_u32(&x3088, &x3089, x3087, x2990, x3054); fiat_np521_addcarryx_u32(&x3090, &x3091, x3089, x2992, x3056); fiat_np521_addcarryx_u32(&x3092, &x3093, x3091, x2994, x3058); fiat_np521_addcarryx_u32(&x3094, &x3095, x3093, x2996, x3060); fiat_np521_addcarryx_u32(&x3096, &x3097, x3095, x2998, x3062); fiat_np521_addcarryx_u32(&x3098, &x3099, x3097, x3000, x3064); fiat_np521_addcarryx_u32(&x3100, &x3101, x3099, x3002, x3066); fiat_np521_addcarryx_u32(&x3102, &x3103, x3101, x3004, x3068); fiat_np521_addcarryx_u32(&x3104, &x3105, x3103, x3006, x3070); fiat_np521_addcarryx_u32(&x3106, &x3107, x3105, x3008, x3072); fiat_np521_addcarryx_u32(&x3108, &x3109, x3107, x3010, x3074); fiat_np521_addcarryx_u32(&x3110, &x3111, x3109, x3012, x3076); fiat_np521_addcarryx_u32(&x3112, &x3113, x3111, ((x3013 + (x2911 + (x2877 + x2813))) + (x2979 + x2915)), x3078); fiat_np521_mulx_u32(&x3114, &x3115, x3080, UINT32_C(0x79a995c7)); fiat_np521_mulx_u32(&x3116, &x3117, x3114, UINT16_C(0x1ff)); fiat_np521_mulx_u32(&x3118, &x3119, x3114, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x3120, &x3121, x3114, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x3122, &x3123, x3114, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x3124, &x3125, x3114, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x3126, &x3127, x3114, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x3128, &x3129, x3114, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x3130, &x3131, x3114, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x3132, &x3133, x3114, UINT32_C(0xfffffffa)); fiat_np521_mulx_u32(&x3134, &x3135, x3114, UINT32_C(0x51868783)); fiat_np521_mulx_u32(&x3136, &x3137, x3114, UINT32_C(0xbf2f966b)); fiat_np521_mulx_u32(&x3138, &x3139, x3114, UINT32_C(0x7fcc0148)); fiat_np521_mulx_u32(&x3140, &x3141, x3114, UINT32_C(0xf709a5d0)); fiat_np521_mulx_u32(&x3142, &x3143, x3114, UINT32_C(0x3bb5c9b8)); fiat_np521_mulx_u32(&x3144, &x3145, x3114, UINT32_C(0x899c47ae)); fiat_np521_mulx_u32(&x3146, &x3147, x3114, UINT32_C(0xbb6fb71e)); fiat_np521_mulx_u32(&x3148, &x3149, x3114, UINT32_C(0x91386409)); fiat_np521_addcarryx_u32(&x3150, &x3151, 0x0, x3149, x3146); fiat_np521_addcarryx_u32(&x3152, &x3153, x3151, x3147, x3144); fiat_np521_addcarryx_u32(&x3154, &x3155, x3153, x3145, x3142); fiat_np521_addcarryx_u32(&x3156, &x3157, x3155, x3143, x3140); fiat_np521_addcarryx_u32(&x3158, &x3159, x3157, x3141, x3138); fiat_np521_addcarryx_u32(&x3160, &x3161, x3159, x3139, x3136); fiat_np521_addcarryx_u32(&x3162, &x3163, x3161, x3137, x3134); fiat_np521_addcarryx_u32(&x3164, &x3165, x3163, x3135, x3132); fiat_np521_addcarryx_u32(&x3166, &x3167, x3165, x3133, x3130); fiat_np521_addcarryx_u32(&x3168, &x3169, x3167, x3131, x3128); fiat_np521_addcarryx_u32(&x3170, &x3171, x3169, x3129, x3126); fiat_np521_addcarryx_u32(&x3172, &x3173, x3171, x3127, x3124); fiat_np521_addcarryx_u32(&x3174, &x3175, x3173, x3125, x3122); fiat_np521_addcarryx_u32(&x3176, &x3177, x3175, x3123, x3120); fiat_np521_addcarryx_u32(&x3178, &x3179, x3177, x3121, x3118); fiat_np521_addcarryx_u32(&x3180, &x3181, x3179, x3119, x3116); fiat_np521_addcarryx_u32(&x3182, &x3183, 0x0, x3080, x3148); fiat_np521_addcarryx_u32(&x3184, &x3185, x3183, x3082, x3150); fiat_np521_addcarryx_u32(&x3186, &x3187, x3185, x3084, x3152); fiat_np521_addcarryx_u32(&x3188, &x3189, x3187, x3086, x3154); fiat_np521_addcarryx_u32(&x3190, &x3191, x3189, x3088, x3156); fiat_np521_addcarryx_u32(&x3192, &x3193, x3191, x3090, x3158); fiat_np521_addcarryx_u32(&x3194, &x3195, x3193, x3092, x3160); fiat_np521_addcarryx_u32(&x3196, &x3197, x3195, x3094, x3162); fiat_np521_addcarryx_u32(&x3198, &x3199, x3197, x3096, x3164); fiat_np521_addcarryx_u32(&x3200, &x3201, x3199, x3098, x3166); fiat_np521_addcarryx_u32(&x3202, &x3203, x3201, x3100, x3168); fiat_np521_addcarryx_u32(&x3204, &x3205, x3203, x3102, x3170); fiat_np521_addcarryx_u32(&x3206, &x3207, x3205, x3104, x3172); fiat_np521_addcarryx_u32(&x3208, &x3209, x3207, x3106, x3174); fiat_np521_addcarryx_u32(&x3210, &x3211, x3209, x3108, x3176); fiat_np521_addcarryx_u32(&x3212, &x3213, x3211, x3110, x3178); fiat_np521_addcarryx_u32(&x3214, &x3215, x3213, x3112, x3180); fiat_np521_mulx_u32(&x3216, &x3217, x16, UINT16_C(0x19a)); fiat_np521_mulx_u32(&x3218, &x3219, x16, UINT32_C(0x5b5a3afe)); fiat_np521_mulx_u32(&x3220, &x3221, x16, UINT32_C(0x8c44383d)); fiat_np521_mulx_u32(&x3222, &x3223, x16, UINT32_C(0x2d8e03d1)); fiat_np521_mulx_u32(&x3224, &x3225, x16, UINT32_C(0x492d0d45)); fiat_np521_mulx_u32(&x3226, &x3227, x16, UINT32_C(0x5bcc6d61)); fiat_np521_mulx_u32(&x3228, &x3229, x16, UINT32_C(0xa8e567bc)); fiat_np521_mulx_u32(&x3230, &x3231, x16, UINT32_C(0xcff3d142)); fiat_np521_mulx_u32(&x3232, &x3233, x16, UINT32_C(0xb7756e3a)); fiat_np521_mulx_u32(&x3234, &x3235, x16, UINT32_C(0x4fb35b72)); fiat_np521_mulx_u32(&x3236, &x3237, x16, UINT32_C(0xd3402705)); fiat_np521_mulx_u32(&x3238, &x3239, x16, UINT32_C(0x5d4dd6d3)); fiat_np521_mulx_u32(&x3240, &x3241, x16, UINT32_C(0x791d9dc)); fiat_np521_mulx_u32(&x3242, &x3243, x16, UINT32_C(0x18354a56)); fiat_np521_mulx_u32(&x3244, &x3245, x16, UINT32_C(0x4374a642)); fiat_np521_mulx_u32(&x3246, &x3247, x16, UINT32_C(0x1163115a)); fiat_np521_mulx_u32(&x3248, &x3249, x16, UINT32_C(0x61c64ca7)); fiat_np521_addcarryx_u32(&x3250, &x3251, 0x0, x3249, x3246); fiat_np521_addcarryx_u32(&x3252, &x3253, x3251, x3247, x3244); fiat_np521_addcarryx_u32(&x3254, &x3255, x3253, x3245, x3242); fiat_np521_addcarryx_u32(&x3256, &x3257, x3255, x3243, x3240); fiat_np521_addcarryx_u32(&x3258, &x3259, x3257, x3241, x3238); fiat_np521_addcarryx_u32(&x3260, &x3261, x3259, x3239, x3236); fiat_np521_addcarryx_u32(&x3262, &x3263, x3261, x3237, x3234); fiat_np521_addcarryx_u32(&x3264, &x3265, x3263, x3235, x3232); fiat_np521_addcarryx_u32(&x3266, &x3267, x3265, x3233, x3230); fiat_np521_addcarryx_u32(&x3268, &x3269, x3267, x3231, x3228); fiat_np521_addcarryx_u32(&x3270, &x3271, x3269, x3229, x3226); fiat_np521_addcarryx_u32(&x3272, &x3273, x3271, x3227, x3224); fiat_np521_addcarryx_u32(&x3274, &x3275, x3273, x3225, x3222); fiat_np521_addcarryx_u32(&x3276, &x3277, x3275, x3223, x3220); fiat_np521_addcarryx_u32(&x3278, &x3279, x3277, x3221, x3218); fiat_np521_addcarryx_u32(&x3280, &x3281, x3279, x3219, x3216); fiat_np521_addcarryx_u32(&x3282, &x3283, 0x0, x3184, x3248); fiat_np521_addcarryx_u32(&x3284, &x3285, x3283, x3186, x3250); fiat_np521_addcarryx_u32(&x3286, &x3287, x3285, x3188, x3252); fiat_np521_addcarryx_u32(&x3288, &x3289, x3287, x3190, x3254); fiat_np521_addcarryx_u32(&x3290, &x3291, x3289, x3192, x3256); fiat_np521_addcarryx_u32(&x3292, &x3293, x3291, x3194, x3258); fiat_np521_addcarryx_u32(&x3294, &x3295, x3293, x3196, x3260); fiat_np521_addcarryx_u32(&x3296, &x3297, x3295, x3198, x3262); fiat_np521_addcarryx_u32(&x3298, &x3299, x3297, x3200, x3264); fiat_np521_addcarryx_u32(&x3300, &x3301, x3299, x3202, x3266); fiat_np521_addcarryx_u32(&x3302, &x3303, x3301, x3204, x3268); fiat_np521_addcarryx_u32(&x3304, &x3305, x3303, x3206, x3270); fiat_np521_addcarryx_u32(&x3306, &x3307, x3305, x3208, x3272); fiat_np521_addcarryx_u32(&x3308, &x3309, x3307, x3210, x3274); fiat_np521_addcarryx_u32(&x3310, &x3311, x3309, x3212, x3276); fiat_np521_addcarryx_u32(&x3312, &x3313, x3311, x3214, x3278); fiat_np521_addcarryx_u32(&x3314, &x3315, x3313, ((x3215 + (x3113 + (x3079 + x3015))) + (x3181 + x3117)), x3280); fiat_np521_mulx_u32(&x3316, &x3317, x3282, UINT32_C(0x79a995c7)); fiat_np521_mulx_u32(&x3318, &x3319, x3316, UINT16_C(0x1ff)); fiat_np521_mulx_u32(&x3320, &x3321, x3316, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x3322, &x3323, x3316, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x3324, &x3325, x3316, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x3326, &x3327, x3316, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x3328, &x3329, x3316, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x3330, &x3331, x3316, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x3332, &x3333, x3316, UINT32_C(0xffffffff)); fiat_np521_mulx_u32(&x3334, &x3335, x3316, UINT32_C(0xfffffffa)); fiat_np521_mulx_u32(&x3336, &x3337, x3316, UINT32_C(0x51868783)); fiat_np521_mulx_u32(&x3338, &x3339, x3316, UINT32_C(0xbf2f966b)); fiat_np521_mulx_u32(&x3340, &x3341, x3316, UINT32_C(0x7fcc0148)); fiat_np521_mulx_u32(&x3342, &x3343, x3316, UINT32_C(0xf709a5d0)); fiat_np521_mulx_u32(&x3344, &x3345, x3316, UINT32_C(0x3bb5c9b8)); fiat_np521_mulx_u32(&x3346, &x3347, x3316, UINT32_C(0x899c47ae)); fiat_np521_mulx_u32(&x3348, &x3349, x3316, UINT32_C(0xbb6fb71e)); fiat_np521_mulx_u32(&x3350, &x3351, x3316, UINT32_C(0x91386409)); fiat_np521_addcarryx_u32(&x3352, &x3353, 0x0, x3351, x3348); fiat_np521_addcarryx_u32(&x3354, &x3355, x3353, x3349, x3346); fiat_np521_addcarryx_u32(&x3356, &x3357, x3355, x3347, x3344); fiat_np521_addcarryx_u32(&x3358, &x3359, x3357, x3345, x3342); fiat_np521_addcarryx_u32(&x3360, &x3361, x3359, x3343, x3340); fiat_np521_addcarryx_u32(&x3362, &x3363, x3361, x3341, x3338); fiat_np521_addcarryx_u32(&x3364, &x3365, x3363, x3339, x3336); fiat_np521_addcarryx_u32(&x3366, &x3367, x3365, x3337, x3334); fiat_np521_addcarryx_u32(&x3368, &x3369, x3367, x3335, x3332); fiat_np521_addcarryx_u32(&x3370, &x3371, x3369, x3333, x3330); fiat_np521_addcarryx_u32(&x3372, &x3373, x3371, x3331, x3328); fiat_np521_addcarryx_u32(&x3374, &x3375, x3373, x3329, x3326); fiat_np521_addcarryx_u32(&x3376, &x3377, x3375, x3327, x3324); fiat_np521_addcarryx_u32(&x3378, &x3379, x3377, x3325, x3322); fiat_np521_addcarryx_u32(&x3380, &x3381, x3379, x3323, x3320); fiat_np521_addcarryx_u32(&x3382, &x3383, x3381, x3321, x3318); fiat_np521_addcarryx_u32(&x3384, &x3385, 0x0, x3282, x3350); fiat_np521_addcarryx_u32(&x3386, &x3387, x3385, x3284, x3352); fiat_np521_addcarryx_u32(&x3388, &x3389, x3387, x3286, x3354); fiat_np521_addcarryx_u32(&x3390, &x3391, x3389, x3288, x3356); fiat_np521_addcarryx_u32(&x3392, &x3393, x3391, x3290, x3358); fiat_np521_addcarryx_u32(&x3394, &x3395, x3393, x3292, x3360); fiat_np521_addcarryx_u32(&x3396, &x3397, x3395, x3294, x3362); fiat_np521_addcarryx_u32(&x3398, &x3399, x3397, x3296, x3364); fiat_np521_addcarryx_u32(&x3400, &x3401, x3399, x3298, x3366); fiat_np521_addcarryx_u32(&x3402, &x3403, x3401, x3300, x3368); fiat_np521_addcarryx_u32(&x3404, &x3405, x3403, x3302, x3370); fiat_np521_addcarryx_u32(&x3406, &x3407, x3405, x3304, x3372); fiat_np521_addcarryx_u32(&x3408, &x3409, x3407, x3306, x3374); fiat_np521_addcarryx_u32(&x3410, &x3411, x3409, x3308, x3376); fiat_np521_addcarryx_u32(&x3412, &x3413, x3411, x3310, x3378); fiat_np521_addcarryx_u32(&x3414, &x3415, x3413, x3312, x3380); fiat_np521_addcarryx_u32(&x3416, &x3417, x3415, x3314, x3382); x3418 = ((x3417 + (x3315 + (x3281 + x3217))) + (x3383 + x3319)); fiat_np521_subborrowx_u32(&x3419, &x3420, 0x0, x3386, UINT32_C(0x91386409)); fiat_np521_subborrowx_u32(&x3421, &x3422, x3420, x3388, UINT32_C(0xbb6fb71e)); fiat_np521_subborrowx_u32(&x3423, &x3424, x3422, x3390, UINT32_C(0x899c47ae)); fiat_np521_subborrowx_u32(&x3425, &x3426, x3424, x3392, UINT32_C(0x3bb5c9b8)); fiat_np521_subborrowx_u32(&x3427, &x3428, x3426, x3394, UINT32_C(0xf709a5d0)); fiat_np521_subborrowx_u32(&x3429, &x3430, x3428, x3396, UINT32_C(0x7fcc0148)); fiat_np521_subborrowx_u32(&x3431, &x3432, x3430, x3398, UINT32_C(0xbf2f966b)); fiat_np521_subborrowx_u32(&x3433, &x3434, x3432, x3400, UINT32_C(0x51868783)); fiat_np521_subborrowx_u32(&x3435, &x3436, x3434, x3402, UINT32_C(0xfffffffa)); fiat_np521_subborrowx_u32(&x3437, &x3438, x3436, x3404, UINT32_C(0xffffffff)); fiat_np521_subborrowx_u32(&x3439, &x3440, x3438, x3406, UINT32_C(0xffffffff)); fiat_np521_subborrowx_u32(&x3441, &x3442, x3440, x3408, UINT32_C(0xffffffff)); fiat_np521_subborrowx_u32(&x3443, &x3444, x3442, x3410, UINT32_C(0xffffffff)); fiat_np521_subborrowx_u32(&x3445, &x3446, x3444, x3412, UINT32_C(0xffffffff)); fiat_np521_subborrowx_u32(&x3447, &x3448, x3446, x3414, UINT32_C(0xffffffff)); fiat_np521_subborrowx_u32(&x3449, &x3450, x3448, x3416, UINT32_C(0xffffffff)); fiat_np521_subborrowx_u32(&x3451, &x3452, x3450, x3418, UINT16_C(0x1ff)); fiat_np521_subborrowx_u32(&x3453, &x3454, x3452, 0x0, 0x0); fiat_np521_cmovznz_u32(&x3455, x3454, x3419, x3386); fiat_np521_cmovznz_u32(&x3456, x3454, x3421, x3388); fiat_np521_cmovznz_u32(&x3457, x3454, x3423, x3390); fiat_np521_cmovznz_u32(&x3458, x3454, x3425, x3392); fiat_np521_cmovznz_u32(&x3459, x3454, x3427, x3394); fiat_np521_cmovznz_u32(&x3460, x3454, x3429, x3396); fiat_np521_cmovznz_u32(&x3461, x3454, x3431, x3398); fiat_np521_cmovznz_u32(&x3462, x3454, x3433, x3400); fiat_np521_cmovznz_u32(&x3463, x3454, x3435, x3402); fiat_np521_cmovznz_u32(&x3464, x3454, x3437, x3404); fiat_np521_cmovznz_u32(&x3465, x3454, x3439, x3406); fiat_np521_cmovznz_u32(&x3466, x3454, x3441, x3408); fiat_np521_cmovznz_u32(&x3467, x3454, x3443, x3410); fiat_np521_cmovznz_u32(&x3468, x3454, x3445, x3412); fiat_np521_cmovznz_u32(&x3469, x3454, x3447, x3414); fiat_np521_cmovznz_u32(&x3470, x3454, x3449, x3416); fiat_np521_cmovznz_u32(&x3471, x3454, x3451, x3418); out1[0] = x3455; out1[1] = x3456; out1[2] = x3457; out1[3] = x3458; out1[4] = x3459; out1[5] = x3460; out1[6] = x3461; out1[7] = x3462; out1[8] = x3463; out1[9] = x3464; out1[10] = x3465; out1[11] = x3466; out1[12] = x3467; out1[13] = x3468; out1[14] = x3469; out1[15] = x3470; out1[16] = x3471; } /* * The function fiat_np521_set_one returns the field element one in the Montgomery domain. * * Postconditions: * eval (from_montgomery out1) mod m = 1 mod m * 0 ≤ eval out1 < m * */ static void fiat_np521_set_one(fiat_np521_montgomery_domain_field_element out1) { out1[0] = UINT32_C(0xfb800000); out1[1] = UINT32_C(0x70b763cd); out1[2] = UINT32_C(0x28a24824); out1[3] = UINT32_C(0x23bb31dc); out1[4] = UINT32_C(0x17e2251b); out1[5] = UINT32_C(0x5b847b2d); out1[6] = UINT32_C(0xca4019ff); out1[7] = UINT32_C(0x3e206834); out1[8] = UINT32_C(0x2d73cbc); out1[9] = 0x0; out1[10] = 0x0; out1[11] = 0x0; out1[12] = 0x0; out1[13] = 0x0; out1[14] = 0x0; out1[15] = 0x0; out1[16] = 0x0; } /* * The function fiat_np521_msat returns the saturated representation of the prime modulus. * * Postconditions: * twos_complement_eval out1 = m * 0 ≤ eval out1 < m * * Output Bounds: * out1: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff]] */ static void fiat_np521_msat(uint32_t out1[18]) { out1[0] = UINT32_C(0x91386409); out1[1] = UINT32_C(0xbb6fb71e); out1[2] = UINT32_C(0x899c47ae); out1[3] = UINT32_C(0x3bb5c9b8); out1[4] = UINT32_C(0xf709a5d0); out1[5] = UINT32_C(0x7fcc0148); out1[6] = UINT32_C(0xbf2f966b); out1[7] = UINT32_C(0x51868783); out1[8] = UINT32_C(0xfffffffa); out1[9] = UINT32_C(0xffffffff); out1[10] = UINT32_C(0xffffffff); out1[11] = UINT32_C(0xffffffff); out1[12] = UINT32_C(0xffffffff); out1[13] = UINT32_C(0xffffffff); out1[14] = UINT32_C(0xffffffff); out1[15] = UINT32_C(0xffffffff); out1[16] = UINT16_C(0x1ff); out1[17] = 0x0; } /* * The function fiat_np521_divstep_precomp returns the precomputed value for Bernstein-Yang-inversion (in montgomery form). * * Postconditions: * eval (from_montgomery out1) = ⌊(m - 1) / 2⌋^(if ⌊log2 m⌋ + 1 < 46 then ⌊(49 * (⌊log2 m⌋ + 1) + 80) / 17⌋ else ⌊(49 * (⌊log2 m⌋ + 1) + 57) / 17⌋) * 0 ≤ eval out1 < m * * Output Bounds: * out1: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff]] */ static void fiat_np521_divstep_precomp(uint32_t out1[17]) { out1[0] = UINT32_C(0x9659cabd); out1[1] = UINT32_C(0xd2e6b274); out1[2] = UINT32_C(0x876caf82); out1[3] = UINT32_C(0x5e78ce74); out1[4] = UINT32_C(0x3063b3db); out1[5] = UINT32_C(0x3849b3f); out1[6] = UINT32_C(0xf19b8870); out1[7] = UINT32_C(0x864c68eb); out1[8] = UINT32_C(0x16248708); out1[9] = UINT32_C(0xedbce602); out1[10] = UINT32_C(0xb7f07b8e); out1[11] = UINT32_C(0x721f63bc); out1[12] = UINT32_C(0x62da93cf); out1[13] = UINT32_C(0x6c4f0d20); out1[14] = UINT32_C(0xafd209c1); out1[15] = UINT32_C(0x6f329bc7); out1[16] = UINT16_C(0x151); } /* * The function fiat_np521_divstep computes a divstep. * * Preconditions: * 0 ≤ eval arg4 < m * 0 ≤ eval arg5 < m * Postconditions: * out1 = (if 0 < arg1 ∧ (twos_complement_eval arg3) is odd then 1 - arg1 else 1 + arg1) * twos_complement_eval out2 = (if 0 < arg1 ∧ (twos_complement_eval arg3) is odd then twos_complement_eval arg3 else twos_complement_eval arg2) * twos_complement_eval out3 = (if 0 < arg1 ∧ (twos_complement_eval arg3) is odd then ⌊(twos_complement_eval arg3 - twos_complement_eval arg2) / 2⌋ else ⌊(twos_complement_eval arg3 + (twos_complement_eval arg3 mod 2) * twos_complement_eval arg2) / 2⌋) * eval (from_montgomery out4) mod m = (if 0 < arg1 ∧ (twos_complement_eval arg3) is odd then (2 * eval (from_montgomery arg5)) mod m else (2 * eval (from_montgomery arg4)) mod m) * eval (from_montgomery out5) mod m = (if 0 < arg1 ∧ (twos_complement_eval arg3) is odd then (eval (from_montgomery arg4) - eval (from_montgomery arg4)) mod m else (eval (from_montgomery arg5) + (twos_complement_eval arg3 mod 2) * eval (from_montgomery arg4)) mod m) * 0 ≤ eval out5 < m * 0 ≤ eval out5 < m * 0 ≤ eval out2 < m * 0 ≤ eval out3 < m * * Input Bounds: * arg1: [0x0 ~> 0xffffffff] * arg2: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff]] * arg3: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff]] * arg4: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff]] * arg5: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff]] * Output Bounds: * out1: [0x0 ~> 0xffffffff] * out2: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff]] * out3: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff]] * out4: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff]] * out5: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff]] */ static void fiat_np521_divstep(uint32_t* out1, uint32_t out2[18], uint32_t out3[18], uint32_t out4[17], uint32_t out5[17], uint32_t arg1, const uint32_t arg2[18], const uint32_t arg3[18], const uint32_t arg4[17], const uint32_t arg5[17]) { uint32_t x1; fiat_np521_uint1 x2; fiat_np521_uint1 x3; uint32_t x4; fiat_np521_uint1 x5; uint32_t x6; uint32_t x7; uint32_t x8; uint32_t x9; uint32_t x10; uint32_t x11; uint32_t x12; uint32_t x13; uint32_t x14; uint32_t x15; uint32_t x16; uint32_t x17; uint32_t x18; uint32_t x19; uint32_t x20; uint32_t x21; uint32_t x22; uint32_t x23; uint32_t x24; uint32_t x25; fiat_np521_uint1 x26; uint32_t x27; fiat_np521_uint1 x28; uint32_t x29; fiat_np521_uint1 x30; uint32_t x31; fiat_np521_uint1 x32; uint32_t x33; fiat_np521_uint1 x34; uint32_t x35; fiat_np521_uint1 x36; uint32_t x37; fiat_np521_uint1 x38; uint32_t x39; fiat_np521_uint1 x40; uint32_t x41; fiat_np521_uint1 x42; uint32_t x43; fiat_np521_uint1 x44; uint32_t x45; fiat_np521_uint1 x46; uint32_t x47; fiat_np521_uint1 x48; uint32_t x49; fiat_np521_uint1 x50; uint32_t x51; fiat_np521_uint1 x52; uint32_t x53; fiat_np521_uint1 x54; uint32_t x55; fiat_np521_uint1 x56; uint32_t x57; fiat_np521_uint1 x58; uint32_t x59; fiat_np521_uint1 x60; uint32_t x61; uint32_t x62; uint32_t x63; uint32_t x64; uint32_t x65; uint32_t x66; uint32_t x67; uint32_t x68; uint32_t x69; uint32_t x70; uint32_t x71; uint32_t x72; uint32_t x73; uint32_t x74; uint32_t x75; uint32_t x76; uint32_t x77; uint32_t x78; uint32_t x79; uint32_t x80; uint32_t x81; uint32_t x82; uint32_t x83; uint32_t x84; uint32_t x85; uint32_t x86; uint32_t x87; uint32_t x88; uint32_t x89; uint32_t x90; uint32_t x91; uint32_t x92; uint32_t x93; uint32_t x94; uint32_t x95; uint32_t x96; fiat_np521_uint1 x97; uint32_t x98; fiat_np521_uint1 x99; uint32_t x100; fiat_np521_uint1 x101; uint32_t x102; fiat_np521_uint1 x103; uint32_t x104; fiat_np521_uint1 x105; uint32_t x106; fiat_np521_uint1 x107; uint32_t x108; fiat_np521_uint1 x109; uint32_t x110; fiat_np521_uint1 x111; uint32_t x112; fiat_np521_uint1 x113; uint32_t x114; fiat_np521_uint1 x115; uint32_t x116; fiat_np521_uint1 x117; uint32_t x118; fiat_np521_uint1 x119; uint32_t x120; fiat_np521_uint1 x121; uint32_t x122; fiat_np521_uint1 x123; uint32_t x124; fiat_np521_uint1 x125; uint32_t x126; fiat_np521_uint1 x127; uint32_t x128; fiat_np521_uint1 x129; uint32_t x130; fiat_np521_uint1 x131; uint32_t x132; fiat_np521_uint1 x133; uint32_t x134; fiat_np521_uint1 x135; uint32_t x136; fiat_np521_uint1 x137; uint32_t x138; fiat_np521_uint1 x139; uint32_t x140; fiat_np521_uint1 x141; uint32_t x142; fiat_np521_uint1 x143; uint32_t x144; fiat_np521_uint1 x145; uint32_t x146; fiat_np521_uint1 x147; uint32_t x148; fiat_np521_uint1 x149; uint32_t x150; fiat_np521_uint1 x151; uint32_t x152; fiat_np521_uint1 x153; uint32_t x154; fiat_np521_uint1 x155; uint32_t x156; fiat_np521_uint1 x157; uint32_t x158; fiat_np521_uint1 x159; uint32_t x160; fiat_np521_uint1 x161; uint32_t x162; fiat_np521_uint1 x163; uint32_t x164; fiat_np521_uint1 x165; uint32_t x166; uint32_t x167; uint32_t x168; uint32_t x169; uint32_t x170; uint32_t x171; uint32_t x172; uint32_t x173; uint32_t x174; uint32_t x175; uint32_t x176; uint32_t x177; uint32_t x178; uint32_t x179; uint32_t x180; uint32_t x181; uint32_t x182; uint32_t x183; fiat_np521_uint1 x184; uint32_t x185; fiat_np521_uint1 x186; uint32_t x187; fiat_np521_uint1 x188; uint32_t x189; fiat_np521_uint1 x190; uint32_t x191; fiat_np521_uint1 x192; uint32_t x193; fiat_np521_uint1 x194; uint32_t x195; fiat_np521_uint1 x196; uint32_t x197; fiat_np521_uint1 x198; uint32_t x199; fiat_np521_uint1 x200; uint32_t x201; fiat_np521_uint1 x202; uint32_t x203; fiat_np521_uint1 x204; uint32_t x205; fiat_np521_uint1 x206; uint32_t x207; fiat_np521_uint1 x208; uint32_t x209; fiat_np521_uint1 x210; uint32_t x211; fiat_np521_uint1 x212; uint32_t x213; fiat_np521_uint1 x214; uint32_t x215; fiat_np521_uint1 x216; uint32_t x217; uint32_t x218; fiat_np521_uint1 x219; uint32_t x220; fiat_np521_uint1 x221; uint32_t x222; fiat_np521_uint1 x223; uint32_t x224; fiat_np521_uint1 x225; uint32_t x226; fiat_np521_uint1 x227; uint32_t x228; fiat_np521_uint1 x229; uint32_t x230; fiat_np521_uint1 x231; uint32_t x232; fiat_np521_uint1 x233; uint32_t x234; fiat_np521_uint1 x235; uint32_t x236; fiat_np521_uint1 x237; uint32_t x238; fiat_np521_uint1 x239; uint32_t x240; fiat_np521_uint1 x241; uint32_t x242; fiat_np521_uint1 x243; uint32_t x244; fiat_np521_uint1 x245; uint32_t x246; fiat_np521_uint1 x247; uint32_t x248; fiat_np521_uint1 x249; uint32_t x250; fiat_np521_uint1 x251; uint32_t x252; uint32_t x253; uint32_t x254; uint32_t x255; uint32_t x256; uint32_t x257; uint32_t x258; uint32_t x259; uint32_t x260; uint32_t x261; uint32_t x262; uint32_t x263; uint32_t x264; uint32_t x265; uint32_t x266; uint32_t x267; uint32_t x268; fiat_np521_uint1 x269; uint32_t x270; uint32_t x271; uint32_t x272; uint32_t x273; uint32_t x274; uint32_t x275; uint32_t x276; uint32_t x277; uint32_t x278; uint32_t x279; uint32_t x280; uint32_t x281; uint32_t x282; uint32_t x283; uint32_t x284; uint32_t x285; uint32_t x286; uint32_t x287; uint32_t x288; fiat_np521_uint1 x289; uint32_t x290; fiat_np521_uint1 x291; uint32_t x292; fiat_np521_uint1 x293; uint32_t x294; fiat_np521_uint1 x295; uint32_t x296; fiat_np521_uint1 x297; uint32_t x298; fiat_np521_uint1 x299; uint32_t x300; fiat_np521_uint1 x301; uint32_t x302; fiat_np521_uint1 x303; uint32_t x304; fiat_np521_uint1 x305; uint32_t x306; fiat_np521_uint1 x307; uint32_t x308; fiat_np521_uint1 x309; uint32_t x310; fiat_np521_uint1 x311; uint32_t x312; fiat_np521_uint1 x313; uint32_t x314; fiat_np521_uint1 x315; uint32_t x316; fiat_np521_uint1 x317; uint32_t x318; fiat_np521_uint1 x319; uint32_t x320; fiat_np521_uint1 x321; uint32_t x322; fiat_np521_uint1 x323; uint32_t x324; uint32_t x325; uint32_t x326; uint32_t x327; uint32_t x328; uint32_t x329; uint32_t x330; uint32_t x331; uint32_t x332; uint32_t x333; uint32_t x334; uint32_t x335; uint32_t x336; uint32_t x337; uint32_t x338; uint32_t x339; uint32_t x340; uint32_t x341; fiat_np521_uint1 x342; uint32_t x343; fiat_np521_uint1 x344; uint32_t x345; fiat_np521_uint1 x346; uint32_t x347; fiat_np521_uint1 x348; uint32_t x349; fiat_np521_uint1 x350; uint32_t x351; fiat_np521_uint1 x352; uint32_t x353; fiat_np521_uint1 x354; uint32_t x355; fiat_np521_uint1 x356; uint32_t x357; fiat_np521_uint1 x358; uint32_t x359; fiat_np521_uint1 x360; uint32_t x361; fiat_np521_uint1 x362; uint32_t x363; fiat_np521_uint1 x364; uint32_t x365; fiat_np521_uint1 x366; uint32_t x367; fiat_np521_uint1 x368; uint32_t x369; fiat_np521_uint1 x370; uint32_t x371; fiat_np521_uint1 x372; uint32_t x373; fiat_np521_uint1 x374; uint32_t x375; fiat_np521_uint1 x376; uint32_t x377; fiat_np521_uint1 x378; uint32_t x379; fiat_np521_uint1 x380; uint32_t x381; fiat_np521_uint1 x382; uint32_t x383; fiat_np521_uint1 x384; uint32_t x385; fiat_np521_uint1 x386; uint32_t x387; fiat_np521_uint1 x388; uint32_t x389; fiat_np521_uint1 x390; uint32_t x391; fiat_np521_uint1 x392; uint32_t x393; fiat_np521_uint1 x394; uint32_t x395; fiat_np521_uint1 x396; uint32_t x397; fiat_np521_uint1 x398; uint32_t x399; fiat_np521_uint1 x400; uint32_t x401; fiat_np521_uint1 x402; uint32_t x403; fiat_np521_uint1 x404; uint32_t x405; fiat_np521_uint1 x406; uint32_t x407; fiat_np521_uint1 x408; uint32_t x409; fiat_np521_uint1 x410; uint32_t x411; fiat_np521_uint1 x412; uint32_t x413; uint32_t x414; uint32_t x415; uint32_t x416; uint32_t x417; uint32_t x418; uint32_t x419; uint32_t x420; uint32_t x421; uint32_t x422; uint32_t x423; uint32_t x424; uint32_t x425; uint32_t x426; uint32_t x427; uint32_t x428; uint32_t x429; uint32_t x430; uint32_t x431; uint32_t x432; uint32_t x433; uint32_t x434; uint32_t x435; uint32_t x436; uint32_t x437; uint32_t x438; uint32_t x439; uint32_t x440; uint32_t x441; uint32_t x442; uint32_t x443; uint32_t x444; uint32_t x445; uint32_t x446; uint32_t x447; uint32_t x448; uint32_t x449; uint32_t x450; uint32_t x451; uint32_t x452; uint32_t x453; uint32_t x454; uint32_t x455; uint32_t x456; uint32_t x457; uint32_t x458; uint32_t x459; uint32_t x460; uint32_t x461; uint32_t x462; uint32_t x463; uint32_t x464; fiat_np521_addcarryx_u32(&x1, &x2, 0x0, (~arg1), 0x1); x3 = (fiat_np521_uint1)((fiat_np521_uint1)(x1 >> 31) & (fiat_np521_uint1)((arg3[0]) & 0x1)); fiat_np521_addcarryx_u32(&x4, &x5, 0x0, (~arg1), 0x1); fiat_np521_cmovznz_u32(&x6, x3, arg1, x4); fiat_np521_cmovznz_u32(&x7, x3, (arg2[0]), (arg3[0])); fiat_np521_cmovznz_u32(&x8, x3, (arg2[1]), (arg3[1])); fiat_np521_cmovznz_u32(&x9, x3, (arg2[2]), (arg3[2])); fiat_np521_cmovznz_u32(&x10, x3, (arg2[3]), (arg3[3])); fiat_np521_cmovznz_u32(&x11, x3, (arg2[4]), (arg3[4])); fiat_np521_cmovznz_u32(&x12, x3, (arg2[5]), (arg3[5])); fiat_np521_cmovznz_u32(&x13, x3, (arg2[6]), (arg3[6])); fiat_np521_cmovznz_u32(&x14, x3, (arg2[7]), (arg3[7])); fiat_np521_cmovznz_u32(&x15, x3, (arg2[8]), (arg3[8])); fiat_np521_cmovznz_u32(&x16, x3, (arg2[9]), (arg3[9])); fiat_np521_cmovznz_u32(&x17, x3, (arg2[10]), (arg3[10])); fiat_np521_cmovznz_u32(&x18, x3, (arg2[11]), (arg3[11])); fiat_np521_cmovznz_u32(&x19, x3, (arg2[12]), (arg3[12])); fiat_np521_cmovznz_u32(&x20, x3, (arg2[13]), (arg3[13])); fiat_np521_cmovznz_u32(&x21, x3, (arg2[14]), (arg3[14])); fiat_np521_cmovznz_u32(&x22, x3, (arg2[15]), (arg3[15])); fiat_np521_cmovznz_u32(&x23, x3, (arg2[16]), (arg3[16])); fiat_np521_cmovznz_u32(&x24, x3, (arg2[17]), (arg3[17])); fiat_np521_addcarryx_u32(&x25, &x26, 0x0, 0x1, (~(arg2[0]))); fiat_np521_addcarryx_u32(&x27, &x28, x26, 0x0, (~(arg2[1]))); fiat_np521_addcarryx_u32(&x29, &x30, x28, 0x0, (~(arg2[2]))); fiat_np521_addcarryx_u32(&x31, &x32, x30, 0x0, (~(arg2[3]))); fiat_np521_addcarryx_u32(&x33, &x34, x32, 0x0, (~(arg2[4]))); fiat_np521_addcarryx_u32(&x35, &x36, x34, 0x0, (~(arg2[5]))); fiat_np521_addcarryx_u32(&x37, &x38, x36, 0x0, (~(arg2[6]))); fiat_np521_addcarryx_u32(&x39, &x40, x38, 0x0, (~(arg2[7]))); fiat_np521_addcarryx_u32(&x41, &x42, x40, 0x0, (~(arg2[8]))); fiat_np521_addcarryx_u32(&x43, &x44, x42, 0x0, (~(arg2[9]))); fiat_np521_addcarryx_u32(&x45, &x46, x44, 0x0, (~(arg2[10]))); fiat_np521_addcarryx_u32(&x47, &x48, x46, 0x0, (~(arg2[11]))); fiat_np521_addcarryx_u32(&x49, &x50, x48, 0x0, (~(arg2[12]))); fiat_np521_addcarryx_u32(&x51, &x52, x50, 0x0, (~(arg2[13]))); fiat_np521_addcarryx_u32(&x53, &x54, x52, 0x0, (~(arg2[14]))); fiat_np521_addcarryx_u32(&x55, &x56, x54, 0x0, (~(arg2[15]))); fiat_np521_addcarryx_u32(&x57, &x58, x56, 0x0, (~(arg2[16]))); fiat_np521_addcarryx_u32(&x59, &x60, x58, 0x0, (~(arg2[17]))); fiat_np521_cmovznz_u32(&x61, x3, (arg3[0]), x25); fiat_np521_cmovznz_u32(&x62, x3, (arg3[1]), x27); fiat_np521_cmovznz_u32(&x63, x3, (arg3[2]), x29); fiat_np521_cmovznz_u32(&x64, x3, (arg3[3]), x31); fiat_np521_cmovznz_u32(&x65, x3, (arg3[4]), x33); fiat_np521_cmovznz_u32(&x66, x3, (arg3[5]), x35); fiat_np521_cmovznz_u32(&x67, x3, (arg3[6]), x37); fiat_np521_cmovznz_u32(&x68, x3, (arg3[7]), x39); fiat_np521_cmovznz_u32(&x69, x3, (arg3[8]), x41); fiat_np521_cmovznz_u32(&x70, x3, (arg3[9]), x43); fiat_np521_cmovznz_u32(&x71, x3, (arg3[10]), x45); fiat_np521_cmovznz_u32(&x72, x3, (arg3[11]), x47); fiat_np521_cmovznz_u32(&x73, x3, (arg3[12]), x49); fiat_np521_cmovznz_u32(&x74, x3, (arg3[13]), x51); fiat_np521_cmovznz_u32(&x75, x3, (arg3[14]), x53); fiat_np521_cmovznz_u32(&x76, x3, (arg3[15]), x55); fiat_np521_cmovznz_u32(&x77, x3, (arg3[16]), x57); fiat_np521_cmovznz_u32(&x78, x3, (arg3[17]), x59); fiat_np521_cmovznz_u32(&x79, x3, (arg4[0]), (arg5[0])); fiat_np521_cmovznz_u32(&x80, x3, (arg4[1]), (arg5[1])); fiat_np521_cmovznz_u32(&x81, x3, (arg4[2]), (arg5[2])); fiat_np521_cmovznz_u32(&x82, x3, (arg4[3]), (arg5[3])); fiat_np521_cmovznz_u32(&x83, x3, (arg4[4]), (arg5[4])); fiat_np521_cmovznz_u32(&x84, x3, (arg4[5]), (arg5[5])); fiat_np521_cmovznz_u32(&x85, x3, (arg4[6]), (arg5[6])); fiat_np521_cmovznz_u32(&x86, x3, (arg4[7]), (arg5[7])); fiat_np521_cmovznz_u32(&x87, x3, (arg4[8]), (arg5[8])); fiat_np521_cmovznz_u32(&x88, x3, (arg4[9]), (arg5[9])); fiat_np521_cmovznz_u32(&x89, x3, (arg4[10]), (arg5[10])); fiat_np521_cmovznz_u32(&x90, x3, (arg4[11]), (arg5[11])); fiat_np521_cmovznz_u32(&x91, x3, (arg4[12]), (arg5[12])); fiat_np521_cmovznz_u32(&x92, x3, (arg4[13]), (arg5[13])); fiat_np521_cmovznz_u32(&x93, x3, (arg4[14]), (arg5[14])); fiat_np521_cmovznz_u32(&x94, x3, (arg4[15]), (arg5[15])); fiat_np521_cmovznz_u32(&x95, x3, (arg4[16]), (arg5[16])); fiat_np521_addcarryx_u32(&x96, &x97, 0x0, x79, x79); fiat_np521_addcarryx_u32(&x98, &x99, x97, x80, x80); fiat_np521_addcarryx_u32(&x100, &x101, x99, x81, x81); fiat_np521_addcarryx_u32(&x102, &x103, x101, x82, x82); fiat_np521_addcarryx_u32(&x104, &x105, x103, x83, x83); fiat_np521_addcarryx_u32(&x106, &x107, x105, x84, x84); fiat_np521_addcarryx_u32(&x108, &x109, x107, x85, x85); fiat_np521_addcarryx_u32(&x110, &x111, x109, x86, x86); fiat_np521_addcarryx_u32(&x112, &x113, x111, x87, x87); fiat_np521_addcarryx_u32(&x114, &x115, x113, x88, x88); fiat_np521_addcarryx_u32(&x116, &x117, x115, x89, x89); fiat_np521_addcarryx_u32(&x118, &x119, x117, x90, x90); fiat_np521_addcarryx_u32(&x120, &x121, x119, x91, x91); fiat_np521_addcarryx_u32(&x122, &x123, x121, x92, x92); fiat_np521_addcarryx_u32(&x124, &x125, x123, x93, x93); fiat_np521_addcarryx_u32(&x126, &x127, x125, x94, x94); fiat_np521_addcarryx_u32(&x128, &x129, x127, x95, x95); fiat_np521_subborrowx_u32(&x130, &x131, 0x0, x96, UINT32_C(0x91386409)); fiat_np521_subborrowx_u32(&x132, &x133, x131, x98, UINT32_C(0xbb6fb71e)); fiat_np521_subborrowx_u32(&x134, &x135, x133, x100, UINT32_C(0x899c47ae)); fiat_np521_subborrowx_u32(&x136, &x137, x135, x102, UINT32_C(0x3bb5c9b8)); fiat_np521_subborrowx_u32(&x138, &x139, x137, x104, UINT32_C(0xf709a5d0)); fiat_np521_subborrowx_u32(&x140, &x141, x139, x106, UINT32_C(0x7fcc0148)); fiat_np521_subborrowx_u32(&x142, &x143, x141, x108, UINT32_C(0xbf2f966b)); fiat_np521_subborrowx_u32(&x144, &x145, x143, x110, UINT32_C(0x51868783)); fiat_np521_subborrowx_u32(&x146, &x147, x145, x112, UINT32_C(0xfffffffa)); fiat_np521_subborrowx_u32(&x148, &x149, x147, x114, UINT32_C(0xffffffff)); fiat_np521_subborrowx_u32(&x150, &x151, x149, x116, UINT32_C(0xffffffff)); fiat_np521_subborrowx_u32(&x152, &x153, x151, x118, UINT32_C(0xffffffff)); fiat_np521_subborrowx_u32(&x154, &x155, x153, x120, UINT32_C(0xffffffff)); fiat_np521_subborrowx_u32(&x156, &x157, x155, x122, UINT32_C(0xffffffff)); fiat_np521_subborrowx_u32(&x158, &x159, x157, x124, UINT32_C(0xffffffff)); fiat_np521_subborrowx_u32(&x160, &x161, x159, x126, UINT32_C(0xffffffff)); fiat_np521_subborrowx_u32(&x162, &x163, x161, x128, UINT16_C(0x1ff)); fiat_np521_subborrowx_u32(&x164, &x165, x163, x129, 0x0); x166 = (arg4[16]); x167 = (arg4[15]); x168 = (arg4[14]); x169 = (arg4[13]); x170 = (arg4[12]); x171 = (arg4[11]); x172 = (arg4[10]); x173 = (arg4[9]); x174 = (arg4[8]); x175 = (arg4[7]); x176 = (arg4[6]); x177 = (arg4[5]); x178 = (arg4[4]); x179 = (arg4[3]); x180 = (arg4[2]); x181 = (arg4[1]); x182 = (arg4[0]); fiat_np521_subborrowx_u32(&x183, &x184, 0x0, 0x0, x182); fiat_np521_subborrowx_u32(&x185, &x186, x184, 0x0, x181); fiat_np521_subborrowx_u32(&x187, &x188, x186, 0x0, x180); fiat_np521_subborrowx_u32(&x189, &x190, x188, 0x0, x179); fiat_np521_subborrowx_u32(&x191, &x192, x190, 0x0, x178); fiat_np521_subborrowx_u32(&x193, &x194, x192, 0x0, x177); fiat_np521_subborrowx_u32(&x195, &x196, x194, 0x0, x176); fiat_np521_subborrowx_u32(&x197, &x198, x196, 0x0, x175); fiat_np521_subborrowx_u32(&x199, &x200, x198, 0x0, x174); fiat_np521_subborrowx_u32(&x201, &x202, x200, 0x0, x173); fiat_np521_subborrowx_u32(&x203, &x204, x202, 0x0, x172); fiat_np521_subborrowx_u32(&x205, &x206, x204, 0x0, x171); fiat_np521_subborrowx_u32(&x207, &x208, x206, 0x0, x170); fiat_np521_subborrowx_u32(&x209, &x210, x208, 0x0, x169); fiat_np521_subborrowx_u32(&x211, &x212, x210, 0x0, x168); fiat_np521_subborrowx_u32(&x213, &x214, x212, 0x0, x167); fiat_np521_subborrowx_u32(&x215, &x216, x214, 0x0, x166); fiat_np521_cmovznz_u32(&x217, x216, 0x0, UINT32_C(0xffffffff)); fiat_np521_addcarryx_u32(&x218, &x219, 0x0, x183, (x217 & UINT32_C(0x91386409))); fiat_np521_addcarryx_u32(&x220, &x221, x219, x185, (x217 & UINT32_C(0xbb6fb71e))); fiat_np521_addcarryx_u32(&x222, &x223, x221, x187, (x217 & UINT32_C(0x899c47ae))); fiat_np521_addcarryx_u32(&x224, &x225, x223, x189, (x217 & UINT32_C(0x3bb5c9b8))); fiat_np521_addcarryx_u32(&x226, &x227, x225, x191, (x217 & UINT32_C(0xf709a5d0))); fiat_np521_addcarryx_u32(&x228, &x229, x227, x193, (x217 & UINT32_C(0x7fcc0148))); fiat_np521_addcarryx_u32(&x230, &x231, x229, x195, (x217 & UINT32_C(0xbf2f966b))); fiat_np521_addcarryx_u32(&x232, &x233, x231, x197, (x217 & UINT32_C(0x51868783))); fiat_np521_addcarryx_u32(&x234, &x235, x233, x199, (x217 & UINT32_C(0xfffffffa))); fiat_np521_addcarryx_u32(&x236, &x237, x235, x201, x217); fiat_np521_addcarryx_u32(&x238, &x239, x237, x203, x217); fiat_np521_addcarryx_u32(&x240, &x241, x239, x205, x217); fiat_np521_addcarryx_u32(&x242, &x243, x241, x207, x217); fiat_np521_addcarryx_u32(&x244, &x245, x243, x209, x217); fiat_np521_addcarryx_u32(&x246, &x247, x245, x211, x217); fiat_np521_addcarryx_u32(&x248, &x249, x247, x213, x217); fiat_np521_addcarryx_u32(&x250, &x251, x249, x215, (x217 & UINT16_C(0x1ff))); fiat_np521_cmovznz_u32(&x252, x3, (arg5[0]), x218); fiat_np521_cmovznz_u32(&x253, x3, (arg5[1]), x220); fiat_np521_cmovznz_u32(&x254, x3, (arg5[2]), x222); fiat_np521_cmovznz_u32(&x255, x3, (arg5[3]), x224); fiat_np521_cmovznz_u32(&x256, x3, (arg5[4]), x226); fiat_np521_cmovznz_u32(&x257, x3, (arg5[5]), x228); fiat_np521_cmovznz_u32(&x258, x3, (arg5[6]), x230); fiat_np521_cmovznz_u32(&x259, x3, (arg5[7]), x232); fiat_np521_cmovznz_u32(&x260, x3, (arg5[8]), x234); fiat_np521_cmovznz_u32(&x261, x3, (arg5[9]), x236); fiat_np521_cmovznz_u32(&x262, x3, (arg5[10]), x238); fiat_np521_cmovznz_u32(&x263, x3, (arg5[11]), x240); fiat_np521_cmovznz_u32(&x264, x3, (arg5[12]), x242); fiat_np521_cmovznz_u32(&x265, x3, (arg5[13]), x244); fiat_np521_cmovznz_u32(&x266, x3, (arg5[14]), x246); fiat_np521_cmovznz_u32(&x267, x3, (arg5[15]), x248); fiat_np521_cmovznz_u32(&x268, x3, (arg5[16]), x250); x269 = (fiat_np521_uint1)(x61 & 0x1); fiat_np521_cmovznz_u32(&x270, x269, 0x0, x7); fiat_np521_cmovznz_u32(&x271, x269, 0x0, x8); fiat_np521_cmovznz_u32(&x272, x269, 0x0, x9); fiat_np521_cmovznz_u32(&x273, x269, 0x0, x10); fiat_np521_cmovznz_u32(&x274, x269, 0x0, x11); fiat_np521_cmovznz_u32(&x275, x269, 0x0, x12); fiat_np521_cmovznz_u32(&x276, x269, 0x0, x13); fiat_np521_cmovznz_u32(&x277, x269, 0x0, x14); fiat_np521_cmovznz_u32(&x278, x269, 0x0, x15); fiat_np521_cmovznz_u32(&x279, x269, 0x0, x16); fiat_np521_cmovznz_u32(&x280, x269, 0x0, x17); fiat_np521_cmovznz_u32(&x281, x269, 0x0, x18); fiat_np521_cmovznz_u32(&x282, x269, 0x0, x19); fiat_np521_cmovznz_u32(&x283, x269, 0x0, x20); fiat_np521_cmovznz_u32(&x284, x269, 0x0, x21); fiat_np521_cmovznz_u32(&x285, x269, 0x0, x22); fiat_np521_cmovznz_u32(&x286, x269, 0x0, x23); fiat_np521_cmovznz_u32(&x287, x269, 0x0, x24); fiat_np521_addcarryx_u32(&x288, &x289, 0x0, x61, x270); fiat_np521_addcarryx_u32(&x290, &x291, x289, x62, x271); fiat_np521_addcarryx_u32(&x292, &x293, x291, x63, x272); fiat_np521_addcarryx_u32(&x294, &x295, x293, x64, x273); fiat_np521_addcarryx_u32(&x296, &x297, x295, x65, x274); fiat_np521_addcarryx_u32(&x298, &x299, x297, x66, x275); fiat_np521_addcarryx_u32(&x300, &x301, x299, x67, x276); fiat_np521_addcarryx_u32(&x302, &x303, x301, x68, x277); fiat_np521_addcarryx_u32(&x304, &x305, x303, x69, x278); fiat_np521_addcarryx_u32(&x306, &x307, x305, x70, x279); fiat_np521_addcarryx_u32(&x308, &x309, x307, x71, x280); fiat_np521_addcarryx_u32(&x310, &x311, x309, x72, x281); fiat_np521_addcarryx_u32(&x312, &x313, x311, x73, x282); fiat_np521_addcarryx_u32(&x314, &x315, x313, x74, x283); fiat_np521_addcarryx_u32(&x316, &x317, x315, x75, x284); fiat_np521_addcarryx_u32(&x318, &x319, x317, x76, x285); fiat_np521_addcarryx_u32(&x320, &x321, x319, x77, x286); fiat_np521_addcarryx_u32(&x322, &x323, x321, x78, x287); fiat_np521_cmovznz_u32(&x324, x269, 0x0, x79); fiat_np521_cmovznz_u32(&x325, x269, 0x0, x80); fiat_np521_cmovznz_u32(&x326, x269, 0x0, x81); fiat_np521_cmovznz_u32(&x327, x269, 0x0, x82); fiat_np521_cmovznz_u32(&x328, x269, 0x0, x83); fiat_np521_cmovznz_u32(&x329, x269, 0x0, x84); fiat_np521_cmovznz_u32(&x330, x269, 0x0, x85); fiat_np521_cmovznz_u32(&x331, x269, 0x0, x86); fiat_np521_cmovznz_u32(&x332, x269, 0x0, x87); fiat_np521_cmovznz_u32(&x333, x269, 0x0, x88); fiat_np521_cmovznz_u32(&x334, x269, 0x0, x89); fiat_np521_cmovznz_u32(&x335, x269, 0x0, x90); fiat_np521_cmovznz_u32(&x336, x269, 0x0, x91); fiat_np521_cmovznz_u32(&x337, x269, 0x0, x92); fiat_np521_cmovznz_u32(&x338, x269, 0x0, x93); fiat_np521_cmovznz_u32(&x339, x269, 0x0, x94); fiat_np521_cmovznz_u32(&x340, x269, 0x0, x95); fiat_np521_addcarryx_u32(&x341, &x342, 0x0, x252, x324); fiat_np521_addcarryx_u32(&x343, &x344, x342, x253, x325); fiat_np521_addcarryx_u32(&x345, &x346, x344, x254, x326); fiat_np521_addcarryx_u32(&x347, &x348, x346, x255, x327); fiat_np521_addcarryx_u32(&x349, &x350, x348, x256, x328); fiat_np521_addcarryx_u32(&x351, &x352, x350, x257, x329); fiat_np521_addcarryx_u32(&x353, &x354, x352, x258, x330); fiat_np521_addcarryx_u32(&x355, &x356, x354, x259, x331); fiat_np521_addcarryx_u32(&x357, &x358, x356, x260, x332); fiat_np521_addcarryx_u32(&x359, &x360, x358, x261, x333); fiat_np521_addcarryx_u32(&x361, &x362, x360, x262, x334); fiat_np521_addcarryx_u32(&x363, &x364, x362, x263, x335); fiat_np521_addcarryx_u32(&x365, &x366, x364, x264, x336); fiat_np521_addcarryx_u32(&x367, &x368, x366, x265, x337); fiat_np521_addcarryx_u32(&x369, &x370, x368, x266, x338); fiat_np521_addcarryx_u32(&x371, &x372, x370, x267, x339); fiat_np521_addcarryx_u32(&x373, &x374, x372, x268, x340); fiat_np521_subborrowx_u32(&x375, &x376, 0x0, x341, UINT32_C(0x91386409)); fiat_np521_subborrowx_u32(&x377, &x378, x376, x343, UINT32_C(0xbb6fb71e)); fiat_np521_subborrowx_u32(&x379, &x380, x378, x345, UINT32_C(0x899c47ae)); fiat_np521_subborrowx_u32(&x381, &x382, x380, x347, UINT32_C(0x3bb5c9b8)); fiat_np521_subborrowx_u32(&x383, &x384, x382, x349, UINT32_C(0xf709a5d0)); fiat_np521_subborrowx_u32(&x385, &x386, x384, x351, UINT32_C(0x7fcc0148)); fiat_np521_subborrowx_u32(&x387, &x388, x386, x353, UINT32_C(0xbf2f966b)); fiat_np521_subborrowx_u32(&x389, &x390, x388, x355, UINT32_C(0x51868783)); fiat_np521_subborrowx_u32(&x391, &x392, x390, x357, UINT32_C(0xfffffffa)); fiat_np521_subborrowx_u32(&x393, &x394, x392, x359, UINT32_C(0xffffffff)); fiat_np521_subborrowx_u32(&x395, &x396, x394, x361, UINT32_C(0xffffffff)); fiat_np521_subborrowx_u32(&x397, &x398, x396, x363, UINT32_C(0xffffffff)); fiat_np521_subborrowx_u32(&x399, &x400, x398, x365, UINT32_C(0xffffffff)); fiat_np521_subborrowx_u32(&x401, &x402, x400, x367, UINT32_C(0xffffffff)); fiat_np521_subborrowx_u32(&x403, &x404, x402, x369, UINT32_C(0xffffffff)); fiat_np521_subborrowx_u32(&x405, &x406, x404, x371, UINT32_C(0xffffffff)); fiat_np521_subborrowx_u32(&x407, &x408, x406, x373, UINT16_C(0x1ff)); fiat_np521_subborrowx_u32(&x409, &x410, x408, x374, 0x0); fiat_np521_addcarryx_u32(&x411, &x412, 0x0, x6, 0x1); x413 = ((x288 >> 1) | ((x290 << 31) & UINT32_C(0xffffffff))); x414 = ((x290 >> 1) | ((x292 << 31) & UINT32_C(0xffffffff))); x415 = ((x292 >> 1) | ((x294 << 31) & UINT32_C(0xffffffff))); x416 = ((x294 >> 1) | ((x296 << 31) & UINT32_C(0xffffffff))); x417 = ((x296 >> 1) | ((x298 << 31) & UINT32_C(0xffffffff))); x418 = ((x298 >> 1) | ((x300 << 31) & UINT32_C(0xffffffff))); x419 = ((x300 >> 1) | ((x302 << 31) & UINT32_C(0xffffffff))); x420 = ((x302 >> 1) | ((x304 << 31) & UINT32_C(0xffffffff))); x421 = ((x304 >> 1) | ((x306 << 31) & UINT32_C(0xffffffff))); x422 = ((x306 >> 1) | ((x308 << 31) & UINT32_C(0xffffffff))); x423 = ((x308 >> 1) | ((x310 << 31) & UINT32_C(0xffffffff))); x424 = ((x310 >> 1) | ((x312 << 31) & UINT32_C(0xffffffff))); x425 = ((x312 >> 1) | ((x314 << 31) & UINT32_C(0xffffffff))); x426 = ((x314 >> 1) | ((x316 << 31) & UINT32_C(0xffffffff))); x427 = ((x316 >> 1) | ((x318 << 31) & UINT32_C(0xffffffff))); x428 = ((x318 >> 1) | ((x320 << 31) & UINT32_C(0xffffffff))); x429 = ((x320 >> 1) | ((x322 << 31) & UINT32_C(0xffffffff))); x430 = ((x322 & UINT32_C(0x80000000)) | (x322 >> 1)); fiat_np521_cmovznz_u32(&x431, x165, x130, x96); fiat_np521_cmovznz_u32(&x432, x165, x132, x98); fiat_np521_cmovznz_u32(&x433, x165, x134, x100); fiat_np521_cmovznz_u32(&x434, x165, x136, x102); fiat_np521_cmovznz_u32(&x435, x165, x138, x104); fiat_np521_cmovznz_u32(&x436, x165, x140, x106); fiat_np521_cmovznz_u32(&x437, x165, x142, x108); fiat_np521_cmovznz_u32(&x438, x165, x144, x110); fiat_np521_cmovznz_u32(&x439, x165, x146, x112); fiat_np521_cmovznz_u32(&x440, x165, x148, x114); fiat_np521_cmovznz_u32(&x441, x165, x150, x116); fiat_np521_cmovznz_u32(&x442, x165, x152, x118); fiat_np521_cmovznz_u32(&x443, x165, x154, x120); fiat_np521_cmovznz_u32(&x444, x165, x156, x122); fiat_np521_cmovznz_u32(&x445, x165, x158, x124); fiat_np521_cmovznz_u32(&x446, x165, x160, x126); fiat_np521_cmovznz_u32(&x447, x165, x162, x128); fiat_np521_cmovznz_u32(&x448, x410, x375, x341); fiat_np521_cmovznz_u32(&x449, x410, x377, x343); fiat_np521_cmovznz_u32(&x450, x410, x379, x345); fiat_np521_cmovznz_u32(&x451, x410, x381, x347); fiat_np521_cmovznz_u32(&x452, x410, x383, x349); fiat_np521_cmovznz_u32(&x453, x410, x385, x351); fiat_np521_cmovznz_u32(&x454, x410, x387, x353); fiat_np521_cmovznz_u32(&x455, x410, x389, x355); fiat_np521_cmovznz_u32(&x456, x410, x391, x357); fiat_np521_cmovznz_u32(&x457, x410, x393, x359); fiat_np521_cmovznz_u32(&x458, x410, x395, x361); fiat_np521_cmovznz_u32(&x459, x410, x397, x363); fiat_np521_cmovznz_u32(&x460, x410, x399, x365); fiat_np521_cmovznz_u32(&x461, x410, x401, x367); fiat_np521_cmovznz_u32(&x462, x410, x403, x369); fiat_np521_cmovznz_u32(&x463, x410, x405, x371); fiat_np521_cmovznz_u32(&x464, x410, x407, x373); *out1 = x411; out2[0] = x7; out2[1] = x8; out2[2] = x9; out2[3] = x10; out2[4] = x11; out2[5] = x12; out2[6] = x13; out2[7] = x14; out2[8] = x15; out2[9] = x16; out2[10] = x17; out2[11] = x18; out2[12] = x19; out2[13] = x20; out2[14] = x21; out2[15] = x22; out2[16] = x23; out2[17] = x24; out3[0] = x413; out3[1] = x414; out3[2] = x415; out3[3] = x416; out3[4] = x417; out3[5] = x418; out3[6] = x419; out3[7] = x420; out3[8] = x421; out3[9] = x422; out3[10] = x423; out3[11] = x424; out3[12] = x425; out3[13] = x426; out3[14] = x427; out3[15] = x428; out3[16] = x429; out3[17] = x430; out4[0] = x431; out4[1] = x432; out4[2] = x433; out4[3] = x434; out4[4] = x435; out4[5] = x436; out4[6] = x437; out4[7] = x438; out4[8] = x439; out4[9] = x440; out4[10] = x441; out4[11] = x442; out4[12] = x443; out4[13] = x444; out4[14] = x445; out4[15] = x446; out4[16] = x447; out5[0] = x448; out5[1] = x449; out5[2] = x450; out5[3] = x451; out5[4] = x452; out5[5] = x453; out5[6] = x454; out5[7] = x455; out5[8] = x456; out5[9] = x457; out5[10] = x458; out5[11] = x459; out5[12] = x460; out5[13] = x461; out5[14] = x462; out5[15] = x463; out5[16] = x464; } /* * The function fiat_np521_to_bytes serializes a field element NOT in the Montgomery domain to bytes in little-endian order. * * Preconditions: * 0 ≤ eval arg1 < m * Postconditions: * out1 = map (λ x, ⌊((eval arg1 mod m) mod 2^(8 * (x + 1))) / 2^(8 * x)⌋) [0..65] * * Input Bounds: * arg1: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0x1ff]] * Output Bounds: * out1: [[0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0x1]] */ static void fiat_np521_to_bytes(uint8_t out1[66], const uint32_t arg1[17]) { uint32_t x1; uint32_t x2; uint32_t x3; uint32_t x4; uint32_t x5; uint32_t x6; uint32_t x7; uint32_t x8; uint32_t x9; uint32_t x10; uint32_t x11; uint32_t x12; uint32_t x13; uint32_t x14; uint32_t x15; uint32_t x16; uint32_t x17; uint8_t x18; uint32_t x19; uint8_t x20; uint32_t x21; uint8_t x22; uint8_t x23; uint8_t x24; uint32_t x25; uint8_t x26; uint32_t x27; uint8_t x28; uint8_t x29; uint8_t x30; uint32_t x31; uint8_t x32; uint32_t x33; uint8_t x34; uint8_t x35; uint8_t x36; uint32_t x37; uint8_t x38; uint32_t x39; uint8_t x40; uint8_t x41; uint8_t x42; uint32_t x43; uint8_t x44; uint32_t x45; uint8_t x46; uint8_t x47; uint8_t x48; uint32_t x49; uint8_t x50; uint32_t x51; uint8_t x52; uint8_t x53; uint8_t x54; uint32_t x55; uint8_t x56; uint32_t x57; uint8_t x58; uint8_t x59; uint8_t x60; uint32_t x61; uint8_t x62; uint32_t x63; uint8_t x64; uint8_t x65; uint8_t x66; uint32_t x67; uint8_t x68; uint32_t x69; uint8_t x70; uint8_t x71; uint8_t x72; uint32_t x73; uint8_t x74; uint32_t x75; uint8_t x76; uint8_t x77; uint8_t x78; uint32_t x79; uint8_t x80; uint32_t x81; uint8_t x82; uint8_t x83; uint8_t x84; uint32_t x85; uint8_t x86; uint32_t x87; uint8_t x88; uint8_t x89; uint8_t x90; uint32_t x91; uint8_t x92; uint32_t x93; uint8_t x94; uint8_t x95; uint8_t x96; uint32_t x97; uint8_t x98; uint32_t x99; uint8_t x100; uint8_t x101; uint8_t x102; uint32_t x103; uint8_t x104; uint32_t x105; uint8_t x106; uint8_t x107; uint8_t x108; uint32_t x109; uint8_t x110; uint32_t x111; uint8_t x112; uint8_t x113; uint8_t x114; fiat_np521_uint1 x115; x1 = (arg1[16]); x2 = (arg1[15]); x3 = (arg1[14]); x4 = (arg1[13]); x5 = (arg1[12]); x6 = (arg1[11]); x7 = (arg1[10]); x8 = (arg1[9]); x9 = (arg1[8]); x10 = (arg1[7]); x11 = (arg1[6]); x12 = (arg1[5]); x13 = (arg1[4]); x14 = (arg1[3]); x15 = (arg1[2]); x16 = (arg1[1]); x17 = (arg1[0]); x18 = (uint8_t)(x17 & UINT8_C(0xff)); x19 = (x17 >> 8); x20 = (uint8_t)(x19 & UINT8_C(0xff)); x21 = (x19 >> 8); x22 = (uint8_t)(x21 & UINT8_C(0xff)); x23 = (uint8_t)(x21 >> 8); x24 = (uint8_t)(x16 & UINT8_C(0xff)); x25 = (x16 >> 8); x26 = (uint8_t)(x25 & UINT8_C(0xff)); x27 = (x25 >> 8); x28 = (uint8_t)(x27 & UINT8_C(0xff)); x29 = (uint8_t)(x27 >> 8); x30 = (uint8_t)(x15 & UINT8_C(0xff)); x31 = (x15 >> 8); x32 = (uint8_t)(x31 & UINT8_C(0xff)); x33 = (x31 >> 8); x34 = (uint8_t)(x33 & UINT8_C(0xff)); x35 = (uint8_t)(x33 >> 8); x36 = (uint8_t)(x14 & UINT8_C(0xff)); x37 = (x14 >> 8); x38 = (uint8_t)(x37 & UINT8_C(0xff)); x39 = (x37 >> 8); x40 = (uint8_t)(x39 & UINT8_C(0xff)); x41 = (uint8_t)(x39 >> 8); x42 = (uint8_t)(x13 & UINT8_C(0xff)); x43 = (x13 >> 8); x44 = (uint8_t)(x43 & UINT8_C(0xff)); x45 = (x43 >> 8); x46 = (uint8_t)(x45 & UINT8_C(0xff)); x47 = (uint8_t)(x45 >> 8); x48 = (uint8_t)(x12 & UINT8_C(0xff)); x49 = (x12 >> 8); x50 = (uint8_t)(x49 & UINT8_C(0xff)); x51 = (x49 >> 8); x52 = (uint8_t)(x51 & UINT8_C(0xff)); x53 = (uint8_t)(x51 >> 8); x54 = (uint8_t)(x11 & UINT8_C(0xff)); x55 = (x11 >> 8); x56 = (uint8_t)(x55 & UINT8_C(0xff)); x57 = (x55 >> 8); x58 = (uint8_t)(x57 & UINT8_C(0xff)); x59 = (uint8_t)(x57 >> 8); x60 = (uint8_t)(x10 & UINT8_C(0xff)); x61 = (x10 >> 8); x62 = (uint8_t)(x61 & UINT8_C(0xff)); x63 = (x61 >> 8); x64 = (uint8_t)(x63 & UINT8_C(0xff)); x65 = (uint8_t)(x63 >> 8); x66 = (uint8_t)(x9 & UINT8_C(0xff)); x67 = (x9 >> 8); x68 = (uint8_t)(x67 & UINT8_C(0xff)); x69 = (x67 >> 8); x70 = (uint8_t)(x69 & UINT8_C(0xff)); x71 = (uint8_t)(x69 >> 8); x72 = (uint8_t)(x8 & UINT8_C(0xff)); x73 = (x8 >> 8); x74 = (uint8_t)(x73 & UINT8_C(0xff)); x75 = (x73 >> 8); x76 = (uint8_t)(x75 & UINT8_C(0xff)); x77 = (uint8_t)(x75 >> 8); x78 = (uint8_t)(x7 & UINT8_C(0xff)); x79 = (x7 >> 8); x80 = (uint8_t)(x79 & UINT8_C(0xff)); x81 = (x79 >> 8); x82 = (uint8_t)(x81 & UINT8_C(0xff)); x83 = (uint8_t)(x81 >> 8); x84 = (uint8_t)(x6 & UINT8_C(0xff)); x85 = (x6 >> 8); x86 = (uint8_t)(x85 & UINT8_C(0xff)); x87 = (x85 >> 8); x88 = (uint8_t)(x87 & UINT8_C(0xff)); x89 = (uint8_t)(x87 >> 8); x90 = (uint8_t)(x5 & UINT8_C(0xff)); x91 = (x5 >> 8); x92 = (uint8_t)(x91 & UINT8_C(0xff)); x93 = (x91 >> 8); x94 = (uint8_t)(x93 & UINT8_C(0xff)); x95 = (uint8_t)(x93 >> 8); x96 = (uint8_t)(x4 & UINT8_C(0xff)); x97 = (x4 >> 8); x98 = (uint8_t)(x97 & UINT8_C(0xff)); x99 = (x97 >> 8); x100 = (uint8_t)(x99 & UINT8_C(0xff)); x101 = (uint8_t)(x99 >> 8); x102 = (uint8_t)(x3 & UINT8_C(0xff)); x103 = (x3 >> 8); x104 = (uint8_t)(x103 & UINT8_C(0xff)); x105 = (x103 >> 8); x106 = (uint8_t)(x105 & UINT8_C(0xff)); x107 = (uint8_t)(x105 >> 8); x108 = (uint8_t)(x2 & UINT8_C(0xff)); x109 = (x2 >> 8); x110 = (uint8_t)(x109 & UINT8_C(0xff)); x111 = (x109 >> 8); x112 = (uint8_t)(x111 & UINT8_C(0xff)); x113 = (uint8_t)(x111 >> 8); x114 = (uint8_t)(x1 & UINT8_C(0xff)); x115 = (fiat_np521_uint1)(x1 >> 8); out1[0] = x18; out1[1] = x20; out1[2] = x22; out1[3] = x23; out1[4] = x24; out1[5] = x26; out1[6] = x28; out1[7] = x29; out1[8] = x30; out1[9] = x32; out1[10] = x34; out1[11] = x35; out1[12] = x36; out1[13] = x38; out1[14] = x40; out1[15] = x41; out1[16] = x42; out1[17] = x44; out1[18] = x46; out1[19] = x47; out1[20] = x48; out1[21] = x50; out1[22] = x52; out1[23] = x53; out1[24] = x54; out1[25] = x56; out1[26] = x58; out1[27] = x59; out1[28] = x60; out1[29] = x62; out1[30] = x64; out1[31] = x65; out1[32] = x66; out1[33] = x68; out1[34] = x70; out1[35] = x71; out1[36] = x72; out1[37] = x74; out1[38] = x76; out1[39] = x77; out1[40] = x78; out1[41] = x80; out1[42] = x82; out1[43] = x83; out1[44] = x84; out1[45] = x86; out1[46] = x88; out1[47] = x89; out1[48] = x90; out1[49] = x92; out1[50] = x94; out1[51] = x95; out1[52] = x96; out1[53] = x98; out1[54] = x100; out1[55] = x101; out1[56] = x102; out1[57] = x104; out1[58] = x106; out1[59] = x107; out1[60] = x108; out1[61] = x110; out1[62] = x112; out1[63] = x113; out1[64] = x114; out1[65] = x115; } /* * The function fiat_np521_from_bytes deserializes a field element NOT in the Montgomery domain from bytes in little-endian order. * * Preconditions: * 0 ≤ bytes_eval arg1 < m * Postconditions: * eval out1 mod m = bytes_eval arg1 mod m * 0 ≤ eval out1 < m * * Input Bounds: * arg1: [[0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0x1]] * Output Bounds: * out1: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0x1ff]] */ static void fiat_np521_from_bytes(uint32_t out1[17], const uint8_t arg1[66]) { uint32_t x1; uint8_t x2; uint32_t x3; uint32_t x4; uint32_t x5; uint8_t x6; uint32_t x7; uint32_t x8; uint32_t x9; uint8_t x10; uint32_t x11; uint32_t x12; uint32_t x13; uint8_t x14; uint32_t x15; uint32_t x16; uint32_t x17; uint8_t x18; uint32_t x19; uint32_t x20; uint32_t x21; uint8_t x22; uint32_t x23; uint32_t x24; uint32_t x25; uint8_t x26; uint32_t x27; uint32_t x28; uint32_t x29; uint8_t x30; uint32_t x31; uint32_t x32; uint32_t x33; uint8_t x34; uint32_t x35; uint32_t x36; uint32_t x37; uint8_t x38; uint32_t x39; uint32_t x40; uint32_t x41; uint8_t x42; uint32_t x43; uint32_t x44; uint32_t x45; uint8_t x46; uint32_t x47; uint32_t x48; uint32_t x49; uint8_t x50; uint32_t x51; uint32_t x52; uint32_t x53; uint8_t x54; uint32_t x55; uint32_t x56; uint32_t x57; uint8_t x58; uint32_t x59; uint32_t x60; uint32_t x61; uint8_t x62; uint32_t x63; uint32_t x64; uint32_t x65; uint8_t x66; uint32_t x67; uint32_t x68; uint32_t x69; uint32_t x70; uint32_t x71; uint32_t x72; uint32_t x73; uint32_t x74; uint32_t x75; uint32_t x76; uint32_t x77; uint32_t x78; uint32_t x79; uint32_t x80; uint32_t x81; uint32_t x82; uint32_t x83; uint32_t x84; uint32_t x85; uint32_t x86; uint32_t x87; uint32_t x88; uint32_t x89; uint32_t x90; uint32_t x91; uint32_t x92; uint32_t x93; uint32_t x94; uint32_t x95; uint32_t x96; uint32_t x97; uint32_t x98; uint32_t x99; uint32_t x100; uint32_t x101; uint32_t x102; uint32_t x103; uint32_t x104; uint32_t x105; uint32_t x106; uint32_t x107; uint32_t x108; uint32_t x109; uint32_t x110; uint32_t x111; uint32_t x112; uint32_t x113; uint32_t x114; uint32_t x115; x1 = ((uint32_t)(fiat_np521_uint1)(arg1[65]) << 8); x2 = (arg1[64]); x3 = ((uint32_t)(arg1[63]) << 24); x4 = ((uint32_t)(arg1[62]) << 16); x5 = ((uint32_t)(arg1[61]) << 8); x6 = (arg1[60]); x7 = ((uint32_t)(arg1[59]) << 24); x8 = ((uint32_t)(arg1[58]) << 16); x9 = ((uint32_t)(arg1[57]) << 8); x10 = (arg1[56]); x11 = ((uint32_t)(arg1[55]) << 24); x12 = ((uint32_t)(arg1[54]) << 16); x13 = ((uint32_t)(arg1[53]) << 8); x14 = (arg1[52]); x15 = ((uint32_t)(arg1[51]) << 24); x16 = ((uint32_t)(arg1[50]) << 16); x17 = ((uint32_t)(arg1[49]) << 8); x18 = (arg1[48]); x19 = ((uint32_t)(arg1[47]) << 24); x20 = ((uint32_t)(arg1[46]) << 16); x21 = ((uint32_t)(arg1[45]) << 8); x22 = (arg1[44]); x23 = ((uint32_t)(arg1[43]) << 24); x24 = ((uint32_t)(arg1[42]) << 16); x25 = ((uint32_t)(arg1[41]) << 8); x26 = (arg1[40]); x27 = ((uint32_t)(arg1[39]) << 24); x28 = ((uint32_t)(arg1[38]) << 16); x29 = ((uint32_t)(arg1[37]) << 8); x30 = (arg1[36]); x31 = ((uint32_t)(arg1[35]) << 24); x32 = ((uint32_t)(arg1[34]) << 16); x33 = ((uint32_t)(arg1[33]) << 8); x34 = (arg1[32]); x35 = ((uint32_t)(arg1[31]) << 24); x36 = ((uint32_t)(arg1[30]) << 16); x37 = ((uint32_t)(arg1[29]) << 8); x38 = (arg1[28]); x39 = ((uint32_t)(arg1[27]) << 24); x40 = ((uint32_t)(arg1[26]) << 16); x41 = ((uint32_t)(arg1[25]) << 8); x42 = (arg1[24]); x43 = ((uint32_t)(arg1[23]) << 24); x44 = ((uint32_t)(arg1[22]) << 16); x45 = ((uint32_t)(arg1[21]) << 8); x46 = (arg1[20]); x47 = ((uint32_t)(arg1[19]) << 24); x48 = ((uint32_t)(arg1[18]) << 16); x49 = ((uint32_t)(arg1[17]) << 8); x50 = (arg1[16]); x51 = ((uint32_t)(arg1[15]) << 24); x52 = ((uint32_t)(arg1[14]) << 16); x53 = ((uint32_t)(arg1[13]) << 8); x54 = (arg1[12]); x55 = ((uint32_t)(arg1[11]) << 24); x56 = ((uint32_t)(arg1[10]) << 16); x57 = ((uint32_t)(arg1[9]) << 8); x58 = (arg1[8]); x59 = ((uint32_t)(arg1[7]) << 24); x60 = ((uint32_t)(arg1[6]) << 16); x61 = ((uint32_t)(arg1[5]) << 8); x62 = (arg1[4]); x63 = ((uint32_t)(arg1[3]) << 24); x64 = ((uint32_t)(arg1[2]) << 16); x65 = ((uint32_t)(arg1[1]) << 8); x66 = (arg1[0]); x67 = (x65 + (uint32_t)x66); x68 = (x64 + x67); x69 = (x63 + x68); x70 = (x61 + (uint32_t)x62); x71 = (x60 + x70); x72 = (x59 + x71); x73 = (x57 + (uint32_t)x58); x74 = (x56 + x73); x75 = (x55 + x74); x76 = (x53 + (uint32_t)x54); x77 = (x52 + x76); x78 = (x51 + x77); x79 = (x49 + (uint32_t)x50); x80 = (x48 + x79); x81 = (x47 + x80); x82 = (x45 + (uint32_t)x46); x83 = (x44 + x82); x84 = (x43 + x83); x85 = (x41 + (uint32_t)x42); x86 = (x40 + x85); x87 = (x39 + x86); x88 = (x37 + (uint32_t)x38); x89 = (x36 + x88); x90 = (x35 + x89); x91 = (x33 + (uint32_t)x34); x92 = (x32 + x91); x93 = (x31 + x92); x94 = (x29 + (uint32_t)x30); x95 = (x28 + x94); x96 = (x27 + x95); x97 = (x25 + (uint32_t)x26); x98 = (x24 + x97); x99 = (x23 + x98); x100 = (x21 + (uint32_t)x22); x101 = (x20 + x100); x102 = (x19 + x101); x103 = (x17 + (uint32_t)x18); x104 = (x16 + x103); x105 = (x15 + x104); x106 = (x13 + (uint32_t)x14); x107 = (x12 + x106); x108 = (x11 + x107); x109 = (x9 + (uint32_t)x10); x110 = (x8 + x109); x111 = (x7 + x110); x112 = (x5 + (uint32_t)x6); x113 = (x4 + x112); x114 = (x3 + x113); x115 = (x1 + (uint32_t)x2); out1[0] = x69; out1[1] = x72; out1[2] = x75; out1[3] = x78; out1[4] = x81; out1[5] = x84; out1[6] = x87; out1[7] = x90; out1[8] = x93; out1[9] = x96; out1[10] = x99; out1[11] = x102; out1[12] = x105; out1[13] = x108; out1[14] = x111; out1[15] = x114; out1[16] = x115; } /* * The function fiat_np521_selectznz is a multi-limb conditional select. * * Postconditions: * out1 = (if arg1 = 0 then arg2 else arg3) * * Input Bounds: * arg1: [0x0 ~> 0x1] * arg2: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff]] * arg3: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff]] * Output Bounds: * out1: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff]] */ static void fiat_np521_selectznz(uint32_t out1[17], fiat_np521_uint1 arg1, const uint32_t arg2[17], const uint32_t arg3[17]) { uint32_t x1; uint32_t x2; uint32_t x3; uint32_t x4; uint32_t x5; uint32_t x6; uint32_t x7; uint32_t x8; uint32_t x9; uint32_t x10; uint32_t x11; uint32_t x12; uint32_t x13; uint32_t x14; uint32_t x15; uint32_t x16; uint32_t x17; fiat_np521_cmovznz_u32(&x1, arg1, (arg2[0]), (arg3[0])); fiat_np521_cmovznz_u32(&x2, arg1, (arg2[1]), (arg3[1])); fiat_np521_cmovznz_u32(&x3, arg1, (arg2[2]), (arg3[2])); fiat_np521_cmovznz_u32(&x4, arg1, (arg2[3]), (arg3[3])); fiat_np521_cmovznz_u32(&x5, arg1, (arg2[4]), (arg3[4])); fiat_np521_cmovznz_u32(&x6, arg1, (arg2[5]), (arg3[5])); fiat_np521_cmovznz_u32(&x7, arg1, (arg2[6]), (arg3[6])); fiat_np521_cmovznz_u32(&x8, arg1, (arg2[7]), (arg3[7])); fiat_np521_cmovznz_u32(&x9, arg1, (arg2[8]), (arg3[8])); fiat_np521_cmovznz_u32(&x10, arg1, (arg2[9]), (arg3[9])); fiat_np521_cmovznz_u32(&x11, arg1, (arg2[10]), (arg3[10])); fiat_np521_cmovznz_u32(&x12, arg1, (arg2[11]), (arg3[11])); fiat_np521_cmovznz_u32(&x13, arg1, (arg2[12]), (arg3[12])); fiat_np521_cmovznz_u32(&x14, arg1, (arg2[13]), (arg3[13])); fiat_np521_cmovznz_u32(&x15, arg1, (arg2[14]), (arg3[14])); fiat_np521_cmovznz_u32(&x16, arg1, (arg2[15]), (arg3[15])); fiat_np521_cmovznz_u32(&x17, arg1, (arg2[16]), (arg3[16])); out1[0] = x1; out1[1] = x2; out1[2] = x3; out1[3] = x4; out1[4] = x5; out1[5] = x6; out1[6] = x7; out1[7] = x8; out1[8] = x9; out1[9] = x10; out1[10] = x11; out1[11] = x12; out1[12] = x13; out1[13] = x14; out1[14] = x15; out1[15] = x16; out1[16] = x17; }
mirage-crypto
2.0.2
ISC
https://github.com/mirage/mirage-crypto
git+https://github.com/mirage/mirage-crypto.git
h
mirage-crypto-2.0.2/ec/native/np521_64.h
/* Autogenerated: '../fiat-crypto/src/ExtractionOCaml/word_by_word_montgomery' --static --use-value-barrier --inline-internal np521 64 0x01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFA51868783BF2F966B7FCC0148F709A5D03BB5C9B8899C47AEBB6FB71E91386409 mul add opp from_montgomery to_montgomery one msat divstep_precomp divstep to_bytes from_bytes selectznz */ /* curve description: np521 */ /* machine_wordsize = 64 (from "64") */ /* requested operations: mul, add, opp, from_montgomery, to_montgomery, one, msat, divstep_precomp, divstep, to_bytes, from_bytes, selectznz */ /* m = 0x1fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffa51868783bf2f966b7fcc0148f709a5d03bb5c9b8899c47aebb6fb71e91386409 (from "0x01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFA51868783BF2F966B7FCC0148F709A5D03BB5C9B8899C47AEBB6FB71E91386409") */ /* */ /* NOTE: In addition to the bounds specified above each function, all */ /* functions synthesized for this Montgomery arithmetic require the */ /* input to be strictly less than the prime modulus (m), and also */ /* require the input to be in the unique saturated representation. */ /* All functions also ensure that these two properties are true of */ /* return values. */ /* */ /* Computed values: */ /* eval z = z[0] + (z[1] << 64) + (z[2] << 128) + (z[3] << 192) + (z[4] << 256) + (z[5] << 0x140) + (z[6] << 0x180) + (z[7] << 0x1c0) + (z[8] << 2^9) */ /* bytes_eval z = z[0] + (z[1] << 8) + (z[2] << 16) + (z[3] << 24) + (z[4] << 32) + (z[5] << 40) + (z[6] << 48) + (z[7] << 56) + (z[8] << 64) + (z[9] << 72) + (z[10] << 80) + (z[11] << 88) + (z[12] << 96) + (z[13] << 104) + (z[14] << 112) + (z[15] << 120) + (z[16] << 128) + (z[17] << 136) + (z[18] << 144) + (z[19] << 152) + (z[20] << 160) + (z[21] << 168) + (z[22] << 176) + (z[23] << 184) + (z[24] << 192) + (z[25] << 200) + (z[26] << 208) + (z[27] << 216) + (z[28] << 224) + (z[29] << 232) + (z[30] << 240) + (z[31] << 248) + (z[32] << 256) + (z[33] << 0x108) + (z[34] << 0x110) + (z[35] << 0x118) + (z[36] << 0x120) + (z[37] << 0x128) + (z[38] << 0x130) + (z[39] << 0x138) + (z[40] << 0x140) + (z[41] << 0x148) + (z[42] << 0x150) + (z[43] << 0x158) + (z[44] << 0x160) + (z[45] << 0x168) + (z[46] << 0x170) + (z[47] << 0x178) + (z[48] << 0x180) + (z[49] << 0x188) + (z[50] << 0x190) + (z[51] << 0x198) + (z[52] << 0x1a0) + (z[53] << 0x1a8) + (z[54] << 0x1b0) + (z[55] << 0x1b8) + (z[56] << 0x1c0) + (z[57] << 0x1c8) + (z[58] << 0x1d0) + (z[59] << 0x1d8) + (z[60] << 0x1e0) + (z[61] << 0x1e8) + (z[62] << 0x1f0) + (z[63] << 0x1f8) + (z[64] << 2^9) + (z[65] << 0x208) */ /* twos_complement_eval z = let x1 := z[0] + (z[1] << 64) + (z[2] << 128) + (z[3] << 192) + (z[4] << 256) + (z[5] << 0x140) + (z[6] << 0x180) + (z[7] << 0x1c0) + (z[8] << 2^9) in */ /* if x1 & (2^576-1) < 2^575 then x1 & (2^576-1) else (x1 & (2^576-1)) - 2^576 */ #include <stdint.h> typedef unsigned char fiat_np521_uint1; typedef signed char fiat_np521_int1; #if defined(__GNUC__) || defined(__clang__) # define FIAT_NP521_FIAT_EXTENSION __extension__ # define FIAT_NP521_FIAT_INLINE __inline__ #else # define FIAT_NP521_FIAT_EXTENSION # define FIAT_NP521_FIAT_INLINE #endif FIAT_NP521_FIAT_EXTENSION typedef signed __int128 fiat_np521_int128; FIAT_NP521_FIAT_EXTENSION typedef unsigned __int128 fiat_np521_uint128; /* The type fiat_np521_montgomery_domain_field_element is a field element in the Montgomery domain. */ /* Bounds: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]] */ typedef uint64_t fiat_np521_montgomery_domain_field_element[9]; /* The type fiat_np521_non_montgomery_domain_field_element is a field element NOT in the Montgomery domain. */ /* Bounds: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]] */ typedef uint64_t fiat_np521_non_montgomery_domain_field_element[9]; #if (-1 & 3) != 3 #error "This code only works on a two's complement system" #endif #if !defined(FIAT_NP521_NO_ASM) && (defined(__GNUC__) || defined(__clang__)) static __inline__ uint64_t fiat_np521_value_barrier_u64(uint64_t a) { __asm__("" : "+r"(a) : /* no inputs */); return a; } #else # define fiat_np521_value_barrier_u64(x) (x) #endif /* * The function fiat_np521_addcarryx_u64 is an addition with carry. * * Postconditions: * out1 = (arg1 + arg2 + arg3) mod 2^64 * out2 = ⌊(arg1 + arg2 + arg3) / 2^64⌋ * * Input Bounds: * arg1: [0x0 ~> 0x1] * arg2: [0x0 ~> 0xffffffffffffffff] * arg3: [0x0 ~> 0xffffffffffffffff] * Output Bounds: * out1: [0x0 ~> 0xffffffffffffffff] * out2: [0x0 ~> 0x1] */ static FIAT_NP521_FIAT_INLINE void fiat_np521_addcarryx_u64(uint64_t* out1, fiat_np521_uint1* out2, fiat_np521_uint1 arg1, uint64_t arg2, uint64_t arg3) { fiat_np521_uint128 x1; uint64_t x2; fiat_np521_uint1 x3; x1 = ((arg1 + (fiat_np521_uint128)arg2) + arg3); x2 = (uint64_t)(x1 & UINT64_C(0xffffffffffffffff)); x3 = (fiat_np521_uint1)(x1 >> 64); *out1 = x2; *out2 = x3; } /* * The function fiat_np521_subborrowx_u64 is a subtraction with borrow. * * Postconditions: * out1 = (-arg1 + arg2 + -arg3) mod 2^64 * out2 = -⌊(-arg1 + arg2 + -arg3) / 2^64⌋ * * Input Bounds: * arg1: [0x0 ~> 0x1] * arg2: [0x0 ~> 0xffffffffffffffff] * arg3: [0x0 ~> 0xffffffffffffffff] * Output Bounds: * out1: [0x0 ~> 0xffffffffffffffff] * out2: [0x0 ~> 0x1] */ static FIAT_NP521_FIAT_INLINE void fiat_np521_subborrowx_u64(uint64_t* out1, fiat_np521_uint1* out2, fiat_np521_uint1 arg1, uint64_t arg2, uint64_t arg3) { fiat_np521_int128 x1; fiat_np521_int1 x2; uint64_t x3; x1 = ((arg2 - (fiat_np521_int128)arg1) - arg3); x2 = (fiat_np521_int1)(x1 >> 64); x3 = (uint64_t)(x1 & UINT64_C(0xffffffffffffffff)); *out1 = x3; *out2 = (fiat_np521_uint1)(0x0 - x2); } /* * The function fiat_np521_mulx_u64 is a multiplication, returning the full double-width result. * * Postconditions: * out1 = (arg1 * arg2) mod 2^64 * out2 = ⌊arg1 * arg2 / 2^64⌋ * * Input Bounds: * arg1: [0x0 ~> 0xffffffffffffffff] * arg2: [0x0 ~> 0xffffffffffffffff] * Output Bounds: * out1: [0x0 ~> 0xffffffffffffffff] * out2: [0x0 ~> 0xffffffffffffffff] */ static FIAT_NP521_FIAT_INLINE void fiat_np521_mulx_u64(uint64_t* out1, uint64_t* out2, uint64_t arg1, uint64_t arg2) { fiat_np521_uint128 x1; uint64_t x2; uint64_t x3; x1 = ((fiat_np521_uint128)arg1 * arg2); x2 = (uint64_t)(x1 & UINT64_C(0xffffffffffffffff)); x3 = (uint64_t)(x1 >> 64); *out1 = x2; *out2 = x3; } /* * The function fiat_np521_cmovznz_u64 is a single-word conditional move. * * Postconditions: * out1 = (if arg1 = 0 then arg2 else arg3) * * Input Bounds: * arg1: [0x0 ~> 0x1] * arg2: [0x0 ~> 0xffffffffffffffff] * arg3: [0x0 ~> 0xffffffffffffffff] * Output Bounds: * out1: [0x0 ~> 0xffffffffffffffff] */ static FIAT_NP521_FIAT_INLINE void fiat_np521_cmovznz_u64(uint64_t* out1, fiat_np521_uint1 arg1, uint64_t arg2, uint64_t arg3) { fiat_np521_uint1 x1; uint64_t x2; uint64_t x3; x1 = (!(!arg1)); x2 = ((fiat_np521_int1)(0x0 - x1) & UINT64_C(0xffffffffffffffff)); x3 = ((fiat_np521_value_barrier_u64(x2) & arg3) | (fiat_np521_value_barrier_u64((~x2)) & arg2)); *out1 = x3; } /* * The function fiat_np521_mul multiplies two field elements in the Montgomery domain. * * Preconditions: * 0 ≤ eval arg1 < m * 0 ≤ eval arg2 < m * Postconditions: * eval (from_montgomery out1) mod m = (eval (from_montgomery arg1) * eval (from_montgomery arg2)) mod m * 0 ≤ eval out1 < m * */ static void fiat_np521_mul(fiat_np521_montgomery_domain_field_element out1, const fiat_np521_montgomery_domain_field_element arg1, const fiat_np521_montgomery_domain_field_element arg2) { uint64_t x1; uint64_t x2; uint64_t x3; uint64_t x4; uint64_t x5; uint64_t x6; uint64_t x7; uint64_t x8; uint64_t x9; uint64_t x10; uint64_t x11; uint64_t x12; uint64_t x13; uint64_t x14; uint64_t x15; uint64_t x16; uint64_t x17; uint64_t x18; uint64_t x19; uint64_t x20; uint64_t x21; uint64_t x22; uint64_t x23; uint64_t x24; uint64_t x25; uint64_t x26; uint64_t x27; uint64_t x28; fiat_np521_uint1 x29; uint64_t x30; fiat_np521_uint1 x31; uint64_t x32; fiat_np521_uint1 x33; uint64_t x34; fiat_np521_uint1 x35; uint64_t x36; fiat_np521_uint1 x37; uint64_t x38; fiat_np521_uint1 x39; uint64_t x40; fiat_np521_uint1 x41; uint64_t x42; fiat_np521_uint1 x43; uint64_t x44; uint64_t x45; uint64_t x46; uint64_t x47; uint64_t x48; uint64_t x49; uint64_t x50; uint64_t x51; uint64_t x52; uint64_t x53; uint64_t x54; uint64_t x55; uint64_t x56; uint64_t x57; uint64_t x58; uint64_t x59; uint64_t x60; uint64_t x61; uint64_t x62; uint64_t x63; uint64_t x64; uint64_t x65; fiat_np521_uint1 x66; uint64_t x67; fiat_np521_uint1 x68; uint64_t x69; fiat_np521_uint1 x70; uint64_t x71; fiat_np521_uint1 x72; uint64_t x73; fiat_np521_uint1 x74; uint64_t x75; fiat_np521_uint1 x76; uint64_t x77; fiat_np521_uint1 x78; uint64_t x79; fiat_np521_uint1 x80; uint64_t x81; uint64_t x82; fiat_np521_uint1 x83; uint64_t x84; fiat_np521_uint1 x85; uint64_t x86; fiat_np521_uint1 x87; uint64_t x88; fiat_np521_uint1 x89; uint64_t x90; fiat_np521_uint1 x91; uint64_t x92; fiat_np521_uint1 x93; uint64_t x94; fiat_np521_uint1 x95; uint64_t x96; fiat_np521_uint1 x97; uint64_t x98; fiat_np521_uint1 x99; uint64_t x100; fiat_np521_uint1 x101; uint64_t x102; uint64_t x103; uint64_t x104; uint64_t x105; uint64_t x106; uint64_t x107; uint64_t x108; uint64_t x109; uint64_t x110; uint64_t x111; uint64_t x112; uint64_t x113; uint64_t x114; uint64_t x115; uint64_t x116; uint64_t x117; uint64_t x118; uint64_t x119; uint64_t x120; fiat_np521_uint1 x121; uint64_t x122; fiat_np521_uint1 x123; uint64_t x124; fiat_np521_uint1 x125; uint64_t x126; fiat_np521_uint1 x127; uint64_t x128; fiat_np521_uint1 x129; uint64_t x130; fiat_np521_uint1 x131; uint64_t x132; fiat_np521_uint1 x133; uint64_t x134; fiat_np521_uint1 x135; uint64_t x136; uint64_t x137; fiat_np521_uint1 x138; uint64_t x139; fiat_np521_uint1 x140; uint64_t x141; fiat_np521_uint1 x142; uint64_t x143; fiat_np521_uint1 x144; uint64_t x145; fiat_np521_uint1 x146; uint64_t x147; fiat_np521_uint1 x148; uint64_t x149; fiat_np521_uint1 x150; uint64_t x151; fiat_np521_uint1 x152; uint64_t x153; fiat_np521_uint1 x154; uint64_t x155; fiat_np521_uint1 x156; uint64_t x157; uint64_t x158; uint64_t x159; uint64_t x160; uint64_t x161; uint64_t x162; uint64_t x163; uint64_t x164; uint64_t x165; uint64_t x166; uint64_t x167; uint64_t x168; uint64_t x169; uint64_t x170; uint64_t x171; uint64_t x172; uint64_t x173; uint64_t x174; uint64_t x175; uint64_t x176; uint64_t x177; fiat_np521_uint1 x178; uint64_t x179; fiat_np521_uint1 x180; uint64_t x181; fiat_np521_uint1 x182; uint64_t x183; fiat_np521_uint1 x184; uint64_t x185; fiat_np521_uint1 x186; uint64_t x187; fiat_np521_uint1 x188; uint64_t x189; fiat_np521_uint1 x190; uint64_t x191; fiat_np521_uint1 x192; uint64_t x193; uint64_t x194; fiat_np521_uint1 x195; uint64_t x196; fiat_np521_uint1 x197; uint64_t x198; fiat_np521_uint1 x199; uint64_t x200; fiat_np521_uint1 x201; uint64_t x202; fiat_np521_uint1 x203; uint64_t x204; fiat_np521_uint1 x205; uint64_t x206; fiat_np521_uint1 x207; uint64_t x208; fiat_np521_uint1 x209; uint64_t x210; fiat_np521_uint1 x211; uint64_t x212; fiat_np521_uint1 x213; uint64_t x214; uint64_t x215; uint64_t x216; uint64_t x217; uint64_t x218; uint64_t x219; uint64_t x220; uint64_t x221; uint64_t x222; uint64_t x223; uint64_t x224; uint64_t x225; uint64_t x226; uint64_t x227; uint64_t x228; uint64_t x229; uint64_t x230; uint64_t x231; uint64_t x232; uint64_t x233; fiat_np521_uint1 x234; uint64_t x235; fiat_np521_uint1 x236; uint64_t x237; fiat_np521_uint1 x238; uint64_t x239; fiat_np521_uint1 x240; uint64_t x241; fiat_np521_uint1 x242; uint64_t x243; fiat_np521_uint1 x244; uint64_t x245; fiat_np521_uint1 x246; uint64_t x247; fiat_np521_uint1 x248; uint64_t x249; uint64_t x250; fiat_np521_uint1 x251; uint64_t x252; fiat_np521_uint1 x253; uint64_t x254; fiat_np521_uint1 x255; uint64_t x256; fiat_np521_uint1 x257; uint64_t x258; fiat_np521_uint1 x259; uint64_t x260; fiat_np521_uint1 x261; uint64_t x262; fiat_np521_uint1 x263; uint64_t x264; fiat_np521_uint1 x265; uint64_t x266; fiat_np521_uint1 x267; uint64_t x268; fiat_np521_uint1 x269; uint64_t x270; uint64_t x271; uint64_t x272; uint64_t x273; uint64_t x274; uint64_t x275; uint64_t x276; uint64_t x277; uint64_t x278; uint64_t x279; uint64_t x280; uint64_t x281; uint64_t x282; uint64_t x283; uint64_t x284; uint64_t x285; uint64_t x286; uint64_t x287; uint64_t x288; uint64_t x289; uint64_t x290; fiat_np521_uint1 x291; uint64_t x292; fiat_np521_uint1 x293; uint64_t x294; fiat_np521_uint1 x295; uint64_t x296; fiat_np521_uint1 x297; uint64_t x298; fiat_np521_uint1 x299; uint64_t x300; fiat_np521_uint1 x301; uint64_t x302; fiat_np521_uint1 x303; uint64_t x304; fiat_np521_uint1 x305; uint64_t x306; uint64_t x307; fiat_np521_uint1 x308; uint64_t x309; fiat_np521_uint1 x310; uint64_t x311; fiat_np521_uint1 x312; uint64_t x313; fiat_np521_uint1 x314; uint64_t x315; fiat_np521_uint1 x316; uint64_t x317; fiat_np521_uint1 x318; uint64_t x319; fiat_np521_uint1 x320; uint64_t x321; fiat_np521_uint1 x322; uint64_t x323; fiat_np521_uint1 x324; uint64_t x325; fiat_np521_uint1 x326; uint64_t x327; uint64_t x328; uint64_t x329; uint64_t x330; uint64_t x331; uint64_t x332; uint64_t x333; uint64_t x334; uint64_t x335; uint64_t x336; uint64_t x337; uint64_t x338; uint64_t x339; uint64_t x340; uint64_t x341; uint64_t x342; uint64_t x343; uint64_t x344; uint64_t x345; uint64_t x346; fiat_np521_uint1 x347; uint64_t x348; fiat_np521_uint1 x349; uint64_t x350; fiat_np521_uint1 x351; uint64_t x352; fiat_np521_uint1 x353; uint64_t x354; fiat_np521_uint1 x355; uint64_t x356; fiat_np521_uint1 x357; uint64_t x358; fiat_np521_uint1 x359; uint64_t x360; fiat_np521_uint1 x361; uint64_t x362; uint64_t x363; fiat_np521_uint1 x364; uint64_t x365; fiat_np521_uint1 x366; uint64_t x367; fiat_np521_uint1 x368; uint64_t x369; fiat_np521_uint1 x370; uint64_t x371; fiat_np521_uint1 x372; uint64_t x373; fiat_np521_uint1 x374; uint64_t x375; fiat_np521_uint1 x376; uint64_t x377; fiat_np521_uint1 x378; uint64_t x379; fiat_np521_uint1 x380; uint64_t x381; fiat_np521_uint1 x382; uint64_t x383; uint64_t x384; uint64_t x385; uint64_t x386; uint64_t x387; uint64_t x388; uint64_t x389; uint64_t x390; uint64_t x391; uint64_t x392; uint64_t x393; uint64_t x394; uint64_t x395; uint64_t x396; uint64_t x397; uint64_t x398; uint64_t x399; uint64_t x400; uint64_t x401; uint64_t x402; uint64_t x403; fiat_np521_uint1 x404; uint64_t x405; fiat_np521_uint1 x406; uint64_t x407; fiat_np521_uint1 x408; uint64_t x409; fiat_np521_uint1 x410; uint64_t x411; fiat_np521_uint1 x412; uint64_t x413; fiat_np521_uint1 x414; uint64_t x415; fiat_np521_uint1 x416; uint64_t x417; fiat_np521_uint1 x418; uint64_t x419; uint64_t x420; fiat_np521_uint1 x421; uint64_t x422; fiat_np521_uint1 x423; uint64_t x424; fiat_np521_uint1 x425; uint64_t x426; fiat_np521_uint1 x427; uint64_t x428; fiat_np521_uint1 x429; uint64_t x430; fiat_np521_uint1 x431; uint64_t x432; fiat_np521_uint1 x433; uint64_t x434; fiat_np521_uint1 x435; uint64_t x436; fiat_np521_uint1 x437; uint64_t x438; fiat_np521_uint1 x439; uint64_t x440; uint64_t x441; uint64_t x442; uint64_t x443; uint64_t x444; uint64_t x445; uint64_t x446; uint64_t x447; uint64_t x448; uint64_t x449; uint64_t x450; uint64_t x451; uint64_t x452; uint64_t x453; uint64_t x454; uint64_t x455; uint64_t x456; uint64_t x457; uint64_t x458; uint64_t x459; fiat_np521_uint1 x460; uint64_t x461; fiat_np521_uint1 x462; uint64_t x463; fiat_np521_uint1 x464; uint64_t x465; fiat_np521_uint1 x466; uint64_t x467; fiat_np521_uint1 x468; uint64_t x469; fiat_np521_uint1 x470; uint64_t x471; fiat_np521_uint1 x472; uint64_t x473; fiat_np521_uint1 x474; uint64_t x475; uint64_t x476; fiat_np521_uint1 x477; uint64_t x478; fiat_np521_uint1 x479; uint64_t x480; fiat_np521_uint1 x481; uint64_t x482; fiat_np521_uint1 x483; uint64_t x484; fiat_np521_uint1 x485; uint64_t x486; fiat_np521_uint1 x487; uint64_t x488; fiat_np521_uint1 x489; uint64_t x490; fiat_np521_uint1 x491; uint64_t x492; fiat_np521_uint1 x493; uint64_t x494; fiat_np521_uint1 x495; uint64_t x496; uint64_t x497; uint64_t x498; uint64_t x499; uint64_t x500; uint64_t x501; uint64_t x502; uint64_t x503; uint64_t x504; uint64_t x505; uint64_t x506; uint64_t x507; uint64_t x508; uint64_t x509; uint64_t x510; uint64_t x511; uint64_t x512; uint64_t x513; uint64_t x514; uint64_t x515; uint64_t x516; fiat_np521_uint1 x517; uint64_t x518; fiat_np521_uint1 x519; uint64_t x520; fiat_np521_uint1 x521; uint64_t x522; fiat_np521_uint1 x523; uint64_t x524; fiat_np521_uint1 x525; uint64_t x526; fiat_np521_uint1 x527; uint64_t x528; fiat_np521_uint1 x529; uint64_t x530; fiat_np521_uint1 x531; uint64_t x532; uint64_t x533; fiat_np521_uint1 x534; uint64_t x535; fiat_np521_uint1 x536; uint64_t x537; fiat_np521_uint1 x538; uint64_t x539; fiat_np521_uint1 x540; uint64_t x541; fiat_np521_uint1 x542; uint64_t x543; fiat_np521_uint1 x544; uint64_t x545; fiat_np521_uint1 x546; uint64_t x547; fiat_np521_uint1 x548; uint64_t x549; fiat_np521_uint1 x550; uint64_t x551; fiat_np521_uint1 x552; uint64_t x553; uint64_t x554; uint64_t x555; uint64_t x556; uint64_t x557; uint64_t x558; uint64_t x559; uint64_t x560; uint64_t x561; uint64_t x562; uint64_t x563; uint64_t x564; uint64_t x565; uint64_t x566; uint64_t x567; uint64_t x568; uint64_t x569; uint64_t x570; uint64_t x571; uint64_t x572; fiat_np521_uint1 x573; uint64_t x574; fiat_np521_uint1 x575; uint64_t x576; fiat_np521_uint1 x577; uint64_t x578; fiat_np521_uint1 x579; uint64_t x580; fiat_np521_uint1 x581; uint64_t x582; fiat_np521_uint1 x583; uint64_t x584; fiat_np521_uint1 x585; uint64_t x586; fiat_np521_uint1 x587; uint64_t x588; uint64_t x589; fiat_np521_uint1 x590; uint64_t x591; fiat_np521_uint1 x592; uint64_t x593; fiat_np521_uint1 x594; uint64_t x595; fiat_np521_uint1 x596; uint64_t x597; fiat_np521_uint1 x598; uint64_t x599; fiat_np521_uint1 x600; uint64_t x601; fiat_np521_uint1 x602; uint64_t x603; fiat_np521_uint1 x604; uint64_t x605; fiat_np521_uint1 x606; uint64_t x607; fiat_np521_uint1 x608; uint64_t x609; uint64_t x610; uint64_t x611; uint64_t x612; uint64_t x613; uint64_t x614; uint64_t x615; uint64_t x616; uint64_t x617; uint64_t x618; uint64_t x619; uint64_t x620; uint64_t x621; uint64_t x622; uint64_t x623; uint64_t x624; uint64_t x625; uint64_t x626; uint64_t x627; uint64_t x628; uint64_t x629; fiat_np521_uint1 x630; uint64_t x631; fiat_np521_uint1 x632; uint64_t x633; fiat_np521_uint1 x634; uint64_t x635; fiat_np521_uint1 x636; uint64_t x637; fiat_np521_uint1 x638; uint64_t x639; fiat_np521_uint1 x640; uint64_t x641; fiat_np521_uint1 x642; uint64_t x643; fiat_np521_uint1 x644; uint64_t x645; uint64_t x646; fiat_np521_uint1 x647; uint64_t x648; fiat_np521_uint1 x649; uint64_t x650; fiat_np521_uint1 x651; uint64_t x652; fiat_np521_uint1 x653; uint64_t x654; fiat_np521_uint1 x655; uint64_t x656; fiat_np521_uint1 x657; uint64_t x658; fiat_np521_uint1 x659; uint64_t x660; fiat_np521_uint1 x661; uint64_t x662; fiat_np521_uint1 x663; uint64_t x664; fiat_np521_uint1 x665; uint64_t x666; uint64_t x667; uint64_t x668; uint64_t x669; uint64_t x670; uint64_t x671; uint64_t x672; uint64_t x673; uint64_t x674; uint64_t x675; uint64_t x676; uint64_t x677; uint64_t x678; uint64_t x679; uint64_t x680; uint64_t x681; uint64_t x682; uint64_t x683; uint64_t x684; uint64_t x685; fiat_np521_uint1 x686; uint64_t x687; fiat_np521_uint1 x688; uint64_t x689; fiat_np521_uint1 x690; uint64_t x691; fiat_np521_uint1 x692; uint64_t x693; fiat_np521_uint1 x694; uint64_t x695; fiat_np521_uint1 x696; uint64_t x697; fiat_np521_uint1 x698; uint64_t x699; fiat_np521_uint1 x700; uint64_t x701; uint64_t x702; fiat_np521_uint1 x703; uint64_t x704; fiat_np521_uint1 x705; uint64_t x706; fiat_np521_uint1 x707; uint64_t x708; fiat_np521_uint1 x709; uint64_t x710; fiat_np521_uint1 x711; uint64_t x712; fiat_np521_uint1 x713; uint64_t x714; fiat_np521_uint1 x715; uint64_t x716; fiat_np521_uint1 x717; uint64_t x718; fiat_np521_uint1 x719; uint64_t x720; fiat_np521_uint1 x721; uint64_t x722; uint64_t x723; uint64_t x724; uint64_t x725; uint64_t x726; uint64_t x727; uint64_t x728; uint64_t x729; uint64_t x730; uint64_t x731; uint64_t x732; uint64_t x733; uint64_t x734; uint64_t x735; uint64_t x736; uint64_t x737; uint64_t x738; uint64_t x739; uint64_t x740; uint64_t x741; uint64_t x742; fiat_np521_uint1 x743; uint64_t x744; fiat_np521_uint1 x745; uint64_t x746; fiat_np521_uint1 x747; uint64_t x748; fiat_np521_uint1 x749; uint64_t x750; fiat_np521_uint1 x751; uint64_t x752; fiat_np521_uint1 x753; uint64_t x754; fiat_np521_uint1 x755; uint64_t x756; fiat_np521_uint1 x757; uint64_t x758; uint64_t x759; fiat_np521_uint1 x760; uint64_t x761; fiat_np521_uint1 x762; uint64_t x763; fiat_np521_uint1 x764; uint64_t x765; fiat_np521_uint1 x766; uint64_t x767; fiat_np521_uint1 x768; uint64_t x769; fiat_np521_uint1 x770; uint64_t x771; fiat_np521_uint1 x772; uint64_t x773; fiat_np521_uint1 x774; uint64_t x775; fiat_np521_uint1 x776; uint64_t x777; fiat_np521_uint1 x778; uint64_t x779; uint64_t x780; uint64_t x781; uint64_t x782; uint64_t x783; uint64_t x784; uint64_t x785; uint64_t x786; uint64_t x787; uint64_t x788; uint64_t x789; uint64_t x790; uint64_t x791; uint64_t x792; uint64_t x793; uint64_t x794; uint64_t x795; uint64_t x796; uint64_t x797; uint64_t x798; fiat_np521_uint1 x799; uint64_t x800; fiat_np521_uint1 x801; uint64_t x802; fiat_np521_uint1 x803; uint64_t x804; fiat_np521_uint1 x805; uint64_t x806; fiat_np521_uint1 x807; uint64_t x808; fiat_np521_uint1 x809; uint64_t x810; fiat_np521_uint1 x811; uint64_t x812; fiat_np521_uint1 x813; uint64_t x814; uint64_t x815; fiat_np521_uint1 x816; uint64_t x817; fiat_np521_uint1 x818; uint64_t x819; fiat_np521_uint1 x820; uint64_t x821; fiat_np521_uint1 x822; uint64_t x823; fiat_np521_uint1 x824; uint64_t x825; fiat_np521_uint1 x826; uint64_t x827; fiat_np521_uint1 x828; uint64_t x829; fiat_np521_uint1 x830; uint64_t x831; fiat_np521_uint1 x832; uint64_t x833; fiat_np521_uint1 x834; uint64_t x835; uint64_t x836; uint64_t x837; uint64_t x838; uint64_t x839; uint64_t x840; uint64_t x841; uint64_t x842; uint64_t x843; uint64_t x844; uint64_t x845; uint64_t x846; uint64_t x847; uint64_t x848; uint64_t x849; uint64_t x850; uint64_t x851; uint64_t x852; uint64_t x853; uint64_t x854; uint64_t x855; fiat_np521_uint1 x856; uint64_t x857; fiat_np521_uint1 x858; uint64_t x859; fiat_np521_uint1 x860; uint64_t x861; fiat_np521_uint1 x862; uint64_t x863; fiat_np521_uint1 x864; uint64_t x865; fiat_np521_uint1 x866; uint64_t x867; fiat_np521_uint1 x868; uint64_t x869; fiat_np521_uint1 x870; uint64_t x871; uint64_t x872; fiat_np521_uint1 x873; uint64_t x874; fiat_np521_uint1 x875; uint64_t x876; fiat_np521_uint1 x877; uint64_t x878; fiat_np521_uint1 x879; uint64_t x880; fiat_np521_uint1 x881; uint64_t x882; fiat_np521_uint1 x883; uint64_t x884; fiat_np521_uint1 x885; uint64_t x886; fiat_np521_uint1 x887; uint64_t x888; fiat_np521_uint1 x889; uint64_t x890; fiat_np521_uint1 x891; uint64_t x892; uint64_t x893; uint64_t x894; uint64_t x895; uint64_t x896; uint64_t x897; uint64_t x898; uint64_t x899; uint64_t x900; uint64_t x901; uint64_t x902; uint64_t x903; uint64_t x904; uint64_t x905; uint64_t x906; uint64_t x907; uint64_t x908; uint64_t x909; uint64_t x910; uint64_t x911; fiat_np521_uint1 x912; uint64_t x913; fiat_np521_uint1 x914; uint64_t x915; fiat_np521_uint1 x916; uint64_t x917; fiat_np521_uint1 x918; uint64_t x919; fiat_np521_uint1 x920; uint64_t x921; fiat_np521_uint1 x922; uint64_t x923; fiat_np521_uint1 x924; uint64_t x925; fiat_np521_uint1 x926; uint64_t x927; uint64_t x928; fiat_np521_uint1 x929; uint64_t x930; fiat_np521_uint1 x931; uint64_t x932; fiat_np521_uint1 x933; uint64_t x934; fiat_np521_uint1 x935; uint64_t x936; fiat_np521_uint1 x937; uint64_t x938; fiat_np521_uint1 x939; uint64_t x940; fiat_np521_uint1 x941; uint64_t x942; fiat_np521_uint1 x943; uint64_t x944; fiat_np521_uint1 x945; uint64_t x946; fiat_np521_uint1 x947; uint64_t x948; uint64_t x949; uint64_t x950; uint64_t x951; uint64_t x952; uint64_t x953; uint64_t x954; uint64_t x955; uint64_t x956; uint64_t x957; uint64_t x958; uint64_t x959; uint64_t x960; uint64_t x961; uint64_t x962; uint64_t x963; uint64_t x964; uint64_t x965; uint64_t x966; uint64_t x967; uint64_t x968; fiat_np521_uint1 x969; uint64_t x970; fiat_np521_uint1 x971; uint64_t x972; fiat_np521_uint1 x973; uint64_t x974; fiat_np521_uint1 x975; uint64_t x976; fiat_np521_uint1 x977; uint64_t x978; fiat_np521_uint1 x979; uint64_t x980; fiat_np521_uint1 x981; uint64_t x982; fiat_np521_uint1 x983; uint64_t x984; uint64_t x985; fiat_np521_uint1 x986; uint64_t x987; fiat_np521_uint1 x988; uint64_t x989; fiat_np521_uint1 x990; uint64_t x991; fiat_np521_uint1 x992; uint64_t x993; fiat_np521_uint1 x994; uint64_t x995; fiat_np521_uint1 x996; uint64_t x997; fiat_np521_uint1 x998; uint64_t x999; fiat_np521_uint1 x1000; uint64_t x1001; fiat_np521_uint1 x1002; uint64_t x1003; fiat_np521_uint1 x1004; uint64_t x1005; uint64_t x1006; fiat_np521_uint1 x1007; uint64_t x1008; fiat_np521_uint1 x1009; uint64_t x1010; fiat_np521_uint1 x1011; uint64_t x1012; fiat_np521_uint1 x1013; uint64_t x1014; fiat_np521_uint1 x1015; uint64_t x1016; fiat_np521_uint1 x1017; uint64_t x1018; fiat_np521_uint1 x1019; uint64_t x1020; fiat_np521_uint1 x1021; uint64_t x1022; fiat_np521_uint1 x1023; uint64_t x1024; fiat_np521_uint1 x1025; uint64_t x1026; uint64_t x1027; uint64_t x1028; uint64_t x1029; uint64_t x1030; uint64_t x1031; uint64_t x1032; uint64_t x1033; uint64_t x1034; x1 = (arg1[1]); x2 = (arg1[2]); x3 = (arg1[3]); x4 = (arg1[4]); x5 = (arg1[5]); x6 = (arg1[6]); x7 = (arg1[7]); x8 = (arg1[8]); x9 = (arg1[0]); fiat_np521_mulx_u64(&x10, &x11, x9, (arg2[8])); fiat_np521_mulx_u64(&x12, &x13, x9, (arg2[7])); fiat_np521_mulx_u64(&x14, &x15, x9, (arg2[6])); fiat_np521_mulx_u64(&x16, &x17, x9, (arg2[5])); fiat_np521_mulx_u64(&x18, &x19, x9, (arg2[4])); fiat_np521_mulx_u64(&x20, &x21, x9, (arg2[3])); fiat_np521_mulx_u64(&x22, &x23, x9, (arg2[2])); fiat_np521_mulx_u64(&x24, &x25, x9, (arg2[1])); fiat_np521_mulx_u64(&x26, &x27, x9, (arg2[0])); fiat_np521_addcarryx_u64(&x28, &x29, 0x0, x27, x24); fiat_np521_addcarryx_u64(&x30, &x31, x29, x25, x22); fiat_np521_addcarryx_u64(&x32, &x33, x31, x23, x20); fiat_np521_addcarryx_u64(&x34, &x35, x33, x21, x18); fiat_np521_addcarryx_u64(&x36, &x37, x35, x19, x16); fiat_np521_addcarryx_u64(&x38, &x39, x37, x17, x14); fiat_np521_addcarryx_u64(&x40, &x41, x39, x15, x12); fiat_np521_addcarryx_u64(&x42, &x43, x41, x13, x10); x44 = (x43 + x11); fiat_np521_mulx_u64(&x45, &x46, x26, UINT64_C(0x1d2f5ccd79a995c7)); fiat_np521_mulx_u64(&x47, &x48, x45, UINT16_C(0x1ff)); fiat_np521_mulx_u64(&x49, &x50, x45, UINT64_C(0xffffffffffffffff)); fiat_np521_mulx_u64(&x51, &x52, x45, UINT64_C(0xffffffffffffffff)); fiat_np521_mulx_u64(&x53, &x54, x45, UINT64_C(0xffffffffffffffff)); fiat_np521_mulx_u64(&x55, &x56, x45, UINT64_C(0xfffffffffffffffa)); fiat_np521_mulx_u64(&x57, &x58, x45, UINT64_C(0x51868783bf2f966b)); fiat_np521_mulx_u64(&x59, &x60, x45, UINT64_C(0x7fcc0148f709a5d0)); fiat_np521_mulx_u64(&x61, &x62, x45, UINT64_C(0x3bb5c9b8899c47ae)); fiat_np521_mulx_u64(&x63, &x64, x45, UINT64_C(0xbb6fb71e91386409)); fiat_np521_addcarryx_u64(&x65, &x66, 0x0, x64, x61); fiat_np521_addcarryx_u64(&x67, &x68, x66, x62, x59); fiat_np521_addcarryx_u64(&x69, &x70, x68, x60, x57); fiat_np521_addcarryx_u64(&x71, &x72, x70, x58, x55); fiat_np521_addcarryx_u64(&x73, &x74, x72, x56, x53); fiat_np521_addcarryx_u64(&x75, &x76, x74, x54, x51); fiat_np521_addcarryx_u64(&x77, &x78, x76, x52, x49); fiat_np521_addcarryx_u64(&x79, &x80, x78, x50, x47); x81 = (x80 + x48); fiat_np521_addcarryx_u64(&x82, &x83, 0x0, x26, x63); fiat_np521_addcarryx_u64(&x84, &x85, x83, x28, x65); fiat_np521_addcarryx_u64(&x86, &x87, x85, x30, x67); fiat_np521_addcarryx_u64(&x88, &x89, x87, x32, x69); fiat_np521_addcarryx_u64(&x90, &x91, x89, x34, x71); fiat_np521_addcarryx_u64(&x92, &x93, x91, x36, x73); fiat_np521_addcarryx_u64(&x94, &x95, x93, x38, x75); fiat_np521_addcarryx_u64(&x96, &x97, x95, x40, x77); fiat_np521_addcarryx_u64(&x98, &x99, x97, x42, x79); fiat_np521_addcarryx_u64(&x100, &x101, x99, x44, x81); fiat_np521_mulx_u64(&x102, &x103, x1, (arg2[8])); fiat_np521_mulx_u64(&x104, &x105, x1, (arg2[7])); fiat_np521_mulx_u64(&x106, &x107, x1, (arg2[6])); fiat_np521_mulx_u64(&x108, &x109, x1, (arg2[5])); fiat_np521_mulx_u64(&x110, &x111, x1, (arg2[4])); fiat_np521_mulx_u64(&x112, &x113, x1, (arg2[3])); fiat_np521_mulx_u64(&x114, &x115, x1, (arg2[2])); fiat_np521_mulx_u64(&x116, &x117, x1, (arg2[1])); fiat_np521_mulx_u64(&x118, &x119, x1, (arg2[0])); fiat_np521_addcarryx_u64(&x120, &x121, 0x0, x119, x116); fiat_np521_addcarryx_u64(&x122, &x123, x121, x117, x114); fiat_np521_addcarryx_u64(&x124, &x125, x123, x115, x112); fiat_np521_addcarryx_u64(&x126, &x127, x125, x113, x110); fiat_np521_addcarryx_u64(&x128, &x129, x127, x111, x108); fiat_np521_addcarryx_u64(&x130, &x131, x129, x109, x106); fiat_np521_addcarryx_u64(&x132, &x133, x131, x107, x104); fiat_np521_addcarryx_u64(&x134, &x135, x133, x105, x102); x136 = (x135 + x103); fiat_np521_addcarryx_u64(&x137, &x138, 0x0, x84, x118); fiat_np521_addcarryx_u64(&x139, &x140, x138, x86, x120); fiat_np521_addcarryx_u64(&x141, &x142, x140, x88, x122); fiat_np521_addcarryx_u64(&x143, &x144, x142, x90, x124); fiat_np521_addcarryx_u64(&x145, &x146, x144, x92, x126); fiat_np521_addcarryx_u64(&x147, &x148, x146, x94, x128); fiat_np521_addcarryx_u64(&x149, &x150, x148, x96, x130); fiat_np521_addcarryx_u64(&x151, &x152, x150, x98, x132); fiat_np521_addcarryx_u64(&x153, &x154, x152, x100, x134); fiat_np521_addcarryx_u64(&x155, &x156, x154, x101, x136); fiat_np521_mulx_u64(&x157, &x158, x137, UINT64_C(0x1d2f5ccd79a995c7)); fiat_np521_mulx_u64(&x159, &x160, x157, UINT16_C(0x1ff)); fiat_np521_mulx_u64(&x161, &x162, x157, UINT64_C(0xffffffffffffffff)); fiat_np521_mulx_u64(&x163, &x164, x157, UINT64_C(0xffffffffffffffff)); fiat_np521_mulx_u64(&x165, &x166, x157, UINT64_C(0xffffffffffffffff)); fiat_np521_mulx_u64(&x167, &x168, x157, UINT64_C(0xfffffffffffffffa)); fiat_np521_mulx_u64(&x169, &x170, x157, UINT64_C(0x51868783bf2f966b)); fiat_np521_mulx_u64(&x171, &x172, x157, UINT64_C(0x7fcc0148f709a5d0)); fiat_np521_mulx_u64(&x173, &x174, x157, UINT64_C(0x3bb5c9b8899c47ae)); fiat_np521_mulx_u64(&x175, &x176, x157, UINT64_C(0xbb6fb71e91386409)); fiat_np521_addcarryx_u64(&x177, &x178, 0x0, x176, x173); fiat_np521_addcarryx_u64(&x179, &x180, x178, x174, x171); fiat_np521_addcarryx_u64(&x181, &x182, x180, x172, x169); fiat_np521_addcarryx_u64(&x183, &x184, x182, x170, x167); fiat_np521_addcarryx_u64(&x185, &x186, x184, x168, x165); fiat_np521_addcarryx_u64(&x187, &x188, x186, x166, x163); fiat_np521_addcarryx_u64(&x189, &x190, x188, x164, x161); fiat_np521_addcarryx_u64(&x191, &x192, x190, x162, x159); x193 = (x192 + x160); fiat_np521_addcarryx_u64(&x194, &x195, 0x0, x137, x175); fiat_np521_addcarryx_u64(&x196, &x197, x195, x139, x177); fiat_np521_addcarryx_u64(&x198, &x199, x197, x141, x179); fiat_np521_addcarryx_u64(&x200, &x201, x199, x143, x181); fiat_np521_addcarryx_u64(&x202, &x203, x201, x145, x183); fiat_np521_addcarryx_u64(&x204, &x205, x203, x147, x185); fiat_np521_addcarryx_u64(&x206, &x207, x205, x149, x187); fiat_np521_addcarryx_u64(&x208, &x209, x207, x151, x189); fiat_np521_addcarryx_u64(&x210, &x211, x209, x153, x191); fiat_np521_addcarryx_u64(&x212, &x213, x211, x155, x193); x214 = ((uint64_t)x213 + x156); fiat_np521_mulx_u64(&x215, &x216, x2, (arg2[8])); fiat_np521_mulx_u64(&x217, &x218, x2, (arg2[7])); fiat_np521_mulx_u64(&x219, &x220, x2, (arg2[6])); fiat_np521_mulx_u64(&x221, &x222, x2, (arg2[5])); fiat_np521_mulx_u64(&x223, &x224, x2, (arg2[4])); fiat_np521_mulx_u64(&x225, &x226, x2, (arg2[3])); fiat_np521_mulx_u64(&x227, &x228, x2, (arg2[2])); fiat_np521_mulx_u64(&x229, &x230, x2, (arg2[1])); fiat_np521_mulx_u64(&x231, &x232, x2, (arg2[0])); fiat_np521_addcarryx_u64(&x233, &x234, 0x0, x232, x229); fiat_np521_addcarryx_u64(&x235, &x236, x234, x230, x227); fiat_np521_addcarryx_u64(&x237, &x238, x236, x228, x225); fiat_np521_addcarryx_u64(&x239, &x240, x238, x226, x223); fiat_np521_addcarryx_u64(&x241, &x242, x240, x224, x221); fiat_np521_addcarryx_u64(&x243, &x244, x242, x222, x219); fiat_np521_addcarryx_u64(&x245, &x246, x244, x220, x217); fiat_np521_addcarryx_u64(&x247, &x248, x246, x218, x215); x249 = (x248 + x216); fiat_np521_addcarryx_u64(&x250, &x251, 0x0, x196, x231); fiat_np521_addcarryx_u64(&x252, &x253, x251, x198, x233); fiat_np521_addcarryx_u64(&x254, &x255, x253, x200, x235); fiat_np521_addcarryx_u64(&x256, &x257, x255, x202, x237); fiat_np521_addcarryx_u64(&x258, &x259, x257, x204, x239); fiat_np521_addcarryx_u64(&x260, &x261, x259, x206, x241); fiat_np521_addcarryx_u64(&x262, &x263, x261, x208, x243); fiat_np521_addcarryx_u64(&x264, &x265, x263, x210, x245); fiat_np521_addcarryx_u64(&x266, &x267, x265, x212, x247); fiat_np521_addcarryx_u64(&x268, &x269, x267, x214, x249); fiat_np521_mulx_u64(&x270, &x271, x250, UINT64_C(0x1d2f5ccd79a995c7)); fiat_np521_mulx_u64(&x272, &x273, x270, UINT16_C(0x1ff)); fiat_np521_mulx_u64(&x274, &x275, x270, UINT64_C(0xffffffffffffffff)); fiat_np521_mulx_u64(&x276, &x277, x270, UINT64_C(0xffffffffffffffff)); fiat_np521_mulx_u64(&x278, &x279, x270, UINT64_C(0xffffffffffffffff)); fiat_np521_mulx_u64(&x280, &x281, x270, UINT64_C(0xfffffffffffffffa)); fiat_np521_mulx_u64(&x282, &x283, x270, UINT64_C(0x51868783bf2f966b)); fiat_np521_mulx_u64(&x284, &x285, x270, UINT64_C(0x7fcc0148f709a5d0)); fiat_np521_mulx_u64(&x286, &x287, x270, UINT64_C(0x3bb5c9b8899c47ae)); fiat_np521_mulx_u64(&x288, &x289, x270, UINT64_C(0xbb6fb71e91386409)); fiat_np521_addcarryx_u64(&x290, &x291, 0x0, x289, x286); fiat_np521_addcarryx_u64(&x292, &x293, x291, x287, x284); fiat_np521_addcarryx_u64(&x294, &x295, x293, x285, x282); fiat_np521_addcarryx_u64(&x296, &x297, x295, x283, x280); fiat_np521_addcarryx_u64(&x298, &x299, x297, x281, x278); fiat_np521_addcarryx_u64(&x300, &x301, x299, x279, x276); fiat_np521_addcarryx_u64(&x302, &x303, x301, x277, x274); fiat_np521_addcarryx_u64(&x304, &x305, x303, x275, x272); x306 = (x305 + x273); fiat_np521_addcarryx_u64(&x307, &x308, 0x0, x250, x288); fiat_np521_addcarryx_u64(&x309, &x310, x308, x252, x290); fiat_np521_addcarryx_u64(&x311, &x312, x310, x254, x292); fiat_np521_addcarryx_u64(&x313, &x314, x312, x256, x294); fiat_np521_addcarryx_u64(&x315, &x316, x314, x258, x296); fiat_np521_addcarryx_u64(&x317, &x318, x316, x260, x298); fiat_np521_addcarryx_u64(&x319, &x320, x318, x262, x300); fiat_np521_addcarryx_u64(&x321, &x322, x320, x264, x302); fiat_np521_addcarryx_u64(&x323, &x324, x322, x266, x304); fiat_np521_addcarryx_u64(&x325, &x326, x324, x268, x306); x327 = ((uint64_t)x326 + x269); fiat_np521_mulx_u64(&x328, &x329, x3, (arg2[8])); fiat_np521_mulx_u64(&x330, &x331, x3, (arg2[7])); fiat_np521_mulx_u64(&x332, &x333, x3, (arg2[6])); fiat_np521_mulx_u64(&x334, &x335, x3, (arg2[5])); fiat_np521_mulx_u64(&x336, &x337, x3, (arg2[4])); fiat_np521_mulx_u64(&x338, &x339, x3, (arg2[3])); fiat_np521_mulx_u64(&x340, &x341, x3, (arg2[2])); fiat_np521_mulx_u64(&x342, &x343, x3, (arg2[1])); fiat_np521_mulx_u64(&x344, &x345, x3, (arg2[0])); fiat_np521_addcarryx_u64(&x346, &x347, 0x0, x345, x342); fiat_np521_addcarryx_u64(&x348, &x349, x347, x343, x340); fiat_np521_addcarryx_u64(&x350, &x351, x349, x341, x338); fiat_np521_addcarryx_u64(&x352, &x353, x351, x339, x336); fiat_np521_addcarryx_u64(&x354, &x355, x353, x337, x334); fiat_np521_addcarryx_u64(&x356, &x357, x355, x335, x332); fiat_np521_addcarryx_u64(&x358, &x359, x357, x333, x330); fiat_np521_addcarryx_u64(&x360, &x361, x359, x331, x328); x362 = (x361 + x329); fiat_np521_addcarryx_u64(&x363, &x364, 0x0, x309, x344); fiat_np521_addcarryx_u64(&x365, &x366, x364, x311, x346); fiat_np521_addcarryx_u64(&x367, &x368, x366, x313, x348); fiat_np521_addcarryx_u64(&x369, &x370, x368, x315, x350); fiat_np521_addcarryx_u64(&x371, &x372, x370, x317, x352); fiat_np521_addcarryx_u64(&x373, &x374, x372, x319, x354); fiat_np521_addcarryx_u64(&x375, &x376, x374, x321, x356); fiat_np521_addcarryx_u64(&x377, &x378, x376, x323, x358); fiat_np521_addcarryx_u64(&x379, &x380, x378, x325, x360); fiat_np521_addcarryx_u64(&x381, &x382, x380, x327, x362); fiat_np521_mulx_u64(&x383, &x384, x363, UINT64_C(0x1d2f5ccd79a995c7)); fiat_np521_mulx_u64(&x385, &x386, x383, UINT16_C(0x1ff)); fiat_np521_mulx_u64(&x387, &x388, x383, UINT64_C(0xffffffffffffffff)); fiat_np521_mulx_u64(&x389, &x390, x383, UINT64_C(0xffffffffffffffff)); fiat_np521_mulx_u64(&x391, &x392, x383, UINT64_C(0xffffffffffffffff)); fiat_np521_mulx_u64(&x393, &x394, x383, UINT64_C(0xfffffffffffffffa)); fiat_np521_mulx_u64(&x395, &x396, x383, UINT64_C(0x51868783bf2f966b)); fiat_np521_mulx_u64(&x397, &x398, x383, UINT64_C(0x7fcc0148f709a5d0)); fiat_np521_mulx_u64(&x399, &x400, x383, UINT64_C(0x3bb5c9b8899c47ae)); fiat_np521_mulx_u64(&x401, &x402, x383, UINT64_C(0xbb6fb71e91386409)); fiat_np521_addcarryx_u64(&x403, &x404, 0x0, x402, x399); fiat_np521_addcarryx_u64(&x405, &x406, x404, x400, x397); fiat_np521_addcarryx_u64(&x407, &x408, x406, x398, x395); fiat_np521_addcarryx_u64(&x409, &x410, x408, x396, x393); fiat_np521_addcarryx_u64(&x411, &x412, x410, x394, x391); fiat_np521_addcarryx_u64(&x413, &x414, x412, x392, x389); fiat_np521_addcarryx_u64(&x415, &x416, x414, x390, x387); fiat_np521_addcarryx_u64(&x417, &x418, x416, x388, x385); x419 = (x418 + x386); fiat_np521_addcarryx_u64(&x420, &x421, 0x0, x363, x401); fiat_np521_addcarryx_u64(&x422, &x423, x421, x365, x403); fiat_np521_addcarryx_u64(&x424, &x425, x423, x367, x405); fiat_np521_addcarryx_u64(&x426, &x427, x425, x369, x407); fiat_np521_addcarryx_u64(&x428, &x429, x427, x371, x409); fiat_np521_addcarryx_u64(&x430, &x431, x429, x373, x411); fiat_np521_addcarryx_u64(&x432, &x433, x431, x375, x413); fiat_np521_addcarryx_u64(&x434, &x435, x433, x377, x415); fiat_np521_addcarryx_u64(&x436, &x437, x435, x379, x417); fiat_np521_addcarryx_u64(&x438, &x439, x437, x381, x419); x440 = ((uint64_t)x439 + x382); fiat_np521_mulx_u64(&x441, &x442, x4, (arg2[8])); fiat_np521_mulx_u64(&x443, &x444, x4, (arg2[7])); fiat_np521_mulx_u64(&x445, &x446, x4, (arg2[6])); fiat_np521_mulx_u64(&x447, &x448, x4, (arg2[5])); fiat_np521_mulx_u64(&x449, &x450, x4, (arg2[4])); fiat_np521_mulx_u64(&x451, &x452, x4, (arg2[3])); fiat_np521_mulx_u64(&x453, &x454, x4, (arg2[2])); fiat_np521_mulx_u64(&x455, &x456, x4, (arg2[1])); fiat_np521_mulx_u64(&x457, &x458, x4, (arg2[0])); fiat_np521_addcarryx_u64(&x459, &x460, 0x0, x458, x455); fiat_np521_addcarryx_u64(&x461, &x462, x460, x456, x453); fiat_np521_addcarryx_u64(&x463, &x464, x462, x454, x451); fiat_np521_addcarryx_u64(&x465, &x466, x464, x452, x449); fiat_np521_addcarryx_u64(&x467, &x468, x466, x450, x447); fiat_np521_addcarryx_u64(&x469, &x470, x468, x448, x445); fiat_np521_addcarryx_u64(&x471, &x472, x470, x446, x443); fiat_np521_addcarryx_u64(&x473, &x474, x472, x444, x441); x475 = (x474 + x442); fiat_np521_addcarryx_u64(&x476, &x477, 0x0, x422, x457); fiat_np521_addcarryx_u64(&x478, &x479, x477, x424, x459); fiat_np521_addcarryx_u64(&x480, &x481, x479, x426, x461); fiat_np521_addcarryx_u64(&x482, &x483, x481, x428, x463); fiat_np521_addcarryx_u64(&x484, &x485, x483, x430, x465); fiat_np521_addcarryx_u64(&x486, &x487, x485, x432, x467); fiat_np521_addcarryx_u64(&x488, &x489, x487, x434, x469); fiat_np521_addcarryx_u64(&x490, &x491, x489, x436, x471); fiat_np521_addcarryx_u64(&x492, &x493, x491, x438, x473); fiat_np521_addcarryx_u64(&x494, &x495, x493, x440, x475); fiat_np521_mulx_u64(&x496, &x497, x476, UINT64_C(0x1d2f5ccd79a995c7)); fiat_np521_mulx_u64(&x498, &x499, x496, UINT16_C(0x1ff)); fiat_np521_mulx_u64(&x500, &x501, x496, UINT64_C(0xffffffffffffffff)); fiat_np521_mulx_u64(&x502, &x503, x496, UINT64_C(0xffffffffffffffff)); fiat_np521_mulx_u64(&x504, &x505, x496, UINT64_C(0xffffffffffffffff)); fiat_np521_mulx_u64(&x506, &x507, x496, UINT64_C(0xfffffffffffffffa)); fiat_np521_mulx_u64(&x508, &x509, x496, UINT64_C(0x51868783bf2f966b)); fiat_np521_mulx_u64(&x510, &x511, x496, UINT64_C(0x7fcc0148f709a5d0)); fiat_np521_mulx_u64(&x512, &x513, x496, UINT64_C(0x3bb5c9b8899c47ae)); fiat_np521_mulx_u64(&x514, &x515, x496, UINT64_C(0xbb6fb71e91386409)); fiat_np521_addcarryx_u64(&x516, &x517, 0x0, x515, x512); fiat_np521_addcarryx_u64(&x518, &x519, x517, x513, x510); fiat_np521_addcarryx_u64(&x520, &x521, x519, x511, x508); fiat_np521_addcarryx_u64(&x522, &x523, x521, x509, x506); fiat_np521_addcarryx_u64(&x524, &x525, x523, x507, x504); fiat_np521_addcarryx_u64(&x526, &x527, x525, x505, x502); fiat_np521_addcarryx_u64(&x528, &x529, x527, x503, x500); fiat_np521_addcarryx_u64(&x530, &x531, x529, x501, x498); x532 = (x531 + x499); fiat_np521_addcarryx_u64(&x533, &x534, 0x0, x476, x514); fiat_np521_addcarryx_u64(&x535, &x536, x534, x478, x516); fiat_np521_addcarryx_u64(&x537, &x538, x536, x480, x518); fiat_np521_addcarryx_u64(&x539, &x540, x538, x482, x520); fiat_np521_addcarryx_u64(&x541, &x542, x540, x484, x522); fiat_np521_addcarryx_u64(&x543, &x544, x542, x486, x524); fiat_np521_addcarryx_u64(&x545, &x546, x544, x488, x526); fiat_np521_addcarryx_u64(&x547, &x548, x546, x490, x528); fiat_np521_addcarryx_u64(&x549, &x550, x548, x492, x530); fiat_np521_addcarryx_u64(&x551, &x552, x550, x494, x532); x553 = ((uint64_t)x552 + x495); fiat_np521_mulx_u64(&x554, &x555, x5, (arg2[8])); fiat_np521_mulx_u64(&x556, &x557, x5, (arg2[7])); fiat_np521_mulx_u64(&x558, &x559, x5, (arg2[6])); fiat_np521_mulx_u64(&x560, &x561, x5, (arg2[5])); fiat_np521_mulx_u64(&x562, &x563, x5, (arg2[4])); fiat_np521_mulx_u64(&x564, &x565, x5, (arg2[3])); fiat_np521_mulx_u64(&x566, &x567, x5, (arg2[2])); fiat_np521_mulx_u64(&x568, &x569, x5, (arg2[1])); fiat_np521_mulx_u64(&x570, &x571, x5, (arg2[0])); fiat_np521_addcarryx_u64(&x572, &x573, 0x0, x571, x568); fiat_np521_addcarryx_u64(&x574, &x575, x573, x569, x566); fiat_np521_addcarryx_u64(&x576, &x577, x575, x567, x564); fiat_np521_addcarryx_u64(&x578, &x579, x577, x565, x562); fiat_np521_addcarryx_u64(&x580, &x581, x579, x563, x560); fiat_np521_addcarryx_u64(&x582, &x583, x581, x561, x558); fiat_np521_addcarryx_u64(&x584, &x585, x583, x559, x556); fiat_np521_addcarryx_u64(&x586, &x587, x585, x557, x554); x588 = (x587 + x555); fiat_np521_addcarryx_u64(&x589, &x590, 0x0, x535, x570); fiat_np521_addcarryx_u64(&x591, &x592, x590, x537, x572); fiat_np521_addcarryx_u64(&x593, &x594, x592, x539, x574); fiat_np521_addcarryx_u64(&x595, &x596, x594, x541, x576); fiat_np521_addcarryx_u64(&x597, &x598, x596, x543, x578); fiat_np521_addcarryx_u64(&x599, &x600, x598, x545, x580); fiat_np521_addcarryx_u64(&x601, &x602, x600, x547, x582); fiat_np521_addcarryx_u64(&x603, &x604, x602, x549, x584); fiat_np521_addcarryx_u64(&x605, &x606, x604, x551, x586); fiat_np521_addcarryx_u64(&x607, &x608, x606, x553, x588); fiat_np521_mulx_u64(&x609, &x610, x589, UINT64_C(0x1d2f5ccd79a995c7)); fiat_np521_mulx_u64(&x611, &x612, x609, UINT16_C(0x1ff)); fiat_np521_mulx_u64(&x613, &x614, x609, UINT64_C(0xffffffffffffffff)); fiat_np521_mulx_u64(&x615, &x616, x609, UINT64_C(0xffffffffffffffff)); fiat_np521_mulx_u64(&x617, &x618, x609, UINT64_C(0xffffffffffffffff)); fiat_np521_mulx_u64(&x619, &x620, x609, UINT64_C(0xfffffffffffffffa)); fiat_np521_mulx_u64(&x621, &x622, x609, UINT64_C(0x51868783bf2f966b)); fiat_np521_mulx_u64(&x623, &x624, x609, UINT64_C(0x7fcc0148f709a5d0)); fiat_np521_mulx_u64(&x625, &x626, x609, UINT64_C(0x3bb5c9b8899c47ae)); fiat_np521_mulx_u64(&x627, &x628, x609, UINT64_C(0xbb6fb71e91386409)); fiat_np521_addcarryx_u64(&x629, &x630, 0x0, x628, x625); fiat_np521_addcarryx_u64(&x631, &x632, x630, x626, x623); fiat_np521_addcarryx_u64(&x633, &x634, x632, x624, x621); fiat_np521_addcarryx_u64(&x635, &x636, x634, x622, x619); fiat_np521_addcarryx_u64(&x637, &x638, x636, x620, x617); fiat_np521_addcarryx_u64(&x639, &x640, x638, x618, x615); fiat_np521_addcarryx_u64(&x641, &x642, x640, x616, x613); fiat_np521_addcarryx_u64(&x643, &x644, x642, x614, x611); x645 = (x644 + x612); fiat_np521_addcarryx_u64(&x646, &x647, 0x0, x589, x627); fiat_np521_addcarryx_u64(&x648, &x649, x647, x591, x629); fiat_np521_addcarryx_u64(&x650, &x651, x649, x593, x631); fiat_np521_addcarryx_u64(&x652, &x653, x651, x595, x633); fiat_np521_addcarryx_u64(&x654, &x655, x653, x597, x635); fiat_np521_addcarryx_u64(&x656, &x657, x655, x599, x637); fiat_np521_addcarryx_u64(&x658, &x659, x657, x601, x639); fiat_np521_addcarryx_u64(&x660, &x661, x659, x603, x641); fiat_np521_addcarryx_u64(&x662, &x663, x661, x605, x643); fiat_np521_addcarryx_u64(&x664, &x665, x663, x607, x645); x666 = ((uint64_t)x665 + x608); fiat_np521_mulx_u64(&x667, &x668, x6, (arg2[8])); fiat_np521_mulx_u64(&x669, &x670, x6, (arg2[7])); fiat_np521_mulx_u64(&x671, &x672, x6, (arg2[6])); fiat_np521_mulx_u64(&x673, &x674, x6, (arg2[5])); fiat_np521_mulx_u64(&x675, &x676, x6, (arg2[4])); fiat_np521_mulx_u64(&x677, &x678, x6, (arg2[3])); fiat_np521_mulx_u64(&x679, &x680, x6, (arg2[2])); fiat_np521_mulx_u64(&x681, &x682, x6, (arg2[1])); fiat_np521_mulx_u64(&x683, &x684, x6, (arg2[0])); fiat_np521_addcarryx_u64(&x685, &x686, 0x0, x684, x681); fiat_np521_addcarryx_u64(&x687, &x688, x686, x682, x679); fiat_np521_addcarryx_u64(&x689, &x690, x688, x680, x677); fiat_np521_addcarryx_u64(&x691, &x692, x690, x678, x675); fiat_np521_addcarryx_u64(&x693, &x694, x692, x676, x673); fiat_np521_addcarryx_u64(&x695, &x696, x694, x674, x671); fiat_np521_addcarryx_u64(&x697, &x698, x696, x672, x669); fiat_np521_addcarryx_u64(&x699, &x700, x698, x670, x667); x701 = (x700 + x668); fiat_np521_addcarryx_u64(&x702, &x703, 0x0, x648, x683); fiat_np521_addcarryx_u64(&x704, &x705, x703, x650, x685); fiat_np521_addcarryx_u64(&x706, &x707, x705, x652, x687); fiat_np521_addcarryx_u64(&x708, &x709, x707, x654, x689); fiat_np521_addcarryx_u64(&x710, &x711, x709, x656, x691); fiat_np521_addcarryx_u64(&x712, &x713, x711, x658, x693); fiat_np521_addcarryx_u64(&x714, &x715, x713, x660, x695); fiat_np521_addcarryx_u64(&x716, &x717, x715, x662, x697); fiat_np521_addcarryx_u64(&x718, &x719, x717, x664, x699); fiat_np521_addcarryx_u64(&x720, &x721, x719, x666, x701); fiat_np521_mulx_u64(&x722, &x723, x702, UINT64_C(0x1d2f5ccd79a995c7)); fiat_np521_mulx_u64(&x724, &x725, x722, UINT16_C(0x1ff)); fiat_np521_mulx_u64(&x726, &x727, x722, UINT64_C(0xffffffffffffffff)); fiat_np521_mulx_u64(&x728, &x729, x722, UINT64_C(0xffffffffffffffff)); fiat_np521_mulx_u64(&x730, &x731, x722, UINT64_C(0xffffffffffffffff)); fiat_np521_mulx_u64(&x732, &x733, x722, UINT64_C(0xfffffffffffffffa)); fiat_np521_mulx_u64(&x734, &x735, x722, UINT64_C(0x51868783bf2f966b)); fiat_np521_mulx_u64(&x736, &x737, x722, UINT64_C(0x7fcc0148f709a5d0)); fiat_np521_mulx_u64(&x738, &x739, x722, UINT64_C(0x3bb5c9b8899c47ae)); fiat_np521_mulx_u64(&x740, &x741, x722, UINT64_C(0xbb6fb71e91386409)); fiat_np521_addcarryx_u64(&x742, &x743, 0x0, x741, x738); fiat_np521_addcarryx_u64(&x744, &x745, x743, x739, x736); fiat_np521_addcarryx_u64(&x746, &x747, x745, x737, x734); fiat_np521_addcarryx_u64(&x748, &x749, x747, x735, x732); fiat_np521_addcarryx_u64(&x750, &x751, x749, x733, x730); fiat_np521_addcarryx_u64(&x752, &x753, x751, x731, x728); fiat_np521_addcarryx_u64(&x754, &x755, x753, x729, x726); fiat_np521_addcarryx_u64(&x756, &x757, x755, x727, x724); x758 = (x757 + x725); fiat_np521_addcarryx_u64(&x759, &x760, 0x0, x702, x740); fiat_np521_addcarryx_u64(&x761, &x762, x760, x704, x742); fiat_np521_addcarryx_u64(&x763, &x764, x762, x706, x744); fiat_np521_addcarryx_u64(&x765, &x766, x764, x708, x746); fiat_np521_addcarryx_u64(&x767, &x768, x766, x710, x748); fiat_np521_addcarryx_u64(&x769, &x770, x768, x712, x750); fiat_np521_addcarryx_u64(&x771, &x772, x770, x714, x752); fiat_np521_addcarryx_u64(&x773, &x774, x772, x716, x754); fiat_np521_addcarryx_u64(&x775, &x776, x774, x718, x756); fiat_np521_addcarryx_u64(&x777, &x778, x776, x720, x758); x779 = ((uint64_t)x778 + x721); fiat_np521_mulx_u64(&x780, &x781, x7, (arg2[8])); fiat_np521_mulx_u64(&x782, &x783, x7, (arg2[7])); fiat_np521_mulx_u64(&x784, &x785, x7, (arg2[6])); fiat_np521_mulx_u64(&x786, &x787, x7, (arg2[5])); fiat_np521_mulx_u64(&x788, &x789, x7, (arg2[4])); fiat_np521_mulx_u64(&x790, &x791, x7, (arg2[3])); fiat_np521_mulx_u64(&x792, &x793, x7, (arg2[2])); fiat_np521_mulx_u64(&x794, &x795, x7, (arg2[1])); fiat_np521_mulx_u64(&x796, &x797, x7, (arg2[0])); fiat_np521_addcarryx_u64(&x798, &x799, 0x0, x797, x794); fiat_np521_addcarryx_u64(&x800, &x801, x799, x795, x792); fiat_np521_addcarryx_u64(&x802, &x803, x801, x793, x790); fiat_np521_addcarryx_u64(&x804, &x805, x803, x791, x788); fiat_np521_addcarryx_u64(&x806, &x807, x805, x789, x786); fiat_np521_addcarryx_u64(&x808, &x809, x807, x787, x784); fiat_np521_addcarryx_u64(&x810, &x811, x809, x785, x782); fiat_np521_addcarryx_u64(&x812, &x813, x811, x783, x780); x814 = (x813 + x781); fiat_np521_addcarryx_u64(&x815, &x816, 0x0, x761, x796); fiat_np521_addcarryx_u64(&x817, &x818, x816, x763, x798); fiat_np521_addcarryx_u64(&x819, &x820, x818, x765, x800); fiat_np521_addcarryx_u64(&x821, &x822, x820, x767, x802); fiat_np521_addcarryx_u64(&x823, &x824, x822, x769, x804); fiat_np521_addcarryx_u64(&x825, &x826, x824, x771, x806); fiat_np521_addcarryx_u64(&x827, &x828, x826, x773, x808); fiat_np521_addcarryx_u64(&x829, &x830, x828, x775, x810); fiat_np521_addcarryx_u64(&x831, &x832, x830, x777, x812); fiat_np521_addcarryx_u64(&x833, &x834, x832, x779, x814); fiat_np521_mulx_u64(&x835, &x836, x815, UINT64_C(0x1d2f5ccd79a995c7)); fiat_np521_mulx_u64(&x837, &x838, x835, UINT16_C(0x1ff)); fiat_np521_mulx_u64(&x839, &x840, x835, UINT64_C(0xffffffffffffffff)); fiat_np521_mulx_u64(&x841, &x842, x835, UINT64_C(0xffffffffffffffff)); fiat_np521_mulx_u64(&x843, &x844, x835, UINT64_C(0xffffffffffffffff)); fiat_np521_mulx_u64(&x845, &x846, x835, UINT64_C(0xfffffffffffffffa)); fiat_np521_mulx_u64(&x847, &x848, x835, UINT64_C(0x51868783bf2f966b)); fiat_np521_mulx_u64(&x849, &x850, x835, UINT64_C(0x7fcc0148f709a5d0)); fiat_np521_mulx_u64(&x851, &x852, x835, UINT64_C(0x3bb5c9b8899c47ae)); fiat_np521_mulx_u64(&x853, &x854, x835, UINT64_C(0xbb6fb71e91386409)); fiat_np521_addcarryx_u64(&x855, &x856, 0x0, x854, x851); fiat_np521_addcarryx_u64(&x857, &x858, x856, x852, x849); fiat_np521_addcarryx_u64(&x859, &x860, x858, x850, x847); fiat_np521_addcarryx_u64(&x861, &x862, x860, x848, x845); fiat_np521_addcarryx_u64(&x863, &x864, x862, x846, x843); fiat_np521_addcarryx_u64(&x865, &x866, x864, x844, x841); fiat_np521_addcarryx_u64(&x867, &x868, x866, x842, x839); fiat_np521_addcarryx_u64(&x869, &x870, x868, x840, x837); x871 = (x870 + x838); fiat_np521_addcarryx_u64(&x872, &x873, 0x0, x815, x853); fiat_np521_addcarryx_u64(&x874, &x875, x873, x817, x855); fiat_np521_addcarryx_u64(&x876, &x877, x875, x819, x857); fiat_np521_addcarryx_u64(&x878, &x879, x877, x821, x859); fiat_np521_addcarryx_u64(&x880, &x881, x879, x823, x861); fiat_np521_addcarryx_u64(&x882, &x883, x881, x825, x863); fiat_np521_addcarryx_u64(&x884, &x885, x883, x827, x865); fiat_np521_addcarryx_u64(&x886, &x887, x885, x829, x867); fiat_np521_addcarryx_u64(&x888, &x889, x887, x831, x869); fiat_np521_addcarryx_u64(&x890, &x891, x889, x833, x871); x892 = ((uint64_t)x891 + x834); fiat_np521_mulx_u64(&x893, &x894, x8, (arg2[8])); fiat_np521_mulx_u64(&x895, &x896, x8, (arg2[7])); fiat_np521_mulx_u64(&x897, &x898, x8, (arg2[6])); fiat_np521_mulx_u64(&x899, &x900, x8, (arg2[5])); fiat_np521_mulx_u64(&x901, &x902, x8, (arg2[4])); fiat_np521_mulx_u64(&x903, &x904, x8, (arg2[3])); fiat_np521_mulx_u64(&x905, &x906, x8, (arg2[2])); fiat_np521_mulx_u64(&x907, &x908, x8, (arg2[1])); fiat_np521_mulx_u64(&x909, &x910, x8, (arg2[0])); fiat_np521_addcarryx_u64(&x911, &x912, 0x0, x910, x907); fiat_np521_addcarryx_u64(&x913, &x914, x912, x908, x905); fiat_np521_addcarryx_u64(&x915, &x916, x914, x906, x903); fiat_np521_addcarryx_u64(&x917, &x918, x916, x904, x901); fiat_np521_addcarryx_u64(&x919, &x920, x918, x902, x899); fiat_np521_addcarryx_u64(&x921, &x922, x920, x900, x897); fiat_np521_addcarryx_u64(&x923, &x924, x922, x898, x895); fiat_np521_addcarryx_u64(&x925, &x926, x924, x896, x893); x927 = (x926 + x894); fiat_np521_addcarryx_u64(&x928, &x929, 0x0, x874, x909); fiat_np521_addcarryx_u64(&x930, &x931, x929, x876, x911); fiat_np521_addcarryx_u64(&x932, &x933, x931, x878, x913); fiat_np521_addcarryx_u64(&x934, &x935, x933, x880, x915); fiat_np521_addcarryx_u64(&x936, &x937, x935, x882, x917); fiat_np521_addcarryx_u64(&x938, &x939, x937, x884, x919); fiat_np521_addcarryx_u64(&x940, &x941, x939, x886, x921); fiat_np521_addcarryx_u64(&x942, &x943, x941, x888, x923); fiat_np521_addcarryx_u64(&x944, &x945, x943, x890, x925); fiat_np521_addcarryx_u64(&x946, &x947, x945, x892, x927); fiat_np521_mulx_u64(&x948, &x949, x928, UINT64_C(0x1d2f5ccd79a995c7)); fiat_np521_mulx_u64(&x950, &x951, x948, UINT16_C(0x1ff)); fiat_np521_mulx_u64(&x952, &x953, x948, UINT64_C(0xffffffffffffffff)); fiat_np521_mulx_u64(&x954, &x955, x948, UINT64_C(0xffffffffffffffff)); fiat_np521_mulx_u64(&x956, &x957, x948, UINT64_C(0xffffffffffffffff)); fiat_np521_mulx_u64(&x958, &x959, x948, UINT64_C(0xfffffffffffffffa)); fiat_np521_mulx_u64(&x960, &x961, x948, UINT64_C(0x51868783bf2f966b)); fiat_np521_mulx_u64(&x962, &x963, x948, UINT64_C(0x7fcc0148f709a5d0)); fiat_np521_mulx_u64(&x964, &x965, x948, UINT64_C(0x3bb5c9b8899c47ae)); fiat_np521_mulx_u64(&x966, &x967, x948, UINT64_C(0xbb6fb71e91386409)); fiat_np521_addcarryx_u64(&x968, &x969, 0x0, x967, x964); fiat_np521_addcarryx_u64(&x970, &x971, x969, x965, x962); fiat_np521_addcarryx_u64(&x972, &x973, x971, x963, x960); fiat_np521_addcarryx_u64(&x974, &x975, x973, x961, x958); fiat_np521_addcarryx_u64(&x976, &x977, x975, x959, x956); fiat_np521_addcarryx_u64(&x978, &x979, x977, x957, x954); fiat_np521_addcarryx_u64(&x980, &x981, x979, x955, x952); fiat_np521_addcarryx_u64(&x982, &x983, x981, x953, x950); x984 = (x983 + x951); fiat_np521_addcarryx_u64(&x985, &x986, 0x0, x928, x966); fiat_np521_addcarryx_u64(&x987, &x988, x986, x930, x968); fiat_np521_addcarryx_u64(&x989, &x990, x988, x932, x970); fiat_np521_addcarryx_u64(&x991, &x992, x990, x934, x972); fiat_np521_addcarryx_u64(&x993, &x994, x992, x936, x974); fiat_np521_addcarryx_u64(&x995, &x996, x994, x938, x976); fiat_np521_addcarryx_u64(&x997, &x998, x996, x940, x978); fiat_np521_addcarryx_u64(&x999, &x1000, x998, x942, x980); fiat_np521_addcarryx_u64(&x1001, &x1002, x1000, x944, x982); fiat_np521_addcarryx_u64(&x1003, &x1004, x1002, x946, x984); x1005 = ((uint64_t)x1004 + x947); fiat_np521_subborrowx_u64(&x1006, &x1007, 0x0, x987, UINT64_C(0xbb6fb71e91386409)); fiat_np521_subborrowx_u64(&x1008, &x1009, x1007, x989, UINT64_C(0x3bb5c9b8899c47ae)); fiat_np521_subborrowx_u64(&x1010, &x1011, x1009, x991, UINT64_C(0x7fcc0148f709a5d0)); fiat_np521_subborrowx_u64(&x1012, &x1013, x1011, x993, UINT64_C(0x51868783bf2f966b)); fiat_np521_subborrowx_u64(&x1014, &x1015, x1013, x995, UINT64_C(0xfffffffffffffffa)); fiat_np521_subborrowx_u64(&x1016, &x1017, x1015, x997, UINT64_C(0xffffffffffffffff)); fiat_np521_subborrowx_u64(&x1018, &x1019, x1017, x999, UINT64_C(0xffffffffffffffff)); fiat_np521_subborrowx_u64(&x1020, &x1021, x1019, x1001, UINT64_C(0xffffffffffffffff)); fiat_np521_subborrowx_u64(&x1022, &x1023, x1021, x1003, UINT16_C(0x1ff)); fiat_np521_subborrowx_u64(&x1024, &x1025, x1023, x1005, 0x0); fiat_np521_cmovznz_u64(&x1026, x1025, x1006, x987); fiat_np521_cmovznz_u64(&x1027, x1025, x1008, x989); fiat_np521_cmovznz_u64(&x1028, x1025, x1010, x991); fiat_np521_cmovznz_u64(&x1029, x1025, x1012, x993); fiat_np521_cmovznz_u64(&x1030, x1025, x1014, x995); fiat_np521_cmovznz_u64(&x1031, x1025, x1016, x997); fiat_np521_cmovznz_u64(&x1032, x1025, x1018, x999); fiat_np521_cmovznz_u64(&x1033, x1025, x1020, x1001); fiat_np521_cmovznz_u64(&x1034, x1025, x1022, x1003); out1[0] = x1026; out1[1] = x1027; out1[2] = x1028; out1[3] = x1029; out1[4] = x1030; out1[5] = x1031; out1[6] = x1032; out1[7] = x1033; out1[8] = x1034; } /* * The function fiat_np521_add adds two field elements in the Montgomery domain. * * Preconditions: * 0 ≤ eval arg1 < m * 0 ≤ eval arg2 < m * Postconditions: * eval (from_montgomery out1) mod m = (eval (from_montgomery arg1) + eval (from_montgomery arg2)) mod m * 0 ≤ eval out1 < m * */ static void fiat_np521_add(fiat_np521_montgomery_domain_field_element out1, const fiat_np521_montgomery_domain_field_element arg1, const fiat_np521_montgomery_domain_field_element arg2) { uint64_t x1; fiat_np521_uint1 x2; uint64_t x3; fiat_np521_uint1 x4; uint64_t x5; fiat_np521_uint1 x6; uint64_t x7; fiat_np521_uint1 x8; uint64_t x9; fiat_np521_uint1 x10; uint64_t x11; fiat_np521_uint1 x12; uint64_t x13; fiat_np521_uint1 x14; uint64_t x15; fiat_np521_uint1 x16; uint64_t x17; fiat_np521_uint1 x18; uint64_t x19; fiat_np521_uint1 x20; uint64_t x21; fiat_np521_uint1 x22; uint64_t x23; fiat_np521_uint1 x24; uint64_t x25; fiat_np521_uint1 x26; uint64_t x27; fiat_np521_uint1 x28; uint64_t x29; fiat_np521_uint1 x30; uint64_t x31; fiat_np521_uint1 x32; uint64_t x33; fiat_np521_uint1 x34; uint64_t x35; fiat_np521_uint1 x36; uint64_t x37; fiat_np521_uint1 x38; uint64_t x39; uint64_t x40; uint64_t x41; uint64_t x42; uint64_t x43; uint64_t x44; uint64_t x45; uint64_t x46; uint64_t x47; fiat_np521_addcarryx_u64(&x1, &x2, 0x0, (arg1[0]), (arg2[0])); fiat_np521_addcarryx_u64(&x3, &x4, x2, (arg1[1]), (arg2[1])); fiat_np521_addcarryx_u64(&x5, &x6, x4, (arg1[2]), (arg2[2])); fiat_np521_addcarryx_u64(&x7, &x8, x6, (arg1[3]), (arg2[3])); fiat_np521_addcarryx_u64(&x9, &x10, x8, (arg1[4]), (arg2[4])); fiat_np521_addcarryx_u64(&x11, &x12, x10, (arg1[5]), (arg2[5])); fiat_np521_addcarryx_u64(&x13, &x14, x12, (arg1[6]), (arg2[6])); fiat_np521_addcarryx_u64(&x15, &x16, x14, (arg1[7]), (arg2[7])); fiat_np521_addcarryx_u64(&x17, &x18, x16, (arg1[8]), (arg2[8])); fiat_np521_subborrowx_u64(&x19, &x20, 0x0, x1, UINT64_C(0xbb6fb71e91386409)); fiat_np521_subborrowx_u64(&x21, &x22, x20, x3, UINT64_C(0x3bb5c9b8899c47ae)); fiat_np521_subborrowx_u64(&x23, &x24, x22, x5, UINT64_C(0x7fcc0148f709a5d0)); fiat_np521_subborrowx_u64(&x25, &x26, x24, x7, UINT64_C(0x51868783bf2f966b)); fiat_np521_subborrowx_u64(&x27, &x28, x26, x9, UINT64_C(0xfffffffffffffffa)); fiat_np521_subborrowx_u64(&x29, &x30, x28, x11, UINT64_C(0xffffffffffffffff)); fiat_np521_subborrowx_u64(&x31, &x32, x30, x13, UINT64_C(0xffffffffffffffff)); fiat_np521_subborrowx_u64(&x33, &x34, x32, x15, UINT64_C(0xffffffffffffffff)); fiat_np521_subborrowx_u64(&x35, &x36, x34, x17, UINT16_C(0x1ff)); fiat_np521_subborrowx_u64(&x37, &x38, x36, x18, 0x0); fiat_np521_cmovznz_u64(&x39, x38, x19, x1); fiat_np521_cmovznz_u64(&x40, x38, x21, x3); fiat_np521_cmovznz_u64(&x41, x38, x23, x5); fiat_np521_cmovznz_u64(&x42, x38, x25, x7); fiat_np521_cmovznz_u64(&x43, x38, x27, x9); fiat_np521_cmovznz_u64(&x44, x38, x29, x11); fiat_np521_cmovznz_u64(&x45, x38, x31, x13); fiat_np521_cmovznz_u64(&x46, x38, x33, x15); fiat_np521_cmovznz_u64(&x47, x38, x35, x17); out1[0] = x39; out1[1] = x40; out1[2] = x41; out1[3] = x42; out1[4] = x43; out1[5] = x44; out1[6] = x45; out1[7] = x46; out1[8] = x47; } /* * The function fiat_np521_opp negates a field element in the Montgomery domain. * * Preconditions: * 0 ≤ eval arg1 < m * Postconditions: * eval (from_montgomery out1) mod m = -eval (from_montgomery arg1) mod m * 0 ≤ eval out1 < m * */ static void fiat_np521_opp(fiat_np521_montgomery_domain_field_element out1, const fiat_np521_montgomery_domain_field_element arg1) { uint64_t x1; fiat_np521_uint1 x2; uint64_t x3; fiat_np521_uint1 x4; uint64_t x5; fiat_np521_uint1 x6; uint64_t x7; fiat_np521_uint1 x8; uint64_t x9; fiat_np521_uint1 x10; uint64_t x11; fiat_np521_uint1 x12; uint64_t x13; fiat_np521_uint1 x14; uint64_t x15; fiat_np521_uint1 x16; uint64_t x17; fiat_np521_uint1 x18; uint64_t x19; uint64_t x20; fiat_np521_uint1 x21; uint64_t x22; fiat_np521_uint1 x23; uint64_t x24; fiat_np521_uint1 x25; uint64_t x26; fiat_np521_uint1 x27; uint64_t x28; fiat_np521_uint1 x29; uint64_t x30; fiat_np521_uint1 x31; uint64_t x32; fiat_np521_uint1 x33; uint64_t x34; fiat_np521_uint1 x35; uint64_t x36; fiat_np521_uint1 x37; fiat_np521_subborrowx_u64(&x1, &x2, 0x0, 0x0, (arg1[0])); fiat_np521_subborrowx_u64(&x3, &x4, x2, 0x0, (arg1[1])); fiat_np521_subborrowx_u64(&x5, &x6, x4, 0x0, (arg1[2])); fiat_np521_subborrowx_u64(&x7, &x8, x6, 0x0, (arg1[3])); fiat_np521_subborrowx_u64(&x9, &x10, x8, 0x0, (arg1[4])); fiat_np521_subborrowx_u64(&x11, &x12, x10, 0x0, (arg1[5])); fiat_np521_subborrowx_u64(&x13, &x14, x12, 0x0, (arg1[6])); fiat_np521_subborrowx_u64(&x15, &x16, x14, 0x0, (arg1[7])); fiat_np521_subborrowx_u64(&x17, &x18, x16, 0x0, (arg1[8])); fiat_np521_cmovznz_u64(&x19, x18, 0x0, UINT64_C(0xffffffffffffffff)); fiat_np521_addcarryx_u64(&x20, &x21, 0x0, x1, (x19 & UINT64_C(0xbb6fb71e91386409))); fiat_np521_addcarryx_u64(&x22, &x23, x21, x3, (x19 & UINT64_C(0x3bb5c9b8899c47ae))); fiat_np521_addcarryx_u64(&x24, &x25, x23, x5, (x19 & UINT64_C(0x7fcc0148f709a5d0))); fiat_np521_addcarryx_u64(&x26, &x27, x25, x7, (x19 & UINT64_C(0x51868783bf2f966b))); fiat_np521_addcarryx_u64(&x28, &x29, x27, x9, (x19 & UINT64_C(0xfffffffffffffffa))); fiat_np521_addcarryx_u64(&x30, &x31, x29, x11, x19); fiat_np521_addcarryx_u64(&x32, &x33, x31, x13, x19); fiat_np521_addcarryx_u64(&x34, &x35, x33, x15, x19); fiat_np521_addcarryx_u64(&x36, &x37, x35, x17, (x19 & UINT16_C(0x1ff))); out1[0] = x20; out1[1] = x22; out1[2] = x24; out1[3] = x26; out1[4] = x28; out1[5] = x30; out1[6] = x32; out1[7] = x34; out1[8] = x36; } /* * The function fiat_np521_from_montgomery translates a field element out of the Montgomery domain. * * Preconditions: * 0 ≤ eval arg1 < m * Postconditions: * eval out1 mod m = (eval arg1 * ((2^64)⁻¹ mod m)^9) mod m * 0 ≤ eval out1 < m * */ static void fiat_np521_from_montgomery(fiat_np521_non_montgomery_domain_field_element out1, const fiat_np521_montgomery_domain_field_element arg1) { uint64_t x1; uint64_t x2; uint64_t x3; uint64_t x4; uint64_t x5; uint64_t x6; uint64_t x7; uint64_t x8; uint64_t x9; uint64_t x10; uint64_t x11; uint64_t x12; uint64_t x13; uint64_t x14; uint64_t x15; uint64_t x16; uint64_t x17; uint64_t x18; uint64_t x19; uint64_t x20; uint64_t x21; uint64_t x22; fiat_np521_uint1 x23; uint64_t x24; fiat_np521_uint1 x25; uint64_t x26; fiat_np521_uint1 x27; uint64_t x28; fiat_np521_uint1 x29; uint64_t x30; fiat_np521_uint1 x31; uint64_t x32; fiat_np521_uint1 x33; uint64_t x34; fiat_np521_uint1 x35; uint64_t x36; fiat_np521_uint1 x37; uint64_t x38; fiat_np521_uint1 x39; uint64_t x40; fiat_np521_uint1 x41; uint64_t x42; fiat_np521_uint1 x43; uint64_t x44; fiat_np521_uint1 x45; uint64_t x46; fiat_np521_uint1 x47; uint64_t x48; fiat_np521_uint1 x49; uint64_t x50; fiat_np521_uint1 x51; uint64_t x52; fiat_np521_uint1 x53; uint64_t x54; fiat_np521_uint1 x55; uint64_t x56; fiat_np521_uint1 x57; uint64_t x58; fiat_np521_uint1 x59; uint64_t x60; fiat_np521_uint1 x61; uint64_t x62; fiat_np521_uint1 x63; uint64_t x64; fiat_np521_uint1 x65; uint64_t x66; fiat_np521_uint1 x67; uint64_t x68; fiat_np521_uint1 x69; uint64_t x70; fiat_np521_uint1 x71; uint64_t x72; uint64_t x73; uint64_t x74; uint64_t x75; uint64_t x76; uint64_t x77; uint64_t x78; uint64_t x79; uint64_t x80; uint64_t x81; uint64_t x82; uint64_t x83; uint64_t x84; uint64_t x85; uint64_t x86; uint64_t x87; uint64_t x88; uint64_t x89; uint64_t x90; uint64_t x91; uint64_t x92; fiat_np521_uint1 x93; uint64_t x94; fiat_np521_uint1 x95; uint64_t x96; fiat_np521_uint1 x97; uint64_t x98; fiat_np521_uint1 x99; uint64_t x100; fiat_np521_uint1 x101; uint64_t x102; fiat_np521_uint1 x103; uint64_t x104; fiat_np521_uint1 x105; uint64_t x106; fiat_np521_uint1 x107; uint64_t x108; fiat_np521_uint1 x109; uint64_t x110; fiat_np521_uint1 x111; uint64_t x112; fiat_np521_uint1 x113; uint64_t x114; fiat_np521_uint1 x115; uint64_t x116; fiat_np521_uint1 x117; uint64_t x118; fiat_np521_uint1 x119; uint64_t x120; fiat_np521_uint1 x121; uint64_t x122; fiat_np521_uint1 x123; uint64_t x124; fiat_np521_uint1 x125; uint64_t x126; fiat_np521_uint1 x127; uint64_t x128; fiat_np521_uint1 x129; uint64_t x130; fiat_np521_uint1 x131; uint64_t x132; fiat_np521_uint1 x133; uint64_t x134; fiat_np521_uint1 x135; uint64_t x136; fiat_np521_uint1 x137; uint64_t x138; fiat_np521_uint1 x139; uint64_t x140; fiat_np521_uint1 x141; uint64_t x142; uint64_t x143; uint64_t x144; uint64_t x145; uint64_t x146; uint64_t x147; uint64_t x148; uint64_t x149; uint64_t x150; uint64_t x151; uint64_t x152; uint64_t x153; uint64_t x154; uint64_t x155; uint64_t x156; uint64_t x157; uint64_t x158; uint64_t x159; uint64_t x160; uint64_t x161; uint64_t x162; fiat_np521_uint1 x163; uint64_t x164; fiat_np521_uint1 x165; uint64_t x166; fiat_np521_uint1 x167; uint64_t x168; fiat_np521_uint1 x169; uint64_t x170; fiat_np521_uint1 x171; uint64_t x172; fiat_np521_uint1 x173; uint64_t x174; fiat_np521_uint1 x175; uint64_t x176; fiat_np521_uint1 x177; uint64_t x178; fiat_np521_uint1 x179; uint64_t x180; fiat_np521_uint1 x181; uint64_t x182; fiat_np521_uint1 x183; uint64_t x184; fiat_np521_uint1 x185; uint64_t x186; fiat_np521_uint1 x187; uint64_t x188; fiat_np521_uint1 x189; uint64_t x190; fiat_np521_uint1 x191; uint64_t x192; fiat_np521_uint1 x193; uint64_t x194; fiat_np521_uint1 x195; uint64_t x196; fiat_np521_uint1 x197; uint64_t x198; fiat_np521_uint1 x199; uint64_t x200; fiat_np521_uint1 x201; uint64_t x202; fiat_np521_uint1 x203; uint64_t x204; fiat_np521_uint1 x205; uint64_t x206; fiat_np521_uint1 x207; uint64_t x208; fiat_np521_uint1 x209; uint64_t x210; fiat_np521_uint1 x211; uint64_t x212; uint64_t x213; uint64_t x214; uint64_t x215; uint64_t x216; uint64_t x217; uint64_t x218; uint64_t x219; uint64_t x220; uint64_t x221; uint64_t x222; uint64_t x223; uint64_t x224; uint64_t x225; uint64_t x226; uint64_t x227; uint64_t x228; uint64_t x229; uint64_t x230; uint64_t x231; uint64_t x232; fiat_np521_uint1 x233; uint64_t x234; fiat_np521_uint1 x235; uint64_t x236; fiat_np521_uint1 x237; uint64_t x238; fiat_np521_uint1 x239; uint64_t x240; fiat_np521_uint1 x241; uint64_t x242; fiat_np521_uint1 x243; uint64_t x244; fiat_np521_uint1 x245; uint64_t x246; fiat_np521_uint1 x247; uint64_t x248; fiat_np521_uint1 x249; uint64_t x250; fiat_np521_uint1 x251; uint64_t x252; fiat_np521_uint1 x253; uint64_t x254; fiat_np521_uint1 x255; uint64_t x256; fiat_np521_uint1 x257; uint64_t x258; fiat_np521_uint1 x259; uint64_t x260; fiat_np521_uint1 x261; uint64_t x262; fiat_np521_uint1 x263; uint64_t x264; fiat_np521_uint1 x265; uint64_t x266; fiat_np521_uint1 x267; uint64_t x268; fiat_np521_uint1 x269; uint64_t x270; fiat_np521_uint1 x271; uint64_t x272; fiat_np521_uint1 x273; uint64_t x274; fiat_np521_uint1 x275; uint64_t x276; fiat_np521_uint1 x277; uint64_t x278; fiat_np521_uint1 x279; uint64_t x280; fiat_np521_uint1 x281; uint64_t x282; uint64_t x283; uint64_t x284; uint64_t x285; uint64_t x286; uint64_t x287; uint64_t x288; uint64_t x289; uint64_t x290; uint64_t x291; uint64_t x292; uint64_t x293; uint64_t x294; uint64_t x295; uint64_t x296; uint64_t x297; uint64_t x298; uint64_t x299; uint64_t x300; uint64_t x301; uint64_t x302; fiat_np521_uint1 x303; uint64_t x304; fiat_np521_uint1 x305; uint64_t x306; fiat_np521_uint1 x307; uint64_t x308; fiat_np521_uint1 x309; uint64_t x310; fiat_np521_uint1 x311; uint64_t x312; fiat_np521_uint1 x313; uint64_t x314; fiat_np521_uint1 x315; uint64_t x316; fiat_np521_uint1 x317; uint64_t x318; fiat_np521_uint1 x319; uint64_t x320; fiat_np521_uint1 x321; uint64_t x322; fiat_np521_uint1 x323; uint64_t x324; fiat_np521_uint1 x325; uint64_t x326; fiat_np521_uint1 x327; uint64_t x328; fiat_np521_uint1 x329; uint64_t x330; fiat_np521_uint1 x331; uint64_t x332; fiat_np521_uint1 x333; uint64_t x334; fiat_np521_uint1 x335; uint64_t x336; fiat_np521_uint1 x337; uint64_t x338; fiat_np521_uint1 x339; uint64_t x340; fiat_np521_uint1 x341; uint64_t x342; fiat_np521_uint1 x343; uint64_t x344; fiat_np521_uint1 x345; uint64_t x346; fiat_np521_uint1 x347; uint64_t x348; fiat_np521_uint1 x349; uint64_t x350; fiat_np521_uint1 x351; uint64_t x352; uint64_t x353; uint64_t x354; uint64_t x355; uint64_t x356; uint64_t x357; uint64_t x358; uint64_t x359; uint64_t x360; uint64_t x361; uint64_t x362; uint64_t x363; uint64_t x364; uint64_t x365; uint64_t x366; uint64_t x367; uint64_t x368; uint64_t x369; uint64_t x370; uint64_t x371; uint64_t x372; fiat_np521_uint1 x373; uint64_t x374; fiat_np521_uint1 x375; uint64_t x376; fiat_np521_uint1 x377; uint64_t x378; fiat_np521_uint1 x379; uint64_t x380; fiat_np521_uint1 x381; uint64_t x382; fiat_np521_uint1 x383; uint64_t x384; fiat_np521_uint1 x385; uint64_t x386; fiat_np521_uint1 x387; uint64_t x388; fiat_np521_uint1 x389; uint64_t x390; fiat_np521_uint1 x391; uint64_t x392; fiat_np521_uint1 x393; uint64_t x394; fiat_np521_uint1 x395; uint64_t x396; fiat_np521_uint1 x397; uint64_t x398; fiat_np521_uint1 x399; uint64_t x400; fiat_np521_uint1 x401; uint64_t x402; fiat_np521_uint1 x403; uint64_t x404; fiat_np521_uint1 x405; uint64_t x406; fiat_np521_uint1 x407; uint64_t x408; fiat_np521_uint1 x409; uint64_t x410; fiat_np521_uint1 x411; uint64_t x412; fiat_np521_uint1 x413; uint64_t x414; fiat_np521_uint1 x415; uint64_t x416; fiat_np521_uint1 x417; uint64_t x418; fiat_np521_uint1 x419; uint64_t x420; fiat_np521_uint1 x421; uint64_t x422; uint64_t x423; uint64_t x424; uint64_t x425; uint64_t x426; uint64_t x427; uint64_t x428; uint64_t x429; uint64_t x430; uint64_t x431; uint64_t x432; uint64_t x433; uint64_t x434; uint64_t x435; uint64_t x436; uint64_t x437; uint64_t x438; uint64_t x439; uint64_t x440; uint64_t x441; uint64_t x442; fiat_np521_uint1 x443; uint64_t x444; fiat_np521_uint1 x445; uint64_t x446; fiat_np521_uint1 x447; uint64_t x448; fiat_np521_uint1 x449; uint64_t x450; fiat_np521_uint1 x451; uint64_t x452; fiat_np521_uint1 x453; uint64_t x454; fiat_np521_uint1 x455; uint64_t x456; fiat_np521_uint1 x457; uint64_t x458; fiat_np521_uint1 x459; uint64_t x460; fiat_np521_uint1 x461; uint64_t x462; fiat_np521_uint1 x463; uint64_t x464; fiat_np521_uint1 x465; uint64_t x466; fiat_np521_uint1 x467; uint64_t x468; fiat_np521_uint1 x469; uint64_t x470; fiat_np521_uint1 x471; uint64_t x472; fiat_np521_uint1 x473; uint64_t x474; fiat_np521_uint1 x475; uint64_t x476; fiat_np521_uint1 x477; uint64_t x478; fiat_np521_uint1 x479; uint64_t x480; fiat_np521_uint1 x481; uint64_t x482; fiat_np521_uint1 x483; uint64_t x484; fiat_np521_uint1 x485; uint64_t x486; fiat_np521_uint1 x487; uint64_t x488; fiat_np521_uint1 x489; uint64_t x490; fiat_np521_uint1 x491; uint64_t x492; uint64_t x493; uint64_t x494; uint64_t x495; uint64_t x496; uint64_t x497; uint64_t x498; uint64_t x499; uint64_t x500; uint64_t x501; uint64_t x502; uint64_t x503; uint64_t x504; uint64_t x505; uint64_t x506; uint64_t x507; uint64_t x508; uint64_t x509; uint64_t x510; uint64_t x511; uint64_t x512; fiat_np521_uint1 x513; uint64_t x514; fiat_np521_uint1 x515; uint64_t x516; fiat_np521_uint1 x517; uint64_t x518; fiat_np521_uint1 x519; uint64_t x520; fiat_np521_uint1 x521; uint64_t x522; fiat_np521_uint1 x523; uint64_t x524; fiat_np521_uint1 x525; uint64_t x526; fiat_np521_uint1 x527; uint64_t x528; fiat_np521_uint1 x529; uint64_t x530; fiat_np521_uint1 x531; uint64_t x532; fiat_np521_uint1 x533; uint64_t x534; fiat_np521_uint1 x535; uint64_t x536; fiat_np521_uint1 x537; uint64_t x538; fiat_np521_uint1 x539; uint64_t x540; fiat_np521_uint1 x541; uint64_t x542; fiat_np521_uint1 x543; uint64_t x544; fiat_np521_uint1 x545; uint64_t x546; fiat_np521_uint1 x547; uint64_t x548; fiat_np521_uint1 x549; uint64_t x550; fiat_np521_uint1 x551; uint64_t x552; fiat_np521_uint1 x553; uint64_t x554; fiat_np521_uint1 x555; uint64_t x556; fiat_np521_uint1 x557; uint64_t x558; fiat_np521_uint1 x559; uint64_t x560; fiat_np521_uint1 x561; uint64_t x562; uint64_t x563; uint64_t x564; uint64_t x565; uint64_t x566; uint64_t x567; uint64_t x568; uint64_t x569; uint64_t x570; uint64_t x571; uint64_t x572; uint64_t x573; uint64_t x574; uint64_t x575; uint64_t x576; uint64_t x577; uint64_t x578; uint64_t x579; uint64_t x580; uint64_t x581; uint64_t x582; fiat_np521_uint1 x583; uint64_t x584; fiat_np521_uint1 x585; uint64_t x586; fiat_np521_uint1 x587; uint64_t x588; fiat_np521_uint1 x589; uint64_t x590; fiat_np521_uint1 x591; uint64_t x592; fiat_np521_uint1 x593; uint64_t x594; fiat_np521_uint1 x595; uint64_t x596; fiat_np521_uint1 x597; uint64_t x598; fiat_np521_uint1 x599; uint64_t x600; fiat_np521_uint1 x601; uint64_t x602; fiat_np521_uint1 x603; uint64_t x604; fiat_np521_uint1 x605; uint64_t x606; fiat_np521_uint1 x607; uint64_t x608; fiat_np521_uint1 x609; uint64_t x610; fiat_np521_uint1 x611; uint64_t x612; fiat_np521_uint1 x613; uint64_t x614; fiat_np521_uint1 x615; uint64_t x616; uint64_t x617; fiat_np521_uint1 x618; uint64_t x619; fiat_np521_uint1 x620; uint64_t x621; fiat_np521_uint1 x622; uint64_t x623; fiat_np521_uint1 x624; uint64_t x625; fiat_np521_uint1 x626; uint64_t x627; fiat_np521_uint1 x628; uint64_t x629; fiat_np521_uint1 x630; uint64_t x631; fiat_np521_uint1 x632; uint64_t x633; fiat_np521_uint1 x634; uint64_t x635; fiat_np521_uint1 x636; uint64_t x637; uint64_t x638; uint64_t x639; uint64_t x640; uint64_t x641; uint64_t x642; uint64_t x643; uint64_t x644; uint64_t x645; x1 = (arg1[0]); fiat_np521_mulx_u64(&x2, &x3, x1, UINT64_C(0x1d2f5ccd79a995c7)); fiat_np521_mulx_u64(&x4, &x5, x2, UINT16_C(0x1ff)); fiat_np521_mulx_u64(&x6, &x7, x2, UINT64_C(0xffffffffffffffff)); fiat_np521_mulx_u64(&x8, &x9, x2, UINT64_C(0xffffffffffffffff)); fiat_np521_mulx_u64(&x10, &x11, x2, UINT64_C(0xffffffffffffffff)); fiat_np521_mulx_u64(&x12, &x13, x2, UINT64_C(0xfffffffffffffffa)); fiat_np521_mulx_u64(&x14, &x15, x2, UINT64_C(0x51868783bf2f966b)); fiat_np521_mulx_u64(&x16, &x17, x2, UINT64_C(0x7fcc0148f709a5d0)); fiat_np521_mulx_u64(&x18, &x19, x2, UINT64_C(0x3bb5c9b8899c47ae)); fiat_np521_mulx_u64(&x20, &x21, x2, UINT64_C(0xbb6fb71e91386409)); fiat_np521_addcarryx_u64(&x22, &x23, 0x0, x21, x18); fiat_np521_addcarryx_u64(&x24, &x25, x23, x19, x16); fiat_np521_addcarryx_u64(&x26, &x27, x25, x17, x14); fiat_np521_addcarryx_u64(&x28, &x29, x27, x15, x12); fiat_np521_addcarryx_u64(&x30, &x31, x29, x13, x10); fiat_np521_addcarryx_u64(&x32, &x33, x31, x11, x8); fiat_np521_addcarryx_u64(&x34, &x35, x33, x9, x6); fiat_np521_addcarryx_u64(&x36, &x37, x35, x7, x4); fiat_np521_addcarryx_u64(&x38, &x39, 0x0, x1, x20); fiat_np521_addcarryx_u64(&x40, &x41, x39, 0x0, x22); fiat_np521_addcarryx_u64(&x42, &x43, x41, 0x0, x24); fiat_np521_addcarryx_u64(&x44, &x45, x43, 0x0, x26); fiat_np521_addcarryx_u64(&x46, &x47, x45, 0x0, x28); fiat_np521_addcarryx_u64(&x48, &x49, x47, 0x0, x30); fiat_np521_addcarryx_u64(&x50, &x51, x49, 0x0, x32); fiat_np521_addcarryx_u64(&x52, &x53, x51, 0x0, x34); fiat_np521_addcarryx_u64(&x54, &x55, x53, 0x0, x36); fiat_np521_addcarryx_u64(&x56, &x57, 0x0, x40, (arg1[1])); fiat_np521_addcarryx_u64(&x58, &x59, x57, x42, 0x0); fiat_np521_addcarryx_u64(&x60, &x61, x59, x44, 0x0); fiat_np521_addcarryx_u64(&x62, &x63, x61, x46, 0x0); fiat_np521_addcarryx_u64(&x64, &x65, x63, x48, 0x0); fiat_np521_addcarryx_u64(&x66, &x67, x65, x50, 0x0); fiat_np521_addcarryx_u64(&x68, &x69, x67, x52, 0x0); fiat_np521_addcarryx_u64(&x70, &x71, x69, x54, 0x0); fiat_np521_mulx_u64(&x72, &x73, x56, UINT64_C(0x1d2f5ccd79a995c7)); fiat_np521_mulx_u64(&x74, &x75, x72, UINT16_C(0x1ff)); fiat_np521_mulx_u64(&x76, &x77, x72, UINT64_C(0xffffffffffffffff)); fiat_np521_mulx_u64(&x78, &x79, x72, UINT64_C(0xffffffffffffffff)); fiat_np521_mulx_u64(&x80, &x81, x72, UINT64_C(0xffffffffffffffff)); fiat_np521_mulx_u64(&x82, &x83, x72, UINT64_C(0xfffffffffffffffa)); fiat_np521_mulx_u64(&x84, &x85, x72, UINT64_C(0x51868783bf2f966b)); fiat_np521_mulx_u64(&x86, &x87, x72, UINT64_C(0x7fcc0148f709a5d0)); fiat_np521_mulx_u64(&x88, &x89, x72, UINT64_C(0x3bb5c9b8899c47ae)); fiat_np521_mulx_u64(&x90, &x91, x72, UINT64_C(0xbb6fb71e91386409)); fiat_np521_addcarryx_u64(&x92, &x93, 0x0, x91, x88); fiat_np521_addcarryx_u64(&x94, &x95, x93, x89, x86); fiat_np521_addcarryx_u64(&x96, &x97, x95, x87, x84); fiat_np521_addcarryx_u64(&x98, &x99, x97, x85, x82); fiat_np521_addcarryx_u64(&x100, &x101, x99, x83, x80); fiat_np521_addcarryx_u64(&x102, &x103, x101, x81, x78); fiat_np521_addcarryx_u64(&x104, &x105, x103, x79, x76); fiat_np521_addcarryx_u64(&x106, &x107, x105, x77, x74); fiat_np521_addcarryx_u64(&x108, &x109, 0x0, x56, x90); fiat_np521_addcarryx_u64(&x110, &x111, x109, x58, x92); fiat_np521_addcarryx_u64(&x112, &x113, x111, x60, x94); fiat_np521_addcarryx_u64(&x114, &x115, x113, x62, x96); fiat_np521_addcarryx_u64(&x116, &x117, x115, x64, x98); fiat_np521_addcarryx_u64(&x118, &x119, x117, x66, x100); fiat_np521_addcarryx_u64(&x120, &x121, x119, x68, x102); fiat_np521_addcarryx_u64(&x122, &x123, x121, x70, x104); fiat_np521_addcarryx_u64(&x124, &x125, x123, (x71 + (x55 + (x37 + x5))), x106); fiat_np521_addcarryx_u64(&x126, &x127, 0x0, x110, (arg1[2])); fiat_np521_addcarryx_u64(&x128, &x129, x127, x112, 0x0); fiat_np521_addcarryx_u64(&x130, &x131, x129, x114, 0x0); fiat_np521_addcarryx_u64(&x132, &x133, x131, x116, 0x0); fiat_np521_addcarryx_u64(&x134, &x135, x133, x118, 0x0); fiat_np521_addcarryx_u64(&x136, &x137, x135, x120, 0x0); fiat_np521_addcarryx_u64(&x138, &x139, x137, x122, 0x0); fiat_np521_addcarryx_u64(&x140, &x141, x139, x124, 0x0); fiat_np521_mulx_u64(&x142, &x143, x126, UINT64_C(0x1d2f5ccd79a995c7)); fiat_np521_mulx_u64(&x144, &x145, x142, UINT16_C(0x1ff)); fiat_np521_mulx_u64(&x146, &x147, x142, UINT64_C(0xffffffffffffffff)); fiat_np521_mulx_u64(&x148, &x149, x142, UINT64_C(0xffffffffffffffff)); fiat_np521_mulx_u64(&x150, &x151, x142, UINT64_C(0xffffffffffffffff)); fiat_np521_mulx_u64(&x152, &x153, x142, UINT64_C(0xfffffffffffffffa)); fiat_np521_mulx_u64(&x154, &x155, x142, UINT64_C(0x51868783bf2f966b)); fiat_np521_mulx_u64(&x156, &x157, x142, UINT64_C(0x7fcc0148f709a5d0)); fiat_np521_mulx_u64(&x158, &x159, x142, UINT64_C(0x3bb5c9b8899c47ae)); fiat_np521_mulx_u64(&x160, &x161, x142, UINT64_C(0xbb6fb71e91386409)); fiat_np521_addcarryx_u64(&x162, &x163, 0x0, x161, x158); fiat_np521_addcarryx_u64(&x164, &x165, x163, x159, x156); fiat_np521_addcarryx_u64(&x166, &x167, x165, x157, x154); fiat_np521_addcarryx_u64(&x168, &x169, x167, x155, x152); fiat_np521_addcarryx_u64(&x170, &x171, x169, x153, x150); fiat_np521_addcarryx_u64(&x172, &x173, x171, x151, x148); fiat_np521_addcarryx_u64(&x174, &x175, x173, x149, x146); fiat_np521_addcarryx_u64(&x176, &x177, x175, x147, x144); fiat_np521_addcarryx_u64(&x178, &x179, 0x0, x126, x160); fiat_np521_addcarryx_u64(&x180, &x181, x179, x128, x162); fiat_np521_addcarryx_u64(&x182, &x183, x181, x130, x164); fiat_np521_addcarryx_u64(&x184, &x185, x183, x132, x166); fiat_np521_addcarryx_u64(&x186, &x187, x185, x134, x168); fiat_np521_addcarryx_u64(&x188, &x189, x187, x136, x170); fiat_np521_addcarryx_u64(&x190, &x191, x189, x138, x172); fiat_np521_addcarryx_u64(&x192, &x193, x191, x140, x174); fiat_np521_addcarryx_u64(&x194, &x195, x193, (x141 + (x125 + (x107 + x75))), x176); fiat_np521_addcarryx_u64(&x196, &x197, 0x0, x180, (arg1[3])); fiat_np521_addcarryx_u64(&x198, &x199, x197, x182, 0x0); fiat_np521_addcarryx_u64(&x200, &x201, x199, x184, 0x0); fiat_np521_addcarryx_u64(&x202, &x203, x201, x186, 0x0); fiat_np521_addcarryx_u64(&x204, &x205, x203, x188, 0x0); fiat_np521_addcarryx_u64(&x206, &x207, x205, x190, 0x0); fiat_np521_addcarryx_u64(&x208, &x209, x207, x192, 0x0); fiat_np521_addcarryx_u64(&x210, &x211, x209, x194, 0x0); fiat_np521_mulx_u64(&x212, &x213, x196, UINT64_C(0x1d2f5ccd79a995c7)); fiat_np521_mulx_u64(&x214, &x215, x212, UINT16_C(0x1ff)); fiat_np521_mulx_u64(&x216, &x217, x212, UINT64_C(0xffffffffffffffff)); fiat_np521_mulx_u64(&x218, &x219, x212, UINT64_C(0xffffffffffffffff)); fiat_np521_mulx_u64(&x220, &x221, x212, UINT64_C(0xffffffffffffffff)); fiat_np521_mulx_u64(&x222, &x223, x212, UINT64_C(0xfffffffffffffffa)); fiat_np521_mulx_u64(&x224, &x225, x212, UINT64_C(0x51868783bf2f966b)); fiat_np521_mulx_u64(&x226, &x227, x212, UINT64_C(0x7fcc0148f709a5d0)); fiat_np521_mulx_u64(&x228, &x229, x212, UINT64_C(0x3bb5c9b8899c47ae)); fiat_np521_mulx_u64(&x230, &x231, x212, UINT64_C(0xbb6fb71e91386409)); fiat_np521_addcarryx_u64(&x232, &x233, 0x0, x231, x228); fiat_np521_addcarryx_u64(&x234, &x235, x233, x229, x226); fiat_np521_addcarryx_u64(&x236, &x237, x235, x227, x224); fiat_np521_addcarryx_u64(&x238, &x239, x237, x225, x222); fiat_np521_addcarryx_u64(&x240, &x241, x239, x223, x220); fiat_np521_addcarryx_u64(&x242, &x243, x241, x221, x218); fiat_np521_addcarryx_u64(&x244, &x245, x243, x219, x216); fiat_np521_addcarryx_u64(&x246, &x247, x245, x217, x214); fiat_np521_addcarryx_u64(&x248, &x249, 0x0, x196, x230); fiat_np521_addcarryx_u64(&x250, &x251, x249, x198, x232); fiat_np521_addcarryx_u64(&x252, &x253, x251, x200, x234); fiat_np521_addcarryx_u64(&x254, &x255, x253, x202, x236); fiat_np521_addcarryx_u64(&x256, &x257, x255, x204, x238); fiat_np521_addcarryx_u64(&x258, &x259, x257, x206, x240); fiat_np521_addcarryx_u64(&x260, &x261, x259, x208, x242); fiat_np521_addcarryx_u64(&x262, &x263, x261, x210, x244); fiat_np521_addcarryx_u64(&x264, &x265, x263, (x211 + (x195 + (x177 + x145))), x246); fiat_np521_addcarryx_u64(&x266, &x267, 0x0, x250, (arg1[4])); fiat_np521_addcarryx_u64(&x268, &x269, x267, x252, 0x0); fiat_np521_addcarryx_u64(&x270, &x271, x269, x254, 0x0); fiat_np521_addcarryx_u64(&x272, &x273, x271, x256, 0x0); fiat_np521_addcarryx_u64(&x274, &x275, x273, x258, 0x0); fiat_np521_addcarryx_u64(&x276, &x277, x275, x260, 0x0); fiat_np521_addcarryx_u64(&x278, &x279, x277, x262, 0x0); fiat_np521_addcarryx_u64(&x280, &x281, x279, x264, 0x0); fiat_np521_mulx_u64(&x282, &x283, x266, UINT64_C(0x1d2f5ccd79a995c7)); fiat_np521_mulx_u64(&x284, &x285, x282, UINT16_C(0x1ff)); fiat_np521_mulx_u64(&x286, &x287, x282, UINT64_C(0xffffffffffffffff)); fiat_np521_mulx_u64(&x288, &x289, x282, UINT64_C(0xffffffffffffffff)); fiat_np521_mulx_u64(&x290, &x291, x282, UINT64_C(0xffffffffffffffff)); fiat_np521_mulx_u64(&x292, &x293, x282, UINT64_C(0xfffffffffffffffa)); fiat_np521_mulx_u64(&x294, &x295, x282, UINT64_C(0x51868783bf2f966b)); fiat_np521_mulx_u64(&x296, &x297, x282, UINT64_C(0x7fcc0148f709a5d0)); fiat_np521_mulx_u64(&x298, &x299, x282, UINT64_C(0x3bb5c9b8899c47ae)); fiat_np521_mulx_u64(&x300, &x301, x282, UINT64_C(0xbb6fb71e91386409)); fiat_np521_addcarryx_u64(&x302, &x303, 0x0, x301, x298); fiat_np521_addcarryx_u64(&x304, &x305, x303, x299, x296); fiat_np521_addcarryx_u64(&x306, &x307, x305, x297, x294); fiat_np521_addcarryx_u64(&x308, &x309, x307, x295, x292); fiat_np521_addcarryx_u64(&x310, &x311, x309, x293, x290); fiat_np521_addcarryx_u64(&x312, &x313, x311, x291, x288); fiat_np521_addcarryx_u64(&x314, &x315, x313, x289, x286); fiat_np521_addcarryx_u64(&x316, &x317, x315, x287, x284); fiat_np521_addcarryx_u64(&x318, &x319, 0x0, x266, x300); fiat_np521_addcarryx_u64(&x320, &x321, x319, x268, x302); fiat_np521_addcarryx_u64(&x322, &x323, x321, x270, x304); fiat_np521_addcarryx_u64(&x324, &x325, x323, x272, x306); fiat_np521_addcarryx_u64(&x326, &x327, x325, x274, x308); fiat_np521_addcarryx_u64(&x328, &x329, x327, x276, x310); fiat_np521_addcarryx_u64(&x330, &x331, x329, x278, x312); fiat_np521_addcarryx_u64(&x332, &x333, x331, x280, x314); fiat_np521_addcarryx_u64(&x334, &x335, x333, (x281 + (x265 + (x247 + x215))), x316); fiat_np521_addcarryx_u64(&x336, &x337, 0x0, x320, (arg1[5])); fiat_np521_addcarryx_u64(&x338, &x339, x337, x322, 0x0); fiat_np521_addcarryx_u64(&x340, &x341, x339, x324, 0x0); fiat_np521_addcarryx_u64(&x342, &x343, x341, x326, 0x0); fiat_np521_addcarryx_u64(&x344, &x345, x343, x328, 0x0); fiat_np521_addcarryx_u64(&x346, &x347, x345, x330, 0x0); fiat_np521_addcarryx_u64(&x348, &x349, x347, x332, 0x0); fiat_np521_addcarryx_u64(&x350, &x351, x349, x334, 0x0); fiat_np521_mulx_u64(&x352, &x353, x336, UINT64_C(0x1d2f5ccd79a995c7)); fiat_np521_mulx_u64(&x354, &x355, x352, UINT16_C(0x1ff)); fiat_np521_mulx_u64(&x356, &x357, x352, UINT64_C(0xffffffffffffffff)); fiat_np521_mulx_u64(&x358, &x359, x352, UINT64_C(0xffffffffffffffff)); fiat_np521_mulx_u64(&x360, &x361, x352, UINT64_C(0xffffffffffffffff)); fiat_np521_mulx_u64(&x362, &x363, x352, UINT64_C(0xfffffffffffffffa)); fiat_np521_mulx_u64(&x364, &x365, x352, UINT64_C(0x51868783bf2f966b)); fiat_np521_mulx_u64(&x366, &x367, x352, UINT64_C(0x7fcc0148f709a5d0)); fiat_np521_mulx_u64(&x368, &x369, x352, UINT64_C(0x3bb5c9b8899c47ae)); fiat_np521_mulx_u64(&x370, &x371, x352, UINT64_C(0xbb6fb71e91386409)); fiat_np521_addcarryx_u64(&x372, &x373, 0x0, x371, x368); fiat_np521_addcarryx_u64(&x374, &x375, x373, x369, x366); fiat_np521_addcarryx_u64(&x376, &x377, x375, x367, x364); fiat_np521_addcarryx_u64(&x378, &x379, x377, x365, x362); fiat_np521_addcarryx_u64(&x380, &x381, x379, x363, x360); fiat_np521_addcarryx_u64(&x382, &x383, x381, x361, x358); fiat_np521_addcarryx_u64(&x384, &x385, x383, x359, x356); fiat_np521_addcarryx_u64(&x386, &x387, x385, x357, x354); fiat_np521_addcarryx_u64(&x388, &x389, 0x0, x336, x370); fiat_np521_addcarryx_u64(&x390, &x391, x389, x338, x372); fiat_np521_addcarryx_u64(&x392, &x393, x391, x340, x374); fiat_np521_addcarryx_u64(&x394, &x395, x393, x342, x376); fiat_np521_addcarryx_u64(&x396, &x397, x395, x344, x378); fiat_np521_addcarryx_u64(&x398, &x399, x397, x346, x380); fiat_np521_addcarryx_u64(&x400, &x401, x399, x348, x382); fiat_np521_addcarryx_u64(&x402, &x403, x401, x350, x384); fiat_np521_addcarryx_u64(&x404, &x405, x403, (x351 + (x335 + (x317 + x285))), x386); fiat_np521_addcarryx_u64(&x406, &x407, 0x0, x390, (arg1[6])); fiat_np521_addcarryx_u64(&x408, &x409, x407, x392, 0x0); fiat_np521_addcarryx_u64(&x410, &x411, x409, x394, 0x0); fiat_np521_addcarryx_u64(&x412, &x413, x411, x396, 0x0); fiat_np521_addcarryx_u64(&x414, &x415, x413, x398, 0x0); fiat_np521_addcarryx_u64(&x416, &x417, x415, x400, 0x0); fiat_np521_addcarryx_u64(&x418, &x419, x417, x402, 0x0); fiat_np521_addcarryx_u64(&x420, &x421, x419, x404, 0x0); fiat_np521_mulx_u64(&x422, &x423, x406, UINT64_C(0x1d2f5ccd79a995c7)); fiat_np521_mulx_u64(&x424, &x425, x422, UINT16_C(0x1ff)); fiat_np521_mulx_u64(&x426, &x427, x422, UINT64_C(0xffffffffffffffff)); fiat_np521_mulx_u64(&x428, &x429, x422, UINT64_C(0xffffffffffffffff)); fiat_np521_mulx_u64(&x430, &x431, x422, UINT64_C(0xffffffffffffffff)); fiat_np521_mulx_u64(&x432, &x433, x422, UINT64_C(0xfffffffffffffffa)); fiat_np521_mulx_u64(&x434, &x435, x422, UINT64_C(0x51868783bf2f966b)); fiat_np521_mulx_u64(&x436, &x437, x422, UINT64_C(0x7fcc0148f709a5d0)); fiat_np521_mulx_u64(&x438, &x439, x422, UINT64_C(0x3bb5c9b8899c47ae)); fiat_np521_mulx_u64(&x440, &x441, x422, UINT64_C(0xbb6fb71e91386409)); fiat_np521_addcarryx_u64(&x442, &x443, 0x0, x441, x438); fiat_np521_addcarryx_u64(&x444, &x445, x443, x439, x436); fiat_np521_addcarryx_u64(&x446, &x447, x445, x437, x434); fiat_np521_addcarryx_u64(&x448, &x449, x447, x435, x432); fiat_np521_addcarryx_u64(&x450, &x451, x449, x433, x430); fiat_np521_addcarryx_u64(&x452, &x453, x451, x431, x428); fiat_np521_addcarryx_u64(&x454, &x455, x453, x429, x426); fiat_np521_addcarryx_u64(&x456, &x457, x455, x427, x424); fiat_np521_addcarryx_u64(&x458, &x459, 0x0, x406, x440); fiat_np521_addcarryx_u64(&x460, &x461, x459, x408, x442); fiat_np521_addcarryx_u64(&x462, &x463, x461, x410, x444); fiat_np521_addcarryx_u64(&x464, &x465, x463, x412, x446); fiat_np521_addcarryx_u64(&x466, &x467, x465, x414, x448); fiat_np521_addcarryx_u64(&x468, &x469, x467, x416, x450); fiat_np521_addcarryx_u64(&x470, &x471, x469, x418, x452); fiat_np521_addcarryx_u64(&x472, &x473, x471, x420, x454); fiat_np521_addcarryx_u64(&x474, &x475, x473, (x421 + (x405 + (x387 + x355))), x456); fiat_np521_addcarryx_u64(&x476, &x477, 0x0, x460, (arg1[7])); fiat_np521_addcarryx_u64(&x478, &x479, x477, x462, 0x0); fiat_np521_addcarryx_u64(&x480, &x481, x479, x464, 0x0); fiat_np521_addcarryx_u64(&x482, &x483, x481, x466, 0x0); fiat_np521_addcarryx_u64(&x484, &x485, x483, x468, 0x0); fiat_np521_addcarryx_u64(&x486, &x487, x485, x470, 0x0); fiat_np521_addcarryx_u64(&x488, &x489, x487, x472, 0x0); fiat_np521_addcarryx_u64(&x490, &x491, x489, x474, 0x0); fiat_np521_mulx_u64(&x492, &x493, x476, UINT64_C(0x1d2f5ccd79a995c7)); fiat_np521_mulx_u64(&x494, &x495, x492, UINT16_C(0x1ff)); fiat_np521_mulx_u64(&x496, &x497, x492, UINT64_C(0xffffffffffffffff)); fiat_np521_mulx_u64(&x498, &x499, x492, UINT64_C(0xffffffffffffffff)); fiat_np521_mulx_u64(&x500, &x501, x492, UINT64_C(0xffffffffffffffff)); fiat_np521_mulx_u64(&x502, &x503, x492, UINT64_C(0xfffffffffffffffa)); fiat_np521_mulx_u64(&x504, &x505, x492, UINT64_C(0x51868783bf2f966b)); fiat_np521_mulx_u64(&x506, &x507, x492, UINT64_C(0x7fcc0148f709a5d0)); fiat_np521_mulx_u64(&x508, &x509, x492, UINT64_C(0x3bb5c9b8899c47ae)); fiat_np521_mulx_u64(&x510, &x511, x492, UINT64_C(0xbb6fb71e91386409)); fiat_np521_addcarryx_u64(&x512, &x513, 0x0, x511, x508); fiat_np521_addcarryx_u64(&x514, &x515, x513, x509, x506); fiat_np521_addcarryx_u64(&x516, &x517, x515, x507, x504); fiat_np521_addcarryx_u64(&x518, &x519, x517, x505, x502); fiat_np521_addcarryx_u64(&x520, &x521, x519, x503, x500); fiat_np521_addcarryx_u64(&x522, &x523, x521, x501, x498); fiat_np521_addcarryx_u64(&x524, &x525, x523, x499, x496); fiat_np521_addcarryx_u64(&x526, &x527, x525, x497, x494); fiat_np521_addcarryx_u64(&x528, &x529, 0x0, x476, x510); fiat_np521_addcarryx_u64(&x530, &x531, x529, x478, x512); fiat_np521_addcarryx_u64(&x532, &x533, x531, x480, x514); fiat_np521_addcarryx_u64(&x534, &x535, x533, x482, x516); fiat_np521_addcarryx_u64(&x536, &x537, x535, x484, x518); fiat_np521_addcarryx_u64(&x538, &x539, x537, x486, x520); fiat_np521_addcarryx_u64(&x540, &x541, x539, x488, x522); fiat_np521_addcarryx_u64(&x542, &x543, x541, x490, x524); fiat_np521_addcarryx_u64(&x544, &x545, x543, (x491 + (x475 + (x457 + x425))), x526); fiat_np521_addcarryx_u64(&x546, &x547, 0x0, x530, (arg1[8])); fiat_np521_addcarryx_u64(&x548, &x549, x547, x532, 0x0); fiat_np521_addcarryx_u64(&x550, &x551, x549, x534, 0x0); fiat_np521_addcarryx_u64(&x552, &x553, x551, x536, 0x0); fiat_np521_addcarryx_u64(&x554, &x555, x553, x538, 0x0); fiat_np521_addcarryx_u64(&x556, &x557, x555, x540, 0x0); fiat_np521_addcarryx_u64(&x558, &x559, x557, x542, 0x0); fiat_np521_addcarryx_u64(&x560, &x561, x559, x544, 0x0); fiat_np521_mulx_u64(&x562, &x563, x546, UINT64_C(0x1d2f5ccd79a995c7)); fiat_np521_mulx_u64(&x564, &x565, x562, UINT16_C(0x1ff)); fiat_np521_mulx_u64(&x566, &x567, x562, UINT64_C(0xffffffffffffffff)); fiat_np521_mulx_u64(&x568, &x569, x562, UINT64_C(0xffffffffffffffff)); fiat_np521_mulx_u64(&x570, &x571, x562, UINT64_C(0xffffffffffffffff)); fiat_np521_mulx_u64(&x572, &x573, x562, UINT64_C(0xfffffffffffffffa)); fiat_np521_mulx_u64(&x574, &x575, x562, UINT64_C(0x51868783bf2f966b)); fiat_np521_mulx_u64(&x576, &x577, x562, UINT64_C(0x7fcc0148f709a5d0)); fiat_np521_mulx_u64(&x578, &x579, x562, UINT64_C(0x3bb5c9b8899c47ae)); fiat_np521_mulx_u64(&x580, &x581, x562, UINT64_C(0xbb6fb71e91386409)); fiat_np521_addcarryx_u64(&x582, &x583, 0x0, x581, x578); fiat_np521_addcarryx_u64(&x584, &x585, x583, x579, x576); fiat_np521_addcarryx_u64(&x586, &x587, x585, x577, x574); fiat_np521_addcarryx_u64(&x588, &x589, x587, x575, x572); fiat_np521_addcarryx_u64(&x590, &x591, x589, x573, x570); fiat_np521_addcarryx_u64(&x592, &x593, x591, x571, x568); fiat_np521_addcarryx_u64(&x594, &x595, x593, x569, x566); fiat_np521_addcarryx_u64(&x596, &x597, x595, x567, x564); fiat_np521_addcarryx_u64(&x598, &x599, 0x0, x546, x580); fiat_np521_addcarryx_u64(&x600, &x601, x599, x548, x582); fiat_np521_addcarryx_u64(&x602, &x603, x601, x550, x584); fiat_np521_addcarryx_u64(&x604, &x605, x603, x552, x586); fiat_np521_addcarryx_u64(&x606, &x607, x605, x554, x588); fiat_np521_addcarryx_u64(&x608, &x609, x607, x556, x590); fiat_np521_addcarryx_u64(&x610, &x611, x609, x558, x592); fiat_np521_addcarryx_u64(&x612, &x613, x611, x560, x594); fiat_np521_addcarryx_u64(&x614, &x615, x613, (x561 + (x545 + (x527 + x495))), x596); x616 = (x615 + (x597 + x565)); fiat_np521_subborrowx_u64(&x617, &x618, 0x0, x600, UINT64_C(0xbb6fb71e91386409)); fiat_np521_subborrowx_u64(&x619, &x620, x618, x602, UINT64_C(0x3bb5c9b8899c47ae)); fiat_np521_subborrowx_u64(&x621, &x622, x620, x604, UINT64_C(0x7fcc0148f709a5d0)); fiat_np521_subborrowx_u64(&x623, &x624, x622, x606, UINT64_C(0x51868783bf2f966b)); fiat_np521_subborrowx_u64(&x625, &x626, x624, x608, UINT64_C(0xfffffffffffffffa)); fiat_np521_subborrowx_u64(&x627, &x628, x626, x610, UINT64_C(0xffffffffffffffff)); fiat_np521_subborrowx_u64(&x629, &x630, x628, x612, UINT64_C(0xffffffffffffffff)); fiat_np521_subborrowx_u64(&x631, &x632, x630, x614, UINT64_C(0xffffffffffffffff)); fiat_np521_subborrowx_u64(&x633, &x634, x632, x616, UINT16_C(0x1ff)); fiat_np521_subborrowx_u64(&x635, &x636, x634, 0x0, 0x0); fiat_np521_cmovznz_u64(&x637, x636, x617, x600); fiat_np521_cmovznz_u64(&x638, x636, x619, x602); fiat_np521_cmovznz_u64(&x639, x636, x621, x604); fiat_np521_cmovznz_u64(&x640, x636, x623, x606); fiat_np521_cmovznz_u64(&x641, x636, x625, x608); fiat_np521_cmovznz_u64(&x642, x636, x627, x610); fiat_np521_cmovznz_u64(&x643, x636, x629, x612); fiat_np521_cmovznz_u64(&x644, x636, x631, x614); fiat_np521_cmovznz_u64(&x645, x636, x633, x616); out1[0] = x637; out1[1] = x638; out1[2] = x639; out1[3] = x640; out1[4] = x641; out1[5] = x642; out1[6] = x643; out1[7] = x644; out1[8] = x645; } /* * The function fiat_np521_to_montgomery translates a field element into the Montgomery domain. * * Preconditions: * 0 ≤ eval arg1 < m * Postconditions: * eval (from_montgomery out1) mod m = eval arg1 mod m * 0 ≤ eval out1 < m * */ static void fiat_np521_to_montgomery(fiat_np521_montgomery_domain_field_element out1, const fiat_np521_non_montgomery_domain_field_element arg1) { uint64_t x1; uint64_t x2; uint64_t x3; uint64_t x4; uint64_t x5; uint64_t x6; uint64_t x7; uint64_t x8; uint64_t x9; uint64_t x10; uint64_t x11; uint64_t x12; uint64_t x13; uint64_t x14; uint64_t x15; uint64_t x16; uint64_t x17; uint64_t x18; uint64_t x19; uint64_t x20; uint64_t x21; uint64_t x22; uint64_t x23; uint64_t x24; uint64_t x25; uint64_t x26; uint64_t x27; uint64_t x28; fiat_np521_uint1 x29; uint64_t x30; fiat_np521_uint1 x31; uint64_t x32; fiat_np521_uint1 x33; uint64_t x34; fiat_np521_uint1 x35; uint64_t x36; fiat_np521_uint1 x37; uint64_t x38; fiat_np521_uint1 x39; uint64_t x40; fiat_np521_uint1 x41; uint64_t x42; fiat_np521_uint1 x43; uint64_t x44; uint64_t x45; uint64_t x46; uint64_t x47; uint64_t x48; uint64_t x49; uint64_t x50; uint64_t x51; uint64_t x52; uint64_t x53; uint64_t x54; uint64_t x55; uint64_t x56; uint64_t x57; uint64_t x58; uint64_t x59; uint64_t x60; uint64_t x61; uint64_t x62; uint64_t x63; uint64_t x64; fiat_np521_uint1 x65; uint64_t x66; fiat_np521_uint1 x67; uint64_t x68; fiat_np521_uint1 x69; uint64_t x70; fiat_np521_uint1 x71; uint64_t x72; fiat_np521_uint1 x73; uint64_t x74; fiat_np521_uint1 x75; uint64_t x76; fiat_np521_uint1 x77; uint64_t x78; fiat_np521_uint1 x79; uint64_t x80; fiat_np521_uint1 x81; uint64_t x82; fiat_np521_uint1 x83; uint64_t x84; fiat_np521_uint1 x85; uint64_t x86; fiat_np521_uint1 x87; uint64_t x88; fiat_np521_uint1 x89; uint64_t x90; fiat_np521_uint1 x91; uint64_t x92; fiat_np521_uint1 x93; uint64_t x94; fiat_np521_uint1 x95; uint64_t x96; fiat_np521_uint1 x97; uint64_t x98; uint64_t x99; uint64_t x100; uint64_t x101; uint64_t x102; uint64_t x103; uint64_t x104; uint64_t x105; uint64_t x106; uint64_t x107; uint64_t x108; uint64_t x109; uint64_t x110; uint64_t x111; uint64_t x112; uint64_t x113; uint64_t x114; uint64_t x115; uint64_t x116; fiat_np521_uint1 x117; uint64_t x118; fiat_np521_uint1 x119; uint64_t x120; fiat_np521_uint1 x121; uint64_t x122; fiat_np521_uint1 x123; uint64_t x124; fiat_np521_uint1 x125; uint64_t x126; fiat_np521_uint1 x127; uint64_t x128; fiat_np521_uint1 x129; uint64_t x130; fiat_np521_uint1 x131; uint64_t x132; fiat_np521_uint1 x133; uint64_t x134; fiat_np521_uint1 x135; uint64_t x136; fiat_np521_uint1 x137; uint64_t x138; fiat_np521_uint1 x139; uint64_t x140; fiat_np521_uint1 x141; uint64_t x142; fiat_np521_uint1 x143; uint64_t x144; fiat_np521_uint1 x145; uint64_t x146; fiat_np521_uint1 x147; uint64_t x148; fiat_np521_uint1 x149; uint64_t x150; uint64_t x151; uint64_t x152; uint64_t x153; uint64_t x154; uint64_t x155; uint64_t x156; uint64_t x157; uint64_t x158; uint64_t x159; uint64_t x160; uint64_t x161; uint64_t x162; uint64_t x163; uint64_t x164; uint64_t x165; uint64_t x166; uint64_t x167; uint64_t x168; uint64_t x169; uint64_t x170; fiat_np521_uint1 x171; uint64_t x172; fiat_np521_uint1 x173; uint64_t x174; fiat_np521_uint1 x175; uint64_t x176; fiat_np521_uint1 x177; uint64_t x178; fiat_np521_uint1 x179; uint64_t x180; fiat_np521_uint1 x181; uint64_t x182; fiat_np521_uint1 x183; uint64_t x184; fiat_np521_uint1 x185; uint64_t x186; fiat_np521_uint1 x187; uint64_t x188; fiat_np521_uint1 x189; uint64_t x190; fiat_np521_uint1 x191; uint64_t x192; fiat_np521_uint1 x193; uint64_t x194; fiat_np521_uint1 x195; uint64_t x196; fiat_np521_uint1 x197; uint64_t x198; fiat_np521_uint1 x199; uint64_t x200; fiat_np521_uint1 x201; uint64_t x202; fiat_np521_uint1 x203; uint64_t x204; uint64_t x205; uint64_t x206; uint64_t x207; uint64_t x208; uint64_t x209; uint64_t x210; uint64_t x211; uint64_t x212; uint64_t x213; uint64_t x214; uint64_t x215; uint64_t x216; uint64_t x217; uint64_t x218; uint64_t x219; uint64_t x220; uint64_t x221; uint64_t x222; fiat_np521_uint1 x223; uint64_t x224; fiat_np521_uint1 x225; uint64_t x226; fiat_np521_uint1 x227; uint64_t x228; fiat_np521_uint1 x229; uint64_t x230; fiat_np521_uint1 x231; uint64_t x232; fiat_np521_uint1 x233; uint64_t x234; fiat_np521_uint1 x235; uint64_t x236; fiat_np521_uint1 x237; uint64_t x238; fiat_np521_uint1 x239; uint64_t x240; fiat_np521_uint1 x241; uint64_t x242; fiat_np521_uint1 x243; uint64_t x244; fiat_np521_uint1 x245; uint64_t x246; fiat_np521_uint1 x247; uint64_t x248; fiat_np521_uint1 x249; uint64_t x250; fiat_np521_uint1 x251; uint64_t x252; fiat_np521_uint1 x253; uint64_t x254; fiat_np521_uint1 x255; uint64_t x256; uint64_t x257; uint64_t x258; uint64_t x259; uint64_t x260; uint64_t x261; uint64_t x262; uint64_t x263; uint64_t x264; uint64_t x265; uint64_t x266; uint64_t x267; uint64_t x268; uint64_t x269; uint64_t x270; uint64_t x271; uint64_t x272; uint64_t x273; uint64_t x274; uint64_t x275; uint64_t x276; fiat_np521_uint1 x277; uint64_t x278; fiat_np521_uint1 x279; uint64_t x280; fiat_np521_uint1 x281; uint64_t x282; fiat_np521_uint1 x283; uint64_t x284; fiat_np521_uint1 x285; uint64_t x286; fiat_np521_uint1 x287; uint64_t x288; fiat_np521_uint1 x289; uint64_t x290; fiat_np521_uint1 x291; uint64_t x292; fiat_np521_uint1 x293; uint64_t x294; fiat_np521_uint1 x295; uint64_t x296; fiat_np521_uint1 x297; uint64_t x298; fiat_np521_uint1 x299; uint64_t x300; fiat_np521_uint1 x301; uint64_t x302; fiat_np521_uint1 x303; uint64_t x304; fiat_np521_uint1 x305; uint64_t x306; fiat_np521_uint1 x307; uint64_t x308; fiat_np521_uint1 x309; uint64_t x310; uint64_t x311; uint64_t x312; uint64_t x313; uint64_t x314; uint64_t x315; uint64_t x316; uint64_t x317; uint64_t x318; uint64_t x319; uint64_t x320; uint64_t x321; uint64_t x322; uint64_t x323; uint64_t x324; uint64_t x325; uint64_t x326; uint64_t x327; uint64_t x328; fiat_np521_uint1 x329; uint64_t x330; fiat_np521_uint1 x331; uint64_t x332; fiat_np521_uint1 x333; uint64_t x334; fiat_np521_uint1 x335; uint64_t x336; fiat_np521_uint1 x337; uint64_t x338; fiat_np521_uint1 x339; uint64_t x340; fiat_np521_uint1 x341; uint64_t x342; fiat_np521_uint1 x343; uint64_t x344; fiat_np521_uint1 x345; uint64_t x346; fiat_np521_uint1 x347; uint64_t x348; fiat_np521_uint1 x349; uint64_t x350; fiat_np521_uint1 x351; uint64_t x352; fiat_np521_uint1 x353; uint64_t x354; fiat_np521_uint1 x355; uint64_t x356; fiat_np521_uint1 x357; uint64_t x358; fiat_np521_uint1 x359; uint64_t x360; fiat_np521_uint1 x361; uint64_t x362; uint64_t x363; uint64_t x364; uint64_t x365; uint64_t x366; uint64_t x367; uint64_t x368; uint64_t x369; uint64_t x370; uint64_t x371; uint64_t x372; uint64_t x373; uint64_t x374; uint64_t x375; uint64_t x376; uint64_t x377; uint64_t x378; uint64_t x379; uint64_t x380; uint64_t x381; uint64_t x382; fiat_np521_uint1 x383; uint64_t x384; fiat_np521_uint1 x385; uint64_t x386; fiat_np521_uint1 x387; uint64_t x388; fiat_np521_uint1 x389; uint64_t x390; fiat_np521_uint1 x391; uint64_t x392; fiat_np521_uint1 x393; uint64_t x394; fiat_np521_uint1 x395; uint64_t x396; fiat_np521_uint1 x397; uint64_t x398; fiat_np521_uint1 x399; uint64_t x400; fiat_np521_uint1 x401; uint64_t x402; fiat_np521_uint1 x403; uint64_t x404; fiat_np521_uint1 x405; uint64_t x406; fiat_np521_uint1 x407; uint64_t x408; fiat_np521_uint1 x409; uint64_t x410; fiat_np521_uint1 x411; uint64_t x412; fiat_np521_uint1 x413; uint64_t x414; fiat_np521_uint1 x415; uint64_t x416; uint64_t x417; uint64_t x418; uint64_t x419; uint64_t x420; uint64_t x421; uint64_t x422; uint64_t x423; uint64_t x424; uint64_t x425; uint64_t x426; uint64_t x427; uint64_t x428; uint64_t x429; uint64_t x430; uint64_t x431; uint64_t x432; uint64_t x433; uint64_t x434; fiat_np521_uint1 x435; uint64_t x436; fiat_np521_uint1 x437; uint64_t x438; fiat_np521_uint1 x439; uint64_t x440; fiat_np521_uint1 x441; uint64_t x442; fiat_np521_uint1 x443; uint64_t x444; fiat_np521_uint1 x445; uint64_t x446; fiat_np521_uint1 x447; uint64_t x448; fiat_np521_uint1 x449; uint64_t x450; fiat_np521_uint1 x451; uint64_t x452; fiat_np521_uint1 x453; uint64_t x454; fiat_np521_uint1 x455; uint64_t x456; fiat_np521_uint1 x457; uint64_t x458; fiat_np521_uint1 x459; uint64_t x460; fiat_np521_uint1 x461; uint64_t x462; fiat_np521_uint1 x463; uint64_t x464; fiat_np521_uint1 x465; uint64_t x466; fiat_np521_uint1 x467; uint64_t x468; uint64_t x469; uint64_t x470; uint64_t x471; uint64_t x472; uint64_t x473; uint64_t x474; uint64_t x475; uint64_t x476; uint64_t x477; uint64_t x478; uint64_t x479; uint64_t x480; uint64_t x481; uint64_t x482; uint64_t x483; uint64_t x484; uint64_t x485; uint64_t x486; uint64_t x487; uint64_t x488; fiat_np521_uint1 x489; uint64_t x490; fiat_np521_uint1 x491; uint64_t x492; fiat_np521_uint1 x493; uint64_t x494; fiat_np521_uint1 x495; uint64_t x496; fiat_np521_uint1 x497; uint64_t x498; fiat_np521_uint1 x499; uint64_t x500; fiat_np521_uint1 x501; uint64_t x502; fiat_np521_uint1 x503; uint64_t x504; fiat_np521_uint1 x505; uint64_t x506; fiat_np521_uint1 x507; uint64_t x508; fiat_np521_uint1 x509; uint64_t x510; fiat_np521_uint1 x511; uint64_t x512; fiat_np521_uint1 x513; uint64_t x514; fiat_np521_uint1 x515; uint64_t x516; fiat_np521_uint1 x517; uint64_t x518; fiat_np521_uint1 x519; uint64_t x520; fiat_np521_uint1 x521; uint64_t x522; uint64_t x523; uint64_t x524; uint64_t x525; uint64_t x526; uint64_t x527; uint64_t x528; uint64_t x529; uint64_t x530; uint64_t x531; uint64_t x532; uint64_t x533; uint64_t x534; uint64_t x535; uint64_t x536; uint64_t x537; uint64_t x538; uint64_t x539; uint64_t x540; fiat_np521_uint1 x541; uint64_t x542; fiat_np521_uint1 x543; uint64_t x544; fiat_np521_uint1 x545; uint64_t x546; fiat_np521_uint1 x547; uint64_t x548; fiat_np521_uint1 x549; uint64_t x550; fiat_np521_uint1 x551; uint64_t x552; fiat_np521_uint1 x553; uint64_t x554; fiat_np521_uint1 x555; uint64_t x556; fiat_np521_uint1 x557; uint64_t x558; fiat_np521_uint1 x559; uint64_t x560; fiat_np521_uint1 x561; uint64_t x562; fiat_np521_uint1 x563; uint64_t x564; fiat_np521_uint1 x565; uint64_t x566; fiat_np521_uint1 x567; uint64_t x568; fiat_np521_uint1 x569; uint64_t x570; fiat_np521_uint1 x571; uint64_t x572; fiat_np521_uint1 x573; uint64_t x574; uint64_t x575; uint64_t x576; uint64_t x577; uint64_t x578; uint64_t x579; uint64_t x580; uint64_t x581; uint64_t x582; uint64_t x583; uint64_t x584; uint64_t x585; uint64_t x586; uint64_t x587; uint64_t x588; uint64_t x589; uint64_t x590; uint64_t x591; uint64_t x592; uint64_t x593; uint64_t x594; fiat_np521_uint1 x595; uint64_t x596; fiat_np521_uint1 x597; uint64_t x598; fiat_np521_uint1 x599; uint64_t x600; fiat_np521_uint1 x601; uint64_t x602; fiat_np521_uint1 x603; uint64_t x604; fiat_np521_uint1 x605; uint64_t x606; fiat_np521_uint1 x607; uint64_t x608; fiat_np521_uint1 x609; uint64_t x610; fiat_np521_uint1 x611; uint64_t x612; fiat_np521_uint1 x613; uint64_t x614; fiat_np521_uint1 x615; uint64_t x616; fiat_np521_uint1 x617; uint64_t x618; fiat_np521_uint1 x619; uint64_t x620; fiat_np521_uint1 x621; uint64_t x622; fiat_np521_uint1 x623; uint64_t x624; fiat_np521_uint1 x625; uint64_t x626; fiat_np521_uint1 x627; uint64_t x628; uint64_t x629; uint64_t x630; uint64_t x631; uint64_t x632; uint64_t x633; uint64_t x634; uint64_t x635; uint64_t x636; uint64_t x637; uint64_t x638; uint64_t x639; uint64_t x640; uint64_t x641; uint64_t x642; uint64_t x643; uint64_t x644; uint64_t x645; uint64_t x646; fiat_np521_uint1 x647; uint64_t x648; fiat_np521_uint1 x649; uint64_t x650; fiat_np521_uint1 x651; uint64_t x652; fiat_np521_uint1 x653; uint64_t x654; fiat_np521_uint1 x655; uint64_t x656; fiat_np521_uint1 x657; uint64_t x658; fiat_np521_uint1 x659; uint64_t x660; fiat_np521_uint1 x661; uint64_t x662; fiat_np521_uint1 x663; uint64_t x664; fiat_np521_uint1 x665; uint64_t x666; fiat_np521_uint1 x667; uint64_t x668; fiat_np521_uint1 x669; uint64_t x670; fiat_np521_uint1 x671; uint64_t x672; fiat_np521_uint1 x673; uint64_t x674; fiat_np521_uint1 x675; uint64_t x676; fiat_np521_uint1 x677; uint64_t x678; fiat_np521_uint1 x679; uint64_t x680; uint64_t x681; uint64_t x682; uint64_t x683; uint64_t x684; uint64_t x685; uint64_t x686; uint64_t x687; uint64_t x688; uint64_t x689; uint64_t x690; uint64_t x691; uint64_t x692; uint64_t x693; uint64_t x694; uint64_t x695; uint64_t x696; uint64_t x697; uint64_t x698; uint64_t x699; uint64_t x700; fiat_np521_uint1 x701; uint64_t x702; fiat_np521_uint1 x703; uint64_t x704; fiat_np521_uint1 x705; uint64_t x706; fiat_np521_uint1 x707; uint64_t x708; fiat_np521_uint1 x709; uint64_t x710; fiat_np521_uint1 x711; uint64_t x712; fiat_np521_uint1 x713; uint64_t x714; fiat_np521_uint1 x715; uint64_t x716; fiat_np521_uint1 x717; uint64_t x718; fiat_np521_uint1 x719; uint64_t x720; fiat_np521_uint1 x721; uint64_t x722; fiat_np521_uint1 x723; uint64_t x724; fiat_np521_uint1 x725; uint64_t x726; fiat_np521_uint1 x727; uint64_t x728; fiat_np521_uint1 x729; uint64_t x730; fiat_np521_uint1 x731; uint64_t x732; fiat_np521_uint1 x733; uint64_t x734; uint64_t x735; uint64_t x736; uint64_t x737; uint64_t x738; uint64_t x739; uint64_t x740; uint64_t x741; uint64_t x742; uint64_t x743; uint64_t x744; uint64_t x745; uint64_t x746; uint64_t x747; uint64_t x748; uint64_t x749; uint64_t x750; uint64_t x751; uint64_t x752; fiat_np521_uint1 x753; uint64_t x754; fiat_np521_uint1 x755; uint64_t x756; fiat_np521_uint1 x757; uint64_t x758; fiat_np521_uint1 x759; uint64_t x760; fiat_np521_uint1 x761; uint64_t x762; fiat_np521_uint1 x763; uint64_t x764; fiat_np521_uint1 x765; uint64_t x766; fiat_np521_uint1 x767; uint64_t x768; fiat_np521_uint1 x769; uint64_t x770; fiat_np521_uint1 x771; uint64_t x772; fiat_np521_uint1 x773; uint64_t x774; fiat_np521_uint1 x775; uint64_t x776; fiat_np521_uint1 x777; uint64_t x778; fiat_np521_uint1 x779; uint64_t x780; fiat_np521_uint1 x781; uint64_t x782; fiat_np521_uint1 x783; uint64_t x784; fiat_np521_uint1 x785; uint64_t x786; uint64_t x787; uint64_t x788; uint64_t x789; uint64_t x790; uint64_t x791; uint64_t x792; uint64_t x793; uint64_t x794; uint64_t x795; uint64_t x796; uint64_t x797; uint64_t x798; uint64_t x799; uint64_t x800; uint64_t x801; uint64_t x802; uint64_t x803; uint64_t x804; uint64_t x805; uint64_t x806; fiat_np521_uint1 x807; uint64_t x808; fiat_np521_uint1 x809; uint64_t x810; fiat_np521_uint1 x811; uint64_t x812; fiat_np521_uint1 x813; uint64_t x814; fiat_np521_uint1 x815; uint64_t x816; fiat_np521_uint1 x817; uint64_t x818; fiat_np521_uint1 x819; uint64_t x820; fiat_np521_uint1 x821; uint64_t x822; fiat_np521_uint1 x823; uint64_t x824; fiat_np521_uint1 x825; uint64_t x826; fiat_np521_uint1 x827; uint64_t x828; fiat_np521_uint1 x829; uint64_t x830; fiat_np521_uint1 x831; uint64_t x832; fiat_np521_uint1 x833; uint64_t x834; fiat_np521_uint1 x835; uint64_t x836; fiat_np521_uint1 x837; uint64_t x838; fiat_np521_uint1 x839; uint64_t x840; uint64_t x841; uint64_t x842; uint64_t x843; uint64_t x844; uint64_t x845; uint64_t x846; uint64_t x847; uint64_t x848; uint64_t x849; uint64_t x850; uint64_t x851; uint64_t x852; uint64_t x853; uint64_t x854; uint64_t x855; uint64_t x856; uint64_t x857; uint64_t x858; fiat_np521_uint1 x859; uint64_t x860; fiat_np521_uint1 x861; uint64_t x862; fiat_np521_uint1 x863; uint64_t x864; fiat_np521_uint1 x865; uint64_t x866; fiat_np521_uint1 x867; uint64_t x868; fiat_np521_uint1 x869; uint64_t x870; fiat_np521_uint1 x871; uint64_t x872; fiat_np521_uint1 x873; uint64_t x874; fiat_np521_uint1 x875; uint64_t x876; fiat_np521_uint1 x877; uint64_t x878; fiat_np521_uint1 x879; uint64_t x880; fiat_np521_uint1 x881; uint64_t x882; fiat_np521_uint1 x883; uint64_t x884; fiat_np521_uint1 x885; uint64_t x886; fiat_np521_uint1 x887; uint64_t x888; fiat_np521_uint1 x889; uint64_t x890; fiat_np521_uint1 x891; uint64_t x892; uint64_t x893; uint64_t x894; uint64_t x895; uint64_t x896; uint64_t x897; uint64_t x898; uint64_t x899; uint64_t x900; uint64_t x901; uint64_t x902; uint64_t x903; uint64_t x904; uint64_t x905; uint64_t x906; uint64_t x907; uint64_t x908; uint64_t x909; uint64_t x910; uint64_t x911; uint64_t x912; fiat_np521_uint1 x913; uint64_t x914; fiat_np521_uint1 x915; uint64_t x916; fiat_np521_uint1 x917; uint64_t x918; fiat_np521_uint1 x919; uint64_t x920; fiat_np521_uint1 x921; uint64_t x922; fiat_np521_uint1 x923; uint64_t x924; fiat_np521_uint1 x925; uint64_t x926; fiat_np521_uint1 x927; uint64_t x928; fiat_np521_uint1 x929; uint64_t x930; fiat_np521_uint1 x931; uint64_t x932; fiat_np521_uint1 x933; uint64_t x934; fiat_np521_uint1 x935; uint64_t x936; fiat_np521_uint1 x937; uint64_t x938; fiat_np521_uint1 x939; uint64_t x940; fiat_np521_uint1 x941; uint64_t x942; fiat_np521_uint1 x943; uint64_t x944; fiat_np521_uint1 x945; uint64_t x946; uint64_t x947; fiat_np521_uint1 x948; uint64_t x949; fiat_np521_uint1 x950; uint64_t x951; fiat_np521_uint1 x952; uint64_t x953; fiat_np521_uint1 x954; uint64_t x955; fiat_np521_uint1 x956; uint64_t x957; fiat_np521_uint1 x958; uint64_t x959; fiat_np521_uint1 x960; uint64_t x961; fiat_np521_uint1 x962; uint64_t x963; fiat_np521_uint1 x964; uint64_t x965; fiat_np521_uint1 x966; uint64_t x967; uint64_t x968; uint64_t x969; uint64_t x970; uint64_t x971; uint64_t x972; uint64_t x973; uint64_t x974; uint64_t x975; x1 = (arg1[1]); x2 = (arg1[2]); x3 = (arg1[3]); x4 = (arg1[4]); x5 = (arg1[5]); x6 = (arg1[6]); x7 = (arg1[7]); x8 = (arg1[8]); x9 = (arg1[0]); fiat_np521_mulx_u64(&x10, &x11, x9, UINT8_C(0x3d)); fiat_np521_mulx_u64(&x12, &x13, x9, UINT64_C(0x2d8e03d1492d0d45)); fiat_np521_mulx_u64(&x14, &x15, x9, UINT64_C(0x5bcc6d61a8e567bc)); fiat_np521_mulx_u64(&x16, &x17, x9, UINT64_C(0xcff3d142b7756e3e)); fiat_np521_mulx_u64(&x18, &x19, x9, UINT64_C(0xdd6e23d82e49c7db)); fiat_np521_mulx_u64(&x20, &x21, x9, UINT64_C(0xd3721ef557f75e06)); fiat_np521_mulx_u64(&x22, &x23, x9, UINT64_C(0x12a78d38794573ff)); fiat_np521_mulx_u64(&x24, &x25, x9, UINT64_C(0xf707badce5547ea3)); fiat_np521_mulx_u64(&x26, &x27, x9, UINT64_C(0x137cd04dcf15dd04)); fiat_np521_addcarryx_u64(&x28, &x29, 0x0, x27, x24); fiat_np521_addcarryx_u64(&x30, &x31, x29, x25, x22); fiat_np521_addcarryx_u64(&x32, &x33, x31, x23, x20); fiat_np521_addcarryx_u64(&x34, &x35, x33, x21, x18); fiat_np521_addcarryx_u64(&x36, &x37, x35, x19, x16); fiat_np521_addcarryx_u64(&x38, &x39, x37, x17, x14); fiat_np521_addcarryx_u64(&x40, &x41, x39, x15, x12); fiat_np521_addcarryx_u64(&x42, &x43, x41, x13, x10); fiat_np521_mulx_u64(&x44, &x45, x26, UINT64_C(0x1d2f5ccd79a995c7)); fiat_np521_mulx_u64(&x46, &x47, x44, UINT16_C(0x1ff)); fiat_np521_mulx_u64(&x48, &x49, x44, UINT64_C(0xffffffffffffffff)); fiat_np521_mulx_u64(&x50, &x51, x44, UINT64_C(0xffffffffffffffff)); fiat_np521_mulx_u64(&x52, &x53, x44, UINT64_C(0xffffffffffffffff)); fiat_np521_mulx_u64(&x54, &x55, x44, UINT64_C(0xfffffffffffffffa)); fiat_np521_mulx_u64(&x56, &x57, x44, UINT64_C(0x51868783bf2f966b)); fiat_np521_mulx_u64(&x58, &x59, x44, UINT64_C(0x7fcc0148f709a5d0)); fiat_np521_mulx_u64(&x60, &x61, x44, UINT64_C(0x3bb5c9b8899c47ae)); fiat_np521_mulx_u64(&x62, &x63, x44, UINT64_C(0xbb6fb71e91386409)); fiat_np521_addcarryx_u64(&x64, &x65, 0x0, x63, x60); fiat_np521_addcarryx_u64(&x66, &x67, x65, x61, x58); fiat_np521_addcarryx_u64(&x68, &x69, x67, x59, x56); fiat_np521_addcarryx_u64(&x70, &x71, x69, x57, x54); fiat_np521_addcarryx_u64(&x72, &x73, x71, x55, x52); fiat_np521_addcarryx_u64(&x74, &x75, x73, x53, x50); fiat_np521_addcarryx_u64(&x76, &x77, x75, x51, x48); fiat_np521_addcarryx_u64(&x78, &x79, x77, x49, x46); fiat_np521_addcarryx_u64(&x80, &x81, 0x0, x26, x62); fiat_np521_addcarryx_u64(&x82, &x83, x81, x28, x64); fiat_np521_addcarryx_u64(&x84, &x85, x83, x30, x66); fiat_np521_addcarryx_u64(&x86, &x87, x85, x32, x68); fiat_np521_addcarryx_u64(&x88, &x89, x87, x34, x70); fiat_np521_addcarryx_u64(&x90, &x91, x89, x36, x72); fiat_np521_addcarryx_u64(&x92, &x93, x91, x38, x74); fiat_np521_addcarryx_u64(&x94, &x95, x93, x40, x76); fiat_np521_addcarryx_u64(&x96, &x97, x95, x42, x78); fiat_np521_mulx_u64(&x98, &x99, x1, UINT8_C(0x3d)); fiat_np521_mulx_u64(&x100, &x101, x1, UINT64_C(0x2d8e03d1492d0d45)); fiat_np521_mulx_u64(&x102, &x103, x1, UINT64_C(0x5bcc6d61a8e567bc)); fiat_np521_mulx_u64(&x104, &x105, x1, UINT64_C(0xcff3d142b7756e3e)); fiat_np521_mulx_u64(&x106, &x107, x1, UINT64_C(0xdd6e23d82e49c7db)); fiat_np521_mulx_u64(&x108, &x109, x1, UINT64_C(0xd3721ef557f75e06)); fiat_np521_mulx_u64(&x110, &x111, x1, UINT64_C(0x12a78d38794573ff)); fiat_np521_mulx_u64(&x112, &x113, x1, UINT64_C(0xf707badce5547ea3)); fiat_np521_mulx_u64(&x114, &x115, x1, UINT64_C(0x137cd04dcf15dd04)); fiat_np521_addcarryx_u64(&x116, &x117, 0x0, x115, x112); fiat_np521_addcarryx_u64(&x118, &x119, x117, x113, x110); fiat_np521_addcarryx_u64(&x120, &x121, x119, x111, x108); fiat_np521_addcarryx_u64(&x122, &x123, x121, x109, x106); fiat_np521_addcarryx_u64(&x124, &x125, x123, x107, x104); fiat_np521_addcarryx_u64(&x126, &x127, x125, x105, x102); fiat_np521_addcarryx_u64(&x128, &x129, x127, x103, x100); fiat_np521_addcarryx_u64(&x130, &x131, x129, x101, x98); fiat_np521_addcarryx_u64(&x132, &x133, 0x0, x82, x114); fiat_np521_addcarryx_u64(&x134, &x135, x133, x84, x116); fiat_np521_addcarryx_u64(&x136, &x137, x135, x86, x118); fiat_np521_addcarryx_u64(&x138, &x139, x137, x88, x120); fiat_np521_addcarryx_u64(&x140, &x141, x139, x90, x122); fiat_np521_addcarryx_u64(&x142, &x143, x141, x92, x124); fiat_np521_addcarryx_u64(&x144, &x145, x143, x94, x126); fiat_np521_addcarryx_u64(&x146, &x147, x145, x96, x128); fiat_np521_addcarryx_u64(&x148, &x149, x147, ((x97 + (x43 + x11)) + (x79 + x47)), x130); fiat_np521_mulx_u64(&x150, &x151, x132, UINT64_C(0x1d2f5ccd79a995c7)); fiat_np521_mulx_u64(&x152, &x153, x150, UINT16_C(0x1ff)); fiat_np521_mulx_u64(&x154, &x155, x150, UINT64_C(0xffffffffffffffff)); fiat_np521_mulx_u64(&x156, &x157, x150, UINT64_C(0xffffffffffffffff)); fiat_np521_mulx_u64(&x158, &x159, x150, UINT64_C(0xffffffffffffffff)); fiat_np521_mulx_u64(&x160, &x161, x150, UINT64_C(0xfffffffffffffffa)); fiat_np521_mulx_u64(&x162, &x163, x150, UINT64_C(0x51868783bf2f966b)); fiat_np521_mulx_u64(&x164, &x165, x150, UINT64_C(0x7fcc0148f709a5d0)); fiat_np521_mulx_u64(&x166, &x167, x150, UINT64_C(0x3bb5c9b8899c47ae)); fiat_np521_mulx_u64(&x168, &x169, x150, UINT64_C(0xbb6fb71e91386409)); fiat_np521_addcarryx_u64(&x170, &x171, 0x0, x169, x166); fiat_np521_addcarryx_u64(&x172, &x173, x171, x167, x164); fiat_np521_addcarryx_u64(&x174, &x175, x173, x165, x162); fiat_np521_addcarryx_u64(&x176, &x177, x175, x163, x160); fiat_np521_addcarryx_u64(&x178, &x179, x177, x161, x158); fiat_np521_addcarryx_u64(&x180, &x181, x179, x159, x156); fiat_np521_addcarryx_u64(&x182, &x183, x181, x157, x154); fiat_np521_addcarryx_u64(&x184, &x185, x183, x155, x152); fiat_np521_addcarryx_u64(&x186, &x187, 0x0, x132, x168); fiat_np521_addcarryx_u64(&x188, &x189, x187, x134, x170); fiat_np521_addcarryx_u64(&x190, &x191, x189, x136, x172); fiat_np521_addcarryx_u64(&x192, &x193, x191, x138, x174); fiat_np521_addcarryx_u64(&x194, &x195, x193, x140, x176); fiat_np521_addcarryx_u64(&x196, &x197, x195, x142, x178); fiat_np521_addcarryx_u64(&x198, &x199, x197, x144, x180); fiat_np521_addcarryx_u64(&x200, &x201, x199, x146, x182); fiat_np521_addcarryx_u64(&x202, &x203, x201, x148, x184); fiat_np521_mulx_u64(&x204, &x205, x2, UINT8_C(0x3d)); fiat_np521_mulx_u64(&x206, &x207, x2, UINT64_C(0x2d8e03d1492d0d45)); fiat_np521_mulx_u64(&x208, &x209, x2, UINT64_C(0x5bcc6d61a8e567bc)); fiat_np521_mulx_u64(&x210, &x211, x2, UINT64_C(0xcff3d142b7756e3e)); fiat_np521_mulx_u64(&x212, &x213, x2, UINT64_C(0xdd6e23d82e49c7db)); fiat_np521_mulx_u64(&x214, &x215, x2, UINT64_C(0xd3721ef557f75e06)); fiat_np521_mulx_u64(&x216, &x217, x2, UINT64_C(0x12a78d38794573ff)); fiat_np521_mulx_u64(&x218, &x219, x2, UINT64_C(0xf707badce5547ea3)); fiat_np521_mulx_u64(&x220, &x221, x2, UINT64_C(0x137cd04dcf15dd04)); fiat_np521_addcarryx_u64(&x222, &x223, 0x0, x221, x218); fiat_np521_addcarryx_u64(&x224, &x225, x223, x219, x216); fiat_np521_addcarryx_u64(&x226, &x227, x225, x217, x214); fiat_np521_addcarryx_u64(&x228, &x229, x227, x215, x212); fiat_np521_addcarryx_u64(&x230, &x231, x229, x213, x210); fiat_np521_addcarryx_u64(&x232, &x233, x231, x211, x208); fiat_np521_addcarryx_u64(&x234, &x235, x233, x209, x206); fiat_np521_addcarryx_u64(&x236, &x237, x235, x207, x204); fiat_np521_addcarryx_u64(&x238, &x239, 0x0, x188, x220); fiat_np521_addcarryx_u64(&x240, &x241, x239, x190, x222); fiat_np521_addcarryx_u64(&x242, &x243, x241, x192, x224); fiat_np521_addcarryx_u64(&x244, &x245, x243, x194, x226); fiat_np521_addcarryx_u64(&x246, &x247, x245, x196, x228); fiat_np521_addcarryx_u64(&x248, &x249, x247, x198, x230); fiat_np521_addcarryx_u64(&x250, &x251, x249, x200, x232); fiat_np521_addcarryx_u64(&x252, &x253, x251, x202, x234); fiat_np521_addcarryx_u64(&x254, &x255, x253, ((x203 + (x149 + (x131 + x99))) + (x185 + x153)), x236); fiat_np521_mulx_u64(&x256, &x257, x238, UINT64_C(0x1d2f5ccd79a995c7)); fiat_np521_mulx_u64(&x258, &x259, x256, UINT16_C(0x1ff)); fiat_np521_mulx_u64(&x260, &x261, x256, UINT64_C(0xffffffffffffffff)); fiat_np521_mulx_u64(&x262, &x263, x256, UINT64_C(0xffffffffffffffff)); fiat_np521_mulx_u64(&x264, &x265, x256, UINT64_C(0xffffffffffffffff)); fiat_np521_mulx_u64(&x266, &x267, x256, UINT64_C(0xfffffffffffffffa)); fiat_np521_mulx_u64(&x268, &x269, x256, UINT64_C(0x51868783bf2f966b)); fiat_np521_mulx_u64(&x270, &x271, x256, UINT64_C(0x7fcc0148f709a5d0)); fiat_np521_mulx_u64(&x272, &x273, x256, UINT64_C(0x3bb5c9b8899c47ae)); fiat_np521_mulx_u64(&x274, &x275, x256, UINT64_C(0xbb6fb71e91386409)); fiat_np521_addcarryx_u64(&x276, &x277, 0x0, x275, x272); fiat_np521_addcarryx_u64(&x278, &x279, x277, x273, x270); fiat_np521_addcarryx_u64(&x280, &x281, x279, x271, x268); fiat_np521_addcarryx_u64(&x282, &x283, x281, x269, x266); fiat_np521_addcarryx_u64(&x284, &x285, x283, x267, x264); fiat_np521_addcarryx_u64(&x286, &x287, x285, x265, x262); fiat_np521_addcarryx_u64(&x288, &x289, x287, x263, x260); fiat_np521_addcarryx_u64(&x290, &x291, x289, x261, x258); fiat_np521_addcarryx_u64(&x292, &x293, 0x0, x238, x274); fiat_np521_addcarryx_u64(&x294, &x295, x293, x240, x276); fiat_np521_addcarryx_u64(&x296, &x297, x295, x242, x278); fiat_np521_addcarryx_u64(&x298, &x299, x297, x244, x280); fiat_np521_addcarryx_u64(&x300, &x301, x299, x246, x282); fiat_np521_addcarryx_u64(&x302, &x303, x301, x248, x284); fiat_np521_addcarryx_u64(&x304, &x305, x303, x250, x286); fiat_np521_addcarryx_u64(&x306, &x307, x305, x252, x288); fiat_np521_addcarryx_u64(&x308, &x309, x307, x254, x290); fiat_np521_mulx_u64(&x310, &x311, x3, UINT8_C(0x3d)); fiat_np521_mulx_u64(&x312, &x313, x3, UINT64_C(0x2d8e03d1492d0d45)); fiat_np521_mulx_u64(&x314, &x315, x3, UINT64_C(0x5bcc6d61a8e567bc)); fiat_np521_mulx_u64(&x316, &x317, x3, UINT64_C(0xcff3d142b7756e3e)); fiat_np521_mulx_u64(&x318, &x319, x3, UINT64_C(0xdd6e23d82e49c7db)); fiat_np521_mulx_u64(&x320, &x321, x3, UINT64_C(0xd3721ef557f75e06)); fiat_np521_mulx_u64(&x322, &x323, x3, UINT64_C(0x12a78d38794573ff)); fiat_np521_mulx_u64(&x324, &x325, x3, UINT64_C(0xf707badce5547ea3)); fiat_np521_mulx_u64(&x326, &x327, x3, UINT64_C(0x137cd04dcf15dd04)); fiat_np521_addcarryx_u64(&x328, &x329, 0x0, x327, x324); fiat_np521_addcarryx_u64(&x330, &x331, x329, x325, x322); fiat_np521_addcarryx_u64(&x332, &x333, x331, x323, x320); fiat_np521_addcarryx_u64(&x334, &x335, x333, x321, x318); fiat_np521_addcarryx_u64(&x336, &x337, x335, x319, x316); fiat_np521_addcarryx_u64(&x338, &x339, x337, x317, x314); fiat_np521_addcarryx_u64(&x340, &x341, x339, x315, x312); fiat_np521_addcarryx_u64(&x342, &x343, x341, x313, x310); fiat_np521_addcarryx_u64(&x344, &x345, 0x0, x294, x326); fiat_np521_addcarryx_u64(&x346, &x347, x345, x296, x328); fiat_np521_addcarryx_u64(&x348, &x349, x347, x298, x330); fiat_np521_addcarryx_u64(&x350, &x351, x349, x300, x332); fiat_np521_addcarryx_u64(&x352, &x353, x351, x302, x334); fiat_np521_addcarryx_u64(&x354, &x355, x353, x304, x336); fiat_np521_addcarryx_u64(&x356, &x357, x355, x306, x338); fiat_np521_addcarryx_u64(&x358, &x359, x357, x308, x340); fiat_np521_addcarryx_u64(&x360, &x361, x359, ((x309 + (x255 + (x237 + x205))) + (x291 + x259)), x342); fiat_np521_mulx_u64(&x362, &x363, x344, UINT64_C(0x1d2f5ccd79a995c7)); fiat_np521_mulx_u64(&x364, &x365, x362, UINT16_C(0x1ff)); fiat_np521_mulx_u64(&x366, &x367, x362, UINT64_C(0xffffffffffffffff)); fiat_np521_mulx_u64(&x368, &x369, x362, UINT64_C(0xffffffffffffffff)); fiat_np521_mulx_u64(&x370, &x371, x362, UINT64_C(0xffffffffffffffff)); fiat_np521_mulx_u64(&x372, &x373, x362, UINT64_C(0xfffffffffffffffa)); fiat_np521_mulx_u64(&x374, &x375, x362, UINT64_C(0x51868783bf2f966b)); fiat_np521_mulx_u64(&x376, &x377, x362, UINT64_C(0x7fcc0148f709a5d0)); fiat_np521_mulx_u64(&x378, &x379, x362, UINT64_C(0x3bb5c9b8899c47ae)); fiat_np521_mulx_u64(&x380, &x381, x362, UINT64_C(0xbb6fb71e91386409)); fiat_np521_addcarryx_u64(&x382, &x383, 0x0, x381, x378); fiat_np521_addcarryx_u64(&x384, &x385, x383, x379, x376); fiat_np521_addcarryx_u64(&x386, &x387, x385, x377, x374); fiat_np521_addcarryx_u64(&x388, &x389, x387, x375, x372); fiat_np521_addcarryx_u64(&x390, &x391, x389, x373, x370); fiat_np521_addcarryx_u64(&x392, &x393, x391, x371, x368); fiat_np521_addcarryx_u64(&x394, &x395, x393, x369, x366); fiat_np521_addcarryx_u64(&x396, &x397, x395, x367, x364); fiat_np521_addcarryx_u64(&x398, &x399, 0x0, x344, x380); fiat_np521_addcarryx_u64(&x400, &x401, x399, x346, x382); fiat_np521_addcarryx_u64(&x402, &x403, x401, x348, x384); fiat_np521_addcarryx_u64(&x404, &x405, x403, x350, x386); fiat_np521_addcarryx_u64(&x406, &x407, x405, x352, x388); fiat_np521_addcarryx_u64(&x408, &x409, x407, x354, x390); fiat_np521_addcarryx_u64(&x410, &x411, x409, x356, x392); fiat_np521_addcarryx_u64(&x412, &x413, x411, x358, x394); fiat_np521_addcarryx_u64(&x414, &x415, x413, x360, x396); fiat_np521_mulx_u64(&x416, &x417, x4, UINT8_C(0x3d)); fiat_np521_mulx_u64(&x418, &x419, x4, UINT64_C(0x2d8e03d1492d0d45)); fiat_np521_mulx_u64(&x420, &x421, x4, UINT64_C(0x5bcc6d61a8e567bc)); fiat_np521_mulx_u64(&x422, &x423, x4, UINT64_C(0xcff3d142b7756e3e)); fiat_np521_mulx_u64(&x424, &x425, x4, UINT64_C(0xdd6e23d82e49c7db)); fiat_np521_mulx_u64(&x426, &x427, x4, UINT64_C(0xd3721ef557f75e06)); fiat_np521_mulx_u64(&x428, &x429, x4, UINT64_C(0x12a78d38794573ff)); fiat_np521_mulx_u64(&x430, &x431, x4, UINT64_C(0xf707badce5547ea3)); fiat_np521_mulx_u64(&x432, &x433, x4, UINT64_C(0x137cd04dcf15dd04)); fiat_np521_addcarryx_u64(&x434, &x435, 0x0, x433, x430); fiat_np521_addcarryx_u64(&x436, &x437, x435, x431, x428); fiat_np521_addcarryx_u64(&x438, &x439, x437, x429, x426); fiat_np521_addcarryx_u64(&x440, &x441, x439, x427, x424); fiat_np521_addcarryx_u64(&x442, &x443, x441, x425, x422); fiat_np521_addcarryx_u64(&x444, &x445, x443, x423, x420); fiat_np521_addcarryx_u64(&x446, &x447, x445, x421, x418); fiat_np521_addcarryx_u64(&x448, &x449, x447, x419, x416); fiat_np521_addcarryx_u64(&x450, &x451, 0x0, x400, x432); fiat_np521_addcarryx_u64(&x452, &x453, x451, x402, x434); fiat_np521_addcarryx_u64(&x454, &x455, x453, x404, x436); fiat_np521_addcarryx_u64(&x456, &x457, x455, x406, x438); fiat_np521_addcarryx_u64(&x458, &x459, x457, x408, x440); fiat_np521_addcarryx_u64(&x460, &x461, x459, x410, x442); fiat_np521_addcarryx_u64(&x462, &x463, x461, x412, x444); fiat_np521_addcarryx_u64(&x464, &x465, x463, x414, x446); fiat_np521_addcarryx_u64(&x466, &x467, x465, ((x415 + (x361 + (x343 + x311))) + (x397 + x365)), x448); fiat_np521_mulx_u64(&x468, &x469, x450, UINT64_C(0x1d2f5ccd79a995c7)); fiat_np521_mulx_u64(&x470, &x471, x468, UINT16_C(0x1ff)); fiat_np521_mulx_u64(&x472, &x473, x468, UINT64_C(0xffffffffffffffff)); fiat_np521_mulx_u64(&x474, &x475, x468, UINT64_C(0xffffffffffffffff)); fiat_np521_mulx_u64(&x476, &x477, x468, UINT64_C(0xffffffffffffffff)); fiat_np521_mulx_u64(&x478, &x479, x468, UINT64_C(0xfffffffffffffffa)); fiat_np521_mulx_u64(&x480, &x481, x468, UINT64_C(0x51868783bf2f966b)); fiat_np521_mulx_u64(&x482, &x483, x468, UINT64_C(0x7fcc0148f709a5d0)); fiat_np521_mulx_u64(&x484, &x485, x468, UINT64_C(0x3bb5c9b8899c47ae)); fiat_np521_mulx_u64(&x486, &x487, x468, UINT64_C(0xbb6fb71e91386409)); fiat_np521_addcarryx_u64(&x488, &x489, 0x0, x487, x484); fiat_np521_addcarryx_u64(&x490, &x491, x489, x485, x482); fiat_np521_addcarryx_u64(&x492, &x493, x491, x483, x480); fiat_np521_addcarryx_u64(&x494, &x495, x493, x481, x478); fiat_np521_addcarryx_u64(&x496, &x497, x495, x479, x476); fiat_np521_addcarryx_u64(&x498, &x499, x497, x477, x474); fiat_np521_addcarryx_u64(&x500, &x501, x499, x475, x472); fiat_np521_addcarryx_u64(&x502, &x503, x501, x473, x470); fiat_np521_addcarryx_u64(&x504, &x505, 0x0, x450, x486); fiat_np521_addcarryx_u64(&x506, &x507, x505, x452, x488); fiat_np521_addcarryx_u64(&x508, &x509, x507, x454, x490); fiat_np521_addcarryx_u64(&x510, &x511, x509, x456, x492); fiat_np521_addcarryx_u64(&x512, &x513, x511, x458, x494); fiat_np521_addcarryx_u64(&x514, &x515, x513, x460, x496); fiat_np521_addcarryx_u64(&x516, &x517, x515, x462, x498); fiat_np521_addcarryx_u64(&x518, &x519, x517, x464, x500); fiat_np521_addcarryx_u64(&x520, &x521, x519, x466, x502); fiat_np521_mulx_u64(&x522, &x523, x5, UINT8_C(0x3d)); fiat_np521_mulx_u64(&x524, &x525, x5, UINT64_C(0x2d8e03d1492d0d45)); fiat_np521_mulx_u64(&x526, &x527, x5, UINT64_C(0x5bcc6d61a8e567bc)); fiat_np521_mulx_u64(&x528, &x529, x5, UINT64_C(0xcff3d142b7756e3e)); fiat_np521_mulx_u64(&x530, &x531, x5, UINT64_C(0xdd6e23d82e49c7db)); fiat_np521_mulx_u64(&x532, &x533, x5, UINT64_C(0xd3721ef557f75e06)); fiat_np521_mulx_u64(&x534, &x535, x5, UINT64_C(0x12a78d38794573ff)); fiat_np521_mulx_u64(&x536, &x537, x5, UINT64_C(0xf707badce5547ea3)); fiat_np521_mulx_u64(&x538, &x539, x5, UINT64_C(0x137cd04dcf15dd04)); fiat_np521_addcarryx_u64(&x540, &x541, 0x0, x539, x536); fiat_np521_addcarryx_u64(&x542, &x543, x541, x537, x534); fiat_np521_addcarryx_u64(&x544, &x545, x543, x535, x532); fiat_np521_addcarryx_u64(&x546, &x547, x545, x533, x530); fiat_np521_addcarryx_u64(&x548, &x549, x547, x531, x528); fiat_np521_addcarryx_u64(&x550, &x551, x549, x529, x526); fiat_np521_addcarryx_u64(&x552, &x553, x551, x527, x524); fiat_np521_addcarryx_u64(&x554, &x555, x553, x525, x522); fiat_np521_addcarryx_u64(&x556, &x557, 0x0, x506, x538); fiat_np521_addcarryx_u64(&x558, &x559, x557, x508, x540); fiat_np521_addcarryx_u64(&x560, &x561, x559, x510, x542); fiat_np521_addcarryx_u64(&x562, &x563, x561, x512, x544); fiat_np521_addcarryx_u64(&x564, &x565, x563, x514, x546); fiat_np521_addcarryx_u64(&x566, &x567, x565, x516, x548); fiat_np521_addcarryx_u64(&x568, &x569, x567, x518, x550); fiat_np521_addcarryx_u64(&x570, &x571, x569, x520, x552); fiat_np521_addcarryx_u64(&x572, &x573, x571, ((x521 + (x467 + (x449 + x417))) + (x503 + x471)), x554); fiat_np521_mulx_u64(&x574, &x575, x556, UINT64_C(0x1d2f5ccd79a995c7)); fiat_np521_mulx_u64(&x576, &x577, x574, UINT16_C(0x1ff)); fiat_np521_mulx_u64(&x578, &x579, x574, UINT64_C(0xffffffffffffffff)); fiat_np521_mulx_u64(&x580, &x581, x574, UINT64_C(0xffffffffffffffff)); fiat_np521_mulx_u64(&x582, &x583, x574, UINT64_C(0xffffffffffffffff)); fiat_np521_mulx_u64(&x584, &x585, x574, UINT64_C(0xfffffffffffffffa)); fiat_np521_mulx_u64(&x586, &x587, x574, UINT64_C(0x51868783bf2f966b)); fiat_np521_mulx_u64(&x588, &x589, x574, UINT64_C(0x7fcc0148f709a5d0)); fiat_np521_mulx_u64(&x590, &x591, x574, UINT64_C(0x3bb5c9b8899c47ae)); fiat_np521_mulx_u64(&x592, &x593, x574, UINT64_C(0xbb6fb71e91386409)); fiat_np521_addcarryx_u64(&x594, &x595, 0x0, x593, x590); fiat_np521_addcarryx_u64(&x596, &x597, x595, x591, x588); fiat_np521_addcarryx_u64(&x598, &x599, x597, x589, x586); fiat_np521_addcarryx_u64(&x600, &x601, x599, x587, x584); fiat_np521_addcarryx_u64(&x602, &x603, x601, x585, x582); fiat_np521_addcarryx_u64(&x604, &x605, x603, x583, x580); fiat_np521_addcarryx_u64(&x606, &x607, x605, x581, x578); fiat_np521_addcarryx_u64(&x608, &x609, x607, x579, x576); fiat_np521_addcarryx_u64(&x610, &x611, 0x0, x556, x592); fiat_np521_addcarryx_u64(&x612, &x613, x611, x558, x594); fiat_np521_addcarryx_u64(&x614, &x615, x613, x560, x596); fiat_np521_addcarryx_u64(&x616, &x617, x615, x562, x598); fiat_np521_addcarryx_u64(&x618, &x619, x617, x564, x600); fiat_np521_addcarryx_u64(&x620, &x621, x619, x566, x602); fiat_np521_addcarryx_u64(&x622, &x623, x621, x568, x604); fiat_np521_addcarryx_u64(&x624, &x625, x623, x570, x606); fiat_np521_addcarryx_u64(&x626, &x627, x625, x572, x608); fiat_np521_mulx_u64(&x628, &x629, x6, UINT8_C(0x3d)); fiat_np521_mulx_u64(&x630, &x631, x6, UINT64_C(0x2d8e03d1492d0d45)); fiat_np521_mulx_u64(&x632, &x633, x6, UINT64_C(0x5bcc6d61a8e567bc)); fiat_np521_mulx_u64(&x634, &x635, x6, UINT64_C(0xcff3d142b7756e3e)); fiat_np521_mulx_u64(&x636, &x637, x6, UINT64_C(0xdd6e23d82e49c7db)); fiat_np521_mulx_u64(&x638, &x639, x6, UINT64_C(0xd3721ef557f75e06)); fiat_np521_mulx_u64(&x640, &x641, x6, UINT64_C(0x12a78d38794573ff)); fiat_np521_mulx_u64(&x642, &x643, x6, UINT64_C(0xf707badce5547ea3)); fiat_np521_mulx_u64(&x644, &x645, x6, UINT64_C(0x137cd04dcf15dd04)); fiat_np521_addcarryx_u64(&x646, &x647, 0x0, x645, x642); fiat_np521_addcarryx_u64(&x648, &x649, x647, x643, x640); fiat_np521_addcarryx_u64(&x650, &x651, x649, x641, x638); fiat_np521_addcarryx_u64(&x652, &x653, x651, x639, x636); fiat_np521_addcarryx_u64(&x654, &x655, x653, x637, x634); fiat_np521_addcarryx_u64(&x656, &x657, x655, x635, x632); fiat_np521_addcarryx_u64(&x658, &x659, x657, x633, x630); fiat_np521_addcarryx_u64(&x660, &x661, x659, x631, x628); fiat_np521_addcarryx_u64(&x662, &x663, 0x0, x612, x644); fiat_np521_addcarryx_u64(&x664, &x665, x663, x614, x646); fiat_np521_addcarryx_u64(&x666, &x667, x665, x616, x648); fiat_np521_addcarryx_u64(&x668, &x669, x667, x618, x650); fiat_np521_addcarryx_u64(&x670, &x671, x669, x620, x652); fiat_np521_addcarryx_u64(&x672, &x673, x671, x622, x654); fiat_np521_addcarryx_u64(&x674, &x675, x673, x624, x656); fiat_np521_addcarryx_u64(&x676, &x677, x675, x626, x658); fiat_np521_addcarryx_u64(&x678, &x679, x677, ((x627 + (x573 + (x555 + x523))) + (x609 + x577)), x660); fiat_np521_mulx_u64(&x680, &x681, x662, UINT64_C(0x1d2f5ccd79a995c7)); fiat_np521_mulx_u64(&x682, &x683, x680, UINT16_C(0x1ff)); fiat_np521_mulx_u64(&x684, &x685, x680, UINT64_C(0xffffffffffffffff)); fiat_np521_mulx_u64(&x686, &x687, x680, UINT64_C(0xffffffffffffffff)); fiat_np521_mulx_u64(&x688, &x689, x680, UINT64_C(0xffffffffffffffff)); fiat_np521_mulx_u64(&x690, &x691, x680, UINT64_C(0xfffffffffffffffa)); fiat_np521_mulx_u64(&x692, &x693, x680, UINT64_C(0x51868783bf2f966b)); fiat_np521_mulx_u64(&x694, &x695, x680, UINT64_C(0x7fcc0148f709a5d0)); fiat_np521_mulx_u64(&x696, &x697, x680, UINT64_C(0x3bb5c9b8899c47ae)); fiat_np521_mulx_u64(&x698, &x699, x680, UINT64_C(0xbb6fb71e91386409)); fiat_np521_addcarryx_u64(&x700, &x701, 0x0, x699, x696); fiat_np521_addcarryx_u64(&x702, &x703, x701, x697, x694); fiat_np521_addcarryx_u64(&x704, &x705, x703, x695, x692); fiat_np521_addcarryx_u64(&x706, &x707, x705, x693, x690); fiat_np521_addcarryx_u64(&x708, &x709, x707, x691, x688); fiat_np521_addcarryx_u64(&x710, &x711, x709, x689, x686); fiat_np521_addcarryx_u64(&x712, &x713, x711, x687, x684); fiat_np521_addcarryx_u64(&x714, &x715, x713, x685, x682); fiat_np521_addcarryx_u64(&x716, &x717, 0x0, x662, x698); fiat_np521_addcarryx_u64(&x718, &x719, x717, x664, x700); fiat_np521_addcarryx_u64(&x720, &x721, x719, x666, x702); fiat_np521_addcarryx_u64(&x722, &x723, x721, x668, x704); fiat_np521_addcarryx_u64(&x724, &x725, x723, x670, x706); fiat_np521_addcarryx_u64(&x726, &x727, x725, x672, x708); fiat_np521_addcarryx_u64(&x728, &x729, x727, x674, x710); fiat_np521_addcarryx_u64(&x730, &x731, x729, x676, x712); fiat_np521_addcarryx_u64(&x732, &x733, x731, x678, x714); fiat_np521_mulx_u64(&x734, &x735, x7, UINT8_C(0x3d)); fiat_np521_mulx_u64(&x736, &x737, x7, UINT64_C(0x2d8e03d1492d0d45)); fiat_np521_mulx_u64(&x738, &x739, x7, UINT64_C(0x5bcc6d61a8e567bc)); fiat_np521_mulx_u64(&x740, &x741, x7, UINT64_C(0xcff3d142b7756e3e)); fiat_np521_mulx_u64(&x742, &x743, x7, UINT64_C(0xdd6e23d82e49c7db)); fiat_np521_mulx_u64(&x744, &x745, x7, UINT64_C(0xd3721ef557f75e06)); fiat_np521_mulx_u64(&x746, &x747, x7, UINT64_C(0x12a78d38794573ff)); fiat_np521_mulx_u64(&x748, &x749, x7, UINT64_C(0xf707badce5547ea3)); fiat_np521_mulx_u64(&x750, &x751, x7, UINT64_C(0x137cd04dcf15dd04)); fiat_np521_addcarryx_u64(&x752, &x753, 0x0, x751, x748); fiat_np521_addcarryx_u64(&x754, &x755, x753, x749, x746); fiat_np521_addcarryx_u64(&x756, &x757, x755, x747, x744); fiat_np521_addcarryx_u64(&x758, &x759, x757, x745, x742); fiat_np521_addcarryx_u64(&x760, &x761, x759, x743, x740); fiat_np521_addcarryx_u64(&x762, &x763, x761, x741, x738); fiat_np521_addcarryx_u64(&x764, &x765, x763, x739, x736); fiat_np521_addcarryx_u64(&x766, &x767, x765, x737, x734); fiat_np521_addcarryx_u64(&x768, &x769, 0x0, x718, x750); fiat_np521_addcarryx_u64(&x770, &x771, x769, x720, x752); fiat_np521_addcarryx_u64(&x772, &x773, x771, x722, x754); fiat_np521_addcarryx_u64(&x774, &x775, x773, x724, x756); fiat_np521_addcarryx_u64(&x776, &x777, x775, x726, x758); fiat_np521_addcarryx_u64(&x778, &x779, x777, x728, x760); fiat_np521_addcarryx_u64(&x780, &x781, x779, x730, x762); fiat_np521_addcarryx_u64(&x782, &x783, x781, x732, x764); fiat_np521_addcarryx_u64(&x784, &x785, x783, ((x733 + (x679 + (x661 + x629))) + (x715 + x683)), x766); fiat_np521_mulx_u64(&x786, &x787, x768, UINT64_C(0x1d2f5ccd79a995c7)); fiat_np521_mulx_u64(&x788, &x789, x786, UINT16_C(0x1ff)); fiat_np521_mulx_u64(&x790, &x791, x786, UINT64_C(0xffffffffffffffff)); fiat_np521_mulx_u64(&x792, &x793, x786, UINT64_C(0xffffffffffffffff)); fiat_np521_mulx_u64(&x794, &x795, x786, UINT64_C(0xffffffffffffffff)); fiat_np521_mulx_u64(&x796, &x797, x786, UINT64_C(0xfffffffffffffffa)); fiat_np521_mulx_u64(&x798, &x799, x786, UINT64_C(0x51868783bf2f966b)); fiat_np521_mulx_u64(&x800, &x801, x786, UINT64_C(0x7fcc0148f709a5d0)); fiat_np521_mulx_u64(&x802, &x803, x786, UINT64_C(0x3bb5c9b8899c47ae)); fiat_np521_mulx_u64(&x804, &x805, x786, UINT64_C(0xbb6fb71e91386409)); fiat_np521_addcarryx_u64(&x806, &x807, 0x0, x805, x802); fiat_np521_addcarryx_u64(&x808, &x809, x807, x803, x800); fiat_np521_addcarryx_u64(&x810, &x811, x809, x801, x798); fiat_np521_addcarryx_u64(&x812, &x813, x811, x799, x796); fiat_np521_addcarryx_u64(&x814, &x815, x813, x797, x794); fiat_np521_addcarryx_u64(&x816, &x817, x815, x795, x792); fiat_np521_addcarryx_u64(&x818, &x819, x817, x793, x790); fiat_np521_addcarryx_u64(&x820, &x821, x819, x791, x788); fiat_np521_addcarryx_u64(&x822, &x823, 0x0, x768, x804); fiat_np521_addcarryx_u64(&x824, &x825, x823, x770, x806); fiat_np521_addcarryx_u64(&x826, &x827, x825, x772, x808); fiat_np521_addcarryx_u64(&x828, &x829, x827, x774, x810); fiat_np521_addcarryx_u64(&x830, &x831, x829, x776, x812); fiat_np521_addcarryx_u64(&x832, &x833, x831, x778, x814); fiat_np521_addcarryx_u64(&x834, &x835, x833, x780, x816); fiat_np521_addcarryx_u64(&x836, &x837, x835, x782, x818); fiat_np521_addcarryx_u64(&x838, &x839, x837, x784, x820); fiat_np521_mulx_u64(&x840, &x841, x8, UINT8_C(0x3d)); fiat_np521_mulx_u64(&x842, &x843, x8, UINT64_C(0x2d8e03d1492d0d45)); fiat_np521_mulx_u64(&x844, &x845, x8, UINT64_C(0x5bcc6d61a8e567bc)); fiat_np521_mulx_u64(&x846, &x847, x8, UINT64_C(0xcff3d142b7756e3e)); fiat_np521_mulx_u64(&x848, &x849, x8, UINT64_C(0xdd6e23d82e49c7db)); fiat_np521_mulx_u64(&x850, &x851, x8, UINT64_C(0xd3721ef557f75e06)); fiat_np521_mulx_u64(&x852, &x853, x8, UINT64_C(0x12a78d38794573ff)); fiat_np521_mulx_u64(&x854, &x855, x8, UINT64_C(0xf707badce5547ea3)); fiat_np521_mulx_u64(&x856, &x857, x8, UINT64_C(0x137cd04dcf15dd04)); fiat_np521_addcarryx_u64(&x858, &x859, 0x0, x857, x854); fiat_np521_addcarryx_u64(&x860, &x861, x859, x855, x852); fiat_np521_addcarryx_u64(&x862, &x863, x861, x853, x850); fiat_np521_addcarryx_u64(&x864, &x865, x863, x851, x848); fiat_np521_addcarryx_u64(&x866, &x867, x865, x849, x846); fiat_np521_addcarryx_u64(&x868, &x869, x867, x847, x844); fiat_np521_addcarryx_u64(&x870, &x871, x869, x845, x842); fiat_np521_addcarryx_u64(&x872, &x873, x871, x843, x840); fiat_np521_addcarryx_u64(&x874, &x875, 0x0, x824, x856); fiat_np521_addcarryx_u64(&x876, &x877, x875, x826, x858); fiat_np521_addcarryx_u64(&x878, &x879, x877, x828, x860); fiat_np521_addcarryx_u64(&x880, &x881, x879, x830, x862); fiat_np521_addcarryx_u64(&x882, &x883, x881, x832, x864); fiat_np521_addcarryx_u64(&x884, &x885, x883, x834, x866); fiat_np521_addcarryx_u64(&x886, &x887, x885, x836, x868); fiat_np521_addcarryx_u64(&x888, &x889, x887, x838, x870); fiat_np521_addcarryx_u64(&x890, &x891, x889, ((x839 + (x785 + (x767 + x735))) + (x821 + x789)), x872); fiat_np521_mulx_u64(&x892, &x893, x874, UINT64_C(0x1d2f5ccd79a995c7)); fiat_np521_mulx_u64(&x894, &x895, x892, UINT16_C(0x1ff)); fiat_np521_mulx_u64(&x896, &x897, x892, UINT64_C(0xffffffffffffffff)); fiat_np521_mulx_u64(&x898, &x899, x892, UINT64_C(0xffffffffffffffff)); fiat_np521_mulx_u64(&x900, &x901, x892, UINT64_C(0xffffffffffffffff)); fiat_np521_mulx_u64(&x902, &x903, x892, UINT64_C(0xfffffffffffffffa)); fiat_np521_mulx_u64(&x904, &x905, x892, UINT64_C(0x51868783bf2f966b)); fiat_np521_mulx_u64(&x906, &x907, x892, UINT64_C(0x7fcc0148f709a5d0)); fiat_np521_mulx_u64(&x908, &x909, x892, UINT64_C(0x3bb5c9b8899c47ae)); fiat_np521_mulx_u64(&x910, &x911, x892, UINT64_C(0xbb6fb71e91386409)); fiat_np521_addcarryx_u64(&x912, &x913, 0x0, x911, x908); fiat_np521_addcarryx_u64(&x914, &x915, x913, x909, x906); fiat_np521_addcarryx_u64(&x916, &x917, x915, x907, x904); fiat_np521_addcarryx_u64(&x918, &x919, x917, x905, x902); fiat_np521_addcarryx_u64(&x920, &x921, x919, x903, x900); fiat_np521_addcarryx_u64(&x922, &x923, x921, x901, x898); fiat_np521_addcarryx_u64(&x924, &x925, x923, x899, x896); fiat_np521_addcarryx_u64(&x926, &x927, x925, x897, x894); fiat_np521_addcarryx_u64(&x928, &x929, 0x0, x874, x910); fiat_np521_addcarryx_u64(&x930, &x931, x929, x876, x912); fiat_np521_addcarryx_u64(&x932, &x933, x931, x878, x914); fiat_np521_addcarryx_u64(&x934, &x935, x933, x880, x916); fiat_np521_addcarryx_u64(&x936, &x937, x935, x882, x918); fiat_np521_addcarryx_u64(&x938, &x939, x937, x884, x920); fiat_np521_addcarryx_u64(&x940, &x941, x939, x886, x922); fiat_np521_addcarryx_u64(&x942, &x943, x941, x888, x924); fiat_np521_addcarryx_u64(&x944, &x945, x943, x890, x926); x946 = ((x945 + (x891 + (x873 + x841))) + (x927 + x895)); fiat_np521_subborrowx_u64(&x947, &x948, 0x0, x930, UINT64_C(0xbb6fb71e91386409)); fiat_np521_subborrowx_u64(&x949, &x950, x948, x932, UINT64_C(0x3bb5c9b8899c47ae)); fiat_np521_subborrowx_u64(&x951, &x952, x950, x934, UINT64_C(0x7fcc0148f709a5d0)); fiat_np521_subborrowx_u64(&x953, &x954, x952, x936, UINT64_C(0x51868783bf2f966b)); fiat_np521_subborrowx_u64(&x955, &x956, x954, x938, UINT64_C(0xfffffffffffffffa)); fiat_np521_subborrowx_u64(&x957, &x958, x956, x940, UINT64_C(0xffffffffffffffff)); fiat_np521_subborrowx_u64(&x959, &x960, x958, x942, UINT64_C(0xffffffffffffffff)); fiat_np521_subborrowx_u64(&x961, &x962, x960, x944, UINT64_C(0xffffffffffffffff)); fiat_np521_subborrowx_u64(&x963, &x964, x962, x946, UINT16_C(0x1ff)); fiat_np521_subborrowx_u64(&x965, &x966, x964, 0x0, 0x0); fiat_np521_cmovznz_u64(&x967, x966, x947, x930); fiat_np521_cmovznz_u64(&x968, x966, x949, x932); fiat_np521_cmovznz_u64(&x969, x966, x951, x934); fiat_np521_cmovznz_u64(&x970, x966, x953, x936); fiat_np521_cmovznz_u64(&x971, x966, x955, x938); fiat_np521_cmovznz_u64(&x972, x966, x957, x940); fiat_np521_cmovznz_u64(&x973, x966, x959, x942); fiat_np521_cmovznz_u64(&x974, x966, x961, x944); fiat_np521_cmovznz_u64(&x975, x966, x963, x946); out1[0] = x967; out1[1] = x968; out1[2] = x969; out1[3] = x970; out1[4] = x971; out1[5] = x972; out1[6] = x973; out1[7] = x974; out1[8] = x975; } /* * The function fiat_np521_set_one returns the field element one in the Montgomery domain. * * Postconditions: * eval (from_montgomery out1) mod m = 1 mod m * 0 ≤ eval out1 < m * */ static void fiat_np521_set_one(fiat_np521_montgomery_domain_field_element out1) { out1[0] = UINT64_C(0xfb80000000000000); out1[1] = UINT64_C(0x28a2482470b763cd); out1[2] = UINT64_C(0x17e2251b23bb31dc); out1[3] = UINT64_C(0xca4019ff5b847b2d); out1[4] = UINT64_C(0x2d73cbc3e206834); out1[5] = 0x0; out1[6] = 0x0; out1[7] = 0x0; out1[8] = 0x0; } /* * The function fiat_np521_msat returns the saturated representation of the prime modulus. * * Postconditions: * twos_complement_eval out1 = m * 0 ≤ eval out1 < m * * Output Bounds: * out1: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]] */ static void fiat_np521_msat(uint64_t out1[10]) { out1[0] = UINT64_C(0xbb6fb71e91386409); out1[1] = UINT64_C(0x3bb5c9b8899c47ae); out1[2] = UINT64_C(0x7fcc0148f709a5d0); out1[3] = UINT64_C(0x51868783bf2f966b); out1[4] = UINT64_C(0xfffffffffffffffa); out1[5] = UINT64_C(0xffffffffffffffff); out1[6] = UINT64_C(0xffffffffffffffff); out1[7] = UINT64_C(0xffffffffffffffff); out1[8] = UINT16_C(0x1ff); out1[9] = 0x0; } /* * The function fiat_np521_divstep_precomp returns the precomputed value for Bernstein-Yang-inversion (in montgomery form). * * Postconditions: * eval (from_montgomery out1) = ⌊(m - 1) / 2⌋^(if ⌊log2 m⌋ + 1 < 46 then ⌊(49 * (⌊log2 m⌋ + 1) + 80) / 17⌋ else ⌊(49 * (⌊log2 m⌋ + 1) + 57) / 17⌋) * 0 ≤ eval out1 < m * * Output Bounds: * out1: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]] */ static void fiat_np521_divstep_precomp(uint64_t out1[9]) { out1[0] = UINT64_C(0x7b27a0cb33d1884b); out1[1] = UINT64_C(0x9ef6cb011f2467d8); out1[2] = UINT64_C(0x5fbc88e1d6e7fce); out1[3] = UINT64_C(0xb08222d0fe97e1dc); out1[4] = UINT64_C(0x1624870c44df3fce); out1[5] = UINT64_C(0xb7f07b8eedbce602); out1[6] = UINT64_C(0x62da93cf721f63bc); out1[7] = UINT64_C(0xafd209c16c4f0d20); out1[8] = UINT16_C(0x1c7); } /* * The function fiat_np521_divstep computes a divstep. * * Preconditions: * 0 ≤ eval arg4 < m * 0 ≤ eval arg5 < m * Postconditions: * out1 = (if 0 < arg1 ∧ (twos_complement_eval arg3) is odd then 1 - arg1 else 1 + arg1) * twos_complement_eval out2 = (if 0 < arg1 ∧ (twos_complement_eval arg3) is odd then twos_complement_eval arg3 else twos_complement_eval arg2) * twos_complement_eval out3 = (if 0 < arg1 ∧ (twos_complement_eval arg3) is odd then ⌊(twos_complement_eval arg3 - twos_complement_eval arg2) / 2⌋ else ⌊(twos_complement_eval arg3 + (twos_complement_eval arg3 mod 2) * twos_complement_eval arg2) / 2⌋) * eval (from_montgomery out4) mod m = (if 0 < arg1 ∧ (twos_complement_eval arg3) is odd then (2 * eval (from_montgomery arg5)) mod m else (2 * eval (from_montgomery arg4)) mod m) * eval (from_montgomery out5) mod m = (if 0 < arg1 ∧ (twos_complement_eval arg3) is odd then (eval (from_montgomery arg4) - eval (from_montgomery arg4)) mod m else (eval (from_montgomery arg5) + (twos_complement_eval arg3 mod 2) * eval (from_montgomery arg4)) mod m) * 0 ≤ eval out5 < m * 0 ≤ eval out5 < m * 0 ≤ eval out2 < m * 0 ≤ eval out3 < m * * Input Bounds: * arg1: [0x0 ~> 0xffffffffffffffff] * arg2: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]] * arg3: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]] * arg4: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]] * arg5: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]] * Output Bounds: * out1: [0x0 ~> 0xffffffffffffffff] * out2: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]] * out3: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]] * out4: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]] * out5: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]] */ static void fiat_np521_divstep(uint64_t* out1, uint64_t out2[10], uint64_t out3[10], uint64_t out4[9], uint64_t out5[9], uint64_t arg1, const uint64_t arg2[10], const uint64_t arg3[10], const uint64_t arg4[9], const uint64_t arg5[9]) { uint64_t x1; fiat_np521_uint1 x2; fiat_np521_uint1 x3; uint64_t x4; fiat_np521_uint1 x5; uint64_t x6; uint64_t x7; uint64_t x8; uint64_t x9; uint64_t x10; uint64_t x11; uint64_t x12; uint64_t x13; uint64_t x14; uint64_t x15; uint64_t x16; uint64_t x17; fiat_np521_uint1 x18; uint64_t x19; fiat_np521_uint1 x20; uint64_t x21; fiat_np521_uint1 x22; uint64_t x23; fiat_np521_uint1 x24; uint64_t x25; fiat_np521_uint1 x26; uint64_t x27; fiat_np521_uint1 x28; uint64_t x29; fiat_np521_uint1 x30; uint64_t x31; fiat_np521_uint1 x32; uint64_t x33; fiat_np521_uint1 x34; uint64_t x35; fiat_np521_uint1 x36; uint64_t x37; uint64_t x38; uint64_t x39; uint64_t x40; uint64_t x41; uint64_t x42; uint64_t x43; uint64_t x44; uint64_t x45; uint64_t x46; uint64_t x47; uint64_t x48; uint64_t x49; uint64_t x50; uint64_t x51; uint64_t x52; uint64_t x53; uint64_t x54; uint64_t x55; uint64_t x56; fiat_np521_uint1 x57; uint64_t x58; fiat_np521_uint1 x59; uint64_t x60; fiat_np521_uint1 x61; uint64_t x62; fiat_np521_uint1 x63; uint64_t x64; fiat_np521_uint1 x65; uint64_t x66; fiat_np521_uint1 x67; uint64_t x68; fiat_np521_uint1 x69; uint64_t x70; fiat_np521_uint1 x71; uint64_t x72; fiat_np521_uint1 x73; uint64_t x74; fiat_np521_uint1 x75; uint64_t x76; fiat_np521_uint1 x77; uint64_t x78; fiat_np521_uint1 x79; uint64_t x80; fiat_np521_uint1 x81; uint64_t x82; fiat_np521_uint1 x83; uint64_t x84; fiat_np521_uint1 x85; uint64_t x86; fiat_np521_uint1 x87; uint64_t x88; fiat_np521_uint1 x89; uint64_t x90; fiat_np521_uint1 x91; uint64_t x92; fiat_np521_uint1 x93; uint64_t x94; uint64_t x95; uint64_t x96; uint64_t x97; uint64_t x98; uint64_t x99; uint64_t x100; uint64_t x101; uint64_t x102; uint64_t x103; fiat_np521_uint1 x104; uint64_t x105; fiat_np521_uint1 x106; uint64_t x107; fiat_np521_uint1 x108; uint64_t x109; fiat_np521_uint1 x110; uint64_t x111; fiat_np521_uint1 x112; uint64_t x113; fiat_np521_uint1 x114; uint64_t x115; fiat_np521_uint1 x116; uint64_t x117; fiat_np521_uint1 x118; uint64_t x119; fiat_np521_uint1 x120; uint64_t x121; uint64_t x122; fiat_np521_uint1 x123; uint64_t x124; fiat_np521_uint1 x125; uint64_t x126; fiat_np521_uint1 x127; uint64_t x128; fiat_np521_uint1 x129; uint64_t x130; fiat_np521_uint1 x131; uint64_t x132; fiat_np521_uint1 x133; uint64_t x134; fiat_np521_uint1 x135; uint64_t x136; fiat_np521_uint1 x137; uint64_t x138; fiat_np521_uint1 x139; uint64_t x140; uint64_t x141; uint64_t x142; uint64_t x143; uint64_t x144; uint64_t x145; uint64_t x146; uint64_t x147; uint64_t x148; fiat_np521_uint1 x149; uint64_t x150; uint64_t x151; uint64_t x152; uint64_t x153; uint64_t x154; uint64_t x155; uint64_t x156; uint64_t x157; uint64_t x158; uint64_t x159; uint64_t x160; fiat_np521_uint1 x161; uint64_t x162; fiat_np521_uint1 x163; uint64_t x164; fiat_np521_uint1 x165; uint64_t x166; fiat_np521_uint1 x167; uint64_t x168; fiat_np521_uint1 x169; uint64_t x170; fiat_np521_uint1 x171; uint64_t x172; fiat_np521_uint1 x173; uint64_t x174; fiat_np521_uint1 x175; uint64_t x176; fiat_np521_uint1 x177; uint64_t x178; fiat_np521_uint1 x179; uint64_t x180; uint64_t x181; uint64_t x182; uint64_t x183; uint64_t x184; uint64_t x185; uint64_t x186; uint64_t x187; uint64_t x188; uint64_t x189; fiat_np521_uint1 x190; uint64_t x191; fiat_np521_uint1 x192; uint64_t x193; fiat_np521_uint1 x194; uint64_t x195; fiat_np521_uint1 x196; uint64_t x197; fiat_np521_uint1 x198; uint64_t x199; fiat_np521_uint1 x200; uint64_t x201; fiat_np521_uint1 x202; uint64_t x203; fiat_np521_uint1 x204; uint64_t x205; fiat_np521_uint1 x206; uint64_t x207; fiat_np521_uint1 x208; uint64_t x209; fiat_np521_uint1 x210; uint64_t x211; fiat_np521_uint1 x212; uint64_t x213; fiat_np521_uint1 x214; uint64_t x215; fiat_np521_uint1 x216; uint64_t x217; fiat_np521_uint1 x218; uint64_t x219; fiat_np521_uint1 x220; uint64_t x221; fiat_np521_uint1 x222; uint64_t x223; fiat_np521_uint1 x224; uint64_t x225; fiat_np521_uint1 x226; uint64_t x227; fiat_np521_uint1 x228; uint64_t x229; uint64_t x230; uint64_t x231; uint64_t x232; uint64_t x233; uint64_t x234; uint64_t x235; uint64_t x236; uint64_t x237; uint64_t x238; uint64_t x239; uint64_t x240; uint64_t x241; uint64_t x242; uint64_t x243; uint64_t x244; uint64_t x245; uint64_t x246; uint64_t x247; uint64_t x248; uint64_t x249; uint64_t x250; uint64_t x251; uint64_t x252; uint64_t x253; uint64_t x254; uint64_t x255; uint64_t x256; fiat_np521_addcarryx_u64(&x1, &x2, 0x0, (~arg1), 0x1); x3 = (fiat_np521_uint1)((fiat_np521_uint1)(x1 >> 63) & (fiat_np521_uint1)((arg3[0]) & 0x1)); fiat_np521_addcarryx_u64(&x4, &x5, 0x0, (~arg1), 0x1); fiat_np521_cmovznz_u64(&x6, x3, arg1, x4); fiat_np521_cmovznz_u64(&x7, x3, (arg2[0]), (arg3[0])); fiat_np521_cmovznz_u64(&x8, x3, (arg2[1]), (arg3[1])); fiat_np521_cmovznz_u64(&x9, x3, (arg2[2]), (arg3[2])); fiat_np521_cmovznz_u64(&x10, x3, (arg2[3]), (arg3[3])); fiat_np521_cmovznz_u64(&x11, x3, (arg2[4]), (arg3[4])); fiat_np521_cmovznz_u64(&x12, x3, (arg2[5]), (arg3[5])); fiat_np521_cmovznz_u64(&x13, x3, (arg2[6]), (arg3[6])); fiat_np521_cmovznz_u64(&x14, x3, (arg2[7]), (arg3[7])); fiat_np521_cmovznz_u64(&x15, x3, (arg2[8]), (arg3[8])); fiat_np521_cmovznz_u64(&x16, x3, (arg2[9]), (arg3[9])); fiat_np521_addcarryx_u64(&x17, &x18, 0x0, 0x1, (~(arg2[0]))); fiat_np521_addcarryx_u64(&x19, &x20, x18, 0x0, (~(arg2[1]))); fiat_np521_addcarryx_u64(&x21, &x22, x20, 0x0, (~(arg2[2]))); fiat_np521_addcarryx_u64(&x23, &x24, x22, 0x0, (~(arg2[3]))); fiat_np521_addcarryx_u64(&x25, &x26, x24, 0x0, (~(arg2[4]))); fiat_np521_addcarryx_u64(&x27, &x28, x26, 0x0, (~(arg2[5]))); fiat_np521_addcarryx_u64(&x29, &x30, x28, 0x0, (~(arg2[6]))); fiat_np521_addcarryx_u64(&x31, &x32, x30, 0x0, (~(arg2[7]))); fiat_np521_addcarryx_u64(&x33, &x34, x32, 0x0, (~(arg2[8]))); fiat_np521_addcarryx_u64(&x35, &x36, x34, 0x0, (~(arg2[9]))); fiat_np521_cmovznz_u64(&x37, x3, (arg3[0]), x17); fiat_np521_cmovznz_u64(&x38, x3, (arg3[1]), x19); fiat_np521_cmovznz_u64(&x39, x3, (arg3[2]), x21); fiat_np521_cmovznz_u64(&x40, x3, (arg3[3]), x23); fiat_np521_cmovznz_u64(&x41, x3, (arg3[4]), x25); fiat_np521_cmovznz_u64(&x42, x3, (arg3[5]), x27); fiat_np521_cmovznz_u64(&x43, x3, (arg3[6]), x29); fiat_np521_cmovznz_u64(&x44, x3, (arg3[7]), x31); fiat_np521_cmovznz_u64(&x45, x3, (arg3[8]), x33); fiat_np521_cmovznz_u64(&x46, x3, (arg3[9]), x35); fiat_np521_cmovznz_u64(&x47, x3, (arg4[0]), (arg5[0])); fiat_np521_cmovznz_u64(&x48, x3, (arg4[1]), (arg5[1])); fiat_np521_cmovznz_u64(&x49, x3, (arg4[2]), (arg5[2])); fiat_np521_cmovznz_u64(&x50, x3, (arg4[3]), (arg5[3])); fiat_np521_cmovznz_u64(&x51, x3, (arg4[4]), (arg5[4])); fiat_np521_cmovznz_u64(&x52, x3, (arg4[5]), (arg5[5])); fiat_np521_cmovznz_u64(&x53, x3, (arg4[6]), (arg5[6])); fiat_np521_cmovznz_u64(&x54, x3, (arg4[7]), (arg5[7])); fiat_np521_cmovznz_u64(&x55, x3, (arg4[8]), (arg5[8])); fiat_np521_addcarryx_u64(&x56, &x57, 0x0, x47, x47); fiat_np521_addcarryx_u64(&x58, &x59, x57, x48, x48); fiat_np521_addcarryx_u64(&x60, &x61, x59, x49, x49); fiat_np521_addcarryx_u64(&x62, &x63, x61, x50, x50); fiat_np521_addcarryx_u64(&x64, &x65, x63, x51, x51); fiat_np521_addcarryx_u64(&x66, &x67, x65, x52, x52); fiat_np521_addcarryx_u64(&x68, &x69, x67, x53, x53); fiat_np521_addcarryx_u64(&x70, &x71, x69, x54, x54); fiat_np521_addcarryx_u64(&x72, &x73, x71, x55, x55); fiat_np521_subborrowx_u64(&x74, &x75, 0x0, x56, UINT64_C(0xbb6fb71e91386409)); fiat_np521_subborrowx_u64(&x76, &x77, x75, x58, UINT64_C(0x3bb5c9b8899c47ae)); fiat_np521_subborrowx_u64(&x78, &x79, x77, x60, UINT64_C(0x7fcc0148f709a5d0)); fiat_np521_subborrowx_u64(&x80, &x81, x79, x62, UINT64_C(0x51868783bf2f966b)); fiat_np521_subborrowx_u64(&x82, &x83, x81, x64, UINT64_C(0xfffffffffffffffa)); fiat_np521_subborrowx_u64(&x84, &x85, x83, x66, UINT64_C(0xffffffffffffffff)); fiat_np521_subborrowx_u64(&x86, &x87, x85, x68, UINT64_C(0xffffffffffffffff)); fiat_np521_subborrowx_u64(&x88, &x89, x87, x70, UINT64_C(0xffffffffffffffff)); fiat_np521_subborrowx_u64(&x90, &x91, x89, x72, UINT16_C(0x1ff)); fiat_np521_subborrowx_u64(&x92, &x93, x91, x73, 0x0); x94 = (arg4[8]); x95 = (arg4[7]); x96 = (arg4[6]); x97 = (arg4[5]); x98 = (arg4[4]); x99 = (arg4[3]); x100 = (arg4[2]); x101 = (arg4[1]); x102 = (arg4[0]); fiat_np521_subborrowx_u64(&x103, &x104, 0x0, 0x0, x102); fiat_np521_subborrowx_u64(&x105, &x106, x104, 0x0, x101); fiat_np521_subborrowx_u64(&x107, &x108, x106, 0x0, x100); fiat_np521_subborrowx_u64(&x109, &x110, x108, 0x0, x99); fiat_np521_subborrowx_u64(&x111, &x112, x110, 0x0, x98); fiat_np521_subborrowx_u64(&x113, &x114, x112, 0x0, x97); fiat_np521_subborrowx_u64(&x115, &x116, x114, 0x0, x96); fiat_np521_subborrowx_u64(&x117, &x118, x116, 0x0, x95); fiat_np521_subborrowx_u64(&x119, &x120, x118, 0x0, x94); fiat_np521_cmovznz_u64(&x121, x120, 0x0, UINT64_C(0xffffffffffffffff)); fiat_np521_addcarryx_u64(&x122, &x123, 0x0, x103, (x121 & UINT64_C(0xbb6fb71e91386409))); fiat_np521_addcarryx_u64(&x124, &x125, x123, x105, (x121 & UINT64_C(0x3bb5c9b8899c47ae))); fiat_np521_addcarryx_u64(&x126, &x127, x125, x107, (x121 & UINT64_C(0x7fcc0148f709a5d0))); fiat_np521_addcarryx_u64(&x128, &x129, x127, x109, (x121 & UINT64_C(0x51868783bf2f966b))); fiat_np521_addcarryx_u64(&x130, &x131, x129, x111, (x121 & UINT64_C(0xfffffffffffffffa))); fiat_np521_addcarryx_u64(&x132, &x133, x131, x113, x121); fiat_np521_addcarryx_u64(&x134, &x135, x133, x115, x121); fiat_np521_addcarryx_u64(&x136, &x137, x135, x117, x121); fiat_np521_addcarryx_u64(&x138, &x139, x137, x119, (x121 & UINT16_C(0x1ff))); fiat_np521_cmovznz_u64(&x140, x3, (arg5[0]), x122); fiat_np521_cmovznz_u64(&x141, x3, (arg5[1]), x124); fiat_np521_cmovznz_u64(&x142, x3, (arg5[2]), x126); fiat_np521_cmovznz_u64(&x143, x3, (arg5[3]), x128); fiat_np521_cmovznz_u64(&x144, x3, (arg5[4]), x130); fiat_np521_cmovznz_u64(&x145, x3, (arg5[5]), x132); fiat_np521_cmovznz_u64(&x146, x3, (arg5[6]), x134); fiat_np521_cmovznz_u64(&x147, x3, (arg5[7]), x136); fiat_np521_cmovznz_u64(&x148, x3, (arg5[8]), x138); x149 = (fiat_np521_uint1)(x37 & 0x1); fiat_np521_cmovznz_u64(&x150, x149, 0x0, x7); fiat_np521_cmovznz_u64(&x151, x149, 0x0, x8); fiat_np521_cmovznz_u64(&x152, x149, 0x0, x9); fiat_np521_cmovznz_u64(&x153, x149, 0x0, x10); fiat_np521_cmovznz_u64(&x154, x149, 0x0, x11); fiat_np521_cmovznz_u64(&x155, x149, 0x0, x12); fiat_np521_cmovznz_u64(&x156, x149, 0x0, x13); fiat_np521_cmovznz_u64(&x157, x149, 0x0, x14); fiat_np521_cmovznz_u64(&x158, x149, 0x0, x15); fiat_np521_cmovznz_u64(&x159, x149, 0x0, x16); fiat_np521_addcarryx_u64(&x160, &x161, 0x0, x37, x150); fiat_np521_addcarryx_u64(&x162, &x163, x161, x38, x151); fiat_np521_addcarryx_u64(&x164, &x165, x163, x39, x152); fiat_np521_addcarryx_u64(&x166, &x167, x165, x40, x153); fiat_np521_addcarryx_u64(&x168, &x169, x167, x41, x154); fiat_np521_addcarryx_u64(&x170, &x171, x169, x42, x155); fiat_np521_addcarryx_u64(&x172, &x173, x171, x43, x156); fiat_np521_addcarryx_u64(&x174, &x175, x173, x44, x157); fiat_np521_addcarryx_u64(&x176, &x177, x175, x45, x158); fiat_np521_addcarryx_u64(&x178, &x179, x177, x46, x159); fiat_np521_cmovznz_u64(&x180, x149, 0x0, x47); fiat_np521_cmovznz_u64(&x181, x149, 0x0, x48); fiat_np521_cmovznz_u64(&x182, x149, 0x0, x49); fiat_np521_cmovznz_u64(&x183, x149, 0x0, x50); fiat_np521_cmovznz_u64(&x184, x149, 0x0, x51); fiat_np521_cmovznz_u64(&x185, x149, 0x0, x52); fiat_np521_cmovznz_u64(&x186, x149, 0x0, x53); fiat_np521_cmovznz_u64(&x187, x149, 0x0, x54); fiat_np521_cmovznz_u64(&x188, x149, 0x0, x55); fiat_np521_addcarryx_u64(&x189, &x190, 0x0, x140, x180); fiat_np521_addcarryx_u64(&x191, &x192, x190, x141, x181); fiat_np521_addcarryx_u64(&x193, &x194, x192, x142, x182); fiat_np521_addcarryx_u64(&x195, &x196, x194, x143, x183); fiat_np521_addcarryx_u64(&x197, &x198, x196, x144, x184); fiat_np521_addcarryx_u64(&x199, &x200, x198, x145, x185); fiat_np521_addcarryx_u64(&x201, &x202, x200, x146, x186); fiat_np521_addcarryx_u64(&x203, &x204, x202, x147, x187); fiat_np521_addcarryx_u64(&x205, &x206, x204, x148, x188); fiat_np521_subborrowx_u64(&x207, &x208, 0x0, x189, UINT64_C(0xbb6fb71e91386409)); fiat_np521_subborrowx_u64(&x209, &x210, x208, x191, UINT64_C(0x3bb5c9b8899c47ae)); fiat_np521_subborrowx_u64(&x211, &x212, x210, x193, UINT64_C(0x7fcc0148f709a5d0)); fiat_np521_subborrowx_u64(&x213, &x214, x212, x195, UINT64_C(0x51868783bf2f966b)); fiat_np521_subborrowx_u64(&x215, &x216, x214, x197, UINT64_C(0xfffffffffffffffa)); fiat_np521_subborrowx_u64(&x217, &x218, x216, x199, UINT64_C(0xffffffffffffffff)); fiat_np521_subborrowx_u64(&x219, &x220, x218, x201, UINT64_C(0xffffffffffffffff)); fiat_np521_subborrowx_u64(&x221, &x222, x220, x203, UINT64_C(0xffffffffffffffff)); fiat_np521_subborrowx_u64(&x223, &x224, x222, x205, UINT16_C(0x1ff)); fiat_np521_subborrowx_u64(&x225, &x226, x224, x206, 0x0); fiat_np521_addcarryx_u64(&x227, &x228, 0x0, x6, 0x1); x229 = ((x160 >> 1) | ((x162 << 63) & UINT64_C(0xffffffffffffffff))); x230 = ((x162 >> 1) | ((x164 << 63) & UINT64_C(0xffffffffffffffff))); x231 = ((x164 >> 1) | ((x166 << 63) & UINT64_C(0xffffffffffffffff))); x232 = ((x166 >> 1) | ((x168 << 63) & UINT64_C(0xffffffffffffffff))); x233 = ((x168 >> 1) | ((x170 << 63) & UINT64_C(0xffffffffffffffff))); x234 = ((x170 >> 1) | ((x172 << 63) & UINT64_C(0xffffffffffffffff))); x235 = ((x172 >> 1) | ((x174 << 63) & UINT64_C(0xffffffffffffffff))); x236 = ((x174 >> 1) | ((x176 << 63) & UINT64_C(0xffffffffffffffff))); x237 = ((x176 >> 1) | ((x178 << 63) & UINT64_C(0xffffffffffffffff))); x238 = ((x178 & UINT64_C(0x8000000000000000)) | (x178 >> 1)); fiat_np521_cmovznz_u64(&x239, x93, x74, x56); fiat_np521_cmovznz_u64(&x240, x93, x76, x58); fiat_np521_cmovznz_u64(&x241, x93, x78, x60); fiat_np521_cmovznz_u64(&x242, x93, x80, x62); fiat_np521_cmovznz_u64(&x243, x93, x82, x64); fiat_np521_cmovznz_u64(&x244, x93, x84, x66); fiat_np521_cmovznz_u64(&x245, x93, x86, x68); fiat_np521_cmovznz_u64(&x246, x93, x88, x70); fiat_np521_cmovznz_u64(&x247, x93, x90, x72); fiat_np521_cmovznz_u64(&x248, x226, x207, x189); fiat_np521_cmovznz_u64(&x249, x226, x209, x191); fiat_np521_cmovznz_u64(&x250, x226, x211, x193); fiat_np521_cmovznz_u64(&x251, x226, x213, x195); fiat_np521_cmovznz_u64(&x252, x226, x215, x197); fiat_np521_cmovznz_u64(&x253, x226, x217, x199); fiat_np521_cmovznz_u64(&x254, x226, x219, x201); fiat_np521_cmovznz_u64(&x255, x226, x221, x203); fiat_np521_cmovznz_u64(&x256, x226, x223, x205); *out1 = x227; out2[0] = x7; out2[1] = x8; out2[2] = x9; out2[3] = x10; out2[4] = x11; out2[5] = x12; out2[6] = x13; out2[7] = x14; out2[8] = x15; out2[9] = x16; out3[0] = x229; out3[1] = x230; out3[2] = x231; out3[3] = x232; out3[4] = x233; out3[5] = x234; out3[6] = x235; out3[7] = x236; out3[8] = x237; out3[9] = x238; out4[0] = x239; out4[1] = x240; out4[2] = x241; out4[3] = x242; out4[4] = x243; out4[5] = x244; out4[6] = x245; out4[7] = x246; out4[8] = x247; out5[0] = x248; out5[1] = x249; out5[2] = x250; out5[3] = x251; out5[4] = x252; out5[5] = x253; out5[6] = x254; out5[7] = x255; out5[8] = x256; } /* * The function fiat_np521_to_bytes serializes a field element NOT in the Montgomery domain to bytes in little-endian order. * * Preconditions: * 0 ≤ eval arg1 < m * Postconditions: * out1 = map (λ x, ⌊((eval arg1 mod m) mod 2^(8 * (x + 1))) / 2^(8 * x)⌋) [0..65] * * Input Bounds: * arg1: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0x1ff]] * Output Bounds: * out1: [[0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0x1]] */ static void fiat_np521_to_bytes(uint8_t out1[66], const uint64_t arg1[9]) { uint64_t x1; uint64_t x2; uint64_t x3; uint64_t x4; uint64_t x5; uint64_t x6; uint64_t x7; uint64_t x8; uint64_t x9; uint8_t x10; uint64_t x11; uint8_t x12; uint64_t x13; uint8_t x14; uint64_t x15; uint8_t x16; uint64_t x17; uint8_t x18; uint64_t x19; uint8_t x20; uint64_t x21; uint8_t x22; uint8_t x23; uint8_t x24; uint64_t x25; uint8_t x26; uint64_t x27; uint8_t x28; uint64_t x29; uint8_t x30; uint64_t x31; uint8_t x32; uint64_t x33; uint8_t x34; uint64_t x35; uint8_t x36; uint8_t x37; uint8_t x38; uint64_t x39; uint8_t x40; uint64_t x41; uint8_t x42; uint64_t x43; uint8_t x44; uint64_t x45; uint8_t x46; uint64_t x47; uint8_t x48; uint64_t x49; uint8_t x50; uint8_t x51; uint8_t x52; uint64_t x53; uint8_t x54; uint64_t x55; uint8_t x56; uint64_t x57; uint8_t x58; uint64_t x59; uint8_t x60; uint64_t x61; uint8_t x62; uint64_t x63; uint8_t x64; uint8_t x65; uint8_t x66; uint64_t x67; uint8_t x68; uint64_t x69; uint8_t x70; uint64_t x71; uint8_t x72; uint64_t x73; uint8_t x74; uint64_t x75; uint8_t x76; uint64_t x77; uint8_t x78; uint8_t x79; uint8_t x80; uint64_t x81; uint8_t x82; uint64_t x83; uint8_t x84; uint64_t x85; uint8_t x86; uint64_t x87; uint8_t x88; uint64_t x89; uint8_t x90; uint64_t x91; uint8_t x92; uint8_t x93; uint8_t x94; uint64_t x95; uint8_t x96; uint64_t x97; uint8_t x98; uint64_t x99; uint8_t x100; uint64_t x101; uint8_t x102; uint64_t x103; uint8_t x104; uint64_t x105; uint8_t x106; uint8_t x107; uint8_t x108; uint64_t x109; uint8_t x110; uint64_t x111; uint8_t x112; uint64_t x113; uint8_t x114; uint64_t x115; uint8_t x116; uint64_t x117; uint8_t x118; uint64_t x119; uint8_t x120; uint8_t x121; uint8_t x122; fiat_np521_uint1 x123; x1 = (arg1[8]); x2 = (arg1[7]); x3 = (arg1[6]); x4 = (arg1[5]); x5 = (arg1[4]); x6 = (arg1[3]); x7 = (arg1[2]); x8 = (arg1[1]); x9 = (arg1[0]); x10 = (uint8_t)(x9 & UINT8_C(0xff)); x11 = (x9 >> 8); x12 = (uint8_t)(x11 & UINT8_C(0xff)); x13 = (x11 >> 8); x14 = (uint8_t)(x13 & UINT8_C(0xff)); x15 = (x13 >> 8); x16 = (uint8_t)(x15 & UINT8_C(0xff)); x17 = (x15 >> 8); x18 = (uint8_t)(x17 & UINT8_C(0xff)); x19 = (x17 >> 8); x20 = (uint8_t)(x19 & UINT8_C(0xff)); x21 = (x19 >> 8); x22 = (uint8_t)(x21 & UINT8_C(0xff)); x23 = (uint8_t)(x21 >> 8); x24 = (uint8_t)(x8 & UINT8_C(0xff)); x25 = (x8 >> 8); x26 = (uint8_t)(x25 & UINT8_C(0xff)); x27 = (x25 >> 8); x28 = (uint8_t)(x27 & UINT8_C(0xff)); x29 = (x27 >> 8); x30 = (uint8_t)(x29 & UINT8_C(0xff)); x31 = (x29 >> 8); x32 = (uint8_t)(x31 & UINT8_C(0xff)); x33 = (x31 >> 8); x34 = (uint8_t)(x33 & UINT8_C(0xff)); x35 = (x33 >> 8); x36 = (uint8_t)(x35 & UINT8_C(0xff)); x37 = (uint8_t)(x35 >> 8); x38 = (uint8_t)(x7 & UINT8_C(0xff)); x39 = (x7 >> 8); x40 = (uint8_t)(x39 & UINT8_C(0xff)); x41 = (x39 >> 8); x42 = (uint8_t)(x41 & UINT8_C(0xff)); x43 = (x41 >> 8); x44 = (uint8_t)(x43 & UINT8_C(0xff)); x45 = (x43 >> 8); x46 = (uint8_t)(x45 & UINT8_C(0xff)); x47 = (x45 >> 8); x48 = (uint8_t)(x47 & UINT8_C(0xff)); x49 = (x47 >> 8); x50 = (uint8_t)(x49 & UINT8_C(0xff)); x51 = (uint8_t)(x49 >> 8); x52 = (uint8_t)(x6 & UINT8_C(0xff)); x53 = (x6 >> 8); x54 = (uint8_t)(x53 & UINT8_C(0xff)); x55 = (x53 >> 8); x56 = (uint8_t)(x55 & UINT8_C(0xff)); x57 = (x55 >> 8); x58 = (uint8_t)(x57 & UINT8_C(0xff)); x59 = (x57 >> 8); x60 = (uint8_t)(x59 & UINT8_C(0xff)); x61 = (x59 >> 8); x62 = (uint8_t)(x61 & UINT8_C(0xff)); x63 = (x61 >> 8); x64 = (uint8_t)(x63 & UINT8_C(0xff)); x65 = (uint8_t)(x63 >> 8); x66 = (uint8_t)(x5 & UINT8_C(0xff)); x67 = (x5 >> 8); x68 = (uint8_t)(x67 & UINT8_C(0xff)); x69 = (x67 >> 8); x70 = (uint8_t)(x69 & UINT8_C(0xff)); x71 = (x69 >> 8); x72 = (uint8_t)(x71 & UINT8_C(0xff)); x73 = (x71 >> 8); x74 = (uint8_t)(x73 & UINT8_C(0xff)); x75 = (x73 >> 8); x76 = (uint8_t)(x75 & UINT8_C(0xff)); x77 = (x75 >> 8); x78 = (uint8_t)(x77 & UINT8_C(0xff)); x79 = (uint8_t)(x77 >> 8); x80 = (uint8_t)(x4 & UINT8_C(0xff)); x81 = (x4 >> 8); x82 = (uint8_t)(x81 & UINT8_C(0xff)); x83 = (x81 >> 8); x84 = (uint8_t)(x83 & UINT8_C(0xff)); x85 = (x83 >> 8); x86 = (uint8_t)(x85 & UINT8_C(0xff)); x87 = (x85 >> 8); x88 = (uint8_t)(x87 & UINT8_C(0xff)); x89 = (x87 >> 8); x90 = (uint8_t)(x89 & UINT8_C(0xff)); x91 = (x89 >> 8); x92 = (uint8_t)(x91 & UINT8_C(0xff)); x93 = (uint8_t)(x91 >> 8); x94 = (uint8_t)(x3 & UINT8_C(0xff)); x95 = (x3 >> 8); x96 = (uint8_t)(x95 & UINT8_C(0xff)); x97 = (x95 >> 8); x98 = (uint8_t)(x97 & UINT8_C(0xff)); x99 = (x97 >> 8); x100 = (uint8_t)(x99 & UINT8_C(0xff)); x101 = (x99 >> 8); x102 = (uint8_t)(x101 & UINT8_C(0xff)); x103 = (x101 >> 8); x104 = (uint8_t)(x103 & UINT8_C(0xff)); x105 = (x103 >> 8); x106 = (uint8_t)(x105 & UINT8_C(0xff)); x107 = (uint8_t)(x105 >> 8); x108 = (uint8_t)(x2 & UINT8_C(0xff)); x109 = (x2 >> 8); x110 = (uint8_t)(x109 & UINT8_C(0xff)); x111 = (x109 >> 8); x112 = (uint8_t)(x111 & UINT8_C(0xff)); x113 = (x111 >> 8); x114 = (uint8_t)(x113 & UINT8_C(0xff)); x115 = (x113 >> 8); x116 = (uint8_t)(x115 & UINT8_C(0xff)); x117 = (x115 >> 8); x118 = (uint8_t)(x117 & UINT8_C(0xff)); x119 = (x117 >> 8); x120 = (uint8_t)(x119 & UINT8_C(0xff)); x121 = (uint8_t)(x119 >> 8); x122 = (uint8_t)(x1 & UINT8_C(0xff)); x123 = (fiat_np521_uint1)(x1 >> 8); out1[0] = x10; out1[1] = x12; out1[2] = x14; out1[3] = x16; out1[4] = x18; out1[5] = x20; out1[6] = x22; out1[7] = x23; out1[8] = x24; out1[9] = x26; out1[10] = x28; out1[11] = x30; out1[12] = x32; out1[13] = x34; out1[14] = x36; out1[15] = x37; out1[16] = x38; out1[17] = x40; out1[18] = x42; out1[19] = x44; out1[20] = x46; out1[21] = x48; out1[22] = x50; out1[23] = x51; out1[24] = x52; out1[25] = x54; out1[26] = x56; out1[27] = x58; out1[28] = x60; out1[29] = x62; out1[30] = x64; out1[31] = x65; out1[32] = x66; out1[33] = x68; out1[34] = x70; out1[35] = x72; out1[36] = x74; out1[37] = x76; out1[38] = x78; out1[39] = x79; out1[40] = x80; out1[41] = x82; out1[42] = x84; out1[43] = x86; out1[44] = x88; out1[45] = x90; out1[46] = x92; out1[47] = x93; out1[48] = x94; out1[49] = x96; out1[50] = x98; out1[51] = x100; out1[52] = x102; out1[53] = x104; out1[54] = x106; out1[55] = x107; out1[56] = x108; out1[57] = x110; out1[58] = x112; out1[59] = x114; out1[60] = x116; out1[61] = x118; out1[62] = x120; out1[63] = x121; out1[64] = x122; out1[65] = x123; } /* * The function fiat_np521_from_bytes deserializes a field element NOT in the Montgomery domain from bytes in little-endian order. * * Preconditions: * 0 ≤ bytes_eval arg1 < m * Postconditions: * eval out1 mod m = bytes_eval arg1 mod m * 0 ≤ eval out1 < m * * Input Bounds: * arg1: [[0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0x1]] * Output Bounds: * out1: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0x1ff]] */ static void fiat_np521_from_bytes(uint64_t out1[9], const uint8_t arg1[66]) { uint64_t x1; uint8_t x2; uint64_t x3; uint64_t x4; uint64_t x5; uint64_t x6; uint64_t x7; uint64_t x8; uint64_t x9; uint8_t x10; uint64_t x11; uint64_t x12; uint64_t x13; uint64_t x14; uint64_t x15; uint64_t x16; uint64_t x17; uint8_t x18; uint64_t x19; uint64_t x20; uint64_t x21; uint64_t x22; uint64_t x23; uint64_t x24; uint64_t x25; uint8_t x26; uint64_t x27; uint64_t x28; uint64_t x29; uint64_t x30; uint64_t x31; uint64_t x32; uint64_t x33; uint8_t x34; uint64_t x35; uint64_t x36; uint64_t x37; uint64_t x38; uint64_t x39; uint64_t x40; uint64_t x41; uint8_t x42; uint64_t x43; uint64_t x44; uint64_t x45; uint64_t x46; uint64_t x47; uint64_t x48; uint64_t x49; uint8_t x50; uint64_t x51; uint64_t x52; uint64_t x53; uint64_t x54; uint64_t x55; uint64_t x56; uint64_t x57; uint8_t x58; uint64_t x59; uint64_t x60; uint64_t x61; uint64_t x62; uint64_t x63; uint64_t x64; uint64_t x65; uint8_t x66; uint64_t x67; uint64_t x68; uint64_t x69; uint64_t x70; uint64_t x71; uint64_t x72; uint64_t x73; uint64_t x74; uint64_t x75; uint64_t x76; uint64_t x77; uint64_t x78; uint64_t x79; uint64_t x80; uint64_t x81; uint64_t x82; uint64_t x83; uint64_t x84; uint64_t x85; uint64_t x86; uint64_t x87; uint64_t x88; uint64_t x89; uint64_t x90; uint64_t x91; uint64_t x92; uint64_t x93; uint64_t x94; uint64_t x95; uint64_t x96; uint64_t x97; uint64_t x98; uint64_t x99; uint64_t x100; uint64_t x101; uint64_t x102; uint64_t x103; uint64_t x104; uint64_t x105; uint64_t x106; uint64_t x107; uint64_t x108; uint64_t x109; uint64_t x110; uint64_t x111; uint64_t x112; uint64_t x113; uint64_t x114; uint64_t x115; uint64_t x116; uint64_t x117; uint64_t x118; uint64_t x119; uint64_t x120; uint64_t x121; uint64_t x122; uint64_t x123; x1 = ((uint64_t)(fiat_np521_uint1)(arg1[65]) << 8); x2 = (arg1[64]); x3 = ((uint64_t)(arg1[63]) << 56); x4 = ((uint64_t)(arg1[62]) << 48); x5 = ((uint64_t)(arg1[61]) << 40); x6 = ((uint64_t)(arg1[60]) << 32); x7 = ((uint64_t)(arg1[59]) << 24); x8 = ((uint64_t)(arg1[58]) << 16); x9 = ((uint64_t)(arg1[57]) << 8); x10 = (arg1[56]); x11 = ((uint64_t)(arg1[55]) << 56); x12 = ((uint64_t)(arg1[54]) << 48); x13 = ((uint64_t)(arg1[53]) << 40); x14 = ((uint64_t)(arg1[52]) << 32); x15 = ((uint64_t)(arg1[51]) << 24); x16 = ((uint64_t)(arg1[50]) << 16); x17 = ((uint64_t)(arg1[49]) << 8); x18 = (arg1[48]); x19 = ((uint64_t)(arg1[47]) << 56); x20 = ((uint64_t)(arg1[46]) << 48); x21 = ((uint64_t)(arg1[45]) << 40); x22 = ((uint64_t)(arg1[44]) << 32); x23 = ((uint64_t)(arg1[43]) << 24); x24 = ((uint64_t)(arg1[42]) << 16); x25 = ((uint64_t)(arg1[41]) << 8); x26 = (arg1[40]); x27 = ((uint64_t)(arg1[39]) << 56); x28 = ((uint64_t)(arg1[38]) << 48); x29 = ((uint64_t)(arg1[37]) << 40); x30 = ((uint64_t)(arg1[36]) << 32); x31 = ((uint64_t)(arg1[35]) << 24); x32 = ((uint64_t)(arg1[34]) << 16); x33 = ((uint64_t)(arg1[33]) << 8); x34 = (arg1[32]); x35 = ((uint64_t)(arg1[31]) << 56); x36 = ((uint64_t)(arg1[30]) << 48); x37 = ((uint64_t)(arg1[29]) << 40); x38 = ((uint64_t)(arg1[28]) << 32); x39 = ((uint64_t)(arg1[27]) << 24); x40 = ((uint64_t)(arg1[26]) << 16); x41 = ((uint64_t)(arg1[25]) << 8); x42 = (arg1[24]); x43 = ((uint64_t)(arg1[23]) << 56); x44 = ((uint64_t)(arg1[22]) << 48); x45 = ((uint64_t)(arg1[21]) << 40); x46 = ((uint64_t)(arg1[20]) << 32); x47 = ((uint64_t)(arg1[19]) << 24); x48 = ((uint64_t)(arg1[18]) << 16); x49 = ((uint64_t)(arg1[17]) << 8); x50 = (arg1[16]); x51 = ((uint64_t)(arg1[15]) << 56); x52 = ((uint64_t)(arg1[14]) << 48); x53 = ((uint64_t)(arg1[13]) << 40); x54 = ((uint64_t)(arg1[12]) << 32); x55 = ((uint64_t)(arg1[11]) << 24); x56 = ((uint64_t)(arg1[10]) << 16); x57 = ((uint64_t)(arg1[9]) << 8); x58 = (arg1[8]); x59 = ((uint64_t)(arg1[7]) << 56); x60 = ((uint64_t)(arg1[6]) << 48); x61 = ((uint64_t)(arg1[5]) << 40); x62 = ((uint64_t)(arg1[4]) << 32); x63 = ((uint64_t)(arg1[3]) << 24); x64 = ((uint64_t)(arg1[2]) << 16); x65 = ((uint64_t)(arg1[1]) << 8); x66 = (arg1[0]); x67 = (x65 + (uint64_t)x66); x68 = (x64 + x67); x69 = (x63 + x68); x70 = (x62 + x69); x71 = (x61 + x70); x72 = (x60 + x71); x73 = (x59 + x72); x74 = (x57 + (uint64_t)x58); x75 = (x56 + x74); x76 = (x55 + x75); x77 = (x54 + x76); x78 = (x53 + x77); x79 = (x52 + x78); x80 = (x51 + x79); x81 = (x49 + (uint64_t)x50); x82 = (x48 + x81); x83 = (x47 + x82); x84 = (x46 + x83); x85 = (x45 + x84); x86 = (x44 + x85); x87 = (x43 + x86); x88 = (x41 + (uint64_t)x42); x89 = (x40 + x88); x90 = (x39 + x89); x91 = (x38 + x90); x92 = (x37 + x91); x93 = (x36 + x92); x94 = (x35 + x93); x95 = (x33 + (uint64_t)x34); x96 = (x32 + x95); x97 = (x31 + x96); x98 = (x30 + x97); x99 = (x29 + x98); x100 = (x28 + x99); x101 = (x27 + x100); x102 = (x25 + (uint64_t)x26); x103 = (x24 + x102); x104 = (x23 + x103); x105 = (x22 + x104); x106 = (x21 + x105); x107 = (x20 + x106); x108 = (x19 + x107); x109 = (x17 + (uint64_t)x18); x110 = (x16 + x109); x111 = (x15 + x110); x112 = (x14 + x111); x113 = (x13 + x112); x114 = (x12 + x113); x115 = (x11 + x114); x116 = (x9 + (uint64_t)x10); x117 = (x8 + x116); x118 = (x7 + x117); x119 = (x6 + x118); x120 = (x5 + x119); x121 = (x4 + x120); x122 = (x3 + x121); x123 = (x1 + (uint64_t)x2); out1[0] = x73; out1[1] = x80; out1[2] = x87; out1[3] = x94; out1[4] = x101; out1[5] = x108; out1[6] = x115; out1[7] = x122; out1[8] = x123; } /* * The function fiat_np521_selectznz is a multi-limb conditional select. * * Postconditions: * out1 = (if arg1 = 0 then arg2 else arg3) * * Input Bounds: * arg1: [0x0 ~> 0x1] * arg2: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]] * arg3: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]] * Output Bounds: * out1: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]] */ static void fiat_np521_selectznz(uint64_t out1[9], fiat_np521_uint1 arg1, const uint64_t arg2[9], const uint64_t arg3[9]) { uint64_t x1; uint64_t x2; uint64_t x3; uint64_t x4; uint64_t x5; uint64_t x6; uint64_t x7; uint64_t x8; uint64_t x9; fiat_np521_cmovznz_u64(&x1, arg1, (arg2[0]), (arg3[0])); fiat_np521_cmovznz_u64(&x2, arg1, (arg2[1]), (arg3[1])); fiat_np521_cmovznz_u64(&x3, arg1, (arg2[2]), (arg3[2])); fiat_np521_cmovznz_u64(&x4, arg1, (arg2[3]), (arg3[3])); fiat_np521_cmovznz_u64(&x5, arg1, (arg2[4]), (arg3[4])); fiat_np521_cmovznz_u64(&x6, arg1, (arg2[5]), (arg3[5])); fiat_np521_cmovznz_u64(&x7, arg1, (arg2[6]), (arg3[6])); fiat_np521_cmovznz_u64(&x8, arg1, (arg2[7]), (arg3[7])); fiat_np521_cmovznz_u64(&x9, arg1, (arg2[8]), (arg3[8])); out1[0] = x1; out1[1] = x2; out1[2] = x3; out1[3] = x4; out1[4] = x5; out1[5] = x6; out1[6] = x7; out1[7] = x8; out1[8] = x9; }
mirage-crypto
2.0.2
ISC
https://github.com/mirage/mirage-crypto
git+https://github.com/mirage/mirage-crypto.git
c
mirage-crypto-2.0.2/ec/native/np521_stubs.c
#include "mirage_crypto.h" /* Microsoft compiler does not support 128-bit integers. Drop down to * 32-bit for MSVC. */ #if defined(ARCH_64BIT) && !defined(_MSC_VER) #include "np521_64.h" #define LIMBS 9 #define WORD uint64_t #define WORDSIZE 64 #else #include "np521_32.h" #define LIMBS 17 #define WORD uint32_t #define WORDSIZE 32 #endif #define LEN_PRIME 521 #define CURVE_DESCRIPTION fiat_np521 #include "inversion_template.h" #include <caml/memory.h> CAMLprim value mc_np521_inv(value out, value in) { CAMLparam2(out, in); inversion((WORD*)Bytes_val(out), (const WORD*)String_val(in)); CAMLreturn(Val_unit); } CAMLprim value mc_np521_mul(value out, value a, value b) { CAMLparam3(out, a, b); fiat_np521_mul((WORD*)Bytes_val(out), (const WORD*)String_val(a), (const WORD*)String_val(b)); CAMLreturn(Val_unit); } CAMLprim value mc_np521_add(value out, value a, value b) { CAMLparam3(out, a, b); fiat_np521_add((WORD*)Bytes_val(out), (const WORD*)String_val(a), (const WORD*)String_val(b)); CAMLreturn(Val_unit); } CAMLprim value mc_np521_one(value out) { CAMLparam1(out); fiat_np521_set_one((WORD*)Bytes_val(out)); CAMLreturn(Val_unit); } CAMLprim value mc_np521_from_bytes(value out, value in) { CAMLparam2(out, in); fiat_np521_from_bytes((WORD*)Bytes_val(out), _st_uint8(in)); CAMLreturn(Val_unit); } CAMLprim value mc_np521_to_bytes(value out, value in) { CAMLparam2(out, in); fiat_np521_to_bytes(Bytes_val(out), (const WORD*)String_val(in)); CAMLreturn(Val_unit); } CAMLprim value mc_np521_from_montgomery(value out, value in) { CAMLparam2(out, in); fiat_np521_from_montgomery((WORD*)Bytes_val(out), (const WORD*)String_val(in)); CAMLreturn(Val_unit); } CAMLprim value mc_np521_to_montgomery(value out, value in) { CAMLparam2(out, in); fiat_np521_to_montgomery((WORD*)Bytes_val(out), (const WORD*)String_val(in)); CAMLreturn(Val_unit); }
mirage-crypto
2.0.2
ISC
https://github.com/mirage/mirage-crypto
git+https://github.com/mirage/mirage-crypto.git
h
mirage-crypto-2.0.2/ec/native/p256_32.h
/* Autogenerated: '../fiat-crypto/src/ExtractionOCaml/word_by_word_montgomery' --static --use-value-barrier --inline-internal p256 32 '2^256 - 2^224 + 2^192 + 2^96 - 1' */ /* curve description: p256 */ /* machine_wordsize = 32 (from "32") */ /* requested operations: (all) */ /* m = 0xffffffff00000001000000000000000000000000ffffffffffffffffffffffff (from "2^256 - 2^224 + 2^192 + 2^96 - 1") */ /* */ /* NOTE: In addition to the bounds specified above each function, all */ /* functions synthesized for this Montgomery arithmetic require the */ /* input to be strictly less than the prime modulus (m), and also */ /* require the input to be in the unique saturated representation. */ /* All functions also ensure that these two properties are true of */ /* return values. */ /* */ /* Computed values: */ /* eval z = z[0] + (z[1] << 32) + (z[2] << 64) + (z[3] << 96) + (z[4] << 128) + (z[5] << 160) + (z[6] << 192) + (z[7] << 224) */ /* bytes_eval z = z[0] + (z[1] << 8) + (z[2] << 16) + (z[3] << 24) + (z[4] << 32) + (z[5] << 40) + (z[6] << 48) + (z[7] << 56) + (z[8] << 64) + (z[9] << 72) + (z[10] << 80) + (z[11] << 88) + (z[12] << 96) + (z[13] << 104) + (z[14] << 112) + (z[15] << 120) + (z[16] << 128) + (z[17] << 136) + (z[18] << 144) + (z[19] << 152) + (z[20] << 160) + (z[21] << 168) + (z[22] << 176) + (z[23] << 184) + (z[24] << 192) + (z[25] << 200) + (z[26] << 208) + (z[27] << 216) + (z[28] << 224) + (z[29] << 232) + (z[30] << 240) + (z[31] << 248) */ /* twos_complement_eval z = let x1 := z[0] + (z[1] << 32) + (z[2] << 64) + (z[3] << 96) + (z[4] << 128) + (z[5] << 160) + (z[6] << 192) + (z[7] << 224) in */ /* if x1 & (2^256-1) < 2^255 then x1 & (2^256-1) else (x1 & (2^256-1)) - 2^256 */ #include <stdint.h> typedef unsigned char fiat_p256_uint1; typedef signed char fiat_p256_int1; #if defined(__GNUC__) || defined(__clang__) # define FIAT_P256_FIAT_INLINE __inline__ #else # define FIAT_P256_FIAT_INLINE #endif /* The type fiat_p256_montgomery_domain_field_element is a field element in the Montgomery domain. */ /* Bounds: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff]] */ typedef uint32_t fiat_p256_montgomery_domain_field_element[8]; /* The type fiat_p256_non_montgomery_domain_field_element is a field element NOT in the Montgomery domain. */ /* Bounds: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff]] */ typedef uint32_t fiat_p256_non_montgomery_domain_field_element[8]; #if (-1 & 3) != 3 #error "This code only works on a two's complement system" #endif #if !defined(FIAT_P256_NO_ASM) && (defined(__GNUC__) || defined(__clang__)) static __inline__ uint32_t fiat_p256_value_barrier_u32(uint32_t a) { __asm__("" : "+r"(a) : /* no inputs */); return a; } #else # define fiat_p256_value_barrier_u32(x) (x) #endif /* * The function fiat_p256_addcarryx_u32 is an addition with carry. * * Postconditions: * out1 = (arg1 + arg2 + arg3) mod 2^32 * out2 = ⌊(arg1 + arg2 + arg3) / 2^32⌋ * * Input Bounds: * arg1: [0x0 ~> 0x1] * arg2: [0x0 ~> 0xffffffff] * arg3: [0x0 ~> 0xffffffff] * Output Bounds: * out1: [0x0 ~> 0xffffffff] * out2: [0x0 ~> 0x1] */ static FIAT_P256_FIAT_INLINE void fiat_p256_addcarryx_u32(uint32_t* out1, fiat_p256_uint1* out2, fiat_p256_uint1 arg1, uint32_t arg2, uint32_t arg3) { uint64_t x1; uint32_t x2; fiat_p256_uint1 x3; x1 = ((arg1 + (uint64_t)arg2) + arg3); x2 = (uint32_t)(x1 & UINT32_C(0xffffffff)); x3 = (fiat_p256_uint1)(x1 >> 32); *out1 = x2; *out2 = x3; } /* * The function fiat_p256_subborrowx_u32 is a subtraction with borrow. * * Postconditions: * out1 = (-arg1 + arg2 + -arg3) mod 2^32 * out2 = -⌊(-arg1 + arg2 + -arg3) / 2^32⌋ * * Input Bounds: * arg1: [0x0 ~> 0x1] * arg2: [0x0 ~> 0xffffffff] * arg3: [0x0 ~> 0xffffffff] * Output Bounds: * out1: [0x0 ~> 0xffffffff] * out2: [0x0 ~> 0x1] */ static FIAT_P256_FIAT_INLINE void fiat_p256_subborrowx_u32(uint32_t* out1, fiat_p256_uint1* out2, fiat_p256_uint1 arg1, uint32_t arg2, uint32_t arg3) { int64_t x1; fiat_p256_int1 x2; uint32_t x3; x1 = ((arg2 - (int64_t)arg1) - arg3); x2 = (fiat_p256_int1)(x1 >> 32); x3 = (uint32_t)(x1 & UINT32_C(0xffffffff)); *out1 = x3; *out2 = (fiat_p256_uint1)(0x0 - x2); } /* * The function fiat_p256_mulx_u32 is a multiplication, returning the full double-width result. * * Postconditions: * out1 = (arg1 * arg2) mod 2^32 * out2 = ⌊arg1 * arg2 / 2^32⌋ * * Input Bounds: * arg1: [0x0 ~> 0xffffffff] * arg2: [0x0 ~> 0xffffffff] * Output Bounds: * out1: [0x0 ~> 0xffffffff] * out2: [0x0 ~> 0xffffffff] */ static FIAT_P256_FIAT_INLINE void fiat_p256_mulx_u32(uint32_t* out1, uint32_t* out2, uint32_t arg1, uint32_t arg2) { uint64_t x1; uint32_t x2; uint32_t x3; x1 = ((uint64_t)arg1 * arg2); x2 = (uint32_t)(x1 & UINT32_C(0xffffffff)); x3 = (uint32_t)(x1 >> 32); *out1 = x2; *out2 = x3; } /* * The function fiat_p256_cmovznz_u32 is a single-word conditional move. * * Postconditions: * out1 = (if arg1 = 0 then arg2 else arg3) * * Input Bounds: * arg1: [0x0 ~> 0x1] * arg2: [0x0 ~> 0xffffffff] * arg3: [0x0 ~> 0xffffffff] * Output Bounds: * out1: [0x0 ~> 0xffffffff] */ static FIAT_P256_FIAT_INLINE void fiat_p256_cmovznz_u32(uint32_t* out1, fiat_p256_uint1 arg1, uint32_t arg2, uint32_t arg3) { fiat_p256_uint1 x1; uint32_t x2; uint32_t x3; x1 = (!(!arg1)); x2 = ((fiat_p256_int1)(0x0 - x1) & UINT32_C(0xffffffff)); x3 = ((fiat_p256_value_barrier_u32(x2) & arg3) | (fiat_p256_value_barrier_u32((~x2)) & arg2)); *out1 = x3; } /* * The function fiat_p256_mul multiplies two field elements in the Montgomery domain. * * Preconditions: * 0 ≤ eval arg1 < m * 0 ≤ eval arg2 < m * Postconditions: * eval (from_montgomery out1) mod m = (eval (from_montgomery arg1) * eval (from_montgomery arg2)) mod m * 0 ≤ eval out1 < m * */ static void fiat_p256_mul(fiat_p256_montgomery_domain_field_element out1, const fiat_p256_montgomery_domain_field_element arg1, const fiat_p256_montgomery_domain_field_element arg2) { uint32_t x1; uint32_t x2; uint32_t x3; uint32_t x4; uint32_t x5; uint32_t x6; uint32_t x7; uint32_t x8; uint32_t x9; uint32_t x10; uint32_t x11; uint32_t x12; uint32_t x13; uint32_t x14; uint32_t x15; uint32_t x16; uint32_t x17; uint32_t x18; uint32_t x19; uint32_t x20; uint32_t x21; uint32_t x22; uint32_t x23; uint32_t x24; uint32_t x25; fiat_p256_uint1 x26; uint32_t x27; fiat_p256_uint1 x28; uint32_t x29; fiat_p256_uint1 x30; uint32_t x31; fiat_p256_uint1 x32; uint32_t x33; fiat_p256_uint1 x34; uint32_t x35; fiat_p256_uint1 x36; uint32_t x37; fiat_p256_uint1 x38; uint32_t x39; uint32_t x40; uint32_t x41; uint32_t x42; uint32_t x43; uint32_t x44; uint32_t x45; uint32_t x46; uint32_t x47; uint32_t x48; fiat_p256_uint1 x49; uint32_t x50; fiat_p256_uint1 x51; uint32_t x52; uint32_t x53; fiat_p256_uint1 x54; uint32_t x55; fiat_p256_uint1 x56; uint32_t x57; fiat_p256_uint1 x58; uint32_t x59; fiat_p256_uint1 x60; uint32_t x61; fiat_p256_uint1 x62; uint32_t x63; fiat_p256_uint1 x64; uint32_t x65; fiat_p256_uint1 x66; uint32_t x67; fiat_p256_uint1 x68; uint32_t x69; fiat_p256_uint1 x70; uint32_t x71; uint32_t x72; uint32_t x73; uint32_t x74; uint32_t x75; uint32_t x76; uint32_t x77; uint32_t x78; uint32_t x79; uint32_t x80; uint32_t x81; uint32_t x82; uint32_t x83; uint32_t x84; uint32_t x85; uint32_t x86; uint32_t x87; fiat_p256_uint1 x88; uint32_t x89; fiat_p256_uint1 x90; uint32_t x91; fiat_p256_uint1 x92; uint32_t x93; fiat_p256_uint1 x94; uint32_t x95; fiat_p256_uint1 x96; uint32_t x97; fiat_p256_uint1 x98; uint32_t x99; fiat_p256_uint1 x100; uint32_t x101; uint32_t x102; fiat_p256_uint1 x103; uint32_t x104; fiat_p256_uint1 x105; uint32_t x106; fiat_p256_uint1 x107; uint32_t x108; fiat_p256_uint1 x109; uint32_t x110; fiat_p256_uint1 x111; uint32_t x112; fiat_p256_uint1 x113; uint32_t x114; fiat_p256_uint1 x115; uint32_t x116; fiat_p256_uint1 x117; uint32_t x118; fiat_p256_uint1 x119; uint32_t x120; uint32_t x121; uint32_t x122; uint32_t x123; uint32_t x124; uint32_t x125; uint32_t x126; uint32_t x127; uint32_t x128; fiat_p256_uint1 x129; uint32_t x130; fiat_p256_uint1 x131; uint32_t x132; uint32_t x133; fiat_p256_uint1 x134; uint32_t x135; fiat_p256_uint1 x136; uint32_t x137; fiat_p256_uint1 x138; uint32_t x139; fiat_p256_uint1 x140; uint32_t x141; fiat_p256_uint1 x142; uint32_t x143; fiat_p256_uint1 x144; uint32_t x145; fiat_p256_uint1 x146; uint32_t x147; fiat_p256_uint1 x148; uint32_t x149; fiat_p256_uint1 x150; uint32_t x151; uint32_t x152; uint32_t x153; uint32_t x154; uint32_t x155; uint32_t x156; uint32_t x157; uint32_t x158; uint32_t x159; uint32_t x160; uint32_t x161; uint32_t x162; uint32_t x163; uint32_t x164; uint32_t x165; uint32_t x166; uint32_t x167; uint32_t x168; fiat_p256_uint1 x169; uint32_t x170; fiat_p256_uint1 x171; uint32_t x172; fiat_p256_uint1 x173; uint32_t x174; fiat_p256_uint1 x175; uint32_t x176; fiat_p256_uint1 x177; uint32_t x178; fiat_p256_uint1 x179; uint32_t x180; fiat_p256_uint1 x181; uint32_t x182; uint32_t x183; fiat_p256_uint1 x184; uint32_t x185; fiat_p256_uint1 x186; uint32_t x187; fiat_p256_uint1 x188; uint32_t x189; fiat_p256_uint1 x190; uint32_t x191; fiat_p256_uint1 x192; uint32_t x193; fiat_p256_uint1 x194; uint32_t x195; fiat_p256_uint1 x196; uint32_t x197; fiat_p256_uint1 x198; uint32_t x199; fiat_p256_uint1 x200; uint32_t x201; uint32_t x202; uint32_t x203; uint32_t x204; uint32_t x205; uint32_t x206; uint32_t x207; uint32_t x208; uint32_t x209; fiat_p256_uint1 x210; uint32_t x211; fiat_p256_uint1 x212; uint32_t x213; uint32_t x214; fiat_p256_uint1 x215; uint32_t x216; fiat_p256_uint1 x217; uint32_t x218; fiat_p256_uint1 x219; uint32_t x220; fiat_p256_uint1 x221; uint32_t x222; fiat_p256_uint1 x223; uint32_t x224; fiat_p256_uint1 x225; uint32_t x226; fiat_p256_uint1 x227; uint32_t x228; fiat_p256_uint1 x229; uint32_t x230; fiat_p256_uint1 x231; uint32_t x232; uint32_t x233; uint32_t x234; uint32_t x235; uint32_t x236; uint32_t x237; uint32_t x238; uint32_t x239; uint32_t x240; uint32_t x241; uint32_t x242; uint32_t x243; uint32_t x244; uint32_t x245; uint32_t x246; uint32_t x247; uint32_t x248; uint32_t x249; fiat_p256_uint1 x250; uint32_t x251; fiat_p256_uint1 x252; uint32_t x253; fiat_p256_uint1 x254; uint32_t x255; fiat_p256_uint1 x256; uint32_t x257; fiat_p256_uint1 x258; uint32_t x259; fiat_p256_uint1 x260; uint32_t x261; fiat_p256_uint1 x262; uint32_t x263; uint32_t x264; fiat_p256_uint1 x265; uint32_t x266; fiat_p256_uint1 x267; uint32_t x268; fiat_p256_uint1 x269; uint32_t x270; fiat_p256_uint1 x271; uint32_t x272; fiat_p256_uint1 x273; uint32_t x274; fiat_p256_uint1 x275; uint32_t x276; fiat_p256_uint1 x277; uint32_t x278; fiat_p256_uint1 x279; uint32_t x280; fiat_p256_uint1 x281; uint32_t x282; uint32_t x283; uint32_t x284; uint32_t x285; uint32_t x286; uint32_t x287; uint32_t x288; uint32_t x289; uint32_t x290; fiat_p256_uint1 x291; uint32_t x292; fiat_p256_uint1 x293; uint32_t x294; uint32_t x295; fiat_p256_uint1 x296; uint32_t x297; fiat_p256_uint1 x298; uint32_t x299; fiat_p256_uint1 x300; uint32_t x301; fiat_p256_uint1 x302; uint32_t x303; fiat_p256_uint1 x304; uint32_t x305; fiat_p256_uint1 x306; uint32_t x307; fiat_p256_uint1 x308; uint32_t x309; fiat_p256_uint1 x310; uint32_t x311; fiat_p256_uint1 x312; uint32_t x313; uint32_t x314; uint32_t x315; uint32_t x316; uint32_t x317; uint32_t x318; uint32_t x319; uint32_t x320; uint32_t x321; uint32_t x322; uint32_t x323; uint32_t x324; uint32_t x325; uint32_t x326; uint32_t x327; uint32_t x328; uint32_t x329; uint32_t x330; fiat_p256_uint1 x331; uint32_t x332; fiat_p256_uint1 x333; uint32_t x334; fiat_p256_uint1 x335; uint32_t x336; fiat_p256_uint1 x337; uint32_t x338; fiat_p256_uint1 x339; uint32_t x340; fiat_p256_uint1 x341; uint32_t x342; fiat_p256_uint1 x343; uint32_t x344; uint32_t x345; fiat_p256_uint1 x346; uint32_t x347; fiat_p256_uint1 x348; uint32_t x349; fiat_p256_uint1 x350; uint32_t x351; fiat_p256_uint1 x352; uint32_t x353; fiat_p256_uint1 x354; uint32_t x355; fiat_p256_uint1 x356; uint32_t x357; fiat_p256_uint1 x358; uint32_t x359; fiat_p256_uint1 x360; uint32_t x361; fiat_p256_uint1 x362; uint32_t x363; uint32_t x364; uint32_t x365; uint32_t x366; uint32_t x367; uint32_t x368; uint32_t x369; uint32_t x370; uint32_t x371; fiat_p256_uint1 x372; uint32_t x373; fiat_p256_uint1 x374; uint32_t x375; uint32_t x376; fiat_p256_uint1 x377; uint32_t x378; fiat_p256_uint1 x379; uint32_t x380; fiat_p256_uint1 x381; uint32_t x382; fiat_p256_uint1 x383; uint32_t x384; fiat_p256_uint1 x385; uint32_t x386; fiat_p256_uint1 x387; uint32_t x388; fiat_p256_uint1 x389; uint32_t x390; fiat_p256_uint1 x391; uint32_t x392; fiat_p256_uint1 x393; uint32_t x394; uint32_t x395; uint32_t x396; uint32_t x397; uint32_t x398; uint32_t x399; uint32_t x400; uint32_t x401; uint32_t x402; uint32_t x403; uint32_t x404; uint32_t x405; uint32_t x406; uint32_t x407; uint32_t x408; uint32_t x409; uint32_t x410; uint32_t x411; fiat_p256_uint1 x412; uint32_t x413; fiat_p256_uint1 x414; uint32_t x415; fiat_p256_uint1 x416; uint32_t x417; fiat_p256_uint1 x418; uint32_t x419; fiat_p256_uint1 x420; uint32_t x421; fiat_p256_uint1 x422; uint32_t x423; fiat_p256_uint1 x424; uint32_t x425; uint32_t x426; fiat_p256_uint1 x427; uint32_t x428; fiat_p256_uint1 x429; uint32_t x430; fiat_p256_uint1 x431; uint32_t x432; fiat_p256_uint1 x433; uint32_t x434; fiat_p256_uint1 x435; uint32_t x436; fiat_p256_uint1 x437; uint32_t x438; fiat_p256_uint1 x439; uint32_t x440; fiat_p256_uint1 x441; uint32_t x442; fiat_p256_uint1 x443; uint32_t x444; uint32_t x445; uint32_t x446; uint32_t x447; uint32_t x448; uint32_t x449; uint32_t x450; uint32_t x451; uint32_t x452; fiat_p256_uint1 x453; uint32_t x454; fiat_p256_uint1 x455; uint32_t x456; uint32_t x457; fiat_p256_uint1 x458; uint32_t x459; fiat_p256_uint1 x460; uint32_t x461; fiat_p256_uint1 x462; uint32_t x463; fiat_p256_uint1 x464; uint32_t x465; fiat_p256_uint1 x466; uint32_t x467; fiat_p256_uint1 x468; uint32_t x469; fiat_p256_uint1 x470; uint32_t x471; fiat_p256_uint1 x472; uint32_t x473; fiat_p256_uint1 x474; uint32_t x475; uint32_t x476; uint32_t x477; uint32_t x478; uint32_t x479; uint32_t x480; uint32_t x481; uint32_t x482; uint32_t x483; uint32_t x484; uint32_t x485; uint32_t x486; uint32_t x487; uint32_t x488; uint32_t x489; uint32_t x490; uint32_t x491; uint32_t x492; fiat_p256_uint1 x493; uint32_t x494; fiat_p256_uint1 x495; uint32_t x496; fiat_p256_uint1 x497; uint32_t x498; fiat_p256_uint1 x499; uint32_t x500; fiat_p256_uint1 x501; uint32_t x502; fiat_p256_uint1 x503; uint32_t x504; fiat_p256_uint1 x505; uint32_t x506; uint32_t x507; fiat_p256_uint1 x508; uint32_t x509; fiat_p256_uint1 x510; uint32_t x511; fiat_p256_uint1 x512; uint32_t x513; fiat_p256_uint1 x514; uint32_t x515; fiat_p256_uint1 x516; uint32_t x517; fiat_p256_uint1 x518; uint32_t x519; fiat_p256_uint1 x520; uint32_t x521; fiat_p256_uint1 x522; uint32_t x523; fiat_p256_uint1 x524; uint32_t x525; uint32_t x526; uint32_t x527; uint32_t x528; uint32_t x529; uint32_t x530; uint32_t x531; uint32_t x532; uint32_t x533; fiat_p256_uint1 x534; uint32_t x535; fiat_p256_uint1 x536; uint32_t x537; uint32_t x538; fiat_p256_uint1 x539; uint32_t x540; fiat_p256_uint1 x541; uint32_t x542; fiat_p256_uint1 x543; uint32_t x544; fiat_p256_uint1 x545; uint32_t x546; fiat_p256_uint1 x547; uint32_t x548; fiat_p256_uint1 x549; uint32_t x550; fiat_p256_uint1 x551; uint32_t x552; fiat_p256_uint1 x553; uint32_t x554; fiat_p256_uint1 x555; uint32_t x556; uint32_t x557; uint32_t x558; uint32_t x559; uint32_t x560; uint32_t x561; uint32_t x562; uint32_t x563; uint32_t x564; uint32_t x565; uint32_t x566; uint32_t x567; uint32_t x568; uint32_t x569; uint32_t x570; uint32_t x571; uint32_t x572; uint32_t x573; fiat_p256_uint1 x574; uint32_t x575; fiat_p256_uint1 x576; uint32_t x577; fiat_p256_uint1 x578; uint32_t x579; fiat_p256_uint1 x580; uint32_t x581; fiat_p256_uint1 x582; uint32_t x583; fiat_p256_uint1 x584; uint32_t x585; fiat_p256_uint1 x586; uint32_t x587; uint32_t x588; fiat_p256_uint1 x589; uint32_t x590; fiat_p256_uint1 x591; uint32_t x592; fiat_p256_uint1 x593; uint32_t x594; fiat_p256_uint1 x595; uint32_t x596; fiat_p256_uint1 x597; uint32_t x598; fiat_p256_uint1 x599; uint32_t x600; fiat_p256_uint1 x601; uint32_t x602; fiat_p256_uint1 x603; uint32_t x604; fiat_p256_uint1 x605; uint32_t x606; uint32_t x607; uint32_t x608; uint32_t x609; uint32_t x610; uint32_t x611; uint32_t x612; uint32_t x613; uint32_t x614; fiat_p256_uint1 x615; uint32_t x616; fiat_p256_uint1 x617; uint32_t x618; uint32_t x619; fiat_p256_uint1 x620; uint32_t x621; fiat_p256_uint1 x622; uint32_t x623; fiat_p256_uint1 x624; uint32_t x625; fiat_p256_uint1 x626; uint32_t x627; fiat_p256_uint1 x628; uint32_t x629; fiat_p256_uint1 x630; uint32_t x631; fiat_p256_uint1 x632; uint32_t x633; fiat_p256_uint1 x634; uint32_t x635; fiat_p256_uint1 x636; uint32_t x637; uint32_t x638; fiat_p256_uint1 x639; uint32_t x640; fiat_p256_uint1 x641; uint32_t x642; fiat_p256_uint1 x643; uint32_t x644; fiat_p256_uint1 x645; uint32_t x646; fiat_p256_uint1 x647; uint32_t x648; fiat_p256_uint1 x649; uint32_t x650; fiat_p256_uint1 x651; uint32_t x652; fiat_p256_uint1 x653; uint32_t x654; fiat_p256_uint1 x655; uint32_t x656; uint32_t x657; uint32_t x658; uint32_t x659; uint32_t x660; uint32_t x661; uint32_t x662; uint32_t x663; x1 = (arg1[1]); x2 = (arg1[2]); x3 = (arg1[3]); x4 = (arg1[4]); x5 = (arg1[5]); x6 = (arg1[6]); x7 = (arg1[7]); x8 = (arg1[0]); fiat_p256_mulx_u32(&x9, &x10, x8, (arg2[7])); fiat_p256_mulx_u32(&x11, &x12, x8, (arg2[6])); fiat_p256_mulx_u32(&x13, &x14, x8, (arg2[5])); fiat_p256_mulx_u32(&x15, &x16, x8, (arg2[4])); fiat_p256_mulx_u32(&x17, &x18, x8, (arg2[3])); fiat_p256_mulx_u32(&x19, &x20, x8, (arg2[2])); fiat_p256_mulx_u32(&x21, &x22, x8, (arg2[1])); fiat_p256_mulx_u32(&x23, &x24, x8, (arg2[0])); fiat_p256_addcarryx_u32(&x25, &x26, 0x0, x24, x21); fiat_p256_addcarryx_u32(&x27, &x28, x26, x22, x19); fiat_p256_addcarryx_u32(&x29, &x30, x28, x20, x17); fiat_p256_addcarryx_u32(&x31, &x32, x30, x18, x15); fiat_p256_addcarryx_u32(&x33, &x34, x32, x16, x13); fiat_p256_addcarryx_u32(&x35, &x36, x34, x14, x11); fiat_p256_addcarryx_u32(&x37, &x38, x36, x12, x9); x39 = (x38 + x10); fiat_p256_mulx_u32(&x40, &x41, x23, UINT32_C(0xffffffff)); fiat_p256_mulx_u32(&x42, &x43, x23, UINT32_C(0xffffffff)); fiat_p256_mulx_u32(&x44, &x45, x23, UINT32_C(0xffffffff)); fiat_p256_mulx_u32(&x46, &x47, x23, UINT32_C(0xffffffff)); fiat_p256_addcarryx_u32(&x48, &x49, 0x0, x47, x44); fiat_p256_addcarryx_u32(&x50, &x51, x49, x45, x42); x52 = (x51 + x43); fiat_p256_addcarryx_u32(&x53, &x54, 0x0, x23, x46); fiat_p256_addcarryx_u32(&x55, &x56, x54, x25, x48); fiat_p256_addcarryx_u32(&x57, &x58, x56, x27, x50); fiat_p256_addcarryx_u32(&x59, &x60, x58, x29, x52); fiat_p256_addcarryx_u32(&x61, &x62, x60, x31, 0x0); fiat_p256_addcarryx_u32(&x63, &x64, x62, x33, 0x0); fiat_p256_addcarryx_u32(&x65, &x66, x64, x35, x23); fiat_p256_addcarryx_u32(&x67, &x68, x66, x37, x40); fiat_p256_addcarryx_u32(&x69, &x70, x68, x39, x41); fiat_p256_mulx_u32(&x71, &x72, x1, (arg2[7])); fiat_p256_mulx_u32(&x73, &x74, x1, (arg2[6])); fiat_p256_mulx_u32(&x75, &x76, x1, (arg2[5])); fiat_p256_mulx_u32(&x77, &x78, x1, (arg2[4])); fiat_p256_mulx_u32(&x79, &x80, x1, (arg2[3])); fiat_p256_mulx_u32(&x81, &x82, x1, (arg2[2])); fiat_p256_mulx_u32(&x83, &x84, x1, (arg2[1])); fiat_p256_mulx_u32(&x85, &x86, x1, (arg2[0])); fiat_p256_addcarryx_u32(&x87, &x88, 0x0, x86, x83); fiat_p256_addcarryx_u32(&x89, &x90, x88, x84, x81); fiat_p256_addcarryx_u32(&x91, &x92, x90, x82, x79); fiat_p256_addcarryx_u32(&x93, &x94, x92, x80, x77); fiat_p256_addcarryx_u32(&x95, &x96, x94, x78, x75); fiat_p256_addcarryx_u32(&x97, &x98, x96, x76, x73); fiat_p256_addcarryx_u32(&x99, &x100, x98, x74, x71); x101 = (x100 + x72); fiat_p256_addcarryx_u32(&x102, &x103, 0x0, x55, x85); fiat_p256_addcarryx_u32(&x104, &x105, x103, x57, x87); fiat_p256_addcarryx_u32(&x106, &x107, x105, x59, x89); fiat_p256_addcarryx_u32(&x108, &x109, x107, x61, x91); fiat_p256_addcarryx_u32(&x110, &x111, x109, x63, x93); fiat_p256_addcarryx_u32(&x112, &x113, x111, x65, x95); fiat_p256_addcarryx_u32(&x114, &x115, x113, x67, x97); fiat_p256_addcarryx_u32(&x116, &x117, x115, x69, x99); fiat_p256_addcarryx_u32(&x118, &x119, x117, x70, x101); fiat_p256_mulx_u32(&x120, &x121, x102, UINT32_C(0xffffffff)); fiat_p256_mulx_u32(&x122, &x123, x102, UINT32_C(0xffffffff)); fiat_p256_mulx_u32(&x124, &x125, x102, UINT32_C(0xffffffff)); fiat_p256_mulx_u32(&x126, &x127, x102, UINT32_C(0xffffffff)); fiat_p256_addcarryx_u32(&x128, &x129, 0x0, x127, x124); fiat_p256_addcarryx_u32(&x130, &x131, x129, x125, x122); x132 = (x131 + x123); fiat_p256_addcarryx_u32(&x133, &x134, 0x0, x102, x126); fiat_p256_addcarryx_u32(&x135, &x136, x134, x104, x128); fiat_p256_addcarryx_u32(&x137, &x138, x136, x106, x130); fiat_p256_addcarryx_u32(&x139, &x140, x138, x108, x132); fiat_p256_addcarryx_u32(&x141, &x142, x140, x110, 0x0); fiat_p256_addcarryx_u32(&x143, &x144, x142, x112, 0x0); fiat_p256_addcarryx_u32(&x145, &x146, x144, x114, x102); fiat_p256_addcarryx_u32(&x147, &x148, x146, x116, x120); fiat_p256_addcarryx_u32(&x149, &x150, x148, x118, x121); x151 = ((uint32_t)x150 + x119); fiat_p256_mulx_u32(&x152, &x153, x2, (arg2[7])); fiat_p256_mulx_u32(&x154, &x155, x2, (arg2[6])); fiat_p256_mulx_u32(&x156, &x157, x2, (arg2[5])); fiat_p256_mulx_u32(&x158, &x159, x2, (arg2[4])); fiat_p256_mulx_u32(&x160, &x161, x2, (arg2[3])); fiat_p256_mulx_u32(&x162, &x163, x2, (arg2[2])); fiat_p256_mulx_u32(&x164, &x165, x2, (arg2[1])); fiat_p256_mulx_u32(&x166, &x167, x2, (arg2[0])); fiat_p256_addcarryx_u32(&x168, &x169, 0x0, x167, x164); fiat_p256_addcarryx_u32(&x170, &x171, x169, x165, x162); fiat_p256_addcarryx_u32(&x172, &x173, x171, x163, x160); fiat_p256_addcarryx_u32(&x174, &x175, x173, x161, x158); fiat_p256_addcarryx_u32(&x176, &x177, x175, x159, x156); fiat_p256_addcarryx_u32(&x178, &x179, x177, x157, x154); fiat_p256_addcarryx_u32(&x180, &x181, x179, x155, x152); x182 = (x181 + x153); fiat_p256_addcarryx_u32(&x183, &x184, 0x0, x135, x166); fiat_p256_addcarryx_u32(&x185, &x186, x184, x137, x168); fiat_p256_addcarryx_u32(&x187, &x188, x186, x139, x170); fiat_p256_addcarryx_u32(&x189, &x190, x188, x141, x172); fiat_p256_addcarryx_u32(&x191, &x192, x190, x143, x174); fiat_p256_addcarryx_u32(&x193, &x194, x192, x145, x176); fiat_p256_addcarryx_u32(&x195, &x196, x194, x147, x178); fiat_p256_addcarryx_u32(&x197, &x198, x196, x149, x180); fiat_p256_addcarryx_u32(&x199, &x200, x198, x151, x182); fiat_p256_mulx_u32(&x201, &x202, x183, UINT32_C(0xffffffff)); fiat_p256_mulx_u32(&x203, &x204, x183, UINT32_C(0xffffffff)); fiat_p256_mulx_u32(&x205, &x206, x183, UINT32_C(0xffffffff)); fiat_p256_mulx_u32(&x207, &x208, x183, UINT32_C(0xffffffff)); fiat_p256_addcarryx_u32(&x209, &x210, 0x0, x208, x205); fiat_p256_addcarryx_u32(&x211, &x212, x210, x206, x203); x213 = (x212 + x204); fiat_p256_addcarryx_u32(&x214, &x215, 0x0, x183, x207); fiat_p256_addcarryx_u32(&x216, &x217, x215, x185, x209); fiat_p256_addcarryx_u32(&x218, &x219, x217, x187, x211); fiat_p256_addcarryx_u32(&x220, &x221, x219, x189, x213); fiat_p256_addcarryx_u32(&x222, &x223, x221, x191, 0x0); fiat_p256_addcarryx_u32(&x224, &x225, x223, x193, 0x0); fiat_p256_addcarryx_u32(&x226, &x227, x225, x195, x183); fiat_p256_addcarryx_u32(&x228, &x229, x227, x197, x201); fiat_p256_addcarryx_u32(&x230, &x231, x229, x199, x202); x232 = ((uint32_t)x231 + x200); fiat_p256_mulx_u32(&x233, &x234, x3, (arg2[7])); fiat_p256_mulx_u32(&x235, &x236, x3, (arg2[6])); fiat_p256_mulx_u32(&x237, &x238, x3, (arg2[5])); fiat_p256_mulx_u32(&x239, &x240, x3, (arg2[4])); fiat_p256_mulx_u32(&x241, &x242, x3, (arg2[3])); fiat_p256_mulx_u32(&x243, &x244, x3, (arg2[2])); fiat_p256_mulx_u32(&x245, &x246, x3, (arg2[1])); fiat_p256_mulx_u32(&x247, &x248, x3, (arg2[0])); fiat_p256_addcarryx_u32(&x249, &x250, 0x0, x248, x245); fiat_p256_addcarryx_u32(&x251, &x252, x250, x246, x243); fiat_p256_addcarryx_u32(&x253, &x254, x252, x244, x241); fiat_p256_addcarryx_u32(&x255, &x256, x254, x242, x239); fiat_p256_addcarryx_u32(&x257, &x258, x256, x240, x237); fiat_p256_addcarryx_u32(&x259, &x260, x258, x238, x235); fiat_p256_addcarryx_u32(&x261, &x262, x260, x236, x233); x263 = (x262 + x234); fiat_p256_addcarryx_u32(&x264, &x265, 0x0, x216, x247); fiat_p256_addcarryx_u32(&x266, &x267, x265, x218, x249); fiat_p256_addcarryx_u32(&x268, &x269, x267, x220, x251); fiat_p256_addcarryx_u32(&x270, &x271, x269, x222, x253); fiat_p256_addcarryx_u32(&x272, &x273, x271, x224, x255); fiat_p256_addcarryx_u32(&x274, &x275, x273, x226, x257); fiat_p256_addcarryx_u32(&x276, &x277, x275, x228, x259); fiat_p256_addcarryx_u32(&x278, &x279, x277, x230, x261); fiat_p256_addcarryx_u32(&x280, &x281, x279, x232, x263); fiat_p256_mulx_u32(&x282, &x283, x264, UINT32_C(0xffffffff)); fiat_p256_mulx_u32(&x284, &x285, x264, UINT32_C(0xffffffff)); fiat_p256_mulx_u32(&x286, &x287, x264, UINT32_C(0xffffffff)); fiat_p256_mulx_u32(&x288, &x289, x264, UINT32_C(0xffffffff)); fiat_p256_addcarryx_u32(&x290, &x291, 0x0, x289, x286); fiat_p256_addcarryx_u32(&x292, &x293, x291, x287, x284); x294 = (x293 + x285); fiat_p256_addcarryx_u32(&x295, &x296, 0x0, x264, x288); fiat_p256_addcarryx_u32(&x297, &x298, x296, x266, x290); fiat_p256_addcarryx_u32(&x299, &x300, x298, x268, x292); fiat_p256_addcarryx_u32(&x301, &x302, x300, x270, x294); fiat_p256_addcarryx_u32(&x303, &x304, x302, x272, 0x0); fiat_p256_addcarryx_u32(&x305, &x306, x304, x274, 0x0); fiat_p256_addcarryx_u32(&x307, &x308, x306, x276, x264); fiat_p256_addcarryx_u32(&x309, &x310, x308, x278, x282); fiat_p256_addcarryx_u32(&x311, &x312, x310, x280, x283); x313 = ((uint32_t)x312 + x281); fiat_p256_mulx_u32(&x314, &x315, x4, (arg2[7])); fiat_p256_mulx_u32(&x316, &x317, x4, (arg2[6])); fiat_p256_mulx_u32(&x318, &x319, x4, (arg2[5])); fiat_p256_mulx_u32(&x320, &x321, x4, (arg2[4])); fiat_p256_mulx_u32(&x322, &x323, x4, (arg2[3])); fiat_p256_mulx_u32(&x324, &x325, x4, (arg2[2])); fiat_p256_mulx_u32(&x326, &x327, x4, (arg2[1])); fiat_p256_mulx_u32(&x328, &x329, x4, (arg2[0])); fiat_p256_addcarryx_u32(&x330, &x331, 0x0, x329, x326); fiat_p256_addcarryx_u32(&x332, &x333, x331, x327, x324); fiat_p256_addcarryx_u32(&x334, &x335, x333, x325, x322); fiat_p256_addcarryx_u32(&x336, &x337, x335, x323, x320); fiat_p256_addcarryx_u32(&x338, &x339, x337, x321, x318); fiat_p256_addcarryx_u32(&x340, &x341, x339, x319, x316); fiat_p256_addcarryx_u32(&x342, &x343, x341, x317, x314); x344 = (x343 + x315); fiat_p256_addcarryx_u32(&x345, &x346, 0x0, x297, x328); fiat_p256_addcarryx_u32(&x347, &x348, x346, x299, x330); fiat_p256_addcarryx_u32(&x349, &x350, x348, x301, x332); fiat_p256_addcarryx_u32(&x351, &x352, x350, x303, x334); fiat_p256_addcarryx_u32(&x353, &x354, x352, x305, x336); fiat_p256_addcarryx_u32(&x355, &x356, x354, x307, x338); fiat_p256_addcarryx_u32(&x357, &x358, x356, x309, x340); fiat_p256_addcarryx_u32(&x359, &x360, x358, x311, x342); fiat_p256_addcarryx_u32(&x361, &x362, x360, x313, x344); fiat_p256_mulx_u32(&x363, &x364, x345, UINT32_C(0xffffffff)); fiat_p256_mulx_u32(&x365, &x366, x345, UINT32_C(0xffffffff)); fiat_p256_mulx_u32(&x367, &x368, x345, UINT32_C(0xffffffff)); fiat_p256_mulx_u32(&x369, &x370, x345, UINT32_C(0xffffffff)); fiat_p256_addcarryx_u32(&x371, &x372, 0x0, x370, x367); fiat_p256_addcarryx_u32(&x373, &x374, x372, x368, x365); x375 = (x374 + x366); fiat_p256_addcarryx_u32(&x376, &x377, 0x0, x345, x369); fiat_p256_addcarryx_u32(&x378, &x379, x377, x347, x371); fiat_p256_addcarryx_u32(&x380, &x381, x379, x349, x373); fiat_p256_addcarryx_u32(&x382, &x383, x381, x351, x375); fiat_p256_addcarryx_u32(&x384, &x385, x383, x353, 0x0); fiat_p256_addcarryx_u32(&x386, &x387, x385, x355, 0x0); fiat_p256_addcarryx_u32(&x388, &x389, x387, x357, x345); fiat_p256_addcarryx_u32(&x390, &x391, x389, x359, x363); fiat_p256_addcarryx_u32(&x392, &x393, x391, x361, x364); x394 = ((uint32_t)x393 + x362); fiat_p256_mulx_u32(&x395, &x396, x5, (arg2[7])); fiat_p256_mulx_u32(&x397, &x398, x5, (arg2[6])); fiat_p256_mulx_u32(&x399, &x400, x5, (arg2[5])); fiat_p256_mulx_u32(&x401, &x402, x5, (arg2[4])); fiat_p256_mulx_u32(&x403, &x404, x5, (arg2[3])); fiat_p256_mulx_u32(&x405, &x406, x5, (arg2[2])); fiat_p256_mulx_u32(&x407, &x408, x5, (arg2[1])); fiat_p256_mulx_u32(&x409, &x410, x5, (arg2[0])); fiat_p256_addcarryx_u32(&x411, &x412, 0x0, x410, x407); fiat_p256_addcarryx_u32(&x413, &x414, x412, x408, x405); fiat_p256_addcarryx_u32(&x415, &x416, x414, x406, x403); fiat_p256_addcarryx_u32(&x417, &x418, x416, x404, x401); fiat_p256_addcarryx_u32(&x419, &x420, x418, x402, x399); fiat_p256_addcarryx_u32(&x421, &x422, x420, x400, x397); fiat_p256_addcarryx_u32(&x423, &x424, x422, x398, x395); x425 = (x424 + x396); fiat_p256_addcarryx_u32(&x426, &x427, 0x0, x378, x409); fiat_p256_addcarryx_u32(&x428, &x429, x427, x380, x411); fiat_p256_addcarryx_u32(&x430, &x431, x429, x382, x413); fiat_p256_addcarryx_u32(&x432, &x433, x431, x384, x415); fiat_p256_addcarryx_u32(&x434, &x435, x433, x386, x417); fiat_p256_addcarryx_u32(&x436, &x437, x435, x388, x419); fiat_p256_addcarryx_u32(&x438, &x439, x437, x390, x421); fiat_p256_addcarryx_u32(&x440, &x441, x439, x392, x423); fiat_p256_addcarryx_u32(&x442, &x443, x441, x394, x425); fiat_p256_mulx_u32(&x444, &x445, x426, UINT32_C(0xffffffff)); fiat_p256_mulx_u32(&x446, &x447, x426, UINT32_C(0xffffffff)); fiat_p256_mulx_u32(&x448, &x449, x426, UINT32_C(0xffffffff)); fiat_p256_mulx_u32(&x450, &x451, x426, UINT32_C(0xffffffff)); fiat_p256_addcarryx_u32(&x452, &x453, 0x0, x451, x448); fiat_p256_addcarryx_u32(&x454, &x455, x453, x449, x446); x456 = (x455 + x447); fiat_p256_addcarryx_u32(&x457, &x458, 0x0, x426, x450); fiat_p256_addcarryx_u32(&x459, &x460, x458, x428, x452); fiat_p256_addcarryx_u32(&x461, &x462, x460, x430, x454); fiat_p256_addcarryx_u32(&x463, &x464, x462, x432, x456); fiat_p256_addcarryx_u32(&x465, &x466, x464, x434, 0x0); fiat_p256_addcarryx_u32(&x467, &x468, x466, x436, 0x0); fiat_p256_addcarryx_u32(&x469, &x470, x468, x438, x426); fiat_p256_addcarryx_u32(&x471, &x472, x470, x440, x444); fiat_p256_addcarryx_u32(&x473, &x474, x472, x442, x445); x475 = ((uint32_t)x474 + x443); fiat_p256_mulx_u32(&x476, &x477, x6, (arg2[7])); fiat_p256_mulx_u32(&x478, &x479, x6, (arg2[6])); fiat_p256_mulx_u32(&x480, &x481, x6, (arg2[5])); fiat_p256_mulx_u32(&x482, &x483, x6, (arg2[4])); fiat_p256_mulx_u32(&x484, &x485, x6, (arg2[3])); fiat_p256_mulx_u32(&x486, &x487, x6, (arg2[2])); fiat_p256_mulx_u32(&x488, &x489, x6, (arg2[1])); fiat_p256_mulx_u32(&x490, &x491, x6, (arg2[0])); fiat_p256_addcarryx_u32(&x492, &x493, 0x0, x491, x488); fiat_p256_addcarryx_u32(&x494, &x495, x493, x489, x486); fiat_p256_addcarryx_u32(&x496, &x497, x495, x487, x484); fiat_p256_addcarryx_u32(&x498, &x499, x497, x485, x482); fiat_p256_addcarryx_u32(&x500, &x501, x499, x483, x480); fiat_p256_addcarryx_u32(&x502, &x503, x501, x481, x478); fiat_p256_addcarryx_u32(&x504, &x505, x503, x479, x476); x506 = (x505 + x477); fiat_p256_addcarryx_u32(&x507, &x508, 0x0, x459, x490); fiat_p256_addcarryx_u32(&x509, &x510, x508, x461, x492); fiat_p256_addcarryx_u32(&x511, &x512, x510, x463, x494); fiat_p256_addcarryx_u32(&x513, &x514, x512, x465, x496); fiat_p256_addcarryx_u32(&x515, &x516, x514, x467, x498); fiat_p256_addcarryx_u32(&x517, &x518, x516, x469, x500); fiat_p256_addcarryx_u32(&x519, &x520, x518, x471, x502); fiat_p256_addcarryx_u32(&x521, &x522, x520, x473, x504); fiat_p256_addcarryx_u32(&x523, &x524, x522, x475, x506); fiat_p256_mulx_u32(&x525, &x526, x507, UINT32_C(0xffffffff)); fiat_p256_mulx_u32(&x527, &x528, x507, UINT32_C(0xffffffff)); fiat_p256_mulx_u32(&x529, &x530, x507, UINT32_C(0xffffffff)); fiat_p256_mulx_u32(&x531, &x532, x507, UINT32_C(0xffffffff)); fiat_p256_addcarryx_u32(&x533, &x534, 0x0, x532, x529); fiat_p256_addcarryx_u32(&x535, &x536, x534, x530, x527); x537 = (x536 + x528); fiat_p256_addcarryx_u32(&x538, &x539, 0x0, x507, x531); fiat_p256_addcarryx_u32(&x540, &x541, x539, x509, x533); fiat_p256_addcarryx_u32(&x542, &x543, x541, x511, x535); fiat_p256_addcarryx_u32(&x544, &x545, x543, x513, x537); fiat_p256_addcarryx_u32(&x546, &x547, x545, x515, 0x0); fiat_p256_addcarryx_u32(&x548, &x549, x547, x517, 0x0); fiat_p256_addcarryx_u32(&x550, &x551, x549, x519, x507); fiat_p256_addcarryx_u32(&x552, &x553, x551, x521, x525); fiat_p256_addcarryx_u32(&x554, &x555, x553, x523, x526); x556 = ((uint32_t)x555 + x524); fiat_p256_mulx_u32(&x557, &x558, x7, (arg2[7])); fiat_p256_mulx_u32(&x559, &x560, x7, (arg2[6])); fiat_p256_mulx_u32(&x561, &x562, x7, (arg2[5])); fiat_p256_mulx_u32(&x563, &x564, x7, (arg2[4])); fiat_p256_mulx_u32(&x565, &x566, x7, (arg2[3])); fiat_p256_mulx_u32(&x567, &x568, x7, (arg2[2])); fiat_p256_mulx_u32(&x569, &x570, x7, (arg2[1])); fiat_p256_mulx_u32(&x571, &x572, x7, (arg2[0])); fiat_p256_addcarryx_u32(&x573, &x574, 0x0, x572, x569); fiat_p256_addcarryx_u32(&x575, &x576, x574, x570, x567); fiat_p256_addcarryx_u32(&x577, &x578, x576, x568, x565); fiat_p256_addcarryx_u32(&x579, &x580, x578, x566, x563); fiat_p256_addcarryx_u32(&x581, &x582, x580, x564, x561); fiat_p256_addcarryx_u32(&x583, &x584, x582, x562, x559); fiat_p256_addcarryx_u32(&x585, &x586, x584, x560, x557); x587 = (x586 + x558); fiat_p256_addcarryx_u32(&x588, &x589, 0x0, x540, x571); fiat_p256_addcarryx_u32(&x590, &x591, x589, x542, x573); fiat_p256_addcarryx_u32(&x592, &x593, x591, x544, x575); fiat_p256_addcarryx_u32(&x594, &x595, x593, x546, x577); fiat_p256_addcarryx_u32(&x596, &x597, x595, x548, x579); fiat_p256_addcarryx_u32(&x598, &x599, x597, x550, x581); fiat_p256_addcarryx_u32(&x600, &x601, x599, x552, x583); fiat_p256_addcarryx_u32(&x602, &x603, x601, x554, x585); fiat_p256_addcarryx_u32(&x604, &x605, x603, x556, x587); fiat_p256_mulx_u32(&x606, &x607, x588, UINT32_C(0xffffffff)); fiat_p256_mulx_u32(&x608, &x609, x588, UINT32_C(0xffffffff)); fiat_p256_mulx_u32(&x610, &x611, x588, UINT32_C(0xffffffff)); fiat_p256_mulx_u32(&x612, &x613, x588, UINT32_C(0xffffffff)); fiat_p256_addcarryx_u32(&x614, &x615, 0x0, x613, x610); fiat_p256_addcarryx_u32(&x616, &x617, x615, x611, x608); x618 = (x617 + x609); fiat_p256_addcarryx_u32(&x619, &x620, 0x0, x588, x612); fiat_p256_addcarryx_u32(&x621, &x622, x620, x590, x614); fiat_p256_addcarryx_u32(&x623, &x624, x622, x592, x616); fiat_p256_addcarryx_u32(&x625, &x626, x624, x594, x618); fiat_p256_addcarryx_u32(&x627, &x628, x626, x596, 0x0); fiat_p256_addcarryx_u32(&x629, &x630, x628, x598, 0x0); fiat_p256_addcarryx_u32(&x631, &x632, x630, x600, x588); fiat_p256_addcarryx_u32(&x633, &x634, x632, x602, x606); fiat_p256_addcarryx_u32(&x635, &x636, x634, x604, x607); x637 = ((uint32_t)x636 + x605); fiat_p256_subborrowx_u32(&x638, &x639, 0x0, x621, UINT32_C(0xffffffff)); fiat_p256_subborrowx_u32(&x640, &x641, x639, x623, UINT32_C(0xffffffff)); fiat_p256_subborrowx_u32(&x642, &x643, x641, x625, UINT32_C(0xffffffff)); fiat_p256_subborrowx_u32(&x644, &x645, x643, x627, 0x0); fiat_p256_subborrowx_u32(&x646, &x647, x645, x629, 0x0); fiat_p256_subborrowx_u32(&x648, &x649, x647, x631, 0x0); fiat_p256_subborrowx_u32(&x650, &x651, x649, x633, 0x1); fiat_p256_subborrowx_u32(&x652, &x653, x651, x635, UINT32_C(0xffffffff)); fiat_p256_subborrowx_u32(&x654, &x655, x653, x637, 0x0); fiat_p256_cmovznz_u32(&x656, x655, x638, x621); fiat_p256_cmovznz_u32(&x657, x655, x640, x623); fiat_p256_cmovznz_u32(&x658, x655, x642, x625); fiat_p256_cmovznz_u32(&x659, x655, x644, x627); fiat_p256_cmovznz_u32(&x660, x655, x646, x629); fiat_p256_cmovznz_u32(&x661, x655, x648, x631); fiat_p256_cmovznz_u32(&x662, x655, x650, x633); fiat_p256_cmovznz_u32(&x663, x655, x652, x635); out1[0] = x656; out1[1] = x657; out1[2] = x658; out1[3] = x659; out1[4] = x660; out1[5] = x661; out1[6] = x662; out1[7] = x663; } /* * The function fiat_p256_square squares a field element in the Montgomery domain. * * Preconditions: * 0 ≤ eval arg1 < m * Postconditions: * eval (from_montgomery out1) mod m = (eval (from_montgomery arg1) * eval (from_montgomery arg1)) mod m * 0 ≤ eval out1 < m * */ static void fiat_p256_square(fiat_p256_montgomery_domain_field_element out1, const fiat_p256_montgomery_domain_field_element arg1) { uint32_t x1; uint32_t x2; uint32_t x3; uint32_t x4; uint32_t x5; uint32_t x6; uint32_t x7; uint32_t x8; uint32_t x9; uint32_t x10; uint32_t x11; uint32_t x12; uint32_t x13; uint32_t x14; uint32_t x15; uint32_t x16; uint32_t x17; uint32_t x18; uint32_t x19; uint32_t x20; uint32_t x21; uint32_t x22; uint32_t x23; uint32_t x24; uint32_t x25; fiat_p256_uint1 x26; uint32_t x27; fiat_p256_uint1 x28; uint32_t x29; fiat_p256_uint1 x30; uint32_t x31; fiat_p256_uint1 x32; uint32_t x33; fiat_p256_uint1 x34; uint32_t x35; fiat_p256_uint1 x36; uint32_t x37; fiat_p256_uint1 x38; uint32_t x39; uint32_t x40; uint32_t x41; uint32_t x42; uint32_t x43; uint32_t x44; uint32_t x45; uint32_t x46; uint32_t x47; uint32_t x48; fiat_p256_uint1 x49; uint32_t x50; fiat_p256_uint1 x51; uint32_t x52; uint32_t x53; fiat_p256_uint1 x54; uint32_t x55; fiat_p256_uint1 x56; uint32_t x57; fiat_p256_uint1 x58; uint32_t x59; fiat_p256_uint1 x60; uint32_t x61; fiat_p256_uint1 x62; uint32_t x63; fiat_p256_uint1 x64; uint32_t x65; fiat_p256_uint1 x66; uint32_t x67; fiat_p256_uint1 x68; uint32_t x69; fiat_p256_uint1 x70; uint32_t x71; uint32_t x72; uint32_t x73; uint32_t x74; uint32_t x75; uint32_t x76; uint32_t x77; uint32_t x78; uint32_t x79; uint32_t x80; uint32_t x81; uint32_t x82; uint32_t x83; uint32_t x84; uint32_t x85; uint32_t x86; uint32_t x87; fiat_p256_uint1 x88; uint32_t x89; fiat_p256_uint1 x90; uint32_t x91; fiat_p256_uint1 x92; uint32_t x93; fiat_p256_uint1 x94; uint32_t x95; fiat_p256_uint1 x96; uint32_t x97; fiat_p256_uint1 x98; uint32_t x99; fiat_p256_uint1 x100; uint32_t x101; uint32_t x102; fiat_p256_uint1 x103; uint32_t x104; fiat_p256_uint1 x105; uint32_t x106; fiat_p256_uint1 x107; uint32_t x108; fiat_p256_uint1 x109; uint32_t x110; fiat_p256_uint1 x111; uint32_t x112; fiat_p256_uint1 x113; uint32_t x114; fiat_p256_uint1 x115; uint32_t x116; fiat_p256_uint1 x117; uint32_t x118; fiat_p256_uint1 x119; uint32_t x120; uint32_t x121; uint32_t x122; uint32_t x123; uint32_t x124; uint32_t x125; uint32_t x126; uint32_t x127; uint32_t x128; fiat_p256_uint1 x129; uint32_t x130; fiat_p256_uint1 x131; uint32_t x132; uint32_t x133; fiat_p256_uint1 x134; uint32_t x135; fiat_p256_uint1 x136; uint32_t x137; fiat_p256_uint1 x138; uint32_t x139; fiat_p256_uint1 x140; uint32_t x141; fiat_p256_uint1 x142; uint32_t x143; fiat_p256_uint1 x144; uint32_t x145; fiat_p256_uint1 x146; uint32_t x147; fiat_p256_uint1 x148; uint32_t x149; fiat_p256_uint1 x150; uint32_t x151; uint32_t x152; uint32_t x153; uint32_t x154; uint32_t x155; uint32_t x156; uint32_t x157; uint32_t x158; uint32_t x159; uint32_t x160; uint32_t x161; uint32_t x162; uint32_t x163; uint32_t x164; uint32_t x165; uint32_t x166; uint32_t x167; uint32_t x168; fiat_p256_uint1 x169; uint32_t x170; fiat_p256_uint1 x171; uint32_t x172; fiat_p256_uint1 x173; uint32_t x174; fiat_p256_uint1 x175; uint32_t x176; fiat_p256_uint1 x177; uint32_t x178; fiat_p256_uint1 x179; uint32_t x180; fiat_p256_uint1 x181; uint32_t x182; uint32_t x183; fiat_p256_uint1 x184; uint32_t x185; fiat_p256_uint1 x186; uint32_t x187; fiat_p256_uint1 x188; uint32_t x189; fiat_p256_uint1 x190; uint32_t x191; fiat_p256_uint1 x192; uint32_t x193; fiat_p256_uint1 x194; uint32_t x195; fiat_p256_uint1 x196; uint32_t x197; fiat_p256_uint1 x198; uint32_t x199; fiat_p256_uint1 x200; uint32_t x201; uint32_t x202; uint32_t x203; uint32_t x204; uint32_t x205; uint32_t x206; uint32_t x207; uint32_t x208; uint32_t x209; fiat_p256_uint1 x210; uint32_t x211; fiat_p256_uint1 x212; uint32_t x213; uint32_t x214; fiat_p256_uint1 x215; uint32_t x216; fiat_p256_uint1 x217; uint32_t x218; fiat_p256_uint1 x219; uint32_t x220; fiat_p256_uint1 x221; uint32_t x222; fiat_p256_uint1 x223; uint32_t x224; fiat_p256_uint1 x225; uint32_t x226; fiat_p256_uint1 x227; uint32_t x228; fiat_p256_uint1 x229; uint32_t x230; fiat_p256_uint1 x231; uint32_t x232; uint32_t x233; uint32_t x234; uint32_t x235; uint32_t x236; uint32_t x237; uint32_t x238; uint32_t x239; uint32_t x240; uint32_t x241; uint32_t x242; uint32_t x243; uint32_t x244; uint32_t x245; uint32_t x246; uint32_t x247; uint32_t x248; uint32_t x249; fiat_p256_uint1 x250; uint32_t x251; fiat_p256_uint1 x252; uint32_t x253; fiat_p256_uint1 x254; uint32_t x255; fiat_p256_uint1 x256; uint32_t x257; fiat_p256_uint1 x258; uint32_t x259; fiat_p256_uint1 x260; uint32_t x261; fiat_p256_uint1 x262; uint32_t x263; uint32_t x264; fiat_p256_uint1 x265; uint32_t x266; fiat_p256_uint1 x267; uint32_t x268; fiat_p256_uint1 x269; uint32_t x270; fiat_p256_uint1 x271; uint32_t x272; fiat_p256_uint1 x273; uint32_t x274; fiat_p256_uint1 x275; uint32_t x276; fiat_p256_uint1 x277; uint32_t x278; fiat_p256_uint1 x279; uint32_t x280; fiat_p256_uint1 x281; uint32_t x282; uint32_t x283; uint32_t x284; uint32_t x285; uint32_t x286; uint32_t x287; uint32_t x288; uint32_t x289; uint32_t x290; fiat_p256_uint1 x291; uint32_t x292; fiat_p256_uint1 x293; uint32_t x294; uint32_t x295; fiat_p256_uint1 x296; uint32_t x297; fiat_p256_uint1 x298; uint32_t x299; fiat_p256_uint1 x300; uint32_t x301; fiat_p256_uint1 x302; uint32_t x303; fiat_p256_uint1 x304; uint32_t x305; fiat_p256_uint1 x306; uint32_t x307; fiat_p256_uint1 x308; uint32_t x309; fiat_p256_uint1 x310; uint32_t x311; fiat_p256_uint1 x312; uint32_t x313; uint32_t x314; uint32_t x315; uint32_t x316; uint32_t x317; uint32_t x318; uint32_t x319; uint32_t x320; uint32_t x321; uint32_t x322; uint32_t x323; uint32_t x324; uint32_t x325; uint32_t x326; uint32_t x327; uint32_t x328; uint32_t x329; uint32_t x330; fiat_p256_uint1 x331; uint32_t x332; fiat_p256_uint1 x333; uint32_t x334; fiat_p256_uint1 x335; uint32_t x336; fiat_p256_uint1 x337; uint32_t x338; fiat_p256_uint1 x339; uint32_t x340; fiat_p256_uint1 x341; uint32_t x342; fiat_p256_uint1 x343; uint32_t x344; uint32_t x345; fiat_p256_uint1 x346; uint32_t x347; fiat_p256_uint1 x348; uint32_t x349; fiat_p256_uint1 x350; uint32_t x351; fiat_p256_uint1 x352; uint32_t x353; fiat_p256_uint1 x354; uint32_t x355; fiat_p256_uint1 x356; uint32_t x357; fiat_p256_uint1 x358; uint32_t x359; fiat_p256_uint1 x360; uint32_t x361; fiat_p256_uint1 x362; uint32_t x363; uint32_t x364; uint32_t x365; uint32_t x366; uint32_t x367; uint32_t x368; uint32_t x369; uint32_t x370; uint32_t x371; fiat_p256_uint1 x372; uint32_t x373; fiat_p256_uint1 x374; uint32_t x375; uint32_t x376; fiat_p256_uint1 x377; uint32_t x378; fiat_p256_uint1 x379; uint32_t x380; fiat_p256_uint1 x381; uint32_t x382; fiat_p256_uint1 x383; uint32_t x384; fiat_p256_uint1 x385; uint32_t x386; fiat_p256_uint1 x387; uint32_t x388; fiat_p256_uint1 x389; uint32_t x390; fiat_p256_uint1 x391; uint32_t x392; fiat_p256_uint1 x393; uint32_t x394; uint32_t x395; uint32_t x396; uint32_t x397; uint32_t x398; uint32_t x399; uint32_t x400; uint32_t x401; uint32_t x402; uint32_t x403; uint32_t x404; uint32_t x405; uint32_t x406; uint32_t x407; uint32_t x408; uint32_t x409; uint32_t x410; uint32_t x411; fiat_p256_uint1 x412; uint32_t x413; fiat_p256_uint1 x414; uint32_t x415; fiat_p256_uint1 x416; uint32_t x417; fiat_p256_uint1 x418; uint32_t x419; fiat_p256_uint1 x420; uint32_t x421; fiat_p256_uint1 x422; uint32_t x423; fiat_p256_uint1 x424; uint32_t x425; uint32_t x426; fiat_p256_uint1 x427; uint32_t x428; fiat_p256_uint1 x429; uint32_t x430; fiat_p256_uint1 x431; uint32_t x432; fiat_p256_uint1 x433; uint32_t x434; fiat_p256_uint1 x435; uint32_t x436; fiat_p256_uint1 x437; uint32_t x438; fiat_p256_uint1 x439; uint32_t x440; fiat_p256_uint1 x441; uint32_t x442; fiat_p256_uint1 x443; uint32_t x444; uint32_t x445; uint32_t x446; uint32_t x447; uint32_t x448; uint32_t x449; uint32_t x450; uint32_t x451; uint32_t x452; fiat_p256_uint1 x453; uint32_t x454; fiat_p256_uint1 x455; uint32_t x456; uint32_t x457; fiat_p256_uint1 x458; uint32_t x459; fiat_p256_uint1 x460; uint32_t x461; fiat_p256_uint1 x462; uint32_t x463; fiat_p256_uint1 x464; uint32_t x465; fiat_p256_uint1 x466; uint32_t x467; fiat_p256_uint1 x468; uint32_t x469; fiat_p256_uint1 x470; uint32_t x471; fiat_p256_uint1 x472; uint32_t x473; fiat_p256_uint1 x474; uint32_t x475; uint32_t x476; uint32_t x477; uint32_t x478; uint32_t x479; uint32_t x480; uint32_t x481; uint32_t x482; uint32_t x483; uint32_t x484; uint32_t x485; uint32_t x486; uint32_t x487; uint32_t x488; uint32_t x489; uint32_t x490; uint32_t x491; uint32_t x492; fiat_p256_uint1 x493; uint32_t x494; fiat_p256_uint1 x495; uint32_t x496; fiat_p256_uint1 x497; uint32_t x498; fiat_p256_uint1 x499; uint32_t x500; fiat_p256_uint1 x501; uint32_t x502; fiat_p256_uint1 x503; uint32_t x504; fiat_p256_uint1 x505; uint32_t x506; uint32_t x507; fiat_p256_uint1 x508; uint32_t x509; fiat_p256_uint1 x510; uint32_t x511; fiat_p256_uint1 x512; uint32_t x513; fiat_p256_uint1 x514; uint32_t x515; fiat_p256_uint1 x516; uint32_t x517; fiat_p256_uint1 x518; uint32_t x519; fiat_p256_uint1 x520; uint32_t x521; fiat_p256_uint1 x522; uint32_t x523; fiat_p256_uint1 x524; uint32_t x525; uint32_t x526; uint32_t x527; uint32_t x528; uint32_t x529; uint32_t x530; uint32_t x531; uint32_t x532; uint32_t x533; fiat_p256_uint1 x534; uint32_t x535; fiat_p256_uint1 x536; uint32_t x537; uint32_t x538; fiat_p256_uint1 x539; uint32_t x540; fiat_p256_uint1 x541; uint32_t x542; fiat_p256_uint1 x543; uint32_t x544; fiat_p256_uint1 x545; uint32_t x546; fiat_p256_uint1 x547; uint32_t x548; fiat_p256_uint1 x549; uint32_t x550; fiat_p256_uint1 x551; uint32_t x552; fiat_p256_uint1 x553; uint32_t x554; fiat_p256_uint1 x555; uint32_t x556; uint32_t x557; uint32_t x558; uint32_t x559; uint32_t x560; uint32_t x561; uint32_t x562; uint32_t x563; uint32_t x564; uint32_t x565; uint32_t x566; uint32_t x567; uint32_t x568; uint32_t x569; uint32_t x570; uint32_t x571; uint32_t x572; uint32_t x573; fiat_p256_uint1 x574; uint32_t x575; fiat_p256_uint1 x576; uint32_t x577; fiat_p256_uint1 x578; uint32_t x579; fiat_p256_uint1 x580; uint32_t x581; fiat_p256_uint1 x582; uint32_t x583; fiat_p256_uint1 x584; uint32_t x585; fiat_p256_uint1 x586; uint32_t x587; uint32_t x588; fiat_p256_uint1 x589; uint32_t x590; fiat_p256_uint1 x591; uint32_t x592; fiat_p256_uint1 x593; uint32_t x594; fiat_p256_uint1 x595; uint32_t x596; fiat_p256_uint1 x597; uint32_t x598; fiat_p256_uint1 x599; uint32_t x600; fiat_p256_uint1 x601; uint32_t x602; fiat_p256_uint1 x603; uint32_t x604; fiat_p256_uint1 x605; uint32_t x606; uint32_t x607; uint32_t x608; uint32_t x609; uint32_t x610; uint32_t x611; uint32_t x612; uint32_t x613; uint32_t x614; fiat_p256_uint1 x615; uint32_t x616; fiat_p256_uint1 x617; uint32_t x618; uint32_t x619; fiat_p256_uint1 x620; uint32_t x621; fiat_p256_uint1 x622; uint32_t x623; fiat_p256_uint1 x624; uint32_t x625; fiat_p256_uint1 x626; uint32_t x627; fiat_p256_uint1 x628; uint32_t x629; fiat_p256_uint1 x630; uint32_t x631; fiat_p256_uint1 x632; uint32_t x633; fiat_p256_uint1 x634; uint32_t x635; fiat_p256_uint1 x636; uint32_t x637; uint32_t x638; fiat_p256_uint1 x639; uint32_t x640; fiat_p256_uint1 x641; uint32_t x642; fiat_p256_uint1 x643; uint32_t x644; fiat_p256_uint1 x645; uint32_t x646; fiat_p256_uint1 x647; uint32_t x648; fiat_p256_uint1 x649; uint32_t x650; fiat_p256_uint1 x651; uint32_t x652; fiat_p256_uint1 x653; uint32_t x654; fiat_p256_uint1 x655; uint32_t x656; uint32_t x657; uint32_t x658; uint32_t x659; uint32_t x660; uint32_t x661; uint32_t x662; uint32_t x663; x1 = (arg1[1]); x2 = (arg1[2]); x3 = (arg1[3]); x4 = (arg1[4]); x5 = (arg1[5]); x6 = (arg1[6]); x7 = (arg1[7]); x8 = (arg1[0]); fiat_p256_mulx_u32(&x9, &x10, x8, (arg1[7])); fiat_p256_mulx_u32(&x11, &x12, x8, (arg1[6])); fiat_p256_mulx_u32(&x13, &x14, x8, (arg1[5])); fiat_p256_mulx_u32(&x15, &x16, x8, (arg1[4])); fiat_p256_mulx_u32(&x17, &x18, x8, (arg1[3])); fiat_p256_mulx_u32(&x19, &x20, x8, (arg1[2])); fiat_p256_mulx_u32(&x21, &x22, x8, (arg1[1])); fiat_p256_mulx_u32(&x23, &x24, x8, (arg1[0])); fiat_p256_addcarryx_u32(&x25, &x26, 0x0, x24, x21); fiat_p256_addcarryx_u32(&x27, &x28, x26, x22, x19); fiat_p256_addcarryx_u32(&x29, &x30, x28, x20, x17); fiat_p256_addcarryx_u32(&x31, &x32, x30, x18, x15); fiat_p256_addcarryx_u32(&x33, &x34, x32, x16, x13); fiat_p256_addcarryx_u32(&x35, &x36, x34, x14, x11); fiat_p256_addcarryx_u32(&x37, &x38, x36, x12, x9); x39 = (x38 + x10); fiat_p256_mulx_u32(&x40, &x41, x23, UINT32_C(0xffffffff)); fiat_p256_mulx_u32(&x42, &x43, x23, UINT32_C(0xffffffff)); fiat_p256_mulx_u32(&x44, &x45, x23, UINT32_C(0xffffffff)); fiat_p256_mulx_u32(&x46, &x47, x23, UINT32_C(0xffffffff)); fiat_p256_addcarryx_u32(&x48, &x49, 0x0, x47, x44); fiat_p256_addcarryx_u32(&x50, &x51, x49, x45, x42); x52 = (x51 + x43); fiat_p256_addcarryx_u32(&x53, &x54, 0x0, x23, x46); fiat_p256_addcarryx_u32(&x55, &x56, x54, x25, x48); fiat_p256_addcarryx_u32(&x57, &x58, x56, x27, x50); fiat_p256_addcarryx_u32(&x59, &x60, x58, x29, x52); fiat_p256_addcarryx_u32(&x61, &x62, x60, x31, 0x0); fiat_p256_addcarryx_u32(&x63, &x64, x62, x33, 0x0); fiat_p256_addcarryx_u32(&x65, &x66, x64, x35, x23); fiat_p256_addcarryx_u32(&x67, &x68, x66, x37, x40); fiat_p256_addcarryx_u32(&x69, &x70, x68, x39, x41); fiat_p256_mulx_u32(&x71, &x72, x1, (arg1[7])); fiat_p256_mulx_u32(&x73, &x74, x1, (arg1[6])); fiat_p256_mulx_u32(&x75, &x76, x1, (arg1[5])); fiat_p256_mulx_u32(&x77, &x78, x1, (arg1[4])); fiat_p256_mulx_u32(&x79, &x80, x1, (arg1[3])); fiat_p256_mulx_u32(&x81, &x82, x1, (arg1[2])); fiat_p256_mulx_u32(&x83, &x84, x1, (arg1[1])); fiat_p256_mulx_u32(&x85, &x86, x1, (arg1[0])); fiat_p256_addcarryx_u32(&x87, &x88, 0x0, x86, x83); fiat_p256_addcarryx_u32(&x89, &x90, x88, x84, x81); fiat_p256_addcarryx_u32(&x91, &x92, x90, x82, x79); fiat_p256_addcarryx_u32(&x93, &x94, x92, x80, x77); fiat_p256_addcarryx_u32(&x95, &x96, x94, x78, x75); fiat_p256_addcarryx_u32(&x97, &x98, x96, x76, x73); fiat_p256_addcarryx_u32(&x99, &x100, x98, x74, x71); x101 = (x100 + x72); fiat_p256_addcarryx_u32(&x102, &x103, 0x0, x55, x85); fiat_p256_addcarryx_u32(&x104, &x105, x103, x57, x87); fiat_p256_addcarryx_u32(&x106, &x107, x105, x59, x89); fiat_p256_addcarryx_u32(&x108, &x109, x107, x61, x91); fiat_p256_addcarryx_u32(&x110, &x111, x109, x63, x93); fiat_p256_addcarryx_u32(&x112, &x113, x111, x65, x95); fiat_p256_addcarryx_u32(&x114, &x115, x113, x67, x97); fiat_p256_addcarryx_u32(&x116, &x117, x115, x69, x99); fiat_p256_addcarryx_u32(&x118, &x119, x117, x70, x101); fiat_p256_mulx_u32(&x120, &x121, x102, UINT32_C(0xffffffff)); fiat_p256_mulx_u32(&x122, &x123, x102, UINT32_C(0xffffffff)); fiat_p256_mulx_u32(&x124, &x125, x102, UINT32_C(0xffffffff)); fiat_p256_mulx_u32(&x126, &x127, x102, UINT32_C(0xffffffff)); fiat_p256_addcarryx_u32(&x128, &x129, 0x0, x127, x124); fiat_p256_addcarryx_u32(&x130, &x131, x129, x125, x122); x132 = (x131 + x123); fiat_p256_addcarryx_u32(&x133, &x134, 0x0, x102, x126); fiat_p256_addcarryx_u32(&x135, &x136, x134, x104, x128); fiat_p256_addcarryx_u32(&x137, &x138, x136, x106, x130); fiat_p256_addcarryx_u32(&x139, &x140, x138, x108, x132); fiat_p256_addcarryx_u32(&x141, &x142, x140, x110, 0x0); fiat_p256_addcarryx_u32(&x143, &x144, x142, x112, 0x0); fiat_p256_addcarryx_u32(&x145, &x146, x144, x114, x102); fiat_p256_addcarryx_u32(&x147, &x148, x146, x116, x120); fiat_p256_addcarryx_u32(&x149, &x150, x148, x118, x121); x151 = ((uint32_t)x150 + x119); fiat_p256_mulx_u32(&x152, &x153, x2, (arg1[7])); fiat_p256_mulx_u32(&x154, &x155, x2, (arg1[6])); fiat_p256_mulx_u32(&x156, &x157, x2, (arg1[5])); fiat_p256_mulx_u32(&x158, &x159, x2, (arg1[4])); fiat_p256_mulx_u32(&x160, &x161, x2, (arg1[3])); fiat_p256_mulx_u32(&x162, &x163, x2, (arg1[2])); fiat_p256_mulx_u32(&x164, &x165, x2, (arg1[1])); fiat_p256_mulx_u32(&x166, &x167, x2, (arg1[0])); fiat_p256_addcarryx_u32(&x168, &x169, 0x0, x167, x164); fiat_p256_addcarryx_u32(&x170, &x171, x169, x165, x162); fiat_p256_addcarryx_u32(&x172, &x173, x171, x163, x160); fiat_p256_addcarryx_u32(&x174, &x175, x173, x161, x158); fiat_p256_addcarryx_u32(&x176, &x177, x175, x159, x156); fiat_p256_addcarryx_u32(&x178, &x179, x177, x157, x154); fiat_p256_addcarryx_u32(&x180, &x181, x179, x155, x152); x182 = (x181 + x153); fiat_p256_addcarryx_u32(&x183, &x184, 0x0, x135, x166); fiat_p256_addcarryx_u32(&x185, &x186, x184, x137, x168); fiat_p256_addcarryx_u32(&x187, &x188, x186, x139, x170); fiat_p256_addcarryx_u32(&x189, &x190, x188, x141, x172); fiat_p256_addcarryx_u32(&x191, &x192, x190, x143, x174); fiat_p256_addcarryx_u32(&x193, &x194, x192, x145, x176); fiat_p256_addcarryx_u32(&x195, &x196, x194, x147, x178); fiat_p256_addcarryx_u32(&x197, &x198, x196, x149, x180); fiat_p256_addcarryx_u32(&x199, &x200, x198, x151, x182); fiat_p256_mulx_u32(&x201, &x202, x183, UINT32_C(0xffffffff)); fiat_p256_mulx_u32(&x203, &x204, x183, UINT32_C(0xffffffff)); fiat_p256_mulx_u32(&x205, &x206, x183, UINT32_C(0xffffffff)); fiat_p256_mulx_u32(&x207, &x208, x183, UINT32_C(0xffffffff)); fiat_p256_addcarryx_u32(&x209, &x210, 0x0, x208, x205); fiat_p256_addcarryx_u32(&x211, &x212, x210, x206, x203); x213 = (x212 + x204); fiat_p256_addcarryx_u32(&x214, &x215, 0x0, x183, x207); fiat_p256_addcarryx_u32(&x216, &x217, x215, x185, x209); fiat_p256_addcarryx_u32(&x218, &x219, x217, x187, x211); fiat_p256_addcarryx_u32(&x220, &x221, x219, x189, x213); fiat_p256_addcarryx_u32(&x222, &x223, x221, x191, 0x0); fiat_p256_addcarryx_u32(&x224, &x225, x223, x193, 0x0); fiat_p256_addcarryx_u32(&x226, &x227, x225, x195, x183); fiat_p256_addcarryx_u32(&x228, &x229, x227, x197, x201); fiat_p256_addcarryx_u32(&x230, &x231, x229, x199, x202); x232 = ((uint32_t)x231 + x200); fiat_p256_mulx_u32(&x233, &x234, x3, (arg1[7])); fiat_p256_mulx_u32(&x235, &x236, x3, (arg1[6])); fiat_p256_mulx_u32(&x237, &x238, x3, (arg1[5])); fiat_p256_mulx_u32(&x239, &x240, x3, (arg1[4])); fiat_p256_mulx_u32(&x241, &x242, x3, (arg1[3])); fiat_p256_mulx_u32(&x243, &x244, x3, (arg1[2])); fiat_p256_mulx_u32(&x245, &x246, x3, (arg1[1])); fiat_p256_mulx_u32(&x247, &x248, x3, (arg1[0])); fiat_p256_addcarryx_u32(&x249, &x250, 0x0, x248, x245); fiat_p256_addcarryx_u32(&x251, &x252, x250, x246, x243); fiat_p256_addcarryx_u32(&x253, &x254, x252, x244, x241); fiat_p256_addcarryx_u32(&x255, &x256, x254, x242, x239); fiat_p256_addcarryx_u32(&x257, &x258, x256, x240, x237); fiat_p256_addcarryx_u32(&x259, &x260, x258, x238, x235); fiat_p256_addcarryx_u32(&x261, &x262, x260, x236, x233); x263 = (x262 + x234); fiat_p256_addcarryx_u32(&x264, &x265, 0x0, x216, x247); fiat_p256_addcarryx_u32(&x266, &x267, x265, x218, x249); fiat_p256_addcarryx_u32(&x268, &x269, x267, x220, x251); fiat_p256_addcarryx_u32(&x270, &x271, x269, x222, x253); fiat_p256_addcarryx_u32(&x272, &x273, x271, x224, x255); fiat_p256_addcarryx_u32(&x274, &x275, x273, x226, x257); fiat_p256_addcarryx_u32(&x276, &x277, x275, x228, x259); fiat_p256_addcarryx_u32(&x278, &x279, x277, x230, x261); fiat_p256_addcarryx_u32(&x280, &x281, x279, x232, x263); fiat_p256_mulx_u32(&x282, &x283, x264, UINT32_C(0xffffffff)); fiat_p256_mulx_u32(&x284, &x285, x264, UINT32_C(0xffffffff)); fiat_p256_mulx_u32(&x286, &x287, x264, UINT32_C(0xffffffff)); fiat_p256_mulx_u32(&x288, &x289, x264, UINT32_C(0xffffffff)); fiat_p256_addcarryx_u32(&x290, &x291, 0x0, x289, x286); fiat_p256_addcarryx_u32(&x292, &x293, x291, x287, x284); x294 = (x293 + x285); fiat_p256_addcarryx_u32(&x295, &x296, 0x0, x264, x288); fiat_p256_addcarryx_u32(&x297, &x298, x296, x266, x290); fiat_p256_addcarryx_u32(&x299, &x300, x298, x268, x292); fiat_p256_addcarryx_u32(&x301, &x302, x300, x270, x294); fiat_p256_addcarryx_u32(&x303, &x304, x302, x272, 0x0); fiat_p256_addcarryx_u32(&x305, &x306, x304, x274, 0x0); fiat_p256_addcarryx_u32(&x307, &x308, x306, x276, x264); fiat_p256_addcarryx_u32(&x309, &x310, x308, x278, x282); fiat_p256_addcarryx_u32(&x311, &x312, x310, x280, x283); x313 = ((uint32_t)x312 + x281); fiat_p256_mulx_u32(&x314, &x315, x4, (arg1[7])); fiat_p256_mulx_u32(&x316, &x317, x4, (arg1[6])); fiat_p256_mulx_u32(&x318, &x319, x4, (arg1[5])); fiat_p256_mulx_u32(&x320, &x321, x4, (arg1[4])); fiat_p256_mulx_u32(&x322, &x323, x4, (arg1[3])); fiat_p256_mulx_u32(&x324, &x325, x4, (arg1[2])); fiat_p256_mulx_u32(&x326, &x327, x4, (arg1[1])); fiat_p256_mulx_u32(&x328, &x329, x4, (arg1[0])); fiat_p256_addcarryx_u32(&x330, &x331, 0x0, x329, x326); fiat_p256_addcarryx_u32(&x332, &x333, x331, x327, x324); fiat_p256_addcarryx_u32(&x334, &x335, x333, x325, x322); fiat_p256_addcarryx_u32(&x336, &x337, x335, x323, x320); fiat_p256_addcarryx_u32(&x338, &x339, x337, x321, x318); fiat_p256_addcarryx_u32(&x340, &x341, x339, x319, x316); fiat_p256_addcarryx_u32(&x342, &x343, x341, x317, x314); x344 = (x343 + x315); fiat_p256_addcarryx_u32(&x345, &x346, 0x0, x297, x328); fiat_p256_addcarryx_u32(&x347, &x348, x346, x299, x330); fiat_p256_addcarryx_u32(&x349, &x350, x348, x301, x332); fiat_p256_addcarryx_u32(&x351, &x352, x350, x303, x334); fiat_p256_addcarryx_u32(&x353, &x354, x352, x305, x336); fiat_p256_addcarryx_u32(&x355, &x356, x354, x307, x338); fiat_p256_addcarryx_u32(&x357, &x358, x356, x309, x340); fiat_p256_addcarryx_u32(&x359, &x360, x358, x311, x342); fiat_p256_addcarryx_u32(&x361, &x362, x360, x313, x344); fiat_p256_mulx_u32(&x363, &x364, x345, UINT32_C(0xffffffff)); fiat_p256_mulx_u32(&x365, &x366, x345, UINT32_C(0xffffffff)); fiat_p256_mulx_u32(&x367, &x368, x345, UINT32_C(0xffffffff)); fiat_p256_mulx_u32(&x369, &x370, x345, UINT32_C(0xffffffff)); fiat_p256_addcarryx_u32(&x371, &x372, 0x0, x370, x367); fiat_p256_addcarryx_u32(&x373, &x374, x372, x368, x365); x375 = (x374 + x366); fiat_p256_addcarryx_u32(&x376, &x377, 0x0, x345, x369); fiat_p256_addcarryx_u32(&x378, &x379, x377, x347, x371); fiat_p256_addcarryx_u32(&x380, &x381, x379, x349, x373); fiat_p256_addcarryx_u32(&x382, &x383, x381, x351, x375); fiat_p256_addcarryx_u32(&x384, &x385, x383, x353, 0x0); fiat_p256_addcarryx_u32(&x386, &x387, x385, x355, 0x0); fiat_p256_addcarryx_u32(&x388, &x389, x387, x357, x345); fiat_p256_addcarryx_u32(&x390, &x391, x389, x359, x363); fiat_p256_addcarryx_u32(&x392, &x393, x391, x361, x364); x394 = ((uint32_t)x393 + x362); fiat_p256_mulx_u32(&x395, &x396, x5, (arg1[7])); fiat_p256_mulx_u32(&x397, &x398, x5, (arg1[6])); fiat_p256_mulx_u32(&x399, &x400, x5, (arg1[5])); fiat_p256_mulx_u32(&x401, &x402, x5, (arg1[4])); fiat_p256_mulx_u32(&x403, &x404, x5, (arg1[3])); fiat_p256_mulx_u32(&x405, &x406, x5, (arg1[2])); fiat_p256_mulx_u32(&x407, &x408, x5, (arg1[1])); fiat_p256_mulx_u32(&x409, &x410, x5, (arg1[0])); fiat_p256_addcarryx_u32(&x411, &x412, 0x0, x410, x407); fiat_p256_addcarryx_u32(&x413, &x414, x412, x408, x405); fiat_p256_addcarryx_u32(&x415, &x416, x414, x406, x403); fiat_p256_addcarryx_u32(&x417, &x418, x416, x404, x401); fiat_p256_addcarryx_u32(&x419, &x420, x418, x402, x399); fiat_p256_addcarryx_u32(&x421, &x422, x420, x400, x397); fiat_p256_addcarryx_u32(&x423, &x424, x422, x398, x395); x425 = (x424 + x396); fiat_p256_addcarryx_u32(&x426, &x427, 0x0, x378, x409); fiat_p256_addcarryx_u32(&x428, &x429, x427, x380, x411); fiat_p256_addcarryx_u32(&x430, &x431, x429, x382, x413); fiat_p256_addcarryx_u32(&x432, &x433, x431, x384, x415); fiat_p256_addcarryx_u32(&x434, &x435, x433, x386, x417); fiat_p256_addcarryx_u32(&x436, &x437, x435, x388, x419); fiat_p256_addcarryx_u32(&x438, &x439, x437, x390, x421); fiat_p256_addcarryx_u32(&x440, &x441, x439, x392, x423); fiat_p256_addcarryx_u32(&x442, &x443, x441, x394, x425); fiat_p256_mulx_u32(&x444, &x445, x426, UINT32_C(0xffffffff)); fiat_p256_mulx_u32(&x446, &x447, x426, UINT32_C(0xffffffff)); fiat_p256_mulx_u32(&x448, &x449, x426, UINT32_C(0xffffffff)); fiat_p256_mulx_u32(&x450, &x451, x426, UINT32_C(0xffffffff)); fiat_p256_addcarryx_u32(&x452, &x453, 0x0, x451, x448); fiat_p256_addcarryx_u32(&x454, &x455, x453, x449, x446); x456 = (x455 + x447); fiat_p256_addcarryx_u32(&x457, &x458, 0x0, x426, x450); fiat_p256_addcarryx_u32(&x459, &x460, x458, x428, x452); fiat_p256_addcarryx_u32(&x461, &x462, x460, x430, x454); fiat_p256_addcarryx_u32(&x463, &x464, x462, x432, x456); fiat_p256_addcarryx_u32(&x465, &x466, x464, x434, 0x0); fiat_p256_addcarryx_u32(&x467, &x468, x466, x436, 0x0); fiat_p256_addcarryx_u32(&x469, &x470, x468, x438, x426); fiat_p256_addcarryx_u32(&x471, &x472, x470, x440, x444); fiat_p256_addcarryx_u32(&x473, &x474, x472, x442, x445); x475 = ((uint32_t)x474 + x443); fiat_p256_mulx_u32(&x476, &x477, x6, (arg1[7])); fiat_p256_mulx_u32(&x478, &x479, x6, (arg1[6])); fiat_p256_mulx_u32(&x480, &x481, x6, (arg1[5])); fiat_p256_mulx_u32(&x482, &x483, x6, (arg1[4])); fiat_p256_mulx_u32(&x484, &x485, x6, (arg1[3])); fiat_p256_mulx_u32(&x486, &x487, x6, (arg1[2])); fiat_p256_mulx_u32(&x488, &x489, x6, (arg1[1])); fiat_p256_mulx_u32(&x490, &x491, x6, (arg1[0])); fiat_p256_addcarryx_u32(&x492, &x493, 0x0, x491, x488); fiat_p256_addcarryx_u32(&x494, &x495, x493, x489, x486); fiat_p256_addcarryx_u32(&x496, &x497, x495, x487, x484); fiat_p256_addcarryx_u32(&x498, &x499, x497, x485, x482); fiat_p256_addcarryx_u32(&x500, &x501, x499, x483, x480); fiat_p256_addcarryx_u32(&x502, &x503, x501, x481, x478); fiat_p256_addcarryx_u32(&x504, &x505, x503, x479, x476); x506 = (x505 + x477); fiat_p256_addcarryx_u32(&x507, &x508, 0x0, x459, x490); fiat_p256_addcarryx_u32(&x509, &x510, x508, x461, x492); fiat_p256_addcarryx_u32(&x511, &x512, x510, x463, x494); fiat_p256_addcarryx_u32(&x513, &x514, x512, x465, x496); fiat_p256_addcarryx_u32(&x515, &x516, x514, x467, x498); fiat_p256_addcarryx_u32(&x517, &x518, x516, x469, x500); fiat_p256_addcarryx_u32(&x519, &x520, x518, x471, x502); fiat_p256_addcarryx_u32(&x521, &x522, x520, x473, x504); fiat_p256_addcarryx_u32(&x523, &x524, x522, x475, x506); fiat_p256_mulx_u32(&x525, &x526, x507, UINT32_C(0xffffffff)); fiat_p256_mulx_u32(&x527, &x528, x507, UINT32_C(0xffffffff)); fiat_p256_mulx_u32(&x529, &x530, x507, UINT32_C(0xffffffff)); fiat_p256_mulx_u32(&x531, &x532, x507, UINT32_C(0xffffffff)); fiat_p256_addcarryx_u32(&x533, &x534, 0x0, x532, x529); fiat_p256_addcarryx_u32(&x535, &x536, x534, x530, x527); x537 = (x536 + x528); fiat_p256_addcarryx_u32(&x538, &x539, 0x0, x507, x531); fiat_p256_addcarryx_u32(&x540, &x541, x539, x509, x533); fiat_p256_addcarryx_u32(&x542, &x543, x541, x511, x535); fiat_p256_addcarryx_u32(&x544, &x545, x543, x513, x537); fiat_p256_addcarryx_u32(&x546, &x547, x545, x515, 0x0); fiat_p256_addcarryx_u32(&x548, &x549, x547, x517, 0x0); fiat_p256_addcarryx_u32(&x550, &x551, x549, x519, x507); fiat_p256_addcarryx_u32(&x552, &x553, x551, x521, x525); fiat_p256_addcarryx_u32(&x554, &x555, x553, x523, x526); x556 = ((uint32_t)x555 + x524); fiat_p256_mulx_u32(&x557, &x558, x7, (arg1[7])); fiat_p256_mulx_u32(&x559, &x560, x7, (arg1[6])); fiat_p256_mulx_u32(&x561, &x562, x7, (arg1[5])); fiat_p256_mulx_u32(&x563, &x564, x7, (arg1[4])); fiat_p256_mulx_u32(&x565, &x566, x7, (arg1[3])); fiat_p256_mulx_u32(&x567, &x568, x7, (arg1[2])); fiat_p256_mulx_u32(&x569, &x570, x7, (arg1[1])); fiat_p256_mulx_u32(&x571, &x572, x7, (arg1[0])); fiat_p256_addcarryx_u32(&x573, &x574, 0x0, x572, x569); fiat_p256_addcarryx_u32(&x575, &x576, x574, x570, x567); fiat_p256_addcarryx_u32(&x577, &x578, x576, x568, x565); fiat_p256_addcarryx_u32(&x579, &x580, x578, x566, x563); fiat_p256_addcarryx_u32(&x581, &x582, x580, x564, x561); fiat_p256_addcarryx_u32(&x583, &x584, x582, x562, x559); fiat_p256_addcarryx_u32(&x585, &x586, x584, x560, x557); x587 = (x586 + x558); fiat_p256_addcarryx_u32(&x588, &x589, 0x0, x540, x571); fiat_p256_addcarryx_u32(&x590, &x591, x589, x542, x573); fiat_p256_addcarryx_u32(&x592, &x593, x591, x544, x575); fiat_p256_addcarryx_u32(&x594, &x595, x593, x546, x577); fiat_p256_addcarryx_u32(&x596, &x597, x595, x548, x579); fiat_p256_addcarryx_u32(&x598, &x599, x597, x550, x581); fiat_p256_addcarryx_u32(&x600, &x601, x599, x552, x583); fiat_p256_addcarryx_u32(&x602, &x603, x601, x554, x585); fiat_p256_addcarryx_u32(&x604, &x605, x603, x556, x587); fiat_p256_mulx_u32(&x606, &x607, x588, UINT32_C(0xffffffff)); fiat_p256_mulx_u32(&x608, &x609, x588, UINT32_C(0xffffffff)); fiat_p256_mulx_u32(&x610, &x611, x588, UINT32_C(0xffffffff)); fiat_p256_mulx_u32(&x612, &x613, x588, UINT32_C(0xffffffff)); fiat_p256_addcarryx_u32(&x614, &x615, 0x0, x613, x610); fiat_p256_addcarryx_u32(&x616, &x617, x615, x611, x608); x618 = (x617 + x609); fiat_p256_addcarryx_u32(&x619, &x620, 0x0, x588, x612); fiat_p256_addcarryx_u32(&x621, &x622, x620, x590, x614); fiat_p256_addcarryx_u32(&x623, &x624, x622, x592, x616); fiat_p256_addcarryx_u32(&x625, &x626, x624, x594, x618); fiat_p256_addcarryx_u32(&x627, &x628, x626, x596, 0x0); fiat_p256_addcarryx_u32(&x629, &x630, x628, x598, 0x0); fiat_p256_addcarryx_u32(&x631, &x632, x630, x600, x588); fiat_p256_addcarryx_u32(&x633, &x634, x632, x602, x606); fiat_p256_addcarryx_u32(&x635, &x636, x634, x604, x607); x637 = ((uint32_t)x636 + x605); fiat_p256_subborrowx_u32(&x638, &x639, 0x0, x621, UINT32_C(0xffffffff)); fiat_p256_subborrowx_u32(&x640, &x641, x639, x623, UINT32_C(0xffffffff)); fiat_p256_subborrowx_u32(&x642, &x643, x641, x625, UINT32_C(0xffffffff)); fiat_p256_subborrowx_u32(&x644, &x645, x643, x627, 0x0); fiat_p256_subborrowx_u32(&x646, &x647, x645, x629, 0x0); fiat_p256_subborrowx_u32(&x648, &x649, x647, x631, 0x0); fiat_p256_subborrowx_u32(&x650, &x651, x649, x633, 0x1); fiat_p256_subborrowx_u32(&x652, &x653, x651, x635, UINT32_C(0xffffffff)); fiat_p256_subborrowx_u32(&x654, &x655, x653, x637, 0x0); fiat_p256_cmovznz_u32(&x656, x655, x638, x621); fiat_p256_cmovznz_u32(&x657, x655, x640, x623); fiat_p256_cmovznz_u32(&x658, x655, x642, x625); fiat_p256_cmovznz_u32(&x659, x655, x644, x627); fiat_p256_cmovznz_u32(&x660, x655, x646, x629); fiat_p256_cmovznz_u32(&x661, x655, x648, x631); fiat_p256_cmovznz_u32(&x662, x655, x650, x633); fiat_p256_cmovznz_u32(&x663, x655, x652, x635); out1[0] = x656; out1[1] = x657; out1[2] = x658; out1[3] = x659; out1[4] = x660; out1[5] = x661; out1[6] = x662; out1[7] = x663; } /* * The function fiat_p256_add adds two field elements in the Montgomery domain. * * Preconditions: * 0 ≤ eval arg1 < m * 0 ≤ eval arg2 < m * Postconditions: * eval (from_montgomery out1) mod m = (eval (from_montgomery arg1) + eval (from_montgomery arg2)) mod m * 0 ≤ eval out1 < m * */ static void fiat_p256_add(fiat_p256_montgomery_domain_field_element out1, const fiat_p256_montgomery_domain_field_element arg1, const fiat_p256_montgomery_domain_field_element arg2) { uint32_t x1; fiat_p256_uint1 x2; uint32_t x3; fiat_p256_uint1 x4; uint32_t x5; fiat_p256_uint1 x6; uint32_t x7; fiat_p256_uint1 x8; uint32_t x9; fiat_p256_uint1 x10; uint32_t x11; fiat_p256_uint1 x12; uint32_t x13; fiat_p256_uint1 x14; uint32_t x15; fiat_p256_uint1 x16; uint32_t x17; fiat_p256_uint1 x18; uint32_t x19; fiat_p256_uint1 x20; uint32_t x21; fiat_p256_uint1 x22; uint32_t x23; fiat_p256_uint1 x24; uint32_t x25; fiat_p256_uint1 x26; uint32_t x27; fiat_p256_uint1 x28; uint32_t x29; fiat_p256_uint1 x30; uint32_t x31; fiat_p256_uint1 x32; uint32_t x33; fiat_p256_uint1 x34; uint32_t x35; uint32_t x36; uint32_t x37; uint32_t x38; uint32_t x39; uint32_t x40; uint32_t x41; uint32_t x42; fiat_p256_addcarryx_u32(&x1, &x2, 0x0, (arg1[0]), (arg2[0])); fiat_p256_addcarryx_u32(&x3, &x4, x2, (arg1[1]), (arg2[1])); fiat_p256_addcarryx_u32(&x5, &x6, x4, (arg1[2]), (arg2[2])); fiat_p256_addcarryx_u32(&x7, &x8, x6, (arg1[3]), (arg2[3])); fiat_p256_addcarryx_u32(&x9, &x10, x8, (arg1[4]), (arg2[4])); fiat_p256_addcarryx_u32(&x11, &x12, x10, (arg1[5]), (arg2[5])); fiat_p256_addcarryx_u32(&x13, &x14, x12, (arg1[6]), (arg2[6])); fiat_p256_addcarryx_u32(&x15, &x16, x14, (arg1[7]), (arg2[7])); fiat_p256_subborrowx_u32(&x17, &x18, 0x0, x1, UINT32_C(0xffffffff)); fiat_p256_subborrowx_u32(&x19, &x20, x18, x3, UINT32_C(0xffffffff)); fiat_p256_subborrowx_u32(&x21, &x22, x20, x5, UINT32_C(0xffffffff)); fiat_p256_subborrowx_u32(&x23, &x24, x22, x7, 0x0); fiat_p256_subborrowx_u32(&x25, &x26, x24, x9, 0x0); fiat_p256_subborrowx_u32(&x27, &x28, x26, x11, 0x0); fiat_p256_subborrowx_u32(&x29, &x30, x28, x13, 0x1); fiat_p256_subborrowx_u32(&x31, &x32, x30, x15, UINT32_C(0xffffffff)); fiat_p256_subborrowx_u32(&x33, &x34, x32, x16, 0x0); fiat_p256_cmovznz_u32(&x35, x34, x17, x1); fiat_p256_cmovznz_u32(&x36, x34, x19, x3); fiat_p256_cmovznz_u32(&x37, x34, x21, x5); fiat_p256_cmovznz_u32(&x38, x34, x23, x7); fiat_p256_cmovznz_u32(&x39, x34, x25, x9); fiat_p256_cmovznz_u32(&x40, x34, x27, x11); fiat_p256_cmovznz_u32(&x41, x34, x29, x13); fiat_p256_cmovznz_u32(&x42, x34, x31, x15); out1[0] = x35; out1[1] = x36; out1[2] = x37; out1[3] = x38; out1[4] = x39; out1[5] = x40; out1[6] = x41; out1[7] = x42; } /* * The function fiat_p256_sub subtracts two field elements in the Montgomery domain. * * Preconditions: * 0 ≤ eval arg1 < m * 0 ≤ eval arg2 < m * Postconditions: * eval (from_montgomery out1) mod m = (eval (from_montgomery arg1) - eval (from_montgomery arg2)) mod m * 0 ≤ eval out1 < m * */ static void fiat_p256_sub(fiat_p256_montgomery_domain_field_element out1, const fiat_p256_montgomery_domain_field_element arg1, const fiat_p256_montgomery_domain_field_element arg2) { uint32_t x1; fiat_p256_uint1 x2; uint32_t x3; fiat_p256_uint1 x4; uint32_t x5; fiat_p256_uint1 x6; uint32_t x7; fiat_p256_uint1 x8; uint32_t x9; fiat_p256_uint1 x10; uint32_t x11; fiat_p256_uint1 x12; uint32_t x13; fiat_p256_uint1 x14; uint32_t x15; fiat_p256_uint1 x16; uint32_t x17; uint32_t x18; fiat_p256_uint1 x19; uint32_t x20; fiat_p256_uint1 x21; uint32_t x22; fiat_p256_uint1 x23; uint32_t x24; fiat_p256_uint1 x25; uint32_t x26; fiat_p256_uint1 x27; uint32_t x28; fiat_p256_uint1 x29; uint32_t x30; fiat_p256_uint1 x31; uint32_t x32; fiat_p256_uint1 x33; fiat_p256_subborrowx_u32(&x1, &x2, 0x0, (arg1[0]), (arg2[0])); fiat_p256_subborrowx_u32(&x3, &x4, x2, (arg1[1]), (arg2[1])); fiat_p256_subborrowx_u32(&x5, &x6, x4, (arg1[2]), (arg2[2])); fiat_p256_subborrowx_u32(&x7, &x8, x6, (arg1[3]), (arg2[3])); fiat_p256_subborrowx_u32(&x9, &x10, x8, (arg1[4]), (arg2[4])); fiat_p256_subborrowx_u32(&x11, &x12, x10, (arg1[5]), (arg2[5])); fiat_p256_subborrowx_u32(&x13, &x14, x12, (arg1[6]), (arg2[6])); fiat_p256_subborrowx_u32(&x15, &x16, x14, (arg1[7]), (arg2[7])); fiat_p256_cmovznz_u32(&x17, x16, 0x0, UINT32_C(0xffffffff)); fiat_p256_addcarryx_u32(&x18, &x19, 0x0, x1, x17); fiat_p256_addcarryx_u32(&x20, &x21, x19, x3, x17); fiat_p256_addcarryx_u32(&x22, &x23, x21, x5, x17); fiat_p256_addcarryx_u32(&x24, &x25, x23, x7, 0x0); fiat_p256_addcarryx_u32(&x26, &x27, x25, x9, 0x0); fiat_p256_addcarryx_u32(&x28, &x29, x27, x11, 0x0); fiat_p256_addcarryx_u32(&x30, &x31, x29, x13, (fiat_p256_uint1)(x17 & 0x1)); fiat_p256_addcarryx_u32(&x32, &x33, x31, x15, x17); out1[0] = x18; out1[1] = x20; out1[2] = x22; out1[3] = x24; out1[4] = x26; out1[5] = x28; out1[6] = x30; out1[7] = x32; } /* * The function fiat_p256_opp negates a field element in the Montgomery domain. * * Preconditions: * 0 ≤ eval arg1 < m * Postconditions: * eval (from_montgomery out1) mod m = -eval (from_montgomery arg1) mod m * 0 ≤ eval out1 < m * */ static void fiat_p256_opp(fiat_p256_montgomery_domain_field_element out1, const fiat_p256_montgomery_domain_field_element arg1) { uint32_t x1; fiat_p256_uint1 x2; uint32_t x3; fiat_p256_uint1 x4; uint32_t x5; fiat_p256_uint1 x6; uint32_t x7; fiat_p256_uint1 x8; uint32_t x9; fiat_p256_uint1 x10; uint32_t x11; fiat_p256_uint1 x12; uint32_t x13; fiat_p256_uint1 x14; uint32_t x15; fiat_p256_uint1 x16; uint32_t x17; uint32_t x18; fiat_p256_uint1 x19; uint32_t x20; fiat_p256_uint1 x21; uint32_t x22; fiat_p256_uint1 x23; uint32_t x24; fiat_p256_uint1 x25; uint32_t x26; fiat_p256_uint1 x27; uint32_t x28; fiat_p256_uint1 x29; uint32_t x30; fiat_p256_uint1 x31; uint32_t x32; fiat_p256_uint1 x33; fiat_p256_subborrowx_u32(&x1, &x2, 0x0, 0x0, (arg1[0])); fiat_p256_subborrowx_u32(&x3, &x4, x2, 0x0, (arg1[1])); fiat_p256_subborrowx_u32(&x5, &x6, x4, 0x0, (arg1[2])); fiat_p256_subborrowx_u32(&x7, &x8, x6, 0x0, (arg1[3])); fiat_p256_subborrowx_u32(&x9, &x10, x8, 0x0, (arg1[4])); fiat_p256_subborrowx_u32(&x11, &x12, x10, 0x0, (arg1[5])); fiat_p256_subborrowx_u32(&x13, &x14, x12, 0x0, (arg1[6])); fiat_p256_subborrowx_u32(&x15, &x16, x14, 0x0, (arg1[7])); fiat_p256_cmovznz_u32(&x17, x16, 0x0, UINT32_C(0xffffffff)); fiat_p256_addcarryx_u32(&x18, &x19, 0x0, x1, x17); fiat_p256_addcarryx_u32(&x20, &x21, x19, x3, x17); fiat_p256_addcarryx_u32(&x22, &x23, x21, x5, x17); fiat_p256_addcarryx_u32(&x24, &x25, x23, x7, 0x0); fiat_p256_addcarryx_u32(&x26, &x27, x25, x9, 0x0); fiat_p256_addcarryx_u32(&x28, &x29, x27, x11, 0x0); fiat_p256_addcarryx_u32(&x30, &x31, x29, x13, (fiat_p256_uint1)(x17 & 0x1)); fiat_p256_addcarryx_u32(&x32, &x33, x31, x15, x17); out1[0] = x18; out1[1] = x20; out1[2] = x22; out1[3] = x24; out1[4] = x26; out1[5] = x28; out1[6] = x30; out1[7] = x32; } /* * The function fiat_p256_from_montgomery translates a field element out of the Montgomery domain. * * Preconditions: * 0 ≤ eval arg1 < m * Postconditions: * eval out1 mod m = (eval arg1 * ((2^32)⁻¹ mod m)^8) mod m * 0 ≤ eval out1 < m * */ static void fiat_p256_from_montgomery(fiat_p256_non_montgomery_domain_field_element out1, const fiat_p256_montgomery_domain_field_element arg1) { uint32_t x1; uint32_t x2; uint32_t x3; uint32_t x4; uint32_t x5; uint32_t x6; uint32_t x7; uint32_t x8; uint32_t x9; uint32_t x10; fiat_p256_uint1 x11; uint32_t x12; fiat_p256_uint1 x13; uint32_t x14; fiat_p256_uint1 x15; uint32_t x16; fiat_p256_uint1 x17; uint32_t x18; fiat_p256_uint1 x19; uint32_t x20; fiat_p256_uint1 x21; uint32_t x22; fiat_p256_uint1 x23; uint32_t x24; fiat_p256_uint1 x25; uint32_t x26; fiat_p256_uint1 x27; uint32_t x28; uint32_t x29; uint32_t x30; uint32_t x31; uint32_t x32; uint32_t x33; uint32_t x34; uint32_t x35; uint32_t x36; fiat_p256_uint1 x37; uint32_t x38; fiat_p256_uint1 x39; uint32_t x40; fiat_p256_uint1 x41; uint32_t x42; fiat_p256_uint1 x43; uint32_t x44; fiat_p256_uint1 x45; uint32_t x46; fiat_p256_uint1 x47; uint32_t x48; fiat_p256_uint1 x49; uint32_t x50; fiat_p256_uint1 x51; uint32_t x52; fiat_p256_uint1 x53; uint32_t x54; fiat_p256_uint1 x55; uint32_t x56; fiat_p256_uint1 x57; uint32_t x58; uint32_t x59; uint32_t x60; uint32_t x61; uint32_t x62; uint32_t x63; uint32_t x64; uint32_t x65; uint32_t x66; fiat_p256_uint1 x67; uint32_t x68; fiat_p256_uint1 x69; uint32_t x70; fiat_p256_uint1 x71; uint32_t x72; fiat_p256_uint1 x73; uint32_t x74; fiat_p256_uint1 x75; uint32_t x76; fiat_p256_uint1 x77; uint32_t x78; fiat_p256_uint1 x79; uint32_t x80; fiat_p256_uint1 x81; uint32_t x82; fiat_p256_uint1 x83; uint32_t x84; fiat_p256_uint1 x85; uint32_t x86; fiat_p256_uint1 x87; uint32_t x88; fiat_p256_uint1 x89; uint32_t x90; fiat_p256_uint1 x91; uint32_t x92; fiat_p256_uint1 x93; uint32_t x94; fiat_p256_uint1 x95; uint32_t x96; fiat_p256_uint1 x97; uint32_t x98; fiat_p256_uint1 x99; uint32_t x100; fiat_p256_uint1 x101; uint32_t x102; uint32_t x103; uint32_t x104; uint32_t x105; uint32_t x106; uint32_t x107; uint32_t x108; uint32_t x109; uint32_t x110; fiat_p256_uint1 x111; uint32_t x112; fiat_p256_uint1 x113; uint32_t x114; fiat_p256_uint1 x115; uint32_t x116; fiat_p256_uint1 x117; uint32_t x118; fiat_p256_uint1 x119; uint32_t x120; fiat_p256_uint1 x121; uint32_t x122; fiat_p256_uint1 x123; uint32_t x124; fiat_p256_uint1 x125; uint32_t x126; fiat_p256_uint1 x127; uint32_t x128; fiat_p256_uint1 x129; uint32_t x130; fiat_p256_uint1 x131; uint32_t x132; fiat_p256_uint1 x133; uint32_t x134; fiat_p256_uint1 x135; uint32_t x136; fiat_p256_uint1 x137; uint32_t x138; fiat_p256_uint1 x139; uint32_t x140; fiat_p256_uint1 x141; uint32_t x142; fiat_p256_uint1 x143; uint32_t x144; fiat_p256_uint1 x145; uint32_t x146; fiat_p256_uint1 x147; uint32_t x148; uint32_t x149; uint32_t x150; uint32_t x151; uint32_t x152; uint32_t x153; uint32_t x154; uint32_t x155; uint32_t x156; fiat_p256_uint1 x157; uint32_t x158; fiat_p256_uint1 x159; uint32_t x160; fiat_p256_uint1 x161; uint32_t x162; fiat_p256_uint1 x163; uint32_t x164; fiat_p256_uint1 x165; uint32_t x166; fiat_p256_uint1 x167; uint32_t x168; fiat_p256_uint1 x169; uint32_t x170; fiat_p256_uint1 x171; uint32_t x172; fiat_p256_uint1 x173; uint32_t x174; fiat_p256_uint1 x175; uint32_t x176; fiat_p256_uint1 x177; uint32_t x178; fiat_p256_uint1 x179; uint32_t x180; fiat_p256_uint1 x181; uint32_t x182; fiat_p256_uint1 x183; uint32_t x184; fiat_p256_uint1 x185; uint32_t x186; fiat_p256_uint1 x187; uint32_t x188; fiat_p256_uint1 x189; uint32_t x190; fiat_p256_uint1 x191; uint32_t x192; fiat_p256_uint1 x193; uint32_t x194; uint32_t x195; uint32_t x196; uint32_t x197; uint32_t x198; uint32_t x199; uint32_t x200; uint32_t x201; uint32_t x202; fiat_p256_uint1 x203; uint32_t x204; fiat_p256_uint1 x205; uint32_t x206; fiat_p256_uint1 x207; uint32_t x208; fiat_p256_uint1 x209; uint32_t x210; fiat_p256_uint1 x211; uint32_t x212; fiat_p256_uint1 x213; uint32_t x214; fiat_p256_uint1 x215; uint32_t x216; fiat_p256_uint1 x217; uint32_t x218; fiat_p256_uint1 x219; uint32_t x220; fiat_p256_uint1 x221; uint32_t x222; fiat_p256_uint1 x223; uint32_t x224; fiat_p256_uint1 x225; uint32_t x226; fiat_p256_uint1 x227; uint32_t x228; fiat_p256_uint1 x229; uint32_t x230; fiat_p256_uint1 x231; uint32_t x232; fiat_p256_uint1 x233; uint32_t x234; fiat_p256_uint1 x235; uint32_t x236; fiat_p256_uint1 x237; uint32_t x238; fiat_p256_uint1 x239; uint32_t x240; uint32_t x241; uint32_t x242; uint32_t x243; uint32_t x244; uint32_t x245; uint32_t x246; uint32_t x247; uint32_t x248; fiat_p256_uint1 x249; uint32_t x250; fiat_p256_uint1 x251; uint32_t x252; fiat_p256_uint1 x253; uint32_t x254; fiat_p256_uint1 x255; uint32_t x256; fiat_p256_uint1 x257; uint32_t x258; fiat_p256_uint1 x259; uint32_t x260; fiat_p256_uint1 x261; uint32_t x262; fiat_p256_uint1 x263; uint32_t x264; fiat_p256_uint1 x265; uint32_t x266; fiat_p256_uint1 x267; uint32_t x268; fiat_p256_uint1 x269; uint32_t x270; fiat_p256_uint1 x271; uint32_t x272; fiat_p256_uint1 x273; uint32_t x274; fiat_p256_uint1 x275; uint32_t x276; fiat_p256_uint1 x277; uint32_t x278; fiat_p256_uint1 x279; uint32_t x280; fiat_p256_uint1 x281; uint32_t x282; fiat_p256_uint1 x283; uint32_t x284; fiat_p256_uint1 x285; uint32_t x286; uint32_t x287; uint32_t x288; uint32_t x289; uint32_t x290; uint32_t x291; uint32_t x292; uint32_t x293; uint32_t x294; fiat_p256_uint1 x295; uint32_t x296; fiat_p256_uint1 x297; uint32_t x298; fiat_p256_uint1 x299; uint32_t x300; fiat_p256_uint1 x301; uint32_t x302; fiat_p256_uint1 x303; uint32_t x304; fiat_p256_uint1 x305; uint32_t x306; fiat_p256_uint1 x307; uint32_t x308; fiat_p256_uint1 x309; uint32_t x310; fiat_p256_uint1 x311; uint32_t x312; fiat_p256_uint1 x313; uint32_t x314; fiat_p256_uint1 x315; uint32_t x316; fiat_p256_uint1 x317; uint32_t x318; fiat_p256_uint1 x319; uint32_t x320; fiat_p256_uint1 x321; uint32_t x322; fiat_p256_uint1 x323; uint32_t x324; fiat_p256_uint1 x325; uint32_t x326; fiat_p256_uint1 x327; uint32_t x328; fiat_p256_uint1 x329; uint32_t x330; fiat_p256_uint1 x331; uint32_t x332; fiat_p256_uint1 x333; uint32_t x334; uint32_t x335; uint32_t x336; uint32_t x337; uint32_t x338; uint32_t x339; uint32_t x340; uint32_t x341; x1 = (arg1[0]); fiat_p256_mulx_u32(&x2, &x3, x1, UINT32_C(0xffffffff)); fiat_p256_mulx_u32(&x4, &x5, x1, UINT32_C(0xffffffff)); fiat_p256_mulx_u32(&x6, &x7, x1, UINT32_C(0xffffffff)); fiat_p256_mulx_u32(&x8, &x9, x1, UINT32_C(0xffffffff)); fiat_p256_addcarryx_u32(&x10, &x11, 0x0, x9, x6); fiat_p256_addcarryx_u32(&x12, &x13, x11, x7, x4); fiat_p256_addcarryx_u32(&x14, &x15, 0x0, x1, x8); fiat_p256_addcarryx_u32(&x16, &x17, x15, 0x0, x10); fiat_p256_addcarryx_u32(&x18, &x19, x17, 0x0, x12); fiat_p256_addcarryx_u32(&x20, &x21, x19, 0x0, (x13 + x5)); fiat_p256_addcarryx_u32(&x22, &x23, 0x0, x16, (arg1[1])); fiat_p256_addcarryx_u32(&x24, &x25, x23, x18, 0x0); fiat_p256_addcarryx_u32(&x26, &x27, x25, x20, 0x0); fiat_p256_mulx_u32(&x28, &x29, x22, UINT32_C(0xffffffff)); fiat_p256_mulx_u32(&x30, &x31, x22, UINT32_C(0xffffffff)); fiat_p256_mulx_u32(&x32, &x33, x22, UINT32_C(0xffffffff)); fiat_p256_mulx_u32(&x34, &x35, x22, UINT32_C(0xffffffff)); fiat_p256_addcarryx_u32(&x36, &x37, 0x0, x35, x32); fiat_p256_addcarryx_u32(&x38, &x39, x37, x33, x30); fiat_p256_addcarryx_u32(&x40, &x41, 0x0, x22, x34); fiat_p256_addcarryx_u32(&x42, &x43, x41, x24, x36); fiat_p256_addcarryx_u32(&x44, &x45, x43, x26, x38); fiat_p256_addcarryx_u32(&x46, &x47, x45, ((uint32_t)x27 + x21), (x39 + x31)); fiat_p256_addcarryx_u32(&x48, &x49, 0x0, x2, x22); fiat_p256_addcarryx_u32(&x50, &x51, x49, x3, x28); fiat_p256_addcarryx_u32(&x52, &x53, 0x0, x42, (arg1[2])); fiat_p256_addcarryx_u32(&x54, &x55, x53, x44, 0x0); fiat_p256_addcarryx_u32(&x56, &x57, x55, x46, 0x0); fiat_p256_mulx_u32(&x58, &x59, x52, UINT32_C(0xffffffff)); fiat_p256_mulx_u32(&x60, &x61, x52, UINT32_C(0xffffffff)); fiat_p256_mulx_u32(&x62, &x63, x52, UINT32_C(0xffffffff)); fiat_p256_mulx_u32(&x64, &x65, x52, UINT32_C(0xffffffff)); fiat_p256_addcarryx_u32(&x66, &x67, 0x0, x65, x62); fiat_p256_addcarryx_u32(&x68, &x69, x67, x63, x60); fiat_p256_addcarryx_u32(&x70, &x71, 0x0, x52, x64); fiat_p256_addcarryx_u32(&x72, &x73, x71, x54, x66); fiat_p256_addcarryx_u32(&x74, &x75, x73, x56, x68); fiat_p256_addcarryx_u32(&x76, &x77, x75, ((uint32_t)x57 + x47), (x69 + x61)); fiat_p256_addcarryx_u32(&x78, &x79, x77, x1, 0x0); fiat_p256_addcarryx_u32(&x80, &x81, x79, x48, 0x0); fiat_p256_addcarryx_u32(&x82, &x83, x81, x50, x52); fiat_p256_addcarryx_u32(&x84, &x85, x83, (x51 + x29), x58); fiat_p256_addcarryx_u32(&x86, &x87, 0x0, x72, (arg1[3])); fiat_p256_addcarryx_u32(&x88, &x89, x87, x74, 0x0); fiat_p256_addcarryx_u32(&x90, &x91, x89, x76, 0x0); fiat_p256_addcarryx_u32(&x92, &x93, x91, x78, 0x0); fiat_p256_addcarryx_u32(&x94, &x95, x93, x80, 0x0); fiat_p256_addcarryx_u32(&x96, &x97, x95, x82, 0x0); fiat_p256_addcarryx_u32(&x98, &x99, x97, x84, 0x0); fiat_p256_addcarryx_u32(&x100, &x101, x99, (x85 + x59), 0x0); fiat_p256_mulx_u32(&x102, &x103, x86, UINT32_C(0xffffffff)); fiat_p256_mulx_u32(&x104, &x105, x86, UINT32_C(0xffffffff)); fiat_p256_mulx_u32(&x106, &x107, x86, UINT32_C(0xffffffff)); fiat_p256_mulx_u32(&x108, &x109, x86, UINT32_C(0xffffffff)); fiat_p256_addcarryx_u32(&x110, &x111, 0x0, x109, x106); fiat_p256_addcarryx_u32(&x112, &x113, x111, x107, x104); fiat_p256_addcarryx_u32(&x114, &x115, 0x0, x86, x108); fiat_p256_addcarryx_u32(&x116, &x117, x115, x88, x110); fiat_p256_addcarryx_u32(&x118, &x119, x117, x90, x112); fiat_p256_addcarryx_u32(&x120, &x121, x119, x92, (x113 + x105)); fiat_p256_addcarryx_u32(&x122, &x123, x121, x94, 0x0); fiat_p256_addcarryx_u32(&x124, &x125, x123, x96, 0x0); fiat_p256_addcarryx_u32(&x126, &x127, x125, x98, x86); fiat_p256_addcarryx_u32(&x128, &x129, x127, x100, x102); fiat_p256_addcarryx_u32(&x130, &x131, x129, x101, x103); fiat_p256_addcarryx_u32(&x132, &x133, 0x0, x116, (arg1[4])); fiat_p256_addcarryx_u32(&x134, &x135, x133, x118, 0x0); fiat_p256_addcarryx_u32(&x136, &x137, x135, x120, 0x0); fiat_p256_addcarryx_u32(&x138, &x139, x137, x122, 0x0); fiat_p256_addcarryx_u32(&x140, &x141, x139, x124, 0x0); fiat_p256_addcarryx_u32(&x142, &x143, x141, x126, 0x0); fiat_p256_addcarryx_u32(&x144, &x145, x143, x128, 0x0); fiat_p256_addcarryx_u32(&x146, &x147, x145, x130, 0x0); fiat_p256_mulx_u32(&x148, &x149, x132, UINT32_C(0xffffffff)); fiat_p256_mulx_u32(&x150, &x151, x132, UINT32_C(0xffffffff)); fiat_p256_mulx_u32(&x152, &x153, x132, UINT32_C(0xffffffff)); fiat_p256_mulx_u32(&x154, &x155, x132, UINT32_C(0xffffffff)); fiat_p256_addcarryx_u32(&x156, &x157, 0x0, x155, x152); fiat_p256_addcarryx_u32(&x158, &x159, x157, x153, x150); fiat_p256_addcarryx_u32(&x160, &x161, 0x0, x132, x154); fiat_p256_addcarryx_u32(&x162, &x163, x161, x134, x156); fiat_p256_addcarryx_u32(&x164, &x165, x163, x136, x158); fiat_p256_addcarryx_u32(&x166, &x167, x165, x138, (x159 + x151)); fiat_p256_addcarryx_u32(&x168, &x169, x167, x140, 0x0); fiat_p256_addcarryx_u32(&x170, &x171, x169, x142, 0x0); fiat_p256_addcarryx_u32(&x172, &x173, x171, x144, x132); fiat_p256_addcarryx_u32(&x174, &x175, x173, x146, x148); fiat_p256_addcarryx_u32(&x176, &x177, x175, ((uint32_t)x147 + x131), x149); fiat_p256_addcarryx_u32(&x178, &x179, 0x0, x162, (arg1[5])); fiat_p256_addcarryx_u32(&x180, &x181, x179, x164, 0x0); fiat_p256_addcarryx_u32(&x182, &x183, x181, x166, 0x0); fiat_p256_addcarryx_u32(&x184, &x185, x183, x168, 0x0); fiat_p256_addcarryx_u32(&x186, &x187, x185, x170, 0x0); fiat_p256_addcarryx_u32(&x188, &x189, x187, x172, 0x0); fiat_p256_addcarryx_u32(&x190, &x191, x189, x174, 0x0); fiat_p256_addcarryx_u32(&x192, &x193, x191, x176, 0x0); fiat_p256_mulx_u32(&x194, &x195, x178, UINT32_C(0xffffffff)); fiat_p256_mulx_u32(&x196, &x197, x178, UINT32_C(0xffffffff)); fiat_p256_mulx_u32(&x198, &x199, x178, UINT32_C(0xffffffff)); fiat_p256_mulx_u32(&x200, &x201, x178, UINT32_C(0xffffffff)); fiat_p256_addcarryx_u32(&x202, &x203, 0x0, x201, x198); fiat_p256_addcarryx_u32(&x204, &x205, x203, x199, x196); fiat_p256_addcarryx_u32(&x206, &x207, 0x0, x178, x200); fiat_p256_addcarryx_u32(&x208, &x209, x207, x180, x202); fiat_p256_addcarryx_u32(&x210, &x211, x209, x182, x204); fiat_p256_addcarryx_u32(&x212, &x213, x211, x184, (x205 + x197)); fiat_p256_addcarryx_u32(&x214, &x215, x213, x186, 0x0); fiat_p256_addcarryx_u32(&x216, &x217, x215, x188, 0x0); fiat_p256_addcarryx_u32(&x218, &x219, x217, x190, x178); fiat_p256_addcarryx_u32(&x220, &x221, x219, x192, x194); fiat_p256_addcarryx_u32(&x222, &x223, x221, ((uint32_t)x193 + x177), x195); fiat_p256_addcarryx_u32(&x224, &x225, 0x0, x208, (arg1[6])); fiat_p256_addcarryx_u32(&x226, &x227, x225, x210, 0x0); fiat_p256_addcarryx_u32(&x228, &x229, x227, x212, 0x0); fiat_p256_addcarryx_u32(&x230, &x231, x229, x214, 0x0); fiat_p256_addcarryx_u32(&x232, &x233, x231, x216, 0x0); fiat_p256_addcarryx_u32(&x234, &x235, x233, x218, 0x0); fiat_p256_addcarryx_u32(&x236, &x237, x235, x220, 0x0); fiat_p256_addcarryx_u32(&x238, &x239, x237, x222, 0x0); fiat_p256_mulx_u32(&x240, &x241, x224, UINT32_C(0xffffffff)); fiat_p256_mulx_u32(&x242, &x243, x224, UINT32_C(0xffffffff)); fiat_p256_mulx_u32(&x244, &x245, x224, UINT32_C(0xffffffff)); fiat_p256_mulx_u32(&x246, &x247, x224, UINT32_C(0xffffffff)); fiat_p256_addcarryx_u32(&x248, &x249, 0x0, x247, x244); fiat_p256_addcarryx_u32(&x250, &x251, x249, x245, x242); fiat_p256_addcarryx_u32(&x252, &x253, 0x0, x224, x246); fiat_p256_addcarryx_u32(&x254, &x255, x253, x226, x248); fiat_p256_addcarryx_u32(&x256, &x257, x255, x228, x250); fiat_p256_addcarryx_u32(&x258, &x259, x257, x230, (x251 + x243)); fiat_p256_addcarryx_u32(&x260, &x261, x259, x232, 0x0); fiat_p256_addcarryx_u32(&x262, &x263, x261, x234, 0x0); fiat_p256_addcarryx_u32(&x264, &x265, x263, x236, x224); fiat_p256_addcarryx_u32(&x266, &x267, x265, x238, x240); fiat_p256_addcarryx_u32(&x268, &x269, x267, ((uint32_t)x239 + x223), x241); fiat_p256_addcarryx_u32(&x270, &x271, 0x0, x254, (arg1[7])); fiat_p256_addcarryx_u32(&x272, &x273, x271, x256, 0x0); fiat_p256_addcarryx_u32(&x274, &x275, x273, x258, 0x0); fiat_p256_addcarryx_u32(&x276, &x277, x275, x260, 0x0); fiat_p256_addcarryx_u32(&x278, &x279, x277, x262, 0x0); fiat_p256_addcarryx_u32(&x280, &x281, x279, x264, 0x0); fiat_p256_addcarryx_u32(&x282, &x283, x281, x266, 0x0); fiat_p256_addcarryx_u32(&x284, &x285, x283, x268, 0x0); fiat_p256_mulx_u32(&x286, &x287, x270, UINT32_C(0xffffffff)); fiat_p256_mulx_u32(&x288, &x289, x270, UINT32_C(0xffffffff)); fiat_p256_mulx_u32(&x290, &x291, x270, UINT32_C(0xffffffff)); fiat_p256_mulx_u32(&x292, &x293, x270, UINT32_C(0xffffffff)); fiat_p256_addcarryx_u32(&x294, &x295, 0x0, x293, x290); fiat_p256_addcarryx_u32(&x296, &x297, x295, x291, x288); fiat_p256_addcarryx_u32(&x298, &x299, 0x0, x270, x292); fiat_p256_addcarryx_u32(&x300, &x301, x299, x272, x294); fiat_p256_addcarryx_u32(&x302, &x303, x301, x274, x296); fiat_p256_addcarryx_u32(&x304, &x305, x303, x276, (x297 + x289)); fiat_p256_addcarryx_u32(&x306, &x307, x305, x278, 0x0); fiat_p256_addcarryx_u32(&x308, &x309, x307, x280, 0x0); fiat_p256_addcarryx_u32(&x310, &x311, x309, x282, x270); fiat_p256_addcarryx_u32(&x312, &x313, x311, x284, x286); fiat_p256_addcarryx_u32(&x314, &x315, x313, ((uint32_t)x285 + x269), x287); fiat_p256_subborrowx_u32(&x316, &x317, 0x0, x300, UINT32_C(0xffffffff)); fiat_p256_subborrowx_u32(&x318, &x319, x317, x302, UINT32_C(0xffffffff)); fiat_p256_subborrowx_u32(&x320, &x321, x319, x304, UINT32_C(0xffffffff)); fiat_p256_subborrowx_u32(&x322, &x323, x321, x306, 0x0); fiat_p256_subborrowx_u32(&x324, &x325, x323, x308, 0x0); fiat_p256_subborrowx_u32(&x326, &x327, x325, x310, 0x0); fiat_p256_subborrowx_u32(&x328, &x329, x327, x312, 0x1); fiat_p256_subborrowx_u32(&x330, &x331, x329, x314, UINT32_C(0xffffffff)); fiat_p256_subborrowx_u32(&x332, &x333, x331, x315, 0x0); fiat_p256_cmovznz_u32(&x334, x333, x316, x300); fiat_p256_cmovznz_u32(&x335, x333, x318, x302); fiat_p256_cmovznz_u32(&x336, x333, x320, x304); fiat_p256_cmovznz_u32(&x337, x333, x322, x306); fiat_p256_cmovznz_u32(&x338, x333, x324, x308); fiat_p256_cmovznz_u32(&x339, x333, x326, x310); fiat_p256_cmovznz_u32(&x340, x333, x328, x312); fiat_p256_cmovznz_u32(&x341, x333, x330, x314); out1[0] = x334; out1[1] = x335; out1[2] = x336; out1[3] = x337; out1[4] = x338; out1[5] = x339; out1[6] = x340; out1[7] = x341; } /* * The function fiat_p256_to_montgomery translates a field element into the Montgomery domain. * * Preconditions: * 0 ≤ eval arg1 < m * Postconditions: * eval (from_montgomery out1) mod m = eval arg1 mod m * 0 ≤ eval out1 < m * */ static void fiat_p256_to_montgomery(fiat_p256_montgomery_domain_field_element out1, const fiat_p256_non_montgomery_domain_field_element arg1) { uint32_t x1; uint32_t x2; uint32_t x3; uint32_t x4; uint32_t x5; uint32_t x6; uint32_t x7; uint32_t x8; uint32_t x9; uint32_t x10; uint32_t x11; uint32_t x12; uint32_t x13; uint32_t x14; uint32_t x15; uint32_t x16; uint32_t x17; uint32_t x18; uint32_t x19; uint32_t x20; uint32_t x21; uint32_t x22; uint32_t x23; fiat_p256_uint1 x24; uint32_t x25; fiat_p256_uint1 x26; uint32_t x27; fiat_p256_uint1 x28; uint32_t x29; fiat_p256_uint1 x30; uint32_t x31; fiat_p256_uint1 x32; uint32_t x33; uint32_t x34; uint32_t x35; uint32_t x36; uint32_t x37; uint32_t x38; uint32_t x39; uint32_t x40; uint32_t x41; fiat_p256_uint1 x42; uint32_t x43; fiat_p256_uint1 x44; uint32_t x45; fiat_p256_uint1 x46; uint32_t x47; fiat_p256_uint1 x48; uint32_t x49; fiat_p256_uint1 x50; uint32_t x51; fiat_p256_uint1 x52; uint32_t x53; fiat_p256_uint1 x54; uint32_t x55; fiat_p256_uint1 x56; uint32_t x57; fiat_p256_uint1 x58; uint32_t x59; fiat_p256_uint1 x60; uint32_t x61; fiat_p256_uint1 x62; uint32_t x63; uint32_t x64; uint32_t x65; uint32_t x66; uint32_t x67; uint32_t x68; uint32_t x69; uint32_t x70; uint32_t x71; uint32_t x72; uint32_t x73; uint32_t x74; uint32_t x75; uint32_t x76; uint32_t x77; fiat_p256_uint1 x78; uint32_t x79; fiat_p256_uint1 x80; uint32_t x81; fiat_p256_uint1 x82; uint32_t x83; fiat_p256_uint1 x84; uint32_t x85; fiat_p256_uint1 x86; uint32_t x87; fiat_p256_uint1 x88; uint32_t x89; fiat_p256_uint1 x90; uint32_t x91; fiat_p256_uint1 x92; uint32_t x93; fiat_p256_uint1 x94; uint32_t x95; fiat_p256_uint1 x96; uint32_t x97; fiat_p256_uint1 x98; uint32_t x99; fiat_p256_uint1 x100; uint32_t x101; fiat_p256_uint1 x102; uint32_t x103; uint32_t x104; uint32_t x105; uint32_t x106; uint32_t x107; uint32_t x108; uint32_t x109; uint32_t x110; uint32_t x111; fiat_p256_uint1 x112; uint32_t x113; fiat_p256_uint1 x114; uint32_t x115; fiat_p256_uint1 x116; uint32_t x117; fiat_p256_uint1 x118; uint32_t x119; fiat_p256_uint1 x120; uint32_t x121; fiat_p256_uint1 x122; uint32_t x123; fiat_p256_uint1 x124; uint32_t x125; fiat_p256_uint1 x126; uint32_t x127; fiat_p256_uint1 x128; uint32_t x129; fiat_p256_uint1 x130; uint32_t x131; fiat_p256_uint1 x132; uint32_t x133; uint32_t x134; uint32_t x135; uint32_t x136; uint32_t x137; uint32_t x138; uint32_t x139; uint32_t x140; uint32_t x141; uint32_t x142; uint32_t x143; uint32_t x144; uint32_t x145; uint32_t x146; uint32_t x147; fiat_p256_uint1 x148; uint32_t x149; fiat_p256_uint1 x150; uint32_t x151; fiat_p256_uint1 x152; uint32_t x153; fiat_p256_uint1 x154; uint32_t x155; fiat_p256_uint1 x156; uint32_t x157; fiat_p256_uint1 x158; uint32_t x159; fiat_p256_uint1 x160; uint32_t x161; fiat_p256_uint1 x162; uint32_t x163; fiat_p256_uint1 x164; uint32_t x165; fiat_p256_uint1 x166; uint32_t x167; fiat_p256_uint1 x168; uint32_t x169; fiat_p256_uint1 x170; uint32_t x171; fiat_p256_uint1 x172; uint32_t x173; uint32_t x174; uint32_t x175; uint32_t x176; uint32_t x177; uint32_t x178; uint32_t x179; uint32_t x180; uint32_t x181; fiat_p256_uint1 x182; uint32_t x183; fiat_p256_uint1 x184; uint32_t x185; fiat_p256_uint1 x186; uint32_t x187; fiat_p256_uint1 x188; uint32_t x189; fiat_p256_uint1 x190; uint32_t x191; fiat_p256_uint1 x192; uint32_t x193; fiat_p256_uint1 x194; uint32_t x195; fiat_p256_uint1 x196; uint32_t x197; fiat_p256_uint1 x198; uint32_t x199; fiat_p256_uint1 x200; uint32_t x201; fiat_p256_uint1 x202; uint32_t x203; uint32_t x204; uint32_t x205; uint32_t x206; uint32_t x207; uint32_t x208; uint32_t x209; uint32_t x210; uint32_t x211; uint32_t x212; uint32_t x213; uint32_t x214; uint32_t x215; uint32_t x216; uint32_t x217; fiat_p256_uint1 x218; uint32_t x219; fiat_p256_uint1 x220; uint32_t x221; fiat_p256_uint1 x222; uint32_t x223; fiat_p256_uint1 x224; uint32_t x225; fiat_p256_uint1 x226; uint32_t x227; fiat_p256_uint1 x228; uint32_t x229; fiat_p256_uint1 x230; uint32_t x231; fiat_p256_uint1 x232; uint32_t x233; fiat_p256_uint1 x234; uint32_t x235; fiat_p256_uint1 x236; uint32_t x237; fiat_p256_uint1 x238; uint32_t x239; fiat_p256_uint1 x240; uint32_t x241; fiat_p256_uint1 x242; uint32_t x243; uint32_t x244; uint32_t x245; uint32_t x246; uint32_t x247; uint32_t x248; uint32_t x249; uint32_t x250; uint32_t x251; fiat_p256_uint1 x252; uint32_t x253; fiat_p256_uint1 x254; uint32_t x255; fiat_p256_uint1 x256; uint32_t x257; fiat_p256_uint1 x258; uint32_t x259; fiat_p256_uint1 x260; uint32_t x261; fiat_p256_uint1 x262; uint32_t x263; fiat_p256_uint1 x264; uint32_t x265; fiat_p256_uint1 x266; uint32_t x267; fiat_p256_uint1 x268; uint32_t x269; fiat_p256_uint1 x270; uint32_t x271; fiat_p256_uint1 x272; uint32_t x273; uint32_t x274; uint32_t x275; uint32_t x276; uint32_t x277; uint32_t x278; uint32_t x279; uint32_t x280; uint32_t x281; uint32_t x282; uint32_t x283; uint32_t x284; uint32_t x285; uint32_t x286; uint32_t x287; fiat_p256_uint1 x288; uint32_t x289; fiat_p256_uint1 x290; uint32_t x291; fiat_p256_uint1 x292; uint32_t x293; fiat_p256_uint1 x294; uint32_t x295; fiat_p256_uint1 x296; uint32_t x297; fiat_p256_uint1 x298; uint32_t x299; fiat_p256_uint1 x300; uint32_t x301; fiat_p256_uint1 x302; uint32_t x303; fiat_p256_uint1 x304; uint32_t x305; fiat_p256_uint1 x306; uint32_t x307; fiat_p256_uint1 x308; uint32_t x309; fiat_p256_uint1 x310; uint32_t x311; fiat_p256_uint1 x312; uint32_t x313; uint32_t x314; uint32_t x315; uint32_t x316; uint32_t x317; uint32_t x318; uint32_t x319; uint32_t x320; uint32_t x321; fiat_p256_uint1 x322; uint32_t x323; fiat_p256_uint1 x324; uint32_t x325; fiat_p256_uint1 x326; uint32_t x327; fiat_p256_uint1 x328; uint32_t x329; fiat_p256_uint1 x330; uint32_t x331; fiat_p256_uint1 x332; uint32_t x333; fiat_p256_uint1 x334; uint32_t x335; fiat_p256_uint1 x336; uint32_t x337; fiat_p256_uint1 x338; uint32_t x339; fiat_p256_uint1 x340; uint32_t x341; fiat_p256_uint1 x342; uint32_t x343; uint32_t x344; uint32_t x345; uint32_t x346; uint32_t x347; uint32_t x348; uint32_t x349; uint32_t x350; uint32_t x351; uint32_t x352; uint32_t x353; uint32_t x354; uint32_t x355; uint32_t x356; uint32_t x357; fiat_p256_uint1 x358; uint32_t x359; fiat_p256_uint1 x360; uint32_t x361; fiat_p256_uint1 x362; uint32_t x363; fiat_p256_uint1 x364; uint32_t x365; fiat_p256_uint1 x366; uint32_t x367; fiat_p256_uint1 x368; uint32_t x369; fiat_p256_uint1 x370; uint32_t x371; fiat_p256_uint1 x372; uint32_t x373; fiat_p256_uint1 x374; uint32_t x375; fiat_p256_uint1 x376; uint32_t x377; fiat_p256_uint1 x378; uint32_t x379; fiat_p256_uint1 x380; uint32_t x381; fiat_p256_uint1 x382; uint32_t x383; uint32_t x384; uint32_t x385; uint32_t x386; uint32_t x387; uint32_t x388; uint32_t x389; uint32_t x390; uint32_t x391; fiat_p256_uint1 x392; uint32_t x393; fiat_p256_uint1 x394; uint32_t x395; fiat_p256_uint1 x396; uint32_t x397; fiat_p256_uint1 x398; uint32_t x399; fiat_p256_uint1 x400; uint32_t x401; fiat_p256_uint1 x402; uint32_t x403; fiat_p256_uint1 x404; uint32_t x405; fiat_p256_uint1 x406; uint32_t x407; fiat_p256_uint1 x408; uint32_t x409; fiat_p256_uint1 x410; uint32_t x411; fiat_p256_uint1 x412; uint32_t x413; uint32_t x414; uint32_t x415; uint32_t x416; uint32_t x417; uint32_t x418; uint32_t x419; uint32_t x420; uint32_t x421; uint32_t x422; uint32_t x423; uint32_t x424; uint32_t x425; uint32_t x426; uint32_t x427; fiat_p256_uint1 x428; uint32_t x429; fiat_p256_uint1 x430; uint32_t x431; fiat_p256_uint1 x432; uint32_t x433; fiat_p256_uint1 x434; uint32_t x435; fiat_p256_uint1 x436; uint32_t x437; fiat_p256_uint1 x438; uint32_t x439; fiat_p256_uint1 x440; uint32_t x441; fiat_p256_uint1 x442; uint32_t x443; fiat_p256_uint1 x444; uint32_t x445; fiat_p256_uint1 x446; uint32_t x447; fiat_p256_uint1 x448; uint32_t x449; fiat_p256_uint1 x450; uint32_t x451; fiat_p256_uint1 x452; uint32_t x453; uint32_t x454; uint32_t x455; uint32_t x456; uint32_t x457; uint32_t x458; uint32_t x459; uint32_t x460; uint32_t x461; fiat_p256_uint1 x462; uint32_t x463; fiat_p256_uint1 x464; uint32_t x465; fiat_p256_uint1 x466; uint32_t x467; fiat_p256_uint1 x468; uint32_t x469; fiat_p256_uint1 x470; uint32_t x471; fiat_p256_uint1 x472; uint32_t x473; fiat_p256_uint1 x474; uint32_t x475; fiat_p256_uint1 x476; uint32_t x477; fiat_p256_uint1 x478; uint32_t x479; fiat_p256_uint1 x480; uint32_t x481; fiat_p256_uint1 x482; uint32_t x483; uint32_t x484; uint32_t x485; uint32_t x486; uint32_t x487; uint32_t x488; uint32_t x489; uint32_t x490; uint32_t x491; uint32_t x492; uint32_t x493; uint32_t x494; uint32_t x495; uint32_t x496; uint32_t x497; fiat_p256_uint1 x498; uint32_t x499; fiat_p256_uint1 x500; uint32_t x501; fiat_p256_uint1 x502; uint32_t x503; fiat_p256_uint1 x504; uint32_t x505; fiat_p256_uint1 x506; uint32_t x507; fiat_p256_uint1 x508; uint32_t x509; fiat_p256_uint1 x510; uint32_t x511; fiat_p256_uint1 x512; uint32_t x513; fiat_p256_uint1 x514; uint32_t x515; fiat_p256_uint1 x516; uint32_t x517; fiat_p256_uint1 x518; uint32_t x519; fiat_p256_uint1 x520; uint32_t x521; fiat_p256_uint1 x522; uint32_t x523; uint32_t x524; uint32_t x525; uint32_t x526; uint32_t x527; uint32_t x528; uint32_t x529; uint32_t x530; uint32_t x531; fiat_p256_uint1 x532; uint32_t x533; fiat_p256_uint1 x534; uint32_t x535; fiat_p256_uint1 x536; uint32_t x537; fiat_p256_uint1 x538; uint32_t x539; fiat_p256_uint1 x540; uint32_t x541; fiat_p256_uint1 x542; uint32_t x543; fiat_p256_uint1 x544; uint32_t x545; fiat_p256_uint1 x546; uint32_t x547; fiat_p256_uint1 x548; uint32_t x549; fiat_p256_uint1 x550; uint32_t x551; fiat_p256_uint1 x552; uint32_t x553; fiat_p256_uint1 x554; uint32_t x555; fiat_p256_uint1 x556; uint32_t x557; fiat_p256_uint1 x558; uint32_t x559; fiat_p256_uint1 x560; uint32_t x561; fiat_p256_uint1 x562; uint32_t x563; fiat_p256_uint1 x564; uint32_t x565; fiat_p256_uint1 x566; uint32_t x567; fiat_p256_uint1 x568; uint32_t x569; fiat_p256_uint1 x570; uint32_t x571; uint32_t x572; uint32_t x573; uint32_t x574; uint32_t x575; uint32_t x576; uint32_t x577; uint32_t x578; x1 = (arg1[1]); x2 = (arg1[2]); x3 = (arg1[3]); x4 = (arg1[4]); x5 = (arg1[5]); x6 = (arg1[6]); x7 = (arg1[7]); x8 = (arg1[0]); fiat_p256_mulx_u32(&x9, &x10, x8, 0x4); fiat_p256_mulx_u32(&x11, &x12, x8, UINT32_C(0xfffffffd)); fiat_p256_mulx_u32(&x13, &x14, x8, UINT32_C(0xffffffff)); fiat_p256_mulx_u32(&x15, &x16, x8, UINT32_C(0xfffffffe)); fiat_p256_mulx_u32(&x17, &x18, x8, UINT32_C(0xfffffffb)); fiat_p256_mulx_u32(&x19, &x20, x8, UINT32_C(0xffffffff)); fiat_p256_mulx_u32(&x21, &x22, x8, 0x3); fiat_p256_addcarryx_u32(&x23, &x24, 0x0, x20, x17); fiat_p256_addcarryx_u32(&x25, &x26, x24, x18, x15); fiat_p256_addcarryx_u32(&x27, &x28, x26, x16, x13); fiat_p256_addcarryx_u32(&x29, &x30, x28, x14, x11); fiat_p256_addcarryx_u32(&x31, &x32, x30, x12, x9); fiat_p256_mulx_u32(&x33, &x34, x21, UINT32_C(0xffffffff)); fiat_p256_mulx_u32(&x35, &x36, x21, UINT32_C(0xffffffff)); fiat_p256_mulx_u32(&x37, &x38, x21, UINT32_C(0xffffffff)); fiat_p256_mulx_u32(&x39, &x40, x21, UINT32_C(0xffffffff)); fiat_p256_addcarryx_u32(&x41, &x42, 0x0, x40, x37); fiat_p256_addcarryx_u32(&x43, &x44, x42, x38, x35); fiat_p256_addcarryx_u32(&x45, &x46, 0x0, x21, x39); fiat_p256_addcarryx_u32(&x47, &x48, x46, x22, x41); fiat_p256_addcarryx_u32(&x49, &x50, x48, x19, x43); fiat_p256_addcarryx_u32(&x51, &x52, x50, x23, (x44 + x36)); fiat_p256_addcarryx_u32(&x53, &x54, x52, x25, 0x0); fiat_p256_addcarryx_u32(&x55, &x56, x54, x27, 0x0); fiat_p256_addcarryx_u32(&x57, &x58, x56, x29, x21); fiat_p256_addcarryx_u32(&x59, &x60, x58, x31, x33); fiat_p256_addcarryx_u32(&x61, &x62, x60, (x32 + x10), x34); fiat_p256_mulx_u32(&x63, &x64, x1, 0x4); fiat_p256_mulx_u32(&x65, &x66, x1, UINT32_C(0xfffffffd)); fiat_p256_mulx_u32(&x67, &x68, x1, UINT32_C(0xffffffff)); fiat_p256_mulx_u32(&x69, &x70, x1, UINT32_C(0xfffffffe)); fiat_p256_mulx_u32(&x71, &x72, x1, UINT32_C(0xfffffffb)); fiat_p256_mulx_u32(&x73, &x74, x1, UINT32_C(0xffffffff)); fiat_p256_mulx_u32(&x75, &x76, x1, 0x3); fiat_p256_addcarryx_u32(&x77, &x78, 0x0, x74, x71); fiat_p256_addcarryx_u32(&x79, &x80, x78, x72, x69); fiat_p256_addcarryx_u32(&x81, &x82, x80, x70, x67); fiat_p256_addcarryx_u32(&x83, &x84, x82, x68, x65); fiat_p256_addcarryx_u32(&x85, &x86, x84, x66, x63); fiat_p256_addcarryx_u32(&x87, &x88, 0x0, x47, x75); fiat_p256_addcarryx_u32(&x89, &x90, x88, x49, x76); fiat_p256_addcarryx_u32(&x91, &x92, x90, x51, x73); fiat_p256_addcarryx_u32(&x93, &x94, x92, x53, x77); fiat_p256_addcarryx_u32(&x95, &x96, x94, x55, x79); fiat_p256_addcarryx_u32(&x97, &x98, x96, x57, x81); fiat_p256_addcarryx_u32(&x99, &x100, x98, x59, x83); fiat_p256_addcarryx_u32(&x101, &x102, x100, x61, x85); fiat_p256_mulx_u32(&x103, &x104, x87, UINT32_C(0xffffffff)); fiat_p256_mulx_u32(&x105, &x106, x87, UINT32_C(0xffffffff)); fiat_p256_mulx_u32(&x107, &x108, x87, UINT32_C(0xffffffff)); fiat_p256_mulx_u32(&x109, &x110, x87, UINT32_C(0xffffffff)); fiat_p256_addcarryx_u32(&x111, &x112, 0x0, x110, x107); fiat_p256_addcarryx_u32(&x113, &x114, x112, x108, x105); fiat_p256_addcarryx_u32(&x115, &x116, 0x0, x87, x109); fiat_p256_addcarryx_u32(&x117, &x118, x116, x89, x111); fiat_p256_addcarryx_u32(&x119, &x120, x118, x91, x113); fiat_p256_addcarryx_u32(&x121, &x122, x120, x93, (x114 + x106)); fiat_p256_addcarryx_u32(&x123, &x124, x122, x95, 0x0); fiat_p256_addcarryx_u32(&x125, &x126, x124, x97, 0x0); fiat_p256_addcarryx_u32(&x127, &x128, x126, x99, x87); fiat_p256_addcarryx_u32(&x129, &x130, x128, x101, x103); fiat_p256_addcarryx_u32(&x131, &x132, x130, (((uint32_t)x102 + x62) + (x86 + x64)), x104); fiat_p256_mulx_u32(&x133, &x134, x2, 0x4); fiat_p256_mulx_u32(&x135, &x136, x2, UINT32_C(0xfffffffd)); fiat_p256_mulx_u32(&x137, &x138, x2, UINT32_C(0xffffffff)); fiat_p256_mulx_u32(&x139, &x140, x2, UINT32_C(0xfffffffe)); fiat_p256_mulx_u32(&x141, &x142, x2, UINT32_C(0xfffffffb)); fiat_p256_mulx_u32(&x143, &x144, x2, UINT32_C(0xffffffff)); fiat_p256_mulx_u32(&x145, &x146, x2, 0x3); fiat_p256_addcarryx_u32(&x147, &x148, 0x0, x144, x141); fiat_p256_addcarryx_u32(&x149, &x150, x148, x142, x139); fiat_p256_addcarryx_u32(&x151, &x152, x150, x140, x137); fiat_p256_addcarryx_u32(&x153, &x154, x152, x138, x135); fiat_p256_addcarryx_u32(&x155, &x156, x154, x136, x133); fiat_p256_addcarryx_u32(&x157, &x158, 0x0, x117, x145); fiat_p256_addcarryx_u32(&x159, &x160, x158, x119, x146); fiat_p256_addcarryx_u32(&x161, &x162, x160, x121, x143); fiat_p256_addcarryx_u32(&x163, &x164, x162, x123, x147); fiat_p256_addcarryx_u32(&x165, &x166, x164, x125, x149); fiat_p256_addcarryx_u32(&x167, &x168, x166, x127, x151); fiat_p256_addcarryx_u32(&x169, &x170, x168, x129, x153); fiat_p256_addcarryx_u32(&x171, &x172, x170, x131, x155); fiat_p256_mulx_u32(&x173, &x174, x157, UINT32_C(0xffffffff)); fiat_p256_mulx_u32(&x175, &x176, x157, UINT32_C(0xffffffff)); fiat_p256_mulx_u32(&x177, &x178, x157, UINT32_C(0xffffffff)); fiat_p256_mulx_u32(&x179, &x180, x157, UINT32_C(0xffffffff)); fiat_p256_addcarryx_u32(&x181, &x182, 0x0, x180, x177); fiat_p256_addcarryx_u32(&x183, &x184, x182, x178, x175); fiat_p256_addcarryx_u32(&x185, &x186, 0x0, x157, x179); fiat_p256_addcarryx_u32(&x187, &x188, x186, x159, x181); fiat_p256_addcarryx_u32(&x189, &x190, x188, x161, x183); fiat_p256_addcarryx_u32(&x191, &x192, x190, x163, (x184 + x176)); fiat_p256_addcarryx_u32(&x193, &x194, x192, x165, 0x0); fiat_p256_addcarryx_u32(&x195, &x196, x194, x167, 0x0); fiat_p256_addcarryx_u32(&x197, &x198, x196, x169, x157); fiat_p256_addcarryx_u32(&x199, &x200, x198, x171, x173); fiat_p256_addcarryx_u32(&x201, &x202, x200, (((uint32_t)x172 + x132) + (x156 + x134)), x174); fiat_p256_mulx_u32(&x203, &x204, x3, 0x4); fiat_p256_mulx_u32(&x205, &x206, x3, UINT32_C(0xfffffffd)); fiat_p256_mulx_u32(&x207, &x208, x3, UINT32_C(0xffffffff)); fiat_p256_mulx_u32(&x209, &x210, x3, UINT32_C(0xfffffffe)); fiat_p256_mulx_u32(&x211, &x212, x3, UINT32_C(0xfffffffb)); fiat_p256_mulx_u32(&x213, &x214, x3, UINT32_C(0xffffffff)); fiat_p256_mulx_u32(&x215, &x216, x3, 0x3); fiat_p256_addcarryx_u32(&x217, &x218, 0x0, x214, x211); fiat_p256_addcarryx_u32(&x219, &x220, x218, x212, x209); fiat_p256_addcarryx_u32(&x221, &x222, x220, x210, x207); fiat_p256_addcarryx_u32(&x223, &x224, x222, x208, x205); fiat_p256_addcarryx_u32(&x225, &x226, x224, x206, x203); fiat_p256_addcarryx_u32(&x227, &x228, 0x0, x187, x215); fiat_p256_addcarryx_u32(&x229, &x230, x228, x189, x216); fiat_p256_addcarryx_u32(&x231, &x232, x230, x191, x213); fiat_p256_addcarryx_u32(&x233, &x234, x232, x193, x217); fiat_p256_addcarryx_u32(&x235, &x236, x234, x195, x219); fiat_p256_addcarryx_u32(&x237, &x238, x236, x197, x221); fiat_p256_addcarryx_u32(&x239, &x240, x238, x199, x223); fiat_p256_addcarryx_u32(&x241, &x242, x240, x201, x225); fiat_p256_mulx_u32(&x243, &x244, x227, UINT32_C(0xffffffff)); fiat_p256_mulx_u32(&x245, &x246, x227, UINT32_C(0xffffffff)); fiat_p256_mulx_u32(&x247, &x248, x227, UINT32_C(0xffffffff)); fiat_p256_mulx_u32(&x249, &x250, x227, UINT32_C(0xffffffff)); fiat_p256_addcarryx_u32(&x251, &x252, 0x0, x250, x247); fiat_p256_addcarryx_u32(&x253, &x254, x252, x248, x245); fiat_p256_addcarryx_u32(&x255, &x256, 0x0, x227, x249); fiat_p256_addcarryx_u32(&x257, &x258, x256, x229, x251); fiat_p256_addcarryx_u32(&x259, &x260, x258, x231, x253); fiat_p256_addcarryx_u32(&x261, &x262, x260, x233, (x254 + x246)); fiat_p256_addcarryx_u32(&x263, &x264, x262, x235, 0x0); fiat_p256_addcarryx_u32(&x265, &x266, x264, x237, 0x0); fiat_p256_addcarryx_u32(&x267, &x268, x266, x239, x227); fiat_p256_addcarryx_u32(&x269, &x270, x268, x241, x243); fiat_p256_addcarryx_u32(&x271, &x272, x270, (((uint32_t)x242 + x202) + (x226 + x204)), x244); fiat_p256_mulx_u32(&x273, &x274, x4, 0x4); fiat_p256_mulx_u32(&x275, &x276, x4, UINT32_C(0xfffffffd)); fiat_p256_mulx_u32(&x277, &x278, x4, UINT32_C(0xffffffff)); fiat_p256_mulx_u32(&x279, &x280, x4, UINT32_C(0xfffffffe)); fiat_p256_mulx_u32(&x281, &x282, x4, UINT32_C(0xfffffffb)); fiat_p256_mulx_u32(&x283, &x284, x4, UINT32_C(0xffffffff)); fiat_p256_mulx_u32(&x285, &x286, x4, 0x3); fiat_p256_addcarryx_u32(&x287, &x288, 0x0, x284, x281); fiat_p256_addcarryx_u32(&x289, &x290, x288, x282, x279); fiat_p256_addcarryx_u32(&x291, &x292, x290, x280, x277); fiat_p256_addcarryx_u32(&x293, &x294, x292, x278, x275); fiat_p256_addcarryx_u32(&x295, &x296, x294, x276, x273); fiat_p256_addcarryx_u32(&x297, &x298, 0x0, x257, x285); fiat_p256_addcarryx_u32(&x299, &x300, x298, x259, x286); fiat_p256_addcarryx_u32(&x301, &x302, x300, x261, x283); fiat_p256_addcarryx_u32(&x303, &x304, x302, x263, x287); fiat_p256_addcarryx_u32(&x305, &x306, x304, x265, x289); fiat_p256_addcarryx_u32(&x307, &x308, x306, x267, x291); fiat_p256_addcarryx_u32(&x309, &x310, x308, x269, x293); fiat_p256_addcarryx_u32(&x311, &x312, x310, x271, x295); fiat_p256_mulx_u32(&x313, &x314, x297, UINT32_C(0xffffffff)); fiat_p256_mulx_u32(&x315, &x316, x297, UINT32_C(0xffffffff)); fiat_p256_mulx_u32(&x317, &x318, x297, UINT32_C(0xffffffff)); fiat_p256_mulx_u32(&x319, &x320, x297, UINT32_C(0xffffffff)); fiat_p256_addcarryx_u32(&x321, &x322, 0x0, x320, x317); fiat_p256_addcarryx_u32(&x323, &x324, x322, x318, x315); fiat_p256_addcarryx_u32(&x325, &x326, 0x0, x297, x319); fiat_p256_addcarryx_u32(&x327, &x328, x326, x299, x321); fiat_p256_addcarryx_u32(&x329, &x330, x328, x301, x323); fiat_p256_addcarryx_u32(&x331, &x332, x330, x303, (x324 + x316)); fiat_p256_addcarryx_u32(&x333, &x334, x332, x305, 0x0); fiat_p256_addcarryx_u32(&x335, &x336, x334, x307, 0x0); fiat_p256_addcarryx_u32(&x337, &x338, x336, x309, x297); fiat_p256_addcarryx_u32(&x339, &x340, x338, x311, x313); fiat_p256_addcarryx_u32(&x341, &x342, x340, (((uint32_t)x312 + x272) + (x296 + x274)), x314); fiat_p256_mulx_u32(&x343, &x344, x5, 0x4); fiat_p256_mulx_u32(&x345, &x346, x5, UINT32_C(0xfffffffd)); fiat_p256_mulx_u32(&x347, &x348, x5, UINT32_C(0xffffffff)); fiat_p256_mulx_u32(&x349, &x350, x5, UINT32_C(0xfffffffe)); fiat_p256_mulx_u32(&x351, &x352, x5, UINT32_C(0xfffffffb)); fiat_p256_mulx_u32(&x353, &x354, x5, UINT32_C(0xffffffff)); fiat_p256_mulx_u32(&x355, &x356, x5, 0x3); fiat_p256_addcarryx_u32(&x357, &x358, 0x0, x354, x351); fiat_p256_addcarryx_u32(&x359, &x360, x358, x352, x349); fiat_p256_addcarryx_u32(&x361, &x362, x360, x350, x347); fiat_p256_addcarryx_u32(&x363, &x364, x362, x348, x345); fiat_p256_addcarryx_u32(&x365, &x366, x364, x346, x343); fiat_p256_addcarryx_u32(&x367, &x368, 0x0, x327, x355); fiat_p256_addcarryx_u32(&x369, &x370, x368, x329, x356); fiat_p256_addcarryx_u32(&x371, &x372, x370, x331, x353); fiat_p256_addcarryx_u32(&x373, &x374, x372, x333, x357); fiat_p256_addcarryx_u32(&x375, &x376, x374, x335, x359); fiat_p256_addcarryx_u32(&x377, &x378, x376, x337, x361); fiat_p256_addcarryx_u32(&x379, &x380, x378, x339, x363); fiat_p256_addcarryx_u32(&x381, &x382, x380, x341, x365); fiat_p256_mulx_u32(&x383, &x384, x367, UINT32_C(0xffffffff)); fiat_p256_mulx_u32(&x385, &x386, x367, UINT32_C(0xffffffff)); fiat_p256_mulx_u32(&x387, &x388, x367, UINT32_C(0xffffffff)); fiat_p256_mulx_u32(&x389, &x390, x367, UINT32_C(0xffffffff)); fiat_p256_addcarryx_u32(&x391, &x392, 0x0, x390, x387); fiat_p256_addcarryx_u32(&x393, &x394, x392, x388, x385); fiat_p256_addcarryx_u32(&x395, &x396, 0x0, x367, x389); fiat_p256_addcarryx_u32(&x397, &x398, x396, x369, x391); fiat_p256_addcarryx_u32(&x399, &x400, x398, x371, x393); fiat_p256_addcarryx_u32(&x401, &x402, x400, x373, (x394 + x386)); fiat_p256_addcarryx_u32(&x403, &x404, x402, x375, 0x0); fiat_p256_addcarryx_u32(&x405, &x406, x404, x377, 0x0); fiat_p256_addcarryx_u32(&x407, &x408, x406, x379, x367); fiat_p256_addcarryx_u32(&x409, &x410, x408, x381, x383); fiat_p256_addcarryx_u32(&x411, &x412, x410, (((uint32_t)x382 + x342) + (x366 + x344)), x384); fiat_p256_mulx_u32(&x413, &x414, x6, 0x4); fiat_p256_mulx_u32(&x415, &x416, x6, UINT32_C(0xfffffffd)); fiat_p256_mulx_u32(&x417, &x418, x6, UINT32_C(0xffffffff)); fiat_p256_mulx_u32(&x419, &x420, x6, UINT32_C(0xfffffffe)); fiat_p256_mulx_u32(&x421, &x422, x6, UINT32_C(0xfffffffb)); fiat_p256_mulx_u32(&x423, &x424, x6, UINT32_C(0xffffffff)); fiat_p256_mulx_u32(&x425, &x426, x6, 0x3); fiat_p256_addcarryx_u32(&x427, &x428, 0x0, x424, x421); fiat_p256_addcarryx_u32(&x429, &x430, x428, x422, x419); fiat_p256_addcarryx_u32(&x431, &x432, x430, x420, x417); fiat_p256_addcarryx_u32(&x433, &x434, x432, x418, x415); fiat_p256_addcarryx_u32(&x435, &x436, x434, x416, x413); fiat_p256_addcarryx_u32(&x437, &x438, 0x0, x397, x425); fiat_p256_addcarryx_u32(&x439, &x440, x438, x399, x426); fiat_p256_addcarryx_u32(&x441, &x442, x440, x401, x423); fiat_p256_addcarryx_u32(&x443, &x444, x442, x403, x427); fiat_p256_addcarryx_u32(&x445, &x446, x444, x405, x429); fiat_p256_addcarryx_u32(&x447, &x448, x446, x407, x431); fiat_p256_addcarryx_u32(&x449, &x450, x448, x409, x433); fiat_p256_addcarryx_u32(&x451, &x452, x450, x411, x435); fiat_p256_mulx_u32(&x453, &x454, x437, UINT32_C(0xffffffff)); fiat_p256_mulx_u32(&x455, &x456, x437, UINT32_C(0xffffffff)); fiat_p256_mulx_u32(&x457, &x458, x437, UINT32_C(0xffffffff)); fiat_p256_mulx_u32(&x459, &x460, x437, UINT32_C(0xffffffff)); fiat_p256_addcarryx_u32(&x461, &x462, 0x0, x460, x457); fiat_p256_addcarryx_u32(&x463, &x464, x462, x458, x455); fiat_p256_addcarryx_u32(&x465, &x466, 0x0, x437, x459); fiat_p256_addcarryx_u32(&x467, &x468, x466, x439, x461); fiat_p256_addcarryx_u32(&x469, &x470, x468, x441, x463); fiat_p256_addcarryx_u32(&x471, &x472, x470, x443, (x464 + x456)); fiat_p256_addcarryx_u32(&x473, &x474, x472, x445, 0x0); fiat_p256_addcarryx_u32(&x475, &x476, x474, x447, 0x0); fiat_p256_addcarryx_u32(&x477, &x478, x476, x449, x437); fiat_p256_addcarryx_u32(&x479, &x480, x478, x451, x453); fiat_p256_addcarryx_u32(&x481, &x482, x480, (((uint32_t)x452 + x412) + (x436 + x414)), x454); fiat_p256_mulx_u32(&x483, &x484, x7, 0x4); fiat_p256_mulx_u32(&x485, &x486, x7, UINT32_C(0xfffffffd)); fiat_p256_mulx_u32(&x487, &x488, x7, UINT32_C(0xffffffff)); fiat_p256_mulx_u32(&x489, &x490, x7, UINT32_C(0xfffffffe)); fiat_p256_mulx_u32(&x491, &x492, x7, UINT32_C(0xfffffffb)); fiat_p256_mulx_u32(&x493, &x494, x7, UINT32_C(0xffffffff)); fiat_p256_mulx_u32(&x495, &x496, x7, 0x3); fiat_p256_addcarryx_u32(&x497, &x498, 0x0, x494, x491); fiat_p256_addcarryx_u32(&x499, &x500, x498, x492, x489); fiat_p256_addcarryx_u32(&x501, &x502, x500, x490, x487); fiat_p256_addcarryx_u32(&x503, &x504, x502, x488, x485); fiat_p256_addcarryx_u32(&x505, &x506, x504, x486, x483); fiat_p256_addcarryx_u32(&x507, &x508, 0x0, x467, x495); fiat_p256_addcarryx_u32(&x509, &x510, x508, x469, x496); fiat_p256_addcarryx_u32(&x511, &x512, x510, x471, x493); fiat_p256_addcarryx_u32(&x513, &x514, x512, x473, x497); fiat_p256_addcarryx_u32(&x515, &x516, x514, x475, x499); fiat_p256_addcarryx_u32(&x517, &x518, x516, x477, x501); fiat_p256_addcarryx_u32(&x519, &x520, x518, x479, x503); fiat_p256_addcarryx_u32(&x521, &x522, x520, x481, x505); fiat_p256_mulx_u32(&x523, &x524, x507, UINT32_C(0xffffffff)); fiat_p256_mulx_u32(&x525, &x526, x507, UINT32_C(0xffffffff)); fiat_p256_mulx_u32(&x527, &x528, x507, UINT32_C(0xffffffff)); fiat_p256_mulx_u32(&x529, &x530, x507, UINT32_C(0xffffffff)); fiat_p256_addcarryx_u32(&x531, &x532, 0x0, x530, x527); fiat_p256_addcarryx_u32(&x533, &x534, x532, x528, x525); fiat_p256_addcarryx_u32(&x535, &x536, 0x0, x507, x529); fiat_p256_addcarryx_u32(&x537, &x538, x536, x509, x531); fiat_p256_addcarryx_u32(&x539, &x540, x538, x511, x533); fiat_p256_addcarryx_u32(&x541, &x542, x540, x513, (x534 + x526)); fiat_p256_addcarryx_u32(&x543, &x544, x542, x515, 0x0); fiat_p256_addcarryx_u32(&x545, &x546, x544, x517, 0x0); fiat_p256_addcarryx_u32(&x547, &x548, x546, x519, x507); fiat_p256_addcarryx_u32(&x549, &x550, x548, x521, x523); fiat_p256_addcarryx_u32(&x551, &x552, x550, (((uint32_t)x522 + x482) + (x506 + x484)), x524); fiat_p256_subborrowx_u32(&x553, &x554, 0x0, x537, UINT32_C(0xffffffff)); fiat_p256_subborrowx_u32(&x555, &x556, x554, x539, UINT32_C(0xffffffff)); fiat_p256_subborrowx_u32(&x557, &x558, x556, x541, UINT32_C(0xffffffff)); fiat_p256_subborrowx_u32(&x559, &x560, x558, x543, 0x0); fiat_p256_subborrowx_u32(&x561, &x562, x560, x545, 0x0); fiat_p256_subborrowx_u32(&x563, &x564, x562, x547, 0x0); fiat_p256_subborrowx_u32(&x565, &x566, x564, x549, 0x1); fiat_p256_subborrowx_u32(&x567, &x568, x566, x551, UINT32_C(0xffffffff)); fiat_p256_subborrowx_u32(&x569, &x570, x568, x552, 0x0); fiat_p256_cmovznz_u32(&x571, x570, x553, x537); fiat_p256_cmovznz_u32(&x572, x570, x555, x539); fiat_p256_cmovznz_u32(&x573, x570, x557, x541); fiat_p256_cmovznz_u32(&x574, x570, x559, x543); fiat_p256_cmovznz_u32(&x575, x570, x561, x545); fiat_p256_cmovznz_u32(&x576, x570, x563, x547); fiat_p256_cmovznz_u32(&x577, x570, x565, x549); fiat_p256_cmovznz_u32(&x578, x570, x567, x551); out1[0] = x571; out1[1] = x572; out1[2] = x573; out1[3] = x574; out1[4] = x575; out1[5] = x576; out1[6] = x577; out1[7] = x578; } /* * The function fiat_p256_nonzero outputs a single non-zero word if the input is non-zero and zero otherwise. * * Preconditions: * 0 ≤ eval arg1 < m * Postconditions: * out1 = 0 ↔ eval (from_montgomery arg1) mod m = 0 * * Input Bounds: * arg1: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff]] * Output Bounds: * out1: [0x0 ~> 0xffffffff] */ static void fiat_p256_nonzero(uint32_t* out1, const uint32_t arg1[8]) { uint32_t x1; x1 = ((arg1[0]) | ((arg1[1]) | ((arg1[2]) | ((arg1[3]) | ((arg1[4]) | ((arg1[5]) | ((arg1[6]) | (arg1[7])))))))); *out1 = x1; } /* * The function fiat_p256_selectznz is a multi-limb conditional select. * * Postconditions: * out1 = (if arg1 = 0 then arg2 else arg3) * * Input Bounds: * arg1: [0x0 ~> 0x1] * arg2: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff]] * arg3: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff]] * Output Bounds: * out1: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff]] */ static void fiat_p256_selectznz(uint32_t out1[8], fiat_p256_uint1 arg1, const uint32_t arg2[8], const uint32_t arg3[8]) { uint32_t x1; uint32_t x2; uint32_t x3; uint32_t x4; uint32_t x5; uint32_t x6; uint32_t x7; uint32_t x8; fiat_p256_cmovznz_u32(&x1, arg1, (arg2[0]), (arg3[0])); fiat_p256_cmovznz_u32(&x2, arg1, (arg2[1]), (arg3[1])); fiat_p256_cmovznz_u32(&x3, arg1, (arg2[2]), (arg3[2])); fiat_p256_cmovznz_u32(&x4, arg1, (arg2[3]), (arg3[3])); fiat_p256_cmovznz_u32(&x5, arg1, (arg2[4]), (arg3[4])); fiat_p256_cmovznz_u32(&x6, arg1, (arg2[5]), (arg3[5])); fiat_p256_cmovznz_u32(&x7, arg1, (arg2[6]), (arg3[6])); fiat_p256_cmovznz_u32(&x8, arg1, (arg2[7]), (arg3[7])); out1[0] = x1; out1[1] = x2; out1[2] = x3; out1[3] = x4; out1[4] = x5; out1[5] = x6; out1[6] = x7; out1[7] = x8; } /* * The function fiat_p256_to_bytes serializes a field element NOT in the Montgomery domain to bytes in little-endian order. * * Preconditions: * 0 ≤ eval arg1 < m * Postconditions: * out1 = map (λ x, ⌊((eval arg1 mod m) mod 2^(8 * (x + 1))) / 2^(8 * x)⌋) [0..31] * * Input Bounds: * arg1: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff]] * Output Bounds: * out1: [[0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff]] */ static void fiat_p256_to_bytes(uint8_t out1[32], const uint32_t arg1[8]) { uint32_t x1; uint32_t x2; uint32_t x3; uint32_t x4; uint32_t x5; uint32_t x6; uint32_t x7; uint32_t x8; uint8_t x9; uint32_t x10; uint8_t x11; uint32_t x12; uint8_t x13; uint8_t x14; uint8_t x15; uint32_t x16; uint8_t x17; uint32_t x18; uint8_t x19; uint8_t x20; uint8_t x21; uint32_t x22; uint8_t x23; uint32_t x24; uint8_t x25; uint8_t x26; uint8_t x27; uint32_t x28; uint8_t x29; uint32_t x30; uint8_t x31; uint8_t x32; uint8_t x33; uint32_t x34; uint8_t x35; uint32_t x36; uint8_t x37; uint8_t x38; uint8_t x39; uint32_t x40; uint8_t x41; uint32_t x42; uint8_t x43; uint8_t x44; uint8_t x45; uint32_t x46; uint8_t x47; uint32_t x48; uint8_t x49; uint8_t x50; uint8_t x51; uint32_t x52; uint8_t x53; uint32_t x54; uint8_t x55; uint8_t x56; x1 = (arg1[7]); x2 = (arg1[6]); x3 = (arg1[5]); x4 = (arg1[4]); x5 = (arg1[3]); x6 = (arg1[2]); x7 = (arg1[1]); x8 = (arg1[0]); x9 = (uint8_t)(x8 & UINT8_C(0xff)); x10 = (x8 >> 8); x11 = (uint8_t)(x10 & UINT8_C(0xff)); x12 = (x10 >> 8); x13 = (uint8_t)(x12 & UINT8_C(0xff)); x14 = (uint8_t)(x12 >> 8); x15 = (uint8_t)(x7 & UINT8_C(0xff)); x16 = (x7 >> 8); x17 = (uint8_t)(x16 & UINT8_C(0xff)); x18 = (x16 >> 8); x19 = (uint8_t)(x18 & UINT8_C(0xff)); x20 = (uint8_t)(x18 >> 8); x21 = (uint8_t)(x6 & UINT8_C(0xff)); x22 = (x6 >> 8); x23 = (uint8_t)(x22 & UINT8_C(0xff)); x24 = (x22 >> 8); x25 = (uint8_t)(x24 & UINT8_C(0xff)); x26 = (uint8_t)(x24 >> 8); x27 = (uint8_t)(x5 & UINT8_C(0xff)); x28 = (x5 >> 8); x29 = (uint8_t)(x28 & UINT8_C(0xff)); x30 = (x28 >> 8); x31 = (uint8_t)(x30 & UINT8_C(0xff)); x32 = (uint8_t)(x30 >> 8); x33 = (uint8_t)(x4 & UINT8_C(0xff)); x34 = (x4 >> 8); x35 = (uint8_t)(x34 & UINT8_C(0xff)); x36 = (x34 >> 8); x37 = (uint8_t)(x36 & UINT8_C(0xff)); x38 = (uint8_t)(x36 >> 8); x39 = (uint8_t)(x3 & UINT8_C(0xff)); x40 = (x3 >> 8); x41 = (uint8_t)(x40 & UINT8_C(0xff)); x42 = (x40 >> 8); x43 = (uint8_t)(x42 & UINT8_C(0xff)); x44 = (uint8_t)(x42 >> 8); x45 = (uint8_t)(x2 & UINT8_C(0xff)); x46 = (x2 >> 8); x47 = (uint8_t)(x46 & UINT8_C(0xff)); x48 = (x46 >> 8); x49 = (uint8_t)(x48 & UINT8_C(0xff)); x50 = (uint8_t)(x48 >> 8); x51 = (uint8_t)(x1 & UINT8_C(0xff)); x52 = (x1 >> 8); x53 = (uint8_t)(x52 & UINT8_C(0xff)); x54 = (x52 >> 8); x55 = (uint8_t)(x54 & UINT8_C(0xff)); x56 = (uint8_t)(x54 >> 8); out1[0] = x9; out1[1] = x11; out1[2] = x13; out1[3] = x14; out1[4] = x15; out1[5] = x17; out1[6] = x19; out1[7] = x20; out1[8] = x21; out1[9] = x23; out1[10] = x25; out1[11] = x26; out1[12] = x27; out1[13] = x29; out1[14] = x31; out1[15] = x32; out1[16] = x33; out1[17] = x35; out1[18] = x37; out1[19] = x38; out1[20] = x39; out1[21] = x41; out1[22] = x43; out1[23] = x44; out1[24] = x45; out1[25] = x47; out1[26] = x49; out1[27] = x50; out1[28] = x51; out1[29] = x53; out1[30] = x55; out1[31] = x56; } /* * The function fiat_p256_from_bytes deserializes a field element NOT in the Montgomery domain from bytes in little-endian order. * * Preconditions: * 0 ≤ bytes_eval arg1 < m * Postconditions: * eval out1 mod m = bytes_eval arg1 mod m * 0 ≤ eval out1 < m * * Input Bounds: * arg1: [[0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff]] * Output Bounds: * out1: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff]] */ static void fiat_p256_from_bytes(uint32_t out1[8], const uint8_t arg1[32]) { uint32_t x1; uint32_t x2; uint32_t x3; uint8_t x4; uint32_t x5; uint32_t x6; uint32_t x7; uint8_t x8; uint32_t x9; uint32_t x10; uint32_t x11; uint8_t x12; uint32_t x13; uint32_t x14; uint32_t x15; uint8_t x16; uint32_t x17; uint32_t x18; uint32_t x19; uint8_t x20; uint32_t x21; uint32_t x22; uint32_t x23; uint8_t x24; uint32_t x25; uint32_t x26; uint32_t x27; uint8_t x28; uint32_t x29; uint32_t x30; uint32_t x31; uint8_t x32; uint32_t x33; uint32_t x34; uint32_t x35; uint32_t x36; uint32_t x37; uint32_t x38; uint32_t x39; uint32_t x40; uint32_t x41; uint32_t x42; uint32_t x43; uint32_t x44; uint32_t x45; uint32_t x46; uint32_t x47; uint32_t x48; uint32_t x49; uint32_t x50; uint32_t x51; uint32_t x52; uint32_t x53; uint32_t x54; uint32_t x55; uint32_t x56; x1 = ((uint32_t)(arg1[31]) << 24); x2 = ((uint32_t)(arg1[30]) << 16); x3 = ((uint32_t)(arg1[29]) << 8); x4 = (arg1[28]); x5 = ((uint32_t)(arg1[27]) << 24); x6 = ((uint32_t)(arg1[26]) << 16); x7 = ((uint32_t)(arg1[25]) << 8); x8 = (arg1[24]); x9 = ((uint32_t)(arg1[23]) << 24); x10 = ((uint32_t)(arg1[22]) << 16); x11 = ((uint32_t)(arg1[21]) << 8); x12 = (arg1[20]); x13 = ((uint32_t)(arg1[19]) << 24); x14 = ((uint32_t)(arg1[18]) << 16); x15 = ((uint32_t)(arg1[17]) << 8); x16 = (arg1[16]); x17 = ((uint32_t)(arg1[15]) << 24); x18 = ((uint32_t)(arg1[14]) << 16); x19 = ((uint32_t)(arg1[13]) << 8); x20 = (arg1[12]); x21 = ((uint32_t)(arg1[11]) << 24); x22 = ((uint32_t)(arg1[10]) << 16); x23 = ((uint32_t)(arg1[9]) << 8); x24 = (arg1[8]); x25 = ((uint32_t)(arg1[7]) << 24); x26 = ((uint32_t)(arg1[6]) << 16); x27 = ((uint32_t)(arg1[5]) << 8); x28 = (arg1[4]); x29 = ((uint32_t)(arg1[3]) << 24); x30 = ((uint32_t)(arg1[2]) << 16); x31 = ((uint32_t)(arg1[1]) << 8); x32 = (arg1[0]); x33 = (x31 + (uint32_t)x32); x34 = (x30 + x33); x35 = (x29 + x34); x36 = (x27 + (uint32_t)x28); x37 = (x26 + x36); x38 = (x25 + x37); x39 = (x23 + (uint32_t)x24); x40 = (x22 + x39); x41 = (x21 + x40); x42 = (x19 + (uint32_t)x20); x43 = (x18 + x42); x44 = (x17 + x43); x45 = (x15 + (uint32_t)x16); x46 = (x14 + x45); x47 = (x13 + x46); x48 = (x11 + (uint32_t)x12); x49 = (x10 + x48); x50 = (x9 + x49); x51 = (x7 + (uint32_t)x8); x52 = (x6 + x51); x53 = (x5 + x52); x54 = (x3 + (uint32_t)x4); x55 = (x2 + x54); x56 = (x1 + x55); out1[0] = x35; out1[1] = x38; out1[2] = x41; out1[3] = x44; out1[4] = x47; out1[5] = x50; out1[6] = x53; out1[7] = x56; } /* * The function fiat_p256_set_one returns the field element one in the Montgomery domain. * * Postconditions: * eval (from_montgomery out1) mod m = 1 mod m * 0 ≤ eval out1 < m * */ static void fiat_p256_set_one(fiat_p256_montgomery_domain_field_element out1) { out1[0] = 0x1; out1[1] = 0x0; out1[2] = 0x0; out1[3] = UINT32_C(0xffffffff); out1[4] = UINT32_C(0xffffffff); out1[5] = UINT32_C(0xffffffff); out1[6] = UINT32_C(0xfffffffe); out1[7] = 0x0; } /* * The function fiat_p256_msat returns the saturated representation of the prime modulus. * * Postconditions: * twos_complement_eval out1 = m * 0 ≤ eval out1 < m * * Output Bounds: * out1: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff]] */ static void fiat_p256_msat(uint32_t out1[9]) { out1[0] = UINT32_C(0xffffffff); out1[1] = UINT32_C(0xffffffff); out1[2] = UINT32_C(0xffffffff); out1[3] = 0x0; out1[4] = 0x0; out1[5] = 0x0; out1[6] = 0x1; out1[7] = UINT32_C(0xffffffff); out1[8] = 0x0; } /* * The function fiat_p256_divstep_precomp returns the precomputed value for Bernstein-Yang-inversion (in montgomery form). * * Postconditions: * eval (from_montgomery out1) = ⌊(m - 1) / 2⌋^(if ⌊log2 m⌋ + 1 < 46 then ⌊(49 * (⌊log2 m⌋ + 1) + 80) / 17⌋ else ⌊(49 * (⌊log2 m⌋ + 1) + 57) / 17⌋) * 0 ≤ eval out1 < m * * Output Bounds: * out1: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff]] */ static void fiat_p256_divstep_precomp(uint32_t out1[8]) { out1[0] = UINT32_C(0xb8000000); out1[1] = UINT32_C(0x67ffffff); out1[2] = UINT32_C(0x38000000); out1[3] = UINT32_C(0xc0000000); out1[4] = UINT32_C(0x7fffffff); out1[5] = UINT32_C(0xd8000000); out1[6] = UINT32_C(0xffffffff); out1[7] = UINT32_C(0x2fffffff); } /* * The function fiat_p256_divstep computes a divstep. * * Preconditions: * 0 ≤ eval arg4 < m * 0 ≤ eval arg5 < m * Postconditions: * out1 = (if 0 < arg1 ∧ (twos_complement_eval arg3) is odd then 1 - arg1 else 1 + arg1) * twos_complement_eval out2 = (if 0 < arg1 ∧ (twos_complement_eval arg3) is odd then twos_complement_eval arg3 else twos_complement_eval arg2) * twos_complement_eval out3 = (if 0 < arg1 ∧ (twos_complement_eval arg3) is odd then ⌊(twos_complement_eval arg3 - twos_complement_eval arg2) / 2⌋ else ⌊(twos_complement_eval arg3 + (twos_complement_eval arg3 mod 2) * twos_complement_eval arg2) / 2⌋) * eval (from_montgomery out4) mod m = (if 0 < arg1 ∧ (twos_complement_eval arg3) is odd then (2 * eval (from_montgomery arg5)) mod m else (2 * eval (from_montgomery arg4)) mod m) * eval (from_montgomery out5) mod m = (if 0 < arg1 ∧ (twos_complement_eval arg3) is odd then (eval (from_montgomery arg4) - eval (from_montgomery arg4)) mod m else (eval (from_montgomery arg5) + (twos_complement_eval arg3 mod 2) * eval (from_montgomery arg4)) mod m) * 0 ≤ eval out5 < m * 0 ≤ eval out5 < m * 0 ≤ eval out2 < m * 0 ≤ eval out3 < m * * Input Bounds: * arg1: [0x0 ~> 0xffffffff] * arg2: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff]] * arg3: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff]] * arg4: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff]] * arg5: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff]] * Output Bounds: * out1: [0x0 ~> 0xffffffff] * out2: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff]] * out3: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff]] * out4: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff]] * out5: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff]] */ static void fiat_p256_divstep(uint32_t* out1, uint32_t out2[9], uint32_t out3[9], uint32_t out4[8], uint32_t out5[8], uint32_t arg1, const uint32_t arg2[9], const uint32_t arg3[9], const uint32_t arg4[8], const uint32_t arg5[8]) { uint32_t x1; fiat_p256_uint1 x2; fiat_p256_uint1 x3; uint32_t x4; fiat_p256_uint1 x5; uint32_t x6; uint32_t x7; uint32_t x8; uint32_t x9; uint32_t x10; uint32_t x11; uint32_t x12; uint32_t x13; uint32_t x14; uint32_t x15; uint32_t x16; fiat_p256_uint1 x17; uint32_t x18; fiat_p256_uint1 x19; uint32_t x20; fiat_p256_uint1 x21; uint32_t x22; fiat_p256_uint1 x23; uint32_t x24; fiat_p256_uint1 x25; uint32_t x26; fiat_p256_uint1 x27; uint32_t x28; fiat_p256_uint1 x29; uint32_t x30; fiat_p256_uint1 x31; uint32_t x32; fiat_p256_uint1 x33; uint32_t x34; uint32_t x35; uint32_t x36; uint32_t x37; uint32_t x38; uint32_t x39; uint32_t x40; uint32_t x41; uint32_t x42; uint32_t x43; uint32_t x44; uint32_t x45; uint32_t x46; uint32_t x47; uint32_t x48; uint32_t x49; uint32_t x50; uint32_t x51; fiat_p256_uint1 x52; uint32_t x53; fiat_p256_uint1 x54; uint32_t x55; fiat_p256_uint1 x56; uint32_t x57; fiat_p256_uint1 x58; uint32_t x59; fiat_p256_uint1 x60; uint32_t x61; fiat_p256_uint1 x62; uint32_t x63; fiat_p256_uint1 x64; uint32_t x65; fiat_p256_uint1 x66; uint32_t x67; fiat_p256_uint1 x68; uint32_t x69; fiat_p256_uint1 x70; uint32_t x71; fiat_p256_uint1 x72; uint32_t x73; fiat_p256_uint1 x74; uint32_t x75; fiat_p256_uint1 x76; uint32_t x77; fiat_p256_uint1 x78; uint32_t x79; fiat_p256_uint1 x80; uint32_t x81; fiat_p256_uint1 x82; uint32_t x83; fiat_p256_uint1 x84; uint32_t x85; uint32_t x86; uint32_t x87; uint32_t x88; uint32_t x89; uint32_t x90; uint32_t x91; uint32_t x92; uint32_t x93; fiat_p256_uint1 x94; uint32_t x95; fiat_p256_uint1 x96; uint32_t x97; fiat_p256_uint1 x98; uint32_t x99; fiat_p256_uint1 x100; uint32_t x101; fiat_p256_uint1 x102; uint32_t x103; fiat_p256_uint1 x104; uint32_t x105; fiat_p256_uint1 x106; uint32_t x107; fiat_p256_uint1 x108; uint32_t x109; uint32_t x110; fiat_p256_uint1 x111; uint32_t x112; fiat_p256_uint1 x113; uint32_t x114; fiat_p256_uint1 x115; uint32_t x116; fiat_p256_uint1 x117; uint32_t x118; fiat_p256_uint1 x119; uint32_t x120; fiat_p256_uint1 x121; uint32_t x122; fiat_p256_uint1 x123; uint32_t x124; fiat_p256_uint1 x125; uint32_t x126; uint32_t x127; uint32_t x128; uint32_t x129; uint32_t x130; uint32_t x131; uint32_t x132; uint32_t x133; fiat_p256_uint1 x134; uint32_t x135; uint32_t x136; uint32_t x137; uint32_t x138; uint32_t x139; uint32_t x140; uint32_t x141; uint32_t x142; uint32_t x143; uint32_t x144; fiat_p256_uint1 x145; uint32_t x146; fiat_p256_uint1 x147; uint32_t x148; fiat_p256_uint1 x149; uint32_t x150; fiat_p256_uint1 x151; uint32_t x152; fiat_p256_uint1 x153; uint32_t x154; fiat_p256_uint1 x155; uint32_t x156; fiat_p256_uint1 x157; uint32_t x158; fiat_p256_uint1 x159; uint32_t x160; fiat_p256_uint1 x161; uint32_t x162; uint32_t x163; uint32_t x164; uint32_t x165; uint32_t x166; uint32_t x167; uint32_t x168; uint32_t x169; uint32_t x170; fiat_p256_uint1 x171; uint32_t x172; fiat_p256_uint1 x173; uint32_t x174; fiat_p256_uint1 x175; uint32_t x176; fiat_p256_uint1 x177; uint32_t x178; fiat_p256_uint1 x179; uint32_t x180; fiat_p256_uint1 x181; uint32_t x182; fiat_p256_uint1 x183; uint32_t x184; fiat_p256_uint1 x185; uint32_t x186; fiat_p256_uint1 x187; uint32_t x188; fiat_p256_uint1 x189; uint32_t x190; fiat_p256_uint1 x191; uint32_t x192; fiat_p256_uint1 x193; uint32_t x194; fiat_p256_uint1 x195; uint32_t x196; fiat_p256_uint1 x197; uint32_t x198; fiat_p256_uint1 x199; uint32_t x200; fiat_p256_uint1 x201; uint32_t x202; fiat_p256_uint1 x203; uint32_t x204; fiat_p256_uint1 x205; uint32_t x206; uint32_t x207; uint32_t x208; uint32_t x209; uint32_t x210; uint32_t x211; uint32_t x212; uint32_t x213; uint32_t x214; uint32_t x215; uint32_t x216; uint32_t x217; uint32_t x218; uint32_t x219; uint32_t x220; uint32_t x221; uint32_t x222; uint32_t x223; uint32_t x224; uint32_t x225; uint32_t x226; uint32_t x227; uint32_t x228; uint32_t x229; uint32_t x230; fiat_p256_addcarryx_u32(&x1, &x2, 0x0, (~arg1), 0x1); x3 = (fiat_p256_uint1)((fiat_p256_uint1)(x1 >> 31) & (fiat_p256_uint1)((arg3[0]) & 0x1)); fiat_p256_addcarryx_u32(&x4, &x5, 0x0, (~arg1), 0x1); fiat_p256_cmovznz_u32(&x6, x3, arg1, x4); fiat_p256_cmovznz_u32(&x7, x3, (arg2[0]), (arg3[0])); fiat_p256_cmovznz_u32(&x8, x3, (arg2[1]), (arg3[1])); fiat_p256_cmovznz_u32(&x9, x3, (arg2[2]), (arg3[2])); fiat_p256_cmovznz_u32(&x10, x3, (arg2[3]), (arg3[3])); fiat_p256_cmovznz_u32(&x11, x3, (arg2[4]), (arg3[4])); fiat_p256_cmovznz_u32(&x12, x3, (arg2[5]), (arg3[5])); fiat_p256_cmovznz_u32(&x13, x3, (arg2[6]), (arg3[6])); fiat_p256_cmovznz_u32(&x14, x3, (arg2[7]), (arg3[7])); fiat_p256_cmovznz_u32(&x15, x3, (arg2[8]), (arg3[8])); fiat_p256_addcarryx_u32(&x16, &x17, 0x0, 0x1, (~(arg2[0]))); fiat_p256_addcarryx_u32(&x18, &x19, x17, 0x0, (~(arg2[1]))); fiat_p256_addcarryx_u32(&x20, &x21, x19, 0x0, (~(arg2[2]))); fiat_p256_addcarryx_u32(&x22, &x23, x21, 0x0, (~(arg2[3]))); fiat_p256_addcarryx_u32(&x24, &x25, x23, 0x0, (~(arg2[4]))); fiat_p256_addcarryx_u32(&x26, &x27, x25, 0x0, (~(arg2[5]))); fiat_p256_addcarryx_u32(&x28, &x29, x27, 0x0, (~(arg2[6]))); fiat_p256_addcarryx_u32(&x30, &x31, x29, 0x0, (~(arg2[7]))); fiat_p256_addcarryx_u32(&x32, &x33, x31, 0x0, (~(arg2[8]))); fiat_p256_cmovznz_u32(&x34, x3, (arg3[0]), x16); fiat_p256_cmovznz_u32(&x35, x3, (arg3[1]), x18); fiat_p256_cmovznz_u32(&x36, x3, (arg3[2]), x20); fiat_p256_cmovznz_u32(&x37, x3, (arg3[3]), x22); fiat_p256_cmovznz_u32(&x38, x3, (arg3[4]), x24); fiat_p256_cmovznz_u32(&x39, x3, (arg3[5]), x26); fiat_p256_cmovznz_u32(&x40, x3, (arg3[6]), x28); fiat_p256_cmovznz_u32(&x41, x3, (arg3[7]), x30); fiat_p256_cmovznz_u32(&x42, x3, (arg3[8]), x32); fiat_p256_cmovznz_u32(&x43, x3, (arg4[0]), (arg5[0])); fiat_p256_cmovznz_u32(&x44, x3, (arg4[1]), (arg5[1])); fiat_p256_cmovznz_u32(&x45, x3, (arg4[2]), (arg5[2])); fiat_p256_cmovznz_u32(&x46, x3, (arg4[3]), (arg5[3])); fiat_p256_cmovznz_u32(&x47, x3, (arg4[4]), (arg5[4])); fiat_p256_cmovznz_u32(&x48, x3, (arg4[5]), (arg5[5])); fiat_p256_cmovznz_u32(&x49, x3, (arg4[6]), (arg5[6])); fiat_p256_cmovznz_u32(&x50, x3, (arg4[7]), (arg5[7])); fiat_p256_addcarryx_u32(&x51, &x52, 0x0, x43, x43); fiat_p256_addcarryx_u32(&x53, &x54, x52, x44, x44); fiat_p256_addcarryx_u32(&x55, &x56, x54, x45, x45); fiat_p256_addcarryx_u32(&x57, &x58, x56, x46, x46); fiat_p256_addcarryx_u32(&x59, &x60, x58, x47, x47); fiat_p256_addcarryx_u32(&x61, &x62, x60, x48, x48); fiat_p256_addcarryx_u32(&x63, &x64, x62, x49, x49); fiat_p256_addcarryx_u32(&x65, &x66, x64, x50, x50); fiat_p256_subborrowx_u32(&x67, &x68, 0x0, x51, UINT32_C(0xffffffff)); fiat_p256_subborrowx_u32(&x69, &x70, x68, x53, UINT32_C(0xffffffff)); fiat_p256_subborrowx_u32(&x71, &x72, x70, x55, UINT32_C(0xffffffff)); fiat_p256_subborrowx_u32(&x73, &x74, x72, x57, 0x0); fiat_p256_subborrowx_u32(&x75, &x76, x74, x59, 0x0); fiat_p256_subborrowx_u32(&x77, &x78, x76, x61, 0x0); fiat_p256_subborrowx_u32(&x79, &x80, x78, x63, 0x1); fiat_p256_subborrowx_u32(&x81, &x82, x80, x65, UINT32_C(0xffffffff)); fiat_p256_subborrowx_u32(&x83, &x84, x82, x66, 0x0); x85 = (arg4[7]); x86 = (arg4[6]); x87 = (arg4[5]); x88 = (arg4[4]); x89 = (arg4[3]); x90 = (arg4[2]); x91 = (arg4[1]); x92 = (arg4[0]); fiat_p256_subborrowx_u32(&x93, &x94, 0x0, 0x0, x92); fiat_p256_subborrowx_u32(&x95, &x96, x94, 0x0, x91); fiat_p256_subborrowx_u32(&x97, &x98, x96, 0x0, x90); fiat_p256_subborrowx_u32(&x99, &x100, x98, 0x0, x89); fiat_p256_subborrowx_u32(&x101, &x102, x100, 0x0, x88); fiat_p256_subborrowx_u32(&x103, &x104, x102, 0x0, x87); fiat_p256_subborrowx_u32(&x105, &x106, x104, 0x0, x86); fiat_p256_subborrowx_u32(&x107, &x108, x106, 0x0, x85); fiat_p256_cmovznz_u32(&x109, x108, 0x0, UINT32_C(0xffffffff)); fiat_p256_addcarryx_u32(&x110, &x111, 0x0, x93, x109); fiat_p256_addcarryx_u32(&x112, &x113, x111, x95, x109); fiat_p256_addcarryx_u32(&x114, &x115, x113, x97, x109); fiat_p256_addcarryx_u32(&x116, &x117, x115, x99, 0x0); fiat_p256_addcarryx_u32(&x118, &x119, x117, x101, 0x0); fiat_p256_addcarryx_u32(&x120, &x121, x119, x103, 0x0); fiat_p256_addcarryx_u32(&x122, &x123, x121, x105, (fiat_p256_uint1)(x109 & 0x1)); fiat_p256_addcarryx_u32(&x124, &x125, x123, x107, x109); fiat_p256_cmovznz_u32(&x126, x3, (arg5[0]), x110); fiat_p256_cmovznz_u32(&x127, x3, (arg5[1]), x112); fiat_p256_cmovznz_u32(&x128, x3, (arg5[2]), x114); fiat_p256_cmovznz_u32(&x129, x3, (arg5[3]), x116); fiat_p256_cmovznz_u32(&x130, x3, (arg5[4]), x118); fiat_p256_cmovznz_u32(&x131, x3, (arg5[5]), x120); fiat_p256_cmovznz_u32(&x132, x3, (arg5[6]), x122); fiat_p256_cmovznz_u32(&x133, x3, (arg5[7]), x124); x134 = (fiat_p256_uint1)(x34 & 0x1); fiat_p256_cmovznz_u32(&x135, x134, 0x0, x7); fiat_p256_cmovznz_u32(&x136, x134, 0x0, x8); fiat_p256_cmovznz_u32(&x137, x134, 0x0, x9); fiat_p256_cmovznz_u32(&x138, x134, 0x0, x10); fiat_p256_cmovznz_u32(&x139, x134, 0x0, x11); fiat_p256_cmovznz_u32(&x140, x134, 0x0, x12); fiat_p256_cmovznz_u32(&x141, x134, 0x0, x13); fiat_p256_cmovznz_u32(&x142, x134, 0x0, x14); fiat_p256_cmovznz_u32(&x143, x134, 0x0, x15); fiat_p256_addcarryx_u32(&x144, &x145, 0x0, x34, x135); fiat_p256_addcarryx_u32(&x146, &x147, x145, x35, x136); fiat_p256_addcarryx_u32(&x148, &x149, x147, x36, x137); fiat_p256_addcarryx_u32(&x150, &x151, x149, x37, x138); fiat_p256_addcarryx_u32(&x152, &x153, x151, x38, x139); fiat_p256_addcarryx_u32(&x154, &x155, x153, x39, x140); fiat_p256_addcarryx_u32(&x156, &x157, x155, x40, x141); fiat_p256_addcarryx_u32(&x158, &x159, x157, x41, x142); fiat_p256_addcarryx_u32(&x160, &x161, x159, x42, x143); fiat_p256_cmovznz_u32(&x162, x134, 0x0, x43); fiat_p256_cmovznz_u32(&x163, x134, 0x0, x44); fiat_p256_cmovznz_u32(&x164, x134, 0x0, x45); fiat_p256_cmovznz_u32(&x165, x134, 0x0, x46); fiat_p256_cmovznz_u32(&x166, x134, 0x0, x47); fiat_p256_cmovznz_u32(&x167, x134, 0x0, x48); fiat_p256_cmovznz_u32(&x168, x134, 0x0, x49); fiat_p256_cmovznz_u32(&x169, x134, 0x0, x50); fiat_p256_addcarryx_u32(&x170, &x171, 0x0, x126, x162); fiat_p256_addcarryx_u32(&x172, &x173, x171, x127, x163); fiat_p256_addcarryx_u32(&x174, &x175, x173, x128, x164); fiat_p256_addcarryx_u32(&x176, &x177, x175, x129, x165); fiat_p256_addcarryx_u32(&x178, &x179, x177, x130, x166); fiat_p256_addcarryx_u32(&x180, &x181, x179, x131, x167); fiat_p256_addcarryx_u32(&x182, &x183, x181, x132, x168); fiat_p256_addcarryx_u32(&x184, &x185, x183, x133, x169); fiat_p256_subborrowx_u32(&x186, &x187, 0x0, x170, UINT32_C(0xffffffff)); fiat_p256_subborrowx_u32(&x188, &x189, x187, x172, UINT32_C(0xffffffff)); fiat_p256_subborrowx_u32(&x190, &x191, x189, x174, UINT32_C(0xffffffff)); fiat_p256_subborrowx_u32(&x192, &x193, x191, x176, 0x0); fiat_p256_subborrowx_u32(&x194, &x195, x193, x178, 0x0); fiat_p256_subborrowx_u32(&x196, &x197, x195, x180, 0x0); fiat_p256_subborrowx_u32(&x198, &x199, x197, x182, 0x1); fiat_p256_subborrowx_u32(&x200, &x201, x199, x184, UINT32_C(0xffffffff)); fiat_p256_subborrowx_u32(&x202, &x203, x201, x185, 0x0); fiat_p256_addcarryx_u32(&x204, &x205, 0x0, x6, 0x1); x206 = ((x144 >> 1) | ((x146 << 31) & UINT32_C(0xffffffff))); x207 = ((x146 >> 1) | ((x148 << 31) & UINT32_C(0xffffffff))); x208 = ((x148 >> 1) | ((x150 << 31) & UINT32_C(0xffffffff))); x209 = ((x150 >> 1) | ((x152 << 31) & UINT32_C(0xffffffff))); x210 = ((x152 >> 1) | ((x154 << 31) & UINT32_C(0xffffffff))); x211 = ((x154 >> 1) | ((x156 << 31) & UINT32_C(0xffffffff))); x212 = ((x156 >> 1) | ((x158 << 31) & UINT32_C(0xffffffff))); x213 = ((x158 >> 1) | ((x160 << 31) & UINT32_C(0xffffffff))); x214 = ((x160 & UINT32_C(0x80000000)) | (x160 >> 1)); fiat_p256_cmovznz_u32(&x215, x84, x67, x51); fiat_p256_cmovznz_u32(&x216, x84, x69, x53); fiat_p256_cmovznz_u32(&x217, x84, x71, x55); fiat_p256_cmovznz_u32(&x218, x84, x73, x57); fiat_p256_cmovznz_u32(&x219, x84, x75, x59); fiat_p256_cmovznz_u32(&x220, x84, x77, x61); fiat_p256_cmovznz_u32(&x221, x84, x79, x63); fiat_p256_cmovznz_u32(&x222, x84, x81, x65); fiat_p256_cmovznz_u32(&x223, x203, x186, x170); fiat_p256_cmovznz_u32(&x224, x203, x188, x172); fiat_p256_cmovznz_u32(&x225, x203, x190, x174); fiat_p256_cmovznz_u32(&x226, x203, x192, x176); fiat_p256_cmovznz_u32(&x227, x203, x194, x178); fiat_p256_cmovznz_u32(&x228, x203, x196, x180); fiat_p256_cmovznz_u32(&x229, x203, x198, x182); fiat_p256_cmovznz_u32(&x230, x203, x200, x184); *out1 = x204; out2[0] = x7; out2[1] = x8; out2[2] = x9; out2[3] = x10; out2[4] = x11; out2[5] = x12; out2[6] = x13; out2[7] = x14; out2[8] = x15; out3[0] = x206; out3[1] = x207; out3[2] = x208; out3[3] = x209; out3[4] = x210; out3[5] = x211; out3[6] = x212; out3[7] = x213; out3[8] = x214; out4[0] = x215; out4[1] = x216; out4[2] = x217; out4[3] = x218; out4[4] = x219; out4[5] = x220; out4[6] = x221; out4[7] = x222; out5[0] = x223; out5[1] = x224; out5[2] = x225; out5[3] = x226; out5[4] = x227; out5[5] = x228; out5[6] = x229; out5[7] = x230; }
mirage-crypto
2.0.2
ISC
https://github.com/mirage/mirage-crypto
git+https://github.com/mirage/mirage-crypto.git
h
mirage-crypto-2.0.2/ec/native/p256_64.h
/* Autogenerated: '../fiat-crypto/src/ExtractionOCaml/word_by_word_montgomery' --static --use-value-barrier --inline-internal p256 64 '2^256 - 2^224 + 2^192 + 2^96 - 1' */ /* curve description: p256 */ /* machine_wordsize = 64 (from "64") */ /* requested operations: (all) */ /* m = 0xffffffff00000001000000000000000000000000ffffffffffffffffffffffff (from "2^256 - 2^224 + 2^192 + 2^96 - 1") */ /* */ /* NOTE: In addition to the bounds specified above each function, all */ /* functions synthesized for this Montgomery arithmetic require the */ /* input to be strictly less than the prime modulus (m), and also */ /* require the input to be in the unique saturated representation. */ /* All functions also ensure that these two properties are true of */ /* return values. */ /* */ /* Computed values: */ /* eval z = z[0] + (z[1] << 64) + (z[2] << 128) + (z[3] << 192) */ /* bytes_eval z = z[0] + (z[1] << 8) + (z[2] << 16) + (z[3] << 24) + (z[4] << 32) + (z[5] << 40) + (z[6] << 48) + (z[7] << 56) + (z[8] << 64) + (z[9] << 72) + (z[10] << 80) + (z[11] << 88) + (z[12] << 96) + (z[13] << 104) + (z[14] << 112) + (z[15] << 120) + (z[16] << 128) + (z[17] << 136) + (z[18] << 144) + (z[19] << 152) + (z[20] << 160) + (z[21] << 168) + (z[22] << 176) + (z[23] << 184) + (z[24] << 192) + (z[25] << 200) + (z[26] << 208) + (z[27] << 216) + (z[28] << 224) + (z[29] << 232) + (z[30] << 240) + (z[31] << 248) */ /* twos_complement_eval z = let x1 := z[0] + (z[1] << 64) + (z[2] << 128) + (z[3] << 192) in */ /* if x1 & (2^256-1) < 2^255 then x1 & (2^256-1) else (x1 & (2^256-1)) - 2^256 */ #include <stdint.h> typedef unsigned char fiat_p256_uint1; typedef signed char fiat_p256_int1; #if defined(__GNUC__) || defined(__clang__) # define FIAT_P256_FIAT_EXTENSION __extension__ # define FIAT_P256_FIAT_INLINE __inline__ #else # define FIAT_P256_FIAT_EXTENSION # define FIAT_P256_FIAT_INLINE #endif FIAT_P256_FIAT_EXTENSION typedef signed __int128 fiat_p256_int128; FIAT_P256_FIAT_EXTENSION typedef unsigned __int128 fiat_p256_uint128; /* The type fiat_p256_montgomery_domain_field_element is a field element in the Montgomery domain. */ /* Bounds: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]] */ typedef uint64_t fiat_p256_montgomery_domain_field_element[4]; /* The type fiat_p256_non_montgomery_domain_field_element is a field element NOT in the Montgomery domain. */ /* Bounds: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]] */ typedef uint64_t fiat_p256_non_montgomery_domain_field_element[4]; #if (-1 & 3) != 3 #error "This code only works on a two's complement system" #endif #if !defined(FIAT_P256_NO_ASM) && (defined(__GNUC__) || defined(__clang__)) static __inline__ uint64_t fiat_p256_value_barrier_u64(uint64_t a) { __asm__("" : "+r"(a) : /* no inputs */); return a; } #else # define fiat_p256_value_barrier_u64(x) (x) #endif /* * The function fiat_p256_addcarryx_u64 is an addition with carry. * * Postconditions: * out1 = (arg1 + arg2 + arg3) mod 2^64 * out2 = ⌊(arg1 + arg2 + arg3) / 2^64⌋ * * Input Bounds: * arg1: [0x0 ~> 0x1] * arg2: [0x0 ~> 0xffffffffffffffff] * arg3: [0x0 ~> 0xffffffffffffffff] * Output Bounds: * out1: [0x0 ~> 0xffffffffffffffff] * out2: [0x0 ~> 0x1] */ static FIAT_P256_FIAT_INLINE void fiat_p256_addcarryx_u64(uint64_t* out1, fiat_p256_uint1* out2, fiat_p256_uint1 arg1, uint64_t arg2, uint64_t arg3) { fiat_p256_uint128 x1; uint64_t x2; fiat_p256_uint1 x3; x1 = ((arg1 + (fiat_p256_uint128)arg2) + arg3); x2 = (uint64_t)(x1 & UINT64_C(0xffffffffffffffff)); x3 = (fiat_p256_uint1)(x1 >> 64); *out1 = x2; *out2 = x3; } /* * The function fiat_p256_subborrowx_u64 is a subtraction with borrow. * * Postconditions: * out1 = (-arg1 + arg2 + -arg3) mod 2^64 * out2 = -⌊(-arg1 + arg2 + -arg3) / 2^64⌋ * * Input Bounds: * arg1: [0x0 ~> 0x1] * arg2: [0x0 ~> 0xffffffffffffffff] * arg3: [0x0 ~> 0xffffffffffffffff] * Output Bounds: * out1: [0x0 ~> 0xffffffffffffffff] * out2: [0x0 ~> 0x1] */ static FIAT_P256_FIAT_INLINE void fiat_p256_subborrowx_u64(uint64_t* out1, fiat_p256_uint1* out2, fiat_p256_uint1 arg1, uint64_t arg2, uint64_t arg3) { fiat_p256_int128 x1; fiat_p256_int1 x2; uint64_t x3; x1 = ((arg2 - (fiat_p256_int128)arg1) - arg3); x2 = (fiat_p256_int1)(x1 >> 64); x3 = (uint64_t)(x1 & UINT64_C(0xffffffffffffffff)); *out1 = x3; *out2 = (fiat_p256_uint1)(0x0 - x2); } /* * The function fiat_p256_mulx_u64 is a multiplication, returning the full double-width result. * * Postconditions: * out1 = (arg1 * arg2) mod 2^64 * out2 = ⌊arg1 * arg2 / 2^64⌋ * * Input Bounds: * arg1: [0x0 ~> 0xffffffffffffffff] * arg2: [0x0 ~> 0xffffffffffffffff] * Output Bounds: * out1: [0x0 ~> 0xffffffffffffffff] * out2: [0x0 ~> 0xffffffffffffffff] */ static FIAT_P256_FIAT_INLINE void fiat_p256_mulx_u64(uint64_t* out1, uint64_t* out2, uint64_t arg1, uint64_t arg2) { fiat_p256_uint128 x1; uint64_t x2; uint64_t x3; x1 = ((fiat_p256_uint128)arg1 * arg2); x2 = (uint64_t)(x1 & UINT64_C(0xffffffffffffffff)); x3 = (uint64_t)(x1 >> 64); *out1 = x2; *out2 = x3; } /* * The function fiat_p256_cmovznz_u64 is a single-word conditional move. * * Postconditions: * out1 = (if arg1 = 0 then arg2 else arg3) * * Input Bounds: * arg1: [0x0 ~> 0x1] * arg2: [0x0 ~> 0xffffffffffffffff] * arg3: [0x0 ~> 0xffffffffffffffff] * Output Bounds: * out1: [0x0 ~> 0xffffffffffffffff] */ static FIAT_P256_FIAT_INLINE void fiat_p256_cmovznz_u64(uint64_t* out1, fiat_p256_uint1 arg1, uint64_t arg2, uint64_t arg3) { fiat_p256_uint1 x1; uint64_t x2; uint64_t x3; x1 = (!(!arg1)); x2 = ((fiat_p256_int1)(0x0 - x1) & UINT64_C(0xffffffffffffffff)); x3 = ((fiat_p256_value_barrier_u64(x2) & arg3) | (fiat_p256_value_barrier_u64((~x2)) & arg2)); *out1 = x3; } /* * The function fiat_p256_mul multiplies two field elements in the Montgomery domain. * * Preconditions: * 0 ≤ eval arg1 < m * 0 ≤ eval arg2 < m * Postconditions: * eval (from_montgomery out1) mod m = (eval (from_montgomery arg1) * eval (from_montgomery arg2)) mod m * 0 ≤ eval out1 < m * */ static void fiat_p256_mul(fiat_p256_montgomery_domain_field_element out1, const fiat_p256_montgomery_domain_field_element arg1, const fiat_p256_montgomery_domain_field_element arg2) { uint64_t x1; uint64_t x2; uint64_t x3; uint64_t x4; uint64_t x5; uint64_t x6; uint64_t x7; uint64_t x8; uint64_t x9; uint64_t x10; uint64_t x11; uint64_t x12; uint64_t x13; fiat_p256_uint1 x14; uint64_t x15; fiat_p256_uint1 x16; uint64_t x17; fiat_p256_uint1 x18; uint64_t x19; uint64_t x20; uint64_t x21; uint64_t x22; uint64_t x23; uint64_t x24; uint64_t x25; uint64_t x26; fiat_p256_uint1 x27; uint64_t x28; uint64_t x29; fiat_p256_uint1 x30; uint64_t x31; fiat_p256_uint1 x32; uint64_t x33; fiat_p256_uint1 x34; uint64_t x35; fiat_p256_uint1 x36; uint64_t x37; fiat_p256_uint1 x38; uint64_t x39; uint64_t x40; uint64_t x41; uint64_t x42; uint64_t x43; uint64_t x44; uint64_t x45; uint64_t x46; uint64_t x47; fiat_p256_uint1 x48; uint64_t x49; fiat_p256_uint1 x50; uint64_t x51; fiat_p256_uint1 x52; uint64_t x53; uint64_t x54; fiat_p256_uint1 x55; uint64_t x56; fiat_p256_uint1 x57; uint64_t x58; fiat_p256_uint1 x59; uint64_t x60; fiat_p256_uint1 x61; uint64_t x62; fiat_p256_uint1 x63; uint64_t x64; uint64_t x65; uint64_t x66; uint64_t x67; uint64_t x68; uint64_t x69; uint64_t x70; fiat_p256_uint1 x71; uint64_t x72; uint64_t x73; fiat_p256_uint1 x74; uint64_t x75; fiat_p256_uint1 x76; uint64_t x77; fiat_p256_uint1 x78; uint64_t x79; fiat_p256_uint1 x80; uint64_t x81; fiat_p256_uint1 x82; uint64_t x83; uint64_t x84; uint64_t x85; uint64_t x86; uint64_t x87; uint64_t x88; uint64_t x89; uint64_t x90; uint64_t x91; uint64_t x92; fiat_p256_uint1 x93; uint64_t x94; fiat_p256_uint1 x95; uint64_t x96; fiat_p256_uint1 x97; uint64_t x98; uint64_t x99; fiat_p256_uint1 x100; uint64_t x101; fiat_p256_uint1 x102; uint64_t x103; fiat_p256_uint1 x104; uint64_t x105; fiat_p256_uint1 x106; uint64_t x107; fiat_p256_uint1 x108; uint64_t x109; uint64_t x110; uint64_t x111; uint64_t x112; uint64_t x113; uint64_t x114; uint64_t x115; fiat_p256_uint1 x116; uint64_t x117; uint64_t x118; fiat_p256_uint1 x119; uint64_t x120; fiat_p256_uint1 x121; uint64_t x122; fiat_p256_uint1 x123; uint64_t x124; fiat_p256_uint1 x125; uint64_t x126; fiat_p256_uint1 x127; uint64_t x128; uint64_t x129; uint64_t x130; uint64_t x131; uint64_t x132; uint64_t x133; uint64_t x134; uint64_t x135; uint64_t x136; uint64_t x137; fiat_p256_uint1 x138; uint64_t x139; fiat_p256_uint1 x140; uint64_t x141; fiat_p256_uint1 x142; uint64_t x143; uint64_t x144; fiat_p256_uint1 x145; uint64_t x146; fiat_p256_uint1 x147; uint64_t x148; fiat_p256_uint1 x149; uint64_t x150; fiat_p256_uint1 x151; uint64_t x152; fiat_p256_uint1 x153; uint64_t x154; uint64_t x155; uint64_t x156; uint64_t x157; uint64_t x158; uint64_t x159; uint64_t x160; fiat_p256_uint1 x161; uint64_t x162; uint64_t x163; fiat_p256_uint1 x164; uint64_t x165; fiat_p256_uint1 x166; uint64_t x167; fiat_p256_uint1 x168; uint64_t x169; fiat_p256_uint1 x170; uint64_t x171; fiat_p256_uint1 x172; uint64_t x173; uint64_t x174; fiat_p256_uint1 x175; uint64_t x176; fiat_p256_uint1 x177; uint64_t x178; fiat_p256_uint1 x179; uint64_t x180; fiat_p256_uint1 x181; uint64_t x182; fiat_p256_uint1 x183; uint64_t x184; uint64_t x185; uint64_t x186; uint64_t x187; x1 = (arg1[1]); x2 = (arg1[2]); x3 = (arg1[3]); x4 = (arg1[0]); fiat_p256_mulx_u64(&x5, &x6, x4, (arg2[3])); fiat_p256_mulx_u64(&x7, &x8, x4, (arg2[2])); fiat_p256_mulx_u64(&x9, &x10, x4, (arg2[1])); fiat_p256_mulx_u64(&x11, &x12, x4, (arg2[0])); fiat_p256_addcarryx_u64(&x13, &x14, 0x0, x12, x9); fiat_p256_addcarryx_u64(&x15, &x16, x14, x10, x7); fiat_p256_addcarryx_u64(&x17, &x18, x16, x8, x5); x19 = (x18 + x6); fiat_p256_mulx_u64(&x20, &x21, x11, UINT64_C(0xffffffff00000001)); fiat_p256_mulx_u64(&x22, &x23, x11, UINT32_C(0xffffffff)); fiat_p256_mulx_u64(&x24, &x25, x11, UINT64_C(0xffffffffffffffff)); fiat_p256_addcarryx_u64(&x26, &x27, 0x0, x25, x22); x28 = (x27 + x23); fiat_p256_addcarryx_u64(&x29, &x30, 0x0, x11, x24); fiat_p256_addcarryx_u64(&x31, &x32, x30, x13, x26); fiat_p256_addcarryx_u64(&x33, &x34, x32, x15, x28); fiat_p256_addcarryx_u64(&x35, &x36, x34, x17, x20); fiat_p256_addcarryx_u64(&x37, &x38, x36, x19, x21); fiat_p256_mulx_u64(&x39, &x40, x1, (arg2[3])); fiat_p256_mulx_u64(&x41, &x42, x1, (arg2[2])); fiat_p256_mulx_u64(&x43, &x44, x1, (arg2[1])); fiat_p256_mulx_u64(&x45, &x46, x1, (arg2[0])); fiat_p256_addcarryx_u64(&x47, &x48, 0x0, x46, x43); fiat_p256_addcarryx_u64(&x49, &x50, x48, x44, x41); fiat_p256_addcarryx_u64(&x51, &x52, x50, x42, x39); x53 = (x52 + x40); fiat_p256_addcarryx_u64(&x54, &x55, 0x0, x31, x45); fiat_p256_addcarryx_u64(&x56, &x57, x55, x33, x47); fiat_p256_addcarryx_u64(&x58, &x59, x57, x35, x49); fiat_p256_addcarryx_u64(&x60, &x61, x59, x37, x51); fiat_p256_addcarryx_u64(&x62, &x63, x61, x38, x53); fiat_p256_mulx_u64(&x64, &x65, x54, UINT64_C(0xffffffff00000001)); fiat_p256_mulx_u64(&x66, &x67, x54, UINT32_C(0xffffffff)); fiat_p256_mulx_u64(&x68, &x69, x54, UINT64_C(0xffffffffffffffff)); fiat_p256_addcarryx_u64(&x70, &x71, 0x0, x69, x66); x72 = (x71 + x67); fiat_p256_addcarryx_u64(&x73, &x74, 0x0, x54, x68); fiat_p256_addcarryx_u64(&x75, &x76, x74, x56, x70); fiat_p256_addcarryx_u64(&x77, &x78, x76, x58, x72); fiat_p256_addcarryx_u64(&x79, &x80, x78, x60, x64); fiat_p256_addcarryx_u64(&x81, &x82, x80, x62, x65); x83 = ((uint64_t)x82 + x63); fiat_p256_mulx_u64(&x84, &x85, x2, (arg2[3])); fiat_p256_mulx_u64(&x86, &x87, x2, (arg2[2])); fiat_p256_mulx_u64(&x88, &x89, x2, (arg2[1])); fiat_p256_mulx_u64(&x90, &x91, x2, (arg2[0])); fiat_p256_addcarryx_u64(&x92, &x93, 0x0, x91, x88); fiat_p256_addcarryx_u64(&x94, &x95, x93, x89, x86); fiat_p256_addcarryx_u64(&x96, &x97, x95, x87, x84); x98 = (x97 + x85); fiat_p256_addcarryx_u64(&x99, &x100, 0x0, x75, x90); fiat_p256_addcarryx_u64(&x101, &x102, x100, x77, x92); fiat_p256_addcarryx_u64(&x103, &x104, x102, x79, x94); fiat_p256_addcarryx_u64(&x105, &x106, x104, x81, x96); fiat_p256_addcarryx_u64(&x107, &x108, x106, x83, x98); fiat_p256_mulx_u64(&x109, &x110, x99, UINT64_C(0xffffffff00000001)); fiat_p256_mulx_u64(&x111, &x112, x99, UINT32_C(0xffffffff)); fiat_p256_mulx_u64(&x113, &x114, x99, UINT64_C(0xffffffffffffffff)); fiat_p256_addcarryx_u64(&x115, &x116, 0x0, x114, x111); x117 = (x116 + x112); fiat_p256_addcarryx_u64(&x118, &x119, 0x0, x99, x113); fiat_p256_addcarryx_u64(&x120, &x121, x119, x101, x115); fiat_p256_addcarryx_u64(&x122, &x123, x121, x103, x117); fiat_p256_addcarryx_u64(&x124, &x125, x123, x105, x109); fiat_p256_addcarryx_u64(&x126, &x127, x125, x107, x110); x128 = ((uint64_t)x127 + x108); fiat_p256_mulx_u64(&x129, &x130, x3, (arg2[3])); fiat_p256_mulx_u64(&x131, &x132, x3, (arg2[2])); fiat_p256_mulx_u64(&x133, &x134, x3, (arg2[1])); fiat_p256_mulx_u64(&x135, &x136, x3, (arg2[0])); fiat_p256_addcarryx_u64(&x137, &x138, 0x0, x136, x133); fiat_p256_addcarryx_u64(&x139, &x140, x138, x134, x131); fiat_p256_addcarryx_u64(&x141, &x142, x140, x132, x129); x143 = (x142 + x130); fiat_p256_addcarryx_u64(&x144, &x145, 0x0, x120, x135); fiat_p256_addcarryx_u64(&x146, &x147, x145, x122, x137); fiat_p256_addcarryx_u64(&x148, &x149, x147, x124, x139); fiat_p256_addcarryx_u64(&x150, &x151, x149, x126, x141); fiat_p256_addcarryx_u64(&x152, &x153, x151, x128, x143); fiat_p256_mulx_u64(&x154, &x155, x144, UINT64_C(0xffffffff00000001)); fiat_p256_mulx_u64(&x156, &x157, x144, UINT32_C(0xffffffff)); fiat_p256_mulx_u64(&x158, &x159, x144, UINT64_C(0xffffffffffffffff)); fiat_p256_addcarryx_u64(&x160, &x161, 0x0, x159, x156); x162 = (x161 + x157); fiat_p256_addcarryx_u64(&x163, &x164, 0x0, x144, x158); fiat_p256_addcarryx_u64(&x165, &x166, x164, x146, x160); fiat_p256_addcarryx_u64(&x167, &x168, x166, x148, x162); fiat_p256_addcarryx_u64(&x169, &x170, x168, x150, x154); fiat_p256_addcarryx_u64(&x171, &x172, x170, x152, x155); x173 = ((uint64_t)x172 + x153); fiat_p256_subborrowx_u64(&x174, &x175, 0x0, x165, UINT64_C(0xffffffffffffffff)); fiat_p256_subborrowx_u64(&x176, &x177, x175, x167, UINT32_C(0xffffffff)); fiat_p256_subborrowx_u64(&x178, &x179, x177, x169, 0x0); fiat_p256_subborrowx_u64(&x180, &x181, x179, x171, UINT64_C(0xffffffff00000001)); fiat_p256_subborrowx_u64(&x182, &x183, x181, x173, 0x0); fiat_p256_cmovznz_u64(&x184, x183, x174, x165); fiat_p256_cmovznz_u64(&x185, x183, x176, x167); fiat_p256_cmovznz_u64(&x186, x183, x178, x169); fiat_p256_cmovznz_u64(&x187, x183, x180, x171); out1[0] = x184; out1[1] = x185; out1[2] = x186; out1[3] = x187; } /* * The function fiat_p256_square squares a field element in the Montgomery domain. * * Preconditions: * 0 ≤ eval arg1 < m * Postconditions: * eval (from_montgomery out1) mod m = (eval (from_montgomery arg1) * eval (from_montgomery arg1)) mod m * 0 ≤ eval out1 < m * */ static void fiat_p256_square(fiat_p256_montgomery_domain_field_element out1, const fiat_p256_montgomery_domain_field_element arg1) { uint64_t x1; uint64_t x2; uint64_t x3; uint64_t x4; uint64_t x5; uint64_t x6; uint64_t x7; uint64_t x8; uint64_t x9; uint64_t x10; uint64_t x11; uint64_t x12; uint64_t x13; fiat_p256_uint1 x14; uint64_t x15; fiat_p256_uint1 x16; uint64_t x17; fiat_p256_uint1 x18; uint64_t x19; uint64_t x20; uint64_t x21; uint64_t x22; uint64_t x23; uint64_t x24; uint64_t x25; uint64_t x26; fiat_p256_uint1 x27; uint64_t x28; uint64_t x29; fiat_p256_uint1 x30; uint64_t x31; fiat_p256_uint1 x32; uint64_t x33; fiat_p256_uint1 x34; uint64_t x35; fiat_p256_uint1 x36; uint64_t x37; fiat_p256_uint1 x38; uint64_t x39; uint64_t x40; uint64_t x41; uint64_t x42; uint64_t x43; uint64_t x44; uint64_t x45; uint64_t x46; uint64_t x47; fiat_p256_uint1 x48; uint64_t x49; fiat_p256_uint1 x50; uint64_t x51; fiat_p256_uint1 x52; uint64_t x53; uint64_t x54; fiat_p256_uint1 x55; uint64_t x56; fiat_p256_uint1 x57; uint64_t x58; fiat_p256_uint1 x59; uint64_t x60; fiat_p256_uint1 x61; uint64_t x62; fiat_p256_uint1 x63; uint64_t x64; uint64_t x65; uint64_t x66; uint64_t x67; uint64_t x68; uint64_t x69; uint64_t x70; fiat_p256_uint1 x71; uint64_t x72; uint64_t x73; fiat_p256_uint1 x74; uint64_t x75; fiat_p256_uint1 x76; uint64_t x77; fiat_p256_uint1 x78; uint64_t x79; fiat_p256_uint1 x80; uint64_t x81; fiat_p256_uint1 x82; uint64_t x83; uint64_t x84; uint64_t x85; uint64_t x86; uint64_t x87; uint64_t x88; uint64_t x89; uint64_t x90; uint64_t x91; uint64_t x92; fiat_p256_uint1 x93; uint64_t x94; fiat_p256_uint1 x95; uint64_t x96; fiat_p256_uint1 x97; uint64_t x98; uint64_t x99; fiat_p256_uint1 x100; uint64_t x101; fiat_p256_uint1 x102; uint64_t x103; fiat_p256_uint1 x104; uint64_t x105; fiat_p256_uint1 x106; uint64_t x107; fiat_p256_uint1 x108; uint64_t x109; uint64_t x110; uint64_t x111; uint64_t x112; uint64_t x113; uint64_t x114; uint64_t x115; fiat_p256_uint1 x116; uint64_t x117; uint64_t x118; fiat_p256_uint1 x119; uint64_t x120; fiat_p256_uint1 x121; uint64_t x122; fiat_p256_uint1 x123; uint64_t x124; fiat_p256_uint1 x125; uint64_t x126; fiat_p256_uint1 x127; uint64_t x128; uint64_t x129; uint64_t x130; uint64_t x131; uint64_t x132; uint64_t x133; uint64_t x134; uint64_t x135; uint64_t x136; uint64_t x137; fiat_p256_uint1 x138; uint64_t x139; fiat_p256_uint1 x140; uint64_t x141; fiat_p256_uint1 x142; uint64_t x143; uint64_t x144; fiat_p256_uint1 x145; uint64_t x146; fiat_p256_uint1 x147; uint64_t x148; fiat_p256_uint1 x149; uint64_t x150; fiat_p256_uint1 x151; uint64_t x152; fiat_p256_uint1 x153; uint64_t x154; uint64_t x155; uint64_t x156; uint64_t x157; uint64_t x158; uint64_t x159; uint64_t x160; fiat_p256_uint1 x161; uint64_t x162; uint64_t x163; fiat_p256_uint1 x164; uint64_t x165; fiat_p256_uint1 x166; uint64_t x167; fiat_p256_uint1 x168; uint64_t x169; fiat_p256_uint1 x170; uint64_t x171; fiat_p256_uint1 x172; uint64_t x173; uint64_t x174; fiat_p256_uint1 x175; uint64_t x176; fiat_p256_uint1 x177; uint64_t x178; fiat_p256_uint1 x179; uint64_t x180; fiat_p256_uint1 x181; uint64_t x182; fiat_p256_uint1 x183; uint64_t x184; uint64_t x185; uint64_t x186; uint64_t x187; x1 = (arg1[1]); x2 = (arg1[2]); x3 = (arg1[3]); x4 = (arg1[0]); fiat_p256_mulx_u64(&x5, &x6, x4, (arg1[3])); fiat_p256_mulx_u64(&x7, &x8, x4, (arg1[2])); fiat_p256_mulx_u64(&x9, &x10, x4, (arg1[1])); fiat_p256_mulx_u64(&x11, &x12, x4, (arg1[0])); fiat_p256_addcarryx_u64(&x13, &x14, 0x0, x12, x9); fiat_p256_addcarryx_u64(&x15, &x16, x14, x10, x7); fiat_p256_addcarryx_u64(&x17, &x18, x16, x8, x5); x19 = (x18 + x6); fiat_p256_mulx_u64(&x20, &x21, x11, UINT64_C(0xffffffff00000001)); fiat_p256_mulx_u64(&x22, &x23, x11, UINT32_C(0xffffffff)); fiat_p256_mulx_u64(&x24, &x25, x11, UINT64_C(0xffffffffffffffff)); fiat_p256_addcarryx_u64(&x26, &x27, 0x0, x25, x22); x28 = (x27 + x23); fiat_p256_addcarryx_u64(&x29, &x30, 0x0, x11, x24); fiat_p256_addcarryx_u64(&x31, &x32, x30, x13, x26); fiat_p256_addcarryx_u64(&x33, &x34, x32, x15, x28); fiat_p256_addcarryx_u64(&x35, &x36, x34, x17, x20); fiat_p256_addcarryx_u64(&x37, &x38, x36, x19, x21); fiat_p256_mulx_u64(&x39, &x40, x1, (arg1[3])); fiat_p256_mulx_u64(&x41, &x42, x1, (arg1[2])); fiat_p256_mulx_u64(&x43, &x44, x1, (arg1[1])); fiat_p256_mulx_u64(&x45, &x46, x1, (arg1[0])); fiat_p256_addcarryx_u64(&x47, &x48, 0x0, x46, x43); fiat_p256_addcarryx_u64(&x49, &x50, x48, x44, x41); fiat_p256_addcarryx_u64(&x51, &x52, x50, x42, x39); x53 = (x52 + x40); fiat_p256_addcarryx_u64(&x54, &x55, 0x0, x31, x45); fiat_p256_addcarryx_u64(&x56, &x57, x55, x33, x47); fiat_p256_addcarryx_u64(&x58, &x59, x57, x35, x49); fiat_p256_addcarryx_u64(&x60, &x61, x59, x37, x51); fiat_p256_addcarryx_u64(&x62, &x63, x61, x38, x53); fiat_p256_mulx_u64(&x64, &x65, x54, UINT64_C(0xffffffff00000001)); fiat_p256_mulx_u64(&x66, &x67, x54, UINT32_C(0xffffffff)); fiat_p256_mulx_u64(&x68, &x69, x54, UINT64_C(0xffffffffffffffff)); fiat_p256_addcarryx_u64(&x70, &x71, 0x0, x69, x66); x72 = (x71 + x67); fiat_p256_addcarryx_u64(&x73, &x74, 0x0, x54, x68); fiat_p256_addcarryx_u64(&x75, &x76, x74, x56, x70); fiat_p256_addcarryx_u64(&x77, &x78, x76, x58, x72); fiat_p256_addcarryx_u64(&x79, &x80, x78, x60, x64); fiat_p256_addcarryx_u64(&x81, &x82, x80, x62, x65); x83 = ((uint64_t)x82 + x63); fiat_p256_mulx_u64(&x84, &x85, x2, (arg1[3])); fiat_p256_mulx_u64(&x86, &x87, x2, (arg1[2])); fiat_p256_mulx_u64(&x88, &x89, x2, (arg1[1])); fiat_p256_mulx_u64(&x90, &x91, x2, (arg1[0])); fiat_p256_addcarryx_u64(&x92, &x93, 0x0, x91, x88); fiat_p256_addcarryx_u64(&x94, &x95, x93, x89, x86); fiat_p256_addcarryx_u64(&x96, &x97, x95, x87, x84); x98 = (x97 + x85); fiat_p256_addcarryx_u64(&x99, &x100, 0x0, x75, x90); fiat_p256_addcarryx_u64(&x101, &x102, x100, x77, x92); fiat_p256_addcarryx_u64(&x103, &x104, x102, x79, x94); fiat_p256_addcarryx_u64(&x105, &x106, x104, x81, x96); fiat_p256_addcarryx_u64(&x107, &x108, x106, x83, x98); fiat_p256_mulx_u64(&x109, &x110, x99, UINT64_C(0xffffffff00000001)); fiat_p256_mulx_u64(&x111, &x112, x99, UINT32_C(0xffffffff)); fiat_p256_mulx_u64(&x113, &x114, x99, UINT64_C(0xffffffffffffffff)); fiat_p256_addcarryx_u64(&x115, &x116, 0x0, x114, x111); x117 = (x116 + x112); fiat_p256_addcarryx_u64(&x118, &x119, 0x0, x99, x113); fiat_p256_addcarryx_u64(&x120, &x121, x119, x101, x115); fiat_p256_addcarryx_u64(&x122, &x123, x121, x103, x117); fiat_p256_addcarryx_u64(&x124, &x125, x123, x105, x109); fiat_p256_addcarryx_u64(&x126, &x127, x125, x107, x110); x128 = ((uint64_t)x127 + x108); fiat_p256_mulx_u64(&x129, &x130, x3, (arg1[3])); fiat_p256_mulx_u64(&x131, &x132, x3, (arg1[2])); fiat_p256_mulx_u64(&x133, &x134, x3, (arg1[1])); fiat_p256_mulx_u64(&x135, &x136, x3, (arg1[0])); fiat_p256_addcarryx_u64(&x137, &x138, 0x0, x136, x133); fiat_p256_addcarryx_u64(&x139, &x140, x138, x134, x131); fiat_p256_addcarryx_u64(&x141, &x142, x140, x132, x129); x143 = (x142 + x130); fiat_p256_addcarryx_u64(&x144, &x145, 0x0, x120, x135); fiat_p256_addcarryx_u64(&x146, &x147, x145, x122, x137); fiat_p256_addcarryx_u64(&x148, &x149, x147, x124, x139); fiat_p256_addcarryx_u64(&x150, &x151, x149, x126, x141); fiat_p256_addcarryx_u64(&x152, &x153, x151, x128, x143); fiat_p256_mulx_u64(&x154, &x155, x144, UINT64_C(0xffffffff00000001)); fiat_p256_mulx_u64(&x156, &x157, x144, UINT32_C(0xffffffff)); fiat_p256_mulx_u64(&x158, &x159, x144, UINT64_C(0xffffffffffffffff)); fiat_p256_addcarryx_u64(&x160, &x161, 0x0, x159, x156); x162 = (x161 + x157); fiat_p256_addcarryx_u64(&x163, &x164, 0x0, x144, x158); fiat_p256_addcarryx_u64(&x165, &x166, x164, x146, x160); fiat_p256_addcarryx_u64(&x167, &x168, x166, x148, x162); fiat_p256_addcarryx_u64(&x169, &x170, x168, x150, x154); fiat_p256_addcarryx_u64(&x171, &x172, x170, x152, x155); x173 = ((uint64_t)x172 + x153); fiat_p256_subborrowx_u64(&x174, &x175, 0x0, x165, UINT64_C(0xffffffffffffffff)); fiat_p256_subborrowx_u64(&x176, &x177, x175, x167, UINT32_C(0xffffffff)); fiat_p256_subborrowx_u64(&x178, &x179, x177, x169, 0x0); fiat_p256_subborrowx_u64(&x180, &x181, x179, x171, UINT64_C(0xffffffff00000001)); fiat_p256_subborrowx_u64(&x182, &x183, x181, x173, 0x0); fiat_p256_cmovznz_u64(&x184, x183, x174, x165); fiat_p256_cmovznz_u64(&x185, x183, x176, x167); fiat_p256_cmovznz_u64(&x186, x183, x178, x169); fiat_p256_cmovznz_u64(&x187, x183, x180, x171); out1[0] = x184; out1[1] = x185; out1[2] = x186; out1[3] = x187; } /* * The function fiat_p256_add adds two field elements in the Montgomery domain. * * Preconditions: * 0 ≤ eval arg1 < m * 0 ≤ eval arg2 < m * Postconditions: * eval (from_montgomery out1) mod m = (eval (from_montgomery arg1) + eval (from_montgomery arg2)) mod m * 0 ≤ eval out1 < m * */ static void fiat_p256_add(fiat_p256_montgomery_domain_field_element out1, const fiat_p256_montgomery_domain_field_element arg1, const fiat_p256_montgomery_domain_field_element arg2) { uint64_t x1; fiat_p256_uint1 x2; uint64_t x3; fiat_p256_uint1 x4; uint64_t x5; fiat_p256_uint1 x6; uint64_t x7; fiat_p256_uint1 x8; uint64_t x9; fiat_p256_uint1 x10; uint64_t x11; fiat_p256_uint1 x12; uint64_t x13; fiat_p256_uint1 x14; uint64_t x15; fiat_p256_uint1 x16; uint64_t x17; fiat_p256_uint1 x18; uint64_t x19; uint64_t x20; uint64_t x21; uint64_t x22; fiat_p256_addcarryx_u64(&x1, &x2, 0x0, (arg1[0]), (arg2[0])); fiat_p256_addcarryx_u64(&x3, &x4, x2, (arg1[1]), (arg2[1])); fiat_p256_addcarryx_u64(&x5, &x6, x4, (arg1[2]), (arg2[2])); fiat_p256_addcarryx_u64(&x7, &x8, x6, (arg1[3]), (arg2[3])); fiat_p256_subborrowx_u64(&x9, &x10, 0x0, x1, UINT64_C(0xffffffffffffffff)); fiat_p256_subborrowx_u64(&x11, &x12, x10, x3, UINT32_C(0xffffffff)); fiat_p256_subborrowx_u64(&x13, &x14, x12, x5, 0x0); fiat_p256_subborrowx_u64(&x15, &x16, x14, x7, UINT64_C(0xffffffff00000001)); fiat_p256_subborrowx_u64(&x17, &x18, x16, x8, 0x0); fiat_p256_cmovznz_u64(&x19, x18, x9, x1); fiat_p256_cmovznz_u64(&x20, x18, x11, x3); fiat_p256_cmovznz_u64(&x21, x18, x13, x5); fiat_p256_cmovznz_u64(&x22, x18, x15, x7); out1[0] = x19; out1[1] = x20; out1[2] = x21; out1[3] = x22; } /* * The function fiat_p256_sub subtracts two field elements in the Montgomery domain. * * Preconditions: * 0 ≤ eval arg1 < m * 0 ≤ eval arg2 < m * Postconditions: * eval (from_montgomery out1) mod m = (eval (from_montgomery arg1) - eval (from_montgomery arg2)) mod m * 0 ≤ eval out1 < m * */ static void fiat_p256_sub(fiat_p256_montgomery_domain_field_element out1, const fiat_p256_montgomery_domain_field_element arg1, const fiat_p256_montgomery_domain_field_element arg2) { uint64_t x1; fiat_p256_uint1 x2; uint64_t x3; fiat_p256_uint1 x4; uint64_t x5; fiat_p256_uint1 x6; uint64_t x7; fiat_p256_uint1 x8; uint64_t x9; uint64_t x10; fiat_p256_uint1 x11; uint64_t x12; fiat_p256_uint1 x13; uint64_t x14; fiat_p256_uint1 x15; uint64_t x16; fiat_p256_uint1 x17; fiat_p256_subborrowx_u64(&x1, &x2, 0x0, (arg1[0]), (arg2[0])); fiat_p256_subborrowx_u64(&x3, &x4, x2, (arg1[1]), (arg2[1])); fiat_p256_subborrowx_u64(&x5, &x6, x4, (arg1[2]), (arg2[2])); fiat_p256_subborrowx_u64(&x7, &x8, x6, (arg1[3]), (arg2[3])); fiat_p256_cmovznz_u64(&x9, x8, 0x0, UINT64_C(0xffffffffffffffff)); fiat_p256_addcarryx_u64(&x10, &x11, 0x0, x1, x9); fiat_p256_addcarryx_u64(&x12, &x13, x11, x3, (x9 & UINT32_C(0xffffffff))); fiat_p256_addcarryx_u64(&x14, &x15, x13, x5, 0x0); fiat_p256_addcarryx_u64(&x16, &x17, x15, x7, (x9 & UINT64_C(0xffffffff00000001))); out1[0] = x10; out1[1] = x12; out1[2] = x14; out1[3] = x16; } /* * The function fiat_p256_opp negates a field element in the Montgomery domain. * * Preconditions: * 0 ≤ eval arg1 < m * Postconditions: * eval (from_montgomery out1) mod m = -eval (from_montgomery arg1) mod m * 0 ≤ eval out1 < m * */ static void fiat_p256_opp(fiat_p256_montgomery_domain_field_element out1, const fiat_p256_montgomery_domain_field_element arg1) { uint64_t x1; fiat_p256_uint1 x2; uint64_t x3; fiat_p256_uint1 x4; uint64_t x5; fiat_p256_uint1 x6; uint64_t x7; fiat_p256_uint1 x8; uint64_t x9; uint64_t x10; fiat_p256_uint1 x11; uint64_t x12; fiat_p256_uint1 x13; uint64_t x14; fiat_p256_uint1 x15; uint64_t x16; fiat_p256_uint1 x17; fiat_p256_subborrowx_u64(&x1, &x2, 0x0, 0x0, (arg1[0])); fiat_p256_subborrowx_u64(&x3, &x4, x2, 0x0, (arg1[1])); fiat_p256_subborrowx_u64(&x5, &x6, x4, 0x0, (arg1[2])); fiat_p256_subborrowx_u64(&x7, &x8, x6, 0x0, (arg1[3])); fiat_p256_cmovznz_u64(&x9, x8, 0x0, UINT64_C(0xffffffffffffffff)); fiat_p256_addcarryx_u64(&x10, &x11, 0x0, x1, x9); fiat_p256_addcarryx_u64(&x12, &x13, x11, x3, (x9 & UINT32_C(0xffffffff))); fiat_p256_addcarryx_u64(&x14, &x15, x13, x5, 0x0); fiat_p256_addcarryx_u64(&x16, &x17, x15, x7, (x9 & UINT64_C(0xffffffff00000001))); out1[0] = x10; out1[1] = x12; out1[2] = x14; out1[3] = x16; } /* * The function fiat_p256_from_montgomery translates a field element out of the Montgomery domain. * * Preconditions: * 0 ≤ eval arg1 < m * Postconditions: * eval out1 mod m = (eval arg1 * ((2^64)⁻¹ mod m)^4) mod m * 0 ≤ eval out1 < m * */ static void fiat_p256_from_montgomery(fiat_p256_non_montgomery_domain_field_element out1, const fiat_p256_montgomery_domain_field_element arg1) { uint64_t x1; uint64_t x2; uint64_t x3; uint64_t x4; uint64_t x5; uint64_t x6; uint64_t x7; uint64_t x8; fiat_p256_uint1 x9; uint64_t x10; fiat_p256_uint1 x11; uint64_t x12; fiat_p256_uint1 x13; uint64_t x14; fiat_p256_uint1 x15; uint64_t x16; uint64_t x17; uint64_t x18; uint64_t x19; uint64_t x20; uint64_t x21; uint64_t x22; fiat_p256_uint1 x23; uint64_t x24; fiat_p256_uint1 x25; uint64_t x26; fiat_p256_uint1 x27; uint64_t x28; fiat_p256_uint1 x29; uint64_t x30; fiat_p256_uint1 x31; uint64_t x32; fiat_p256_uint1 x33; uint64_t x34; fiat_p256_uint1 x35; uint64_t x36; fiat_p256_uint1 x37; uint64_t x38; uint64_t x39; uint64_t x40; uint64_t x41; uint64_t x42; uint64_t x43; uint64_t x44; fiat_p256_uint1 x45; uint64_t x46; fiat_p256_uint1 x47; uint64_t x48; fiat_p256_uint1 x49; uint64_t x50; fiat_p256_uint1 x51; uint64_t x52; fiat_p256_uint1 x53; uint64_t x54; fiat_p256_uint1 x55; uint64_t x56; fiat_p256_uint1 x57; uint64_t x58; fiat_p256_uint1 x59; uint64_t x60; uint64_t x61; uint64_t x62; uint64_t x63; uint64_t x64; uint64_t x65; uint64_t x66; fiat_p256_uint1 x67; uint64_t x68; fiat_p256_uint1 x69; uint64_t x70; fiat_p256_uint1 x71; uint64_t x72; fiat_p256_uint1 x73; uint64_t x74; fiat_p256_uint1 x75; uint64_t x76; uint64_t x77; fiat_p256_uint1 x78; uint64_t x79; fiat_p256_uint1 x80; uint64_t x81; fiat_p256_uint1 x82; uint64_t x83; fiat_p256_uint1 x84; uint64_t x85; fiat_p256_uint1 x86; uint64_t x87; uint64_t x88; uint64_t x89; uint64_t x90; x1 = (arg1[0]); fiat_p256_mulx_u64(&x2, &x3, x1, UINT64_C(0xffffffff00000001)); fiat_p256_mulx_u64(&x4, &x5, x1, UINT32_C(0xffffffff)); fiat_p256_mulx_u64(&x6, &x7, x1, UINT64_C(0xffffffffffffffff)); fiat_p256_addcarryx_u64(&x8, &x9, 0x0, x7, x4); fiat_p256_addcarryx_u64(&x10, &x11, 0x0, x1, x6); fiat_p256_addcarryx_u64(&x12, &x13, x11, 0x0, x8); fiat_p256_addcarryx_u64(&x14, &x15, 0x0, x12, (arg1[1])); fiat_p256_mulx_u64(&x16, &x17, x14, UINT64_C(0xffffffff00000001)); fiat_p256_mulx_u64(&x18, &x19, x14, UINT32_C(0xffffffff)); fiat_p256_mulx_u64(&x20, &x21, x14, UINT64_C(0xffffffffffffffff)); fiat_p256_addcarryx_u64(&x22, &x23, 0x0, x21, x18); fiat_p256_addcarryx_u64(&x24, &x25, 0x0, x14, x20); fiat_p256_addcarryx_u64(&x26, &x27, x25, (x15 + (x13 + (x9 + x5))), x22); fiat_p256_addcarryx_u64(&x28, &x29, x27, x2, (x23 + x19)); fiat_p256_addcarryx_u64(&x30, &x31, x29, x3, x16); fiat_p256_addcarryx_u64(&x32, &x33, 0x0, x26, (arg1[2])); fiat_p256_addcarryx_u64(&x34, &x35, x33, x28, 0x0); fiat_p256_addcarryx_u64(&x36, &x37, x35, x30, 0x0); fiat_p256_mulx_u64(&x38, &x39, x32, UINT64_C(0xffffffff00000001)); fiat_p256_mulx_u64(&x40, &x41, x32, UINT32_C(0xffffffff)); fiat_p256_mulx_u64(&x42, &x43, x32, UINT64_C(0xffffffffffffffff)); fiat_p256_addcarryx_u64(&x44, &x45, 0x0, x43, x40); fiat_p256_addcarryx_u64(&x46, &x47, 0x0, x32, x42); fiat_p256_addcarryx_u64(&x48, &x49, x47, x34, x44); fiat_p256_addcarryx_u64(&x50, &x51, x49, x36, (x45 + x41)); fiat_p256_addcarryx_u64(&x52, &x53, x51, (x37 + (x31 + x17)), x38); fiat_p256_addcarryx_u64(&x54, &x55, 0x0, x48, (arg1[3])); fiat_p256_addcarryx_u64(&x56, &x57, x55, x50, 0x0); fiat_p256_addcarryx_u64(&x58, &x59, x57, x52, 0x0); fiat_p256_mulx_u64(&x60, &x61, x54, UINT64_C(0xffffffff00000001)); fiat_p256_mulx_u64(&x62, &x63, x54, UINT32_C(0xffffffff)); fiat_p256_mulx_u64(&x64, &x65, x54, UINT64_C(0xffffffffffffffff)); fiat_p256_addcarryx_u64(&x66, &x67, 0x0, x65, x62); fiat_p256_addcarryx_u64(&x68, &x69, 0x0, x54, x64); fiat_p256_addcarryx_u64(&x70, &x71, x69, x56, x66); fiat_p256_addcarryx_u64(&x72, &x73, x71, x58, (x67 + x63)); fiat_p256_addcarryx_u64(&x74, &x75, x73, (x59 + (x53 + x39)), x60); x76 = (x75 + x61); fiat_p256_subborrowx_u64(&x77, &x78, 0x0, x70, UINT64_C(0xffffffffffffffff)); fiat_p256_subborrowx_u64(&x79, &x80, x78, x72, UINT32_C(0xffffffff)); fiat_p256_subborrowx_u64(&x81, &x82, x80, x74, 0x0); fiat_p256_subborrowx_u64(&x83, &x84, x82, x76, UINT64_C(0xffffffff00000001)); fiat_p256_subborrowx_u64(&x85, &x86, x84, 0x0, 0x0); fiat_p256_cmovznz_u64(&x87, x86, x77, x70); fiat_p256_cmovznz_u64(&x88, x86, x79, x72); fiat_p256_cmovznz_u64(&x89, x86, x81, x74); fiat_p256_cmovznz_u64(&x90, x86, x83, x76); out1[0] = x87; out1[1] = x88; out1[2] = x89; out1[3] = x90; } /* * The function fiat_p256_to_montgomery translates a field element into the Montgomery domain. * * Preconditions: * 0 ≤ eval arg1 < m * Postconditions: * eval (from_montgomery out1) mod m = eval arg1 mod m * 0 ≤ eval out1 < m * */ static void fiat_p256_to_montgomery(fiat_p256_montgomery_domain_field_element out1, const fiat_p256_non_montgomery_domain_field_element arg1) { uint64_t x1; uint64_t x2; uint64_t x3; uint64_t x4; uint64_t x5; uint64_t x6; uint64_t x7; uint64_t x8; uint64_t x9; uint64_t x10; uint64_t x11; uint64_t x12; uint64_t x13; fiat_p256_uint1 x14; uint64_t x15; fiat_p256_uint1 x16; uint64_t x17; fiat_p256_uint1 x18; uint64_t x19; uint64_t x20; uint64_t x21; uint64_t x22; uint64_t x23; uint64_t x24; uint64_t x25; fiat_p256_uint1 x26; uint64_t x27; fiat_p256_uint1 x28; uint64_t x29; fiat_p256_uint1 x30; uint64_t x31; fiat_p256_uint1 x32; uint64_t x33; fiat_p256_uint1 x34; uint64_t x35; fiat_p256_uint1 x36; uint64_t x37; uint64_t x38; uint64_t x39; uint64_t x40; uint64_t x41; uint64_t x42; uint64_t x43; uint64_t x44; uint64_t x45; fiat_p256_uint1 x46; uint64_t x47; fiat_p256_uint1 x48; uint64_t x49; fiat_p256_uint1 x50; uint64_t x51; fiat_p256_uint1 x52; uint64_t x53; fiat_p256_uint1 x54; uint64_t x55; fiat_p256_uint1 x56; uint64_t x57; fiat_p256_uint1 x58; uint64_t x59; uint64_t x60; uint64_t x61; uint64_t x62; uint64_t x63; uint64_t x64; uint64_t x65; fiat_p256_uint1 x66; uint64_t x67; fiat_p256_uint1 x68; uint64_t x69; fiat_p256_uint1 x70; uint64_t x71; fiat_p256_uint1 x72; uint64_t x73; fiat_p256_uint1 x74; uint64_t x75; fiat_p256_uint1 x76; uint64_t x77; uint64_t x78; uint64_t x79; uint64_t x80; uint64_t x81; uint64_t x82; uint64_t x83; uint64_t x84; uint64_t x85; fiat_p256_uint1 x86; uint64_t x87; fiat_p256_uint1 x88; uint64_t x89; fiat_p256_uint1 x90; uint64_t x91; fiat_p256_uint1 x92; uint64_t x93; fiat_p256_uint1 x94; uint64_t x95; fiat_p256_uint1 x96; uint64_t x97; fiat_p256_uint1 x98; uint64_t x99; uint64_t x100; uint64_t x101; uint64_t x102; uint64_t x103; uint64_t x104; uint64_t x105; fiat_p256_uint1 x106; uint64_t x107; fiat_p256_uint1 x108; uint64_t x109; fiat_p256_uint1 x110; uint64_t x111; fiat_p256_uint1 x112; uint64_t x113; fiat_p256_uint1 x114; uint64_t x115; fiat_p256_uint1 x116; uint64_t x117; uint64_t x118; uint64_t x119; uint64_t x120; uint64_t x121; uint64_t x122; uint64_t x123; uint64_t x124; uint64_t x125; fiat_p256_uint1 x126; uint64_t x127; fiat_p256_uint1 x128; uint64_t x129; fiat_p256_uint1 x130; uint64_t x131; fiat_p256_uint1 x132; uint64_t x133; fiat_p256_uint1 x134; uint64_t x135; fiat_p256_uint1 x136; uint64_t x137; fiat_p256_uint1 x138; uint64_t x139; uint64_t x140; uint64_t x141; uint64_t x142; uint64_t x143; uint64_t x144; uint64_t x145; fiat_p256_uint1 x146; uint64_t x147; fiat_p256_uint1 x148; uint64_t x149; fiat_p256_uint1 x150; uint64_t x151; fiat_p256_uint1 x152; uint64_t x153; fiat_p256_uint1 x154; uint64_t x155; fiat_p256_uint1 x156; uint64_t x157; fiat_p256_uint1 x158; uint64_t x159; fiat_p256_uint1 x160; uint64_t x161; fiat_p256_uint1 x162; uint64_t x163; fiat_p256_uint1 x164; uint64_t x165; fiat_p256_uint1 x166; uint64_t x167; uint64_t x168; uint64_t x169; uint64_t x170; x1 = (arg1[1]); x2 = (arg1[2]); x3 = (arg1[3]); x4 = (arg1[0]); fiat_p256_mulx_u64(&x5, &x6, x4, UINT64_C(0x4fffffffd)); fiat_p256_mulx_u64(&x7, &x8, x4, UINT64_C(0xfffffffffffffffe)); fiat_p256_mulx_u64(&x9, &x10, x4, UINT64_C(0xfffffffbffffffff)); fiat_p256_mulx_u64(&x11, &x12, x4, 0x3); fiat_p256_addcarryx_u64(&x13, &x14, 0x0, x12, x9); fiat_p256_addcarryx_u64(&x15, &x16, x14, x10, x7); fiat_p256_addcarryx_u64(&x17, &x18, x16, x8, x5); fiat_p256_mulx_u64(&x19, &x20, x11, UINT64_C(0xffffffff00000001)); fiat_p256_mulx_u64(&x21, &x22, x11, UINT32_C(0xffffffff)); fiat_p256_mulx_u64(&x23, &x24, x11, UINT64_C(0xffffffffffffffff)); fiat_p256_addcarryx_u64(&x25, &x26, 0x0, x24, x21); fiat_p256_addcarryx_u64(&x27, &x28, 0x0, x11, x23); fiat_p256_addcarryx_u64(&x29, &x30, x28, x13, x25); fiat_p256_addcarryx_u64(&x31, &x32, x30, x15, (x26 + x22)); fiat_p256_addcarryx_u64(&x33, &x34, x32, x17, x19); fiat_p256_addcarryx_u64(&x35, &x36, x34, (x18 + x6), x20); fiat_p256_mulx_u64(&x37, &x38, x1, UINT64_C(0x4fffffffd)); fiat_p256_mulx_u64(&x39, &x40, x1, UINT64_C(0xfffffffffffffffe)); fiat_p256_mulx_u64(&x41, &x42, x1, UINT64_C(0xfffffffbffffffff)); fiat_p256_mulx_u64(&x43, &x44, x1, 0x3); fiat_p256_addcarryx_u64(&x45, &x46, 0x0, x44, x41); fiat_p256_addcarryx_u64(&x47, &x48, x46, x42, x39); fiat_p256_addcarryx_u64(&x49, &x50, x48, x40, x37); fiat_p256_addcarryx_u64(&x51, &x52, 0x0, x29, x43); fiat_p256_addcarryx_u64(&x53, &x54, x52, x31, x45); fiat_p256_addcarryx_u64(&x55, &x56, x54, x33, x47); fiat_p256_addcarryx_u64(&x57, &x58, x56, x35, x49); fiat_p256_mulx_u64(&x59, &x60, x51, UINT64_C(0xffffffff00000001)); fiat_p256_mulx_u64(&x61, &x62, x51, UINT32_C(0xffffffff)); fiat_p256_mulx_u64(&x63, &x64, x51, UINT64_C(0xffffffffffffffff)); fiat_p256_addcarryx_u64(&x65, &x66, 0x0, x64, x61); fiat_p256_addcarryx_u64(&x67, &x68, 0x0, x51, x63); fiat_p256_addcarryx_u64(&x69, &x70, x68, x53, x65); fiat_p256_addcarryx_u64(&x71, &x72, x70, x55, (x66 + x62)); fiat_p256_addcarryx_u64(&x73, &x74, x72, x57, x59); fiat_p256_addcarryx_u64(&x75, &x76, x74, (((uint64_t)x58 + x36) + (x50 + x38)), x60); fiat_p256_mulx_u64(&x77, &x78, x2, UINT64_C(0x4fffffffd)); fiat_p256_mulx_u64(&x79, &x80, x2, UINT64_C(0xfffffffffffffffe)); fiat_p256_mulx_u64(&x81, &x82, x2, UINT64_C(0xfffffffbffffffff)); fiat_p256_mulx_u64(&x83, &x84, x2, 0x3); fiat_p256_addcarryx_u64(&x85, &x86, 0x0, x84, x81); fiat_p256_addcarryx_u64(&x87, &x88, x86, x82, x79); fiat_p256_addcarryx_u64(&x89, &x90, x88, x80, x77); fiat_p256_addcarryx_u64(&x91, &x92, 0x0, x69, x83); fiat_p256_addcarryx_u64(&x93, &x94, x92, x71, x85); fiat_p256_addcarryx_u64(&x95, &x96, x94, x73, x87); fiat_p256_addcarryx_u64(&x97, &x98, x96, x75, x89); fiat_p256_mulx_u64(&x99, &x100, x91, UINT64_C(0xffffffff00000001)); fiat_p256_mulx_u64(&x101, &x102, x91, UINT32_C(0xffffffff)); fiat_p256_mulx_u64(&x103, &x104, x91, UINT64_C(0xffffffffffffffff)); fiat_p256_addcarryx_u64(&x105, &x106, 0x0, x104, x101); fiat_p256_addcarryx_u64(&x107, &x108, 0x0, x91, x103); fiat_p256_addcarryx_u64(&x109, &x110, x108, x93, x105); fiat_p256_addcarryx_u64(&x111, &x112, x110, x95, (x106 + x102)); fiat_p256_addcarryx_u64(&x113, &x114, x112, x97, x99); fiat_p256_addcarryx_u64(&x115, &x116, x114, (((uint64_t)x98 + x76) + (x90 + x78)), x100); fiat_p256_mulx_u64(&x117, &x118, x3, UINT64_C(0x4fffffffd)); fiat_p256_mulx_u64(&x119, &x120, x3, UINT64_C(0xfffffffffffffffe)); fiat_p256_mulx_u64(&x121, &x122, x3, UINT64_C(0xfffffffbffffffff)); fiat_p256_mulx_u64(&x123, &x124, x3, 0x3); fiat_p256_addcarryx_u64(&x125, &x126, 0x0, x124, x121); fiat_p256_addcarryx_u64(&x127, &x128, x126, x122, x119); fiat_p256_addcarryx_u64(&x129, &x130, x128, x120, x117); fiat_p256_addcarryx_u64(&x131, &x132, 0x0, x109, x123); fiat_p256_addcarryx_u64(&x133, &x134, x132, x111, x125); fiat_p256_addcarryx_u64(&x135, &x136, x134, x113, x127); fiat_p256_addcarryx_u64(&x137, &x138, x136, x115, x129); fiat_p256_mulx_u64(&x139, &x140, x131, UINT64_C(0xffffffff00000001)); fiat_p256_mulx_u64(&x141, &x142, x131, UINT32_C(0xffffffff)); fiat_p256_mulx_u64(&x143, &x144, x131, UINT64_C(0xffffffffffffffff)); fiat_p256_addcarryx_u64(&x145, &x146, 0x0, x144, x141); fiat_p256_addcarryx_u64(&x147, &x148, 0x0, x131, x143); fiat_p256_addcarryx_u64(&x149, &x150, x148, x133, x145); fiat_p256_addcarryx_u64(&x151, &x152, x150, x135, (x146 + x142)); fiat_p256_addcarryx_u64(&x153, &x154, x152, x137, x139); fiat_p256_addcarryx_u64(&x155, &x156, x154, (((uint64_t)x138 + x116) + (x130 + x118)), x140); fiat_p256_subborrowx_u64(&x157, &x158, 0x0, x149, UINT64_C(0xffffffffffffffff)); fiat_p256_subborrowx_u64(&x159, &x160, x158, x151, UINT32_C(0xffffffff)); fiat_p256_subborrowx_u64(&x161, &x162, x160, x153, 0x0); fiat_p256_subborrowx_u64(&x163, &x164, x162, x155, UINT64_C(0xffffffff00000001)); fiat_p256_subborrowx_u64(&x165, &x166, x164, x156, 0x0); fiat_p256_cmovznz_u64(&x167, x166, x157, x149); fiat_p256_cmovznz_u64(&x168, x166, x159, x151); fiat_p256_cmovznz_u64(&x169, x166, x161, x153); fiat_p256_cmovznz_u64(&x170, x166, x163, x155); out1[0] = x167; out1[1] = x168; out1[2] = x169; out1[3] = x170; } /* * The function fiat_p256_nonzero outputs a single non-zero word if the input is non-zero and zero otherwise. * * Preconditions: * 0 ≤ eval arg1 < m * Postconditions: * out1 = 0 ↔ eval (from_montgomery arg1) mod m = 0 * * Input Bounds: * arg1: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]] * Output Bounds: * out1: [0x0 ~> 0xffffffffffffffff] */ static void fiat_p256_nonzero(uint64_t* out1, const uint64_t arg1[4]) { uint64_t x1; x1 = ((arg1[0]) | ((arg1[1]) | ((arg1[2]) | (arg1[3])))); *out1 = x1; } /* * The function fiat_p256_selectznz is a multi-limb conditional select. * * Postconditions: * out1 = (if arg1 = 0 then arg2 else arg3) * * Input Bounds: * arg1: [0x0 ~> 0x1] * arg2: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]] * arg3: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]] * Output Bounds: * out1: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]] */ static void fiat_p256_selectznz(uint64_t out1[4], fiat_p256_uint1 arg1, const uint64_t arg2[4], const uint64_t arg3[4]) { uint64_t x1; uint64_t x2; uint64_t x3; uint64_t x4; fiat_p256_cmovznz_u64(&x1, arg1, (arg2[0]), (arg3[0])); fiat_p256_cmovznz_u64(&x2, arg1, (arg2[1]), (arg3[1])); fiat_p256_cmovznz_u64(&x3, arg1, (arg2[2]), (arg3[2])); fiat_p256_cmovznz_u64(&x4, arg1, (arg2[3]), (arg3[3])); out1[0] = x1; out1[1] = x2; out1[2] = x3; out1[3] = x4; } /* * The function fiat_p256_to_bytes serializes a field element NOT in the Montgomery domain to bytes in little-endian order. * * Preconditions: * 0 ≤ eval arg1 < m * Postconditions: * out1 = map (λ x, ⌊((eval arg1 mod m) mod 2^(8 * (x + 1))) / 2^(8 * x)⌋) [0..31] * * Input Bounds: * arg1: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]] * Output Bounds: * out1: [[0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff]] */ static void fiat_p256_to_bytes(uint8_t out1[32], const uint64_t arg1[4]) { uint64_t x1; uint64_t x2; uint64_t x3; uint64_t x4; uint8_t x5; uint64_t x6; uint8_t x7; uint64_t x8; uint8_t x9; uint64_t x10; uint8_t x11; uint64_t x12; uint8_t x13; uint64_t x14; uint8_t x15; uint64_t x16; uint8_t x17; uint8_t x18; uint8_t x19; uint64_t x20; uint8_t x21; uint64_t x22; uint8_t x23; uint64_t x24; uint8_t x25; uint64_t x26; uint8_t x27; uint64_t x28; uint8_t x29; uint64_t x30; uint8_t x31; uint8_t x32; uint8_t x33; uint64_t x34; uint8_t x35; uint64_t x36; uint8_t x37; uint64_t x38; uint8_t x39; uint64_t x40; uint8_t x41; uint64_t x42; uint8_t x43; uint64_t x44; uint8_t x45; uint8_t x46; uint8_t x47; uint64_t x48; uint8_t x49; uint64_t x50; uint8_t x51; uint64_t x52; uint8_t x53; uint64_t x54; uint8_t x55; uint64_t x56; uint8_t x57; uint64_t x58; uint8_t x59; uint8_t x60; x1 = (arg1[3]); x2 = (arg1[2]); x3 = (arg1[1]); x4 = (arg1[0]); x5 = (uint8_t)(x4 & UINT8_C(0xff)); x6 = (x4 >> 8); x7 = (uint8_t)(x6 & UINT8_C(0xff)); x8 = (x6 >> 8); x9 = (uint8_t)(x8 & UINT8_C(0xff)); x10 = (x8 >> 8); x11 = (uint8_t)(x10 & UINT8_C(0xff)); x12 = (x10 >> 8); x13 = (uint8_t)(x12 & UINT8_C(0xff)); x14 = (x12 >> 8); x15 = (uint8_t)(x14 & UINT8_C(0xff)); x16 = (x14 >> 8); x17 = (uint8_t)(x16 & UINT8_C(0xff)); x18 = (uint8_t)(x16 >> 8); x19 = (uint8_t)(x3 & UINT8_C(0xff)); x20 = (x3 >> 8); x21 = (uint8_t)(x20 & UINT8_C(0xff)); x22 = (x20 >> 8); x23 = (uint8_t)(x22 & UINT8_C(0xff)); x24 = (x22 >> 8); x25 = (uint8_t)(x24 & UINT8_C(0xff)); x26 = (x24 >> 8); x27 = (uint8_t)(x26 & UINT8_C(0xff)); x28 = (x26 >> 8); x29 = (uint8_t)(x28 & UINT8_C(0xff)); x30 = (x28 >> 8); x31 = (uint8_t)(x30 & UINT8_C(0xff)); x32 = (uint8_t)(x30 >> 8); x33 = (uint8_t)(x2 & UINT8_C(0xff)); x34 = (x2 >> 8); x35 = (uint8_t)(x34 & UINT8_C(0xff)); x36 = (x34 >> 8); x37 = (uint8_t)(x36 & UINT8_C(0xff)); x38 = (x36 >> 8); x39 = (uint8_t)(x38 & UINT8_C(0xff)); x40 = (x38 >> 8); x41 = (uint8_t)(x40 & UINT8_C(0xff)); x42 = (x40 >> 8); x43 = (uint8_t)(x42 & UINT8_C(0xff)); x44 = (x42 >> 8); x45 = (uint8_t)(x44 & UINT8_C(0xff)); x46 = (uint8_t)(x44 >> 8); x47 = (uint8_t)(x1 & UINT8_C(0xff)); x48 = (x1 >> 8); x49 = (uint8_t)(x48 & UINT8_C(0xff)); x50 = (x48 >> 8); x51 = (uint8_t)(x50 & UINT8_C(0xff)); x52 = (x50 >> 8); x53 = (uint8_t)(x52 & UINT8_C(0xff)); x54 = (x52 >> 8); x55 = (uint8_t)(x54 & UINT8_C(0xff)); x56 = (x54 >> 8); x57 = (uint8_t)(x56 & UINT8_C(0xff)); x58 = (x56 >> 8); x59 = (uint8_t)(x58 & UINT8_C(0xff)); x60 = (uint8_t)(x58 >> 8); out1[0] = x5; out1[1] = x7; out1[2] = x9; out1[3] = x11; out1[4] = x13; out1[5] = x15; out1[6] = x17; out1[7] = x18; out1[8] = x19; out1[9] = x21; out1[10] = x23; out1[11] = x25; out1[12] = x27; out1[13] = x29; out1[14] = x31; out1[15] = x32; out1[16] = x33; out1[17] = x35; out1[18] = x37; out1[19] = x39; out1[20] = x41; out1[21] = x43; out1[22] = x45; out1[23] = x46; out1[24] = x47; out1[25] = x49; out1[26] = x51; out1[27] = x53; out1[28] = x55; out1[29] = x57; out1[30] = x59; out1[31] = x60; } /* * The function fiat_p256_from_bytes deserializes a field element NOT in the Montgomery domain from bytes in little-endian order. * * Preconditions: * 0 ≤ bytes_eval arg1 < m * Postconditions: * eval out1 mod m = bytes_eval arg1 mod m * 0 ≤ eval out1 < m * * Input Bounds: * arg1: [[0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff]] * Output Bounds: * out1: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]] */ static void fiat_p256_from_bytes(uint64_t out1[4], const uint8_t arg1[32]) { uint64_t x1; uint64_t x2; uint64_t x3; uint64_t x4; uint64_t x5; uint64_t x6; uint64_t x7; uint8_t x8; uint64_t x9; uint64_t x10; uint64_t x11; uint64_t x12; uint64_t x13; uint64_t x14; uint64_t x15; uint8_t x16; uint64_t x17; uint64_t x18; uint64_t x19; uint64_t x20; uint64_t x21; uint64_t x22; uint64_t x23; uint8_t x24; uint64_t x25; uint64_t x26; uint64_t x27; uint64_t x28; uint64_t x29; uint64_t x30; uint64_t x31; uint8_t x32; uint64_t x33; uint64_t x34; uint64_t x35; uint64_t x36; uint64_t x37; uint64_t x38; uint64_t x39; uint64_t x40; uint64_t x41; uint64_t x42; uint64_t x43; uint64_t x44; uint64_t x45; uint64_t x46; uint64_t x47; uint64_t x48; uint64_t x49; uint64_t x50; uint64_t x51; uint64_t x52; uint64_t x53; uint64_t x54; uint64_t x55; uint64_t x56; uint64_t x57; uint64_t x58; uint64_t x59; uint64_t x60; x1 = ((uint64_t)(arg1[31]) << 56); x2 = ((uint64_t)(arg1[30]) << 48); x3 = ((uint64_t)(arg1[29]) << 40); x4 = ((uint64_t)(arg1[28]) << 32); x5 = ((uint64_t)(arg1[27]) << 24); x6 = ((uint64_t)(arg1[26]) << 16); x7 = ((uint64_t)(arg1[25]) << 8); x8 = (arg1[24]); x9 = ((uint64_t)(arg1[23]) << 56); x10 = ((uint64_t)(arg1[22]) << 48); x11 = ((uint64_t)(arg1[21]) << 40); x12 = ((uint64_t)(arg1[20]) << 32); x13 = ((uint64_t)(arg1[19]) << 24); x14 = ((uint64_t)(arg1[18]) << 16); x15 = ((uint64_t)(arg1[17]) << 8); x16 = (arg1[16]); x17 = ((uint64_t)(arg1[15]) << 56); x18 = ((uint64_t)(arg1[14]) << 48); x19 = ((uint64_t)(arg1[13]) << 40); x20 = ((uint64_t)(arg1[12]) << 32); x21 = ((uint64_t)(arg1[11]) << 24); x22 = ((uint64_t)(arg1[10]) << 16); x23 = ((uint64_t)(arg1[9]) << 8); x24 = (arg1[8]); x25 = ((uint64_t)(arg1[7]) << 56); x26 = ((uint64_t)(arg1[6]) << 48); x27 = ((uint64_t)(arg1[5]) << 40); x28 = ((uint64_t)(arg1[4]) << 32); x29 = ((uint64_t)(arg1[3]) << 24); x30 = ((uint64_t)(arg1[2]) << 16); x31 = ((uint64_t)(arg1[1]) << 8); x32 = (arg1[0]); x33 = (x31 + (uint64_t)x32); x34 = (x30 + x33); x35 = (x29 + x34); x36 = (x28 + x35); x37 = (x27 + x36); x38 = (x26 + x37); x39 = (x25 + x38); x40 = (x23 + (uint64_t)x24); x41 = (x22 + x40); x42 = (x21 + x41); x43 = (x20 + x42); x44 = (x19 + x43); x45 = (x18 + x44); x46 = (x17 + x45); x47 = (x15 + (uint64_t)x16); x48 = (x14 + x47); x49 = (x13 + x48); x50 = (x12 + x49); x51 = (x11 + x50); x52 = (x10 + x51); x53 = (x9 + x52); x54 = (x7 + (uint64_t)x8); x55 = (x6 + x54); x56 = (x5 + x55); x57 = (x4 + x56); x58 = (x3 + x57); x59 = (x2 + x58); x60 = (x1 + x59); out1[0] = x39; out1[1] = x46; out1[2] = x53; out1[3] = x60; } /* * The function fiat_p256_set_one returns the field element one in the Montgomery domain. * * Postconditions: * eval (from_montgomery out1) mod m = 1 mod m * 0 ≤ eval out1 < m * */ static void fiat_p256_set_one(fiat_p256_montgomery_domain_field_element out1) { out1[0] = 0x1; out1[1] = UINT64_C(0xffffffff00000000); out1[2] = UINT64_C(0xffffffffffffffff); out1[3] = UINT32_C(0xfffffffe); } /* * The function fiat_p256_msat returns the saturated representation of the prime modulus. * * Postconditions: * twos_complement_eval out1 = m * 0 ≤ eval out1 < m * * Output Bounds: * out1: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]] */ static void fiat_p256_msat(uint64_t out1[5]) { out1[0] = UINT64_C(0xffffffffffffffff); out1[1] = UINT32_C(0xffffffff); out1[2] = 0x0; out1[3] = UINT64_C(0xffffffff00000001); out1[4] = 0x0; } /* * The function fiat_p256_divstep_precomp returns the precomputed value for Bernstein-Yang-inversion (in montgomery form). * * Postconditions: * eval (from_montgomery out1) = ⌊(m - 1) / 2⌋^(if ⌊log2 m⌋ + 1 < 46 then ⌊(49 * (⌊log2 m⌋ + 1) + 80) / 17⌋ else ⌊(49 * (⌊log2 m⌋ + 1) + 57) / 17⌋) * 0 ≤ eval out1 < m * * Output Bounds: * out1: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]] */ static void fiat_p256_divstep_precomp(uint64_t out1[4]) { out1[0] = UINT64_C(0x67ffffffb8000000); out1[1] = UINT64_C(0xc000000038000000); out1[2] = UINT64_C(0xd80000007fffffff); out1[3] = UINT64_C(0x2fffffffffffffff); } /* * The function fiat_p256_divstep computes a divstep. * * Preconditions: * 0 ≤ eval arg4 < m * 0 ≤ eval arg5 < m * Postconditions: * out1 = (if 0 < arg1 ∧ (twos_complement_eval arg3) is odd then 1 - arg1 else 1 + arg1) * twos_complement_eval out2 = (if 0 < arg1 ∧ (twos_complement_eval arg3) is odd then twos_complement_eval arg3 else twos_complement_eval arg2) * twos_complement_eval out3 = (if 0 < arg1 ∧ (twos_complement_eval arg3) is odd then ⌊(twos_complement_eval arg3 - twos_complement_eval arg2) / 2⌋ else ⌊(twos_complement_eval arg3 + (twos_complement_eval arg3 mod 2) * twos_complement_eval arg2) / 2⌋) * eval (from_montgomery out4) mod m = (if 0 < arg1 ∧ (twos_complement_eval arg3) is odd then (2 * eval (from_montgomery arg5)) mod m else (2 * eval (from_montgomery arg4)) mod m) * eval (from_montgomery out5) mod m = (if 0 < arg1 ∧ (twos_complement_eval arg3) is odd then (eval (from_montgomery arg4) - eval (from_montgomery arg4)) mod m else (eval (from_montgomery arg5) + (twos_complement_eval arg3 mod 2) * eval (from_montgomery arg4)) mod m) * 0 ≤ eval out5 < m * 0 ≤ eval out5 < m * 0 ≤ eval out2 < m * 0 ≤ eval out3 < m * * Input Bounds: * arg1: [0x0 ~> 0xffffffffffffffff] * arg2: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]] * arg3: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]] * arg4: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]] * arg5: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]] * Output Bounds: * out1: [0x0 ~> 0xffffffffffffffff] * out2: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]] * out3: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]] * out4: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]] * out5: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]] */ static void fiat_p256_divstep(uint64_t* out1, uint64_t out2[5], uint64_t out3[5], uint64_t out4[4], uint64_t out5[4], uint64_t arg1, const uint64_t arg2[5], const uint64_t arg3[5], const uint64_t arg4[4], const uint64_t arg5[4]) { uint64_t x1; fiat_p256_uint1 x2; fiat_p256_uint1 x3; uint64_t x4; fiat_p256_uint1 x5; uint64_t x6; uint64_t x7; uint64_t x8; uint64_t x9; uint64_t x10; uint64_t x11; uint64_t x12; fiat_p256_uint1 x13; uint64_t x14; fiat_p256_uint1 x15; uint64_t x16; fiat_p256_uint1 x17; uint64_t x18; fiat_p256_uint1 x19; uint64_t x20; fiat_p256_uint1 x21; uint64_t x22; uint64_t x23; uint64_t x24; uint64_t x25; uint64_t x26; uint64_t x27; uint64_t x28; uint64_t x29; uint64_t x30; uint64_t x31; fiat_p256_uint1 x32; uint64_t x33; fiat_p256_uint1 x34; uint64_t x35; fiat_p256_uint1 x36; uint64_t x37; fiat_p256_uint1 x38; uint64_t x39; fiat_p256_uint1 x40; uint64_t x41; fiat_p256_uint1 x42; uint64_t x43; fiat_p256_uint1 x44; uint64_t x45; fiat_p256_uint1 x46; uint64_t x47; fiat_p256_uint1 x48; uint64_t x49; uint64_t x50; uint64_t x51; uint64_t x52; uint64_t x53; fiat_p256_uint1 x54; uint64_t x55; fiat_p256_uint1 x56; uint64_t x57; fiat_p256_uint1 x58; uint64_t x59; fiat_p256_uint1 x60; uint64_t x61; uint64_t x62; fiat_p256_uint1 x63; uint64_t x64; fiat_p256_uint1 x65; uint64_t x66; fiat_p256_uint1 x67; uint64_t x68; fiat_p256_uint1 x69; uint64_t x70; uint64_t x71; uint64_t x72; uint64_t x73; fiat_p256_uint1 x74; uint64_t x75; uint64_t x76; uint64_t x77; uint64_t x78; uint64_t x79; uint64_t x80; fiat_p256_uint1 x81; uint64_t x82; fiat_p256_uint1 x83; uint64_t x84; fiat_p256_uint1 x85; uint64_t x86; fiat_p256_uint1 x87; uint64_t x88; fiat_p256_uint1 x89; uint64_t x90; uint64_t x91; uint64_t x92; uint64_t x93; uint64_t x94; fiat_p256_uint1 x95; uint64_t x96; fiat_p256_uint1 x97; uint64_t x98; fiat_p256_uint1 x99; uint64_t x100; fiat_p256_uint1 x101; uint64_t x102; fiat_p256_uint1 x103; uint64_t x104; fiat_p256_uint1 x105; uint64_t x106; fiat_p256_uint1 x107; uint64_t x108; fiat_p256_uint1 x109; uint64_t x110; fiat_p256_uint1 x111; uint64_t x112; fiat_p256_uint1 x113; uint64_t x114; uint64_t x115; uint64_t x116; uint64_t x117; uint64_t x118; uint64_t x119; uint64_t x120; uint64_t x121; uint64_t x122; uint64_t x123; uint64_t x124; uint64_t x125; uint64_t x126; fiat_p256_addcarryx_u64(&x1, &x2, 0x0, (~arg1), 0x1); x3 = (fiat_p256_uint1)((fiat_p256_uint1)(x1 >> 63) & (fiat_p256_uint1)((arg3[0]) & 0x1)); fiat_p256_addcarryx_u64(&x4, &x5, 0x0, (~arg1), 0x1); fiat_p256_cmovznz_u64(&x6, x3, arg1, x4); fiat_p256_cmovznz_u64(&x7, x3, (arg2[0]), (arg3[0])); fiat_p256_cmovznz_u64(&x8, x3, (arg2[1]), (arg3[1])); fiat_p256_cmovznz_u64(&x9, x3, (arg2[2]), (arg3[2])); fiat_p256_cmovznz_u64(&x10, x3, (arg2[3]), (arg3[3])); fiat_p256_cmovznz_u64(&x11, x3, (arg2[4]), (arg3[4])); fiat_p256_addcarryx_u64(&x12, &x13, 0x0, 0x1, (~(arg2[0]))); fiat_p256_addcarryx_u64(&x14, &x15, x13, 0x0, (~(arg2[1]))); fiat_p256_addcarryx_u64(&x16, &x17, x15, 0x0, (~(arg2[2]))); fiat_p256_addcarryx_u64(&x18, &x19, x17, 0x0, (~(arg2[3]))); fiat_p256_addcarryx_u64(&x20, &x21, x19, 0x0, (~(arg2[4]))); fiat_p256_cmovznz_u64(&x22, x3, (arg3[0]), x12); fiat_p256_cmovznz_u64(&x23, x3, (arg3[1]), x14); fiat_p256_cmovznz_u64(&x24, x3, (arg3[2]), x16); fiat_p256_cmovznz_u64(&x25, x3, (arg3[3]), x18); fiat_p256_cmovznz_u64(&x26, x3, (arg3[4]), x20); fiat_p256_cmovznz_u64(&x27, x3, (arg4[0]), (arg5[0])); fiat_p256_cmovznz_u64(&x28, x3, (arg4[1]), (arg5[1])); fiat_p256_cmovznz_u64(&x29, x3, (arg4[2]), (arg5[2])); fiat_p256_cmovznz_u64(&x30, x3, (arg4[3]), (arg5[3])); fiat_p256_addcarryx_u64(&x31, &x32, 0x0, x27, x27); fiat_p256_addcarryx_u64(&x33, &x34, x32, x28, x28); fiat_p256_addcarryx_u64(&x35, &x36, x34, x29, x29); fiat_p256_addcarryx_u64(&x37, &x38, x36, x30, x30); fiat_p256_subborrowx_u64(&x39, &x40, 0x0, x31, UINT64_C(0xffffffffffffffff)); fiat_p256_subborrowx_u64(&x41, &x42, x40, x33, UINT32_C(0xffffffff)); fiat_p256_subborrowx_u64(&x43, &x44, x42, x35, 0x0); fiat_p256_subborrowx_u64(&x45, &x46, x44, x37, UINT64_C(0xffffffff00000001)); fiat_p256_subborrowx_u64(&x47, &x48, x46, x38, 0x0); x49 = (arg4[3]); x50 = (arg4[2]); x51 = (arg4[1]); x52 = (arg4[0]); fiat_p256_subborrowx_u64(&x53, &x54, 0x0, 0x0, x52); fiat_p256_subborrowx_u64(&x55, &x56, x54, 0x0, x51); fiat_p256_subborrowx_u64(&x57, &x58, x56, 0x0, x50); fiat_p256_subborrowx_u64(&x59, &x60, x58, 0x0, x49); fiat_p256_cmovznz_u64(&x61, x60, 0x0, UINT64_C(0xffffffffffffffff)); fiat_p256_addcarryx_u64(&x62, &x63, 0x0, x53, x61); fiat_p256_addcarryx_u64(&x64, &x65, x63, x55, (x61 & UINT32_C(0xffffffff))); fiat_p256_addcarryx_u64(&x66, &x67, x65, x57, 0x0); fiat_p256_addcarryx_u64(&x68, &x69, x67, x59, (x61 & UINT64_C(0xffffffff00000001))); fiat_p256_cmovznz_u64(&x70, x3, (arg5[0]), x62); fiat_p256_cmovznz_u64(&x71, x3, (arg5[1]), x64); fiat_p256_cmovznz_u64(&x72, x3, (arg5[2]), x66); fiat_p256_cmovznz_u64(&x73, x3, (arg5[3]), x68); x74 = (fiat_p256_uint1)(x22 & 0x1); fiat_p256_cmovznz_u64(&x75, x74, 0x0, x7); fiat_p256_cmovznz_u64(&x76, x74, 0x0, x8); fiat_p256_cmovznz_u64(&x77, x74, 0x0, x9); fiat_p256_cmovznz_u64(&x78, x74, 0x0, x10); fiat_p256_cmovznz_u64(&x79, x74, 0x0, x11); fiat_p256_addcarryx_u64(&x80, &x81, 0x0, x22, x75); fiat_p256_addcarryx_u64(&x82, &x83, x81, x23, x76); fiat_p256_addcarryx_u64(&x84, &x85, x83, x24, x77); fiat_p256_addcarryx_u64(&x86, &x87, x85, x25, x78); fiat_p256_addcarryx_u64(&x88, &x89, x87, x26, x79); fiat_p256_cmovznz_u64(&x90, x74, 0x0, x27); fiat_p256_cmovznz_u64(&x91, x74, 0x0, x28); fiat_p256_cmovznz_u64(&x92, x74, 0x0, x29); fiat_p256_cmovznz_u64(&x93, x74, 0x0, x30); fiat_p256_addcarryx_u64(&x94, &x95, 0x0, x70, x90); fiat_p256_addcarryx_u64(&x96, &x97, x95, x71, x91); fiat_p256_addcarryx_u64(&x98, &x99, x97, x72, x92); fiat_p256_addcarryx_u64(&x100, &x101, x99, x73, x93); fiat_p256_subborrowx_u64(&x102, &x103, 0x0, x94, UINT64_C(0xffffffffffffffff)); fiat_p256_subborrowx_u64(&x104, &x105, x103, x96, UINT32_C(0xffffffff)); fiat_p256_subborrowx_u64(&x106, &x107, x105, x98, 0x0); fiat_p256_subborrowx_u64(&x108, &x109, x107, x100, UINT64_C(0xffffffff00000001)); fiat_p256_subborrowx_u64(&x110, &x111, x109, x101, 0x0); fiat_p256_addcarryx_u64(&x112, &x113, 0x0, x6, 0x1); x114 = ((x80 >> 1) | ((x82 << 63) & UINT64_C(0xffffffffffffffff))); x115 = ((x82 >> 1) | ((x84 << 63) & UINT64_C(0xffffffffffffffff))); x116 = ((x84 >> 1) | ((x86 << 63) & UINT64_C(0xffffffffffffffff))); x117 = ((x86 >> 1) | ((x88 << 63) & UINT64_C(0xffffffffffffffff))); x118 = ((x88 & UINT64_C(0x8000000000000000)) | (x88 >> 1)); fiat_p256_cmovznz_u64(&x119, x48, x39, x31); fiat_p256_cmovznz_u64(&x120, x48, x41, x33); fiat_p256_cmovznz_u64(&x121, x48, x43, x35); fiat_p256_cmovznz_u64(&x122, x48, x45, x37); fiat_p256_cmovznz_u64(&x123, x111, x102, x94); fiat_p256_cmovznz_u64(&x124, x111, x104, x96); fiat_p256_cmovznz_u64(&x125, x111, x106, x98); fiat_p256_cmovznz_u64(&x126, x111, x108, x100); *out1 = x112; out2[0] = x7; out2[1] = x8; out2[2] = x9; out2[3] = x10; out2[4] = x11; out3[0] = x114; out3[1] = x115; out3[2] = x116; out3[3] = x117; out3[4] = x118; out4[0] = x119; out4[1] = x120; out4[2] = x121; out4[3] = x122; out5[0] = x123; out5[1] = x124; out5[2] = x125; out5[3] = x126; }
mirage-crypto
2.0.2
ISC
https://github.com/mirage/mirage-crypto
git+https://github.com/mirage/mirage-crypto.git
c
mirage-crypto-2.0.2/ec/native/p256_stubs.c
#include "mirage_crypto.h" /* Microsoft compiler does not support 128-bit integers. Drop down to * 32-bit for MSVC. */ #if defined(ARCH_64BIT) && !defined(_MSC_VER) #include "p256_64.h" #define LIMBS 4 #define WORD uint64_t #define WORDSIZE 64 #include "p256_tables_64.h" #else #include "p256_32.h" #define LIMBS 8 #define WORD uint32_t #define WORDSIZE 32 #include "p256_tables_32.h" #endif #define LEN_PRIME 256 #define CURVE_DESCRIPTION fiat_p256 #include "inversion_template.h" #include "point_operations.h" #include <caml/memory.h> CAMLprim value mc_p256_sub(value out, value a, value b) { CAMLparam3(out, a, b); fiat_p256_sub((WORD*)Bytes_val(out), (const WORD*)String_val(a), (const WORD*)String_val(b)); CAMLreturn(Val_unit); } CAMLprim value mc_p256_add(value out, value a, value b) { CAMLparam3(out, a, b); fiat_p256_add((WORD*)Bytes_val(out), (const WORD*)String_val(a), (const WORD*)String_val(b)); CAMLreturn(Val_unit); } CAMLprim value mc_p256_mul(value out, value a, value b) { CAMLparam3(out, a, b); fiat_p256_mul((WORD*)Bytes_val(out), (const WORD*)String_val(a), (const WORD*)String_val(b)); CAMLreturn(Val_unit); } CAMLprim value mc_p256_from_bytes(value out, value in) { CAMLparam2(out, in); fiat_p256_from_bytes((WORD*)Bytes_val(out), _st_uint8(in)); CAMLreturn(Val_unit); } CAMLprim value mc_p256_to_bytes(value out, value in) { CAMLparam2(out, in); fiat_p256_to_bytes(Bytes_val(out), (const WORD*)String_val(in)); CAMLreturn(Val_unit); } CAMLprim value mc_p256_sqr(value out, value in) { CAMLparam2(out, in); fiat_p256_square((WORD*)Bytes_val(out), (const WORD*)String_val(in)); CAMLreturn(Val_unit); } CAMLprim value mc_p256_from_montgomery(value out, value in) { CAMLparam2(out, in); fiat_p256_from_montgomery((WORD*)Bytes_val(out), (const WORD*)String_val(in)); CAMLreturn(Val_unit); } CAMLprim value mc_p256_to_montgomery(value out, value in) { CAMLparam2(out, in); fiat_p256_to_montgomery((WORD*)Bytes_val(out), (const WORD*)String_val(in)); CAMLreturn(Val_unit); } CAMLprim value mc_p256_nz(value x) { CAMLparam1(x); CAMLreturn(Val_bool(fe_nz((const WORD*)String_val(x)))); } CAMLprim value mc_p256_set_one(value x) { CAMLparam1(x); fiat_p256_set_one((WORD*)Bytes_val(x)); CAMLreturn(Val_unit); } CAMLprim value mc_p256_inv(value out, value in) { CAMLparam2(out, in); inversion((WORD*)Bytes_val(out), (const WORD*)String_val(in)); CAMLreturn(Val_unit); } CAMLprim value mc_p256_point_double(value out, value in) { CAMLparam2(out, in); point_double( (WORD*)Bytes_val(Field(out, 0)), (WORD*)Bytes_val(Field(out, 1)), (WORD*)Bytes_val(Field(out, 2)), (const WORD*)String_val(Field(in, 0)), (const WORD*)String_val(Field(in, 1)), (const WORD*)String_val(Field(in, 2)) ); CAMLreturn(Val_unit); } CAMLprim value mc_p256_point_add(value out, value p, value q) { CAMLparam3(out, p, q); point_add( (WORD*)Bytes_val(Field(out, 0)), (WORD*)Bytes_val(Field(out, 1)), (WORD*)Bytes_val(Field(out, 2)), (const WORD*)String_val(Field(p, 0)), (const WORD*)String_val(Field(p, 1)), (const WORD*)String_val(Field(p, 2)), 0, (const WORD*)String_val(Field(q, 0)), (const WORD*)String_val(Field(q, 1)), (const WORD*)String_val(Field(q, 2)) ); CAMLreturn(Val_unit); } CAMLprim value mc_p256_select(value out, value bit, value t, value f) { CAMLparam4(out, bit, t, f); fe_cmovznz( (WORD*)Bytes_val(out), Bool_val(bit), (const WORD*)String_val(f), (const WORD*)String_val(t) ); CAMLreturn(Val_unit); } CAMLprim value mc_p256_scalar_mult_base(value out, value s) { CAMLparam2(out, s); scalar_mult_base( (WORD *) Bytes_val(Field(out, 0)), (WORD *) Bytes_val(Field(out, 1)), (WORD *) Bytes_val(Field(out, 2)), _st_uint8(s), caml_string_length(s) ); CAMLreturn(Val_unit); }
mirage-crypto
2.0.2
ISC
https://github.com/mirage/mirage-crypto
git+https://github.com/mirage/mirage-crypto.git
h
mirage-crypto-2.0.2/ec/native/p256_tables_32.h
/* Pre-computed 32-bit multiples of the generator point G for the curve p256, used for speeding up its scalar multiplication in point_operations.h. Generated by ../../_build/default/ec/gen_tables/gen_tables.exe */ #ifdef ARCH_64BIT #error "Cannot use 32-bit tables on a 64-bit architecture" #endif static WORD generator_table[64][15][3][LIMBS] = { { { { 0x18a9143c, 0x79e730d4, 0x5fedb601, 0x75ba95fc, 0x77622510, 0x79fb732b, 0xa53755c6, 0x18905f76 }, { 0xce95560a, 0xddf25357, 0xba19e45c, 0x8b4ab8e4, 0xdd21f325, 0xd2e88688, 0x25885d85, 0x8571ff18 }, { 0x000001, 00000000, 00000000, 0xffffffff, 0xffffffff, 0xffffffff, 0xfffffffe, 00000000 } }, { { 0x4f2bf829, 0xf26ac1b5, 0x31355d9b, 0xc6b2e33a, 0xa7090a86, 0xd2aad563, 0xe25e717a, 0x5de4f991 }, { 0x3ccc950d, 0xdab96712, 0xaa13daa3, 0xcf48a95e, 0xce880027, 0xda98128d, 0x77bd1fde, 0xf9f84f1f }, { 0x9d2aac15, 0xbbe4a6af, 0x7433c8b9, 0x169571c8, 0xba43e64b, 0xa5d10d11, 0x4b10bb0a, 0xae3fe31 } }, { { 0xb4235604, 0xe16eae8, 0x8ad155f8, 0xb6e43647, 0xc16afc6b, 0xf49e9b74, 0x3eb7592c, 0x11ac94ca }, { 0xee36f4b3, 0x9613af6e, 0x414547ed, 0x92f40e45, 0xe43aa87a, 0x11ff2429, 0xedc5fcc3, 0xd7f12e4a }, { 0x9750bf56, 0x95ece5ba, 0x308c7912, 0x77179c7, 0xfbb15653, 0x8103ae30, 0xc963320b, 0xb57606e6 } }, { { 0x42a9e104, 0x1826e728, 0x38bff870, 0x411d1e6c, 0x2a7e0c85, 0x814b8df, 0x79f2049e, 0x52612030 }, { 0xe0025cbb, 0x8fd28e55, 0x261b5545, 0xa92b4603, 0x2e5893dd, 0x1899b7b2, 0x537d1789, 0x60574123 }, { 0xe76edb49, 0xdbef6275, 0x5ec92fdc, 0xc4d14743, 0x61b8723b, 0xc5a74f8a, 0x8087399b, 0x2af69bb } }, { { 0x188a0d54, 0xeb2a55d0, 0xc2543227, 0x3c44fe59, 0xa1d309de, 0xc3bd188b, 0x84bab5c5, 0x349fe818 }, { 0x8f4e3f47, 0xf4ccd02, 0x60208883, 0x4b7d9805, 0x6e62995d, 0x2259a0b, 0xd990132c, 0xdf3e7e2e }, { 0x257e05e4, 0x9cb830c7, 0x1f9c59fa, 0x569a65e8, 0xdb9a8f7d, 0x5e70d145, 0x1b7600aa, 0x563e97a2 } }, { { 0x2a5dbe64, 0xf8a32276, 0xf1cba258, 0x63c2dfc8, 0xf269a3df, 0xf2e03395, 0xa5c8046b, 0xa5436061 }, { 0xde9707df, 0x12501026, 0x26fba53a, 0x3aab5124, 0x83e6bb56, 0x69315ef2, 0xd99ac86, 0xf18c9c3 }, { 0xa34b20a, 0xf036be7a, 0x5b41ef18, 0xa14848b0, 0x3f3e23bd, 0x26ffd85b, 0xfe7849e1, 0xa00b4dce } }, { { 0x27e62eb6, 0x27eafce5, 0x4f21430e, 0xc8a78bc4, 0x2692516b, 0xe0580c1d, 0xc0e488ef, 0x5e428129 }, { 0x81079d91, 0x94ee3dec, 0xef854e6b, 0xf3375d73, 0x130fb543, 0x1a9dfa, 0xea605b1d, 0x28a4f99 }, { 0x2e188dab, 0xff3a7baa, 0x3296e6e7, 0xef48f8c4, 0x44d032f6, 0x835cc8f7, 0x63698706, 0xedbf25e2 } }, { { 0xe4157a29, 0x1243333f, 0xf0f3b491, 0xebd9d11a, 0x9dd6e047, 0xc35b3488, 0xf05f3bd, 0x824f2fb8 }, { 0x71f9d5b4, 0x56790504, 0x39887e30, 0xd3c37d2d, 0x13f85dd7, 0x87c24202, 0x23b1eb5c, 0x608916af }, { 0xfc44a6b9, 0xf11e0412, 0x5048632f, 0xc2f66d58, 0x9bf40265, 0x898d3fea, 0xb5ec2269, 0xf6e5fcab } }, { { 0x29664130, 0xc5c44a3f, 0x4d858d62, 0xb1c667bb, 0x65b3387c, 0xaf4c7b01, 0x6cc3bf25, 0x95f1b32b }, { 0x87105396, 0x13283a0a, 0xd2a61a2f, 0x6b0bc00d, 0x1ba8c087, 0x71969192, 0x4d13e0eb, 0x53cc1bea }, { 0x51e2a77d, 0x4495a117, 0xfa164b23, 0xa4309597, 0x8c8e345a, 0x905d9f4c, 0x7883fa89, 0xa7454813 } }, { { 0xb5c89167, 0x371d4b8, 0xc75c4f61, 0xa4c002ad, 0x16e8bb4e, 0x900a2c79, 0xd9cfd962, 0x1114d7c1 }, { 0x65a59d14, 0x596f04d7, 0xf0ffef0d, 0xaa48c025, 0x19e779a5, 0x2dc1ae63, 0x185634da, 0x5f961c78 }, { 0x8322aa33, 0x3efa0985, 0x870a9a45, 0x5db103f3, 0x3de36bef, 0x5cf0f5f7, 0xbd99b9cc, 0xcc3b2e9 } }, { { 0xdf235749, 0x462aa775, 0x65cbe2b8, 0x4a37e8b0, 0x59914c38, 0x4b5dd84f, 0x8806b487, 0x2c8a271c }, { 0x8cfee9dc, 0x15159d99, 0xc63785fd, 0x9e86c9ac, 0xe7e06f3c, 0xbcc46ff2, 0x92f1d349, 0xec781645 }, { 0x6315f9c2, 0xc899b7df, 0xc69354a3, 0x881338a7, 0x4aef76dc, 0xa4ae10c0, 0xb92ce6f1, 0xba2eb7ee } }, { { 0x4b41e412, 0x26b32396, 0xedf01998, 0x32db9d13, 0x8ee97c8, 0x91652e20, 0x9ec7b4df, 0xc2e9ee31 }, { 0x55048f01, 0x7cb7fb2a, 0x91647432, 0x51459f9d, 0xbc7ba55e, 0xd1b32962, 0xaa97bd5b, 0xb49e7777 }, { 0xd141cda2, 0xbf8409ee, 0xbcca4840, 0x16df553a, 0xf68a9377, 0x39fdc39, 0xa72b63d0, 0x99dc90d2 } }, { { 0xdc7e3954, 0xee5240bd, 0xe100158, 0x6fd7765b, 0xa350b054, 0x9737167a, 0x2104ed28, 0xc8883f42 }, { 0x7395110a, 0x64eb1ac6, 0x8f19d5f7, 0x945a8aeb, 0x51ed92af, 0xfab985b8, 0x5b041ae1, 0xeedb869b }, { 0xb5685cdd, 0x2f6c873, 0xc6c9fed7, 0xd07bec46, 0x91802b6f, 0x95adbddd, 0x645f8366, 0x35f928b } }, { { 0xfc8650c9, 0x19bdf206, 0x50ed8d58, 0x6965c876, 0xaf509e90, 0xba0e8a36, 0xe1404ba5, 0xba7b5f46 }, { 0xda300664, 0x38cdd381, 0xf7e8135f, 0xa70e1b45, 0xd896b06d, 0x71fc981d, 0x59819188, 0xfb5ebcf2 }, { 0x6f091638, 0x64ed1857, 0xd7ba6a75, 0x2ddf6e21, 0x7e3ea945, 0x887aa6d8, 0x40d3cd66, 0x23fb9983 } }, { { 0x805048, 0xbfff91b4, 0x1dae8e65, 0x4a64b6e0, 0xd92238d4, 0xc15d119b, 0x2ce2db7e, 0x1ad6f4e8 }, { 0x4555afd8, 0xd8e0af3c, 0x89f9f550, 0x4ef190a3, 0x85416984, 0x61be8e3c, 0x799df7e6, 0xcb1cbe8b }, { 0xf7baf176, 0x5b46d71, 0x4300374d, 0x7140f22b, 0x3061e851, 0x91d15fe1, 0x3e118839, 0x629c2b93 } } }, { { { 0xeaf9a3a4, 0x715340df, 0x4509488a, 0xd21c59fe, 0xdab8d403, 0xee17e828, 0x43977971, 0x4679ab37 }, { 0x8a3ac100, 0xba85973f, 0x3495a134, 0xfba71e1b, 0xd4498171, 0xae29e07e, 0xbce2e635, 0x2df01476 }, { 0x6218b57e, 0x8263142f, 0xc7d00b51, 0x53c0bcb2, 0xfd3f9f4a, 0x1ae51be6, 0x6b4f087c, 0x14a9a519 } }, { { 0x9d19d258, 0x73ed62b1, 0xec195a8b, 0x748e19a2, 0xc9c0cda, 0x56f9350a, 0xb46bc391, 0x8b6664fd }, { 0x93c75c73, 0xffc63337, 0x9136b5b1, 0x600d543d, 0xb79cd358, 0x410df310, 0x97dfb05e, 0x4be142a8 }, { 0x83125b3b, 0xc6a79cf5, 0xdda7b799, 0xe8e002ec, 0x186f9656, 0x51cd8581, 0xbd103551, 0x71b4fdf3 } }, { { 0x170ed0cf, 0x875c530b, 0xddc20f39, 0x98078eba, 0x6f903568, 0xa939bd68, 0xdac1ba8a, 0x863dba43 }, { 0x608b1931, 0x6ddc511a, 0xe2f35e6, 0x557ad59c, 0x3d2a89ff, 0xb2e7fb09, 0x6bde65de, 0x5b401c2b }, { 0x557e429b, 0xc18c6921, 0x7e1bd395, 0x6c774888, 0x83c2763e, 0xcae0bd5b, 0x87784e01, 0x37b64311 } }, { { 0xc74e6505, 0xdf55d884, 0xe31f5e81, 0xad8e2fdb, 0xe8397faf, 0x4640b6e1, 0x3be38613, 0xea0234ae }, { 0x548dde70, 0xd7d191f1, 0x63a5869c, 0x4a4e999f, 0x1289bb9a, 0xa5c09243, 0x2fc8be6d, 0x8484563f }, { 0x54528421, 0x56bfa28f, 0x17de50d2, 0xde62c8ac, 0x6ed2593d, 0x63fccfd6, 0x67aa8c7e, 0x1ad4fef7 } }, { { 0x154361b4, 0x69978ca3, 0x7b78ff6c, 0x51d99e43, 0x61554bda, 0x16124986, 0xd6fb1a6f, 0x49b3e3c1 }, { 0xe8e716c9, 0x5048421, 0x4bc65a25, 0xd8c26ab3, 0x4075d03, 0x57b757bb, 0xf5208b3, 0xfaf6e3ba }, { 0x1aacd3e7, 0x79d21535, 0xe2231d1e, 0x87b1f091, 0xe834f7b4, 0xc3889443, 0x90b9160b, 0x4f09895d } }, { { 0xb8ab1de4, 0xb2bb3d99, 0xd2c509d1, 0xe1e0410d, 0xbcce662c, 0xbf57214b, 0x3339c9de, 0x370c65f5 }, { 0xd885329d, 0x57b84a0a, 0xb4785078, 0xd47ef5e4, 0xcec5f3ca, 0xe023c1f, 0x7484d550, 0x2616f802 }, { 0x3885d577, 0x877c38a8, 0xa6b992a0, 0x5814beef, 0xc6ce16b2, 0x9fdc6e4, 0xb6ed05e2, 0x42463182 } }, { { 0x86568b33, 0x59c41a94, 0x4f73be92, 0x3a107b62, 0xe4941943, 0x9809b12f, 0xdf7a2140, 0xbc51d027 }, { 0xccb0c69f, 0x367f8384, 0x3034737c, 0x1d7a2777, 0x301e8009, 0xfb3ec4c9, 0xf6fb1207, 0xa55716f9 }, { 0x627f009f, 0x38b9ffd0, 0xd30354c9, 0x8338f9d, 0xd6cc3f3, 0x1d1c567f, 0x498f604d, 0xc704cbb5 } }, { { 0x3ffe3e9e, 0xef2251b, 0x23864ae, 0xf2b7b3df, 0x5755f68f, 0x1f2a8f16, 0xa65f6b1e, 0x2309b65 }, { 0x7b0d72a1, 0x2ba35348, 0x406a7498, 0x56302165, 0x94fba788, 0x5d2620d4, 0xf067600b, 0x1b059a65 }, { 0xaced657c, 0xe613da5a, 0xeb401775, 0x843a78dc, 0x2c711c01, 0xbf71bc12, 0x3a5bc824, 0x9fcd0f6e } }, { { 0x9d5a6c48, 0x4b8c37a4, 0xee0c4fc3, 0x581156ae, 0xc90e24c7, 0xe1c27988, 0x71505daa, 0x758e1f04 }, { 0x55000a72, 0x60cf5839, 0x7df395f2, 0xe8fb34b4, 0x4a1ed260, 0xfa537489, 0x8c090c21, 0x23e6430d }, { 0x651b815d, 0x8cc0bad1, 0x700ca226, 0xdcf611cf, 0xc9efc829, 0x86c703c4, 0xce929b6f, 0x35e607ff } }, { { 0x1c9a6668, 0x3ec42ec9, 0x88ba7dab, 0x3928d7e2, 0xbb833208, 0xcb6f5227, 0xc160e833, 0x59bb06b }, { 0xa96d4ad3, 0x7aca37a6, 0x75249d8c, 0xf95089a2, 0xee429719, 0xb2b94c74, 0x649a2dee, 0x27975682 }, { 0xd3c7ee20, 0xfd0bd3bb, 0x43c84c1e, 0x6b3f8b32, 0x62cd9fa5, 0x9fdebac1, 0x348719cc, 0xa8c762dc } }, { { 0xbcec708d, 0xe9edd07c, 0xd992d001, 0x8208f965, 0x639ca60b, 0x396a84b6, 0x16bd40bf, 0x7c6b2f1d }, { 0x3a769bc2, 0x7c8eb9da, 0x1d52acf0, 0x5dffa44e, 0xb9631d12, 0x16ff2567, 0x8319f10a, 0x14d7de31 }, { 0x556450b8, 0x2695e8f, 0x5f2e2456, 0x6babb7fe, 0x94c21bbf, 0xa73f42c6, 0xff31f40f, 0x3a84916a } }, { { 0x65ea4e39, 0xfd21ab18, 0x7b525b89, 0xdbcfefca, 0x2fcbbfdc, 0xf3cfe93, 0x30075bee, 0xe1a942eb }, { 0x7025b9cf, 0x2be0de81, 0x248ca795, 0x2947901d, 0xfcd4c884, 0xf7e58c83, 0x43b00deb, 0xce80e825 }, { 0x244a30c1, 0x38682b6d, 0xc958804f, 0xadf0ec6b, 0xdcb78ba7, 0x4b53bb49, 0x77e47a40, 0xaae32640 } }, { { 0x971729f, 0xaf6a3460, 0x41fd34c0, 0x5d0ac928, 0xd553be0a, 0x221adce5, 0x674072e, 0x8c0284e5 }, { 0x5f324ab7, 0x4a60287c, 0x9807be7a, 0x2762f7a2, 0xe9900a6c, 0x9b2e473, 0x7ee7c68d, 0xd0ef8d1 }, { 0x401f093b, 0x97f2a2ef, 0x5c904b9a, 0x647190f7, 0x96acaa9d, 0xf235bcc, 0x664c5787, 0xd5fae290 } }, { { 0xb4c8260d, 0x9ce4e57e, 0x7b5e1ddd, 0x9a64adf0, 0x9b2a03e9, 0x1cf03ebe, 0x9325c0de, 0x85b4cd55 }, { 0xa479e6e0, 0x44a5e034, 0x9bf1bf87, 0x9ed2c47d, 0x8a62de1b, 0x51398512, 0x3a9b9e09, 0x8b2de06f }, { 0x6d85b9fe, 0x4c7f0c0d, 0x58f20b4f, 0x1e93a011, 0x8e300811, 0x5c58669a, 0x76aac9d, 0x11823fd1 } }, { { 0x46e52c19, 0x391efab7, 0xeadc5503, 0x64ea6290, 0xa50cea47, 0x91b66eed, 0xce5b04c4, 0x8c160732 }, { 0x15ff5f73, 0x2a468707, 0xbe5ccaf0, 0x984cecb2, 0xa61bf038, 0xdbd1de6c, 0xfa951d59, 0xd978448d }, { 0x8aff984f, 0xd6c62b45, 0x4aba79ff, 0xc6dd24f, 0x5cd769ca, 0x8bdbd661, 0x6ab19f18, 0xcf6a3f0c } } }, { { { 0xaa5e28cb, 0xca14bd0e, 0xb0c208d8, 0x23765c83, 0xbdf6a0a5, 0x11da11f, 0xe3d7bebf, 0x50be7dfd }, { 0xdf074f7f, 0xcb3924f5, 0x6811335a, 0x50dd4d4e, 0x400cb56d, 0x3ac578e6, 0x9493a7d3, 0xc5d471ba }, { 0xa2b1d11b, 0x39a549bc, 0x447b10, 0x465087e4, 0xacc0d41e, 0x1e046616, 0x797e299f, 0x7e6cb765 } }, { { 0xe0d750e0, 0xf05d08c9, 0xbc36effb, 0x3a770992, 0x9fabe771, 0x38bdecd, 0x5ad92653, 0xbb0dacc3 }, { 0x3cda51b8, 0x398334b0, 0x11b803bf, 0xc42da532, 0xf2df697f, 0x3ef800f9, 0x363a5dd5, 0xe84fb015 }, { 0xf0950f79, 0x514cdfda, 0xdd874825, 0xc84f618c, 0x2660d8c4, 0xf0114f8b, 0xa0cdd9ad, 0xc39ab23c } }, { { 0x85deb542, 0xbac6843d, 0xe607e98e, 0x71cc9165, 0xe730a9cb, 0xb8ccaebf, 0x81d19056, 0x128bf41d }, { 0x57b4c77e, 0x1056d689, 0xbb5ef6a, 0x676348bf, 0xc4c978a0, 0x325e47c2, 0x4bc116b4, 0x99bd4f53 }, { 0x6a24ff5a, 0x2594930, 0xf30e1bde, 0xbbf3969c, 0x6f228858, 0x600cc928, 0x7a98275c, 0xf81df39b } }, { { 0x291403a, 0x945933e0, 0x32082e0c, 0xf14096fd, 0xbf6bb1e1, 0x3b526ecc, 0x434bfcc0, 0xa4799a5f }, { 0xf965b540, 0xfa376931, 0xa877f585, 0x12411961, 0x86dbd0ad, 0x69c6d4d7, 0xffb8b904, 0xe94d829 }, { 0x3ff0142d, 0x7f05d30a, 0xeeac76f3, 0x5deaebdc, 0xcb28db63, 0x403c697e, 0xc5d064e2, 0xaa92cd13 } }, { { 0x5e819b56, 0xb28a279b, 0x6533414c, 0x41aaf186, 0x67d5d57, 0x78813713, 0x9672da60, 0xae54fddf }, { 0x42726235, 0x6a168d1c, 0x2b9bf022, 0x8db53d7a, 0x6afb969, 0xc15599c4, 0xe08d032f, 0xbe8e80ed }, { 0x5b133771, 0xb84d8b82, 0xaa21af36, 0xc579492, 0xb19e6097, 0x249b8e64, 0x541369e4, 0xc4decf5f } }, { { 0xd462825b, 0xc4fcea36, 0x9dc5ccd9, 0xa7647b91, 0xc5ab1e26, 0x2988285a, 0x7eef6bc7, 0xb702dfbd }, { 0xbe171361, 0x6c91eb7, 0x475ec1e9, 0x8c6d850f, 0xcab2dd50, 0xd99cee5d, 0x15b601f9, 0xf7e82cea }, { 0xb1978898, 0x801d136d, 0x6136761e, 0x6a9633f8, 0xb31f38e2, 0x3a11c209, 0x43b62d55, 0xac379e7f } }, { { 0xab94e1f3, 0xc750d43, 0x4329e712, 0x38abd467, 0x63f2714c, 0xe81ba19, 0xb884a86b, 0x7544c34a }, { 0x699fff4b, 0x75de677c, 0x892fab74, 0x57c7dccb, 0xc81f8eff, 0xf3443c2e, 0xb0b10f8a, 0x12ce8438 }, { 0x94db7bb9, 0x56ef2a6d, 0xb346b697, 0x7b869a0c, 0x878f434, 0xbaa62a9f, 0xb8b0e233, 0xfb04d5a0 } }, { { 0x2f2989fe, 0x62352f13, 0xd127b1cc, 0x529afdb9, 0x725f8d54, 0x5952292c, 0xd7711a41, 0x344a3253 }, { 0x794ae26, 0x2ea2aaa2, 0xe7ab8064, 0xe6ac0a19, 0x56b7e9ee, 0xd33f618c, 0xf395c48d, 0xbe289e42 }, { 0xfb18757b, 0x76312904, 0xf7df9f27, 0x37368f25, 0x31981ee3, 0xcef3b70, 0x17c4ccb3, 0xbbae94f5 } }, { { 0xa250ec8d, 0x6b7bffeb, 0x248a708e, 0x87c1dd5e, 0x878b7c3d, 0x20f4cd1b, 0xe5a6c193, 0x257c0d2a }, { 0x1db03d0f, 0xfee986c2, 0xe1bc1c73, 0x9bc48f5c, 0x464e4e01, 0xa94aba1a, 0x643246fc, 0x57e686d8 }, { 0x9fb9533f, 0x207cc38, 0xd528f3ba, 0x92c6d1fd, 0x5931a8eb, 0xd52bceef, 0x254d9e15, 0x416e0da6 } }, { { 0x79197c48, 0xd4b8f162, 0x32be9510, 0x84f2e18f, 0x3e923bba, 0xd3593b1d, 0xdaba0190, 0x9a394d02 }, { 0xf17aab89, 0x807a7668, 0x2feea44, 0xb8497636, 0xda76b899, 0x1ca229c3, 0xa9432e37, 0x64a5d3c1 }, { 0x5d5ed585, 0x1b09ad88, 0x7b6bf5ff, 0x400826f5, 0xa970c618, 0x7fd279ac, 0xe3d7d895, 0xd0eeb9d6 } }, { { 0x3c0266d6, 0x7e4510e0, 0x8a55b3ae, 0xa4745f3d, 0xddd5473a, 0x81e80feb, 0xc8dd8a5c, 0xbad438f7 }, { 0x353d065f, 0xe9c9b374, 0x98a71a8a, 0x493c02b5, 0xd52ca326, 0x913ead51, 0xd5f9175e, 0x590a7639 }, { 0xfb846d08, 0x367590db, 0x8a06f75c, 0xc4880c9a, 0x8025f2ad, 0xda9e208f, 0xf95db354, 0x4e19d289 } }, { { 0x792f5659, 0xdf162f9e, 0xcd99c351, 0xb247049, 0x9d820840, 0xf1935c33, 0xc2fd2fdd, 0x832bee37 }, { 0x8b86bd82, 0x6bcd1a66, 0xdf20899d, 0x9ce7ef32, 0xe4d431df, 0x45b16e10, 0x7421f040, 0xade75bb9 }, { 0xa049431, 0x17c324ae, 0x30afe1f2, 0x4e63b7b1, 0xcc09dc95, 0x7a108279, 0x44311097, 0x982496be } }, { { 0x36afaa96, 0x2a9319fe, 0x2632cfd2, 0x393ac317, 0xb85170c7, 0x3ab5344c, 0xb717180b, 0x73e8d0f7 }, { 0xcfdacc06, 0x11dc467b, 0x32be6560, 0x38f4aaed, 0x3ee3cfcd, 0x539819b3, 0xafea2b80, 0x5345f3e5 }, { 0x333aefb7, 0x554fa011, 0x6aab42a6, 0xfbac3099, 0x4f47dca5, 0x28d67d23, 0x6b77da94, 0xa1e1f489 } }, { { 0x572d3471, 0xd28ff583, 0x1d48b882, 0x7c8dad18, 0x2fbfc59b, 0x26fdb101, 0x58bfecbb, 0xaf3d62cd }, { 0x2c61259, 0x9b54a358, 0x23bf986e, 0x5cc4b1ed, 0x860a1178, 0x385135d0, 0x7d3047c2, 0xd1d4a928 }, { 0xbd82d561, 0x747a7456, 0x55424c3d, 0x2adda459, 0xc28a3dc0, 0x3e0386c1, 0x4e8df323, 0x94572c99 } }, { { 0x28679e93, 0x89d21719, 0x78113005, 0xfae4e70a, 0xba58ecbf, 0x210af4eb, 0xa368975c, 0xe23e110c }, { 0x6a12d48, 0xd3718675, 0x2a52fdc, 0xe015ad5f, 0x83b0c615, 0x1d75bcc3, 0xc3f75da, 0xc27954c5 }, { 0x4a8aa817, 0xe03d3664, 0x9e7b7b67, 0xa41c8a0a, 0xedae6809, 0x5f4ad4a9, 0x55e6008c, 0xe7464842 } } }, { { { 0x2728e39a, 0xb79c3ede, 0xc0f63864, 0xc206ffb5, 0x2be82075, 0x66b8f23c, 0x1114b247, 0x5b1e66b1 }, { 0x3d062807, 0x4d7bbe4a, 0xa1f1bc54, 0xcc3d3f2a, 0x19262ca1, 0x77d934b0, 0xfc9e6e3b, 0x784e4a43 }, { 0x32273b51, 0x77a5c93d, 0xe35d9d02, 0xdffd53f6, 0x88bf0685, 0xb2c64a8f, 0x29790243, 0xae93c968 } }, { { 0xb2bf1093, 0x95020218, 0x9c6fe883, 0xe74cd332, 0xa165a047, 0x8d496bbc, 0x8a5ec4b7, 0x4909abea }, { 0x69c263a7, 0x1f71b66d, 0x34ef6cff, 0x66cabb4c, 0x86026b8c, 0xa9b4c47f, 0x2ee3e53e, 0x7591792f }, { 0xced0fdc2, 0xe0038b64, 0xbdba8a8, 0xf134f78c, 0xabd52f02, 0x1791a76c, 0xaa945edf, 0x91657523 } }, { { 0x3d300736, 0x7f3ca730, 0xe402ed29, 0x6e6f55fb, 0x199e21ec, 0xf71ee981, 0x33ee5251, 0xe687a474 }, { 0x2498561a, 0xc8bac452, 0xf64bb8ca, 0x8f433b5f, 0x9b7bbe87, 0xe6b1b4ef, 0x18fee3af, 0x683fe5b5 }, { 0x850e44e8, 0xe0a05579, 0xb7dd1e3e, 0xd33fb26, 0x8dd34436, 0x1bf8a8c1, 0x2e03a3ee, 0x2a646011 } }, { { 0x3cafafdd, 0xfe79b94f, 0x8fc1e99b, 0x60372305, 0x7c29cc6f, 0x60aab311, 0x6924d462, 0x980082ba }, { 0x6a0f71de, 0x690e34c8, 0x2fe3f4f0, 0xe91c5acd, 0x1908fae1, 0x554aaa3d, 0x3594e1e4, 0x376376d8 }, { 0x72f0bd86, 0x5209c8a3, 0x2e3dd51f, 0x4c603b8e, 0xd54292b5, 0xd3b8c998, 0x1f19e5e5, 0x75b4e12a } }, { { 0xcbc1563c, 0xc300851e, 0xbc4f29d4, 0x7272f57, 0x43c6e18f, 0x9b4fd5b3, 0xf6893918, 0x6e3a9539 }, { 0x50e139e0, 0xd249fcb, 0x19d01527, 0xeb43036c, 0x70f1cea1, 0x56ec920f, 0x8391394e, 0xab25ebb2 }, { 0x7cf6cef1, 0xe36d3ae, 0x729bec63, 0x16b76d91, 0x1c43cd2e, 0xe3dad8ee, 0xf737eace, 0x12865d58 } }, { { 0xd040728f, 0x786cd368, 0x29ac7424, 0xe517803a, 0x4bf6e7d4, 0xecaa5905, 0x30196bcd, 0x43d3541 }, { 0xe13b40c, 0xdd53825f, 0x723c4a6d, 0xc7a7aa45, 0x6da36c1a, 0xc4893e28, 0xe877c53c, 0xb4b998f }, { 0xf43c9ce9, 0x8f7b9bd4, 0xd6e7ef1f, 0xe4838feb, 0xceaf0905, 0x5293a1bc, 0x86db5590, 0xe7f967da } }, { { 0xc70c6bea, 0x5c9c8d15, 0xe59ed72f, 0x2fe36f32, 0x8f01d306, 0x892f98b0, 0x5972fba4, 0xee290b0f }, { 0x164ab831, 0x6c48243e, 0xa2355f17, 0xd6c0de45, 0xf05812d0, 0x314d164, 0xbbcd0808, 0xb5e34e4b }, { 0x8cbdd87c, 0x12a42671, 0x75ebdbdc, 0x986942a4, 0xbc8ad0f, 0xd4444a39, 0x281c4928, 0xa58ad06 } }, { { 0xf348286f, 0x6f20f36f, 0x8b8a8ba1, 0xcbafa528, 0xb13fbab, 0x9219f7b9, 0xd471bf48, 0xb93d61a7 }, { 0xfe62e574, 0xde8835a9, 0x5bfd1e10, 0xf0b26d81, 0xba1c1684, 0xd983eecb, 0x91547c0d, 0x982e6f19 }, { 0x277e32b0, 0xfdc5744c, 0xdc741818, 0xd31f68c5, 0x6a53c61a, 0xd9f9344e, 0x56075c9f, 0x9ae4b630 } }, { { 0x10ef2f82, 0xa5e0edc0, 0xecef1176, 0xbb57a7ab, 0xd93e347f, 0xda4aeca3, 0x9eeb7308, 0xd5080ac7 }, { 0xaf7aed7f, 0xdabe3d3f, 0x4cb91ebf, 0xcdd70384, 0xddd9610b, 0x16201cf3, 0x541f7a0e, 0x517fca79 }, { 0x3be55700, 0xc582b063, 0x8748ab28, 0x26b94a6d, 0x94859722, 0xf3be5fcb, 0x45c3171a, 0xc0b972f9 } }, { { 0xb39c899b, 0xe1284b17, 0x1498ae9f, 0x70670c0d, 0xdb790c0a, 0xedf7602f, 0xd7c2164, 0xa376f789 }, { 0x9f6d2d24, 0x69c06b2e, 0x829715e1, 0x81144b0b, 0xfef64e79, 0xd35bc0eb, 0x42a3cfa0, 0xa21bd18c }, { 0x445f8820, 0xcc7240bb, 0xe746f6ae, 0x306c29fc, 0xb329966c, 0x3def6553, 0xf691885d, 0x4c6f7482 } }, { { 0x9b73f3d0, 0xf398932b, 0x68f48131, 0xc9b61154, 0x2705d52a, 0xc0ca1062, 0x94424ba1, 0xb9a093a1 }, { 0xaa12764f, 0xfbb31ea7, 0xa1c99540, 0xfd15b97f, 0x8d088598, 0x801f444, 0x82d9bd11, 0x2fdeb64b }, { 0x6bd59861, 0x8523666d, 0x9a483885, 0x23623d9c, 0x3281405, 0xc7ece0f1, 0xa3c7d109, 0x59d4b415 } }, { { 0x46d0eacc, 0xe4bd7c53, 0x40d9a857, 0x986bda85, 0xfc78ac9d, 0xa6451096, 0x8d3562ef, 0x79c2d842 }, { 0x65b1d395, 0xb63319c7, 0x255b5197, 0x26618060, 0xd1122274, 0xe7788fa9, 0xfd24600c, 0xeb69d6a }, { 0x2bf85c4d, 0xc4475fa, 0x66708e40, 0x6abbc5e9, 0x3906a86d, 0x7267cd2e, 0xf777034f, 0xee268f90 } }, { { 0xc4412c02, 0x66c05bca, 0x7c2c6a1b, 0x589050c8, 0x80c6c9f8, 0x98fe4b64, 0xb919ee93, 0x18b98924 }, { 0xa36d771e, 0xb6261b13, 0x38f51d91, 0x7e885d7, 0xb8c2db58, 0xa733218b, 0xeeef7eff, 0x7fb5eef7 }, { 0xba970e1b, 0xd1825032, 0x8c552e6e, 0x38608db7, 0x256efa25, 0x52c3c3e7, 0xe66a5cc, 0x27d2cfd0 } }, { { 0x22b7623e, 0xfea72da9, 0xa40bbf3f, 0xdb7173cd, 0x162da0a7, 0x112eb84b, 0xbd492547, 0xb4192f23 }, { 0xa2a7bfc5, 0x90f29e49, 0x9a8a7559, 0x8e86f957, 0x7df74109, 0xaa580062, 0x49da8caf, 0x95d22b9f }, { 0xcb864d2, 0x9ed214d5, 0xbf4963a3, 0xa5293357, 0xf190f4dc, 0x7fa9c7ea, 0x964f9c45, 0x904cc1ec } }, { { 0xf8a9edf2, 0x71e5182b, 0x5909f15f, 0x92d22e33, 0x88eecfdf, 0xd910d1e2, 0x4a2950ec, 0x581612ce }, { 0x676f5a07, 0x3029d046, 0xae9009c7, 0xc832f8cc, 0x9913de0f, 0x353bd5a8, 0x8c74e2a7, 0x5df572e9 }, { 0xbddcae52, 0x9f6b1e36, 0xa8675f35, 0xb158d85c, 0xaa7f022f, 0xc4be543a, 0xcef46964, 0x6608a625 } } }, { { { 0x15c31f0a, 0x9001ab64, 0xa2b4f2c6, 0x465018c, 0xa8132f78, 0x5e7a29f6, 0x3637a997, 0xb973f4ef }, { 0xcb57e7ee, 0xe80fe25d, 0xa087cf8a, 0x891d8f44, 0x4d8308bb, 0x47aa56fe, 0x24900a9e, 0xa7c26beb }, { 0x397b965d, 0xcc85cc06, 0x2512abcd, 0xb379a8a2, 0x2a968873, 0xce1cc0c2, 0xb04f884, 0x6a2790b1 } }, { { 0xcd0cc1e3, 0x9752a59a, 0xea7f2a28, 0x2b67c808, 0x52036313, 0xea81b55d, 0xbf5f537e, 0x3cb77f99 }, { 0xfea59130, 0x879a974a, 0x2ea07c71, 0x5e75de5a, 0xeb7029cc, 0x99556be9, 0xf3486e11, 0xca7e1ea7 }, { 0xa170ee60, 0xfa8c38f5, 0xe65b1f18, 0x3f29f9b0, 0xfe13eccb, 0x5634fc41, 0xe4c2bdb7, 0x5e7a4501 } }, { { 0x1c918547, 0x739dd98a, 0xe668a9f5, 0xfc73a31f, 0x36a63238, 0x9097f6d0, 0x7fa8df2e, 0xd6a96ae }, { 0xce537480, 0xf5e76f05, 0x44707353, 0x6514ad90, 0x8b26fd62, 0xacdabd69, 0xaa0d9ba6, 0x68480948 }, { 0xc29f2c4c, 0x89d7542f, 0x42b6ae52, 0x94693051, 0x21428cd2, 0x9d1a42c3, 0x68d845e3, 0x328c5554 } }, { { 0xd9ba7fe2, 0x79bd813a, 0xc40e99a3, 0xb7c9211, 0xa51998b7, 0xb2341096, 0xb9ccced, 0x81bd1d1e }, { 0x672e88b, 0xa6680023, 0xee1b98f9, 0x5739264b, 0x3587de7d, 0x4cc86146, 0x929d06af, 0xbd4ade33 }, { 0x1f1d8c5d, 0xf3abe447, 0xabd6bb12, 0xe714911d, 0xb369a631, 0x65779663, 0xaf24d436, 0x58e03fa5 } }, { { 0x43eac0ab, 0x3f7ff954, 0x838d0b38, 0x53e3a77c, 0x1f44af41, 0x8cd8b128, 0xce04ed75, 0x65c48ea2 }, { 0x96d9b5cf, 0x3ec982cd, 0x76041bf5, 0x92bcca52, 0xb2d01ae8, 0x163f3e58, 0x4df1f6f1, 0xb0e995f3 }, { 0xdbe4b1a6, 0x8445a619, 0xbce31dab, 0x975a1e82, 0xe8d1a04c, 0xa92e1cc4, 0xa366223, 0x2d1a5da1 } }, { { 0x4502a674, 0x662105bb, 0xa06d38b9, 0xc5e4da11, 0xe583ba66, 0x3c2a9ec4, 0x2aba3be8, 0xd2e895e6 }, { 0x11887551, 0x39ca495d, 0x52a5d77b, 0x8027abc5, 0x2054d6fb, 0xfd0734f7, 0xd67acb30, 0x7dcaa4ce }, { 0x7d161595, 0x135c80e7, 0x3e249487, 0x6594ab7, 0x7205b4ee, 0xad715b9, 0xae6e02f5, 0xc7bcf4a0 } }, { { 0x921f5302, 0x4a865435, 0x7597192e, 0x1eebbde0, 0xf45500f6, 0x7ed7eb98, 0xf1d9601d, 0x94503b4b }, { 0x29a23590, 0x3ebb33c4, 0x77778128, 0x5acffbdc, 0x554a8a40, 0x714866aa, 0xe09e1759, 0x3882eb85 }, { 0xeca1daee, 0x6f441b97, 0x75da1935, 0x70fee883, 0x86fc9ec7, 0x65052767, 0x34e0d503, 0x3357ab99 } }, { { 0x8d37b365, 0x8b41a39c, 0x818da5db, 0xe6a1277b, 0x9b5b0981, 0xe706905, 0x59b0510b, 0xba3ea3f4 }, { 0x7e06ca95, 0x66e40b33, 0xa6a85a18, 0xe6d92981, 0x3523512, 0x4e1f349, 0x2b0d94f0, 0x172e55c1 }, { 0xe9688003, 0x84a4f72a, 0xfa5fa22c, 0x59e2d0e9, 0xcaeb1692, 0x5d7884df, 0xbf0d084d, 0xc7a028e6 } }, { { 0x4d80ff, 0xb9868d57, 0x975716a4, 0x18f17a06, 0x5f5f3e60, 0xf3828973, 0x366e3732, 0x90aae078 }, { 0xc88c002e, 0xa4ff513d, 0x83f54f49, 0x30fc6b51, 0x47f3f391, 0x3c2e83bb, 0x977c30, 0xf6bb7d50 }, { 0x93b5b2f, 0x43603219, 0x71b2b7e9, 0xeb2c3955, 0x80f111ca, 0xacd8450b, 0x418a5fa5, 0x920cec5d } }, { { 0xad3d329a, 0xe0d42df0, 0x735f140f, 0x723c6203, 0xf4ab3ba5, 0xe1df5ceb, 0x88d467ea, 0x565ce1fc }, { 0x6a314a6c, 0x8b8a77b4, 0xddcf382b, 0xaeb8b04d, 0xfc65d9a3, 0x979a2ba9, 0xad401bd, 0xc6832619 }, { 0xd9c21d4c, 0xad3e557c, 0xe1b64f48, 0x68c72339, 0x26006d46, 0x5192cbde, 0x2aa0a1b5, 0x2057ddf2 } }, { { 0x31e4fd1d, 0xe884a23a, 0xd7ea6d86, 0xdd4ef694, 0x7867d474, 0x3c789a44, 0x4b0fbc60, 0xa25d5c94 }, { 0xf713fa0a, 0xd252c37c, 0x5007df58, 0x2a083f28, 0xa7cb147, 0x4f13631, 0x811ceaca, 0x71525b41 }, { 0xce6db2a5, 0xbe637fc7, 0x3d98d5d4, 0x44ccf0f7, 0xd13f9103, 0x13c131d2, 0x66ee5274, 0xfa33700a } }, { { 0x60c9113a, 0x9e4127d6, 0xc9730718, 0x45041ef8, 0x674995b4, 0xac7ef421, 0xd15b722b, 0xd447c2d7 }, { 0x8fb68bf3, 0x339a520e, 0x79275c51, 0x1043ea8, 0x364eda87, 0x37c8fad9, 0xb1468034, 0x73f7f25e }, { 0x474ab21f, 0xbf12d057, 0x3839748c, 0xb889e2c0, 0x17b75a9, 0x3d342b44, 0xd0598e22, 0x2643cc2f } }, { { 0x9d486329, 0xa1b7375, 0x4fa1d47c, 0xd5ecc416, 0xb6e5f960, 0x2b67bd3b, 0xa1eaa6b6, 0xf99c0569 }, { 0x6393ef04, 0x35db52dc, 0xdcc22f90, 0x1549f41d, 0xf335efad, 0xf963226a, 0x7522c851, 0x2b2c2810 }, { 0x9b9ab2ba, 0x2612db26, 0xf61ce5d6, 0x3dfb3c30, 0x16e8da4e, 0x81fa0cda, 0x84d5e411, 0x531579b2 } }, { { 0x13638838, 0x3c4043d7, 0xd2483f25, 0xd42522ef, 0x13f49b9d, 0xda6e81a3, 0x28eda1b4, 0x463ab87b }, { 0xb762042e, 0xb25cf31f, 0x2c5d31f9, 0xa6b73d65, 0xfb6fa1e9, 0x13c5ff8e, 0x6dea4c22, 0x254af8e0 }, { 0x63f5b3de, 0xd21e3d62, 0x44e6e2e2, 0x4367e3df, 0x86749f3c, 0x5caebbd9, 0x83eebaca, 0xba0d03b } }, { { 0x6994a451, 0x4a884217, 0xebfa9c6a, 0x911053c8, 0x2edfcc58, 0x6d24ec0f, 0x2bada15, 0xc0080298 }, { 0x3e24cb87, 0x88f60312, 0x331e28b5, 0x37062765, 0x2689c62e, 0xdfe49bb5, 0xb1a2853, 0xc8a0d460 }, { 0x8e2d80f8, 0x6a75b05e, 0x2adbfa01, 0xce35e05b, 0x97f6aa0b, 0x5d30d8ee, 0x3b19fffe, 0xd0e73ee0 } } }, { { { 0x5251c0e4, 0x33485b27, 0xab9af0ea, 0xebda062a, 0x356dfbb4, 0x910a4198, 0x636709a, 0xf0ea21b }, { 0x17dd6c6d, 0xc516da8, 0x37ffd242, 0x8dcbaeee, 0xef340626, 0xdc59a6cb, 0x48c5701, 0xb51f6808 }, { 0xca740b0c, 0x53becd48, 0x115379e3, 0xafa8867c, 0x841f8460, 0xe51c64d5, 0xe4cf9c64, 0xd4ec0b90 } }, { { 0xb64271a3, 0xdae951ca, 0x60ffbd9f, 0xb92759df, 0x138a09c3, 0xd3b2cee, 0xe7db74e2, 0xdd78cb89 }, { 0x794f8d8, 0xee2b4213, 0x86ddced8, 0xdc98b624, 0xd57c97a6, 0x5e82c68e, 0x808bbfe8, 0x81a9d2 }, { 0x525fec3b, 0xbe75e4a9, 0xad457774, 0xc10c5943, 0x180778f3, 0xe39d0925, 0x47c2f25, 0xabb5b35a } }, { { 0xbe19ae2f, 0x37a16ca1, 0x64f60722, 0x9caa988f, 0x15f8a078, 0xff902201, 0x7956e812, 0x40199621 }, { 0x523ee7a9, 0xfe13e967, 0xdd9cfe10, 0x1e2b5b01, 0x936e013d, 0x7ef17019, 0xb1182442, 0x8ff26e9d }, { 0x26d4de24, 0x48fff59, 0x27ab4a1d, 0x77a3d169, 0x851d8aa6, 0xc0f8a607, 0xcef5cd72, 0xe055e0e7 } }, { { 0x780b3fba, 0x51e07517, 0x380bf46, 0x5b3b850d, 0x610e8dd3, 0x8b546065, 0x42b1ec47, 0xc693bfeb }, { 0xbecf638a, 0x550e1d53, 0x608b7d15, 0x34e2611d, 0xc9d13f5, 0x4e53a9f8, 0x3b99ccc3, 0xadd1c13c }, { 0xe8808356, 0x9c44770a, 0xf437f1c0, 0xdb789ce2, 0xf266f5b3, 0x9d96f490, 0xe89d5b99, 0xbc63a3fc } }, { { 0xd4a1a9ad, 0xfebcff50, 0xf2e514c, 0x43c6bd1c, 0x9668b309, 0xd215127f, 0x19ea4742, 0xa2a0f4cf }, { 0xcdac072d, 0x5a1b7b2c, 0xf80c37f2, 0x55cbdb88, 0x724c9f37, 0x786db0b4, 0xd6f62b27, 0xdf38690c }, { 0xe0694738, 0x255f126e, 0x120a8c66, 0x9f8edf49, 0x5e4b297e, 0xfc923e3b, 0x3a87a54b, 0x5edc8d72 } }, { { 0x5cdb4dba, 0x21caccdb, 0xb9110d7e, 0x16fb08af, 0x25ba9e80, 0x88ace145, 0xac0a3c9a, 0x9509d3a1 }, { 0x73671642, 0x443ccd75, 0xfe5c7d6b, 0xcd6757d4, 0x34329913, 0x13fdcf70, 0x652bae, 0x785b3d29 }, { 0xd7beb2aa, 0x21e2ac8, 0xb07536a0, 0x24b41fb3, 0x15a40c94, 0xa5287fce, 0x1774800d, 0x6b2f7646 } }, { { 0x979e9e5f, 0xfd51a5a1, 0x5fdeb3dd, 0x8596aed3, 0x6b030fe1, 0xd02fcd0c, 0xff6c5f2c, 0xd9707789 }, { 0x79a88e0e, 0xde31c00d, 0x257378b4, 0x3315748f, 0xf7ec8256, 0x8989ca7a, 0xbae8352a, 0x6225ea49 }, { 0x1f24f80, 0x71b1a098, 0x300f11b7, 0x2dd32dd, 0x6058ad53, 0x44b52be4, 0xdaf75e80, 0xd2c5a11 } }, { { 0xe392ad4c, 0xc4e13ef9, 0x7f592871, 0x6694ba33, 0xe6f3c583, 0xfbb4d1ab, 0x716befa3, 0xf7143080 }, { 0x8d08684c, 0xa7d4bc11, 0x86e28cef, 0x7572724d, 0x658287d4, 0x12214157, 0x1e9cdb35, 0xb7a2825b }, { 0x8c67c5bf, 0xe7061d54, 0x32c3a487, 0xd4d49128, 0xf9be2783, 0x3280a337, 0x922a8f48, 0xeaef3bb5 } }, { { 0x3306fe18, 0x1b4345d1, 0x1c18223a, 0xabce9c08, 0x2a66b914, 0xc8937f95, 0x1b191161, 0x3bf82949 }, { 0x996e99cd, 0x214b3d1b, 0x8c92280f, 0x33a02450, 0x80f00df, 0xe34237be, 0xb48a1584, 0x54016f7e }, { 0x779c076d, 0x1a47e25f, 0x5427404e, 0x3a3cbc3c, 0x4bd43c6d, 0xead90e39, 0x8bc5f57, 0x9d5f4d16 } }, { { 0x9730742a, 0x60cc5441, 0x7921e6e8, 0xdd874359, 0xb141cda3, 0x1a351067, 0xbad314ed, 0x4fd8e514 }, { 0x3deb7efb, 0xe499869b, 0xd9b9b061, 0xe65928aa, 0x6f72b8af, 0xebb8724d, 0x6bd0c7ab, 0x1f327e8f }, { 0xe070e474, 0x10df0a44, 0x27292eb2, 0x64bdf140, 0x8fe8eed1, 0x491a4c67, 0x70a2ba0d, 0xdddadd54 } }, { { 0xf9f5aa2a, 0x56a5e2dc, 0x282e5ba4, 0xca0206ee, 0x6d3bc727, 0x8564f7cb, 0x99b04ce9, 0x50a5f0a8 }, { 0x53276712, 0xc637366c, 0x954b9f3d, 0xafde4067, 0xca4f542f, 0x9e08716e, 0xd0e8c5d5, 0xebde0262 }, { 0xa4d7753e, 0x2cd99963, 0x7c535cdf, 0x835d7ade, 0x4cb5522e, 0x10203751, 0xe162f2c3, 0x760c59f3 } }, { { 0x2be183b3, 0x806a82b9, 0xf942d0d8, 0xe91b168a, 0x82461c91, 0x52fac8af, 0x4169849a, 0xd413d4d8 }, { 0xeb1e3cf0, 0xa3362295, 0x8aa40819, 0xf1c2ceab, 0xef5ea31, 0x2cb6bb79, 0x267e953, 0xc2d4049d }, { 0x24728d06, 0x9f66b372, 0xf3329da8, 0x54438520, 0xa1e4e306, 0xe8c4fa1, 0x46bacb3, 0xfd07050c } }, { { 0xb90e8cf5, 0xfe8e8558, 0xab0b3432, 0xd2b94656, 0x86225249, 0x3d401ef1, 0xa5ba513f, 0x4844ed4f }, { 0x960ac8e7, 0xaeebe3c9, 0xfd0e06ce, 0x7b5ca2, 0x458f0f19, 0x55bb7ddb, 0x9810ae31, 0xe612e619 }, { 0x2793a706, 0x4ff2dd86, 0x933fd33a, 0xc86fd6c0, 0x260b5857, 0x486831, 0x4b47486c, 0x73602564 } }, { { 0xff1fee1a, 0x1f70d76, 0x5bed563a, 0xf1ba5784, 0x300fe4ec, 0xa711154d, 0xb2a51bc2, 0x29b6dd41 }, { 0x9dd91869, 0xfac58b52, 0xe0776c2e, 0x79820b4, 0x9021f081, 0xa7b3d935, 0x5902cb00, 0xd6c62bfe }, { 0x9d86bfdb, 0x3c45e4a7, 0x62554981, 0x64720853, 0xfc752f9a, 0x598e19fa, 0xcc1ff120, 0xe3621493 } }, { { 0xae77de9b, 0x63f13f09, 0x204e4d3e, 0x457778bd, 0x6dda3599, 0xb8231b57, 0x594be853, 0xd7ae03a8 }, { 0x84203ebb, 0x3124a297, 0x865bb88b, 0xb9c5c90d, 0x7b203966, 0xf807d6f2, 0x8f7a013, 0x7bfd94e }, { 0xc548a407, 0x2be504e7, 0x6ad121d1, 0x3acaa3e7, 0x18ecc935, 0x6adebf, 0x3f4ea26a, 0x4d0c621c } } }, { { { 0xe7ceab73, 0x8ffabba, 0x6e6daced, 0x31dbae86, 0xc0c9db15, 0x9ec79fcd, 0x97a77b06, 0x4800b7ea }, { 0x20e0c6cf, 0x90c8fd6c, 0x57c17d51, 0xb982cd17, 0xf1a0bceb, 0x20da69ee, 0x4bdf0b51, 0x8c03082a }, { 0x8c0d5bf8, 0xf62019cc, 0xe18cfc59, 0xe326ad3b, 0x93894801, 0x79e6333a, 0x9d105fae, 0xbf50df15 } }, { { 0x64fa761f, 0x4201ddfc, 0x4be872ba, 0x98fd6280, 0x1f3fde45, 0xe877e581, 0xfd5910a5, 0x85a3c453 }, { 0x311e4f18, 0x6b7f3ebf, 0xa221c869, 0x4a4b439d, 0x4384c682, 0x51d41f09, 0xb58ba242, 0xc2757d1 }, { 0x692bbff7, 0xc5031360, 0xbddd6700, 0x172b9184, 0xdde4fc4e, 0xd0b7282b, 0x54631383, 0x1f4bf0e6 } }, { { 0x8b9660fa, 0xf22c6e85, 0x8a7780b5, 0xc37a18ce, 0x96501b26, 0xed2876cf, 0x2420a8ce, 0xaa1a3d4b }, { 0x4edd69a7, 0x13ca3f21, 0x2af8ff58, 0xfa38c12d, 0xb65af7b4, 0xe7dc3fef, 0x7407f5d0, 0xda3005fc }, { 0x66fa829c, 0x749847c5, 0x33f7fa73, 0x15149173, 0xa9d603ca, 0xdc583b9f, 0xe91a8e01, 0xfcf8edf6 } }, { { 0x708e5f, 0xacf7e5f9, 0xe7a2c55b, 0xe9d4fe3, 0xdb20e73b, 0x92b1ec82, 0x7ce77b04, 0x8c4a972a }, { 0xe1db995b, 0xaecdb920, 0x649fb6dc, 0x8af4194, 0xf2aa6466, 0xb63f7628, 0x56c6b894, 0x9934aa5f }, { 0x41094518, 0x9f10fc4f, 0xf0d20df1, 0xd773f740, 0x144f17a6, 0xda4c47a, 0xd7561032, 0xee54bed1 } }, { { 0xde919e7e, 0x82392683, 0x8acf92, 0x1b54978e, 0x712c0bb7, 0xacd90a6, 0xe5d38ea4, 0x76d0b403 }, { 0x201e5aef, 0x6eab7f11, 0x8548a7c3, 0xa1f4913, 0x52ad5628, 0x84aac61d, 0x7afcd931, 0xcb8a7bce }, { 0x162171b3, 0xd73318bf, 0x84a781b1, 0x8828602a, 0x254e97a5, 0x848deb07, 0x3572a88e, 0x8b331102 } }, { { 0xe5dd98e5, 0x1a93b0b4, 0xd416a8fe, 0x943219a4, 0x919d0bbd, 0xff0e6eb0, 0x8e8f688a, 0x59f61b95 }, { 0x11b31895, 0xeb039ce7, 0x463c2d5a, 0x558b48de, 0xe8dba32, 0xe205b5f0, 0xd356d671, 0x1a3456c4 }, { 0xe29a93cf, 0xc3d790c6, 0x2c18f868, 0x57a90e5c, 0xb576a716, 0x6611ab13, 0xc613b71, 0x12b288e9 } }, { { 0x1ba2aef3, 0x2abdf746, 0xe668f105, 0x5b494ca, 0x2c81e093, 0x2918c0d4, 0xfad8ec2a, 0x9d19ed8f }, { 0x7375b847, 0x3d95e5e4, 0x9a7d2d64, 0xd01148d9, 0x1c7ebf10, 0x405666fe, 0xb8585831, 0x4b490967 }, { 0xa108e671, 0x844f3e5a, 0xd3e2865b, 0xd5f79245, 0xc7d98d58, 0xf7131e75, 0x7f07c5d6, 0xa4963b8 } }, { { 0x846b4ede, 0x6428c2c1, 0x3c9c8adf, 0x6815d967, 0xd7a70c6c, 0xe59af64d, 0x85d68225, 0x4bfd7b7f }, { 0x32196377, 0x909bfd2a, 0xf6842d7, 0x19714297, 0x4a8d3adb, 0xb7777393, 0x39d7b42a, 0x5b35495f }, { 0xcd9a129a, 0xbedd1c52, 0xd731c0, 0x631aedf3, 0x5400eb2a, 0x5b1a2580, 0xd962f75b, 0x3e5e4517 } }, { { 0x6342537b, 0xac413949, 0x4c694d3d, 0xe468b9ff, 0x94a9405f, 0x9b9ee4b4, 0x162eec2, 0x5d734f1b }, { 0x86883e4f, 0xaa5d8adf, 0xf1f7570f, 0xb413f2a2, 0xbe38ba55, 0xa379c789, 0xf56e834e, 0xbcd02273 }, { 0x9eec62f4, 0x8327753, 0xe69246b, 0xd4619e0, 0xfd96ad35, 0xa3486146, 0xbf976132, 0xada61a88 } }, { { 0xe9edfe6f, 0xe3c777ce, 0xedd0a503, 0x3c45a6e8, 0x556d4cea, 0x3a8ed533, 0x25b1a1ed, 0x6c8f8476 }, { 0xf23b6641, 0xa3bdab9, 0x8e12ce3d, 0x775ebff5, 0xe6d58ce0, 0x45d70f72, 0xe5314887, 0x35d5cf38 }, { 0x1d2c5d65, 0x79dc4f4, 0x4313bed8, 0x62f88d1a, 0x500f6529, 0x7e4672b, 0x40ee038f, 0xa4a1d16e } }, { { 0x136bbef2, 0x88e93024, 0x671f3a0f, 0x26d2af9, 0x30cbd01c, 0x4dae1793, 0xfd1df175, 0x765b636c }, { 0x694aede9, 0x1d135b22, 0xa2f4a3ad, 0x41e06e3e, 0x1996e75b, 0x28fcc6e6, 0xee4ab47b, 0xf1994dfa }, { 0xab5fb49, 0xbf8df2e3, 0x34abb060, 0xd77ea930, 0xe5394e94, 0x5b34cdc2, 0xa3e7509d, 0x548db98b } }, { { 0x8c292e65, 0x47ae9342, 0xf804f9f5, 0xdc21ab37, 0xbcd8dd2e, 0x8b769cb3, 0x8160ccd4, 0xd5fe5a9e }, { 0xbeac0196, 0x84a9439d, 0xa90ab6a6, 0x3d1a8dec, 0xe05e4773, 0x4ad37881, 0x7f37e160, 0x8e6f388a }, { 0x9ddc2bdf, 0xbdaae8e2, 0x961a6c34, 0x908c4baf, 0x688885f4, 0x14a7d73a, 0x5ac08333, 0x59062841 } }, { { 0x51506407, 0x5961eb95, 0xb561afd6, 0xc99ad1c4, 0x270b7972, 0x27d52bc9, 0xc14f10c, 0x899d372a }, { 0x382a6e74, 0xdea644fb, 0xa7a83ebc, 0x75ca90ad, 0x1ae29c7d, 0x7d459c55, 0xd2eab183, 0x6b6f67f1 }, { 0xeaf553c2, 0x9d5bf355, 0xdb64f28b, 0x1234f2a2, 0xc155c46b, 0xd31dc00f, 0x5b52bf6, 0x89967a5c } }, { { 0x5ef0d0d1, 0xfd5c6d08, 0x2e083010, 0xf49b22dc, 0xb636bc6d, 0x2499ff17, 0x92f25dc2, 0x7d29eee0 }, { 0x42440b55, 0x21233d85, 0xbacf7cba, 0xd77fa072, 0xdbc4074f, 0x1468591c, 0xd1fe57fb, 0xd330f4ba }, { 0xf2812bda, 0xde7f815a, 0x4161f937, 0xebfc8dea, 0xb148952e, 0xf1a54424, 0xad7f4505, 0x96562e69 } }, { { 0xfb59e7a1, 0xa6d2413c, 0xf6e82860, 0xfe38e198, 0x4f55bd11, 0x7e5b7450, 0xb51f7ee7, 0x99d6b331 }, { 0x66050a91, 0x1f31ccfe, 0xb1b9edfc, 0x683675e3, 0x845a4567, 0xd94fedb1, 0xbddb20f8, 0xf3fbba7 }, { 0x43ba869c, 0x2c71d833, 0x61b156a4, 0x7e61bd0c, 0x656b7294, 0xe1b2464c, 0x5523e6c9, 0x557e2313 } } }, { { { 0xf4254d94, 0x5abb69e5, 0x37ca1318, 0x3c382e6e, 0xd5b0dfda, 0x14ddac61, 0x58b77bd7, 0x6a077e76 }, { 0x2a53267f, 0x91152ae1, 0xa41eb1fd, 0x2795fe3b, 0x1fd6914d, 0x53144be4, 0xfb4b54f1, 0x9657584 }, { 0x2cf08e7e, 0x974e0b38, 0xb85660d9, 0xb51c086f, 0x46b7fe38, 0xd039706e, 0x38d3cdca, 0x4950ef6b } }, { { 0x8cff614, 0xae7cf8b2, 0xf8401b0c, 0xaf7869fe, 0x44e02595, 0xbacc28b5, 0xe65a21c9, 0xb614a75a }, { 0xacb7429c, 0x1601dfe8, 0x2e620b3c, 0xcae74e9d, 0x73c72c4b, 0x8b8b522f, 0x2db705d8, 0xf063eda0 }, { 0x2c2c4c19, 0x7e439b38, 0x30288272, 0x96cb3861, 0xb0891b1b, 0xad75c859, 0x258721d5, 0x844cb1db } }, { { 0x64e6ec81, 0x90957dc5, 0x359bb954, 0x1a831737, 0x6c81e10, 0x2a23493d, 0xefd63b75, 0xd3579b6 }, { 0x3fc40684, 0xb54fd722, 0x44025c20, 0x3ebe636a, 0x57772240, 0x7afdb320, 0xc9a9e765, 0x7dea2014 }, { 0x44ee9e31, 0xa573b0f4, 0x1f7c06df, 0x254aa998, 0x5bb2f330, 0xdb1ed104, 0xb61719e1, 0x65e92cee } }, { { 0x19005c, 0xf18929f1, 0xa628b65c, 0x1ee13de4, 0x4a2db24, 0x258b1c6e, 0xe357d143, 0xb0c5e9f9 }, { 0x889b6a67, 0x5198543b, 0xd3699add, 0x8da54df6, 0xf94511ee, 0x1c500bc3, 0x9e2b480a, 0x6a54fa75 }, { 0x6c15566b, 0x3bb1e9a8, 0x4eb559a5, 0x24d44dec, 0x905ae4c, 0xd13d97c0, 0x88427fa2, 0x272604d4 } }, { { 0x458ceffa, 0xb3941e6e, 0xa49c3c7a, 0x429c6e9, 0x25e027a6, 0x9dc16dd3, 0x4408f64, 0xd9fba3e7 }, { 0xe2daf96e, 0x1af6c9ca, 0xb903dbfc, 0x246863ee, 0x316cdb97, 0x7e9a42f, 0xbf54df17, 0xd1ae6a2f }, { 0xd1e6b3c8, 0x44be256b, 0x61defb45, 0xe9ab42ce, 0x64103ade, 0x878ff463, 0x4ca6a7c4, 0x4bcffde1 } }, { { 0x92907e7a, 0xbd060966, 0x64da6a34, 0xc65a13e9, 0xb2dc2ff6, 0x57975568, 0x445420a8, 0xb8fd360 }, { 0xaf42eadf, 0xcbd58286, 0xa7ac38c4, 0xf5e26690, 0x6dc327a2, 0x68c6bed8, 0x1795b6d6, 0x3641b7f9 }, { 0xd06fb34d, 0x197ce91c, 0x4065f617, 0xf7d43c3e, 0xf72cba3c, 0x585d8b49, 0x3733ee8c, 0x4f5a350c } }, { { 0xbca96e8, 0xec5949a7, 0xd4919eb, 0xc499c520, 0xb52e481, 0xe4124c2d, 0x877c28ef, 0xa8a6d159 }, { 0xb4eeb988, 0x23ccc087, 0x2beda629, 0x42f7b698, 0x27e917a3, 0xdd2bf6d1, 0x5f029aaf, 0xf61897c1 }, { 0xdac87e64, 0xb7a7b55a, 0x5257b395, 0x2f456413, 0x928254e5, 0x6ded7101, 0x7981b949, 0x5837a4b3 } }, { { 0x488e9e35, 0xa4e771fa, 0x7acdf802, 0xba88ed80, 0x1a2bb2cb, 0xd320d40b, 0xdf1afe80, 0x5463c2ad }, { 0x84959391, 0xf2856e03, 0x2e75e8d, 0x564b9de8, 0x218b613d, 0xac77e946, 0x96e433d5, 0xc968f33f }, { 0x6afaa30f, 0x76159b25, 0xbd794506, 0x729ea594, 0x36ee3dca, 0x2efca92e, 0xa8bde56, 0xf8739d36 } }, { { 0xcb466b5e, 0xe461a17f, 0x38912df3, 0x9503b683, 0xf1db812d, 0x61359ac2, 0x356f7c97, 0x8bd41384 }, { 0x57271b12, 0x6fb6a93c, 0x667db13e, 0x355d0782, 0xa8cd22ec, 0x2cabb39, 0xcc0ef88c, 0x9832e45e }, { 0x8495190a, 0x2f0e27c4, 0x8228d23a, 0x2fa234f, 0xfa81adcd, 0x5b0d33a, 0x3b848e6b, 0xd96dbab5 } }, { { 0xfb90dc57, 0x8725146a, 0x1090c93, 0x21c234d6, 0x939710ce, 0x62f76ad3, 0xc7a7592c, 0x756a9cb8 }, { 0x26474204, 0x342a67c4, 0xcacafddb, 0xab40ddd3, 0xa518c53e, 0x7c812b58, 0xf472e56, 0xccc69983 }, { 0xa7c7cb57, 0x43289940, 0x73815d7e, 0x6a560550, 0xc0dcde8a, 0xf532dedf, 0xc42db0e2, 0xe9cc0b33 } }, { { 0x8b7dd79a, 0x4417e46d, 0xdf17fb78, 0x51626baa, 0x18440197, 0xafa38ff0, 0x1fc5c9ad, 0x407c5453 }, { 0xfca003eb, 0x87811eb0, 0xae565a4d, 0x82faa84a, 0x6a3632ec, 0x4a3b9435, 0x38df3699, 0xff00ba23 }, { 0x99bc5022, 0x7b2af92f, 0x2c96c247, 0x97c36da0, 0xb4fe55a1, 0xc6b6070c, 0xe3cf4736, 0x7751fac2 } }, { { 0x87b896e1, 0xd7e32658, 0x2805d571, 0xe3911c38, 0x3d49bf7a, 0xb9e232f5, 0xcc4d736, 0xe4ec0f88 }, { 0x41bf52c6, 0x10a8f36d, 0x81352cff, 0xb539ded6, 0x88ae9426, 0xe13bd56, 0xc104a06b, 0x84f42456 }, { 0xaff16a07, 0x156e47c3, 0x61f2742b, 0x256f538f, 0xf7f72ef2, 0x9650fda6, 0x797255e4, 0x32a05eb2 } }, { { 0x17c10b50, 0x37928aa9, 0xba78a2a4, 0x804fa98, 0xefc8a7d2, 0xae6186b8, 0xb432009d, 0xb71637e0 }, { 0x545eacec, 0x1cf7e9cc, 0xd18d2905, 0xb5949476, 0x3f2c2fb1, 0xa618cd48, 0x8dbae211, 0x31b78810 }, { 0x8009e0db, 0x9278926a, 0xc542257b, 0x82807d6a, 0xf807892f, 0x8136c7b2, 0x1e15cd79, 0xaee81c8b } }, { { 0x535f00a4, 0x526ecf72, 0xfb1f5996, 0x9e94167c, 0x28e028ba, 0x33e72b1f, 0x3e286e1, 0xeaa4ae11 }, { 0x9c8bc25e, 0x658f2014, 0x5a44ec7d, 0x162620ae, 0x93473191, 0x540f6ef9, 0xda6805b8, 0xa30aa5c7 }, { 0xa69521a5, 0x677a5abe, 0x534345c4, 0x80275d43, 0xdd4e4116, 0x85d1bd21, 0x9e505a33, 0xbdb0fa8e } }, { { 0x751c8f5e, 0xc9f1690a, 0xf4e5ab38, 0x93d0e506, 0xc92118dd, 0x8cd8550, 0x374947b9, 0x583bc9ae }, { 0xc8780c78, 0x51b42953, 0x8697e662, 0x3841afd0, 0x66c403b, 0x33486936, 0x966f57c0, 0xd8da7355 }, { 0x26855161, 0x51e25c84, 0xd49bcd13, 0x6f8e0e7, 0x5486c028, 0xe8a8a6c5, 0xa1b94fd3, 0xffc90e5f } } }, { { { 0xf02e5eda, 0x3011970, 0x1b1e665b, 0x7a1bee11, 0x500aa67b, 0xfc456590, 0xfd89c03f, 0x3816a33d }, { 0x97d0882e, 0x10f219c1, 0x90465ec4, 0xa185854a, 0x1d0a2a4f, 0x7a20854e, 0x982a1a75, 0x3c08cd82 }, { 0xbd8da0a3, 0xe944b10b, 0x88a31125, 0xbcf17a6b, 0xb8617c80, 0xf80a2bf1, 0xd425a377, 0x653e4791 } }, { { 0x794891bd, 0x7d82e79, 0x42b24379, 0x72ecbb64, 0x898495da, 0xfe2abd69, 0x7fe2ba5f, 0x883c2b7 }, { 0xa71c4d81, 0x6f4bb22d, 0x1079c2a, 0x8b2da05c, 0x69e2d397, 0x469673c1, 0xd0b520f7, 0xed297b20 }, { 0xa0e1ea3e, 0x624102c7, 0xdf2e59f9, 0xb32c6a4e, 0x3d5c704b, 0x937187bb, 0x3afcc0fe, 0x79f29fee } }, { { 0x12ff9fb2, 0xeb6b9feb, 0x545b8146, 0x43bebb9c, 0x61c6aed, 0x448ab42, 0x2cab35e4, 0xe81a1d8 }, { 0x48447388, 0x2a932e90, 0xd09c1594, 0x909df1e1, 0x2995ac8a, 0x6170f4a8, 0xc7d9d46c, 0xe9ff7f04 }, { 0xf6b0163f, 0x7108934c, 0xa3588da2, 0x5cdbcbd6, 0x8f65c14, 0xbaf9828, 0x96a2d66, 0xbc47054e } }, { { 0xb73d309b, 0xe09c246c, 0x3909214d, 0x69eda938, 0xe7c79a3b, 0xc13abc3f, 0xf72cf19b, 0x1c3d69b8 }, { 0x99a66929, 0x87f26845, 0x2098b122, 0xe64404cc, 0x6f67f24, 0x631fb294, 0xbdfece4d, 0x597313c3 }, { 0xfcc4e557, 0xc2e27f40, 0x4106fff4, 0x8148c6e4, 0xd5579d43, 0x8efb6b77, 0xe4c3bd2d, 0x53959831 } }, { { 0x98db1b44, 0x436a5176, 0x4b025d0b, 0x3c98e9b9, 0xc6d0d18b, 0x487b0432, 0xf1c42536, 0x20f3f68 }, { 0x12c8e04f, 0x5c717768, 0x59f5f00c, 0x6d5d9069, 0x7758622f, 0xd39e5387, 0x6762740d, 0x14ffb563 }, { 0xcc99678b, 0x9face913, 0x4b47576e, 0x28c646be, 0xb1221a49, 0x1002cf31, 0xec5bcebd, 0x7835d6ab } }, { { 0x184204c8, 0x2e6c31c4, 0x90ddabcb, 0x5747c051, 0xc2778dd7, 0x78a3dbdc, 0xa24580eb, 0xb7ae590d }, { 0xac6d41f1, 0x57a3447c, 0x72114b7c, 0xc4aa25af, 0x8caa6821, 0xb9f116fd, 0x2426b703, 0x7e4c5a57 }, { 0x4d1a5cdf, 0x79cee83d, 0xb7a942f5, 0xaf038d35, 0x6462ac72, 0x22b9db05, 0x119e034b, 0xea5009b6 } }, { { 0x283d6f97, 0xb80a52c9, 0x2e1eef9c, 0xebcc7b64, 0x77116760, 0x679b0b35, 0xf3a8e275, 0x1a601bfb }, { 0x98c28b64, 0x1ffed548, 0x352e6e52, 0x6b793b6a, 0x8a87c6f, 0x9da9c882, 0x246a8d87, 0x6f2abf31 }, { 0xeafc6e52, 0x8496c880, 0xc92f29a2, 0xb9393bc6, 0x684f395c, 0x4c7bcffb, 0x6c021c62, 0xc1549f47 } }, { { 0x7b0b421a, 0xc533c3d1, 0x504b0d03, 0x231a0cde, 0x5c5948ec, 0xbc4e8166, 0xd5cb1e17, 0x231bc170 }, { 0xb1f77f1d, 0x69b6cf68, 0x92578add, 0xafcd21f8, 0xdf47165, 0x729414b0, 0xea418366, 0x66f9ddbb }, { 0x5d02fb0c, 0xd297f7bf, 0x825dd45a, 0x368d2d9e, 0x6c2b9139, 0x661cd5e0, 0xaf495d32, 0x8dc69b01 } }, { { 0xf1db7a64, 0x410ccb55, 0xe9635413, 0xe47f4db, 0xfa52f639, 0x2ad42478, 0x78b434ca, 0x8895cc8b }, { 0x142da85d, 0x44bb99fe, 0x10fb56b2, 0x98f3b561, 0xad617669, 0x5396c645, 0x48128b5, 0xb776de83 }, { 0x6cc9dd1b, 0x32e63639, 0x56be1cbf, 0xac834cee, 0xba1ddeb3, 0x6a6a5288, 0x46433395, 0xc9fac29c } }, { { 0x4b997678, 0x7fb1db9f, 0x9d4a61ef, 0x7621500f, 0x229df95f, 0xa4c22afe, 0x2d09f56e, 0xacdd8562 }, { 0x43f98613, 0xbf0af4ce, 0x8e8fea93, 0xe8858dfc, 0xb4b93d3b, 0x4e739783, 0x4f4a3475, 0x1f4158c2 }, { 0x36f1d2ba, 0xe7a40b8a, 0x35da3688, 0xa5e2e00f, 0xf608d40e, 0xfe8a8620, 0xf22c31b6, 0x10d7ad8 } }, { { 0x24c9b7a3, 0x22b4f45f, 0xa2b6a46f, 0x4479bba3, 0xb19adfd9, 0x6e959f69, 0xaf5a73a1, 0xa49b3b8a }, { 0xb8b949d8, 0xfc0b2071, 0x881722bd, 0x87123af6, 0xff781838, 0xacee2c6, 0x249fddf1, 0xb763b750 }, { 0x5dd9c189, 0x59f72c8b, 0x4fd4acd9, 0xee92b781, 0x450165d3, 0xca1f9a3f, 0x9c108f6a, 0xc7e5736a } }, { { 0xe34aab95, 0xd1697c42, 0x5738a645, 0x388b466b, 0xcdee461c, 0xd8c084bf, 0x17591893, 0x8b621c81 }, { 0x70584345, 0x6b24d4e1, 0x62dc1f5, 0x245649c4, 0x41b82dfa, 0x98054061, 0xfb49bbcf, 0xeecb8912 }, { 0xdf2bcee9, 0x85b6c023, 0x2ed5e66b, 0x1fad1327, 0xf8e3ccd1, 0x61bd5d07, 0xedc41237, 0x61ed7fc6 } }, { { 0x93069fa4, 0x6385f6f9, 0x9402f60e, 0xa4cf8507, 0xcb450999, 0x875dbb3d, 0x8e1e471b, 0x53637232 }, { 0x2b8707f3, 0xc41d4790, 0x57c0fd06, 0xd4ee6340, 0x54ac47cb, 0x461b2fe4, 0x9c29abf5, 0xf1e7fad7 }, { 0x39ec5572, 0x19f7c337, 0x652a65bc, 0x61af577e, 0xface3e63, 0xbf8cb111, 0xc6a78ba3, 0xd1fe65dc } }, { { 0xc26623d0, 0x4365b25f, 0xc7b84c82, 0xa52735de, 0x155df552, 0xeda61f83, 0xa0fc7fa5, 0x7558181e }, { 0x6fa234d4, 0x95af9608, 0x48c9b4a3, 0x2b3549e6, 0x9cd8b575, 0x953354c2, 0xb9a9c79f, 0x2b33872f }, { 0x4d133aef, 0x5e1db972, 0x9ba099cf, 0x736b8daa, 0x9b03e80a, 0xf0cfe553, 0x4a09ab5e, 0x45bbc0c2 } }, { { 0xb771f95d, 0xa7084d6a, 0x28eec7be, 0xce11660c, 0x3b47fa15, 0x15fd8bc1, 0x53ae2d88, 0xd60453c4 }, { 0xad65ee78, 0x9ac76efd, 0x5f1467eb, 0x6af6dca9, 0xd88c4384, 0x5c188209, 0x6b34be14, 0x28d47f65 }, { 0x37ffe879, 0x4baf4ade, 0x96effee, 0xc37d38a6, 0x4e949161, 0xdb5abfa9, 0x15577a87, 0x53a97935 } } }, { { { 0x5bf549a1, 0x2cfbf148, 0x90032604, 0x74d183ad, 0x8b72413d, 0xc40b6112, 0xea8d72d8, 0x124da9b8 }, { 0x39add6a9, 0x330bb3de, 0xf41a7b51, 0xc09acb61, 0x87dd17b, 0xda2b02d1, 0xaf01047b, 0x55367b28 }, { 0x43db7736, 0xb5a22610, 0xf793ecdb, 0xde1cf11e, 0xa1bcde74, 0x6c3d2e7, 0xbdab2f99, 0xf38795cc } }, { { 0xb8d13ef2, 0xb3f8b8da, 0x6843eccd, 0xefe54ad5, 0x2ab2b659, 0x2c371e6d, 0x6ae8c29, 0x36168a86 }, { 0x922104b1, 0xc1190e9b, 0xec6ac9d7, 0x1d7829e9, 0x14604672, 0x739a5566, 0x352924dd, 0xdfa9304a }, { 0xd404af0f, 0x8fe5a633, 0x594284e9, 0x73b688a7, 0x60755089, 0xe3a4c6a, 0x99ba063e, 0xb0be3a1f } }, { { 0x9206d6e5, 0x18b83b81, 0x84b068ee, 0x6a0f2965, 0x90e322c0, 0xb750f71a, 0x8df9b33a, 0x2a1ac649 }, { 0x487b645c, 0xb5cadff9, 0xd88eafb0, 0x5b2e9f4f, 0xf66f7ca2, 0xd4788a25, 0xfe8ce6a, 0xf479cd34 }, { 0x26b74ef1, 0x241af7a6, 0x78d36cf9, 0x5bb77b2, 0x8c2e01be, 0xb6e927d2, 0x500fa778, 0xef65e842 } }, { { 0x8dbf2449, 0xbcfa92cf, 0x468b884c, 0x8fb473d4, 0xdccf8ca6, 0x98314667, 0x1a7c31e2, 0x37fc8ec8 }, { 0xa6901fd4, 0x4ebcb1af, 0xce7c39cb, 0xc848853, 0x2ac9a739, 0x1cdd4adc, 0x3e79ac66, 0xec3e9b7d }, { 0x94255d14, 0x25b7c160, 0x72577224, 0xcc59b301, 0x667c296b, 0x84c5af67, 0xfebc9232, 0x49610114 } }, { { 0x53c6fa87, 0x13b00038, 0xf786ba3e, 0x532dec50, 0x2ed70ea6, 0xca0136a1, 0xc4ede080, 0x440a24da }, { 0x4911b87f, 0x36c090bc, 0x46313e6f, 0x3a7d61d8, 0x7e46b7bc, 0x92d9dd44, 0x7053be46, 0x641e912a }, { 0xd58b770b, 0x4245250c, 0xb055cec, 0xf2f9f542, 0xe6b3cf1b, 0xc115593c, 0x6ff59e36, 0xae6e177f } }, { { 0x3ad49e3b, 0xea1d1079, 0xd877b983, 0x78a8d59, 0xeb0872b6, 0x8a536aa4, 0x245b3e37, 0x425faca2 }, { 0x8abeaea5, 0xa37a2d5, 0xaf2bcca1, 0xf2655eb7, 0x120c7049, 0xbed61ae7, 0x684a6cd6, 0xa5434b1f }, { 0x556e5509, 0x81e7e290, 0xa258d829, 0xfd05fff5, 0x79b8bceb, 0x5e9d9b69, 0xeb738518, 0x919360b7 } }, { { 0x51031859, 0x1fe1b073, 0x9f4325ab, 0x190e401e, 0x9971929e, 0x9ad31255, 0x33309401, 0x495104b5 }, { 0xc3735f99, 0x5663164c, 0x59befb35, 0x101f5aaa, 0x742feab5, 0x18c06743, 0xf80b76c, 0x88234b60 }, { 0x183a5861, 0x70cb14fc, 0x7aab6a5f, 0x273b7f4b, 0x24b75834, 0x99da39af, 0xcf1b1b6c, 0x623e14e1 } }, { { 0x2e7f5248, 0x84c0f2a9, 0x476f3c90, 0x878e9140, 0x369f95d5, 0x78d7b8db, 0x2d449a3f, 0x84695ea9 }, { 0xdefa19e2, 0xf8b7c7e7, 0x3d131d08, 0x9996dd47, 0xc71b670b, 0x335f13d7, 0xc187c42, 0xdcc8e299 }, { 0xf32e739e, 0xbb9117c2, 0xddfc4ef0, 0x2c9f1030, 0xceef90f4, 0xbd5d8b09, 0x60fa6847, 0xcb45a0c9 } }, { { 0xc0f63e96, 0x13d03068, 0x2435f8ae, 0x6461c856, 0x1d03b2a9, 0xac3eaf9e, 0x9891e560, 0xe7b7f23b }, { 0xcf3facf0, 0x743a4050, 0xc5e28199, 0xd0dbcc97, 0x8c0ec8af, 0xd6995158, 0x3dbd490c, 0x4e6b5143 }, { 0xcbb0a7c, 0x464e35c5, 0x79bdf8d0, 0xb638c1dd, 0x795a7175, 0x112fb682, 0xde59cfa7, 0x3b9bd9a6 } }, { { 0xb3c7fad, 0x6b63da2d, 0x8e3f2ef5, 0xb0604f15, 0xd286fec7, 0xb80b0edc, 0x3305e613, 0x99282f22 }, { 0xba740ef8, 0x8603d16e, 0x22046895, 0x205131a3, 0x64ead71a, 0xf450631d, 0x55a16817, 0xbe89a827 }, { 0x791431c8, 0x8691f929, 0x745b1fd8, 0x69e67bf7, 0x771fb159, 0x88112ba8, 0x269f0b9, 0xdfc61cee } }, { { 0x74570e, 0x6365005d, 0xdd622d0e, 0x875d2e33, 0x2d2fd9f3, 0x5f1631e8, 0x53aad483, 0xe7343dbc }, { 0x3884671d, 0xbcd7603a, 0x9399f698, 0x7886bba9, 0x7e9c37eb, 0x79eed499, 0x24a00046, 0x13173102 }, { 0xd97650b3, 0x2d1b450d, 0x8507ce3e, 0x70f4fafc, 0x5bd9bb2a, 0xcd863f0f, 0x6a26a83, 0x8fb1e0dc } }, { { 0x339a6ea1, 0xaf37ea18, 0xec9dc0d9, 0x6f8ab2ad, 0x169c0392, 0x14103599, 0xdfa0154e, 0x57fc6c4a }, { 0x9e82b283, 0xbca5944b, 0xc7555c2b, 0x1da0cff5, 0x8ece99bb, 0x3557b639, 0x6cd60c8c, 0x6f08d483 }, { 0xe98e0abb, 0xf73009ca, 0x76220912, 0x980804c3, 0xe24d3d3, 0x2c1fb9b, 0xab42e195, 0x2d265434 } }, { { 0x4eac738, 0xab2c97ed, 0xb6961aad, 0x299d4791, 0xdb443433, 0x199ba57c, 0x42d24857, 0x61cf8944 }, { 0xdabaa96a, 0x7389c399, 0x29fbf3b8, 0x936dbdec, 0x4d95fb6d, 0x75ce96b9, 0xaa8eab8, 0x62cdf23b }, { 0x0aa888, 0x32e408bd, 0x21c35f35, 0x51d2ce1a, 0x2c8528bd, 0xcaf44d65, 0x99656e5c, 0x85228478 } }, { { 0x7905f55, 0xa5703f8c, 0xe1adcce4, 0x9a9532c8, 0xe42c3983, 0x47bcea55, 0x4c0b0406, 0xb8d62f15 }, { 0x6b7b9b7b, 0xf084012c, 0x8736d380, 0xf812c3f6, 0x5ade0f7d, 0xae6b49e6, 0xfe75fa32, 0x3ee030db }, { 0x8dae1f43, 0x6bf6c083, 0x6e2f2014, 0x496869e9, 0x24019c70, 0x559ddcb1, 0x673b8cdb, 0x8c93e12f } }, { { 0x8f3b5378, 0xf1159008, 0xb95470f8, 0x9d2c2002, 0x5d53ed5, 0x6aaf488c, 0x6bb8fa0, 0x6baaa7e3 }, { 0x16a91253, 0xf2406494, 0xbe456c49, 0xf8c6a99b, 0x969f3fb7, 0x79bc6bbe, 0x9424048c, 0x75c33ab0 }, { 0x99f15976, 0x1ccd3738, 0xb4a51e6a, 0x82f4f83c, 0x77bde624, 0x6d404a54, 0x73656f24, 0x9f34c641 } } }, { { { 0x74871d6e, 0xee3b1504, 0x9a79b63b, 0xabf4b726, 0xc24abd0, 0xabf97a88, 0x6f3c11d1, 0xe295550 }, { 0x6ac9996c, 0x17266aed, 0xd8e2ba92, 0x8ca22b66, 0x77fb3d10, 0x1356c742, 0x7c030f, 0x581d7959 }, { 0x20621343, 0x9f4e5e22, 0xace2816f, 0xafe70183, 0xbdd59a6e, 0xc851f16b, 0x32356f1e, 0x62e76935 } }, { { 0x20b15f4a, 0xe1ff4bcb, 0xd2465557, 0xdc564a7f, 0xfa5896bf, 0xf05023c9, 0x6e3fee48, 0x1e6baaa9 }, { 0xa7f21dd, 0xf757c54f, 0x88be8953, 0x5325d369, 0xf6ec024e, 0x6479c57e, 0x652d4486, 0x116a091f }, { 0x7d48f67e, 0xf98ceda8, 0xc03bb681, 0x971a79b2, 0xb4eb3c12, 0x258ff52b, 0x537c11ef, 0xa83e3a9e } }, { { 0x28b6e82a, 0x96a0d81c, 0xd3a4fc12, 0x505cb18f, 0xa49b79af, 0x886d6ce3, 0x1a02daf8, 0xfd7e616e }, { 0xd7d7d6f7, 0x5199648f, 0x194530fd, 0xd9bb2054, 0x3894e803, 0x3ac90e7d, 0x196cf3ea, 0x97e3cfc7 }, { 0xf22d228f, 0x255b291a, 0x7b652ee5, 0xb262b2e8, 0x38fff3e9, 0x9f7a8a1b, 0xec568f0e, 0x78a48d9b } }, { { 0xe22b1c0, 0x507127b5, 0xae4449cd, 0xf3ff5595, 0x91567cbb, 0xe95d8089, 0xa6d9c8a9, 0xb2755359 }, { 0x4d5af69e, 0x4e32e7f2, 0xa2b7e6de, 0xecad186d, 0xd6d6d07f, 0xbdf3829, 0x2305d035, 0xd68744b0 }, { 0xc7073cb4, 0xc002cbff, 0x55794f46, 0xe0bd60de, 0x36e9ef89, 0x9007f6ce, 0xf453f696, 0x50a8e546 } }, { { 0x420eab98, 0x9799b8a6, 0x610d56aa, 0x951adb8d, 0x28376159, 0xb27aacb5, 0x61a6ada5, 0x91c70cda }, { 0x7ac572dd, 0xc3eb05f1, 0x9fc547b8, 0x8e5ff2ee, 0x1c737f3c, 0x1f7c0ad3, 0x58d2850d, 0xd858b5c8 }, { 0xe7ef7705, 0xcb2e6d79, 0x37209c59, 0xbcb2f2ad, 0x7948e0a, 0xe3671ccf, 0x23c54c92, 0x4fb98243 } }, { { 0x2d3d6137, 0xe5fa0167, 0x1a82210c, 0x691c093e, 0xf1123d9d, 0x995c0655, 0x4e3e709c, 0xbad627ac }, { 0x42b53ea1, 0x2038df58, 0x99aef3ea, 0xaab332b6, 0x87f0bd94, 0x5d5cd7e8, 0xc8876531, 0x843caee3 }, { 0x925846cd, 0xc195ea5c, 0x87a0be14, 0x431122a4, 0xc4b2ab8e, 0x79912bb5, 0xef599925, 0x22ad1eb1 } }, { { 0x410ffe33, 0x65ff49fe, 0xf61a35a9, 0x99f54cb1, 0xbba1669, 0x7d800f35, 0xc39b42df, 0xf0597fc }, { 0xf108e8bf, 0xfdfffc06, 0x8c154442, 0x74dfb2e6, 0xf6e6f768, 0x3b51b1c0, 0x4a3904c2, 0xe3dbdf3c }, { 0x019b5a, 0x57a0a6ba, 0x984f4374, 0x74da3728, 0x6dfde3f6, 0xa86c3976, 0x558065c5, 0x2c89c5e } }, { { 0x27ccce83, 0xdf0d7f09, 0xf99d1056, 0xbd075b3a, 0xf9cad29a, 0x3c30e035, 0xfda5aa0a, 0x3664578 }, { 0xf8b61011, 0x208799a5, 0x6caebc6, 0x4306215e, 0xf14fecca, 0xb390459f, 0xc5d913e8, 0x42c3a2a6 }, { 0x2c098c60, 0x5385b717, 0x386e5f95, 0x7ae59df4, 0x67f90e53, 0x4cafd35a, 0x9fee2269, 0x5833c44b } }, { { 0xa8d590e2, 0x3ff365ab, 0x9aea08b5, 0xfce179cd, 0xc475010f, 0x4da8d2a0, 0xcc08589f, 0x861b50b0 }, { 0xa948a8ea, 0x716369d3, 0x597261c0, 0x86c5c237, 0xe004f4ea, 0xdcb6432c, 0x97e6c8e7, 0x2b2aa810 }, { 0x3574a7ee, 0x9a226723, 0xc2b38e84, 0x20e760a7, 0x2314fc91, 0x81766870, 0xd23ae9b7, 0xa6714a19 } }, { { 0x671dde23, 0xb66e0107, 0xa66c3e2d, 0x2769f825, 0x22237725, 0xfe7f161c, 0xb484fcfe, 0x727fc3ed }, { 0x9e912a18, 0x48e749da, 0xff172082, 0x21cec621, 0xe9b43f, 0xc68bbf93, 0xd0e30a5d, 0x23bc17e1 }, { 0x8f81f65e, 0x8b798b51, 0x7c01500d, 0x852fc570, 0xe8148e6c, 0xb14308ee, 0x5c35d0df, 0x17655438 } }, { { 0x845e9ee0, 0x5fa76ef, 0x257b958f, 0x226b7090, 0x2cfe80f, 0x8035beac, 0x8c423848, 0x80932131 }, { 0x758dd13, 0xc7b93907, 0x8b9407af, 0x5989cdc2, 0xca3d6e38, 0x86bb1de8, 0x70127f58, 0x1801f53 }, { 0x6f3272ce, 0x7426daa1, 0x68796c7, 0x2c1b240e, 0xc2f20280, 0xd4f6082c, 0xd8de59bf, 0x4197fa1e } }, { { 0x208e348a, 0x9820e2de, 0xe9461775, 0x44eae29c, 0xaa997c4e, 0x8d6f3f82, 0x6a94546e, 0xedab4f2c }, { 0xb2e64ee5, 0x8b14ea37, 0x3fadab8, 0xc1fb55d1, 0xe334e843, 0x8e46462, 0xc081ad6f, 0xd9bada3e }, { 0xf1c77307, 0xd1f4fba4, 0xb44b65d7, 0xf435b963, 0x60f0a9e4, 0xf5bd97df, 0x6d554367, 0xc46d148a } }, { { 0xd05adaa8, 0x241e98e3, 0x81ceb5f4, 0xd69bb48b, 0xd944a8ce, 0x5d151bdb, 0x8a65b19d, 0xee8cc24f }, { 0x3729083a, 0xf038ae17, 0x42960bcb, 0xba91c814, 0xca059dc8, 0x3fbfb68c, 0x38245383, 0x68e076a6 }, { 0xb47e6d4f, 0xb04f0d5d, 0xa2e6ea6c, 0xa821e253, 0x83dff268, 0xe823d860, 0x104717e3, 0x18d39585 } }, { { 0xecd18e29, 0xb6373dc8, 0xb7080488, 0x50329fd2, 0xd8bde8ef, 0xd9c1e51f, 0x4cdfe00e, 0x6bd4482c }, { 0x815ad558, 0x5468b64f, 0x3992dc19, 0x95bc559a, 0xc6002b7e, 0x8632a725, 0x9761c76e, 0x978d9f77 }, { 0xce994142, 0xb03e8569, 0x1394df47, 0x177cbbb4, 0xf9e623ef, 0x3dfae21a, 0x48294bc, 0xdd6a7d60 } }, { { 0x392e631c, 0x308ae409, 0x1eeecc18, 0x7649f1f1, 0xf01f7584, 0x63b9cd94, 0xb2ab2163, 0xaaceba10 }, { 0x2e537444, 0x9ab7e375, 0x2300edab, 0xb3d7ad4c, 0xe6651730, 0x5c477427, 0x148defa6, 0x655cb53c }, { 0x2485f070, 0xcaf68d86, 0xdcd4ef0a, 0x3318cd68, 0xf6228b21, 0xf916ed50, 0xdbe3b2ae, 0x993678f8 } } }, { { { 0x384e8d42, 0x6f602d58, 0xcb17a256, 0xc7c7cc62, 0xe796adff, 0xfb929c2, 0xb15ec834, 0x43fef6fb }, { 0xbc63e598, 0xeb06c290, 0x9cb45b04, 0xb5097192, 0x7f2999f1, 0x3fd31cbb, 0xa174de43, 0xe7be68df }, { 0xe89e2c07, 0xd6927c5b, 0x2a5bbf00, 0x802c5ec0, 0x9ae0f01a, 0x8a797d7f, 0x38d8ee8, 0xb9c727f1 } }, { { 0xbf0a8192, 0xf566ed02, 0xbe0b9195, 0xfee44ac4, 0xa9f62117, 0x20517cee, 0xc3aafb3f, 0xf3ecf59 }, { 0x85d91f94, 0xe0b43619, 0xc56223ae, 0xeac101d5, 0xfd705c45, 0x22301662, 0x1f088adc, 0x7210c284 }, { 0x1dc8d46a, 0x29fd6fa7, 0x6911c166, 0x161f9878, 0xf23382b2, 0xd0860d5b, 0x924029f9, 0x8d4e2630 } }, { { 0x899b8feb, 0x1436b6a, 0x608348e9, 0xfb3e25b2, 0x5881e894, 0x9964c9bb, 0x5423ecaf, 0x8f933158 }, { 0xcca6cc32, 0x7f68aa51, 0xf58aa34e, 0x66c8d363, 0xeb04b127, 0xb1ae57a4, 0x68c1453d, 0xe26c7e01 }, { 0x6b87c6a8, 0x9316bf24, 0xbda2c681, 0x35c52505, 0x717d93a3, 0x6e59ad22, 0x2c6e6733, 0x9ff1d309 } }, { { 0x49983271, 0x562aac5c, 0x58d5c1f8, 0xe6370ff5, 0x5ca7dee4, 0xa75cfe57, 0x430b160e, 0x6f2fe931 }, { 0xcbb6daa6, 0x9a44d29b, 0xc45bed90, 0x29a5f942, 0xc4408cef, 0xdd3caf2b, 0x1a3df3ee, 0xf203741a }, { 0x1ca207dd, 0x68b911e2, 0x73cdad67, 0x10ad5cd2, 0xce19fbd8, 0x6c0b612d, 0xc069160b, 0x22aa0bef } }, { { 0x4a58f2b2, 0x2db8b5d0, 0x4509b227, 0x90c7906a, 0xf0b99e10, 0xca6bfb99, 0xcb8455ed, 0x9b3ddcb8 }, { 0x2940f51, 0x986fb427, 0xeaf8f49b, 0x44027ce4, 0x5c775ece, 0x530a2d22, 0x8734840, 0x6f79e53a }, { 0xd8a7ac32, 0x59ec506d, 0x329c83d6, 0x4146c638, 0x500b392e, 0x64368b64, 0x1c382bd2, 0xacb58e63 } }, { { 0x7f919655, 0x7ae466ce, 0xfc079067, 0x4d436422, 0x7e222304, 0xf0b28485, 0xaf0c3f74, 0x79e18e14 }, { 0x711f27f7, 0xea7b2a0a, 0x7ba89a2b, 0xd2beec77, 0x57079561, 0x865aed18, 0xf0c7b395, 0xb0acd081 }, { 0x32613842, 0x8bbede50, 0xa349878, 0x64846637, 0x2436f69f, 0x255adc5e, 0xd813eae2, 0xf6965781 } }, { { 0x4a468b4d, 0xa712975, 0x51ec9ec0, 0x54efb778, 0xf7e66e16, 0x8bdcf904, 0x91b409d4, 0x7d26e8e3 }, { 0x97f470b, 0xe62296a1, 0x56310238, 0xb156430e, 0x551f2a62, 0x3493e493, 0xd6347918, 0x6ab28175 }, { 0x66c6501a, 0x6cf3af2d, 0xb443dae5, 0x2b0e2aa5, 0xd9235a4a, 0x1178af73, 0x91d19aec, 0xa6ce1c1e } }, { { 0xb70dc6c5, 0x7c53f331, 0x9835d6f5, 0x889d655, 0xa7d4caac, 0x9f444e0b, 0x4faa5d3e, 0x2d79dc42 }, { 0x8335f71a, 0x191cd86a, 0xbc053aa7, 0x2efcf982, 0x646485dd, 0x90002751, 0x91038e95, 0xf898ca57 }, { 0x6d000102, 0x54e63448, 0x85f3e9e, 0xc96fb04e, 0x644fa45c, 0x1471986a, 0x75a6c645, 0xc7a40259 } }, { { 0xf23a57f7, 0x3eeb8844, 0xea75ad76, 0xa7955b08, 0xd57ef5b5, 0x5a81b9f4, 0x263aa8f2, 0xce686bf5 }, { 0x2868a4fa, 0x493a6aa1, 0x4ac0b191, 0xa4d01ee7, 0xe1c3e026, 0xed7dda01, 0x95e90ee7, 0xae0de84e }, { 0x6249a310, 0x9d98fe29, 0xb1772c02, 0xa6a386c8, 0x7182b12a, 0x1e04ecba, 0xcb243067, 0x89108946 } }, { { 0xab027653, 0xca58da11, 0xf5b7d4dd, 0xbb9f3f21, 0xf6bc842a, 0x166a356e, 0xf4a25dab, 0x7089690c }, { 0x197e164, 0xea43668f, 0xb79ba457, 0x66f9ec27, 0x565120b0, 0xab7e8c58, 0x7491cf3a, 0xb9ccf0a }, { 0x2c297fca, 0x621e821c, 0xc1c7d86, 0xd7dcee50, 0xcce78d26, 0x8ed2ea40, 0x6140ce33, 0x82b25a6a } }, { { 0x1ab3b217, 0x6f373f45, 0x4650b58f, 0x1cfd8b03, 0xd47a05bf, 0xa4256d33, 0xe5f072b3, 0xca120286 }, { 0xa59d86e, 0x4dcdbfac, 0x37694b1b, 0x3e7402b9, 0x659ca394, 0x4cac69d4, 0x7dec3664, 0x1ae89883 }, { 0xf2222e08, 0x952a15f3, 0x4a38e4e3, 0x1ca6ae94, 0x990b422d, 0x4e4ec1ce, 0xa31e0f5a, 0xad7ae5f9 } }, { { 0x560ea7d3, 0xfda6116c, 0xd15b886, 0xe604e372, 0x81b05331, 0xfb3a83ba, 0xb7f2e388, 0xa6200aae }, { 0xaa0e5a88, 0x742d3910, 0xb3dad9a5, 0xd7664a22, 0x7705f5ac, 0xbd27a88e, 0xedc4031, 0xdcb46b90 }, { 0x74d5a531, 0x1e82b535, 0xc3f369ff, 0xb5db71b4, 0x5cfec751, 0x9f891714, 0xe9300a71, 0x9ce15ebc } }, { { 0x9d80d5c7, 0xa3e6f500, 0xb24f2f97, 0xadb083e7, 0x67765de9, 0x32f23a82, 0xa629e1e6, 0xf2b168de }, { 0x590d050a, 0xed0527f4, 0x4fef6d01, 0x78461327, 0x28f6578a, 0x51cc96dc, 0xd3c0f3a1, 0xa52151bc }, { 0x9424ad30, 0x931dff61, 0xd212efbd, 0x4f93d4a2, 0xf32b353b, 0xd34146ab, 0xaf0510d2, 0x3c636215 } }, { { 0x5fd0ed69, 0xd778771, 0xe873a21e, 0x46231d5f, 0x75902b55, 0x14e593e6, 0x1a9cd68c, 0x7545dfbc }, { 0xe8bac5e3, 0x1cdea85, 0x787aac0b, 0xf24d1720, 0xdc7da9ca, 0x7fcb1907, 0x948aa42a, 0x64227bc3 }, { 0xf6b4cea5, 0xe06eb07e, 0xf19c759d, 0x4063342d, 0xaeea8a8a, 0x89fbcd61, 0xc72e0387, 0x279a729e } }, { { 0xcbbc33c8, 0x40422fb1, 0xbf602b4e, 0x3e29ac26, 0xa2d1f853, 0x7c2f5587, 0x34b0b24e, 0xc2a64c16 }, { 0xdb6d1aab, 0xe9a861e7, 0x962a3dde, 0xc707e8d5, 0x431682a0, 0x385a5b9b, 0x61548a45, 0x450ba010 }, { 0xcb996273, 0x6c4c2d88, 0x879bfab5, 0x607a3591, 0xe4c7dcc6, 0x8b520fcf, 0x2581f880, 0x727b79b3 } } }, { { { 0x6b7cc66d, 0x90d57071, 0x1675043e, 0xcf5d0cc7, 0x390bd9ae, 0x4b52788f, 0x2b9a5471, 0x6b23eb0c }, { 0xc79c6a56, 0x924c11d7, 0x8f49e8de, 0xe2717a64, 0x230f88c2, 0x6aa591a1, 0xd608088d, 0xc825921b }, { 0x8c1c66b0, 0x666c8d4, 0xd4329604, 0xe1f560b0, 0x62939b10, 0x46c1ec5f, 0x3937de67, 0x15e321d7 } }, { { 0x676e178a, 0x9412010e, 0x6a6b839e, 0xcc6a91e3, 0xcce0060a, 0xabba8abf, 0x72d4868f, 0xc5d5c37d }, { 0xc00a7cc3, 0x3d45d5e, 0x16f8809d, 0x492ad762, 0x2fdc9d43, 0xc67e7a44, 0x4b2ce751, 0x278ba440 }, { 0x2b8b6d05, 0xa1149fef, 0x6f0adc13, 0xd713bb09, 0x3ae1da1d, 0x73ebdc3a, 0x81befb6b, 0x5e297316 } }, { { 0x46c7378b, 0x294c9542, 0xf3895126, 0x321e2fbd, 0x44e62921, 0x883b379c, 0x70a1b759, 0x6fb9d170 }, { 0x653bfb4c, 0xd9ad200e, 0x86a440a1, 0xcdf639ed, 0xcc2799db, 0x456305b3, 0x7c46e1ba, 0xd0dcf32b }, { 0x51f3ca81, 0x2db279da, 0xd7fbe086, 0x623e9ea1, 0x68a3d464, 0x62fe6810, 0xa96556b3, 0x6468520e } }, { { 0xa120dac2, 0x8173476f, 0x45889726, 0x3c4ad491, 0x80db766a, 0xbe7277fc, 0x8c3175d1, 0x13f6ac5a }, { 0xc17d2019, 0xfb7bdcd0, 0xd441bdfb, 0x7d6f8d2c, 0xa90eec53, 0xb49dc190, 0xc79f03d9, 0x33dda8dd }, { 0x5f07585c, 0xbebbdc34, 0x8aa7ddc6, 0xd025f74, 0xbe48dc34, 0x45ff0ea0, 0x5ddb31b1, 0x1710b2e6 } }, { { 0x61aa7184, 0x8484a5d2, 0x1587d93c, 0x6bb42150, 0x2e0add36, 0x8f39df13, 0xcdeeb466, 0x39833292 }, { 0x549effb, 0x82d867b6, 0x7ade6644, 0x863535aa, 0xb46d2133, 0xf4e4a483, 0x7c92b9d9, 0x123e1cf3 }, { 0x69512bac, 0xf6f16eb9, 0xdd629d2f, 0x40f4aadf, 0xd77342c5, 0x2607932a, 0xd428e014, 0xc1822a33 } }, { { 0x484ae367, 0x4eb87609, 0xf759ec9f, 0x4f784624, 0xb2cd712d, 0x34964b32, 0x2cd43a37, 0xe02adc30 }, { 0x368d2eb3, 0x8ef7ec98, 0xea4199d0, 0x430a80f, 0xd20351a9, 0x7de65f25, 0x1bc5dda1, 0xcd5301b0 }, { 0x781a82a6, 0xf54c3d82, 0x363d0fca, 0x3da2cdc9, 0xe608371f, 0x9f0f89df, 0xf0584459, 0x59701df0 } }, { { 0xfd00c523, 0x747532a5, 0x8584592f, 0xa67a2d64, 0x97602972, 0xd586f7ac, 0xb311f2c7, 0x1420a46e }, { 0x4cbf130, 0x2bb16a78, 0x26f834e3, 0x2ae535d0, 0x96b7d456, 0x9cd72bb1, 0xd3aa918d, 0x68e62171 }, { 0x45130e0f, 0x9c4ac499, 0x31f78da9, 0x23a2eed7, 0xa9356894, 0x1152f8ad, 0x3800135d, 0x7de2f568 } }, { { 0x2d8bf181, 0x7ac2dc60, 0x45b67d51, 0x6730294c, 0x955a6c25, 0xb7e90300, 0xc6dabad2, 0x4f5c3cec }, { 0xcdff7ed, 0xd4422f94, 0x8b1b2c35, 0x7d914b80, 0x32d18cc7, 0xa786c20a, 0x9098aab0, 0x3a4651e9 }, { 0x953e9904, 0xf432e7ce, 0x160826ea, 0x2d81946a, 0x9c1e16b2, 0x7324ef16, 0xa44339c9, 0xf62b0b3e } }, { { 0x84c5c67b, 0x9f597589, 0x7df23e96, 0xa7766ff9, 0x59c97a27, 0xe3126b4f, 0xc54abdce, 0x4aba636a }, { 0x6ca53dd5, 0x103ea7b3, 0xbf4d2aa5, 0x6ba97f6f, 0x276d33d0, 0xa5b36490, 0xa9536745, 0xd0601511 }, { 0x7d201aac, 0x689f06fd, 0xe3a8c54b, 0xac71a466, 0x50e2ea7d, 0x54379027, 0x8ca320c3, 0x3ca4eb79 } }, { { 0xa738de57, 0xcb507dd6, 0xb218f9f4, 0x584b0869, 0x705a3f2f, 0x931841e5, 0x88808024, 0x337eec }, { 0xdf7faa5e, 0xbbf1c061, 0x2670623, 0x58d2c50b, 0x8dc80d7c, 0x4dc8fec6, 0xd2877293, 0x742d1f08 }, { 0x3088b290, 0x6782a3a3, 0x92f69dc2, 0x664a7d8c, 0x5f31874b, 0xda037e1f, 0x3af5384d, 0x6706432a } }, { { 0x68a355f6, 0x2996653, 0xbada53b5, 0x598103eb, 0xf1135c32, 0xbcc2bcd3, 0x913d7831, 0x8912267b }, { 0xd6bb74c3, 0x5ed7c6f5, 0xf7df5580, 0x83c1f97f, 0x2c6402ac, 0x23026b85, 0xd84f7951, 0x38017efb }, { 0x450283e2, 0x422a0b34, 0x53c82b2d, 0xb26649fc, 0x54f2fd8f, 0x8aa4bf0e, 0xa94a9a73, 0x8db762f9 } }, { { 0x2656ca2d, 0xcb280a79, 0xcf029fdc, 0x6bf5c6f0, 0xb884b38a, 0x8f6d87fd, 0xfcfdec45, 0x5831fcea }, { 0x66a154a6, 0x81aa3550, 0x54d4966, 0xcdc5b012, 0xef94ca, 0x2f549b18, 0x28bba3c, 0xb0b805e }, { 0x98588ddd, 0x3b66261f, 0x11aaae4b, 0x6f9660f4, 0xdae51a95, 0xe662d101, 0x18ae5382, 0x7120de92 } }, { { 0xdf60bc73, 0x81e8b9d7, 0xc1d89864, 0x6d0eb9e4, 0x42d65c96, 0x6c89a60, 0x712262e4, 0x3c2b164d }, { 0x12bf2155, 0x8c024479, 0x124b8544, 0x8400dc32, 0x7307daf, 0x38762039, 0x33dcc75, 0xb91eeee }, { 0x4d8bb0c5, 0xc55aa59b, 0x7e40aa94, 0xcc275bab, 0x9a955073, 0x6272b304, 0x190a454e, 0xf171f4c3 } }, { { 0xb32f0638, 0x5729f638, 0xff5ecdfb, 0xff0580c5, 0xb67da0cf, 0xbd9e316a, 0x2d95a33a, 0x967068f4 }, { 0x2deebce1, 0xca11d43c, 0x1593875b, 0xc91faad0, 0x23df35ff, 0x95786ef4, 0x71122511, 0x9c6dad6 }, { 0x6cd4ae45, 0xd180d4aa, 0xc4d25969, 0x962f8fe2, 0x13b5cfca, 0xfe69e1e4, 0x30423abc, 0xb2c10d76 } }, { { 0xd4f7bd8d, 0xf2c917ed, 0x350eb528, 0xf8fedd7e, 0x285eeba5, 0x82dcaacd, 0x88c5ee59, 0xf9bc6918 }, { 0xf0e15f27, 0x52b84195, 0x28505a3c, 0xea1c79f, 0xb072e6ca, 0x284cc2ce, 0xc55d4055, 0xaf556857 }, { 0x5825e758, 0x3446b037, 0x611f47a1, 0xb1f019d1, 0xca44aacb, 0xdc356dbb, 0x59f0f373, 0x904b64c5 } } }, { { { 0x74ee74ad, 0xb7a15513, 0x7aabc9be, 0x48b819b6, 0xfe051719, 0x408de0e, 0xc28b203b, 0x8dc27619 }, { 0x810ed05b, 0xc571727d, 0xb87adbfc, 0x5e0e5297, 0xf2920def, 0xb409fc86, 0xb3e1a48, 0x5685b20 }, { 0x1025dac, 0xab7b66db, 0x3375b6a5, 0x88ba09f, 0xee2a27b, 0xd5b85aea, 0xd87c1bfc, 0x34e79c1f } }, { { 0xe8012761, 0x74873981, 0xd2392747, 0xf18b637b, 0x2c13d138, 0x449eb939, 0x418269f, 0x4399c8d0 }, { 0x60b65037, 0xd5c8def6, 0xf9dae085, 0x2418e951, 0xfd3d3b12, 0xcf31979c, 0xed414d76, 0xf971141a }, { 0x70eac6d8, 0x68d49ef2, 0x65b2ed1a, 0x3ee716c7, 0xa0f3361d, 0xd65013a9, 0x6a1a35bf, 0x290d5083 } }, { { 0x3aa14fbd, 0x7d1cd7ad, 0xe5cfdbc6, 0x59b3c6e8, 0x5f70d479, 0xdb20085c, 0x3d67688f, 0xd090a3be }, { 0x9fd09bbd, 0x80f79ee1, 0x510db4ef, 0xcf6de181, 0x91988c11, 0x5e602b15, 0x3d16d9d9, 0x67a04d27 }, { 0x793a4487, 0x827f6919, 0xecc6db59, 0xaf506e34, 0x36ca1fc9, 0x1f4a5899, 0x7d630933, 0xee2d57d3 } }, { { 0xef7d5381, 0xce347fc0, 0x87ea4dd1, 0x618aa3e3, 0x824e1dbe, 0xc725c47, 0x5be97e05, 0xce1d1574 }, { 0x73a148d9, 0xe121d49c, 0xb2886517, 0x9760f865, 0xaf0289fa, 0x60f1b256, 0xf9af8b4, 0x6226fde1 }, { 0x290dfb8a, 0x780fae18, 0x3e6db18c, 0xd994b65, 0xcdd9b7e4, 0x3fb0a64, 0xc3c4860b, 0x57cddb85 } }, { { 0xadad6597, 0xced85bc4, 0x9f3363e0, 0x66a96e26, 0x42e9e665, 0x9cbfabf1, 0x164b0a5b, 0x43025592 }, { 0xd193513d, 0x4b1dc2ee, 0xc7fe3ccc, 0x4248c2e1, 0x315b7cad, 0x67165ba1, 0x2841cb0b, 0xf5eeb528 }, { 0x50ad680, 0x1f88aa52, 0xff5484c9, 0x282cb05f, 0xbc47d523, 0xdc17228b, 0xed2162f, 0x186ba3be } }, { { 0x89f0650d, 0x81b01fe3, 0x8fd5e1b8, 0x57bd1150, 0x543ee8d, 0x561ce5cd, 0xbde0d694, 0x378aa757 }, { 0x938b6293, 0x19da35bd, 0x64647237, 0xa622aed5, 0xb2ab5875, 0x215cd1c7, 0x72ab3efd, 0x82a5b5c1 }, { 0xf37a16f2, 0x640a7ae0, 0x8ba7481e, 0xdfb9862f, 0xc89becbf, 0xaa7879c, 0x3a948d3e, 0x38b1e181 } }, { { 0x1407fcc3, 0x25886b94, 0x6c4758a4, 0x6384f6dc, 0xaea38c92, 0x3747ae95, 0x91d6dbc4, 0x6b980532 }, { 0x9ab7e035, 0xdba54e46, 0xb706c14a, 0xf8ce8f8b, 0xdc608080, 0x8d675c9, 0x61f55ed2, 0x83d186f }, { 0x4a447c50, 0x148aabf5, 0x2a3b30ca, 0x33d4ff2b, 0x1843b3a8, 0xd2a610b8, 0xc52c299, 0x75efe7aa } }, { { 0xa6c66a02, 0x18a1c9da, 0xbd25982f, 0x2d5c954a, 0x27e55276, 0xe933f08b, 0x14996e3c, 0x16b13344 }, { 0x8eb20776, 0x3c62a9bd, 0x192328c4, 0x7e1d6499, 0xc849a469, 0x7ed0a899, 0x12fac01f, 0x38589217 }, { 0x4df421f8, 0x774c3601, 0x1adecab8, 0xd0e904ed, 0x58fdb8b0, 0xe6adc600, 0x6d3c66a8, 0x4a067980 } }, { { 0x1f5aa8d2, 0xec6b0585, 0x5e286cd1, 0x3e4e3a25, 0x64f425ab, 0xb5910a2a, 0x99fc56b9, 0x5f6f4d94 }, { 0x9649dd5b, 0x12aa78a5, 0xfa6a3476, 0x26acf3aa, 0x2fbfca26, 0x724ddd80, 0xa6176b89, 0x9241ee5d }, { 0x7db0d46b, 0xd761bd5e, 0x136423d5, 0x5ca1a384, 0x4b3196f3, 0x6c9dbdb6, 0x6da4ba05, 0xb024657c } }, { { 0x599bf689, 0x9bc86c00, 0xdb241725, 0x937f5589, 0xae9ff12, 0xc3dd871b, 0xb87cb94d, 0xd4198b20 }, { 0xc5a487ba, 0x956f2530, 0x63dc98da, 0x2cd6d45, 0x4e3b4a97, 0x752d2528, 0xe5ff2e8, 0xc6fefa8f }, { 0x8b6653e3, 0x5c9e4774, 0xe8be3e07, 0x244264df, 0xeb4a2bd3, 0x60fb67a6, 0x51b23bb5, 0x2daec01c } }, { { 0x1724177b, 0x88be7991, 0x16de9892, 0x7263ed8c, 0xeb9df238, 0x7bf38518, 0xd3059d75, 0x5583e76d }, { 0x310df2dd, 0x4956d98a, 0xe389ecf9, 0xc03522c3, 0x2a07ba7d, 0xed6dadd1, 0xbfb339ab, 0x8ec06fc }, { 0x30bc46b2, 0x1b6c2af9, 0x3865b552, 0x42640e20, 0x46a2cc7f, 0x6ed9c610, 0x1871eb8d, 0xc47d9731 } }, { { 0xb1055799, 0xee8b54a2, 0x557d61bd, 0x7d2c6f4a, 0x5674cc94, 0x7233a073, 0xfdb2ef85, 0xb4ecb92e }, { 0x897f8a2e, 0xa6e712fe, 0xe631819f, 0x8c1748f, 0xf3011764, 0x2be3a5ee, 0xed70bad1, 0x64fa467d }, { 0x1dfdc6a1, 0x400c4ae0, 0x4b4f8dc9, 0xc8afac5f, 0x15b9908d, 0x9c0279f8, 0xbcd81d30, 0xbc14663b } }, { { 0xf35aa8d6, 0xc70413eb, 0x7b54926e, 0x61ddd0d2, 0xe21c8431, 0x3c127fa5, 0x644d17a4, 0x3d2b2654 }, { 0xe37123d7, 0x7c8883cb, 0x93c3848e, 0xe1895c08, 0xa80cc32, 0x6d03a5ad, 0xc62bc214, 0xdb33c2c4 }, { 0x9e66fce7, 0xe17e5f44, 0xae8a2bc7, 0xdfebb971, 0xa3b7c297, 0xce55e16e, 0xfc85e836, 0xa057a08 } }, { { 0xa2d4c919, 0x6a1e9ba7, 0xc7c4367a, 0x1037dcad, 0xa06a3590, 0xfc6b9bfc, 0x5c1e226b, 0x13ce9df4 }, { 0xef89b136, 0x348ce628, 0x6c7300b3, 0xf5028de1, 0xfb06fbd9, 0xb2fd3175, 0x23f4fc86, 0x83797217 }, { 0x1f60d542, 0xbc98f7b7, 0x4156dbd, 0x518aee41, 0xe7f8eb0e, 0xfa92f121, 0x9cb0c583, 0x3faa9f9c } }, { { 0xbdbc845c, 0x1a0383b2, 0xf16dbe42, 0x68f290ff, 0x1e89ceaf, 0x33b7b372, 0xb01f2666, 0x298c73bd }, { 0x4b1af436, 0x1a8b30f2, 0xd2561f93, 0xd52ec618, 0xcbf5820c, 0x98183503, 0x54bd4a90, 0x1ea68070 }, { 0x2eb68606, 0x684b3b9b, 0x224e94b4, 0x37f69d45, 0xda83adb9, 0x2dad3803, 0x7648775e, 0x6c5c1f36 } } }, { { { 0xf186a8f9, 0x826584b9, 0x85747149, 0xe1ba87b9, 0x878df08f, 0xf4347613, 0xb3180ba8, 0xfc39c472 }, { 0xe70e2c0f, 0xefecf14, 0x1d868cb, 0x821c188c, 0x299f93c0, 0xc34757a7, 0x4d59d7cf, 0xbe466f5e }, { 0xba721fc9, 0x88f2872b, 0xd7026f08, 0xe1e0cf56, 0x62b2c0e3, 0x35ae20dc, 0x31915b2d, 0xc46c4e17 } }, { { 0xe99701ec, 0x3d7b107d, 0x1bd5bcb3, 0x2365fe0, 0x817a8ec4, 0x545a4cd3, 0x83fd6a0c, 0x1f02686 }, { 0x3fc0bdf, 0xb05cc1dd, 0x799859a, 0x1cdecab7, 0xf117c149, 0x83c806a2, 0x704ac33e, 0xb2731a45 }, { 0xed3ea69b, 0xb205d835, 0x156afd35, 0x39662a37, 0xd46d4c70, 0x82538b1, 0x31d5a0f0, 0x19a7f34c } }, { { 0x4dfd6f49, 0x5470a070, 0xe73d25e0, 0x8f9baea9, 0xb578d956, 0x10f0c016, 0xfc4d9347, 0xd1ec9222 }, { 0xb6f8118d, 0xfaf03c62, 0x4cac03ce, 0x71a96c9, 0x13b48c20, 0x733ae959, 0x3b047738, 0xf2507f15 }, { 0x2a4d6958, 0xf926c56d, 0xb17d86fe, 0xc97c268f, 0x42a2ad3f, 0x22917f51, 0xf6c894e9, 0xba432fb } }, { { 0xf1d6120, 0xcc01add1, 0x29adcb53, 0x4fca49f0, 0xf0330da3, 0x8fc57669, 0xcc835d3e, 0xa265930a }, { 0x907aa8f9, 0xea37ac73, 0x50bc25d2, 0x603f50f8, 0x6917f73, 0xef6df5fe, 0xac93e506, 0x75f0122e }, { 0x3601ff8a, 0xda9267dd, 0x6631629b, 0x628042d1, 0xf7f960ef, 0xfd0e6bb6, 0x6cb22397, 0x2bc2d51e } }, { { 0xe403c9be, 0x680e3c41, 0x8055c194, 0x51ff1427, 0x6acb0ca6, 0xf2645c83, 0x7750c397, 0xf339c658 }, { 0xd3fbe170, 0x684673e8, 0x79dbba35, 0xc1c7336, 0x461c4d2a, 0x32bc6d3d, 0x2376bbdb, 0xc1bbb66e }, { 0x6aab1db2, 0xf35868ed, 0x46a1d90, 0x8165b01b, 0xb528bd2, 0x44c5c850, 0x19de6e74, 0x602abf0a } }, { { 0x8db41b24, 0x5adb4671, 0x176dbf26, 0x6d5bc5bb, 0x128bba28, 0x4098a38a, 0xd4ad3806, 0x8c9b136a }, { 0x1990c338, 0x86feccd0, 0xcd0cba73, 0xcf016142, 0xa57d4590, 0x5a571759, 0xba1953ff, 0x38560e53 }, { 0xdbb79635, 0xe032f2ba, 0x47a7f6c3, 0x715c06de, 0x9aef1857, 0xfbebd7e9, 0xacb8424a, 0x959c2818 } }, { { 0x1e020a8, 0xb03a3bcc, 0xaa52b4d6, 0x2b4296bf, 0x41eab912, 0x8e9f953, 0xd9759816, 0x12a35423 }, { 0x3802cd73, 0x6642adea, 0x443dd269, 0x2b0b9168, 0x9538a609, 0x7c402cb5, 0x9ad4b630, 0x1693f042 }, { 0xc94c12d3, 0x9ce3f1d9, 0x9051d8c8, 0x76328249, 0xb720650e, 0xa7c8ee41, 0xa741ddbc, 0x35c9ed00 } }, { { 0x525a0b9e, 0x487d36bf, 0xd0fd32ea, 0x2bdaa7cf, 0xbb35bf45, 0x3015dd47, 0xe08a9761, 0x6429b3ab }, { 0x77457839, 0x6a14b8b9, 0x7b202cb8, 0x1181ac1b, 0x2465e8d2, 0x95d462e8, 0x62a73d07, 0x9be773e8 }, { 0x84e70ac7, 0xd1311106, 0x8c1ef2ba, 0xc62b2543, 0x53c8d1ac, 0xe3f1b759, 0xdf3b6802, 0x4ddd823f } }, { { 0x9ccf4597, 0x1e96cc96, 0x2af85bd9, 0x36e16ef8, 0x7e8ce832, 0x8698821a, 0xf2f11987, 0xdcc58db9 }, { 0x5f7ff1a6, 0x7b4c4854, 0xe7719a25, 0x6e008cf9, 0x70884a83, 0xb6f4036, 0x15b102f7, 0xe651b395 }, { 0xb8bc03f7, 0x5dc7465, 0x1f846c18, 0x4c59394c, 0x7c121070, 0x918f5a08, 0xc27b5681, 0x3d93e51d } }, { { 0x360e4b56, 0xb948ad2c, 0xa972b915, 0x89ba3429, 0x18ef4030, 0xaafd4b68, 0x807f689, 0xed41cb32 }, { 0xd074c084, 0x7fd402f8, 0x1bc4d6, 0xb650c2eb, 0xf088bd3e, 0xbb726b84, 0xf845caf, 0x42092fc1 }, { 0x30cded17, 0x5fb023ba, 0x35929ec1, 0x65efadc2, 0xc4f345c9, 0x510c36b9, 0x4480e496, 0x4d802c2a } }, { { 0x72e889b8, 0x2170245d, 0x439f0f0b, 0xcabee2dd, 0x8825dc6a, 0x217f6517, 0x2bf4fe24, 0x93d2fedd }, { 0xac62139b, 0x371fbe76, 0x4825fd89, 0x9542c0ff, 0x81a071be, 0x179b3092, 0xa2c1210f, 0x3e79ccfe }, { 0xf6c2f6c9, 0x5057f62d, 0x67e613cc, 0xe91367bb, 0xf752fb0, 0x71b9a453, 0xa2bdfe24, 0xc5cd3daf } }, { { 0x7e7582de, 0xd372cd2b, 0x37d2a8c9, 0x63cc545, 0x1bbb0a66, 0xddc207c2, 0x3b928385, 0xd3a7f667 }, { 0xc54975a6, 0x28695722, 0xe1b66f9f, 0xd78c594f, 0x93e308c9, 0xf7737b6c, 0xf4e407ad, 0xf9431f5e }, { 0x612eb3a, 0xf5b76079, 0xfac492af, 0x47a40d95, 0xc69b7b06, 0xfbf36a00, 0xc35a6fc7, 0x3ce08d28 } }, { { 0xbb44e895, 0xb5d51dae, 0xe8b14cb4, 0x442f20c1, 0x1d5179e0, 0x68fd7e96, 0xfb73320a, 0x7c376bb6 }, { 0xa0fa7547, 0xe0393e7e, 0x52736e2f, 0xd180321a, 0x8ffe2729, 0xf5952a2a, 0x2cc50029, 0xa8965807 }, { 0x36a6d661, 0x89ad43d3, 0x3318ae2b, 0x77048c1c, 0xbcd15d88, 0x8a44e318, 0xf3386479, 0x413014f4 } }, { { 0xc9879fd1, 0xe3803010, 0x5189965b, 0x1ccc6fde, 0xd0bb1566, 0x65c57016, 0xe7ee1c70, 0x5ad748bd }, { 0x7891f8ae, 0x513c8bb0, 0x2d7acec7, 0xd5774389, 0xe03347f8, 0x3f304175, 0x92c80be5, 0x1f23772b }, { 0x35b69230, 0xd18387f2, 0xf547ca5a, 0xfe826d0a, 0x76dbcb9e, 0xa8746457, 0x251b05ac, 0xbdc8f46a } }, { { 0x420a577, 0xd22ac643, 0x58a9ab7f, 0xfbf71fc1, 0xa1bd46d, 0xec64df05, 0x3461a4d7, 0x1ac5c74a }, { 0xaef372a3, 0x1eef015f, 0x12dc6322, 0xace5eaa8, 0x9008264, 0x63b00612, 0xc0713955, 0xe8ca2244 }, { 0x4998ac3, 0x8529145f, 0x97ab1cae, 0x6740c760, 0xd8804502, 0x815ffa2, 0xa33c5c9a, 0x7a154316 } } }, { { { 0xff7a53f9, 0x66c2ae5c, 0xa63a4b50, 0x68017d22, 0x5736b852, 0x314ecb88, 0x75c2704e, 0x3684383c }, { 0x9a9ad03f, 0x7c14930, 0xf721f4a7, 0xd15e5106, 0x5eb9ff1a, 0x40c84afc, 0xcf34959b, 0x1a6fe381 }, { 0x9cac602d, 0xadb551eb, 0x5bf82c8a, 0x25754c61, 0x2cb5a682, 0x41dbe420, 0x6cccee93, 0x2752bc7b } }, { { 0x7d0bdd34, 0x9da4d7f, 0xc886ee66, 0x3802ab4a, 0xba2a933a, 0x56c76fd5, 0xe097e97, 0x610d36da }, { 0xcb8b3265, 0xa6b5fb70, 0x8fdc3334, 0x48eb4c87, 0xff300e23, 0xf891982d, 0x856fb654, 0xa283e320 }, { 0xe312324b, 0xf8d8f104, 0x6022c61, 0x1ce15f71, 0xc1f9a212, 0x55fee0dd, 0x3dae545e, 0xf90d26ea } }, { { 0xf2db1c8b, 0x16ab93d7, 0xa28025c5, 0x2e530159, 0xb668fc93, 0x20966d3f, 0x8a3ee46e, 0xa86cb078 }, { 0xa151b9d, 0x4b41984b, 0xa0617799, 0xa8b7c0d5, 0xbe207166, 0x30f421f0, 0x25cca1e7, 0x93cf7da9 }, { 0x6f24af73, 0xb6937fa6, 0x38a49c92, 0xf80af38f, 0x68200f7, 0xe36df93f, 0xe1698b6d, 0x8c951221 } }, { { 0x1e40bb38, 0x151b3c85, 0xbebed971, 0x93e22ae6, 0x9ed6792f, 0x48a590b2, 0x95273810, 0xe5e220bb }, { 0x42d6b70f, 0xbbebe7b, 0xb995c8, 0x4d9ea6ff, 0x89d09f73, 0x8fbfa171, 0x4c267864, 0x33b6993b }, { 0xfe5a3a04, 0xca2f5d43, 0x52512cd3, 0x40d61a61, 0xe24346f4, 0x749bcc68, 0x4915cda3, 0x5c549d52 } }, { { 0x76262cfc, 0x139d6e30, 0x2796c28b, 0x213d9a00, 0x2455a616, 0x2cdb367, 0x82019724, 0xf777090f }, { 0xd22be224, 0xec4f54e8, 0xda5cbef5, 0x32532606, 0x393cf72e, 0x21b0f1de, 0x629cddc9, 0x5075bc7f }, { 0xdeb22418, 0xd9e90549, 0x844c14b6, 0x630dac5, 0x7aa2ebfe, 0x243a097c, 0xf4bb169a, 0xf9c63ef1 } }, { { 0x290d9217, 0xe1ba42ff, 0x908e536c, 0x5c9116de, 0xe688ce38, 0xcde193c6, 0x7265c873, 0xe80a08aa }, { 0x284944d3, 0x6972d55c, 0x98ae179e, 0x5d8b3026, 0x2f7ab233, 0xc5c1097d, 0xe7cc9039, 0x8a53454 }, { 0xff844ba6, 0xc489618e, 0x819165e7, 0x17f5094e, 0xed7dee73, 0xa4ab4920, 0x667abbca, 0xf03e861e } }, { { 0xe0b65bac, 0xe44801ea, 0x96264e1b, 0x62b63c07, 0x63d78cc, 0x2d80cc2c, 0xcadb05c6, 0xc00a5c51 }, { 0x31cda663, 0xb0055b0, 0xbb1ae4e, 0x74b8b6aa, 0xceab6a00, 0xabb4cf95, 0xc6090c87, 0xd7d370d9 }, { 0x19d471a9, 0xbf73a849, 0xbd19920f, 0x739d5bb6, 0x723f0c7, 0xac186da0, 0xbde9e60f, 0xc21d616d } }, { { 0xe75cca21, 0xd11ef919, 0x40bde5a2, 0x8cd3c2d3, 0x38fe711b, 0xdb63c6fa, 0x7a364a4e, 0x7d1cb97e }, { 0xf411635b, 0xa93c2484, 0x860a7378, 0xd8d6b6b2, 0xe05d2f3c, 0x7685ab96, 0xb064963, 0xadfa2057 }, { 0xb8da18fd, 0xb4f9a0aa, 0xbe679ba, 0xc172baa3, 0xb538e994, 0x9bcf5b06, 0x1c310c4, 0xec39fcb2 } }, { { 0x64201565, 0xb937b32e, 0xeeb81c4b, 0xbb621c7, 0x66ea4e4a, 0xc4b1ff27, 0xc518ba8c, 0x9f73066b }, { 0x97c374a5, 0x5271b0db, 0xeb860b72, 0x11178e39, 0xb709d69d, 0x42580fde, 0x77993285, 0x8b9571a }, { 0xac90083b, 0x4979057b, 0x4ef32d1d, 0x52caa8a, 0x377ab717, 0xa288ca1, 0x68ae8345, 0x61eedb4d } }, { { 0x5c09083a, 0x7fc6dbe2, 0xd15f20c0, 0x83d3f20e, 0x1c6cd7ed, 0x79b4ff8b, 0x19dbf610, 0xa82fd8a }, { 0x77ef80af, 0x114bb69f, 0x89bc93bb, 0x24afdcb6, 0x3108e3ef, 0xde447fa2, 0x98f7c427, 0xc2607849 }, { 0xef395c70, 0x66ea7af2, 0x17a5b140, 0x7b8c76d0, 0xfdd501f2, 0x81bbe7b3, 0xdef62c3c, 0x6e913a10 } }, { { 0x6daba511, 0x33f249bd, 0x9e3b9732, 0xcbee8fd1, 0x1b17c106, 0x228f408, 0x7ac37550, 0xdaf3a6c4 }, { 0xcebed5f8, 0xde6e8644, 0xb3f58935, 0xd52a9347, 0x106fc7cc, 0x398c444e, 0x8e5227dd, 0x1b9ad67 }, { 0x49c1e513, 0x2e497019, 0x315c7f06, 0x2c6a6cbd, 0x2bfecc86, 0x5ea35274, 0xb9f0f129, 0xa022fc6 } }, { { 0x62dae607, 0x62eb56e1, 0xd7cca94, 0x2c8094ca, 0xf7f7d9ff, 0x46371809, 0xc9491c12, 0x9f207a02 }, { 0x498e61ae, 0x7805c508, 0x9e3ed929, 0xa9cacb76, 0x6317ef81, 0x108deb47, 0xdd193248, 0x578b9b8c }, { 0xf0691b37, 0xd2e0a417, 0x7c0ac9f3, 0xb906f95c, 0x6ce40ea6, 0x338735f, 0xd9045cf4, 0x680613a4 } }, { { 0xe4223bcb, 0xa299f509, 0xb44733ea, 0x21102312, 0x887261d7, 0x8db4991b, 0xaea4ebf3, 0x457ceea4 }, { 0x655e550d, 0xde7f3e65, 0x33c51f6c, 0x6b0f8b2, 0x5a4a4427, 0xa692a0d6, 0x832bc3ef, 0x246989de }, { 0xfe023a0, 0x104567a8, 0x55365b67, 0x8cc16fef, 0x5c106101, 0xc2679405, 0x613c4b8, 0x292116f } }, { { 0xf9a9ee2, 0x10d18a8b, 0x31fba957, 0xcc24872a, 0x3b72e439, 0x939f9080, 0x2011c809, 0x9f5f930d }, { 0xd5160d16, 0x9d36e880, 0x1148ed90, 0x8e6dda68, 0xba6bb9ae, 0x11fc056c, 0xad3462d3, 0xd290a48f }, { 0x65552a13, 0xc6fa3c4d, 0x398cd01d, 0x557dc80c, 0x121bd8ef, 0x6d6b1491, 0xa869085a, 0x8416e03b } }, { { 0x590d3c6b, 0x4742298f, 0x9736cdf0, 0xc9aa8c72, 0xa66b3991, 0x55163ae4, 0xfcf4dba7, 0x35470b3b }, { 0x58bd45cc, 0x90487a9a, 0x5f5fca32, 0x426e4b3a, 0xd9f9a469, 0xc66d9632, 0x102db098, 0x2daa3e03 }, { 0xd8c61c01, 0xc2301508, 0xc2cc7349, 0xd85223d7, 0x3015bdcd, 0x1bf3d0a6, 0xfa82ab6e, 0xbff36247 } } }, { { { 0x1ba063a2, 0x3a353983, 0x13c9c3db, 0xa1350ee1, 0x761ba60d, 0xa56f0fd7, 0x42bc48f9, 0xa5c8efe4 }, { 0x547632c0, 0xf76649b8, 0xa8188939, 0xac460b14, 0x9981cb4, 0x1fc96e29, 0xca994b14, 0xda9a6881 }, { 0xedf265ae, 0xec6d2ceb, 0x7ec958f3, 0x7691a436, 0x8d0806ad, 0xaf0a2b27, 0xd6f83b38, 0xfc5a599e } }, { { 0xd081c560, 0xfab063de, 0xbd7e1d26, 0x9fedeaf9, 0xe573b32c, 0xb1fc62, 0xce16f312, 0x2e78cbc6 }, { 0xd879d18b, 0x69175a44, 0x9eaa8608, 0xce72af29, 0xa25ed5a7, 0x1ca20e57, 0x207c827, 0x30d78bfc }, { 0xa798e40f, 0xc5dccb32, 0x9485a91e, 0x37c4473e, 0x121c2621, 0x217413a4, 0xc7709c90, 0x3cbf0085 } }, { { 0xd4dba2d4, 0xedc439cc, 0x25cb0f74, 0x37d56f5c, 0x49862991, 0xda6a0cd1, 0x266643f4, 0xd55d60d5 }, { 0x4f317b07, 0xeb4dbb8c, 0x65251d1e, 0xa5c609f8, 0xa43dc9ab, 0x2ce82bb9, 0x2ac5fe11, 0xd34dcdfa }, { 0x6e074af, 0xa55f176c, 0xf5456464, 0x7ca346d, 0x36d422a0, 0x1a8e1586, 0xef3a0e7d, 0x6133cc1e } }, { { 0x75e928b5, 0x4909894b, 0xf888dbff, 0x850cf858, 0x84d624df, 0x8000602c, 0xfd286a91, 0xb5a4047d }, { 0x4f21e284, 0x33d129f, 0xc0f64d41, 0x4a4379a5, 0xf4fc1f1, 0xbcd93658, 0xc9e6c453, 0xabdbbf2c }, { 0x32c13f32, 0x969fdc76, 0xad215b76, 0xad7449d1, 0xca2d1835, 0x2c9acb5e, 0xfda1255d, 0x26f0a95 } }, { { 0x3e11a146, 0x50996e7c, 0x611c26b1, 0x6cfde71a, 0x39e25ba, 0x3c237957, 0x2115b84d, 0x31f300a4 }, { 0xb401d19d, 0xa5e81fd8, 0x56efd7f6, 0x87a7282c, 0x8d113fb2, 0xb29cbd99, 0xb76f7868, 0xebeaf9f9 }, { 0xeb28b704, 0x75d26b1a, 0x2e358f40, 0x90a96707, 0x138f9688, 0xb6ed8d0c, 0x1351cf09, 0x699f8447 } }, { { 0x742b7acd, 0x9d1252ec, 0x685575df, 0x953dfd59, 0x94315d6f, 0x9708730e, 0xe68b4f4f, 0x358e28ab }, { 0x63a2acc5, 0x874a4242, 0x41a67b58, 0xc9b2ac6, 0x40456d32, 0xef4aef76, 0x15b9423a, 0xace2cc47 }, { 0x1fa46d94, 0xe809a0b4, 0xae7dec3a, 0xbba94b53, 0x5de51e3f, 0xa0073f74, 0xb02040c6, 0x1c5fa6e4 } }, { { 0xcef3edae, 0x3a39bd23, 0xaceb64b8, 0x833349c0, 0x9807cf90, 0xb6dded25, 0x263f459d, 0x3f19a6f9 }, { 0x359c8189, 0x9685ea4b, 0x51b67031, 0xbcce5ba, 0x4c7438a3, 0xfaa2b791, 0xf0f7161c, 0xe43f98c4 }, { 0x53f1e37, 0x1300699, 0xd29a5aad, 0xdfe4b4c5, 0x84bad78d, 0x8428eeeb, 0x136699d3, 0x313a0efe } }, { { 0x687f6d47, 0xb677a3f6, 0x7841cf75, 0x6cd63c02, 0x79c778cb, 0x7c4e38d2, 0x59e458c7, 0x2b13ef92 }, { 0x207d620b, 0xe1c4aa1a, 0xf122e199, 0x834104e6, 0x5d553fc0, 0x60345c3e, 0x9d301df5, 0x839fab86 }, { 0x6b544c08, 0xc5dda552, 0x8000f731, 0xf4217f61, 0x9574b8d3, 0x304cb0ec, 0xf7ae4479, 0x8f357cdb } }, { { 0x61638ba2, 0xe2cb0e4a, 0x4f4a772b, 0xb2af2523, 0xb2e8500d, 0xeaee6b8b, 0x1f8770a8, 0xb319ae9f }, { 0x69ee2f68, 0x71b608b4, 0x2d559171, 0xaa247d02, 0xe3a7cbe, 0x6f87e3c3, 0x7519fe67, 0xe369f27a }, { 0x273e235a, 0x5661f2dc, 0xf3bc1b84, 0x1fad0f73, 0xff195143, 0x4b6e08ae, 0x16848c95, 0x52897604 } }, { { 0x186abd58, 0xd8b15514, 0x2edc2046, 0xe9a70ff8, 0xdf1cb603, 0xf6e4c6a2, 0xda8266e5, 0x9f0d0ac1 }, { 0xdd45fe82, 0x2769f5a9, 0x13881d82, 0x25b49df6, 0x27f15c0e, 0x54c56e77, 0xe6192068, 0xed2335f3 }, { 0x2d4ddd06, 0xfdd726e9, 0xc44b0c77, 0x2cb90460, 0x8d1a230, 0xd04b7cba, 0xf7472b24, 0x144117e2 } }, { { 0xbb24d1bc, 0x4c7b02ba, 0xa42e170e, 0x25e4805e, 0x57850bde, 0x784ca6d3, 0xb4053f94, 0xa6e1b6e }, { 0x133865dd, 0xd4a17d7f, 0xf47003f7, 0xc8dfea09, 0x6ce07f96, 0xb6215918, 0xbf3310c5, 0xa006ad85 }, { 0xfc4d778c, 0xdc0a50fb, 0xb7e3d337, 0x4ea68d0c, 0x47cf188a, 0x7574762e, 0xae9f12aa, 0xc85fa506 } }, { { 0x43c3e445, 0xc820091f, 0x533f00ba, 0x744ff93f, 0xadb374d2, 0x47571b9a, 0x6533b19e, 0xc34142cc }, { 0x2c6044c, 0x20d36808, 0x3ac81cee, 0x78332ac1, 0x82d9eb9f, 0xbc7e4d66, 0x85773658, 0x71db7d0 }, { 0x5634c0a9, 0xd31c90dd, 0x11e07ae5, 0x7f85424e, 0xacce8401, 0x6b037c7c, 0x292a1eac, 0x6debaacb } }, { { 0x5789b9c4, 0x1062f17c, 0x841493c0, 0x7fb6c9cc, 0xb54a2be2, 0x4789f9c9, 0xeeb26112, 0xcac4d965 }, { 0xb688975b, 0xafe4144e, 0x243c9afe, 0x180695d9, 0x3fd161ef, 0x623edea4, 0x2ce47f19, 0xdde77e86 }, { 0x34eed429, 0xa387793, 0x730133ee, 0x723b1208, 0x77d3473f, 0x7c3f8073, 0xd7d2dfa8, 0xeb8e8fa3 } }, { { 0xbc542141, 0xfe8f2eb2, 0x292050cb, 0x9f77d976, 0xa21117a5, 0xa1b53b91, 0xe8f6c338, 0xe9069d6a }, { 0x1562da79, 0xf57f04f9, 0xd73f5957, 0x4b5b5cbf, 0x4d0267ec, 0x87105af0, 0x73792364, 0xecd8ba7a }, { 0x75e11e07, 0x182cf4d7, 0x1f12304, 0xb4dbd1a, 0x34bc35ef, 0x7ba283db, 0x79d1afb3, 0xef1bd2b0 } }, { { 0x86c52e46, 0xa8845607, 0x8d9591b4, 0x50c2f50e, 0x51c5d249, 0x8a16f42a, 0x869ad3a6, 0xdc7c0b69 }, { 0x7d25226c, 0x71ddee77, 0xc3b781fb, 0xee0a0249, 0xf205c5d8, 0x5ac2230f, 0x1f688157, 0xfc5047b1 }, { 0xe5d3e5d, 0x19522113, 0x1d128c83, 0x98bec9cf, 0x4f08a4ce, 0x8ae45a3, 0x19c6167b, 0x1538316c } } }, { { { 0xb949eab2, 0x48e4078f, 0x5dfb88f7, 0x5555b338, 0x311e2d1d, 0x3e977415, 0xfcb88917, 0xef51b0a9 }, { 0xeb442521, 0x37a6fde, 0xca996867, 0xd0d7ed01, 0x646422eb, 0xd7e13b8, 0x1ee1be1f, 0xa1626811 }, { 0x30157f7c, 0x8ce298fd, 0xb736c690, 0x166e9474, 0x491bd622, 0xf2deb415, 0xebe27c00, 0x4e7849c8 } }, { { 0xc4731c6b, 0xfd1f02c5, 0x73ed3536, 0x561189b6, 0x28e963bb, 0xae63badf, 0x50ba8c51, 0xefabcfa8 }, { 0xcddf17fc, 0xe8fc3cf8, 0xd412e5a, 0xbe9632c9, 0x5914dfa9, 0xf6e4d257, 0x89f43854, 0xe2499b74 }, { 0x30aad473, 0xf2a14a36, 0xfe8c3543, 0xc02e6b28, 0x5e58474a, 0x1b556dc5, 0xeca82215, 0x1e4ab023 } }, { { 0xdffb56ca, 0xba18db72, 0x334fe263, 0xc688d1b7, 0x9601a03f, 0xc6285f7c, 0x7c023e8a, 0x3a4345e6 }, { 0x63565d96, 0x743bd34, 0x986211c, 0xf53360a4, 0x9b99b2e, 0xc448ad51, 0x903453b7, 0x89685d82 }, { 0x23b1b482, 0x13c65692, 0x40e9ede3, 0xd6c8a6fd, 0xef5a57b6, 0xecc53c28, 0xb9e5d613, 0xa59effc3 } }, { { 0x566a2931, 0x8b398cd5, 0x48514087, 0xf9ab0d7b, 0x9e650cb6, 0xa9ee6f17, 0x3184cc52, 0x7303619 }, { 0xa2349a76, 0x836dcfb9, 0xe313f3a3, 0x585557fe, 0x9411db49, 0x457f870, 0xe98f7c96, 0xc3fe798e }, { 0xb78ffcbe, 0xe8499195, 0xbc218400, 0x88e669a6, 0x143b3d78, 0x81656aa5, 0xbb1b2b68, 0x63169a8 } }, { { 0xf81114ec, 0x16e8c5ee, 0x96d6d844, 0xbadede05, 0xd64edf1d, 0x2d8e554d, 0x583a98a5, 0x11b65cab }, { 0x871346e8, 0xca65e40a, 0x1861d9da, 0x9b9ef4a2, 0x830192da, 0xd36be0d4, 0x8e4753d6, 0xebfb756f }, { 0xac2130c6, 0xf5902b48, 0x1a69f639, 0x51ef4bf4, 0xb1d5a8e1, 0xbd99f7a0, 0x79a03087, 0x1ebd9f8d } }, { { 0xdcd92cfc, 0x7e40e890, 0xdb0d4586, 0x58b8d1e4, 0x56f0bd08, 0xbec0175b, 0x359e53d2, 0x9a334067 }, { 0xc4dd1d9e, 0x389bbb36, 0x4f2496fd, 0x65d79344, 0x48630a09, 0x8dc4e5a0, 0x644b2d11, 0x81a4caf7 }, { 0x46d2f5f2, 0xad82bf5c, 0x1cddc94, 0x4eeca5e7, 0x1b927a73, 0x6c086c20, 0x387efb31, 0x91f5c9e8 } }, { { 0xba0fbb62, 0x4c2c56d0, 0x3e11261e, 0x98a29efe, 0x1a6c4fc8, 0x16516cf8, 0xafa0fed2, 0x518cd79a }, { 0xec50ca1e, 0x8c61046, 0xe3fe83f7, 0x5b6a442e, 0x2c7b476d, 0x30dca151, 0x7ea8e328, 0x843f9e4e }, { 0xd9d20cb8, 0x67406632, 0xb73cc638, 0x3c602342, 0x66f80dbc, 0x22dc45ef, 0x124c51cb, 0xc1cb0ebc } }, { { 0xb6896707, 0x9208feee, 0x31a74f0f, 0x89eb0600, 0x47e4bbef, 0x2869aa7a, 0xb1751252, 0xe9791fb4 }, { 0x5e479460, 0xdb0ca396, 0xa209b2aa, 0xad795cf6, 0xe3198e85, 0xd9297986, 0x9743e005, 0x692acd4e }, { 0xb6f36a0c, 0x2d981e9b, 0x69a2686a, 0x21c8b9d2, 0x43d970ca, 0x74ff12f3, 0x98fc7b40, 0xb6281e8f } }, { { 0xb8aa0e2b, 0xcb08acbe, 0x58274a24, 0x581e0c98, 0x3a475683, 0x3adf3793, 0xd37307a4, 0xf451750c }, { 0x5865dad4, 0x6d8089df, 0x75430ca3, 0x54bb55d9, 0x1cc99386, 0x9b23db73, 0xc8024648, 0x98329dcd }, { 0x21105f3b, 0xa7fcf429, 0xf4da3f25, 0xca194c59, 0x504f1c96, 0x3ddbb228, 0x8c541c61, 0xd614d056 } }, { { 0x9f20ef16, 0x841b8f68, 0x66323062, 0x8f016969, 0xcba6f8a8, 0xd62526d2, 0xfa38ad7, 0xad7a1e30 }, { 0x196c6c9, 0x6c594d6a, 0x8e6b252f, 0x954de281, 0x836c63a3, 0x9affd9b6, 0x3de20de5, 0xe0527172 }, { 0x48605667, 0xe4219691, 0x4ef46e0a, 0x6382c54c, 0xd69544fc, 0x8ce9c96a, 0x7bf0332, 0xd5d07ee1 } }, { { 0xeb220585, 0xa263df4, 0x135ec9d4, 0xec22b932, 0xd9e5295b, 0x4deb44a9, 0x9a008e9d, 0x8544c955 }, { 0x5919632c, 0xf43ec941, 0x28eddd65, 0x87c5e66e, 0x2e8e5133, 0x43a3e54c, 0x144c6dd9, 0xc0f5772 }, { 0x94b69781, 0xf0d34536, 0x2ef0f8ed, 0xd230e145, 0x9a46edfd, 0x799501e7, 0x47e226de, 0xe0be2a75 } }, { { 0xb1ebdf5f, 0x27509442, 0x7971eb99, 0xaf5e41ad, 0xac9b3676, 0xcda197, 0x5098a55d, 0xfb4bea63 }, { 0x79ecc961, 0xfd8dc3cf, 0x846cb1e8, 0x91cb89c2, 0x47f2705, 0x4dc31dad, 0x8980b079, 0xb72185dd }, { 0x4ed562dd, 0x3a77320e, 0x3b84abfc, 0x913d75b6, 0xaf584e4d, 0x1a2af35c, 0xc9253881, 0xdb0c87c5 } }, { { 0x2b216435, 0xa73a82a5, 0x59432135, 0x4fdd61, 0x264ec488, 0xcb93698d, 0x5ac3f3f9, 0x348dc70f }, { 0xed1f1a12, 0x97c3c7d2, 0x9e9a0bec, 0x292067, 0xd9818a47, 0xbce8930, 0x8e224e87, 0x44205244 }, { 0xaeac7bf4, 0xb306fe56, 0xeb6194b8, 0x9de82856, 0xc8ca6eb0, 0x2f999c8a, 0xbff4353c, 0x2ac78f9d } }, { { 0x83d11e57, 0xa1a5ffab, 0xd742e031, 0x83bc66a5, 0x2eb5663, 0xf8bc3b46, 0x39dde799, 0x6201ab89 }, { 0xdafe22c6, 0x2c480706, 0x490691b0, 0x5a15f15, 0x606eb05f, 0xf379ef41, 0xef887058, 0x1bc360ff }, { 0x14f6e0fa, 0x8e7bcdf5, 0x84a1582f, 0x1da7efbf, 0xa1181442, 0x986b3764, 0xf6f9fc6, 0xc8cb8663 } }, { { 0x39f5c5ab, 0xd6b00e83, 0xa0c8580a, 0xa3a0e5d7, 0x48d30dc6, 0x9ba11ac8, 0x3855fa70, 0x95935621 }, { 0x376542a2, 0x53ca7b9a, 0x532cc68b, 0xf603d921, 0xe8e889eb, 0x1544e4a4, 0xe9906514, 0xee81626c }, { 0x6fa4230a, 0x392f240, 0xfd49f093, 0x164c9394, 0xa075556a, 0x47d11aba, 0x49e54916, 0xb5412964 } } }, { { { 0xc0e4ac8, 0xb78a197d, 0xa4bd248c, 0x327529f0, 0x3f632819, 0x6b550542, 0xd505a7cf, 0xa624d97c }, { 0xe6c088d9, 0xf6e38c3c, 0xc3a9d44b, 0x46727726, 0x7e298174, 0xf4c70301, 0x9102b7ad, 0x69db1955 }, { 0x4fba04d, 0x3b54600, 0x1afaec8e, 0x49576d97, 0xe49dc74a, 0x115dbb6a, 0x8d1e7e30, 0x74f9bbd2 } }, { { 0x459d52a, 0xb2727e78, 0xa867bb3e, 0xc8d67119, 0x64330118, 0xafffb975, 0xf7e6db7f, 0xccb6899 }, { 0xaeef188c, 0xad3cdef5, 0x35de3b1e, 0x1f58d76c, 0x45543ff6, 0x2158fdd4, 0x147742ea, 0xf898599 }, { 0xfbe28134, 0x300a6b6a, 0xa41e43e7, 0x17261159, 0xd5dde642, 0x221751da, 0x70a5031d, 0xe99ac15c } }, { { 0xf15c8d65, 0x68372aff, 0x708b503c, 0x4797b23f, 0x7d6625e1, 0x214de397, 0x4207528a, 0x748eea90 }, { 0xa202ff8d, 0xa0ed898d, 0xeaf0e865, 0x48ad349c, 0x4b542fbb, 0x4627987f, 0xd6d2d844, 0xaee5312 }, { 0x45611dd3, 0xc573860c, 0x526969a6, 0x84ebd6af, 0x6b88a672, 0xec0d3fd8, 0xcd8a69a1, 0x7a464cf } }, { { 0x24e15676, 0xae0c0049, 0x46ce7b4c, 0x9046e0a1, 0x4fd268a8, 0x3c933796, 0xd8e09d05, 0xde9b7991 }, { 0xf38b3f8, 0x6a1cbfc9, 0x8b2be638, 0x6e7b43f, 0x16f9a52c, 0x86a9f24, 0x2ecc7ecc, 0x2646e7ce }, { 0xb24d6c2, 0x15802a20, 0xf447f64d, 0x4a70e7b8, 0x733f415f, 0x55629e43, 0xd983e322, 0xebd48509 } }, { { 0x95cad9c0, 0x17fa1a, 0x3575b394, 0x1bf799a1, 0x6e3169e3, 0xcf08c106, 0x9f45ef8a, 0x364dbc49 }, { 0x8ec5b027, 0x46880730, 0x1d191575, 0x60e67821, 0x68b592cc, 0x18df09fd, 0x93471261, 0x73bd5403 }, { 0x233fb326, 0xbbc5fa21, 0x2269ba17, 0x4bc05d80, 0x4db29d0e, 0xcba67ca5, 0x5f8c5676, 0x5903710d } }, { { 0xe490b822, 0xae249e, 0x9bb51d95, 0xe7f48b0c, 0xb01083cc, 0x8e78f0ed, 0xa17be402, 0x5268b80b }, { 0x2055e733, 0xb6e14f95, 0x23a65bbd, 0xebd0f76b, 0xb514fc14, 0x2c44db46, 0xfd038e05, 0xa3faaaf5 }, { 0xd5da2543, 0x3937be0f, 0x6ae985f4, 0x3252844f, 0x5709e398, 0x6967b9f1, 0xc2c067db, 0x85c08142 } }, { { 0x4a812812, 0x5b759c0b, 0xb0de0aba, 0x9a5faf9e, 0x6212a20f, 0x37e6a4e8, 0x4c87b5a9, 0x2d125b5b }, { 0x902ef5a0, 0xe62fd87a, 0x4861b0a7, 0x32795e60, 0xad1d8251, 0xa295af8a, 0xf098301a, 0xea1ea41f }, { 0x94799a35, 0x7363eafd, 0xca77890b, 0x88463417, 0xc67c2030, 0xcb798979, 0xc7183734, 0xda70065e } }, { { 0xe44899b9, 0x6b2718cc, 0x30b44659, 0x9a391e22, 0x52ccc2f5, 0x7eca7780, 0x62622126, 0xa4aff989 }, { 0x8d9a16fb, 0x5468e33b, 0x6c362414, 0x3148205b, 0xa4ea1d26, 0xf409938f, 0xd817f3ec, 0x316f0aa7 }, { 0x8199d050, 0x3ae8b794, 0x1028a500, 0xcd6cdc54, 0x9a2dd3e0, 0xca73568f, 0x1e40740f, 0xf1e79bed } }, { { 0xb6f9054c, 0x8c797988, 0x9ed6369d, 0xe5a66c36, 0x1fffd60b, 0x1b80458a, 0x133a0a87, 0x8a955d55 }, { 0x60c631ab, 0xa311bc06, 0x333c9327, 0xb3db8711, 0xad1f1744, 0xa4131b74, 0x31106611, 0xf32a7cf5 }, { 0x4e2bb533, 0xeafe24e9, 0x604ae279, 0xd9ab2e39, 0x444657ec, 0xc7b1e750, 0xd9574c53, 0x8cb9bed0 } }, { { 0x4b695dc7, 0xae6c0759, 0x4d04dfc4, 0xb0736b16, 0xd2f5efb7, 0x1013ef4d, 0x301bd01f, 0xca8629fb }, { 0x1ae1bef2, 0xbb9c12ef, 0x2a6681b7, 0x9c70c199, 0x94964b7b, 0x3504381b, 0x64e04833, 0x11ae596d }, { 0xf806f601, 0xc036f860, 0xbd33bf60, 0xfa64f9aa, 0x15d6e8b3, 0xca8c912e, 0x71ecd0a0, 0x1fd414f3 } }, { { 0xfd4be087, 0x8e920b5e, 0xeb5b8497, 0xfc1795f4, 0x314af814, 0x70047b27, 0x1f0e226, 0x127a53c9 }, { 0x4c2607ba, 0x185e4dfe, 0x9a435d45, 0x241bdcf, 0xd194d645, 0xa32d299a, 0xfde0fd86, 0xde3d99b5 }, { 0xcd2ab12f, 0xb2f98bfd, 0xe4d22d13, 0x3428f502, 0x3739e731, 0x95b49726, 0x97938783, 0x21cdc55 } }, { { 0x4fa1ed6, 0x4502657d, 0x351f9a5f, 0x8e67a2c9, 0x2ed814b6, 0x75e5d6e, 0x453ff01d, 0x9e7dd096 }, { 0x797ea4cf, 0xd1794849, 0x8ea1d908, 0xa6ed7ade, 0xef651d67, 0x1fa3ed69, 0xe3562466, 0x3c9d5c70 }, { 0x4533ea2, 0xe15cf4ab, 0xdb3a6fe2, 0x575fd38c, 0xb59b2603, 0xaee2cbcb, 0x46444e40, 0x53cb2cbf } }, { { 0x7fb5324f, 0x79868d03, 0x3c9cfa46, 0x7d57de1c, 0x2dc180a2, 0xa5480804, 0x6b822e32, 0x1ad6d289 }, { 0x47a9edb8, 0xdac3aea2, 0x885e9a0e, 0xa1d14e07, 0xb53de563, 0x929ce90d, 0xa0bb0680, 0x50108454 }, { 0x966ff89f, 0xca4df7b7, 0xb6933b26, 0xf241da22, 0x705cd1fc, 0x745950ab, 0x9c041d80, 0x9ec00cd5 } }, { { 0xd2842e02, 0x81f3716d, 0xc5e0eb00, 0xf2954038, 0x16f274c6, 0x76f165c5, 0xab8659ae, 0xb1ead4d9 }, { 0x50b1ea62, 0xeb3a27, 0x1520b00a, 0x645ef3f8, 0xd07ad7b3, 0xc259a581, 0x75767a1f, 0x278648ac }, { 0x2b5da8f4, 0x5e9cd364, 0x5d69f04c, 0x8cc93633, 0x7e55fc70, 0xbbb1f728, 0x38e9beec, 0x839cf184 } }, { { 0x872cfd55, 0x8fb243f8, 0x45106cef, 0xd83bf4fe, 0x6709f285, 0xc25b317, 0xc37e97ae, 0xdb76f2dc }, { 0xf5e5f002, 0xadddaa33, 0x4de17dd, 0x9e74ae98, 0xd803665c, 0xd4c9459c, 0x571db44, 0xdfe64c4f }, { 0xbb21923a, 0x5ef4d55b, 0x5eda84c3, 0xaa856759, 0xff7e0035, 0x241da068, 0x79b91e5e, 0x650c1fd0 } } }, { { { 0x8ded7c6d, 0xa71a85c9, 0xc4d5677d, 0x6c8f79c, 0x677dbc99, 0x5912d4a, 0x87797f4c, 0x2a9dddf }, { 0x1d78c7f7, 0x6913a5e5, 0x35e3798, 0xe4dbdb21, 0x376a0c02, 0x3b7b3fb1, 0xbec9c48f, 0x9230202e }, { 0x82e365b0, 0x446ca8e3, 0xe1d22b5d, 0x1bce4135, 0x929bf057, 0x3c1fab30, 0x70fd205, 0xfce8dbed } }, { { 0x5295d7f, 0x54c3e0e4, 0xe3ad2e92, 0xa8559f88, 0xd7e37633, 0x8e403730, 0x6adf7eea, 0x3607460a }, { 0xd2bf3ce9, 0xd4bd7342, 0x53ad5e61, 0xb07823ec, 0x3a336528, 0xa785a6a, 0xee9a2cb, 0x76275250 }, { 0xf530e96f, 0xf8be71b7, 0x95965032, 0xad8f8af8, 0xc0dca4dd, 0xbbe048e6, 0xd4b20737, 0x7e0820b4 } }, { { 0x7481f18e, 0x1bbee6bd, 0x64b7853, 0xe4ec91df, 0x4451d508, 0xf577962d, 0x26c50d98, 0x8519c852 }, { 0xed83d800, 0x3924e619, 0xcc38b073, 0xf0ff540f, 0x5edcdbb1, 0x58302fd4, 0x7990657b, 0x990bd1c2 }, { 0x5df2a37, 0xa8cf8dbd, 0xb6d01bd4, 0x5010ac8f, 0xf6bad14, 0xd87da810, 0xed3dba20, 0x70bebcb8 } }, { { 0xb9937314, 0x91dc8683, 0x30b1ba66, 0xc134cbcf, 0x6c937b42, 0x56380ccc, 0x78df9596, 0xa043c1bb }, { 0xf2808fd7, 0xd1e144ba, 0xbacca33f, 0x5d7854b1, 0xffb1469d, 0xdb0314c, 0x947c764f, 0xe399d67d }, { 0x88d9e3e4, 0x52917981, 0x6c2d69de, 0xa776f26c, 0xc482f99c, 0x84b50e78, 0x69842960, 0x40a6264e } }, { { 0x85b11cbc, 0x8add12ad, 0xea8da362, 0xf6c0987a, 0xf9a2be84, 0x6781f582, 0x98175d9b, 0x1579c21e }, { 0xf63f6679, 0xc69d5847, 0xce5d1a46, 0xe366ce2c, 0xac62fac3, 0xc066aaee, 0x8531a627, 0x3ae41420 }, { 0x40ef8ab3, 0xe375d992, 0x6e43fee5, 0x449b98e, 0x9fa4f08f, 0x5533b32e, 0xe7ebbe2b, 0xe257e977 } }, { { 0xced26967, 0x3bbc407c, 0x42f301c4, 0x2b76cc7e, 0xe021b91a, 0x9a415d5c, 0xf9093087, 0x5f29c4b6 }, { 0x99bc27c8, 0x8b6fb309, 0x49596533, 0xbc0c1a72, 0x90ea44eb, 0xd5694bc2, 0xefab48c, 0x5d69b62f }, { 0x4ecee259, 0xfeb4ca6e, 0xceca32fc, 0x234a65fe, 0xe5ebd3de, 0x656fa59a, 0x1f8d1487, 0x257f5b13 } }, { { 0xb406a2ea, 0xc1cf7a91, 0xbdf2bac1, 0x6158f6e7, 0x7280918d, 0xf4d50663, 0x78928c2b, 0x2553bc9 }, { 0x586ebfb8, 0x3543be65, 0xfae24c88, 0x811cdcff, 0x897da5bb, 0xfd46a9d5, 0xe5bebfe1, 0x598c1311 }, { 0xba960b9b, 0x4a94f5a6, 0xbb646730, 0x357c0e01, 0x9922037a, 0x306a0ff9, 0x47ed1bb6, 0x5b51386c } }, { { 0x7256cbb1, 0xe65a68a8, 0xe740a819, 0xb5e617d, 0x603b9962, 0x6e13e3aa, 0x90daf0a, 0xf918f737 }, { 0x2e0368e2, 0x717bba8f, 0x78b6bbbd, 0xe56b42e6, 0xd6a0e8c6, 0xe5f8da7b, 0x9727dc5d, 0x93652956 }, { 0x8a2255d, 0xd2e6309c, 0xb035ac92, 0xd92fbbf3, 0xe5bf5324, 0xc93458a2, 0x56e27493, 0xf577df0e } }, { { 0x2779ba7c, 0xde28d6b3, 0xb820ee14, 0xbeeb7125, 0xc8c6e3b9, 0xadf7310d, 0x3f450255, 0xc9b2ea86 }, { 0xbc4452af, 0x47aaa51d, 0x739ce4f5, 0x31e43f0b, 0x9cc32fd7, 0xac522eba, 0xaf80601d, 0xf6200818 }, { 0xdf7f954, 0x923a92e1, 0x9446b21c, 0x54630d56, 0x3863c38f, 0x1ee6ca98, 0x124b7458, 0x49aa2b5e } }, { { 0x922799e6, 0x921aed67, 0xf660ff73, 0x61e15de6, 0xda72fcf4, 0x5d7f50fd, 0x6b8a1a53, 0x2ec5287f }, { 0x273dd4cb, 0x89a85ebd, 0xb5faee54, 0xf9fc4fca, 0x5acde340, 0x8ab64d6f, 0x119d858e, 0x23f87a81 }, { 0xcd6ebe22, 0x3ade6abb, 0x45a81bc5, 0xff98d223, 0x77e9d54d, 0xe71a7f04, 0x9d793a80, 0xf72c9b47 } }, { { 0xeec70561, 0x88ba972b, 0x7cda09b9, 0xaa483841, 0xdf6f50d1, 0x7733714f, 0x8d93b69f, 0x6065783d }, { 0xa422ac81, 0x71486e08, 0x5bbc90c9, 0x2cff3ae6, 0xb9ae1df4, 0x378f0f46, 0x3bb7f7d3, 0xc144e25 }, { 0x81ee4e23, 0xdc15deb6, 0x5fbc9dbb, 0xdd273449, 0xf550227, 0xb09cbdbd, 0xaa8b37c8, 0x5b125fc1 } }, { { 0x3cf4eb98, 0x9b3b36aa, 0xd02d28ad, 0x6da8105f, 0xcc36539, 0xa9e4730e, 0x30fe6a43, 0x18f8697a }, { 0xfcb90ee0, 0xef870cdc, 0x8df39cf8, 0xe18e64e3, 0xc8e728f8, 0xb84ea524, 0xd7f8fd7c, 0x97a51e4c }, { 0x6fe8ed3d, 0x6c8cc23b, 0xfda9ea48, 0x4a8cd77e, 0x25315d5c, 0xa15eae4b, 0x31635a4c, 0x4171c51d } }, { { 0x5b1ad59a, 0xfd8a6806, 0x8302b2dd, 0xb777d4b8, 0x2a9d6085, 0x4708c169, 0x6c4c1a85, 0x63bebb14 }, { 0x90171c1b, 0xb9d69cc9, 0x5d32877e, 0xa3a35ed0, 0x953daae9, 0xf51f3a97, 0x443218d4, 0x7cb2d5d2 }, { 0xdabb659b, 0x53a9e080, 0x6bd44990, 0x507ad92f, 0x894fd112, 0xfd35db3e, 0x80c4d57e, 0xeb31dc1f } }, { { 0x2a986941, 0xdfe7e91, 0x7fa28a7, 0xf164d3d3, 0xb9355515, 0x28f556c1, 0xf763db49, 0x7dd3b7a2 }, { 0xb3a9b86, 0xf7b1c03, 0xe8e08f0b, 0x898bbb6, 0x8c29faeb, 0xd772706, 0x2581b445, 0x7a5d9c4 }, { 0xcebdc90c, 0x1566bd54, 0xcb6a6653, 0xc5df5cff, 0xcd4c951b, 0x4766b287, 0x8dd12630, 0x670debd1 } }, { { 0xcd9c4ffb, 0x13015579, 0xf8b769e4, 0x7c2a7441, 0xf1bf290d, 0xe7360443, 0x42c234d0, 0xf6a1115a }, { 0x346519f1, 0x03ced9, 0x5c9cc300, 0xa1a0bdd1, 0x41b09be, 0xdb31ac68, 0xb5be1f74, 0xe2040220 }, { 0xc68c2503, 0x910f3ea2, 0x84a7626f, 0xf7061ed1, 0x98c6f9db, 0x22bd34f3, 0x79637530, 0x81047448 } } }, { { { 0x7c2e01b8, 0x4a857aa9, 0xd9031e77, 0x9b3c237f, 0x40ccd239, 0x36795a, 0x73501051, 0x36c5b49f }, { 0x85382285, 0xa59331df, 0x68aca203, 0xb993e8bd, 0xf7767e09, 0xbee442d4, 0x287f840e, 0xb9977009 }, { 0x939592e, 0xc445699d, 0xab6dc85, 0xa5e5d508, 0x3597b3d3, 0x38c60708, 0x8d5b83f6, 0x86ba7f86 } }, { { 0xd109de78, 0xb2ab9870, 0xe07bb812, 0xc1ad8607, 0x5c5d3698, 0x9094a7dd, 0x8a5b3b2e, 0xd615dbc4 }, { 0x9ab5e0d7, 0x28bf11b5, 0xd472c585, 0x15dc85bb, 0x97c2c2ff, 0x711f9b86, 0x6efbdaea, 0xe6d092c8 }, { 0x100f17b3, 0x25cbf399, 0x82531f2b, 0x5edf25d5, 0xdf660065, 0x6598460a, 0xa3265160, 0xf84c24c2 } }, { { 0xb7d50172, 0xc8933ac4, 0xcb4e4196, 0x3a0980a1, 0x7dc7e76d, 0xd05845a0, 0xd87d54e0, 0x27efba0a }, { 0x4dd17f9d, 0x5625a23e, 0xae7a3979, 0x302f8a1b, 0x97732b87, 0xaa19aca1, 0xba277d67, 0x3737a79d }, { 0xbd952ec1, 0x7c100bda, 0x802f6c69, 0x620b88ba, 0x3aa7262c, 0xae2d49e5, 0x82bb95c5, 0xb48bb742 } }, { { 0xe7e0835b, 0x77a3b34d, 0xf5e46dbc, 0x254cd481, 0xf45a70a0, 0x5bf4e08f, 0xeb390986, 0x4ea830d3 }, { 0xe33320da, 0x51a89086, 0xf9636270, 0x753f0ff5, 0x7a76c929, 0xae0abdeb, 0xc86edb7e, 0xdb7cc7c1 }, { 0x853467c5, 0x8a15d97f, 0x8753a5ad, 0x657c8cce, 0x3c83c99f, 0xc3a42f37, 0xcd012bf9, 0xbc130c96 } }, { { 0xa4e9587e, 0xff2130e6, 0xf9cca722, 0x6628e29c, 0x5b13a2d8, 0x268fceaa, 0x7b976bc3, 0x90af22c8 }, { 0xde750c60, 0xd52acaf9, 0x44701edc, 0x499eb1d1, 0xcf6dfda5, 0x48f2eb0d, 0x9dc5b906, 0xb0f3b2e1 }, { 0xd62f183c, 0x5abc3d64, 0x55e6a390, 0x52d80b06, 0x3b312779, 0xa76ee2d7, 0xd97b3eb3, 0x99a8eff3 } }, { { 0xf1e6833b, 0xa94b96a5, 0x860f890d, 0x537d69b6, 0xa184f9ad, 0x73cf557b, 0x1dc5ade2, 0x8b3c1a2d }, { 0xec86165f, 0xc78ff4be, 0xb0606118, 0xd281d45, 0x38d639d4, 0x121993a7, 0x52fc43f4, 0xdbb7b05e }, { 0xc9307de0, 0xce06eede, 0xb44f8e7c, 0x77c0f71e, 0x3cd739ee, 0x338c3af2, 0xe5b8659a, 0x99decfc } }, { { 0x6291e1df, 0x78bb8226, 0x43d8951c, 0xbea0599e, 0xb7aee512, 0xc0255d23, 0x246dd5a4, 0xf03356cf }, { 0x642c7e1d, 0xb5c6841f, 0x3bd210d, 0x5256979c, 0x7ef2ac8b, 0xd4373f46, 0xb2a1841e, 0x9420c45d }, { 0x66fba031, 0x6fc028d4, 0x1f5a0185, 0xf021e20f, 0x742bc30f, 0x9f0f2d8, 0x1096afd5, 0x7216d071 } }, { { 0xdcc19391, 0x6d238d2f, 0x5800519a, 0x55f743ab, 0x809b1893, 0xe650f75f, 0xb5fab2df, 0xf43d2254 }, { 0x30ac317c, 0x794b9e76, 0x5532cc1, 0xfb45d3f9, 0xae2025fb, 0xbc9ec144, 0x13a4f0ab, 0xadc7f93f }, { 0x7c7505a6, 0x7e17dd16, 0x60d358, 0x31ce704d, 0x25cfaef8, 0xcc86b8d2, 0x96a8eb50, 0xbec90531 } }, { { 0x63a3392a, 0x5efcd44a, 0x7ebe4cf6, 0x65019c22, 0x7366c9e8, 0x60820cc0, 0x2289bf48, 0x7e2af534 }, { 0xef3caedb, 0xa7d4d2ba, 0x1f615029, 0x552e6a9, 0x20aa1c2e, 0x32d5a4d0, 0xea4ff926, 0x3135ee5e }, { 0xe9b9a7f2, 0xaffdf0de, 0xb998a0d8, 0xd746c5ff, 0x757fe959, 0x58e697c5, 0x5908498b, 0xf3ecdefe } }, { { 0x3d92dc19, 0x5ad56403, 0xe23e81d5, 0xe437fdc7, 0xa8b01a38, 0x8479bc28, 0x9b1b6be, 0xfe183f61 }, { 0x3b7e0a5, 0xd60860, 0x46d7aaa3, 0x78571270, 0xcaea5da7, 0x4f31a946, 0x9924887b, 0x1e1084ff }, { 0xb9d2e797, 0x13662a3f, 0xccda6dc, 0x1ec07f87, 0x4f743e60, 0x429c8bce, 0x4384bbbc, 0xb602b584 } }, { { 0x17813ebf, 0x5b85795b, 0x182ca879, 0xe8a60183, 0xcb64b8fe, 0xc4d573f2, 0x958f3f32, 0x7a5e73fa }, { 0x76a09ded, 0x55c186a3, 0xdf3f7130, 0xb1ec5eee, 0x1aeba464, 0x1b77d560, 0xfbfea034, 0x97ab0fe7 }, { 0x8903d401, 0xc3abfda5, 0xbe915fea, 0xbc2bba6e, 0x9b93f1d0, 0xbac7bf07, 0x91fd7fe1, 0x47efa9a2 } }, { { 0x3787e35c, 0xab2d3b9b, 0xd498ccaf, 0x8f1a3903, 0xa59307da, 0x3a28e30d, 0x19ad904a, 0xaccd1636 }, { 0xa25a4c3f, 0x8578e6c8, 0xa1576bff, 0xeefe90c2, 0xc6c08760, 0xd7204a35, 0xf5ed88fc, 0x94507bf1 }, { 0xbc1a5886, 0x4cac06b9, 0x43833010, 0xe77697f5, 0x343b6113, 0x1a49f9e0, 0x3e083914, 0xd2fe4508 } }, { { 0xf6f7745, 0xfe865dd2, 0xb9de0bef, 0x3f956471, 0x8179e027, 0x42e1734e, 0xb5edd2c0, 0xb1963007 }, { 0x96ed04d5, 0xdbe485b2, 0xcc6ec719, 0xf6094b48, 0x782ade7b, 0xc3e319a9, 0xdfdd2691, 0x28a10f8a }, { 0x789d1de2, 0xd2e4daf3, 0xcb396a72, 0xedd708d9, 0x8ba4412c, 0xaeee446e, 0x428e59df, 0x6cbdb2cf } }, { { 0x2141474, 0x485c3254, 0x31b6a80, 0x8a1c94ee, 0xd851a1dd, 0xbaa6f475, 0xf05accd2, 0xa64a1d48 }, { 0x83217d13, 0x1ec000, 0x9ea9063e, 0x965e7668, 0x4968c786, 0xd022960c, 0xa61b4e3, 0x91f72ae9 }, { 0x36fd5ea4, 0xf086cd2c, 0x322ec658, 0xabca36d8, 0xaaec8b24, 0xe4fc521c, 0x9e1cad91, 0x3c16db5b } }, { { 0x29bbaded, 0x84ecd230, 0xb42bb1b8, 0x22e6cca6, 0x96c830a2, 0x22c0d372, 0x91f3e0bc, 0xfa061707 }, { 0x66226602, 0xb3c7f043, 0xff3337ce, 0x881ba584, 0x737c45a, 0xba2ebd63, 0x6a0fc8f5, 0x3b356133 }, { 0x5d3a8c87, 0x5717a90c, 0xf80f72ba, 0xe05f16a8, 0x361ee309, 0x7c7c9977, 0xce3b992b, 0xcc87a05e } } }, { { { 0xce9611a3, 0x52708701, 0x4ef149bd, 0xf0759302, 0xeb2a6e23, 0x7a857fa3, 0x8c1388bb, 0xb8117d36 }, { 0xd8deeee2, 0x6308d1c, 0x55a60733, 0x9bd836e9, 0x47aec6bf, 0x7e0b9cb7, 0x64c41bbb, 0xf73fca6c }, { 0x3c2bb040, 0x4308121a, 0xa13c1e4e, 0xa03e6274, 0x46d4668c, 0x85ea7bf6, 0x5a8ee771, 0x23928375 } }, { { 0xcaaa966d, 0xacb6bf95, 0xdd641202, 0x17624653, 0x94dfcd6f, 0xc2272e59, 0x7533cb5, 0x254555c0 }, { 0x780b2275, 0x2716cbd3, 0xcadb61fb, 0xe6ee8578, 0xd6efe33d, 0x4b87f98b, 0xa1a0c7fd, 0x1c06d6b0 }, { 0x276b7578, 0x8b760f1e, 0x165f21ad, 0x5aabf590, 0x4b9866a6, 0xcb6da29b, 0x7dfeffd2, 0x9a27840c } }, { { 0x1e9d7bf4, 0x84c428ec, 0x81b44f28, 0x100543e, 0x2dffb60e, 0x4c01315f, 0x33eef594, 0x295555a7 }, { 0xb09c6ec, 0x423636cd, 0x9398a1ae, 0xbe4ab225, 0x5294c875, 0x77e4100a, 0x2e7e920d, 0xf0eefe15 }, { 0x99a43167, 0x37913b58, 0x944e0b5f, 0xa5b42499, 0xd12272f8, 0xd44e4b87, 0xba2fadd1, 0x4bc2f020 } }, { { 0x1787ff8b, 0x57d2fc33, 0xdff69590, 0x34cc5c95, 0xf06f4c0f, 0xa832ae56, 0x1dc71cf4, 0xbe913132 }, { 0xe09f3f31, 0x17f61b0d, 0x55caf86d, 0x1f45efd7, 0x0cb241, 0x35705d5d, 0x6c76f5bd, 0xa2304523 }, { 0x4bba98c, 0x9928b30, 0x42034547, 0x4b4def33, 0xba52add2, 0x38c0e62f, 0x714ce671, 0x171f9a29 } }, { { 0xa09e2e67, 0x740f9ad7, 0xf8cefc08, 0x812e1bb0, 0x7bf8ba00, 0xd24ea17c, 0x5d71493d, 0x4dd29a1a }, { 0xbda40796, 0xedcc0596, 0xac21b8a7, 0x65f5450a, 0x87683583, 0xf9d1426f, 0x8b42d9ec, 0x5ddf2c46 }, { 0x29036eaf, 0xa6844520, 0x82685c4e, 0xf1c7be5a, 0xb1523d1a, 0x57c96e55, 0xeed26f3b, 0xdf273035 } }, { { 0xaaff75c9, 0xbf7b097c, 0x4007a217, 0x4971eadc, 0x695ad6b3, 0x690c3aae, 0x7abe600d, 0xeb67cabe }, { 0x2b1e8d1c, 0xb64f2d18, 0x356a1b03, 0xbf59e94c, 0x417bac3, 0x8337b900, 0x2e90a87f, 0xe1281e48 }, { 0xd3c6a765, 0xe094c73e, 0xd4d75132, 0x79294133, 0x8512a982, 0xce5434e4, 0x86407fc0, 0xd881f414 } }, { { 0xa9b3239e, 0x2af0171f, 0xe6e5067c, 0x7137ca47, 0xbeb56304, 0xa8f7bee2, 0xafca2a38, 0xea57537c }, { 0x8563bbb7, 0x8c2e4b97, 0x1ccb4108, 0x3326555f, 0x22d32873, 0xbd5fc0b4, 0x619c8d10, 0x595253ee }, { 0xff2d4449, 0x2329bf8f, 0x26a0a0da, 0xda7de4da, 0x858c7d32, 0x7dce5330, 0xe78b9abf, 0x89bc0eb7 } }, { { 0xff7d97a3, 0xff451643, 0x4ddf28e4, 0xf34987e1, 0x2b1c54b0, 0x1bd835cb, 0x8251fa33, 0xc453ed2d }, { 0xbce1e95a, 0x99d0f966, 0x79922821, 0xb711d6a, 0x2d7a5fae, 0xcac15c19, 0x8a137666, 0xaf068019 }, { 0x43d0c166, 0xace25959, 0x2a0d74aa, 0x49f9d962, 0xe02cbcd3, 0x36f7a219, 0xd4650bb9, 0x32b971bd } }, { { 0x3ee83abc, 0xa057677e, 0x7c6ef279, 0x8f8e87f3, 0x31900b77, 0x99d2c496, 0xa9014cfc, 0xc41cabbd }, { 0xc47531fa, 0x52d8725, 0x99450c00, 0xcf94bdab, 0x6aeceba6, 0x208b48f, 0xf5328823, 0x3ae6c607 }, { 0xac3ffdd1, 0x836a34e, 0x393f19f1, 0x858a2d65, 0xf9d36f6e, 0xc8e4cd79, 0x5d908b0b, 0x367e3f40 } }, { { 0xb571134f, 0xf62590c3, 0xde8f4b10, 0x72264dfe, 0x748eff52, 0xb6377ef2, 0x905ec0c2, 0xa600905a }, { 0xc30acb0e, 0x52a5bb41, 0xef19aa5c, 0xf68a08d5, 0xb35c408f, 0x8b1f8e51, 0x6bafb6ce, 0x7212c889 }, { 0x1f26d638, 0x752fabce, 0x636d857e, 0xd4d0ccd2, 0xb09fb9d8, 0xdad4a6ec, 0x3b626f00, 0xb2a736ad } }, { { 0xd820f6f2, 0xd25efe4f, 0xae74ebf9, 0xd5804f0e, 0xfddba9d5, 0x76a89010, 0x9f888f8, 0xeb3c06eb }, { 0x4b5dcf17, 0xde5ca570, 0x384a40fe, 0xf6c40e98, 0xfa252599, 0xf91c754c, 0x81793c35, 0x337ad17 }, { 0x63fc67cb, 0x1ce8574a, 0xfdccf968, 0xe79045f0, 0x74147b0b, 0xa39b47b0, 0xeb75427, 0xaa4bcee1 } }, { { 0xfd462c4c, 0x8f2771b6, 0x8e6fd9dd, 0x2e9ecb47, 0x6ac265d4, 0x55968795, 0xdbb9537b, 0xcdce0f01 }, { 0xfacb9a32, 0xa73fe74a, 0x4e7b917f, 0x5072e50, 0x9b3b09e9, 0xb62f7a82, 0x1d352646, 0xad68948f }, { 0xa324c4a6, 0x1087315f, 0x10e11eb1, 0xac4944b9, 0xf7a4cdf3, 0x4e73d598, 0x724c724e, 0x58a2dcaa } }, { { 0x60dc6e4b, 0x28aba7bd, 0xbb01a6b4, 0x403f22aa, 0xcf524d47, 0xd037a24, 0x6e7bbc5b, 0x79f4f674 }, { 0x10bf2d16, 0x3a01ed6b, 0x9cc04a91, 0x4092dd66, 0xf3f33657, 0x85def355, 0x42839f4e, 0xd27cea8d }, { 0x5354ac7b, 0xece7f607, 0x11b2a8ac, 0xcc1180cb, 0x782451be, 0x63b95b86, 0x490f00c6, 0x6a3af97c } }, { { 0xda22eec9, 0x6a8f9b31, 0x544f7758, 0x66e6f3c3, 0xe27301a6, 0xd51a0ae6, 0x670c09ff, 0xbfec8c21 }, { 0xdb5fc9e7, 0x8af6eac8, 0x115e1979, 0x67a8e399, 0x24d290ab, 0xb4923d7a, 0xb87886fa, 0xc3c276cc }, { 0x64f3dad8, 0xb6d2a694, 0x63bfa77b, 0xd271945a, 0x2548e064, 0x766dad51, 0xdb53163a, 0xee68c3d4 } }, { { 0x9537bd11, 0xe69a7d41, 0xc04f52cb, 0xb98f4692, 0x5fd5f504, 0x274f1c64, 0xb6ea8aed, 0xa7e714e2 }, { 0x1b6be1af, 0x2019eb06, 0xdb4085ce, 0x6c099cac, 0x30f8ec70, 0x8e9ff6a9, 0xe4fa43b2, 0xc612821a }, { 0x275ef20, 0xc2a6cdf4, 0xaf4d647e, 0x8c720ad8, 0x26875904, 0x2646b3f4, 0xedffb251, 0xdd7f1701 } } }, { { { 0xc9aa12ee, 0x5b35ec98, 0x593f547f, 0xbbc91475, 0x206b2b88, 0xee500399, 0xe76465aa, 0x8610218d }, { 0xbb53b122, 0x7f0db1cc, 0xde8ddbad, 0xbb1ca4a5, 0x68e7a26a, 0xe98514ba, 0x2cddd75d, 0x8798fdf5 }, { 0x79621b50, 0x617c6bc1, 0x195d9a0e, 0xe8bd4fd0, 0xad47ca13, 0xf7c0219b, 0xb2b4dd99, 0x2f129cdf } }, { { 0x5085889a, 0x3b874735, 0x82a6cb22, 0x34e23217, 0x8d0771d2, 0x5bce3f61, 0x8b271237, 0xc259d730 }, { 0x5585b893, 0xdaa54388, 0x9ff3a0a8, 0x3d0f06d5, 0xdc4870c7, 0x415497ef, 0xa924f26c, 0xe2f4f8a9 }, { 0xeaf11554, 0xceb24f58, 0xa5c5f99e, 0x7d60d4b0, 0xd748a081, 0x614553a6, 0x3b3b0866, 0x11022baa } }, { { 0x6af20b77, 0x4db3c386, 0x7e5fb097, 0x93a6b733, 0xe5d9a329, 0x1a5f8801, 0x9d1008de, 0x733abb8b }, { 0x848f6627, 0xe46ce91d, 0x64b07ac1, 0x58b10755, 0xddd47755, 0xe11acf97, 0x5d172d72, 0xab71317a }, { 0xe573c739, 0xa06f2515, 0x5af12f59, 0x99ff0302, 0x21dc2619, 0x6511ae83, 0xed37358, 0xbfc6d3de } }, { { 0xbda8f4ae, 0x518da7c9, 0xb52d4b2c, 0x45f4e6c3, 0x6e4ca705, 0x379b3776, 0x27394543, 0xffa30fc8 }, { 0x83fadc5f, 0xd0e857b9, 0x1a42ec52, 0x298afce4, 0x926665b, 0x9a2c558d, 0x8f8ba769, 0xdabc37bf }, { 0xedc44e8e, 0x8793a52e, 0xb59b023a, 0x705a0d05, 0x31162913, 0x2a2bd1f6, 0x6a5ca12b, 0x3594afad } }, { { 0xb441f7d, 0xfb147dc9, 0x833eeb7f, 0xe1416956, 0x4d367f06, 0xc71038d0, 0x5df3f133, 0x5bb3c44a }, { 0x11e14fbf, 0x8b433347, 0xf5c27245, 0xb5b6c72, 0x72babdda, 0x9a7649f6, 0x428e73cb, 0x4f9b187a }, { 0x6d3251df, 0x229c5d9c, 0x9dc4f956, 0x2ce994c0, 0x6e6f7372, 0xd976eaf6, 0xb40ccf0a, 0x3b4930a6 } }, { { 0x4959b293, 0x1e6b4344, 0x719545b6, 0x259c7c27, 0xc43335df, 0xc1d5822f, 0x3053ed5d, 0x78ddbdf5 }, { 0x8b10c2b9, 0x8ae2ab22, 0x79877817, 0x6c202e60, 0xd0cd8383, 0x9d4ac74f, 0x1f8f04db, 0x34706fc1 }, { 0xa312da7a, 0x7a72a3e1, 0xb3d26367, 0x3de52dd0, 0xe7d89eed, 0x502f05d9, 0x6a955c37, 0x3356ea87 } }, { { 0x2ab55fe6, 0x1b697aa9, 0x1c5a1bf5, 0x1cd43910, 0x40d2b4e1, 0xcd8867c3, 0x867f3597, 0xba239358 }, { 0x163485f8, 0xc98f26cc, 0x89fdba8b, 0x34334991, 0xdb69ff39, 0x158558fb, 0x50c7d133, 0xd793ad2d }, { 0xa3ae2653, 0xfbdf03fb, 0xa844d2c0, 0xa638def6, 0x1b8403ed, 0xce7e9f67, 0x79b2a685, 0x82014a77 } }, { { 0xe3a77d41, 0x1a2af3c1, 0xbca048e, 0x29d7b8e4, 0x8f8e6f72, 0x6fccb12c, 0x9b261651, 0x97536a7f }, { 0x5e514441, 0x7caac273, 0xdd68c5d6, 0x214d0684, 0x60d171dd, 0xff438e98, 0x17667342, 0x6f7de8fa }, { 0x2b05b115, 0x75dfeec0, 0x933e7223, 0xc6af90a4, 0xa37b9588, 0x44ebf01d, 0xd3dde337, 0xed8730c6 } }, { { 0x86ddb8ae, 0xe19af23e, 0xa76bcc0c, 0x29ec9cc7, 0xae27fabb, 0x4b988c64, 0xb501b06e, 0x9e283b0 }, { 0x4b5d4471, 0x95be6ad5, 0x198781d, 0xc497b2d1, 0x37029745, 0xf1a39689, 0xd9ce2eee, 0x5f1b28e2 }, { 0x41bd7118, 0x7943937b, 0x816c1f27, 0xc6a9bdbe, 0x512c99d6, 0x15ee6f5b, 0x3126c891, 0x607e6b7e } }, { { 0x77854349, 0xe9f8c2ff, 0xdbe71a94, 0x22625722, 0x51e298df, 0xa723201f, 0x14504373, 0xb109636e }, { 0xd0726ca7, 0xf56ba866, 0xfa06a6c8, 0xb03fd0ec, 0x614922fa, 0x539562dc, 0xe9b4de31, 0xdf2b81b2 }, { 0x7570fa69, 0x9536717e, 0x3fe228f8, 0xc3794851, 0x40e12d95, 0x7a8dc07a, 0x28bde58c, 0x752696a5 } }, { { 0xf28746c4, 0x5d4ef007, 0xe4dc34ab, 0xf65cf2cc, 0xe1a16fd, 0x94acd4e5, 0x47b8cb2f, 0x7a1f7de6 }, { 0xfded63a1, 0xfa8d5cc8, 0x9bcc434c, 0x531b19e7, 0x1ffe6ee8, 0x3ed1d5db, 0xa7ac9b0e, 0x5fd544ff }, { 0xf53410ee, 0xa8761fb5, 0xccc62769, 0x519ae19b, 0xa3ccd2d, 0xb5bf154, 0xda84fe35, 0x21f1a6a6 } }, { { 0x300fd542, 0x8f3df1e0, 0x14aa959f, 0xbdf06935, 0x53ddae5d, 0x8ed65aa7, 0x8667e7e0, 0x1df6f603 }, { 0x991f1440, 0x59952117, 0x40d1624, 0x36afe618, 0xaa7476d2, 0xcb3313a, 0xb19cdcc1, 0xdcaa21fb }, { 0x39c5d17b, 0x1245dd43, 0x2d14ad02, 0x73d4a23a, 0x1eb2d6f9, 0x8606d36a, 0xc92615a9, 0xabe5b0cf } }, { { 0x8a1921c2, 0x40fee5ec, 0x9bbb8d1b, 0x6aae03b6, 0xeee06115, 0x75c9483, 0x464afd48, 0x5b5c406b }, { 0xa093387e, 0xb765c38c, 0x6d35ead2, 0x772e21c8, 0x2cb73207, 0x5023de0d, 0x7ee3bf09, 0x73abba14 }, { 0x6a36c103, 0x218a6f76, 0xe9d93678, 0x5cde047b, 0x796bae9c, 0xcd86a5fc, 0x1d58aae, 0xb9969c2c } }, { { 0xfceb6123, 0x11dfc815, 0xb4b024a, 0x146d5160, 0x2cd0b222, 0x494d779, 0x6d9174e0, 0xe114dbd8 }, { 0xe3a6060b, 0x5e64a138, 0x631ad7d7, 0x8afe9b2, 0x2cbcaa8, 0x781e8bf, 0x59e3294a, 0xcf18531c }, { 0xb455135a, 0xae871c48, 0x564befb3, 0x749cfb4d, 0xaa60c689, 0xe2ea5ac8, 0xb98f239b, 0x5a287604 } }, { { 0xe8c0fa84, 0x4ef3455c, 0xa9f42b81, 0x15b98bd5, 0xd22a27a5, 0x55b8956, 0xef9c50f2, 0xe8b6262a }, { 0xf2f6ffdc, 0x2b781cd2, 0xaa00e902, 0x26b67f30, 0xa70e87cc, 0x7a2f86dc, 0x64ccfda9, 0x59618212 }, { 0x9f4e4d5f, 0xa2f71cc2, 0x1cfdfa7a, 0xc6b26f6b, 0xadb94c68, 0x96c2eeb8, 0x3bd2642b, 0x957b8976 } } }, { { { 0x46fac7ab, 0xf188dc52, 0x3fde4c35, 0x647c374b, 0x78f361b9, 0xc88c3918, 0xafeb7f37, 0x4662568f }, { 0x538c7cc9, 0xd5d7441b, 0x90975417, 0x55d70af2, 0x8077adf3, 0xce01427f, 0x68866eb0, 0xe6db56df }, { 0x7aab4267, 0x7f023219, 0xc2f628ea, 0xa993df11, 0xf942462, 0x130472a7, 0x90bab9f2, 0x57c902cb } }, { { 0xe043e939, 0x9dbc72bf, 0x47487882, 0xd830a30f, 0xe3f31d1b, 0x3c1eb44e, 0x4b8e8561, 0xa9ed3249 }, { 0x69af5b58, 0x4e15ef35, 0x4481c22e, 0x851ef6d0, 0x8f486e69, 0x37424795, 0x51a6a4b7, 0xf7573eff }, { 0x568085ef, 0x67b421f6, 0x8c2be9ac, 0xb6d91d1f, 0x7b2784f, 0xd1467643, 0x2fb6b729, 0x4f583fe1 } }, { { 0xb0e98dcd, 0x9ef2811b, 0xcda639c3, 0x9a0b14c4, 0x7e4f3953, 0x4db45bd2, 0x2a850138, 0x62e4edf8 }, { 0xcbeb2a21, 0xedd6c42d, 0xb7485cbe, 0x832082dc, 0xccaf3366, 0x35a90c51, 0xa943bea, 0xd2377cf }, { 0x626e86ed, 0x2afd4e44, 0xc2a85ef7, 0x43f3eefe, 0xc654ee7e, 0xb13db53b, 0x20cacd3, 0x4a26b587 } }, { { 0xd0100188, 0x54ddd4a0, 0x11262970, 0xc0066ae, 0xc764800f, 0xc70da714, 0x16ca5fa8, 0x3f91302b }, { 0x8f6a1ae7, 0x8da322a2, 0xe3825403, 0xa8ee9b6f, 0xa82d3c81, 0xdfcfff7b, 0x45c9703d, 0x41fbe110 }, { 0xdf202f1c, 0xdf75f9ef, 0x4fc81994, 0x2d0411dc, 0xf41ed1ef, 0xb61c4ef, 0xc2ca28d7, 0x5f91ddc5 } }, { { 0xe8b7a9ae, 0x79883f9e, 0x921f71ac, 0x9793a362, 0x42c3c2d, 0x89cf7379, 0xf39486ac, 0x1f36a0d8 }, { 0x69c6aae0, 0x5bff4ad3, 0xd0fc1b5e, 0xcec60392, 0x4b5900ca, 0x65c14865, 0xadee5fc7, 0x1c2c8755 }, { 0xf08dea6b, 0x6419ac0b, 0xcd8ef753, 0xdd6ad9af, 0xd3730251, 0xc02e6a5e, 0x5da85210, 0xbaec1663 } }, { { 0x4341c87c, 0xc02768b5, 0x5c165d1a, 0xfbb7cd9, 0xaa19a046, 0x8c7a2c3b, 0x793ece43, 0xb67cf05c }, { 0x2ac269f0, 0x4d36c839, 0x5f6d69a7, 0x3cca8211, 0xa532ec7a, 0x9c1be9cf, 0xab5ef31, 0x51bbe8fc }, { 0x63c0595a, 0x6fc7ff04, 0xae5df9ed, 0x114ff07e, 0x2f24fb56, 0x69d16fed, 0xb6dd372f, 0xbfcbf0b6 } }, { { 0x2401e2df, 0x523dee1f, 0xb7465e6, 0x48d24a73, 0xe9a21de1, 0xf3e6bc06, 0x9ccb59cf, 0x6cb8b5d7 }, { 0x9f6f87ae, 0xc1bcef1a, 0xd8289560, 0xfedbd0ce, 0x54095251, 0xccb9d3ef, 0xf516e9db, 0xd7a612c1 }, { 0xe0df6e5d, 0x3176fede, 0x7ad927e8, 0xe2e659fb, 0x2a05d8d9, 0xc8140288, 0x58b970f0, 0x5123f3a4 } }, { { 0x8450dc5f, 0xef7be669, 0xf7b8cdf, 0xb98d9cbf, 0x8dc69f48, 0xda656f81, 0x22866d8d, 0x68569843 }, { 0xb7c48fb9, 0x858ce95b, 0x74a9d333, 0x50858b81, 0xa25bc6d3, 0xc907bc27, 0xb48413ea, 0x31158cd3 }, { 0x8e1f9138, 0x92d9c66d, 0xe817809f, 0x5175ab3d, 0x7496c86e, 0xbfe5da44, 0xc7c3049b, 0x5f50864d } }, { { 0xe37b5168, 0xc3b28fe9, 0xac6e7e2e, 0xcbf93338, 0xc09940e2, 0x707986eb, 0x6d31f1f5, 0xa0b8f8c9 }, { 0x8b68477d, 0xf506aaa1, 0xc4736a0c, 0xf4385688, 0xcf8d2ee8, 0x9b89b7ce, 0x7458475b, 0xb70feb8c }, { 0x941e3a42, 0x1d3b1596, 0x104fad49, 0x907a833f, 0x17a09fc6, 0xdcc97f98, 0x86a16dc5, 0x321c6db } }, { { 0xef2c6533, 0xe5f18c84, 0x38135545, 0x2b98269f, 0xe792ad0f, 0x4b9f442c, 0x7f0acef, 0x9ba9f00a }, { 0x79897961, 0x60b9f960, 0x44e5a4c9, 0xe9b9d1fc, 0x31618ada, 0x706e793e, 0x3d465b9, 0xb4ed6fa7 }, { 0x7cc7390d, 0x5979c79c, 0xa7e1a344, 0x9369d73c, 0xef58a074, 0x8203aa34, 0x4253995e, 0x641927e } }, { { 0x21e5b90d, 0xe37ea062, 0xa77966f1, 0xa46fb860, 0xe3be36d5, 0x2f1fdd34, 0x36776848, 0x6db08ff0 }, { 0x4f14b014, 0xf16ffa63, 0x5ed30978, 0x6cca296d, 0xd2df946e, 0xf4ba1395, 0xcfd702e2, 0xb99dd501 }, { 0x413033b3, 0xaf4d3b34, 0x710ff634, 0x29bcc55, 0x1bb7c16d, 0xeb3e7184, 0xf8bca6a, 0xb70a362d } }, { { 0xc8515392, 0xd5bfe615, 0xfad27e09, 0x681cf258, 0x1eab75bb, 0xd85c102a, 0x16c0a6c7, 0x88d46583 }, { 0xfc19eb3b, 0xab8d6a4, 0xa47fe43c, 0x11f1aac1, 0x6a076893, 0x3a072cad, 0x84e61809, 0x80008dfc }, { 0x4a097852, 0xf8d1aafe, 0x2ddf082d, 0xa6a54776, 0x3ae13e30, 0x1e651d9c, 0xb3bb0e43, 0x16f1e291 } }, { { 0x48dc6e54, 0xa1050e6c, 0x7b6b747b, 0xc4296363, 0xd7c646f0, 0x2b504b73, 0xb53f9ce8, 0xe3b70788 }, { 0x6f2545bb, 0x6e9de43a, 0x4bf97730, 0x248ac0fc, 0xb6509df1, 0x16e3cc00, 0x59fa2c75, 0x5a60ead8 }, { 0x6c54a2c7, 0x8fbed950, 0x6081b8c6, 0xdccb5300, 0xbb9b9a23, 0x26f11bf6, 0xa2ac392c, 0x305899fd } }, { { 0x921dba54, 0xa96bc3de, 0x9700685a, 0xb82a9ec, 0x468435ee, 0xaa73b81c, 0x288e0cea, 0x56350d9a }, { 0xefb3cb20, 0x2f423086, 0x7b16efc3, 0x57769514, 0xa8dbcdc6, 0x7028af37, 0x41cf676a, 0x52cc0d1b }, { 0xa60bd401, 0xcfb45661, 0x55c6fed1, 0xcef8044e, 0xe58b1597, 0xfe8091a8, 0xb59f33fa, 0x84838d2 } }, { { 0xef76544e, 0xa416d975, 0xda48b74, 0xf273d90f, 0xd6a42b4e, 0x2641046d, 0x54b33f15, 0x3f871b5d }, { 0x15c8cb27, 0xfe0d5e9a, 0xcb7fe19a, 0x22143f08, 0xe6d825d9, 0x602ab052, 0xab9b0d03, 0x4537a7fd }, { 0xdf95ef41, 0x68a4ab6c, 0xb1d64abc, 0x2b1b7dd2, 0x3d563648, 0xefc2ac52, 0x94654dd9, 0xae686b59 } } }, { { { 0x4e2540bd, 0xb45fb30c, 0xc30f7dd2, 0x1973c66c, 0x8be460b7, 0x2d2aee9f, 0xa1e54420, 0xfcd7d34d }, { 0xa6a2002f, 0x1c3020a4, 0xb1950b45, 0x7ed4350, 0xbeb99e22, 0x4899edb1, 0x4caa64f9, 0x321e24de }, { 0xcf846769, 0xd0161c06, 0x72d364ff, 0x9b60e3c3, 0x98a0e8b1, 0xc55dd569, 0x67ae9861, 0x2d5a6bcd } }, { { 0x19c5f2f1, 0x14013e21, 0xb2a93625, 0x9ae0859e, 0xef8fde37, 0x8c945db9, 0x4412962e, 0x7f7bb4d2 }, { 0x1c2cf674, 0x9702a90d, 0xb97e3696, 0x6af71f2c, 0x6b59818d, 0xa5184085, 0xfcb0aeda, 0x3fdf758d }, { 0x1b929e61, 0xef843e15, 0xd002cf84, 0xa444ead1, 0xa157ddcb, 0xf697ddaa, 0xa4c46324, 0x801977aa } }, { { 0x8d7c3630, 0x514e24cb, 0x824b1f02, 0x49a41d4a, 0x46856274, 0x81c7dd8c, 0x166b37b1, 0xf9f4b57d }, { 0xbfd295fe, 0xb735321, 0x29049b1a, 0xe21dd9de, 0xe040803b, 0x48df4e9d, 0x4f76dad2, 0x4b40fe1b }, { 0x802179ac, 0x6085cb9e, 0x4e3e78c1, 0xa1d1ddea, 0x6a646ebb, 0x12e1a74c, 0x23e8cc37, 0x83c8a30b } }, { { 0x5c51fa3e, 0xb618e9ca, 0x8c98735a, 0x25816cbd, 0x7c5f571c, 0xf64e9307, 0xdf26bd94, 0x9d8f5488 }, { 0xa10c5ba7, 0x8f306dcf, 0x3f6d156b, 0x528983f5, 0xc7c897f6, 0x9ecf068d, 0x120c7cf7, 0xb37eaf96 }, { 0x1e17cd6b, 0x881b87c5, 0xec1ec826, 0xd615da89, 0x2ae15f70, 0xaf4f6eaf, 0x73d31785, 0xb4501660 } }, { { 0x5015dd50, 0x26d75d32, 0xf31a1707, 0x186d3235, 0xc5149ece, 0xf166019, 0xf7aec89d, 0xa9da8c92 }, { 0xb9f3ee2, 0x55586c0e, 0xfda78ec2, 0x2afd434d, 0x6c597af4, 0xe945166a, 0x9d5b68ee, 0x1c3bee93 }, { 0xbe393fa3, 0xb952dea6, 0x6a1771f9, 0xe9b4b860, 0x7e78adc8, 0x6f22e5c, 0x7d4aa30d, 0x8b2a69f } }, { { 0xaa0532ec, 0xf5eb4c4d, 0x5196808f, 0xa8074b62, 0x2505bf33, 0x5ccc916a, 0x1faaf878, 0x8d40f77e }, { 0x3e8c09fa, 0x6f05a72b, 0xb0878a85, 0x1d3288fd, 0x9747772d, 0x1d9f4a0a, 0x5d22e9e1, 0xcde30fde }, { 0x9fe8b6d, 0xb63bb3ec, 0x22286146, 0x8a6f0538, 0x904c01e1, 0xb7aa921d, 0x3a8131eb, 0xc6b50e15 } }, { { 0xf7cb6fb, 0x7a3d0e3, 0xfc759e56, 0x8be4eff5, 0xd89b3b9d, 0xa100251e, 0x217d4abe, 0x7e514e09 }, { 0x2a25fa5c, 0x76d895cd, 0xd871abe6, 0x5a42270b, 0x21627079, 0xa525bab8, 0x695cc062, 0x62559435 }, { 0x52ac3728, 0xf8deaaa9, 0x14022379, 0x84bbb7fa, 0xe2ccf151, 0x37a3905, 0x35db3c4a, 0xb4d719e } }, { { 0xc46a67a, 0xfb189ddd, 0xb9257a58, 0x632d498a, 0x78dc537c, 0x8d04abfe, 0x57c35dc5, 0xf30486bc }, { 0x45aabf5f, 0x67c83b40, 0x67b266cd, 0xfc4931d3, 0x2e6591f0, 0x264da9f9, 0xb3883292, 0xa5994d56 }, { 0x8aab77c7, 0x3eff3bf6, 0xd60bbf, 0x83b77160, 0x15b63c2c, 0x7fadbd0, 0x1994dd07, 0x1b4ce4bd } }, { { 0xe9c8afc4, 0xf0036317, 0xe1e9718e, 0x98b31f82, 0xbbad60b4, 0x6635f647, 0xe821ba1, 0xbe9ce9ec }, { 0x606d509f, 0xe6c774a0, 0x49254737, 0x62cdfe3a, 0xf4153c24, 0x716a4153, 0xaa55aab0, 0x5ad23b7b }, { 0x3dc56945, 0xd06e3c9f, 0x8fdebbd, 0xd1ea85e5, 0x2c78a5d4, 0x460682e3, 0xa9d4746c, 0x504d39e1 } }, { { 0x44e0bd24, 0xb7ada459, 0xcbfff2ed, 0xcb4421d6, 0xf990cca5, 0x5deacda6, 0x32761c9f, 0x929edaa1 }, { 0x50465da1, 0xbea0f9af, 0xbd109176, 0xb067ed98, 0x4ab83173, 0x85d56d43, 0x187e8b7c, 0x5dd79b69 }, { 0x4f706d2e, 0x14d19e89, 0x92b6962d, 0x7f1c6b58, 0x231426b8, 0x721dd47f, 0x8e0054ce, 0xb2c09cf9 } }, { { 0xea5e0f40, 0xd9d3706f, 0x15b4f45e, 0xbb67bea3, 0xbe460ecb, 0x90ec4f3c, 0xfa8d855d, 0x5f5a61b9 }, { 0x58010a6a, 0x82f547f5, 0xc43a6d9f, 0x8c654475, 0x3894af2c, 0x3d4acdac, 0xf8baad5d, 0xda8da4b2 }, { 0xc3c5e1eb, 0x146be7b3, 0x92410a42, 0xb4a72208, 0x1093434d, 0xc23d776d, 0x400a2abf, 0x862607d4 } }, { { 0x34bdb7f4, 0xf340a7a9, 0x5d0d2054, 0x86df4cf7, 0xd5f08ae4, 0xb97d0442, 0x9c9b4931, 0x782a7326 }, { 0x2bc70c22, 0xebc1b649, 0x65152177, 0xa561f80e, 0x7dd4cdf, 0xf2d4959e, 0x69810eca, 0xd249866b }, { 0x79b65c9d, 0xc2f6b3b6, 0xaa2611fd, 0x62ebfe22, 0x3503ff24, 0xd4ef7fb6, 0xa9a6c314, 0xdadd7a1c } }, { { 0xf135ea5d, 0x3753a64f, 0x6a4299e5, 0xb693e82e, 0x5f9d784a, 0x8a212ca6, 0xa3163bbc, 0xff6e197a }, { 0x9c028c38, 0x29f64ff9, 0xf2b23c58, 0x346acb70, 0x66f2009c, 0x6b56fb42, 0x97e6a52a, 0xd9d7f1a2 }, { 0x58d4dc18, 0xd01964d5, 0x1300fe92, 0x46bffe72, 0xd08cc60e, 0xc1006241, 0xab843bdb, 0xd8cc9cc8 } }, { { 0xdca0becf, 0x22753e17, 0x27e1c900, 0x23f34dbe, 0xda6e9d13, 0x481cd6b7, 0xf69cb97f, 0xe83d5185 }, { 0x47fcd8df, 0x2ceac284, 0x3e535a35, 0x25bd63f, 0xb137d8dc, 0x20e02da7, 0x9ca445f8, 0x7dac7872 }, { 0x8f8eab1c, 0x7fe9b80, 0x659ae49e, 0xaa6fcef0, 0xd89ce9af, 0x2b8603f6, 0x3212b183, 0x40ce7c3f } }, { { 0xa90440fc, 0xd2299850, 0xb20cefb6, 0x5e04e30a, 0xe10fab4d, 0xe53b0f22, 0x124ac287, 0x95da8c96 }, { 0x91b789f7, 0x73b80dfb, 0x55c8f4b6, 0x68d5ffa8, 0x6ec45d9d, 0xd12b78c, 0x4c97f9ba, 0x81a7c652 }, { 0x596ed0c6, 0x77219033, 0xa0cfd99e, 0x11bdcd47, 0x4cc985d3, 0x25baf84d, 0xa16d0d16, 0x69c7966 } } }, { { { 0x42055eb, 0xf657b0a0, 0xce62447b, 0xe421a225, 0x459ae892, 0xd9ceda48, 0xdb49c668, 0x6633491c }, { 0x81270083, 0x818232b9, 0xac0d89dc, 0xabbf6f7, 0x84183a21, 0xdd720a9c, 0x5f918a1, 0x83ae16a }, { 0xd3e0573, 0xc91581f8, 0xdbcfdf57, 0x35c78088, 0x37a6aebf, 0xa69246, 0x1a09b360, 0x29dfb0aa } }, { { 0x2ac9e0d8, 0xf006c015, 0x8242e623, 0x5c4e8460, 0x3dff46af, 0x40f5a611, 0xb9bd4fbc, 0xa38da7e5 }, { 0x62a19076, 0xfaa8bd96, 0x60b8f325, 0xef5972c5, 0xa7552347, 0xfd238981, 0x724088d6, 0xe6fd1d02 }, { 0xaa4376c3, 0x8b7bd3c5, 0xa9038267, 0x2337358, 0x28fada83, 0x172d0247, 0xef0203c5, 0x463eb544 } }, { { 0x39c51691, 0xb305c1e5, 0xedac8384, 0xdcd0137e, 0xde338c5b, 0x5015edd4, 0xa0213075, 0x44d2c775 }, { 0xc1ae7eca, 0x22471a90, 0x5cada637, 0xf4173522, 0x399c8dec, 0x8a9cc316, 0xb33b3639, 0x6067900e }, { 0xc0130eb2, 0xd3ece58b, 0x414d0afb, 0xf6a133d3, 0x4edaff0b, 0x2eaa41c6, 0x2d587f54, 0x92838ecd } }, { { 0x684e7392, 0xc9e22ae6, 0xfa9e4b73, 0x6fe3a7f1, 0xa524499, 0xdfb6feb6, 0x9e9e8311, 0x2590501e }, { 0xe4a3c076, 0x5bf7b332, 0xe82d854, 0xbdb339df, 0x539e3254, 0xea659302, 0xfc265e3, 0x3fdda5b8 }, { 0x89a955d3, 0x7580ea9, 0x56890882, 0x277116c0, 0x49418140, 0xf7ce97f8, 0x32b0bbec, 0x4a855a61 } }, { { 0x3ee91365, 0xee34fc79, 0x3b3ec73f, 0x79c7ccd1, 0x150edf1c, 0xdd4fcc3d, 0x9456d327, 0x86a252d1 }, { 0x99aa82c, 0xdc40948c, 0xcf976299, 0x492734ec, 0xcc6dd791, 0x65447fc, 0x80c62e44, 0xa05046b7 }, { 0xb88ea900, 0x1a919784, 0xdb3e7f07, 0x138edf24, 0xc4bc5587, 0x7741166d, 0x82fbf159, 0x271a2791 } }, { { 0xa2309398, 0xa1f3abd, 0x1e38d792, 0x71094b9, 0x88c9efa1, 0xc003ee0c, 0x3398cbfe, 0x10b1c9af }, { 0x75b211ea, 0x30d3c62d, 0x500b7794, 0x8bcbc9e8, 0xf9c4ae94, 0x33aa1320, 0x6e9d8dfe, 0x6ecfa63b }, { 0x9755ac5, 0x34794345, 0xd78f6086, 0x58c7b433, 0x38e3d234, 0x8d773f15, 0xe13e70a3, 0x36db6844 } }, { { 0xa79fc036, 0x50ca1c01, 0x4b2efd03, 0xbb8fdb9d, 0x685a38aa, 0x20ee8fac, 0xe30da716, 0x1f7d6e8c }, { 0x8ea9d620, 0xd662283f, 0xdd113567, 0xe753cb32, 0xfaf8bad8, 0x89752ae8, 0x87c87144, 0xf8119cc8 }, { 0x1f037af7, 0x1c55a917, 0x34f51617, 0x4544561, 0x77c08e36, 0x1552e533, 0xf245baf4, 0x25cd006c } }, { { 0x40ff3042, 0x415498c, 0x57dfecc1, 0xcc42576c, 0x11181606, 0x4c3abda3, 0x355f335d, 0x4e7e02f0 }, { 0x725bc406, 0x673efd0a, 0x9905081a, 0xa4a37ee, 0xa5d7bbb1, 0x6f6c99ed, 0x62e8e5fd, 0xf3c775d2 }, { 0x9a120bc4, 0x604182a2, 0xcc98aa57, 0xdc45ac15, 0x496ad27e, 0x81e8fc21, 0xc83a05e, 0x2f7ae031 } }, { { 0x1eb0340, 0xea8300c1, 0x146fe695, 0x6cc67b0e, 0xf34aa87d, 0xbe250c8f, 0xb313194d, 0xdc784323 }, { 0x13ad6ddf, 0x171270c9, 0xff639261, 0x48c1167e, 0xc40463d9, 0xb4b2235a, 0x7b69d2b3, 0xc17d5a75 }, { 0xfe66bf6d, 0x2cd0459c, 0xfac5fdda, 0x8873408f, 0x838d2ef, 0x38efe273, 0x26b35649, 0xb84a870b } }, { { 0xaba24ce0, 0xe63eaac7, 0x459280ad, 0xd767ca1, 0x947eae48, 0xc9bfa1d2, 0x7c76561, 0xee310a24 }, { 0xa6e8d976, 0x29d3e439, 0xb1332034, 0x5df41b02, 0x409cf9, 0xe3c68f69, 0xd462738, 0xa269c5da }, { 0x20e7efbe, 0x5d880068, 0x6f4ddad4, 0x83a6a21a, 0x1a51536f, 0xc9ee2a12, 0x28f91e4d, 0xebfdb2a6 } }, { { 0xf6bc28c5, 0x32ce73a8, 0xb33dd37c, 0xe36bf6b8, 0xd5e166b9, 0x532a3c5f, 0x3bd72999, 0x1766f1e1 }, { 0xb9f0ada3, 0xbf932cf8, 0x7f83e348, 0xf6eef12f, 0x886e6eee, 0xfc6f7e6b, 0x5dffbe8c, 0x12d4adc5 }, { 0x285e963e, 0x7b29d917, 0xb64c6a82, 0x81809464, 0x24c6ab55, 0x30f29f0e, 0x6dc9197a, 0xa4428357 } }, { { 0x10fd235a, 0x5b2cc1dd, 0xe9075100, 0xbae53eb7, 0x9e36c333, 0xfbb85e55, 0x17621312, 0xa2f898cc }, { 0xef10d5f3, 0x95fb2cc2, 0x55ef5f76, 0x23669564, 0x35794f03, 0x55b9e1a8, 0xf1abffab, 0x19d50d0 }, { 0xcfd3a472, 0x95f9d096, 0x40d90d76, 0x13459f0, 0x6b36fda2, 0x8dd94661, 0xa2306e8a, 0x877af122 } }, { { 0x40bd3f61, 0x3e83a2a9, 0x41250a3a, 0x35e805aa, 0xd42b6e96, 0xbea432fd, 0x9d8d9a09, 0x2c468712 }, { 0x83b49d1a, 0x6a2319c8, 0xe2c0d075, 0x3178dbc8, 0x684be828, 0x7d1376fc, 0x6b742a0f, 0xae49dda2 }, { 0x9ab37eb1, 0x888502b7, 0xf5421c22, 0x853c66c9, 0xcb1da00c, 0xefd22317, 0xdb926d0e, 0x4819e60a } }, { { 0xb9060a96, 0x88bb351d, 0xbda15fea, 0x9c4226ce, 0xf704eba7, 0x6c1b46f6, 0xc4e0f8d5, 0x76bd7c8 }, { 0xb88cc27c, 0x5b6b62e0, 0xec38a477, 0xf258df35, 0x58f40c17, 0x3991fe9, 0x3b4a22f8, 0x5436a92a }, { 0xce809cc, 0xfb32d8dd, 0x4cd81c70, 0x53ca16f2, 0x45c8343, 0x48a9d340, 0x8ec311e6, 0xa95f9f4b } }, { { 0xb74cf392, 0x9adcaac3, 0xcd2b8446, 0x2d8cd0a7, 0x7b2d9e9c, 0x3e5867e1, 0xf7a6e139, 0xbb9e4608 }, { 0xb6e693fa, 0xa02a0b6d, 0xc2405baa, 0x71e5c15c, 0x19bfab9b, 0x45dc7644, 0xb89f1d1e, 0x89427a84 }, { 0x3ee9e706, 0x77d5d877, 0x1add3b9f, 0x13fe8b46, 0x33f6c046, 0xef75168d, 0x23bfd437, 0xa6463da7 } } }, { { { 0x4de80143, 0x6bf31dda, 0x8eb65ac3, 0xf98d6816, 0x80a50e2d, 0xdb702036, 0xe4758d0a, 0xd2a27976 }, { 0x322c316, 0xc9a0928a, 0x2e1aebc, 0x662deff7, 0x7b2dc316, 0xe918b14d, 0xf27bee8e, 0x8749f49c }, { 0xc59ed58e, 0x1a22800c, 0x8654b7da, 0x69acabed, 0x15dbaa9b, 0xe5da110c, 0xdac3b2c3, 0x814c110a } }, { { 0xc0a887ec, 0x2077bf11, 0xa9344315, 0x8d7a70cd, 0x2e384a3b, 0xfe8eb138, 0xa904cddb, 0xc35effdc }, { 0x38c0c1a0, 0x2b1604af, 0x3cad32b6, 0x6e843902, 0x5d0474b6, 0x670fa854, 0xfeb7d091, 0xecb2ec8f }, { 0x695e658c, 0x680d75b2, 0xd67707bb, 0xcde05e21, 0x94b615a, 0x8d8b3609, 0xa55590b1, 0x8cc09452 } }, { { 0x56261cc7, 0xf53c2a6b, 0xc6e0f39d, 0xdfac9577, 0x568f8d9, 0xaaab00ce, 0xc8da9c63, 0xd53a2d20 }, { 0xabdd15c3, 0xf45a183e, 0xc78e6d2a, 0x2f33b652, 0xb48d5dad, 0x33890d20, 0x5f7cbfb6, 0x30950653 }, { 0xc2c0a86c, 0x89be13e8, 0xe0ca7b19, 0x280f2eed, 0x51cd92aa, 0x9530e310, 0x764b8642, 0xa0aeee6d } }, { { 0xe0f76698, 0x87eab202, 0xe80b643d, 0x80e5b8b3, 0x25d098ff, 0xa4fc8d8f, 0xdba985d2, 0x7533c095 }, { 0x6940f83e, 0x4971b266, 0x707c7d20, 0x9406d900, 0xe02a4d1a, 0xc67eed6c, 0x2957b33, 0xed28c178 }, { 0x992b5f64, 0x31443e53, 0xce2e31f, 0x89622bf7, 0x7341ce74, 0x696958dc, 0x41e25ae3, 0x54b82ca8 } }, { { 0x81bee072, 0xd76efbb9, 0x3a9b25be, 0x4d4c35a9, 0xbaa2f33, 0x926f998a, 0xc197bc75, 0x80e01af0 }, { 0x1e4357d2, 0xb03a023d, 0x6b80900b, 0x44105f9b, 0x727701fd, 0x3734ab8a, 0xb33e2f56, 0xe471eae3 }, { 0xb07bc4c6, 0x16f19079, 0x8d59fae8, 0x9271b29a, 0x1ecd83a8, 0x21cdb33e, 0x84051d7f, 0x8f10d02c } }, { { 0x80dc1214, 0x4036f6a5, 0x140a55b6, 0x4de3749f, 0x3114f846, 0xc5dfe242, 0x3e6f8fd3, 0x2ffbec3d }, { 0xfb42d6c2, 0x641dbd94, 0x97401c1, 0x1ec3b86, 0x4a86a6c4, 0x89cb82c5, 0x4eb65f65, 0xbfc11e1b }, { 0xef5eb0f9, 0x8b640ce9, 0x65e64694, 0x4944a610, 0x2b1771eb, 0x85fac5da, 0xcb84bf58, 0x9509e0d2 } }, { { 0x4f46b4d3, 0x8d4b61f2, 0xd177638e, 0xaae303d4, 0x81ff213d, 0xdd1bcb61, 0x3777aeb7, 0xdfcd4c10 }, { 0x9728a464, 0x7c77a36e, 0x32fa7ecc, 0x5149e216, 0x498f09aa, 0x2be2c8c9, 0xd502ca06, 0xc5c9fb0e }, { 0xa60fd35c, 0x93755a7c, 0xeffeb8a9, 0xbe3d49c5, 0x3003e119, 0xecbab9d0, 0x4b8718df, 0x5c454b52 } }, { { 0xfa44b488, 0x5a7efdf1, 0x509cee80, 0xce746809, 0xaac89b7a, 0x40c57d50, 0xa05f2647, 0x77025ff4 }, { 0x21283b1d, 0xf64cc787, 0x5352987, 0x3b2dd61a, 0x41ce2e5d, 0xa3d08a89, 0x67fd7623, 0xf4613deb }, { 0xa1178be, 0xb0664b32, 0x7dcc5cc9, 0xc9b6c06, 0x8471b166, 0x3ce70bc4, 0x495cacac, 0x8dbe9a6f } }, { { 0x7228170f, 0xa7ee6c66, 0x37e0ca20, 0xb0c71563, 0x972cb663, 0x4c37c767, 0x401d08c1, 0x5aaa074a }, { 0xe5c1bb2a, 0xc270b0e4, 0x27328c3a, 0x58101499, 0x45eb3951, 0xc876216f, 0x478896f3, 0xf145923a }, { 0x9ac12ab3, 0x3a94c984, 0x80dfe44b, 0xba366210, 0xdf7f4a2a, 0xfb44701e, 0xd74b212e, 0xcff310c5 } }, { { 0x479ae18f, 0x1a0fe355, 0x8c745313, 0x80fcf847, 0xb25aff94, 0xed58039b, 0x78f5d985, 0x7267b278 }, { 0xd8c993ab, 0xecdb434d, 0x6d4fc760, 0x8ef7c5c4, 0xda7bbe11, 0x67e47933, 0xa061f075, 0xd1985f1f }, { 0x642bd4d0, 0x3340ae35, 0xf0e6b434, 0x22f485c6, 0x23947b68, 0x895d275e, 0x7acf9f66, 0x57e2dcd6 } }, { { 0x2ac6b965, 0x524208d1, 0xa5318e81, 0xf4c5e324, 0x764abd99, 0x3251011c, 0xb7004c7f, 0x84bca46b }, { 0xb6a24412, 0xac9ed5b4, 0xd32ce4b6, 0x116f5075, 0xb1e74141, 0x399ad834, 0x82927fe9, 0x4974e56b }, { 0x6892b895, 0x10605d24, 0xfbc79352, 0xc5ad0d11, 0xe00be98a, 0x874f7113, 0xb68fcd37, 0x8f7052c1 } }, { { 0x84280901, 0x80eba54d, 0x307b6f84, 0x2e7b48a6, 0xf077683a, 0xba1e5fd6, 0x47f2c93, 0xc995cf73 }, { 0x3f08147a, 0x76d2cf4e, 0x26fbf4ac, 0x7ba9be24, 0x3e2eab5c, 0x7b17c41d, 0x539ec0d3, 0xb807396f }, { 0x5d61049d, 0x92682ce6, 0x17efbd55, 0xd2d0a7a, 0x6bd2676f, 0xacd3fe2c, 0xd48bbc9d, 0x7bf0f7a } }, { { 0x45cc2678, 0x7eaa6fd3, 0x5989d2ef, 0xa6fd96e6, 0xabfba1c9, 0x55c02754, 0xbb2fdc8d, 0x188559be }, { 0xe307d075, 0x237ef3ca, 0xce447cce, 0x9ce35379, 0xaa1eb603, 0xea9031ec, 0xae0eb761, 0x90fbcf36 }, { 0x29e33069, 0xafc1ddcf, 0x4017347b, 0x8a8bfeb2, 0x53dd6c64, 0xf64692f, 0x1585042c, 0xa4dd7d5 } }, { { 0x6513308d, 0x9df28e5, 0xd7229a, 0x7694ebd5, 0xc18b0a5c, 0x65a44201, 0x9e38c29, 0xbbe42f0e }, { 0x9b0303ef, 0x7f2eb79b, 0xbd72a7ab, 0xb05abed2, 0x3e2fab3b, 0x2c9d6ae5, 0xcdcabb61, 0xc2453156 }, { 0xaf36ac74, 0xf63e665e, 0xa2bd8e21, 0x65e33209, 0x4917eae5, 0xa983d2a2, 0xb5dce3f3, 0x90d61735 } }, { { 0x945213a6, 0x55bc9683, 0x243894bb, 0xdfe69538, 0x7c2fbc77, 0xa9ec49b3, 0x10616a7b, 0x13579644 }, { 0x984017d6, 0x5e046c24, 0x94a7c65c, 0xb4f61d76, 0x507cae69, 0x3e3c05c1, 0xb64f7695, 0xcfa27f73 }, { 0xd87feb4d, 0x3b5d075d, 0x55e50550, 0x8975ad03, 0xde88cdf, 0xc06c2697, 0x20711452, 0x24f6cdf9 } } }, { { { 0x59923420, 0x5fab5a0b, 0x5c8a0103, 0x26ac234d, 0xcb83872d, 0xd6a7e200, 0xf220cdb0, 0xb0717e5 }, { 0x7444a6e, 0xe1283207, 0xb730ffa4, 0x7e90b90c, 0x51b198f7, 0xc019536, 0x72f2ffd4, 0x7cb77072 }, { 0xd769887d, 0xb174023, 0x6cb3a97a, 0xba343e63, 0x63c337b1, 0xec6151de, 0x5c176a13, 0x569a95e8 } }, { { 0x1546128f, 0x3cf2f25, 0x16354f4c, 0x290602a2, 0x82e90b27, 0x3535f74f, 0x4a1f4b3a, 0x16594f50 }, { 0x1e4547fc, 0x46911593, 0x9226a1bf, 0x5dabdde7, 0x97ca7b5, 0xf48c8860, 0x378f4fb8, 0x456131d4 }, { 0x2ae4fba, 0xc59c6b7, 0x6e831cd5, 0xc9dd6096, 0xe9ae3436, 0xc1514ec0, 0xd10dd8dc, 0x24386533 } }, { { 0x4db287be, 0xdb1dca6, 0x27d5c9f0, 0x1a8c8837, 0xd329efd3, 0xe736673b, 0x7a1d100, 0xe0a1b3c7 }, { 0x8f2d3179, 0xb06ea2e3, 0xe5d4bb95, 0x74e69c29, 0xd9fce235, 0x9f689a9d, 0x874d4b0a, 0xabbe4cb5 }, { 0x54df671a, 0xb23b9e47, 0x2cb5dda2, 0x69bc4a77, 0xe5f18e8c, 0xb931d6ad, 0xd24433e6, 0xf589b258 } }, { { 0x90efde46, 0xa2521860, 0x8085f700, 0xcb62e741, 0x657f1a6f, 0xe5aebbc2, 0xd18ce4c8, 0x8859f353 }, { 0x2a2cd8f, 0xd615e696, 0x26213a7f, 0x8bfed576, 0x58ada2b6, 0xdf4b9c56, 0x793cb888, 0x8db5c919 }, { 0x5b8bcf48, 0xccdad4f0, 0x1cae84cc, 0xc07404f2, 0x48865ca5, 0xf67aeef2, 0x8d3b17fd, 0x5050392b } }, { { 0xa8b0c361, 0x1e2085ea, 0x7f8a5d53, 0x6021434f, 0x86f49cb8, 0x31ebf1cc, 0x411cc369, 0x4fb1518 }, { 0xe3cedc55, 0xf02eba83, 0x329f0bd4, 0xd185b85e, 0x8e6d91c9, 0x82858856, 0xc8b3ed01, 0x76917fdf }, { 0xd4e29170, 0xbec66c67, 0xfd562c70, 0x99e8c136, 0x66c20de8, 0x83fe6a77, 0x86f9b511, 0x4fdd8fb0 } }, { { 0x96d4b608, 0x1755d117, 0x4b4e5906, 0x4bdb08fd, 0x32ac8806, 0x4be27152, 0x6afadae0, 0xf394a35d }, { 0xa9721241, 0x241eed3b, 0x75b890fc, 0x6daed6a9, 0x2b373196, 0xfaa5fb15, 0x6e9761d1, 0x70ac9929 }, { 0xc1347907, 0xec574798, 0x288cb39d, 0x242e94c6, 0x79e31a27, 0x45192416, 0xbbf3644, 0xec041a25 } }, { { 0x8a711a07, 0x3238f780, 0xd094754c, 0x87eefb04, 0x2c6f5cde, 0xf362f516, 0x923f0389, 0xb6cce736 }, { 0xe77a778a, 0xe6115be5, 0xc7e739df, 0x90c144fa, 0xbc24c3f, 0x255e9fb4, 0xe988bd77, 0x61491d6c }, { 0xc41c53df, 0x77181dbe, 0x51d04fd3, 0x3688f7be, 0x97767c1f, 0x7bf2ec25, 0x61fee198, 0xc4e6d415 } }, { { 0x65de37bc, 0x4c6e3df2, 0x61232e81, 0xbf6fc3ed, 0xe3b19014, 0x5eab2b7c, 0x5fde4aa8, 0x3975c3e6 }, { 0x7fb72dca, 0x1dd57318, 0x8fd20b6c, 0xc3db94ab, 0xe603db01, 0xc744e78d, 0x6a1b8527, 0xb10ecefe }, { 0x9b5dd303, 0x42d56e74, 0x290941ea, 0xb2ef860f, 0x6f90e977, 0xa037cc6b, 0x7b5bb2b3, 0x69e6a6d } }, { { 0xe8aedd3f, 0xb8f1b684, 0x52b9d8bb, 0x6ddeeac4, 0x913a81f3, 0xa4d83e2c, 0xc225875e, 0xe67129fd }, { 0x51540f20, 0x69473dc8, 0x1781d95e, 0x1528bcda, 0xf0ad593d, 0x820f0b7c, 0x66e6bfee, 0xd2e8f0a1 }, { 0x3cb0b9b7, 0xb0e32cdb, 0xc14e49a, 0xb3a7ed8f, 0x54695c97, 0xc0a79a0, 0x2da0ae6c, 0x43b950de } }, { { 0x21f5b56f, 0x99458992, 0x828439c9, 0x51695a16, 0xa673fbae, 0x8fd64a3, 0x18c1faa7, 0x9116a244 }, { 0x84bd81a4, 0xc4f3c345, 0xb564e454, 0xf517f6b7, 0xb675cf3f, 0x65e13af, 0xc501661f, 0xf8d20af6 }, { 0xbb32be50, 0x9d24c476, 0x5b9c4b39, 0xf9a8bd40, 0x9d19483f, 0xafdc0e28, 0x2193b8f7, 0xcc896380 } }, { { 0xc6275335, 0x91d178b0, 0x20fca5d7, 0x5ea51c04, 0xc19bba0, 0xbfb40ff2, 0xf4612117, 0x957894db }, { 0xd377ea24, 0x278f2bdd, 0x9350ded1, 0xdca9669a, 0x481702f3, 0x5ba25bc0, 0x2cc8ab81, 0xf150adb7 }, { 0x25fa097a, 0xa3f19183, 0xd0ce33e2, 0x1a3a381, 0x9b2f448a, 0x15760afe, 0xf771bd6b, 0x2b689ec7 } }, { { 0xc95138cc, 0xc7dd9cd7, 0x90692365, 0xc3e77d60, 0x7bcca7c1, 0xd4d102db, 0x10f87bcf, 0xf79eb3c2 }, { 0x7fe42d34, 0x6cd5446a, 0xff95f531, 0xd83041ee, 0xf1b229a7, 0xc4a99ae2, 0xc0136bde, 0xc2bf4c37 }, { 0x964f2fea, 0xc214b470, 0xbd389a09, 0xa6df1957, 0xc82d94b5, 0x1130359b, 0x80b8151d, 0xd3fed2e5 } }, { { 0x2cfbc807, 0xeec54d74, 0xf93826bc, 0x4a485d08, 0x6afeb3a4, 0x2d4b07c9, 0xdda3290d, 0xf40be1a8 }, { 0xcf7373c4, 0x48752db4, 0x1a8e9cce, 0xe48eea6c, 0x7dd87265, 0x27c2503f, 0x9543dc8d, 0xf968f70a }, { 0x1bd6615b, 0x2111acb2, 0x40d5c1f7, 0x5b24782a, 0x9dbdf85b, 0x687fc529, 0xaa44249d, 0x6317872d } }, { { 0x897ec6e3, 0x235cd7de, 0xc6c6795a, 0x82a22cba, 0x15e0b401, 0x5b016658, 0x9efb9e51, 0xe400708a }, { 0xee27e8f1, 0xf0ef7015, 0x92d27f95, 0x917f1557, 0xb1beb44e, 0x62573633, 0x8e674221, 0xf0c95c52 }, { 0xc7ff4da6, 0x7e0315da, 0xfde065db, 0xbe015af1, 0x6620842a, 0xe79f0121, 0x2e9f0300, 0x5c07948a } }, { { 0xcc694920, 0xb4199277, 0x8641a63f, 0x974b04fa, 0xd4efbbb2, 0x9d14f2e1, 0x3522251, 0xa5b5ff7b }, { 0x11ffefe1, 0x1a64eebc, 0x6f19f554, 0x87c2e7cc, 0xaa63949d, 0x2e3dcbc, 0xf46588b9, 0x6ee68d61 }, { 0xc72c6e65, 0x20159fc4, 0xf085b3b5, 0xd4a090a6, 0x2a0467a4, 0x8723da67, 0xe212d9d8, 0xc5527aec } } }, { { { 0x716de0e2, 0xdcfbc39d, 0xd7e36645, 0xf4ddd248, 0x369a97aa, 0xc1036060, 0x9a131ac7, 0xdb4d21b1 }, { 0x4c95f589, 0x2d385fef, 0x6bfcd165, 0xa2a29a16, 0x32702293, 0xaa5d3432, 0xf38d284a, 0x9bc77898 }, { 0x9242a55a, 0xdecfed53, 0xe05a1917, 0x59d75095, 0x843c6d82, 0xb2bac85, 0x5d543797, 0xc2756d29 } }, { { 0x2e1f2a38, 0x99bf869e, 0x11928de4, 0xb3862e18, 0xfd39a783, 0x1cd50ba7, 0x8bf4b0cd, 0xa924a9ae }, { 0xced2800f, 0xfa6201fa, 0x1ac619f0, 0x3198d041, 0x805ae9ea, 0x36c6eda9, 0x888c640c, 0xd511ca9f }, { 0xf2a07db2, 0x67a5a23c, 0xb84fc9c3, 0xa135b125, 0xa1d3a13f, 0xbfddc238, 0xd23c4973, 0xa6b5edcc } }, { { 0x94d6c686, 0x5f2f39c9, 0xeb8443fb, 0x2b36b4e0, 0xc224528f, 0x1af26931, 0x94e76d9, 0x4ffac42b }, { 0xe086bf0a, 0x62a925b5, 0xa7c852f9, 0x42b724ff, 0xe2683913, 0x565dc7a6, 0xc05ee8f0, 0x7fed8f36 }, { 0x2f6524a9, 0xa6051777, 0xa5ed0f7b, 0x7651731, 0xeac7bf19, 0xf983c006, 0xcc778154, 0xef942387 } }, { { 0xcd74bc6e, 0xf2f343d0, 0x6c80bce9, 0xe3ce8f82, 0x84768b77, 0xc03d0eb1, 0x22257484, 0x29a5180e }, { 0x8b545bbd, 0x35c24df5, 0x8520f670, 0xb358c5df, 0xaba50c1e, 0x52e70e6c, 0x5d9b9124, 0xefe543e7 }, { 0xc516d82a, 0x778a3b1, 0x879dcfe0, 0xab404d6a, 0xe999a04, 0xabb0d68a, 0xeaf6be2b, 0xc93faf62 } }, { { 0xc93c5207, 0x56a25b10, 0xc154b877, 0x580e8434, 0xdfdfd114, 0xd9ef5d8a, 0xc11a4520, 0x4e1fb507 }, { 0x4209ed3, 0x5e22151d, 0xc5a83642, 0x9955e295, 0x1aeea40d, 0x42a6ea73, 0x4a9f1be9, 0x65b14ec0 }, { 0xc80dcdc4, 0x155ad55a, 0x66c4d45f, 0x61a4bc10, 0xc9f4c10, 0xbfbbf1e9, 0x6198c3e2, 0xb3db493e } }, { { 0x60ba18cb, 0xf17bf762, 0x27245f1, 0x8e79851a, 0x2710c0, 0xdf96da81, 0x4cab5b46, 0x3ec3db67 }, { 0xccfc52c5, 0xf7d709ad, 0xa8dc48ff, 0x10126f5b, 0x2424242c, 0xf7ab547, 0xbb1384aa, 0xd75bbf93 }, { 0xa9854105, 0xa0886f71, 0x4b9c5304, 0xbd0a99be, 0xdfa89741, 0x525ea96e, 0xe69f6469, 0x2d42a703 } }, { { 0x76f74372, 0xbf18afd2, 0x30d3558, 0xa742b5a4, 0xca942444, 0x6952a72b, 0x27d633cb, 0xb2f40cc3 }, { 0x8f66f60f, 0xb279e923, 0x48b734eb, 0x64c233a6, 0x1ca81b7f, 0x8e870ed6, 0x3999072, 0xdb7ebfc0 }, { 0x2d9edd3e, 0xf208c13e, 0xa8098045, 0x90ad6ed0, 0x42ab2af2, 0xfc480303, 0xa507a904, 0x2d8281d4 } }, { { 0x1eb38e9c, 0xceef1ec, 0x5a5f51e3, 0xe046a44e, 0xd50d420, 0xb18730f6, 0xfb4b5b13, 0xd85ea640 }, { 0xf7be7c5a, 0x568c9121, 0xadf23382, 0xc6449175, 0xe7f78d0f, 0x39208c16, 0x13436aa1, 0x8fcc25fb }, { 0x958f910d, 0x2afe1bc3, 0xc1714b95, 0x5baf5da, 0x642f329e, 0xf9c49632, 0x1b7359d, 0xc117081b } }, { { 0x41d57201, 0x5908ed21, 0xfafef3a5, 0xb5dce6a4, 0x93de4f7e, 0x9cdfaead, 0xd3a4c7f9, 0xb6430f58 }, { 0xb00f6648, 0x1937fc35, 0x8ddd49eb, 0x8b0361a1, 0xd998b8c9, 0x1fbe544b, 0x4ad9c6c2, 0x82300bf4 }, { 0x3556584e, 0x3c6b6a40, 0x4bd43f1b, 0xc248b3f7, 0x997fcf34, 0xac762ecd, 0x8c770bfb, 0xac0d70f8 } }, { { 0xaa1533f6, 0x74d3b7ec, 0xc8eadb43, 0x25fa0e4a, 0x1dca7d2c, 0x793afc3e, 0xfd8c3022, 0x2d1d91bb }, { 0x236fe747, 0xeaa5c075, 0xe51f41ec, 0x1707d017, 0xa18d3422, 0xfc38d16e, 0x13ec1391, 0x8b0d3e80 }, { 0xa595113c, 0x50e65dad, 0xb307b93f, 0x8959bee, 0xeb2abe1e, 0xb7b45046, 0x1a3f5956, 0xf8f90243 } }, { { 0x538e351e, 0x4e9cb85c, 0xe3f7ae77, 0xc76c801c, 0xfa95274a, 0xa35f0b17, 0x16a12668, 0x23174655 }, { 0x715bb5e6, 0x9a888893, 0x231b1044, 0x87fc86e4, 0x9f1ec28, 0xd87f27b, 0x395ff7a7, 0xe9c83d25 }, { 0xd0dbf843, 0x79377747, 0xe99aab40, 0xde78933f, 0x6ec5f2db, 0x6d5bd336, 0x5799be97, 0x40d9bdaa } }, { { 0x8e67e825, 0x6ed92da3, 0xd16d0499, 0xba7b6729, 0xf68c680e, 0x5d90131f, 0xbccbc7f6, 0xa213dbde }, { 0xda1b4cb5, 0x3c0ebcc, 0xf9fb2524, 0x277758ee, 0x5f563f67, 0x3ba8294c, 0xf3e6f9e3, 0x152f6a43 }, { 0xbf074073, 0x2e9f239c, 0xdfa2fc92, 0xc43f6363, 0xf8aca5b2, 0xc21a2a9, 0xbc877cfe, 0x5729c638 } }, { { 0x6de164ef, 0x62370d3d, 0x295b1347, 0x68abbe3d, 0xebcf3859, 0xab801c49, 0xabc83a5, 0x94e63f28 }, { 0xad0d3393, 0xe432a986, 0xee70c9f7, 0xb22ffe8a, 0x72e4c315, 0x5010845b, 0x8f476241, 0xa8090202 }, { 0xfba53eaf, 0xce618fa, 0x592f4b36, 0x10f1664f, 0xd87ac31c, 0x9298bbb7, 0xb900d217, 0x3bfc4e90 } }, { { 0xcf78e6ff, 0xcdf364e1, 0xda44d6ed, 0x386815e8, 0x16bb1bd8, 0xb5ec9a7e, 0x9cd33ef0, 0x14bdcdc1 }, { 0x74efb8ca, 0x38440733, 0x60c71380, 0xf98e4586, 0xf5a9ec8c, 0xe61e2d1b, 0xfc16ec7a, 0x38668d5b }, { 0xa87271d9, 0xca3ca55f, 0xb25343df, 0x3c3b8dc5, 0xe16f926c, 0x19a88031, 0xfd0ac210, 0xf3f1565f } }, { { 0xd7148646, 0xd0c379f8, 0x1e26607c, 0x9d04e82d, 0xac42648f, 0xf86e621f, 0x1d84831c, 0x961037b0 }, { 0xbe873a57, 0xeb644254, 0x9f254a8d, 0x2101eaaa, 0x51a64b66, 0xa1fea596, 0xe2411ca7, 0x4fbcfd86 }, { 0x520c3860, 0x23d17c53, 0x3de26410, 0x32e5777a, 0xa18d4b30, 0x3a2fbdf1, 0xfcb7d74f, 0xda757eaf } } }, { { { 0x4c163c30, 0xc401f38, 0xff2861b, 0xd499c6c9, 0x868952e6, 0x644ad2b9, 0x18c6d037, 0x8ccf4b20 }, { 0x133e41c3, 0x6901ddb7, 0x7bd699ca, 0xefefc8cd, 0x5280e7b1, 0xb9b4b0f4, 0x4004fc9e, 0xcde1e6ca }, { 0xaace4eb6, 0x7094de4e, 0xa11db3c1, 0x8213669c, 0x3c2b7b9f, 0x5b7d555f, 0x2c244623, 0x85b27e2c } }, { { 0xbfaa5530, 0x4a6987ce, 0xd55068c2, 0xaeb24b70, 0x2f4e0684, 0x85a47272, 0xfc0ea418, 0xfeaaaa2a }, { 0x4166af42, 0x80c0ef4f, 0x53e9bd9c, 0x7ce00ef1, 0xb4d0fbc7, 0xc177c5c1, 0x6c15efbf, 0x1f8b92ed }, { 0xed53167c, 0x3d0a95eb, 0x641683fb, 0x308d9c7a, 0x33583efb, 0x6948934, 0xf6b29ce3, 0x82cee53d } }, { { 0xa02c70c1, 0xe3a5b7c2, 0x2cb73dba, 0x377a7166, 0x2439da6f, 0x214cd5cf, 0xea7c06c4, 0x3a2667c }, { 0x6feec24, 0xd4998d1d, 0x7e148ee8, 0x2bbee02f, 0xbd1a2fda, 0xce753835, 0xb5fbb91b, 0x87539d80 }, { 0x8318b242, 0x7ec2094f, 0x5a37ea90, 0xa7b5fb66, 0x284230f7, 0x8ba27c5f, 0x555e0c7e, 0x33eaa003 } }, { { 0xcecc0d99, 0x29b7a025, 0x7fffe101, 0xeda76a66, 0x59a0ac49, 0x50f43ce0, 0x80d6423e, 0x63e05e07 }, { 0x1beb897c, 0x5d476b4a, 0x8f43c291, 0x453f9c95, 0xf8f758d3, 0x2a89ea2f, 0x54b65825, 0xd810e733 }, { 0x902e3c48, 0x725057bc, 0x17839df2, 0xa3ce002e, 0x54cc1344, 0xfc08647c, 0xd454f4cb, 0xfd70f01e } }, { { 0x1419e27a, 0x8100430a, 0x40b977b7, 0x1179713a, 0x4e6dd0b4, 0x70d0771b, 0x8e056c94, 0x6fd33148 }, { 0xd0bf24a, 0x8211bfdc, 0xf77668a3, 0x25846527, 0x676fa917, 0x7cdc07cf, 0x101df542, 0xe993c82f }, { 0xa89f0476, 0xa369534e, 0x1358b98c, 0x78355357, 0x6c28321b, 0xbf200125, 0x351f7ad6, 0x7e9bcfd4 } }, { { 0x97871794, 0x9adbed14, 0x71eee3a5, 0x25e95b0e, 0xbd9050a2, 0x3892aaae, 0x326c6ff1, 0xa38868bf }, { 0x57252974, 0xdf73a505, 0x290c3bee, 0xd46cd099, 0x1b1745a6, 0x70d70947, 0x1e0eddae, 0x74ac5c4b }, { 0xb8b061f5, 0x7f675f9, 0x3b6d24f2, 0xff91eca, 0xb6dfc93a, 0x335c5664, 0xabec0af9, 0x69f19468 } }, { { 0xcd8d8ccf, 0xa3b1733c, 0x9f515d93, 0x360d2abe, 0xde481edc, 0x562e2b23, 0x90a4ae1d, 0x9d6b58b7 }, { 0x988fb0de, 0x1cf54f2a, 0xf93e6e0b, 0x16660322, 0x37c04d1a, 0x337aa597, 0x53b9366f, 0x1255ab99 }, { 0x205caf5f, 0x3517aefe, 0xe31c58e0, 0xe44963aa, 0x4ee501c, 0x16f50b98, 0xe50efbaf, 0x733c2e4f } }, { { 0xc5b33d07, 0x1b762138, 0xd12aee8, 0x159165aa, 0x4692e7a9, 0x2c73b22b, 0x7e229f0d, 0xeda1b6c }, { 0x4d88e8d6, 0x8f638b73, 0xcbbff7de, 0x407bb0f9, 0x81845f0a, 0x69d53c2e, 0x19381c3d, 0x9251fd61 }, { 0x4dd59e3d, 0x8ffbf315, 0x936fcaa2, 0x75b4b8e8, 0x5521a694, 0x6af8f40d, 0x6a805cb4, 0x532f90cf } }, { { 0x79a9f21e, 0x1f394253, 0xefdc1d56, 0x87624133, 0x10965487, 0x4f30d862, 0xf2d0e09f, 0xbb022b5f }, { 0xc8dceec1, 0xa3082f5a, 0xbb0c7cd3, 0x380ab499, 0x17489a0a, 0x7689daff, 0x92615535, 0x53601bd1 }, { 0x61af487, 0x28276569, 0x8a5ff0f1, 0x8be97a7e, 0xe0ce6b9d, 0xd884c9ca, 0x4ce2ad27, 0x87220734 } }, { { 0xfb3d042d, 0x8c3a48fa, 0x34285804, 0x7718e8c9, 0xa9838a48, 0xc989eb87, 0x4ed2d6f7, 0x3335ae67 }, { 0xe773ece5, 0x148cc1b3, 0x2985d158, 0xace143ae, 0x2ec679ca, 0x72b11db7, 0xe403c5e6, 0xc0e84cb7 }, { 0x3dbd7805, 0xd12c4e72, 0xf6036849, 0xee066060, 0xf53724e3, 0x877ed36f, 0xafff8e0a, 0x878786e1 } }, { { 0x31f1325c, 0xffbf3fdb, 0x8796bd0, 0x66fc8cb5, 0x43922012, 0x9cb0e61b, 0x4d38c2bc, 0xf71e4683 }, { 0x9a3a2347, 0x8ed815e6, 0xfcf620fc, 0xfb8f9ca, 0xb397b031, 0x10374731, 0xef2812b9, 0xd40c0655 }, { 0x5b8c532c, 0x6da80567, 0x92f89723, 0x348bb556, 0xbb0bb6ea, 0xbfa23d51, 0x2755f207, 0x687e5080 } }, { { 0x507e119d, 0xebb9e80d, 0x4649eef3, 0x25d8b97f, 0xe6f61899, 0x64de0135, 0x8724d16b, 0x6f8d28 }, { 0x6997da6a, 0x214c3dd6, 0x23aa1918, 0x247d2385, 0xa7dba854, 0x93ef1b2a, 0x9b2c7617, 0xc5ae3e1f }, { 0xcc780dc7, 0x4ad599e7, 0x436f7d14, 0x5f6d87c, 0x144ffa0d, 0xc769d11b, 0xcc9bd09b, 0x648867af } }, { { 0x8548c0cb, 0xce13c63, 0x5845c079, 0x9bb2d0f5, 0xc13a628, 0x1e5cdb2c, 0x7fd91f8a, 0xf8538936 }, { 0x6ae61e40, 0x71ec91da, 0xa5cd4a32, 0x2107a402, 0x17abe277, 0xf55444c0, 0x2060f14d, 0x53042624 }, { 0xd079f23e, 0xf189347a, 0x86c54b7e, 0xa953b62b, 0x3ef1ebe1, 0x23503bb1, 0x6a38b49d, 0x1cb4285c } }, { { 0x12b4cf72, 0x46208ba7, 0xb7ec5047, 0xe3ec7b5e, 0xceb7bcd, 0x10168c08, 0x16c5b07, 0xcb617944 }, { 0x7404ce51, 0xab8c94a1, 0xf9369252, 0x5e318d93, 0x38042f6a, 0xc1208957, 0x9b6ba607, 0x3daef985 }, { 0xe63c3bd4, 0x5396b26c, 0xbe8fa9bb, 0x62d8b44, 0x599f482f, 0xe1f0e899, 0x82cdcfd1, 0x48ded023 } }, { { 0x2f3d8d3b, 0x45788b1, 0x6fd9ef85, 0xe29385e3, 0x5c12c713, 0xf1316363, 0xfc6ca804, 0xa0f7e815 }, { 0xc2838d0d, 0xa50274f5, 0x28c2f68a, 0xc29be0e2, 0x3179f996, 0x7b247e4f, 0x5531c2e5, 0x8c826c60 }, { 0xefb85c5, 0x6444331f, 0xa5cb3990, 0x471f6a59, 0x8649b902, 0xea4a8817, 0x32519f73, 0x36e0de6d } } }, { { { 0xfd4455a3, 0xc863a03, 0x2d7fe87c, 0xc85d2375, 0xaa9ffdc9, 0x4cd4bf2, 0xa839403c, 0xe1614e39 }, { 0xf879ed4d, 0xa1db985e, 0xeaee4124, 0x5bf2f409, 0x48f01a6b, 0x1385a4ff, 0x143fcc5b, 0xb1e9ce8b }, { 0x7e720a57, 0x49e72ec2, 0x4c653e66, 0xa7694735, 0x46922a6d, 0xaaf50bce, 0x965c26d, 0x16b0fc0a } }, { { 0xa79de4ee, 0x8c9297f3, 0xfa574ff5, 0x330ffd63, 0x8b9e0707, 0x7d4708b4, 0x9d88f643, 0x553c7227 }, { 0x54bff16a, 0xfd684964, 0xe5d24f92, 0xb7294681, 0xa4596d2a, 0x2c2d3f88, 0x1963b5f7, 0x3fe1573f }, { 0xa34654aa, 0x5d968c78, 0xfdb7afcb, 0x41774277, 0x7ec19162, 0x26747317, 0x64652875, 0x7487fc06 } }, { { 0x91f7a42b, 0x40899cdb, 0xfbff3688, 0x5a3bbe33, 0xddbb8151, 0x84a64201, 0xf9957230, 0x5cfd9d26 }, { 0x8456dbf5, 0x1cc606c7, 0x4c0260e6, 0x17a7e89c, 0x5ff8ea55, 0x2aa1f73c, 0x7f265de5, 0x2142c50b }, { 0x5ef4eb91, 0x26bd4a5e, 0x730e5075, 0x4fa58ba1, 0xfe130ad6, 0x5c9928cd, 0x83840bd7, 0x12fe75f4 } }, { { 0xd3e1038d, 0x74275a9b, 0xd3f05ba7, 0x9795f99a, 0xf70ae533, 0x299757c1, 0x54f471c1, 0xe3032e39 }, { 0xf1ecbe8, 0xce261804, 0x3c0f09b9, 0xccebb2b9, 0xe3bcda57, 0xc67d2ca5, 0xa7082e4d, 0x8c415202 }, { 0xe942fb4b, 0x1f0aaa2b, 0xbb8e0999, 0x536f806a, 0xcb44cd4c, 0x6ee8b115, 0xfac8defe, 0xf4412732 } }, { { 0x412e608d, 0x244ce11c, 0x764a0a1c, 0xa991ce9a, 0x50ac8b7f, 0xa5223b9d, 0xc7fe6558, 0x1849950e }, { 0x9ca5e44c, 0x378494f9, 0x86d5b670, 0x6a73a26d, 0xc232240a, 0xe4934130, 0x514bbb1f, 0x3fc8178b }, { 0x633588f7, 0x5eff47b3, 0x16f7921d, 0x4286db26, 0xf3f00851, 0x98366aed, 0xc58a0e1f, 0x6bd9f910 } }, { { 0xa7fac34e, 0xc65596d7, 0xc938d505, 0xc4ba269e, 0x4b9fc0e6, 0x927c0463, 0x4dbbbf70, 0x86234d1e }, { 0xa132e344, 0xd3605b1a, 0xe16ba231, 0xbaeae235, 0x3faa85c8, 0xe580300d, 0xbf0a9dec, 0xcd887f32 }, { 0xdccf4c8d, 0x3681cff2, 0x93fb5d8d, 0xae0ed7f8, 0x357de672, 0x107abbaf, 0x59a3a29f, 0xb2b1a90a } }, { { 0xe1171cb9, 0x315d6821, 0xfe2c9170, 0x1d468f12, 0xac88fb70, 0x1a3ef539, 0xf4d35967, 0xc1182beb }, { 0x7b814af2, 0x84399e2f, 0xe773e29d, 0xb9e2b8ab, 0x599aa7fc, 0xe7898f37, 0xc0b31ca5, 0x50c4a9ca }, { 0x1cc448e8, 0xefbc22c4, 0xfa74bd11, 0x5102b10d, 0x364e5470, 0xcc266511, 0x9f295a63, 0xbf3f4909 } }, { { 0xb35aa24c, 0x90a68515, 0x62a53743, 0x95ea2f0f, 0xa4eb861c, 0xd429ab71, 0xd7576fb2, 0x95247616 }, { 0x954a1d26, 0xfec12ea6, 0x2a84c14, 0x7406e2ad, 0x6c9fe71e, 0xdbfaab4b, 0x4b0bba20, 0x184ee0f4 }, { 0x5450d0b7, 0x15a0f0d5, 0xc6b4ae15, 0x56d02d58, 0x4091dfab, 0x158edf0a, 0x23483522, 0xeee583d0 } }, { { 0xf700aaec, 0x3f01d5d8, 0x132ee6fc, 0x5d534a6a, 0xfe282eb3, 0xa9cec45a, 0x4c174e0f, 0x6ea1e6c }, { 0x31983958, 0xc1f9140c, 0xa720e87e, 0x6c44882d, 0xf605bdbd, 0x870139e7, 0xc7451ab6, 0xd6ce2344 }, { 0x84dda79a, 0x32c8d29e, 0x7a5e1343, 0xb3186e59, 0x7060ece4, 0xaa1fe8f3, 0x2b8d247e, 0x1b612824 } }, { { 0xd273986e, 0xdcd47d52, 0x6a4a6537, 0x9b7929e, 0x5bd76f17, 0xed9810cf, 0x68b96adb, 0x5b83d3b5 }, { 0x5bc6c823, 0x7a959ba2, 0x531b2f3f, 0x4614ebf7, 0xb04deb62, 0xf47b7a4f, 0x26bd3dc6, 0x2a5c1fe9 }, { 0x4200cd80, 0xcad8b1ab, 0xb5d3a121, 0xb798eaa0, 0x7625d9eb, 0x126a735c, 0xc8bd70ea, 0x539bf002 } }, { { 0x3f9d3390, 0x45b6bff0, 0x9ac671b, 0x9f914202, 0x378da87, 0xaa7c95b1, 0x4ef8ea42, 0x15643759 }, { 0xcc104666, 0x3575d2c3, 0x3187f5d6, 0x1ff5047d, 0x103ad930, 0xaac5ee8e, 0x988cd649, 0xecf52cd }, { 0xc2cbff23, 0xe8b79df3, 0x1107d593, 0xe2de4f82, 0xa885c80d, 0x5280b73f, 0x36962a6b, 0x375817d5 } }, { { 0x8264ba7b, 0x6ea6a38, 0xa5e96097, 0xc6c1353d, 0x59022966, 0xac464151, 0x393b5522, 0x4494ede9 }, { 0x9ff1fb78, 0xae0c2818, 0xcb58f4ff, 0x3aed3361, 0x8652a3de, 0x943531df, 0xb18552f0, 0x147b0163 }, { 0xdd169176, 0xc50ea5c9, 0x72a6673a, 0x2f58cb6, 0x5341bb5, 0x6cbf1a8b, 0x3c25b139, 0xa73057b1 } }, { { 0x244a611d, 0x33d0d01c, 0xcb8d8472, 0x20432a62, 0x53acde46, 0x7955b509, 0xa7d403cd, 0x1bbeccf9 }, { 0x81c035a, 0x752d20fb, 0x903048c3, 0xef78c811, 0x4c73a4e8, 0x2f13e572, 0x2201265, 0x593bfb56 }, { 0x772ba782, 0x83b9d766, 0x5ca316ec, 0x9e40f7d3, 0xbc69c9d4, 0xbd38ee2f, 0xe9c35ad6, 0x595ecfea } }, { { 0xa9f6410f, 0x41a78abc, 0x1739ea06, 0x6c7f6a54, 0x9be72264, 0x4234f301, 0x63eacb91, 0x6d8920f7 }, { 0x3065ecb0, 0xd2cf89f5, 0x4576ca9f, 0x4b81fcf, 0x850c89f0, 0x3e4fe15e, 0x8f6814ba, 0xd4bbb04d }, { 0xe720e581, 0xc284d2e1, 0xceb6735a, 0x5d11a6d3, 0xc529e3bb, 0xb3fcd279, 0xc6523fcb, 0x56d0af2f } }, { { 0x72b06b1b, 0xd40ca905, 0x6723c2cf, 0xa537b9b4, 0xb4d20189, 0x7564c95e, 0x1088f491, 0x3dd30c41 }, { 0x107606b3, 0x88feee9, 0x4faa1acc, 0x2d8b308a, 0x5dcc1796, 0x516ee82f, 0xc902c86f, 0x3fe1eba8 }, { 0xd2c99974, 0x2ca7e01b, 0x8ffd0fb, 0x8960bed5, 0xfd63ae19, 0xcacf7c5a, 0xad2f290c, 0x8f6e92a4 } } }, { { { 0x5be993ee, 0x24b61868, 0x266d6991, 0x3d7aaf61, 0x42025c3c, 0x656a5d85, 0xc1587457, 0xf4538133 }, { 0x19b1ca84, 0x1e838a7a, 0xf050fd1, 0xcc40add9, 0x42d12fb2, 0x223ccee6, 0x8fdee1c7, 0x3877d476 }, { 0xf554ee24, 0xaa25d732, 0xb41dbb6a, 0x42d3961b, 0x15051958, 0xc245b603, 0x3c4a089a, 0x51f75d12 } }, { { 0xd48a8ac0, 0xcfa37737, 0x8aabf9a9, 0x8223381c, 0xe359d91a, 0xa18ef1e1, 0xb427bd0e, 0x70b0bf23 }, { 0xeed616b5, 0xc9b4dee2, 0xf7de9ce4, 0xbe0739b, 0x8cbe4bbe, 0xe568abf8, 0x577a0648, 0xd166a18e }, { 0xf63d1aad, 0x5c272086, 0x1358dbb4, 0x86748634, 0x3991b722, 0x329be34a, 0xc39a4ae3, 0xee668798 } }, { { 0xdb8ed8bf, 0xb1a1d971, 0x76cf20cb, 0x441ba6e5, 0xe3a5978d, 0x85ed58f0, 0xfa9d7ee7, 0x708b28be }, { 0x16aabe97, 0xec2d57af, 0xd7f0831e, 0xfb977890, 0x29d02aad, 0x295992b1, 0x29263657, 0x8472439d }, { 0x45c60659, 0x7d222dea, 0xf6376a9c, 0x2c46aa4d, 0x8492c232, 0xe02cf781, 0x398f3c25, 0x282367ce } }, { { 0xc3983102, 0x729ec730, 0x5378ed91, 0x794e6d16, 0x995d6d50, 0x64ae1f90, 0x17fbda5c, 0xfc05589f }, { 0x7b31e8a6, 0x489997a, 0x4d089d4, 0xd50af093, 0x14800bb5, 0x53c455d3, 0x98cced6d, 0xecc2029c }, { 0xf907cf0a, 0x497810b0, 0xfc8ae6df, 0x83e30032, 0x9b095de4, 0xbbede008, 0x6fb3b54b, 0x71d3db3b } }, { { 0x9bb8780b, 0x3261f1cc, 0xc0dad170, 0xbaa71eb4, 0xfca0ba23, 0xb097b1b1, 0xe332f19b, 0x3979954f }, { 0xbe1663cb, 0x1482e32f, 0x1a3800d7, 0x82427967, 0xd69d90ee, 0x3aabf8e4, 0x7081183a, 0x4195c4f9 }, { 0xa32a93d2, 0xbf16e958, 0x7977fda8, 0x4c3d9ac9, 0x2ebaa3c, 0xd32ec276, 0x604cda80, 0x4f35f72f } }, { { 0x7c69027a, 0x44d8b3c2, 0xb1080516, 0xe2d0ca28, 0x2d4cb7f8, 0x7bb43c84, 0xb403994, 0x6e6d1667 }, { 0xd62f181d, 0x9502dd7, 0x35a7ca44, 0x52d1d846, 0xfdd8cda0, 0xe80cfc6d, 0x93d8dd14, 0x3d58127a }, { 0x8bab5e9f, 0xca6d1fbb, 0xb67058ac, 0x6883b981, 0x99ab060a, 0x21d1adc5, 0x7e8fb18e, 0xaec4ab21 } }, { { 0xddd1af04, 0xa6d44d3c, 0xe4ba4466, 0xbb245781, 0x71825e4d, 0x785fb78, 0xa07f290, 0x82fe4a03 }, { 0x84d8bf7e, 0x99c4dea7, 0xd79b15dd, 0x9d7f32de, 0xc807e59a, 0xdba9a9e5, 0x657f62f1, 0xbb3cc911 }, { 0x1a6e441f, 0xf504708, 0x5db04116, 0x86896baa, 0x64b122e1, 0xa4f643b1, 0x1447a682, 0x93aa1f0d } }, { { 0x340d3647, 0x8cebfcda, 0x252c6233, 0x1d7d2fb7, 0x790d7fd9, 0x8b42a2a2, 0x87ec2db9, 0xa274e989 }, { 0x9a3ccec4, 0x1545e5af, 0xf8334e96, 0xfde718dd, 0x62792810, 0xd57bee4f, 0xfd8ef651, 0x87d0be49 }, { 0xa5014839, 0xdc285341, 0x9c690f6f, 0xeebb1a37, 0x9131b119, 0x5155dcb0, 0x105ccf34, 0x8f15d1c4 } }, { { 0xb5dfa2f9, 0xdb4a6cf5, 0x6b542103, 0x8fb5e6d6, 0xb911cf69, 0xe84e9c71, 0x968f2ecb, 0xc65512a3 }, { 0x5443a597, 0x27025fd4, 0x7fea8ea5, 0x30c5f5b8, 0x2fdd4328, 0xc4603290, 0xf323ab9b, 0x8a834540 }, { 0xd411ce9a, 0xe3f7d449, 0xf98d9bb6, 0x27f1d6aa, 0xac487e9a, 0x92644922, 0xcddd3136, 0x85438f1c } }, { { 0xd121bb3a, 0xe5e15860, 0xc817d2ff, 0x309ad484, 0x9295a690, 0xfc6e49b9, 0x12bddc9e, 0x43ca926e }, { 0x1e8dd77b, 0xe852476f, 0x9a0e887a, 0xf4a4fcef, 0x20dc7bcd, 0x145eaf5a, 0xfc40b0a6, 0x1eb9f89f }, { 0xd1a57f1e, 0xb0d3728d, 0x81298258, 0x60f439d4, 0xd17250b6, 0x7e12c6b0, 0xb8dc806e, 0x75e60f2a } }, { { 0x761317e9, 0x5c593522, 0xa280c700, 0x45ff72b6, 0x607f1a2e, 0x1361f9e5, 0x158bfc7, 0x6945a047 }, { 0xe1db874e, 0x1f27161b, 0x3e8ee4a9, 0x9332118c, 0x8453a2c5, 0xf38fccd3, 0x33fc245e, 0xfc8268b6 }, { 0x5e2d5c4e, 0x43bbac5b, 0x36e4f183, 0x9250d3f, 0xd20f54e4, 0x3683fa31, 0xa9a60755, 0x12fa85ff } }, { { 0x53a598cb, 0xdc14554b, 0xc76aac24, 0xff36222b, 0x97d9074b, 0x4534f38c, 0x6eef4dc3, 0xc5d9e124 }, { 0x5cb6b5a5, 0x7a8ea576, 0x279d1f28, 0x35eddc81, 0x1dc3db0c, 0x8a6c8b32, 0x31c165a9, 0xfba05b08 }, { 0x3e41d983, 0x2c82ccc9, 0xdb3525d3, 0x8bfaa136, 0xec1e0ddb, 0x78cab862, 0x42a4634, 0x55438107 } }, { { 0xd37d7625, 0x21ccb0a, 0x38b4875d, 0x1d228a2b, 0xa840a1a1, 0xf32af7ad, 0x39ac457, 0xa9a7456d }, { 0x8dee34a5, 0x3b84bc37, 0x9bd738e3, 0x80e8d65a, 0xec804c4e, 0x3cde82bf, 0x8ecc1f0d, 0x6d6daa1a }, { 0xa5337c4c, 0x97be0ea9, 0xe90b4122, 0x5563aa22, 0x9bfa0dbd, 0x3e7130b5, 0x90ed7232, 0x732f16f7 } }, { { 0x5b6c6967, 0xb1778099, 0xa28ca236, 0xc5a9b591, 0x5f02f372, 0xffeab7a2, 0xc793192, 0x31f5dfb3 }, { 0x346b9219, 0x8d35fe76, 0x483585c8, 0xcd7d12d0, 0x333d6422, 0x38fd57a, 0x17f31c8d, 0x9f33a4cd }, { 0x94e1d806, 0x1419988b, 0x5e7b957e, 0x9d6b30b0, 0x8b5b49d8, 0x829f0852, 0x29cf403c, 0xb312a1d1 } }, { { 0x2c01fb51, 0x4a8cfc58, 0x97ec7fe1, 0x5da0fcc4, 0x18385cb2, 0x30e72933, 0x5a3888a0, 0xa0d66526 }, { 0xb425338f, 0x219780ef, 0x5a70cff4, 0xa00360fd, 0x165d0b83, 0x304a8080, 0xc2e0b3fb, 0x3db8cf9f }, { 0x53a14238, 0x7011a5cd, 0x77de4644, 0xb580ef28, 0x2d478e8a, 0x5321fa2f, 0x5f7ac852, 0xc7ebd87a } } }, { { { 0xb5130a9d, 0x7da48565, 0x702fb638, 0x876f1da1, 0x9daba74b, 0x79413cb3, 0xab9153d6, 0xa83c47a6 }, { 0xe56ceebe, 0x95575a67, 0x6262964d, 0xd6a5eb8b, 0x87a9632, 0xd00448d1, 0x2c5bed7b, 0xc735916a }, { 0xf08424fc, 0x9cac912e, 0xcfbd5edd, 0x2fcadbfd, 0x69671c43, 0x72a6085c, 0x5388eefd, 0xc8ec2583 } }, { { 0x8c10d90d, 0xf8738f34, 0xfd5ae791, 0xe1bb40ee, 0x390281a6, 0x520741ee, 0x4cb1053e, 0x31ffe017 }, { 0xf8e6437, 0x7d5de2d, 0x12899f30, 0x757e6e7e, 0x75b08b57, 0x953a34dc, 0xf5da9b4f, 0x9e49d049 }, { 0x60b4d33a, 0x576ed203, 0x9fd5622, 0x107eeaf9, 0xc1ac400e, 0x3deff582, 0x98bfdaaa, 0x45466d64 } }, { { 0x992c544c, 0x926f6d29, 0x53a28ddb, 0x9cb132ca, 0x9b96272f, 0x4e4ff6e4, 0xbdd758e, 0xf695f5a0 }, { 0x9fa9395f, 0xc0084210, 0xd7ae0a14, 0xc9c3212e, 0x8b007109, 0xccfba676, 0x7ec8c5b7, 0xef760713 }, { 0x59000049, 0xa3dc877, 0xc4b31005, 0xe1a98b7d, 0xc375d39c, 0xbff30f7, 0x112fa314, 0xf69d48 } }, { { 0x422acf0a, 0xc0e52f8e, 0x6f8d2d4a, 0xca015733, 0x6006e8ed, 0x344a5728, 0xf64fd5eb, 0x1d853901 }, { 0xd9b57e40, 0xf6b5322e, 0x77d92faf, 0x31e9bb51, 0xd8270ef4, 0xaf623321, 0x20c77309, 0x2723a0ec }, { 0xd74ba081, 0xb83cc176, 0xbc1d7941, 0x427accbe, 0xe04ac095, 0xf141c440, 0x9bdfedaf, 0x9f759ddc } }, { { 0x533ee239, 0x77e475dc, 0x6bf18c69, 0x340a447b, 0xdf958bd5, 0x1ab8b632, 0xb4dd4f57, 0x678c3a13 }, { 0x9e421900, 0xe9a48ebf, 0x8dfcf5b0, 0xb9c5623e, 0x80ad7981, 0x4e214bce, 0xa82cf9ee, 0x52df4b41 }, { 0xf12e7a91, 0x38cd86d0, 0x58460e64, 0x41004007, 0x698cef6, 0x8527b80e, 0xf54a29c9, 0x2a188fc2 } }, { { 0x2a4df182, 0x2dca26, 0xa68de59f, 0xcd3397d7, 0xd03ca867, 0x8fe2e02b, 0xc7d5fe7d, 0xbac0ca52 }, { 0x75f83b0d, 0x92fc2948, 0x2a74a03e, 0xf787424f, 0xfa85a37b, 0xa78796f1, 0x2614857, 0xb528a6b2 }, { 0x746296a9, 0x5714eefa, 0x60ac6c04, 0xf676c7f1, 0x55287dd5, 0x7ebd5813, 0xf55d7ef3, 0x19cb4466 } }, { { 0x69640a73, 0x99134b73, 0x876c75bf, 0xcfb71cf4, 0x9ac4c2a4, 0x6636f7c, 0xf137f132, 0xa4531de9 }, { 0x24e0ebd0, 0x413c78c8, 0xf425e327, 0x8c27eea1, 0x9ee08310, 0x707b8b22, 0x5c92ac90, 0xb7054cc2 }, { 0xa1132213, 0xf29fdf05, 0x9f8390e2, 0xb635d118, 0x87aea412, 0xe1419162, 0x58d53272, 0x715eb164 } }, { { 0x13193688, 0x7ae9a3a8, 0x710e71a3, 0x75f8a6e, 0xbb786fee, 0xa845fc8b, 0x5c0e2607, 0xf111740a }, { 0x512fff40, 0x77beb1be, 0xc740f656, 0x7d8df24e, 0x68731fe8, 0x138e4156, 0x7ffe18e3, 0xe7948dcd }, { 0x9cf575c8, 0x7447599e, 0x133438af, 0x9409ebac, 0x3dba772e, 0xcbc979c9, 0x42c69598, 0xeabee6a5 } }, { { 0xc2dd0338, 0x79c46fd0, 0xebb2ddd, 0x6d9a36dd, 0x6e30312, 0x2c961e3c, 0x5e3770dc, 0x317b0175 }, { 0xc35dd6d2, 0xb7165ba, 0x61922084, 0x7215d07d, 0x421732cb, 0x9c6446ec, 0xe8a5c3f9, 0x2c1ccd40 }, { 0xd676ffa1, 0x220ff076, 0x23841288, 0x2bb5f396, 0x8dc07cc1, 0x94c9aeb8, 0xf69411ad, 0x845c1f0 } }, { { 0x83b43c26, 0x4a3a2941, 0xdff13bde, 0xa0c59f7b, 0x95c2b0cf, 0x3112e2bc, 0xd87e4986, 0x7b3319b5 }, { 0x70a1b1d4, 0x23e72b08, 0x987bd60b, 0xa8ed7165, 0x526ef2f1, 0x17026098, 0xca62a9fb, 0xf67bffb4 }, { 0x72af6409, 0xc5a80f1a, 0x722afce, 0xd5715498, 0x232d1bb1, 0xc3a170a4, 0x79e8a6e0, 0xcdefb5e7 } }, { { 0xda7b13a0, 0x17d3621f, 0xbb6f8b58, 0xf36e1638, 0x3e463df4, 0x358da373, 0xbff8af5b, 0x2900fa98 }, { 0xc4bb7f0a, 0xed7f42d, 0x7990c86f, 0x46897eda, 0x757ecd65, 0x9767cf79, 0xaa621046, 0xd604065c }, { 0xb2953288, 0x18bb9ff8, 0x644f92f2, 0x8e516f97, 0xd2822811, 0xf82f526c, 0x579329a0, 0x142f7b79 } }, { { 0xa3947ad6, 0xd9a470b2, 0xa742968b, 0x717edda8, 0xbc82f8d9, 0x96c3732d, 0xdf747156, 0x2714b3ca }, { 0xcebea0a3, 0xda201310, 0xdaa55cd7, 0x39da440, 0xa4db5d54, 0xba07fed3, 0xe5e78db2, 0xedc07a63 }, { 0x3d768b8, 0x4518d998, 0x9de9d8c3, 0xfe2baf26, 0x8a9c474e, 0xf76687e1, 0xd36930c2, 0x82a0817b } }, { { 0x6ef7b6f1, 0x748e148f, 0x8ecc6716, 0xe60c9302, 0xa5eddbdb, 0x374683a8, 0x25f19a5d, 0x92fe4600 }, { 0x2cb0411c, 0x46f9d564, 0xf3fe4339, 0xefe24311, 0xcaeb155b, 0xdca1e79f, 0x7f2de993, 0x1bd71b0f }, { 0xfc0d5369, 0xac104201, 0xeb1fddcc, 0xe10000b1, 0x667c6eba, 0x377d0360, 0x670c925d, 0xd5bf2ca } }, { { 0x9048b499, 0x5995d2bb, 0x9559de40, 0x5d9c38e3, 0x30d5538, 0xe58a1ec9, 0xe66ca949, 0x2aef4113 }, { 0x57581f8a, 0x8ce0b6e2, 0xb14aa66e, 0x26b3255d, 0x8991d3ce, 0xd2ce0af9, 0xaa385bc7, 0x76fb1a91 }, { 0x285373f0, 0x29907ced, 0x7a8c7451, 0xd29857d7, 0x501e675a, 0x2b296f05, 0xff95bb8, 0xafc8d44c } }, { { 0x7258edb0, 0x5192271e, 0x3e65af14, 0x92f31717, 0x40854a21, 0x48b9a6ce, 0xbccae7c7, 0x159f2a63 }, { 0xcff92361, 0x771dfecf, 0xc776da03, 0xed207d62, 0x59080484, 0xa9714a29, 0xb9142ca6, 0xe7dc2d70 }, { 0x3da6890f, 0xf6d75d87, 0x35089ad2, 0x14259baa, 0xd7a6c49b, 0xe9218688, 0x6dd52eb7, 0xb42cf19c } } }, { { { 0x4784bcf3, 0x1d25f7ae, 0x1c02a6e9, 0x6f976637, 0xfb655a95, 0xd5d6f298, 0xe81e2d90, 0x246b88f8 }, { 0x619b127a, 0xac403813, 0x66b27423, 0x244428e5, 0x125508c9, 0xd013e58e, 0x337414f, 0x61ad7c22 }, { 0x1b93d31e, 0x6f17fba4, 0xaf52b60a, 0x59a44890, 0x7adba6ac, 0x168ed7e9, 0x222a6cdc, 0x45fa5712 } }, { { 0xe2a0deb2, 0xf938ee2d, 0x44e04537, 0xea68515, 0x9aff0a8e, 0x8f623cbd, 0xf8ee7314, 0xb5a670d2 }, { 0x5c3b95b0, 0xba4f5be3, 0xcf8925ef, 0xb3b06e90, 0xe749c359, 0x31ed15f7, 0x5d7149cc, 0xff5d8b0e }, { 0x369e74c8, 0x3cefa57, 0x8264f339, 0x4c04a290, 0xbcb29923, 0x1d039596, 0xcbf83406, 0xba90971 } }, { { 0x1d1ebeeb, 0x83edebca, 0xb921439a, 0x6827fde, 0xebd121ea, 0x1b2274f8, 0xd71891e2, 0x86a11d75 }, { 0xd4f8961, 0x55b2ccbf, 0xcc2bd2f3, 0xc0375902, 0x530b7ea, 0xb283955b, 0xf01e991b, 0xe67cd3b1 }, { 0xb4cda433, 0x6b6212be, 0xd0b71029, 0xf52f96d6, 0xc2a8fa5e, 0xf2b8b156, 0xa5f29c21, 0xbb9f3d8 } }, { { 0xe3644e33, 0x5789bc84, 0xf7d1fc1d, 0xb3d5f0, 0x28a701fa, 0x4753499d, 0x3e3eaffa, 0xaf4aee }, { 0x9bf3b2a7, 0x7739c06e, 0xac22683f, 0x59be909c, 0x658b6561, 0x5489fe53, 0x7bcd3267, 0x125debf7 }, { 0xf95edeaa, 0x8fb17be0, 0x4855cb91, 0x32ed0e76, 0xe4f5f827, 0x4918702d, 0xcf9673e1, 0x395dfd81 } }, { { 0xce204687, 0x7cb0aaf6, 0x949e154e, 0xe8410cd5, 0x8b5eb292, 0x3e4c141, 0xaa36c55c, 0x54a353ae }, { 0x6c863001, 0x9002d3e6, 0xd51eff1f, 0x1a11e78d, 0x1b37ed3f, 0xe5ee17f6, 0x7ac48db2, 0x61231966 }, { 0x3bde2a34, 0x8cc082ca, 0xde4d439e, 0xe0fdcf76, 0xf8035906, 0xb239e8ea, 0x9353c4a, 0xb29db4e2 } }, { { 0xabe5e402, 0x89ef7735, 0x88bcaeaa, 0x8d669f23, 0x8bc8c746, 0xa40559c1, 0x8c53d54c, 0xa7af5ef5 }, { 0x4826be8b, 0xb7555ebf, 0x578142e7, 0x8e232287, 0xdbc35e52, 0xcfa33167, 0xa8de09c2, 0xe2eee6a5 }, { 0xa1a6eb35, 0x45c5e68c, 0x8cdd1f01, 0x34e6f6f5, 0x1cc45712, 0x59ce459e, 0x774f7dc4, 0xaeaf31c3 } }, { { 0x1542dd8, 0x7adea866, 0x861f353, 0x8a4c1bf4, 0xd930c13c, 0x500497fd, 0xf9419e1a, 0xd6adaf82 }, { 0xeac2ae3b, 0xcb789b66, 0x55897ec2, 0x157b46c7, 0x2619e20b, 0xf4ff98b2, 0x3da68d5f, 0xd1598c7c }, { 0x5b330cda, 0xd74e522f, 0x50194e6f, 0xaebc0f28, 0xab4f9aec, 0x147c2069, 0xf2c21595, 0x7e9bfb58 } }, { { 0x47cdf168, 0xa922c10d, 0x4943e63f, 0x3a2ee1d7, 0x29fbdf0f, 0x53e117ed, 0xf1604f24, 0x8162d959 }, { 0xfbf0458e, 0x5eb99463, 0xd9e4c99a, 0x75fd62f7, 0xdc11ff51, 0x6b9ee113, 0x98858e89, 0x54a657b5 }, { 0x6b3cb39f, 0x4a7c6cfb, 0x87f6c2e7, 0xac857305, 0x57f30266, 0xe1dcdbfd, 0xfd6e3a95, 0x3844c08b } }, { { 0x23a2038b, 0x46a73b0b, 0x388bf44c, 0xec72d706, 0x1cd7d728, 0x968ac2ae, 0xdd71b062, 0xf1c6656d }, { 0x39460eb3, 0x37d9ce33, 0x4e6720d5, 0xce901374, 0xb2aae1c1, 0x1ead65d3, 0x5cd64276, 0x5686a2bd }, { 0x77c31976, 0x29fea8c4, 0xf293c345, 0x2e935317, 0x837801d7, 0x9b692df1, 0xc115b7cc, 0xf5905d23 } }, { { 0xd00e53af, 0xdbb476fe, 0xf1c503b7, 0x3a594e2a, 0x2c468b9f, 0xc4790973, 0x7016038a, 0x9baaf49b }, { 0x576f0987, 0xb93b0f4d, 0xb5817a23, 0x4969e1a8, 0xc767d056, 0x2dd0c32c, 0x1a9ad0f, 0x470b960d }, { 0x78be565c, 0xe839c1a2, 0xecf9f8dc, 0x4b7793f6, 0x88b15282, 0x42f96a52, 0x568c714b, 0xd1916535 } }, { { 0xafe90e9, 0x1fee76fe, 0x195baf, 0x3e0b45f0, 0x63fa4f2c, 0xf0f4d670, 0xb2d4a63a, 0xc3be296c }, { 0x50b91515, 0xe0e53d3c, 0x4a6f9fbe, 0xff01911b, 0x4109e058, 0xd8e9d72e, 0xc6fd56c, 0x34759d95 }, { 0x2c6a1010, 0x3e9f6b8e, 0xd4981547, 0x8aa129e2, 0x3175602b, 0x2febd647, 0x32621325, 0x50d0c2c6 } }, { { 0xe414d529, 0x489c958a, 0xc34b0aae, 0xdfd81d1b, 0xc7639696, 0x759cdf15, 0xe8a5c698, 0x44e43734 }, { 0x73471ba7, 0xeaba050f, 0x9b8d1ce8, 0x47fca1dd, 0xcf8b4a9e, 0xd0d9d058, 0x2ec67df0, 0x5ee68390 }, { 0x33f3dbe9, 0xb7d134cb, 0xb0be030c, 0xf7e8c55a, 0x18152f19, 0x3067f90d, 0xfeed109c, 0xb2d2323a } }, { { 0xcf4a4b4f, 0xb83d8a79, 0x49832681, 0x1c8a965, 0xf51606bc, 0x50fd25e0, 0x70996f3a, 0xb6deb38f }, { 0x6e8496a4, 0xb86fd8b4, 0xe6582592, 0x2c930744, 0xaaf077f4, 0x19b04c46, 0x9e81ab58, 0x9deaac84 }, { 0xbeb28bf0, 0xc4e7b7ae, 0x51fbed83, 0xba8bbad8, 0xea68f7, 0x97f0d74e, 0xd5157d17, 0xaf7e041e } }, { { 0x806e6b62, 0xa297bc0d, 0xb64e117b, 0x74da5168, 0xcc7e24c, 0x8032444d, 0xf3689865, 0x999efb0c }, { 0xa03fefb8, 0x530c0f4, 0xd719cdd2, 0x5c5f39e6, 0x817bb46b, 0x3eb6c4f2, 0xa57f77e8, 0x58f260f1 }, { 0x61f55b68, 0xdc8d0984, 0x83eec05, 0xe40b55cf, 0x483ee348, 0x1a4d4d7c, 0xedf141e5, 0x1aea7e0e } }, { { 0x3f862f87, 0x707c9969, 0x73adee87, 0xc1389108, 0xd8751d6e, 0xf3a8ca5a, 0x317ba34e, 0x96e64612 }, { 0x18174000, 0x586b3f0c, 0x9b0f182c, 0x16dce4f6, 0xee92433c, 0x177bf1de, 0x1bf12bca, 0xadf71edd }, { 0xc91b27af, 0x912b30a9, 0xf75db74, 0xc7a4b13e, 0x611c3b68, 0xe2f58956, 0x36f6d35b, 0x28fffda6 } } }, { { { 0x5751f90f, 0x5341c08b, 0xc87bec16, 0xf6f12864, 0x5b80a898, 0x360f16aa, 0x561d0419, 0x3a1a954e }, { 0x509c8280, 0x87062576, 0x570435a8, 0xb933ffed, 0xb63059cf, 0xc5196e5d, 0xe7e17ebe, 0xac44ce76 }, { 0x5e24dd02, 0xa97bebc4, 0x1dd1ac10, 0xa3dc1491, 0xd78fe077, 0xc836cc2c, 0x21066f80, 0x7742d3db } }, { { 0xfedb6702, 0x9b4ad920, 0x8a075346, 0x7e4291c2, 0xb1375bf, 0xd8674fb5, 0xdbdaf69a, 0x949b4afb }, { 0x4c5a8e86, 0x1e6d56c2, 0xb35cf665, 0x7a47d8cc, 0xecc703da, 0x9208bf0, 0x9091577d, 0x6ce5829a }, { 0x5c94c6f6, 0xfe452fcc, 0x3a4f9c21, 0x939b4b99, 0xd624a5ec, 0xbf7c5c9a, 0x3fa2adce, 0x5b3ae43c } }, { { 0x31cffc09, 0x5257189e, 0xcf81eac4, 0x2a159639, 0x393044e3, 0x154ca3a, 0x1eb40a22, 0x87dfd91e }, { 0x0c405a, 0x88c6e774, 0x57253338, 0x1677c31f, 0xebaaf045, 0x805a3e5b, 0xae403faa, 0xf653f8a5 }, { 0x1cb356d3, 0xe393effc, 0x10d4c159, 0x3accc365, 0xf881876a, 0x486d3693, 0x11419cc6, 0xb98ccdee } }, { { 0xd35262ca, 0x6ad5903f, 0x6b931d76, 0xf336f925, 0x2014b873, 0xd79c386e, 0xfb6fb299, 0x6371d2d5 }, { 0x5e883cf5, 0xd4cc95e8, 0xb4a2df19, 0x11cd0676, 0x27697f19, 0xd0fa412e, 0x4adcb1f9, 0xb979e0fb }, { 0xf8bcdd62, 0xc7eae14e, 0x164a24e2, 0xcb20c5bf, 0xc559411e, 0xcbad70cf, 0xb6227029, 0xa216187b } }, { { 0x990896e4, 0xb13fa5de, 0x147dbb2b, 0x2fdfb9b0, 0xc50fe9d4, 0x11ca5882, 0xacb82029, 0xea5e1023 }, { 0xfbd6ee13, 0x5022ac4a, 0x6e8ba0d1, 0x3a0367a, 0xc7139e4b, 0x88c5a538, 0xb8547339, 0xe03a01ad }, { 0x34ca580a, 0x32c0d3c, 0xb3275689, 0x9edb749b, 0x4f31f72e, 0x9442d4f5, 0x19926f52, 0xbfa24d43 } }, { { 0x95413d6, 0x97fca7f4, 0x70c91856, 0x1f781827, 0xecf41c44, 0x41b2cc4b, 0x8b100127, 0x7a632a65 }, { 0xb25c7ef1, 0x433f869f, 0x33aae72, 0xf78f221, 0x26bc6455, 0x143ee145, 0xd469b7d1, 0x339394da }, { 0xd94f3aad, 0x21068db2, 0x183b135c, 0x1a5bf5f9, 0x26e19999, 0x38191060, 0x423fea8a, 0x5bcd8551 } }, { { 0x37b76f0, 0x4117fbd3, 0xe4843e00, 0x7ad1ae0b, 0xddd1b1de, 0xf9ea5c28, 0x1071d3f3, 0x2a266c47 }, { 0x9338a203, 0xfd102e32, 0x7a258ff6, 0x1ce1ab05, 0xfaa10083, 0x174fe529, 0x6b685446, 0xee7b25f6 }, { 0x8928e053, 0xf3ad423b, 0x7dc2414e, 0xa60af87, 0x609a8bb1, 0xe55854a2, 0x26074210, 0xa98f935 } }, { { 0xdc2193f0, 0x6238438, 0x92dbca53, 0x3ed2b80d, 0x6c0a97e8, 0xb9409012, 0x78d3b1ee, 0x447935d2 }, { 0x3cfde653, 0x1a2b86ac, 0x43cf7bff, 0xe897847d, 0xb94a8377, 0x2632ad84, 0xae9d4aca, 0xaf2b6df0 }, { 0xa9107cf7, 0xe28c65a, 0x88a97475, 0x322a2c5, 0x87ed294c, 0xd0a1a055, 0x58853047, 0xb3e677a9 } }, { { 0xf9f5cf24, 0x56623cbf, 0xbf81d5a8, 0xccabe3c, 0x7155af6, 0x8c7d5c28, 0xa48b5db6, 0x49f8eed5 }, { 0x2a31a19e, 0x859328e5, 0x83daf61b, 0xa86d4d43, 0x1bb636ee, 0x8f61298d, 0xd49a8b62, 0x235e749f }, { 0xeac7013a, 0x71e3542b, 0xdfaa2a2f, 0x3ebead2c, 0xc721513, 0x3498f3ce, 0xeadc5c33, 0x2b77ab9c } }, { { 0x96cd14b4, 0xe1e7fe45, 0xb1ba05c9, 0xbed6e568, 0x711ecc46, 0xdbaa3745, 0x2fffe274, 0xa23170ab }, { 0x84ba2cae, 0xb384fb21, 0x7e4fd4c7, 0x79f74cb0, 0xcd4d526d, 0xc465ff36, 0x1a7a4ef9, 0x552579ee }, { 0x3b92eb88, 0x65b206e0, 0x15c96375, 0xe89fc10c, 0xe97543e0, 0xaa241068, 0x5778fb7b, 0x27a4ee55 } }, { { 0x65095f6a, 0x25a34aee, 0x52acc5af, 0x3e11ed51, 0xc504bc68, 0xd11889cb, 0x72793c4d, 0x4d4990db }, { 0x3f217ae9, 0x276b7b, 0x51ee21db, 0xfccff460, 0xa8bcd162, 0x4e3c4e05, 0x3a1a822d, 0x86735a21 }, { 0x5bc943cb, 0x231dbfdb, 0x9f196540, 0x82632baf, 0x51f9adf0, 0x54171ebe, 0x2c96192f, 0x266075e } }, { { 0x12d6bb7f, 0xd84ec38b, 0xca95319c, 0xe1ae2aa1, 0x9d141853, 0x5ce75f0f, 0xfce6aa5f, 0x9fc7607 }, { 0xd5d2e736, 0x714a88b, 0x721cb620, 0xcb2e16d3, 0x54ede442, 0x2076c40f, 0x520fe90e, 0xe9b9db55 }, { 0xc5eadbb4, 0x6a9a91d9, 0x1af1c0d9, 0xa2c2cc90, 0x361a41b1, 0x31b18ac1, 0x132f6f42, 0x9fac64bc } }, { { 0xf1b7156d, 0xd84d8d9a, 0x7bc6cb3d, 0x9007b407, 0x9a315e11, 0xa3ef8bda, 0x4220d29a, 0xdadcce04 }, { 0x9de92475, 0xaad57f3b, 0x83d55792, 0x45487158, 0xdf14188b, 0x364e81d1, 0xbc329657, 0x49e861cd }, { 0xead6ca96, 0x5dcccadc, 0xaaf6f98c, 0x3284fbc1, 0xedd59c8, 0x4dc57440, 0x32b22baf, 0x8cee4b39 } }, { { 0x6ef69225, 0x8876cbd6, 0xdc20bd5a, 0x2c3006b2, 0x7e86d78f, 0xcd8d4df2, 0x8ee6dae1, 0x1d2abdd9 }, { 0x3334ffd3, 0xd644f9e4, 0xd65f6bd, 0xeb5ec7eb, 0x5fa2e075, 0x64abcecd, 0x4c86f16f, 0x8751fa9e }, { 0x8348b347, 0x5b284b97, 0xe334ac61, 0xc987cfd7, 0xf7020bfb, 0x63c919eb, 0x8685853d, 0xceec0165 } }, { { 0x225e2703, 0xae841cd7, 0x63826f, 0x8a8858da, 0x2ec5ce36, 0x7d99e7ad, 0x862f1483, 0x653682c6 }, { 0x9075372e, 0xa7142cbc, 0x23e749c3, 0xc90147c8, 0xcc304533, 0x46b87799, 0x2a018733, 0x926c4315 }, { 0x47923e5a, 0xac68d7f4, 0x208c4691, 0x541f31b0, 0x6f7a6157, 0x16d31cf9, 0xde024dc7, 0xfa6c7cfa } } }, { { { 0x52439da4, 0xf56f11f2, 0x96cf416b, 0x86148dc4, 0x120d3cbf, 0x485c2894, 0x81d0f906, 0x570678c4 }, { 0xc4ac0c8, 0xf97e9a67, 0x4008401c, 0x44f29456, 0xc0e7b134, 0xcfd1c0b, 0xb8e8bca9, 0x2c52ee05 }, { 0xdb789b7d, 0x38d60081, 0xa4470ed, 0xeca7e730, 0x6f2058e0, 0x53be89dd, 0x26157529, 0x913a46ab } }, { { 0x28b4266e, 0x4dde70c7, 0x5fd89633, 0x13b83503, 0xb4a243d, 0xd9e86812, 0x712827f6, 0xf9caa66a }, { 0x2f86e6c5, 0x10a84780, 0x6d655af8, 0x8cf0ee0f, 0xd415c418, 0xcfa7723e, 0xdbeb9959, 0xa8bceb2e }, { 0x23a1e15a, 0xad3f61c5, 0x3081ef13, 0x59b31704, 0x126bb12d, 0x8508dc11, 0xede94bc8, 0x3554c666 } }, { { 0x9970128f, 0x61b5f1ce, 0x545cbbb2, 0xd912dacb, 0xf02cd169, 0x7c4cb4f9, 0x23822e5, 0x47bf5e86 }, { 0xd8428ab8, 0xa5176944, 0xde311715, 0x7356fab5, 0xc2fc87f3, 0x9ed48a04, 0x38a3e486, 0xd1df5489 }, { 0xb87dc3aa, 0xfa1b9047, 0x510c9e93, 0x9441b19a, 0x3a53778f, 0x1e7407c3, 0xbd38e768, 0x1a878aac } }, { { 0x9da4edc5, 0xf5499fec, 0x2359f087, 0x8e93e6a2, 0xb9f3e576, 0x4da9dca1, 0x17c2c29e, 0x96ca0bbb }, { 0x9c6caa61, 0x7bea7e8a, 0xb1de13d5, 0x5181c5c2, 0xfc2f1d9b, 0xf6ebb6dd, 0x6c0645b7, 0x9e4480c7 }, { 0xeb960d00, 0xafc3dbb2, 0x2348c22, 0x95b0c252, 0x7186d1e0, 0xb21e300f, 0x9773c810, 0xe73375dd } }, { { 0xdf351838, 0xfcf8c1b, 0x4a3bafb8, 0xfb872ed5, 0xa8858367, 0xea14f024, 0xe01bef3b, 0x35695cb9 }, { 0x33b7e269, 0xd1cf305, 0x46a70f0c, 0x21823c38, 0x3beca0d6, 0x46906a46, 0x8482db46, 0x7e901edd }, { 0x4b99eb0f, 0xb097ddd4, 0x8ef9ef22, 0x75513698, 0x6769ff4c, 0xe6cbd9cb, 0xe33c21c7, 0x4e735182 } }, { { 0x32cd9c03, 0xb3e85a7, 0x7cbd677a, 0x26ce5ea2, 0x1e352486, 0x4a7baa, 0x57c3b5ef, 0xe01fc999 }, { 0xe490e5a2, 0x94b95157, 0xfe56546c, 0x501e2f27, 0xc31183f1, 0x449cf02f, 0xf4c297a0, 0x8d6f5429 }, { 0x3334dec1, 0x989dd8d3, 0x940ec8d2, 0x892895f6, 0x8597ec51, 0x8b8fb550, 0x90acda4d, 0xdd1ac428 } }, { { 0xa525576a, 0x554781bb, 0xe090b064, 0x5ea33c4d, 0xd95a6f4a, 0x682ad45c, 0xf53b82db, 0x32c18469 }, { 0x78dcf544, 0x40baf6cf, 0x3f67d168, 0x55e7c420, 0x5b543ea1, 0x7473631a, 0x864b0b22, 0x82459dc1 }, { 0xfc48fefc, 0xd4ea168d, 0x92c212ac, 0xb1655e49, 0x1fe02b62, 0x16d59560, 0x806d569c, 0xf0d3a6d3 } }, { { 0x72e71df2, 0xe9c38685, 0x10c5d0a3, 0xaa02b600, 0x95a66110, 0xee61a901, 0x7b82f859, 0x5c241b27 }, { 0xcea85678, 0x73e0a0f4, 0xb169c008, 0x6c84bee9, 0xbb253a81, 0xd0afe753, 0x7f191eb7, 0x389f448d }, { 0xc485a54a, 0xef615789, 0x47b651b0, 0xbcc0f720, 0x842db479, 0xc2676df4, 0x192c44fd, 0x6068b767 } }, { { 0xc220ade3, 0x3d88367d, 0x8e0f72fd, 0x487ab586, 0x777622ae, 0x4b762970, 0xfd8fb7e4, 0x64b1e0a }, { 0x2c95fe1d, 0x8995f3ae, 0x4f7746e5, 0x9ae9305c, 0x88606f56, 0x2d77c2fb, 0x989fa991, 0x9ee1c58c }, { 0x2e1dced5, 0x8abb703d, 0xa6f448f9, 0x6452d39, 0x805bacb, 0xe7a64313, 0x72581b80, 0xfc43f5d5 } }, { { 0xbb747236, 0xa0f32b0f, 0x5c15a63e, 0xd5d9a9aa, 0x35da0418, 0x6e158310, 0x4218cf3e, 0x604811dd }, { 0x5f9a017a, 0x5ad41b8d, 0x9e6a65ac, 0xf0aec1b2, 0x61110dca, 0x8d04fb2b, 0x74087c59, 0xdebea418 }, { 0x9a5a278, 0x719a8f24, 0x67e70e85, 0xa2220730, 0x67760a07, 0x4b187d82, 0xa9e1767a, 0x53b08ab6 } }, { { 0x26ed672d, 0xb3ddfe12, 0x689d39ba, 0x54390636, 0x8d629d57, 0x7bd16310, 0x796b8def, 0xcf691f56 }, { 0x2707e497, 0xb5fd16e9, 0x881f8598, 0xf7e8cbbb, 0xe8af4b9b, 0x75cede12, 0xdc232f29, 0x400eae7a }, { 0xa0215da4, 0xb9c61442, 0x2d133268, 0x2098373f, 0xabedbad4, 0xc80d6808, 0xcbe53e23, 0xd000415d } }, { { 0x54b4b864, 0xd25ec2e6, 0x20113f2b, 0x25acd9d6, 0xe45402d6, 0x3d3497e7, 0x76d2c050, 0x8479f610 }, { 0x7002806f, 0xe7dd33db, 0xd4881169, 0x1beab85, 0xa2d695f1, 0x819b1908, 0x3c6d4f5, 0x56cceb6d }, { 0xf5dfc237, 0x184d9728, 0xc5035597, 0x2f243ee7, 0xa4e0779d, 0x8f16653d, 0x1822b089, 0x70d01fcf } }, { { 0xd20018ce, 0x3bf22303, 0x99e28b0e, 0x62d440f4, 0x27575c6, 0x5bc9c69d, 0xb180489c, 0x8203052d }, { 0x9217440c, 0x3a49e6fc, 0x324c5a11, 0x178e1c8e, 0x87b595f6, 0xc5fa6b19, 0xb4ab00ef, 0x98b5a010 }, { 0xe71761c3, 0x2873790d, 0x8d2297d3, 0x22b250e3, 0x2cb7ad2b, 0x6c0a20b6, 0xc220a372, 0xc50f83bd } }, { { 0x22578249, 0x31e3705c, 0x2f91dafa, 0x954314b2, 0x1f898c53, 0x86582602, 0x1916d6d1, 0x99a0f56 }, { 0x3538fbad, 0x4f4fea71, 0x8c5b6634, 0x6259e408, 0x78f75f2d, 0xaae79749, 0x8ec7c53a, 0xb2bd4c6a }, { 0x9e704a51, 0x109eac7c, 0xe49c9426, 0x50093bed, 0x1599ec18, 0x89fa3dff, 0xff52be1b, 0x1bfe9d58 } }, { { 0x67471791, 0x329e3304, 0xe6b0b945, 0x6a6a448f, 0xb93945f3, 0x8f7f3e01, 0x4c9e85c4, 0x9232b238 }, { 0xc69e4488, 0xf2fbe98d, 0xb91a80d6, 0x947116df, 0x637784bb, 0xe6f4ecc4, 0x30708ac7, 0xb0d8b448 }, { 0x12adb199, 0x2cf5b643, 0x680605d6, 0x3e2703a8, 0x36cd7c77, 0x2e2b5b3b, 0x9e647fe1, 0x82d547f2 } } }, { { { 0xc3d80905, 0x3d8927c5, 0x35cf06e0, 0xb3f69925, 0xc00b7325, 0xc7d2577a, 0x8c052a6e, 0x78911433 }, { 0x3bbb47f2, 0xe1230e7f, 0xac9b673a, 0x629712a0, 0xd645753e, 0xd949864a, 0xa6f62bcf, 0xd0d91e25 }, { 0x9e40cf2, 0xe77d0415, 0xb347758a, 0x7d8d96e3, 0xf219f245, 0x2fa8e115, 0xe9d61771, 0x3edce141 } }, { { 0x5ffbf3a2, 0x10790c0d, 0x28c39bfe, 0xeec4359e, 0x4d12d144, 0x13cd7b0d, 0xbb27498d, 0x1a50efb6 }, { 0x5e50516, 0xbab6735e, 0xdf9ff9cd, 0xf4836b34, 0x1ed07e1, 0x6fbcf53b, 0xab464ee6, 0x8b7137d3 }, { 0xc085671a, 0xe3a5303f, 0x66a92328, 0xea580a86, 0x88f310bc, 0x8983e4e7, 0x35ebbd99, 0x3531b457 } }, { { 0xd8c6fb4a, 0x11139cce, 0x945ff13a, 0x696143cc, 0xc043ca24, 0xd9637f6e, 0x3d1140d2, 0x45bf2d29 }, { 0x2a03481f, 0xe3232d5e, 0x420cc103, 0x24718135, 0x97af0952, 0x2d5dddc, 0x80539988, 0xaf6938 }, { 0x56eb2075, 0x8f51d2ff, 0xc366f26c, 0x1da05f27, 0x7b15d4d, 0xd78b527b, 0xf8199ed4, 0x95e4eb46 } }, { { 0xd125d09, 0xb235e02c, 0xbfefb5e9, 0x6952ca69, 0x4ae1b21a, 0x30196838, 0x580ae114, 0xc4f51c24 }, { 0x7a5390be, 0x8be60a48, 0xd9da0c7, 0x8b4c2e26, 0x43657fd8, 0x9053f69d, 0x228d12e8, 0x267e73b7 }, { 0xc17ce81e, 0x442fc02d, 0x5431804f, 0xc1aec2a5, 0x94739762, 0x3a42366a, 0xaad2fbd2, 0x9001df54 } }, { { 0x301d6c69, 0x1556b9a4, 0x504cfbc4, 0xff4b1796, 0xea1b1f38, 0xf1704505, 0x1c840c4d, 0xba7d7080 }, { 0x61aede8b, 0x8a522f2f, 0x92b529e0, 0x9043ba25, 0xc745a4d, 0xc176cf53, 0x35961acc, 0xb66002af }, { 0x2a0877d0, 0xc691c77f, 0xb7786a57, 0x28ddb93e, 0x4f9afe98, 0x8e20cacb, 0x58cc8981, 0x8455d2c1 } }, { { 0xb4f9bd5b, 0xe389aa9b, 0x4716c17b, 0x32f0bef2, 0x75d9a5e8, 0x8ec79c7, 0x5533762b, 0x1f71f61a }, { 0x762d64d3, 0x2cf9c283, 0x95f6a2cc, 0x18e8f4c1, 0x2acb981a, 0x8f82ea63, 0xb345e9f0, 0xc8ca2b86 }, { 0x211d0bcc, 0x73ea4001, 0x258a90be, 0x25998c54, 0xf04e12ce, 0x43fd7b92, 0xcd9d7738, 0xe2ec1faa } }, { { 0x45c20d05, 0x82932065, 0x7f8572c1, 0x4e31a707, 0x9b7fba6, 0x4214af41, 0x7a46291a, 0x7f522f79 }, { 0x366edc15, 0x66bc5f02, 0xeb493558, 0xa77e9c1d, 0x10a7e331, 0x8d51ee9d, 0x7598f34e, 0x75253e78 }, { 0x52953e13, 0xa01de2ac, 0xc89e1861, 0x2516acbc, 0x7be643d6, 0x5effa61f, 0xadbd63d3, 0x5dc5994f } }, { { 0x6a8c4d18, 0x281e6cfc, 0x9db81937, 0xf4393324, 0x38cf3f63, 0xe4f1b703, 0x3c1ce189, 0x34c51ccb }, { 0x68d7a9a9, 0x4942a2c7, 0x281e219e, 0x2da04dcb, 0xb224112a, 0x9774f4a9, 0x4c9161f3, 0x12cc522c }, { 0x3314d4f9, 0xcb9202a9, 0x2afd0f33, 0xfecf1ef3, 0x12c68315, 0xa1cd3efa, 0xb641c4e2, 0x8695745a } }, { { 0xe0e8adfb, 0x6b02e060, 0xffae903a, 0xc2058064, 0x34f5ffe0, 0x92981e8a, 0xaacf4205, 0x89f0f41d }, { 0x61e4aba9, 0x9d03ee7, 0xdfd4e396, 0x8baa2272, 0xececb99, 0x378eb676, 0x69d05c66, 0x1bd5ce9e }, { 0xc3b187c9, 0x13d54312, 0x5a7a7a67, 0x2c044e4e, 0x8541389f, 0xc3d6cc23, 0x325a14cd, 0x111054f9 } }, { { 0xcf07e807, 0x69c92920, 0xd0d0d834, 0xc3982399, 0xb3d2fa, 0x8e23c3d1, 0xcaa83c48, 0x9d20a6fe }, { 0x690c592f, 0x1aa75560, 0x4193fed5, 0x99965dc6, 0x7fe11647, 0xd3b78605, 0xd2885537, 0x8441c1cf }, { 0x8be2853a, 0x88434b95, 0xdafbbded, 0x5a81597a, 0x699b449, 0xdc3cb3b3, 0x25a471d2, 0xd974dc9e } }, { { 0x10bc3712, 0xd1ac058b, 0x1b92f422, 0xce1f116d, 0xac55e1d, 0x1687e2fb, 0x1695c522, 0x85055020 }, { 0x7f99f5b5, 0x7e0a6349, 0x55bac2e0, 0x10d27b66, 0x6c2cce38, 0x2f61b25b, 0x5c3a050e, 0x1c3d5858 }, { 0x96f8ca71, 0xa5afc6ea, 0x42e22c0d, 0xae11ec, 0x9ed0af14, 0x9a7a476e, 0x466e50be, 0x30df1168 } }, { { 0x4adb1678, 0x9884f4e0, 0x7c3672e7, 0x7a81d871, 0xcb71a907, 0x426ce8e9, 0xaa290bc0, 0xb00ab6cb }, { 0x2aefcb5f, 0xd79b8f39, 0x14feff98, 0x121b917b, 0x7cdc0bcc, 0xa483624a, 0xb876562e, 0x5268b8c6 }, { 0xd2f1c125, 0x86404f14, 0xbcd94259, 0x6f73eddd, 0x62a4d997, 0x234b4ef8, 0x7f6a42ad, 0x27306215 } }, { { 0x85303751, 0x8e4f8d9b, 0x59982a6c, 0x8543577e, 0xed034345, 0xfa2ebc1f, 0xb2995ab1, 0xa77816b2 }, { 0x9e41ad21, 0x17169bb, 0xd686b46f, 0x9be306c1, 0x400f0326, 0x7621df65, 0x69e85f4a, 0xe441d93f }, { 0xea06c1f4, 0xb4200cac, 0x1c4be5f9, 0x46972c43, 0xecc72bbd, 0x2510d25e, 0x6025b718, 0xc52ccd26 } }, { { 0xe19d0a7e, 0x9d8cb8bf, 0x52a91647, 0xfed62dba, 0x1f29f01e, 0x4fc8abbe, 0xb5f735b6, 0x6995ab09 }, { 0x1002fe52, 0xf36e0843, 0x18ddbe7f, 0x8c17f75d, 0x13c1f3d9, 0xdbd63220, 0x7919f882, 0x5ffef6fe }, { 0xbc563863, 0xbec39123, 0xc57a87d0, 0x827cc9f2, 0x9dc0f586, 0xd8a842f1, 0xdfc2087d, 0x9b459de0 } }, { { 0x28008565, 0x938c6139, 0x4f6ba756, 0xf4b382cc, 0x3ca33704, 0x52f249c8, 0x7e57bef7, 0x46858d20 }, { 0x9e8624d2, 0xf6c1a3c5, 0x932a3104, 0x6fbdbb7e, 0x57ed5c36, 0x57ff4977, 0x4fcd2e99, 0x6c4334cf }, { 0x76b1a084, 0x49bc32f9, 0xb1bd6ea7, 0x67331cc5, 0x530ee08f, 0xf7608f1a, 0x298f7752, 0xd5a88e3e } } }, { { { 0x75b8dd24, 0x71b3a456, 0x7d092108, 0x32ba307d, 0x5c7fb77d, 0x7f3a01b9, 0x22be8552, 0xa98d91e0 }, { 0x909ae918, 0x196a3c07, 0xfc56f0dd, 0x416c6631, 0x210457db, 0x7cee54d3, 0x500d8889, 0xd52598f2 }, { 0xd5738e90, 0x4f3e7a93, 0x337529af, 0x7caabe5d, 0x49c520c2, 0xe95bddd1, 0xf10c8fc3, 0x64c9369 } }, { { 0xa085da11, 0xbf239601, 0xb2d7d5b0, 0xaeb03466, 0xaf203709, 0xeb7ddd38, 0xfd267686, 0x9f6510a6 }, { 0xaafb57a3, 0xb1835d4a, 0xb5737eda, 0x172904e7, 0x9e414469, 0x634f34a7, 0x2c73de88, 0x25951f1e }, { 0x4272d789, 0x55325fa7, 0x9c70386e, 0x3783f753, 0x1ce727b4, 0x1134847d, 0x2d3e3797, 0xa7ae10f8 } }, { { 0x9121ed45, 0xd8b6a397, 0x2aaa429f, 0x6c2bd443, 0x93876d33, 0x7f42f378, 0x2d89cedb, 0x82650538 }, { 0xa217b2ea, 0xea4c5d54, 0x6b3e45d2, 0xb105d1d6, 0x7c6f407b, 0xf2396678, 0x73ac177c, 0x56ee8d13 }, { 0x516ad0e, 0x557101f9, 0x20a71e8f, 0x68dc0867, 0x3ed2338d, 0xb01cd861, 0xf3663d28, 0x92ce691a } }, { { 0x4753d37e, 0x4133a130, 0xa05d7626, 0x3fa2e3cd, 0x9b796607, 0x3dd66823, 0x15967046, 0x9f3781c3 }, { 0x891c5248, 0x4539a760, 0x9dd34d1, 0x868c7f73, 0xafc2b161, 0xd80bd175, 0x883c7c83, 0xda7222b6 }, { 0x1f6ce43b, 0x2675392e, 0x48e41708, 0x61969847, 0xebeee417, 0x20b110e1, 0x7631f97b, 0x9e8ebad2 } }, { { 0xbbe08d50, 0x3e709f68, 0x27cf8fe2, 0x762e5e27, 0x50011e94, 0xcac68e99, 0x73a14e1a, 0x95132350 }, { 0x245ba752, 0xa2318b, 0xdfec985b, 0x282abfe9, 0xfae05890, 0x23762829, 0xd42702f3, 0x701a7bb0 }, { 0x6f52e3cc, 0xcda0b40a, 0x4a8a130a, 0xa77b9146, 0xfe8eef54, 0xbd813b1c, 0x21a3cb36, 0x97ce7286 } }, { { 0xb2d59788, 0x1818a2ee, 0x4492c174, 0x1035083a, 0x7275aa48, 0x5aa6b64, 0xa0d0a613, 0xf66871a0 }, { 0x3bb5c767, 0xb6ac8a8d, 0x3394b4e1, 0x87a8a901, 0x214dcd26, 0xc8342855, 0x9a813a19, 0xc35709b3 }, { 0x2746c53c, 0x1008c744, 0x91c057f8, 0x74a2631d, 0x3293aaa1, 0x490097d6, 0x988c0950, 0xe96c592c } }, { { 0x53b2baee, 0x8024ba17, 0x42543937, 0x1a5a65af, 0x4b491c8c, 0x6d157cb2, 0xc993762e, 0x2573bfc6 }, { 0xa1334807, 0xaa62d7e8, 0x2b9eca18, 0xbd60070e, 0x4899a333, 0xf44674cd, 0x7e802ec7, 0x314e5e9 }, { 0x200da64e, 0xfc596c71, 0x9c079dd6, 0xbaae6288, 0x6f80c719, 0x48fd1580, 0xe19e7f7a, 0x446509a2 } }, { { 0x4e8c0cfb, 0x921243d6, 0x34cbead8, 0x13534d85, 0xeb7772ee, 0x509e5438, 0xd46d95eb, 0x65bf2ae0 }, { 0x611d58e4, 0x12c4ee0, 0x5451a006, 0x5c0dc671, 0x156e095c, 0x35e48015, 0x9419b622, 0xa28efebf }, { 0x7f5bca7b, 0x7f864ec3, 0x8187b9e6, 0x21d1294e, 0xf4ce34ef, 0xc07bbc83, 0x97af0138, 0xfd595324 } }, { { 0x678c4f9e, 0x8ea5c649, 0x34a76b0a, 0x73869a7b, 0x68973234, 0xc390fdd0, 0x4829c1c8, 0x4d12d287 }, { 0xbebd16a3, 0x43eda23c, 0xfab16247, 0x15948f40, 0xefbd76b8, 0x618c24db, 0x6e7c78d9, 0xcf82c4dd }, { 0xe00acac, 0x4d3c9b83, 0x22cd297a, 0x306b4f4c, 0x3f057843, 0x4db9fa47, 0x723b36f6, 0x37a518a } }, { { 0xde196b24, 0x97d9fff4, 0x6e4b941d, 0xc36329fd, 0xf1dbbc50, 0xcc50ce49, 0x7646a1ed, 0x2c1c9c45 }, { 0x2287e8be, 0x6c87abea, 0xa5cfaeba, 0xe69f6818, 0xf020c14b, 0x9256bf3, 0x9b899d6c, 0x8072d4eb }, { 0xd7aef33, 0xe40f1806, 0xc4096371, 0xe8f1fc34, 0xba379bdb, 0xfc1921c4, 0x9bd3a3f2, 0xb4d335ae } }, { { 0x27a5dc3a, 0x42699fc2, 0xa0b9907d, 0xc1f590e4, 0x74766d5e, 0x80862d24, 0x140bdacd, 0x6444a28c }, { 0xc63a3532, 0xee270328, 0x73ee50f1, 0x8e541c17, 0x5bbfdecf, 0xc413e728, 0x4b0e7d71, 0xe66209fd }, { 0x48a0a7c6, 0xbf657c6c, 0x58051722, 0xc47de4df, 0x8ef610e2, 0xe05d5b93, 0x1bc089c9, 0x35de1314 } }, { { 0xba525984, 0xf20eeedf, 0x4d894dcb, 0x61b15769, 0x98dd47ae, 0x59745a5, 0x4b426d78, 0xccd084eb }, { 0x3217e49b, 0x28d2a8d2, 0xb848f7d2, 0x608b5e0, 0xff925f9e, 0x6dd2d698, 0x316b00e9, 0xfb33cbe0 }, { 0xeb8a45c9, 0x5f4429ce, 0x95eacce2, 0xb135f420, 0xed4bd2ae, 0xf4abb569, 0x50fc1900, 0x2fe185c1 } }, { { 0xb7dfbbc5, 0xe39c76dc, 0x503a855, 0xa1b1c903, 0xbd94c511, 0x6d00802e, 0x6b23f250, 0x16a202e9 }, { 0x9601c39d, 0xe5c80b3e, 0x6b330f29, 0xd035e03, 0x2cba7386, 0x6575bbeb, 0xfd83ecb0, 0x8045c731 }, { 0x1d6acae6, 0xf50aee85, 0xe5c9a2d2, 0xa78c834, 0x9f05103e, 0xe98fed97, 0x15fbac2b, 0x63975fb3 } }, { { 0x4d1d31a3, 0xb8326071, 0xf9f03e0e, 0xd274082e, 0x6739442d, 0xe6c4b67c, 0xb413d2b5, 0x9a09f21 }, { 0x681efa04, 0x71ec4bae, 0xa1838463, 0x16d33ff8, 0x563cacde, 0x8c85bfee, 0xef943924, 0xa5b45735 }, { 0x133c3fe2, 0x831458dd, 0x2f28f24a, 0xf5da414f, 0xdc82c5ff, 0x16e247f3, 0xe1d1170d, 0x6dcc4747 } }, { { 0xa1ddedb5, 0x3790d011, 0xb1986a38, 0x543b3a93, 0x946df40e, 0xbb57e737, 0x5999f440, 0xe5643fb1 }, { 0xe818de0e, 0xd7926230, 0xb2dc603a, 0x4dca5c64, 0x2699a0f8, 0x5917a2f6, 0x59c19d8d, 0x78513441 }, { 0x75ff8109, 0xb8fe065e, 0x7dee2b16, 0x4939c05b, 0x5fe417e8, 0x34b980c7, 0x79df08eb, 0xee088c34 } } }, { { { 0x30af4a, 0xb476b6ac, 0xb589dcec, 0x37d3e638, 0xa79717bb, 0xb3e80681, 0x2ab269cd, 0x491cae07 }, { 0xa51ab322, 0x73356917, 0x2ced6129, 0x722714d6, 0x498a9c51, 0x4d017d68, 0x1c71af0, 0x5dbbbe6a }, { 0x10aa601f, 0x8cfa0c21, 0x1696338c, 0x99db98ca, 0x4580a166, 0xfb64bc68, 0x6fb0d104, 0x821d503d } }, { { 0x8c6d121f, 0x727dc943, 0xd9650ab7, 0xc0a6237c, 0xbc10e7f6, 0xf4ea442c, 0x69ba1d6e, 0x23d9afb6 }, { 0xaf61f0b8, 0xf8d3c683, 0x5f002b93, 0x22c5957b, 0x62717f64, 0x74508c11, 0x468d546a, 0xa4fb54c2 }, { 0xc446a09a, 0x94ae4fde, 0x60ddc0e3, 0xc422d9d6, 0x9a983658, 0xa7ffb2ba, 0x90d3cd50, 0x1c4b58f0 } }, { { 0x443d65f9, 0xacd5eaef, 0xa35e7964, 0xc9d70ffa, 0x7043ce63, 0x11a812a3, 0x5c8521d9, 0x29838d0b }, { 0x6cd9a126, 0x7555e94a, 0x27ff6278, 0x7ca00c50, 0xf4c97c17, 0x1522e372, 0x200f23df, 0x7e4fadb3 }, { 0xbf3847aa, 0x8ed54094, 0x903565f9, 0x5fab8c67, 0xfcc3c801, 0x1211649c, 0xa3899481, 0xe27307bc } }, { { 0x93fc366f, 0x30e5322, 0x58284bd3, 0xb678cdf2, 0x782ab59f, 0xe2bf89e1, 0x49cd37ce, 0x88cd969e }, { 0x29072dd4, 0x226e69e1, 0x9993075b, 0x102f5d92, 0x6be7c887, 0x476d73a6, 0xd345874a, 0x957de754 }, { 0xca2c0f84, 0xe594ee69, 0xff983f01, 0x54c2af24, 0x5b81bd9, 0x98f0ef05, 0x47f9ccd5, 0x55eb5006 } }, { { 0xbb84d32d, 0xf8db65d3, 0x6851a1dc, 0x4906e729, 0xf2a6b35b, 0xdb4edfec, 0x8bf705, 0x6793db03 }, { 0xdda4064a, 0x2148d59, 0x12c2077d, 0x5e916e46, 0xf815603d, 0xe1274633, 0x611c6038, 0x60ba7939 }, { 0x7ee0f481, 0x41962466, 0xddc9f740, 0x8145ced0, 0x55b5c730, 0xaa0d273e, 0x6db1530a, 0x50cd4827 } }, { { 0xedf8e43d, 0xb456d5f6, 0xea629aa6, 0x3c60bb0d, 0xdc1ad643, 0x5214deb5, 0x46c84f7c, 0x36e982c7 }, { 0x26ae8ec3, 0x647d40f6, 0x8b14a2d7, 0x3aa2820d, 0xb42d1595, 0xdd20922e, 0x35d00d37, 0x412c547b }, { 0x47cec430, 0x4cb49052, 0xce60014, 0xf465623b, 0x3a97ecbb, 0x8ad5575b, 0x2b9e9e02, 0x68538485 } }, { { 0xbdcd98ef, 0xeb03020c, 0x3b6bbdb7, 0x2c8ea5ca, 0x78c1c7, 0x5e9ab742, 0xdc1c1a75, 0x1adfc68b }, { 0x20d3f0fb, 0x1645fa16, 0xbdd636cf, 0x196c8e3b, 0x2d1c932e, 0x54549636, 0xb8abf695, 0xddb98def }, { 0x18f2a852, 0xe2717152, 0xe095b523, 0xefc76327, 0x5502e084, 0x834736c9, 0x4944dac0, 0x987211b4 } }, { { 0x46ca4497, 0xc009af01, 0xf691ac43, 0x6588acc2, 0x58740ce1, 0xc814380, 0x748c4281, 0xc479d63c }, { 0x8e86df90, 0x1ff827ef, 0x66ec0abf, 0x1f8e0e05, 0x1192aad1, 0x7c7b3357, 0x4e96c0a5, 0xed83f4cc }, { 0x61e2ad14, 0xac2032c8, 0xaed6657e, 0xa75b8f9e, 0xe0780be3, 0xc361b81, 0xb46af6, 0xc55003bb } }, { { 0x897ea291, 0xfefbb3a8, 0xc47f3df6, 0x986ff14b, 0x5f6d2e1, 0x76267085, 0x2bca54c4, 0xa3994081 }, { 0x2c6fd14d, 0x2e767172, 0xe7331f6, 0xabddc803, 0x7230f0c, 0xba29546c, 0x80187b6a, 0xad7b2cdc }, { 0x7a2ab2a7, 0xa8959e5e, 0x568a19a3, 0xbefd683d, 0x187be2c0, 0xd7dd675d, 0x9b87c5eb, 0xdc574003 } }, { { 0xe60ed647, 0xb87d5522, 0x5217bc2a, 0xb5684f5f, 0x5b0dceb8, 0xd2e38a91, 0x66ad9865, 0xce2d2809 }, { 0xbf66383, 0x763eebe2, 0x42899ca3, 0x814ad8ec, 0x31b02c26, 0xd9644aa2, 0x88327dcc, 0xcd2f2d3c }, { 0x2c2fa336, 0xd8bacd07, 0x4af18253, 0x3e420f59, 0xeaa60e7a, 0x99c29948, 0xe2d2bc43, 0xc64097c9 } }, { { 0x7345fcb0, 0x7ceba29b, 0xe92416ac, 0x9dd9f79d, 0x696ee297, 0xd87c07c9, 0xaad09d82, 0x41714368 }, { 0x55414393, 0x477dbaee, 0xf950fef7, 0x7033c63a, 0x6a216fe0, 0x958dbd6b, 0x58440fd, 0x8da33ea6 }, { 0x5b72173c, 0x3b7ee04d, 0x7ba5e493, 0x62f1d32, 0xbf693418, 0x249d5fde, 0x4b5faa43, 0xd19cea87 } }, { { 0x27043057, 0x7826d4a7, 0x90667b22, 0x7720e5da, 0x1bf9d677, 0xe30c6eb0, 0xdf3d6c38, 0xe23020b1 }, { 0x788df65b, 0x1eea362c, 0x63ba6fac, 0x7d903b5e, 0xf8ff413f, 0x3ae2993f, 0xffb011fe, 0x477db3bc }, { 0x7a71cf75, 0xd241808a, 0x11815fa7, 0x6b5cda87, 0x52ebcceb, 0x1e86083f, 0x483e607c, 0x3a51f4cf } }, { { 0x4cb95384, 0xfc344bf9, 0xb259f20a, 0x5e18ac9b, 0x2610125, 0xc35dba7d, 0xd3f256bb, 0xc6ec61d9 }, { 0x86f5d6d9, 0x73a78db1, 0x2d157494, 0x3879a625, 0x366060c3, 0x1d67ad1d, 0x80f13e7e, 0x167caa9c }, { 0x5852235b, 0xea9ebbc, 0x71afaee6, 0x1a39f509, 0xb940510e, 0x5f1e804f, 0x2d69824b, 0x4185f462 } }, { { 0x7e7e60b0, 0x417ab7df, 0xb57c119c, 0x24394162, 0x2048f5be, 0x18e44c82, 0xfb936ee2, 0xef34b360 }, { 0x683b49f0, 0x5cb2dcce, 0x6a737a8b, 0xb866abce, 0x8468d30d, 0xbba6f1de, 0xa6b00850, 0x75db7ec5 }, { 0x32fcd7c5, 0x2cfe097d, 0x338b850d, 0x5a47a819, 0x2869ac59, 0x7a89d18a, 0x34e80638, 0xee3bd1fe } }, { { 0x3f0b6283, 0x3d777322, 0x2702c44b, 0x9dd3cf89, 0x8d306a6d, 0x6977d6e6, 0xe41f5532, 0xa3870a9e }, { 0xa0decd3b, 0x828c3b14, 0x46d8c60a, 0x7f438da1, 0xa47230e0, 0xcc3f8dda, 0xc3e99aed, 0x72692366 }, { 0x355c69aa, 0xdb52a1c2, 0xbb52bb30, 0x37882a7e, 0xf9ba9625, 0x229ca21d, 0x5d570384, 0x4c720189 } } }, { { { 0xf6e9877f, 0xc5607552, 0x6e99d35d, 0x9185146, 0xd895041a, 0x7ab87de8, 0x854a5e56, 0x1946267 }, { 0x5efda9fe, 0xa14fd4b2, 0x50d30b4, 0x9e5ec287, 0x6c85957d, 0x52a74deb, 0xb882320a, 0xbfd8a1a6 }, { 0xb86bfb, 0x595479a, 0xc6eb00ad, 0x12a84677, 0xbad6a49f, 0x38d663a7, 0x5d1803d9, 0x2d2befd6 } }, { { 0x95f497ec, 0x787048b8, 0x3e522fbd, 0xc71d8b62, 0xfbd0cfef, 0xfb9d1fe0, 0xee12c659, 0xd74d49aa }, { 0xac913299, 0x29706df0, 0xab671f4d, 0x6db76462, 0x9212c91, 0x6a756d01, 0xf48871e7, 0x14ba8c33 }, { 0xb56fd6b2, 0x3f8f8836, 0x5be9c239, 0xf3993c8b, 0x1d2261bd, 0x50dbdb63, 0x78a8487b, 0x91cf49a0 } }, { { 0xd5cfbc99, 0x19976715, 0xe1ce0579, 0xc031a20, 0x6efe8953, 0xd355c2bd, 0x814bd764, 0x5cb64ca4 }, { 0xd92c9ca3, 0xb8e36d40, 0xaa76ba46, 0x899c6424, 0x9e341269, 0xb1591aa8, 0x69d210fd, 0xb4986cb5 }, { 0xd895aad4, 0x61a5eef4, 0x1ed166f3, 0x6e23972d, 0x770f92cd, 0x29b6daf2, 0xc53fa42c, 0x3aa7b5e6 } }, { { 0xeddd97a2, 0x7ae42535, 0xee18e30d, 0xe1f79adc, 0x11512213, 0x2cb064c0, 0x1d78bbb8, 0x932687de }, { 0xcb393775, 0xb832181c, 0xe3a0c441, 0x71c062c4, 0x8f217b9f, 0xedc3fe49, 0xad8a9137, 0xf1f8ded4 }, { 0x459dc01f, 0x5fae0997, 0xebddf061, 0x5507fb9c, 0xb047d9fb, 0x26e9093a, 0x29f45107, 0xee0eef5c } }, { { 0x97971007, 0x34900a03, 0xde551b42, 0x88b5a2ed, 0x33129fd8, 0x640f4825, 0x7dbb70e7, 0x8aee869f }, { 0xefda4e87, 0x450f25a4, 0x94bc2f39, 0x32912198, 0x786dba1e, 0x68c750e8, 0xa7274fed, 0xacf5f8a7 }, { 0x19c36cdd, 0xa2b116c8, 0x6b2fbb16, 0x5fdb1685, 0xbac72dab, 0x6d0dfc4b, 0x2a86d24a, 0xe46a9614 } }, { { 0x2849ea7b, 0xfb1ccd32, 0x248a57d8, 0xaae3dc0, 0x3ecf3720, 0x6746e398, 0xb1a28d39, 0x7d3a8b06 }, { 0xf64db8c0, 0x53d4691a, 0xd3bdee1e, 0xf278b7fc, 0xd8f5c32b, 0x40127c3e, 0xd661b10e, 0xbfb6f44e }, { 0x86f7e69f, 0xac23a844, 0xbbc95e92, 0x13df8af, 0x522da0f0, 0x892209c, 0xb5207be3, 0xc734f054 } }, { { 0x84779536, 0xcc377ca9, 0x996699f5, 0x7fead92a, 0xe55c3cd2, 0x725316d6, 0x7f655ede, 0xf20a0490 }, { 0x34cf02f8, 0xa9f1226e, 0x100f033a, 0xc34a3b67, 0x2bf5ed08, 0xdf434623, 0xdf97a287, 0x290083ef }, { 0x89642b8f, 0x5a99f5ad, 0x4c93e22c, 0x3bcbb53, 0x4451b8ed, 0xfa86a09, 0x89880424, 0x3df25df0 } }, { { 0xbac2f8ed, 0x45a3241b, 0x859460ff, 0x6fbe16a, 0xeb4138ad, 0x7a64ead, 0xc4cf00a0, 0x156d07b3 }, { 0x3091b2b6, 0x50202628, 0x1606ba0d, 0x91a08fcf, 0x920af07c, 0x14d606a3, 0xae598406, 0x8a2872dd }, { 0x157228f4, 0xad0884bc, 0x6dcbe1e8, 0xec19492d, 0x83eade69, 0x75458fea, 0x4378c089, 0xc7923640 } }, { { 0x34072766, 0xd4069d4e, 0x77704b09, 0x64194ddd, 0xe6a1b23f, 0xca69809d, 0x9a6740d, 0xac09bc09 }, { 0xf90820db, 0x1af4084e, 0xd4be4da8, 0x607e00dc, 0x96031606, 0xdcd1b14d, 0xa0e6276, 0x8ef7d19a }, { 0x9cbbdd08, 0x9fa4d967, 0x5729a01d, 0xab9616aa, 0x21212d50, 0x43fcc671, 0xecd8d362, 0xd2952ceb } }, { { 0xe15fdfe7, 0x25ddf5db, 0x735126cc, 0xd1fdbbb0, 0xf9d805ef, 0x69c04ca, 0xe811e535, 0x5e51ff58 }, { 0x531840c2, 0x338693b7, 0xd161acd9, 0x2c87644a, 0x38259137, 0xb97df5d9, 0x122884c4, 0xe4bba91e }, { 0xaa6a7f6c, 0x70175d24, 0x8ce4ba4b, 0x2eac49c, 0x5f049fd1, 0xa86ff7ae, 0x20e02ed5, 0xa52de7ca } }, { { 0x1c61e37, 0xef590980, 0x5e597804, 0x2031ec51, 0x444e5843, 0x551b5399, 0x842192f, 0x7ba806f6 }, { 0xaae784a0, 0xa6bc34c3, 0x32dc4e25, 0xf3dc5208, 0x66aba2ba, 0xcdf46e6b, 0x2e8f0f3f, 0x93a022b7 }, { 0xdf391204, 0xf414a314, 0x9a552582, 0x672391e2, 0xe59cbb38, 0xa953d6f6, 0xf29b72a, 0x82aac135 } }, { { 0x9b19d17f, 0x3b2ba5a, 0xea66fa2c, 0xde194dbd, 0xb793d929, 0xcbb5c1e3, 0x9a272152, 0xf50457c1 }, { 0x1b55c42c, 0x40b6cd52, 0x1439921a, 0x52229d4, 0x7a807f5c, 0x21ae3d6a, 0x290c4b61, 0x2d306946 }, { 0xa5f6caa9, 0x3f42ac46, 0xfbbf6f3d, 0x32c8c7ce, 0xc888fc62, 0x7854cce2, 0x123f1a43, 0x857c6798 } }, { { 0x8bde993, 0x9a280d7d, 0xac865a48, 0xe892f18f, 0xc69d4029, 0x8bd64236, 0x625e3016, 0x58600fbc }, { 0xb51c4f34, 0xadb8eb28, 0x1d684625, 0x7ba1eaa, 0x882945f5, 0xa7d27402, 0x99f5f2dd, 0x67c150f1 }, { 0x83534aea, 0xfeb46e8c, 0xd7ba9130, 0x26aaaf7a, 0x392c5846, 0x19bb4eff, 0x9dfd2592, 0xd076d74c } }, { { 0xeca5aa79, 0x3d0b3186, 0xfeecdf4, 0xe92d3333, 0xc133c7ac, 0xf6d5b3cf, 0x5e4e0c7f, 0x66a9014 }, { 0x5ccc4624, 0x7e163b7, 0x5fea6841, 0xee29c353, 0x8d669f8d, 0xb53379f7, 0xcae7ef23, 0xa0f760e4 }, { 0x53e8f0b1, 0x3d081b50, 0x19eab8e1, 0x83f5d05a, 0xe1a79132, 0x78728c0a, 0x1fb5ceaa, 0x22ca1508 } }, { { 0xecac7434, 0x4aba2786, 0xb058d6fa, 0x51cedbe9, 0xceb1f8b2, 0x5ad89adc, 0x46ef170d, 0x3e4bcd2e }, { 0x4f0da029, 0x21434af2, 0xb99a8e05, 0x29e77645, 0xef2caf1, 0x1873c5f4, 0xe2f46eab, 0xa9178862 }, { 0xd50253c8, 0xf598bb8e, 0x70944d75, 0xe702a1e3, 0x58513979, 0x4763b40d, 0x16d20b8f, 0x9545d5a2 } } }, { { { 0x5ae4062d, 0x4dcca260, 0x30e1c643, 0x966a2ff8, 0x46dac91, 0xd0124a7a, 0x6e17fd8d, 0xdd42be4d }, { 0xb21bf7fd, 0xd7a916dc, 0x3de82756, 0xf87c9ae0, 0xf1b4bb5e, 0x77561f0a, 0x5e589c7c, 0xa30eaca5 }, { 0x7e38ef06, 0xc47f1e4e, 0x114b61a1, 0xb407e89f, 0x87bf67b5, 0x8dd19a4b, 0x42c5a652, 0xda87568e } }, { { 0x7e7b1e61, 0x83d8bca6, 0x9ea61b63, 0x1b592b93, 0xad809e55, 0x283c61b9, 0x1871280d, 0x9bb57364 }, { 0x717747f3, 0xc14cee40, 0x51787392, 0x959b3f2a, 0x34a6a9dc, 0xf9830b59, 0x43d4eacd, 0x8c3a5bee }, { 0xa6afb3b9, 0x3efbd445, 0x8271e77c, 0x38df680f, 0x75d1eedf, 0xc17fa6d8, 0xd81342c, 0xd25e8a44 } }, { { 0x8256a1bf, 0x66d32f32, 0xfa0af0af, 0xda1bae3c, 0xe6da3492, 0xddec10b3, 0x73ea4787, 0x5739809f }, { 0xfe98f644, 0xde43165f, 0xc6d280dd, 0x5c1d776c, 0xa4d93189, 0xe9bcc087, 0xee98051d, 0xd9131a54 }, { 0xba4b4ab7, 0xf8371713, 0xa4abbfed, 0xca235ebd, 0x8c48be94, 0xf413d43e, 0x85c1f2c2, 0xd25ad65d } }, { { 0x7094fcd6, 0x179d51d3, 0x24b9e317, 0x34b601e6, 0xdc634420, 0x39f71748, 0x69aa03e4, 0xcc31b448 }, { 0x8bed60c9, 0xa1a7e32a, 0x10ef0df5, 0xa44ae567, 0xbc70792a, 0x5f0a82d1, 0xd5244a51, 0xda413820 }, { 0x89da3b58, 0x8ebb0df3, 0x36ae6977, 0x6f80e614, 0x2faebf80, 0x36327628, 0x38771b45, 0x257d924d } }, { { 0xaf452f9b, 0x7f55ad52, 0x59b2216c, 0x713e61ec, 0xb869d9b1, 0xf6c29e0d, 0x3afe053f, 0xd9d37863 }, { 0xb65eb840, 0x5301c107, 0x8d7e431c, 0xfb24373b, 0xadfc572e, 0xafafac92, 0x5ea3be96, 0xd6e7262f }, { 0x6e3e4336, 0x48dbbdb9, 0x1c9a5061, 0x6949cb6e, 0x47f7222d, 0x136c1796, 0xaec35853, 0x65ff4ca2 } }, { { 0xb533882b, 0x8d1e3312, 0xab2c24ab, 0xd3ddeecf, 0xe86d6fb0, 0x53971456, 0x3c268fbf, 0xf27ede17 }, { 0xed75a5c3, 0xec7ac50f, 0xf246e9e5, 0x6055f4a7, 0xc25dcf7a, 0x741fe53c, 0x36e49af1, 0x340031e8 }, { 0x76707643, 0xd24fd1c2, 0xec15e4f7, 0xc814a694, 0x9db89424, 0x8e57cb5, 0xefc1601e, 0xc76989b6 } }, { { 0x52b2e22e, 0x159d879d, 0xcf45bd, 0x19ab9343, 0x7c13d343, 0xb4e3919c, 0x2844751f, 0x2f347ba4 }, { 0xa72d47f0, 0x4bcfb3ea, 0xb74372e9, 0x2bfec11c, 0x8a187514, 0xd69a717f, 0xa1ad378d, 0x1b7a25b }, { 0xf7dd8097, 0xca68e3d6, 0x9227ff6b, 0x39e328ac, 0x34038afd, 0x25063514, 0x10cd0590, 0xf3b6fe78 } }, { { 0x83b7a20a, 0x2959cb05, 0x4c02df61, 0x23ccb48e, 0x8453d1f2, 0x2f3e764a, 0xcb1919d5, 0x5ba3895d }, { 0xbe4f05c2, 0xdcbf5cc8, 0x96fa943, 0xf26bd0c1, 0xb09d0b30, 0x32fc3dc7, 0xc1c34ea7, 0xccd3ffbc }, { 0x5dca7e43, 0x70c3d3a0, 0xa3bdb515, 0xcd28c68f, 0xef9c0ec0, 0x7e7ff23f, 0x18a251e7, 0xa1b1516c } }, { { 0x97f86583, 0x1e51c965, 0x6a41da70, 0x8434b63c, 0xf3bc0f07, 0x82d1bb9, 0xf012c6bd, 0x2e93c939 }, { 0x7cee6fdd, 0xc52903db, 0x53b9fb9, 0xd1f0253a, 0xf62aa32, 0x48302aa6, 0x6878f651, 0x20668e43 }, { 0x7a7c4fff, 0xaef4147f, 0xba8b37ad, 0x60d315c2, 0xf0c273e6, 0xe7a9bdd6, 0xcad8a7c8, 0x5ec084ec } }, { { 0x1a76e168, 0xf875973a, 0x2931fbca, 0x5d8e959e, 0x83a02b1c, 0xf227c4d, 0x8a9388fd, 0x33dec5af }, { 0x3761a52c, 0x57966e4e, 0x4b69e807, 0xa32e31a, 0xffc9f6c8, 0xc55c77a0, 0xb532a8b0, 0xf6406e27 }, { 0xde32af41, 0xd9273180, 0x561403bb, 0x475324c8, 0xc34c64e7, 0xbe0fbddd, 0xa5984ed7, 0x5a8698fa } }, { { 0x55abcac1, 0x7b5cb2f7, 0x317aa59b, 0x99a59843, 0x28365e, 0x5abd9b9d, 0xb90cc266, 0xcdf9f3bb }, { 0x778951df, 0x9f084c37, 0xd2b66674, 0xd81099c9, 0x8be5664c, 0x95660046, 0x4fe4c3db, 0xda5f8e10 }, { 0x46361beb, 0xcc51c6d0, 0xf046870c, 0x3423ebe8, 0x9af71472, 0xc60c7152, 0xd6ed141b, 0x7f4e5e68 } }, { { 0xd5c8bedc, 0x2aa52d4d, 0xe54acada, 0x740929ea, 0x981d3042, 0x4574c042, 0x60296284, 0xb34081aa }, { 0x8068f793, 0x98455c4, 0xb51cf28d, 0xd154d888, 0xa9c70fdb, 0xdafd325a, 0xa8193d89, 0x7fc3ee17 }, { 0xe3db9932, 0x6c2559ed, 0x2fe211d3, 0x62d03ee1, 0x31868e8, 0xf0dbb101, 0x402b7131, 0xea934860 } }, { { 0x200e7bcd, 0x94581c1c, 0x76fc60dc, 0x2cb858b4, 0x6f8346f1, 0x51632a99, 0xcfc69fae, 0x9c630ff8 }, { 0xf32871bc, 0x75076e5, 0xecf1020b, 0xe7bb02cc, 0xa5132cdd, 0xfa8e067, 0xf164ba35, 0xa478e513 }, { 0x48a6e1dd, 0x14c26e84, 0x5ca61ac9, 0x11bc6c7f, 0xe6c538e3, 0x40cc416a, 0xa28afc1, 0x3313975c } }, { { 0x29c248cf, 0xda0c92d7, 0x62dda516, 0xad41f875, 0x1af18ec2, 0x21d540a0, 0x871ab8f2, 0x3adc57d6 }, { 0x28bfc7e, 0xd9897fc2, 0x6d644473, 0xb5f45205, 0xfa1d4a7a, 0xe8659e62, 0xb54ba91c, 0x39fb2cf6 }, { 0x6551eab1, 0x2adccbf5, 0xdaec156b, 0x538750e, 0x937391d7, 0x188f9403, 0x177c8bfd, 0xddd00bb1 } }, { { 0xdbb6ff3f, 0xf82d03af, 0x33536767, 0xc36a1132, 0x848ed9ba, 0x4d584c47, 0xf2282a1c, 0x41d8a3e9 }, { 0xa0b53c2b, 0x92599db9, 0xdc034f8, 0xc28188cf, 0xc5626534, 0x2313002f, 0xce0089e8, 0x3724c300 }, { 0x69d737ac, 0x2982f03c, 0x92a52ca9, 0x1cbb481e, 0x15610316, 0x2dfe83e4, 0xf4198327, 0xe520c61 } } }, { { { 0xff6fa611, 0x5c70eda5, 0x3a9bcf03, 0x44ce9c32, 0xfb093083, 0x712ef0a, 0x38f0c763, 0xcf57e9dd }, { 0x256f26e2, 0x431c95da, 0xeabc597, 0x5be933dd, 0x165bfe1f, 0x65619097, 0x964c0b21, 0x747d9f16 }, { 0x920689b4, 0xd3368aa5, 0xe403dfed, 0x72196bf6, 0xd94b9ad8, 0x97c9d6e1, 0x3600f508, 0x6abc0fc3 } }, { { 0x8f78031d, 0xb325a164, 0x2ead5c8e, 0x742f840c, 0xb3c6b3f7, 0xa459313b, 0x23d2870a, 0xa875039d }, { 0x4a893911, 0x52f042b2, 0x985146dc, 0xed4357a3, 0x7eeb46b5, 0xc75a700c, 0xc913fa4d, 0x2614d135 }, { 0x5bcadb0e, 0x1dc8484f, 0x55d2c968, 0xa4ab43b6, 0x3877465d, 0xa4981831, 0xc0f28ce0, 0xc3fed1be } }, { { 0x21cfe583, 0x18a04a3e, 0x7c2f50dd, 0xcdb732df, 0x767f4050, 0x26eb3c82, 0x6cf4b403, 0x9d8ce3a2 }, { 0x83b3cf47, 0x190d6bd4, 0xf01b06c5, 0x7cc97e66, 0xf2691004, 0xfe99256f, 0x920ced19, 0x22e60b32 }, { 0xc570ef82, 0xeb797811, 0x514fb77b, 0x5d62f7f1, 0x6017c322, 0xb807ac34, 0x3dd3457c, 0xd8772c3e } }, { { 0xf55f5f55, 0x4ea386cc, 0x4f44a7d6, 0x9359a5f9, 0xfd119d6e, 0xff91ffba, 0x5fd4f908, 0x32709cb4 }, { 0x9b86536d, 0x7929ed7f, 0xa1187080, 0x29a052a4, 0x3368d8a5, 0x60abf67e, 0x8f788dd9, 0xfa99d3fa }, { 0xf066f618, 0xd6a5508, 0xdd18a3e1, 0x54d933ac, 0xa2af7823, 0x9b5bfcae, 0x3c37ff3f, 0xc5908496 } }, { { 0x7e1a7e7d, 0xfe7a21d, 0xa8e32642, 0x3adce97e, 0x9f2e9ade, 0x32841d67, 0xeed28aaf, 0xcceba6e }, { 0x16683b40, 0x834ef329, 0x36a78359, 0x3f38a765, 0xf1906bba, 0x19f66b96, 0xb7ef1c4b, 0xb498bff6 }, { 0xdeb93bff, 0x6475cfc3, 0x4970046b, 0xcb6e7a99, 0x669b860e, 0x58c6a707, 0xf08f41bd, 0x335cf64e } }, { { 0x15b8e0a, 0x3729b3bd, 0x190018a8, 0x17b16f8e, 0xa2ccebe9, 0x74d391ce, 0x852f524, 0x4190e139 }, { 0xdf594437, 0x93576e45, 0x1a2b1bf9, 0xb9a7092, 0xfbca1d51, 0x25accf8, 0x5d5a896d, 0x97272502 }, { 0x9b9b7b41, 0x3003318d, 0x5496d9f7, 0xa3eea2b5, 0x621a9a1e, 0x271edbd6, 0x9f768b7b, 0x6accc31c } }, { { 0x779de6b2, 0x2f9df4f4, 0xf03cdb90, 0xad8e084d, 0xa1a5a18a, 0x6abb348f, 0x6747ce78, 0xaa8c1af0 }, { 0xb3abeb31, 0x15de4e78, 0x3f5cc5e8, 0x53228e8, 0x74ce1bad, 0x91a31082, 0x42ee4e3d, 0x765caa99 }, { 0xd9f5643e, 0x3d5aeffa, 0x79197e36, 0x393103c9, 0xe6ecc6c7, 0x4cb653f4, 0xafa56fde, 0xc417d69e } }, { { 0xba229103, 0xa7f09b84, 0x29280e7f, 0x95abd750, 0x2bb03ca7, 0x5ea72fab, 0xa1ca447f, 0xcf838b37 }, { 0x5eb3fce, 0xf82800f, 0xc182e755, 0x831e7225, 0x82bb00b4, 0xba99eff1, 0x75127e97, 0xea0ce878 }, { 0x1ecf24a7, 0x8a792c85, 0xd02d8892, 0xeb4e21f7, 0xc44b2668, 0x4727e504, 0xcdfc3147, 0x7736d4cc } }, { { 0x5dba9818, 0x73e3b545, 0x26e2ad44, 0x6c2468, 0x8132f282, 0x679343cf, 0x21b4388b, 0x5487fcc3 }, { 0x4f04ae5, 0x9cc20ff7, 0x3e575ba1, 0x13b1df96, 0xa513c8e8, 0x7cffd697, 0x20c4672, 0xa78c872 }, { 0x636c7320, 0x71bab8ce, 0xd70dac9, 0x7aa0edb3, 0x85a67f1b, 0x75cfa8ec, 0xf2fce022, 0xb43bf7ee } }, { { 0x4d8fbb2e, 0x88c5472a, 0x4118ab83, 0xe48deb0e, 0x14c888b1, 0x5f8c916c, 0xfbeadca4, 0x6d34de07 }, { 0x792b0039, 0x9b2a279d, 0xb985e971, 0xaf9f15d5, 0x17f3d937, 0xd1f52f89, 0x4ee43a33, 0x85a9cec9 }, { 0xcfacb09f, 0xb77b9f16, 0x4a61fb50, 0xdb8b6c1a, 0xba66c26a, 0xa15d6d86, 0xcb9c53d7, 0xfcf609b8 } }, { { 0xdaec209e, 0x29fe341a, 0x9e40a40d, 0xa6a3cd2a, 0x7b46dfd9, 0x2e35c43e, 0xbe5f9c0b, 0x33bdec00 }, { 0x575fdfc3, 0x485f8e68, 0x62e19633, 0xfc41cbb9, 0xcbffac47, 0xa5f56424, 0x33b226fc, 0xd71f6b18 }, { 0xe9d6806, 0xea0f2be, 0x6d25ba10, 0x2d9040cb, 0x11e75db0, 0xc80c73b2, 0x9b3a5946, 0x5f876ab7 } }, { { 0xf1b99cb8, 0x3cf27da5, 0xb12cbf58, 0x8d668249, 0x90deb5d4, 0x3f6ef5bb, 0xaf3c666, 0x2c9def4b }, { 0x5b00ba82, 0x12b9d59e, 0xcb2d4ff0, 0x9c0a9071, 0xe9574111, 0xd8cd9171, 0x243365e5, 0x4200f1f8 }, { 0xf581f2e5, 0x220048d2, 0x6a134491, 0x21d9345f, 0x98d242eb, 0x5747cb07, 0xf7c26485, 0x814590ba } }, { { 0x995c0ee0, 0x5baa1ce6, 0x8d815697, 0xf4827768, 0x2b040811, 0x3e1daa36, 0x75644619, 0x71c1b567 }, { 0xf8f0eb53, 0xed4383bf, 0x5cda68d5, 0x3b93ec67, 0x2bbfb39a, 0x3eebce38, 0xf08a234c, 0xd339e188 }, { 0x9cda27b5, 0xf24abb39, 0x3525c58e, 0xa2c31122, 0x9681156b, 0x40e92a4b, 0x8b70e8b6, 0xbf67ae8d } }, { { 0x4ede99c2, 0x2877ea6d, 0x9cd0cec0, 0x8223b217, 0x50113205, 0xc9275408, 0x291fcd6f, 0xa8b65ef6 }, { 0xf4bb7db3, 0x6cd9d4cb, 0x52cced9c, 0x7fd438be, 0x6497c8da, 0xdef9bbf, 0x4aace6a, 0x322c85e2 }, { 0xce3436c8, 0xc40f27f9, 0xa70fa0ec, 0xce3123d2, 0xb5f55bc0, 0x109482b9, 0x8ab174fa, 0xec744957 } }, { { 0x836c1c3a, 0x43050481, 0xcde983de, 0x47a24dda, 0x409cf11a, 0x151583af, 0x9435d0e5, 0x2f69943d }, { 0xf548948a, 0xd38d763c, 0xa609d027, 0x900ecd64, 0xe2fee6e8, 0x3fc42d2c, 0xa02f2423, 0x25ab6eff }, { 0x7d55141, 0x193596a1, 0x458f2eb5, 0x8386e650, 0xc41a9b05, 0x573bad2f, 0x7d4b4a09, 0xecfa2078 } } }, { { { 0x96a431c7, 0x952ae47f, 0x651d432d, 0xa1cd17d1, 0x795ff1b2, 0xc79da8db, 0xa2e29397, 0xf0aa43fb }, { 0x631ce2a3, 0xa3f3dd84, 0xe1721bbb, 0x258442da, 0xda3821b8, 0xd2b5f910, 0x25a44243, 0x80e01e98 }, { 0x4a3a74af, 0xe772b18, 0x86399cd3, 0x125ceb2b, 0x8db7e412, 0x96c0ab6a, 0x691527b0, 0x4d225939 } }, { { 0x8bc4c58f, 0x3d6340f7, 0xcda99247, 0x99b692f0, 0xcdd83231, 0x2d6e94f6, 0xb4567594, 0x837b4979 }, { 0x7a3d0cb2, 0xf047ed96, 0x848a9f66, 0x8c82b902, 0x8cdb0232, 0xf86700cc, 0x66577294, 0xe1acb1c3 }, { 0xef410a82, 0x296ecf2d, 0x7dce11e1, 0xce793717, 0x7713017f, 0xd0cb3ecd, 0xa5cc5a30, 0xf6fa0b1b } }, { { 0x3e6858ce, 0xa78017de, 0xa9d780b, 0x63a8a2b, 0xc7c515b, 0xed6cb4a, 0x4bafe34c, 0x89851637 }, { 0x9a9ad389, 0xde323109, 0xcd8a7405, 0x719c8676, 0x5bcb0e81, 0x22f020cc, 0x12929bbd, 0x39808df4 }, { 0xb14a37d1, 0x443de6e, 0x64632dbe, 0x44f06686, 0x8424d148, 0x24fc854c, 0x2bb92af6, 0xcfecfafd } }, { { 0x6020b6a0, 0x4f99efb1, 0xcf422208, 0x445edcd5, 0xe50ad9c0, 0x2cf105d0, 0xde1689d8, 0xff412ddd }, { 0x23d2c025, 0xd7f62a03, 0x1bae411b, 0x158d2d9f, 0x898e2772, 0x789c0169, 0xd28bd950, 0xb3498572 }, { 0x7d70192e, 0x3f8cfcb5, 0xc4e517f3, 0x9746f520, 0xe6acd8ec, 0xaf4b7c64, 0x9bcaa83e, 0xd65e4d2e } }, { { 0x5a98ade, 0x56873dc, 0xe738d058, 0x32fc6f60, 0x6b4783c0, 0xc05fd8d5, 0xd314eec9, 0x39f32184 }, { 0xcb81e5c2, 0x11bc5968, 0xc1b8c12d, 0x230ad44, 0x5f9f8c9a, 0xa4c01f80, 0x86a9ab9c, 0xeaf5b4f0 }, { 0x77794ea1, 0xdfc42f8a, 0x8302f88a, 0x8327729a, 0x35270e8c, 0x23c003fb, 0xe346997c, 0x962b2118 } }, { { 0x8d4f94f3, 0xdbe83175, 0xc655c6c1, 0x780d1382, 0xf1464059, 0x82f12b6b, 0xbc8d7377, 0x26c4594b }, { 0x4b1fb590, 0x9e94e2ad, 0x1ef0269d, 0x16635e07, 0xc7a09d9e, 0x1df71ee8, 0xfbf519b5, 0x98ed7725 }, { 0x9248c559, 0x7fd65f93, 0x82d22c84, 0xb941b824, 0x7a835174, 0x122246a4, 0x9e7b1f75, 0x883c8658 } }, { { 0xc3a9a421, 0x1be89c7c, 0x4acb0295, 0xb75e9016, 0xd7916b89, 0x741f36ed, 0x788ae2b5, 0xa2f1932e }, { 0x75a1b9b3, 0xde323d34, 0x59c7093e, 0xac26ff09, 0xc3c0ac4a, 0x3d24cab6, 0x6a8923b5, 0xadb6515e }, { 0x389c1d22, 0x4e6830a4, 0x9421e1a1, 0xc3971111, 0xaf1e9c2a, 0x9688dbfa, 0xf572ce30, 0xa371c28 } }, { { 0x42a7f0de, 0x923aaa4f, 0x180d565, 0xcbc76f1d, 0x58e526fd, 0x2f7e0d40, 0x942bb384, 0xa71496ef }, { 0x97c675d9, 0x6bc451d7, 0xdb579bb1, 0xfbe12a4a, 0xb082e67, 0x874a212d, 0x2872f360, 0xb33e1edb }, { 0x54e27101, 0xc597047, 0x2986ceca, 0xcec4e6f, 0xbc4a92e2, 0x28813fdf, 0x7c792636, 0xeaf056e1 } }, { { 0x7ec65d12, 0x7bbe4b04, 0xd06cd9da, 0x39e5a06e, 0xbe4598c1, 0x6df0fd48, 0x188c3301, 0x92c03ca6 }, { 0xc26e4078, 0xa82812e8, 0x3664822e, 0xbd23870, 0xf5329c6a, 0x16a49594, 0x291fd147, 0x163a19ec }, { 0xf6468572, 0xcbe11431, 0x1bea7a10, 0x4899ea7d, 0x2c138d98, 0x772b9fc6, 0x2f772eea, 0x279dad92 } }, { { 0xcf852b57, 0x692a52fa, 0x994e8aa9, 0x3480c9ef, 0xba200060, 0xb39f2fb1, 0xfdadaa58, 0x942abb21 }, { 0xd2b818d2, 0xd9785d18, 0xd362017d, 0xca1bb5a0, 0xd524ef59, 0x3f154ecb, 0xf548ce7b, 0x984fe089 }, { 0xc647494c, 0xcd4f8f5c, 0xd6edf19e, 0xa4ebb37, 0x31438ef1, 0xf9a845b1, 0xa970d616, 0x9dfeee97 } }, { { 0x8de8bce, 0xf83f6899, 0xb8e7c675, 0x8ae6f0e8, 0x5f00e85e, 0x408a2fb1, 0x8ea6fd04, 0x41fb31ed }, { 0xcdb7c4c3, 0x3d4a9b08, 0x46bab5c7, 0x397f8b9a, 0x97663dfe, 0x3b47c2ba, 0x49c64467, 0xfbc49aec }, { 0xa8ecbb86, 0xb0a3ba74, 0xe1f6694, 0x4a456087, 0x1d74e39a, 0x2ca8ca2e, 0x8145b44, 0x75a99af3 } }, { { 0x961622, 0xa1ff365f, 0xe605056a, 0xb6664254, 0xaee6c4ef, 0x8d0989f1, 0x2b88175d, 0x4e0992c7 }, { 0xf367677, 0x417e3268, 0xbb167fa8, 0xab026495, 0x6bb1dd4, 0xd1047630, 0xcc94d7b, 0x9f7ca0b7 }, { 0xa570c220, 0xe6696d99, 0x26c3cc35, 0xc2e56f8c, 0x7ce8e8aa, 0x444053fb, 0x30316255, 0x6277e8ea } }, { { 0x2475063c, 0x2aa951e1, 0x28d354a, 0xf0d1402a, 0x7c0c4a73, 0x16750267, 0xf455a57d, 0xa4160e03 }, { 0xad8f4667, 0x208afc1d, 0xe7c880de, 0x25c9debb, 0x15c64bae, 0xf848c685, 0x17e8a4f5, 0x355eef76 }, { 0xda68afbc, 0x35109e67, 0x6d4b6cef, 0xaa9aeaad, 0xa85123a4, 0x7408f7c8, 0x3f4f3fe5, 0x5c5def6e } }, { { 0xdb039568, 0x17ede953, 0x16297a1d, 0xaf232548, 0xe3403b8f, 0x67bf058, 0x59fd1fb0, 0xbd53dbde }, { 0x56075728, 0x1ccb4c42, 0xc0b8a3d5, 0xd3110402, 0xdd1d8a95, 0x1f0ef26, 0x18b9b963, 0xcc2f4d6 }, { 0xb26420a6, 0xd5fac75d, 0x4027ccb0, 0x7a5a5422, 0x6f207e0c, 0xf64791ab, 0x6575f4a7, 0xaf4918fc } }, { { 0x7935d63c, 0xa31cd20a, 0xe51eb7ef, 0x1dca4185, 0xa8ff958b, 0xa3be568a, 0x87826cc4, 0xf8e64e7 }, { 0x7127c899, 0xf761d371, 0x7bc639dc, 0xd548cc46, 0x3dfffe26, 0x1b975dc7, 0xc663fc80, 0xf834cea7 }, { 0x363b211e, 0x39439943, 0x5e14c203, 0x5679db1, 0xb45d5add, 0x968d6163, 0xf5ca5061, 0xacb85857 } } }, { { { 0xc2aecf8d, 0x637ea83c, 0x842c1276, 0x563719e1, 0xc8c5cb80, 0x4b812885, 0x2757a4d7, 0xa7a641be }, { 0xcf5d8acc, 0x1636374d, 0xd4c16f40, 0xe071a47c, 0x67c88c1c, 0x4c56004b, 0xdc0e61f7, 0xbc979b7b }, { 0x672117c9, 0xb04d5a95, 0x5b1d0f0c, 0xe3f1107, 0x9207aded, 0x623fde28, 0x855e1605, 0xcea8ce5 } }, { { 0x1d36d9ac, 0x9b8e3e0b, 0xd5695528, 0xa3eaf3b4, 0xd1f78736, 0xa6c89f94, 0x39e4ff99, 0xc67af495 }, { 0x49a242b9, 0xc3daebe, 0xc6f16847, 0x330dec1a, 0xbb2f38f3, 0xe0f52c6e, 0xefce1541, 0xb84b2063 }, { 0xfb8662c1, 0x856121e4, 0xba3307e9, 0x40515be5, 0x48bc6a03, 0xa6621af1, 0x10048ec8, 0x2fa07119 } }, { { 0xe2998754, 0x84e125bb, 0xb46e2827, 0x5badf0be, 0xb56a9eed, 0x9ffa3906, 0x66901e30, 0x77d7cad7 }, { 0x1f476937, 0xc73cb73b, 0x8947d21c, 0x7691821e, 0x2409c5f9, 0x4af728b, 0x62170f73, 0x688e66c4 }, { 0x88db5320, 0xe4ac98e9, 0xade04a96, 0x8260317a, 0x6aa0d8df, 0x56d3c7c6, 0x39e65675, 0x1d3edee3 } }, { { 0xe8af7f56, 0x3823b4b0, 0xde3915c2, 0x335c6628, 0xba953cd2, 0xcd523ccb, 0x433dfafe, 0x44d6bb34 }, { 0xe3606a21, 0x2c2fb3ee, 0x93d0f476, 0xbea2b043, 0x693bf078, 0xa038437, 0x93659f97, 0xfb570ee8 }, { 0x89c4b9dd, 0x4728d143, 0x132e4d1, 0x6be34dfb, 0x64e34799, 0x5174ba02, 0x787d8339, 0x946243f3 } }, { { 0x5521977e, 0xb5154ac7, 0x31203e7, 0xbfcf4b74, 0x86d09a5e, 0xba1efec, 0xcf7695b3, 0x43572fe1 }, { 0x7be48c86, 0xd08494da, 0x1aaf6eac, 0xff7bb003, 0xef00160, 0x11e23c2c, 0xc53ea184, 0xd8f21b6a }, { 0xaa17c679, 0xb008d40d, 0xc45590bc, 0x8f7e4863, 0xf6d40133, 0xea104c16, 0x30b77f3d, 0xcf75a90b } }, { { 0x501e4e81, 0xb0ae00ec, 0x999cf63e, 0x244eedbb, 0xa4bc5986, 0x7e8dbf31, 0xd0e76c7d, 0xd1cb6be1 }, { 0x5107ade3, 0xb78aac36, 0xd76a75cb, 0x5c4de4f9, 0x4b688098, 0x1bb718e5, 0x7d2c1d5, 0xcdbfff06 }, { 0x6f6de609, 0x8e102bec, 0xd4f5c17, 0xecef5b36, 0x2b6e6c55, 0xd2b4dacf, 0x4251dabc, 0xf6b6b15c } }, { { 0xa86ba753, 0xb8335752, 0xa6d1328b, 0x41bd442a, 0x68775d13, 0xf67a20ab, 0x72a40163, 0x15bebc73 }, { 0x251e8e0d, 0x7b345714, 0x20163b3e, 0x36b1cc36, 0x7e0d0fd8, 0x3278b920, 0x4c2cd0f4, 0x6665a0a3 }, { 0x6e76e38e, 0x7fd40ce7, 0x3690c4e2, 0x1ac128e7, 0x6ecc485, 0x7a4a869a, 0x66f82e42, 0xc9ad74af } }, { { 0x31bf747a, 0xf74cf889, 0xc2de1813, 0xee04edbd, 0x9fa18ee1, 0x34ab2fd4, 0xcf408ece, 0xab3f9e13 }, { 0x5407de98, 0x5f88e44a, 0xee372436, 0xe6d4c5ae, 0xb9585823, 0xfb9f0787, 0x3d86f8fa, 0x1c374c6 }, { 0x85c0ca1b, 0x1ca09bee, 0x25304b20, 0x122d7be, 0x7eb02265, 0x8ad55b6, 0x19ee86e8, 0x8d011e2 } }, { { 0x5ca4df34, 0xfbb710f4, 0xa82dd987, 0xaab42ad9, 0xdfe5ca61, 0xb42e6ebe, 0x4743384e, 0x6d879558 }, { 0x2bb10dc1, 0x104f1517, 0xad469d5e, 0x784def59, 0xdda53176, 0x73cd5aa8, 0x350b2458, 0xde0f8cfd }, { 0x610a535f, 0xca4355f2, 0xf8a0a1f, 0xe925afbe, 0x8e4c1611, 0x3c8ed71e, 0x40a823da, 0xdbff88ff } }, { { 0x10e14668, 0xc9776a2, 0x210f1e82, 0x3454368c, 0xfb51f512, 0xb734a0ba, 0xcad4a24f, 0x503cc52f }, { 0x986f3b3a, 0xe0d096, 0x449d7aeb, 0x4b0b0605, 0x4e70e62a, 0x55d2d3c3, 0xdf70428b, 0xbc52e465 }, { 0xc183454c, 0x9c411316, 0xd8c169a9, 0xf0de28f, 0xd45d47b7, 0x57da1dfb, 0x1983c3e4, 0x5d400e69 } }, { { 0x9272ba5a, 0x5f8ec831, 0x60b0c743, 0x1d804be6, 0x8dcab974, 0xa5f1165, 0x4bb1a123, 0x235fe7b7 }, { 0x7a7f4a12, 0x7d228356, 0x72dcf9cd, 0xaa5cf99a, 0xe0a65a81, 0x4a3ac34f, 0x4b6cb31a, 0xe59c5790 }, { 0x381a8fa0, 0x8dc06518, 0x3f4adbac, 0xddbd2866, 0x93a54845, 0xda40c6c7, 0x72767bc7, 0xe1cac2fb } }, { { 0x2ba11a6a, 0x20659929, 0xf88a2b92, 0xaa30301e, 0xca27f356, 0x1fcfb797, 0xf04a5298, 0xe1b8c1ea }, { 0x4f8eab5b, 0xc2efd04a, 0x74659729, 0x810256ba, 0xa302d5d1, 0xf8010cf, 0x57a8ae49, 0x83f3f4a1 }, { 0x2de1b2bb, 0x6991b4c3, 0x8dc7f109, 0x544b2c1e, 0x1a25b0a, 0xf44ec8f8, 0x365f0175, 0x1f1cc294 } }, { { 0x2258e26, 0x6b2d032, 0xffb3dfd0, 0x1cfaf52e, 0xba87a9fb, 0xa60c772a, 0xea633b24, 0xdfdc1814 }, { 0xd09db71, 0x90ee4e4d, 0x1127b295, 0xe91f508f, 0x6ed7969c, 0x580566bc, 0x124de578, 0x20775a03 }, { 0x29785128, 0xdd572e64, 0xa41a6b17, 0x2b5dff55, 0x6c1f755c, 0xe4dd4e52, 0x4698eef0, 0xd7652609 } }, { { 0x4eb1b9a2, 0x66259031, 0x2e213d94, 0x1648304e, 0xc8ac6f6e, 0x55a1d26a, 0x86326c5b, 0x682e96bd }, { 0x702e5b57, 0xd870afa, 0xefaa3c67, 0xe3b7f1b8, 0xe6605324, 0x83997f10, 0xd4f3a21a, 0xfb960efd }, { 0xfdb0ef79, 0x9f6cded9, 0x9b96b3a1, 0x37d74fb4, 0x621b5d38, 0x570053b1, 0x4dcbc8ca, 0x35ed5e50 } }, { { 0x8089acd0, 0xb059280d, 0x8ff5334c, 0x66da48b3, 0x7b593365, 0xe86df5a1, 0x7dba0ac1, 0x97fb710a }, { 0x7c88fda3, 0xb61e852a, 0x4c81daf7, 0x3202fb97, 0xa616236f, 0xb984866b, 0x4c083a75, 0x3b67a73c }, { 0x93ca954e, 0x77d50f11, 0xa64c94ef, 0x5797eb53, 0xb72ee37b, 0x48c61b2, 0x5065d074, 0x7d391f76 } } }, { { { 0x7c0cf90b, 0x4151df98, 0x9cebd062, 0xa6c53deb, 0x41ca94c7, 0x108d7add, 0xf050ce80, 0x80d41434 }, { 0x6a6694ed, 0x81bd259e, 0xbbd525b8, 0xbf02c62a, 0xb9a1161d, 0xafee5c37, 0x72981d2e, 0xc9139274 }, { 0x5b9fb3f9, 0xcba5c0dd, 0x6146d532, 0xc23500d7, 0xcb1b9aee, 0x847485de, 0xd9988a04, 0x744a1161 } }, { { 0x1d7adaa7, 0x1d5ff0f4, 0xfc97d4c8, 0x725849e4, 0x2652433f, 0x8cf8e605, 0xd541cfb8, 0xcbe33af7 }, { 0x863bc1bc, 0xce8509ba, 0x9f191012, 0xb8eaa761, 0xe070ef39, 0xd339242f, 0x13d23228, 0xced53288 }, { 0x206f07e6, 0x85aac7dc, 0x725b88e9, 0x3abd12ed, 0xd9af7c9d, 0xe0d5b6b, 0x3ecbf811, 0x10cd0fce } }, { { 0x4302c518, 0xa08054e7, 0xaaa4e562, 0x289b74f3, 0xb7f37a15, 0x68a60ad5, 0x7fe6f588, 0x94b5b272 }, { 0x4f85fa24, 0xa96b38a9, 0x74c90405, 0xb654ddbc, 0x9b8cfd63, 0xc2560a2f, 0xa499f543, 0xd49920be }, { 0xdbc2f705, 0xc93a3647, 0x368cd1eb, 0xfd976d25, 0x41db15ed, 0x644bf5f, 0x4343021e, 0x6ff4c426 } }, { { 0xf1acfad9, 0x809392ff, 0xe04198b2, 0x13290dab, 0x55fe8cd6, 0xc218feb8, 0xba9dce53, 0x31588b4e }, { 0x45486378, 0xf7e6836f, 0xb329f7b3, 0x37e9e7a1, 0x70e46b91, 0x7fb6bc2a, 0x2977f324, 0x2353830e }, { 0xcdc9d659, 0x3e0f6bd, 0x7834b554, 0xd4c275c7, 0x146d324, 0xf2b95e22, 0x7050f5f, 0xfb8165c4 } }, { { 0xe40bbfa, 0x2f9b6d2a, 0xae007d23, 0xa0614878, 0x34404145, 0x89803619, 0xc302c58a, 0x20bd4fd0 }, { 0x2ad6a33b, 0x6eb611f9, 0xefe3b2cc, 0xabf6161e, 0xa2b18c67, 0x4ae30993, 0x5523f46d, 0x22542eff }, { 0xd57aedfc, 0xb9856815, 0x81911538, 0xe3ae27f0, 0x25c934, 0x7a932eed, 0xe559581, 0x30ae9c0c } }, { { 0xb074a392, 0xcaf18267, 0xa2de6c5e, 0x80f45f03, 0x82a7d942, 0xbaa72ebd, 0xc8022e61, 0x2afbf1b4 }, { 0xa5d92253, 0xb1a8e2a5, 0x9cae15be, 0xa75d692b, 0x3bae757b, 0x8fc12407, 0x95d79dee, 0x8d389895 }, { 0xe9b9426f, 0x7c6da55d, 0x4e717cd1, 0x2b614770, 0x797e86ae, 0x8f6c5ed9, 0x693fcad5, 0xb67f84bf } }, { { 0x94f14ed8, 0xe302daf5, 0xdfac48b7, 0x301ed180, 0xcae7cf7d, 0x408d88c0, 0x6ce72ac5, 0xb1752d90 }, { 0x93f4edc5, 0x7930b426, 0x7f46b3c, 0xe58d6226, 0x95a9609d, 0xe8b9d9fc, 0xd5a9cfd7, 0x50dabbaf }, { 0xf796bc10, 0xdf6d0ceb, 0x4945171c, 0xce63acd0, 0x3d3ca7ed, 0xaa9cb9ee, 0x7e37492a, 0xceed010e } }, { { 0xd54caf5c, 0xee685af8, 0xcbdf9dec, 0x92d9a996, 0xd2e466f, 0xbb6f823b, 0x38435231, 0xbd454eec }, { 0x8e696312, 0xecc23255, 0x1546423d, 0x8bd5d05b, 0xffecc302, 0xe5c34fc2, 0xc8d5036b, 0xee844be4 }, { 0x668395b0, 0x158c1c88, 0xd52fcfdc, 0xb06096f1, 0x4ffc9cfb, 0x43248f3d, 0x7dbecc43, 0x57fb7b07 } }, { { 0xbbaefd18, 0xa00ed1a8, 0xc36327e, 0x7369709c, 0xd83e62c8, 0xce5f2a4d, 0x80c9e0fb, 0x76ccd56a }, { 0x2772f2e5, 0x886ddba9, 0xd806ac71, 0x9491c036, 0x284a4c3d, 0x9d86dbae, 0xad083fe5, 0xf57cd6c8 }, { 0xe9aacc39, 0xfd337858, 0x6fedb948, 0x2cdfd5f2, 0x4d95d82f, 0x5da171fd, 0x45c876c0, 0x9710d119 } }, { { 0x97ed981f, 0xe3db71ab, 0xf716dbba, 0x7949dc76, 0x4f3ac390, 0x75a7f3b9, 0x78552f9f, 0xf47c5597 }, { 0x1bc9b910, 0x8c6c42d0, 0x2cb315a9, 0x31b231c1, 0xb72b920f, 0x24d79b6f, 0xb3e4aaeb, 0x2194bf3e }, { 0x3b2fd634, 0xc927fdf5, 0x9b1fec23, 0xe1629f12, 0x75712c8b, 0xe7b0dc36, 0xa2d31de4, 0x54a8a658 } }, { { 0x1a8f8835, 0x9c39efaa, 0xf3d4b885, 0x68c61843, 0x19c17d39, 0x222be04e, 0x632d2009, 0xc93bbc0d }, { 0x280f1c16, 0xf804bbf2, 0x6d5f927d, 0xb1d31c0d, 0x6292782f, 0x56120d24, 0xe1d3f7be, 0x57f1122d }, { 0x4dfe08d5, 0xb65e100a, 0xcb376317, 0xd6eb0ed0, 0x7d0a02ba, 0x606eec38, 0x43c9e715, 0xaf7e9086 } }, { { 0x5d72d6ef, 0x24b5738d, 0xe4eb1b02, 0x669e4377, 0x346cc6b7, 0xc6db8058, 0x62f057d0, 0xdc69435c }, { 0xe3b92182, 0xe4c77864, 0x52a99719, 0xfb1fd558, 0x3f5bf757, 0x3c0e6af9, 0x9e809db, 0x1c48b92 }, { 0xe7b0fb7c, 0x1097b7ba, 0xa6cd4543, 0xb11285b9, 0xdea57f9d, 0x2f9e895a, 0x8a515d28, 0xc5180e9b } }, { { 0x10e4ac17, 0x254891b8, 0xd7272950, 0xe9031b4e, 0x1dd3cf2a, 0xa21eeb9f, 0xa1fedbc5, 0xe0976d35 }, { 0x74459f9f, 0x67dccb49, 0x6b82130f, 0xd0ce819, 0xd36aa13d, 0xddd204ba, 0x16747a68, 0x3debcf9d }, { 0x6e93d650, 0xd8d09f50, 0x6ab09fd6, 0x23009d6, 0x30ef3520, 0xecc59989, 0x5960a8ec, 0x9026367e } }, { { 0xcddf735c, 0x8247118b, 0x7c21d0fd, 0x6a221231, 0x549a03ca, 0xfebd31e7, 0x73bbcc4c, 0xf3a1f20f }, { 0x6e53235d, 0x43e547e1, 0xf74ee266, 0x28c046d2, 0x92aa49a, 0x2fccdce9, 0x288a6e41, 0x75656d6a }, { 0x2be97cc5, 0x3c623b15, 0xaf8160, 0x4ede193a, 0x50d51087, 0xd078f64, 0xdcb36fe4, 0xb4a9d760 } }, { { 0x4925cab4, 0x2b8d29e7, 0x5cdd9cd9, 0x944f3d10, 0x5214389c, 0x2e1b17a9, 0xc1c124e2, 0xba5cbd6f }, { 0xc4fac31e, 0xe5045b1, 0xcada336b, 0x3c24e630, 0xb24645ac, 0xcffe01ac, 0xe011b384, 0x1274bdf5 }, { 0x8b5ede8e, 0x1dff191a, 0x36fce6e4, 0x6e0a4f5b, 0x9f8d8696, 0xe6d2a2a, 0xb2a94e74, 0x47445d7b } } }, { { { 0x2437cb5b, 0x9f89879a, 0x5e8e9ff2, 0xe5a3e0c6, 0x91b5398, 0x50551b10, 0x6dc94567, 0xd7489df7 }, { 0x93e4fbd8, 0x73215177, 0xf048e1e, 0xcee4a003, 0x5684f85d, 0x45bcb29, 0xa7835bb3, 0xf2bba012 }, { 0x995af47d, 0xfb18321b, 0x1e5ca28e, 0x23b4475, 0xf87fbe61, 0x50e512c6, 0xc853c8ac, 0x482e476e } }, { { 0xdf42aa2a, 0x7d7b82a4, 0x45a4d031, 0x431488a4, 0xf6fc951a, 0x3da52716, 0x4615847d, 0x627fe227 }, { 0x2cee56c8, 0x7cd2c267, 0x2373d706, 0xd0bb313f, 0x8ef59b2a, 0xa62104d1, 0xacf9770d, 0x8ca8bb4a }, { 0x806eef12, 0x7fd87a1d, 0x2511728a, 0x44c37938, 0xa839479e, 0x2f87a11, 0x76234a76, 0xfc6a172a } }, { { 0x695fad23, 0x7e5d2610, 0x22bf99b7, 0xdc89f635, 0xe074237, 0xbf24e607, 0x7ab3ce7e, 0xaa8e43a1 }, { 0x536d2231, 0x7ee947e8, 0x1ae1b747, 0xb1494df9, 0xc83c566f, 0x8ffe7032, 0xe2281042, 0x91fb3293 }, { 0xc2e47488, 0x88029d5, 0x54070e0, 0x38ac7e44, 0xac04ae50, 0xf7d558ad, 0x97f00aad, 0xea5e60b } }, { { 0x8fd7cc76, 0x3657165b, 0x72aea528, 0xe0b05eb, 0xa7b6ced4, 0x9ac94710, 0x87be31b9, 0x48022f7d }, { 0x55a059f6, 0x442b45de, 0x3477a07, 0x79901c52, 0x7b3297d2, 0x459f8e39, 0x2f28e06f, 0x221c2d33 }, { 0xa11ef864, 0xbb12f013, 0x2db422b, 0x23a84e8a, 0x4dffd217, 0x35f7deca, 0x340a4221, 0xe32ce6c1 } }, { { 0x2f814b82, 0x18c0ad1b, 0x5bb53a35, 0x2a75d47b, 0x762485a, 0x7e97a291, 0xb7b7fc4f, 0xeb8273fd }, { 0x6ab6f96a, 0xf1c9d243, 0xe29ed2ad, 0x54945176, 0xf14c90f4, 0x62316fa9, 0x18350015, 0xe3429e94 }, { 0xcbce632, 0xea19d7ad, 0xdd51a2dd, 0xe418a13f, 0x6d5593e4, 0x25259eb3, 0x91da87b1, 0xe334dd87 } }, { { 0xc8872507, 0xa86a2bbe, 0xb585d609, 0xa81e9cab, 0x65931229, 0x638b4bce, 0x923de241, 0x5c56361 }, { 0x25bdab6d, 0x7b064087, 0x39eed9eb, 0xae07f2ec, 0x79b29c27, 0x9e508f2, 0xa7e4019a, 0xc76a0551 }, { 0xf52fdaad, 0xee77c97, 0x107a8fbe, 0xef835234, 0xa9c9c5b9, 0xeff6f04a, 0x9ddab1cd, 0x400d901b } }, { { 0xfb4f9aca, 0x5f78b810, 0x14301157, 0x9a36df77, 0xebae091a, 0x7a90315d, 0x9343fd60, 0xa21bff58 }, { 0x3047a6fc, 0x59e29171, 0xa4ea5ea, 0xdbe63845, 0x904b5241, 0xf948d1a, 0x5b2bc2ec, 0xd96bbf2a }, { 0x3aea8d7c, 0xdda38366, 0x3d134430, 0x5ba5ded6, 0x33b59459, 0x389f6e6d, 0xdd54772a, 0x7e2343af } }, { { 0xf2d10c92, 0x16be704e, 0x856dcd2a, 0x91adfeb1, 0x102db70, 0x9df45ebd, 0x449bf0c6, 0x22a1182d }, { 0x881e3d5d, 0x6a1c5002, 0x5d061792, 0xae16f889, 0x5c4b0d69, 0x6a69192f, 0x63d54981, 0xe38fbbf0 }, { 0x6257bffe, 0xc887d203, 0x8d6830bd, 0xf54abfb8, 0x8c64fa10, 0x9b98494e, 0xe9873c7d, 0xab84e8cd } }, { { 0xb2ff75b9, 0xbfb5d335, 0x66e7b1f6, 0xb870874f, 0x72c17651, 0xb49a63, 0xc8b27f3d, 0xea0ba492 }, { 0x81f9f329, 0x8889c882, 0x52b21006, 0x2c49a65f, 0xfd79d672, 0xbb589c85, 0xfd6f34c1, 0xbc7c4210 }, { 0x40d9e72b, 0x41e58450, 0x3414eb05, 0x8f874481, 0x216aaa17, 0x32720533, 0x500195a4, 0xd2934595 } }, { { 0xb67f120b, 0x9f9b79ce, 0xa0693eae, 0x93182b57, 0x2abe774e, 0x8f2bd303, 0x69e15500, 0xb8169d64 }, { 0xda727f72, 0x17ca37d, 0xf267039f, 0x2a27d4b0, 0x744bcbeb, 0x52921f43, 0xf84f30a, 0xbf75312e }, { 0x5252513f, 0xf3e3ff21, 0x4ae4ee2c, 0xa582b888, 0x54355705, 0x1602b963, 0xa8632a5b, 0xdda9e267 } }, { { 0xd5b37db4, 0xec256bae, 0x256ff90, 0x25a55811, 0x9f147829, 0xbf9da065, 0xead90aca, 0x5bb42348 }, { 0x723d6e18, 0x5ec6a379, 0xe9e8eb4e, 0x952a2d0a, 0x5ebd6f1, 0xfccd5a53, 0xa76c5b97, 0x6623b3b1 }, { 0xb510c042, 0x160cb256, 0xb7c23e26, 0xdea0099a, 0xa33b237, 0x41ce5142, 0xda3c9528, 0xeb237c08 } }, { { 0xbc7e7678, 0x5503dfb9, 0x84b43c80, 0xe254c410, 0xd54e9791, 0x77b59e8a, 0x85b6768b, 0x36447f10 }, { 0x4ae339b9, 0x5875b53a, 0x8fafd31e, 0x1155e628, 0x5d156e93, 0x58a0fcec, 0x795ab039, 0x4b3121d4 }, { 0x4caa5424, 0x5633d97a, 0xde246a26, 0x9a33d3b2, 0xfaacc2ef, 0x70751582, 0xa8893076, 0xd127a801 } }, { { 0x3747ab61, 0xe8bfcd59, 0xbf68169a, 0xb5cd367, 0xed2fb71b, 0xab929c23, 0x3fd7e9ff, 0x7b0bd5d }, { 0xa58197f, 0x8299c81a, 0xb0afe112, 0x313f82ce, 0xf81a0e61, 0xb5270dbc, 0x4d807cfb, 0xc4c6e100 }, { 0xc84ae96d, 0x1e7f3b2b, 0x75361d84, 0xf405507d, 0x1d962def, 0xc9a8b5d8, 0x8950f6a2, 0xa2ae4d99 } }, { { 0x4994ba81, 0x4a53243f, 0xc70cec46, 0x317b8385, 0xfb3acab4, 0x3fb9d8fb, 0x9640fbf1, 0xf30af02a }, { 0xbde84cd0, 0x2df2d254, 0xfd7ed012, 0xefba31f7, 0xce37e4bf, 0x410bcc25, 0x32708422, 0xa093b179 }, { 0xf67c1dc3, 0xda7ec49, 0xaa536025, 0x873f83c9, 0x84bfb778, 0xedd63017, 0xe271cd75, 0xd9f2e325 } }, { { 0x532fb4a1, 0xdead5da4, 0x70a340ba, 0xd73f01c0, 0xfc06a409, 0x50bc7214, 0xe65faa40, 0x2824dee8 }, { 0xbdfbf3be, 0xee52b65, 0x4774ff4e, 0x36554fa8, 0xd7f65fbd, 0xbdd4824e, 0xe2186f16, 0xcf1dc776 }, { 0x902d916b, 0xd1e9cfba, 0xa6cc6019, 0x59c48d0d, 0xe3ed8392, 0x43e6def0, 0x77b4ec23, 0xcf046272 } } }, { { { 0x2196f87d, 0xba7d403b, 0x7bf8a11, 0xc9d05685, 0xc02c8258, 0xb0ede79, 0x848fbea9, 0xd09b5862 }, { 0xb295b60c, 0x7ab0f8e6, 0x26079ff, 0xa59dd773, 0x9e02d154, 0x11a4e6e5, 0xe9323e06, 0xfdcdb1eb }, { 0xe59e036e, 0x8001094e, 0x6c453a97, 0x2541d635, 0x5fad4b1d, 0x1d59a7cd, 0x3ac1da2f, 0x52f0897a } }, { { 0x6b82db6c, 0x4e48f9fa, 0xe5516043, 0x11554610, 0xf9dcbf1f, 0xe5c768d7, 0x70fbd768, 0x15b8744 }, { 0x12eb991a, 0x401a8c52, 0xcd3c4835, 0x15ad4e3, 0xbde6cc7d, 0xe9f0685f, 0xda4991bd, 0xdf945cf }, { 0xc17b8c3d, 0xf15fb406, 0x948b2373, 0x618f73e6, 0x26c7435d, 0xd14edff0, 0xaf3c62ef, 0x71adad18 } }, { { 0x2fbdb0aa, 0xbf389769, 0xa3ca2d27, 0xb8a3eb6c, 0xd9344c0, 0x5176e3a7, 0x9f5eb036, 0xd16c1ca0 }, { 0x6ec161a, 0xd78cc410, 0xb23be31e, 0x431ee6c0, 0x54238db5, 0x24e1138, 0xab05c90f, 0x9391aa05 }, { 0x66e9c862, 0xd59d12a7, 0x7b5785d8, 0xf9bbc2ab, 0xdc57b68f, 0x972698df, 0xb9185354, 0x14b63bd2 } }, { { 0x577e71fd, 0x22bfb751, 0xddde1cd3, 0x73a55f70, 0x1404fd82, 0x294e42ba, 0x6611a9d3, 0x2841112d }, { 0x5abe4466, 0x84a39a15, 0x2e8011b9, 0xcfa2237d, 0xc94c91a2, 0xc825e43f, 0xee7db7, 0x8038e536 }, { 0x66491eeb, 0x4f2b69e7, 0xf54ef66a, 0xc1ec1ff8, 0xc329d57f, 0x2d7dcebc, 0xb0e58142, 0x4959e3da } }, { { 0xd8d812c9, 0x67059057, 0x26b41ed6, 0xb13f151, 0x9b002ceb, 0x32272674, 0x694249f9, 0x9c5201f4 }, { 0x63feadd5, 0x50b9223a, 0xca3fd378, 0xc23b9c99, 0xe155f8e5, 0x6511009e, 0x6ca921ea, 0x10b878ce }, { 0x965b94fa, 0x35c44f2b, 0x55e0999f, 0x163675f2, 0xa2562baa, 0x1c646f65, 0x1b1f52bc, 0x8f921aab } }, { { 0x1ae73554, 0xaacc7007, 0x344541a3, 0x3d61bab9, 0x50086c25, 0x708cd2f, 0x2a2d325b, 0x9a0efe5a }, { 0x9e3a4214, 0x530f6875, 0x2044d808, 0xd9c10599, 0xb6987238, 0xa1f413e3, 0xc547f9cd, 0xe7a13cdb }, { 0x683ff5a, 0x6bd92f18, 0x3475900d, 0xa2214c39, 0x5308e8a2, 0xdc8f354e, 0xe273e79c, 0x239527ec } }, { { 0xec97b4a4, 0xa593a1b0, 0x2c5e1d27, 0xe8d14bed, 0xb0209ab3, 0x40bd0cf, 0xe67269b9, 0xcb2499df }, { 0xd1f64748, 0x6d7a5c6e, 0x8cc2bff5, 0xe90c2793, 0x8a7e355d, 0xf89010b1, 0x40a1f145, 0x580ed060 }, { 0x515afe0e, 0xf222a1cc, 0xf4c60788, 0xe0f3b4ca, 0x1c68e541, 0x294e16fb, 0x41116ded, 0xbcb5240a } }, { { 0xc730f433, 0xfd92d93e, 0xf52b4535, 0xe5562816, 0xe6d35e89, 0xd92cb2ad, 0xeb3ce838, 0x9a3fea3a }, { 0x7fcb1215, 0xe33e1ea5, 0xc17d79fe, 0xbc60d480, 0x77edc618, 0x7685bdc8, 0x917520c4, 0x37db2d03 }, { 0x7991e22d, 0x2061aea0, 0x53fb7710, 0x6411dca4, 0x999f7a16, 0x97c5241f, 0x2b686d8e, 0xcdfd56e5 } }, { { 0xe5c58f80, 0x505e112a, 0xcc30d187, 0xefe812ad, 0xd8260826, 0x3d92d7d1, 0x6bbf50eb, 0x1f9248ec }, { 0x5f1ecbf7, 0xe3e19f57, 0xe878ec29, 0xec149b25, 0x85cedf92, 0xf088a862, 0x41f97990, 0x73009626 }, { 0xd1bf4d4c, 0x8449ca56, 0x8ed79400, 0x8a53d077, 0xfc00e7b3, 0x2123e809, 0x200ad252, 0x45305282 } }, { { 0x7ce327d1, 0xa2e84f15, 0x7e25aaac, 0x4e9638f5, 0x179f0f0, 0x5ba6ec28, 0xa24ba053, 0xdc32181b }, { 0x610f0c43, 0x1f879878, 0x606c9fde, 0xb8c8d823, 0xb2f35184, 0xe4da4af9, 0x1b61a667, 0x41535239 }, { 0xd2ac4acc, 0x1b8ab01, 0x77a5c844, 0xb0a465db, 0x3536690a, 0xb7d0c1f5, 0x62d23540, 0xaa48246e } }, { { 0xe5926c28, 0x87ffd778, 0x178dbdad, 0x927be1e4, 0xbee368fe, 0x994b8fe, 0x63f526c0, 0xb643abf5 }, { 0x95d4e6a8, 0x3312c2c3, 0xf077e55c, 0x8c395045, 0x879fb465, 0x43b7f1e5, 0xaef80c0a, 0xddb99984 }, { 0x16bd590e, 0x1876e76, 0x2e1770f1, 0x51c48a91, 0xc5e8ac5, 0x139af9dc, 0x7afd8129, 0x6177fa4e } }, { { 0x45d6b0c2, 0x65b67fdc, 0x1b9c8120, 0x34a0917, 0x6519e562, 0x9f01baf, 0x405a2fda, 0x34fc8fb }, { 0xa87f39b5, 0x6cc6af4, 0x5ef458c2, 0x4b33e75e, 0x534b0f6e, 0x8f5e3004, 0x9536c710, 0x5f79f63b }, { 0x258eeabf, 0x1a0399dc, 0xd7e6b129, 0xdd24a168, 0x4260b1a8, 0x7057d22f, 0x91b6734, 0xa1d731d7 } }, { { 0x115ea796, 0xc12c9f15, 0xe2c3e752, 0xdc87b60, 0x433361a, 0x90dd657d, 0xcfac9f39, 0x56d5ec3 }, { 0xa4f253e9, 0x2843ad0, 0xb8665f19, 0x6b1ad008, 0xe7cb4bf2, 0x27e3562e, 0x7e66a31b, 0xe17aa63b }, { 0xeeb37845, 0x9a4ccc40, 0x64edc768, 0x93e4bf43, 0xdb86d02b, 0x32a08723, 0x6e5bd7a3, 0x1472e7d0 } }, { { 0x9ecbf316, 0x4bf3bda9, 0x4cd0ee17, 0x15e1e8cf, 0x4898c079, 0x2699714c, 0x13fff4d3, 0x35d6bfea }, { 0x19c32016, 0x6b3ef638, 0x4abcd950, 0x7ed65084, 0xa14b6211, 0x916df8ab, 0x16853476, 0x18a4b988 }, { 0x7dcc12bf, 0x676f5f3c, 0x74c4279c, 0xc26aeea2, 0x515ab6b9, 0xde9dd52e, 0x16f5b2f0, 0xc94fe465 } }, { { 0xc398e8b8, 0x69b96443, 0x1a41c693, 0x95871b67, 0xebfc643a, 0x331b3532, 0xdab8da77, 0xba599f1a }, { 0x5a670929, 0xc2870184, 0xc7f45435, 0xaccaf953, 0xef13e875, 0xe6a58a74, 0x93c86b7, 0x73fe853d }, { 0x87ec8420, 0x19b6c0c5, 0x7c0297e1, 0xffc0a8aa, 0xd0c2103f, 0x9cbe54a, 0xe25735d9, 0x601979f9 } } }, { { { 0xf8ad208c, 0x7a23d6d9, 0x23e1a8cd, 0x6e73d449, 0xd1d8b3b2, 0x6611d5da, 0xabec84d, 0x42e2b11e }, { 0xae8a5d5a, 0x7c449a9c, 0xffd6d49f, 0x7b56970b, 0x10e99f1e, 0xbe8a5ff4, 0x124b7ee4, 0x1e9aafdb }, { 0x47423dac, 0xc4d38e12, 0xea49481, 0x52eb6c56, 0x707783d3, 0xcbb5f215, 0x277dc356, 0xf67c1501 } }, { { 0xf3fbbaa5, 0xbb55875, 0x6869412, 0xdfddffc9, 0xe3af46a0, 0x52e8981c, 0xa8edb532, 0xedbed6b }, { 0xfcb6ce90, 0xfa875cf3, 0xecece263, 0x9cff4423, 0xc2d54d01, 0xc93be30d, 0x78970901, 0x4f87b6d6 }, { 0x3a6cda31, 0x2f1248fa, 0xbf58f128, 0xbabde448, 0x9be1d7c2, 0xe92e2789, 0x40858d5f, 0x8e55aff2 } }, { { 0x450de146, 0x72f1da39, 0xfb94c973, 0x82f628c9, 0x86bedf1f, 0x58eb925f, 0x1db467e, 0xaf4f0aca }, { 0x34ab197c, 0x4ddad0ea, 0xcfa8d02, 0x39247414, 0x3bbc44b0, 0x15599d, 0x7cd6f0eb, 0xdf3fb02d }, { 0xdda1f6d8, 0x6c9d8822, 0xc80fc9ee, 0x2e7f1605, 0xf61cd24b, 0x48b80c54, 0x8e44c74c, 0xaecbaced } }, { { 0x18a8c564, 0x1e19bb30, 0x2fae07d7, 0x4179f249, 0x9a325e38, 0xa6cb6627, 0x55a08154, 0xa3cd656a }, { 0x1c1a1db5, 0xd87404bf, 0x14176f7b, 0xa2a14ca8, 0x20c6a1fb, 0x98c6ab05, 0x1de8361e, 0xc8eefe17 }, { 0x560f2622, 0xbdef07c3, 0xb03c3875, 0xfb5172f5, 0xf5d588e3, 0x228f82ab, 0x82551363, 0xd5b413af } }, { { 0xb6f423d, 0xeb285145, 0x7ec95dba, 0xbb6b0c13, 0x6b5412df, 0xecffa7ff, 0x5c209e6e, 0x8e249010 }, { 0x6d58c9c1, 0xc11fb7af, 0x391e93ca, 0x1a61b134, 0x82a33f1b, 0x4985b647, 0xef356e44, 0x51723ded }, { 0x27732fbe, 0x3d0c6319, 0xb44baae7, 0xba64c017, 0xb19e7e53, 0x4f3ec685, 0x7b36fbba, 0x3d06e120 } }, { { 0xe1b9aab6, 0x4d0616c2, 0xc64c838, 0x1cce06c6, 0xb6026516, 0x61c3f74b, 0xb0855069, 0x948dbefb }, { 0xa1a05308, 0x3e9feeea, 0x9fb519df, 0x611b0a76, 0x9c152e34, 0x89dd48ee, 0x3e85b561, 0x38c217fe }, { 0x366ce05c, 0xd3fc4b1c, 0x55d0d273, 0x15b422ef, 0x63c97ea2, 0x4669cb15, 0xc8b3d7f6, 0xde33d1f4 } }, { { 0x630c4abf, 0x1a7d401, 0xa9fd0b13, 0x6e2c85c, 0x74e78875, 0xa16e62dd, 0x7877e3d3, 0xf4d24c15 }, { 0xd0ec4ce4, 0xe52357f, 0xc9fe6e21, 0x820d6868, 0x75c5dfcb, 0x32d1f11b, 0xdeb77b9, 0x63649a0c }, { 0x46cf8bba, 0x329c5a81, 0x1accf507, 0x430c7d33, 0x9d1cb44a, 0x6e93fb47, 0xa074b42e, 0x33ed0f63 } }, { { 0x6ddd9c8c, 0x3db2101c, 0xf1df396c, 0x3a809c13, 0x6f995a91, 0x36e1950f, 0x4e951395, 0xb31355b7 }, { 0x31e31115, 0x5e68aa5a, 0x31608de7, 0x4b0b1b95, 0xb22221e9, 0xb232f1c, 0xf6a72edc, 0xfe928d45 }, { 0xeb335a83, 0x8a71fa91, 0x50e6c099, 0x3d31eb0, 0xc963b3f4, 0xc514e758, 0xd2aacef7, 0x66193ea3 } }, { { 0x21995afe, 0x25943265, 0x521dd61d, 0xdef6665e, 0x29f779fe, 0x8e95042e, 0x40f4917c, 0xd3e4d50 }, { 0x066e30, 0x8415d462, 0x8f634917, 0xaca3e9e1, 0x5d4c5937, 0xe41f13c0, 0x48df396a, 0x99096482 }, { 0xb88024ca, 0xa9a1bf8a, 0xaa7f96a, 0x6aeea67d, 0x4ec075eb, 0x55147b78, 0x9f0f9774, 0xefa96f2c } }, { { 0xbadd4258, 0xec24f000, 0x5c1bc38d, 0x84afa3bf, 0x3d12b57f, 0x8d99906f, 0x3f132151, 0x1c91c40c }, { 0x22cd5983, 0x3f68d6af, 0x1c587b63, 0xd501e6b8, 0x23b11610, 0x6e66249c, 0x9640d505, 0x8f01ec68 }, { 0xe9cf113f, 0xda51258e, 0x3d71644b, 0xf1d04ba5, 0x379cb39b, 0x6a769177, 0x8bc55843, 0x7c98f316 } }, { { 0x25018ec4, 0xfc0e342c, 0x3587de2f, 0xb22450a5, 0xf11e1222, 0xa20b77d0, 0x2c7632fa, 0x8e007a78 }, { 0xad00abdd, 0x58ff034b, 0x383b7edf, 0xf906935b, 0x1b0526b5, 0xc67f3b06, 0x844ed3bb, 0x7435e4ad }, { 0xc5e3454e, 0x8f3d2bda, 0xbdb339c, 0x6e860d9, 0xd0ec6fe5, 0x978c76de, 0x472d3397, 0x3d224c2b } }, { { 0x32408f40, 0xcbd2722a, 0x36dabe9e, 0xf0a827a3, 0xddb48299, 0x4983315e, 0xe875303, 0xbb4dd13a }, { 0x7293ecb0, 0x3d6ae719, 0xdf79fb18, 0x617523ce, 0x516e0149, 0x65838d21, 0xda95f40a, 0xd2000968 }, { 0xbad19b03, 0x60210246, 0xf2a78e45, 0xcae5268f, 0x3dccc2f0, 0xa5ebfeca, 0x52501d5c, 0x83cc1f47 } }, { { 0x4a0e2a34, 0x6e83c722, 0x9f38f493, 0x3a918570, 0x2b4b9df2, 0x7faa5b8a, 0x81e340de, 0xa9c7bf90 }, { 0x1b3e4a69, 0xb63ef8ba, 0x116d5a67, 0x749ce475, 0x8862a4c4, 0xa828f70e, 0xabbf9019, 0xb881128e }, { 0x8bccb97, 0x66156328, 0x7c8f7307, 0x9910cff, 0xc5ba6146, 0x66041208, 0x6d86877e, 0x67f39d49 } }, { { 0xef461ddb, 0x7729bb67, 0x2931d29f, 0xaa44b5d, 0xbeffe3eb, 0x20a656db, 0x7a95bdd2, 0x268fada4 }, { 0x9db0261b, 0xe3b37717, 0xf822b1b2, 0x2b4ca471, 0xa63b55ec, 0x255c9605, 0x95a79845, 0x6522bfd8 }, { 0xc00c4af4, 0x607823b6, 0x609ed9ab, 0x503efb91, 0xba6659b7, 0x882d42e9, 0x115b28a3, 0xce25b3fb } }, { { 0xf37b994c, 0xd8d0fca7, 0x3b18b077, 0xedce63bc, 0x53cdc55a, 0xc45f241c, 0x64af86fe, 0xc56ae371 }, { 0x878c8010, 0x6d563c6d, 0x49b7b0a3, 0xa035ee0b, 0x1b00a3e1, 0xda12e188, 0xa9354891, 0xfbdce7e3 }, { 0x98b7c471, 0x2790c59f, 0x52b0004, 0xffe44a93, 0xc40f148c, 0x25cc36e0, 0x3e77f3c0, 0x98778813 } } }, { { { 0xd120f316, 0x4f9f5bf2, 0x8516935e, 0x94a5eb8f, 0xcc9abae4, 0xd64670bf, 0x55fd4cce, 0x519c1842 }, { 0xd9a02bf3, 0x94858b68, 0x56f1c467, 0x70003cd3, 0x5ce6e312, 0x6315b062, 0x7f057479, 0x728be160 }, { 0x25d13d91, 0xdf09fc46, 0x57f7b31d, 0x95c87c41, 0x95b9c2f3, 0xf076c86a, 0x69874f90, 0xfc19529f } }, { { 0xb26b128d, 0xd1655a16, 0xe4420e67, 0xfccead39, 0x141de557, 0xa803f303, 0x9ee2f0cf, 0x7b923838 }, { 0x83f4edc6, 0xc5ea07b3, 0x444c6a8c, 0x6c108f95, 0x79bc051b, 0x9e62210e, 0xa28bcc59, 0xc3f2d7cb }, { 0xb5c164f6, 0x37e0025b, 0xcb6d6701, 0xaa15d487, 0x15811295, 0x66d9e547, 0x894d3297, 0xb6009fd4 } }, { { 0xa3051428, 0x5a6c7850, 0x9f00a4c1, 0xf30e93f, 0x4a94fc13, 0x786b9acd, 0x5c5c00ad, 0x49052d36 }, { 0xdf077c69, 0x61972644, 0x266bedd1, 0xfbbbab32, 0x4c61df26, 0xa29de386, 0xdf993a36, 0x9efcf0c3 }, { 0x19851eec, 0x1a578489, 0xef70742b, 0x71bb80b7, 0x36e1ea3b, 0x5e7098d8, 0x12a0458, 0xb3f99e9 } }, { { 0x65d0db5, 0xea9ad228, 0xbdeb4310, 0x8b63c8ff, 0xe49c70bb, 0x9ffafc17, 0xc23ca9a9, 0x5c434479 }, { 0x41ea5589, 0x215d51ff, 0x4c1465a9, 0xd1c37151, 0xcc63c273, 0x3d371820, 0x389d21e8, 0x5fcf2bfe }, { 0x27922fca, 0x536933fa, 0xf7d66d42, 0xebcef5de, 0x1776b03c, 0x8beaa0ef, 0xbef1c98, 0x9fc8356b } }, { { 0x28e7af53, 0x445dcec4, 0xa3887f1a, 0x339dd94d, 0x65070897, 0xb2f55615, 0x11076731, 0x271c4954 }, { 0x236e9530, 0xa0f2d115, 0x9de8162e, 0xbb81b254, 0xa92a0819, 0x7f499703, 0xd1573076, 0x51fa28b0 }, { 0xbd4a6a2, 0xfdffb557, 0x4203e76e, 0x19591a0d, 0xaaef3955, 0xe8fba7d1, 0x3b0e0df3, 0xb2cf179 } }, { { 0x75e77122, 0x1765e2cf, 0x4f5cc927, 0x30e6ffde, 0xd3247f06, 0xd9fff384, 0x9c104f45, 0x6219daf }, { 0x20ec0860, 0x34e2ebee, 0x28a1119f, 0xdf737a8b, 0x15a1d656, 0x96144e8a, 0xd2939c43, 0x1515cdfd }, { 0x21c6191a, 0xf8d4958, 0x333d8427, 0x5287bef5, 0xc0be12e5, 0x27f31a96, 0x5f8d0be3, 0x24c9290f } }, { { 0x34bbc951, 0x17f31ab2, 0x4aeecb7b, 0x4779e04b, 0xfd973e8f, 0x85fbecbf, 0x2d1966d5, 0xa194f48c }, { 0xd88a1c78, 0xa5a58e49, 0x922b2f34, 0x659ae985, 0x2a770065, 0x5ab794f8, 0x88e5e496, 0x5340a3c3 }, { 0xe35b8ebe, 0x8a684ba, 0xbed47e8a, 0x34e13c59, 0x72c81e6f, 0xd0bdf4f5, 0x3f4933d6, 0x6251220b } }, { { 0xa220a43b, 0x1392d700, 0x1b608d5a, 0x46139e89, 0x7176f1aa, 0x8121788f, 0x25af20ed, 0xce3212e6 }, { 0xb50d0458, 0xfb8f0289, 0x521c4df4, 0xc23765fa, 0x3e97c6db, 0xa0b57e57, 0x9367c232, 0x77028b02 }, { 0x6983edb2, 0x93fb3a18, 0x44c68d8a, 0x9a27f473, 0xe65e4f6, 0x78838bd, 0x9d649835, 0x70fa8ee1 } }, { { 0x1cc35946, 0x46ea7504, 0x9a790cb5, 0x6d897b24, 0x32e5c34b, 0x234d69ef, 0xc99de035, 0x32ed9282 }, { 0x56d6d08b, 0x277e82a5, 0x6869ceb3, 0x583d9b4d, 0x3a5774ee, 0xf96b63d3, 0x593ec812, 0x85581c8a }, { 0xc3a9415a, 0x2354650d, 0xdf7393b1, 0xc38005b5, 0x6adaae3f, 0x94b241a6, 0xf61c4be5, 0x7e8a255c } }, { { 0x6db287c, 0x11e39307, 0x86381ec1, 0xbd1fa3e0, 0x1881b914, 0x831023b0, 0xb3fa3d3a, 0x6a93dcef }, { 0x95f1ee38, 0xa4ea3edc, 0x787ad2b0, 0xb0c2422d, 0xf2297a22, 0xecb5d142, 0xc09f13eb, 0xe681b898 }, { 0x907466e, 0x3d4d0d8c, 0xaa1f338e, 0xb170f06f, 0x11f6a575, 0x5f7e9bfc, 0x73ada96, 0xaef26903 } }, { { 0xec545d6c, 0x826a3def, 0x83ab957d, 0x96ae4d5, 0x74e5f2f2, 0xea386248, 0xb63e2fb1, 0x9851024f }, { 0xdd45d57b, 0x42ffe3e6, 0x789a9fa9, 0xc2adcc6a, 0x28919a38, 0x29f8ea83, 0x6852004e, 0x64de120d }, { 0x90a42bd7, 0xb246820d, 0x2a85fe71, 0x49911813, 0x828e688d, 0x61d4196b, 0x0bcc40, 0x91497ad3 } }, { { 0x276ea23a, 0x7399a05, 0x844bc038, 0x2fc04237, 0x2377947c, 0xf3c5b631, 0xbc833a85, 0x22879cd6 }, { 0x37f0d136, 0x25e42469, 0x681fd158, 0xfaacdbea, 0xfd7de20, 0xa6368275, 0x547e4357, 0x58bb054f }, { 0x5132bfac, 0xcdccb1f7, 0x88a8c7ac, 0xac91c52e, 0xd3718b3b, 0xf8265f95, 0x9a344c95, 0xf61ca3cb } }, { { 0xc2bbae1f, 0x247e6051, 0x623809b2, 0x8111d9ed, 0x4c6d1b01, 0xa32b19bc, 0x86d663a0, 0xc2b351d3 }, { 0xf0071f46, 0xa599cac6, 0xd47dad7d, 0x4c33db1, 0x712a1b25, 0x2d4880da, 0x73e5c9eb, 0x28fbc0c5 }, { 0xe7ec5807, 0xd83fdd23, 0xe55e8e57, 0x5f573b59, 0xa7fcba79, 0xb482b8d, 0x1db2319b, 0xcf304c18 } }, { { 0x9718576b, 0x7a2b919d, 0xe4f340be, 0x8d78216e, 0xd3e29fe, 0x908a30da, 0xcec4c60b, 0x708d74ab }, { 0x5f7f8b75, 0x3e47bac6, 0xbb176000, 0xeafec9ba, 0x47fc2116, 0xf8db158, 0xbbd1a0e9, 0x94f73c3c }, { 0x2fa8d60d, 0x65b629b4, 0x6c6d5deb, 0xab6e5816, 0x8602a80c, 0x7b8d0bf7, 0x1a1ff164, 0x724cdf20 } }, { { 0x51b273a5, 0x45835075, 0x7812c935, 0x8c9a4500, 0x777c0bc2, 0xc8af917c, 0xf32af835, 0x53a65b44 }, { 0xb059d708, 0x5f44d75e, 0x2b26c5bc, 0xa9782550, 0x589dbd6a, 0x57a7786b, 0xb4a49420, 0x6b09ef58 }, { 0xa91f4b2d, 0xf43476d8, 0x135800a5, 0x473c0de4, 0x4cadf1c4, 0x95e55492, 0x8c3b6e3d, 0xce2df643 } } }, { { { 0xc1258f89, 0x54a90693, 0xd1838c0e, 0xda5d9445, 0x7d07ec3c, 0xff6ad090, 0x6558690e, 0xe9d17a9d }, { 0xc4378ede, 0x6ba30f82, 0xc1d0bf32, 0x2255ae48, 0x19996395, 0x91ce1bde, 0x2e08a936, 0x5638f23b }, { 0xc764e431, 0xcd38b1b0, 0xa8fc31ea, 0x7bacf4e3, 0x7147ac0c, 0x2b15a7a1, 0x8978f82d, 0xe6b0f53e } }, { { 0x168265fe, 0xd9840a7b, 0xcf092952, 0x20ef0bd0, 0x1d51de6b, 0xfddf221, 0xd143f671, 0x2a218593 }, { 0x161b19c, 0x1808e23c, 0x9c6e385b, 0xb679f4e, 0xf2232d7a, 0x5ff4752a, 0x731dea04, 0x55de1efd }, { 0xb55cd157, 0x416de847, 0x42f57973, 0x854bd5c6, 0xc8264fcf, 0x6cde090d, 0x7f0de842, 0x964c62fc } }, { { 0x5fd2a1a4, 0x647619cf, 0x7e23c882, 0xc134877d, 0xab324ad0, 0x937f0cca, 0xf86f6ad1, 0x6ca3852c }, { 0x45661d61, 0xc507a1f3, 0x393e8f6d, 0x591407be, 0xb75733c4, 0xe4a61b76, 0xbcf2ec37, 0x2d0af11b }, { 0x1312bde1, 0xae2dedbc, 0xd4bd183b, 0x98908cbd, 0x69c60c80, 0x239cb2a2, 0xac3e7e60, 0xc9510332 } }, { { 0x9fde5d1, 0x23232958, 0xba98dadf, 0x705c38c, 0x5cdad2f, 0xd2b88bec, 0xafcd2b67, 0xa7af4fd1 }, { 0xa1dc5cd8, 0x1934fb6a, 0x1e867518, 0x27f02c4e, 0x3b3cf239, 0x9a679561, 0x46a04cbb, 0xf0a07f46 }, { 0x2cf46f7e, 0xd3a4721c, 0xb07907c4, 0x41c393a9, 0x55c8b167, 0x822060c3, 0x51231e0c, 0xbff512fe } }, { { 0xe7e5ff6a, 0x40652a59, 0xd8c072, 0x959db184, 0xdf35a26f, 0x9fbdbf25, 0xd4725d37, 0xc802aee3 }, { 0x65b453da, 0xd203e24d, 0x793649c6, 0xd7e3717a, 0x45f7ba9, 0xd08677e0, 0x16e5de19, 0xdeacfc74 }, { 0xd1d9bd3d, 0xe7e4f9e4, 0x3f131f8f, 0x79f9157e, 0xd3dd905f, 0x6d12f000, 0xdd620246, 0x1187c955 } }, { { 0x5a07abcc, 0xd2e80b69, 0x234215de, 0x736fe5f8, 0x4eea96bb, 0x938acea4, 0xdb843a0, 0x6da9bcb7 }, { 0x17bbb76a, 0x60d9d7ef, 0xd7954786, 0xa2916456, 0xaa89f970, 0xd044340b, 0x9a2bb9a7, 0x1f567492 }, { 0x29cc8e96, 0xafc68bff, 0x376cd9a3, 0x7b6fa902, 0xbdc6de38, 0x542083b6, 0xa83e9f0c, 0xa58132e7 } }, { { 0x3b472db0, 0xb528bd5c, 0x67830ad3, 0xf3e98a0b, 0xe737efb6, 0xb2f0d395, 0x78d5e066, 0xc4a3c370 }, { 0xf00f8d6c, 0x9294324b, 0xd1ff62b9, 0x16889baa, 0x6b0fbc0f, 0x41d94d7a, 0xecfd4f1e, 0xb2cf8089 }, { 0xcfe5a659, 0xd3142f7b, 0x466ef91c, 0xc9cc56d2, 0x976e337d, 0xe3975cb7, 0xe0228789, 0x7971d35d } }, { { 0x44804d04, 0x74f5ad2c, 0x3b4e8c5, 0x4d5f398a, 0xbe9b7958, 0x7d5923c2, 0xd8fab880, 0x55038ca8 }, { 0xaa686463, 0x62077d7c, 0xc44125cc, 0x48df3a72, 0xc829b9f5, 0x58adfe5d, 0x4d79f935, 0x4802f99 }, { 0xa548c6, 0x3e88416c, 0x4219c2d5, 0x7f8e12e5, 0x4e0d4548, 0xfe25a15f, 0x8ca464f1, 0x82ff9f4e } }, { { 0x16164006, 0x1b37449d, 0xdc2c93d0, 0xc098a5fc, 0x398222f6, 0xd0488328, 0xe7f6397, 0x779f46ec }, { 0xfa79b21a, 0x4b7a0c50, 0x79fa1f2c, 0xcdc68338, 0xe806bd4a, 0x96b717f6, 0x107ea855, 0x5af1a3c9 }, { 0xcbd6891d, 0x1c7f35a9, 0xc457c642, 0x66e82893, 0x88fe6ec3, 0x196e2620, 0x8f477a3c, 0xb53cdb8e } }, { { 0x42365ceb, 0xef9a53cf, 0x41146fe6, 0x6badf174, 0xae07cfb, 0xe956a0de, 0x2657bf92, 0x6d94b7a2 }, { 0xa03a2f2d, 0x443b07c7, 0x8bf4dadf, 0xa66964b8, 0xd842fc59, 0x8b767af2, 0x884ac016, 0xea29f5c8 }, { 0x1d1554ea, 0x4453ea51, 0x6717c629, 0x2b325201, 0x7b431fa6, 0x9a939b56, 0x5488378b, 0xe219f240 } }, { { 0xcc2779fb, 0xa572323, 0x7d13bd9e, 0xf78c2ae1, 0xcc9f1a74, 0x494c64d8, 0xad0e3a3, 0xdfca91f0 }, { 0xf4521fc7, 0x73bffca9, 0x71804b66, 0x93d4a3bc, 0x5c0ae7a1, 0xb42bb625, 0x71a55d99, 0x4c1713b8 }, { 0x9cf60027, 0xd19b19a1, 0x3e36378d, 0xe95077f0, 0x2dd9d52e, 0xb8f26de6, 0x87472901, 0xc479ac50 } }, { { 0xde2341f7, 0xd12ac049, 0xc4ef9405, 0x82290abc, 0xfb55a0a0, 0xb18c2c2a, 0xd92e285d, 0x38c43d64 }, { 0xdc0b41da, 0xcbf7a895, 0x9670baa6, 0x53e0d825, 0x2a53f9c6, 0xf952b544, 0x1dc6dcb3, 0xe9cec387 }, { 0xbd533d28, 0xbb3fd96, 0x828c0f92, 0x41201b3f, 0x921f4d33, 0x1ce8f91a, 0xe6375231, 0xf51f2b3b } }, { { 0xd073a192, 0xb1eec2c9, 0xed04c8cd, 0xebaeb7c7, 0x8a4b3949, 0x5b7a54e4, 0x6c4d04c5, 0x6916d7eb }, { 0xdbd5d294, 0x61a5d6bd, 0x9cd3e420, 0x4404c673, 0xf0759ba5, 0x64cdd8bf, 0x17424f0b, 0xa8bda05 }, { 0x4a4aa299, 0x43a11507, 0x7f91077b, 0xffe2b3ac, 0xd56b381c, 0x4c240186, 0xefec3fea, 0x2ff74289 } }, { { 0x1698cda3, 0xddbadb99, 0xf5745d46, 0x26adc565, 0x693ad6a5, 0xc55008cf, 0xfc9b3a90, 0x2ff60db0 }, { 0x80bd2b3d, 0xf4cddf07, 0xd8eae0aa, 0x1e30376, 0x2e3f4cee, 0x5222d12c, 0xd36384e4, 0x128dea41 }, { 0x5e6251a0, 0x2e3f19e2, 0xe424a2c1, 0xe8babf56, 0x4b531499, 0x4979cec3, 0x8c0c742, 0xeca6b996 } }, { { 0x486a80f1, 0x78d316d, 0xbf96b02a, 0xbafa7c8, 0xd57d37a, 0x7a056432, 0x86c047fe, 0x6c6f8063 }, { 0xeb641a67, 0x8917138f, 0x23082a0d, 0xb93bcf50, 0x281adc33, 0x32aeb5d5, 0xc7ae24cd, 0x4c084e05 }, { 0xe34b7e1c, 0x28334171, 0xa6032f90, 0x9ba7fdc9, 0x39c972d6, 0x6106cf7c, 0xba1ce70b, 0x6ac73dce } } }, { { { 0x3df908de, 0x3d631f00, 0xc0f5c232, 0x396795d0, 0x62f373b0, 0x5ca2dac8, 0x235a221e, 0xac35fddc }, { 0xa97a9736, 0x2eeace72, 0x2773cb98, 0x4fe890a5, 0x9d35faea, 0x158267c3, 0xe4ecee98, 0x1ac87e0 }, { 0x4f218312, 0xf316f88e, 0x35473005, 0x57aa5ed8, 0xe1fd20eb, 0xe2ade463, 0xaca091b2, 0x757c2db8 } }, { { 0x4c35b9f7, 0x9d34f700, 0xfa883985, 0xa80b4ec, 0xf768c5ce, 0x21941ece, 0xd696d75c, 0x92c2739e }, { 0x992fdb9, 0xbbb5acc0, 0x53fac83f, 0x1e32ee4, 0xab9ab404, 0x8a4181f6, 0xa8fee720, 0x24a33e7c }, { 0xccf7ad11, 0x7f49e3df, 0xceb2a0a2, 0xb9da0ed, 0xdacedb57, 0x5d8252b4, 0xa37ac0cc, 0x96544f60 } }, { { 0xf9895595, 0xe346683d, 0x82c4cff5, 0x20fc1801, 0x8bae94b2, 0x597350c8, 0x2bdb8368, 0x236765fa }, { 0x607bf1cc, 0x56884278, 0x397bb582, 0xb2396d1c, 0x24146e97, 0xf1f3c022, 0x276238f, 0x266de317 }, { 0x342b70f1, 0x5f905f52, 0xa2cf44d9, 0x7f70b107, 0x5f797335, 0x396af7a4, 0xddf644d6, 0x80fb9b47 } }, { { 0xf816ba05, 0x4e4084e2, 0x91a1fad, 0x2355ff04, 0x4ee72b27, 0x99aea676, 0xfdaed404, 0x785d6bbc }, { 0xd339201d, 0xd02fc32f, 0xc31880ae, 0x473ff1ad, 0xbe0b4d7c, 0xe1fbf88f, 0x2681506f, 0xfcd39153 }, { 0x58d7ca74, 0x13af38b3, 0x6aead06e, 0xfa2ee25b, 0xa7738c4b, 0x9ce2ae64, 0x27a956f5, 0xd3032a43 } }, { { 0x6fd0dad6, 0xd3d771c2, 0xb3c9eb67, 0xefe2e4b6, 0x74dbd59a, 0x693cbcd0, 0xf80934ea, 0x733ca2d5 }, { 0x117a0b97, 0xa2302a20, 0x884a20f7, 0xcf1ba8dd, 0x156e8173, 0x6fbf3979, 0x2317dab, 0xa33005fa }, { 0x838b186a, 0xeb871dd4, 0xec2eead3, 0x6ca99660, 0x8ff3063b, 0x9cf6942a, 0x36520a7a, 0x5fe66cb4 } }, { { 0x6f1b6ad0, 0xc75ff9a1, 0xb7363150, 0xc2d4693b, 0xc641ceb7, 0xeef4cdef, 0x5ee29573, 0x72f62505 }, { 0x260f46fe, 0x12b9f10e, 0xe414bfe0, 0xc55d74cf, 0xa42fe094, 0x6e937f42, 0x7e6e6493, 0x4853a163 }, { 0xa1e5008b, 0xf2d40533, 0x6fca964, 0x20bfcdd0, 0xd779713c, 0x87338ff0, 0xb57c4e56, 0x2deaf950 } }, { { 0xca119fe2, 0x7d81e7fe, 0xcea19c06, 0x7f8a9e79, 0x30a855d2, 0x6d1ea151, 0x310faf09, 0x92590428 }, { 0x17888776, 0x1102f312, 0x45626ca7, 0x166d1c76, 0x2b821d79, 0xb1e4731b, 0xd4c9aae5, 0xb4a19140 }, { 0x46bae8ad, 0x63796bb4, 0xcf54ef23, 0x9826a9ad, 0x8a43c1a7, 0xff5ca6da, 0x6013c013, 0xd4c21bc9 } }, { { 0xc45c6a98, 0xb6be98e2, 0xa8c8fd1e, 0xa4ee6c8d, 0x254623f3, 0xf1356552, 0x824c4b5e, 0x182c411 }, { 0x1355fb0e, 0xe6062e05, 0xa212872, 0xb04499b7, 0xc9507a06, 0x672039c1, 0xb2431fb4, 0xd8afcc35 }, { 0xc8aea741, 0x569028d1, 0x5c0a6a76, 0xc97ba2f0, 0x19a83e31, 0x49ff3dd9, 0xcad8d6c9, 0xdddd62b1 } }, { { 0xfbcbe2fe, 0x9c018a9b, 0x55d0c022, 0x4f751e5a, 0xdacfe9ba, 0x73a23a8c, 0xff270b16, 0x69dcb7d2 }, { 0x6eb7642b, 0xf5fae705, 0xa395c75e, 0x7738bdc6, 0x8929c8dc, 0xe3117927, 0xd200ce9, 0x30c6922a }, { 0x7b8e9832, 0x7c81afcc, 0x201b1c1, 0x8ae1b522, 0x7316ccea, 0xfe69d41b, 0x21151666, 0x90a616bb } }, { { 0x816a937d, 0xbe4b6a54, 0x128a9d0f, 0x96eb253a, 0x50d8e022, 0x79c82f88, 0x29c59dfe, 0xa4051a9e }, { 0xe5f35663, 0xdccc2b0c, 0xfeb07baf, 0xb58de863, 0xcecc12dd, 0xff4dac18, 0x66af00ae, 0x692f9d05 }, { 0xac9cb721, 0x1f05e690, 0x6a5b1422, 0xfb39de1d, 0x4ce6f02e, 0x38545f37, 0x75b67d5c, 0xc92cd6c2 } }, { { 0xe9ae61d9, 0xb630c686, 0x746e001b, 0x23d63ca5, 0x8bca9dde, 0xb84eff50, 0xc785229b, 0x3b42b845 }, { 0x67c18726, 0xa1a10cc6, 0xa6c84540, 0x9f17a00b, 0x55c3ad56, 0x6093afce, 0xddbfc4f7, 0x21214f7a }, { 0x428ffc56, 0xb7017082, 0x58a9e936, 0xe28f06bc, 0x3ad6149e, 0xedfde690, 0xe882fb12, 0x681699a4 } }, { { 0xcd83c1df, 0x1f98591e, 0x2a4b8a30, 0x6b1802db, 0x92dc7d17, 0xbf23897c, 0xd6df86ba, 0x433e1bdc }, { 0xb271d502, 0x58c28d73, 0x9540242a, 0x28bffaa2, 0x41f9731b, 0x59a301d7, 0x15208b47, 0xc603cf42 }, { 0x485a0d97, 0x986ac002, 0x242c3927, 0x192ebd7e, 0xbcd5c7a2, 0x59beaa35, 0xc36797b3, 0x3d3e92d8 } }, { { 0x5731dbf8, 0x6d51b589, 0x126b0a67, 0x72140890, 0x20e5a2ac, 0x1a68a8d2, 0x40352c3a, 0xb45cc4c0 }, { 0xf8b5365b, 0xe8ec6787, 0x238cf18e, 0xc4cdc239, 0x60911a52, 0x33c07f41, 0x6b2b5b8d, 0x79799f63 }, { 0xac87a9e8, 0x5a976c08, 0xd6feb63e, 0xb2dce9b8, 0x7e128b9c, 0xef77915f, 0x64f8cd0, 0x2361cec1 } }, { { 0xda65c4cd, 0xe5ea2bd3, 0x75f4b00, 0x9ea2ca5, 0x56800cb2, 0xbe2c149e, 0x7022b2b4, 0xb8a9da1a }, { 0x57453faa, 0x983310a8, 0x6cd110bb, 0x5ffbd0d7, 0x57bfc65e, 0x68e5069b, 0x44fd0a4a, 0x8dfd2fd }, { 0x5c82a439, 0x3e3a771c, 0x6f77681e, 0xd28268a9, 0xbc7b7d11, 0x1a43963f, 0x58b1c43d, 0x6e85b113 } }, { { 0x6e866618, 0x5a471ead, 0x87264b1b, 0xe324d8df, 0x1e07173b, 0x18280d34, 0x7e590418, 0x88f5b05d }, { 0x85d605d2, 0x306a2084, 0x60e33a1b, 0x264cc076, 0x819aa618, 0xf20fb21d, 0x2700c57b, 0x2040d2b6 }, { 0x2bbc6f99, 0xb2fed402, 0xe18ad93, 0x9e6585c8, 0x945b8207, 0x87b63561, 0x7a6ce7f4, 0xedd69e75 } } }, { { { 0xa65ea320, 0xecf7d182, 0x85ab2618, 0xa22440fd, 0x1d03a296, 0x3c7fe61b, 0x99c6f86, 0xe0547f67 }, { 0x7927e683, 0xcb4b64cd, 0x6be4a23a, 0xce3308a, 0x9da55ff2, 0xb9739f0d, 0x24f14c15, 0xefdaeee3 }, { 0xc3541447, 0x62295ca1, 0x8191ac6d, 0xc0953e78, 0x232f076a, 0xa5e1c19b, 0x2a87500d, 0xeee69f7d } }, { { 0x2521a2d6, 0xa97fb2b4, 0x80c1ceff, 0x98dd0091, 0x62fc8f89, 0x29770344, 0x82536c0d, 0xa67ea568 }, { 0xbc8e004b, 0xbb4769ee, 0x4da413d7, 0x55f82f2e, 0x7d0a2711, 0x9bf44ca, 0x1cc067cb, 0x43c77753 }, { 0xaaf346e4, 0xe7272f73, 0xd8940b69, 0x4d8d9b3f, 0xebb7e207, 0x6330022e, 0x1e182173, 0x347dd927 } }, { { 0x7aa47a3f, 0xaa96c00, 0x388d0381, 0x1e712ab4, 0xbaf3b775, 0xac85862f, 0x13c81726, 0x1afff0fe }, { 0x181c54ae, 0xc02fb30b, 0x694696c2, 0xaa6f97f6, 0xceca1a10, 0x77197e65, 0x61ed087c, 0x286a5239 }, { 0x8deadfc2, 0x862575e3, 0xe3be7719, 0xa3e50042, 0x19c6192a, 0x742babdd, 0xa958b982, 0xf8de3a17 } }, { { 0xe070dbd, 0x6ad72a9f, 0x8ae6eb4a, 0x203b6799, 0xf32e4fae, 0xc45290c9, 0xd61d3e66, 0x687cd9c7 }, { 0xd743fe95, 0xbfdeef8a, 0xd0caf3d, 0x83560466, 0x9ce29c0c, 0x5dd5b44a, 0x8718b3e6, 0xfdf6ddcf }, { 0x7758616b, 0xb6a16c2c, 0xba21e4e8, 0x9c24c6bf, 0xb8005bdb, 0x336dac7b, 0x3fafeab9, 0x7d6d300e } }, { { 0xad3ce3f1, 0xdf5f990a, 0x3074037f, 0xa9509980, 0x923d5e42, 0xdd544bb3, 0xffb73d08, 0xa6b88a66 }, { 0x9198be75, 0x59c741e5, 0x60a0504, 0x653964db, 0x7bcb5a93, 0x46a8a38, 0x5b4ff1f7, 0x734ffbcf }, { 0x30675507, 0xd8e8d267, 0x21362ac, 0x69c458da, 0x8f1aac2f, 0x3fa8e12c, 0x91abd2d5, 0xb04a5fbc } }, { { 0xda4f57e5, 0x4266e2c0, 0x61275e3d, 0xf7b4643a, 0xf7465514, 0x2b2607c, 0x71c886f7, 0xf7a62a0e }, { 0x96909391, 0xab7905f1, 0x39676d54, 0x6efb3210, 0x2a3b0526, 0x2b200311, 0x46339ff, 0x57fab5fd }, { 0xcf48643c, 0x920d9fed, 0xae2cd2b3, 0xa97ed30d, 0xf3009735, 0xc44fa117, 0x85d3fb61, 0xffbea4cc } }, { { 0x9265856e, 0x504e980e, 0x7272a31, 0x4f3796cc, 0x9b9abbb7, 0xed4de6d0, 0xac44b946, 0x82df5832 }, { 0x782806a8, 0x9c5ca917, 0x6fb1a3ab, 0x81280fa8, 0x24de43cf, 0xaa93bd99, 0x2ebf644c, 0x4b024787 }, { 0x2919c694, 0xa5eb5b4f, 0xe1ab14ea, 0xaa4bc509, 0x9a3d0b92, 0x8bb96ee2, 0x9c8784a9, 0xeb07d04c } }, { { 0x9b2361c, 0xf94697e5, 0xb7cb4cd9, 0xee3cca6a, 0xf30f5ff7, 0x7dc9eff3, 0xe55896f, 0xf9eab13e }, { 0x272dc8b8, 0xaaed8ed0, 0xa8844d48, 0x3a5c4ca9, 0xfb689cf5, 0x8ad44b1a, 0x2e2da8b6, 0xe6134481 }, { 0x92ee7638, 0x157a9ab5, 0x2b00878a, 0xa0a2910e, 0x5c6f9a4c, 0x1597bcca, 0x38fb3f69, 0xc7c41f04 } }, { { 0x42a1469, 0x14c11247, 0xafe404ad, 0x3ea03d46, 0x84669f7d, 0x6032a0dc, 0x918fbd3b, 0x9cb517a7 }, { 0x78c6d3c3, 0x2288984a, 0x2b2a621a, 0x1f350e4b, 0xe2144fec, 0x7302fb69, 0x236c85be, 0x24d48c0e }, { 0x2d49cd11, 0xb17b49bb, 0xd858c3ae, 0xa2b80710, 0xea71b3dc, 0xf2a01a03, 0x5737c9ae, 0x277ce949 } }, { { 0x1b02b3b0, 0xd5d4f830, 0xdc723071, 0x1f8393d1, 0xe4f4a6c, 0x21ed576d, 0xd63508b, 0x526b2379 }, { 0x679ef086, 0x3be1a3df, 0xfed10641, 0x8527a8d1, 0x2b183f7b, 0x5e4b9c1a, 0x69993502, 0x834a74da }, { 0xbdd3bd00, 0xbff3e995, 0x741a5cd9, 0x26f8e9a9, 0x2f3104ad, 0xad0aa329, 0x246bd72d, 0x625d213e } }, { { 0x38f4ecae, 0x234b4588, 0xcacbdc9d, 0xc130bcff, 0x8f3e69dd, 0xbe2f7265, 0x3d43eecb, 0xeca93c37 }, { 0xbcb8c48b, 0x548ad0ac, 0xb65a6264, 0x5693f7d9, 0x331bea52, 0xc3e87daa, 0x2c448f31, 0x9f80f6c6 }, { 0x4dec119a, 0x61a71a8, 0xb4ac664d, 0xb57f3363, 0xb5614ac4, 0x953d2b68, 0xcd3c3761, 0xc1f85101 } }, { { 0x19f038f1, 0x2b199fa2, 0xe367a5de, 0x7d6619e6, 0xe23c268b, 0x95352911, 0xa9715f5, 0xdb63d82b }, { 0xa44b4fa6, 0xbda011b, 0x13cd10f1, 0x3cf2a423, 0xeae9962d, 0x9e8b2bce, 0x24f1b12b, 0xeb533ad7 }, { 0xfc075648, 0x3984d4, 0x586543fb, 0x6d13fd54, 0xe5ea1203, 0x873b487c, 0x235e01b5, 0xfb481146 } }, { { 0x24567c07, 0xe6198522, 0x8fa8ec80, 0x642a5352, 0x1528be8b, 0x6e1f404b, 0x7999debd, 0x59c8526e }, { 0xebafba6, 0xf14858f1, 0x60c7c2a1, 0xedf02cd6, 0xce090ba6, 0x6e6f9e2a, 0x340baf10, 0x24609d58 }, { 0xaa3f1cdc, 0xcd401a83, 0xb0413f6e, 0xbec24890, 0x62a70f4f, 0x954cae5, 0xbb65a2ae, 0x94bceaf8 } }, { { 0x47f1e6bf, 0x35aac7c8, 0x1a52fe0c, 0x7b313b67, 0x62e0084f, 0xade168f8, 0xd44bcd58, 0x739f92a8 }, { 0x7bc25257, 0xd7daa17c, 0xbc58f4d1, 0x3201d5, 0xa9686f6f, 0x8e915846, 0xd0c4e6f, 0xfe1b8430 }, { 0xf4756941, 0xeab49728, 0xf0d7099d, 0xf6932b8, 0xce2d1e3, 0xd7fe5798, 0x65ab47ec, 0x5aeada58 } }, { { 0xc4102fac, 0xbd15e98c, 0x24ab30e2, 0xb76db9eb, 0xb10360ef, 0x49b1cd37, 0x473437f8, 0x1fb59eb4 }, { 0x59e43253, 0x3afe389e, 0x440e106a, 0x294ad009, 0xcb9179f4, 0xca0874f4, 0xf3ead120, 0xd330c285 }, { 0x564a1450, 0xe4679882, 0x8292e77e, 0x99b87247, 0x4d96f1eb, 0x77a59a4b, 0xbcfb38a9, 0x30fad2d4 } } }, { { { 0xe5fa5add, 0xff96b3b5, 0x4ecb655f, 0xe3379f53, 0x62d945d2, 0x86acc424, 0x8cbd5c12, 0xd5df82dd }, { 0x47f01d41, 0x59471fe8, 0x14601dcc, 0x71366636, 0x24f62c2d, 0x9e33410a, 0xe3031d1a, 0x66daed02 }, { 0x54f93cca, 0xb1e1bbb9, 0x2a819468, 0xa3ce2f23, 0x6ff52ba9, 0xf6b16ace, 0x7ab2498b, 0xc420c24e } }, { { 0x45c7be8f, 0xc6f50ffe, 0x417b3ade, 0x9abba22f, 0x3b473395, 0x7b9ff092, 0x9657b355, 0x6e9a6d7e }, { 0xc0099258, 0x7e5236b0, 0x26ec2cec, 0x89e3ef5, 0xc69100d0, 0x490bce6b, 0x8e7e1265, 0xdaa05adf }, { 0x2d0ef9c3, 0x3ce8c607, 0x63f3057a, 0x653515b, 0xc5ded4d8, 0x60027918, 0xb5005002, 0x386e1920 } }, { { 0x7bfa8900, 0x8bb68376, 0xd0aede21, 0xc94dd4e7, 0xa2886373, 0xa570ba0d, 0xb64283e0, 0x50970b65 }, { 0x1039d3a6, 0xfe4be4d4, 0xb39b2e1d, 0xa11123f4, 0xcecdf7d1, 0x7659aa75, 0xe03d8db1, 0x7c91262 }, { 0x1f9ccb68, 0x3851f88f, 0xca7c1fab, 0xff0e7f35, 0x9595d574, 0x29009f8a, 0xc2935da4, 0xc4ab0b22 } }, { { 0xedf05a66, 0x4f958ae6, 0x9cb58603, 0xb2cb1935, 0x484712ef, 0xa931775b, 0x2ad15e3e, 0x92fe9437 }, { 0xfa382849, 0xf469c001, 0x5799801c, 0x7213cf9, 0xc6b13302, 0xd4f2fc87, 0xf5cde2e4, 0x3a753b0f }, { 0x4542869d, 0xf0a64dbd, 0x85f83721, 0x4392cf74, 0x1f43a944, 0xb75e28ce, 0x1a71270c, 0xb6bed98 } }, { { 0xac63d85b, 0x9abf11d5, 0x1952e62a, 0x3969623e, 0x2ac37a6f, 0x2118c055, 0xb72c43f, 0x21a3b8fb }, { 0x69648b7c, 0x18ad52d8, 0x70b544d1, 0xc323ea0f, 0xec54f377, 0x46d60d15, 0x4bbbd10, 0xd6e542fc }, { 0xdefe064e, 0x792c4264, 0xec54912b, 0xa554aa5, 0x274151c0, 0x6b7fa5de, 0xaa7bee5f, 0xa9e58fc4 } }, { { 0x5a3fb3dc, 0x2c815bf6, 0x884fc2b5, 0x4db88b7c, 0x9a0ed58a, 0xccf372f9, 0x1dc845b4, 0xc44ccc35 }, { 0x49b22ecc, 0x7792be77, 0x98548f29, 0xe4c0f50, 0x8fb87f4e, 0x9058d5e1, 0xb19ae18c, 0xa352505a }, { 0xc8f7ddd5, 0xd3bab468, 0xc8cabd31, 0xea9c1b78, 0xd9f7cb96, 0x4b483c12, 0x554c2cd8, 0xb98c2b73 } }, { { 0xad97324a, 0xf0eba63f, 0x76c3f5b1, 0x6e6e9698, 0x57677763, 0xf2e9936d, 0x680e62cd, 0xc04a1af3 }, { 0x836673ab, 0x11259bdc, 0xed29382c, 0x3fb96390, 0xa71cffe9, 0xff3814d3, 0x8020efdd, 0x8c28aaab }, { 0x8db8bafd, 0x3e2e9265, 0x432c23e1, 0x3c6c8bb1, 0x38d44ff1, 0xb9de7700, 0x2f5d42ed, 0x441395e8 } }, { { 0x77f564c6, 0x2b2d3751, 0xa1cf727e, 0xdbf4d323, 0x4fb0c981, 0xe4df6d67, 0xbe761231, 0x5c42932d }, { 0xff7c0218, 0xae5459dc, 0x7154b138, 0xfbf29b46, 0x7a82f4b1, 0x32c2c19e, 0x538310cc, 0xa007240c }, { 0xa88a6b1e, 0x3802d173, 0xdab48a08, 0x94420a20, 0x9155d40c, 0x51ea2951, 0x140051d8, 0x979a352c } }, { { 0x18f00dd8, 0x19b40e9e, 0x74697533, 0xf2154b8c, 0x66fd8cac, 0x2900232c, 0xc461a7cd, 0x903264db }, { 0xf6fa9bc8, 0xefd40384, 0xbd1c73c9, 0xe03adfbe, 0x659aa4e, 0x12b1cd3, 0x6fe9980c, 0x3a4b4bb6 }, { 0x4efd1e1b, 0xc0cf1aa6, 0xad3f9cee, 0x2cc9203f, 0xa6e04479, 0x7f680041, 0x83a68ffb, 0x3d972230 } }, { { 0x1b98837e, 0x3b7dca5, 0xb74a94a2, 0x8399e6a2, 0xcddf7957, 0x1baca7, 0x10683605, 0x1f82a582 }, { 0xfd901085, 0x7fb58086, 0xf4c5e663, 0x27408936, 0x1de90315, 0xbc9d71a0, 0x103a546e, 0x5b0589d5 }, { 0x849401a6, 0x9a89a1f, 0x6aa24af3, 0xbef721a1, 0x9968e1de, 0xe2da5d11, 0xf92c4789, 0xb9457dd2 } }, { { 0x86aeee9b, 0xbd1380e, 0xaba4fe45, 0xe1ed8168, 0x43a1d3ca, 0x6c99d856, 0xf081e379, 0xd6ea23e0 }, { 0xab30c592, 0xcedfd4a5, 0x2e4f7a6a, 0xee3b07f6, 0xa6b6291d, 0xcb80374f, 0x79a4b718, 0x7bdf3369 }, { 0xff27fd00, 0x707ee08c, 0x64d94c13, 0x4ee35478, 0x87f62d22, 0xf8484ff2, 0xfc383b3f, 0xa68f210d } }, { { 0x33cd4f2f, 0xfd5c3fa5, 0x517f0b12, 0x868b50d4, 0x6601ffe5, 0x8f2ce113, 0x48ce1d9c, 0xe2c53290 }, { 0x99768fc9, 0x1258cac9, 0x5be6b3f7, 0x5a96d10e, 0xd5c5b5e5, 0xb77520b2, 0x2c8b1ff8, 0xbe833c11 }, { 0x33a93806, 0x253a610a, 0x6619319c, 0x699a0f39, 0x2af86bbf, 0x4c5cce5e, 0x31a724c2, 0xaae1376 } }, { { 0xd42682c2, 0xc5951c25, 0xbe823148, 0x57386b88, 0xda30796a, 0x2ffc19e4, 0x1f8dc158, 0xc5515f4a }, { 0x21cc7b2b, 0x63887137, 0x19ab514a, 0x40d657af, 0x59803f8f, 0x9cd34e40, 0xa6116a5d, 0xf61d7e26 }, { 0xd5fb3fb9, 0x365d2729, 0x649f94de, 0x9cc78ab0, 0x765a6d7f, 0x748ebf40, 0xd360572e, 0x93c4e8ee } }, { { 0xc8734416, 0xe5e67373, 0xb5a2207, 0xefac4a6c, 0x781007bb, 0x39c8fc2, 0x1988165d, 0x6ca70e69 }, { 0xc1863a53, 0xb87b88f6, 0x8290b4bc, 0xdf29971b, 0x73e5df10, 0x554f31f4, 0x7d4a5de5, 0x4afada27 }, { 0x508b3bd5, 0x3b0663ea, 0xbfe01f1e, 0xa975f4b0, 0x17e604ac, 0xe08dbd70, 0xa6243553, 0x7fc56a0b } }, { { 0xfb5f147a, 0x2c009b3d, 0x6270a209, 0xf26e7725, 0x3900199e, 0x1d5c02a9, 0xc5f6ca7f, 0xde15a6e5 }, { 0xbfc1a751, 0x77c83cf8, 0xd363dfa4, 0x66474243, 0xbf92923, 0x2d44a238, 0xf6ced86, 0xca83dcc6 }, { 0x116ac5d3, 0x35431632, 0x14e69d36, 0x89c5eeaa, 0x34f12642, 0x31237f8b, 0x3b924ec8, 0xfbda2bd3 } } }, { { { 0x4158b872, 0x8045bdc0, 0x46d3c30c, 0xeca5c7fc, 0x6ef6f6c3, 0x36b0b176, 0xc9f549ac, 0x985d4144 }, { 0x192888a9, 0x36e06674, 0x9c71ffd5, 0x6161f6e4, 0x9283d2f1, 0x73d5a9a8, 0x14d8bfa3, 0x2a85a03 }, { 0x9c494ab2, 0xc9b02bc6, 0x100c7a4c, 0x6266f0b4, 0x20169421, 0xf2737439, 0x94c79806, 0xb181c07a } }, { { 0xda863afc, 0xebe7113, 0x5605e2, 0x9ce740e3, 0x4be9d08d, 0x10dc2734, 0x9a4ba93f, 0x8d632d61 }, { 0xce27d3b1, 0xcb5e6fe0, 0xa9938aae, 0xdd8a7d97, 0x65cb8e68, 0x4df5078f, 0xe2b5f06b, 0x79e4ba46 }, { 0xf20ab1c, 0x9e54247b, 0xfe13d975, 0x53ded95c, 0x68478538, 0x9b923d, 0x78219c2, 0xfe88503d } }, { { 0x986370af, 0x2944672, 0xc4fc50ba, 0xac7f8541, 0x4b558878, 0xbb3dec23, 0x3aa9c63c, 0x831e853 }, { 0x1509bd86, 0x1d878a48, 0xfb5a13fa, 0x145c2576, 0xffc63c38, 0x95f75b4, 0xfa6a13c6, 0x27b02af6 }, { 0x96cc1cb7, 0xe7bd15d4, 0x46bad666, 0xed6132d9, 0x61369f73, 0x2658342e, 0xaa4a20df, 0xa3d906ef } }, { { 0x9b61f851, 0xdf1bdbd4, 0x6054e372, 0x3b0bf72a, 0x2f028dae, 0xf016801, 0x698cef3d, 0xb2b68155 }, { 0x56c95384, 0xa1a69eb5, 0x2e3405c, 0xfaab9605, 0x89ff4437, 0x44ae54b4, 0xdeb10b7b, 0x6d28742b }, { 0xae7f7ff, 0x409e8a77, 0xac6e379, 0x7502a079, 0xa55dad8a, 0x985d6f89, 0xc76fdf12, 0x25124ad0 } }, { { 0x51d7938, 0x87b1641a, 0xd173129e, 0x8235127d, 0x325f025e, 0x78985544, 0x6a549b6e, 0x8ce3d55d }, { 0x53c43963, 0x218529ba, 0x3d10c1f5, 0x897bb828, 0x1c12d4e, 0x320562ac, 0xf998f146, 0x27bca758 }, { 0xb1ca8d63, 0xa7436f1c, 0x8efc5e38, 0x50bf9736, 0x94dfe9d8, 0xbbe21b2c, 0xf16e3f8d, 0x94b2a54b } }, { { 0x2f7e9f91, 0x179e4fd1, 0x7039ab74, 0xcd4c5f27, 0xea492b72, 0xb43144b3, 0xda9d7d6d, 0x4dcfb43a }, { 0xb7b788b4, 0xa74a00b0, 0x6e86014a, 0xaae6dffe, 0x611682e4, 0x422cc888, 0xbdfd2e9f, 0xf97a7d75 }, { 0x9efd88cf, 0x240f6f6c, 0xfbe5d1ab, 0x88645bc4, 0x1e25ffcb, 0x6b3ef25, 0x6b7a2e38, 0xb5f9115e } }, { { 0x73945cc9, 0x535cc16, 0xe7f749c2, 0x270dfd9c, 0xb8d7fba9, 0x5939674b, 0x1bf2f17c, 0x4acb7645 }, { 0xd56770bb, 0x202e5747, 0xbee8206d, 0x882b44b1, 0x7f84a71b, 0x26404b5a, 0xaf6f08b3, 0x1403cdee }, { 0x76e9ccec, 0x2fb33f8, 0x19272bd9, 0x625ae675, 0x6c98570d, 0x810c66b, 0x7024aa04, 0x62260323 } }, { { 0xd51fe98e, 0xc2f39c3c, 0xadaf0527, 0x8f62f690, 0x3b20cd2b, 0x7af92968, 0x86de6da7, 0x5f048343 }, { 0x98f1b17c, 0x5caee347, 0xb3ab1a16, 0xcff15f7d, 0xe821c3a9, 0xe56b14a3, 0x9f891c39, 0xa2028254 }, { 0x98b94d5a, 0x8600e8b2, 0x8f7618, 0x25bc0947, 0xebb1074c, 0x3d7a4f8d, 0x188b0f41, 0x7293324d } }, { { 0xf94b4bd1, 0x41fed10a, 0x15bceebf, 0xedc245dd, 0x29444946, 0x4f7606f6, 0x10328818, 0x4472c375 }, { 0xa3a91cd0, 0x73a5a4aa, 0x2b26c78c, 0x1856218c, 0x859a9fb1, 0x6642b745, 0xba4bc233, 0xb390c9ae }, { 0x1916aa74, 0xa14fb34c, 0x96014c37, 0x78dfdf6c, 0xb1ccbe2c, 0x61ec1d74, 0xaba8ad5f, 0x2fc9554 } }, { { 0x9284b729, 0x492b1dd, 0x9a4f38a9, 0x2494ec4d, 0x34818901, 0xdf72c47b, 0x707268a8, 0x2671fe67 }, { 0xa8f045f2, 0x8ecb136f, 0xbed7d1e9, 0x6d1fc607, 0xa75c98aa, 0xd7ea0208, 0xb535ec0c, 0xc924ea85 }, { 0xe730c125, 0x1e5ea201, 0xe82aa33b, 0xf4e9116b, 0x667a4bf5, 0x3e718a3b, 0x886128d0, 0xbfbddabe } }, { { 0xd272eeaf, 0xb2dc39e2, 0x7bb994f7, 0x4839805e, 0xbf130904, 0x1a31e55, 0xebb6323a, 0x63707a2a }, { 0x6ab0fc05, 0x269e3a4b, 0xf56affe4, 0xcaea12b, 0x4536e65c, 0x7d2373c6, 0xbdc4ee44, 0x13dd0a81 }, { 0xb40ba645, 0x4ff7e4a0, 0x95d071d8, 0x52873955, 0xa4a98173, 0xe6988d1f, 0x97719cd1, 0xb4bc0e51 } }, { { 0x5cd1ee63, 0x9f23d286, 0xf60d710b, 0xbbec4c3c, 0x69ddcf5c, 0x13146bd2, 0xda900987, 0xf4a9f70a }, { 0x2c4ba716, 0xb2b09ba8, 0x5ce01718, 0x5dfbab5, 0x49d36cf7, 0xb92fb16, 0xbc54ef42, 0x561a1903 }, { 0xeea25316, 0xdf8f9702, 0xb5cf416d, 0x733d8955, 0x15d151c9, 0x39b5b275, 0xa1da58b3, 0x18c0e94a } }, { { 0xf9d75b9a, 0x5e4032e, 0x1f151c95, 0x52587eee, 0x3189568b, 0xe08ff1f0, 0xfc3f196a, 0xdb97994a }, { 0x3edadd08, 0x1e4ca397, 0x59ad28d4, 0x63bf9c40, 0xbbaf3737, 0x93505840, 0x75b20eba, 0xe839fbd0 }, { 0xcdfde817, 0x909f3b79, 0x66171555, 0xcce1e20d, 0x5626362a, 0x6d1541, 0xc1ef8715, 0x57350a83 } }, { { 0x729dd0e5, 0x868b9c70, 0xed58f2b, 0xb2fa5fe6, 0xc75a92ff, 0xe78e3396, 0xc24605ce, 0xf1d4fa58 }, { 0xb548cf7d, 0xfb547a34, 0x5916e7a2, 0x4dc4edec, 0x5838fda8, 0x87eff29f, 0xb81f41, 0x3098f3c }, { 0xc8d1785c, 0xe72a7a01, 0x94b5b89c, 0x67ba7032, 0x83ec313f, 0x675ce1d6, 0xed5f16ab, 0x3e585828 } }, { { 0x938cb50a, 0x69c5679, 0x15fb7b64, 0x103e322d, 0x84a0e229, 0x20f61ccc, 0x62c3a4ed, 0x1a44230f }, { 0x393c2010, 0xf5822f28, 0xededd3f8, 0x8ddb54fb, 0xe8e17cc6, 0x4125fac3, 0x278cdbc4, 0x6abd0463 }, { 0xf09706f0, 0x3d3951b2, 0xd391d675, 0x434d18cb, 0xb90abd1, 0x7b4d923d, 0xead52bdf, 0x950b8d04 } } }, { { { 0xf891714d, 0xbc6087f7, 0xa170e1a0, 0x60233452, 0x6577cd67, 0x1057b2ed, 0xa9e6ecc1, 0xc91f5eb9 }, { 0xd737fdc1, 0x470941b2, 0x266eb79c, 0x592d393c, 0x828e5e66, 0x36fd6107, 0x11057c4d, 0x712591ff }, { 0x55c1fc39, 0x494fc32e, 0x41e5cefa, 0xf20b795e, 0xf46c8b17, 0x6087c04d, 0xcef9ee88, 0x52ed8c9d } }, { { 0x3d6017b3, 0xeecf91c5, 0xf10d986, 0xb6a01739, 0x2c17efe7, 0x6434527c, 0x2e8c0c52, 0x248d7e66 }, { 0xed01db35, 0x3adf5b60, 0xc9199782, 0x65eff4af, 0xebbfd044, 0x103ece76, 0xba8a219c, 0x9e7e4b82 }, { 0x1d658422, 0x3e21e33, 0x15fb891c, 0xbbf3b0d3, 0x4bbadc8e, 0x4c4d0780, 0xd9060c1f, 0xf070a8b8 } }, { { 0x97b41c8c, 0xb318b1f, 0xaa6f9d41, 0xcb6fdb13, 0x34a671df, 0x122fbfe1, 0x35e278f8, 0x4f62fb0d }, { 0x69607a1d, 0x213287de, 0xc4a6c5d2, 0x2ccd877b, 0xc1bbd4f7, 0xe7848e69, 0xcc7d8886, 0x663e05c1 }, { 0x13fdb608, 0x9b75a667, 0x463df696, 0x8525d18, 0x1a0a8a7c, 0xbaa4616b, 0xc50a5511, 0xdd2a6afd } }, { { 0xf9c31991, 0xc1c249cd, 0x9d5c9b31, 0xc59eaf91, 0x5ccc4b56, 0x435d6254, 0xe356cd6d, 0xae73f26 }, { 0xcc60991e, 0x675a9d6d, 0x4393f507, 0x6888d9e3, 0xf3150890, 0x6e61e4e0, 0xaf73e286, 0xbe6f4d79 }, { 0x5f1d1b29, 0x59f9168d, 0xf6560509, 0xf8d8e038, 0xda4040a5, 0x9a16bafb, 0xd3758501, 0xbcbbb403 } }, { { 0xb9868f45, 0x56ad5ad8, 0xd6fb3e07, 0xb1c760, 0xf02e77ad, 0x231df133, 0x6ab310c, 0x68f59030 }, { 0xd1fd0aa3, 0x2a9f2af6, 0x73cb8e47, 0x6de3521d, 0xe6b84189, 0x2768f862, 0xe4129b9, 0xeead7b22 }, { 0x312b32a7, 0x866f4285, 0x737a4e71, 0x60b096fa, 0x44575e07, 0x5f2bcccf, 0xd8f77bdd, 0xb9dbfabc } }, { { 0x5d59e639, 0xf54b7280, 0x703dd0ea, 0xc9c10252, 0xf69eb93, 0x659e9b43, 0x9e7684cb, 0x312ab876 }, { 0x54a68bd0, 0x8b2d7efa, 0x16a5b122, 0x3322e7f6, 0xc3570bd2, 0xa88f9499, 0x75ce7047, 0x5951f395 }, { 0xc3a56743, 0xd3312de8, 0x34a0c95b, 0x4608203c, 0x1b501b17, 0x5216606c, 0xfd18ade, 0x999c961 } }, { { 0xddc8f171, 0xf2139e34, 0x8500059e, 0x6bba2620, 0x91673918, 0x97b8721a, 0xc9c8971c, 0xcc5afde4 }, { 0xfb39191f, 0x18469d3e, 0x95eaa7b7, 0x34032c9e, 0xa22e72b9, 0x52afd722, 0xccbc6e2e, 0x88d145e8 }, { 0xdfd41e9e, 0x8b49e2ba, 0xced63837, 0x2f3b61b3, 0xb8cf6451, 0x95b59e8d, 0x4ddc58f5, 0xd53f0b2b } }, { { 0xaa33d332, 0xfcc09679, 0x1d973cf8, 0xbdbd97b, 0xca4e9d5d, 0xf3437ae6, 0x9295af91, 0x75cb05ac }, { 0x7dcf8f3d, 0xa7be5b53, 0x6ee0ddcf, 0x29111e5e, 0x141fcfcc, 0x9c880314, 0x25777484, 0xca00820 }, { 0x195bc09d, 0x9140a1d6, 0x43c611c2, 0x1fd1abf2, 0xba00ac8d, 0xe2bf1507, 0xea3f0571, 0x4ebe2396 } }, { { 0xe87aa0ab, 0x7ab1e443, 0x13a96194, 0x78731a42, 0xe02a2ec7, 0xd98c6850, 0xead6a523, 0x24990f27 }, { 0xab8372dc, 0x8c690542, 0xd0667e60, 0x99a1b8d5, 0xa734c9c5, 0xd0df22c5, 0xaea79e2a, 0x5fe242a8 }, { 0xcdc97385, 0xe04471d8, 0x54450941, 0xbaed2dd7, 0x8cd814e1, 0x4fbc7b65, 0x9709ba60, 0x19e14dbb } }, { { 0xd308cbd2, 0xe75c1598, 0x25cc72e7, 0x30a9859d, 0xaffe1585, 0xaf95559, 0xe067e21d, 0xc1b5d5e6 }, { 0xb39ae93, 0xda09c67e, 0x171d5f5, 0x13f6420f, 0x1d483e3d, 0x691a977, 0x2898fa56, 0x94a5465f }, { 0x1262911b, 0x4445058b, 0xa0f4a8b3, 0xb09dca37, 0xa97ff89d, 0x28525f85, 0xf9d49ef9, 0x3c050a4e } }, { { 0xf16cea5e, 0x12afd62, 0xd0a0a5ae, 0x50b18642, 0xe152f3d5, 0xe72e419, 0xfa77fe99, 0xa0bbea6c }, { 0x45f7d2a4, 0xd03d82eb, 0x1d32b459, 0x81b53a43, 0xe70729c4, 0x1f056f62, 0xafb7eeb1, 0x95d678ce }, { 0xff4faa06, 0xd6cef2a1, 0x1a6e3959, 0xe2dc2203, 0xf5126d8e, 0xc3eb3d55, 0x84d325ea, 0xc521481d } }, { { 0x9728c9e8, 0xffe874b7, 0x8eabdd4f, 0x45edecb4, 0x19b15b49, 0xf14fd16b, 0x853e1cb6, 0x7d29e918 }, { 0x76a0b4c, 0xc7a93f94, 0xc51b6b66, 0x564c943c, 0x67362aae, 0xc162f1fc, 0x9eb8e475, 0xad093cd4 }, { 0x322d9729, 0xc2a75129, 0xd56ad228, 0x4165a72c, 0xbe4f0423, 0x7abaa60d, 0x5684032f, 0x8ba5588 } }, { { 0xc8029c42, 0x7d9ab080, 0xbf36bd39, 0x2b97123c, 0x651cdea6, 0xe82349de, 0x5acc43c5, 0x794d4fd }, { 0x6b1ffb55, 0x1a7e095e, 0x57bf037a, 0x1928a1b0, 0xed877a0c, 0x77a45419, 0x326123af, 0xfb86c0b8 }, { 0x61fdeffc, 0xfea7308d, 0x4815ad2f, 0x9556858f, 0x90baf9b3, 0x35f40e44, 0x5231b3fc, 0xb2eda9ad } }, { { 0x1a14df5a, 0x38852c6e, 0xc41c7cb5, 0x152a19ef, 0xb5f4c936, 0x7aae9b72, 0x32e3119a, 0xe12bc8c6 }, { 0x3604450f, 0x319a7ed0, 0xbf3df29e, 0x873a8a36, 0xdd46898f, 0x247aa5d7, 0x3ad9aac0, 0xf235b151 }, { 0x6c3c7c76, 0xf93b6f0a, 0x3157b8b2, 0x4399b2ec, 0xce1a1671, 0x28c84085, 0x8452d1cb, 0xcf10d8c5 } }, { { 0x61fe7d3d, 0xca8c9bfe, 0x4356b454, 0x782cf041, 0x85463b91, 0xe2214d90, 0xb8dc3d1c, 0xd27b4c9a }, { 0x4a6ed61c, 0x5ff251bf, 0x5c916e6d, 0x73fb8593, 0xf5838464, 0x45b9c233, 0x463b0fa1, 0x1d36b5c6 }, { 0x3026c384, 0x8501c153, 0x617a35d3, 0x906f4135, 0xf825ec0b, 0xab56d7cb, 0xa8c057fe, 0x767dce23 } } }, { { { 0xc8f28266, 0x56b2bd9, 0xce77506, 0x4ca98e5c, 0xa2916d0, 0x6bea3fb2, 0xb4123576, 0xba74ce47 }, { 0xeb99d5de, 0xb080d4a1, 0x90bde055, 0x5306c060, 0xd71f9f28, 0x8b3fa1e0, 0xbe2d97cc, 0x715f9f78 }, { 0x366d9936, 0x52fdf51, 0xa37d13d, 0x1126c368, 0xc02528d4, 0xc2c766c0, 0xa61225f0, 0xbd520498 } }, { { 0xa3eb41f0, 0x55679056, 0x392f4a80, 0x88d09e48, 0x6e3e8476, 0xb1d7fc42, 0xb8a6b7fc, 0xc73455b2 }, { 0xb6afbe3f, 0xb33fcd69, 0x9ddea712, 0x26163ba7, 0x492e27de, 0xa7c746fa, 0xf2653908, 0x86cb8c48 }, { 0x1aadc7c5, 0x1d3464ba, 0x48148f61, 0xad90d1a6, 0x71c2661, 0x9dbe933c, 0x32a1973a, 0x21e6cf4b } }, { { 0xf7ac5915, 0xbcf325b6, 0x572563e8, 0xb7997363, 0xfea0576b, 0x8170fd59, 0xf1176851, 0x1fca5694 }, { 0x5e8a28d9, 0x1600f343, 0x85a27c42, 0x29f4d837, 0xafc15559, 0xca52eb06, 0x34e90c54, 0xfc946738 }, { 0x79d6cd8a, 0xe4fa9b4e, 0x2ebbd665, 0x4359b20b, 0x3ed78ef1, 0xcc4f2a83, 0xacd0a8e3, 0x19178635 } }, { { 0xed59d73f, 0x4545f822, 0x6ebd9f79, 0xa4026e22, 0x631dd39a, 0x115527d6, 0xd67320c4, 0x8b182c7a }, { 0xc32f1556, 0x9060f8d1, 0xe246762, 0xbb934aea, 0x384ab334, 0x7f5ac361, 0x9538ea32, 0x106035cf }, { 0xf96d086c, 0x9e4e2e4a, 0x7e31ec00, 0x754f2585, 0x342c0fc3, 0x2d515ba6, 0x1358bd9b, 0x33fd2bd6 } }, { { 0x6d357619, 0xff5ee493, 0xb904c97b, 0x457c0281, 0x942a256c, 0xea72bc27, 0x9303e74f, 0x59346407 }, { 0x4e0e2fa6, 0x94da3533, 0xffca920d, 0xecc4a410, 0x84c632f1, 0xae09b33d, 0xdfa9b869, 0x1823bb72 }, { 0xd5decf40, 0xd29f8160, 0xa3680e81, 0x5ccba8d6, 0xe5ee0480, 0xfd8a054, 0x4e692b38, 0x5327db55 } }, { { 0x93fc6bac, 0x21cd66eb, 0xf25b5097, 0xe6896866, 0xfbdf87ac, 0x69bfc1b2, 0xc5298629, 0x92025369 }, { 0x1a624785, 0x9557e1ac, 0x9a8a3afd, 0x2dda4e96, 0x6a1ec4b3, 0x4cff32a9, 0x3e172cb6, 0xca0b73ec }, { 0x5614a36e, 0x3623dd58, 0xcaf0475e, 0x89abc2dd, 0x8ba28b9c, 0xf2ddb998, 0xb9782a0b, 0xc406ef5c } }, { { 0xad9111e1, 0xaee60198, 0x8979e805, 0x6a412d23, 0x3652cf60, 0x385aa63b, 0xaa7165de, 0x6d2948be }, { 0xb387eb40, 0x7b35a2eb, 0xf3c4de8e, 0x8d573d60, 0x6df818da, 0x5380c87a, 0x5c295254, 0xb5436c5f }, { 0xd52b4a60, 0x7591d499, 0x8e8b950a, 0x89509a7e, 0xd13a567c, 0x4df3ea10, 0xf72de3b3, 0x3d915287 } }, { { 0xe00e859e, 0x60da3990, 0x24c3ec7c, 0xa8d2878e, 0x1e1d36e6, 0x197b5544, 0xdb9c20e9, 0x2777148e }, { 0x37620066, 0xedcf447a, 0x787c3921, 0x99bd69dc, 0x52a1cdb6, 0xa1f62d92, 0xc72be0ec, 0x10a28358 }, { 0x690d584e, 0x8e000194, 0xf00a216e, 0x315bede7, 0x4cfa12ad, 0xd019e2f2, 0x4591b57c, 0x6bd0ba19 } }, { { 0x900024b8, 0x56447c72, 0x96ad20b3, 0x886dffb9, 0x4808197a, 0xbc209f6a, 0x693a7971, 0xd4329d0a }, { 0x9f67de7d, 0x96428d95, 0xcad5d5bc, 0xab19dbe0, 0x14a15580, 0xc8eef133, 0xab604584, 0x97e91d59 }, { 0x8af6d8d2, 0xf8ffc7f4, 0xe0f7c29c, 0x5aee7eb2, 0xaf9f003d, 0x969032cb, 0x31549ddf, 0xf96b1cb8 } }, { { 0xe81ca624, 0x61f151bd, 0xf8266bb1, 0x7efe9519, 0xc0be71b4, 0xb6a623e, 0x77eeb761, 0x60b29b9b }, { 0x8bdc12a1, 0x210d7f1a, 0x35f0ebf3, 0xdde9b7fc, 0xc09f5e49, 0x65530d89, 0xf6a3356b, 0xfeb71060 }, { 0x97c0a66a, 0xd6f67a2d, 0x13b22b4a, 0xb3f7c3ef, 0x492eeb34, 0xb3dfce78, 0xb75bac23, 0x5dcc7382 } }, { { 0xf5fe4b71, 0x568e0325, 0x23ad5edf, 0xc5df19be, 0xf22ed802, 0xcae35975, 0xa3298df6, 0x10bcb12d }, { 0x380be926, 0x6e2d309a, 0x24368d91, 0x9ca365bc, 0x1dac92d8, 0xc2e43e99, 0x5f4ffdbb, 0x5a673db4 }, { 0x770c6e45, 0x6c06c536, 0x232b8401, 0xb1406d5, 0x9ce21856, 0xbcf3c495, 0x2d3ecbf, 0xbb189786 } }, { { 0x2c0608b1, 0xcac72c5c, 0x678ed525, 0xabd56888, 0x8f6d9db1, 0x19e6056f, 0xb1e29d19, 0x47d96b76 }, { 0x38a12343, 0xb6630660, 0xafc5390a, 0x83d38e30, 0x3b49d2, 0x7855878e, 0x938c7495, 0x6bfd08f2 }, { 0xad7fe882, 0x288ca5db, 0xf9edd811, 0x990353d8, 0x3db5915e, 0x9c250abd, 0xa3aa8c58, 0x2a847b22 } }, { { 0x9e2e0645, 0x884de9c, 0xa68bf840, 0xbcfd20fd, 0xebd3ef97, 0xac65ea1b, 0x801d5627, 0xa891de7b }, { 0x39e35b59, 0x102f70fe, 0x60f95742, 0xa33c9f0d, 0x93357f6e, 0x25bedc93, 0x23d8e061, 0x4424f215 }, { 0xed5a70ff, 0x797f2fb9, 0x1ef79577, 0xccce9685, 0x9e3c24bd, 0x6cf173a9, 0x7a2e51e7, 0xf00c2b76 } }, { { 0x64302373, 0x54ef93ed, 0x263c8a7, 0xa7956cfe, 0x6f9d2eeb, 0x8b62406f, 0xcea7bca, 0x2d5bccc6 }, { 0x912a0e9a, 0x1e450fe3, 0x74f92db4, 0x7a65f337, 0x60102f23, 0x5dccf805, 0xe1d1aff6, 0xc62abc79 }, { 0x8ef9dc23, 0xf5daaa5e, 0x17c972fc, 0x4adb7ede, 0x81e8bf06, 0x4534d662, 0x47daa973, 0x39a20399 } }, { { 0x3a381325, 0xedcae4e8, 0xdb996543, 0x2011e59c, 0x250187a5, 0xcfc16d59, 0x43332429, 0x27b03187 }, { 0xb17ffd4d, 0xd60e19d9, 0xfd5aa588, 0xf63452c9, 0xa546aa79, 0x5f392d0c, 0xad7efe51, 0x49667381 }, { 0xbd3af9da, 0xdee2a5c7, 0xd5f76cd9, 0xbc9d77f6, 0x6641a23a, 0xd39beebf, 0x71697869, 0x9f6d9310 } } }, { { { 0xaf59e770, 0xe30de1bb, 0x1684bf25, 0xa2d85232, 0xd3175343, 0x1a2ba9ba, 0xb164b14a, 0x983943e2 }, { 0x8790d27a, 0xb50ce10a, 0x4b084d9e, 0xbc4a88ab, 0x123da79b, 0x9debc5da, 0x84ed7cce, 0xce9eb32 }, { 0xc390ba17, 0x13ef1813, 0xdfdb2464, 0x53d02849, 0x3bdb7a1a, 0xc887c1d0, 0x8484ae10, 0x9c2c4f6d } }, { { 0x52129bbf, 0xf38706de, 0x833f3bfb, 0x8172d336, 0x26a7fc86, 0x3007ba0a, 0x9c6c3660, 0x80ca9b3f }, { 0x62eef4a8, 0xbc0c3fc7, 0xcc2e874c, 0x8b6fb472, 0x90f5229c, 0x6084d580, 0xc197eb05, 0x6aea7e59 }, { 0xdc87b2f5, 0x21aad4b2, 0xd61d9df2, 0xb71ad480, 0x185bfbbf, 0x1bfc037b, 0x9fe2c080, 0xb24f6c88 } }, { { 0x5e70b6b0, 0x9f857b10, 0x8ba047aa, 0xd6d6a48c, 0xc78c33d, 0x8fbf791f, 0xb312c331, 0x8defee7 }, { 0xc110d8de, 0x8590fcd0, 0xa1ff8acd, 0x1096ed61, 0xc6c27dc4, 0x80ff5965, 0x4da42a1, 0x321d763f }, { 0xbe2b4f71, 0xa8c8f821, 0xe95ab924, 0x684a201a, 0xbc469c70, 0x97be3ed9, 0x8142aa82, 0x36ae0bde } }, { { 0x6daf2f5d, 0x3bb0976e, 0x18b6211d, 0x49c35a6, 0x63d3095d, 0xad40ce68, 0x8833926e, 0xe22b979c }, { 0xf66ce053, 0x35c4814d, 0xe4a8ee9b, 0x97010a21, 0x5c7ab7e4, 0x1b1b11e8, 0xc621bc58, 0x356f72f }, { 0xda3dea64, 0xfdeb7348, 0xc485a024, 0x752d3869, 0x8620671f, 0x817f7b68, 0x688e19f6, 0xe7e3b3c1 } }, { { 0x41663fa3, 0x65777139, 0x1410b62c, 0xcee640ba, 0xc4a93946, 0xd0e40697, 0x8d040cc9, 0x352b1c3b }, { 0xca1f8da3, 0x28fe4477, 0x722b8617, 0x23359205, 0xc30e4ac8, 0xd186b307, 0x8db0ddb6, 0x2c044a1c }, { 0xd831867, 0x34bdcf1a, 0x4bd4c8c7, 0x39c11c83, 0xa0c98ccc, 0xbd0a2517, 0xa328bdca, 0xb8be53af } }, { { 0xb104fd92, 0x202aa7fb, 0xfcbff0e2, 0x5d8595f8, 0x11cec2a2, 0x65ef353d, 0x63958acc, 0x4eb09cb4 }, { 0xd4c9d475, 0x67bd55ab, 0xf935ee42, 0xa1e1d7f6, 0xd916d7c, 0x2a247ddd, 0x729320de, 0x75296cd3 }, { 0x82db40b4, 0x1963e51, 0x14105749, 0xbb9c6868, 0x7acb1175, 0xf03f5d4d, 0xcb14e469, 0xd4de1623 } }, { { 0x39dad779, 0x8ee253af, 0x8de32154, 0x47c0cbcb, 0x86f669fb, 0x367a0398, 0x843bb416, 0x5e66b1d0 }, { 0xd98bc16e, 0x747b380f, 0x8a89ab07, 0xe9879e12, 0x9105afdf, 0x80fb36dd, 0xa8f226c4, 0x299e7f22 }, { 0xaa739f24, 0x56c91ff1, 0x54d3109c, 0xe5b275fa, 0x3ffbb47b, 0x8078da6f, 0xac6907e4, 0x71786dca } }, { { 0xba721ebc, 0x1960b6bb, 0x8c0c0875, 0x392c6fa6, 0x9b459fe1, 0xc6dde20f, 0xe21ce5a3, 0x68f37338 }, { 0x6afe8107, 0x339ae0a7, 0x16edfea0, 0x526f528b, 0xa4c2fd72, 0x3e3ecd63, 0x6786c220, 0xa987c482 }, { 0x31bbcd9b, 0x1d77db75, 0x15b959d1, 0x1d684f78, 0x4f9e1525, 0xd4b09a31, 0x736a35f2, 0x32a493d } }, { { 0x3568746e, 0xf5779b63, 0x9178f0a6, 0xc2b97960, 0x7f8075ff, 0xd5275c7b, 0xc06a4cab, 0xe7cecb2e }, { 0xb8705f14, 0x97b35efb, 0xe319c27f, 0x419a3f6e, 0xa471f118, 0x5f74caa8, 0x1e8628c8, 0xb1e05ae5 }, { 0x9c35d444, 0x40663fcf, 0x4605f01e, 0x959ed2f2, 0xc843c2e2, 0x9b0d25a4, 0x78fd2249, 0xec17b101 } }, { { 0xaf152844, 0x1b00d0e1, 0xd13dae3f, 0x8e54fb98, 0x618cc37b, 0x5c47cd71, 0xf63d1bba, 0xa1453e1f }, { 0x7cb9f826, 0x1c9dd97a, 0x29862d62, 0xc1dab76d, 0xb7e0b723, 0x3216c837, 0xfec7d146, 0xbcf19210 }, { 0x58637b3c, 0xbbe77294, 0x1f1a264f, 0x1908d24f, 0xd1b09e58, 0x334f1ed2, 0xc86bf092, 0xdd52a537 } }, { { 0xff89230d, 0x68b52964, 0x1f69c15e, 0x4f281958, 0x7b40f747, 0x52593140, 0xf3c831e9, 0x7d638b1e }, { 0x64572e1e, 0x918e9b25, 0xd98bbaeb, 0x19fa4551, 0x91b397f1, 0x2081e7d6, 0x5019e65a, 0xe8119e0f }, { 0x35aabf0b, 0xf9e30f30, 0x9b19414c, 0xa56caa67, 0xdb198e4c, 0xbb357584, 0xc3715ae7, 0x8e63e6b1 } }, { { 0xeebc7314, 0x22100b8e, 0x2c44195a, 0x6d5d9c06, 0xe60f4612, 0x8a966b4a, 0x5896223c, 0x22fa971b }, { 0x4befe9c6, 0xeb3401cf, 0x700f25c5, 0x9e5e8fd9, 0x15703942, 0xf4c8391, 0xffe851ba, 0x39ad949 }, { 0xe4ea4fe, 0x3dd07768, 0xe779d04e, 0x985a6898, 0xda84f8ba, 0x7dbf22b6, 0x2fdb2cb8, 0xfcba5e08 } }, { { 0xb1e7411d, 0x2b6285cb, 0xa28266f2, 0x9729382, 0x26571403, 0x50070a45, 0x9024d504, 0x1f144684 }, { 0xf97be80, 0x46d0a28b, 0x33535d26, 0x193af1fc, 0x1bdf94e2, 0xea091b17, 0x1f6b22ca, 0xcf0268c0 }, { 0xb574f885, 0x4905b22d, 0xd1c8f0ec, 0x60d3b0f2, 0xae50ff3b, 0x4832fe31, 0xeefba341, 0xc296b44a } }, { { 0x1c972161, 0xd1964aa5, 0xa4ed9b18, 0x1bbaa3c9, 0x11b1bd38, 0x90e45faa, 0xa4239341, 0xf48bb300 }, { 0x5280117c, 0xf9cfae6f, 0x9d83ca18, 0x9a6a15cc, 0xeba6d65b, 0xb0b28eea, 0xdcfac156, 0x40497b28 }, { 0xdffca7e8, 0xb1d24325, 0xeaaa2d91, 0xdd281e32, 0x657e1ad3, 0x7666e9fc, 0x107ce363, 0xa747e080 } }, { { 0xd68ce49c, 0x115956b0, 0xd60c39e5, 0x67f2589e, 0x1e067b2f, 0xe132de47, 0xa73cbbca, 0xc81399d3 }, { 0x30693fa3, 0x38d51d20, 0x20ebced1, 0xf6296156, 0xbf866c93, 0x948209f1, 0x9b444417, 0x70164239 }, { 0xaeb67a4b, 0xfa246add, 0xcd009ee6, 0x9c61cdcb, 0xf5ac6de8, 0x820e6dd3, 0xaf84da43, 0x4530d585 } } }, { { { 0x1c7561bd, 0x3467c1d8, 0xfea50362, 0x9a226320, 0x186f6a40, 0x27226c45, 0xdf2b8fa7, 0xef51512d }, { 0x6d2add49, 0x1c1d8dd2, 0xba7de857, 0xbf8a5ba9, 0x9fc0fbcd, 0x846ae335, 0xb9c5b041, 0xdd74030f }, { 0x550bb40e, 0x7e3f5dd3, 0x54b93af8, 0xe20e524e, 0xa9167aae, 0x889ea546, 0x5cadc25c, 0x873abe1e } }, { { 0x78714a77, 0xe14c2059, 0xc8c8071e, 0x74177528, 0x85071ffe, 0xb1cbf827, 0xd20a938, 0x81aba74b }, { 0x96cdc5b8, 0xf0ac1cc1, 0xfbaa2756, 0x87921a75, 0x7cd01a0f, 0xd6a51675, 0xb3cb0abc, 0xbaefaefe }, { 0xb43fc885, 0x848ac76d, 0x3da2de89, 0x9f215605, 0x9caaea9a, 0x5b647ff6, 0xc3c52cba, 0x7857e61d } }, { { 0x25246ce5, 0x5edae418, 0xef5b7893, 0xce1d3a99, 0x1cf22bec, 0x11191526, 0xe86dd001, 0x4484e6a }, { 0xbf490960, 0xeb518add, 0xa341df94, 0xb4e2ead7, 0x77416e20, 0x418e3fbc, 0xcc06c76d, 0xaf554c2 }, { 0x90d89054, 0xfd796055, 0x34744336, 0x1d9d6904, 0xbf0de7db, 0x9918e312, 0x10cae476, 0xf1578955 } }, { { 0xa81a1313, 0x2ea7a1b2, 0xe7348a9b, 0x521c91d4, 0xb64f3570, 0x5c5f8d28, 0x5ec4ba7d, 0x2e20d77 }, { 0xcda711e2, 0xdcdb18f0, 0x81881365, 0x1a60f72f, 0xb66bda50, 0xe7f2c81e, 0x39de6f51, 0x95117fd1 }, { 0x1bfa62a7, 0x4d57eef1, 0xab748063, 0x4d24abbb, 0x3ebfddb8, 0x18222a2b, 0xc8cfaaf6, 0x279269f3 } }, { { 0xfb8c470e, 0x76add189, 0x63e0f983, 0x4ff991d0, 0xf11c26cc, 0xff3013e5, 0xfd6325a2, 0xf8b39317 }, { 0xdaeb7a97, 0xad2aa2d4, 0x5bda7b54, 0x4084ae09, 0x3e440d57, 0xd15b5ef7, 0xd69b8348, 0x920180fc }, { 0x6aebbe56, 0x7ea92407, 0x555bf9cf, 0x2cbf65e8, 0xf5afdd04, 0x5015c44e, 0x86cabf0, 0x5f36142a } }, { { 0xda7cd2de, 0xef4f2d9d, 0x4a012f4c, 0xc5d3d198, 0xea4e3056, 0xf135dffe, 0x55b6fb57, 0x4bd5c613 }, { 0x513b5aa3, 0xf2ff1283, 0x30b5a222, 0x96d7d049, 0x2e7654d4, 0x121b276f, 0xcb2975e9, 0x78d6cc14 }, { 0x9b456140, 0x7a5f4a18, 0xd491cd66, 0xc1745a47, 0x7201f264, 0x48b17d4a, 0xcb46f52e, 0xa27fe580 } }, { { 0x37b25515, 0x2725b38b, 0x958ef57a, 0x7cdc9c9, 0x4512983e, 0xb5b8fb64, 0x4167161, 0x60754f90 }, { 0x94321c9, 0x462453f3, 0x828f0869, 0x9e399429, 0xd75a1a8b, 0xc7c0e3cc, 0x20aada43, 0x2ebeeb30 }, { 0xd207ca7a, 0x314c6777, 0x942a1da5, 0x43114eed, 0x86836a9, 0xb0c8fa6b, 0x356e94f3, 0xfaf66324 } }, { { 0xe99972d9, 0xaa89ecba, 0x35797f20, 0x1e9ed710, 0x10741a99, 0x8d246810, 0xa8f8da9f, 0xff85d008 }, { 0x21e1f7a8, 0x245c8aa2, 0xd019956c, 0x1dbaa323, 0x636b9fe7, 0xbc666cf4, 0xd24b593a, 0x7ae58938 }, { 0x9cfd3378, 0xe658160a, 0x17ed9c17, 0xa0427e9e, 0xf78cb053, 0x761a32d8, 0x89efe71b, 0xe7dfb9e7 } }, { { 0xd073474c, 0x93eb13e7, 0xff066865, 0xe644453, 0x8d5d5e1a, 0x6aecad5f, 0x14dcbbc9, 0x8f4d6f29 }, { 0x8914554d, 0xde33dbea, 0x7ea3567a, 0xb19ab370, 0x8b100140, 0xfb093da9, 0x71640f72, 0xcdf7c176 }, { 0x6f8ff636, 0x78f7645d, 0x9dbd73c3, 0xc9911511, 0x5f22366e, 0x22e5f9a0, 0xe95178cf, 0x6dc7cb9a } }, { { 0x265496fc, 0xc0686c60, 0x5ff82e6f, 0x1ff06e37, 0x7cf96034, 0x74989bfd, 0x3d8f77ef, 0x3f4086a3 }, { 0x639ba446, 0xcd43b9ca, 0xbbbfa472, 0xcd27f1e1, 0x9c72d6f9, 0xf6a38ad9, 0x4b183c39, 0xb9703821 }, { 0x4ad65f5, 0xf526e713, 0xabc0b1e4, 0xe1a26b6a, 0x94920e35, 0x9bf4d67e, 0xc1f6a31f, 0x47bbb6a8 } }, { { 0xdf440f65, 0x46309cc3, 0xd8d770e8, 0x44a51bca, 0xf6a0627f, 0xc998ca1a, 0x5620c9f, 0x763481d7 }, { 0xfbb3e1e3, 0x5d5c9ca8, 0xb3223ee2, 0x18586ff0, 0xfb1591de, 0x9b87e7ae, 0xc0231153, 0x8311c6f3 }, { 0x4c19d6bc, 0x77e842f2, 0xb5d290ab, 0x62f967cf, 0xd5bdd797, 0xc85a847f, 0xf6a96533, 0x868c3ee6 } }, { { 0xe3dbf31, 0xf3c106b3, 0xba1715b4, 0x3f5bb044, 0xf80f0242, 0x105590be, 0xf5abc76, 0xc635835f }, { 0x4df97de2, 0x1dfd5021, 0x216b484, 0xb5c03a58, 0x44894f26, 0xa739fdce, 0x6773f1fe, 0xd6e0ce8 }, { 0x93f19483, 0x956d5390, 0x36ed4cfa, 0xb54f2b3b, 0x8a7831a2, 0x22de7bd1, 0xdbfcda56, 0x3c43553f } }, { { 0x7960c234, 0x4b9b6a79, 0x84956e9a, 0x182a11cf, 0x3195e43d, 0x7540ab60, 0xb36ac73b, 0xa2e86275 }, { 0x8a9f559c, 0x5e384e41, 0x721202e2, 0x94e1af8d, 0x17d058f1, 0x9b908ce8, 0x164c80e6, 0x536235d }, { 0x76cc4d5c, 0x15403795, 0x80bd1556, 0x62c7ee11, 0x8d69eb02, 0x61616581, 0xb2706748, 0xd3693085 } }, { { 0x9ed984d3, 0x5603a694, 0x9310486f, 0xd00f6720, 0x7241e93c, 0x429c0707, 0x2b05b628, 0xca6d4c7f }, { 0x997de9c8, 0xe47db95a, 0x6547da76, 0xcac30524, 0x86c010b0, 0x5c7f2d77, 0xd7d4bfac, 0xf75b6213 }, { 0xb41e69d0, 0x9ea555b9, 0x9521b4b7, 0xa3c49031, 0xe5a1be1, 0x71cccfc8, 0xbfbe5b21, 0x904c81f2 } }, { { 0x6028f1eb, 0x8ba57bf, 0x4f5d273c, 0xbb26a72d, 0xd4a42856, 0x8a61ba57, 0xf2e0bebf, 0xf371a17f }, { 0x7e30b453, 0x4934af87, 0xb1e2254f, 0x31133504, 0xc166cc4e, 0x4104555e, 0x25d20a96, 0x4344a7a2 }, { 0x556399a0, 0x5abbbd93, 0x51fa9e31, 0x2204fbd2, 0xa195a759, 0x77729cb2, 0xf97b1f5f, 0x66da332a } } }, { { { 0xcf8bed95, 0xd3a2b4e6, 0xae37d211, 0xc824d410, 0x6d44f013, 0x541f5e1a, 0xa408518e, 0x228751fd }, { 0x25c97d91, 0x9253d312, 0x8df4d9d7, 0x52213163, 0x606af917, 0xe49a9fb1, 0x93e84485, 0x443bc372 }, { 0x38666b0a, 0x9cb2521d, 0x504d36b2, 0xd7fa3137, 0xb1b5a7b3, 0xad202af0, 0xdba5ec00, 0xd71a8acd } }, { { 0x8cf9ba26, 0xb259f09c, 0xdf880bca, 0x92df1e5f, 0x4dcc4e50, 0x5627a34e, 0xf37d8f19, 0xea156b9c }, { 0xa397dd24, 0x268c5856, 0x46393355, 0x4e27aac1, 0xfce08f43, 0x960e584b, 0x7f851513, 0x315fc7 }, { 0x7b82fd80, 0x7c5890aa, 0xb9e46c07, 0x75d926e2, 0x239fa365, 0x86be7de2, 0xd01a72b1, 0xd9ee72b0 } }, { { 0xf2f2495, 0xfa5167f1, 0x332e6424, 0xe893da1e, 0xccbf2b3b, 0x643a08a8, 0x1e4c5d70, 0xe4a17e45 }, { 0x988db0a, 0xa22aadb, 0xc9f23ab5, 0x160c5659, 0xc13fab4e, 0xae17ace6, 0x3d8dcdaa, 0x97275927 }, { 0x638cb012, 0x43095f1e, 0x6c0070f2, 0xa059351c, 0x216f946c, 0x664991a1, 0x7bc172a6, 0x1fc150c1 } }, { { 0x83c132e6, 0x4648f54d, 0x8119ab71, 0x6bd1c0ac, 0xd137a58, 0x41f81060, 0x46993f96, 0x5f61463a }, { 0x14aa2dc0, 0x7aa673c6, 0xfae5deab, 0x35fe1ed9, 0xb353d54d, 0xdc711e56, 0xad601f9f, 0xf7d957c3 }, { 0x416126d1, 0x8d6a6ad8, 0x5ac6bfd2, 0x8821f6ac, 0x4275621, 0x2d525bd8, 0xf55485cc, 0xdecbd6cf } }, { { 0x8e07b717, 0x4a921a8d, 0xc51f265c, 0x537900ff, 0x2de2a469, 0xa699eae9, 0xda944045, 0xf42c12e4 }, { 0xd4527807, 0xf5901e05, 0xa74f7ad0, 0x3ef05f3, 0x7f49a0b4, 0x68cee2ab, 0x7f5594d9, 0xe67c07cd }, { 0x9655b10a, 0x9eb7cf51, 0xf69b2828, 0x5d2f333e, 0x580b0930, 0x7a6e754d, 0xd2e59539, 0xdadfd1b7 } }, { { 0x86d5a633, 0x13ece76b, 0x9506750e, 0x96d1c55a, 0x3372282b, 0x835d0b58, 0x85bb4f4f, 0xb76a428a }, { 0x908f36a7, 0x57e97bd3, 0xd1b343cf, 0xf049c1b6, 0x9ef4694c, 0x837409f0, 0x61a6985d, 0x390a5a7e }, { 0xe59aa8e4, 0xe6438aca, 0xc5cdd3df, 0x3d88c531, 0x41658e7c, 0x34086112, 0x3a0e90ff, 0x70d1e519 } }, { { 0x840d9df4, 0x53d8690c, 0x8164da9c, 0x489ba0de, 0x226468da, 0x35f2e512, 0x95a8ac79, 0x7a4559b0 }, { 0xb03004d2, 0xa40d84e0, 0x94231dbb, 0xc00cd3cc, 0x7f7d04cb, 0x29c19428, 0x852124fd, 0xb190d55a }, { 0xe779d84a, 0x641069ee, 0xf9e99f25, 0xa0b0f6f1, 0xfa1ee13e, 0xcdd271fd, 0xc6e30ddb, 0x840b2e16 } }, { { 0x8860915, 0x82dec626, 0x8f4e8059, 0xddd6b9d9, 0xab701207, 0x67c58351, 0x641f4cbf, 0x7567fa45 }, { 0x87527f73, 0xd8d27e49, 0x503fa339, 0x3f903110, 0x2b44c265, 0x8c1dd592, 0x7e3fd100, 0xac32defe }, { 0xeb5e0689, 0xa50a417b, 0x2225534, 0x1f4c978, 0x7b2563f4, 0xaa33b26, 0x81019a6b, 0x950f2f48 } }, { { 0xe7918ab6, 0xc78fa3f4, 0xca3228cb, 0x611ec69e, 0xbe390448, 0xf435faed, 0x922f8273, 0x6b0abeb3 }, { 0x2e5e68f2, 0x8656ebcc, 0x35227198, 0x5e9cd06f, 0x40aea38d, 0x9d28f578, 0x18b7faa1, 0x16af621a }, { 0x30a718ca, 0x7b47477e, 0xa5d81880, 0xf4bc1690, 0x6e9e7564, 0x6f7fefd8, 0x92a72cdc, 0x2f7a3e54 } }, { { 0x70384342, 0x7727d88b, 0x28bb538d, 0xe787ebf7, 0xeb5b595, 0x1efddac3, 0x2cd171c8, 0x62f182f4 }, { 0x79faefb, 0x63aa212f, 0x3b3e8494, 0x3aefb3bb, 0xe64abc39, 0xa53a23d6, 0xe72025ea, 0x57ab4526 }, { 0x21babee, 0x70d02bd8, 0x29789f9f, 0x2f83bd03, 0x632b6564, 0x39f859a4, 0xcddcf97f, 0xa7a0cb53 } }, { { 0x5db7fa8f, 0x2f1919e2, 0x6a6b14ad, 0x55bf1be7, 0x9691ce49, 0x3020ada, 0x5bcb8c1c, 0xae47a529 }, { 0x35fcc4a8, 0xc1b65918, 0xe2dc4b0b, 0x9c42ab50, 0xf3925e58, 0xd114a1c1, 0xe3a2a2d, 0xbea64956 }, { 0x401507ee, 0xbca4f051, 0x2cfd0bd0, 0xc900b77a, 0xe5002d, 0x5a6c86c0, 0xd8f30593, 0x1d01915d } }, { { 0x78bc3e3b, 0x12db7509, 0x915563fe, 0xbe9009c, 0x207669c9, 0xf4e959b3, 0x1a32719c, 0x63c66ea3 }, { 0xc409f635, 0xa89eb1b3, 0x482619c6, 0xe91dfadd, 0x89f961eb, 0x94303428, 0xb54cdbb, 0x2ab55a33 }, { 0xab5e597e, 0xcd2ea8ee, 0xad9d7fcc, 0xb67b4531, 0x92759048, 0x9dffcf5f, 0x7e92d2eb, 0x9d935058 } }, { { 0x7bd62d6c, 0x3b5baefa, 0x50617ded, 0x31ea2f53, 0x22f7ccbb, 0x1e1de42c, 0x15debd3c, 0xc36eae1f }, { 0x345961a1, 0xdff7ee6c, 0xf7f5d276, 0x1362f198, 0x8bda2530, 0x718d6c72, 0x8ed4ef0f, 0xbdfc0b6c }, { 0x6f352993, 0xedafefed, 0xff077349, 0x7577fd40, 0x8baabf6a, 0xf2e7eedd, 0x3281fbe, 0xd69424f5 } }, { { 0x381a2a2e, 0x71b8f996, 0x4ce084db, 0xa3080033, 0x77515d36, 0xbe973a9c, 0xeb8e71ae, 0xf540cac9 }, { 0xca4438a1, 0x562e9993, 0xab8b9291, 0xf3048f, 0x3f49c1a2, 0x59444dfe, 0x31010f03, 0x9ce9a4d8 }, { 0xa485db52, 0x170159f1, 0x1717bfab, 0x3aca85ae, 0x277f7cd, 0x15e79fb6, 0x677769e2, 0x7db64c65 } }, { { 0xbe2ed0b7, 0xdac3928e, 0xf6bbe5ae, 0x2e8c24c8, 0x88a77d0e, 0xddc18e3a, 0xbd72d154, 0xfb5694cc }, { 0xfeb2916a, 0xb3b6f2be, 0xfdea85d, 0x1136ea04, 0xe376923e, 0xd446e58e, 0x9bd780b5, 0xc4ec3408 }, { 0xb5e2487c, 0xabc7e9a, 0xc7bf76f8, 0x21a7b0a9, 0xfe755238, 0xa507486c, 0xe1655245, 0x96785239 } } }, { { { 0xd07ef143, 0xa926792f, 0xb946e0b, 0xdef7de7a, 0x32eed830, 0xddae7056, 0x814563c3, 0xfcd689d4 }, { 0x41b4046a, 0xcb18960, 0xdc6e1d5d, 0x4d0ba866, 0xa3a4e761, 0xc6eb225c, 0xdf8359f8, 0xae96a74a }, { 0x40fb128c, 0xfd4b4795, 0xae65c76f, 0x560bdc91, 0x994afebd, 0x70a62dd8, 0x12282f14, 0xb7f7c8f4 } }, { { 0x26ab7e4b, 0x3db69457, 0xde446a51, 0x79980289, 0x11cdc13b, 0xfe5bba29, 0x6de797ae, 0x777758b9 }, { 0xbb3a9fff, 0xf9cce21e, 0xf784e5a8, 0x463e5f45, 0x53b3d293, 0x809f084c, 0x41591666, 0x65259ef5 }, { 0x2fb69d7f, 0x8e6d66f6, 0x9d85ebb4, 0x8d440918, 0x1f75dd2e, 0xc7d92bde, 0x1acfecfb, 0xd4f35b24 } }, { { 0xcae3f72d, 0x924bd225, 0xe2bf510e, 0xc2f990ba, 0x3ab8c180, 0x53a1e3a9, 0x59ab2120, 0x3cb73d69 }, { 0x99d4245a, 0x942e76b, 0x4e49d7d1, 0xe457ddbf, 0xbd2adf01, 0x787566a0, 0x944c2cf5, 0x5ec929f1 }, { 0x6e891842, 0x3ac16bfc, 0x57ddf14a, 0x618ae686, 0xc1449e58, 0x4275e3b5, 0xecc6ea57, 0x8b5aba3b } }, { { 0xc0d8a223, 0x4ebb4a85, 0xf3854921, 0x35271fca, 0x635d862b, 0x936b2f8c, 0xaf46fa4f, 0xec99e873 }, { 0x6bc3000d, 0xc275f1b, 0xea9123f5, 0x7f08c092, 0x562aa467, 0xa772ebfc, 0x4ea0d035, 0x481e0003 }, { 0xc60e5e87, 0x70c65bb6, 0x21c69b6c, 0x98404fca, 0xa2b948, 0x3394291d, 0xb2b6d58b, 0xc308d502 } }, { { 0xf234368, 0x7da91908, 0x7de12b15, 0x136c4758, 0x2539516f, 0x8136e156, 0x454ed358, 0x79ad53dd }, { 0x3685c0a7, 0x4bdb9ac, 0xee98eeb3, 0xcc9c9df3, 0xf684e4da, 0x4a151782, 0x6f700d37, 0xedf71fba }, { 0x37121782, 0xc75c99a, 0x492e2935, 0x65ce07ab, 0x2ab74be6, 0x24c8957b, 0x84cd1be8, 0x5fff9189 } }, { { 0x927a989f, 0x57538c33, 0x55914003, 0x1c903f7, 0x98a3f31f, 0xc56c3d44, 0x4f522d24, 0x3dd9ddf }, { 0xa2c77a4, 0xac8653c5, 0x5b4ff5fb, 0xc7e65328, 0x9b18075, 0xb61d913c, 0x68d88a3d, 0x51d7bce4 }, { 0x416fe838, 0x2b05a63e, 0x74a4d166, 0x8d994b, 0x7dc66596, 0x35b71ca2, 0x614f2177, 0xb4e166fe } }, { { 0xabef26ab, 0xf0e13f29, 0xc235a233, 0xc50873ce, 0xde01ab85, 0x3b155088, 0x321f7723, 0x6c878f55 }, { 0xae724c94, 0x1c2c385a, 0x7895b449, 0xc58065cc, 0x5e6586fc, 0x2e8b843e, 0x3eb6187f, 0xcf809779 }, { 0x350b62a7, 0xeb2bac04, 0xdca41f49, 0xf43f1921, 0x96b7e6cd, 0x2f3a88ad, 0x2cd255a3, 0x1d7ee3d3 } }, { { 0xa7a7f390, 0xc2c76dfe, 0xc133bad1, 0xb7dc02e8, 0x3191a397, 0xc934723b, 0xc3de6ab2, 0xfc6d2b7f }, { 0x66141ba2, 0x632c0253, 0x4c9e72f0, 0xd2b88fc0, 0x6e9d2124, 0x7150eefd, 0x524de8e, 0x304cd66c }, { 0x50dcad6c, 0xf67d8cd, 0xf1415e9e, 0x77f59bb1, 0x4ec29b85, 0xea439a30, 0xcdb19438, 0x76d6491b } }, { { 0x3ee661a1, 0x642a7776, 0xbd48d524, 0xdc402d8d, 0x1e5fd1d1, 0x63edb51d, 0x661fd2c1, 0x6c93dbea }, { 0xd98c9153, 0xd2f7f7d1, 0xc8073aba, 0xe3874dc2, 0x82743158, 0x671d4c60, 0x1e689f3, 0x82052dd6 }, { 0x3085925, 0xcc49c53f, 0x9574f9d1, 0x3355eefe, 0x363e2aac, 0x6af25a19, 0xdd52b776, 0x6bef05b6 } }, { { 0xb193aba8, 0x6ce1d702, 0xc45fd7ad, 0x33db3233, 0xa2cd339b, 0x3036bf0d, 0xbc75ba3c, 0x44d3c1c9 }, { 0xb36b4365, 0x1c3ccec9, 0x2b61926, 0x43d27405, 0xd79b8ced, 0x557f4b39, 0x353e0bc, 0x15eddc69 }, { 0xaf2093d0, 0x484954db, 0x6bce853b, 0x18bc62c, 0xdc1fb2a, 0xb3a44656, 0xbf64fe9c, 0x3fde0700 } }, { { 0x47b5d3be, 0xb8593504, 0x62da9c1f, 0xea3f9f33, 0x3358c21e, 0x6f1aa86b, 0xfca0731b, 0xde5eaa01 }, { 0xc6280579, 0x914eae8f, 0x1733ff83, 0x58492c58, 0xdeac5855, 0xc8d18f47, 0xb8e1d74a, 0x6f2e8e18 }, { 0x92defef0, 0xecee701, 0x58ff48b8, 0xa1a5573a, 0x22c202fa, 0x7e629d46, 0xe90b23dc, 0xeba8a226 } }, { { 0xfb9ceb1d, 0x9a552dcf, 0x348238e6, 0x1f656df1, 0x31a89724, 0xd97f5663, 0xcefe3f1e, 0xdb07e987 }, { 0x7bfcf71d, 0x648e37a3, 0x7f979f7c, 0x246ce0f3, 0xb2ef1c47, 0xb52f8414, 0xfe109243, 0x1f05cb59 }, { 0x38d40e3e, 0x2ebb2742, 0x486a1af, 0xb60bd210, 0x8a3498a0, 0xe246c298, 0xdc90d93b, 0xbc2804a3 } }, { { 0x88b71cb2, 0x7cbaf861, 0x3d4f82b6, 0x91ece148, 0xda3d4079, 0x54a1a8fa, 0xd7cba99, 0x82fb2a6a }, { 0x3fa5321e, 0xd5061e49, 0xf0bbc358, 0xad55b3d0, 0x03aa47, 0xddbada0e, 0xf7a65555, 0xf126e74f }, { 0xfe48c53a, 0xaa110ffc, 0xfe2feb37, 0xeff25429, 0x23aea539, 0xd47c42f2, 0x2a810bfc, 0x366f0b7d } }, { { 0x79c3050e, 0x6f9de3a5, 0xbd68d18f, 0x523c7fa6, 0xb9d60033, 0x21824e5, 0xdddee5ed, 0x4cb9b56f }, { 0xff12edc6, 0xf352738d, 0xe6f0b731, 0xe48cf48e, 0xd2fd443c, 0xf566107c, 0x299534a4, 0x2c3ac977 }, { 0xcee12ddb, 0x71311537, 0x35c86ebe, 0x6eb0397d, 0x2728049e, 0xddf7b384, 0x4ac56be4, 0xd3973198 } }, { { 0x741d8aa8, 0xb7cd5543, 0xf7ae4c27, 0x6d0c385e, 0x624444e1, 0xfc483d28, 0x4ce7f251, 0xd5fcfac5 }, { 0xcc6208b0, 0x8b28d9c4, 0x4ffd6250, 0xcd470a, 0x686486e8, 0xcf9415bd, 0x7c30e46b, 0x5d3e4b06 }, { 0xe455913c, 0x8752aada, 0x9c6cdb88, 0x19591c0f, 0x9e75e6cd, 0xb4d7eee4, 0xcaf9721a, 0xb0204c7 } } }, { { { 0x173a3a4e, 0xd524f086, 0xd7959737, 0xdf693b8b, 0x4d51d878, 0x17209048, 0x12f4ddb7, 0x27dfbdd4 }, { 0x6ffab1d7, 0x4733ba3, 0x3cba3dad, 0x488eb88, 0x21bee31c, 0x16121dfe, 0xef155b45, 0xb23d5698 }, { 0x41d84890, 0xceabda07, 0x8622dd02, 0x1a790797, 0x341a9b01, 0x86036211, 0x8106d515, 0x691fbcc1 } }, { { 0xef10bb62, 0x850f2554, 0x2ba64c9, 0xcc7dbfdb, 0xf1f21b74, 0x16b1df27, 0xb712e0d4, 0xc1612b0f }, { 0x1a06146f, 0x20520846, 0xc11d50d7, 0xfada3532, 0xbb439b37, 0x703fb832, 0x14e72f61, 0x2b433e93 }, { 0x45b0e52c, 0x1bd29796, 0x23855102, 0x8b522f18, 0x7021a855, 0xc4e10a27, 0x662c1d41, 0x3381d8f9 } }, { { 0x5a77950a, 0xef1fc727, 0xecdaa76d, 0x8ea5f996, 0xad8c07d1, 0xdcb62376, 0x8437eb16, 0xeae5a8fa }, { 0x48dde559, 0x1ccf84a1, 0xb168587b, 0x74120d94, 0xc19a7ac5, 0xdf974133, 0xae762833, 0xffe1c4fd }, { 0xbf86829e, 0xe4b47689, 0x98358a66, 0xd9255405, 0x49bbe7c0, 0x211e03e6, 0x62af1e6d, 0x4e83d545 } }, { { 0x843b29e6, 0x29face72, 0xd6356a73, 0xa8388d17, 0xa1dac4bd, 0xd3db11ae, 0xc80ab98e, 0xf6f2e91f }, { 0xaa63dd7, 0xa10a83ef, 0x718a0e4e, 0x90d53bb6, 0x3bc08a23, 0x4656f782, 0x94ea759, 0x92fbce3e }, { 0xca2d029e, 0x8878a38f, 0xae0bbeed, 0xfbc15a13, 0xb780346c, 0x9296f11, 0xcb181a9, 0xb6446134 } }, { { 0xa239d40e, 0xbeba913b, 0xdd6cdfa, 0x62875a64, 0x788f0393, 0xfeb68481, 0xf2e4b6c3, 0x432687fa }, { 0xbee6384, 0x7ec06302, 0x70496dfd, 0xfccd408e, 0xca329ca5, 0x20cdf839, 0x861bc405, 0x14b980d6 }, { 0xca1f6bb, 0x5d752174, 0xdef3aca1, 0xf5dd0e03, 0x50f46451, 0x92f71403, 0x9e83cbbd, 0x7e96da5d } }, { { 0x41c63079, 0xefdfa188, 0x44b5aa71, 0x3d3d3047, 0x6763add3, 0xcc664977, 0xab35aa20, 0x44fdb1ae }, { 0xd9a3718f, 0x3f31ac86, 0x1e754437, 0x9355fb4b, 0x2f6a717c, 0x5b46b6d3, 0x78c5c150, 0xbd270fa4 }, { 0x635a84b7, 0x286fd665, 0x8134941b, 0x2fab98a4, 0x4692e19e, 0xd7fec7c1, 0x301cc6f5, 0x1211329b } }, { { 0x22fe6b06, 0x6202bbb4, 0x928d04e3, 0x388180c, 0x2ca873ac, 0xeb6b5d9d, 0xfe5072cd, 0x557eba21 }, { 0xebb64af8, 0xbc227f14, 0x7a0e2aa3, 0xcefa2bf2, 0x2c960709, 0xd224825a, 0x762f9925, 0xbb183e1c }, { 0x3830aa05, 0xa583946b, 0xb4eefb89, 0x1f203789, 0x819b772, 0x7800b3b5, 0x190bd54c, 0x9f133847 } }, { { 0x29b5ed56, 0x9b92c075, 0xbbed45bb, 0x89ef953a, 0xdfc939c9, 0x878495ee, 0xf96d2437, 0x1143f920 }, { 0x879e441d, 0x8b27704a, 0x1400dc6, 0x2aada32b, 0xb2f18f2c, 0xd0c709e9, 0x6fa1cd2c, 0x3793935e }, { 0x51efc5d5, 0xf604f6f2, 0x770599f1, 0xaae290ee, 0xbd5963e4, 0x4ae41527, 0xd7650d31, 0xb0e796d6 } }, { { 0xfe1a566a, 0x12d49438, 0xe22077c4, 0xf59acb90, 0xe36bb5da, 0x42a9c930, 0xfd0a871f, 0x18ecf778 }, { 0xab09152c, 0xbd639460, 0xdd468aa1, 0x29f86bab, 0x78dd6eb6, 0x31bb5b48, 0x971f2bad, 0xd3d99ba1 }, { 0x6c475106, 0x1c8bf89f, 0x58f85f8e, 0xf8cb9c58, 0x65765088, 0x773f1d03, 0xca95832a, 0x65c8cfa1 } }, { { 0x76697d6, 0xbbdace54, 0x1f1df53f, 0x7600225f, 0xbed4ec4, 0xf3da2c17, 0x7fb7c599, 0x5ea08f10 }, { 0x9aa0b9da, 0xd748d6b6, 0xff4bb096, 0xf87cbce, 0x57016456, 0x68d9acf8, 0x1139ed77, 0x43095de4 }, { 0xab653b74, 0x86392c93, 0x80e49245, 0x3a4d3651, 0x4e447791, 0xa25e3588, 0xbdbdb0aa, 0x5615be38 } }, { { 0x1971734b, 0x1d3aa497, 0x1a74bec7, 0xe211bfc3, 0xc20ab340, 0x30335d61, 0x62adeffb, 0x5831e417 }, { 0x5a5ed7a0, 0x823d69, 0x7a3c6e52, 0x890e7305, 0xb141886c, 0xa38e9c34, 0xf47b392f, 0x81dfd8ce }, { 0x9da2d8cb, 0x2b62659f, 0x79f31ed, 0x35b8a951, 0x86ab25a3, 0xe5bf9845, 0x462a3d36, 0xa338e1b6 } }, { { 0xe81b1427, 0x422b86ee, 0x95f115a8, 0x6f1c66e8, 0x38e33c17, 0xc52c78a9, 0x7c64ad05, 0xbe2b6fd0 }, { 0xc27a5bb7, 0x2534f9af, 0xd4492edf, 0x12f0b22c, 0x2480556f, 0x47a7d72b, 0xf0214e11, 0x2702fa01 }, { 0x532ff5f, 0xdeaa5481, 0x65aeb4e4, 0xe3895aa0, 0x68d2b507, 0xcc57af82, 0x744bde9f, 0xf7a079a6 } }, { { 0x576ee6b9, 0x70aad6c6, 0x2bd056bf, 0x3d09f2b2, 0xe4df72f3, 0xc640604f, 0xef98c455, 0x7bc7ba50 }, { 0xa356f683, 0x28e9ec1b, 0xc528bf5b, 0x207b4220, 0xce41c7d6, 0x343c51ad, 0xacb3108f, 0xf901e895 }, { 0xaaa50ffe, 0x63aaf303, 0xfb9ef247, 0x18579a91, 0x8aa2be71, 0xe0523673, 0x9e824bc1, 0x6b9c42a4 } }, { { 0x100a3df0, 0xea5e6f32, 0x22ee236d, 0xd98355f8, 0xb81e5596, 0x4b1bb5a, 0xf9a9dd4c, 0xddac6914 }, { 0xf2bccc4d, 0x67d7277f, 0xf9adddd3, 0xa97d22a1, 0xf9f0660e, 0xb2dfa114, 0xf084e691, 0x74c53f8a }, { 0x20badd92, 0xd6a5002, 0x3c01870e, 0x11b28a3e, 0x85e278f4, 0xc77d1711, 0xfa8995c3, 0x2990642f } }, { { 0xe7160e1d, 0x7f5d1c7c, 0xa18dc295, 0x9e726e23, 0x5bd6d62b, 0x60a4dae4, 0x4a7dd447, 0x8991de21 }, { 0xd0307e0, 0x3cd5eb57, 0xa3085a2a, 0x68afd40b, 0x45d3d561, 0x77ebb14e, 0xcc2a263, 0xf78fe22c }, { 0x5382e011, 0x208df510, 0xc62e43fa, 0xf7955d05, 0x57511176, 0xd9125c11, 0xab35c1a3, 0x49d3d124 } } }, { { { 0x3c7cf5fd, 0x263021ef, 0x22e1014d, 0x42ad7a81, 0x20167a04, 0xafee7745, 0x5f44b0f5, 0xd4eea0d9 }, { 0x2adb89d5, 0x8d0ff3cc, 0x3a975381, 0xfb71907a, 0xc419d284, 0x2e6ed222, 0xa56c7b31, 0xbff4e321 }, { 0x2893817b, 0x56272a81, 0xd732b422, 0xb6a08cf6, 0x1a94e5af, 0x9350b3fe, 0x29165160, 0x3976cdd0 } }, { { 0x48337b86, 0xa113c430, 0xaf2691f9, 0x5a429ecd, 0xc1632c99, 0x89e4507c, 0x23b048d3, 0xbb327ef2 }, { 0x5d720a0c, 0xbaf99a6d, 0x2ef69397, 0x369cf87d, 0x83b8beea, 0x1c3029b4, 0xe19cae39, 0x36bfaa20 }, { 0x81ab3f4c, 0xecc4f5aa, 0x9f9b28ac, 0x4631cfb3, 0x94f2c6e, 0x9d91c4e5, 0x2676e67f, 0xe698ef1d } }, { { 0x2d97545, 0xdc076b8a, 0x34bcec51, 0xfb809606, 0xc8bf4d07, 0x92f1d043, 0x34ef6d87, 0x1650750f }, { 0xede35cf7, 0x6688fc7a, 0x28cb55b1, 0xe1e53464, 0xbafe25f9, 0x9d0393e6, 0x72bf8767, 0x5dfbc036 }, { 0xedded119, 0xd772c048, 0x160dfa03, 0xec3fe213, 0x25bf406, 0x7a36f03b, 0x47e92584, 0x20329bcc } }, { { 0xf771a14a, 0x1631e948, 0x7ca0d8ff, 0xec79e0c2, 0x78693bcb, 0xf16b8ea8, 0x415ff0c8, 0x3e1bd305 }, { 0x93807ce1, 0xe12293bc, 0xb6ed3424, 0x30c28fdf, 0xfb7b5ab9, 0x707c7f93, 0x837d6a7, 0x1397db5c }, { 0x3a8615ba, 0x356c3e1b, 0x54725db7, 0x1726d3fb, 0x1207b834, 0xfa541598, 0x85f25c8, 0x29252bc2 } }, { { 0x688e70e8, 0x66b62a9d, 0xf08eaf8d, 0x444044df, 0xb8684d16, 0x2074c239, 0xb5f13c7f, 0xd9ec05ed }, { 0x38ad6a6d, 0x512866cb, 0x2cd21951, 0xc6668e2a, 0x4fe7fb10, 0x6a8e1c8b, 0x71f67c75, 0x4031364d }, { 0xb933f911, 0x866e2fa6, 0x63d64dc2, 0xaf08a1be, 0xe5f3f64c, 0xc17456ad, 0x660c05d4, 0xe39b8dc2 } }, { { 0x8ba2b626, 0xe5561d10, 0x3a532c8, 0x460d02f2, 0x95b2b0d3, 0xbb6e624f, 0x6573c92b, 0xcccd568c }, { 0x17c60c62, 0xe8efc809, 0x5cf89669, 0xdacce999, 0x15ad2217, 0x4fd66c68, 0x9cb4eeac, 0xddc345ca }, { 0x83f6938e, 0x4ac165e8, 0x692a26be, 0xb94edabe, 0x18667324, 0xf5b39efe, 0xea8b8e5d, 0x924ae3ea } }, { { 0x44bef020, 0xe47f3511, 0x28156ce9, 0xbc8125c1, 0x7b396df0, 0x8aabe9d5, 0x5e79a207, 0x11058658 }, { 0xa7bf2515, 0x44aa1781, 0x6b2379f3, 0xc133ca2, 0xc17bac4e, 0xf3ded8f7, 0x396c6314, 0x6305f04e }, { 0xbcc99e84, 0x517caae7, 0x639f78f5, 0x28dbbceb, 0xb7a87059, 0x949d0ac, 0xbc9695fd, 0x6b3d1971 } }, { { 0x5eb0ec5a, 0x6d7941ff, 0xfe525887, 0x1548c780, 0xc22c6bb0, 0xda9d84d3, 0x617df9f1, 0x3d466f76 }, { 0x76150161, 0xd30f520c, 0x5e2343b5, 0xf0845b90, 0x2934a783, 0x31fb15e, 0xbdfc7878, 0xbd2e9bfb }, { 0x65ede77f, 0xeea18d12, 0xd9af045e, 0x1e1ea15c, 0xd29c09a0, 0x817d2afa, 0x4bd785c9, 0x3ef3c088 } }, { { 0xeff4c4a4, 0xa0ce685d, 0x3a6a4622, 0xa6be814, 0xb44e2b62, 0x3d492330, 0xac6edbff, 0x7fa3577e }, { 0x19ac170e, 0x2983ab6b, 0x398abad0, 0x8202fb33, 0xd9f1080e, 0xbd5b5452, 0x568e3b60, 0xec9a5f68 }, { 0xd62b5456, 0xf3a0a4f3, 0x80beb28f, 0xf13b01c5, 0x5ed78eaf, 0xe5ca62ba, 0xe255751c, 0x4ea5036a } }, { { 0x2d4134eb, 0xbd1654c2, 0x71ee6c0e, 0x92651031, 0xf73c5043, 0x735feb61, 0x49e4f183, 0x891a87c5 }, { 0xb1ffbaa5, 0x51ba721b, 0x2ef86058, 0xcc163cf8, 0xcf209a11, 0x96919f2, 0x3f9ec737, 0x65313b8 }, { 0x30290081, 0xe0fe33cc, 0x8a03a3fb, 0xd241e9ef, 0x70a7ba98, 0x27cd098d, 0xc0d19391, 0xa0405193 } }, { { 0xf25c2096, 0x6fb3c621, 0x829a5ec5, 0x7e66d9fa, 0x163ebb00, 0xb3cc533b, 0x60a4968b, 0x2683e8d8 }, { 0x346475a2, 0x4aecad66, 0x33a79bba, 0x3d4f42a, 0x9e93971f, 0x4a29f5cc, 0xd8a5561d, 0xa47bf9aa }, { 0x70941bbe, 0x498110a6, 0xb71983e2, 0x1bcb0535, 0xba374023, 0x51c9f1d7, 0xcd47d96d, 0xe2dc9a5e } }, { { 0xaae56d48, 0xfd54359d, 0xee584dd1, 0xa2d0022e, 0x8b15c713, 0xf3653130, 0x290ac57d, 0xd55ed306 }, { 0xc219e2c7, 0xbfd014b1, 0xf052c8d, 0x2b7ecb43, 0xc70eb0d6, 0x4dd6b150, 0xac34ee14, 0x6e3f8d67 }, { 0x76af4755, 0xaaeb32f, 0xadad5873, 0x67ddf59f, 0x98432bd2, 0xee4d1cd5, 0x4e2cfd5f, 0x9f772656 } }, { { 0x59b24711, 0x78106d76, 0xd230bae7, 0x1fb9d45a, 0x2f57f0b1, 0x55905335, 0x5a1d9bdf, 0x28ac6834 }, { 0x9a4210d6, 0x173dfc60, 0x4df757be, 0xa26d3fa3, 0xa8744a45, 0x2b75af6, 0x6eb2e373, 0xb76b7786 }, { 0x72003ca2, 0xbbaa7526, 0x37f01fea, 0x31b3a758, 0x4cf4666b, 0xdd122511, 0xf410f23f, 0xce104f09 } }, { { 0x866be5cd, 0x7bc0a67d, 0xf42f33ef, 0xea813400, 0xeeb95e14, 0xc196ed8a, 0xc305b69e, 0xad49bb93 }, { 0x5123f31, 0x4418b7b7, 0xc3adf3df, 0x14b43d54, 0x3b58cf, 0xbbc20bb, 0xd58a18ed, 0x90b319e7 }, { 0x54f739d2, 0xacd112e9, 0xe55d6183, 0xd226d413, 0x1f1f8fb3, 0x1eb56a67, 0x99b04cc1, 0x25495661 } }, { { 0xc35b75db, 0x388e863e, 0x13467f1e, 0x75d36a25, 0x846b6083, 0x1372273f, 0xe97993b0, 0xe849350e }, { 0xdeb8aa7, 0x2c939a60, 0x8cb0d31, 0x64aa1da5, 0x507f37b3, 0xf4c8966d, 0x5dff091e, 0x7098e9de }, { 0x735e2a42, 0x1be956bb, 0x2e147468, 0x348088d8, 0x3767a524, 0x89cfb9d0, 0x44a4f09, 0xcba18f31 } } }, { { { 0x5abfc8a, 0xa9740776, 0xde7b520b, 0xad966dfa, 0x16ebf6cc, 0xbcc8878a, 0x80dd6957, 0x797da15d }, { 0xea68e699, 0x20959288, 0x3fa257d1, 0x7eb278fb, 0xcab65648, 0xe2e04a09, 0x9f8e710d, 0x9f1e4ea8 }, { 0x97e3781b, 0x12b27a9f, 0x2c1673ee, 0x83004c8c, 0x90d07962, 0xdb4c9113, 0xcbcc7b3b, 0x18619977 } }, { { 0x11e45426, 0x9222bb37, 0xadb63bbb, 0x13c1207, 0x2668fa9f, 0x37d4bf72, 0xe3f2620b, 0x561c931f }, { 0x87556102, 0xccea875a, 0xdc6da16a, 0x88e7ac1, 0x57630a2b, 0xf8a5390e, 0x9ae5006f, 0xe15100bb }, { 0x5237a2ea, 0x95292ef6, 0xd4fef8a4, 0x5e551501, 0xc9045dfc, 0xc29aef4c, 0xf092e9a2, 0xaabdd8df } }, { { 0x4ec54efb, 0xcded52fa, 0x5a8fda73, 0x54f4f309, 0x8947c97e, 0x1dc546eb, 0x8783cd3e, 0x8b97570b }, { 0x3d7e94d2, 0xeb5e7848, 0x4b881bc1, 0xd686046c, 0x2a13a1f4, 0xd3f85200, 0x8e832e86, 0x318b506f }, { 0x8fb3685a, 0xa4a058c0, 0xe896be12, 0x8f08a924, 0x4482ac52, 0xb38ebfb8, 0xc9bf0da3, 0x58e2f5a2 } }, { { 0x2a3bf101, 0x2dcdabaa, 0xca43b40e, 0x36602132, 0x14270d0, 0x857c046e, 0x3e6ac8d4, 0xf11f54a5 }, { 0xc3f58f0b, 0x564cfdd0, 0x2ebef00e, 0x2b48857, 0x7a64c660, 0x96a991b6, 0x246f0a31, 0x934a8a27 }, { 0x406a7063, 0x58aa52f6, 0xab5b5db1, 0xb70f264, 0x966d9fef, 0x65fd45b6, 0xccacad9f, 0x3ad2d19c } }, { { 0x188a4f50, 0x6ef16116, 0x3cae9422, 0x2eabd395, 0xf7efd0ab, 0xd96bbab0, 0x90241134, 0xe07e0aa4 }, { 0x7ddb6666, 0x95b79ffb, 0xb5404911, 0xc7b288b1, 0x912e99e4, 0x5b8d8027, 0x54d77634, 0x51b1d458 }, { 0xd7c5cf2d, 0xa5ab025f, 0x432c4b31, 0x1907df29, 0x76ceb3f8, 0xde54304a, 0xa4eedef6, 0x875176e8 } }, { { 0x916ae677, 0x9513f29b, 0x530668e7, 0xc2b18e75, 0x2e51fea2, 0x2f24d12d, 0x33bb3194, 0x6cf62715 }, { 0x6a075a45, 0xef04fc96, 0xd6155249, 0x96d5da01, 0x3b789fe8, 0xa0c2c886, 0x4d0b4d63, 0xa1f42820 }, { 0xbfade37f, 0x540465ca, 0xab137771, 0x24cb9815, 0x168a8029, 0x55b916c2, 0x3534953b, 0x9f051c56 } }, { { 0x82cb353e, 0x1b299b3e, 0xabd98348, 0x29266887, 0x6c9d9399, 0x2be36221, 0xc5bd19a, 0x21e7bc5f }, { 0xa9a318aa, 0x919aa3b, 0xc45d6600, 0x48edf010, 0xfec40ecf, 0x8a197493, 0x2de1e091, 0xb7b75b34 }, { 0xdf99e0bc, 0xdaac85df, 0x9335cbf5, 0x1937ece8, 0x8018af6a, 0x3533a798, 0xd51f8a3, 0x48e38a89 } }, { { 0xae556165, 0x8b26d8e9, 0xe18ab70, 0x858a1fbe, 0xf2dc62dd, 0x6731b47b, 0xc0eba5a6, 0x94c372aa }, { 0x223e7d0e, 0xc95f75aa, 0xf5846855, 0x71529298, 0x8bcf3fdc, 0xf0ec758e, 0xf4b424d7, 0xd8487cea }, { 0xe57ef294, 0xe23777eb, 0xe4af9286, 0x1fb05223, 0xb9964032, 0xc233dbd2, 0x309c8781, 0xf6fec112 } }, { { 0x98303cfd, 0xe5866323, 0x37060b3d, 0x11153095, 0xd3b5c4b0, 0x81cc7a2, 0x42a34096, 0x12dc0440 }, { 0x5cfee6e8, 0xf6a71b5b, 0x1bf393e6, 0x7b6f700c, 0x2779af55, 0x5ae02284, 0xdc3c6b9, 0x134b1934 }, { 0x93202982, 0x1ef81c77, 0x458115ae, 0x9a6c090d, 0x934765c0, 0xb2057bb8, 0xaf509583, 0xb55883a3 } }, { { 0xa34b418a, 0xfb9615b2, 0xcf412b8, 0x97f06771, 0x237b95da, 0xf14022f6, 0xbbe6a98b, 0xc35edfe0 }, { 0x4652b3fe, 0x6592285d, 0xb6e5208f, 0x1fc10e39, 0x787b0b4e, 0xe26b554d, 0x53e8c69, 0x463e55fc }, { 0xbea4a060, 0xdc66d384, 0x1d3d1c10, 0x183a4984, 0x8dfe99dd, 0x565cda1c, 0x7c8fe4db, 0x39a58a0d } }, { { 0x5496a808, 0x79af7776, 0xa9c95f3b, 0x3b68820, 0x42da37a6, 0xf841a961, 0xfc7801ac, 0xd32f2a2 }, { 0x55d5f078, 0x29a1eb3, 0x84839a5b, 0xfc502ff2, 0x8c720b19, 0xc89ffbc7, 0xb5aa5c99, 0x7d37acef }, { 0x94549700, 0xa2861f61, 0xdbaa7e6b, 0xad6c991, 0xa09260, 0xe1262d6c, 0xc6d4b9b4, 0xe0adf21c } }, { { 0x9f9213a2, 0x7fbb21da, 0x3453a30, 0xc785636e, 0xb8b5ba, 0xdd90e70f, 0xea817280, 0xd0f76578 }, { 0xc1635709, 0xd3eba6eb, 0x72dcdfd4, 0xf477ae25, 0xdca978fc, 0xd45823b3, 0x931cca83, 0x474edfb6 }, { 0x69caafce, 0x9a3c12cd, 0xd4f3d1b6, 0xea6be398, 0x4695b10d, 0x27ce147b, 0x9fb81799, 0x8608b1cc } }, { { 0x26be8d2f, 0x1e192321, 0x6691aad7, 0xbefe63d1, 0xe8451dc5, 0x4ada0afa, 0x6be331a3, 0x507cf408 }, { 0x5e888954, 0x752039ba, 0xae44ae78, 0xac746a1e, 0x88b97fea, 0x98b09086, 0x72fa37bc, 0x38ad855d }, { 0x7be49fb1, 0x79613006, 0x670bad74, 0xb8ba92d8, 0xa080f1eb, 0x15192b73, 0x601643e0, 0x8990f08e } }, { { 0xba181b05, 0x6716d0ab, 0xa9b9d8a2, 0x615a31be, 0xefbfc898, 0x26e9926a, 0x5ce43386, 0x8c29b276 }, { 0xbcae699, 0xc0ffe7f0, 0x2cdf360b, 0xbe64296d, 0x5eed5a18, 0x945854d2, 0x802f3003, 0x93150409 }, { 0xbaca2c03, 0xcc8c6021, 0xf36a96b5, 0xaf44dcec, 0xea4cf8ed, 0xf9b50050, 0x9ed1d8f5, 0x93c8b367 } }, { { 0x4737a82a, 0x994b3139, 0xd65ae34b, 0x2d1f7a28, 0x2e5cb9e7, 0xc8b93639, 0x5f9a4f06, 0x8a87b026 }, { 0x146914e1, 0xf206470, 0xc1d9403b, 0x8231c79c, 0xdd6269c8, 0xaa664cc4, 0xbd24ed2, 0xf8915145 }, { 0x6c74eef8, 0x9101e990, 0x930275f0, 0xe160f4bd, 0x5c2f2ebc, 0x3fe0ee48, 0xfaddb862, 0xf5413bf6 } } }, { { { 0x83b1aca, 0x6665584e, 0xddca1e01, 0x9a900bfa, 0xb67e3a6b, 0xc146e24e, 0x1b438f5a, 0x2045c8da }, { 0x8a2e2107, 0x19f88565, 0xe75482a6, 0xf1bd27b2, 0x5e0b3dd5, 0x2f1ccbe0, 0x3958a18b, 0x34a10be }, { 0xc3f0b1c4, 0xa815061d, 0x2d970d65, 0xa266105f, 0xfabfdfe3, 0xf1335d2, 0x605a52ee, 0x791be862 } }, { { 0xc7fddb3c, 0xafe705af, 0xb577184d, 0xe60251d4, 0x407e8a3b, 0xcc368eff, 0x97055c00, 0x61dc9d03 }, { 0x353f28b1, 0x5dff7f3f, 0xee758a4c, 0xfc893c35, 0xd3492c65, 0x8a05b48a, 0x5d2673f5, 0xcef050de }, { 0x5fee6ba6, 0x17134d1d, 0x9ffc617c, 0xb1eb3358, 0x2ec4c730, 0x1f116a09, 0x2749cb3f, 0xa50ba979 } }, { { 0xb65549c, 0xc3fe2c02, 0x6ebb9478, 0xc6112110, 0x9677af0d, 0x96ed33a9, 0x8d3bc9b6, 0x3b3d9a02 }, { 0x6c96495b, 0x7bfc32e9, 0x92cbe62a, 0xf8c45f0c, 0xfc9699ec, 0xe3784108, 0x9eed4bb8, 0x68f5dcf }, { 0xf23b6f98, 0x457dc389, 0xd374ae62, 0xbe5c27f5, 0xe82c1cfb, 0xa560ffb3, 0xfbda019a, 0xf058e5e1 } }, { { 0xf451f13, 0xc49618a4, 0x160f4cbf, 0x166b4f47, 0xfb8f36f0, 0x2d2c450d, 0x991b9ec8, 0xa6f825d9 }, { 0xe72f3767, 0x2329c3d9, 0xa2b95fbe, 0x866b9260, 0x3e8af322, 0xe76b69b5, 0x8a0c1223, 0x5d94cf86 }, { 0x95d66cee, 0xeec1ba24, 0x56944830, 0x3da56451, 0x54d8346e, 0x78a370cf, 0x68b9cba2, 0x2e481712 } }, { { 0x4f96a602, 0xe373abd6, 0x788e7221, 0x2e4ac0d2, 0x10dad334, 0x18ba13e, 0x660e6fd2, 0xccb5e6d1 }, { 0x4c10feee, 0x85af0807, 0x755038d4, 0x35b99b46, 0x9fd461a, 0x81f1abbf, 0x863373a8, 0x2b1e435c }, { 0xdf5d4c45, 0xda8749ae, 0xb821ef48, 0x1e3dcb0a, 0xdbedae58, 0xda6e53ae, 0xbfc33477, 0xad51724d } }, { { 0xff2de4e9, 0xa6462006, 0x2321b0d2, 0x585d7b4, 0x874b473c, 0x386f5ccb, 0xb62ed408, 0xba756de0 }, { 0xea4e31cf, 0xc2364577, 0x6c0957d0, 0x3063a5a6, 0xdacfc485, 0x23f75baf, 0x4a753387, 0x87a2e3a7 }, { 0xf23a139f, 0xcb6ae0db, 0x51777fa6, 0x35624150, 0x4bc424fe, 0x663f8406, 0xb6e5284, 0x96a3519c } }, { { 0x75237f32, 0x24003b0a, 0xbdf0f979, 0xdf95a5d4, 0xf86ce677, 0xe42820f8, 0x4c65f2a1, 0xba456eaa }, { 0x842ecb5d, 0xe5449780, 0x9c94d815, 0x3858b5ad, 0x74e6485a, 0x65cdf69b, 0x882e952e, 0x279eb4f0 }, { 0xc00e4b25, 0x4cc873f9, 0xc0947470, 0x69cebee, 0x808e8687, 0xecf0e9a9, 0xa274423c, 0x162c4102 } }, { { 0x7b0f5c8f, 0x8bb8a222, 0x25c454c3, 0x415c51b6, 0x9efc8f62, 0x16f17f5, 0x412498be, 0x803abbd6 }, { 0xebb9ec1a, 0x19e98052, 0xeb2c1b14, 0x9ed700a1, 0x18c301af, 0xdd4b0724, 0x73734f7f, 0x369d73dc }, { 0xf3ea64a2, 0xf0ac6cbf, 0xdc8d2ebf, 0x505d565a, 0xda57f73e, 0x3c6e722e, 0x47a23f5a, 0xc0675c31 } }, { { 0x33d248d5, 0x6699faa5, 0x6f9e61aa, 0xdb5e6062, 0x6b9cdba5, 0x1b28c46e, 0x9e677a04, 0x83903780 }, { 0x8652023b, 0x748f56eb, 0x8b64f44d, 0x17ef9ae4, 0x943090f2, 0xcee1fce3, 0x289ac6ac, 0xf4233d8 }, { 0x8ef38aab, 0xf91a4661, 0x7fa9eb9e, 0x133c230f, 0x21619c7a, 0x73a6d1a9, 0x20a2fb05, 0x278394ae } }, { { 0x535d70b8, 0xfd1001c1, 0xea557cbe, 0x3847d3a7, 0x900c56ef, 0xa12c611d, 0x334e096d, 0x6e310ad2 }, { 0xf0114efc, 0xb4b22082, 0xf6dc0e36, 0x8ba6378a, 0x82f36b5e, 0x3899667c, 0x35d74beb, 0x73e2f940 }, { 0xd053c3b0, 0xee119852, 0xeb5b6d78, 0xd7e8f120, 0x696d02b0, 0x5740efbe, 0x6d88fb9, 0xac3ef590 } }, { { 0x16c6fd5d, 0x158370f5, 0x8b01400b, 0x7acfe372, 0x4559ecf0, 0x9336ca5d, 0xaf1b600a, 0x1d82ce00 }, { 0xdddd154f, 0x65d1370c, 0x5b8eb3fd, 0xf9539835, 0x2578bdbf, 0x88e3d9ff, 0x2eedac0e, 0x1b688175 }, { 0xdd5461f, 0x2db1f79a, 0x94471a31, 0xeeafd56b, 0x9aa3441d, 0x181594f2, 0xfa138353, 0x47c32669 } }, { { 0x6f95b1cc, 0xbd803fd3, 0xc81ec042, 0x90c3d6cb, 0x7167b6ec, 0x51420012, 0x72d27696, 0xec80d5e3 }, { 0x2cd85c2b, 0xee999030, 0x26dd94e3, 0xe93522d9, 0xf5ab23a6, 0x3acadaf9, 0x79e33be0, 0x4f830cb1 }, { 0x49529298, 0xe0053e43, 0xb7ca8b87, 0x7b77df07, 0xb863f50, 0x79f28ec, 0x381f694a, 0x10b5839e } }, { { 0xeb3ff982, 0x1dca1d6f, 0xe792be3b, 0xbdcd2ef6, 0x6b74bf49, 0x213cc3d7, 0x1985a650, 0xd91c66ca }, { 0x991321c1, 0x78f47d3d, 0xfe535448, 0x90c8cbf3, 0x2105b392, 0xeb0531e9, 0x10850975, 0xe78bb20b }, { 0xdbb826df, 0x5d77740c, 0x29356aa3, 0x482f6238, 0x4332a234, 0x4832452a, 0xe7316569, 0xd59d8dfb } }, { { 0x9ae89a52, 0x9546048b, 0x4376586c, 0xf68c0d27, 0xa3377d24, 0xddc2c733, 0xddbb5eae, 0xba8da178 }, { 0xccc200b, 0xd2ff4587, 0x5257df98, 0xa671f65a, 0x9fdf2410, 0xa83299fe, 0x7ae9c7fa, 0x6291a527 }, { 0xdc8a79e8, 0x9ed18dd5, 0x79b1a09f, 0x2c01d351, 0xd1909ac1, 0x99b8144, 0x8a04d1c, 0x66fecc4c } }, { { 0x1a11a0e8, 0x920818d5, 0x4a3f41f7, 0x95ed1812, 0xee3471c8, 0x848576e, 0xd345d638, 0x8fe6593b }, { 0x8b6634e, 0x1742b4ae, 0x8008af0d, 0xf4662612, 0x77fa64fd, 0x505b8342, 0xd45c20f1, 0x3f09911a }, { 0x41bab813, 0xd3980dd2, 0xe5091738, 0xba76e4fe, 0x12849770, 0x7d653e5c, 0xa7bd4a81, 0x9bd8753 } } } };
mirage-crypto
2.0.2
ISC
https://github.com/mirage/mirage-crypto
git+https://github.com/mirage/mirage-crypto.git
h
mirage-crypto-2.0.2/ec/native/p256_tables_64.h
/* Pre-computed 64-bit multiples of the generator point G for the curve p256, used for speeding up its scalar multiplication in point_operations.h. Generated by ../../_build/default/ec/gen_tables/gen_tables.exe */ #ifndef ARCH_64BIT #error "Cannot use 64-bit tables on a 32-bit architecture" #endif static WORD generator_table[64][15][3][LIMBS] = { { { { 0x79e730d418a9143c, 0x75ba95fc5fedb601, 0x79fb732b77622510, 0x18905f76a53755c6 }, { 0xddf25357ce95560a, 0x8b4ab8e4ba19e45c, 0xd2e88688dd21f325, 0x8571ff1825885d85 }, { 0x00000000000001, 0xffffffff00000000, 0xffffffffffffffff, 0x000000fffffffe } }, { { 0xf26ac1b54f2bf829, 0xc6b2e33a31355d9b, 0xd2aad563a7090a86, 0x5de4f991e25e717a }, { 0xdab967123ccc950d, 0xcf48a95eaa13daa3, 0xda98128dce880027, 0xf9f84f1f77bd1fde }, { 0xbbe4a6af9d2aac15, 0x169571c87433c8b9, 0xa5d10d11ba43e64b, 0xae3fe314b10bb0a } }, { { 0xe16eae8b4235604, 0xb6e436478ad155f8, 0xf49e9b74c16afc6b, 0x11ac94ca3eb7592c }, { 0x9613af6eee36f4b3, 0x92f40e45414547ed, 0x11ff2429e43aa87a, 0xd7f12e4aedc5fcc3 }, { 0x95ece5ba9750bf56, 0x77179c7308c7912, 0x8103ae30fbb15653, 0xb57606e6c963320b } }, { { 0x1826e72842a9e104, 0x411d1e6c38bff870, 0x814b8df2a7e0c85, 0x5261203079f2049e }, { 0x8fd28e55e0025cbb, 0xa92b4603261b5545, 0x1899b7b22e5893dd, 0x60574123537d1789 }, { 0xdbef6275e76edb49, 0xc4d147435ec92fdc, 0xc5a74f8a61b8723b, 0x2af69bb8087399b } }, { { 0xeb2a55d0188a0d54, 0x3c44fe59c2543227, 0xc3bd188ba1d309de, 0x349fe81884bab5c5 }, { 0xf4ccd028f4e3f47, 0x4b7d980560208883, 0x2259a0b6e62995d, 0xdf3e7e2ed990132c }, { 0x9cb830c7257e05e4, 0x569a65e81f9c59fa, 0x5e70d145db9a8f7d, 0x563e97a21b7600aa } }, { { 0xf8a322762a5dbe64, 0x63c2dfc8f1cba258, 0xf2e03395f269a3df, 0xa5436061a5c8046b }, { 0x12501026de9707df, 0x3aab512426fba53a, 0x69315ef283e6bb56, 0xf18c9c30d99ac86 }, { 0xf036be7a0a34b20a, 0xa14848b05b41ef18, 0x26ffd85b3f3e23bd, 0xa00b4dcefe7849e1 } }, { { 0x27eafce527e62eb6, 0xc8a78bc44f21430e, 0xe0580c1d2692516b, 0x5e428129c0e488ef }, { 0x94ee3dec81079d91, 0xf3375d73ef854e6b, 0x1a9dfa130fb543, 0x28a4f99ea605b1d }, { 0xff3a7baa2e188dab, 0xef48f8c43296e6e7, 0x835cc8f744d032f6, 0xedbf25e263698706 } }, { { 0x1243333fe4157a29, 0xebd9d11af0f3b491, 0xc35b34889dd6e047, 0x824f2fb80f05f3bd }, { 0x5679050471f9d5b4, 0xd3c37d2d39887e30, 0x87c2420213f85dd7, 0x608916af23b1eb5c }, { 0xf11e0412fc44a6b9, 0xc2f66d585048632f, 0x898d3fea9bf40265, 0xf6e5fcabb5ec2269 } }, { { 0xc5c44a3f29664130, 0xb1c667bb4d858d62, 0xaf4c7b0165b3387c, 0x95f1b32b6cc3bf25 }, { 0x13283a0a87105396, 0x6b0bc00dd2a61a2f, 0x719691921ba8c087, 0x53cc1bea4d13e0eb }, { 0x4495a11751e2a77d, 0xa4309597fa164b23, 0x905d9f4c8c8e345a, 0xa74548137883fa89 } }, { { 0x371d4b8b5c89167, 0xa4c002adc75c4f61, 0x900a2c7916e8bb4e, 0x1114d7c1d9cfd962 }, { 0x596f04d765a59d14, 0xaa48c025f0ffef0d, 0x2dc1ae6319e779a5, 0x5f961c78185634da }, { 0x3efa09858322aa33, 0x5db103f3870a9a45, 0x5cf0f5f73de36bef, 0xcc3b2e9bd99b9cc } }, { { 0x462aa775df235749, 0x4a37e8b065cbe2b8, 0x4b5dd84f59914c38, 0x2c8a271c8806b487 }, { 0x15159d998cfee9dc, 0x9e86c9acc63785fd, 0xbcc46ff2e7e06f3c, 0xec78164592f1d349 }, { 0xc899b7df6315f9c2, 0x881338a7c69354a3, 0xa4ae10c04aef76dc, 0xba2eb7eeb92ce6f1 } }, { { 0x26b323964b41e412, 0x32db9d13edf01998, 0x91652e2008ee97c8, 0xc2e9ee319ec7b4df }, { 0x7cb7fb2a55048f01, 0x51459f9d91647432, 0xd1b32962bc7ba55e, 0xb49e7777aa97bd5b }, { 0xbf8409eed141cda2, 0x16df553abcca4840, 0x39fdc39f68a9377, 0x99dc90d2a72b63d0 } }, { { 0xee5240bddc7e3954, 0x6fd7765b0e100158, 0x9737167aa350b054, 0xc8883f422104ed28 }, { 0x64eb1ac67395110a, 0x945a8aeb8f19d5f7, 0xfab985b851ed92af, 0xeedb869b5b041ae1 }, { 0x2f6c873b5685cdd, 0xd07bec46c6c9fed7, 0x95adbddd91802b6f, 0x35f928b645f8366 } }, { { 0x19bdf206fc8650c9, 0x6965c87650ed8d58, 0xba0e8a36af509e90, 0xba7b5f46e1404ba5 }, { 0x38cdd381da300664, 0xa70e1b45f7e8135f, 0x71fc981dd896b06d, 0xfb5ebcf259819188 }, { 0x64ed18576f091638, 0x2ddf6e21d7ba6a75, 0x887aa6d87e3ea945, 0x23fb998340d3cd66 } }, { { 0xbfff91b400805048, 0x4a64b6e01dae8e65, 0xc15d119bd92238d4, 0x1ad6f4e82ce2db7e }, { 0xd8e0af3c4555afd8, 0x4ef190a389f9f550, 0x61be8e3c85416984, 0xcb1cbe8b799df7e6 }, { 0x5b46d71f7baf176, 0x7140f22b4300374d, 0x91d15fe13061e851, 0x629c2b933e118839 } } }, { { { 0x715340dfeaf9a3a4, 0xd21c59fe4509488a, 0xee17e828dab8d403, 0x4679ab3743977971 }, { 0xba85973f8a3ac100, 0xfba71e1b3495a134, 0xae29e07ed4498171, 0x2df01476bce2e635 }, { 0x8263142f6218b57e, 0x53c0bcb2c7d00b51, 0x1ae51be6fd3f9f4a, 0x14a9a5196b4f087c } }, { { 0x73ed62b19d19d258, 0x748e19a2ec195a8b, 0x56f9350a0c9c0cda, 0x8b6664fdb46bc391 }, { 0xffc6333793c75c73, 0x600d543d9136b5b1, 0x410df310b79cd358, 0x4be142a897dfb05e }, { 0xc6a79cf583125b3b, 0xe8e002ecdda7b799, 0x51cd8581186f9656, 0x71b4fdf3bd103551 } }, { { 0x875c530b170ed0cf, 0x98078ebaddc20f39, 0xa939bd686f903568, 0x863dba43dac1ba8a }, { 0x6ddc511a608b1931, 0x557ad59c0e2f35e6, 0xb2e7fb093d2a89ff, 0x5b401c2b6bde65de }, { 0xc18c6921557e429b, 0x6c7748887e1bd395, 0xcae0bd5b83c2763e, 0x37b6431187784e01 } }, { { 0xdf55d884c74e6505, 0xad8e2fdbe31f5e81, 0x4640b6e1e8397faf, 0xea0234ae3be38613 }, { 0xd7d191f1548dde70, 0x4a4e999f63a5869c, 0xa5c092431289bb9a, 0x8484563f2fc8be6d }, { 0x56bfa28f54528421, 0xde62c8ac17de50d2, 0x63fccfd66ed2593d, 0x1ad4fef767aa8c7e } }, { { 0x69978ca3154361b4, 0x51d99e437b78ff6c, 0x1612498661554bda, 0x49b3e3c1d6fb1a6f }, { 0x5048421e8e716c9, 0xd8c26ab34bc65a25, 0x57b757bb04075d03, 0xfaf6e3ba0f5208b3 }, { 0x79d215351aacd3e7, 0x87b1f091e2231d1e, 0xc3889443e834f7b4, 0x4f09895d90b9160b } }, { { 0xb2bb3d99b8ab1de4, 0xe1e0410dd2c509d1, 0xbf57214bbcce662c, 0x370c65f53339c9de }, { 0x57b84a0ad885329d, 0xd47ef5e4b4785078, 0xe023c1fcec5f3ca, 0x2616f8027484d550 }, { 0x877c38a83885d577, 0x5814beefa6b992a0, 0x9fdc6e4c6ce16b2, 0x42463182b6ed05e2 } }, { { 0x59c41a9486568b33, 0x3a107b624f73be92, 0x9809b12fe4941943, 0xbc51d027df7a2140 }, { 0x367f8384ccb0c69f, 0x1d7a27773034737c, 0xfb3ec4c9301e8009, 0xa55716f9f6fb1207 }, { 0x38b9ffd0627f009f, 0x8338f9dd30354c9, 0x1d1c567f0d6cc3f3, 0xc704cbb5498f604d } }, { { 0xef2251b3ffe3e9e, 0xf2b7b3df023864ae, 0x1f2a8f165755f68f, 0x2309b65a65f6b1e }, { 0x2ba353487b0d72a1, 0x56302165406a7498, 0x5d2620d494fba788, 0x1b059a65f067600b }, { 0xe613da5aaced657c, 0x843a78dceb401775, 0xbf71bc122c711c01, 0x9fcd0f6e3a5bc824 } }, { { 0x4b8c37a49d5a6c48, 0x581156aeee0c4fc3, 0xe1c27988c90e24c7, 0x758e1f0471505daa }, { 0x60cf583955000a72, 0xe8fb34b47df395f2, 0xfa5374894a1ed260, 0x23e6430d8c090c21 }, { 0x8cc0bad1651b815d, 0xdcf611cf700ca226, 0x86c703c4c9efc829, 0x35e607ffce929b6f } }, { { 0x3ec42ec91c9a6668, 0x3928d7e288ba7dab, 0xcb6f5227bb833208, 0x59bb06bc160e833 }, { 0x7aca37a6a96d4ad3, 0xf95089a275249d8c, 0xb2b94c74ee429719, 0x27975682649a2dee }, { 0xfd0bd3bbd3c7ee20, 0x6b3f8b3243c84c1e, 0x9fdebac162cd9fa5, 0xa8c762dc348719cc } }, { { 0xe9edd07cbcec708d, 0x8208f965d992d001, 0x396a84b6639ca60b, 0x7c6b2f1d16bd40bf }, { 0x7c8eb9da3a769bc2, 0x5dffa44e1d52acf0, 0x16ff2567b9631d12, 0x14d7de318319f10a }, { 0x2695e8f556450b8, 0x6babb7fe5f2e2456, 0xa73f42c694c21bbf, 0x3a84916aff31f40f } }, { { 0xfd21ab1865ea4e39, 0xdbcfefca7b525b89, 0xf3cfe932fcbbfdc, 0xe1a942eb30075bee }, { 0x2be0de817025b9cf, 0x2947901d248ca795, 0xf7e58c83fcd4c884, 0xce80e82543b00deb }, { 0x38682b6d244a30c1, 0xadf0ec6bc958804f, 0x4b53bb49dcb78ba7, 0xaae3264077e47a40 } }, { { 0xaf6a34600971729f, 0x5d0ac92841fd34c0, 0x221adce5d553be0a, 0x8c0284e50674072e }, { 0x4a60287c5f324ab7, 0x2762f7a29807be7a, 0x9b2e473e9900a6c, 0xd0ef8d17ee7c68d }, { 0x97f2a2ef401f093b, 0x647190f75c904b9a, 0xf235bcc96acaa9d, 0xd5fae290664c5787 } }, { { 0x9ce4e57eb4c8260d, 0x9a64adf07b5e1ddd, 0x1cf03ebe9b2a03e9, 0x85b4cd559325c0de }, { 0x44a5e034a479e6e0, 0x9ed2c47d9bf1bf87, 0x513985128a62de1b, 0x8b2de06f3a9b9e09 }, { 0x4c7f0c0d6d85b9fe, 0x1e93a01158f20b4f, 0x5c58669a8e300811, 0x11823fd1076aac9d } }, { { 0x391efab746e52c19, 0x64ea6290eadc5503, 0x91b66eeda50cea47, 0x8c160732ce5b04c4 }, { 0x2a46870715ff5f73, 0x984cecb2be5ccaf0, 0xdbd1de6ca61bf038, 0xd978448dfa951d59 }, { 0xd6c62b458aff984f, 0xc6dd24f4aba79ff, 0x8bdbd6615cd769ca, 0xcf6a3f0c6ab19f18 } } }, { { { 0xca14bd0eaa5e28cb, 0x23765c83b0c208d8, 0x11da11fbdf6a0a5, 0x50be7dfde3d7bebf }, { 0xcb3924f5df074f7f, 0x50dd4d4e6811335a, 0x3ac578e6400cb56d, 0xc5d471ba9493a7d3 }, { 0x39a549bca2b1d11b, 0x465087e400447b10, 0x1e046616acc0d41e, 0x7e6cb765797e299f } }, { { 0xf05d08c9e0d750e0, 0x3a770992bc36effb, 0x38bdecd9fabe771, 0xbb0dacc35ad92653 }, { 0x398334b03cda51b8, 0xc42da53211b803bf, 0x3ef800f9f2df697f, 0xe84fb015363a5dd5 }, { 0x514cdfdaf0950f79, 0xc84f618cdd874825, 0xf0114f8b2660d8c4, 0xc39ab23ca0cdd9ad } }, { { 0xbac6843d85deb542, 0x71cc9165e607e98e, 0xb8ccaebfe730a9cb, 0x128bf41d81d19056 }, { 0x1056d68957b4c77e, 0x676348bf0bb5ef6a, 0x325e47c2c4c978a0, 0x99bd4f534bc116b4 }, { 0x25949306a24ff5a, 0xbbf3969cf30e1bde, 0x600cc9286f228858, 0xf81df39b7a98275c } }, { { 0x945933e00291403a, 0xf14096fd32082e0c, 0x3b526eccbf6bb1e1, 0xa4799a5f434bfcc0 }, { 0xfa376931f965b540, 0x12411961a877f585, 0x69c6d4d786dbd0ad, 0xe94d829ffb8b904 }, { 0x7f05d30a3ff0142d, 0x5deaebdceeac76f3, 0x403c697ecb28db63, 0xaa92cd13c5d064e2 } }, { { 0xb28a279b5e819b56, 0x41aaf1866533414c, 0x78813713067d5d57, 0xae54fddf9672da60 }, { 0x6a168d1c42726235, 0x8db53d7a2b9bf022, 0xc15599c406afb969, 0xbe8e80ede08d032f }, { 0xb84d8b825b133771, 0xc579492aa21af36, 0x249b8e64b19e6097, 0xc4decf5f541369e4 } }, { { 0xc4fcea36d462825b, 0xa7647b919dc5ccd9, 0x2988285ac5ab1e26, 0xb702dfbd7eef6bc7 }, { 0x6c91eb7be171361, 0x8c6d850f475ec1e9, 0xd99cee5dcab2dd50, 0xf7e82cea15b601f9 }, { 0x801d136db1978898, 0x6a9633f86136761e, 0x3a11c209b31f38e2, 0xac379e7f43b62d55 } }, { { 0xc750d43ab94e1f3, 0x38abd4674329e712, 0xe81ba1963f2714c, 0x7544c34ab884a86b }, { 0x75de677c699fff4b, 0x57c7dccb892fab74, 0xf3443c2ec81f8eff, 0x12ce8438b0b10f8a }, { 0x56ef2a6d94db7bb9, 0x7b869a0cb346b697, 0xbaa62a9f0878f434, 0xfb04d5a0b8b0e233 } }, { { 0x62352f132f2989fe, 0x529afdb9d127b1cc, 0x5952292c725f8d54, 0x344a3253d7711a41 }, { 0x2ea2aaa20794ae26, 0xe6ac0a19e7ab8064, 0xd33f618c56b7e9ee, 0xbe289e42f395c48d }, { 0x76312904fb18757b, 0x37368f25f7df9f27, 0xcef3b7031981ee3, 0xbbae94f517c4ccb3 } }, { { 0x6b7bffeba250ec8d, 0x87c1dd5e248a708e, 0x20f4cd1b878b7c3d, 0x257c0d2ae5a6c193 }, { 0xfee986c21db03d0f, 0x9bc48f5ce1bc1c73, 0xa94aba1a464e4e01, 0x57e686d8643246fc }, { 0x207cc389fb9533f, 0x92c6d1fdd528f3ba, 0xd52bceef5931a8eb, 0x416e0da6254d9e15 } }, { { 0xd4b8f16279197c48, 0x84f2e18f32be9510, 0xd3593b1d3e923bba, 0x9a394d02daba0190 }, { 0x807a7668f17aab89, 0xb849763602feea44, 0x1ca229c3da76b899, 0x64a5d3c1a9432e37 }, { 0x1b09ad885d5ed585, 0x400826f57b6bf5ff, 0x7fd279aca970c618, 0xd0eeb9d6e3d7d895 } }, { { 0x7e4510e03c0266d6, 0xa4745f3d8a55b3ae, 0x81e80febddd5473a, 0xbad438f7c8dd8a5c }, { 0xe9c9b374353d065f, 0x493c02b598a71a8a, 0x913ead51d52ca326, 0x590a7639d5f9175e }, { 0x367590dbfb846d08, 0xc4880c9a8a06f75c, 0xda9e208f8025f2ad, 0x4e19d289f95db354 } }, { { 0xdf162f9e792f5659, 0xb247049cd99c351, 0xf1935c339d820840, 0x832bee37c2fd2fdd }, { 0x6bcd1a668b86bd82, 0x9ce7ef32df20899d, 0x45b16e10e4d431df, 0xade75bb97421f040 }, { 0x17c324ae0a049431, 0x4e63b7b130afe1f2, 0x7a108279cc09dc95, 0x982496be44311097 } }, { { 0x2a9319fe36afaa96, 0x393ac3172632cfd2, 0x3ab5344cb85170c7, 0x73e8d0f7b717180b }, { 0x11dc467bcfdacc06, 0x38f4aaed32be6560, 0x539819b33ee3cfcd, 0x5345f3e5afea2b80 }, { 0x554fa011333aefb7, 0xfbac30996aab42a6, 0x28d67d234f47dca5, 0xa1e1f4896b77da94 } }, { { 0xd28ff583572d3471, 0x7c8dad181d48b882, 0x26fdb1012fbfc59b, 0xaf3d62cd58bfecbb }, { 0x9b54a35802c61259, 0x5cc4b1ed23bf986e, 0x385135d0860a1178, 0xd1d4a9287d3047c2 }, { 0x747a7456bd82d561, 0x2adda45955424c3d, 0x3e0386c1c28a3dc0, 0x94572c994e8df323 } }, { { 0x89d2171928679e93, 0xfae4e70a78113005, 0x210af4ebba58ecbf, 0xe23e110ca368975c }, { 0xd371867506a12d48, 0xe015ad5f02a52fdc, 0x1d75bcc383b0c615, 0xc27954c50c3f75da }, { 0xe03d36644a8aa817, 0xa41c8a0a9e7b7b67, 0x5f4ad4a9edae6809, 0xe746484255e6008c } } }, { { { 0xb79c3ede2728e39a, 0xc206ffb5c0f63864, 0x66b8f23c2be82075, 0x5b1e66b11114b247 }, { 0x4d7bbe4a3d062807, 0xcc3d3f2aa1f1bc54, 0x77d934b019262ca1, 0x784e4a43fc9e6e3b }, { 0x77a5c93d32273b51, 0xdffd53f6e35d9d02, 0xb2c64a8f88bf0685, 0xae93c96829790243 } }, { { 0x95020218b2bf1093, 0xe74cd3329c6fe883, 0x8d496bbca165a047, 0x4909abea8a5ec4b7 }, { 0x1f71b66d69c263a7, 0x66cabb4c34ef6cff, 0xa9b4c47f86026b8c, 0x7591792f2ee3e53e }, { 0xe0038b64ced0fdc2, 0xf134f78c0bdba8a8, 0x1791a76cabd52f02, 0x91657523aa945edf } }, { { 0x7f3ca7303d300736, 0x6e6f55fbe402ed29, 0xf71ee981199e21ec, 0xe687a47433ee5251 }, { 0xc8bac4522498561a, 0x8f433b5ff64bb8ca, 0xe6b1b4ef9b7bbe87, 0x683fe5b518fee3af }, { 0xe0a05579850e44e8, 0xd33fb26b7dd1e3e, 0x1bf8a8c18dd34436, 0x2a6460112e03a3ee } }, { { 0xfe79b94f3cafafdd, 0x603723058fc1e99b, 0x60aab3117c29cc6f, 0x980082ba6924d462 }, { 0x690e34c86a0f71de, 0xe91c5acd2fe3f4f0, 0x554aaa3d1908fae1, 0x376376d83594e1e4 }, { 0x5209c8a372f0bd86, 0x4c603b8e2e3dd51f, 0xd3b8c998d54292b5, 0x75b4e12a1f19e5e5 } }, { { 0xc300851ecbc1563c, 0x7272f57bc4f29d4, 0x9b4fd5b343c6e18f, 0x6e3a9539f6893918 }, { 0xd249fcb50e139e0, 0xeb43036c19d01527, 0x56ec920f70f1cea1, 0xab25ebb28391394e }, { 0xe36d3ae7cf6cef1, 0x16b76d91729bec63, 0xe3dad8ee1c43cd2e, 0x12865d58f737eace } }, { { 0x786cd368d040728f, 0xe517803a29ac7424, 0xecaa59054bf6e7d4, 0x43d354130196bcd }, { 0xdd53825f0e13b40c, 0xc7a7aa45723c4a6d, 0xc4893e286da36c1a, 0xb4b998fe877c53c }, { 0x8f7b9bd4f43c9ce9, 0xe4838febd6e7ef1f, 0x5293a1bcceaf0905, 0xe7f967da86db5590 } }, { { 0x5c9c8d15c70c6bea, 0x2fe36f32e59ed72f, 0x892f98b08f01d306, 0xee290b0f5972fba4 }, { 0x6c48243e164ab831, 0xd6c0de45a2355f17, 0x314d164f05812d0, 0xb5e34e4bbbcd0808 }, { 0x12a426718cbdd87c, 0x986942a475ebdbdc, 0xd4444a390bc8ad0f, 0xa58ad06281c4928 } }, { { 0x6f20f36ff348286f, 0xcbafa5288b8a8ba1, 0x9219f7b90b13fbab, 0xb93d61a7d471bf48 }, { 0xde8835a9fe62e574, 0xf0b26d815bfd1e10, 0xd983eecbba1c1684, 0x982e6f1991547c0d }, { 0xfdc5744c277e32b0, 0xd31f68c5dc741818, 0xd9f9344e6a53c61a, 0x9ae4b63056075c9f } }, { { 0xa5e0edc010ef2f82, 0xbb57a7abecef1176, 0xda4aeca3d93e347f, 0xd5080ac79eeb7308 }, { 0xdabe3d3faf7aed7f, 0xcdd703844cb91ebf, 0x16201cf3ddd9610b, 0x517fca79541f7a0e }, { 0xc582b0633be55700, 0x26b94a6d8748ab28, 0xf3be5fcb94859722, 0xc0b972f945c3171a } }, { { 0xe1284b17b39c899b, 0x70670c0d1498ae9f, 0xedf7602fdb790c0a, 0xa376f7890d7c2164 }, { 0x69c06b2e9f6d2d24, 0x81144b0b829715e1, 0xd35bc0ebfef64e79, 0xa21bd18c42a3cfa0 }, { 0xcc7240bb445f8820, 0x306c29fce746f6ae, 0x3def6553b329966c, 0x4c6f7482f691885d } }, { { 0xf398932b9b73f3d0, 0xc9b6115468f48131, 0xc0ca10622705d52a, 0xb9a093a194424ba1 }, { 0xfbb31ea7aa12764f, 0xfd15b97fa1c99540, 0x801f4448d088598, 0x2fdeb64b82d9bd11 }, { 0x8523666d6bd59861, 0x23623d9c9a483885, 0xc7ece0f103281405, 0x59d4b415a3c7d109 } }, { { 0xe4bd7c5346d0eacc, 0x986bda8540d9a857, 0xa6451096fc78ac9d, 0x79c2d8428d3562ef }, { 0xb63319c765b1d395, 0x26618060255b5197, 0xe7788fa9d1122274, 0xeb69d6afd24600c }, { 0xc4475fa2bf85c4d, 0x6abbc5e966708e40, 0x7267cd2e3906a86d, 0xee268f90f777034f } }, { { 0x66c05bcac4412c02, 0x589050c87c2c6a1b, 0x98fe4b6480c6c9f8, 0x18b98924b919ee93 }, { 0xb6261b13a36d771e, 0x7e885d738f51d91, 0xa733218bb8c2db58, 0x7fb5eef7eeef7eff }, { 0xd1825032ba970e1b, 0x38608db78c552e6e, 0x52c3c3e7256efa25, 0x27d2cfd00e66a5cc } }, { { 0xfea72da922b7623e, 0xdb7173cda40bbf3f, 0x112eb84b162da0a7, 0xb4192f23bd492547 }, { 0x90f29e49a2a7bfc5, 0x8e86f9579a8a7559, 0xaa5800627df74109, 0x95d22b9f49da8caf }, { 0x9ed214d50cb864d2, 0xa5293357bf4963a3, 0x7fa9c7eaf190f4dc, 0x904cc1ec964f9c45 } }, { { 0x71e5182bf8a9edf2, 0x92d22e335909f15f, 0xd910d1e288eecfdf, 0x581612ce4a2950ec }, { 0x3029d046676f5a07, 0xc832f8ccae9009c7, 0x353bd5a89913de0f, 0x5df572e98c74e2a7 }, { 0x9f6b1e36bddcae52, 0xb158d85ca8675f35, 0xc4be543aaa7f022f, 0x6608a625cef46964 } } }, { { { 0x9001ab6415c31f0a, 0x465018ca2b4f2c6, 0x5e7a29f6a8132f78, 0xb973f4ef3637a997 }, { 0xe80fe25dcb57e7ee, 0x891d8f44a087cf8a, 0x47aa56fe4d8308bb, 0xa7c26beb24900a9e }, { 0xcc85cc06397b965d, 0xb379a8a22512abcd, 0xce1cc0c22a968873, 0x6a2790b10b04f884 } }, { { 0x9752a59acd0cc1e3, 0x2b67c808ea7f2a28, 0xea81b55d52036313, 0x3cb77f99bf5f537e }, { 0x879a974afea59130, 0x5e75de5a2ea07c71, 0x99556be9eb7029cc, 0xca7e1ea7f3486e11 }, { 0xfa8c38f5a170ee60, 0x3f29f9b0e65b1f18, 0x5634fc41fe13eccb, 0x5e7a4501e4c2bdb7 } }, { { 0x739dd98a1c918547, 0xfc73a31fe668a9f5, 0x9097f6d036a63238, 0xd6a96ae7fa8df2e }, { 0xf5e76f05ce537480, 0x6514ad9044707353, 0xacdabd698b26fd62, 0x68480948aa0d9ba6 }, { 0x89d7542fc29f2c4c, 0x9469305142b6ae52, 0x9d1a42c321428cd2, 0x328c555468d845e3 } }, { { 0x79bd813ad9ba7fe2, 0xb7c9211c40e99a3, 0xb2341096a51998b7, 0x81bd1d1e0b9ccced }, { 0xa66800230672e88b, 0x5739264bee1b98f9, 0x4cc861463587de7d, 0xbd4ade33929d06af }, { 0xf3abe4471f1d8c5d, 0xe714911dabd6bb12, 0x65779663b369a631, 0x58e03fa5af24d436 } }, { { 0x3f7ff95443eac0ab, 0x53e3a77c838d0b38, 0x8cd8b1281f44af41, 0x65c48ea2ce04ed75 }, { 0x3ec982cd96d9b5cf, 0x92bcca5276041bf5, 0x163f3e58b2d01ae8, 0xb0e995f34df1f6f1 }, { 0x8445a619dbe4b1a6, 0x975a1e82bce31dab, 0xa92e1cc4e8d1a04c, 0x2d1a5da10a366223 } }, { { 0x662105bb4502a674, 0xc5e4da11a06d38b9, 0x3c2a9ec4e583ba66, 0xd2e895e62aba3be8 }, { 0x39ca495d11887551, 0x8027abc552a5d77b, 0xfd0734f72054d6fb, 0x7dcaa4ced67acb30 }, { 0x135c80e77d161595, 0x6594ab73e249487, 0xad715b97205b4ee, 0xc7bcf4a0ae6e02f5 } }, { { 0x4a865435921f5302, 0x1eebbde07597192e, 0x7ed7eb98f45500f6, 0x94503b4bf1d9601d }, { 0x3ebb33c429a23590, 0x5acffbdc77778128, 0x714866aa554a8a40, 0x3882eb85e09e1759 }, { 0x6f441b97eca1daee, 0x70fee88375da1935, 0x6505276786fc9ec7, 0x3357ab9934e0d503 } }, { { 0x8b41a39c8d37b365, 0xe6a1277b818da5db, 0xe7069059b5b0981, 0xba3ea3f459b0510b }, { 0x66e40b337e06ca95, 0xe6d92981a6a85a18, 0x4e1f34903523512, 0x172e55c12b0d94f0 }, { 0x84a4f72ae9688003, 0x59e2d0e9fa5fa22c, 0x5d7884dfcaeb1692, 0xc7a028e6bf0d084d } }, { { 0xb9868d57004d80ff, 0x18f17a06975716a4, 0xf38289735f5f3e60, 0x90aae078366e3732 }, { 0xa4ff513dc88c002e, 0x30fc6b5183f54f49, 0x3c2e83bb47f3f391, 0xf6bb7d5000977c30 }, { 0x43603219093b5b2f, 0xeb2c395571b2b7e9, 0xacd8450b80f111ca, 0x920cec5d418a5fa5 } }, { { 0xe0d42df0ad3d329a, 0x723c6203735f140f, 0xe1df5cebf4ab3ba5, 0x565ce1fc88d467ea }, { 0x8b8a77b46a314a6c, 0xaeb8b04dddcf382b, 0x979a2ba9fc65d9a3, 0xc68326190ad401bd }, { 0xad3e557cd9c21d4c, 0x68c72339e1b64f48, 0x5192cbde26006d46, 0x2057ddf22aa0a1b5 } }, { { 0xe884a23a31e4fd1d, 0xdd4ef694d7ea6d86, 0x3c789a447867d474, 0xa25d5c944b0fbc60 }, { 0xd252c37cf713fa0a, 0x2a083f285007df58, 0x4f136310a7cb147, 0x71525b41811ceaca }, { 0xbe637fc7ce6db2a5, 0x44ccf0f73d98d5d4, 0x13c131d2d13f9103, 0xfa33700a66ee5274 } }, { { 0x9e4127d660c9113a, 0x45041ef8c9730718, 0xac7ef421674995b4, 0xd447c2d7d15b722b }, { 0x339a520e8fb68bf3, 0x1043ea879275c51, 0x37c8fad9364eda87, 0x73f7f25eb1468034 }, { 0xbf12d057474ab21f, 0xb889e2c03839748c, 0x3d342b44017b75a9, 0x2643cc2fd0598e22 } }, { { 0xa1b73759d486329, 0xd5ecc4164fa1d47c, 0x2b67bd3bb6e5f960, 0xf99c0569a1eaa6b6 }, { 0x35db52dc6393ef04, 0x1549f41ddcc22f90, 0xf963226af335efad, 0x2b2c28107522c851 }, { 0x2612db269b9ab2ba, 0x3dfb3c30f61ce5d6, 0x81fa0cda16e8da4e, 0x531579b284d5e411 } }, { { 0x3c4043d713638838, 0xd42522efd2483f25, 0xda6e81a313f49b9d, 0x463ab87b28eda1b4 }, { 0xb25cf31fb762042e, 0xa6b73d652c5d31f9, 0x13c5ff8efb6fa1e9, 0x254af8e06dea4c22 }, { 0xd21e3d6263f5b3de, 0x4367e3df44e6e2e2, 0x5caebbd986749f3c, 0xba0d03b83eebaca } }, { { 0x4a8842176994a451, 0x911053c8ebfa9c6a, 0x6d24ec0f2edfcc58, 0xc008029802bada15 }, { 0x88f603123e24cb87, 0x37062765331e28b5, 0xdfe49bb52689c62e, 0xc8a0d4600b1a2853 }, { 0x6a75b05e8e2d80f8, 0xce35e05b2adbfa01, 0x5d30d8ee97f6aa0b, 0xd0e73ee03b19fffe } } }, { { { 0x33485b275251c0e4, 0xebda062aab9af0ea, 0x910a4198356dfbb4, 0xf0ea21b0636709a }, { 0xc516da817dd6c6d, 0x8dcbaeee37ffd242, 0xdc59a6cbef340626, 0xb51f6808048c5701 }, { 0x53becd48ca740b0c, 0xafa8867c115379e3, 0xe51c64d5841f8460, 0xd4ec0b90e4cf9c64 } }, { { 0xdae951cab64271a3, 0xb92759df60ffbd9f, 0xd3b2cee138a09c3, 0xdd78cb89e7db74e2 }, { 0xee2b42130794f8d8, 0xdc98b62486ddced8, 0x5e82c68ed57c97a6, 0x81a9d2808bbfe8 }, { 0xbe75e4a9525fec3b, 0xc10c5943ad457774, 0xe39d0925180778f3, 0xabb5b35a047c2f25 } }, { { 0x37a16ca1be19ae2f, 0x9caa988f64f60722, 0xff90220115f8a078, 0x401996217956e812 }, { 0xfe13e967523ee7a9, 0x1e2b5b01dd9cfe10, 0x7ef17019936e013d, 0x8ff26e9db1182442 }, { 0x48fff5926d4de24, 0x77a3d16927ab4a1d, 0xc0f8a607851d8aa6, 0xe055e0e7cef5cd72 } }, { { 0x51e07517780b3fba, 0x5b3b850d0380bf46, 0x8b546065610e8dd3, 0xc693bfeb42b1ec47 }, { 0x550e1d53becf638a, 0x34e2611d608b7d15, 0x4e53a9f80c9d13f5, 0xadd1c13c3b99ccc3 }, { 0x9c44770ae8808356, 0xdb789ce2f437f1c0, 0x9d96f490f266f5b3, 0xbc63a3fce89d5b99 } }, { { 0xfebcff50d4a1a9ad, 0x43c6bd1c0f2e514c, 0xd215127f9668b309, 0xa2a0f4cf19ea4742 }, { 0x5a1b7b2ccdac072d, 0x55cbdb88f80c37f2, 0x786db0b4724c9f37, 0xdf38690cd6f62b27 }, { 0x255f126ee0694738, 0x9f8edf49120a8c66, 0xfc923e3b5e4b297e, 0x5edc8d723a87a54b } }, { { 0x21caccdb5cdb4dba, 0x16fb08afb9110d7e, 0x88ace14525ba9e80, 0x9509d3a1ac0a3c9a }, { 0x443ccd7573671642, 0xcd6757d4fe5c7d6b, 0x13fdcf7034329913, 0x785b3d2900652bae }, { 0x21e2ac8d7beb2aa, 0x24b41fb3b07536a0, 0xa5287fce15a40c94, 0x6b2f76461774800d } }, { { 0xfd51a5a1979e9e5f, 0x8596aed35fdeb3dd, 0xd02fcd0c6b030fe1, 0xd9707789ff6c5f2c }, { 0xde31c00d79a88e0e, 0x3315748f257378b4, 0x8989ca7af7ec8256, 0x6225ea49bae8352a }, { 0x71b1a09801f24f80, 0x2dd32dd300f11b7, 0x44b52be46058ad53, 0xd2c5a11daf75e80 } }, { { 0xc4e13ef9e392ad4c, 0x6694ba337f592871, 0xfbb4d1abe6f3c583, 0xf7143080716befa3 }, { 0xa7d4bc118d08684c, 0x7572724d86e28cef, 0x12214157658287d4, 0xb7a2825b1e9cdb35 }, { 0xe7061d548c67c5bf, 0xd4d4912832c3a487, 0x3280a337f9be2783, 0xeaef3bb5922a8f48 } }, { { 0x1b4345d13306fe18, 0xabce9c081c18223a, 0xc8937f952a66b914, 0x3bf829491b191161 }, { 0x214b3d1b996e99cd, 0x33a024508c92280f, 0xe34237be080f00df, 0x54016f7eb48a1584 }, { 0x1a47e25f779c076d, 0x3a3cbc3c5427404e, 0xead90e394bd43c6d, 0x9d5f4d1608bc5f57 } }, { { 0x60cc54419730742a, 0xdd8743597921e6e8, 0x1a351067b141cda3, 0x4fd8e514bad314ed }, { 0xe499869b3deb7efb, 0xe65928aad9b9b061, 0xebb8724d6f72b8af, 0x1f327e8f6bd0c7ab }, { 0x10df0a44e070e474, 0x64bdf14027292eb2, 0x491a4c678fe8eed1, 0xdddadd5470a2ba0d } }, { { 0x56a5e2dcf9f5aa2a, 0xca0206ee282e5ba4, 0x8564f7cb6d3bc727, 0x50a5f0a899b04ce9 }, { 0xc637366c53276712, 0xafde4067954b9f3d, 0x9e08716eca4f542f, 0xebde0262d0e8c5d5 }, { 0x2cd99963a4d7753e, 0x835d7ade7c535cdf, 0x102037514cb5522e, 0x760c59f3e162f2c3 } }, { { 0x806a82b92be183b3, 0xe91b168af942d0d8, 0x52fac8af82461c91, 0xd413d4d84169849a }, { 0xa3362295eb1e3cf0, 0xf1c2ceab8aa40819, 0x2cb6bb790ef5ea31, 0xc2d4049d0267e953 }, { 0x9f66b37224728d06, 0x54438520f3329da8, 0xe8c4fa1a1e4e306, 0xfd07050c046bacb3 } }, { { 0xfe8e8558b90e8cf5, 0xd2b94656ab0b3432, 0x3d401ef186225249, 0x4844ed4fa5ba513f }, { 0xaeebe3c9960ac8e7, 0x7b5ca2fd0e06ce, 0x55bb7ddb458f0f19, 0xe612e6199810ae31 }, { 0x4ff2dd862793a706, 0xc86fd6c0933fd33a, 0x486831260b5857, 0x736025644b47486c } }, { { 0x1f70d76ff1fee1a, 0xf1ba57845bed563a, 0xa711154d300fe4ec, 0x29b6dd41b2a51bc2 }, { 0xfac58b529dd91869, 0x79820b4e0776c2e, 0xa7b3d9359021f081, 0xd6c62bfe5902cb00 }, { 0x3c45e4a79d86bfdb, 0x6472085362554981, 0x598e19fafc752f9a, 0xe3621493cc1ff120 } }, { { 0x63f13f09ae77de9b, 0x457778bd204e4d3e, 0xb8231b576dda3599, 0xd7ae03a8594be853 }, { 0x3124a29784203ebb, 0xb9c5c90d865bb88b, 0xf807d6f27b203966, 0x7bfd94e08f7a013 }, { 0x2be504e7c548a407, 0x3acaa3e76ad121d1, 0x6adebf18ecc935, 0x4d0c621c3f4ea26a } } }, { { { 0x8ffabbae7ceab73, 0x31dbae866e6daced, 0x9ec79fcdc0c9db15, 0x4800b7ea97a77b06 }, { 0x90c8fd6c20e0c6cf, 0xb982cd1757c17d51, 0x20da69eef1a0bceb, 0x8c03082a4bdf0b51 }, { 0xf62019cc8c0d5bf8, 0xe326ad3be18cfc59, 0x79e6333a93894801, 0xbf50df159d105fae } }, { { 0x4201ddfc64fa761f, 0x98fd62804be872ba, 0xe877e5811f3fde45, 0x85a3c453fd5910a5 }, { 0x6b7f3ebf311e4f18, 0x4a4b439da221c869, 0x51d41f094384c682, 0xc2757d1b58ba242 }, { 0xc5031360692bbff7, 0x172b9184bddd6700, 0xd0b7282bdde4fc4e, 0x1f4bf0e654631383 } }, { { 0xf22c6e858b9660fa, 0xc37a18ce8a7780b5, 0xed2876cf96501b26, 0xaa1a3d4b2420a8ce }, { 0x13ca3f214edd69a7, 0xfa38c12d2af8ff58, 0xe7dc3fefb65af7b4, 0xda3005fc7407f5d0 }, { 0x749847c566fa829c, 0x1514917333f7fa73, 0xdc583b9fa9d603ca, 0xfcf8edf6e91a8e01 } }, { { 0xacf7e5f900708e5f, 0xe9d4fe3e7a2c55b, 0x92b1ec82db20e73b, 0x8c4a972a7ce77b04 }, { 0xaecdb920e1db995b, 0x8af4194649fb6dc, 0xb63f7628f2aa6466, 0x9934aa5f56c6b894 }, { 0x9f10fc4f41094518, 0xd773f740f0d20df1, 0xda4c47a144f17a6, 0xee54bed1d7561032 } }, { { 0x82392683de919e7e, 0x1b54978e008acf92, 0xacd90a6712c0bb7, 0x76d0b403e5d38ea4 }, { 0x6eab7f11201e5aef, 0xa1f49138548a7c3, 0x84aac61d52ad5628, 0xcb8a7bce7afcd931 }, { 0xd73318bf162171b3, 0x8828602a84a781b1, 0x848deb07254e97a5, 0x8b3311023572a88e } }, { { 0x1a93b0b4e5dd98e5, 0x943219a4d416a8fe, 0xff0e6eb0919d0bbd, 0x59f61b958e8f688a }, { 0xeb039ce711b31895, 0x558b48de463c2d5a, 0xe205b5f00e8dba32, 0x1a3456c4d356d671 }, { 0xc3d790c6e29a93cf, 0x57a90e5c2c18f868, 0x6611ab13b576a716, 0x12b288e90c613b71 } }, { { 0x2abdf7461ba2aef3, 0x5b494cae668f105, 0x2918c0d42c81e093, 0x9d19ed8ffad8ec2a }, { 0x3d95e5e47375b847, 0xd01148d99a7d2d64, 0x405666fe1c7ebf10, 0x4b490967b8585831 }, { 0x844f3e5aa108e671, 0xd5f79245d3e2865b, 0xf7131e75c7d98d58, 0xa4963b87f07c5d6 } }, { { 0x6428c2c1846b4ede, 0x6815d9673c9c8adf, 0xe59af64dd7a70c6c, 0x4bfd7b7f85d68225 }, { 0x909bfd2a32196377, 0x197142970f6842d7, 0xb77773934a8d3adb, 0x5b35495f39d7b42a }, { 0xbedd1c52cd9a129a, 0x631aedf300d731c0, 0x5b1a25805400eb2a, 0x3e5e4517d962f75b } }, { { 0xac4139496342537b, 0xe468b9ff4c694d3d, 0x9b9ee4b494a9405f, 0x5d734f1b0162eec2 }, { 0xaa5d8adf86883e4f, 0xb413f2a2f1f7570f, 0xa379c789be38ba55, 0xbcd02273f56e834e }, { 0x83277539eec62f4, 0xd4619e00e69246b, 0xa3486146fd96ad35, 0xada61a88bf976132 } }, { { 0xe3c777cee9edfe6f, 0x3c45a6e8edd0a503, 0x3a8ed533556d4cea, 0x6c8f847625b1a1ed }, { 0xa3bdab9f23b6641, 0x775ebff58e12ce3d, 0x45d70f72e6d58ce0, 0x35d5cf38e5314887 }, { 0x79dc4f41d2c5d65, 0x62f88d1a4313bed8, 0x7e4672b500f6529, 0xa4a1d16e40ee038f } }, { { 0x88e93024136bbef2, 0x26d2af9671f3a0f, 0x4dae179330cbd01c, 0x765b636cfd1df175 }, { 0x1d135b22694aede9, 0x41e06e3ea2f4a3ad, 0x28fcc6e61996e75b, 0xf1994dfaee4ab47b }, { 0xbf8df2e30ab5fb49, 0xd77ea93034abb060, 0x5b34cdc2e5394e94, 0x548db98ba3e7509d } }, { { 0x47ae93428c292e65, 0xdc21ab37f804f9f5, 0x8b769cb3bcd8dd2e, 0xd5fe5a9e8160ccd4 }, { 0x84a9439dbeac0196, 0x3d1a8deca90ab6a6, 0x4ad37881e05e4773, 0x8e6f388a7f37e160 }, { 0xbdaae8e29ddc2bdf, 0x908c4baf961a6c34, 0x14a7d73a688885f4, 0x590628415ac08333 } }, { { 0x5961eb9551506407, 0xc99ad1c4b561afd6, 0x27d52bc9270b7972, 0x899d372a0c14f10c }, { 0xdea644fb382a6e74, 0x75ca90ada7a83ebc, 0x7d459c551ae29c7d, 0x6b6f67f1d2eab183 }, { 0x9d5bf355eaf553c2, 0x1234f2a2db64f28b, 0xd31dc00fc155c46b, 0x89967a5c05b52bf6 } }, { { 0xfd5c6d085ef0d0d1, 0xf49b22dc2e083010, 0x2499ff17b636bc6d, 0x7d29eee092f25dc2 }, { 0x21233d8542440b55, 0xd77fa072bacf7cba, 0x1468591cdbc4074f, 0xd330f4bad1fe57fb }, { 0xde7f815af2812bda, 0xebfc8dea4161f937, 0xf1a54424b148952e, 0x96562e69ad7f4505 } }, { { 0xa6d2413cfb59e7a1, 0xfe38e198f6e82860, 0x7e5b74504f55bd11, 0x99d6b331b51f7ee7 }, { 0x1f31ccfe66050a91, 0x683675e3b1b9edfc, 0xd94fedb1845a4567, 0xf3fbba7bddb20f8 }, { 0x2c71d83343ba869c, 0x7e61bd0c61b156a4, 0xe1b2464c656b7294, 0x557e23135523e6c9 } } }, { { { 0x5abb69e5f4254d94, 0x3c382e6e37ca1318, 0x14ddac61d5b0dfda, 0x6a077e7658b77bd7 }, { 0x91152ae12a53267f, 0x2795fe3ba41eb1fd, 0x53144be41fd6914d, 0x9657584fb4b54f1 }, { 0x974e0b382cf08e7e, 0xb51c086fb85660d9, 0xd039706e46b7fe38, 0x4950ef6b38d3cdca } }, { { 0xae7cf8b208cff614, 0xaf7869fef8401b0c, 0xbacc28b544e02595, 0xb614a75ae65a21c9 }, { 0x1601dfe8acb7429c, 0xcae74e9d2e620b3c, 0x8b8b522f73c72c4b, 0xf063eda02db705d8 }, { 0x7e439b382c2c4c19, 0x96cb386130288272, 0xad75c859b0891b1b, 0x844cb1db258721d5 } }, { { 0x90957dc564e6ec81, 0x1a831737359bb954, 0x2a23493d06c81e10, 0xd3579b6efd63b75 }, { 0xb54fd7223fc40684, 0x3ebe636a44025c20, 0x7afdb32057772240, 0x7dea2014c9a9e765 }, { 0xa573b0f444ee9e31, 0x254aa9981f7c06df, 0xdb1ed1045bb2f330, 0x65e92ceeb61719e1 } }, { { 0xf18929f10019005c, 0x1ee13de4a628b65c, 0x258b1c6e04a2db24, 0xb0c5e9f9e357d143 }, { 0x5198543b889b6a67, 0x8da54df6d3699add, 0x1c500bc3f94511ee, 0x6a54fa759e2b480a }, { 0x3bb1e9a86c15566b, 0x24d44dec4eb559a5, 0xd13d97c00905ae4c, 0x272604d488427fa2 } }, { { 0xb3941e6e458ceffa, 0x429c6e9a49c3c7a, 0x9dc16dd325e027a6, 0xd9fba3e704408f64 }, { 0x1af6c9cae2daf96e, 0x246863eeb903dbfc, 0x7e9a42f316cdb97, 0xd1ae6a2fbf54df17 }, { 0x44be256bd1e6b3c8, 0xe9ab42ce61defb45, 0x878ff46364103ade, 0x4bcffde14ca6a7c4 } }, { { 0xbd06096692907e7a, 0xc65a13e964da6a34, 0x57975568b2dc2ff6, 0xb8fd360445420a8 }, { 0xcbd58286af42eadf, 0xf5e26690a7ac38c4, 0x68c6bed86dc327a2, 0x3641b7f91795b6d6 }, { 0x197ce91cd06fb34d, 0xf7d43c3e4065f617, 0x585d8b49f72cba3c, 0x4f5a350c3733ee8c } }, { { 0xec5949a70bca96e8, 0xc499c5200d4919eb, 0xe4124c2d0b52e481, 0xa8a6d159877c28ef }, { 0x23ccc087b4eeb988, 0x42f7b6982beda629, 0xdd2bf6d127e917a3, 0xf61897c15f029aaf }, { 0xb7a7b55adac87e64, 0x2f4564135257b395, 0x6ded7101928254e5, 0x5837a4b37981b949 } }, { { 0xa4e771fa488e9e35, 0xba88ed807acdf802, 0xd320d40b1a2bb2cb, 0x5463c2addf1afe80 }, { 0xf2856e0384959391, 0x564b9de802e75e8d, 0xac77e946218b613d, 0xc968f33f96e433d5 }, { 0x76159b256afaa30f, 0x729ea594bd794506, 0x2efca92e36ee3dca, 0xf8739d360a8bde56 } }, { { 0xe461a17fcb466b5e, 0x9503b68338912df3, 0x61359ac2f1db812d, 0x8bd41384356f7c97 }, { 0x6fb6a93c57271b12, 0x355d0782667db13e, 0x2cabb39a8cd22ec, 0x9832e45ecc0ef88c }, { 0x2f0e27c48495190a, 0x2fa234f8228d23a, 0x5b0d33afa81adcd, 0xd96dbab53b848e6b } }, { { 0x8725146afb90dc57, 0x21c234d601090c93, 0x62f76ad3939710ce, 0x756a9cb8c7a7592c }, { 0x342a67c426474204, 0xab40ddd3cacafddb, 0x7c812b58a518c53e, 0xccc699830f472e56 }, { 0x43289940a7c7cb57, 0x6a56055073815d7e, 0xf532dedfc0dcde8a, 0xe9cc0b33c42db0e2 } }, { { 0x4417e46d8b7dd79a, 0x51626baadf17fb78, 0xafa38ff018440197, 0x407c54531fc5c9ad }, { 0x87811eb0fca003eb, 0x82faa84aae565a4d, 0x4a3b94356a3632ec, 0xff00ba2338df3699 }, { 0x7b2af92f99bc5022, 0x97c36da02c96c247, 0xc6b6070cb4fe55a1, 0x7751fac2e3cf4736 } }, { { 0xd7e3265887b896e1, 0xe3911c382805d571, 0xb9e232f53d49bf7a, 0xe4ec0f880cc4d736 }, { 0x10a8f36d41bf52c6, 0xb539ded681352cff, 0xe13bd5688ae9426, 0x84f42456c104a06b }, { 0x156e47c3aff16a07, 0x256f538f61f2742b, 0x9650fda6f7f72ef2, 0x32a05eb2797255e4 } }, { { 0x37928aa917c10b50, 0x804fa98ba78a2a4, 0xae6186b8efc8a7d2, 0xb71637e0b432009d }, { 0x1cf7e9cc545eacec, 0xb5949476d18d2905, 0xa618cd483f2c2fb1, 0x31b788108dbae211 }, { 0x9278926a8009e0db, 0x82807d6ac542257b, 0x8136c7b2f807892f, 0xaee81c8b1e15cd79 } }, { { 0x526ecf72535f00a4, 0x9e94167cfb1f5996, 0x33e72b1f28e028ba, 0xeaa4ae1103e286e1 }, { 0x658f20149c8bc25e, 0x162620ae5a44ec7d, 0x540f6ef993473191, 0xa30aa5c7da6805b8 }, { 0x677a5abea69521a5, 0x80275d43534345c4, 0x85d1bd21dd4e4116, 0xbdb0fa8e9e505a33 } }, { { 0xc9f1690a751c8f5e, 0x93d0e506f4e5ab38, 0x8cd8550c92118dd, 0x583bc9ae374947b9 }, { 0x51b42953c8780c78, 0x3841afd08697e662, 0x33486936066c403b, 0xd8da7355966f57c0 }, { 0x51e25c8426855161, 0x6f8e0e7d49bcd13, 0xe8a8a6c55486c028, 0xffc90e5fa1b94fd3 } } }, { { { 0x3011970f02e5eda, 0x7a1bee111b1e665b, 0xfc456590500aa67b, 0x3816a33dfd89c03f }, { 0x10f219c197d0882e, 0xa185854a90465ec4, 0x7a20854e1d0a2a4f, 0x3c08cd82982a1a75 }, { 0xe944b10bbd8da0a3, 0xbcf17a6b88a31125, 0xf80a2bf1b8617c80, 0x653e4791d425a377 } }, { { 0x7d82e79794891bd, 0x72ecbb6442b24379, 0xfe2abd69898495da, 0x883c2b77fe2ba5f }, { 0x6f4bb22da71c4d81, 0x8b2da05c01079c2a, 0x469673c169e2d397, 0xed297b20d0b520f7 }, { 0x624102c7a0e1ea3e, 0xb32c6a4edf2e59f9, 0x937187bb3d5c704b, 0x79f29fee3afcc0fe } }, { { 0xeb6b9feb12ff9fb2, 0x43bebb9c545b8146, 0x448ab42061c6aed, 0xe81a1d82cab35e4 }, { 0x2a932e9048447388, 0x909df1e1d09c1594, 0x6170f4a82995ac8a, 0xe9ff7f04c7d9d46c }, { 0x7108934cf6b0163f, 0x5cdbcbd6a3588da2, 0xbaf982808f65c14, 0xbc47054e096a2d66 } }, { { 0xe09c246cb73d309b, 0x69eda9383909214d, 0xc13abc3fe7c79a3b, 0x1c3d69b8f72cf19b }, { 0x87f2684599a66929, 0xe64404cc2098b122, 0x631fb29406f67f24, 0x597313c3bdfece4d }, { 0xc2e27f40fcc4e557, 0x8148c6e44106fff4, 0x8efb6b77d5579d43, 0x53959831e4c3bd2d } }, { { 0x436a517698db1b44, 0x3c98e9b94b025d0b, 0x487b0432c6d0d18b, 0x20f3f68f1c42536 }, { 0x5c71776812c8e04f, 0x6d5d906959f5f00c, 0xd39e53877758622f, 0x14ffb5636762740d }, { 0x9face913cc99678b, 0x28c646be4b47576e, 0x1002cf31b1221a49, 0x7835d6abec5bcebd } }, { { 0x2e6c31c4184204c8, 0x5747c05190ddabcb, 0x78a3dbdcc2778dd7, 0xb7ae590da24580eb }, { 0x57a3447cac6d41f1, 0xc4aa25af72114b7c, 0xb9f116fd8caa6821, 0x7e4c5a572426b703 }, { 0x79cee83d4d1a5cdf, 0xaf038d35b7a942f5, 0x22b9db056462ac72, 0xea5009b6119e034b } }, { { 0xb80a52c9283d6f97, 0xebcc7b642e1eef9c, 0x679b0b3577116760, 0x1a601bfbf3a8e275 }, { 0x1ffed54898c28b64, 0x6b793b6a352e6e52, 0x9da9c88208a87c6f, 0x6f2abf31246a8d87 }, { 0x8496c880eafc6e52, 0xb9393bc6c92f29a2, 0x4c7bcffb684f395c, 0xc1549f476c021c62 } }, { { 0xc533c3d17b0b421a, 0x231a0cde504b0d03, 0xbc4e81665c5948ec, 0x231bc170d5cb1e17 }, { 0x69b6cf68b1f77f1d, 0xafcd21f892578add, 0x729414b00df47165, 0x66f9ddbbea418366 }, { 0xd297f7bf5d02fb0c, 0x368d2d9e825dd45a, 0x661cd5e06c2b9139, 0x8dc69b01af495d32 } }, { { 0x410ccb55f1db7a64, 0xe47f4dbe9635413, 0x2ad42478fa52f639, 0x8895cc8b78b434ca }, { 0x44bb99fe142da85d, 0x98f3b56110fb56b2, 0x5396c645ad617669, 0xb776de83048128b5 }, { 0x32e636396cc9dd1b, 0xac834cee56be1cbf, 0x6a6a5288ba1ddeb3, 0xc9fac29c46433395 } }, { { 0x7fb1db9f4b997678, 0x7621500f9d4a61ef, 0xa4c22afe229df95f, 0xacdd85622d09f56e }, { 0xbf0af4ce43f98613, 0xe8858dfc8e8fea93, 0x4e739783b4b93d3b, 0x1f4158c24f4a3475 }, { 0xe7a40b8a36f1d2ba, 0xa5e2e00f35da3688, 0xfe8a8620f608d40e, 0x10d7ad8f22c31b6 } }, { { 0x22b4f45f24c9b7a3, 0x4479bba3a2b6a46f, 0x6e959f69b19adfd9, 0xa49b3b8aaf5a73a1 }, { 0xfc0b2071b8b949d8, 0x87123af6881722bd, 0xacee2c6ff781838, 0xb763b750249fddf1 }, { 0x59f72c8b5dd9c189, 0xee92b7814fd4acd9, 0xca1f9a3f450165d3, 0xc7e5736a9c108f6a } }, { { 0xd1697c42e34aab95, 0x388b466b5738a645, 0xd8c084bfcdee461c, 0x8b621c8117591893 }, { 0x6b24d4e170584345, 0x245649c4062dc1f5, 0x9805406141b82dfa, 0xeecb8912fb49bbcf }, { 0x85b6c023df2bcee9, 0x1fad13272ed5e66b, 0x61bd5d07f8e3ccd1, 0x61ed7fc6edc41237 } }, { { 0x6385f6f993069fa4, 0xa4cf85079402f60e, 0x875dbb3dcb450999, 0x536372328e1e471b }, { 0xc41d47902b8707f3, 0xd4ee634057c0fd06, 0x461b2fe454ac47cb, 0xf1e7fad79c29abf5 }, { 0x19f7c33739ec5572, 0x61af577e652a65bc, 0xbf8cb111face3e63, 0xd1fe65dcc6a78ba3 } }, { { 0x4365b25fc26623d0, 0xa52735dec7b84c82, 0xeda61f83155df552, 0x7558181ea0fc7fa5 }, { 0x95af96086fa234d4, 0x2b3549e648c9b4a3, 0x953354c29cd8b575, 0x2b33872fb9a9c79f }, { 0x5e1db9724d133aef, 0x736b8daa9ba099cf, 0xf0cfe5539b03e80a, 0x45bbc0c24a09ab5e } }, { { 0xa7084d6ab771f95d, 0xce11660c28eec7be, 0x15fd8bc13b47fa15, 0xd60453c453ae2d88 }, { 0x9ac76efdad65ee78, 0x6af6dca95f1467eb, 0x5c188209d88c4384, 0x28d47f656b34be14 }, { 0x4baf4ade37ffe879, 0xc37d38a6096effee, 0xdb5abfa94e949161, 0x53a9793515577a87 } } }, { { { 0x2cfbf1485bf549a1, 0x74d183ad90032604, 0xc40b61128b72413d, 0x124da9b8ea8d72d8 }, { 0x330bb3de39add6a9, 0xc09acb61f41a7b51, 0xda2b02d1087dd17b, 0x55367b28af01047b }, { 0xb5a2261043db7736, 0xde1cf11ef793ecdb, 0x6c3d2e7a1bcde74, 0xf38795ccbdab2f99 } }, { { 0xb3f8b8dab8d13ef2, 0xefe54ad56843eccd, 0x2c371e6d2ab2b659, 0x36168a8606ae8c29 }, { 0xc1190e9b922104b1, 0x1d7829e9ec6ac9d7, 0x739a556614604672, 0xdfa9304a352924dd }, { 0x8fe5a633d404af0f, 0x73b688a7594284e9, 0xe3a4c6a60755089, 0xb0be3a1f99ba063e } }, { { 0x18b83b819206d6e5, 0x6a0f296584b068ee, 0xb750f71a90e322c0, 0x2a1ac6498df9b33a }, { 0xb5cadff9487b645c, 0x5b2e9f4fd88eafb0, 0xd4788a25f66f7ca2, 0xf479cd340fe8ce6a }, { 0x241af7a626b74ef1, 0x5bb77b278d36cf9, 0xb6e927d28c2e01be, 0xef65e842500fa778 } }, { { 0xbcfa92cf8dbf2449, 0x8fb473d4468b884c, 0x98314667dccf8ca6, 0x37fc8ec81a7c31e2 }, { 0x4ebcb1afa6901fd4, 0xc848853ce7c39cb, 0x1cdd4adc2ac9a739, 0xec3e9b7d3e79ac66 }, { 0x25b7c16094255d14, 0xcc59b30172577224, 0x84c5af67667c296b, 0x49610114febc9232 } }, { { 0x13b0003853c6fa87, 0x532dec50f786ba3e, 0xca0136a12ed70ea6, 0x440a24dac4ede080 }, { 0x36c090bc4911b87f, 0x3a7d61d846313e6f, 0x92d9dd447e46b7bc, 0x641e912a7053be46 }, { 0x4245250cd58b770b, 0xf2f9f5420b055cec, 0xc115593ce6b3cf1b, 0xae6e177f6ff59e36 } }, { { 0xea1d10793ad49e3b, 0x78a8d59d877b983, 0x8a536aa4eb0872b6, 0x425faca2245b3e37 }, { 0xa37a2d58abeaea5, 0xf2655eb7af2bcca1, 0xbed61ae7120c7049, 0xa5434b1f684a6cd6 }, { 0x81e7e290556e5509, 0xfd05fff5a258d829, 0x5e9d9b6979b8bceb, 0x919360b7eb738518 } }, { { 0x1fe1b07351031859, 0x190e401e9f4325ab, 0x9ad312559971929e, 0x495104b533309401 }, { 0x5663164cc3735f99, 0x101f5aaa59befb35, 0x18c06743742feab5, 0x88234b600f80b76c }, { 0x70cb14fc183a5861, 0x273b7f4b7aab6a5f, 0x99da39af24b75834, 0x623e14e1cf1b1b6c } }, { { 0x84c0f2a92e7f5248, 0x878e9140476f3c90, 0x78d7b8db369f95d5, 0x84695ea92d449a3f }, { 0xf8b7c7e7defa19e2, 0x9996dd473d131d08, 0x335f13d7c71b670b, 0xdcc8e2990c187c42 }, { 0xbb9117c2f32e739e, 0x2c9f1030ddfc4ef0, 0xbd5d8b09ceef90f4, 0xcb45a0c960fa6847 } }, { { 0x13d03068c0f63e96, 0x6461c8562435f8ae, 0xac3eaf9e1d03b2a9, 0xe7b7f23b9891e560 }, { 0x743a4050cf3facf0, 0xd0dbcc97c5e28199, 0xd69951588c0ec8af, 0x4e6b51433dbd490c }, { 0x464e35c50cbb0a7c, 0xb638c1dd79bdf8d0, 0x112fb682795a7175, 0x3b9bd9a6de59cfa7 } }, { { 0x6b63da2d0b3c7fad, 0xb0604f158e3f2ef5, 0xb80b0edcd286fec7, 0x99282f223305e613 }, { 0x8603d16eba740ef8, 0x205131a322046895, 0xf450631d64ead71a, 0xbe89a82755a16817 }, { 0x8691f929791431c8, 0x69e67bf7745b1fd8, 0x88112ba8771fb159, 0xdfc61cee0269f0b9 } }, { { 0x6365005d0074570e, 0x875d2e33dd622d0e, 0x5f1631e82d2fd9f3, 0xe7343dbc53aad483 }, { 0xbcd7603a3884671d, 0x7886bba99399f698, 0x79eed4997e9c37eb, 0x1317310224a00046 }, { 0x2d1b450dd97650b3, 0x70f4fafc8507ce3e, 0xcd863f0f5bd9bb2a, 0x8fb1e0dc06a26a83 } }, { { 0xaf37ea18339a6ea1, 0x6f8ab2adec9dc0d9, 0x14103599169c0392, 0x57fc6c4adfa0154e }, { 0xbca5944b9e82b283, 0x1da0cff5c7555c2b, 0x3557b6398ece99bb, 0x6f08d4836cd60c8c }, { 0xf73009cae98e0abb, 0x980804c376220912, 0x2c1fb9b0e24d3d3, 0x2d265434ab42e195 } }, { { 0xab2c97ed04eac738, 0x299d4791b6961aad, 0x199ba57cdb443433, 0x61cf894442d24857 }, { 0x7389c399dabaa96a, 0x936dbdec29fbf3b8, 0x75ce96b94d95fb6d, 0x62cdf23b0aa8eab8 }, { 0x32e408bd000aa888, 0x51d2ce1a21c35f35, 0xcaf44d652c8528bd, 0x8522847899656e5c } }, { { 0xa5703f8c07905f55, 0x9a9532c8e1adcce4, 0x47bcea55e42c3983, 0xb8d62f154c0b0406 }, { 0xf084012c6b7b9b7b, 0xf812c3f68736d380, 0xae6b49e65ade0f7d, 0x3ee030dbfe75fa32 }, { 0x6bf6c0838dae1f43, 0x496869e96e2f2014, 0x559ddcb124019c70, 0x8c93e12f673b8cdb } }, { { 0xf11590088f3b5378, 0x9d2c2002b95470f8, 0x6aaf488c05d53ed5, 0x6baaa7e306bb8fa0 }, { 0xf240649416a91253, 0xf8c6a99bbe456c49, 0x79bc6bbe969f3fb7, 0x75c33ab09424048c }, { 0x1ccd373899f15976, 0x82f4f83cb4a51e6a, 0x6d404a5477bde624, 0x9f34c64173656f24 } } }, { { { 0xee3b150474871d6e, 0xabf4b7269a79b63b, 0xabf97a880c24abd0, 0xe2955506f3c11d1 }, { 0x17266aed6ac9996c, 0x8ca22b66d8e2ba92, 0x1356c74277fb3d10, 0x581d7959007c030f }, { 0x9f4e5e2220621343, 0xafe70183ace2816f, 0xc851f16bbdd59a6e, 0x62e7693532356f1e } }, { { 0xe1ff4bcb20b15f4a, 0xdc564a7fd2465557, 0xf05023c9fa5896bf, 0x1e6baaa96e3fee48 }, { 0xf757c54f0a7f21dd, 0x5325d36988be8953, 0x6479c57ef6ec024e, 0x116a091f652d4486 }, { 0xf98ceda87d48f67e, 0x971a79b2c03bb681, 0x258ff52bb4eb3c12, 0xa83e3a9e537c11ef } }, { { 0x96a0d81c28b6e82a, 0x505cb18fd3a4fc12, 0x886d6ce3a49b79af, 0xfd7e616e1a02daf8 }, { 0x5199648fd7d7d6f7, 0xd9bb2054194530fd, 0x3ac90e7d3894e803, 0x97e3cfc7196cf3ea }, { 0x255b291af22d228f, 0xb262b2e87b652ee5, 0x9f7a8a1b38fff3e9, 0x78a48d9bec568f0e } }, { { 0x507127b50e22b1c0, 0xf3ff5595ae4449cd, 0xe95d808991567cbb, 0xb2755359a6d9c8a9 }, { 0x4e32e7f24d5af69e, 0xecad186da2b7e6de, 0xbdf3829d6d6d07f, 0xd68744b02305d035 }, { 0xc002cbffc7073cb4, 0xe0bd60de55794f46, 0x9007f6ce36e9ef89, 0x50a8e546f453f696 } }, { { 0x9799b8a6420eab98, 0x951adb8d610d56aa, 0xb27aacb528376159, 0x91c70cda61a6ada5 }, { 0xc3eb05f17ac572dd, 0x8e5ff2ee9fc547b8, 0x1f7c0ad31c737f3c, 0xd858b5c858d2850d }, { 0xcb2e6d79e7ef7705, 0xbcb2f2ad37209c59, 0xe3671ccf07948e0a, 0x4fb9824323c54c92 } }, { { 0xe5fa01672d3d6137, 0x691c093e1a82210c, 0x995c0655f1123d9d, 0xbad627ac4e3e709c }, { 0x2038df5842b53ea1, 0xaab332b699aef3ea, 0x5d5cd7e887f0bd94, 0x843caee3c8876531 }, { 0xc195ea5c925846cd, 0x431122a487a0be14, 0x79912bb5c4b2ab8e, 0x22ad1eb1ef599925 } }, { { 0x65ff49fe410ffe33, 0x99f54cb1f61a35a9, 0x7d800f350bba1669, 0xf0597fcc39b42df }, { 0xfdfffc06f108e8bf, 0x74dfb2e68c154442, 0x3b51b1c0f6e6f768, 0xe3dbdf3c4a3904c2 }, { 0x57a0a6ba00019b5a, 0x74da3728984f4374, 0xa86c39766dfde3f6, 0x2c89c5e558065c5 } }, { { 0xdf0d7f0927ccce83, 0xbd075b3af99d1056, 0x3c30e035f9cad29a, 0x3664578fda5aa0a }, { 0x208799a5f8b61011, 0x4306215e06caebc6, 0xb390459ff14fecca, 0x42c3a2a6c5d913e8 }, { 0x5385b7172c098c60, 0x7ae59df4386e5f95, 0x4cafd35a67f90e53, 0x5833c44b9fee2269 } }, { { 0x3ff365aba8d590e2, 0xfce179cd9aea08b5, 0x4da8d2a0c475010f, 0x861b50b0cc08589f }, { 0x716369d3a948a8ea, 0x86c5c237597261c0, 0xdcb6432ce004f4ea, 0x2b2aa81097e6c8e7 }, { 0x9a2267233574a7ee, 0x20e760a7c2b38e84, 0x817668702314fc91, 0xa6714a19d23ae9b7 } }, { { 0xb66e0107671dde23, 0x2769f825a66c3e2d, 0xfe7f161c22237725, 0x727fc3edb484fcfe }, { 0x48e749da9e912a18, 0x21cec621ff172082, 0xc68bbf9300e9b43f, 0x23bc17e1d0e30a5d }, { 0x8b798b518f81f65e, 0x852fc5707c01500d, 0xb14308eee8148e6c, 0x176554385c35d0df } }, { { 0x5fa76ef845e9ee0, 0x226b7090257b958f, 0x8035beac02cfe80f, 0x809321318c423848 }, { 0xc7b939070758dd13, 0x5989cdc28b9407af, 0x86bb1de8ca3d6e38, 0x1801f5370127f58 }, { 0x7426daa16f3272ce, 0x2c1b240e068796c7, 0xd4f6082cc2f20280, 0x4197fa1ed8de59bf } }, { { 0x9820e2de208e348a, 0x44eae29ce9461775, 0x8d6f3f82aa997c4e, 0xedab4f2c6a94546e }, { 0x8b14ea37b2e64ee5, 0xc1fb55d103fadab8, 0x8e46462e334e843, 0xd9bada3ec081ad6f }, { 0xd1f4fba4f1c77307, 0xf435b963b44b65d7, 0xf5bd97df60f0a9e4, 0xc46d148a6d554367 } }, { { 0x241e98e3d05adaa8, 0xd69bb48b81ceb5f4, 0x5d151bdbd944a8ce, 0xee8cc24f8a65b19d }, { 0xf038ae173729083a, 0xba91c81442960bcb, 0x3fbfb68cca059dc8, 0x68e076a638245383 }, { 0xb04f0d5db47e6d4f, 0xa821e253a2e6ea6c, 0xe823d86083dff268, 0x18d39585104717e3 } }, { { 0xb6373dc8ecd18e29, 0x50329fd2b7080488, 0xd9c1e51fd8bde8ef, 0x6bd4482c4cdfe00e }, { 0x5468b64f815ad558, 0x95bc559a3992dc19, 0x8632a725c6002b7e, 0x978d9f779761c76e }, { 0xb03e8569ce994142, 0x177cbbb41394df47, 0x3dfae21af9e623ef, 0xdd6a7d60048294bc } }, { { 0x308ae409392e631c, 0x7649f1f11eeecc18, 0x63b9cd94f01f7584, 0xaaceba10b2ab2163 }, { 0x9ab7e3752e537444, 0xb3d7ad4c2300edab, 0x5c477427e6651730, 0x655cb53c148defa6 }, { 0xcaf68d862485f070, 0x3318cd68dcd4ef0a, 0xf916ed50f6228b21, 0x993678f8dbe3b2ae } } }, { { { 0x6f602d58384e8d42, 0xc7c7cc62cb17a256, 0xfb929c2e796adff, 0x43fef6fbb15ec834 }, { 0xeb06c290bc63e598, 0xb50971929cb45b04, 0x3fd31cbb7f2999f1, 0xe7be68dfa174de43 }, { 0xd6927c5be89e2c07, 0x802c5ec02a5bbf00, 0x8a797d7f9ae0f01a, 0xb9c727f1038d8ee8 } }, { { 0xf566ed02bf0a8192, 0xfee44ac4be0b9195, 0x20517ceea9f62117, 0xf3ecf59c3aafb3f }, { 0xe0b4361985d91f94, 0xeac101d5c56223ae, 0x22301662fd705c45, 0x7210c2841f088adc }, { 0x29fd6fa71dc8d46a, 0x161f98786911c166, 0xd0860d5bf23382b2, 0x8d4e2630924029f9 } }, { { 0x1436b6a899b8feb, 0xfb3e25b2608348e9, 0x9964c9bb5881e894, 0x8f9331585423ecaf }, { 0x7f68aa51cca6cc32, 0x66c8d363f58aa34e, 0xb1ae57a4eb04b127, 0xe26c7e0168c1453d }, { 0x9316bf246b87c6a8, 0x35c52505bda2c681, 0x6e59ad22717d93a3, 0x9ff1d3092c6e6733 } }, { { 0x562aac5c49983271, 0xe6370ff558d5c1f8, 0xa75cfe575ca7dee4, 0x6f2fe931430b160e }, { 0x9a44d29bcbb6daa6, 0x29a5f942c45bed90, 0xdd3caf2bc4408cef, 0xf203741a1a3df3ee }, { 0x68b911e21ca207dd, 0x10ad5cd273cdad67, 0x6c0b612dce19fbd8, 0x22aa0befc069160b } }, { { 0x2db8b5d04a58f2b2, 0x90c7906a4509b227, 0xca6bfb99f0b99e10, 0x9b3ddcb8cb8455ed }, { 0x986fb42702940f51, 0x44027ce4eaf8f49b, 0x530a2d225c775ece, 0x6f79e53a08734840 }, { 0x59ec506dd8a7ac32, 0x4146c638329c83d6, 0x64368b64500b392e, 0xacb58e631c382bd2 } }, { { 0x7ae466ce7f919655, 0x4d436422fc079067, 0xf0b284857e222304, 0x79e18e14af0c3f74 }, { 0xea7b2a0a711f27f7, 0xd2beec777ba89a2b, 0x865aed1857079561, 0xb0acd081f0c7b395 }, { 0x8bbede5032613842, 0x648466370a349878, 0x255adc5e2436f69f, 0xf6965781d813eae2 } }, { { 0xa7129754a468b4d, 0x54efb77851ec9ec0, 0x8bdcf904f7e66e16, 0x7d26e8e391b409d4 }, { 0xe62296a1097f470b, 0xb156430e56310238, 0x3493e493551f2a62, 0x6ab28175d6347918 }, { 0x6cf3af2d66c6501a, 0x2b0e2aa5b443dae5, 0x1178af73d9235a4a, 0xa6ce1c1e91d19aec } }, { { 0x7c53f331b70dc6c5, 0x889d6559835d6f5, 0x9f444e0ba7d4caac, 0x2d79dc424faa5d3e }, { 0x191cd86a8335f71a, 0x2efcf982bc053aa7, 0x90002751646485dd, 0xf898ca5791038e95 }, { 0x54e634486d000102, 0xc96fb04e085f3e9e, 0x1471986a644fa45c, 0xc7a4025975a6c645 } }, { { 0x3eeb8844f23a57f7, 0xa7955b08ea75ad76, 0x5a81b9f4d57ef5b5, 0xce686bf5263aa8f2 }, { 0x493a6aa12868a4fa, 0xa4d01ee74ac0b191, 0xed7dda01e1c3e026, 0xae0de84e95e90ee7 }, { 0x9d98fe296249a310, 0xa6a386c8b1772c02, 0x1e04ecba7182b12a, 0x89108946cb243067 } }, { { 0xca58da11ab027653, 0xbb9f3f21f5b7d4dd, 0x166a356ef6bc842a, 0x7089690cf4a25dab }, { 0xea43668f0197e164, 0x66f9ec27b79ba457, 0xab7e8c58565120b0, 0xb9ccf0a7491cf3a }, { 0x621e821c2c297fca, 0xd7dcee500c1c7d86, 0x8ed2ea40cce78d26, 0x82b25a6a6140ce33 } }, { { 0x6f373f451ab3b217, 0x1cfd8b034650b58f, 0xa4256d33d47a05bf, 0xca120286e5f072b3 }, { 0x4dcdbfac0a59d86e, 0x3e7402b937694b1b, 0x4cac69d4659ca394, 0x1ae898837dec3664 }, { 0x952a15f3f2222e08, 0x1ca6ae944a38e4e3, 0x4e4ec1ce990b422d, 0xad7ae5f9a31e0f5a } }, { { 0xfda6116c560ea7d3, 0xe604e3720d15b886, 0xfb3a83ba81b05331, 0xa6200aaeb7f2e388 }, { 0x742d3910aa0e5a88, 0xd7664a22b3dad9a5, 0xbd27a88e7705f5ac, 0xdcb46b900edc4031 }, { 0x1e82b53574d5a531, 0xb5db71b4c3f369ff, 0x9f8917145cfec751, 0x9ce15ebce9300a71 } }, { { 0xa3e6f5009d80d5c7, 0xadb083e7b24f2f97, 0x32f23a8267765de9, 0xf2b168dea629e1e6 }, { 0xed0527f4590d050a, 0x784613274fef6d01, 0x51cc96dc28f6578a, 0xa52151bcd3c0f3a1 }, { 0x931dff619424ad30, 0x4f93d4a2d212efbd, 0xd34146abf32b353b, 0x3c636215af0510d2 } }, { { 0xd7787715fd0ed69, 0x46231d5fe873a21e, 0x14e593e675902b55, 0x7545dfbc1a9cd68c }, { 0x1cdea85e8bac5e3, 0xf24d1720787aac0b, 0x7fcb1907dc7da9ca, 0x64227bc3948aa42a }, { 0xe06eb07ef6b4cea5, 0x4063342df19c759d, 0x89fbcd61aeea8a8a, 0x279a729ec72e0387 } }, { { 0x40422fb1cbbc33c8, 0x3e29ac26bf602b4e, 0x7c2f5587a2d1f853, 0xc2a64c1634b0b24e }, { 0xe9a861e7db6d1aab, 0xc707e8d5962a3dde, 0x385a5b9b431682a0, 0x450ba01061548a45 }, { 0x6c4c2d88cb996273, 0x607a3591879bfab5, 0x8b520fcfe4c7dcc6, 0x727b79b32581f880 } } }, { { { 0x90d570716b7cc66d, 0xcf5d0cc71675043e, 0x4b52788f390bd9ae, 0x6b23eb0c2b9a5471 }, { 0x924c11d7c79c6a56, 0xe2717a648f49e8de, 0x6aa591a1230f88c2, 0xc825921bd608088d }, { 0x666c8d48c1c66b0, 0xe1f560b0d4329604, 0x46c1ec5f62939b10, 0x15e321d73937de67 } }, { { 0x9412010e676e178a, 0xcc6a91e36a6b839e, 0xabba8abfcce0060a, 0xc5d5c37d72d4868f }, { 0x3d45d5ec00a7cc3, 0x492ad76216f8809d, 0xc67e7a442fdc9d43, 0x278ba4404b2ce751 }, { 0xa1149fef2b8b6d05, 0xd713bb096f0adc13, 0x73ebdc3a3ae1da1d, 0x5e29731681befb6b } }, { { 0x294c954246c7378b, 0x321e2fbdf3895126, 0x883b379c44e62921, 0x6fb9d17070a1b759 }, { 0xd9ad200e653bfb4c, 0xcdf639ed86a440a1, 0x456305b3cc2799db, 0xd0dcf32b7c46e1ba }, { 0x2db279da51f3ca81, 0x623e9ea1d7fbe086, 0x62fe681068a3d464, 0x6468520ea96556b3 } }, { { 0x8173476fa120dac2, 0x3c4ad49145889726, 0xbe7277fc80db766a, 0x13f6ac5a8c3175d1 }, { 0xfb7bdcd0c17d2019, 0x7d6f8d2cd441bdfb, 0xb49dc190a90eec53, 0x33dda8ddc79f03d9 }, { 0xbebbdc345f07585c, 0xd025f748aa7ddc6, 0x45ff0ea0be48dc34, 0x1710b2e65ddb31b1 } }, { { 0x8484a5d261aa7184, 0x6bb421501587d93c, 0x8f39df132e0add36, 0x39833292cdeeb466 }, { 0x82d867b60549effb, 0x863535aa7ade6644, 0xf4e4a483b46d2133, 0x123e1cf37c92b9d9 }, { 0xf6f16eb969512bac, 0x40f4aadfdd629d2f, 0x2607932ad77342c5, 0xc1822a33d428e014 } }, { { 0x4eb87609484ae367, 0x4f784624f759ec9f, 0x34964b32b2cd712d, 0xe02adc302cd43a37 }, { 0x8ef7ec98368d2eb3, 0x430a80fea4199d0, 0x7de65f25d20351a9, 0xcd5301b01bc5dda1 }, { 0xf54c3d82781a82a6, 0x3da2cdc9363d0fca, 0x9f0f89dfe608371f, 0x59701df0f0584459 } }, { { 0x747532a5fd00c523, 0xa67a2d648584592f, 0xd586f7ac97602972, 0x1420a46eb311f2c7 }, { 0x2bb16a7804cbf130, 0x2ae535d026f834e3, 0x9cd72bb196b7d456, 0x68e62171d3aa918d }, { 0x9c4ac49945130e0f, 0x23a2eed731f78da9, 0x1152f8ada9356894, 0x7de2f5683800135d } }, { { 0x7ac2dc602d8bf181, 0x6730294c45b67d51, 0xb7e90300955a6c25, 0x4f5c3cecc6dabad2 }, { 0xd4422f940cdff7ed, 0x7d914b808b1b2c35, 0xa786c20a32d18cc7, 0x3a4651e99098aab0 }, { 0xf432e7ce953e9904, 0x2d81946a160826ea, 0x7324ef169c1e16b2, 0xf62b0b3ea44339c9 } }, { { 0x9f59758984c5c67b, 0xa7766ff97df23e96, 0xe3126b4f59c97a27, 0x4aba636ac54abdce }, { 0x103ea7b36ca53dd5, 0x6ba97f6fbf4d2aa5, 0xa5b36490276d33d0, 0xd0601511a9536745 }, { 0x689f06fd7d201aac, 0xac71a466e3a8c54b, 0x5437902750e2ea7d, 0x3ca4eb798ca320c3 } }, { { 0xcb507dd6a738de57, 0x584b0869b218f9f4, 0x931841e5705a3f2f, 0x337eec88808024 }, { 0xbbf1c061df7faa5e, 0x58d2c50b02670623, 0x4dc8fec68dc80d7c, 0x742d1f08d2877293 }, { 0x6782a3a33088b290, 0x664a7d8c92f69dc2, 0xda037e1f5f31874b, 0x6706432a3af5384d } }, { { 0x299665368a355f6, 0x598103ebbada53b5, 0xbcc2bcd3f1135c32, 0x8912267b913d7831 }, { 0x5ed7c6f5d6bb74c3, 0x83c1f97ff7df5580, 0x23026b852c6402ac, 0x38017efbd84f7951 }, { 0x422a0b34450283e2, 0xb26649fc53c82b2d, 0x8aa4bf0e54f2fd8f, 0x8db762f9a94a9a73 } }, { { 0xcb280a792656ca2d, 0x6bf5c6f0cf029fdc, 0x8f6d87fdb884b38a, 0x5831fceafcfdec45 }, { 0x81aa355066a154a6, 0xcdc5b012054d4966, 0x2f549b1800ef94ca, 0xb0b805e028bba3c }, { 0x3b66261f98588ddd, 0x6f9660f411aaae4b, 0xe662d101dae51a95, 0x7120de9218ae5382 } }, { { 0x81e8b9d7df60bc73, 0x6d0eb9e4c1d89864, 0x6c89a6042d65c96, 0x3c2b164d712262e4 }, { 0x8c02447912bf2155, 0x8400dc32124b8544, 0x3876203907307daf, 0xb91eeee033dcc75 }, { 0xc55aa59b4d8bb0c5, 0xcc275bab7e40aa94, 0x6272b3049a955073, 0xf171f4c3190a454e } }, { { 0x5729f638b32f0638, 0xff0580c5ff5ecdfb, 0xbd9e316ab67da0cf, 0x967068f42d95a33a }, { 0xca11d43c2deebce1, 0xc91faad01593875b, 0x95786ef423df35ff, 0x9c6dad671122511 }, { 0xd180d4aa6cd4ae45, 0x962f8fe2c4d25969, 0xfe69e1e413b5cfca, 0xb2c10d7630423abc } }, { { 0xf2c917edd4f7bd8d, 0xf8fedd7e350eb528, 0x82dcaacd285eeba5, 0xf9bc691888c5ee59 }, { 0x52b84195f0e15f27, 0xea1c79f28505a3c, 0x284cc2ceb072e6ca, 0xaf556857c55d4055 }, { 0x3446b0375825e758, 0xb1f019d1611f47a1, 0xdc356dbbca44aacb, 0x904b64c559f0f373 } } }, { { { 0xb7a1551374ee74ad, 0x48b819b67aabc9be, 0x408de0efe051719, 0x8dc27619c28b203b }, { 0xc571727d810ed05b, 0x5e0e5297b87adbfc, 0xb409fc86f2920def, 0x5685b200b3e1a48 }, { 0xab7b66db01025dac, 0x88ba09f3375b6a5, 0xd5b85aea0ee2a27b, 0x34e79c1fd87c1bfc } }, { { 0x74873981e8012761, 0xf18b637bd2392747, 0x449eb9392c13d138, 0x4399c8d00418269f }, { 0xd5c8def660b65037, 0x2418e951f9dae085, 0xcf31979cfd3d3b12, 0xf971141aed414d76 }, { 0x68d49ef270eac6d8, 0x3ee716c765b2ed1a, 0xd65013a9a0f3361d, 0x290d50836a1a35bf } }, { { 0x7d1cd7ad3aa14fbd, 0x59b3c6e8e5cfdbc6, 0xdb20085c5f70d479, 0xd090a3be3d67688f }, { 0x80f79ee19fd09bbd, 0xcf6de181510db4ef, 0x5e602b1591988c11, 0x67a04d273d16d9d9 }, { 0x827f6919793a4487, 0xaf506e34ecc6db59, 0x1f4a589936ca1fc9, 0xee2d57d37d630933 } }, { { 0xce347fc0ef7d5381, 0x618aa3e387ea4dd1, 0xc725c47824e1dbe, 0xce1d15745be97e05 }, { 0xe121d49c73a148d9, 0x9760f865b2886517, 0x60f1b256af0289fa, 0x6226fde10f9af8b4 }, { 0x780fae18290dfb8a, 0xd994b653e6db18c, 0x3fb0a64cdd9b7e4, 0x57cddb85c3c4860b } }, { { 0xced85bc4adad6597, 0x66a96e269f3363e0, 0x9cbfabf142e9e665, 0x43025592164b0a5b }, { 0x4b1dc2eed193513d, 0x4248c2e1c7fe3ccc, 0x67165ba1315b7cad, 0xf5eeb5282841cb0b }, { 0x1f88aa52050ad680, 0x282cb05fff5484c9, 0xdc17228bbc47d523, 0x186ba3be0ed2162f } }, { { 0x81b01fe389f0650d, 0x57bd11508fd5e1b8, 0x561ce5cd0543ee8d, 0x378aa757bde0d694 }, { 0x19da35bd938b6293, 0xa622aed564647237, 0x215cd1c7b2ab5875, 0x82a5b5c172ab3efd }, { 0x640a7ae0f37a16f2, 0xdfb9862f8ba7481e, 0xaa7879cc89becbf, 0x38b1e1813a948d3e } }, { { 0x25886b941407fcc3, 0x6384f6dc6c4758a4, 0x3747ae95aea38c92, 0x6b98053291d6dbc4 }, { 0xdba54e469ab7e035, 0xf8ce8f8bb706c14a, 0x8d675c9dc608080, 0x83d186f61f55ed2 }, { 0x148aabf54a447c50, 0x33d4ff2b2a3b30ca, 0xd2a610b81843b3a8, 0x75efe7aa0c52c299 } }, { { 0x18a1c9daa6c66a02, 0x2d5c954abd25982f, 0xe933f08b27e55276, 0x16b1334414996e3c }, { 0x3c62a9bd8eb20776, 0x7e1d6499192328c4, 0x7ed0a899c849a469, 0x3858921712fac01f }, { 0x774c36014df421f8, 0xd0e904ed1adecab8, 0xe6adc60058fdb8b0, 0x4a0679806d3c66a8 } }, { { 0xec6b05851f5aa8d2, 0x3e4e3a255e286cd1, 0xb5910a2a64f425ab, 0x5f6f4d9499fc56b9 }, { 0x12aa78a59649dd5b, 0x26acf3aafa6a3476, 0x724ddd802fbfca26, 0x9241ee5da6176b89 }, { 0xd761bd5e7db0d46b, 0x5ca1a384136423d5, 0x6c9dbdb64b3196f3, 0xb024657c6da4ba05 } }, { { 0x9bc86c00599bf689, 0x937f5589db241725, 0xc3dd871b0ae9ff12, 0xd4198b20b87cb94d }, { 0x956f2530c5a487ba, 0x2cd6d4563dc98da, 0x752d25284e3b4a97, 0xc6fefa8f0e5ff2e8 }, { 0x5c9e47748b6653e3, 0x244264dfe8be3e07, 0x60fb67a6eb4a2bd3, 0x2daec01c51b23bb5 } }, { { 0x88be79911724177b, 0x7263ed8c16de9892, 0x7bf38518eb9df238, 0x5583e76dd3059d75 }, { 0x4956d98a310df2dd, 0xc03522c3e389ecf9, 0xed6dadd12a07ba7d, 0x8ec06fcbfb339ab }, { 0x1b6c2af930bc46b2, 0x42640e203865b552, 0x6ed9c61046a2cc7f, 0xc47d97311871eb8d } }, { { 0xee8b54a2b1055799, 0x7d2c6f4a557d61bd, 0x7233a0735674cc94, 0xb4ecb92efdb2ef85 }, { 0xa6e712fe897f8a2e, 0x8c1748fe631819f, 0x2be3a5eef3011764, 0x64fa467ded70bad1 }, { 0x400c4ae01dfdc6a1, 0xc8afac5f4b4f8dc9, 0x9c0279f815b9908d, 0xbc14663bbcd81d30 } }, { { 0xc70413ebf35aa8d6, 0x61ddd0d27b54926e, 0x3c127fa5e21c8431, 0x3d2b2654644d17a4 }, { 0x7c8883cbe37123d7, 0xe1895c0893c3848e, 0x6d03a5ad0a80cc32, 0xdb33c2c4c62bc214 }, { 0xe17e5f449e66fce7, 0xdfebb971ae8a2bc7, 0xce55e16ea3b7c297, 0xa057a08fc85e836 } }, { { 0x6a1e9ba7a2d4c919, 0x1037dcadc7c4367a, 0xfc6b9bfca06a3590, 0x13ce9df45c1e226b }, { 0x348ce628ef89b136, 0xf5028de16c7300b3, 0xb2fd3175fb06fbd9, 0x8379721723f4fc86 }, { 0xbc98f7b71f60d542, 0x518aee4104156dbd, 0xfa92f121e7f8eb0e, 0x3faa9f9c9cb0c583 } }, { { 0x1a0383b2bdbc845c, 0x68f290fff16dbe42, 0x33b7b3721e89ceaf, 0x298c73bdb01f2666 }, { 0x1a8b30f24b1af436, 0xd52ec618d2561f93, 0x98183503cbf5820c, 0x1ea6807054bd4a90 }, { 0x684b3b9b2eb68606, 0x37f69d45224e94b4, 0x2dad3803da83adb9, 0x6c5c1f367648775e } } }, { { { 0x826584b9f186a8f9, 0xe1ba87b985747149, 0xf4347613878df08f, 0xfc39c472b3180ba8 }, { 0xefecf14e70e2c0f, 0x821c188c01d868cb, 0xc34757a7299f93c0, 0xbe466f5e4d59d7cf }, { 0x88f2872bba721fc9, 0xe1e0cf56d7026f08, 0x35ae20dc62b2c0e3, 0xc46c4e1731915b2d } }, { { 0x3d7b107de99701ec, 0x2365fe01bd5bcb3, 0x545a4cd3817a8ec4, 0x1f0268683fd6a0c }, { 0xb05cc1dd03fc0bdf, 0x1cdecab70799859a, 0x83c806a2f117c149, 0xb2731a45704ac33e }, { 0xb205d835ed3ea69b, 0x39662a37156afd35, 0x82538b1d46d4c70, 0x19a7f34c31d5a0f0 } }, { { 0x5470a0704dfd6f49, 0x8f9baea9e73d25e0, 0x10f0c016b578d956, 0xd1ec9222fc4d9347 }, { 0xfaf03c62b6f8118d, 0x71a96c94cac03ce, 0x733ae95913b48c20, 0xf2507f153b047738 }, { 0xf926c56d2a4d6958, 0xc97c268fb17d86fe, 0x22917f5142a2ad3f, 0xba432fbf6c894e9 } }, { { 0xcc01add10f1d6120, 0x4fca49f029adcb53, 0x8fc57669f0330da3, 0xa265930acc835d3e }, { 0xea37ac73907aa8f9, 0x603f50f850bc25d2, 0xef6df5fe06917f73, 0x75f0122eac93e506 }, { 0xda9267dd3601ff8a, 0x628042d16631629b, 0xfd0e6bb6f7f960ef, 0x2bc2d51e6cb22397 } }, { { 0x680e3c41e403c9be, 0x51ff14278055c194, 0xf2645c836acb0ca6, 0xf339c6587750c397 }, { 0x684673e8d3fbe170, 0xc1c733679dbba35, 0x32bc6d3d461c4d2a, 0xc1bbb66e2376bbdb }, { 0xf35868ed6aab1db2, 0x8165b01b046a1d90, 0x44c5c8500b528bd2, 0x602abf0a19de6e74 } }, { { 0x5adb46718db41b24, 0x6d5bc5bb176dbf26, 0x4098a38a128bba28, 0x8c9b136ad4ad3806 }, { 0x86feccd01990c338, 0xcf016142cd0cba73, 0x5a571759a57d4590, 0x38560e53ba1953ff }, { 0xe032f2badbb79635, 0x715c06de47a7f6c3, 0xfbebd7e99aef1857, 0x959c2818acb8424a } }, { { 0xb03a3bcc01e020a8, 0x2b4296bfaa52b4d6, 0x8e9f95341eab912, 0x12a35423d9759816 }, { 0x6642adea3802cd73, 0x2b0b9168443dd269, 0x7c402cb59538a609, 0x1693f0429ad4b630 }, { 0x9ce3f1d9c94c12d3, 0x763282499051d8c8, 0xa7c8ee41b720650e, 0x35c9ed00a741ddbc } }, { { 0x487d36bf525a0b9e, 0x2bdaa7cfd0fd32ea, 0x3015dd47bb35bf45, 0x6429b3abe08a9761 }, { 0x6a14b8b977457839, 0x1181ac1b7b202cb8, 0x95d462e82465e8d2, 0x9be773e862a73d07 }, { 0xd131110684e70ac7, 0xc62b25438c1ef2ba, 0xe3f1b75953c8d1ac, 0x4ddd823fdf3b6802 } }, { { 0x1e96cc969ccf4597, 0x36e16ef82af85bd9, 0x8698821a7e8ce832, 0xdcc58db9f2f11987 }, { 0x7b4c48545f7ff1a6, 0x6e008cf9e7719a25, 0xb6f403670884a83, 0xe651b39515b102f7 }, { 0x5dc7465b8bc03f7, 0x4c59394c1f846c18, 0x918f5a087c121070, 0x3d93e51dc27b5681 } }, { { 0xb948ad2c360e4b56, 0x89ba3429a972b915, 0xaafd4b6818ef4030, 0xed41cb320807f689 }, { 0x7fd402f8d074c084, 0xb650c2eb001bc4d6, 0xbb726b84f088bd3e, 0x42092fc10f845caf }, { 0x5fb023ba30cded17, 0x65efadc235929ec1, 0x510c36b9c4f345c9, 0x4d802c2a4480e496 } }, { { 0x2170245d72e889b8, 0xcabee2dd439f0f0b, 0x217f65178825dc6a, 0x93d2fedd2bf4fe24 }, { 0x371fbe76ac62139b, 0x9542c0ff4825fd89, 0x179b309281a071be, 0x3e79ccfea2c1210f }, { 0x5057f62df6c2f6c9, 0xe91367bb67e613cc, 0x71b9a4530f752fb0, 0xc5cd3dafa2bdfe24 } }, { { 0xd372cd2b7e7582de, 0x63cc54537d2a8c9, 0xddc207c21bbb0a66, 0xd3a7f6673b928385 }, { 0x28695722c54975a6, 0xd78c594fe1b66f9f, 0xf7737b6c93e308c9, 0xf9431f5ef4e407ad }, { 0xf5b760790612eb3a, 0x47a40d95fac492af, 0xfbf36a00c69b7b06, 0x3ce08d28c35a6fc7 } }, { { 0xb5d51daebb44e895, 0x442f20c1e8b14cb4, 0x68fd7e961d5179e0, 0x7c376bb6fb73320a }, { 0xe0393e7ea0fa7547, 0xd180321a52736e2f, 0xf5952a2a8ffe2729, 0xa89658072cc50029 }, { 0x89ad43d336a6d661, 0x77048c1c3318ae2b, 0x8a44e318bcd15d88, 0x413014f4f3386479 } }, { { 0xe3803010c9879fd1, 0x1ccc6fde5189965b, 0x65c57016d0bb1566, 0x5ad748bde7ee1c70 }, { 0x513c8bb07891f8ae, 0xd57743892d7acec7, 0x3f304175e03347f8, 0x1f23772b92c80be5 }, { 0xd18387f235b69230, 0xfe826d0af547ca5a, 0xa874645776dbcb9e, 0xbdc8f46a251b05ac } }, { { 0xd22ac6430420a577, 0xfbf71fc158a9ab7f, 0xec64df050a1bd46d, 0x1ac5c74a3461a4d7 }, { 0x1eef015faef372a3, 0xace5eaa812dc6322, 0x63b0061209008264, 0xe8ca2244c0713955 }, { 0x8529145f04998ac3, 0x6740c76097ab1cae, 0x815ffa2d8804502, 0x7a154316a33c5c9a } } }, { { { 0x66c2ae5cff7a53f9, 0x68017d22a63a4b50, 0x314ecb885736b852, 0x3684383c75c2704e }, { 0x7c149309a9ad03f, 0xd15e5106f721f4a7, 0x40c84afc5eb9ff1a, 0x1a6fe381cf34959b }, { 0xadb551eb9cac602d, 0x25754c615bf82c8a, 0x41dbe4202cb5a682, 0x2752bc7b6cccee93 } }, { { 0x9da4d7f7d0bdd34, 0x3802ab4ac886ee66, 0x56c76fd5ba2a933a, 0x610d36da0e097e97 }, { 0xa6b5fb70cb8b3265, 0x48eb4c878fdc3334, 0xf891982dff300e23, 0xa283e320856fb654 }, { 0xf8d8f104e312324b, 0x1ce15f7106022c61, 0x55fee0ddc1f9a212, 0xf90d26ea3dae545e } }, { { 0x16ab93d7f2db1c8b, 0x2e530159a28025c5, 0x20966d3fb668fc93, 0xa86cb0788a3ee46e }, { 0x4b41984b0a151b9d, 0xa8b7c0d5a0617799, 0x30f421f0be207166, 0x93cf7da925cca1e7 }, { 0xb6937fa66f24af73, 0xf80af38f38a49c92, 0xe36df93f068200f7, 0x8c951221e1698b6d } }, { { 0x151b3c851e40bb38, 0x93e22ae6bebed971, 0x48a590b29ed6792f, 0xe5e220bb95273810 }, { 0xbbebe7b42d6b70f, 0x4d9ea6ff00b995c8, 0x8fbfa17189d09f73, 0x33b6993b4c267864 }, { 0xca2f5d43fe5a3a04, 0x40d61a6152512cd3, 0x749bcc68e24346f4, 0x5c549d524915cda3 } }, { { 0x139d6e3076262cfc, 0x213d9a002796c28b, 0x2cdb3672455a616, 0xf777090f82019724 }, { 0xec4f54e8d22be224, 0x32532606da5cbef5, 0x21b0f1de393cf72e, 0x5075bc7f629cddc9 }, { 0xd9e90549deb22418, 0x630dac5844c14b6, 0x243a097c7aa2ebfe, 0xf9c63ef1f4bb169a } }, { { 0xe1ba42ff290d9217, 0x5c9116de908e536c, 0xcde193c6e688ce38, 0xe80a08aa7265c873 }, { 0x6972d55c284944d3, 0x5d8b302698ae179e, 0xc5c1097d2f7ab233, 0x8a53454e7cc9039 }, { 0xc489618eff844ba6, 0x17f5094e819165e7, 0xa4ab4920ed7dee73, 0xf03e861e667abbca } }, { { 0xe44801eae0b65bac, 0x62b63c0796264e1b, 0x2d80cc2c063d78cc, 0xc00a5c51cadb05c6 }, { 0xb0055b031cda663, 0x74b8b6aa0bb1ae4e, 0xabb4cf95ceab6a00, 0xd7d370d9c6090c87 }, { 0xbf73a84919d471a9, 0x739d5bb6bd19920f, 0xac186da00723f0c7, 0xc21d616dbde9e60f } }, { { 0xd11ef919e75cca21, 0x8cd3c2d340bde5a2, 0xdb63c6fa38fe711b, 0x7d1cb97e7a364a4e }, { 0xa93c2484f411635b, 0xd8d6b6b2860a7378, 0x7685ab96e05d2f3c, 0xadfa20570b064963 }, { 0xb4f9a0aab8da18fd, 0xc172baa30be679ba, 0x9bcf5b06b538e994, 0xec39fcb201c310c4 } }, { { 0xb937b32e64201565, 0xbb621c7eeb81c4b, 0xc4b1ff2766ea4e4a, 0x9f73066bc518ba8c }, { 0x5271b0db97c374a5, 0x11178e39eb860b72, 0x42580fdeb709d69d, 0x8b9571a77993285 }, { 0x4979057bac90083b, 0x52caa8a4ef32d1d, 0xa288ca1377ab717, 0x61eedb4d68ae8345 } }, { { 0x7fc6dbe25c09083a, 0x83d3f20ed15f20c0, 0x79b4ff8b1c6cd7ed, 0xa82fd8a19dbf610 }, { 0x114bb69f77ef80af, 0x24afdcb689bc93bb, 0xde447fa23108e3ef, 0xc260784998f7c427 }, { 0x66ea7af2ef395c70, 0x7b8c76d017a5b140, 0x81bbe7b3fdd501f2, 0x6e913a10def62c3c } }, { { 0x33f249bd6daba511, 0xcbee8fd19e3b9732, 0x228f4081b17c106, 0xdaf3a6c47ac37550 }, { 0xde6e8644cebed5f8, 0xd52a9347b3f58935, 0x398c444e106fc7cc, 0x1b9ad678e5227dd }, { 0x2e49701949c1e513, 0x2c6a6cbd315c7f06, 0x5ea352742bfecc86, 0xa022fc6b9f0f129 } }, { { 0x62eb56e162dae607, 0x2c8094ca0d7cca94, 0x46371809f7f7d9ff, 0x9f207a02c9491c12 }, { 0x7805c508498e61ae, 0xa9cacb769e3ed929, 0x108deb476317ef81, 0x578b9b8cdd193248 }, { 0xd2e0a417f0691b37, 0xb906f95c7c0ac9f3, 0x338735f6ce40ea6, 0x680613a4d9045cf4 } }, { { 0xa299f509e4223bcb, 0x21102312b44733ea, 0x8db4991b887261d7, 0x457ceea4aea4ebf3 }, { 0xde7f3e65655e550d, 0x6b0f8b233c51f6c, 0xa692a0d65a4a4427, 0x246989de832bc3ef }, { 0x104567a80fe023a0, 0x8cc16fef55365b67, 0xc26794055c106101, 0x292116f0613c4b8 } }, { { 0x10d18a8b0f9a9ee2, 0xcc24872a31fba957, 0x939f90803b72e439, 0x9f5f930d2011c809 }, { 0x9d36e880d5160d16, 0x8e6dda681148ed90, 0x11fc056cba6bb9ae, 0xd290a48fad3462d3 }, { 0xc6fa3c4d65552a13, 0x557dc80c398cd01d, 0x6d6b1491121bd8ef, 0x8416e03ba869085a } }, { { 0x4742298f590d3c6b, 0xc9aa8c729736cdf0, 0x55163ae4a66b3991, 0x35470b3bfcf4dba7 }, { 0x90487a9a58bd45cc, 0x426e4b3a5f5fca32, 0xc66d9632d9f9a469, 0x2daa3e03102db098 }, { 0xc2301508d8c61c01, 0xd85223d7c2cc7349, 0x1bf3d0a63015bdcd, 0xbff36247fa82ab6e } } }, { { { 0x3a3539831ba063a2, 0xa1350ee113c9c3db, 0xa56f0fd7761ba60d, 0xa5c8efe442bc48f9 }, { 0xf76649b8547632c0, 0xac460b14a8188939, 0x1fc96e2909981cb4, 0xda9a6881ca994b14 }, { 0xec6d2cebedf265ae, 0x7691a4367ec958f3, 0xaf0a2b278d0806ad, 0xfc5a599ed6f83b38 } }, { { 0xfab063ded081c560, 0x9fedeaf9bd7e1d26, 0xb1fc62e573b32c, 0x2e78cbc6ce16f312 }, { 0x69175a44d879d18b, 0xce72af299eaa8608, 0x1ca20e57a25ed5a7, 0x30d78bfc0207c827 }, { 0xc5dccb32a798e40f, 0x37c4473e9485a91e, 0x217413a4121c2621, 0x3cbf0085c7709c90 } }, { { 0xedc439ccd4dba2d4, 0x37d56f5c25cb0f74, 0xda6a0cd149862991, 0xd55d60d5266643f4 }, { 0xeb4dbb8c4f317b07, 0xa5c609f865251d1e, 0x2ce82bb9a43dc9ab, 0xd34dcdfa2ac5fe11 }, { 0xa55f176c06e074af, 0x7ca346df5456464, 0x1a8e158636d422a0, 0x6133cc1eef3a0e7d } }, { { 0x4909894b75e928b5, 0x850cf858f888dbff, 0x8000602c84d624df, 0xb5a4047dfd286a91 }, { 0x33d129f4f21e284, 0x4a4379a5c0f64d41, 0xbcd936580f4fc1f1, 0xabdbbf2cc9e6c453 }, { 0x969fdc7632c13f32, 0xad7449d1ad215b76, 0x2c9acb5eca2d1835, 0x26f0a95fda1255d } }, { { 0x50996e7c3e11a146, 0x6cfde71a611c26b1, 0x3c237957039e25ba, 0x31f300a42115b84d }, { 0xa5e81fd8b401d19d, 0x87a7282c56efd7f6, 0xb29cbd998d113fb2, 0xebeaf9f9b76f7868 }, { 0x75d26b1aeb28b704, 0x90a967072e358f40, 0xb6ed8d0c138f9688, 0x699f84471351cf09 } }, { { 0x9d1252ec742b7acd, 0x953dfd59685575df, 0x9708730e94315d6f, 0x358e28abe68b4f4f }, { 0x874a424263a2acc5, 0xc9b2ac641a67b58, 0xef4aef7640456d32, 0xace2cc4715b9423a }, { 0xe809a0b41fa46d94, 0xbba94b53ae7dec3a, 0xa0073f745de51e3f, 0x1c5fa6e4b02040c6 } }, { { 0x3a39bd23cef3edae, 0x833349c0aceb64b8, 0xb6dded259807cf90, 0x3f19a6f9263f459d }, { 0x9685ea4b359c8189, 0xbcce5ba51b67031, 0xfaa2b7914c7438a3, 0xe43f98c4f0f7161c }, { 0x1300699053f1e37, 0xdfe4b4c5d29a5aad, 0x8428eeeb84bad78d, 0x313a0efe136699d3 } }, { { 0xb677a3f6687f6d47, 0x6cd63c027841cf75, 0x7c4e38d279c778cb, 0x2b13ef9259e458c7 }, { 0xe1c4aa1a207d620b, 0x834104e6f122e199, 0x60345c3e5d553fc0, 0x839fab869d301df5 }, { 0xc5dda5526b544c08, 0xf4217f618000f731, 0x304cb0ec9574b8d3, 0x8f357cdbf7ae4479 } }, { { 0xe2cb0e4a61638ba2, 0xb2af25234f4a772b, 0xeaee6b8bb2e8500d, 0xb319ae9f1f8770a8 }, { 0x71b608b469ee2f68, 0xaa247d022d559171, 0x6f87e3c30e3a7cbe, 0xe369f27a7519fe67 }, { 0x5661f2dc273e235a, 0x1fad0f73f3bc1b84, 0x4b6e08aeff195143, 0x5289760416848c95 } }, { { 0xd8b15514186abd58, 0xe9a70ff82edc2046, 0xf6e4c6a2df1cb603, 0x9f0d0ac1da8266e5 }, { 0x2769f5a9dd45fe82, 0x25b49df613881d82, 0x54c56e7727f15c0e, 0xed2335f3e6192068 }, { 0xfdd726e92d4ddd06, 0x2cb90460c44b0c77, 0xd04b7cba08d1a230, 0x144117e2f7472b24 } }, { { 0x4c7b02babb24d1bc, 0x25e4805ea42e170e, 0x784ca6d357850bde, 0xa6e1b6eb4053f94 }, { 0xd4a17d7f133865dd, 0xc8dfea09f47003f7, 0xb62159186ce07f96, 0xa006ad85bf3310c5 }, { 0xdc0a50fbfc4d778c, 0x4ea68d0cb7e3d337, 0x7574762e47cf188a, 0xc85fa506ae9f12aa } }, { { 0xc820091f43c3e445, 0x744ff93f533f00ba, 0x47571b9aadb374d2, 0xc34142cc6533b19e }, { 0x20d3680802c6044c, 0x78332ac13ac81cee, 0xbc7e4d6682d9eb9f, 0x71db7d085773658 }, { 0xd31c90dd5634c0a9, 0x7f85424e11e07ae5, 0x6b037c7cacce8401, 0x6debaacb292a1eac } }, { { 0x1062f17c5789b9c4, 0x7fb6c9cc841493c0, 0x4789f9c9b54a2be2, 0xcac4d965eeb26112 }, { 0xafe4144eb688975b, 0x180695d9243c9afe, 0x623edea43fd161ef, 0xdde77e862ce47f19 }, { 0xa38779334eed429, 0x723b1208730133ee, 0x7c3f807377d3473f, 0xeb8e8fa3d7d2dfa8 } }, { { 0xfe8f2eb2bc542141, 0x9f77d976292050cb, 0xa1b53b91a21117a5, 0xe9069d6ae8f6c338 }, { 0xf57f04f91562da79, 0x4b5b5cbfd73f5957, 0x87105af04d0267ec, 0xecd8ba7a73792364 }, { 0x182cf4d775e11e07, 0xb4dbd1a01f12304, 0x7ba283db34bc35ef, 0xef1bd2b079d1afb3 } }, { { 0xa884560786c52e46, 0x50c2f50e8d9591b4, 0x8a16f42a51c5d249, 0xdc7c0b69869ad3a6 }, { 0x71ddee777d25226c, 0xee0a0249c3b781fb, 0x5ac2230ff205c5d8, 0xfc5047b11f688157 }, { 0x195221130e5d3e5d, 0x98bec9cf1d128c83, 0x8ae45a34f08a4ce, 0x1538316c19c6167b } } }, { { { 0x48e4078fb949eab2, 0x5555b3385dfb88f7, 0x3e977415311e2d1d, 0xef51b0a9fcb88917 }, { 0x37a6fdeeb442521, 0xd0d7ed01ca996867, 0xd7e13b8646422eb, 0xa16268111ee1be1f }, { 0x8ce298fd30157f7c, 0x166e9474b736c690, 0xf2deb415491bd622, 0x4e7849c8ebe27c00 } }, { { 0xfd1f02c5c4731c6b, 0x561189b673ed3536, 0xae63badf28e963bb, 0xefabcfa850ba8c51 }, { 0xe8fc3cf8cddf17fc, 0xbe9632c90d412e5a, 0xf6e4d2575914dfa9, 0xe2499b7489f43854 }, { 0xf2a14a3630aad473, 0xc02e6b28fe8c3543, 0x1b556dc55e58474a, 0x1e4ab023eca82215 } }, { { 0xba18db72dffb56ca, 0xc688d1b7334fe263, 0xc6285f7c9601a03f, 0x3a4345e67c023e8a }, { 0x743bd3463565d96, 0xf53360a40986211c, 0xc448ad5109b99b2e, 0x89685d82903453b7 }, { 0x13c6569223b1b482, 0xd6c8a6fd40e9ede3, 0xecc53c28ef5a57b6, 0xa59effc3b9e5d613 } }, { { 0x8b398cd5566a2931, 0xf9ab0d7b48514087, 0xa9ee6f179e650cb6, 0x73036193184cc52 }, { 0x836dcfb9a2349a76, 0x585557fee313f3a3, 0x457f8709411db49, 0xc3fe798ee98f7c96 }, { 0xe8499195b78ffcbe, 0x88e669a6bc218400, 0x81656aa5143b3d78, 0x63169a8bb1b2b68 } }, { { 0x16e8c5eef81114ec, 0xbadede0596d6d844, 0x2d8e554dd64edf1d, 0x11b65cab583a98a5 }, { 0xca65e40a871346e8, 0x9b9ef4a21861d9da, 0xd36be0d4830192da, 0xebfb756f8e4753d6 }, { 0xf5902b48ac2130c6, 0x51ef4bf41a69f639, 0xbd99f7a0b1d5a8e1, 0x1ebd9f8d79a03087 } }, { { 0x7e40e890dcd92cfc, 0x58b8d1e4db0d4586, 0xbec0175b56f0bd08, 0x9a334067359e53d2 }, { 0x389bbb36c4dd1d9e, 0x65d793444f2496fd, 0x8dc4e5a048630a09, 0x81a4caf7644b2d11 }, { 0xad82bf5c46d2f5f2, 0x4eeca5e701cddc94, 0x6c086c201b927a73, 0x91f5c9e8387efb31 } }, { { 0x4c2c56d0ba0fbb62, 0x98a29efe3e11261e, 0x16516cf81a6c4fc8, 0x518cd79aafa0fed2 }, { 0x8c61046ec50ca1e, 0x5b6a442ee3fe83f7, 0x30dca1512c7b476d, 0x843f9e4e7ea8e328 }, { 0x67406632d9d20cb8, 0x3c602342b73cc638, 0x22dc45ef66f80dbc, 0xc1cb0ebc124c51cb } }, { { 0x9208feeeb6896707, 0x89eb060031a74f0f, 0x2869aa7a47e4bbef, 0xe9791fb4b1751252 }, { 0xdb0ca3965e479460, 0xad795cf6a209b2aa, 0xd9297986e3198e85, 0x692acd4e9743e005 }, { 0x2d981e9bb6f36a0c, 0x21c8b9d269a2686a, 0x74ff12f343d970ca, 0xb6281e8f98fc7b40 } }, { { 0xcb08acbeb8aa0e2b, 0x581e0c9858274a24, 0x3adf37933a475683, 0xf451750cd37307a4 }, { 0x6d8089df5865dad4, 0x54bb55d975430ca3, 0x9b23db731cc99386, 0x98329dcdc8024648 }, { 0xa7fcf42921105f3b, 0xca194c59f4da3f25, 0x3ddbb228504f1c96, 0xd614d0568c541c61 } }, { { 0x841b8f689f20ef16, 0x8f01696966323062, 0xd62526d2cba6f8a8, 0xad7a1e300fa38ad7 }, { 0x6c594d6a0196c6c9, 0x954de2818e6b252f, 0x9affd9b6836c63a3, 0xe05271723de20de5 }, { 0xe421969148605667, 0x6382c54c4ef46e0a, 0x8ce9c96ad69544fc, 0xd5d07ee107bf0332 } }, { { 0xa263df4eb220585, 0xec22b932135ec9d4, 0x4deb44a9d9e5295b, 0x8544c9559a008e9d }, { 0xf43ec9415919632c, 0x87c5e66e28eddd65, 0x43a3e54c2e8e5133, 0xc0f5772144c6dd9 }, { 0xf0d3453694b69781, 0xd230e1452ef0f8ed, 0x799501e79a46edfd, 0xe0be2a7547e226de } }, { { 0x27509442b1ebdf5f, 0xaf5e41ad7971eb99, 0xcda197ac9b3676, 0xfb4bea635098a55d }, { 0xfd8dc3cf79ecc961, 0x91cb89c2846cb1e8, 0x4dc31dad047f2705, 0xb72185dd8980b079 }, { 0x3a77320e4ed562dd, 0x913d75b63b84abfc, 0x1a2af35caf584e4d, 0xdb0c87c5c9253881 } }, { { 0xa73a82a52b216435, 0x4fdd6159432135, 0xcb93698d264ec488, 0x348dc70f5ac3f3f9 }, { 0x97c3c7d2ed1f1a12, 0x2920679e9a0bec, 0xbce8930d9818a47, 0x442052448e224e87 }, { 0xb306fe56aeac7bf4, 0x9de82856eb6194b8, 0x2f999c8ac8ca6eb0, 0x2ac78f9dbff4353c } }, { { 0xa1a5ffab83d11e57, 0x83bc66a5d742e031, 0xf8bc3b4602eb5663, 0x6201ab8939dde799 }, { 0x2c480706dafe22c6, 0x5a15f15490691b0, 0xf379ef41606eb05f, 0x1bc360ffef887058 }, { 0x8e7bcdf514f6e0fa, 0x1da7efbf84a1582f, 0x986b3764a1181442, 0xc8cb86630f6f9fc6 } }, { { 0xd6b00e8339f5c5ab, 0xa3a0e5d7a0c8580a, 0x9ba11ac848d30dc6, 0x959356213855fa70 }, { 0x53ca7b9a376542a2, 0xf603d921532cc68b, 0x1544e4a4e8e889eb, 0xee81626ce9906514 }, { 0x392f2406fa4230a, 0x164c9394fd49f093, 0x47d11abaa075556a, 0xb541296449e54916 } } }, { { { 0xb78a197d0c0e4ac8, 0x327529f0a4bd248c, 0x6b5505423f632819, 0xa624d97cd505a7cf }, { 0xf6e38c3ce6c088d9, 0x46727726c3a9d44b, 0xf4c703017e298174, 0x69db19559102b7ad }, { 0x3b5460004fba04d, 0x49576d971afaec8e, 0x115dbb6ae49dc74a, 0x74f9bbd28d1e7e30 } }, { { 0xb2727e780459d52a, 0xc8d67119a867bb3e, 0xafffb97564330118, 0xccb6899f7e6db7f }, { 0xad3cdef5aeef188c, 0x1f58d76c35de3b1e, 0x2158fdd445543ff6, 0xf898599147742ea }, { 0x300a6b6afbe28134, 0x17261159a41e43e7, 0x221751dad5dde642, 0xe99ac15c70a5031d } }, { { 0x68372afff15c8d65, 0x4797b23f708b503c, 0x214de3977d6625e1, 0x748eea904207528a }, { 0xa0ed898da202ff8d, 0x48ad349ceaf0e865, 0x4627987f4b542fbb, 0xaee5312d6d2d844 }, { 0xc573860c45611dd3, 0x84ebd6af526969a6, 0xec0d3fd86b88a672, 0x7a464cfcd8a69a1 } }, { { 0xae0c004924e15676, 0x9046e0a146ce7b4c, 0x3c9337964fd268a8, 0xde9b7991d8e09d05 }, { 0x6a1cbfc90f38b3f8, 0x6e7b43f8b2be638, 0x86a9f2416f9a52c, 0x2646e7ce2ecc7ecc }, { 0x15802a200b24d6c2, 0x4a70e7b8f447f64d, 0x55629e43733f415f, 0xebd48509d983e322 } }, { { 0x17fa1a95cad9c0, 0x1bf799a13575b394, 0xcf08c1066e3169e3, 0x364dbc499f45ef8a }, { 0x468807308ec5b027, 0x60e678211d191575, 0x18df09fd68b592cc, 0x73bd540393471261 }, { 0xbbc5fa21233fb326, 0x4bc05d802269ba17, 0xcba67ca54db29d0e, 0x5903710d5f8c5676 } }, { { 0xae249ee490b822, 0xe7f48b0c9bb51d95, 0x8e78f0edb01083cc, 0x5268b80ba17be402 }, { 0xb6e14f952055e733, 0xebd0f76b23a65bbd, 0x2c44db46b514fc14, 0xa3faaaf5fd038e05 }, { 0x3937be0fd5da2543, 0x3252844f6ae985f4, 0x6967b9f15709e398, 0x85c08142c2c067db } }, { { 0x5b759c0b4a812812, 0x9a5faf9eb0de0aba, 0x37e6a4e86212a20f, 0x2d125b5b4c87b5a9 }, { 0xe62fd87a902ef5a0, 0x32795e604861b0a7, 0xa295af8aad1d8251, 0xea1ea41ff098301a }, { 0x7363eafd94799a35, 0x88463417ca77890b, 0xcb798979c67c2030, 0xda70065ec7183734 } }, { { 0x6b2718cce44899b9, 0x9a391e2230b44659, 0x7eca778052ccc2f5, 0xa4aff98962622126 }, { 0x5468e33b8d9a16fb, 0x3148205b6c362414, 0xf409938fa4ea1d26, 0x316f0aa7d817f3ec }, { 0x3ae8b7948199d050, 0xcd6cdc541028a500, 0xca73568f9a2dd3e0, 0xf1e79bed1e40740f } }, { { 0x8c797988b6f9054c, 0xe5a66c369ed6369d, 0x1b80458a1fffd60b, 0x8a955d55133a0a87 }, { 0xa311bc0660c631ab, 0xb3db8711333c9327, 0xa4131b74ad1f1744, 0xf32a7cf531106611 }, { 0xeafe24e94e2bb533, 0xd9ab2e39604ae279, 0xc7b1e750444657ec, 0x8cb9bed0d9574c53 } }, { { 0xae6c07594b695dc7, 0xb0736b164d04dfc4, 0x1013ef4dd2f5efb7, 0xca8629fb301bd01f }, { 0xbb9c12ef1ae1bef2, 0x9c70c1992a6681b7, 0x3504381b94964b7b, 0x11ae596d64e04833 }, { 0xc036f860f806f601, 0xfa64f9aabd33bf60, 0xca8c912e15d6e8b3, 0x1fd414f371ecd0a0 } }, { { 0x8e920b5efd4be087, 0xfc1795f4eb5b8497, 0x70047b27314af814, 0x127a53c901f0e226 }, { 0x185e4dfe4c2607ba, 0x241bdcf9a435d45, 0xa32d299ad194d645, 0xde3d99b5fde0fd86 }, { 0xb2f98bfdcd2ab12f, 0x3428f502e4d22d13, 0x95b497263739e731, 0x21cdc5597938783 } }, { { 0x4502657d04fa1ed6, 0x8e67a2c9351f9a5f, 0x75e5d6e2ed814b6, 0x9e7dd096453ff01d }, { 0xd1794849797ea4cf, 0xa6ed7ade8ea1d908, 0x1fa3ed69ef651d67, 0x3c9d5c70e3562466 }, { 0xe15cf4ab04533ea2, 0x575fd38cdb3a6fe2, 0xaee2cbcbb59b2603, 0x53cb2cbf46444e40 } }, { { 0x79868d037fb5324f, 0x7d57de1c3c9cfa46, 0xa54808042dc180a2, 0x1ad6d2896b822e32 }, { 0xdac3aea247a9edb8, 0xa1d14e07885e9a0e, 0x929ce90db53de563, 0x50108454a0bb0680 }, { 0xca4df7b7966ff89f, 0xf241da22b6933b26, 0x745950ab705cd1fc, 0x9ec00cd59c041d80 } }, { { 0x81f3716dd2842e02, 0xf2954038c5e0eb00, 0x76f165c516f274c6, 0xb1ead4d9ab8659ae }, { 0xeb3a2750b1ea62, 0x645ef3f81520b00a, 0xc259a581d07ad7b3, 0x278648ac75767a1f }, { 0x5e9cd3642b5da8f4, 0x8cc936335d69f04c, 0xbbb1f7287e55fc70, 0x839cf18438e9beec } }, { { 0x8fb243f8872cfd55, 0xd83bf4fe45106cef, 0xc25b3176709f285, 0xdb76f2dcc37e97ae }, { 0xadddaa33f5e5f002, 0x9e74ae9804de17dd, 0xd4c9459cd803665c, 0xdfe64c4f0571db44 }, { 0x5ef4d55bbb21923a, 0xaa8567595eda84c3, 0x241da068ff7e0035, 0x650c1fd079b91e5e } } }, { { { 0xa71a85c98ded7c6d, 0x6c8f79cc4d5677d, 0x5912d4a677dbc99, 0x2a9dddf87797f4c }, { 0x6913a5e51d78c7f7, 0xe4dbdb21035e3798, 0x3b7b3fb1376a0c02, 0x9230202ebec9c48f }, { 0x446ca8e382e365b0, 0x1bce4135e1d22b5d, 0x3c1fab30929bf057, 0xfce8dbed070fd205 } }, { { 0x54c3e0e405295d7f, 0xa8559f88e3ad2e92, 0x8e403730d7e37633, 0x3607460a6adf7eea }, { 0xd4bd7342d2bf3ce9, 0xb07823ec53ad5e61, 0xa785a6a3a336528, 0x762752500ee9a2cb }, { 0xf8be71b7f530e96f, 0xad8f8af895965032, 0xbbe048e6c0dca4dd, 0x7e0820b4d4b20737 } }, { { 0x1bbee6bd7481f18e, 0xe4ec91df064b7853, 0xf577962d4451d508, 0x8519c85226c50d98 }, { 0x3924e619ed83d800, 0xf0ff540fcc38b073, 0x58302fd45edcdbb1, 0x990bd1c27990657b }, { 0xa8cf8dbd05df2a37, 0x5010ac8fb6d01bd4, 0xd87da8100f6bad14, 0x70bebcb8ed3dba20 } }, { { 0x91dc8683b9937314, 0xc134cbcf30b1ba66, 0x56380ccc6c937b42, 0xa043c1bb78df9596 }, { 0xd1e144baf2808fd7, 0x5d7854b1bacca33f, 0xdb0314cffb1469d, 0xe399d67d947c764f }, { 0x5291798188d9e3e4, 0xa776f26c6c2d69de, 0x84b50e78c482f99c, 0x40a6264e69842960 } }, { { 0x8add12ad85b11cbc, 0xf6c0987aea8da362, 0x6781f582f9a2be84, 0x1579c21e98175d9b }, { 0xc69d5847f63f6679, 0xe366ce2cce5d1a46, 0xc066aaeeac62fac3, 0x3ae414208531a627 }, { 0xe375d99240ef8ab3, 0x449b98e6e43fee5, 0x5533b32e9fa4f08f, 0xe257e977e7ebbe2b } }, { { 0x3bbc407cced26967, 0x2b76cc7e42f301c4, 0x9a415d5ce021b91a, 0x5f29c4b6f9093087 }, { 0x8b6fb30999bc27c8, 0xbc0c1a7249596533, 0xd5694bc290ea44eb, 0x5d69b62f0efab48c }, { 0xfeb4ca6e4ecee259, 0x234a65fececa32fc, 0x656fa59ae5ebd3de, 0x257f5b131f8d1487 } }, { { 0xc1cf7a91b406a2ea, 0x6158f6e7bdf2bac1, 0xf4d506637280918d, 0x2553bc978928c2b }, { 0x3543be65586ebfb8, 0x811cdcfffae24c88, 0xfd46a9d5897da5bb, 0x598c1311e5bebfe1 }, { 0x4a94f5a6ba960b9b, 0x357c0e01bb646730, 0x306a0ff99922037a, 0x5b51386c47ed1bb6 } }, { { 0xe65a68a87256cbb1, 0xb5e617de740a819, 0x6e13e3aa603b9962, 0xf918f737090daf0a }, { 0x717bba8f2e0368e2, 0xe56b42e678b6bbbd, 0xe5f8da7bd6a0e8c6, 0x936529569727dc5d }, { 0xd2e6309c08a2255d, 0xd92fbbf3b035ac92, 0xc93458a2e5bf5324, 0xf577df0e56e27493 } }, { { 0xde28d6b32779ba7c, 0xbeeb7125b820ee14, 0xadf7310dc8c6e3b9, 0xc9b2ea863f450255 }, { 0x47aaa51dbc4452af, 0x31e43f0b739ce4f5, 0xac522eba9cc32fd7, 0xf6200818af80601d }, { 0x923a92e10df7f954, 0x54630d569446b21c, 0x1ee6ca983863c38f, 0x49aa2b5e124b7458 } }, { { 0x921aed67922799e6, 0x61e15de6f660ff73, 0x5d7f50fdda72fcf4, 0x2ec5287f6b8a1a53 }, { 0x89a85ebd273dd4cb, 0xf9fc4fcab5faee54, 0x8ab64d6f5acde340, 0x23f87a81119d858e }, { 0x3ade6abbcd6ebe22, 0xff98d22345a81bc5, 0xe71a7f0477e9d54d, 0xf72c9b479d793a80 } }, { { 0x88ba972beec70561, 0xaa4838417cda09b9, 0x7733714fdf6f50d1, 0x6065783d8d93b69f }, { 0x71486e08a422ac81, 0x2cff3ae65bbc90c9, 0x378f0f46b9ae1df4, 0xc144e253bb7f7d3 }, { 0xdc15deb681ee4e23, 0xdd2734495fbc9dbb, 0xb09cbdbd0f550227, 0x5b125fc1aa8b37c8 } }, { { 0x9b3b36aa3cf4eb98, 0x6da8105fd02d28ad, 0xa9e4730e0cc36539, 0x18f8697a30fe6a43 }, { 0xef870cdcfcb90ee0, 0xe18e64e38df39cf8, 0xb84ea524c8e728f8, 0x97a51e4cd7f8fd7c }, { 0x6c8cc23b6fe8ed3d, 0x4a8cd77efda9ea48, 0xa15eae4b25315d5c, 0x4171c51d31635a4c } }, { { 0xfd8a68065b1ad59a, 0xb777d4b88302b2dd, 0x4708c1692a9d6085, 0x63bebb146c4c1a85 }, { 0xb9d69cc990171c1b, 0xa3a35ed05d32877e, 0xf51f3a97953daae9, 0x7cb2d5d2443218d4 }, { 0x53a9e080dabb659b, 0x507ad92f6bd44990, 0xfd35db3e894fd112, 0xeb31dc1f80c4d57e } }, { { 0xdfe7e912a986941, 0xf164d3d307fa28a7, 0x28f556c1b9355515, 0x7dd3b7a2f763db49 }, { 0xf7b1c030b3a9b86, 0x898bbb6e8e08f0b, 0xd7727068c29faeb, 0x7a5d9c42581b445 }, { 0x1566bd54cebdc90c, 0xc5df5cffcb6a6653, 0x4766b287cd4c951b, 0x670debd18dd12630 } }, { { 0x13015579cd9c4ffb, 0x7c2a7441f8b769e4, 0xe7360443f1bf290d, 0xf6a1115a42c234d0 }, { 0x03ced9346519f1, 0xa1a0bdd15c9cc300, 0xdb31ac68041b09be, 0xe2040220b5be1f74 }, { 0x910f3ea2c68c2503, 0xf7061ed184a7626f, 0x22bd34f398c6f9db, 0x8104744879637530 } } }, { { { 0x4a857aa97c2e01b8, 0x9b3c237fd9031e77, 0x36795a40ccd239, 0x36c5b49f73501051 }, { 0xa59331df85382285, 0xb993e8bd68aca203, 0xbee442d4f7767e09, 0xb9977009287f840e }, { 0xc445699d0939592e, 0xa5e5d5080ab6dc85, 0x38c607083597b3d3, 0x86ba7f868d5b83f6 } }, { { 0xb2ab9870d109de78, 0xc1ad8607e07bb812, 0x9094a7dd5c5d3698, 0xd615dbc48a5b3b2e }, { 0x28bf11b59ab5e0d7, 0x15dc85bbd472c585, 0x711f9b8697c2c2ff, 0xe6d092c86efbdaea }, { 0x25cbf399100f17b3, 0x5edf25d582531f2b, 0x6598460adf660065, 0xf84c24c2a3265160 } }, { { 0xc8933ac4b7d50172, 0x3a0980a1cb4e4196, 0xd05845a07dc7e76d, 0x27efba0ad87d54e0 }, { 0x5625a23e4dd17f9d, 0x302f8a1bae7a3979, 0xaa19aca197732b87, 0x3737a79dba277d67 }, { 0x7c100bdabd952ec1, 0x620b88ba802f6c69, 0xae2d49e53aa7262c, 0xb48bb74282bb95c5 } }, { { 0x77a3b34de7e0835b, 0x254cd481f5e46dbc, 0x5bf4e08ff45a70a0, 0x4ea830d3eb390986 }, { 0x51a89086e33320da, 0x753f0ff5f9636270, 0xae0abdeb7a76c929, 0xdb7cc7c1c86edb7e }, { 0x8a15d97f853467c5, 0x657c8cce8753a5ad, 0xc3a42f373c83c99f, 0xbc130c96cd012bf9 } }, { { 0xff2130e6a4e9587e, 0x6628e29cf9cca722, 0x268fceaa5b13a2d8, 0x90af22c87b976bc3 }, { 0xd52acaf9de750c60, 0x499eb1d144701edc, 0x48f2eb0dcf6dfda5, 0xb0f3b2e19dc5b906 }, { 0x5abc3d64d62f183c, 0x52d80b0655e6a390, 0xa76ee2d73b312779, 0x99a8eff3d97b3eb3 } }, { { 0xa94b96a5f1e6833b, 0x537d69b6860f890d, 0x73cf557ba184f9ad, 0x8b3c1a2d1dc5ade2 }, { 0xc78ff4beec86165f, 0xd281d45b0606118, 0x121993a738d639d4, 0xdbb7b05e52fc43f4 }, { 0xce06eedec9307de0, 0x77c0f71eb44f8e7c, 0x338c3af23cd739ee, 0x99decfce5b8659a } }, { { 0x78bb82266291e1df, 0xbea0599e43d8951c, 0xc0255d23b7aee512, 0xf03356cf246dd5a4 }, { 0xb5c6841f642c7e1d, 0x5256979c03bd210d, 0xd4373f467ef2ac8b, 0x9420c45db2a1841e }, { 0x6fc028d466fba031, 0xf021e20f1f5a0185, 0x9f0f2d8742bc30f, 0x7216d0711096afd5 } }, { { 0x6d238d2fdcc19391, 0x55f743ab5800519a, 0xe650f75f809b1893, 0xf43d2254b5fab2df }, { 0x794b9e7630ac317c, 0xfb45d3f905532cc1, 0xbc9ec144ae2025fb, 0xadc7f93f13a4f0ab }, { 0x7e17dd167c7505a6, 0x31ce704d0060d358, 0xcc86b8d225cfaef8, 0xbec9053196a8eb50 } }, { { 0x5efcd44a63a3392a, 0x65019c227ebe4cf6, 0x60820cc07366c9e8, 0x7e2af5342289bf48 }, { 0xa7d4d2baef3caedb, 0x552e6a91f615029, 0x32d5a4d020aa1c2e, 0x3135ee5eea4ff926 }, { 0xaffdf0dee9b9a7f2, 0xd746c5ffb998a0d8, 0x58e697c5757fe959, 0xf3ecdefe5908498b } }, { { 0x5ad564033d92dc19, 0xe437fdc7e23e81d5, 0x8479bc28a8b01a38, 0xfe183f6109b1b6be }, { 0xd6086003b7e0a5, 0x7857127046d7aaa3, 0x4f31a946caea5da7, 0x1e1084ff9924887b }, { 0x13662a3fb9d2e797, 0x1ec07f870ccda6dc, 0x429c8bce4f743e60, 0xb602b5844384bbbc } }, { { 0x5b85795b17813ebf, 0xe8a60183182ca879, 0xc4d573f2cb64b8fe, 0x7a5e73fa958f3f32 }, { 0x55c186a376a09ded, 0xb1ec5eeedf3f7130, 0x1b77d5601aeba464, 0x97ab0fe7fbfea034 }, { 0xc3abfda58903d401, 0xbc2bba6ebe915fea, 0xbac7bf079b93f1d0, 0x47efa9a291fd7fe1 } }, { { 0xab2d3b9b3787e35c, 0x8f1a3903d498ccaf, 0x3a28e30da59307da, 0xaccd163619ad904a }, { 0x8578e6c8a25a4c3f, 0xeefe90c2a1576bff, 0xd7204a35c6c08760, 0x94507bf1f5ed88fc }, { 0x4cac06b9bc1a5886, 0xe77697f543833010, 0x1a49f9e0343b6113, 0xd2fe45083e083914 } }, { { 0xfe865dd20f6f7745, 0x3f956471b9de0bef, 0x42e1734e8179e027, 0xb1963007b5edd2c0 }, { 0xdbe485b296ed04d5, 0xf6094b48cc6ec719, 0xc3e319a9782ade7b, 0x28a10f8adfdd2691 }, { 0xd2e4daf3789d1de2, 0xedd708d9cb396a72, 0xaeee446e8ba4412c, 0x6cbdb2cf428e59df } }, { { 0x485c325402141474, 0x8a1c94ee031b6a80, 0xbaa6f475d851a1dd, 0xa64a1d48f05accd2 }, { 0x1ec00083217d13, 0x965e76689ea9063e, 0xd022960c4968c786, 0x91f72ae90a61b4e3 }, { 0xf086cd2c36fd5ea4, 0xabca36d8322ec658, 0xe4fc521caaec8b24, 0x3c16db5b9e1cad91 } }, { { 0x84ecd23029bbaded, 0x22e6cca6b42bb1b8, 0x22c0d37296c830a2, 0xfa06170791f3e0bc }, { 0xb3c7f04366226602, 0x881ba584ff3337ce, 0xba2ebd630737c45a, 0x3b3561336a0fc8f5 }, { 0x5717a90c5d3a8c87, 0xe05f16a8f80f72ba, 0x7c7c9977361ee309, 0xcc87a05ece3b992b } } }, { { { 0x52708701ce9611a3, 0xf07593024ef149bd, 0x7a857fa3eb2a6e23, 0xb8117d368c1388bb }, { 0x6308d1cd8deeee2, 0x9bd836e955a60733, 0x7e0b9cb747aec6bf, 0xf73fca6c64c41bbb }, { 0x4308121a3c2bb040, 0xa03e6274a13c1e4e, 0x85ea7bf646d4668c, 0x239283755a8ee771 } }, { { 0xacb6bf95caaa966d, 0x17624653dd641202, 0xc2272e5994dfcd6f, 0x254555c007533cb5 }, { 0x2716cbd3780b2275, 0xe6ee8578cadb61fb, 0x4b87f98bd6efe33d, 0x1c06d6b0a1a0c7fd }, { 0x8b760f1e276b7578, 0x5aabf590165f21ad, 0xcb6da29b4b9866a6, 0x9a27840c7dfeffd2 } }, { { 0x84c428ec1e9d7bf4, 0x100543e81b44f28, 0x4c01315f2dffb60e, 0x295555a733eef594 }, { 0x423636cd0b09c6ec, 0xbe4ab2259398a1ae, 0x77e4100a5294c875, 0xf0eefe152e7e920d }, { 0x37913b5899a43167, 0xa5b42499944e0b5f, 0xd44e4b87d12272f8, 0x4bc2f020ba2fadd1 } }, { { 0x57d2fc331787ff8b, 0x34cc5c95dff69590, 0xa832ae56f06f4c0f, 0xbe9131321dc71cf4 }, { 0x17f61b0de09f3f31, 0x1f45efd755caf86d, 0x35705d5d000cb241, 0xa23045236c76f5bd }, { 0x9928b3004bba98c, 0x4b4def3342034547, 0x38c0e62fba52add2, 0x171f9a29714ce671 } }, { { 0x740f9ad7a09e2e67, 0x812e1bb0f8cefc08, 0xd24ea17c7bf8ba00, 0x4dd29a1a5d71493d }, { 0xedcc0596bda40796, 0x65f5450aac21b8a7, 0xf9d1426f87683583, 0x5ddf2c468b42d9ec }, { 0xa684452029036eaf, 0xf1c7be5a82685c4e, 0x57c96e55b1523d1a, 0xdf273035eed26f3b } }, { { 0xbf7b097caaff75c9, 0x4971eadc4007a217, 0x690c3aae695ad6b3, 0xeb67cabe7abe600d }, { 0xb64f2d182b1e8d1c, 0xbf59e94c356a1b03, 0x8337b9000417bac3, 0xe1281e482e90a87f }, { 0xe094c73ed3c6a765, 0x79294133d4d75132, 0xce5434e48512a982, 0xd881f41486407fc0 } }, { { 0x2af0171fa9b3239e, 0x7137ca47e6e5067c, 0xa8f7bee2beb56304, 0xea57537cafca2a38 }, { 0x8c2e4b978563bbb7, 0x3326555f1ccb4108, 0xbd5fc0b422d32873, 0x595253ee619c8d10 }, { 0x2329bf8fff2d4449, 0xda7de4da26a0a0da, 0x7dce5330858c7d32, 0x89bc0eb7e78b9abf } }, { { 0xff451643ff7d97a3, 0xf34987e14ddf28e4, 0x1bd835cb2b1c54b0, 0xc453ed2d8251fa33 }, { 0x99d0f966bce1e95a, 0xb711d6a79922821, 0xcac15c192d7a5fae, 0xaf0680198a137666 }, { 0xace2595943d0c166, 0x49f9d9622a0d74aa, 0x36f7a219e02cbcd3, 0x32b971bdd4650bb9 } }, { { 0xa057677e3ee83abc, 0x8f8e87f37c6ef279, 0x99d2c49631900b77, 0xc41cabbda9014cfc }, { 0x52d8725c47531fa, 0xcf94bdab99450c00, 0x208b48f6aeceba6, 0x3ae6c607f5328823 }, { 0x836a34eac3ffdd1, 0x858a2d65393f19f1, 0xc8e4cd79f9d36f6e, 0x367e3f405d908b0b } }, { { 0xf62590c3b571134f, 0x72264dfede8f4b10, 0xb6377ef2748eff52, 0xa600905a905ec0c2 }, { 0x52a5bb41c30acb0e, 0xf68a08d5ef19aa5c, 0x8b1f8e51b35c408f, 0x7212c8896bafb6ce }, { 0x752fabce1f26d638, 0xd4d0ccd2636d857e, 0xdad4a6ecb09fb9d8, 0xb2a736ad3b626f00 } }, { { 0xd25efe4fd820f6f2, 0xd5804f0eae74ebf9, 0x76a89010fddba9d5, 0xeb3c06eb09f888f8 }, { 0xde5ca5704b5dcf17, 0xf6c40e98384a40fe, 0xf91c754cfa252599, 0x337ad1781793c35 }, { 0x1ce8574a63fc67cb, 0xe79045f0fdccf968, 0xa39b47b074147b0b, 0xaa4bcee10eb75427 } }, { { 0x8f2771b6fd462c4c, 0x2e9ecb478e6fd9dd, 0x559687956ac265d4, 0xcdce0f01dbb9537b }, { 0xa73fe74afacb9a32, 0x5072e504e7b917f, 0xb62f7a829b3b09e9, 0xad68948f1d352646 }, { 0x1087315fa324c4a6, 0xac4944b910e11eb1, 0x4e73d598f7a4cdf3, 0x58a2dcaa724c724e } }, { { 0x28aba7bd60dc6e4b, 0x403f22aabb01a6b4, 0xd037a24cf524d47, 0x79f4f6746e7bbc5b }, { 0x3a01ed6b10bf2d16, 0x4092dd669cc04a91, 0x85def355f3f33657, 0xd27cea8d42839f4e }, { 0xece7f6075354ac7b, 0xcc1180cb11b2a8ac, 0x63b95b86782451be, 0x6a3af97c490f00c6 } }, { { 0x6a8f9b31da22eec9, 0x66e6f3c3544f7758, 0xd51a0ae6e27301a6, 0xbfec8c21670c09ff }, { 0x8af6eac8db5fc9e7, 0x67a8e399115e1979, 0xb4923d7a24d290ab, 0xc3c276ccb87886fa }, { 0xb6d2a69464f3dad8, 0xd271945a63bfa77b, 0x766dad512548e064, 0xee68c3d4db53163a } }, { { 0xe69a7d419537bd11, 0xb98f4692c04f52cb, 0x274f1c645fd5f504, 0xa7e714e2b6ea8aed }, { 0x2019eb061b6be1af, 0x6c099cacdb4085ce, 0x8e9ff6a930f8ec70, 0xc612821ae4fa43b2 }, { 0xc2a6cdf40275ef20, 0x8c720ad8af4d647e, 0x2646b3f426875904, 0xdd7f1701edffb251 } } }, { { { 0x5b35ec98c9aa12ee, 0xbbc91475593f547f, 0xee500399206b2b88, 0x8610218de76465aa }, { 0x7f0db1ccbb53b122, 0xbb1ca4a5de8ddbad, 0xe98514ba68e7a26a, 0x8798fdf52cddd75d }, { 0x617c6bc179621b50, 0xe8bd4fd0195d9a0e, 0xf7c0219bad47ca13, 0x2f129cdfb2b4dd99 } }, { { 0x3b8747355085889a, 0x34e2321782a6cb22, 0x5bce3f618d0771d2, 0xc259d7308b271237 }, { 0xdaa543885585b893, 0x3d0f06d59ff3a0a8, 0x415497efdc4870c7, 0xe2f4f8a9a924f26c }, { 0xceb24f58eaf11554, 0x7d60d4b0a5c5f99e, 0x614553a6d748a081, 0x11022baa3b3b0866 } }, { { 0x4db3c3866af20b77, 0x93a6b7337e5fb097, 0x1a5f8801e5d9a329, 0x733abb8b9d1008de }, { 0xe46ce91d848f6627, 0x58b1075564b07ac1, 0xe11acf97ddd47755, 0xab71317a5d172d72 }, { 0xa06f2515e573c739, 0x99ff03025af12f59, 0x6511ae8321dc2619, 0xbfc6d3de0ed37358 } }, { { 0x518da7c9bda8f4ae, 0x45f4e6c3b52d4b2c, 0x379b37766e4ca705, 0xffa30fc827394543 }, { 0xd0e857b983fadc5f, 0x298afce41a42ec52, 0x9a2c558d0926665b, 0xdabc37bf8f8ba769 }, { 0x8793a52eedc44e8e, 0x705a0d05b59b023a, 0x2a2bd1f631162913, 0x3594afad6a5ca12b } }, { { 0xfb147dc90b441f7d, 0xe1416956833eeb7f, 0xc71038d04d367f06, 0x5bb3c44a5df3f133 }, { 0x8b43334711e14fbf, 0xb5b6c72f5c27245, 0x9a7649f672babdda, 0x4f9b187a428e73cb }, { 0x229c5d9c6d3251df, 0x2ce994c09dc4f956, 0xd976eaf66e6f7372, 0x3b4930a6b40ccf0a } }, { { 0x1e6b43444959b293, 0x259c7c27719545b6, 0xc1d5822fc43335df, 0x78ddbdf53053ed5d }, { 0x8ae2ab228b10c2b9, 0x6c202e6079877817, 0x9d4ac74fd0cd8383, 0x34706fc11f8f04db }, { 0x7a72a3e1a312da7a, 0x3de52dd0b3d26367, 0x502f05d9e7d89eed, 0x3356ea876a955c37 } }, { { 0x1b697aa92ab55fe6, 0x1cd439101c5a1bf5, 0xcd8867c340d2b4e1, 0xba239358867f3597 }, { 0xc98f26cc163485f8, 0x3433499189fdba8b, 0x158558fbdb69ff39, 0xd793ad2d50c7d133 }, { 0xfbdf03fba3ae2653, 0xa638def6a844d2c0, 0xce7e9f671b8403ed, 0x82014a7779b2a685 } }, { { 0x1a2af3c1e3a77d41, 0x29d7b8e40bca048e, 0x6fccb12c8f8e6f72, 0x97536a7f9b261651 }, { 0x7caac2735e514441, 0x214d0684dd68c5d6, 0xff438e9860d171dd, 0x6f7de8fa17667342 }, { 0x75dfeec02b05b115, 0xc6af90a4933e7223, 0x44ebf01da37b9588, 0xed8730c6d3dde337 } }, { { 0xe19af23e86ddb8ae, 0x29ec9cc7a76bcc0c, 0x4b988c64ae27fabb, 0x9e283b0b501b06e }, { 0x95be6ad54b5d4471, 0xc497b2d10198781d, 0xf1a3968937029745, 0x5f1b28e2d9ce2eee }, { 0x7943937b41bd7118, 0xc6a9bdbe816c1f27, 0x15ee6f5b512c99d6, 0x607e6b7e3126c891 } }, { { 0xe9f8c2ff77854349, 0x22625722dbe71a94, 0xa723201f51e298df, 0xb109636e14504373 }, { 0xf56ba866d0726ca7, 0xb03fd0ecfa06a6c8, 0x539562dc614922fa, 0xdf2b81b2e9b4de31 }, { 0x9536717e7570fa69, 0xc37948513fe228f8, 0x7a8dc07a40e12d95, 0x752696a528bde58c } }, { { 0x5d4ef007f28746c4, 0xf65cf2cce4dc34ab, 0x94acd4e50e1a16fd, 0x7a1f7de647b8cb2f }, { 0xfa8d5cc8fded63a1, 0x531b19e79bcc434c, 0x3ed1d5db1ffe6ee8, 0x5fd544ffa7ac9b0e }, { 0xa8761fb5f53410ee, 0x519ae19bccc62769, 0xb5bf1540a3ccd2d, 0x21f1a6a6da84fe35 } }, { { 0x8f3df1e0300fd542, 0xbdf0693514aa959f, 0x8ed65aa753ddae5d, 0x1df6f6038667e7e0 }, { 0x59952117991f1440, 0x36afe618040d1624, 0xcb3313aaa7476d2, 0xdcaa21fbb19cdcc1 }, { 0x1245dd4339c5d17b, 0x73d4a23a2d14ad02, 0x8606d36a1eb2d6f9, 0xabe5b0cfc92615a9 } }, { { 0x40fee5ec8a1921c2, 0x6aae03b69bbb8d1b, 0x75c9483eee06115, 0x5b5c406b464afd48 }, { 0xb765c38ca093387e, 0x772e21c86d35ead2, 0x5023de0d2cb73207, 0x73abba147ee3bf09 }, { 0x218a6f766a36c103, 0x5cde047be9d93678, 0xcd86a5fc796bae9c, 0xb9969c2c01d58aae } }, { { 0x11dfc815fceb6123, 0x146d51600b4b024a, 0x494d7792cd0b222, 0xe114dbd86d9174e0 }, { 0x5e64a138e3a6060b, 0x8afe9b2631ad7d7, 0x781e8bf02cbcaa8, 0xcf18531c59e3294a }, { 0xae871c48b455135a, 0x749cfb4d564befb3, 0xe2ea5ac8aa60c689, 0x5a287604b98f239b } }, { { 0x4ef3455ce8c0fa84, 0x15b98bd5a9f42b81, 0x55b8956d22a27a5, 0xe8b6262aef9c50f2 }, { 0x2b781cd2f2f6ffdc, 0x26b67f30aa00e902, 0x7a2f86dca70e87cc, 0x5961821264ccfda9 }, { 0xa2f71cc29f4e4d5f, 0xc6b26f6b1cfdfa7a, 0x96c2eeb8adb94c68, 0x957b89763bd2642b } } }, { { { 0xf188dc5246fac7ab, 0x647c374b3fde4c35, 0xc88c391878f361b9, 0x4662568fafeb7f37 }, { 0xd5d7441b538c7cc9, 0x55d70af290975417, 0xce01427f8077adf3, 0xe6db56df68866eb0 }, { 0x7f0232197aab4267, 0xa993df11c2f628ea, 0x130472a70f942462, 0x57c902cb90bab9f2 } }, { { 0x9dbc72bfe043e939, 0xd830a30f47487882, 0x3c1eb44ee3f31d1b, 0xa9ed32494b8e8561 }, { 0x4e15ef3569af5b58, 0x851ef6d04481c22e, 0x374247958f486e69, 0xf7573eff51a6a4b7 }, { 0x67b421f6568085ef, 0xb6d91d1f8c2be9ac, 0xd146764307b2784f, 0x4f583fe12fb6b729 } }, { { 0x9ef2811bb0e98dcd, 0x9a0b14c4cda639c3, 0x4db45bd27e4f3953, 0x62e4edf82a850138 }, { 0xedd6c42dcbeb2a21, 0x832082dcb7485cbe, 0x35a90c51ccaf3366, 0xd2377cf0a943bea }, { 0x2afd4e44626e86ed, 0x43f3eefec2a85ef7, 0xb13db53bc654ee7e, 0x4a26b587020cacd3 } }, { { 0x54ddd4a0d0100188, 0xc0066ae11262970, 0xc70da714c764800f, 0x3f91302b16ca5fa8 }, { 0x8da322a28f6a1ae7, 0xa8ee9b6fe3825403, 0xdfcfff7ba82d3c81, 0x41fbe11045c9703d }, { 0xdf75f9efdf202f1c, 0x2d0411dc4fc81994, 0xb61c4eff41ed1ef, 0x5f91ddc5c2ca28d7 } }, { { 0x79883f9ee8b7a9ae, 0x9793a362921f71ac, 0x89cf7379042c3c2d, 0x1f36a0d8f39486ac }, { 0x5bff4ad369c6aae0, 0xcec60392d0fc1b5e, 0x65c148654b5900ca, 0x1c2c8755adee5fc7 }, { 0x6419ac0bf08dea6b, 0xdd6ad9afcd8ef753, 0xc02e6a5ed3730251, 0xbaec16635da85210 } }, { { 0xc02768b54341c87c, 0xfbb7cd95c165d1a, 0x8c7a2c3baa19a046, 0xb67cf05c793ece43 }, { 0x4d36c8392ac269f0, 0x3cca82115f6d69a7, 0x9c1be9cfa532ec7a, 0x51bbe8fc0ab5ef31 }, { 0x6fc7ff0463c0595a, 0x114ff07eae5df9ed, 0x69d16fed2f24fb56, 0xbfcbf0b6b6dd372f } }, { { 0x523dee1f2401e2df, 0x48d24a730b7465e6, 0xf3e6bc06e9a21de1, 0x6cb8b5d79ccb59cf }, { 0xc1bcef1a9f6f87ae, 0xfedbd0ced8289560, 0xccb9d3ef54095251, 0xd7a612c1f516e9db }, { 0x3176fedee0df6e5d, 0xe2e659fb7ad927e8, 0xc81402882a05d8d9, 0x5123f3a458b970f0 } }, { { 0xef7be6698450dc5f, 0xb98d9cbf0f7b8cdf, 0xda656f818dc69f48, 0x6856984322866d8d }, { 0x858ce95bb7c48fb9, 0x50858b8174a9d333, 0xc907bc27a25bc6d3, 0x31158cd3b48413ea }, { 0x92d9c66d8e1f9138, 0x5175ab3de817809f, 0xbfe5da447496c86e, 0x5f50864dc7c3049b } }, { { 0xc3b28fe9e37b5168, 0xcbf93338ac6e7e2e, 0x707986ebc09940e2, 0xa0b8f8c96d31f1f5 }, { 0xf506aaa18b68477d, 0xf4385688c4736a0c, 0x9b89b7cecf8d2ee8, 0xb70feb8c7458475b }, { 0x1d3b1596941e3a42, 0x907a833f104fad49, 0xdcc97f9817a09fc6, 0x321c6db86a16dc5 } }, { { 0xe5f18c84ef2c6533, 0x2b98269f38135545, 0x4b9f442ce792ad0f, 0x9ba9f00a07f0acef }, { 0x60b9f96079897961, 0xe9b9d1fc44e5a4c9, 0x706e793e31618ada, 0xb4ed6fa703d465b9 }, { 0x5979c79c7cc7390d, 0x9369d73ca7e1a344, 0x8203aa34ef58a074, 0x641927e4253995e } }, { { 0xe37ea06221e5b90d, 0xa46fb860a77966f1, 0x2f1fdd34e3be36d5, 0x6db08ff036776848 }, { 0xf16ffa634f14b014, 0x6cca296d5ed30978, 0xf4ba1395d2df946e, 0xb99dd501cfd702e2 }, { 0xaf4d3b34413033b3, 0x29bcc55710ff634, 0xeb3e71841bb7c16d, 0xb70a362d0f8bca6a } }, { { 0xd5bfe615c8515392, 0x681cf258fad27e09, 0xd85c102a1eab75bb, 0x88d4658316c0a6c7 }, { 0xab8d6a4fc19eb3b, 0x11f1aac1a47fe43c, 0x3a072cad6a076893, 0x80008dfc84e61809 }, { 0xf8d1aafe4a097852, 0xa6a547762ddf082d, 0x1e651d9c3ae13e30, 0x16f1e291b3bb0e43 } }, { { 0xa1050e6c48dc6e54, 0xc42963637b6b747b, 0x2b504b73d7c646f0, 0xe3b70788b53f9ce8 }, { 0x6e9de43a6f2545bb, 0x248ac0fc4bf97730, 0x16e3cc00b6509df1, 0x5a60ead859fa2c75 }, { 0x8fbed9506c54a2c7, 0xdccb53006081b8c6, 0x26f11bf6bb9b9a23, 0x305899fda2ac392c } }, { { 0xa96bc3de921dba54, 0xb82a9ec9700685a, 0xaa73b81c468435ee, 0x56350d9a288e0cea }, { 0x2f423086efb3cb20, 0x577695147b16efc3, 0x7028af37a8dbcdc6, 0x52cc0d1b41cf676a }, { 0xcfb45661a60bd401, 0xcef8044e55c6fed1, 0xfe8091a8e58b1597, 0x84838d2b59f33fa } }, { { 0xa416d975ef76544e, 0xf273d90f0da48b74, 0x2641046dd6a42b4e, 0x3f871b5d54b33f15 }, { 0xfe0d5e9a15c8cb27, 0x22143f08cb7fe19a, 0x602ab052e6d825d9, 0x4537a7fdab9b0d03 }, { 0x68a4ab6cdf95ef41, 0x2b1b7dd2b1d64abc, 0xefc2ac523d563648, 0xae686b5994654dd9 } } }, { { { 0xb45fb30c4e2540bd, 0x1973c66cc30f7dd2, 0x2d2aee9f8be460b7, 0xfcd7d34da1e54420 }, { 0x1c3020a4a6a2002f, 0x7ed4350b1950b45, 0x4899edb1beb99e22, 0x321e24de4caa64f9 }, { 0xd0161c06cf846769, 0x9b60e3c372d364ff, 0xc55dd56998a0e8b1, 0x2d5a6bcd67ae9861 } }, { { 0x14013e2119c5f2f1, 0x9ae0859eb2a93625, 0x8c945db9ef8fde37, 0x7f7bb4d24412962e }, { 0x9702a90d1c2cf674, 0x6af71f2cb97e3696, 0xa51840856b59818d, 0x3fdf758dfcb0aeda }, { 0xef843e151b929e61, 0xa444ead1d002cf84, 0xf697ddaaa157ddcb, 0x801977aaa4c46324 } }, { { 0x514e24cb8d7c3630, 0x49a41d4a824b1f02, 0x81c7dd8c46856274, 0xf9f4b57d166b37b1 }, { 0xb735321bfd295fe, 0xe21dd9de29049b1a, 0x48df4e9de040803b, 0x4b40fe1b4f76dad2 }, { 0x6085cb9e802179ac, 0xa1d1ddea4e3e78c1, 0x12e1a74c6a646ebb, 0x83c8a30b23e8cc37 } }, { { 0xb618e9ca5c51fa3e, 0x25816cbd8c98735a, 0xf64e93077c5f571c, 0x9d8f5488df26bd94 }, { 0x8f306dcfa10c5ba7, 0x528983f53f6d156b, 0x9ecf068dc7c897f6, 0xb37eaf96120c7cf7 }, { 0x881b87c51e17cd6b, 0xd615da89ec1ec826, 0xaf4f6eaf2ae15f70, 0xb450166073d31785 } }, { { 0x26d75d325015dd50, 0x186d3235f31a1707, 0xf166019c5149ece, 0xa9da8c92f7aec89d }, { 0x55586c0e0b9f3ee2, 0x2afd434dfda78ec2, 0xe945166a6c597af4, 0x1c3bee939d5b68ee }, { 0xb952dea6be393fa3, 0xe9b4b8606a1771f9, 0x6f22e5c7e78adc8, 0x8b2a69f7d4aa30d } }, { { 0xf5eb4c4daa0532ec, 0xa8074b625196808f, 0x5ccc916a2505bf33, 0x8d40f77e1faaf878 }, { 0x6f05a72b3e8c09fa, 0x1d3288fdb0878a85, 0x1d9f4a0a9747772d, 0xcde30fde5d22e9e1 }, { 0xb63bb3ec09fe8b6d, 0x8a6f053822286146, 0xb7aa921d904c01e1, 0xc6b50e153a8131eb } }, { { 0x7a3d0e30f7cb6fb, 0x8be4eff5fc759e56, 0xa100251ed89b3b9d, 0x7e514e09217d4abe }, { 0x76d895cd2a25fa5c, 0x5a42270bd871abe6, 0xa525bab821627079, 0x62559435695cc062 }, { 0xf8deaaa952ac3728, 0x84bbb7fa14022379, 0x37a3905e2ccf151, 0xb4d719e35db3c4a } }, { { 0xfb189ddd0c46a67a, 0x632d498ab9257a58, 0x8d04abfe78dc537c, 0xf30486bc57c35dc5 }, { 0x67c83b4045aabf5f, 0xfc4931d367b266cd, 0x264da9f92e6591f0, 0xa5994d56b3883292 }, { 0x3eff3bf68aab77c7, 0x83b7716000d60bbf, 0x7fadbd015b63c2c, 0x1b4ce4bd1994dd07 } }, { { 0xf0036317e9c8afc4, 0x98b31f82e1e9718e, 0x6635f647bbad60b4, 0xbe9ce9ec0e821ba1 }, { 0xe6c774a0606d509f, 0x62cdfe3a49254737, 0x716a4153f4153c24, 0x5ad23b7baa55aab0 }, { 0xd06e3c9f3dc56945, 0xd1ea85e508fdebbd, 0x460682e32c78a5d4, 0x504d39e1a9d4746c } }, { { 0xb7ada45944e0bd24, 0xcb4421d6cbfff2ed, 0x5deacda6f990cca5, 0x929edaa132761c9f }, { 0xbea0f9af50465da1, 0xb067ed98bd109176, 0x85d56d434ab83173, 0x5dd79b69187e8b7c }, { 0x14d19e894f706d2e, 0x7f1c6b5892b6962d, 0x721dd47f231426b8, 0xb2c09cf98e0054ce } }, { { 0xd9d3706fea5e0f40, 0xbb67bea315b4f45e, 0x90ec4f3cbe460ecb, 0x5f5a61b9fa8d855d }, { 0x82f547f558010a6a, 0x8c654475c43a6d9f, 0x3d4acdac3894af2c, 0xda8da4b2f8baad5d }, { 0x146be7b3c3c5e1eb, 0xb4a7220892410a42, 0xc23d776d1093434d, 0x862607d4400a2abf } }, { { 0xf340a7a934bdb7f4, 0x86df4cf75d0d2054, 0xb97d0442d5f08ae4, 0x782a73269c9b4931 }, { 0xebc1b6492bc70c22, 0xa561f80e65152177, 0xf2d4959e07dd4cdf, 0xd249866b69810eca }, { 0xc2f6b3b679b65c9d, 0x62ebfe22aa2611fd, 0xd4ef7fb63503ff24, 0xdadd7a1ca9a6c314 } }, { { 0x3753a64ff135ea5d, 0xb693e82e6a4299e5, 0x8a212ca65f9d784a, 0xff6e197aa3163bbc }, { 0x29f64ff99c028c38, 0x346acb70f2b23c58, 0x6b56fb4266f2009c, 0xd9d7f1a297e6a52a }, { 0xd01964d558d4dc18, 0x46bffe721300fe92, 0xc1006241d08cc60e, 0xd8cc9cc8ab843bdb } }, { { 0x22753e17dca0becf, 0x23f34dbe27e1c900, 0x481cd6b7da6e9d13, 0xe83d5185f69cb97f }, { 0x2ceac28447fcd8df, 0x25bd63f3e535a35, 0x20e02da7b137d8dc, 0x7dac78729ca445f8 }, { 0x7fe9b808f8eab1c, 0xaa6fcef0659ae49e, 0x2b8603f6d89ce9af, 0x40ce7c3f3212b183 } }, { { 0xd2299850a90440fc, 0x5e04e30ab20cefb6, 0xe53b0f22e10fab4d, 0x95da8c96124ac287 }, { 0x73b80dfb91b789f7, 0x68d5ffa855c8f4b6, 0xd12b78c6ec45d9d, 0x81a7c6524c97f9ba }, { 0x77219033596ed0c6, 0x11bdcd47a0cfd99e, 0x25baf84d4cc985d3, 0x69c7966a16d0d16 } } }, { { { 0xf657b0a0042055eb, 0xe421a225ce62447b, 0xd9ceda48459ae892, 0x6633491cdb49c668 }, { 0x818232b981270083, 0xabbf6f7ac0d89dc, 0xdd720a9c84183a21, 0x83ae16a05f918a1 }, { 0xc91581f80d3e0573, 0x35c78088dbcfdf57, 0xa6924637a6aebf, 0x29dfb0aa1a09b360 } }, { { 0xf006c0152ac9e0d8, 0x5c4e84608242e623, 0x40f5a6113dff46af, 0xa38da7e5b9bd4fbc }, { 0xfaa8bd9662a19076, 0xef5972c560b8f325, 0xfd238981a7552347, 0xe6fd1d02724088d6 }, { 0x8b7bd3c5aa4376c3, 0x2337358a9038267, 0x172d024728fada83, 0x463eb544ef0203c5 } }, { { 0xb305c1e539c51691, 0xdcd0137eedac8384, 0x5015edd4de338c5b, 0x44d2c775a0213075 }, { 0x22471a90c1ae7eca, 0xf41735225cada637, 0x8a9cc316399c8dec, 0x6067900eb33b3639 }, { 0xd3ece58bc0130eb2, 0xf6a133d3414d0afb, 0x2eaa41c64edaff0b, 0x92838ecd2d587f54 } }, { { 0xc9e22ae6684e7392, 0x6fe3a7f1fa9e4b73, 0xdfb6feb60a524499, 0x2590501e9e9e8311 }, { 0x5bf7b332e4a3c076, 0xbdb339df0e82d854, 0xea659302539e3254, 0x3fdda5b80fc265e3 }, { 0x7580ea989a955d3, 0x277116c056890882, 0xf7ce97f849418140, 0x4a855a6132b0bbec } }, { { 0xee34fc793ee91365, 0x79c7ccd13b3ec73f, 0xdd4fcc3d150edf1c, 0x86a252d19456d327 }, { 0xdc40948c099aa82c, 0x492734eccf976299, 0x65447fccc6dd791, 0xa05046b780c62e44 }, { 0x1a919784b88ea900, 0x138edf24db3e7f07, 0x7741166dc4bc5587, 0x271a279182fbf159 } }, { { 0xa1f3abda2309398, 0x71094b91e38d792, 0xc003ee0c88c9efa1, 0x10b1c9af3398cbfe }, { 0x30d3c62d75b211ea, 0x8bcbc9e8500b7794, 0x33aa1320f9c4ae94, 0x6ecfa63b6e9d8dfe }, { 0x3479434509755ac5, 0x58c7b433d78f6086, 0x8d773f1538e3d234, 0x36db6844e13e70a3 } }, { { 0x50ca1c01a79fc036, 0xbb8fdb9d4b2efd03, 0x20ee8fac685a38aa, 0x1f7d6e8ce30da716 }, { 0xd662283f8ea9d620, 0xe753cb32dd113567, 0x89752ae8faf8bad8, 0xf8119cc887c87144 }, { 0x1c55a9171f037af7, 0x454456134f51617, 0x1552e53377c08e36, 0x25cd006cf245baf4 } }, { { 0x415498c40ff3042, 0xcc42576c57dfecc1, 0x4c3abda311181606, 0x4e7e02f0355f335d }, { 0x673efd0a725bc406, 0xa4a37ee9905081a, 0x6f6c99eda5d7bbb1, 0xf3c775d262e8e5fd }, { 0x604182a29a120bc4, 0xdc45ac15cc98aa57, 0x81e8fc21496ad27e, 0x2f7ae0310c83a05e } }, { { 0xea8300c101eb0340, 0x6cc67b0e146fe695, 0xbe250c8ff34aa87d, 0xdc784323b313194d }, { 0x171270c913ad6ddf, 0x48c1167eff639261, 0xb4b2235ac40463d9, 0xc17d5a757b69d2b3 }, { 0x2cd0459cfe66bf6d, 0x8873408ffac5fdda, 0x38efe2730838d2ef, 0xb84a870b26b35649 } }, { { 0xe63eaac7aba24ce0, 0xd767ca1459280ad, 0xc9bfa1d2947eae48, 0xee310a2407c76561 }, { 0x29d3e439a6e8d976, 0x5df41b02b1332034, 0xe3c68f6900409cf9, 0xa269c5da0d462738 }, { 0x5d88006820e7efbe, 0x83a6a21a6f4ddad4, 0xc9ee2a121a51536f, 0xebfdb2a628f91e4d } }, { { 0x32ce73a8f6bc28c5, 0xe36bf6b8b33dd37c, 0x532a3c5fd5e166b9, 0x1766f1e13bd72999 }, { 0xbf932cf8b9f0ada3, 0xf6eef12f7f83e348, 0xfc6f7e6b886e6eee, 0x12d4adc55dffbe8c }, { 0x7b29d917285e963e, 0x81809464b64c6a82, 0x30f29f0e24c6ab55, 0xa44283576dc9197a } }, { { 0x5b2cc1dd10fd235a, 0xbae53eb7e9075100, 0xfbb85e559e36c333, 0xa2f898cc17621312 }, { 0x95fb2cc2ef10d5f3, 0x2366956455ef5f76, 0x55b9e1a835794f03, 0x19d50d0f1abffab }, { 0x95f9d096cfd3a472, 0x13459f040d90d76, 0x8dd946616b36fda2, 0x877af122a2306e8a } }, { { 0x3e83a2a940bd3f61, 0x35e805aa41250a3a, 0xbea432fdd42b6e96, 0x2c4687129d8d9a09 }, { 0x6a2319c883b49d1a, 0x3178dbc8e2c0d075, 0x7d1376fc684be828, 0xae49dda26b742a0f }, { 0x888502b79ab37eb1, 0x853c66c9f5421c22, 0xefd22317cb1da00c, 0x4819e60adb926d0e } }, { { 0x88bb351db9060a96, 0x9c4226cebda15fea, 0x6c1b46f6f704eba7, 0x76bd7c8c4e0f8d5 }, { 0x5b6b62e0b88cc27c, 0xf258df35ec38a477, 0x3991fe958f40c17, 0x5436a92a3b4a22f8 }, { 0xfb32d8dd0ce809cc, 0x53ca16f24cd81c70, 0x48a9d340045c8343, 0xa95f9f4b8ec311e6 } }, { { 0x9adcaac3b74cf392, 0x2d8cd0a7cd2b8446, 0x3e5867e17b2d9e9c, 0xbb9e4608f7a6e139 }, { 0xa02a0b6db6e693fa, 0x71e5c15cc2405baa, 0x45dc764419bfab9b, 0x89427a84b89f1d1e }, { 0x77d5d8773ee9e706, 0x13fe8b461add3b9f, 0xef75168d33f6c046, 0xa6463da723bfd437 } } }, { { { 0x6bf31dda4de80143, 0xf98d68168eb65ac3, 0xdb70203680a50e2d, 0xd2a27976e4758d0a }, { 0xc9a0928a0322c316, 0x662deff702e1aebc, 0xe918b14d7b2dc316, 0x8749f49cf27bee8e }, { 0x1a22800cc59ed58e, 0x69acabed8654b7da, 0xe5da110c15dbaa9b, 0x814c110adac3b2c3 } }, { { 0x2077bf11c0a887ec, 0x8d7a70cda9344315, 0xfe8eb1382e384a3b, 0xc35effdca904cddb }, { 0x2b1604af38c0c1a0, 0x6e8439023cad32b6, 0x670fa8545d0474b6, 0xecb2ec8ffeb7d091 }, { 0x680d75b2695e658c, 0xcde05e21d67707bb, 0x8d8b3609094b615a, 0x8cc09452a55590b1 } }, { { 0xf53c2a6b56261cc7, 0xdfac9577c6e0f39d, 0xaaab00ce0568f8d9, 0xd53a2d20c8da9c63 }, { 0xf45a183eabdd15c3, 0x2f33b652c78e6d2a, 0x33890d20b48d5dad, 0x309506535f7cbfb6 }, { 0x89be13e8c2c0a86c, 0x280f2eede0ca7b19, 0x9530e31051cd92aa, 0xa0aeee6d764b8642 } }, { { 0x87eab202e0f76698, 0x80e5b8b3e80b643d, 0xa4fc8d8f25d098ff, 0x7533c095dba985d2 }, { 0x4971b2666940f83e, 0x9406d900707c7d20, 0xc67eed6ce02a4d1a, 0xed28c17802957b33 }, { 0x31443e53992b5f64, 0x89622bf70ce2e31f, 0x696958dc7341ce74, 0x54b82ca841e25ae3 } }, { { 0xd76efbb981bee072, 0x4d4c35a93a9b25be, 0x926f998a0baa2f33, 0x80e01af0c197bc75 }, { 0xb03a023d1e4357d2, 0x44105f9b6b80900b, 0x3734ab8a727701fd, 0xe471eae3b33e2f56 }, { 0x16f19079b07bc4c6, 0x9271b29a8d59fae8, 0x21cdb33e1ecd83a8, 0x8f10d02c84051d7f } }, { { 0x4036f6a580dc1214, 0x4de3749f140a55b6, 0xc5dfe2423114f846, 0x2ffbec3d3e6f8fd3 }, { 0x641dbd94fb42d6c2, 0x1ec3b86097401c1, 0x89cb82c54a86a6c4, 0xbfc11e1b4eb65f65 }, { 0x8b640ce9ef5eb0f9, 0x4944a61065e64694, 0x85fac5da2b1771eb, 0x9509e0d2cb84bf58 } }, { { 0x8d4b61f24f46b4d3, 0xaae303d4d177638e, 0xdd1bcb6181ff213d, 0xdfcd4c103777aeb7 }, { 0x7c77a36e9728a464, 0x5149e21632fa7ecc, 0x2be2c8c9498f09aa, 0xc5c9fb0ed502ca06 }, { 0x93755a7ca60fd35c, 0xbe3d49c5effeb8a9, 0xecbab9d03003e119, 0x5c454b524b8718df } }, { { 0x5a7efdf1fa44b488, 0xce746809509cee80, 0x40c57d50aac89b7a, 0x77025ff4a05f2647 }, { 0xf64cc78721283b1d, 0x3b2dd61a05352987, 0xa3d08a8941ce2e5d, 0xf4613deb67fd7623 }, { 0xb0664b320a1178be, 0xc9b6c067dcc5cc9, 0x3ce70bc48471b166, 0x8dbe9a6f495cacac } }, { { 0xa7ee6c667228170f, 0xb0c7156337e0ca20, 0x4c37c767972cb663, 0x5aaa074a401d08c1 }, { 0xc270b0e4e5c1bb2a, 0x5810149927328c3a, 0xc876216f45eb3951, 0xf145923a478896f3 }, { 0x3a94c9849ac12ab3, 0xba36621080dfe44b, 0xfb44701edf7f4a2a, 0xcff310c5d74b212e } }, { { 0x1a0fe355479ae18f, 0x80fcf8478c745313, 0xed58039bb25aff94, 0x7267b27878f5d985 }, { 0xecdb434dd8c993ab, 0x8ef7c5c46d4fc760, 0x67e47933da7bbe11, 0xd1985f1fa061f075 }, { 0x3340ae35642bd4d0, 0x22f485c6f0e6b434, 0x895d275e23947b68, 0x57e2dcd67acf9f66 } }, { { 0x524208d12ac6b965, 0xf4c5e324a5318e81, 0x3251011c764abd99, 0x84bca46bb7004c7f }, { 0xac9ed5b4b6a24412, 0x116f5075d32ce4b6, 0x399ad834b1e74141, 0x4974e56b82927fe9 }, { 0x10605d246892b895, 0xc5ad0d11fbc79352, 0x874f7113e00be98a, 0x8f7052c1b68fcd37 } }, { { 0x80eba54d84280901, 0x2e7b48a6307b6f84, 0xba1e5fd6f077683a, 0xc995cf73047f2c93 }, { 0x76d2cf4e3f08147a, 0x7ba9be2426fbf4ac, 0x7b17c41d3e2eab5c, 0xb807396f539ec0d3 }, { 0x92682ce65d61049d, 0xd2d0a7a17efbd55, 0xacd3fe2c6bd2676f, 0x7bf0f7ad48bbc9d } }, { { 0x7eaa6fd345cc2678, 0xa6fd96e65989d2ef, 0x55c02754abfba1c9, 0x188559bebb2fdc8d }, { 0x237ef3cae307d075, 0x9ce35379ce447cce, 0xea9031ecaa1eb603, 0x90fbcf36ae0eb761 }, { 0xafc1ddcf29e33069, 0x8a8bfeb24017347b, 0xf64692f53dd6c64, 0xa4dd7d51585042c } }, { { 0x9df28e56513308d, 0x7694ebd500d7229a, 0x65a44201c18b0a5c, 0xbbe42f0e09e38c29 }, { 0x7f2eb79b9b0303ef, 0xb05abed2bd72a7ab, 0x2c9d6ae53e2fab3b, 0xc2453156cdcabb61 }, { 0xf63e665eaf36ac74, 0x65e33209a2bd8e21, 0xa983d2a24917eae5, 0x90d61735b5dce3f3 } }, { { 0x55bc9683945213a6, 0xdfe69538243894bb, 0xa9ec49b37c2fbc77, 0x1357964410616a7b }, { 0x5e046c24984017d6, 0xb4f61d7694a7c65c, 0x3e3c05c1507cae69, 0xcfa27f73b64f7695 }, { 0x3b5d075dd87feb4d, 0x8975ad0355e50550, 0xc06c26970de88cdf, 0x24f6cdf920711452 } } }, { { { 0x5fab5a0b59923420, 0x26ac234d5c8a0103, 0xd6a7e200cb83872d, 0xb0717e5f220cdb0 }, { 0xe128320707444a6e, 0x7e90b90cb730ffa4, 0xc01953651b198f7, 0x7cb7707272f2ffd4 }, { 0xb174023d769887d, 0xba343e636cb3a97a, 0xec6151de63c337b1, 0x569a95e85c176a13 } }, { { 0x3cf2f251546128f, 0x290602a216354f4c, 0x3535f74f82e90b27, 0x16594f504a1f4b3a }, { 0x469115931e4547fc, 0x5dabdde79226a1bf, 0xf48c8860097ca7b5, 0x456131d4378f4fb8 }, { 0xc59c6b702ae4fba, 0xc9dd60966e831cd5, 0xc1514ec0e9ae3436, 0x24386533d10dd8dc } }, { { 0xdb1dca64db287be, 0x1a8c883727d5c9f0, 0xe736673bd329efd3, 0xe0a1b3c707a1d100 }, { 0xb06ea2e38f2d3179, 0x74e69c29e5d4bb95, 0x9f689a9dd9fce235, 0xabbe4cb5874d4b0a }, { 0xb23b9e4754df671a, 0x69bc4a772cb5dda2, 0xb931d6ade5f18e8c, 0xf589b258d24433e6 } }, { { 0xa252186090efde46, 0xcb62e7418085f700, 0xe5aebbc2657f1a6f, 0x8859f353d18ce4c8 }, { 0xd615e69602a2cd8f, 0x8bfed57626213a7f, 0xdf4b9c5658ada2b6, 0x8db5c919793cb888 }, { 0xccdad4f05b8bcf48, 0xc07404f21cae84cc, 0xf67aeef248865ca5, 0x5050392b8d3b17fd } }, { { 0x1e2085eaa8b0c361, 0x6021434f7f8a5d53, 0x31ebf1cc86f49cb8, 0x4fb1518411cc369 }, { 0xf02eba83e3cedc55, 0xd185b85e329f0bd4, 0x828588568e6d91c9, 0x76917fdfc8b3ed01 }, { 0xbec66c67d4e29170, 0x99e8c136fd562c70, 0x83fe6a7766c20de8, 0x4fdd8fb086f9b511 } }, { { 0x1755d11796d4b608, 0x4bdb08fd4b4e5906, 0x4be2715232ac8806, 0xf394a35d6afadae0 }, { 0x241eed3ba9721241, 0x6daed6a975b890fc, 0xfaa5fb152b373196, 0x70ac99296e9761d1 }, { 0xec574798c1347907, 0x242e94c6288cb39d, 0x4519241679e31a27, 0xec041a250bbf3644 } }, { { 0x3238f7808a711a07, 0x87eefb04d094754c, 0xf362f5162c6f5cde, 0xb6cce736923f0389 }, { 0xe6115be5e77a778a, 0x90c144fac7e739df, 0x255e9fb40bc24c3f, 0x61491d6ce988bd77 }, { 0x77181dbec41c53df, 0x3688f7be51d04fd3, 0x7bf2ec2597767c1f, 0xc4e6d41561fee198 } }, { { 0x4c6e3df265de37bc, 0xbf6fc3ed61232e81, 0x5eab2b7ce3b19014, 0x3975c3e65fde4aa8 }, { 0x1dd573187fb72dca, 0xc3db94ab8fd20b6c, 0xc744e78de603db01, 0xb10ecefe6a1b8527 }, { 0x42d56e749b5dd303, 0xb2ef860f290941ea, 0xa037cc6b6f90e977, 0x69e6a6d7b5bb2b3 } }, { { 0xb8f1b684e8aedd3f, 0x6ddeeac452b9d8bb, 0xa4d83e2c913a81f3, 0xe67129fdc225875e }, { 0x69473dc851540f20, 0x1528bcda1781d95e, 0x820f0b7cf0ad593d, 0xd2e8f0a166e6bfee }, { 0xb0e32cdb3cb0b9b7, 0xb3a7ed8f0c14e49a, 0xc0a79a054695c97, 0x43b950de2da0ae6c } }, { { 0x9945899221f5b56f, 0x51695a16828439c9, 0x8fd64a3a673fbae, 0x9116a24418c1faa7 }, { 0xc4f3c34584bd81a4, 0xf517f6b7b564e454, 0x65e13afb675cf3f, 0xf8d20af6c501661f }, { 0x9d24c476bb32be50, 0xf9a8bd405b9c4b39, 0xafdc0e289d19483f, 0xcc8963802193b8f7 } }, { { 0x91d178b0c6275335, 0x5ea51c0420fca5d7, 0xbfb40ff20c19bba0, 0x957894dbf4612117 }, { 0x278f2bddd377ea24, 0xdca9669a9350ded1, 0x5ba25bc0481702f3, 0xf150adb72cc8ab81 }, { 0xa3f1918325fa097a, 0x1a3a381d0ce33e2, 0x15760afe9b2f448a, 0x2b689ec7f771bd6b } }, { { 0xc7dd9cd7c95138cc, 0xc3e77d6090692365, 0xd4d102db7bcca7c1, 0xf79eb3c210f87bcf }, { 0x6cd5446a7fe42d34, 0xd83041eeff95f531, 0xc4a99ae2f1b229a7, 0xc2bf4c37c0136bde }, { 0xc214b470964f2fea, 0xa6df1957bd389a09, 0x1130359bc82d94b5, 0xd3fed2e580b8151d } }, { { 0xeec54d742cfbc807, 0x4a485d08f93826bc, 0x2d4b07c96afeb3a4, 0xf40be1a8dda3290d }, { 0x48752db4cf7373c4, 0xe48eea6c1a8e9cce, 0x27c2503f7dd87265, 0xf968f70a9543dc8d }, { 0x2111acb21bd6615b, 0x5b24782a40d5c1f7, 0x687fc5299dbdf85b, 0x6317872daa44249d } }, { { 0x235cd7de897ec6e3, 0x82a22cbac6c6795a, 0x5b01665815e0b401, 0xe400708a9efb9e51 }, { 0xf0ef7015ee27e8f1, 0x917f155792d27f95, 0x62573633b1beb44e, 0xf0c95c528e674221 }, { 0x7e0315dac7ff4da6, 0xbe015af1fde065db, 0xe79f01216620842a, 0x5c07948a2e9f0300 } }, { { 0xb4199277cc694920, 0x974b04fa8641a63f, 0x9d14f2e1d4efbbb2, 0xa5b5ff7b03522251 }, { 0x1a64eebc11ffefe1, 0x87c2e7cc6f19f554, 0x2e3dcbcaa63949d, 0x6ee68d61f46588b9 }, { 0x20159fc4c72c6e65, 0xd4a090a6f085b3b5, 0x8723da672a0467a4, 0xc5527aece212d9d8 } } }, { { { 0xdcfbc39d716de0e2, 0xf4ddd248d7e36645, 0xc1036060369a97aa, 0xdb4d21b19a131ac7 }, { 0x2d385fef4c95f589, 0xa2a29a166bfcd165, 0xaa5d343232702293, 0x9bc77898f38d284a }, { 0xdecfed539242a55a, 0x59d75095e05a1917, 0xb2bac85843c6d82, 0xc2756d295d543797 } }, { { 0x99bf869e2e1f2a38, 0xb3862e1811928de4, 0x1cd50ba7fd39a783, 0xa924a9ae8bf4b0cd }, { 0xfa6201faced2800f, 0x3198d0411ac619f0, 0x36c6eda9805ae9ea, 0xd511ca9f888c640c }, { 0x67a5a23cf2a07db2, 0xa135b125b84fc9c3, 0xbfddc238a1d3a13f, 0xa6b5edccd23c4973 } }, { { 0x5f2f39c994d6c686, 0x2b36b4e0eb8443fb, 0x1af26931c224528f, 0x4ffac42b094e76d9 }, { 0x62a925b5e086bf0a, 0x42b724ffa7c852f9, 0x565dc7a6e2683913, 0x7fed8f36c05ee8f0 }, { 0xa60517772f6524a9, 0x7651731a5ed0f7b, 0xf983c006eac7bf19, 0xef942387cc778154 } }, { { 0xf2f343d0cd74bc6e, 0xe3ce8f826c80bce9, 0xc03d0eb184768b77, 0x29a5180e22257484 }, { 0x35c24df58b545bbd, 0xb358c5df8520f670, 0x52e70e6caba50c1e, 0xefe543e75d9b9124 }, { 0x778a3b1c516d82a, 0xab404d6a879dcfe0, 0xabb0d68a0e999a04, 0xc93faf62eaf6be2b } }, { { 0x56a25b10c93c5207, 0x580e8434c154b877, 0xd9ef5d8adfdfd114, 0x4e1fb507c11a4520 }, { 0x5e22151d04209ed3, 0x9955e295c5a83642, 0x42a6ea731aeea40d, 0x65b14ec04a9f1be9 }, { 0x155ad55ac80dcdc4, 0x61a4bc1066c4d45f, 0xbfbbf1e90c9f4c10, 0xb3db493e6198c3e2 } }, { { 0xf17bf76260ba18cb, 0x8e79851a027245f1, 0xdf96da81002710c0, 0x3ec3db674cab5b46 }, { 0xf7d709adccfc52c5, 0x10126f5ba8dc48ff, 0xf7ab5472424242c, 0xd75bbf93bb1384aa }, { 0xa0886f71a9854105, 0xbd0a99be4b9c5304, 0x525ea96edfa89741, 0x2d42a703e69f6469 } }, { { 0xbf18afd276f74372, 0xa742b5a4030d3558, 0x6952a72bca942444, 0xb2f40cc327d633cb }, { 0xb279e9238f66f60f, 0x64c233a648b734eb, 0x8e870ed61ca81b7f, 0xdb7ebfc003999072 }, { 0xf208c13e2d9edd3e, 0x90ad6ed0a8098045, 0xfc48030342ab2af2, 0x2d8281d4a507a904 } }, { { 0xceef1ec1eb38e9c, 0xe046a44e5a5f51e3, 0xb18730f60d50d420, 0xd85ea640fb4b5b13 }, { 0x568c9121f7be7c5a, 0xc6449175adf23382, 0x39208c16e7f78d0f, 0x8fcc25fb13436aa1 }, { 0x2afe1bc3958f910d, 0x5baf5dac1714b95, 0xf9c49632642f329e, 0xc117081b01b7359d } }, { { 0x5908ed2141d57201, 0xb5dce6a4fafef3a5, 0x9cdfaead93de4f7e, 0xb6430f58d3a4c7f9 }, { 0x1937fc35b00f6648, 0x8b0361a18ddd49eb, 0x1fbe544bd998b8c9, 0x82300bf44ad9c6c2 }, { 0x3c6b6a403556584e, 0xc248b3f74bd43f1b, 0xac762ecd997fcf34, 0xac0d70f88c770bfb } }, { { 0x74d3b7ecaa1533f6, 0x25fa0e4ac8eadb43, 0x793afc3e1dca7d2c, 0x2d1d91bbfd8c3022 }, { 0xeaa5c075236fe747, 0x1707d017e51f41ec, 0xfc38d16ea18d3422, 0x8b0d3e8013ec1391 }, { 0x50e65dada595113c, 0x8959beeb307b93f, 0xb7b45046eb2abe1e, 0xf8f902431a3f5956 } }, { { 0x4e9cb85c538e351e, 0xc76c801ce3f7ae77, 0xa35f0b17fa95274a, 0x2317465516a12668 }, { 0x9a888893715bb5e6, 0x87fc86e4231b1044, 0xd87f27b09f1ec28, 0xe9c83d25395ff7a7 }, { 0x79377747d0dbf843, 0xde78933fe99aab40, 0x6d5bd3366ec5f2db, 0x40d9bdaa5799be97 } }, { { 0x6ed92da38e67e825, 0xba7b6729d16d0499, 0x5d90131ff68c680e, 0xa213dbdebccbc7f6 }, { 0x3c0ebccda1b4cb5, 0x277758eef9fb2524, 0x3ba8294c5f563f67, 0x152f6a43f3e6f9e3 }, { 0x2e9f239cbf074073, 0xc43f6363dfa2fc92, 0xc21a2a9f8aca5b2, 0x5729c638bc877cfe } }, { { 0x62370d3d6de164ef, 0x68abbe3d295b1347, 0xab801c49ebcf3859, 0x94e63f280abc83a5 }, { 0xe432a986ad0d3393, 0xb22ffe8aee70c9f7, 0x5010845b72e4c315, 0xa80902028f476241 }, { 0xce618fafba53eaf, 0x10f1664f592f4b36, 0x9298bbb7d87ac31c, 0x3bfc4e90b900d217 } }, { { 0xcdf364e1cf78e6ff, 0x386815e8da44d6ed, 0xb5ec9a7e16bb1bd8, 0x14bdcdc19cd33ef0 }, { 0x3844073374efb8ca, 0xf98e458660c71380, 0xe61e2d1bf5a9ec8c, 0x38668d5bfc16ec7a }, { 0xca3ca55fa87271d9, 0x3c3b8dc5b25343df, 0x19a88031e16f926c, 0xf3f1565ffd0ac210 } }, { { 0xd0c379f8d7148646, 0x9d04e82d1e26607c, 0xf86e621fac42648f, 0x961037b01d84831c }, { 0xeb644254be873a57, 0x2101eaaa9f254a8d, 0xa1fea59651a64b66, 0x4fbcfd86e2411ca7 }, { 0x23d17c53520c3860, 0x32e5777a3de26410, 0x3a2fbdf1a18d4b30, 0xda757eaffcb7d74f } } }, { { { 0xc401f384c163c30, 0xd499c6c90ff2861b, 0x644ad2b9868952e6, 0x8ccf4b2018c6d037 }, { 0x6901ddb7133e41c3, 0xefefc8cd7bd699ca, 0xb9b4b0f45280e7b1, 0xcde1e6ca4004fc9e }, { 0x7094de4eaace4eb6, 0x8213669ca11db3c1, 0x5b7d555f3c2b7b9f, 0x85b27e2c2c244623 } }, { { 0x4a6987cebfaa5530, 0xaeb24b70d55068c2, 0x85a472722f4e0684, 0xfeaaaa2afc0ea418 }, { 0x80c0ef4f4166af42, 0x7ce00ef153e9bd9c, 0xc177c5c1b4d0fbc7, 0x1f8b92ed6c15efbf }, { 0x3d0a95ebed53167c, 0x308d9c7a641683fb, 0x694893433583efb, 0x82cee53df6b29ce3 } }, { { 0xe3a5b7c2a02c70c1, 0x377a71662cb73dba, 0x214cd5cf2439da6f, 0x3a2667cea7c06c4 }, { 0xd4998d1d06feec24, 0x2bbee02f7e148ee8, 0xce753835bd1a2fda, 0x87539d80b5fbb91b }, { 0x7ec2094f8318b242, 0xa7b5fb665a37ea90, 0x8ba27c5f284230f7, 0x33eaa003555e0c7e } }, { { 0x29b7a025cecc0d99, 0xeda76a667fffe101, 0x50f43ce059a0ac49, 0x63e05e0780d6423e }, { 0x5d476b4a1beb897c, 0x453f9c958f43c291, 0x2a89ea2ff8f758d3, 0xd810e73354b65825 }, { 0x725057bc902e3c48, 0xa3ce002e17839df2, 0xfc08647c54cc1344, 0xfd70f01ed454f4cb } }, { { 0x8100430a1419e27a, 0x1179713a40b977b7, 0x70d0771b4e6dd0b4, 0x6fd331488e056c94 }, { 0x8211bfdc0d0bf24a, 0x25846527f77668a3, 0x7cdc07cf676fa917, 0xe993c82f101df542 }, { 0xa369534ea89f0476, 0x783553571358b98c, 0xbf2001256c28321b, 0x7e9bcfd4351f7ad6 } }, { { 0x9adbed1497871794, 0x25e95b0e71eee3a5, 0x3892aaaebd9050a2, 0xa38868bf326c6ff1 }, { 0xdf73a50557252974, 0xd46cd099290c3bee, 0x70d709471b1745a6, 0x74ac5c4b1e0eddae }, { 0x7f675f9b8b061f5, 0xff91eca3b6d24f2, 0x335c5664b6dfc93a, 0x69f19468abec0af9 } }, { { 0xa3b1733ccd8d8ccf, 0x360d2abe9f515d93, 0x562e2b23de481edc, 0x9d6b58b790a4ae1d }, { 0x1cf54f2a988fb0de, 0x16660322f93e6e0b, 0x337aa59737c04d1a, 0x1255ab9953b9366f }, { 0x3517aefe205caf5f, 0xe44963aae31c58e0, 0x16f50b9804ee501c, 0x733c2e4fe50efbaf } }, { { 0x1b762138c5b33d07, 0x159165aa0d12aee8, 0x2c73b22b4692e7a9, 0xeda1b6c7e229f0d }, { 0x8f638b734d88e8d6, 0x407bb0f9cbbff7de, 0x69d53c2e81845f0a, 0x9251fd6119381c3d }, { 0x8ffbf3154dd59e3d, 0x75b4b8e8936fcaa2, 0x6af8f40d5521a694, 0x532f90cf6a805cb4 } }, { { 0x1f39425379a9f21e, 0x87624133efdc1d56, 0x4f30d86210965487, 0xbb022b5ff2d0e09f }, { 0xa3082f5ac8dceec1, 0x380ab499bb0c7cd3, 0x7689daff17489a0a, 0x53601bd192615535 }, { 0x28276569061af487, 0x8be97a7e8a5ff0f1, 0xd884c9cae0ce6b9d, 0x872207344ce2ad27 } }, { { 0x8c3a48fafb3d042d, 0x7718e8c934285804, 0xc989eb87a9838a48, 0x3335ae674ed2d6f7 }, { 0x148cc1b3e773ece5, 0xace143ae2985d158, 0x72b11db72ec679ca, 0xc0e84cb7e403c5e6 }, { 0xd12c4e723dbd7805, 0xee066060f6036849, 0x877ed36ff53724e3, 0x878786e1afff8e0a } }, { { 0xffbf3fdb31f1325c, 0x66fc8cb508796bd0, 0x9cb0e61b43922012, 0xf71e46834d38c2bc }, { 0x8ed815e69a3a2347, 0xfb8f9cafcf620fc, 0x10374731b397b031, 0xd40c0655ef2812b9 }, { 0x6da805675b8c532c, 0x348bb55692f89723, 0xbfa23d51bb0bb6ea, 0x687e50802755f207 } }, { { 0xebb9e80d507e119d, 0x25d8b97f4649eef3, 0x64de0135e6f61899, 0x6f8d288724d16b }, { 0x214c3dd66997da6a, 0x247d238523aa1918, 0x93ef1b2aa7dba854, 0xc5ae3e1f9b2c7617 }, { 0x4ad599e7cc780dc7, 0x5f6d87c436f7d14, 0xc769d11b144ffa0d, 0x648867afcc9bd09b } }, { { 0xce13c638548c0cb, 0x9bb2d0f55845c079, 0x1e5cdb2c0c13a628, 0xf85389367fd91f8a }, { 0x71ec91da6ae61e40, 0x2107a402a5cd4a32, 0xf55444c017abe277, 0x530426242060f14d }, { 0xf189347ad079f23e, 0xa953b62b86c54b7e, 0x23503bb13ef1ebe1, 0x1cb4285c6a38b49d } }, { { 0x46208ba712b4cf72, 0xe3ec7b5eb7ec5047, 0x10168c080ceb7bcd, 0xcb617944016c5b07 }, { 0xab8c94a17404ce51, 0x5e318d93f9369252, 0xc120895738042f6a, 0x3daef9859b6ba607 }, { 0x5396b26ce63c3bd4, 0x62d8b44be8fa9bb, 0xe1f0e899599f482f, 0x48ded02382cdcfd1 } }, { { 0x45788b12f3d8d3b, 0xe29385e36fd9ef85, 0xf13163635c12c713, 0xa0f7e815fc6ca804 }, { 0xa50274f5c2838d0d, 0xc29be0e228c2f68a, 0x7b247e4f3179f996, 0x8c826c605531c2e5 }, { 0x6444331f0efb85c5, 0x471f6a59a5cb3990, 0xea4a88178649b902, 0x36e0de6d32519f73 } } }, { { { 0xc863a03fd4455a3, 0xc85d23752d7fe87c, 0x4cd4bf2aa9ffdc9, 0xe1614e39a839403c }, { 0xa1db985ef879ed4d, 0x5bf2f409eaee4124, 0x1385a4ff48f01a6b, 0xb1e9ce8b143fcc5b }, { 0x49e72ec27e720a57, 0xa76947354c653e66, 0xaaf50bce46922a6d, 0x16b0fc0a0965c26d } }, { { 0x8c9297f3a79de4ee, 0x330ffd63fa574ff5, 0x7d4708b48b9e0707, 0x553c72279d88f643 }, { 0xfd68496454bff16a, 0xb7294681e5d24f92, 0x2c2d3f88a4596d2a, 0x3fe1573f1963b5f7 }, { 0x5d968c78a34654aa, 0x41774277fdb7afcb, 0x267473177ec19162, 0x7487fc0664652875 } }, { { 0x40899cdb91f7a42b, 0x5a3bbe33fbff3688, 0x84a64201ddbb8151, 0x5cfd9d26f9957230 }, { 0x1cc606c78456dbf5, 0x17a7e89c4c0260e6, 0x2aa1f73c5ff8ea55, 0x2142c50b7f265de5 }, { 0x26bd4a5e5ef4eb91, 0x4fa58ba1730e5075, 0x5c9928cdfe130ad6, 0x12fe75f483840bd7 } }, { { 0x74275a9bd3e1038d, 0x9795f99ad3f05ba7, 0x299757c1f70ae533, 0xe3032e3954f471c1 }, { 0xce2618040f1ecbe8, 0xccebb2b93c0f09b9, 0xc67d2ca5e3bcda57, 0x8c415202a7082e4d }, { 0x1f0aaa2be942fb4b, 0x536f806abb8e0999, 0x6ee8b115cb44cd4c, 0xf4412732fac8defe } }, { { 0x244ce11c412e608d, 0xa991ce9a764a0a1c, 0xa5223b9d50ac8b7f, 0x1849950ec7fe6558 }, { 0x378494f99ca5e44c, 0x6a73a26d86d5b670, 0xe4934130c232240a, 0x3fc8178b514bbb1f }, { 0x5eff47b3633588f7, 0x4286db2616f7921d, 0x98366aedf3f00851, 0x6bd9f910c58a0e1f } }, { { 0xc65596d7a7fac34e, 0xc4ba269ec938d505, 0x927c04634b9fc0e6, 0x86234d1e4dbbbf70 }, { 0xd3605b1aa132e344, 0xbaeae235e16ba231, 0xe580300d3faa85c8, 0xcd887f32bf0a9dec }, { 0x3681cff2dccf4c8d, 0xae0ed7f893fb5d8d, 0x107abbaf357de672, 0xb2b1a90a59a3a29f } }, { { 0x315d6821e1171cb9, 0x1d468f12fe2c9170, 0x1a3ef539ac88fb70, 0xc1182bebf4d35967 }, { 0x84399e2f7b814af2, 0xb9e2b8abe773e29d, 0xe7898f37599aa7fc, 0x50c4a9cac0b31ca5 }, { 0xefbc22c41cc448e8, 0x5102b10dfa74bd11, 0xcc266511364e5470, 0xbf3f49099f295a63 } }, { { 0x90a68515b35aa24c, 0x95ea2f0f62a53743, 0xd429ab71a4eb861c, 0x95247616d7576fb2 }, { 0xfec12ea6954a1d26, 0x7406e2ad02a84c14, 0xdbfaab4b6c9fe71e, 0x184ee0f44b0bba20 }, { 0x15a0f0d55450d0b7, 0x56d02d58c6b4ae15, 0x158edf0a4091dfab, 0xeee583d023483522 } }, { { 0x3f01d5d8f700aaec, 0x5d534a6a132ee6fc, 0xa9cec45afe282eb3, 0x6ea1e6c4c174e0f }, { 0xc1f9140c31983958, 0x6c44882da720e87e, 0x870139e7f605bdbd, 0xd6ce2344c7451ab6 }, { 0x32c8d29e84dda79a, 0xb3186e597a5e1343, 0xaa1fe8f37060ece4, 0x1b6128242b8d247e } }, { { 0xdcd47d52d273986e, 0x9b7929e6a4a6537, 0xed9810cf5bd76f17, 0x5b83d3b568b96adb }, { 0x7a959ba25bc6c823, 0x4614ebf7531b2f3f, 0xf47b7a4fb04deb62, 0x2a5c1fe926bd3dc6 }, { 0xcad8b1ab4200cd80, 0xb798eaa0b5d3a121, 0x126a735c7625d9eb, 0x539bf002c8bd70ea } }, { { 0x45b6bff03f9d3390, 0x9f91420209ac671b, 0xaa7c95b10378da87, 0x156437594ef8ea42 }, { 0x3575d2c3cc104666, 0x1ff5047d3187f5d6, 0xaac5ee8e103ad930, 0xecf52cd988cd649 }, { 0xe8b79df3c2cbff23, 0xe2de4f821107d593, 0x5280b73fa885c80d, 0x375817d536962a6b } }, { { 0x6ea6a388264ba7b, 0xc6c1353da5e96097, 0xac46415159022966, 0x4494ede9393b5522 }, { 0xae0c28189ff1fb78, 0x3aed3361cb58f4ff, 0x943531df8652a3de, 0x147b0163b18552f0 }, { 0xc50ea5c9dd169176, 0x2f58cb672a6673a, 0x6cbf1a8b05341bb5, 0xa73057b13c25b139 } }, { { 0x33d0d01c244a611d, 0x20432a62cb8d8472, 0x7955b50953acde46, 0x1bbeccf9a7d403cd }, { 0x752d20fb081c035a, 0xef78c811903048c3, 0x2f13e5724c73a4e8, 0x593bfb5602201265 }, { 0x83b9d766772ba782, 0x9e40f7d35ca316ec, 0xbd38ee2fbc69c9d4, 0x595ecfeae9c35ad6 } }, { { 0x41a78abca9f6410f, 0x6c7f6a541739ea06, 0x4234f3019be72264, 0x6d8920f763eacb91 }, { 0xd2cf89f53065ecb0, 0x4b81fcf4576ca9f, 0x3e4fe15e850c89f0, 0xd4bbb04d8f6814ba }, { 0xc284d2e1e720e581, 0x5d11a6d3ceb6735a, 0xb3fcd279c529e3bb, 0x56d0af2fc6523fcb } }, { { 0xd40ca90572b06b1b, 0xa537b9b46723c2cf, 0x7564c95eb4d20189, 0x3dd30c411088f491 }, { 0x88feee9107606b3, 0x2d8b308a4faa1acc, 0x516ee82f5dcc1796, 0x3fe1eba8c902c86f }, { 0x2ca7e01bd2c99974, 0x8960bed508ffd0fb, 0xcacf7c5afd63ae19, 0x8f6e92a4ad2f290c } } }, { { { 0x24b618685be993ee, 0x3d7aaf61266d6991, 0x656a5d8542025c3c, 0xf4538133c1587457 }, { 0x1e838a7a19b1ca84, 0xcc40add90f050fd1, 0x223ccee642d12fb2, 0x3877d4768fdee1c7 }, { 0xaa25d732f554ee24, 0x42d3961bb41dbb6a, 0xc245b60315051958, 0x51f75d123c4a089a } }, { { 0xcfa37737d48a8ac0, 0x8223381c8aabf9a9, 0xa18ef1e1e359d91a, 0x70b0bf23b427bd0e }, { 0xc9b4dee2eed616b5, 0xbe0739bf7de9ce4, 0xe568abf88cbe4bbe, 0xd166a18e577a0648 }, { 0x5c272086f63d1aad, 0x867486341358dbb4, 0x329be34a3991b722, 0xee668798c39a4ae3 } }, { { 0xb1a1d971db8ed8bf, 0x441ba6e576cf20cb, 0x85ed58f0e3a5978d, 0x708b28befa9d7ee7 }, { 0xec2d57af16aabe97, 0xfb977890d7f0831e, 0x295992b129d02aad, 0x8472439d29263657 }, { 0x7d222dea45c60659, 0x2c46aa4df6376a9c, 0xe02cf7818492c232, 0x282367ce398f3c25 } }, { { 0x729ec730c3983102, 0x794e6d165378ed91, 0x64ae1f90995d6d50, 0xfc05589f17fbda5c }, { 0x489997a7b31e8a6, 0xd50af09304d089d4, 0x53c455d314800bb5, 0xecc2029c98cced6d }, { 0x497810b0f907cf0a, 0x83e30032fc8ae6df, 0xbbede0089b095de4, 0x71d3db3b6fb3b54b } }, { { 0x3261f1cc9bb8780b, 0xbaa71eb4c0dad170, 0xb097b1b1fca0ba23, 0x3979954fe332f19b }, { 0x1482e32fbe1663cb, 0x824279671a3800d7, 0x3aabf8e4d69d90ee, 0x4195c4f97081183a }, { 0xbf16e958a32a93d2, 0x4c3d9ac97977fda8, 0xd32ec27602ebaa3c, 0x4f35f72f604cda80 } }, { { 0x44d8b3c27c69027a, 0xe2d0ca28b1080516, 0x7bb43c842d4cb7f8, 0x6e6d16670b403994 }, { 0x9502dd7d62f181d, 0x52d1d84635a7ca44, 0xe80cfc6dfdd8cda0, 0x3d58127a93d8dd14 }, { 0xca6d1fbb8bab5e9f, 0x6883b981b67058ac, 0x21d1adc599ab060a, 0xaec4ab217e8fb18e } }, { { 0xa6d44d3cddd1af04, 0xbb245781e4ba4466, 0x785fb7871825e4d, 0x82fe4a030a07f290 }, { 0x99c4dea784d8bf7e, 0x9d7f32ded79b15dd, 0xdba9a9e5c807e59a, 0xbb3cc911657f62f1 }, { 0xf5047081a6e441f, 0x86896baa5db04116, 0xa4f643b164b122e1, 0x93aa1f0d1447a682 } }, { { 0x8cebfcda340d3647, 0x1d7d2fb7252c6233, 0x8b42a2a2790d7fd9, 0xa274e98987ec2db9 }, { 0x1545e5af9a3ccec4, 0xfde718ddf8334e96, 0xd57bee4f62792810, 0x87d0be49fd8ef651 }, { 0xdc285341a5014839, 0xeebb1a379c690f6f, 0x5155dcb09131b119, 0x8f15d1c4105ccf34 } }, { { 0xdb4a6cf5b5dfa2f9, 0x8fb5e6d66b542103, 0xe84e9c71b911cf69, 0xc65512a3968f2ecb }, { 0x27025fd45443a597, 0x30c5f5b87fea8ea5, 0xc46032902fdd4328, 0x8a834540f323ab9b }, { 0xe3f7d449d411ce9a, 0x27f1d6aaf98d9bb6, 0x92644922ac487e9a, 0x85438f1ccddd3136 } }, { { 0xe5e15860d121bb3a, 0x309ad484c817d2ff, 0xfc6e49b99295a690, 0x43ca926e12bddc9e }, { 0xe852476f1e8dd77b, 0xf4a4fcef9a0e887a, 0x145eaf5a20dc7bcd, 0x1eb9f89ffc40b0a6 }, { 0xb0d3728dd1a57f1e, 0x60f439d481298258, 0x7e12c6b0d17250b6, 0x75e60f2ab8dc806e } }, { { 0x5c593522761317e9, 0x45ff72b6a280c700, 0x1361f9e5607f1a2e, 0x6945a0470158bfc7 }, { 0x1f27161be1db874e, 0x9332118c3e8ee4a9, 0xf38fccd38453a2c5, 0xfc8268b633fc245e }, { 0x43bbac5b5e2d5c4e, 0x9250d3f36e4f183, 0x3683fa31d20f54e4, 0x12fa85ffa9a60755 } }, { { 0xdc14554b53a598cb, 0xff36222bc76aac24, 0x4534f38c97d9074b, 0xc5d9e1246eef4dc3 }, { 0x7a8ea5765cb6b5a5, 0x35eddc81279d1f28, 0x8a6c8b321dc3db0c, 0xfba05b0831c165a9 }, { 0x2c82ccc93e41d983, 0x8bfaa136db3525d3, 0x78cab862ec1e0ddb, 0x55438107042a4634 } }, { { 0x21ccb0ad37d7625, 0x1d228a2b38b4875d, 0xf32af7ada840a1a1, 0xa9a7456d039ac457 }, { 0x3b84bc378dee34a5, 0x80e8d65a9bd738e3, 0x3cde82bfec804c4e, 0x6d6daa1a8ecc1f0d }, { 0x97be0ea9a5337c4c, 0x5563aa22e90b4122, 0x3e7130b59bfa0dbd, 0x732f16f790ed7232 } }, { { 0xb17780995b6c6967, 0xc5a9b591a28ca236, 0xffeab7a25f02f372, 0x31f5dfb30c793192 }, { 0x8d35fe76346b9219, 0xcd7d12d0483585c8, 0x38fd57a333d6422, 0x9f33a4cd17f31c8d }, { 0x1419988b94e1d806, 0x9d6b30b05e7b957e, 0x829f08528b5b49d8, 0xb312a1d129cf403c } }, { { 0x4a8cfc582c01fb51, 0x5da0fcc497ec7fe1, 0x30e7293318385cb2, 0xa0d665265a3888a0 }, { 0x219780efb425338f, 0xa00360fd5a70cff4, 0x304a8080165d0b83, 0x3db8cf9fc2e0b3fb }, { 0x7011a5cd53a14238, 0xb580ef2877de4644, 0x5321fa2f2d478e8a, 0xc7ebd87a5f7ac852 } } }, { { { 0x7da48565b5130a9d, 0x876f1da1702fb638, 0x79413cb39daba74b, 0xa83c47a6ab9153d6 }, { 0x95575a67e56ceebe, 0xd6a5eb8b6262964d, 0xd00448d1087a9632, 0xc735916a2c5bed7b }, { 0x9cac912ef08424fc, 0x2fcadbfdcfbd5edd, 0x72a6085c69671c43, 0xc8ec25835388eefd } }, { { 0xf8738f348c10d90d, 0xe1bb40eefd5ae791, 0x520741ee390281a6, 0x31ffe0174cb1053e }, { 0x7d5de2d0f8e6437, 0x757e6e7e12899f30, 0x953a34dc75b08b57, 0x9e49d049f5da9b4f }, { 0x576ed20360b4d33a, 0x107eeaf909fd5622, 0x3deff582c1ac400e, 0x45466d6498bfdaaa } }, { { 0x926f6d29992c544c, 0x9cb132ca53a28ddb, 0x4e4ff6e49b96272f, 0xf695f5a00bdd758e }, { 0xc00842109fa9395f, 0xc9c3212ed7ae0a14, 0xccfba6768b007109, 0xef7607137ec8c5b7 }, { 0xa3dc87759000049, 0xe1a98b7dc4b31005, 0xbff30f7c375d39c, 0xf69d48112fa314 } }, { { 0xc0e52f8e422acf0a, 0xca0157336f8d2d4a, 0x344a57286006e8ed, 0x1d853901f64fd5eb }, { 0xf6b5322ed9b57e40, 0x31e9bb5177d92faf, 0xaf623321d8270ef4, 0x2723a0ec20c77309 }, { 0xb83cc176d74ba081, 0x427accbebc1d7941, 0xf141c440e04ac095, 0x9f759ddc9bdfedaf } }, { { 0x77e475dc533ee239, 0x340a447b6bf18c69, 0x1ab8b632df958bd5, 0x678c3a13b4dd4f57 }, { 0xe9a48ebf9e421900, 0xb9c5623e8dfcf5b0, 0x4e214bce80ad7981, 0x52df4b41a82cf9ee }, { 0x38cd86d0f12e7a91, 0x4100400758460e64, 0x8527b80e0698cef6, 0x2a188fc2f54a29c9 } }, { { 0x2dca262a4df182, 0xcd3397d7a68de59f, 0x8fe2e02bd03ca867, 0xbac0ca52c7d5fe7d }, { 0x92fc294875f83b0d, 0xf787424f2a74a03e, 0xa78796f1fa85a37b, 0xb528a6b202614857 }, { 0x5714eefa746296a9, 0xf676c7f160ac6c04, 0x7ebd581355287dd5, 0x19cb4466f55d7ef3 } }, { { 0x99134b7369640a73, 0xcfb71cf4876c75bf, 0x6636f7c9ac4c2a4, 0xa4531de9f137f132 }, { 0x413c78c824e0ebd0, 0x8c27eea1f425e327, 0x707b8b229ee08310, 0xb7054cc25c92ac90 }, { 0xf29fdf05a1132213, 0xb635d1189f8390e2, 0xe141916287aea412, 0x715eb16458d53272 } }, { { 0x7ae9a3a813193688, 0x75f8a6e710e71a3, 0xa845fc8bbb786fee, 0xf111740a5c0e2607 }, { 0x77beb1be512fff40, 0x7d8df24ec740f656, 0x138e415668731fe8, 0xe7948dcd7ffe18e3 }, { 0x7447599e9cf575c8, 0x9409ebac133438af, 0xcbc979c93dba772e, 0xeabee6a542c69598 } }, { { 0x79c46fd0c2dd0338, 0x6d9a36dd0ebb2ddd, 0x2c961e3c06e30312, 0x317b01755e3770dc }, { 0xb7165bac35dd6d2, 0x7215d07d61922084, 0x9c6446ec421732cb, 0x2c1ccd40e8a5c3f9 }, { 0x220ff076d676ffa1, 0x2bb5f39623841288, 0x94c9aeb88dc07cc1, 0x845c1f0f69411ad } }, { { 0x4a3a294183b43c26, 0xa0c59f7bdff13bde, 0x3112e2bc95c2b0cf, 0x7b3319b5d87e4986 }, { 0x23e72b0870a1b1d4, 0xa8ed7165987bd60b, 0x17026098526ef2f1, 0xf67bffb4ca62a9fb }, { 0xc5a80f1a72af6409, 0xd57154980722afce, 0xc3a170a4232d1bb1, 0xcdefb5e779e8a6e0 } }, { { 0x17d3621fda7b13a0, 0xf36e1638bb6f8b58, 0x358da3733e463df4, 0x2900fa98bff8af5b }, { 0xed7f42dc4bb7f0a, 0x46897eda7990c86f, 0x9767cf79757ecd65, 0xd604065caa621046 }, { 0x18bb9ff8b2953288, 0x8e516f97644f92f2, 0xf82f526cd2822811, 0x142f7b79579329a0 } }, { { 0xd9a470b2a3947ad6, 0x717edda8a742968b, 0x96c3732dbc82f8d9, 0x2714b3cadf747156 }, { 0xda201310cebea0a3, 0x39da440daa55cd7, 0xba07fed3a4db5d54, 0xedc07a63e5e78db2 }, { 0x4518d99803d768b8, 0xfe2baf269de9d8c3, 0xf76687e18a9c474e, 0x82a0817bd36930c2 } }, { { 0x748e148f6ef7b6f1, 0xe60c93028ecc6716, 0x374683a8a5eddbdb, 0x92fe460025f19a5d }, { 0x46f9d5642cb0411c, 0xefe24311f3fe4339, 0xdca1e79fcaeb155b, 0x1bd71b0f7f2de993 }, { 0xac104201fc0d5369, 0xe10000b1eb1fddcc, 0x377d0360667c6eba, 0xd5bf2ca670c925d } }, { { 0x5995d2bb9048b499, 0x5d9c38e39559de40, 0xe58a1ec9030d5538, 0x2aef4113e66ca949 }, { 0x8ce0b6e257581f8a, 0x26b3255db14aa66e, 0xd2ce0af98991d3ce, 0x76fb1a91aa385bc7 }, { 0x29907ced285373f0, 0xd29857d77a8c7451, 0x2b296f05501e675a, 0xafc8d44c0ff95bb8 } }, { { 0x5192271e7258edb0, 0x92f317173e65af14, 0x48b9a6ce40854a21, 0x159f2a63bccae7c7 }, { 0x771dfecfcff92361, 0xed207d62c776da03, 0xa9714a2959080484, 0xe7dc2d70b9142ca6 }, { 0xf6d75d873da6890f, 0x14259baa35089ad2, 0xe9218688d7a6c49b, 0xb42cf19c6dd52eb7 } } }, { { { 0x1d25f7ae4784bcf3, 0x6f9766371c02a6e9, 0xd5d6f298fb655a95, 0x246b88f8e81e2d90 }, { 0xac403813619b127a, 0x244428e566b27423, 0xd013e58e125508c9, 0x61ad7c220337414f }, { 0x6f17fba41b93d31e, 0x59a44890af52b60a, 0x168ed7e97adba6ac, 0x45fa5712222a6cdc } }, { { 0xf938ee2de2a0deb2, 0xea6851544e04537, 0x8f623cbd9aff0a8e, 0xb5a670d2f8ee7314 }, { 0xba4f5be35c3b95b0, 0xb3b06e90cf8925ef, 0x31ed15f7e749c359, 0xff5d8b0e5d7149cc }, { 0x3cefa57369e74c8, 0x4c04a2908264f339, 0x1d039596bcb29923, 0xba90971cbf83406 } }, { { 0x83edebca1d1ebeeb, 0x6827fdeb921439a, 0x1b2274f8ebd121ea, 0x86a11d75d71891e2 }, { 0x55b2ccbf0d4f8961, 0xc0375902cc2bd2f3, 0xb283955b0530b7ea, 0xe67cd3b1f01e991b }, { 0x6b6212beb4cda433, 0xf52f96d6d0b71029, 0xf2b8b156c2a8fa5e, 0xbb9f3d8a5f29c21 } }, { { 0x5789bc84e3644e33, 0xb3d5f0f7d1fc1d, 0x4753499d28a701fa, 0xaf4aee3e3eaffa }, { 0x7739c06e9bf3b2a7, 0x59be909cac22683f, 0x5489fe53658b6561, 0x125debf77bcd3267 }, { 0x8fb17be0f95edeaa, 0x32ed0e764855cb91, 0x4918702de4f5f827, 0x395dfd81cf9673e1 } }, { { 0x7cb0aaf6ce204687, 0xe8410cd5949e154e, 0x3e4c1418b5eb292, 0x54a353aeaa36c55c }, { 0x9002d3e66c863001, 0x1a11e78dd51eff1f, 0xe5ee17f61b37ed3f, 0x612319667ac48db2 }, { 0x8cc082ca3bde2a34, 0xe0fdcf76de4d439e, 0xb239e8eaf8035906, 0xb29db4e209353c4a } }, { { 0x89ef7735abe5e402, 0x8d669f2388bcaeaa, 0xa40559c18bc8c746, 0xa7af5ef58c53d54c }, { 0xb7555ebf4826be8b, 0x8e232287578142e7, 0xcfa33167dbc35e52, 0xe2eee6a5a8de09c2 }, { 0x45c5e68ca1a6eb35, 0x34e6f6f58cdd1f01, 0x59ce459e1cc45712, 0xaeaf31c3774f7dc4 } }, { { 0x7adea86601542dd8, 0x8a4c1bf40861f353, 0x500497fdd930c13c, 0xd6adaf82f9419e1a }, { 0xcb789b66eac2ae3b, 0x157b46c755897ec2, 0xf4ff98b22619e20b, 0xd1598c7c3da68d5f }, { 0xd74e522f5b330cda, 0xaebc0f2850194e6f, 0x147c2069ab4f9aec, 0x7e9bfb58f2c21595 } }, { { 0xa922c10d47cdf168, 0x3a2ee1d74943e63f, 0x53e117ed29fbdf0f, 0x8162d959f1604f24 }, { 0x5eb99463fbf0458e, 0x75fd62f7d9e4c99a, 0x6b9ee113dc11ff51, 0x54a657b598858e89 }, { 0x4a7c6cfb6b3cb39f, 0xac85730587f6c2e7, 0xe1dcdbfd57f30266, 0x3844c08bfd6e3a95 } }, { { 0x46a73b0b23a2038b, 0xec72d706388bf44c, 0x968ac2ae1cd7d728, 0xf1c6656ddd71b062 }, { 0x37d9ce3339460eb3, 0xce9013744e6720d5, 0x1ead65d3b2aae1c1, 0x5686a2bd5cd64276 }, { 0x29fea8c477c31976, 0x2e935317f293c345, 0x9b692df1837801d7, 0xf5905d23c115b7cc } }, { { 0xdbb476fed00e53af, 0x3a594e2af1c503b7, 0xc47909732c468b9f, 0x9baaf49b7016038a }, { 0xb93b0f4d576f0987, 0x4969e1a8b5817a23, 0x2dd0c32cc767d056, 0x470b960d01a9ad0f }, { 0xe839c1a278be565c, 0x4b7793f6ecf9f8dc, 0x42f96a5288b15282, 0xd1916535568c714b } }, { { 0x1fee76fe0afe90e9, 0x3e0b45f000195baf, 0xf0f4d67063fa4f2c, 0xc3be296cb2d4a63a }, { 0xe0e53d3c50b91515, 0xff01911b4a6f9fbe, 0xd8e9d72e4109e058, 0x34759d950c6fd56c }, { 0x3e9f6b8e2c6a1010, 0x8aa129e2d4981547, 0x2febd6473175602b, 0x50d0c2c632621325 } }, { { 0x489c958ae414d529, 0xdfd81d1bc34b0aae, 0x759cdf15c7639696, 0x44e43734e8a5c698 }, { 0xeaba050f73471ba7, 0x47fca1dd9b8d1ce8, 0xd0d9d058cf8b4a9e, 0x5ee683902ec67df0 }, { 0xb7d134cb33f3dbe9, 0xf7e8c55ab0be030c, 0x3067f90d18152f19, 0xb2d2323afeed109c } }, { { 0xb83d8a79cf4a4b4f, 0x1c8a96549832681, 0x50fd25e0f51606bc, 0xb6deb38f70996f3a }, { 0xb86fd8b46e8496a4, 0x2c930744e6582592, 0x19b04c46aaf077f4, 0x9deaac849e81ab58 }, { 0xc4e7b7aebeb28bf0, 0xba8bbad851fbed83, 0x97f0d74e00ea68f7, 0xaf7e041ed5157d17 } }, { { 0xa297bc0d806e6b62, 0x74da5168b64e117b, 0x8032444d0cc7e24c, 0x999efb0cf3689865 }, { 0x530c0f4a03fefb8, 0x5c5f39e6d719cdd2, 0x3eb6c4f2817bb46b, 0x58f260f1a57f77e8 }, { 0xdc8d098461f55b68, 0xe40b55cf083eec05, 0x1a4d4d7c483ee348, 0x1aea7e0eedf141e5 } }, { { 0x707c99693f862f87, 0xc138910873adee87, 0xf3a8ca5ad8751d6e, 0x96e64612317ba34e }, { 0x586b3f0c18174000, 0x16dce4f69b0f182c, 0x177bf1deee92433c, 0xadf71edd1bf12bca }, { 0x912b30a9c91b27af, 0xc7a4b13e0f75db74, 0xe2f58956611c3b68, 0x28fffda636f6d35b } } }, { { { 0x5341c08b5751f90f, 0xf6f12864c87bec16, 0x360f16aa5b80a898, 0x3a1a954e561d0419 }, { 0x87062576509c8280, 0xb933ffed570435a8, 0xc5196e5db63059cf, 0xac44ce76e7e17ebe }, { 0xa97bebc45e24dd02, 0xa3dc14911dd1ac10, 0xc836cc2cd78fe077, 0x7742d3db21066f80 } }, { { 0x9b4ad920fedb6702, 0x7e4291c28a075346, 0xd8674fb50b1375bf, 0x949b4afbdbdaf69a }, { 0x1e6d56c24c5a8e86, 0x7a47d8ccb35cf665, 0x9208bf0ecc703da, 0x6ce5829a9091577d }, { 0xfe452fcc5c94c6f6, 0x939b4b993a4f9c21, 0xbf7c5c9ad624a5ec, 0x5b3ae43c3fa2adce } }, { { 0x5257189e31cffc09, 0x2a159639cf81eac4, 0x154ca3a393044e3, 0x87dfd91e1eb40a22 }, { 0x88c6e774000c405a, 0x1677c31f57253338, 0x805a3e5bebaaf045, 0xf653f8a5ae403faa }, { 0xe393effc1cb356d3, 0x3accc36510d4c159, 0x486d3693f881876a, 0xb98ccdee11419cc6 } }, { { 0x6ad5903fd35262ca, 0xf336f9256b931d76, 0xd79c386e2014b873, 0x6371d2d5fb6fb299 }, { 0xd4cc95e85e883cf5, 0x11cd0676b4a2df19, 0xd0fa412e27697f19, 0xb979e0fb4adcb1f9 }, { 0xc7eae14ef8bcdd62, 0xcb20c5bf164a24e2, 0xcbad70cfc559411e, 0xa216187bb6227029 } }, { { 0xb13fa5de990896e4, 0x2fdfb9b0147dbb2b, 0x11ca5882c50fe9d4, 0xea5e1023acb82029 }, { 0x5022ac4afbd6ee13, 0x3a0367a6e8ba0d1, 0x88c5a538c7139e4b, 0xe03a01adb8547339 }, { 0x32c0d3c34ca580a, 0x9edb749bb3275689, 0x9442d4f54f31f72e, 0xbfa24d4319926f52 } }, { { 0x97fca7f4095413d6, 0x1f78182770c91856, 0x41b2cc4becf41c44, 0x7a632a658b100127 }, { 0x433f869fb25c7ef1, 0xf78f221033aae72, 0x143ee14526bc6455, 0x339394dad469b7d1 }, { 0x21068db2d94f3aad, 0x1a5bf5f9183b135c, 0x3819106026e19999, 0x5bcd8551423fea8a } }, { { 0x4117fbd3037b76f0, 0x7ad1ae0be4843e00, 0xf9ea5c28ddd1b1de, 0x2a266c471071d3f3 }, { 0xfd102e329338a203, 0x1ce1ab057a258ff6, 0x174fe529faa10083, 0xee7b25f66b685446 }, { 0xf3ad423b8928e053, 0xa60af877dc2414e, 0xe55854a2609a8bb1, 0xa98f93526074210 } }, { { 0x6238438dc2193f0, 0x3ed2b80d92dbca53, 0xb94090126c0a97e8, 0x447935d278d3b1ee }, { 0x1a2b86ac3cfde653, 0xe897847d43cf7bff, 0x2632ad84b94a8377, 0xaf2b6df0ae9d4aca }, { 0xe28c65aa9107cf7, 0x322a2c588a97475, 0xd0a1a05587ed294c, 0xb3e677a958853047 } }, { { 0x56623cbff9f5cf24, 0xccabe3cbf81d5a8, 0x8c7d5c2807155af6, 0x49f8eed5a48b5db6 }, { 0x859328e52a31a19e, 0xa86d4d4383daf61b, 0x8f61298d1bb636ee, 0x235e749fd49a8b62 }, { 0x71e3542beac7013a, 0x3ebead2cdfaa2a2f, 0x3498f3ce0c721513, 0x2b77ab9ceadc5c33 } }, { { 0xe1e7fe4596cd14b4, 0xbed6e568b1ba05c9, 0xdbaa3745711ecc46, 0xa23170ab2fffe274 }, { 0xb384fb2184ba2cae, 0x79f74cb07e4fd4c7, 0xc465ff36cd4d526d, 0x552579ee1a7a4ef9 }, { 0x65b206e03b92eb88, 0xe89fc10c15c96375, 0xaa241068e97543e0, 0x27a4ee555778fb7b } }, { { 0x25a34aee65095f6a, 0x3e11ed5152acc5af, 0xd11889cbc504bc68, 0x4d4990db72793c4d }, { 0x276b7b3f217ae9, 0xfccff46051ee21db, 0x4e3c4e05a8bcd162, 0x86735a213a1a822d }, { 0x231dbfdb5bc943cb, 0x82632baf9f196540, 0x54171ebe51f9adf0, 0x266075e2c96192f } }, { { 0xd84ec38b12d6bb7f, 0xe1ae2aa1ca95319c, 0x5ce75f0f9d141853, 0x9fc7607fce6aa5f }, { 0x714a88bd5d2e736, 0xcb2e16d3721cb620, 0x2076c40f54ede442, 0xe9b9db55520fe90e }, { 0x6a9a91d9c5eadbb4, 0xa2c2cc901af1c0d9, 0x31b18ac1361a41b1, 0x9fac64bc132f6f42 } }, { { 0xd84d8d9af1b7156d, 0x9007b4077bc6cb3d, 0xa3ef8bda9a315e11, 0xdadcce044220d29a }, { 0xaad57f3b9de92475, 0x4548715883d55792, 0x364e81d1df14188b, 0x49e861cdbc329657 }, { 0x5dcccadcead6ca96, 0x3284fbc1aaf6f98c, 0x4dc574400edd59c8, 0x8cee4b3932b22baf } }, { { 0x8876cbd66ef69225, 0x2c3006b2dc20bd5a, 0xcd8d4df27e86d78f, 0x1d2abdd98ee6dae1 }, { 0xd644f9e43334ffd3, 0xeb5ec7eb0d65f6bd, 0x64abcecd5fa2e075, 0x8751fa9e4c86f16f }, { 0x5b284b978348b347, 0xc987cfd7e334ac61, 0x63c919ebf7020bfb, 0xceec01658685853d } }, { { 0xae841cd7225e2703, 0x8a8858da0063826f, 0x7d99e7ad2ec5ce36, 0x653682c6862f1483 }, { 0xa7142cbc9075372e, 0xc90147c823e749c3, 0x46b87799cc304533, 0x926c43152a018733 }, { 0xac68d7f447923e5a, 0x541f31b0208c4691, 0x16d31cf96f7a6157, 0xfa6c7cfade024dc7 } } }, { { { 0xf56f11f252439da4, 0x86148dc496cf416b, 0x485c2894120d3cbf, 0x570678c481d0f906 }, { 0xf97e9a670c4ac0c8, 0x44f294564008401c, 0xcfd1c0bc0e7b134, 0x2c52ee05b8e8bca9 }, { 0x38d60081db789b7d, 0xeca7e7300a4470ed, 0x53be89dd6f2058e0, 0x913a46ab26157529 } }, { { 0x4dde70c728b4266e, 0x13b835035fd89633, 0xd9e868120b4a243d, 0xf9caa66a712827f6 }, { 0x10a847802f86e6c5, 0x8cf0ee0f6d655af8, 0xcfa7723ed415c418, 0xa8bceb2edbeb9959 }, { 0xad3f61c523a1e15a, 0x59b317043081ef13, 0x8508dc11126bb12d, 0x3554c666ede94bc8 } }, { { 0x61b5f1ce9970128f, 0xd912dacb545cbbb2, 0x7c4cb4f9f02cd169, 0x47bf5e86023822e5 }, { 0xa5176944d8428ab8, 0x7356fab5de311715, 0x9ed48a04c2fc87f3, 0xd1df548938a3e486 }, { 0xfa1b9047b87dc3aa, 0x9441b19a510c9e93, 0x1e7407c33a53778f, 0x1a878aacbd38e768 } }, { { 0xf5499fec9da4edc5, 0x8e93e6a22359f087, 0x4da9dca1b9f3e576, 0x96ca0bbb17c2c29e }, { 0x7bea7e8a9c6caa61, 0x5181c5c2b1de13d5, 0xf6ebb6ddfc2f1d9b, 0x9e4480c76c0645b7 }, { 0xafc3dbb2eb960d00, 0x95b0c25202348c22, 0xb21e300f7186d1e0, 0xe73375dd9773c810 } }, { { 0xfcf8c1bdf351838, 0xfb872ed54a3bafb8, 0xea14f024a8858367, 0x35695cb9e01bef3b }, { 0xd1cf30533b7e269, 0x21823c3846a70f0c, 0x46906a463beca0d6, 0x7e901edd8482db46 }, { 0xb097ddd44b99eb0f, 0x755136988ef9ef22, 0xe6cbd9cb6769ff4c, 0x4e735182e33c21c7 } }, { { 0xb3e85a732cd9c03, 0x26ce5ea27cbd677a, 0x4a7baa1e352486, 0xe01fc99957c3b5ef }, { 0x94b95157e490e5a2, 0x501e2f27fe56546c, 0x449cf02fc31183f1, 0x8d6f5429f4c297a0 }, { 0x989dd8d33334dec1, 0x892895f6940ec8d2, 0x8b8fb5508597ec51, 0xdd1ac42890acda4d } }, { { 0x554781bba525576a, 0x5ea33c4de090b064, 0x682ad45cd95a6f4a, 0x32c18469f53b82db }, { 0x40baf6cf78dcf544, 0x55e7c4203f67d168, 0x7473631a5b543ea1, 0x82459dc1864b0b22 }, { 0xd4ea168dfc48fefc, 0xb1655e4992c212ac, 0x16d595601fe02b62, 0xf0d3a6d3806d569c } }, { { 0xe9c3868572e71df2, 0xaa02b60010c5d0a3, 0xee61a90195a66110, 0x5c241b277b82f859 }, { 0x73e0a0f4cea85678, 0x6c84bee9b169c008, 0xd0afe753bb253a81, 0x389f448d7f191eb7 }, { 0xef615789c485a54a, 0xbcc0f72047b651b0, 0xc2676df4842db479, 0x6068b767192c44fd } }, { { 0x3d88367dc220ade3, 0x487ab5868e0f72fd, 0x4b762970777622ae, 0x64b1e0afd8fb7e4 }, { 0x8995f3ae2c95fe1d, 0x9ae9305c4f7746e5, 0x2d77c2fb88606f56, 0x9ee1c58c989fa991 }, { 0x8abb703d2e1dced5, 0x6452d39a6f448f9, 0xe7a643130805bacb, 0xfc43f5d572581b80 } }, { { 0xa0f32b0fbb747236, 0xd5d9a9aa5c15a63e, 0x6e15831035da0418, 0x604811dd4218cf3e }, { 0x5ad41b8d5f9a017a, 0xf0aec1b29e6a65ac, 0x8d04fb2b61110dca, 0xdebea41874087c59 }, { 0x719a8f2409a5a278, 0xa222073067e70e85, 0x4b187d8267760a07, 0x53b08ab6a9e1767a } }, { { 0xb3ddfe1226ed672d, 0x54390636689d39ba, 0x7bd163108d629d57, 0xcf691f56796b8def }, { 0xb5fd16e92707e497, 0xf7e8cbbb881f8598, 0x75cede12e8af4b9b, 0x400eae7adc232f29 }, { 0xb9c61442a0215da4, 0x2098373f2d133268, 0xc80d6808abedbad4, 0xd000415dcbe53e23 } }, { { 0xd25ec2e654b4b864, 0x25acd9d620113f2b, 0x3d3497e7e45402d6, 0x8479f61076d2c050 }, { 0xe7dd33db7002806f, 0x1beab85d4881169, 0x819b1908a2d695f1, 0x56cceb6d03c6d4f5 }, { 0x184d9728f5dfc237, 0x2f243ee7c5035597, 0x8f16653da4e0779d, 0x70d01fcf1822b089 } }, { { 0x3bf22303d20018ce, 0x62d440f499e28b0e, 0x5bc9c69d027575c6, 0x8203052db180489c }, { 0x3a49e6fc9217440c, 0x178e1c8e324c5a11, 0xc5fa6b1987b595f6, 0x98b5a010b4ab00ef }, { 0x2873790de71761c3, 0x22b250e38d2297d3, 0x6c0a20b62cb7ad2b, 0xc50f83bdc220a372 } }, { { 0x31e3705c22578249, 0x954314b22f91dafa, 0x865826021f898c53, 0x99a0f561916d6d1 }, { 0x4f4fea713538fbad, 0x6259e4088c5b6634, 0xaae7974978f75f2d, 0xb2bd4c6a8ec7c53a }, { 0x109eac7c9e704a51, 0x50093bede49c9426, 0x89fa3dff1599ec18, 0x1bfe9d58ff52be1b } }, { { 0x329e330467471791, 0x6a6a448fe6b0b945, 0x8f7f3e01b93945f3, 0x9232b2384c9e85c4 }, { 0xf2fbe98dc69e4488, 0x947116dfb91a80d6, 0xe6f4ecc4637784bb, 0xb0d8b44830708ac7 }, { 0x2cf5b64312adb199, 0x3e2703a8680605d6, 0x2e2b5b3b36cd7c77, 0x82d547f29e647fe1 } } }, { { { 0x3d8927c5c3d80905, 0xb3f6992535cf06e0, 0xc7d2577ac00b7325, 0x789114338c052a6e }, { 0xe1230e7f3bbb47f2, 0x629712a0ac9b673a, 0xd949864ad645753e, 0xd0d91e25a6f62bcf }, { 0xe77d041509e40cf2, 0x7d8d96e3b347758a, 0x2fa8e115f219f245, 0x3edce141e9d61771 } }, { { 0x10790c0d5ffbf3a2, 0xeec4359e28c39bfe, 0x13cd7b0d4d12d144, 0x1a50efb6bb27498d }, { 0xbab6735e05e50516, 0xf4836b34df9ff9cd, 0x6fbcf53b01ed07e1, 0x8b7137d3ab464ee6 }, { 0xe3a5303fc085671a, 0xea580a8666a92328, 0x8983e4e788f310bc, 0x3531b45735ebbd99 } }, { { 0x11139cced8c6fb4a, 0x696143cc945ff13a, 0xd9637f6ec043ca24, 0x45bf2d293d1140d2 }, { 0xe3232d5e2a03481f, 0x24718135420cc103, 0x2d5dddc97af0952, 0xaf693880539988 }, { 0x8f51d2ff56eb2075, 0x1da05f27c366f26c, 0xd78b527b07b15d4d, 0x95e4eb46f8199ed4 } }, { { 0xb235e02c0d125d09, 0x6952ca69bfefb5e9, 0x301968384ae1b21a, 0xc4f51c24580ae114 }, { 0x8be60a487a5390be, 0x8b4c2e260d9da0c7, 0x9053f69d43657fd8, 0x267e73b7228d12e8 }, { 0x442fc02dc17ce81e, 0xc1aec2a55431804f, 0x3a42366a94739762, 0x9001df54aad2fbd2 } }, { { 0x1556b9a4301d6c69, 0xff4b1796504cfbc4, 0xf1704505ea1b1f38, 0xba7d70801c840c4d }, { 0x8a522f2f61aede8b, 0x9043ba2592b529e0, 0xc176cf530c745a4d, 0xb66002af35961acc }, { 0xc691c77f2a0877d0, 0x28ddb93eb7786a57, 0x8e20cacb4f9afe98, 0x8455d2c158cc8981 } }, { { 0xe389aa9bb4f9bd5b, 0x32f0bef24716c17b, 0x8ec79c775d9a5e8, 0x1f71f61a5533762b }, { 0x2cf9c283762d64d3, 0x18e8f4c195f6a2cc, 0x8f82ea632acb981a, 0xc8ca2b86b345e9f0 }, { 0x73ea4001211d0bcc, 0x25998c54258a90be, 0x43fd7b92f04e12ce, 0xe2ec1faacd9d7738 } }, { { 0x8293206545c20d05, 0x4e31a7077f8572c1, 0x4214af4109b7fba6, 0x7f522f797a46291a }, { 0x66bc5f02366edc15, 0xa77e9c1deb493558, 0x8d51ee9d10a7e331, 0x75253e787598f34e }, { 0xa01de2ac52953e13, 0x2516acbcc89e1861, 0x5effa61f7be643d6, 0x5dc5994fadbd63d3 } }, { { 0x281e6cfc6a8c4d18, 0xf43933249db81937, 0xe4f1b70338cf3f63, 0x34c51ccb3c1ce189 }, { 0x4942a2c768d7a9a9, 0x2da04dcb281e219e, 0x9774f4a9b224112a, 0x12cc522c4c9161f3 }, { 0xcb9202a93314d4f9, 0xfecf1ef32afd0f33, 0xa1cd3efa12c68315, 0x8695745ab641c4e2 } }, { { 0x6b02e060e0e8adfb, 0xc2058064ffae903a, 0x92981e8a34f5ffe0, 0x89f0f41daacf4205 }, { 0x9d03ee761e4aba9, 0x8baa2272dfd4e396, 0x378eb6760ececb99, 0x1bd5ce9e69d05c66 }, { 0x13d54312c3b187c9, 0x2c044e4e5a7a7a67, 0xc3d6cc238541389f, 0x111054f9325a14cd } }, { { 0x69c92920cf07e807, 0xc3982399d0d0d834, 0x8e23c3d100b3d2fa, 0x9d20a6fecaa83c48 }, { 0x1aa75560690c592f, 0x99965dc64193fed5, 0xd3b786057fe11647, 0x8441c1cfd2885537 }, { 0x88434b958be2853a, 0x5a81597adafbbded, 0xdc3cb3b30699b449, 0xd974dc9e25a471d2 } }, { { 0xd1ac058b10bc3712, 0xce1f116d1b92f422, 0x1687e2fb0ac55e1d, 0x850550201695c522 }, { 0x7e0a63497f99f5b5, 0x10d27b6655bac2e0, 0x2f61b25b6c2cce38, 0x1c3d58585c3a050e }, { 0xa5afc6ea96f8ca71, 0xae11ec42e22c0d, 0x9a7a476e9ed0af14, 0x30df1168466e50be } }, { { 0x9884f4e04adb1678, 0x7a81d8717c3672e7, 0x426ce8e9cb71a907, 0xb00ab6cbaa290bc0 }, { 0xd79b8f392aefcb5f, 0x121b917b14feff98, 0xa483624a7cdc0bcc, 0x5268b8c6b876562e }, { 0x86404f14d2f1c125, 0x6f73edddbcd94259, 0x234b4ef862a4d997, 0x273062157f6a42ad } }, { { 0x8e4f8d9b85303751, 0x8543577e59982a6c, 0xfa2ebc1fed034345, 0xa77816b2b2995ab1 }, { 0x17169bb9e41ad21, 0x9be306c1d686b46f, 0x7621df65400f0326, 0xe441d93f69e85f4a }, { 0xb4200cacea06c1f4, 0x46972c431c4be5f9, 0x2510d25eecc72bbd, 0xc52ccd266025b718 } }, { { 0x9d8cb8bfe19d0a7e, 0xfed62dba52a91647, 0x4fc8abbe1f29f01e, 0x6995ab09b5f735b6 }, { 0xf36e08431002fe52, 0x8c17f75d18ddbe7f, 0xdbd6322013c1f3d9, 0x5ffef6fe7919f882 }, { 0xbec39123bc563863, 0x827cc9f2c57a87d0, 0xd8a842f19dc0f586, 0x9b459de0dfc2087d } }, { { 0x938c613928008565, 0xf4b382cc4f6ba756, 0x52f249c83ca33704, 0x46858d207e57bef7 }, { 0xf6c1a3c59e8624d2, 0x6fbdbb7e932a3104, 0x57ff497757ed5c36, 0x6c4334cf4fcd2e99 }, { 0x49bc32f976b1a084, 0x67331cc5b1bd6ea7, 0xf7608f1a530ee08f, 0xd5a88e3e298f7752 } } }, { { { 0x71b3a45675b8dd24, 0x32ba307d7d092108, 0x7f3a01b95c7fb77d, 0xa98d91e022be8552 }, { 0x196a3c07909ae918, 0x416c6631fc56f0dd, 0x7cee54d3210457db, 0xd52598f2500d8889 }, { 0x4f3e7a93d5738e90, 0x7caabe5d337529af, 0xe95bddd149c520c2, 0x64c9369f10c8fc3 } }, { { 0xbf239601a085da11, 0xaeb03466b2d7d5b0, 0xeb7ddd38af203709, 0x9f6510a6fd267686 }, { 0xb1835d4aaafb57a3, 0x172904e7b5737eda, 0x634f34a79e414469, 0x25951f1e2c73de88 }, { 0x55325fa74272d789, 0x3783f7539c70386e, 0x1134847d1ce727b4, 0xa7ae10f82d3e3797 } }, { { 0xd8b6a3979121ed45, 0x6c2bd4432aaa429f, 0x7f42f37893876d33, 0x826505382d89cedb }, { 0xea4c5d54a217b2ea, 0xb105d1d66b3e45d2, 0xf23966787c6f407b, 0x56ee8d1373ac177c }, { 0x557101f90516ad0e, 0x68dc086720a71e8f, 0xb01cd8613ed2338d, 0x92ce691af3663d28 } }, { { 0x4133a1304753d37e, 0x3fa2e3cda05d7626, 0x3dd668239b796607, 0x9f3781c315967046 }, { 0x4539a760891c5248, 0x868c7f7309dd34d1, 0xd80bd175afc2b161, 0xda7222b6883c7c83 }, { 0x2675392e1f6ce43b, 0x6196984748e41708, 0x20b110e1ebeee417, 0x9e8ebad27631f97b } }, { { 0x3e709f68bbe08d50, 0x762e5e2727cf8fe2, 0xcac68e9950011e94, 0x9513235073a14e1a }, { 0xa2318b245ba752, 0x282abfe9dfec985b, 0x23762829fae05890, 0x701a7bb0d42702f3 }, { 0xcda0b40a6f52e3cc, 0xa77b91464a8a130a, 0xbd813b1cfe8eef54, 0x97ce728621a3cb36 } }, { { 0x1818a2eeb2d59788, 0x1035083a4492c174, 0x5aa6b647275aa48, 0xf66871a0a0d0a613 }, { 0xb6ac8a8d3bb5c767, 0x87a8a9013394b4e1, 0xc8342855214dcd26, 0xc35709b39a813a19 }, { 0x1008c7442746c53c, 0x74a2631d91c057f8, 0x490097d63293aaa1, 0xe96c592c988c0950 } }, { { 0x8024ba1753b2baee, 0x1a5a65af42543937, 0x6d157cb24b491c8c, 0x2573bfc6c993762e }, { 0xaa62d7e8a1334807, 0xbd60070e2b9eca18, 0xf44674cd4899a333, 0x314e5e97e802ec7 }, { 0xfc596c71200da64e, 0xbaae62889c079dd6, 0x48fd15806f80c719, 0x446509a2e19e7f7a } }, { { 0x921243d64e8c0cfb, 0x13534d8534cbead8, 0x509e5438eb7772ee, 0x65bf2ae0d46d95eb }, { 0x12c4ee0611d58e4, 0x5c0dc6715451a006, 0x35e48015156e095c, 0xa28efebf9419b622 }, { 0x7f864ec37f5bca7b, 0x21d1294e8187b9e6, 0xc07bbc83f4ce34ef, 0xfd59532497af0138 } }, { { 0x8ea5c649678c4f9e, 0x73869a7b34a76b0a, 0xc390fdd068973234, 0x4d12d2874829c1c8 }, { 0x43eda23cbebd16a3, 0x15948f40fab16247, 0x618c24dbefbd76b8, 0xcf82c4dd6e7c78d9 }, { 0x4d3c9b830e00acac, 0x306b4f4c22cd297a, 0x4db9fa473f057843, 0x37a518a723b36f6 } }, { { 0x97d9fff4de196b24, 0xc36329fd6e4b941d, 0xcc50ce49f1dbbc50, 0x2c1c9c457646a1ed }, { 0x6c87abea2287e8be, 0xe69f6818a5cfaeba, 0x9256bf3f020c14b, 0x8072d4eb9b899d6c }, { 0xe40f18060d7aef33, 0xe8f1fc34c4096371, 0xfc1921c4ba379bdb, 0xb4d335ae9bd3a3f2 } }, { { 0x42699fc227a5dc3a, 0xc1f590e4a0b9907d, 0x80862d2474766d5e, 0x6444a28c140bdacd }, { 0xee270328c63a3532, 0x8e541c1773ee50f1, 0xc413e7285bbfdecf, 0xe66209fd4b0e7d71 }, { 0xbf657c6c48a0a7c6, 0xc47de4df58051722, 0xe05d5b938ef610e2, 0x35de13141bc089c9 } }, { { 0xf20eeedfba525984, 0x61b157694d894dcb, 0x59745a598dd47ae, 0xccd084eb4b426d78 }, { 0x28d2a8d23217e49b, 0x608b5e0b848f7d2, 0x6dd2d698ff925f9e, 0xfb33cbe0316b00e9 }, { 0x5f4429ceeb8a45c9, 0xb135f42095eacce2, 0xf4abb569ed4bd2ae, 0x2fe185c150fc1900 } }, { { 0xe39c76dcb7dfbbc5, 0xa1b1c9030503a855, 0x6d00802ebd94c511, 0x16a202e96b23f250 }, { 0xe5c80b3e9601c39d, 0xd035e036b330f29, 0x6575bbeb2cba7386, 0x8045c731fd83ecb0 }, { 0xf50aee851d6acae6, 0xa78c834e5c9a2d2, 0xe98fed979f05103e, 0x63975fb315fbac2b } }, { { 0xb83260714d1d31a3, 0xd274082ef9f03e0e, 0xe6c4b67c6739442d, 0x9a09f21b413d2b5 }, { 0x71ec4bae681efa04, 0x16d33ff8a1838463, 0x8c85bfee563cacde, 0xa5b45735ef943924 }, { 0x831458dd133c3fe2, 0xf5da414f2f28f24a, 0x16e247f3dc82c5ff, 0x6dcc4747e1d1170d } }, { { 0x3790d011a1ddedb5, 0x543b3a93b1986a38, 0xbb57e737946df40e, 0xe5643fb15999f440 }, { 0xd7926230e818de0e, 0x4dca5c64b2dc603a, 0x5917a2f62699a0f8, 0x7851344159c19d8d }, { 0xb8fe065e75ff8109, 0x4939c05b7dee2b16, 0x34b980c75fe417e8, 0xee088c3479df08eb } } }, { { { 0xb476b6ac0030af4a, 0x37d3e638b589dcec, 0xb3e80681a79717bb, 0x491cae072ab269cd }, { 0x73356917a51ab322, 0x722714d62ced6129, 0x4d017d68498a9c51, 0x5dbbbe6a01c71af0 }, { 0x8cfa0c2110aa601f, 0x99db98ca1696338c, 0xfb64bc684580a166, 0x821d503d6fb0d104 } }, { { 0x727dc9438c6d121f, 0xc0a6237cd9650ab7, 0xf4ea442cbc10e7f6, 0x23d9afb669ba1d6e }, { 0xf8d3c683af61f0b8, 0x22c5957b5f002b93, 0x74508c1162717f64, 0xa4fb54c2468d546a }, { 0x94ae4fdec446a09a, 0xc422d9d660ddc0e3, 0xa7ffb2ba9a983658, 0x1c4b58f090d3cd50 } }, { { 0xacd5eaef443d65f9, 0xc9d70ffaa35e7964, 0x11a812a37043ce63, 0x29838d0b5c8521d9 }, { 0x7555e94a6cd9a126, 0x7ca00c5027ff6278, 0x1522e372f4c97c17, 0x7e4fadb3200f23df }, { 0x8ed54094bf3847aa, 0x5fab8c67903565f9, 0x1211649cfcc3c801, 0xe27307bca3899481 } }, { { 0x30e532293fc366f, 0xb678cdf258284bd3, 0xe2bf89e1782ab59f, 0x88cd969e49cd37ce }, { 0x226e69e129072dd4, 0x102f5d929993075b, 0x476d73a66be7c887, 0x957de754d345874a }, { 0xe594ee69ca2c0f84, 0x54c2af24ff983f01, 0x98f0ef0505b81bd9, 0x55eb500647f9ccd5 } }, { { 0xf8db65d3bb84d32d, 0x4906e7296851a1dc, 0xdb4edfecf2a6b35b, 0x6793db03008bf705 }, { 0x2148d59dda4064a, 0x5e916e4612c2077d, 0xe1274633f815603d, 0x60ba7939611c6038 }, { 0x419624667ee0f481, 0x8145ced0ddc9f740, 0xaa0d273e55b5c730, 0x50cd48276db1530a } }, { { 0xb456d5f6edf8e43d, 0x3c60bb0dea629aa6, 0x5214deb5dc1ad643, 0x36e982c746c84f7c }, { 0x647d40f626ae8ec3, 0x3aa2820d8b14a2d7, 0xdd20922eb42d1595, 0x412c547b35d00d37 }, { 0x4cb4905247cec430, 0xf465623b0ce60014, 0x8ad5575b3a97ecbb, 0x685384852b9e9e02 } }, { { 0xeb03020cbdcd98ef, 0x2c8ea5ca3b6bbdb7, 0x5e9ab7420078c1c7, 0x1adfc68bdc1c1a75 }, { 0x1645fa1620d3f0fb, 0x196c8e3bbdd636cf, 0x545496362d1c932e, 0xddb98defb8abf695 }, { 0xe271715218f2a852, 0xefc76327e095b523, 0x834736c95502e084, 0x987211b44944dac0 } }, { { 0xc009af0146ca4497, 0x6588acc2f691ac43, 0xc81438058740ce1, 0xc479d63c748c4281 }, { 0x1ff827ef8e86df90, 0x1f8e0e0566ec0abf, 0x7c7b33571192aad1, 0xed83f4cc4e96c0a5 }, { 0xac2032c861e2ad14, 0xa75b8f9eaed6657e, 0xc361b81e0780be3, 0xc55003bb00b46af6 } }, { { 0xfefbb3a8897ea291, 0x986ff14bc47f3df6, 0x7626708505f6d2e1, 0xa39940812bca54c4 }, { 0x2e7671722c6fd14d, 0xabddc8030e7331f6, 0xba29546c07230f0c, 0xad7b2cdc80187b6a }, { 0xa8959e5e7a2ab2a7, 0xbefd683d568a19a3, 0xd7dd675d187be2c0, 0xdc5740039b87c5eb } }, { { 0xb87d5522e60ed647, 0xb5684f5f5217bc2a, 0xd2e38a915b0dceb8, 0xce2d280966ad9865 }, { 0x763eebe20bf66383, 0x814ad8ec42899ca3, 0xd9644aa231b02c26, 0xcd2f2d3c88327dcc }, { 0xd8bacd072c2fa336, 0x3e420f594af18253, 0x99c29948eaa60e7a, 0xc64097c9e2d2bc43 } }, { { 0x7ceba29b7345fcb0, 0x9dd9f79de92416ac, 0xd87c07c9696ee297, 0x41714368aad09d82 }, { 0x477dbaee55414393, 0x7033c63af950fef7, 0x958dbd6b6a216fe0, 0x8da33ea6058440fd }, { 0x3b7ee04d5b72173c, 0x62f1d327ba5e493, 0x249d5fdebf693418, 0xd19cea874b5faa43 } }, { { 0x7826d4a727043057, 0x7720e5da90667b22, 0xe30c6eb01bf9d677, 0xe23020b1df3d6c38 }, { 0x1eea362c788df65b, 0x7d903b5e63ba6fac, 0x3ae2993ff8ff413f, 0x477db3bcffb011fe }, { 0xd241808a7a71cf75, 0x6b5cda8711815fa7, 0x1e86083f52ebcceb, 0x3a51f4cf483e607c } }, { { 0xfc344bf94cb95384, 0x5e18ac9bb259f20a, 0xc35dba7d02610125, 0xc6ec61d9d3f256bb }, { 0x73a78db186f5d6d9, 0x3879a6252d157494, 0x1d67ad1d366060c3, 0x167caa9c80f13e7e }, { 0xea9ebbc5852235b, 0x1a39f50971afaee6, 0x5f1e804fb940510e, 0x4185f4622d69824b } }, { { 0x417ab7df7e7e60b0, 0x24394162b57c119c, 0x18e44c822048f5be, 0xef34b360fb936ee2 }, { 0x5cb2dcce683b49f0, 0xb866abce6a737a8b, 0xbba6f1de8468d30d, 0x75db7ec5a6b00850 }, { 0x2cfe097d32fcd7c5, 0x5a47a819338b850d, 0x7a89d18a2869ac59, 0xee3bd1fe34e80638 } }, { { 0x3d7773223f0b6283, 0x9dd3cf892702c44b, 0x6977d6e68d306a6d, 0xa3870a9ee41f5532 }, { 0x828c3b14a0decd3b, 0x7f438da146d8c60a, 0xcc3f8ddaa47230e0, 0x72692366c3e99aed }, { 0xdb52a1c2355c69aa, 0x37882a7ebb52bb30, 0x229ca21df9ba9625, 0x4c7201895d570384 } } }, { { { 0xc5607552f6e9877f, 0x91851466e99d35d, 0x7ab87de8d895041a, 0x1946267854a5e56 }, { 0xa14fd4b25efda9fe, 0x9e5ec287050d30b4, 0x52a74deb6c85957d, 0xbfd8a1a6b882320a }, { 0x595479a00b86bfb, 0x12a84677c6eb00ad, 0x38d663a7bad6a49f, 0x2d2befd65d1803d9 } }, { { 0x787048b895f497ec, 0xc71d8b623e522fbd, 0xfb9d1fe0fbd0cfef, 0xd74d49aaee12c659 }, { 0x29706df0ac913299, 0x6db76462ab671f4d, 0x6a756d0109212c91, 0x14ba8c33f48871e7 }, { 0x3f8f8836b56fd6b2, 0xf3993c8b5be9c239, 0x50dbdb631d2261bd, 0x91cf49a078a8487b } }, { { 0x19976715d5cfbc99, 0xc031a20e1ce0579, 0xd355c2bd6efe8953, 0x5cb64ca4814bd764 }, { 0xb8e36d40d92c9ca3, 0x899c6424aa76ba46, 0xb1591aa89e341269, 0xb4986cb569d210fd }, { 0x61a5eef4d895aad4, 0x6e23972d1ed166f3, 0x29b6daf2770f92cd, 0x3aa7b5e6c53fa42c } }, { { 0x7ae42535eddd97a2, 0xe1f79adcee18e30d, 0x2cb064c011512213, 0x932687de1d78bbb8 }, { 0xb832181ccb393775, 0x71c062c4e3a0c441, 0xedc3fe498f217b9f, 0xf1f8ded4ad8a9137 }, { 0x5fae0997459dc01f, 0x5507fb9cebddf061, 0x26e9093ab047d9fb, 0xee0eef5c29f45107 } }, { { 0x34900a0397971007, 0x88b5a2edde551b42, 0x640f482533129fd8, 0x8aee869f7dbb70e7 }, { 0x450f25a4efda4e87, 0x3291219894bc2f39, 0x68c750e8786dba1e, 0xacf5f8a7a7274fed }, { 0xa2b116c819c36cdd, 0x5fdb16856b2fbb16, 0x6d0dfc4bbac72dab, 0xe46a96142a86d24a } }, { { 0xfb1ccd322849ea7b, 0xaae3dc0248a57d8, 0x6746e3983ecf3720, 0x7d3a8b06b1a28d39 }, { 0x53d4691af64db8c0, 0xf278b7fcd3bdee1e, 0x40127c3ed8f5c32b, 0xbfb6f44ed661b10e }, { 0xac23a84486f7e69f, 0x13df8afbbc95e92, 0x892209c522da0f0, 0xc734f054b5207be3 } }, { { 0xcc377ca984779536, 0x7fead92a996699f5, 0x725316d6e55c3cd2, 0xf20a04907f655ede }, { 0xa9f1226e34cf02f8, 0xc34a3b67100f033a, 0xdf4346232bf5ed08, 0x290083efdf97a287 }, { 0x5a99f5ad89642b8f, 0x3bcbb534c93e22c, 0xfa86a094451b8ed, 0x3df25df089880424 } }, { { 0x45a3241bbac2f8ed, 0x6fbe16a859460ff, 0x7a64eadeb4138ad, 0x156d07b3c4cf00a0 }, { 0x502026283091b2b6, 0x91a08fcf1606ba0d, 0x14d606a3920af07c, 0x8a2872ddae598406 }, { 0xad0884bc157228f4, 0xec19492d6dcbe1e8, 0x75458fea83eade69, 0xc79236404378c089 } }, { { 0xd4069d4e34072766, 0x64194ddd77704b09, 0xca69809de6a1b23f, 0xac09bc0909a6740d }, { 0x1af4084ef90820db, 0x607e00dcd4be4da8, 0xdcd1b14d96031606, 0x8ef7d19a0a0e6276 }, { 0x9fa4d9679cbbdd08, 0xab9616aa5729a01d, 0x43fcc67121212d50, 0xd2952cebecd8d362 } }, { { 0x25ddf5dbe15fdfe7, 0xd1fdbbb0735126cc, 0x69c04caf9d805ef, 0x5e51ff58e811e535 }, { 0x338693b7531840c2, 0x2c87644ad161acd9, 0xb97df5d938259137, 0xe4bba91e122884c4 }, { 0x70175d24aa6a7f6c, 0x2eac49c8ce4ba4b, 0xa86ff7ae5f049fd1, 0xa52de7ca20e02ed5 } }, { { 0xef59098001c61e37, 0x2031ec515e597804, 0x551b5399444e5843, 0x7ba806f60842192f }, { 0xa6bc34c3aae784a0, 0xf3dc520832dc4e25, 0xcdf46e6b66aba2ba, 0x93a022b72e8f0f3f }, { 0xf414a314df391204, 0x672391e29a552582, 0xa953d6f6e59cbb38, 0x82aac1350f29b72a } }, { { 0x3b2ba5a9b19d17f, 0xde194dbdea66fa2c, 0xcbb5c1e3b793d929, 0xf50457c19a272152 }, { 0x40b6cd521b55c42c, 0x52229d41439921a, 0x21ae3d6a7a807f5c, 0x2d306946290c4b61 }, { 0x3f42ac46a5f6caa9, 0x32c8c7cefbbf6f3d, 0x7854cce2c888fc62, 0x857c6798123f1a43 } }, { { 0x9a280d7d08bde993, 0xe892f18fac865a48, 0x8bd64236c69d4029, 0x58600fbc625e3016 }, { 0xadb8eb28b51c4f34, 0x7ba1eaa1d684625, 0xa7d27402882945f5, 0x67c150f199f5f2dd }, { 0xfeb46e8c83534aea, 0x26aaaf7ad7ba9130, 0x19bb4eff392c5846, 0xd076d74c9dfd2592 } }, { { 0x3d0b3186eca5aa79, 0xe92d33330feecdf4, 0xf6d5b3cfc133c7ac, 0x66a90145e4e0c7f }, { 0x7e163b75ccc4624, 0xee29c3535fea6841, 0xb53379f78d669f8d, 0xa0f760e4cae7ef23 }, { 0x3d081b5053e8f0b1, 0x83f5d05a19eab8e1, 0x78728c0ae1a79132, 0x22ca15081fb5ceaa } }, { { 0x4aba2786ecac7434, 0x51cedbe9b058d6fa, 0x5ad89adcceb1f8b2, 0x3e4bcd2e46ef170d }, { 0x21434af24f0da029, 0x29e77645b99a8e05, 0x1873c5f40ef2caf1, 0xa9178862e2f46eab }, { 0xf598bb8ed50253c8, 0xe702a1e370944d75, 0x4763b40d58513979, 0x9545d5a216d20b8f } } }, { { { 0x4dcca2605ae4062d, 0x966a2ff830e1c643, 0xd0124a7a046dac91, 0xdd42be4d6e17fd8d }, { 0xd7a916dcb21bf7fd, 0xf87c9ae03de82756, 0x77561f0af1b4bb5e, 0xa30eaca55e589c7c }, { 0xc47f1e4e7e38ef06, 0xb407e89f114b61a1, 0x8dd19a4b87bf67b5, 0xda87568e42c5a652 } }, { { 0x83d8bca67e7b1e61, 0x1b592b939ea61b63, 0x283c61b9ad809e55, 0x9bb573641871280d }, { 0xc14cee40717747f3, 0x959b3f2a51787392, 0xf9830b5934a6a9dc, 0x8c3a5bee43d4eacd }, { 0x3efbd445a6afb3b9, 0x38df680f8271e77c, 0xc17fa6d875d1eedf, 0xd25e8a440d81342c } }, { { 0x66d32f328256a1bf, 0xda1bae3cfa0af0af, 0xddec10b3e6da3492, 0x5739809f73ea4787 }, { 0xde43165ffe98f644, 0x5c1d776cc6d280dd, 0xe9bcc087a4d93189, 0xd9131a54ee98051d }, { 0xf8371713ba4b4ab7, 0xca235ebda4abbfed, 0xf413d43e8c48be94, 0xd25ad65d85c1f2c2 } }, { { 0x179d51d37094fcd6, 0x34b601e624b9e317, 0x39f71748dc634420, 0xcc31b44869aa03e4 }, { 0xa1a7e32a8bed60c9, 0xa44ae56710ef0df5, 0x5f0a82d1bc70792a, 0xda413820d5244a51 }, { 0x8ebb0df389da3b58, 0x6f80e61436ae6977, 0x363276282faebf80, 0x257d924d38771b45 } }, { { 0x7f55ad52af452f9b, 0x713e61ec59b2216c, 0xf6c29e0db869d9b1, 0xd9d378633afe053f }, { 0x5301c107b65eb840, 0xfb24373b8d7e431c, 0xafafac92adfc572e, 0xd6e7262f5ea3be96 }, { 0x48dbbdb96e3e4336, 0x6949cb6e1c9a5061, 0x136c179647f7222d, 0x65ff4ca2aec35853 } }, { { 0x8d1e3312b533882b, 0xd3ddeecfab2c24ab, 0x53971456e86d6fb0, 0xf27ede173c268fbf }, { 0xec7ac50fed75a5c3, 0x6055f4a7f246e9e5, 0x741fe53cc25dcf7a, 0x340031e836e49af1 }, { 0xd24fd1c276707643, 0xc814a694ec15e4f7, 0x8e57cb59db89424, 0xc76989b6efc1601e } }, { { 0x159d879d52b2e22e, 0x19ab934300cf45bd, 0xb4e3919c7c13d343, 0x2f347ba42844751f }, { 0x4bcfb3eaa72d47f0, 0x2bfec11cb74372e9, 0xd69a717f8a187514, 0x1b7a25ba1ad378d }, { 0xca68e3d6f7dd8097, 0x39e328ac9227ff6b, 0x2506351434038afd, 0xf3b6fe7810cd0590 } }, { { 0x2959cb0583b7a20a, 0x23ccb48e4c02df61, 0x2f3e764a8453d1f2, 0x5ba3895dcb1919d5 }, { 0xdcbf5cc8be4f05c2, 0xf26bd0c1096fa943, 0x32fc3dc7b09d0b30, 0xccd3ffbcc1c34ea7 }, { 0x70c3d3a05dca7e43, 0xcd28c68fa3bdb515, 0x7e7ff23fef9c0ec0, 0xa1b1516c18a251e7 } }, { { 0x1e51c96597f86583, 0x8434b63c6a41da70, 0x82d1bb9f3bc0f07, 0x2e93c939f012c6bd }, { 0xc52903db7cee6fdd, 0xd1f0253a053b9fb9, 0x48302aa60f62aa32, 0x20668e436878f651 }, { 0xaef4147f7a7c4fff, 0x60d315c2ba8b37ad, 0xe7a9bdd6f0c273e6, 0x5ec084eccad8a7c8 } }, { { 0xf875973a1a76e168, 0x5d8e959e2931fbca, 0xf227c4d83a02b1c, 0x33dec5af8a9388fd }, { 0x57966e4e3761a52c, 0xa32e31a4b69e807, 0xc55c77a0ffc9f6c8, 0xf6406e27b532a8b0 }, { 0xd9273180de32af41, 0x475324c8561403bb, 0xbe0fbdddc34c64e7, 0x5a8698faa5984ed7 } }, { { 0x7b5cb2f755abcac1, 0x99a59843317aa59b, 0x5abd9b9d0028365e, 0xcdf9f3bbb90cc266 }, { 0x9f084c37778951df, 0xd81099c9d2b66674, 0x956600468be5664c, 0xda5f8e104fe4c3db }, { 0xcc51c6d046361beb, 0x3423ebe8f046870c, 0xc60c71529af71472, 0x7f4e5e68d6ed141b } }, { { 0x2aa52d4dd5c8bedc, 0x740929eae54acada, 0x4574c042981d3042, 0xb34081aa60296284 }, { 0x98455c48068f793, 0xd154d888b51cf28d, 0xdafd325aa9c70fdb, 0x7fc3ee17a8193d89 }, { 0x6c2559ede3db9932, 0x62d03ee12fe211d3, 0xf0dbb101031868e8, 0xea934860402b7131 } }, { { 0x94581c1c200e7bcd, 0x2cb858b476fc60dc, 0x51632a996f8346f1, 0x9c630ff8cfc69fae }, { 0x75076e5f32871bc, 0xe7bb02ccecf1020b, 0xfa8e067a5132cdd, 0xa478e513f164ba35 }, { 0x14c26e8448a6e1dd, 0x11bc6c7f5ca61ac9, 0x40cc416ae6c538e3, 0x3313975c0a28afc1 } }, { { 0xda0c92d729c248cf, 0xad41f87562dda516, 0x21d540a01af18ec2, 0x3adc57d6871ab8f2 }, { 0xd9897fc2028bfc7e, 0xb5f452056d644473, 0xe8659e62fa1d4a7a, 0x39fb2cf6b54ba91c }, { 0x2adccbf56551eab1, 0x538750edaec156b, 0x188f9403937391d7, 0xddd00bb1177c8bfd } }, { { 0xf82d03afdbb6ff3f, 0xc36a113233536767, 0x4d584c47848ed9ba, 0x41d8a3e9f2282a1c }, { 0x92599db9a0b53c2b, 0xc28188cf0dc034f8, 0x2313002fc5626534, 0x3724c300ce0089e8 }, { 0x2982f03c69d737ac, 0x1cbb481e92a52ca9, 0x2dfe83e415610316, 0xe520c61f4198327 } } }, { { { 0x5c70eda5ff6fa611, 0x44ce9c323a9bcf03, 0x712ef0afb093083, 0xcf57e9dd38f0c763 }, { 0x431c95da256f26e2, 0x5be933dd0eabc597, 0x65619097165bfe1f, 0x747d9f16964c0b21 }, { 0xd3368aa5920689b4, 0x72196bf6e403dfed, 0x97c9d6e1d94b9ad8, 0x6abc0fc33600f508 } }, { { 0xb325a1648f78031d, 0x742f840c2ead5c8e, 0xa459313bb3c6b3f7, 0xa875039d23d2870a }, { 0x52f042b24a893911, 0xed4357a3985146dc, 0xc75a700c7eeb46b5, 0x2614d135c913fa4d }, { 0x1dc8484f5bcadb0e, 0xa4ab43b655d2c968, 0xa49818313877465d, 0xc3fed1bec0f28ce0 } }, { { 0x18a04a3e21cfe583, 0xcdb732df7c2f50dd, 0x26eb3c82767f4050, 0x9d8ce3a26cf4b403 }, { 0x190d6bd483b3cf47, 0x7cc97e66f01b06c5, 0xfe99256ff2691004, 0x22e60b32920ced19 }, { 0xeb797811c570ef82, 0x5d62f7f1514fb77b, 0xb807ac346017c322, 0xd8772c3e3dd3457c } }, { { 0x4ea386ccf55f5f55, 0x9359a5f94f44a7d6, 0xff91ffbafd119d6e, 0x32709cb45fd4f908 }, { 0x7929ed7f9b86536d, 0x29a052a4a1187080, 0x60abf67e3368d8a5, 0xfa99d3fa8f788dd9 }, { 0xd6a5508f066f618, 0x54d933acdd18a3e1, 0x9b5bfcaea2af7823, 0xc59084963c37ff3f } }, { { 0xfe7a21d7e1a7e7d, 0x3adce97ea8e32642, 0x32841d679f2e9ade, 0xcceba6eeed28aaf }, { 0x834ef32916683b40, 0x3f38a76536a78359, 0x19f66b96f1906bba, 0xb498bff6b7ef1c4b }, { 0x6475cfc3deb93bff, 0xcb6e7a994970046b, 0x58c6a707669b860e, 0x335cf64ef08f41bd } }, { { 0x3729b3bd015b8e0a, 0x17b16f8e190018a8, 0x74d391cea2ccebe9, 0x4190e1390852f524 }, { 0x93576e45df594437, 0xb9a70921a2b1bf9, 0x25accf8fbca1d51, 0x972725025d5a896d }, { 0x3003318d9b9b7b41, 0xa3eea2b55496d9f7, 0x271edbd6621a9a1e, 0x6accc31c9f768b7b } }, { { 0x2f9df4f4779de6b2, 0xad8e084df03cdb90, 0x6abb348fa1a5a18a, 0xaa8c1af06747ce78 }, { 0x15de4e78b3abeb31, 0x53228e83f5cc5e8, 0x91a3108274ce1bad, 0x765caa9942ee4e3d }, { 0x3d5aeffad9f5643e, 0x393103c979197e36, 0x4cb653f4e6ecc6c7, 0xc417d69eafa56fde } }, { { 0xa7f09b84ba229103, 0x95abd75029280e7f, 0x5ea72fab2bb03ca7, 0xcf838b37a1ca447f }, { 0xf82800f05eb3fce, 0x831e7225c182e755, 0xba99eff182bb00b4, 0xea0ce87875127e97 }, { 0x8a792c851ecf24a7, 0xeb4e21f7d02d8892, 0x4727e504c44b2668, 0x7736d4cccdfc3147 } }, { { 0x73e3b5455dba9818, 0x6c246826e2ad44, 0x679343cf8132f282, 0x5487fcc321b4388b }, { 0x9cc20ff704f04ae5, 0x13b1df963e575ba1, 0x7cffd697a513c8e8, 0xa78c872020c4672 }, { 0x71bab8ce636c7320, 0x7aa0edb30d70dac9, 0x75cfa8ec85a67f1b, 0xb43bf7eef2fce022 } }, { { 0x88c5472a4d8fbb2e, 0xe48deb0e4118ab83, 0x5f8c916c14c888b1, 0x6d34de07fbeadca4 }, { 0x9b2a279d792b0039, 0xaf9f15d5b985e971, 0xd1f52f8917f3d937, 0x85a9cec94ee43a33 }, { 0xb77b9f16cfacb09f, 0xdb8b6c1a4a61fb50, 0xa15d6d86ba66c26a, 0xfcf609b8cb9c53d7 } }, { { 0x29fe341adaec209e, 0xa6a3cd2a9e40a40d, 0x2e35c43e7b46dfd9, 0x33bdec00be5f9c0b }, { 0x485f8e68575fdfc3, 0xfc41cbb962e19633, 0xa5f56424cbffac47, 0xd71f6b1833b226fc }, { 0xea0f2be0e9d6806, 0x2d9040cb6d25ba10, 0xc80c73b211e75db0, 0x5f876ab79b3a5946 } }, { { 0x3cf27da5f1b99cb8, 0x8d668249b12cbf58, 0x3f6ef5bb90deb5d4, 0x2c9def4b0af3c666 }, { 0x12b9d59e5b00ba82, 0x9c0a9071cb2d4ff0, 0xd8cd9171e9574111, 0x4200f1f8243365e5 }, { 0x220048d2f581f2e5, 0x21d9345f6a134491, 0x5747cb0798d242eb, 0x814590baf7c26485 } }, { { 0x5baa1ce6995c0ee0, 0xf48277688d815697, 0x3e1daa362b040811, 0x71c1b56775644619 }, { 0xed4383bff8f0eb53, 0x3b93ec675cda68d5, 0x3eebce382bbfb39a, 0xd339e188f08a234c }, { 0xf24abb399cda27b5, 0xa2c311223525c58e, 0x40e92a4b9681156b, 0xbf67ae8d8b70e8b6 } }, { { 0x2877ea6d4ede99c2, 0x8223b2179cd0cec0, 0xc927540850113205, 0xa8b65ef6291fcd6f }, { 0x6cd9d4cbf4bb7db3, 0x7fd438be52cced9c, 0xdef9bbf6497c8da, 0x322c85e204aace6a }, { 0xc40f27f9ce3436c8, 0xce3123d2a70fa0ec, 0x109482b9b5f55bc0, 0xec7449578ab174fa } }, { { 0x43050481836c1c3a, 0x47a24ddacde983de, 0x151583af409cf11a, 0x2f69943d9435d0e5 }, { 0xd38d763cf548948a, 0x900ecd64a609d027, 0x3fc42d2ce2fee6e8, 0x25ab6effa02f2423 }, { 0x193596a107d55141, 0x8386e650458f2eb5, 0x573bad2fc41a9b05, 0xecfa20787d4b4a09 } } }, { { { 0x952ae47f96a431c7, 0xa1cd17d1651d432d, 0xc79da8db795ff1b2, 0xf0aa43fba2e29397 }, { 0xa3f3dd84631ce2a3, 0x258442dae1721bbb, 0xd2b5f910da3821b8, 0x80e01e9825a44243 }, { 0xe772b184a3a74af, 0x125ceb2b86399cd3, 0x96c0ab6a8db7e412, 0x4d225939691527b0 } }, { { 0x3d6340f78bc4c58f, 0x99b692f0cda99247, 0x2d6e94f6cdd83231, 0x837b4979b4567594 }, { 0xf047ed967a3d0cb2, 0x8c82b902848a9f66, 0xf86700cc8cdb0232, 0xe1acb1c366577294 }, { 0x296ecf2def410a82, 0xce7937177dce11e1, 0xd0cb3ecd7713017f, 0xf6fa0b1ba5cc5a30 } }, { { 0xa78017de3e6858ce, 0x63a8a2b0a9d780b, 0xed6cb4a0c7c515b, 0x898516374bafe34c }, { 0xde3231099a9ad389, 0x719c8676cd8a7405, 0x22f020cc5bcb0e81, 0x39808df412929bbd }, { 0x443de6eb14a37d1, 0x44f0668664632dbe, 0x24fc854c8424d148, 0xcfecfafd2bb92af6 } }, { { 0x4f99efb16020b6a0, 0x445edcd5cf422208, 0x2cf105d0e50ad9c0, 0xff412dddde1689d8 }, { 0xd7f62a0323d2c025, 0x158d2d9f1bae411b, 0x789c0169898e2772, 0xb3498572d28bd950 }, { 0x3f8cfcb57d70192e, 0x9746f520c4e517f3, 0xaf4b7c64e6acd8ec, 0xd65e4d2e9bcaa83e } }, { { 0x56873dc05a98ade, 0x32fc6f60e738d058, 0xc05fd8d56b4783c0, 0x39f32184d314eec9 }, { 0x11bc5968cb81e5c2, 0x230ad44c1b8c12d, 0xa4c01f805f9f8c9a, 0xeaf5b4f086a9ab9c }, { 0xdfc42f8a77794ea1, 0x8327729a8302f88a, 0x23c003fb35270e8c, 0x962b2118e346997c } }, { { 0xdbe831758d4f94f3, 0x780d1382c655c6c1, 0x82f12b6bf1464059, 0x26c4594bbc8d7377 }, { 0x9e94e2ad4b1fb590, 0x16635e071ef0269d, 0x1df71ee8c7a09d9e, 0x98ed7725fbf519b5 }, { 0x7fd65f939248c559, 0xb941b82482d22c84, 0x122246a47a835174, 0x883c86589e7b1f75 } }, { { 0x1be89c7cc3a9a421, 0xb75e90164acb0295, 0x741f36edd7916b89, 0xa2f1932e788ae2b5 }, { 0xde323d3475a1b9b3, 0xac26ff0959c7093e, 0x3d24cab6c3c0ac4a, 0xadb6515e6a8923b5 }, { 0x4e6830a4389c1d22, 0xc39711119421e1a1, 0x9688dbfaaf1e9c2a, 0xa371c28f572ce30 } }, { { 0x923aaa4f42a7f0de, 0xcbc76f1d0180d565, 0x2f7e0d4058e526fd, 0xa71496ef942bb384 }, { 0x6bc451d797c675d9, 0xfbe12a4adb579bb1, 0x874a212d0b082e67, 0xb33e1edb2872f360 }, { 0xc59704754e27101, 0xcec4e6f2986ceca, 0x28813fdfbc4a92e2, 0xeaf056e17c792636 } }, { { 0x7bbe4b047ec65d12, 0x39e5a06ed06cd9da, 0x6df0fd48be4598c1, 0x92c03ca6188c3301 }, { 0xa82812e8c26e4078, 0xbd238703664822e, 0x16a49594f5329c6a, 0x163a19ec291fd147 }, { 0xcbe11431f6468572, 0x4899ea7d1bea7a10, 0x772b9fc62c138d98, 0x279dad922f772eea } }, { { 0x692a52facf852b57, 0x3480c9ef994e8aa9, 0xb39f2fb1ba200060, 0x942abb21fdadaa58 }, { 0xd9785d18d2b818d2, 0xca1bb5a0d362017d, 0x3f154ecbd524ef59, 0x984fe089f548ce7b }, { 0xcd4f8f5cc647494c, 0xa4ebb37d6edf19e, 0xf9a845b131438ef1, 0x9dfeee97a970d616 } }, { { 0xf83f689908de8bce, 0x8ae6f0e8b8e7c675, 0x408a2fb15f00e85e, 0x41fb31ed8ea6fd04 }, { 0x3d4a9b08cdb7c4c3, 0x397f8b9a46bab5c7, 0x3b47c2ba97663dfe, 0xfbc49aec49c64467 }, { 0xb0a3ba74a8ecbb86, 0x4a4560870e1f6694, 0x2ca8ca2e1d74e39a, 0x75a99af308145b44 } }, { { 0xa1ff365f00961622, 0xb6664254e605056a, 0x8d0989f1aee6c4ef, 0x4e0992c72b88175d }, { 0x417e32680f367677, 0xab026495bb167fa8, 0xd104763006bb1dd4, 0x9f7ca0b70cc94d7b }, { 0xe6696d99a570c220, 0xc2e56f8c26c3cc35, 0x444053fb7ce8e8aa, 0x6277e8ea30316255 } }, { { 0x2aa951e12475063c, 0xf0d1402a028d354a, 0x167502677c0c4a73, 0xa4160e03f455a57d }, { 0x208afc1dad8f4667, 0x25c9debbe7c880de, 0xf848c68515c64bae, 0x355eef7617e8a4f5 }, { 0x35109e67da68afbc, 0xaa9aeaad6d4b6cef, 0x7408f7c8a85123a4, 0x5c5def6e3f4f3fe5 } }, { { 0x17ede953db039568, 0xaf23254816297a1d, 0x67bf058e3403b8f, 0xbd53dbde59fd1fb0 }, { 0x1ccb4c4256075728, 0xd3110402c0b8a3d5, 0x1f0ef26dd1d8a95, 0xcc2f4d618b9b963 }, { 0xd5fac75db26420a6, 0x7a5a54224027ccb0, 0xf64791ab6f207e0c, 0xaf4918fc6575f4a7 } }, { { 0xa31cd20a7935d63c, 0x1dca4185e51eb7ef, 0xa3be568aa8ff958b, 0xf8e64e787826cc4 }, { 0xf761d3717127c899, 0xd548cc467bc639dc, 0x1b975dc73dfffe26, 0xf834cea7c663fc80 }, { 0x39439943363b211e, 0x5679db15e14c203, 0x968d6163b45d5add, 0xacb85857f5ca5061 } } }, { { { 0x637ea83cc2aecf8d, 0x563719e1842c1276, 0x4b812885c8c5cb80, 0xa7a641be2757a4d7 }, { 0x1636374dcf5d8acc, 0xe071a47cd4c16f40, 0x4c56004b67c88c1c, 0xbc979b7bdc0e61f7 }, { 0xb04d5a95672117c9, 0xe3f11075b1d0f0c, 0x623fde289207aded, 0xcea8ce5855e1605 } }, { { 0x9b8e3e0b1d36d9ac, 0xa3eaf3b4d5695528, 0xa6c89f94d1f78736, 0xc67af49539e4ff99 }, { 0xc3daebe49a242b9, 0x330dec1ac6f16847, 0xe0f52c6ebb2f38f3, 0xb84b2063efce1541 }, { 0x856121e4fb8662c1, 0x40515be5ba3307e9, 0xa6621af148bc6a03, 0x2fa0711910048ec8 } }, { { 0x84e125bbe2998754, 0x5badf0beb46e2827, 0x9ffa3906b56a9eed, 0x77d7cad766901e30 }, { 0xc73cb73b1f476937, 0x7691821e8947d21c, 0x4af728b2409c5f9, 0x688e66c462170f73 }, { 0xe4ac98e988db5320, 0x8260317aade04a96, 0x56d3c7c66aa0d8df, 0x1d3edee339e65675 } }, { { 0x3823b4b0e8af7f56, 0x335c6628de3915c2, 0xcd523ccbba953cd2, 0x44d6bb34433dfafe }, { 0x2c2fb3eee3606a21, 0xbea2b04393d0f476, 0xa038437693bf078, 0xfb570ee893659f97 }, { 0x4728d14389c4b9dd, 0x6be34dfb0132e4d1, 0x5174ba0264e34799, 0x946243f3787d8339 } }, { { 0xb5154ac75521977e, 0xbfcf4b74031203e7, 0xba1efec86d09a5e, 0x43572fe1cf7695b3 }, { 0xd08494da7be48c86, 0xff7bb0031aaf6eac, 0x11e23c2c0ef00160, 0xd8f21b6ac53ea184 }, { 0xb008d40daa17c679, 0x8f7e4863c45590bc, 0xea104c16f6d40133, 0xcf75a90b30b77f3d } }, { { 0xb0ae00ec501e4e81, 0x244eedbb999cf63e, 0x7e8dbf31a4bc5986, 0xd1cb6be1d0e76c7d }, { 0xb78aac365107ade3, 0x5c4de4f9d76a75cb, 0x1bb718e54b688098, 0xcdbfff0607d2c1d5 }, { 0x8e102bec6f6de609, 0xecef5b360d4f5c17, 0xd2b4dacf2b6e6c55, 0xf6b6b15c4251dabc } }, { { 0xb8335752a86ba753, 0x41bd442aa6d1328b, 0xf67a20ab68775d13, 0x15bebc7372a40163 }, { 0x7b345714251e8e0d, 0x36b1cc3620163b3e, 0x3278b9207e0d0fd8, 0x6665a0a34c2cd0f4 }, { 0x7fd40ce76e76e38e, 0x1ac128e73690c4e2, 0x7a4a869a06ecc485, 0xc9ad74af66f82e42 } }, { { 0xf74cf88931bf747a, 0xee04edbdc2de1813, 0x34ab2fd49fa18ee1, 0xab3f9e13cf408ece }, { 0x5f88e44a5407de98, 0xe6d4c5aeee372436, 0xfb9f0787b9585823, 0x1c374c63d86f8fa }, { 0x1ca09bee85c0ca1b, 0x122d7be25304b20, 0x8ad55b67eb02265, 0x8d011e219ee86e8 } }, { { 0xfbb710f45ca4df34, 0xaab42ad9a82dd987, 0xb42e6ebedfe5ca61, 0x6d8795584743384e }, { 0x104f15172bb10dc1, 0x784def59ad469d5e, 0x73cd5aa8dda53176, 0xde0f8cfd350b2458 }, { 0xca4355f2610a535f, 0xe925afbe0f8a0a1f, 0x3c8ed71e8e4c1611, 0xdbff88ff40a823da } }, { { 0xc9776a210e14668, 0x3454368c210f1e82, 0xb734a0bafb51f512, 0x503cc52fcad4a24f }, { 0xe0d096986f3b3a, 0x4b0b0605449d7aeb, 0x55d2d3c34e70e62a, 0xbc52e465df70428b }, { 0x9c411316c183454c, 0xf0de28fd8c169a9, 0x57da1dfbd45d47b7, 0x5d400e691983c3e4 } }, { { 0x5f8ec8319272ba5a, 0x1d804be660b0c743, 0xa5f11658dcab974, 0x235fe7b74bb1a123 }, { 0x7d2283567a7f4a12, 0xaa5cf99a72dcf9cd, 0x4a3ac34fe0a65a81, 0xe59c57904b6cb31a }, { 0x8dc06518381a8fa0, 0xddbd28663f4adbac, 0xda40c6c793a54845, 0xe1cac2fb72767bc7 } }, { { 0x206599292ba11a6a, 0xaa30301ef88a2b92, 0x1fcfb797ca27f356, 0xe1b8c1eaf04a5298 }, { 0xc2efd04a4f8eab5b, 0x810256ba74659729, 0xf8010cfa302d5d1, 0x83f3f4a157a8ae49 }, { 0x6991b4c32de1b2bb, 0x544b2c1e8dc7f109, 0xf44ec8f801a25b0a, 0x1f1cc294365f0175 } }, { { 0x6b2d03202258e26, 0x1cfaf52effb3dfd0, 0xa60c772aba87a9fb, 0xdfdc1814ea633b24 }, { 0x90ee4e4d0d09db71, 0xe91f508f1127b295, 0x580566bc6ed7969c, 0x20775a03124de578 }, { 0xdd572e6429785128, 0x2b5dff55a41a6b17, 0xe4dd4e526c1f755c, 0xd76526094698eef0 } }, { { 0x662590314eb1b9a2, 0x1648304e2e213d94, 0x55a1d26ac8ac6f6e, 0x682e96bd86326c5b }, { 0xd870afa702e5b57, 0xe3b7f1b8efaa3c67, 0x83997f10e6605324, 0xfb960efdd4f3a21a }, { 0x9f6cded9fdb0ef79, 0x37d74fb49b96b3a1, 0x570053b1621b5d38, 0x35ed5e504dcbc8ca } }, { { 0xb059280d8089acd0, 0x66da48b38ff5334c, 0xe86df5a17b593365, 0x97fb710a7dba0ac1 }, { 0xb61e852a7c88fda3, 0x3202fb974c81daf7, 0xb984866ba616236f, 0x3b67a73c4c083a75 }, { 0x77d50f1193ca954e, 0x5797eb53a64c94ef, 0x48c61b2b72ee37b, 0x7d391f765065d074 } } }, { { { 0x4151df987c0cf90b, 0xa6c53deb9cebd062, 0x108d7add41ca94c7, 0x80d41434f050ce80 }, { 0x81bd259e6a6694ed, 0xbf02c62abbd525b8, 0xafee5c37b9a1161d, 0xc913927472981d2e }, { 0xcba5c0dd5b9fb3f9, 0xc23500d76146d532, 0x847485decb1b9aee, 0x744a1161d9988a04 } }, { { 0x1d5ff0f41d7adaa7, 0x725849e4fc97d4c8, 0x8cf8e6052652433f, 0xcbe33af7d541cfb8 }, { 0xce8509ba863bc1bc, 0xb8eaa7619f191012, 0xd339242fe070ef39, 0xced5328813d23228 }, { 0x85aac7dc206f07e6, 0x3abd12ed725b88e9, 0xe0d5b6bd9af7c9d, 0x10cd0fce3ecbf811 } }, { { 0xa08054e74302c518, 0x289b74f3aaa4e562, 0x68a60ad5b7f37a15, 0x94b5b2727fe6f588 }, { 0xa96b38a94f85fa24, 0xb654ddbc74c90405, 0xc2560a2f9b8cfd63, 0xd49920bea499f543 }, { 0xc93a3647dbc2f705, 0xfd976d25368cd1eb, 0x644bf5f41db15ed, 0x6ff4c4264343021e } }, { { 0x809392fff1acfad9, 0x13290dabe04198b2, 0xc218feb855fe8cd6, 0x31588b4eba9dce53 }, { 0xf7e6836f45486378, 0x37e9e7a1b329f7b3, 0x7fb6bc2a70e46b91, 0x2353830e2977f324 }, { 0x3e0f6bdcdc9d659, 0xd4c275c77834b554, 0xf2b95e220146d324, 0xfb8165c407050f5f } }, { { 0x2f9b6d2a0e40bbfa, 0xa0614878ae007d23, 0x8980361934404145, 0x20bd4fd0c302c58a }, { 0x6eb611f92ad6a33b, 0xabf6161eefe3b2cc, 0x4ae30993a2b18c67, 0x22542eff5523f46d }, { 0xb9856815d57aedfc, 0xe3ae27f081911538, 0x7a932eed0025c934, 0x30ae9c0c0e559581 } }, { { 0xcaf18267b074a392, 0x80f45f03a2de6c5e, 0xbaa72ebd82a7d942, 0x2afbf1b4c8022e61 }, { 0xb1a8e2a5a5d92253, 0xa75d692b9cae15be, 0x8fc124073bae757b, 0x8d38989595d79dee }, { 0x7c6da55de9b9426f, 0x2b6147704e717cd1, 0x8f6c5ed9797e86ae, 0xb67f84bf693fcad5 } }, { { 0xe302daf594f14ed8, 0x301ed180dfac48b7, 0x408d88c0cae7cf7d, 0xb1752d906ce72ac5 }, { 0x7930b42693f4edc5, 0xe58d622607f46b3c, 0xe8b9d9fc95a9609d, 0x50dabbafd5a9cfd7 }, { 0xdf6d0cebf796bc10, 0xce63acd04945171c, 0xaa9cb9ee3d3ca7ed, 0xceed010e7e37492a } }, { { 0xee685af8d54caf5c, 0x92d9a996cbdf9dec, 0xbb6f823b0d2e466f, 0xbd454eec38435231 }, { 0xecc232558e696312, 0x8bd5d05b1546423d, 0xe5c34fc2ffecc302, 0xee844be4c8d5036b }, { 0x158c1c88668395b0, 0xb06096f1d52fcfdc, 0x43248f3d4ffc9cfb, 0x57fb7b077dbecc43 } }, { { 0xa00ed1a8bbaefd18, 0x7369709c0c36327e, 0xce5f2a4dd83e62c8, 0x76ccd56a80c9e0fb }, { 0x886ddba92772f2e5, 0x9491c036d806ac71, 0x9d86dbae284a4c3d, 0xf57cd6c8ad083fe5 }, { 0xfd337858e9aacc39, 0x2cdfd5f26fedb948, 0x5da171fd4d95d82f, 0x9710d11945c876c0 } }, { { 0xe3db71ab97ed981f, 0x7949dc76f716dbba, 0x75a7f3b94f3ac390, 0xf47c559778552f9f }, { 0x8c6c42d01bc9b910, 0x31b231c12cb315a9, 0x24d79b6fb72b920f, 0x2194bf3eb3e4aaeb }, { 0xc927fdf53b2fd634, 0xe1629f129b1fec23, 0xe7b0dc3675712c8b, 0x54a8a658a2d31de4 } }, { { 0x9c39efaa1a8f8835, 0x68c61843f3d4b885, 0x222be04e19c17d39, 0xc93bbc0d632d2009 }, { 0xf804bbf2280f1c16, 0xb1d31c0d6d5f927d, 0x56120d246292782f, 0x57f1122de1d3f7be }, { 0xb65e100a4dfe08d5, 0xd6eb0ed0cb376317, 0x606eec387d0a02ba, 0xaf7e908643c9e715 } }, { { 0x24b5738d5d72d6ef, 0x669e4377e4eb1b02, 0xc6db8058346cc6b7, 0xdc69435c62f057d0 }, { 0xe4c77864e3b92182, 0xfb1fd55852a99719, 0x3c0e6af93f5bf757, 0x1c48b9209e809db }, { 0x1097b7bae7b0fb7c, 0xb11285b9a6cd4543, 0x2f9e895adea57f9d, 0xc5180e9b8a515d28 } }, { { 0x254891b810e4ac17, 0xe9031b4ed7272950, 0xa21eeb9f1dd3cf2a, 0xe0976d35a1fedbc5 }, { 0x67dccb4974459f9f, 0xd0ce8196b82130f, 0xddd204bad36aa13d, 0x3debcf9d16747a68 }, { 0xd8d09f506e93d650, 0x23009d66ab09fd6, 0xecc5998930ef3520, 0x9026367e5960a8ec } }, { { 0x8247118bcddf735c, 0x6a2212317c21d0fd, 0xfebd31e7549a03ca, 0xf3a1f20f73bbcc4c }, { 0x43e547e16e53235d, 0x28c046d2f74ee266, 0x2fccdce9092aa49a, 0x75656d6a288a6e41 }, { 0x3c623b152be97cc5, 0x4ede193a00af8160, 0xd078f6450d51087, 0xb4a9d760dcb36fe4 } }, { { 0x2b8d29e74925cab4, 0x944f3d105cdd9cd9, 0x2e1b17a95214389c, 0xba5cbd6fc1c124e2 }, { 0xe5045b1c4fac31e, 0x3c24e630cada336b, 0xcffe01acb24645ac, 0x1274bdf5e011b384 }, { 0x1dff191a8b5ede8e, 0x6e0a4f5b36fce6e4, 0xe6d2a2a9f8d8696, 0x47445d7bb2a94e74 } } }, { { { 0x9f89879a2437cb5b, 0xe5a3e0c65e8e9ff2, 0x50551b10091b5398, 0xd7489df76dc94567 }, { 0x7321517793e4fbd8, 0xcee4a0030f048e1e, 0x45bcb295684f85d, 0xf2bba012a7835bb3 }, { 0xfb18321b995af47d, 0x23b44751e5ca28e, 0x50e512c6f87fbe61, 0x482e476ec853c8ac } }, { { 0x7d7b82a4df42aa2a, 0x431488a445a4d031, 0x3da52716f6fc951a, 0x627fe2274615847d }, { 0x7cd2c2672cee56c8, 0xd0bb313f2373d706, 0xa62104d18ef59b2a, 0x8ca8bb4aacf9770d }, { 0x7fd87a1d806eef12, 0x44c379382511728a, 0x2f87a11a839479e, 0xfc6a172a76234a76 } }, { { 0x7e5d2610695fad23, 0xdc89f63522bf99b7, 0xbf24e6070e074237, 0xaa8e43a17ab3ce7e }, { 0x7ee947e8536d2231, 0xb1494df91ae1b747, 0x8ffe7032c83c566f, 0x91fb3293e2281042 }, { 0x88029d5c2e47488, 0x38ac7e44054070e0, 0xf7d558adac04ae50, 0xea5e60b97f00aad } }, { { 0x3657165b8fd7cc76, 0xe0b05eb72aea528, 0x9ac94710a7b6ced4, 0x48022f7d87be31b9 }, { 0x442b45de55a059f6, 0x79901c5203477a07, 0x459f8e397b3297d2, 0x221c2d332f28e06f }, { 0xbb12f013a11ef864, 0x23a84e8a02db422b, 0x35f7deca4dffd217, 0xe32ce6c1340a4221 } }, { { 0x18c0ad1b2f814b82, 0x2a75d47b5bb53a35, 0x7e97a2910762485a, 0xeb8273fdb7b7fc4f }, { 0xf1c9d2436ab6f96a, 0x54945176e29ed2ad, 0x62316fa9f14c90f4, 0xe3429e9418350015 }, { 0xea19d7ad0cbce632, 0xe418a13fdd51a2dd, 0x25259eb36d5593e4, 0xe334dd8791da87b1 } }, { { 0xa86a2bbec8872507, 0xa81e9cabb585d609, 0x638b4bce65931229, 0x5c56361923de241 }, { 0x7b06408725bdab6d, 0xae07f2ec39eed9eb, 0x9e508f279b29c27, 0xc76a0551a7e4019a }, { 0xee77c97f52fdaad, 0xef835234107a8fbe, 0xeff6f04aa9c9c5b9, 0x400d901b9ddab1cd } }, { { 0x5f78b810fb4f9aca, 0x9a36df7714301157, 0x7a90315debae091a, 0xa21bff589343fd60 }, { 0x59e291713047a6fc, 0xdbe638450a4ea5ea, 0xf948d1a904b5241, 0xd96bbf2a5b2bc2ec }, { 0xdda383663aea8d7c, 0x5ba5ded63d134430, 0x389f6e6d33b59459, 0x7e2343afdd54772a } }, { { 0x16be704ef2d10c92, 0x91adfeb1856dcd2a, 0x9df45ebd0102db70, 0x22a1182d449bf0c6 }, { 0x6a1c5002881e3d5d, 0xae16f8895d061792, 0x6a69192f5c4b0d69, 0xe38fbbf063d54981 }, { 0xc887d2036257bffe, 0xf54abfb88d6830bd, 0x9b98494e8c64fa10, 0xab84e8cde9873c7d } }, { { 0xbfb5d335b2ff75b9, 0xb870874f66e7b1f6, 0xb49a6372c17651, 0xea0ba492c8b27f3d }, { 0x8889c88281f9f329, 0x2c49a65f52b21006, 0xbb589c85fd79d672, 0xbc7c4210fd6f34c1 }, { 0x41e5845040d9e72b, 0x8f8744813414eb05, 0x32720533216aaa17, 0xd2934595500195a4 } }, { { 0x9f9b79ceb67f120b, 0x93182b57a0693eae, 0x8f2bd3032abe774e, 0xb8169d6469e15500 }, { 0x17ca37dda727f72, 0x2a27d4b0f267039f, 0x52921f43744bcbeb, 0xbf75312e0f84f30a }, { 0xf3e3ff215252513f, 0xa582b8884ae4ee2c, 0x1602b96354355705, 0xdda9e267a8632a5b } }, { { 0xec256baed5b37db4, 0x25a558110256ff90, 0xbf9da0659f147829, 0x5bb42348ead90aca }, { 0x5ec6a379723d6e18, 0x952a2d0ae9e8eb4e, 0xfccd5a5305ebd6f1, 0x6623b3b1a76c5b97 }, { 0x160cb256b510c042, 0xdea0099ab7c23e26, 0x41ce51420a33b237, 0xeb237c08da3c9528 } }, { { 0x5503dfb9bc7e7678, 0xe254c41084b43c80, 0x77b59e8ad54e9791, 0x36447f1085b6768b }, { 0x5875b53a4ae339b9, 0x1155e6288fafd31e, 0x58a0fcec5d156e93, 0x4b3121d4795ab039 }, { 0x5633d97a4caa5424, 0x9a33d3b2de246a26, 0x70751582faacc2ef, 0xd127a801a8893076 } }, { { 0xe8bfcd593747ab61, 0xb5cd367bf68169a, 0xab929c23ed2fb71b, 0x7b0bd5d3fd7e9ff }, { 0x8299c81a0a58197f, 0x313f82ceb0afe112, 0xb5270dbcf81a0e61, 0xc4c6e1004d807cfb }, { 0x1e7f3b2bc84ae96d, 0xf405507d75361d84, 0xc9a8b5d81d962def, 0xa2ae4d998950f6a2 } }, { { 0x4a53243f4994ba81, 0x317b8385c70cec46, 0x3fb9d8fbfb3acab4, 0xf30af02a9640fbf1 }, { 0x2df2d254bde84cd0, 0xefba31f7fd7ed012, 0x410bcc25ce37e4bf, 0xa093b17932708422 }, { 0xda7ec49f67c1dc3, 0x873f83c9aa536025, 0xedd6301784bfb778, 0xd9f2e325e271cd75 } }, { { 0xdead5da4532fb4a1, 0xd73f01c070a340ba, 0x50bc7214fc06a409, 0x2824dee8e65faa40 }, { 0xee52b65bdfbf3be, 0x36554fa84774ff4e, 0xbdd4824ed7f65fbd, 0xcf1dc776e2186f16 }, { 0xd1e9cfba902d916b, 0x59c48d0da6cc6019, 0x43e6def0e3ed8392, 0xcf04627277b4ec23 } } }, { { { 0xba7d403b2196f87d, 0xc9d0568507bf8a11, 0xb0ede79c02c8258, 0xd09b5862848fbea9 }, { 0x7ab0f8e6b295b60c, 0xa59dd773026079ff, 0x11a4e6e59e02d154, 0xfdcdb1ebe9323e06 }, { 0x8001094ee59e036e, 0x2541d6356c453a97, 0x1d59a7cd5fad4b1d, 0x52f0897a3ac1da2f } }, { { 0x4e48f9fa6b82db6c, 0x11554610e5516043, 0xe5c768d7f9dcbf1f, 0x15b874470fbd768 }, { 0x401a8c5212eb991a, 0x15ad4e3cd3c4835, 0xe9f0685fbde6cc7d, 0xdf945cfda4991bd }, { 0xf15fb406c17b8c3d, 0x618f73e6948b2373, 0xd14edff026c7435d, 0x71adad18af3c62ef } }, { { 0xbf3897692fbdb0aa, 0xb8a3eb6ca3ca2d27, 0x5176e3a70d9344c0, 0xd16c1ca09f5eb036 }, { 0xd78cc41006ec161a, 0x431ee6c0b23be31e, 0x24e113854238db5, 0x9391aa05ab05c90f }, { 0xd59d12a766e9c862, 0xf9bbc2ab7b5785d8, 0x972698dfdc57b68f, 0x14b63bd2b9185354 } }, { { 0x22bfb751577e71fd, 0x73a55f70ddde1cd3, 0x294e42ba1404fd82, 0x2841112d6611a9d3 }, { 0x84a39a155abe4466, 0xcfa2237d2e8011b9, 0xc825e43fc94c91a2, 0x8038e53600ee7db7 }, { 0x4f2b69e766491eeb, 0xc1ec1ff8f54ef66a, 0x2d7dcebcc329d57f, 0x4959e3dab0e58142 } }, { { 0x67059057d8d812c9, 0xb13f15126b41ed6, 0x322726749b002ceb, 0x9c5201f4694249f9 }, { 0x50b9223a63feadd5, 0xc23b9c99ca3fd378, 0x6511009ee155f8e5, 0x10b878ce6ca921ea }, { 0x35c44f2b965b94fa, 0x163675f255e0999f, 0x1c646f65a2562baa, 0x8f921aab1b1f52bc } }, { { 0xaacc70071ae73554, 0x3d61bab9344541a3, 0x708cd2f50086c25, 0x9a0efe5a2a2d325b }, { 0x530f68759e3a4214, 0xd9c105992044d808, 0xa1f413e3b6987238, 0xe7a13cdbc547f9cd }, { 0x6bd92f180683ff5a, 0xa2214c393475900d, 0xdc8f354e5308e8a2, 0x239527ece273e79c } }, { { 0xa593a1b0ec97b4a4, 0xe8d14bed2c5e1d27, 0x40bd0cfb0209ab3, 0xcb2499dfe67269b9 }, { 0x6d7a5c6ed1f64748, 0xe90c27938cc2bff5, 0xf89010b18a7e355d, 0x580ed06040a1f145 }, { 0xf222a1cc515afe0e, 0xe0f3b4caf4c60788, 0x294e16fb1c68e541, 0xbcb5240a41116ded } }, { { 0xfd92d93ec730f433, 0xe5562816f52b4535, 0xd92cb2ade6d35e89, 0x9a3fea3aeb3ce838 }, { 0xe33e1ea57fcb1215, 0xbc60d480c17d79fe, 0x7685bdc877edc618, 0x37db2d03917520c4 }, { 0x2061aea07991e22d, 0x6411dca453fb7710, 0x97c5241f999f7a16, 0xcdfd56e52b686d8e } }, { { 0x505e112ae5c58f80, 0xefe812adcc30d187, 0x3d92d7d1d8260826, 0x1f9248ec6bbf50eb }, { 0xe3e19f575f1ecbf7, 0xec149b25e878ec29, 0xf088a86285cedf92, 0x7300962641f97990 }, { 0x8449ca56d1bf4d4c, 0x8a53d0778ed79400, 0x2123e809fc00e7b3, 0x45305282200ad252 } }, { { 0xa2e84f157ce327d1, 0x4e9638f57e25aaac, 0x5ba6ec280179f0f0, 0xdc32181ba24ba053 }, { 0x1f879878610f0c43, 0xb8c8d823606c9fde, 0xe4da4af9b2f35184, 0x415352391b61a667 }, { 0x1b8ab01d2ac4acc, 0xb0a465db77a5c844, 0xb7d0c1f53536690a, 0xaa48246e62d23540 } }, { { 0x87ffd778e5926c28, 0x927be1e4178dbdad, 0x994b8febee368fe, 0xb643abf563f526c0 }, { 0x3312c2c395d4e6a8, 0x8c395045f077e55c, 0x43b7f1e5879fb465, 0xddb99984aef80c0a }, { 0x1876e7616bd590e, 0x51c48a912e1770f1, 0x139af9dc0c5e8ac5, 0x6177fa4e7afd8129 } }, { { 0x65b67fdc45d6b0c2, 0x34a09171b9c8120, 0x9f01baf6519e562, 0x34fc8fb405a2fda }, { 0x6cc6af4a87f39b5, 0x4b33e75e5ef458c2, 0x8f5e3004534b0f6e, 0x5f79f63b9536c710 }, { 0x1a0399dc258eeabf, 0xdd24a168d7e6b129, 0x7057d22f4260b1a8, 0xa1d731d7091b6734 } }, { { 0xc12c9f15115ea796, 0xdc87b60e2c3e752, 0x90dd657d0433361a, 0x56d5ec3cfac9f39 }, { 0x2843ad0a4f253e9, 0x6b1ad008b8665f19, 0x27e3562ee7cb4bf2, 0xe17aa63b7e66a31b }, { 0x9a4ccc40eeb37845, 0x93e4bf4364edc768, 0x32a08723db86d02b, 0x1472e7d06e5bd7a3 } }, { { 0x4bf3bda99ecbf316, 0x15e1e8cf4cd0ee17, 0x2699714c4898c079, 0x35d6bfea13fff4d3 }, { 0x6b3ef63819c32016, 0x7ed650844abcd950, 0x916df8aba14b6211, 0x18a4b98816853476 }, { 0x676f5f3c7dcc12bf, 0xc26aeea274c4279c, 0xde9dd52e515ab6b9, 0xc94fe46516f5b2f0 } }, { { 0x69b96443c398e8b8, 0x95871b671a41c693, 0x331b3532ebfc643a, 0xba599f1adab8da77 }, { 0xc28701845a670929, 0xaccaf953c7f45435, 0xe6a58a74ef13e875, 0x73fe853d093c86b7 }, { 0x19b6c0c587ec8420, 0xffc0a8aa7c0297e1, 0x9cbe54ad0c2103f, 0x601979f9e25735d9 } } }, { { { 0x7a23d6d9f8ad208c, 0x6e73d44923e1a8cd, 0x6611d5dad1d8b3b2, 0x42e2b11e0abec84d }, { 0x7c449a9cae8a5d5a, 0x7b56970bffd6d49f, 0xbe8a5ff410e99f1e, 0x1e9aafdb124b7ee4 }, { 0xc4d38e1247423dac, 0x52eb6c560ea49481, 0xcbb5f215707783d3, 0xf67c1501277dc356 } }, { { 0xbb55875f3fbbaa5, 0xdfddffc906869412, 0x52e8981ce3af46a0, 0xedbed6ba8edb532 }, { 0xfa875cf3fcb6ce90, 0x9cff4423ecece263, 0xc93be30dc2d54d01, 0x4f87b6d678970901 }, { 0x2f1248fa3a6cda31, 0xbabde448bf58f128, 0xe92e27899be1d7c2, 0x8e55aff240858d5f } }, { { 0x72f1da39450de146, 0x82f628c9fb94c973, 0x58eb925f86bedf1f, 0xaf4f0aca01db467e }, { 0x4ddad0ea34ab197c, 0x392474140cfa8d02, 0x15599d3bbc44b0, 0xdf3fb02d7cd6f0eb }, { 0x6c9d8822dda1f6d8, 0x2e7f1605c80fc9ee, 0x48b80c54f61cd24b, 0xaecbaced8e44c74c } }, { { 0x1e19bb3018a8c564, 0x4179f2492fae07d7, 0xa6cb66279a325e38, 0xa3cd656a55a08154 }, { 0xd87404bf1c1a1db5, 0xa2a14ca814176f7b, 0x98c6ab0520c6a1fb, 0xc8eefe171de8361e }, { 0xbdef07c3560f2622, 0xfb5172f5b03c3875, 0x228f82abf5d588e3, 0xd5b413af82551363 } }, { { 0xeb2851450b6f423d, 0xbb6b0c137ec95dba, 0xecffa7ff6b5412df, 0x8e2490105c209e6e }, { 0xc11fb7af6d58c9c1, 0x1a61b134391e93ca, 0x4985b64782a33f1b, 0x51723dedef356e44 }, { 0x3d0c631927732fbe, 0xba64c017b44baae7, 0x4f3ec685b19e7e53, 0x3d06e1207b36fbba } }, { { 0x4d0616c2e1b9aab6, 0x1cce06c60c64c838, 0x61c3f74bb6026516, 0x948dbefbb0855069 }, { 0x3e9feeeaa1a05308, 0x611b0a769fb519df, 0x89dd48ee9c152e34, 0x38c217fe3e85b561 }, { 0xd3fc4b1c366ce05c, 0x15b422ef55d0d273, 0x4669cb1563c97ea2, 0xde33d1f4c8b3d7f6 } }, { { 0x1a7d401630c4abf, 0x6e2c85ca9fd0b13, 0xa16e62dd74e78875, 0xf4d24c157877e3d3 }, { 0xe52357fd0ec4ce4, 0x820d6868c9fe6e21, 0x32d1f11b75c5dfcb, 0x63649a0c0deb77b9 }, { 0x329c5a8146cf8bba, 0x430c7d331accf507, 0x6e93fb479d1cb44a, 0x33ed0f63a074b42e } }, { { 0x3db2101c6ddd9c8c, 0x3a809c13f1df396c, 0x36e1950f6f995a91, 0xb31355b74e951395 }, { 0x5e68aa5a31e31115, 0x4b0b1b9531608de7, 0xb232f1cb22221e9, 0xfe928d45f6a72edc }, { 0x8a71fa91eb335a83, 0x3d31eb050e6c099, 0xc514e758c963b3f4, 0x66193ea3d2aacef7 } }, { { 0x2594326521995afe, 0xdef6665e521dd61d, 0x8e95042e29f779fe, 0xd3e4d5040f4917c }, { 0x8415d46200066e30, 0xaca3e9e18f634917, 0xe41f13c05d4c5937, 0x9909648248df396a }, { 0xa9a1bf8ab88024ca, 0x6aeea67d0aa7f96a, 0x55147b784ec075eb, 0xefa96f2c9f0f9774 } }, { { 0xec24f000badd4258, 0x84afa3bf5c1bc38d, 0x8d99906f3d12b57f, 0x1c91c40c3f132151 }, { 0x3f68d6af22cd5983, 0xd501e6b81c587b63, 0x6e66249c23b11610, 0x8f01ec689640d505 }, { 0xda51258ee9cf113f, 0xf1d04ba53d71644b, 0x6a769177379cb39b, 0x7c98f3168bc55843 } }, { { 0xfc0e342c25018ec4, 0xb22450a53587de2f, 0xa20b77d0f11e1222, 0x8e007a782c7632fa }, { 0x58ff034bad00abdd, 0xf906935b383b7edf, 0xc67f3b061b0526b5, 0x7435e4ad844ed3bb }, { 0x8f3d2bdac5e3454e, 0x6e860d90bdb339c, 0x978c76ded0ec6fe5, 0x3d224c2b472d3397 } }, { { 0xcbd2722a32408f40, 0xf0a827a336dabe9e, 0x4983315eddb48299, 0xbb4dd13a0e875303 }, { 0x3d6ae7197293ecb0, 0x617523cedf79fb18, 0x65838d21516e0149, 0xd2000968da95f40a }, { 0x60210246bad19b03, 0xcae5268ff2a78e45, 0xa5ebfeca3dccc2f0, 0x83cc1f4752501d5c } }, { { 0x6e83c7224a0e2a34, 0x3a9185709f38f493, 0x7faa5b8a2b4b9df2, 0xa9c7bf9081e340de }, { 0xb63ef8ba1b3e4a69, 0x749ce475116d5a67, 0xa828f70e8862a4c4, 0xb881128eabbf9019 }, { 0x6615632808bccb97, 0x9910cff7c8f7307, 0x66041208c5ba6146, 0x67f39d496d86877e } }, { { 0x7729bb67ef461ddb, 0xaa44b5d2931d29f, 0x20a656dbbeffe3eb, 0x268fada47a95bdd2 }, { 0xe3b377179db0261b, 0x2b4ca471f822b1b2, 0x255c9605a63b55ec, 0x6522bfd895a79845 }, { 0x607823b6c00c4af4, 0x503efb91609ed9ab, 0x882d42e9ba6659b7, 0xce25b3fb115b28a3 } }, { { 0xd8d0fca7f37b994c, 0xedce63bc3b18b077, 0xc45f241c53cdc55a, 0xc56ae37164af86fe }, { 0x6d563c6d878c8010, 0xa035ee0b49b7b0a3, 0xda12e1881b00a3e1, 0xfbdce7e3a9354891 }, { 0x2790c59f98b7c471, 0xffe44a93052b0004, 0x25cc36e0c40f148c, 0x987788133e77f3c0 } } }, { { { 0x4f9f5bf2d120f316, 0x94a5eb8f8516935e, 0xd64670bfcc9abae4, 0x519c184255fd4cce }, { 0x94858b68d9a02bf3, 0x70003cd356f1c467, 0x6315b0625ce6e312, 0x728be1607f057479 }, { 0xdf09fc4625d13d91, 0x95c87c4157f7b31d, 0xf076c86a95b9c2f3, 0xfc19529f69874f90 } }, { { 0xd1655a16b26b128d, 0xfccead39e4420e67, 0xa803f303141de557, 0x7b9238389ee2f0cf }, { 0xc5ea07b383f4edc6, 0x6c108f95444c6a8c, 0x9e62210e79bc051b, 0xc3f2d7cba28bcc59 }, { 0x37e0025bb5c164f6, 0xaa15d487cb6d6701, 0x66d9e54715811295, 0xb6009fd4894d3297 } }, { { 0x5a6c7850a3051428, 0xf30e93f9f00a4c1, 0x786b9acd4a94fc13, 0x49052d365c5c00ad }, { 0x61972644df077c69, 0xfbbbab32266bedd1, 0xa29de3864c61df26, 0x9efcf0c3df993a36 }, { 0x1a57848919851eec, 0x71bb80b7ef70742b, 0x5e7098d836e1ea3b, 0xb3f99e9012a0458 } }, { { 0xea9ad228065d0db5, 0x8b63c8ffbdeb4310, 0x9ffafc17e49c70bb, 0x5c434479c23ca9a9 }, { 0x215d51ff41ea5589, 0xd1c371514c1465a9, 0x3d371820cc63c273, 0x5fcf2bfe389d21e8 }, { 0x536933fa27922fca, 0xebcef5def7d66d42, 0x8beaa0ef1776b03c, 0x9fc8356b0bef1c98 } }, { { 0x445dcec428e7af53, 0x339dd94da3887f1a, 0xb2f5561565070897, 0x271c495411076731 }, { 0xa0f2d115236e9530, 0xbb81b2549de8162e, 0x7f499703a92a0819, 0x51fa28b0d1573076 }, { 0xfdffb5570bd4a6a2, 0x19591a0d4203e76e, 0xe8fba7d1aaef3955, 0xb2cf1793b0e0df3 } }, { { 0x1765e2cf75e77122, 0x30e6ffde4f5cc927, 0xd9fff384d3247f06, 0x6219daf9c104f45 }, { 0x34e2ebee20ec0860, 0xdf737a8b28a1119f, 0x96144e8a15a1d656, 0x1515cdfdd2939c43 }, { 0xf8d495821c6191a, 0x5287bef5333d8427, 0x27f31a96c0be12e5, 0x24c9290f5f8d0be3 } }, { { 0x17f31ab234bbc951, 0x4779e04b4aeecb7b, 0x85fbecbffd973e8f, 0xa194f48c2d1966d5 }, { 0xa5a58e49d88a1c78, 0x659ae985922b2f34, 0x5ab794f82a770065, 0x5340a3c388e5e496 }, { 0x8a684bae35b8ebe, 0x34e13c59bed47e8a, 0xd0bdf4f572c81e6f, 0x6251220b3f4933d6 } }, { { 0x1392d700a220a43b, 0x46139e891b608d5a, 0x8121788f7176f1aa, 0xce3212e625af20ed }, { 0xfb8f0289b50d0458, 0xc23765fa521c4df4, 0xa0b57e573e97c6db, 0x77028b029367c232 }, { 0x93fb3a186983edb2, 0x9a27f47344c68d8a, 0x78838bd0e65e4f6, 0x70fa8ee19d649835 } }, { { 0x46ea75041cc35946, 0x6d897b249a790cb5, 0x234d69ef32e5c34b, 0x32ed9282c99de035 }, { 0x277e82a556d6d08b, 0x583d9b4d6869ceb3, 0xf96b63d33a5774ee, 0x85581c8a593ec812 }, { 0x2354650dc3a9415a, 0xc38005b5df7393b1, 0x94b241a66adaae3f, 0x7e8a255cf61c4be5 } }, { { 0x11e3930706db287c, 0xbd1fa3e086381ec1, 0x831023b01881b914, 0x6a93dcefb3fa3d3a }, { 0xa4ea3edc95f1ee38, 0xb0c2422d787ad2b0, 0xecb5d142f2297a22, 0xe681b898c09f13eb }, { 0x3d4d0d8c0907466e, 0xb170f06faa1f338e, 0x5f7e9bfc11f6a575, 0xaef26903073ada96 } }, { { 0x826a3defec545d6c, 0x96ae4d583ab957d, 0xea38624874e5f2f2, 0x9851024fb63e2fb1 }, { 0x42ffe3e6dd45d57b, 0xc2adcc6a789a9fa9, 0x29f8ea8328919a38, 0x64de120d6852004e }, { 0xb246820d90a42bd7, 0x499118132a85fe71, 0x61d4196b828e688d, 0x91497ad3000bcc40 } }, { { 0x7399a05276ea23a, 0x2fc04237844bc038, 0xf3c5b6312377947c, 0x22879cd6bc833a85 }, { 0x25e4246937f0d136, 0xfaacdbea681fd158, 0xa63682750fd7de20, 0x58bb054f547e4357 }, { 0xcdccb1f75132bfac, 0xac91c52e88a8c7ac, 0xf8265f95d3718b3b, 0xf61ca3cb9a344c95 } }, { { 0x247e6051c2bbae1f, 0x8111d9ed623809b2, 0xa32b19bc4c6d1b01, 0xc2b351d386d663a0 }, { 0xa599cac6f0071f46, 0x4c33db1d47dad7d, 0x2d4880da712a1b25, 0x28fbc0c573e5c9eb }, { 0xd83fdd23e7ec5807, 0x5f573b59e55e8e57, 0xb482b8da7fcba79, 0xcf304c181db2319b } }, { { 0x7a2b919d9718576b, 0x8d78216ee4f340be, 0x908a30da0d3e29fe, 0x708d74abcec4c60b }, { 0x3e47bac65f7f8b75, 0xeafec9babb176000, 0xf8db15847fc2116, 0x94f73c3cbbd1a0e9 }, { 0x65b629b42fa8d60d, 0xab6e58166c6d5deb, 0x7b8d0bf78602a80c, 0x724cdf201a1ff164 } }, { { 0x4583507551b273a5, 0x8c9a45007812c935, 0xc8af917c777c0bc2, 0x53a65b44f32af835 }, { 0x5f44d75eb059d708, 0xa97825502b26c5bc, 0x57a7786b589dbd6a, 0x6b09ef58b4a49420 }, { 0xf43476d8a91f4b2d, 0x473c0de4135800a5, 0x95e554924cadf1c4, 0xce2df6438c3b6e3d } } }, { { { 0x54a90693c1258f89, 0xda5d9445d1838c0e, 0xff6ad0907d07ec3c, 0xe9d17a9d6558690e }, { 0x6ba30f82c4378ede, 0x2255ae48c1d0bf32, 0x91ce1bde19996395, 0x5638f23b2e08a936 }, { 0xcd38b1b0c764e431, 0x7bacf4e3a8fc31ea, 0x2b15a7a17147ac0c, 0xe6b0f53e8978f82d } }, { { 0xd9840a7b168265fe, 0x20ef0bd0cf092952, 0xfddf2211d51de6b, 0x2a218593d143f671 }, { 0x1808e23c0161b19c, 0xb679f4e9c6e385b, 0x5ff4752af2232d7a, 0x55de1efd731dea04 }, { 0x416de847b55cd157, 0x854bd5c642f57973, 0x6cde090dc8264fcf, 0x964c62fc7f0de842 } }, { { 0x647619cf5fd2a1a4, 0xc134877d7e23c882, 0x937f0ccaab324ad0, 0x6ca3852cf86f6ad1 }, { 0xc507a1f345661d61, 0x591407be393e8f6d, 0xe4a61b76b75733c4, 0x2d0af11bbcf2ec37 }, { 0xae2dedbc1312bde1, 0x98908cbdd4bd183b, 0x239cb2a269c60c80, 0xc9510332ac3e7e60 } }, { { 0x2323295809fde5d1, 0x705c38cba98dadf, 0xd2b88bec05cdad2f, 0xa7af4fd1afcd2b67 }, { 0x1934fb6aa1dc5cd8, 0x27f02c4e1e867518, 0x9a6795613b3cf239, 0xf0a07f4646a04cbb }, { 0xd3a4721c2cf46f7e, 0x41c393a9b07907c4, 0x822060c355c8b167, 0xbff512fe51231e0c } }, { { 0x40652a59e7e5ff6a, 0x959db18400d8c072, 0x9fbdbf25df35a26f, 0xc802aee3d4725d37 }, { 0xd203e24d65b453da, 0xd7e3717a793649c6, 0xd08677e0045f7ba9, 0xdeacfc7416e5de19 }, { 0xe7e4f9e4d1d9bd3d, 0x79f9157e3f131f8f, 0x6d12f000d3dd905f, 0x1187c955dd620246 } }, { { 0xd2e80b695a07abcc, 0x736fe5f8234215de, 0x938acea44eea96bb, 0x6da9bcb70db843a0 }, { 0x60d9d7ef17bbb76a, 0xa2916456d7954786, 0xd044340baa89f970, 0x1f5674929a2bb9a7 }, { 0xafc68bff29cc8e96, 0x7b6fa902376cd9a3, 0x542083b6bdc6de38, 0xa58132e7a83e9f0c } }, { { 0xb528bd5c3b472db0, 0xf3e98a0b67830ad3, 0xb2f0d395e737efb6, 0xc4a3c37078d5e066 }, { 0x9294324bf00f8d6c, 0x16889baad1ff62b9, 0x41d94d7a6b0fbc0f, 0xb2cf8089ecfd4f1e }, { 0xd3142f7bcfe5a659, 0xc9cc56d2466ef91c, 0xe3975cb7976e337d, 0x7971d35de0228789 } }, { { 0x74f5ad2c44804d04, 0x4d5f398a03b4e8c5, 0x7d5923c2be9b7958, 0x55038ca8d8fab880 }, { 0x62077d7caa686463, 0x48df3a72c44125cc, 0x58adfe5dc829b9f5, 0x4802f994d79f935 }, { 0x3e88416c00a548c6, 0x7f8e12e54219c2d5, 0xfe25a15f4e0d4548, 0x82ff9f4e8ca464f1 } }, { { 0x1b37449d16164006, 0xc098a5fcdc2c93d0, 0xd0488328398222f6, 0x779f46ec0e7f6397 }, { 0x4b7a0c50fa79b21a, 0xcdc6833879fa1f2c, 0x96b717f6e806bd4a, 0x5af1a3c9107ea855 }, { 0x1c7f35a9cbd6891d, 0x66e82893c457c642, 0x196e262088fe6ec3, 0xb53cdb8e8f477a3c } }, { { 0xef9a53cf42365ceb, 0x6badf17441146fe6, 0xe956a0de0ae07cfb, 0x6d94b7a22657bf92 }, { 0x443b07c7a03a2f2d, 0xa66964b88bf4dadf, 0x8b767af2d842fc59, 0xea29f5c8884ac016 }, { 0x4453ea511d1554ea, 0x2b3252016717c629, 0x9a939b567b431fa6, 0xe219f2405488378b } }, { { 0xa572323cc2779fb, 0xf78c2ae17d13bd9e, 0x494c64d8cc9f1a74, 0xdfca91f00ad0e3a3 }, { 0x73bffca9f4521fc7, 0x93d4a3bc71804b66, 0xb42bb6255c0ae7a1, 0x4c1713b871a55d99 }, { 0xd19b19a19cf60027, 0xe95077f03e36378d, 0xb8f26de62dd9d52e, 0xc479ac5087472901 } }, { { 0xd12ac049de2341f7, 0x82290abcc4ef9405, 0xb18c2c2afb55a0a0, 0x38c43d64d92e285d }, { 0xcbf7a895dc0b41da, 0x53e0d8259670baa6, 0xf952b5442a53f9c6, 0xe9cec3871dc6dcb3 }, { 0xbb3fd96bd533d28, 0x41201b3f828c0f92, 0x1ce8f91a921f4d33, 0xf51f2b3be6375231 } }, { { 0xb1eec2c9d073a192, 0xebaeb7c7ed04c8cd, 0x5b7a54e48a4b3949, 0x6916d7eb6c4d04c5 }, { 0x61a5d6bddbd5d294, 0x4404c6739cd3e420, 0x64cdd8bff0759ba5, 0xa8bda0517424f0b }, { 0x43a115074a4aa299, 0xffe2b3ac7f91077b, 0x4c240186d56b381c, 0x2ff74289efec3fea } }, { { 0xddbadb991698cda3, 0x26adc565f5745d46, 0xc55008cf693ad6a5, 0x2ff60db0fc9b3a90 }, { 0xf4cddf0780bd2b3d, 0x1e30376d8eae0aa, 0x5222d12c2e3f4cee, 0x128dea41d36384e4 }, { 0x2e3f19e25e6251a0, 0xe8babf56e424a2c1, 0x4979cec34b531499, 0xeca6b99608c0c742 } }, { { 0x78d316d486a80f1, 0xbafa7c8bf96b02a, 0x7a0564320d57d37a, 0x6c6f806386c047fe }, { 0x8917138feb641a67, 0xb93bcf5023082a0d, 0x32aeb5d5281adc33, 0x4c084e05c7ae24cd }, { 0x28334171e34b7e1c, 0x9ba7fdc9a6032f90, 0x6106cf7c39c972d6, 0x6ac73dceba1ce70b } } }, { { { 0x3d631f003df908de, 0x396795d0c0f5c232, 0x5ca2dac862f373b0, 0xac35fddc235a221e }, { 0x2eeace72a97a9736, 0x4fe890a52773cb98, 0x158267c39d35faea, 0x1ac87e0e4ecee98 }, { 0xf316f88e4f218312, 0x57aa5ed835473005, 0xe2ade463e1fd20eb, 0x757c2db8aca091b2 } }, { { 0x9d34f7004c35b9f7, 0xa80b4ecfa883985, 0x21941ecef768c5ce, 0x92c2739ed696d75c }, { 0xbbb5acc00992fdb9, 0x1e32ee453fac83f, 0x8a4181f6ab9ab404, 0x24a33e7ca8fee720 }, { 0x7f49e3dfccf7ad11, 0xb9da0edceb2a0a2, 0x5d8252b4dacedb57, 0x96544f60a37ac0cc } }, { { 0xe346683df9895595, 0x20fc180182c4cff5, 0x597350c88bae94b2, 0x236765fa2bdb8368 }, { 0x56884278607bf1cc, 0xb2396d1c397bb582, 0xf1f3c02224146e97, 0x266de3170276238f }, { 0x5f905f52342b70f1, 0x7f70b107a2cf44d9, 0x396af7a45f797335, 0x80fb9b47ddf644d6 } }, { { 0x4e4084e2f816ba05, 0x2355ff04091a1fad, 0x99aea6764ee72b27, 0x785d6bbcfdaed404 }, { 0xd02fc32fd339201d, 0x473ff1adc31880ae, 0xe1fbf88fbe0b4d7c, 0xfcd391532681506f }, { 0x13af38b358d7ca74, 0xfa2ee25b6aead06e, 0x9ce2ae64a7738c4b, 0xd3032a4327a956f5 } }, { { 0xd3d771c26fd0dad6, 0xefe2e4b6b3c9eb67, 0x693cbcd074dbd59a, 0x733ca2d5f80934ea }, { 0xa2302a20117a0b97, 0xcf1ba8dd884a20f7, 0x6fbf3979156e8173, 0xa33005fa02317dab }, { 0xeb871dd4838b186a, 0x6ca99660ec2eead3, 0x9cf6942a8ff3063b, 0x5fe66cb436520a7a } }, { { 0xc75ff9a16f1b6ad0, 0xc2d4693bb7363150, 0xeef4cdefc641ceb7, 0x72f625055ee29573 }, { 0x12b9f10e260f46fe, 0xc55d74cfe414bfe0, 0x6e937f42a42fe094, 0x4853a1637e6e6493 }, { 0xf2d40533a1e5008b, 0x20bfcdd006fca964, 0x87338ff0d779713c, 0x2deaf950b57c4e56 } }, { { 0x7d81e7feca119fe2, 0x7f8a9e79cea19c06, 0x6d1ea15130a855d2, 0x92590428310faf09 }, { 0x1102f31217888776, 0x166d1c7645626ca7, 0xb1e4731b2b821d79, 0xb4a19140d4c9aae5 }, { 0x63796bb446bae8ad, 0x9826a9adcf54ef23, 0xff5ca6da8a43c1a7, 0xd4c21bc96013c013 } }, { { 0xb6be98e2c45c6a98, 0xa4ee6c8da8c8fd1e, 0xf1356552254623f3, 0x182c411824c4b5e }, { 0xe6062e051355fb0e, 0xb04499b70a212872, 0x672039c1c9507a06, 0xd8afcc35b2431fb4 }, { 0x569028d1c8aea741, 0xc97ba2f05c0a6a76, 0x49ff3dd919a83e31, 0xdddd62b1cad8d6c9 } }, { { 0x9c018a9bfbcbe2fe, 0x4f751e5a55d0c022, 0x73a23a8cdacfe9ba, 0x69dcb7d2ff270b16 }, { 0xf5fae7056eb7642b, 0x7738bdc6a395c75e, 0xe31179278929c8dc, 0x30c6922a0d200ce9 }, { 0x7c81afcc7b8e9832, 0x8ae1b5220201b1c1, 0xfe69d41b7316ccea, 0x90a616bb21151666 } }, { { 0xbe4b6a54816a937d, 0x96eb253a128a9d0f, 0x79c82f8850d8e022, 0xa4051a9e29c59dfe }, { 0xdccc2b0ce5f35663, 0xb58de863feb07baf, 0xff4dac18cecc12dd, 0x692f9d0566af00ae }, { 0x1f05e690ac9cb721, 0xfb39de1d6a5b1422, 0x38545f374ce6f02e, 0xc92cd6c275b67d5c } }, { { 0xb630c686e9ae61d9, 0x23d63ca5746e001b, 0xb84eff508bca9dde, 0x3b42b845c785229b }, { 0xa1a10cc667c18726, 0x9f17a00ba6c84540, 0x6093afce55c3ad56, 0x21214f7addbfc4f7 }, { 0xb7017082428ffc56, 0xe28f06bc58a9e936, 0xedfde6903ad6149e, 0x681699a4e882fb12 } }, { { 0x1f98591ecd83c1df, 0x6b1802db2a4b8a30, 0xbf23897c92dc7d17, 0x433e1bdcd6df86ba }, { 0x58c28d73b271d502, 0x28bffaa29540242a, 0x59a301d741f9731b, 0xc603cf4215208b47 }, { 0x986ac002485a0d97, 0x192ebd7e242c3927, 0x59beaa35bcd5c7a2, 0x3d3e92d8c36797b3 } }, { { 0x6d51b5895731dbf8, 0x72140890126b0a67, 0x1a68a8d220e5a2ac, 0xb45cc4c040352c3a }, { 0xe8ec6787f8b5365b, 0xc4cdc239238cf18e, 0x33c07f4160911a52, 0x79799f636b2b5b8d }, { 0x5a976c08ac87a9e8, 0xb2dce9b8d6feb63e, 0xef77915f7e128b9c, 0x2361cec1064f8cd0 } }, { { 0xe5ea2bd3da65c4cd, 0x9ea2ca5075f4b00, 0xbe2c149e56800cb2, 0xb8a9da1a7022b2b4 }, { 0x983310a857453faa, 0x5ffbd0d76cd110bb, 0x68e5069b57bfc65e, 0x8dfd2fd44fd0a4a }, { 0x3e3a771c5c82a439, 0xd28268a96f77681e, 0x1a43963fbc7b7d11, 0x6e85b11358b1c43d } }, { { 0x5a471ead6e866618, 0xe324d8df87264b1b, 0x18280d341e07173b, 0x88f5b05d7e590418 }, { 0x306a208485d605d2, 0x264cc07660e33a1b, 0xf20fb21d819aa618, 0x2040d2b62700c57b }, { 0xb2fed4022bbc6f99, 0x9e6585c80e18ad93, 0x87b63561945b8207, 0xedd69e757a6ce7f4 } } }, { { { 0xecf7d182a65ea320, 0xa22440fd85ab2618, 0x3c7fe61b1d03a296, 0xe0547f67099c6f86 }, { 0xcb4b64cd7927e683, 0xce3308a6be4a23a, 0xb9739f0d9da55ff2, 0xefdaeee324f14c15 }, { 0x62295ca1c3541447, 0xc0953e788191ac6d, 0xa5e1c19b232f076a, 0xeee69f7d2a87500d } }, { { 0xa97fb2b42521a2d6, 0x98dd009180c1ceff, 0x2977034462fc8f89, 0xa67ea56882536c0d }, { 0xbb4769eebc8e004b, 0x55f82f2e4da413d7, 0x9bf44ca7d0a2711, 0x43c777531cc067cb }, { 0xe7272f73aaf346e4, 0x4d8d9b3fd8940b69, 0x6330022eebb7e207, 0x347dd9271e182173 } }, { { 0xaa96c007aa47a3f, 0x1e712ab4388d0381, 0xac85862fbaf3b775, 0x1afff0fe13c81726 }, { 0xc02fb30b181c54ae, 0xaa6f97f6694696c2, 0x77197e65ceca1a10, 0x286a523961ed087c }, { 0x862575e38deadfc2, 0xa3e50042e3be7719, 0x742babdd19c6192a, 0xf8de3a17a958b982 } }, { { 0x6ad72a9f0e070dbd, 0x203b67998ae6eb4a, 0xc45290c9f32e4fae, 0x687cd9c7d61d3e66 }, { 0xbfdeef8ad743fe95, 0x835604660d0caf3d, 0x5dd5b44a9ce29c0c, 0xfdf6ddcf8718b3e6 }, { 0xb6a16c2c7758616b, 0x9c24c6bfba21e4e8, 0x336dac7bb8005bdb, 0x7d6d300e3fafeab9 } }, { { 0xdf5f990aad3ce3f1, 0xa95099803074037f, 0xdd544bb3923d5e42, 0xa6b88a66ffb73d08 }, { 0x59c741e59198be75, 0x653964db060a0504, 0x46a8a387bcb5a93, 0x734ffbcf5b4ff1f7 }, { 0xd8e8d26730675507, 0x69c458da021362ac, 0x3fa8e12c8f1aac2f, 0xb04a5fbc91abd2d5 } }, { { 0x4266e2c0da4f57e5, 0xf7b4643a61275e3d, 0x2b2607cf7465514, 0xf7a62a0e71c886f7 }, { 0xab7905f196909391, 0x6efb321039676d54, 0x2b2003112a3b0526, 0x57fab5fd046339ff }, { 0x920d9fedcf48643c, 0xa97ed30dae2cd2b3, 0xc44fa117f3009735, 0xffbea4cc85d3fb61 } }, { { 0x504e980e9265856e, 0x4f3796cc07272a31, 0xed4de6d09b9abbb7, 0x82df5832ac44b946 }, { 0x9c5ca917782806a8, 0x81280fa86fb1a3ab, 0xaa93bd9924de43cf, 0x4b0247872ebf644c }, { 0xa5eb5b4f2919c694, 0xaa4bc509e1ab14ea, 0x8bb96ee29a3d0b92, 0xeb07d04c9c8784a9 } }, { { 0xf94697e509b2361c, 0xee3cca6ab7cb4cd9, 0x7dc9eff3f30f5ff7, 0xf9eab13e0e55896f }, { 0xaaed8ed0272dc8b8, 0x3a5c4ca9a8844d48, 0x8ad44b1afb689cf5, 0xe61344812e2da8b6 }, { 0x157a9ab592ee7638, 0xa0a2910e2b00878a, 0x1597bcca5c6f9a4c, 0xc7c41f0438fb3f69 } }, { { 0x14c11247042a1469, 0x3ea03d46afe404ad, 0x6032a0dc84669f7d, 0x9cb517a7918fbd3b }, { 0x2288984a78c6d3c3, 0x1f350e4b2b2a621a, 0x7302fb69e2144fec, 0x24d48c0e236c85be }, { 0xb17b49bb2d49cd11, 0xa2b80710d858c3ae, 0xf2a01a03ea71b3dc, 0x277ce9495737c9ae } }, { { 0xd5d4f8301b02b3b0, 0x1f8393d1dc723071, 0x21ed576d0e4f4a6c, 0x526b23790d63508b }, { 0x3be1a3df679ef086, 0x8527a8d1fed10641, 0x5e4b9c1a2b183f7b, 0x834a74da69993502 }, { 0xbff3e995bdd3bd00, 0x26f8e9a9741a5cd9, 0xad0aa3292f3104ad, 0x625d213e246bd72d } }, { { 0x234b458838f4ecae, 0xc130bcffcacbdc9d, 0xbe2f72658f3e69dd, 0xeca93c373d43eecb }, { 0x548ad0acbcb8c48b, 0x5693f7d9b65a6264, 0xc3e87daa331bea52, 0x9f80f6c62c448f31 }, { 0x61a71a84dec119a, 0xb57f3363b4ac664d, 0x953d2b68b5614ac4, 0xc1f85101cd3c3761 } }, { { 0x2b199fa219f038f1, 0x7d6619e6e367a5de, 0x95352911e23c268b, 0xdb63d82b0a9715f5 }, { 0xbda011ba44b4fa6, 0x3cf2a42313cd10f1, 0x9e8b2bceeae9962d, 0xeb533ad724f1b12b }, { 0x3984d4fc075648, 0x6d13fd54586543fb, 0x873b487ce5ea1203, 0xfb481146235e01b5 } }, { { 0xe619852224567c07, 0x642a53528fa8ec80, 0x6e1f404b1528be8b, 0x59c8526e7999debd }, { 0xf14858f10ebafba6, 0xedf02cd660c7c2a1, 0x6e6f9e2ace090ba6, 0x24609d58340baf10 }, { 0xcd401a83aa3f1cdc, 0xbec24890b0413f6e, 0x954cae562a70f4f, 0x94bceaf8bb65a2ae } }, { { 0x35aac7c847f1e6bf, 0x7b313b671a52fe0c, 0xade168f862e0084f, 0x739f92a8d44bcd58 }, { 0xd7daa17c7bc25257, 0x3201d5bc58f4d1, 0x8e915846a9686f6f, 0xfe1b84300d0c4e6f }, { 0xeab49728f4756941, 0xf6932b8f0d7099d, 0xd7fe57980ce2d1e3, 0x5aeada5865ab47ec } }, { { 0xbd15e98cc4102fac, 0xb76db9eb24ab30e2, 0x49b1cd37b10360ef, 0x1fb59eb4473437f8 }, { 0x3afe389e59e43253, 0x294ad009440e106a, 0xca0874f4cb9179f4, 0xd330c285f3ead120 }, { 0xe4679882564a1450, 0x99b872478292e77e, 0x77a59a4b4d96f1eb, 0x30fad2d4bcfb38a9 } } }, { { { 0xff96b3b5e5fa5add, 0xe3379f534ecb655f, 0x86acc42462d945d2, 0xd5df82dd8cbd5c12 }, { 0x59471fe847f01d41, 0x7136663614601dcc, 0x9e33410a24f62c2d, 0x66daed02e3031d1a }, { 0xb1e1bbb954f93cca, 0xa3ce2f232a819468, 0xf6b16ace6ff52ba9, 0xc420c24e7ab2498b } }, { { 0xc6f50ffe45c7be8f, 0x9abba22f417b3ade, 0x7b9ff0923b473395, 0x6e9a6d7e9657b355 }, { 0x7e5236b0c0099258, 0x89e3ef526ec2cec, 0x490bce6bc69100d0, 0xdaa05adf8e7e1265 }, { 0x3ce8c6072d0ef9c3, 0x653515b63f3057a, 0x60027918c5ded4d8, 0x386e1920b5005002 } }, { { 0x8bb683767bfa8900, 0xc94dd4e7d0aede21, 0xa570ba0da2886373, 0x50970b65b64283e0 }, { 0xfe4be4d41039d3a6, 0xa11123f4b39b2e1d, 0x7659aa75cecdf7d1, 0x7c91262e03d8db1 }, { 0x3851f88f1f9ccb68, 0xff0e7f35ca7c1fab, 0x29009f8a9595d574, 0xc4ab0b22c2935da4 } }, { { 0x4f958ae6edf05a66, 0xb2cb19359cb58603, 0xa931775b484712ef, 0x92fe94372ad15e3e }, { 0xf469c001fa382849, 0x7213cf95799801c, 0xd4f2fc87c6b13302, 0x3a753b0ff5cde2e4 }, { 0xf0a64dbd4542869d, 0x4392cf7485f83721, 0xb75e28ce1f43a944, 0xb6bed981a71270c } }, { { 0x9abf11d5ac63d85b, 0x3969623e1952e62a, 0x2118c0552ac37a6f, 0x21a3b8fb0b72c43f }, { 0x18ad52d869648b7c, 0xc323ea0f70b544d1, 0x46d60d15ec54f377, 0xd6e542fc04bbbd10 }, { 0x792c4264defe064e, 0xa554aa5ec54912b, 0x6b7fa5de274151c0, 0xa9e58fc4aa7bee5f } }, { { 0x2c815bf65a3fb3dc, 0x4db88b7c884fc2b5, 0xccf372f99a0ed58a, 0xc44ccc351dc845b4 }, { 0x7792be7749b22ecc, 0xe4c0f5098548f29, 0x9058d5e18fb87f4e, 0xa352505ab19ae18c }, { 0xd3bab468c8f7ddd5, 0xea9c1b78c8cabd31, 0x4b483c12d9f7cb96, 0xb98c2b73554c2cd8 } }, { { 0xf0eba63fad97324a, 0x6e6e969876c3f5b1, 0xf2e9936d57677763, 0xc04a1af3680e62cd }, { 0x11259bdc836673ab, 0x3fb96390ed29382c, 0xff3814d3a71cffe9, 0x8c28aaab8020efdd }, { 0x3e2e92658db8bafd, 0x3c6c8bb1432c23e1, 0xb9de770038d44ff1, 0x441395e82f5d42ed } }, { { 0x2b2d375177f564c6, 0xdbf4d323a1cf727e, 0xe4df6d674fb0c981, 0x5c42932dbe761231 }, { 0xae5459dcff7c0218, 0xfbf29b467154b138, 0x32c2c19e7a82f4b1, 0xa007240c538310cc }, { 0x3802d173a88a6b1e, 0x94420a20dab48a08, 0x51ea29519155d40c, 0x979a352c140051d8 } }, { { 0x19b40e9e18f00dd8, 0xf2154b8c74697533, 0x2900232c66fd8cac, 0x903264dbc461a7cd }, { 0xefd40384f6fa9bc8, 0xe03adfbebd1c73c9, 0x12b1cd30659aa4e, 0x3a4b4bb66fe9980c }, { 0xc0cf1aa64efd1e1b, 0x2cc9203fad3f9cee, 0x7f680041a6e04479, 0x3d97223083a68ffb } }, { { 0x3b7dca51b98837e, 0x8399e6a2b74a94a2, 0x1baca7cddf7957, 0x1f82a58210683605 }, { 0x7fb58086fd901085, 0x27408936f4c5e663, 0xbc9d71a01de90315, 0x5b0589d5103a546e }, { 0x9a89a1f849401a6, 0xbef721a16aa24af3, 0xe2da5d119968e1de, 0xb9457dd2f92c4789 } }, { { 0xbd1380e86aeee9b, 0xe1ed8168aba4fe45, 0x6c99d85643a1d3ca, 0xd6ea23e0f081e379 }, { 0xcedfd4a5ab30c592, 0xee3b07f62e4f7a6a, 0xcb80374fa6b6291d, 0x7bdf336979a4b718 }, { 0x707ee08cff27fd00, 0x4ee3547864d94c13, 0xf8484ff287f62d22, 0xa68f210dfc383b3f } }, { { 0xfd5c3fa533cd4f2f, 0x868b50d4517f0b12, 0x8f2ce1136601ffe5, 0xe2c5329048ce1d9c }, { 0x1258cac999768fc9, 0x5a96d10e5be6b3f7, 0xb77520b2d5c5b5e5, 0xbe833c112c8b1ff8 }, { 0x253a610a33a93806, 0x699a0f396619319c, 0x4c5cce5e2af86bbf, 0xaae137631a724c2 } }, { { 0xc5951c25d42682c2, 0x57386b88be823148, 0x2ffc19e4da30796a, 0xc5515f4a1f8dc158 }, { 0x6388713721cc7b2b, 0x40d657af19ab514a, 0x9cd34e4059803f8f, 0xf61d7e26a6116a5d }, { 0x365d2729d5fb3fb9, 0x9cc78ab0649f94de, 0x748ebf40765a6d7f, 0x93c4e8eed360572e } }, { { 0xe5e67373c8734416, 0xefac4a6c0b5a2207, 0x39c8fc2781007bb, 0x6ca70e691988165d }, { 0xb87b88f6c1863a53, 0xdf29971b8290b4bc, 0x554f31f473e5df10, 0x4afada277d4a5de5 }, { 0x3b0663ea508b3bd5, 0xa975f4b0bfe01f1e, 0xe08dbd7017e604ac, 0x7fc56a0ba6243553 } }, { { 0x2c009b3dfb5f147a, 0xf26e77256270a209, 0x1d5c02a93900199e, 0xde15a6e5c5f6ca7f }, { 0x77c83cf8bfc1a751, 0x66474243d363dfa4, 0x2d44a2380bf92923, 0xca83dcc60f6ced86 }, { 0x35431632116ac5d3, 0x89c5eeaa14e69d36, 0x31237f8b34f12642, 0xfbda2bd33b924ec8 } } }, { { { 0x8045bdc04158b872, 0xeca5c7fc46d3c30c, 0x36b0b1766ef6f6c3, 0x985d4144c9f549ac }, { 0x36e06674192888a9, 0x6161f6e49c71ffd5, 0x73d5a9a89283d2f1, 0x2a85a0314d8bfa3 }, { 0xc9b02bc69c494ab2, 0x6266f0b4100c7a4c, 0xf273743920169421, 0xb181c07a94c79806 } }, { { 0xebe7113da863afc, 0x9ce740e3005605e2, 0x10dc27344be9d08d, 0x8d632d619a4ba93f }, { 0xcb5e6fe0ce27d3b1, 0xdd8a7d97a9938aae, 0x4df5078f65cb8e68, 0x79e4ba46e2b5f06b }, { 0x9e54247b0f20ab1c, 0x53ded95cfe13d975, 0x9b923d68478538, 0xfe88503d078219c2 } }, { { 0x2944672986370af, 0xac7f8541c4fc50ba, 0xbb3dec234b558878, 0x831e8533aa9c63c }, { 0x1d878a481509bd86, 0x145c2576fb5a13fa, 0x95f75b4ffc63c38, 0x27b02af6fa6a13c6 }, { 0xe7bd15d496cc1cb7, 0xed6132d946bad666, 0x2658342e61369f73, 0xa3d906efaa4a20df } }, { { 0xdf1bdbd49b61f851, 0x3b0bf72a6054e372, 0xf0168012f028dae, 0xb2b68155698cef3d }, { 0xa1a69eb556c95384, 0xfaab960502e3405c, 0x44ae54b489ff4437, 0x6d28742bdeb10b7b }, { 0x409e8a770ae7f7ff, 0x7502a0790ac6e379, 0x985d6f89a55dad8a, 0x25124ad0c76fdf12 } }, { { 0x87b1641a051d7938, 0x8235127dd173129e, 0x78985544325f025e, 0x8ce3d55d6a549b6e }, { 0x218529ba53c43963, 0x897bb8283d10c1f5, 0x320562ac01c12d4e, 0x27bca758f998f146 }, { 0xa7436f1cb1ca8d63, 0x50bf97368efc5e38, 0xbbe21b2c94dfe9d8, 0x94b2a54bf16e3f8d } }, { { 0x179e4fd12f7e9f91, 0xcd4c5f277039ab74, 0xb43144b3ea492b72, 0x4dcfb43ada9d7d6d }, { 0xa74a00b0b7b788b4, 0xaae6dffe6e86014a, 0x422cc888611682e4, 0xf97a7d75bdfd2e9f }, { 0x240f6f6c9efd88cf, 0x88645bc4fbe5d1ab, 0x6b3ef251e25ffcb, 0xb5f9115e6b7a2e38 } }, { { 0x535cc1673945cc9, 0x270dfd9ce7f749c2, 0x5939674bb8d7fba9, 0x4acb76451bf2f17c }, { 0x202e5747d56770bb, 0x882b44b1bee8206d, 0x26404b5a7f84a71b, 0x1403cdeeaf6f08b3 }, { 0x2fb33f876e9ccec, 0x625ae67519272bd9, 0x810c66b6c98570d, 0x622603237024aa04 } }, { { 0xc2f39c3cd51fe98e, 0x8f62f690adaf0527, 0x7af929683b20cd2b, 0x5f04834386de6da7 }, { 0x5caee34798f1b17c, 0xcff15f7db3ab1a16, 0xe56b14a3e821c3a9, 0xa20282549f891c39 }, { 0x8600e8b298b94d5a, 0x25bc0947008f7618, 0x3d7a4f8debb1074c, 0x7293324d188b0f41 } }, { { 0x41fed10af94b4bd1, 0xedc245dd15bceebf, 0x4f7606f629444946, 0x4472c37510328818 }, { 0x73a5a4aaa3a91cd0, 0x1856218c2b26c78c, 0x6642b745859a9fb1, 0xb390c9aeba4bc233 }, { 0xa14fb34c1916aa74, 0x78dfdf6c96014c37, 0x61ec1d74b1ccbe2c, 0x2fc9554aba8ad5f } }, { { 0x492b1dd9284b729, 0x2494ec4d9a4f38a9, 0xdf72c47b34818901, 0x2671fe67707268a8 }, { 0x8ecb136fa8f045f2, 0x6d1fc607bed7d1e9, 0xd7ea0208a75c98aa, 0xc924ea85b535ec0c }, { 0x1e5ea201e730c125, 0xf4e9116be82aa33b, 0x3e718a3b667a4bf5, 0xbfbddabe886128d0 } }, { { 0xb2dc39e2d272eeaf, 0x4839805e7bb994f7, 0x1a31e55bf130904, 0x63707a2aebb6323a }, { 0x269e3a4b6ab0fc05, 0xcaea12bf56affe4, 0x7d2373c64536e65c, 0x13dd0a81bdc4ee44 }, { 0x4ff7e4a0b40ba645, 0x5287395595d071d8, 0xe6988d1fa4a98173, 0xb4bc0e5197719cd1 } }, { { 0x9f23d2865cd1ee63, 0xbbec4c3cf60d710b, 0x13146bd269ddcf5c, 0xf4a9f70ada900987 }, { 0xb2b09ba82c4ba716, 0x5dfbab55ce01718, 0xb92fb1649d36cf7, 0x561a1903bc54ef42 }, { 0xdf8f9702eea25316, 0x733d8955b5cf416d, 0x39b5b27515d151c9, 0x18c0e94aa1da58b3 } }, { { 0x5e4032ef9d75b9a, 0x52587eee1f151c95, 0xe08ff1f03189568b, 0xdb97994afc3f196a }, { 0x1e4ca3973edadd08, 0x63bf9c4059ad28d4, 0x93505840bbaf3737, 0xe839fbd075b20eba }, { 0x909f3b79cdfde817, 0xcce1e20d66171555, 0x6d15415626362a, 0x57350a83c1ef8715 } }, { { 0x868b9c70729dd0e5, 0xb2fa5fe60ed58f2b, 0xe78e3396c75a92ff, 0xf1d4fa58c24605ce }, { 0xfb547a34b548cf7d, 0x4dc4edec5916e7a2, 0x87eff29f5838fda8, 0x3098f3c00b81f41 }, { 0xe72a7a01c8d1785c, 0x67ba703294b5b89c, 0x675ce1d683ec313f, 0x3e585828ed5f16ab } }, { { 0x69c5679938cb50a, 0x103e322d15fb7b64, 0x20f61ccc84a0e229, 0x1a44230f62c3a4ed }, { 0xf5822f28393c2010, 0x8ddb54fbededd3f8, 0x4125fac3e8e17cc6, 0x6abd0463278cdbc4 }, { 0x3d3951b2f09706f0, 0x434d18cbd391d675, 0x7b4d923d0b90abd1, 0x950b8d04ead52bdf } } }, { { { 0xbc6087f7f891714d, 0x60233452a170e1a0, 0x1057b2ed6577cd67, 0xc91f5eb9a9e6ecc1 }, { 0x470941b2d737fdc1, 0x592d393c266eb79c, 0x36fd6107828e5e66, 0x712591ff11057c4d }, { 0x494fc32e55c1fc39, 0xf20b795e41e5cefa, 0x6087c04df46c8b17, 0x52ed8c9dcef9ee88 } }, { { 0xeecf91c53d6017b3, 0xb6a017390f10d986, 0x6434527c2c17efe7, 0x248d7e662e8c0c52 }, { 0x3adf5b60ed01db35, 0x65eff4afc9199782, 0x103ece76ebbfd044, 0x9e7e4b82ba8a219c }, { 0x3e21e331d658422, 0xbbf3b0d315fb891c, 0x4c4d07804bbadc8e, 0xf070a8b8d9060c1f } }, { { 0xb318b1f97b41c8c, 0xcb6fdb13aa6f9d41, 0x122fbfe134a671df, 0x4f62fb0d35e278f8 }, { 0x213287de69607a1d, 0x2ccd877bc4a6c5d2, 0xe7848e69c1bbd4f7, 0x663e05c1cc7d8886 }, { 0x9b75a66713fdb608, 0x8525d18463df696, 0xbaa4616b1a0a8a7c, 0xdd2a6afdc50a5511 } }, { { 0xc1c249cdf9c31991, 0xc59eaf919d5c9b31, 0x435d62545ccc4b56, 0xae73f26e356cd6d }, { 0x675a9d6dcc60991e, 0x6888d9e34393f507, 0x6e61e4e0f3150890, 0xbe6f4d79af73e286 }, { 0x59f9168d5f1d1b29, 0xf8d8e038f6560509, 0x9a16bafbda4040a5, 0xbcbbb403d3758501 } }, { { 0x56ad5ad8b9868f45, 0xb1c760d6fb3e07, 0x231df133f02e77ad, 0x68f5903006ab310c }, { 0x2a9f2af6d1fd0aa3, 0x6de3521d73cb8e47, 0x2768f862e6b84189, 0xeead7b220e4129b9 }, { 0x866f4285312b32a7, 0x60b096fa737a4e71, 0x5f2bcccf44575e07, 0xb9dbfabcd8f77bdd } }, { { 0xf54b72805d59e639, 0xc9c10252703dd0ea, 0x659e9b430f69eb93, 0x312ab8769e7684cb }, { 0x8b2d7efa54a68bd0, 0x3322e7f616a5b122, 0xa88f9499c3570bd2, 0x5951f39575ce7047 }, { 0xd3312de8c3a56743, 0x4608203c34a0c95b, 0x5216606c1b501b17, 0x999c9610fd18ade } }, { { 0xf2139e34ddc8f171, 0x6bba26208500059e, 0x97b8721a91673918, 0xcc5afde4c9c8971c }, { 0x18469d3efb39191f, 0x34032c9e95eaa7b7, 0x52afd722a22e72b9, 0x88d145e8ccbc6e2e }, { 0x8b49e2badfd41e9e, 0x2f3b61b3ced63837, 0x95b59e8db8cf6451, 0xd53f0b2b4ddc58f5 } }, { { 0xfcc09679aa33d332, 0xbdbd97b1d973cf8, 0xf3437ae6ca4e9d5d, 0x75cb05ac9295af91 }, { 0xa7be5b537dcf8f3d, 0x29111e5e6ee0ddcf, 0x9c880314141fcfcc, 0xca0082025777484 }, { 0x9140a1d6195bc09d, 0x1fd1abf243c611c2, 0xe2bf1507ba00ac8d, 0x4ebe2396ea3f0571 } }, { { 0x7ab1e443e87aa0ab, 0x78731a4213a96194, 0xd98c6850e02a2ec7, 0x24990f27ead6a523 }, { 0x8c690542ab8372dc, 0x99a1b8d5d0667e60, 0xd0df22c5a734c9c5, 0x5fe242a8aea79e2a }, { 0xe04471d8cdc97385, 0xbaed2dd754450941, 0x4fbc7b658cd814e1, 0x19e14dbb9709ba60 } }, { { 0xe75c1598d308cbd2, 0x30a9859d25cc72e7, 0xaf95559affe1585, 0xc1b5d5e6e067e21d }, { 0xda09c67e0b39ae93, 0x13f6420f0171d5f5, 0x691a9771d483e3d, 0x94a5465f2898fa56 }, { 0x4445058b1262911b, 0xb09dca37a0f4a8b3, 0x28525f85a97ff89d, 0x3c050a4ef9d49ef9 } }, { { 0x12afd62f16cea5e, 0x50b18642d0a0a5ae, 0xe72e419e152f3d5, 0xa0bbea6cfa77fe99 }, { 0xd03d82eb45f7d2a4, 0x81b53a431d32b459, 0x1f056f62e70729c4, 0x95d678ceafb7eeb1 }, { 0xd6cef2a1ff4faa06, 0xe2dc22031a6e3959, 0xc3eb3d55f5126d8e, 0xc521481d84d325ea } }, { { 0xffe874b79728c9e8, 0x45edecb48eabdd4f, 0xf14fd16b19b15b49, 0x7d29e918853e1cb6 }, { 0xc7a93f94076a0b4c, 0x564c943cc51b6b66, 0xc162f1fc67362aae, 0xad093cd49eb8e475 }, { 0xc2a75129322d9729, 0x4165a72cd56ad228, 0x7abaa60dbe4f0423, 0x8ba55885684032f } }, { { 0x7d9ab080c8029c42, 0x2b97123cbf36bd39, 0xe82349de651cdea6, 0x794d4fd5acc43c5 }, { 0x1a7e095e6b1ffb55, 0x1928a1b057bf037a, 0x77a45419ed877a0c, 0xfb86c0b8326123af }, { 0xfea7308d61fdeffc, 0x9556858f4815ad2f, 0x35f40e4490baf9b3, 0xb2eda9ad5231b3fc } }, { { 0x38852c6e1a14df5a, 0x152a19efc41c7cb5, 0x7aae9b72b5f4c936, 0xe12bc8c632e3119a }, { 0x319a7ed03604450f, 0x873a8a36bf3df29e, 0x247aa5d7dd46898f, 0xf235b1513ad9aac0 }, { 0xf93b6f0a6c3c7c76, 0x4399b2ec3157b8b2, 0x28c84085ce1a1671, 0xcf10d8c58452d1cb } }, { { 0xca8c9bfe61fe7d3d, 0x782cf0414356b454, 0xe2214d9085463b91, 0xd27b4c9ab8dc3d1c }, { 0x5ff251bf4a6ed61c, 0x73fb85935c916e6d, 0x45b9c233f5838464, 0x1d36b5c6463b0fa1 }, { 0x8501c1533026c384, 0x906f4135617a35d3, 0xab56d7cbf825ec0b, 0x767dce23a8c057fe } } }, { { { 0x56b2bd9c8f28266, 0x4ca98e5c0ce77506, 0x6bea3fb20a2916d0, 0xba74ce47b4123576 }, { 0xb080d4a1eb99d5de, 0x5306c06090bde055, 0x8b3fa1e0d71f9f28, 0x715f9f78be2d97cc }, { 0x52fdf51366d9936, 0x1126c3680a37d13d, 0xc2c766c0c02528d4, 0xbd520498a61225f0 } }, { { 0x55679056a3eb41f0, 0x88d09e48392f4a80, 0xb1d7fc426e3e8476, 0xc73455b2b8a6b7fc }, { 0xb33fcd69b6afbe3f, 0x26163ba79ddea712, 0xa7c746fa492e27de, 0x86cb8c48f2653908 }, { 0x1d3464ba1aadc7c5, 0xad90d1a648148f61, 0x9dbe933c071c2661, 0x21e6cf4b32a1973a } }, { { 0xbcf325b6f7ac5915, 0xb7997363572563e8, 0x8170fd59fea0576b, 0x1fca5694f1176851 }, { 0x1600f3435e8a28d9, 0x29f4d83785a27c42, 0xca52eb06afc15559, 0xfc94673834e90c54 }, { 0xe4fa9b4e79d6cd8a, 0x4359b20b2ebbd665, 0xcc4f2a833ed78ef1, 0x19178635acd0a8e3 } }, { { 0x4545f822ed59d73f, 0xa4026e226ebd9f79, 0x115527d6631dd39a, 0x8b182c7ad67320c4 }, { 0x9060f8d1c32f1556, 0xbb934aea0e246762, 0x7f5ac361384ab334, 0x106035cf9538ea32 }, { 0x9e4e2e4af96d086c, 0x754f25857e31ec00, 0x2d515ba6342c0fc3, 0x33fd2bd61358bd9b } }, { { 0xff5ee4936d357619, 0x457c0281b904c97b, 0xea72bc27942a256c, 0x593464079303e74f }, { 0x94da35334e0e2fa6, 0xecc4a410ffca920d, 0xae09b33d84c632f1, 0x1823bb72dfa9b869 }, { 0xd29f8160d5decf40, 0x5ccba8d6a3680e81, 0xfd8a054e5ee0480, 0x5327db554e692b38 } }, { { 0x21cd66eb93fc6bac, 0xe6896866f25b5097, 0x69bfc1b2fbdf87ac, 0x92025369c5298629 }, { 0x9557e1ac1a624785, 0x2dda4e969a8a3afd, 0x4cff32a96a1ec4b3, 0xca0b73ec3e172cb6 }, { 0x3623dd585614a36e, 0x89abc2ddcaf0475e, 0xf2ddb9988ba28b9c, 0xc406ef5cb9782a0b } }, { { 0xaee60198ad9111e1, 0x6a412d238979e805, 0x385aa63b3652cf60, 0x6d2948beaa7165de }, { 0x7b35a2ebb387eb40, 0x8d573d60f3c4de8e, 0x5380c87a6df818da, 0xb5436c5f5c295254 }, { 0x7591d499d52b4a60, 0x89509a7e8e8b950a, 0x4df3ea10d13a567c, 0x3d915287f72de3b3 } }, { { 0x60da3990e00e859e, 0xa8d2878e24c3ec7c, 0x197b55441e1d36e6, 0x2777148edb9c20e9 }, { 0xedcf447a37620066, 0x99bd69dc787c3921, 0xa1f62d9252a1cdb6, 0x10a28358c72be0ec }, { 0x8e000194690d584e, 0x315bede7f00a216e, 0xd019e2f24cfa12ad, 0x6bd0ba194591b57c } }, { { 0x56447c72900024b8, 0x886dffb996ad20b3, 0xbc209f6a4808197a, 0xd4329d0a693a7971 }, { 0x96428d959f67de7d, 0xab19dbe0cad5d5bc, 0xc8eef13314a15580, 0x97e91d59ab604584 }, { 0xf8ffc7f48af6d8d2, 0x5aee7eb2e0f7c29c, 0x969032cbaf9f003d, 0xf96b1cb831549ddf } }, { { 0x61f151bde81ca624, 0x7efe9519f8266bb1, 0xb6a623ec0be71b4, 0x60b29b9b77eeb761 }, { 0x210d7f1a8bdc12a1, 0xdde9b7fc35f0ebf3, 0x65530d89c09f5e49, 0xfeb71060f6a3356b }, { 0xd6f67a2d97c0a66a, 0xb3f7c3ef13b22b4a, 0xb3dfce78492eeb34, 0x5dcc7382b75bac23 } }, { { 0x568e0325f5fe4b71, 0xc5df19be23ad5edf, 0xcae35975f22ed802, 0x10bcb12da3298df6 }, { 0x6e2d309a380be926, 0x9ca365bc24368d91, 0xc2e43e991dac92d8, 0x5a673db45f4ffdbb }, { 0x6c06c536770c6e45, 0xb1406d5232b8401, 0xbcf3c4959ce21856, 0xbb18978602d3ecbf } }, { { 0xcac72c5c2c0608b1, 0xabd56888678ed525, 0x19e6056f8f6d9db1, 0x47d96b76b1e29d19 }, { 0xb663066038a12343, 0x83d38e30afc5390a, 0x7855878e003b49d2, 0x6bfd08f2938c7495 }, { 0x288ca5dbad7fe882, 0x990353d8f9edd811, 0x9c250abd3db5915e, 0x2a847b22a3aa8c58 } }, { { 0x884de9c9e2e0645, 0xbcfd20fda68bf840, 0xac65ea1bebd3ef97, 0xa891de7b801d5627 }, { 0x102f70fe39e35b59, 0xa33c9f0d60f95742, 0x25bedc9393357f6e, 0x4424f21523d8e061 }, { 0x797f2fb9ed5a70ff, 0xccce96851ef79577, 0x6cf173a99e3c24bd, 0xf00c2b767a2e51e7 } }, { { 0x54ef93ed64302373, 0xa7956cfe0263c8a7, 0x8b62406f6f9d2eeb, 0x2d5bccc60cea7bca }, { 0x1e450fe3912a0e9a, 0x7a65f33774f92db4, 0x5dccf80560102f23, 0xc62abc79e1d1aff6 }, { 0xf5daaa5e8ef9dc23, 0x4adb7ede17c972fc, 0x4534d66281e8bf06, 0x39a2039947daa973 } }, { { 0xedcae4e83a381325, 0x2011e59cdb996543, 0xcfc16d59250187a5, 0x27b0318743332429 }, { 0xd60e19d9b17ffd4d, 0xf63452c9fd5aa588, 0x5f392d0ca546aa79, 0x49667381ad7efe51 }, { 0xdee2a5c7bd3af9da, 0xbc9d77f6d5f76cd9, 0xd39beebf6641a23a, 0x9f6d931071697869 } } }, { { { 0xe30de1bbaf59e770, 0xa2d852321684bf25, 0x1a2ba9bad3175343, 0x983943e2b164b14a }, { 0xb50ce10a8790d27a, 0xbc4a88ab4b084d9e, 0x9debc5da123da79b, 0xce9eb3284ed7cce }, { 0x13ef1813c390ba17, 0x53d02849dfdb2464, 0xc887c1d03bdb7a1a, 0x9c2c4f6d8484ae10 } }, { { 0xf38706de52129bbf, 0x8172d336833f3bfb, 0x3007ba0a26a7fc86, 0x80ca9b3f9c6c3660 }, { 0xbc0c3fc762eef4a8, 0x8b6fb472cc2e874c, 0x6084d58090f5229c, 0x6aea7e59c197eb05 }, { 0x21aad4b2dc87b2f5, 0xb71ad480d61d9df2, 0x1bfc037b185bfbbf, 0xb24f6c889fe2c080 } }, { { 0x9f857b105e70b6b0, 0xd6d6a48c8ba047aa, 0x8fbf791f0c78c33d, 0x8defee7b312c331 }, { 0x8590fcd0c110d8de, 0x1096ed61a1ff8acd, 0x80ff5965c6c27dc4, 0x321d763f04da42a1 }, { 0xa8c8f821be2b4f71, 0x684a201ae95ab924, 0x97be3ed9bc469c70, 0x36ae0bde8142aa82 } }, { { 0x3bb0976e6daf2f5d, 0x49c35a618b6211d, 0xad40ce6863d3095d, 0xe22b979c8833926e }, { 0x35c4814df66ce053, 0x97010a21e4a8ee9b, 0x1b1b11e85c7ab7e4, 0x356f72fc621bc58 }, { 0xfdeb7348da3dea64, 0x752d3869c485a024, 0x817f7b688620671f, 0xe7e3b3c1688e19f6 } }, { { 0x6577713941663fa3, 0xcee640ba1410b62c, 0xd0e40697c4a93946, 0x352b1c3b8d040cc9 }, { 0x28fe4477ca1f8da3, 0x23359205722b8617, 0xd186b307c30e4ac8, 0x2c044a1c8db0ddb6 }, { 0x34bdcf1a0d831867, 0x39c11c834bd4c8c7, 0xbd0a2517a0c98ccc, 0xb8be53afa328bdca } }, { { 0x202aa7fbb104fd92, 0x5d8595f8fcbff0e2, 0x65ef353d11cec2a2, 0x4eb09cb463958acc }, { 0x67bd55abd4c9d475, 0xa1e1d7f6f935ee42, 0x2a247ddd0d916d7c, 0x75296cd3729320de }, { 0x1963e5182db40b4, 0xbb9c686814105749, 0xf03f5d4d7acb1175, 0xd4de1623cb14e469 } }, { { 0x8ee253af39dad779, 0x47c0cbcb8de32154, 0x367a039886f669fb, 0x5e66b1d0843bb416 }, { 0x747b380fd98bc16e, 0xe9879e128a89ab07, 0x80fb36dd9105afdf, 0x299e7f22a8f226c4 }, { 0x56c91ff1aa739f24, 0xe5b275fa54d3109c, 0x8078da6f3ffbb47b, 0x71786dcaac6907e4 } }, { { 0x1960b6bbba721ebc, 0x392c6fa68c0c0875, 0xc6dde20f9b459fe1, 0x68f37338e21ce5a3 }, { 0x339ae0a76afe8107, 0x526f528b16edfea0, 0x3e3ecd63a4c2fd72, 0xa987c4826786c220 }, { 0x1d77db7531bbcd9b, 0x1d684f7815b959d1, 0xd4b09a314f9e1525, 0x32a493d736a35f2 } }, { { 0xf5779b633568746e, 0xc2b979609178f0a6, 0xd5275c7b7f8075ff, 0xe7cecb2ec06a4cab }, { 0x97b35efbb8705f14, 0x419a3f6ee319c27f, 0x5f74caa8a471f118, 0xb1e05ae51e8628c8 }, { 0x40663fcf9c35d444, 0x959ed2f24605f01e, 0x9b0d25a4c843c2e2, 0xec17b10178fd2249 } }, { { 0x1b00d0e1af152844, 0x8e54fb98d13dae3f, 0x5c47cd71618cc37b, 0xa1453e1ff63d1bba }, { 0x1c9dd97a7cb9f826, 0xc1dab76d29862d62, 0x3216c837b7e0b723, 0xbcf19210fec7d146 }, { 0xbbe7729458637b3c, 0x1908d24f1f1a264f, 0x334f1ed2d1b09e58, 0xdd52a537c86bf092 } }, { { 0x68b52964ff89230d, 0x4f2819581f69c15e, 0x525931407b40f747, 0x7d638b1ef3c831e9 }, { 0x918e9b2564572e1e, 0x19fa4551d98bbaeb, 0x2081e7d691b397f1, 0xe8119e0f5019e65a }, { 0xf9e30f3035aabf0b, 0xa56caa679b19414c, 0xbb357584db198e4c, 0x8e63e6b1c3715ae7 } }, { { 0x22100b8eeebc7314, 0x6d5d9c062c44195a, 0x8a966b4ae60f4612, 0x22fa971b5896223c }, { 0xeb3401cf4befe9c6, 0x9e5e8fd9700f25c5, 0xf4c839115703942, 0x39ad949ffe851ba }, { 0x3dd077680e4ea4fe, 0x985a6898e779d04e, 0x7dbf22b6da84f8ba, 0xfcba5e082fdb2cb8 } }, { { 0x2b6285cbb1e7411d, 0x9729382a28266f2, 0x50070a4526571403, 0x1f1446849024d504 }, { 0x46d0a28b0f97be80, 0x193af1fc33535d26, 0xea091b171bdf94e2, 0xcf0268c01f6b22ca }, { 0x4905b22db574f885, 0x60d3b0f2d1c8f0ec, 0x4832fe31ae50ff3b, 0xc296b44aeefba341 } }, { { 0xd1964aa51c972161, 0x1bbaa3c9a4ed9b18, 0x90e45faa11b1bd38, 0xf48bb300a4239341 }, { 0xf9cfae6f5280117c, 0x9a6a15cc9d83ca18, 0xb0b28eeaeba6d65b, 0x40497b28dcfac156 }, { 0xb1d24325dffca7e8, 0xdd281e32eaaa2d91, 0x7666e9fc657e1ad3, 0xa747e080107ce363 } }, { { 0x115956b0d68ce49c, 0x67f2589ed60c39e5, 0xe132de471e067b2f, 0xc81399d3a73cbbca }, { 0x38d51d2030693fa3, 0xf629615620ebced1, 0x948209f1bf866c93, 0x701642399b444417 }, { 0xfa246addaeb67a4b, 0x9c61cdcbcd009ee6, 0x820e6dd3f5ac6de8, 0x4530d585af84da43 } } }, { { { 0x3467c1d81c7561bd, 0x9a226320fea50362, 0x27226c45186f6a40, 0xef51512ddf2b8fa7 }, { 0x1c1d8dd26d2add49, 0xbf8a5ba9ba7de857, 0x846ae3359fc0fbcd, 0xdd74030fb9c5b041 }, { 0x7e3f5dd3550bb40e, 0xe20e524e54b93af8, 0x889ea546a9167aae, 0x873abe1e5cadc25c } }, { { 0xe14c205978714a77, 0x74177528c8c8071e, 0xb1cbf82785071ffe, 0x81aba74b0d20a938 }, { 0xf0ac1cc196cdc5b8, 0x87921a75fbaa2756, 0xd6a516757cd01a0f, 0xbaefaefeb3cb0abc }, { 0x848ac76db43fc885, 0x9f2156053da2de89, 0x5b647ff69caaea9a, 0x7857e61dc3c52cba } }, { { 0x5edae41825246ce5, 0xce1d3a99ef5b7893, 0x111915261cf22bec, 0x4484e6ae86dd001 }, { 0xeb518addbf490960, 0xb4e2ead7a341df94, 0x418e3fbc77416e20, 0xaf554c2cc06c76d }, { 0xfd79605590d89054, 0x1d9d690434744336, 0x9918e312bf0de7db, 0xf157895510cae476 } }, { { 0x2ea7a1b2a81a1313, 0x521c91d4e7348a9b, 0x5c5f8d28b64f3570, 0x2e20d775ec4ba7d }, { 0xdcdb18f0cda711e2, 0x1a60f72f81881365, 0xe7f2c81eb66bda50, 0x95117fd139de6f51 }, { 0x4d57eef11bfa62a7, 0x4d24abbbab748063, 0x18222a2b3ebfddb8, 0x279269f3c8cfaaf6 } }, { { 0x76add189fb8c470e, 0x4ff991d063e0f983, 0xff3013e5f11c26cc, 0xf8b39317fd6325a2 }, { 0xad2aa2d4daeb7a97, 0x4084ae095bda7b54, 0xd15b5ef73e440d57, 0x920180fcd69b8348 }, { 0x7ea924076aebbe56, 0x2cbf65e8555bf9cf, 0x5015c44ef5afdd04, 0x5f36142a086cabf0 } }, { { 0xef4f2d9dda7cd2de, 0xc5d3d1984a012f4c, 0xf135dffeea4e3056, 0x4bd5c61355b6fb57 }, { 0xf2ff1283513b5aa3, 0x96d7d04930b5a222, 0x121b276f2e7654d4, 0x78d6cc14cb2975e9 }, { 0x7a5f4a189b456140, 0xc1745a47d491cd66, 0x48b17d4a7201f264, 0xa27fe580cb46f52e } }, { { 0x2725b38b37b25515, 0x7cdc9c9958ef57a, 0xb5b8fb644512983e, 0x60754f9004167161 }, { 0x462453f3094321c9, 0x9e399429828f0869, 0xc7c0e3ccd75a1a8b, 0x2ebeeb3020aada43 }, { 0x314c6777d207ca7a, 0x43114eed942a1da5, 0xb0c8fa6b086836a9, 0xfaf66324356e94f3 } }, { { 0xaa89ecbae99972d9, 0x1e9ed71035797f20, 0x8d24681010741a99, 0xff85d008a8f8da9f }, { 0x245c8aa221e1f7a8, 0x1dbaa323d019956c, 0xbc666cf4636b9fe7, 0x7ae58938d24b593a }, { 0xe658160a9cfd3378, 0xa0427e9e17ed9c17, 0x761a32d8f78cb053, 0xe7dfb9e789efe71b } }, { { 0x93eb13e7d073474c, 0xe644453ff066865, 0x6aecad5f8d5d5e1a, 0x8f4d6f2914dcbbc9 }, { 0xde33dbea8914554d, 0xb19ab3707ea3567a, 0xfb093da98b100140, 0xcdf7c17671640f72 }, { 0x78f7645d6f8ff636, 0xc99115119dbd73c3, 0x22e5f9a05f22366e, 0x6dc7cb9ae95178cf } }, { { 0xc0686c60265496fc, 0x1ff06e375ff82e6f, 0x74989bfd7cf96034, 0x3f4086a33d8f77ef }, { 0xcd43b9ca639ba446, 0xcd27f1e1bbbfa472, 0xf6a38ad99c72d6f9, 0xb97038214b183c39 }, { 0xf526e71304ad65f5, 0xe1a26b6aabc0b1e4, 0x9bf4d67e94920e35, 0x47bbb6a8c1f6a31f } }, { { 0x46309cc3df440f65, 0x44a51bcad8d770e8, 0xc998ca1af6a0627f, 0x763481d705620c9f }, { 0x5d5c9ca8fbb3e1e3, 0x18586ff0b3223ee2, 0x9b87e7aefb1591de, 0x8311c6f3c0231153 }, { 0x77e842f24c19d6bc, 0x62f967cfb5d290ab, 0xc85a847fd5bdd797, 0x868c3ee6f6a96533 } }, { { 0xf3c106b30e3dbf31, 0x3f5bb044ba1715b4, 0x105590bef80f0242, 0xc635835f0f5abc76 }, { 0x1dfd50214df97de2, 0xb5c03a580216b484, 0xa739fdce44894f26, 0xd6e0ce86773f1fe }, { 0x956d539093f19483, 0xb54f2b3b36ed4cfa, 0x22de7bd18a7831a2, 0x3c43553fdbfcda56 } }, { { 0x4b9b6a797960c234, 0x182a11cf84956e9a, 0x7540ab603195e43d, 0xa2e86275b36ac73b }, { 0x5e384e418a9f559c, 0x94e1af8d721202e2, 0x9b908ce817d058f1, 0x536235d164c80e6 }, { 0x1540379576cc4d5c, 0x62c7ee1180bd1556, 0x616165818d69eb02, 0xd3693085b2706748 } }, { { 0x5603a6949ed984d3, 0xd00f67209310486f, 0x429c07077241e93c, 0xca6d4c7f2b05b628 }, { 0xe47db95a997de9c8, 0xcac305246547da76, 0x5c7f2d7786c010b0, 0xf75b6213d7d4bfac }, { 0x9ea555b9b41e69d0, 0xa3c490319521b4b7, 0x71cccfc80e5a1be1, 0x904c81f2bfbe5b21 } }, { { 0x8ba57bf6028f1eb, 0xbb26a72d4f5d273c, 0x8a61ba57d4a42856, 0xf371a17ff2e0bebf }, { 0x4934af877e30b453, 0x31133504b1e2254f, 0x4104555ec166cc4e, 0x4344a7a225d20a96 }, { 0x5abbbd93556399a0, 0x2204fbd251fa9e31, 0x77729cb2a195a759, 0x66da332af97b1f5f } } }, { { { 0xd3a2b4e6cf8bed95, 0xc824d410ae37d211, 0x541f5e1a6d44f013, 0x228751fda408518e }, { 0x9253d31225c97d91, 0x522131638df4d9d7, 0xe49a9fb1606af917, 0x443bc37293e84485 }, { 0x9cb2521d38666b0a, 0xd7fa3137504d36b2, 0xad202af0b1b5a7b3, 0xd71a8acddba5ec00 } }, { { 0xb259f09c8cf9ba26, 0x92df1e5fdf880bca, 0x5627a34e4dcc4e50, 0xea156b9cf37d8f19 }, { 0x268c5856a397dd24, 0x4e27aac146393355, 0x960e584bfce08f43, 0x315fc77f851513 }, { 0x7c5890aa7b82fd80, 0x75d926e2b9e46c07, 0x86be7de2239fa365, 0xd9ee72b0d01a72b1 } }, { { 0xfa5167f10f2f2495, 0xe893da1e332e6424, 0x643a08a8ccbf2b3b, 0xe4a17e451e4c5d70 }, { 0xa22aadb0988db0a, 0x160c5659c9f23ab5, 0xae17ace6c13fab4e, 0x972759273d8dcdaa }, { 0x43095f1e638cb012, 0xa059351c6c0070f2, 0x664991a1216f946c, 0x1fc150c17bc172a6 } }, { { 0x4648f54d83c132e6, 0x6bd1c0ac8119ab71, 0x41f810600d137a58, 0x5f61463a46993f96 }, { 0x7aa673c614aa2dc0, 0x35fe1ed9fae5deab, 0xdc711e56b353d54d, 0xf7d957c3ad601f9f }, { 0x8d6a6ad8416126d1, 0x8821f6ac5ac6bfd2, 0x2d525bd804275621, 0xdecbd6cff55485cc } }, { { 0x4a921a8d8e07b717, 0x537900ffc51f265c, 0xa699eae92de2a469, 0xf42c12e4da944045 }, { 0xf5901e05d4527807, 0x3ef05f3a74f7ad0, 0x68cee2ab7f49a0b4, 0xe67c07cd7f5594d9 }, { 0x9eb7cf519655b10a, 0x5d2f333ef69b2828, 0x7a6e754d580b0930, 0xdadfd1b7d2e59539 } }, { { 0x13ece76b86d5a633, 0x96d1c55a9506750e, 0x835d0b583372282b, 0xb76a428a85bb4f4f }, { 0x57e97bd3908f36a7, 0xf049c1b6d1b343cf, 0x837409f09ef4694c, 0x390a5a7e61a6985d }, { 0xe6438acae59aa8e4, 0x3d88c531c5cdd3df, 0x3408611241658e7c, 0x70d1e5193a0e90ff } }, { { 0x53d8690c840d9df4, 0x489ba0de8164da9c, 0x35f2e512226468da, 0x7a4559b095a8ac79 }, { 0xa40d84e0b03004d2, 0xc00cd3cc94231dbb, 0x29c194287f7d04cb, 0xb190d55a852124fd }, { 0x641069eee779d84a, 0xa0b0f6f1f9e99f25, 0xcdd271fdfa1ee13e, 0x840b2e16c6e30ddb } }, { { 0x82dec62608860915, 0xddd6b9d98f4e8059, 0x67c58351ab701207, 0x7567fa45641f4cbf }, { 0xd8d27e4987527f73, 0x3f903110503fa339, 0x8c1dd5922b44c265, 0xac32defe7e3fd100 }, { 0xa50a417beb5e0689, 0x1f4c97802225534, 0xaa33b267b2563f4, 0x950f2f4881019a6b } }, { { 0xc78fa3f4e7918ab6, 0x611ec69eca3228cb, 0xf435faedbe390448, 0x6b0abeb3922f8273 }, { 0x8656ebcc2e5e68f2, 0x5e9cd06f35227198, 0x9d28f57840aea38d, 0x16af621a18b7faa1 }, { 0x7b47477e30a718ca, 0xf4bc1690a5d81880, 0x6f7fefd86e9e7564, 0x2f7a3e5492a72cdc } }, { { 0x7727d88b70384342, 0xe787ebf728bb538d, 0x1efddac30eb5b595, 0x62f182f42cd171c8 }, { 0x63aa212f079faefb, 0x3aefb3bb3b3e8494, 0xa53a23d6e64abc39, 0x57ab4526e72025ea }, { 0x70d02bd8021babee, 0x2f83bd0329789f9f, 0x39f859a4632b6564, 0xa7a0cb53cddcf97f } }, { { 0x2f1919e25db7fa8f, 0x55bf1be76a6b14ad, 0x3020ada9691ce49, 0xae47a5295bcb8c1c }, { 0xc1b6591835fcc4a8, 0x9c42ab50e2dc4b0b, 0xd114a1c1f3925e58, 0xbea649560e3a2a2d }, { 0xbca4f051401507ee, 0xc900b77a2cfd0bd0, 0x5a6c86c000e5002d, 0x1d01915dd8f30593 } }, { { 0x12db750978bc3e3b, 0xbe9009c915563fe, 0xf4e959b3207669c9, 0x63c66ea31a32719c }, { 0xa89eb1b3c409f635, 0xe91dfadd482619c6, 0x9430342889f961eb, 0x2ab55a330b54cdbb }, { 0xcd2ea8eeab5e597e, 0xb67b4531ad9d7fcc, 0x9dffcf5f92759048, 0x9d9350587e92d2eb } }, { { 0x3b5baefa7bd62d6c, 0x31ea2f5350617ded, 0x1e1de42c22f7ccbb, 0xc36eae1f15debd3c }, { 0xdff7ee6c345961a1, 0x1362f198f7f5d276, 0x718d6c728bda2530, 0xbdfc0b6c8ed4ef0f }, { 0xedafefed6f352993, 0x7577fd40ff077349, 0xf2e7eedd8baabf6a, 0xd69424f503281fbe } }, { { 0x71b8f996381a2a2e, 0xa30800334ce084db, 0xbe973a9c77515d36, 0xf540cac9eb8e71ae }, { 0x562e9993ca4438a1, 0xf3048fab8b9291, 0x59444dfe3f49c1a2, 0x9ce9a4d831010f03 }, { 0x170159f1a485db52, 0x3aca85ae1717bfab, 0x15e79fb60277f7cd, 0x7db64c65677769e2 } }, { { 0xdac3928ebe2ed0b7, 0x2e8c24c8f6bbe5ae, 0xddc18e3a88a77d0e, 0xfb5694ccbd72d154 }, { 0xb3b6f2befeb2916a, 0x1136ea040fdea85d, 0xd446e58ee376923e, 0xc4ec34089bd780b5 }, { 0xabc7e9ab5e2487c, 0x21a7b0a9c7bf76f8, 0xa507486cfe755238, 0x96785239e1655245 } } }, { { { 0xa926792fd07ef143, 0xdef7de7a0b946e0b, 0xddae705632eed830, 0xfcd689d4814563c3 }, { 0xcb1896041b4046a, 0x4d0ba866dc6e1d5d, 0xc6eb225ca3a4e761, 0xae96a74adf8359f8 }, { 0xfd4b479540fb128c, 0x560bdc91ae65c76f, 0x70a62dd8994afebd, 0xb7f7c8f412282f14 } }, { { 0x3db6945726ab7e4b, 0x79980289de446a51, 0xfe5bba2911cdc13b, 0x777758b96de797ae }, { 0xf9cce21ebb3a9fff, 0x463e5f45f784e5a8, 0x809f084c53b3d293, 0x65259ef541591666 }, { 0x8e6d66f62fb69d7f, 0x8d4409189d85ebb4, 0xc7d92bde1f75dd2e, 0xd4f35b241acfecfb } }, { { 0x924bd225cae3f72d, 0xc2f990bae2bf510e, 0x53a1e3a93ab8c180, 0x3cb73d6959ab2120 }, { 0x942e76b99d4245a, 0xe457ddbf4e49d7d1, 0x787566a0bd2adf01, 0x5ec929f1944c2cf5 }, { 0x3ac16bfc6e891842, 0x618ae68657ddf14a, 0x4275e3b5c1449e58, 0x8b5aba3becc6ea57 } }, { { 0x4ebb4a85c0d8a223, 0x35271fcaf3854921, 0x936b2f8c635d862b, 0xec99e873af46fa4f }, { 0xc275f1b6bc3000d, 0x7f08c092ea9123f5, 0xa772ebfc562aa467, 0x481e00034ea0d035 }, { 0x70c65bb6c60e5e87, 0x98404fca21c69b6c, 0x3394291d00a2b948, 0xc308d502b2b6d58b } }, { { 0x7da919080f234368, 0x136c47587de12b15, 0x8136e1562539516f, 0x79ad53dd454ed358 }, { 0x4bdb9ac3685c0a7, 0xcc9c9df3ee98eeb3, 0x4a151782f684e4da, 0xedf71fba6f700d37 }, { 0xc75c99a37121782, 0x65ce07ab492e2935, 0x24c8957b2ab74be6, 0x5fff918984cd1be8 } }, { { 0x57538c33927a989f, 0x1c903f755914003, 0xc56c3d4498a3f31f, 0x3dd9ddf4f522d24 }, { 0xac8653c50a2c77a4, 0xc7e653285b4ff5fb, 0xb61d913c09b18075, 0x51d7bce468d88a3d }, { 0x2b05a63e416fe838, 0x8d994b74a4d166, 0x35b71ca27dc66596, 0xb4e166fe614f2177 } }, { { 0xf0e13f29abef26ab, 0xc50873cec235a233, 0x3b155088de01ab85, 0x6c878f55321f7723 }, { 0x1c2c385aae724c94, 0xc58065cc7895b449, 0x2e8b843e5e6586fc, 0xcf8097793eb6187f }, { 0xeb2bac04350b62a7, 0xf43f1921dca41f49, 0x2f3a88ad96b7e6cd, 0x1d7ee3d32cd255a3 } }, { { 0xc2c76dfea7a7f390, 0xb7dc02e8c133bad1, 0xc934723b3191a397, 0xfc6d2b7fc3de6ab2 }, { 0x632c025366141ba2, 0xd2b88fc04c9e72f0, 0x7150eefd6e9d2124, 0x304cd66c0524de8e }, { 0xf67d8cd50dcad6c, 0x77f59bb1f1415e9e, 0xea439a304ec29b85, 0x76d6491bcdb19438 } }, { { 0x642a77763ee661a1, 0xdc402d8dbd48d524, 0x63edb51d1e5fd1d1, 0x6c93dbea661fd2c1 }, { 0xd2f7f7d1d98c9153, 0xe3874dc2c8073aba, 0x671d4c6082743158, 0x82052dd601e689f3 }, { 0xcc49c53f03085925, 0x3355eefe9574f9d1, 0x6af25a19363e2aac, 0x6bef05b6dd52b776 } }, { { 0x6ce1d702b193aba8, 0x33db3233c45fd7ad, 0x3036bf0da2cd339b, 0x44d3c1c9bc75ba3c }, { 0x1c3ccec9b36b4365, 0x43d2740502b61926, 0x557f4b39d79b8ced, 0x15eddc690353e0bc }, { 0x484954dbaf2093d0, 0x18bc62c6bce853b, 0xb3a446560dc1fb2a, 0x3fde0700bf64fe9c } }, { { 0xb859350447b5d3be, 0xea3f9f3362da9c1f, 0x6f1aa86b3358c21e, 0xde5eaa01fca0731b }, { 0x914eae8fc6280579, 0x58492c581733ff83, 0xc8d18f47deac5855, 0x6f2e8e18b8e1d74a }, { 0xecee70192defef0, 0xa1a5573a58ff48b8, 0x7e629d4622c202fa, 0xeba8a226e90b23dc } }, { { 0x9a552dcffb9ceb1d, 0x1f656df1348238e6, 0xd97f566331a89724, 0xdb07e987cefe3f1e }, { 0x648e37a37bfcf71d, 0x246ce0f37f979f7c, 0xb52f8414b2ef1c47, 0x1f05cb59fe109243 }, { 0x2ebb274238d40e3e, 0xb60bd2100486a1af, 0xe246c2988a3498a0, 0xbc2804a3dc90d93b } }, { { 0x7cbaf86188b71cb2, 0x91ece1483d4f82b6, 0x54a1a8fada3d4079, 0x82fb2a6a0d7cba99 }, { 0xd5061e493fa5321e, 0xad55b3d0f0bbc358, 0xddbada0e0003aa47, 0xf126e74ff7a65555 }, { 0xaa110ffcfe48c53a, 0xeff25429fe2feb37, 0xd47c42f223aea539, 0x366f0b7d2a810bfc } }, { { 0x6f9de3a579c3050e, 0x523c7fa6bd68d18f, 0x21824e5b9d60033, 0x4cb9b56fdddee5ed }, { 0xf352738dff12edc6, 0xe48cf48ee6f0b731, 0xf566107cd2fd443c, 0x2c3ac977299534a4 }, { 0x71311537cee12ddb, 0x6eb0397d35c86ebe, 0xddf7b3842728049e, 0xd39731984ac56be4 } }, { { 0xb7cd5543741d8aa8, 0x6d0c385ef7ae4c27, 0xfc483d28624444e1, 0xd5fcfac54ce7f251 }, { 0x8b28d9c4cc6208b0, 0xcd470a4ffd6250, 0xcf9415bd686486e8, 0x5d3e4b067c30e46b }, { 0x8752aadae455913c, 0x19591c0f9c6cdb88, 0xb4d7eee49e75e6cd, 0xb0204c7caf9721a } } }, { { { 0xd524f086173a3a4e, 0xdf693b8bd7959737, 0x172090484d51d878, 0x27dfbdd412f4ddb7 }, { 0x4733ba36ffab1d7, 0x488eb883cba3dad, 0x16121dfe21bee31c, 0xb23d5698ef155b45 }, { 0xceabda0741d84890, 0x1a7907978622dd02, 0x86036211341a9b01, 0x691fbcc18106d515 } }, { { 0x850f2554ef10bb62, 0xcc7dbfdb02ba64c9, 0x16b1df27f1f21b74, 0xc1612b0fb712e0d4 }, { 0x205208461a06146f, 0xfada3532c11d50d7, 0x703fb832bb439b37, 0x2b433e9314e72f61 }, { 0x1bd2979645b0e52c, 0x8b522f1823855102, 0xc4e10a277021a855, 0x3381d8f9662c1d41 } }, { { 0xef1fc7275a77950a, 0x8ea5f996ecdaa76d, 0xdcb62376ad8c07d1, 0xeae5a8fa8437eb16 }, { 0x1ccf84a148dde559, 0x74120d94b168587b, 0xdf974133c19a7ac5, 0xffe1c4fdae762833 }, { 0xe4b47689bf86829e, 0xd925540598358a66, 0x211e03e649bbe7c0, 0x4e83d54562af1e6d } }, { { 0x29face72843b29e6, 0xa8388d17d6356a73, 0xd3db11aea1dac4bd, 0xf6f2e91fc80ab98e }, { 0xa10a83ef0aa63dd7, 0x90d53bb6718a0e4e, 0x4656f7823bc08a23, 0x92fbce3e094ea759 }, { 0x8878a38fca2d029e, 0xfbc15a13ae0bbeed, 0x9296f11b780346c, 0xb64461340cb181a9 } }, { { 0xbeba913ba239d40e, 0x62875a640dd6cdfa, 0xfeb68481788f0393, 0x432687faf2e4b6c3 }, { 0x7ec063020bee6384, 0xfccd408e70496dfd, 0x20cdf839ca329ca5, 0x14b980d6861bc405 }, { 0x5d7521740ca1f6bb, 0xf5dd0e03def3aca1, 0x92f7140350f46451, 0x7e96da5d9e83cbbd } }, { { 0xefdfa18841c63079, 0x3d3d304744b5aa71, 0xcc6649776763add3, 0x44fdb1aeab35aa20 }, { 0x3f31ac86d9a3718f, 0x9355fb4b1e754437, 0x5b46b6d32f6a717c, 0xbd270fa478c5c150 }, { 0x286fd665635a84b7, 0x2fab98a48134941b, 0xd7fec7c14692e19e, 0x1211329b301cc6f5 } }, { { 0x6202bbb422fe6b06, 0x388180c928d04e3, 0xeb6b5d9d2ca873ac, 0x557eba21fe5072cd }, { 0xbc227f14ebb64af8, 0xcefa2bf27a0e2aa3, 0xd224825a2c960709, 0xbb183e1c762f9925 }, { 0xa583946b3830aa05, 0x1f203789b4eefb89, 0x7800b3b50819b772, 0x9f133847190bd54c } }, { { 0x9b92c07529b5ed56, 0x89ef953abbed45bb, 0x878495eedfc939c9, 0x1143f920f96d2437 }, { 0x8b27704a879e441d, 0x2aada32b01400dc6, 0xd0c709e9b2f18f2c, 0x3793935e6fa1cd2c }, { 0xf604f6f251efc5d5, 0xaae290ee770599f1, 0x4ae41527bd5963e4, 0xb0e796d6d7650d31 } }, { { 0x12d49438fe1a566a, 0xf59acb90e22077c4, 0x42a9c930e36bb5da, 0x18ecf778fd0a871f }, { 0xbd639460ab09152c, 0x29f86babdd468aa1, 0x31bb5b4878dd6eb6, 0xd3d99ba1971f2bad }, { 0x1c8bf89f6c475106, 0xf8cb9c5858f85f8e, 0x773f1d0365765088, 0x65c8cfa1ca95832a } }, { { 0xbbdace54076697d6, 0x7600225f1f1df53f, 0xf3da2c170bed4ec4, 0x5ea08f107fb7c599 }, { 0xd748d6b69aa0b9da, 0xf87cbceff4bb096, 0x68d9acf857016456, 0x43095de41139ed77 }, { 0x86392c93ab653b74, 0x3a4d365180e49245, 0xa25e35884e447791, 0x5615be38bdbdb0aa } }, { { 0x1d3aa4971971734b, 0xe211bfc31a74bec7, 0x30335d61c20ab340, 0x5831e41762adeffb }, { 0x823d695a5ed7a0, 0x890e73057a3c6e52, 0xa38e9c34b141886c, 0x81dfd8cef47b392f }, { 0x2b62659f9da2d8cb, 0x35b8a951079f31ed, 0xe5bf984586ab25a3, 0xa338e1b6462a3d36 } }, { { 0x422b86eee81b1427, 0x6f1c66e895f115a8, 0xc52c78a938e33c17, 0xbe2b6fd07c64ad05 }, { 0x2534f9afc27a5bb7, 0x12f0b22cd4492edf, 0x47a7d72b2480556f, 0x2702fa01f0214e11 }, { 0xdeaa54810532ff5f, 0xe3895aa065aeb4e4, 0xcc57af8268d2b507, 0xf7a079a6744bde9f } }, { { 0x70aad6c6576ee6b9, 0x3d09f2b22bd056bf, 0xc640604fe4df72f3, 0x7bc7ba50ef98c455 }, { 0x28e9ec1ba356f683, 0x207b4220c528bf5b, 0x343c51adce41c7d6, 0xf901e895acb3108f }, { 0x63aaf303aaa50ffe, 0x18579a91fb9ef247, 0xe05236738aa2be71, 0x6b9c42a49e824bc1 } }, { { 0xea5e6f32100a3df0, 0xd98355f822ee236d, 0x4b1bb5ab81e5596, 0xddac6914f9a9dd4c }, { 0x67d7277ff2bccc4d, 0xa97d22a1f9adddd3, 0xb2dfa114f9f0660e, 0x74c53f8af084e691 }, { 0xd6a500220badd92, 0x11b28a3e3c01870e, 0xc77d171185e278f4, 0x2990642ffa8995c3 } }, { { 0x7f5d1c7ce7160e1d, 0x9e726e23a18dc295, 0x60a4dae45bd6d62b, 0x8991de214a7dd447 }, { 0x3cd5eb570d0307e0, 0x68afd40ba3085a2a, 0x77ebb14e45d3d561, 0xf78fe22c0cc2a263 }, { 0x208df5105382e011, 0xf7955d05c62e43fa, 0xd9125c1157511176, 0x49d3d124ab35c1a3 } } }, { { { 0x263021ef3c7cf5fd, 0x42ad7a8122e1014d, 0xafee774520167a04, 0xd4eea0d95f44b0f5 }, { 0x8d0ff3cc2adb89d5, 0xfb71907a3a975381, 0x2e6ed222c419d284, 0xbff4e321a56c7b31 }, { 0x56272a812893817b, 0xb6a08cf6d732b422, 0x9350b3fe1a94e5af, 0x3976cdd029165160 } }, { { 0xa113c43048337b86, 0x5a429ecdaf2691f9, 0x89e4507cc1632c99, 0xbb327ef223b048d3 }, { 0xbaf99a6d5d720a0c, 0x369cf87d2ef69397, 0x1c3029b483b8beea, 0x36bfaa20e19cae39 }, { 0xecc4f5aa81ab3f4c, 0x4631cfb39f9b28ac, 0x9d91c4e5094f2c6e, 0xe698ef1d2676e67f } }, { { 0xdc076b8a02d97545, 0xfb80960634bcec51, 0x92f1d043c8bf4d07, 0x1650750f34ef6d87 }, { 0x6688fc7aede35cf7, 0xe1e5346428cb55b1, 0x9d0393e6bafe25f9, 0x5dfbc03672bf8767 }, { 0xd772c048edded119, 0xec3fe213160dfa03, 0x7a36f03b025bf406, 0x20329bcc47e92584 } }, { { 0x1631e948f771a14a, 0xec79e0c27ca0d8ff, 0xf16b8ea878693bcb, 0x3e1bd305415ff0c8 }, { 0xe12293bc93807ce1, 0x30c28fdfb6ed3424, 0x707c7f93fb7b5ab9, 0x1397db5c0837d6a7 }, { 0x356c3e1b3a8615ba, 0x1726d3fb54725db7, 0xfa5415981207b834, 0x29252bc2085f25c8 } }, { { 0x66b62a9d688e70e8, 0x444044dff08eaf8d, 0x2074c239b8684d16, 0xd9ec05edb5f13c7f }, { 0x512866cb38ad6a6d, 0xc6668e2a2cd21951, 0x6a8e1c8b4fe7fb10, 0x4031364d71f67c75 }, { 0x866e2fa6b933f911, 0xaf08a1be63d64dc2, 0xc17456ade5f3f64c, 0xe39b8dc2660c05d4 } }, { { 0xe5561d108ba2b626, 0x460d02f203a532c8, 0xbb6e624f95b2b0d3, 0xcccd568c6573c92b }, { 0xe8efc80917c60c62, 0xdacce9995cf89669, 0x4fd66c6815ad2217, 0xddc345ca9cb4eeac }, { 0x4ac165e883f6938e, 0xb94edabe692a26be, 0xf5b39efe18667324, 0x924ae3eaea8b8e5d } }, { { 0xe47f351144bef020, 0xbc8125c128156ce9, 0x8aabe9d57b396df0, 0x110586585e79a207 }, { 0x44aa1781a7bf2515, 0xc133ca26b2379f3, 0xf3ded8f7c17bac4e, 0x6305f04e396c6314 }, { 0x517caae7bcc99e84, 0x28dbbceb639f78f5, 0x949d0acb7a87059, 0x6b3d1971bc9695fd } }, { { 0x6d7941ff5eb0ec5a, 0x1548c780fe525887, 0xda9d84d3c22c6bb0, 0x3d466f76617df9f1 }, { 0xd30f520c76150161, 0xf0845b905e2343b5, 0x31fb15e2934a783, 0xbd2e9bfbbdfc7878 }, { 0xeea18d1265ede77f, 0x1e1ea15cd9af045e, 0x817d2afad29c09a0, 0x3ef3c0884bd785c9 } }, { { 0xa0ce685deff4c4a4, 0xa6be8143a6a4622, 0x3d492330b44e2b62, 0x7fa3577eac6edbff }, { 0x2983ab6b19ac170e, 0x8202fb33398abad0, 0xbd5b5452d9f1080e, 0xec9a5f68568e3b60 }, { 0xf3a0a4f3d62b5456, 0xf13b01c580beb28f, 0xe5ca62ba5ed78eaf, 0x4ea5036ae255751c } }, { { 0xbd1654c22d4134eb, 0x9265103171ee6c0e, 0x735feb61f73c5043, 0x891a87c549e4f183 }, { 0x51ba721bb1ffbaa5, 0xcc163cf82ef86058, 0x96919f2cf209a11, 0x65313b83f9ec737 }, { 0xe0fe33cc30290081, 0xd241e9ef8a03a3fb, 0x27cd098d70a7ba98, 0xa0405193c0d19391 } }, { { 0x6fb3c621f25c2096, 0x7e66d9fa829a5ec5, 0xb3cc533b163ebb00, 0x2683e8d860a4968b }, { 0x4aecad66346475a2, 0x3d4f42a33a79bba, 0x4a29f5cc9e93971f, 0xa47bf9aad8a5561d }, { 0x498110a670941bbe, 0x1bcb0535b71983e2, 0x51c9f1d7ba374023, 0xe2dc9a5ecd47d96d } }, { { 0xfd54359daae56d48, 0xa2d0022eee584dd1, 0xf36531308b15c713, 0xd55ed306290ac57d }, { 0xbfd014b1c219e2c7, 0x2b7ecb430f052c8d, 0x4dd6b150c70eb0d6, 0x6e3f8d67ac34ee14 }, { 0xaaeb32f76af4755, 0x67ddf59fadad5873, 0xee4d1cd598432bd2, 0x9f7726564e2cfd5f } }, { { 0x78106d7659b24711, 0x1fb9d45ad230bae7, 0x559053352f57f0b1, 0x28ac68345a1d9bdf }, { 0x173dfc609a4210d6, 0xa26d3fa34df757be, 0x2b75af6a8744a45, 0xb76b77866eb2e373 }, { 0xbbaa752672003ca2, 0x31b3a75837f01fea, 0xdd1225114cf4666b, 0xce104f09f410f23f } }, { { 0x7bc0a67d866be5cd, 0xea813400f42f33ef, 0xc196ed8aeeb95e14, 0xad49bb93c305b69e }, { 0x4418b7b705123f31, 0x14b43d54c3adf3df, 0xbbc20bb003b58cf, 0x90b319e7d58a18ed }, { 0xacd112e954f739d2, 0xd226d413e55d6183, 0x1eb56a671f1f8fb3, 0x2549566199b04cc1 } }, { { 0x388e863ec35b75db, 0x75d36a2513467f1e, 0x1372273f846b6083, 0xe849350ee97993b0 }, { 0x2c939a600deb8aa7, 0x64aa1da508cb0d31, 0xf4c8966d507f37b3, 0x7098e9de5dff091e }, { 0x1be956bb735e2a42, 0x348088d82e147468, 0x89cfb9d03767a524, 0xcba18f31044a4f09 } } }, { { { 0xa974077605abfc8a, 0xad966dfade7b520b, 0xbcc8878a16ebf6cc, 0x797da15d80dd6957 }, { 0x20959288ea68e699, 0x7eb278fb3fa257d1, 0xe2e04a09cab65648, 0x9f1e4ea89f8e710d }, { 0x12b27a9f97e3781b, 0x83004c8c2c1673ee, 0xdb4c911390d07962, 0x18619977cbcc7b3b } }, { { 0x9222bb3711e45426, 0x13c1207adb63bbb, 0x37d4bf722668fa9f, 0x561c931fe3f2620b }, { 0xccea875a87556102, 0x88e7ac1dc6da16a, 0xf8a5390e57630a2b, 0xe15100bb9ae5006f }, { 0x95292ef65237a2ea, 0x5e551501d4fef8a4, 0xc29aef4cc9045dfc, 0xaabdd8dff092e9a2 } }, { { 0xcded52fa4ec54efb, 0x54f4f3095a8fda73, 0x1dc546eb8947c97e, 0x8b97570b8783cd3e }, { 0xeb5e78483d7e94d2, 0xd686046c4b881bc1, 0xd3f852002a13a1f4, 0x318b506f8e832e86 }, { 0xa4a058c08fb3685a, 0x8f08a924e896be12, 0xb38ebfb84482ac52, 0x58e2f5a2c9bf0da3 } }, { { 0x2dcdabaa2a3bf101, 0x36602132ca43b40e, 0x857c046e014270d0, 0xf11f54a53e6ac8d4 }, { 0x564cfdd0c3f58f0b, 0x2b488572ebef00e, 0x96a991b67a64c660, 0x934a8a27246f0a31 }, { 0x58aa52f6406a7063, 0xb70f264ab5b5db1, 0x65fd45b6966d9fef, 0x3ad2d19cccacad9f } }, { { 0x6ef16116188a4f50, 0x2eabd3953cae9422, 0xd96bbab0f7efd0ab, 0xe07e0aa490241134 }, { 0x95b79ffb7ddb6666, 0xc7b288b1b5404911, 0x5b8d8027912e99e4, 0x51b1d45854d77634 }, { 0xa5ab025fd7c5cf2d, 0x1907df29432c4b31, 0xde54304a76ceb3f8, 0x875176e8a4eedef6 } }, { { 0x9513f29b916ae677, 0xc2b18e75530668e7, 0x2f24d12d2e51fea2, 0x6cf6271533bb3194 }, { 0xef04fc966a075a45, 0x96d5da01d6155249, 0xa0c2c8863b789fe8, 0xa1f428204d0b4d63 }, { 0x540465cabfade37f, 0x24cb9815ab137771, 0x55b916c2168a8029, 0x9f051c563534953b } }, { { 0x1b299b3e82cb353e, 0x29266887abd98348, 0x2be362216c9d9399, 0x21e7bc5f0c5bd19a }, { 0x919aa3ba9a318aa, 0x48edf010c45d6600, 0x8a197493fec40ecf, 0xb7b75b342de1e091 }, { 0xdaac85dfdf99e0bc, 0x1937ece89335cbf5, 0x3533a7988018af6a, 0x48e38a890d51f8a3 } }, { { 0x8b26d8e9ae556165, 0x858a1fbe0e18ab70, 0x6731b47bf2dc62dd, 0x94c372aac0eba5a6 }, { 0xc95f75aa223e7d0e, 0x71529298f5846855, 0xf0ec758e8bcf3fdc, 0xd8487ceaf4b424d7 }, { 0xe23777ebe57ef294, 0x1fb05223e4af9286, 0xc233dbd2b9964032, 0xf6fec112309c8781 } }, { { 0xe586632398303cfd, 0x1115309537060b3d, 0x81cc7a2d3b5c4b0, 0x12dc044042a34096 }, { 0xf6a71b5b5cfee6e8, 0x7b6f700c1bf393e6, 0x5ae022842779af55, 0x134b19340dc3c6b9 }, { 0x1ef81c7793202982, 0x9a6c090d458115ae, 0xb2057bb8934765c0, 0xb55883a3af509583 } }, { { 0xfb9615b2a34b418a, 0x97f067710cf412b8, 0xf14022f6237b95da, 0xc35edfe0bbe6a98b }, { 0x6592285d4652b3fe, 0x1fc10e39b6e5208f, 0xe26b554d787b0b4e, 0x463e55fc053e8c69 }, { 0xdc66d384bea4a060, 0x183a49841d3d1c10, 0x565cda1c8dfe99dd, 0x39a58a0d7c8fe4db } }, { { 0x79af77765496a808, 0x3b68820a9c95f3b, 0xf841a96142da37a6, 0xd32f2a2fc7801ac }, { 0x29a1eb355d5f078, 0xfc502ff284839a5b, 0xc89ffbc78c720b19, 0x7d37acefb5aa5c99 }, { 0xa2861f6194549700, 0xad6c991dbaa7e6b, 0xe1262d6c00a09260, 0xe0adf21cc6d4b9b4 } }, { { 0x7fbb21da9f9213a2, 0xc785636e03453a30, 0xdd90e70f00b8b5ba, 0xd0f76578ea817280 }, { 0xd3eba6ebc1635709, 0xf477ae2572dcdfd4, 0xd45823b3dca978fc, 0x474edfb6931cca83 }, { 0x9a3c12cd69caafce, 0xea6be398d4f3d1b6, 0x27ce147b4695b10d, 0x8608b1cc9fb81799 } }, { { 0x1e19232126be8d2f, 0xbefe63d16691aad7, 0x4ada0afae8451dc5, 0x507cf4086be331a3 }, { 0x752039ba5e888954, 0xac746a1eae44ae78, 0x98b0908688b97fea, 0x38ad855d72fa37bc }, { 0x796130067be49fb1, 0xb8ba92d8670bad74, 0x15192b73a080f1eb, 0x8990f08e601643e0 } }, { { 0x6716d0abba181b05, 0x615a31bea9b9d8a2, 0x26e9926aefbfc898, 0x8c29b2765ce43386 }, { 0xc0ffe7f00bcae699, 0xbe64296d2cdf360b, 0x945854d25eed5a18, 0x93150409802f3003 }, { 0xcc8c6021baca2c03, 0xaf44dcecf36a96b5, 0xf9b50050ea4cf8ed, 0x93c8b3679ed1d8f5 } }, { { 0x994b31394737a82a, 0x2d1f7a28d65ae34b, 0xc8b936392e5cb9e7, 0x8a87b0265f9a4f06 }, { 0xf206470146914e1, 0x8231c79cc1d9403b, 0xaa664cc4dd6269c8, 0xf89151450bd24ed2 }, { 0x9101e9906c74eef8, 0xe160f4bd930275f0, 0x3fe0ee485c2f2ebc, 0xf5413bf6faddb862 } } }, { { { 0x6665584e083b1aca, 0x9a900bfaddca1e01, 0xc146e24eb67e3a6b, 0x2045c8da1b438f5a }, { 0x19f885658a2e2107, 0xf1bd27b2e75482a6, 0x2f1ccbe05e0b3dd5, 0x34a10be3958a18b }, { 0xa815061dc3f0b1c4, 0xa266105f2d970d65, 0xf1335d2fabfdfe3, 0x791be862605a52ee } }, { { 0xafe705afc7fddb3c, 0xe60251d4b577184d, 0xcc368eff407e8a3b, 0x61dc9d0397055c00 }, { 0x5dff7f3f353f28b1, 0xfc893c35ee758a4c, 0x8a05b48ad3492c65, 0xcef050de5d2673f5 }, { 0x17134d1d5fee6ba6, 0xb1eb33589ffc617c, 0x1f116a092ec4c730, 0xa50ba9792749cb3f } }, { { 0xc3fe2c020b65549c, 0xc61121106ebb9478, 0x96ed33a99677af0d, 0x3b3d9a028d3bc9b6 }, { 0x7bfc32e96c96495b, 0xf8c45f0c92cbe62a, 0xe3784108fc9699ec, 0x68f5dcf9eed4bb8 }, { 0x457dc389f23b6f98, 0xbe5c27f5d374ae62, 0xa560ffb3e82c1cfb, 0xf058e5e1fbda019a } }, { { 0xc49618a40f451f13, 0x166b4f47160f4cbf, 0x2d2c450dfb8f36f0, 0xa6f825d9991b9ec8 }, { 0x2329c3d9e72f3767, 0x866b9260a2b95fbe, 0xe76b69b53e8af322, 0x5d94cf868a0c1223 }, { 0xeec1ba2495d66cee, 0x3da5645156944830, 0x78a370cf54d8346e, 0x2e48171268b9cba2 } }, { { 0xe373abd64f96a602, 0x2e4ac0d2788e7221, 0x18ba13e10dad334, 0xccb5e6d1660e6fd2 }, { 0x85af08074c10feee, 0x35b99b46755038d4, 0x81f1abbf09fd461a, 0x2b1e435c863373a8 }, { 0xda8749aedf5d4c45, 0x1e3dcb0ab821ef48, 0xda6e53aedbedae58, 0xad51724dbfc33477 } }, { { 0xa6462006ff2de4e9, 0x585d7b42321b0d2, 0x386f5ccb874b473c, 0xba756de0b62ed408 }, { 0xc2364577ea4e31cf, 0x3063a5a66c0957d0, 0x23f75bafdacfc485, 0x87a2e3a74a753387 }, { 0xcb6ae0dbf23a139f, 0x3562415051777fa6, 0x663f84064bc424fe, 0x96a3519c0b6e5284 } }, { { 0x24003b0a75237f32, 0xdf95a5d4bdf0f979, 0xe42820f8f86ce677, 0xba456eaa4c65f2a1 }, { 0xe5449780842ecb5d, 0x3858b5ad9c94d815, 0x65cdf69b74e6485a, 0x279eb4f0882e952e }, { 0x4cc873f9c00e4b25, 0x69cebeec0947470, 0xecf0e9a9808e8687, 0x162c4102a274423c } }, { { 0x8bb8a2227b0f5c8f, 0x415c51b625c454c3, 0x16f17f59efc8f62, 0x803abbd6412498be }, { 0x19e98052ebb9ec1a, 0x9ed700a1eb2c1b14, 0xdd4b072418c301af, 0x369d73dc73734f7f }, { 0xf0ac6cbff3ea64a2, 0x505d565adc8d2ebf, 0x3c6e722eda57f73e, 0xc0675c3147a23f5a } }, { { 0x6699faa533d248d5, 0xdb5e60626f9e61aa, 0x1b28c46e6b9cdba5, 0x839037809e677a04 }, { 0x748f56eb8652023b, 0x17ef9ae48b64f44d, 0xcee1fce3943090f2, 0xf4233d8289ac6ac }, { 0xf91a46618ef38aab, 0x133c230f7fa9eb9e, 0x73a6d1a921619c7a, 0x278394ae20a2fb05 } }, { { 0xfd1001c1535d70b8, 0x3847d3a7ea557cbe, 0xa12c611d900c56ef, 0x6e310ad2334e096d }, { 0xb4b22082f0114efc, 0x8ba6378af6dc0e36, 0x3899667c82f36b5e, 0x73e2f94035d74beb }, { 0xee119852d053c3b0, 0xd7e8f120eb5b6d78, 0x5740efbe696d02b0, 0xac3ef59006d88fb9 } }, { { 0x158370f516c6fd5d, 0x7acfe3728b01400b, 0x9336ca5d4559ecf0, 0x1d82ce00af1b600a }, { 0x65d1370cdddd154f, 0xf95398355b8eb3fd, 0x88e3d9ff2578bdbf, 0x1b6881752eedac0e }, { 0x2db1f79a0dd5461f, 0xeeafd56b94471a31, 0x181594f29aa3441d, 0x47c32669fa138353 } }, { { 0xbd803fd36f95b1cc, 0x90c3d6cbc81ec042, 0x514200127167b6ec, 0xec80d5e372d27696 }, { 0xee9990302cd85c2b, 0xe93522d926dd94e3, 0x3acadaf9f5ab23a6, 0x4f830cb179e33be0 }, { 0xe0053e4349529298, 0x7b77df07b7ca8b87, 0x79f28ec0b863f50, 0x10b5839e381f694a } }, { { 0x1dca1d6feb3ff982, 0xbdcd2ef6e792be3b, 0x213cc3d76b74bf49, 0xd91c66ca1985a650 }, { 0x78f47d3d991321c1, 0x90c8cbf3fe535448, 0xeb0531e92105b392, 0xe78bb20b10850975 }, { 0x5d77740cdbb826df, 0x482f623829356aa3, 0x4832452a4332a234, 0xd59d8dfbe7316569 } }, { { 0x9546048b9ae89a52, 0xf68c0d274376586c, 0xddc2c733a3377d24, 0xba8da178ddbb5eae }, { 0xd2ff45870ccc200b, 0xa671f65a5257df98, 0xa83299fe9fdf2410, 0x6291a5277ae9c7fa }, { 0x9ed18dd5dc8a79e8, 0x2c01d35179b1a09f, 0x99b8144d1909ac1, 0x66fecc4c08a04d1c } }, { { 0x920818d51a11a0e8, 0x95ed18124a3f41f7, 0x848576eee3471c8, 0x8fe6593bd345d638 }, { 0x1742b4ae08b6634e, 0xf46626128008af0d, 0x505b834277fa64fd, 0x3f09911ad45c20f1 }, { 0xd3980dd241bab813, 0xba76e4fee5091738, 0x7d653e5c12849770, 0x9bd8753a7bd4a81 } } } };
mirage-crypto
2.0.2
ISC
https://github.com/mirage/mirage-crypto
git+https://github.com/mirage/mirage-crypto.git
h
mirage-crypto-2.0.2/ec/native/p384_32.h
/* Autogenerated: '../fiat-crypto/src/ExtractionOCaml/word_by_word_montgomery' --static --use-value-barrier --inline-internal p384 32 '2^384 - 2^128 - 2^96 + 2^32 - 1' */ /* curve description: p384 */ /* machine_wordsize = 32 (from "32") */ /* requested operations: (all) */ /* m = 0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffeffffffff0000000000000000ffffffff (from "2^384 - 2^128 - 2^96 + 2^32 - 1") */ /* */ /* NOTE: In addition to the bounds specified above each function, all */ /* functions synthesized for this Montgomery arithmetic require the */ /* input to be strictly less than the prime modulus (m), and also */ /* require the input to be in the unique saturated representation. */ /* All functions also ensure that these two properties are true of */ /* return values. */ /* */ /* Computed values: */ /* eval z = z[0] + (z[1] << 32) + (z[2] << 64) + (z[3] << 96) + (z[4] << 128) + (z[5] << 160) + (z[6] << 192) + (z[7] << 224) + (z[8] << 256) + (z[9] << 0x120) + (z[10] << 0x140) + (z[11] << 0x160) */ /* bytes_eval z = z[0] + (z[1] << 8) + (z[2] << 16) + (z[3] << 24) + (z[4] << 32) + (z[5] << 40) + (z[6] << 48) + (z[7] << 56) + (z[8] << 64) + (z[9] << 72) + (z[10] << 80) + (z[11] << 88) + (z[12] << 96) + (z[13] << 104) + (z[14] << 112) + (z[15] << 120) + (z[16] << 128) + (z[17] << 136) + (z[18] << 144) + (z[19] << 152) + (z[20] << 160) + (z[21] << 168) + (z[22] << 176) + (z[23] << 184) + (z[24] << 192) + (z[25] << 200) + (z[26] << 208) + (z[27] << 216) + (z[28] << 224) + (z[29] << 232) + (z[30] << 240) + (z[31] << 248) + (z[32] << 256) + (z[33] << 0x108) + (z[34] << 0x110) + (z[35] << 0x118) + (z[36] << 0x120) + (z[37] << 0x128) + (z[38] << 0x130) + (z[39] << 0x138) + (z[40] << 0x140) + (z[41] << 0x148) + (z[42] << 0x150) + (z[43] << 0x158) + (z[44] << 0x160) + (z[45] << 0x168) + (z[46] << 0x170) + (z[47] << 0x178) */ /* twos_complement_eval z = let x1 := z[0] + (z[1] << 32) + (z[2] << 64) + (z[3] << 96) + (z[4] << 128) + (z[5] << 160) + (z[6] << 192) + (z[7] << 224) + (z[8] << 256) + (z[9] << 0x120) + (z[10] << 0x140) + (z[11] << 0x160) in */ /* if x1 & (2^384-1) < 2^383 then x1 & (2^384-1) else (x1 & (2^384-1)) - 2^384 */ #include <stdint.h> typedef unsigned char fiat_p384_uint1; typedef signed char fiat_p384_int1; #if defined(__GNUC__) || defined(__clang__) # define FIAT_P384_FIAT_INLINE __inline__ #else # define FIAT_P384_FIAT_INLINE #endif /* The type fiat_p384_montgomery_domain_field_element is a field element in the Montgomery domain. */ /* Bounds: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff]] */ typedef uint32_t fiat_p384_montgomery_domain_field_element[12]; /* The type fiat_p384_non_montgomery_domain_field_element is a field element NOT in the Montgomery domain. */ /* Bounds: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff]] */ typedef uint32_t fiat_p384_non_montgomery_domain_field_element[12]; #if (-1 & 3) != 3 #error "This code only works on a two's complement system" #endif #if !defined(FIAT_P384_NO_ASM) && (defined(__GNUC__) || defined(__clang__)) static __inline__ uint32_t fiat_p384_value_barrier_u32(uint32_t a) { __asm__("" : "+r"(a) : /* no inputs */); return a; } #else # define fiat_p384_value_barrier_u32(x) (x) #endif /* * The function fiat_p384_addcarryx_u32 is an addition with carry. * * Postconditions: * out1 = (arg1 + arg2 + arg3) mod 2^32 * out2 = ⌊(arg1 + arg2 + arg3) / 2^32⌋ * * Input Bounds: * arg1: [0x0 ~> 0x1] * arg2: [0x0 ~> 0xffffffff] * arg3: [0x0 ~> 0xffffffff] * Output Bounds: * out1: [0x0 ~> 0xffffffff] * out2: [0x0 ~> 0x1] */ static FIAT_P384_FIAT_INLINE void fiat_p384_addcarryx_u32(uint32_t* out1, fiat_p384_uint1* out2, fiat_p384_uint1 arg1, uint32_t arg2, uint32_t arg3) { uint64_t x1; uint32_t x2; fiat_p384_uint1 x3; x1 = ((arg1 + (uint64_t)arg2) + arg3); x2 = (uint32_t)(x1 & UINT32_C(0xffffffff)); x3 = (fiat_p384_uint1)(x1 >> 32); *out1 = x2; *out2 = x3; } /* * The function fiat_p384_subborrowx_u32 is a subtraction with borrow. * * Postconditions: * out1 = (-arg1 + arg2 + -arg3) mod 2^32 * out2 = -⌊(-arg1 + arg2 + -arg3) / 2^32⌋ * * Input Bounds: * arg1: [0x0 ~> 0x1] * arg2: [0x0 ~> 0xffffffff] * arg3: [0x0 ~> 0xffffffff] * Output Bounds: * out1: [0x0 ~> 0xffffffff] * out2: [0x0 ~> 0x1] */ static FIAT_P384_FIAT_INLINE void fiat_p384_subborrowx_u32(uint32_t* out1, fiat_p384_uint1* out2, fiat_p384_uint1 arg1, uint32_t arg2, uint32_t arg3) { int64_t x1; fiat_p384_int1 x2; uint32_t x3; x1 = ((arg2 - (int64_t)arg1) - arg3); x2 = (fiat_p384_int1)(x1 >> 32); x3 = (uint32_t)(x1 & UINT32_C(0xffffffff)); *out1 = x3; *out2 = (fiat_p384_uint1)(0x0 - x2); } /* * The function fiat_p384_mulx_u32 is a multiplication, returning the full double-width result. * * Postconditions: * out1 = (arg1 * arg2) mod 2^32 * out2 = ⌊arg1 * arg2 / 2^32⌋ * * Input Bounds: * arg1: [0x0 ~> 0xffffffff] * arg2: [0x0 ~> 0xffffffff] * Output Bounds: * out1: [0x0 ~> 0xffffffff] * out2: [0x0 ~> 0xffffffff] */ static FIAT_P384_FIAT_INLINE void fiat_p384_mulx_u32(uint32_t* out1, uint32_t* out2, uint32_t arg1, uint32_t arg2) { uint64_t x1; uint32_t x2; uint32_t x3; x1 = ((uint64_t)arg1 * arg2); x2 = (uint32_t)(x1 & UINT32_C(0xffffffff)); x3 = (uint32_t)(x1 >> 32); *out1 = x2; *out2 = x3; } /* * The function fiat_p384_cmovznz_u32 is a single-word conditional move. * * Postconditions: * out1 = (if arg1 = 0 then arg2 else arg3) * * Input Bounds: * arg1: [0x0 ~> 0x1] * arg2: [0x0 ~> 0xffffffff] * arg3: [0x0 ~> 0xffffffff] * Output Bounds: * out1: [0x0 ~> 0xffffffff] */ static FIAT_P384_FIAT_INLINE void fiat_p384_cmovznz_u32(uint32_t* out1, fiat_p384_uint1 arg1, uint32_t arg2, uint32_t arg3) { fiat_p384_uint1 x1; uint32_t x2; uint32_t x3; x1 = (!(!arg1)); x2 = ((fiat_p384_int1)(0x0 - x1) & UINT32_C(0xffffffff)); x3 = ((fiat_p384_value_barrier_u32(x2) & arg3) | (fiat_p384_value_barrier_u32((~x2)) & arg2)); *out1 = x3; } /* * The function fiat_p384_mul multiplies two field elements in the Montgomery domain. * * Preconditions: * 0 ≤ eval arg1 < m * 0 ≤ eval arg2 < m * Postconditions: * eval (from_montgomery out1) mod m = (eval (from_montgomery arg1) * eval (from_montgomery arg2)) mod m * 0 ≤ eval out1 < m * */ static void fiat_p384_mul(fiat_p384_montgomery_domain_field_element out1, const fiat_p384_montgomery_domain_field_element arg1, const fiat_p384_montgomery_domain_field_element arg2) { uint32_t x1; uint32_t x2; uint32_t x3; uint32_t x4; uint32_t x5; uint32_t x6; uint32_t x7; uint32_t x8; uint32_t x9; uint32_t x10; uint32_t x11; uint32_t x12; uint32_t x13; uint32_t x14; uint32_t x15; uint32_t x16; uint32_t x17; uint32_t x18; uint32_t x19; uint32_t x20; uint32_t x21; uint32_t x22; uint32_t x23; uint32_t x24; uint32_t x25; uint32_t x26; uint32_t x27; uint32_t x28; uint32_t x29; uint32_t x30; uint32_t x31; uint32_t x32; uint32_t x33; uint32_t x34; uint32_t x35; uint32_t x36; uint32_t x37; fiat_p384_uint1 x38; uint32_t x39; fiat_p384_uint1 x40; uint32_t x41; fiat_p384_uint1 x42; uint32_t x43; fiat_p384_uint1 x44; uint32_t x45; fiat_p384_uint1 x46; uint32_t x47; fiat_p384_uint1 x48; uint32_t x49; fiat_p384_uint1 x50; uint32_t x51; fiat_p384_uint1 x52; uint32_t x53; fiat_p384_uint1 x54; uint32_t x55; fiat_p384_uint1 x56; uint32_t x57; fiat_p384_uint1 x58; uint32_t x59; uint32_t x60; uint32_t x61; uint32_t x62; uint32_t x63; uint32_t x64; uint32_t x65; uint32_t x66; uint32_t x67; uint32_t x68; uint32_t x69; uint32_t x70; uint32_t x71; uint32_t x72; uint32_t x73; uint32_t x74; uint32_t x75; uint32_t x76; uint32_t x77; uint32_t x78; uint32_t x79; uint32_t x80; fiat_p384_uint1 x81; uint32_t x82; fiat_p384_uint1 x83; uint32_t x84; fiat_p384_uint1 x85; uint32_t x86; fiat_p384_uint1 x87; uint32_t x88; fiat_p384_uint1 x89; uint32_t x90; fiat_p384_uint1 x91; uint32_t x92; fiat_p384_uint1 x93; uint32_t x94; fiat_p384_uint1 x95; uint32_t x96; uint32_t x97; fiat_p384_uint1 x98; uint32_t x99; fiat_p384_uint1 x100; uint32_t x101; fiat_p384_uint1 x102; uint32_t x103; fiat_p384_uint1 x104; uint32_t x105; fiat_p384_uint1 x106; uint32_t x107; fiat_p384_uint1 x108; uint32_t x109; fiat_p384_uint1 x110; uint32_t x111; fiat_p384_uint1 x112; uint32_t x113; fiat_p384_uint1 x114; uint32_t x115; fiat_p384_uint1 x116; uint32_t x117; fiat_p384_uint1 x118; uint32_t x119; fiat_p384_uint1 x120; uint32_t x121; fiat_p384_uint1 x122; uint32_t x123; uint32_t x124; uint32_t x125; uint32_t x126; uint32_t x127; uint32_t x128; uint32_t x129; uint32_t x130; uint32_t x131; uint32_t x132; uint32_t x133; uint32_t x134; uint32_t x135; uint32_t x136; uint32_t x137; uint32_t x138; uint32_t x139; uint32_t x140; uint32_t x141; uint32_t x142; uint32_t x143; uint32_t x144; uint32_t x145; uint32_t x146; uint32_t x147; fiat_p384_uint1 x148; uint32_t x149; fiat_p384_uint1 x150; uint32_t x151; fiat_p384_uint1 x152; uint32_t x153; fiat_p384_uint1 x154; uint32_t x155; fiat_p384_uint1 x156; uint32_t x157; fiat_p384_uint1 x158; uint32_t x159; fiat_p384_uint1 x160; uint32_t x161; fiat_p384_uint1 x162; uint32_t x163; fiat_p384_uint1 x164; uint32_t x165; fiat_p384_uint1 x166; uint32_t x167; fiat_p384_uint1 x168; uint32_t x169; uint32_t x170; fiat_p384_uint1 x171; uint32_t x172; fiat_p384_uint1 x173; uint32_t x174; fiat_p384_uint1 x175; uint32_t x176; fiat_p384_uint1 x177; uint32_t x178; fiat_p384_uint1 x179; uint32_t x180; fiat_p384_uint1 x181; uint32_t x182; fiat_p384_uint1 x183; uint32_t x184; fiat_p384_uint1 x185; uint32_t x186; fiat_p384_uint1 x187; uint32_t x188; fiat_p384_uint1 x189; uint32_t x190; fiat_p384_uint1 x191; uint32_t x192; fiat_p384_uint1 x193; uint32_t x194; fiat_p384_uint1 x195; uint32_t x196; uint32_t x197; uint32_t x198; uint32_t x199; uint32_t x200; uint32_t x201; uint32_t x202; uint32_t x203; uint32_t x204; uint32_t x205; uint32_t x206; uint32_t x207; uint32_t x208; uint32_t x209; uint32_t x210; uint32_t x211; uint32_t x212; uint32_t x213; uint32_t x214; uint32_t x215; uint32_t x216; fiat_p384_uint1 x217; uint32_t x218; fiat_p384_uint1 x219; uint32_t x220; fiat_p384_uint1 x221; uint32_t x222; fiat_p384_uint1 x223; uint32_t x224; fiat_p384_uint1 x225; uint32_t x226; fiat_p384_uint1 x227; uint32_t x228; fiat_p384_uint1 x229; uint32_t x230; fiat_p384_uint1 x231; uint32_t x232; uint32_t x233; fiat_p384_uint1 x234; uint32_t x235; fiat_p384_uint1 x236; uint32_t x237; fiat_p384_uint1 x238; uint32_t x239; fiat_p384_uint1 x240; uint32_t x241; fiat_p384_uint1 x242; uint32_t x243; fiat_p384_uint1 x244; uint32_t x245; fiat_p384_uint1 x246; uint32_t x247; fiat_p384_uint1 x248; uint32_t x249; fiat_p384_uint1 x250; uint32_t x251; fiat_p384_uint1 x252; uint32_t x253; fiat_p384_uint1 x254; uint32_t x255; fiat_p384_uint1 x256; uint32_t x257; fiat_p384_uint1 x258; uint32_t x259; uint32_t x260; uint32_t x261; uint32_t x262; uint32_t x263; uint32_t x264; uint32_t x265; uint32_t x266; uint32_t x267; uint32_t x268; uint32_t x269; uint32_t x270; uint32_t x271; uint32_t x272; uint32_t x273; uint32_t x274; uint32_t x275; uint32_t x276; uint32_t x277; uint32_t x278; uint32_t x279; uint32_t x280; uint32_t x281; uint32_t x282; uint32_t x283; uint32_t x284; fiat_p384_uint1 x285; uint32_t x286; fiat_p384_uint1 x287; uint32_t x288; fiat_p384_uint1 x289; uint32_t x290; fiat_p384_uint1 x291; uint32_t x292; fiat_p384_uint1 x293; uint32_t x294; fiat_p384_uint1 x295; uint32_t x296; fiat_p384_uint1 x297; uint32_t x298; fiat_p384_uint1 x299; uint32_t x300; fiat_p384_uint1 x301; uint32_t x302; fiat_p384_uint1 x303; uint32_t x304; fiat_p384_uint1 x305; uint32_t x306; uint32_t x307; fiat_p384_uint1 x308; uint32_t x309; fiat_p384_uint1 x310; uint32_t x311; fiat_p384_uint1 x312; uint32_t x313; fiat_p384_uint1 x314; uint32_t x315; fiat_p384_uint1 x316; uint32_t x317; fiat_p384_uint1 x318; uint32_t x319; fiat_p384_uint1 x320; uint32_t x321; fiat_p384_uint1 x322; uint32_t x323; fiat_p384_uint1 x324; uint32_t x325; fiat_p384_uint1 x326; uint32_t x327; fiat_p384_uint1 x328; uint32_t x329; fiat_p384_uint1 x330; uint32_t x331; fiat_p384_uint1 x332; uint32_t x333; uint32_t x334; uint32_t x335; uint32_t x336; uint32_t x337; uint32_t x338; uint32_t x339; uint32_t x340; uint32_t x341; uint32_t x342; uint32_t x343; uint32_t x344; uint32_t x345; uint32_t x346; uint32_t x347; uint32_t x348; uint32_t x349; uint32_t x350; uint32_t x351; uint32_t x352; uint32_t x353; fiat_p384_uint1 x354; uint32_t x355; fiat_p384_uint1 x356; uint32_t x357; fiat_p384_uint1 x358; uint32_t x359; fiat_p384_uint1 x360; uint32_t x361; fiat_p384_uint1 x362; uint32_t x363; fiat_p384_uint1 x364; uint32_t x365; fiat_p384_uint1 x366; uint32_t x367; fiat_p384_uint1 x368; uint32_t x369; uint32_t x370; fiat_p384_uint1 x371; uint32_t x372; fiat_p384_uint1 x373; uint32_t x374; fiat_p384_uint1 x375; uint32_t x376; fiat_p384_uint1 x377; uint32_t x378; fiat_p384_uint1 x379; uint32_t x380; fiat_p384_uint1 x381; uint32_t x382; fiat_p384_uint1 x383; uint32_t x384; fiat_p384_uint1 x385; uint32_t x386; fiat_p384_uint1 x387; uint32_t x388; fiat_p384_uint1 x389; uint32_t x390; fiat_p384_uint1 x391; uint32_t x392; fiat_p384_uint1 x393; uint32_t x394; fiat_p384_uint1 x395; uint32_t x396; uint32_t x397; uint32_t x398; uint32_t x399; uint32_t x400; uint32_t x401; uint32_t x402; uint32_t x403; uint32_t x404; uint32_t x405; uint32_t x406; uint32_t x407; uint32_t x408; uint32_t x409; uint32_t x410; uint32_t x411; uint32_t x412; uint32_t x413; uint32_t x414; uint32_t x415; uint32_t x416; uint32_t x417; uint32_t x418; uint32_t x419; uint32_t x420; uint32_t x421; fiat_p384_uint1 x422; uint32_t x423; fiat_p384_uint1 x424; uint32_t x425; fiat_p384_uint1 x426; uint32_t x427; fiat_p384_uint1 x428; uint32_t x429; fiat_p384_uint1 x430; uint32_t x431; fiat_p384_uint1 x432; uint32_t x433; fiat_p384_uint1 x434; uint32_t x435; fiat_p384_uint1 x436; uint32_t x437; fiat_p384_uint1 x438; uint32_t x439; fiat_p384_uint1 x440; uint32_t x441; fiat_p384_uint1 x442; uint32_t x443; uint32_t x444; fiat_p384_uint1 x445; uint32_t x446; fiat_p384_uint1 x447; uint32_t x448; fiat_p384_uint1 x449; uint32_t x450; fiat_p384_uint1 x451; uint32_t x452; fiat_p384_uint1 x453; uint32_t x454; fiat_p384_uint1 x455; uint32_t x456; fiat_p384_uint1 x457; uint32_t x458; fiat_p384_uint1 x459; uint32_t x460; fiat_p384_uint1 x461; uint32_t x462; fiat_p384_uint1 x463; uint32_t x464; fiat_p384_uint1 x465; uint32_t x466; fiat_p384_uint1 x467; uint32_t x468; fiat_p384_uint1 x469; uint32_t x470; uint32_t x471; uint32_t x472; uint32_t x473; uint32_t x474; uint32_t x475; uint32_t x476; uint32_t x477; uint32_t x478; uint32_t x479; uint32_t x480; uint32_t x481; uint32_t x482; uint32_t x483; uint32_t x484; uint32_t x485; uint32_t x486; uint32_t x487; uint32_t x488; uint32_t x489; uint32_t x490; fiat_p384_uint1 x491; uint32_t x492; fiat_p384_uint1 x493; uint32_t x494; fiat_p384_uint1 x495; uint32_t x496; fiat_p384_uint1 x497; uint32_t x498; fiat_p384_uint1 x499; uint32_t x500; fiat_p384_uint1 x501; uint32_t x502; fiat_p384_uint1 x503; uint32_t x504; fiat_p384_uint1 x505; uint32_t x506; uint32_t x507; fiat_p384_uint1 x508; uint32_t x509; fiat_p384_uint1 x510; uint32_t x511; fiat_p384_uint1 x512; uint32_t x513; fiat_p384_uint1 x514; uint32_t x515; fiat_p384_uint1 x516; uint32_t x517; fiat_p384_uint1 x518; uint32_t x519; fiat_p384_uint1 x520; uint32_t x521; fiat_p384_uint1 x522; uint32_t x523; fiat_p384_uint1 x524; uint32_t x525; fiat_p384_uint1 x526; uint32_t x527; fiat_p384_uint1 x528; uint32_t x529; fiat_p384_uint1 x530; uint32_t x531; fiat_p384_uint1 x532; uint32_t x533; uint32_t x534; uint32_t x535; uint32_t x536; uint32_t x537; uint32_t x538; uint32_t x539; uint32_t x540; uint32_t x541; uint32_t x542; uint32_t x543; uint32_t x544; uint32_t x545; uint32_t x546; uint32_t x547; uint32_t x548; uint32_t x549; uint32_t x550; uint32_t x551; uint32_t x552; uint32_t x553; uint32_t x554; uint32_t x555; uint32_t x556; uint32_t x557; uint32_t x558; fiat_p384_uint1 x559; uint32_t x560; fiat_p384_uint1 x561; uint32_t x562; fiat_p384_uint1 x563; uint32_t x564; fiat_p384_uint1 x565; uint32_t x566; fiat_p384_uint1 x567; uint32_t x568; fiat_p384_uint1 x569; uint32_t x570; fiat_p384_uint1 x571; uint32_t x572; fiat_p384_uint1 x573; uint32_t x574; fiat_p384_uint1 x575; uint32_t x576; fiat_p384_uint1 x577; uint32_t x578; fiat_p384_uint1 x579; uint32_t x580; uint32_t x581; fiat_p384_uint1 x582; uint32_t x583; fiat_p384_uint1 x584; uint32_t x585; fiat_p384_uint1 x586; uint32_t x587; fiat_p384_uint1 x588; uint32_t x589; fiat_p384_uint1 x590; uint32_t x591; fiat_p384_uint1 x592; uint32_t x593; fiat_p384_uint1 x594; uint32_t x595; fiat_p384_uint1 x596; uint32_t x597; fiat_p384_uint1 x598; uint32_t x599; fiat_p384_uint1 x600; uint32_t x601; fiat_p384_uint1 x602; uint32_t x603; fiat_p384_uint1 x604; uint32_t x605; fiat_p384_uint1 x606; uint32_t x607; uint32_t x608; uint32_t x609; uint32_t x610; uint32_t x611; uint32_t x612; uint32_t x613; uint32_t x614; uint32_t x615; uint32_t x616; uint32_t x617; uint32_t x618; uint32_t x619; uint32_t x620; uint32_t x621; uint32_t x622; uint32_t x623; uint32_t x624; uint32_t x625; uint32_t x626; uint32_t x627; fiat_p384_uint1 x628; uint32_t x629; fiat_p384_uint1 x630; uint32_t x631; fiat_p384_uint1 x632; uint32_t x633; fiat_p384_uint1 x634; uint32_t x635; fiat_p384_uint1 x636; uint32_t x637; fiat_p384_uint1 x638; uint32_t x639; fiat_p384_uint1 x640; uint32_t x641; fiat_p384_uint1 x642; uint32_t x643; uint32_t x644; fiat_p384_uint1 x645; uint32_t x646; fiat_p384_uint1 x647; uint32_t x648; fiat_p384_uint1 x649; uint32_t x650; fiat_p384_uint1 x651; uint32_t x652; fiat_p384_uint1 x653; uint32_t x654; fiat_p384_uint1 x655; uint32_t x656; fiat_p384_uint1 x657; uint32_t x658; fiat_p384_uint1 x659; uint32_t x660; fiat_p384_uint1 x661; uint32_t x662; fiat_p384_uint1 x663; uint32_t x664; fiat_p384_uint1 x665; uint32_t x666; fiat_p384_uint1 x667; uint32_t x668; fiat_p384_uint1 x669; uint32_t x670; uint32_t x671; uint32_t x672; uint32_t x673; uint32_t x674; uint32_t x675; uint32_t x676; uint32_t x677; uint32_t x678; uint32_t x679; uint32_t x680; uint32_t x681; uint32_t x682; uint32_t x683; uint32_t x684; uint32_t x685; uint32_t x686; uint32_t x687; uint32_t x688; uint32_t x689; uint32_t x690; uint32_t x691; uint32_t x692; uint32_t x693; uint32_t x694; uint32_t x695; fiat_p384_uint1 x696; uint32_t x697; fiat_p384_uint1 x698; uint32_t x699; fiat_p384_uint1 x700; uint32_t x701; fiat_p384_uint1 x702; uint32_t x703; fiat_p384_uint1 x704; uint32_t x705; fiat_p384_uint1 x706; uint32_t x707; fiat_p384_uint1 x708; uint32_t x709; fiat_p384_uint1 x710; uint32_t x711; fiat_p384_uint1 x712; uint32_t x713; fiat_p384_uint1 x714; uint32_t x715; fiat_p384_uint1 x716; uint32_t x717; uint32_t x718; fiat_p384_uint1 x719; uint32_t x720; fiat_p384_uint1 x721; uint32_t x722; fiat_p384_uint1 x723; uint32_t x724; fiat_p384_uint1 x725; uint32_t x726; fiat_p384_uint1 x727; uint32_t x728; fiat_p384_uint1 x729; uint32_t x730; fiat_p384_uint1 x731; uint32_t x732; fiat_p384_uint1 x733; uint32_t x734; fiat_p384_uint1 x735; uint32_t x736; fiat_p384_uint1 x737; uint32_t x738; fiat_p384_uint1 x739; uint32_t x740; fiat_p384_uint1 x741; uint32_t x742; fiat_p384_uint1 x743; uint32_t x744; uint32_t x745; uint32_t x746; uint32_t x747; uint32_t x748; uint32_t x749; uint32_t x750; uint32_t x751; uint32_t x752; uint32_t x753; uint32_t x754; uint32_t x755; uint32_t x756; uint32_t x757; uint32_t x758; uint32_t x759; uint32_t x760; uint32_t x761; uint32_t x762; uint32_t x763; uint32_t x764; fiat_p384_uint1 x765; uint32_t x766; fiat_p384_uint1 x767; uint32_t x768; fiat_p384_uint1 x769; uint32_t x770; fiat_p384_uint1 x771; uint32_t x772; fiat_p384_uint1 x773; uint32_t x774; fiat_p384_uint1 x775; uint32_t x776; fiat_p384_uint1 x777; uint32_t x778; fiat_p384_uint1 x779; uint32_t x780; uint32_t x781; fiat_p384_uint1 x782; uint32_t x783; fiat_p384_uint1 x784; uint32_t x785; fiat_p384_uint1 x786; uint32_t x787; fiat_p384_uint1 x788; uint32_t x789; fiat_p384_uint1 x790; uint32_t x791; fiat_p384_uint1 x792; uint32_t x793; fiat_p384_uint1 x794; uint32_t x795; fiat_p384_uint1 x796; uint32_t x797; fiat_p384_uint1 x798; uint32_t x799; fiat_p384_uint1 x800; uint32_t x801; fiat_p384_uint1 x802; uint32_t x803; fiat_p384_uint1 x804; uint32_t x805; fiat_p384_uint1 x806; uint32_t x807; uint32_t x808; uint32_t x809; uint32_t x810; uint32_t x811; uint32_t x812; uint32_t x813; uint32_t x814; uint32_t x815; uint32_t x816; uint32_t x817; uint32_t x818; uint32_t x819; uint32_t x820; uint32_t x821; uint32_t x822; uint32_t x823; uint32_t x824; uint32_t x825; uint32_t x826; uint32_t x827; uint32_t x828; uint32_t x829; uint32_t x830; uint32_t x831; uint32_t x832; fiat_p384_uint1 x833; uint32_t x834; fiat_p384_uint1 x835; uint32_t x836; fiat_p384_uint1 x837; uint32_t x838; fiat_p384_uint1 x839; uint32_t x840; fiat_p384_uint1 x841; uint32_t x842; fiat_p384_uint1 x843; uint32_t x844; fiat_p384_uint1 x845; uint32_t x846; fiat_p384_uint1 x847; uint32_t x848; fiat_p384_uint1 x849; uint32_t x850; fiat_p384_uint1 x851; uint32_t x852; fiat_p384_uint1 x853; uint32_t x854; uint32_t x855; fiat_p384_uint1 x856; uint32_t x857; fiat_p384_uint1 x858; uint32_t x859; fiat_p384_uint1 x860; uint32_t x861; fiat_p384_uint1 x862; uint32_t x863; fiat_p384_uint1 x864; uint32_t x865; fiat_p384_uint1 x866; uint32_t x867; fiat_p384_uint1 x868; uint32_t x869; fiat_p384_uint1 x870; uint32_t x871; fiat_p384_uint1 x872; uint32_t x873; fiat_p384_uint1 x874; uint32_t x875; fiat_p384_uint1 x876; uint32_t x877; fiat_p384_uint1 x878; uint32_t x879; fiat_p384_uint1 x880; uint32_t x881; uint32_t x882; uint32_t x883; uint32_t x884; uint32_t x885; uint32_t x886; uint32_t x887; uint32_t x888; uint32_t x889; uint32_t x890; uint32_t x891; uint32_t x892; uint32_t x893; uint32_t x894; uint32_t x895; uint32_t x896; uint32_t x897; uint32_t x898; uint32_t x899; uint32_t x900; uint32_t x901; fiat_p384_uint1 x902; uint32_t x903; fiat_p384_uint1 x904; uint32_t x905; fiat_p384_uint1 x906; uint32_t x907; fiat_p384_uint1 x908; uint32_t x909; fiat_p384_uint1 x910; uint32_t x911; fiat_p384_uint1 x912; uint32_t x913; fiat_p384_uint1 x914; uint32_t x915; fiat_p384_uint1 x916; uint32_t x917; uint32_t x918; fiat_p384_uint1 x919; uint32_t x920; fiat_p384_uint1 x921; uint32_t x922; fiat_p384_uint1 x923; uint32_t x924; fiat_p384_uint1 x925; uint32_t x926; fiat_p384_uint1 x927; uint32_t x928; fiat_p384_uint1 x929; uint32_t x930; fiat_p384_uint1 x931; uint32_t x932; fiat_p384_uint1 x933; uint32_t x934; fiat_p384_uint1 x935; uint32_t x936; fiat_p384_uint1 x937; uint32_t x938; fiat_p384_uint1 x939; uint32_t x940; fiat_p384_uint1 x941; uint32_t x942; fiat_p384_uint1 x943; uint32_t x944; uint32_t x945; uint32_t x946; uint32_t x947; uint32_t x948; uint32_t x949; uint32_t x950; uint32_t x951; uint32_t x952; uint32_t x953; uint32_t x954; uint32_t x955; uint32_t x956; uint32_t x957; uint32_t x958; uint32_t x959; uint32_t x960; uint32_t x961; uint32_t x962; uint32_t x963; uint32_t x964; uint32_t x965; uint32_t x966; uint32_t x967; uint32_t x968; uint32_t x969; fiat_p384_uint1 x970; uint32_t x971; fiat_p384_uint1 x972; uint32_t x973; fiat_p384_uint1 x974; uint32_t x975; fiat_p384_uint1 x976; uint32_t x977; fiat_p384_uint1 x978; uint32_t x979; fiat_p384_uint1 x980; uint32_t x981; fiat_p384_uint1 x982; uint32_t x983; fiat_p384_uint1 x984; uint32_t x985; fiat_p384_uint1 x986; uint32_t x987; fiat_p384_uint1 x988; uint32_t x989; fiat_p384_uint1 x990; uint32_t x991; uint32_t x992; fiat_p384_uint1 x993; uint32_t x994; fiat_p384_uint1 x995; uint32_t x996; fiat_p384_uint1 x997; uint32_t x998; fiat_p384_uint1 x999; uint32_t x1000; fiat_p384_uint1 x1001; uint32_t x1002; fiat_p384_uint1 x1003; uint32_t x1004; fiat_p384_uint1 x1005; uint32_t x1006; fiat_p384_uint1 x1007; uint32_t x1008; fiat_p384_uint1 x1009; uint32_t x1010; fiat_p384_uint1 x1011; uint32_t x1012; fiat_p384_uint1 x1013; uint32_t x1014; fiat_p384_uint1 x1015; uint32_t x1016; fiat_p384_uint1 x1017; uint32_t x1018; uint32_t x1019; uint32_t x1020; uint32_t x1021; uint32_t x1022; uint32_t x1023; uint32_t x1024; uint32_t x1025; uint32_t x1026; uint32_t x1027; uint32_t x1028; uint32_t x1029; uint32_t x1030; uint32_t x1031; uint32_t x1032; uint32_t x1033; uint32_t x1034; uint32_t x1035; uint32_t x1036; uint32_t x1037; uint32_t x1038; fiat_p384_uint1 x1039; uint32_t x1040; fiat_p384_uint1 x1041; uint32_t x1042; fiat_p384_uint1 x1043; uint32_t x1044; fiat_p384_uint1 x1045; uint32_t x1046; fiat_p384_uint1 x1047; uint32_t x1048; fiat_p384_uint1 x1049; uint32_t x1050; fiat_p384_uint1 x1051; uint32_t x1052; fiat_p384_uint1 x1053; uint32_t x1054; uint32_t x1055; fiat_p384_uint1 x1056; uint32_t x1057; fiat_p384_uint1 x1058; uint32_t x1059; fiat_p384_uint1 x1060; uint32_t x1061; fiat_p384_uint1 x1062; uint32_t x1063; fiat_p384_uint1 x1064; uint32_t x1065; fiat_p384_uint1 x1066; uint32_t x1067; fiat_p384_uint1 x1068; uint32_t x1069; fiat_p384_uint1 x1070; uint32_t x1071; fiat_p384_uint1 x1072; uint32_t x1073; fiat_p384_uint1 x1074; uint32_t x1075; fiat_p384_uint1 x1076; uint32_t x1077; fiat_p384_uint1 x1078; uint32_t x1079; fiat_p384_uint1 x1080; uint32_t x1081; uint32_t x1082; uint32_t x1083; uint32_t x1084; uint32_t x1085; uint32_t x1086; uint32_t x1087; uint32_t x1088; uint32_t x1089; uint32_t x1090; uint32_t x1091; uint32_t x1092; uint32_t x1093; uint32_t x1094; uint32_t x1095; uint32_t x1096; uint32_t x1097; uint32_t x1098; uint32_t x1099; uint32_t x1100; uint32_t x1101; uint32_t x1102; uint32_t x1103; uint32_t x1104; uint32_t x1105; uint32_t x1106; fiat_p384_uint1 x1107; uint32_t x1108; fiat_p384_uint1 x1109; uint32_t x1110; fiat_p384_uint1 x1111; uint32_t x1112; fiat_p384_uint1 x1113; uint32_t x1114; fiat_p384_uint1 x1115; uint32_t x1116; fiat_p384_uint1 x1117; uint32_t x1118; fiat_p384_uint1 x1119; uint32_t x1120; fiat_p384_uint1 x1121; uint32_t x1122; fiat_p384_uint1 x1123; uint32_t x1124; fiat_p384_uint1 x1125; uint32_t x1126; fiat_p384_uint1 x1127; uint32_t x1128; uint32_t x1129; fiat_p384_uint1 x1130; uint32_t x1131; fiat_p384_uint1 x1132; uint32_t x1133; fiat_p384_uint1 x1134; uint32_t x1135; fiat_p384_uint1 x1136; uint32_t x1137; fiat_p384_uint1 x1138; uint32_t x1139; fiat_p384_uint1 x1140; uint32_t x1141; fiat_p384_uint1 x1142; uint32_t x1143; fiat_p384_uint1 x1144; uint32_t x1145; fiat_p384_uint1 x1146; uint32_t x1147; fiat_p384_uint1 x1148; uint32_t x1149; fiat_p384_uint1 x1150; uint32_t x1151; fiat_p384_uint1 x1152; uint32_t x1153; fiat_p384_uint1 x1154; uint32_t x1155; uint32_t x1156; uint32_t x1157; uint32_t x1158; uint32_t x1159; uint32_t x1160; uint32_t x1161; uint32_t x1162; uint32_t x1163; uint32_t x1164; uint32_t x1165; uint32_t x1166; uint32_t x1167; uint32_t x1168; uint32_t x1169; uint32_t x1170; uint32_t x1171; uint32_t x1172; uint32_t x1173; uint32_t x1174; uint32_t x1175; fiat_p384_uint1 x1176; uint32_t x1177; fiat_p384_uint1 x1178; uint32_t x1179; fiat_p384_uint1 x1180; uint32_t x1181; fiat_p384_uint1 x1182; uint32_t x1183; fiat_p384_uint1 x1184; uint32_t x1185; fiat_p384_uint1 x1186; uint32_t x1187; fiat_p384_uint1 x1188; uint32_t x1189; fiat_p384_uint1 x1190; uint32_t x1191; uint32_t x1192; fiat_p384_uint1 x1193; uint32_t x1194; fiat_p384_uint1 x1195; uint32_t x1196; fiat_p384_uint1 x1197; uint32_t x1198; fiat_p384_uint1 x1199; uint32_t x1200; fiat_p384_uint1 x1201; uint32_t x1202; fiat_p384_uint1 x1203; uint32_t x1204; fiat_p384_uint1 x1205; uint32_t x1206; fiat_p384_uint1 x1207; uint32_t x1208; fiat_p384_uint1 x1209; uint32_t x1210; fiat_p384_uint1 x1211; uint32_t x1212; fiat_p384_uint1 x1213; uint32_t x1214; fiat_p384_uint1 x1215; uint32_t x1216; fiat_p384_uint1 x1217; uint32_t x1218; uint32_t x1219; uint32_t x1220; uint32_t x1221; uint32_t x1222; uint32_t x1223; uint32_t x1224; uint32_t x1225; uint32_t x1226; uint32_t x1227; uint32_t x1228; uint32_t x1229; uint32_t x1230; uint32_t x1231; uint32_t x1232; uint32_t x1233; uint32_t x1234; uint32_t x1235; uint32_t x1236; uint32_t x1237; uint32_t x1238; uint32_t x1239; uint32_t x1240; uint32_t x1241; uint32_t x1242; uint32_t x1243; fiat_p384_uint1 x1244; uint32_t x1245; fiat_p384_uint1 x1246; uint32_t x1247; fiat_p384_uint1 x1248; uint32_t x1249; fiat_p384_uint1 x1250; uint32_t x1251; fiat_p384_uint1 x1252; uint32_t x1253; fiat_p384_uint1 x1254; uint32_t x1255; fiat_p384_uint1 x1256; uint32_t x1257; fiat_p384_uint1 x1258; uint32_t x1259; fiat_p384_uint1 x1260; uint32_t x1261; fiat_p384_uint1 x1262; uint32_t x1263; fiat_p384_uint1 x1264; uint32_t x1265; uint32_t x1266; fiat_p384_uint1 x1267; uint32_t x1268; fiat_p384_uint1 x1269; uint32_t x1270; fiat_p384_uint1 x1271; uint32_t x1272; fiat_p384_uint1 x1273; uint32_t x1274; fiat_p384_uint1 x1275; uint32_t x1276; fiat_p384_uint1 x1277; uint32_t x1278; fiat_p384_uint1 x1279; uint32_t x1280; fiat_p384_uint1 x1281; uint32_t x1282; fiat_p384_uint1 x1283; uint32_t x1284; fiat_p384_uint1 x1285; uint32_t x1286; fiat_p384_uint1 x1287; uint32_t x1288; fiat_p384_uint1 x1289; uint32_t x1290; fiat_p384_uint1 x1291; uint32_t x1292; uint32_t x1293; uint32_t x1294; uint32_t x1295; uint32_t x1296; uint32_t x1297; uint32_t x1298; uint32_t x1299; uint32_t x1300; uint32_t x1301; uint32_t x1302; uint32_t x1303; uint32_t x1304; uint32_t x1305; uint32_t x1306; uint32_t x1307; uint32_t x1308; uint32_t x1309; uint32_t x1310; uint32_t x1311; uint32_t x1312; fiat_p384_uint1 x1313; uint32_t x1314; fiat_p384_uint1 x1315; uint32_t x1316; fiat_p384_uint1 x1317; uint32_t x1318; fiat_p384_uint1 x1319; uint32_t x1320; fiat_p384_uint1 x1321; uint32_t x1322; fiat_p384_uint1 x1323; uint32_t x1324; fiat_p384_uint1 x1325; uint32_t x1326; fiat_p384_uint1 x1327; uint32_t x1328; uint32_t x1329; fiat_p384_uint1 x1330; uint32_t x1331; fiat_p384_uint1 x1332; uint32_t x1333; fiat_p384_uint1 x1334; uint32_t x1335; fiat_p384_uint1 x1336; uint32_t x1337; fiat_p384_uint1 x1338; uint32_t x1339; fiat_p384_uint1 x1340; uint32_t x1341; fiat_p384_uint1 x1342; uint32_t x1343; fiat_p384_uint1 x1344; uint32_t x1345; fiat_p384_uint1 x1346; uint32_t x1347; fiat_p384_uint1 x1348; uint32_t x1349; fiat_p384_uint1 x1350; uint32_t x1351; fiat_p384_uint1 x1352; uint32_t x1353; fiat_p384_uint1 x1354; uint32_t x1355; uint32_t x1356; uint32_t x1357; uint32_t x1358; uint32_t x1359; uint32_t x1360; uint32_t x1361; uint32_t x1362; uint32_t x1363; uint32_t x1364; uint32_t x1365; uint32_t x1366; uint32_t x1367; uint32_t x1368; uint32_t x1369; uint32_t x1370; uint32_t x1371; uint32_t x1372; uint32_t x1373; uint32_t x1374; uint32_t x1375; uint32_t x1376; uint32_t x1377; uint32_t x1378; uint32_t x1379; uint32_t x1380; fiat_p384_uint1 x1381; uint32_t x1382; fiat_p384_uint1 x1383; uint32_t x1384; fiat_p384_uint1 x1385; uint32_t x1386; fiat_p384_uint1 x1387; uint32_t x1388; fiat_p384_uint1 x1389; uint32_t x1390; fiat_p384_uint1 x1391; uint32_t x1392; fiat_p384_uint1 x1393; uint32_t x1394; fiat_p384_uint1 x1395; uint32_t x1396; fiat_p384_uint1 x1397; uint32_t x1398; fiat_p384_uint1 x1399; uint32_t x1400; fiat_p384_uint1 x1401; uint32_t x1402; uint32_t x1403; fiat_p384_uint1 x1404; uint32_t x1405; fiat_p384_uint1 x1406; uint32_t x1407; fiat_p384_uint1 x1408; uint32_t x1409; fiat_p384_uint1 x1410; uint32_t x1411; fiat_p384_uint1 x1412; uint32_t x1413; fiat_p384_uint1 x1414; uint32_t x1415; fiat_p384_uint1 x1416; uint32_t x1417; fiat_p384_uint1 x1418; uint32_t x1419; fiat_p384_uint1 x1420; uint32_t x1421; fiat_p384_uint1 x1422; uint32_t x1423; fiat_p384_uint1 x1424; uint32_t x1425; fiat_p384_uint1 x1426; uint32_t x1427; fiat_p384_uint1 x1428; uint32_t x1429; uint32_t x1430; uint32_t x1431; uint32_t x1432; uint32_t x1433; uint32_t x1434; uint32_t x1435; uint32_t x1436; uint32_t x1437; uint32_t x1438; uint32_t x1439; uint32_t x1440; uint32_t x1441; uint32_t x1442; uint32_t x1443; uint32_t x1444; uint32_t x1445; uint32_t x1446; uint32_t x1447; uint32_t x1448; uint32_t x1449; fiat_p384_uint1 x1450; uint32_t x1451; fiat_p384_uint1 x1452; uint32_t x1453; fiat_p384_uint1 x1454; uint32_t x1455; fiat_p384_uint1 x1456; uint32_t x1457; fiat_p384_uint1 x1458; uint32_t x1459; fiat_p384_uint1 x1460; uint32_t x1461; fiat_p384_uint1 x1462; uint32_t x1463; fiat_p384_uint1 x1464; uint32_t x1465; uint32_t x1466; fiat_p384_uint1 x1467; uint32_t x1468; fiat_p384_uint1 x1469; uint32_t x1470; fiat_p384_uint1 x1471; uint32_t x1472; fiat_p384_uint1 x1473; uint32_t x1474; fiat_p384_uint1 x1475; uint32_t x1476; fiat_p384_uint1 x1477; uint32_t x1478; fiat_p384_uint1 x1479; uint32_t x1480; fiat_p384_uint1 x1481; uint32_t x1482; fiat_p384_uint1 x1483; uint32_t x1484; fiat_p384_uint1 x1485; uint32_t x1486; fiat_p384_uint1 x1487; uint32_t x1488; fiat_p384_uint1 x1489; uint32_t x1490; fiat_p384_uint1 x1491; uint32_t x1492; uint32_t x1493; uint32_t x1494; uint32_t x1495; uint32_t x1496; uint32_t x1497; uint32_t x1498; uint32_t x1499; uint32_t x1500; uint32_t x1501; uint32_t x1502; uint32_t x1503; uint32_t x1504; uint32_t x1505; uint32_t x1506; uint32_t x1507; uint32_t x1508; uint32_t x1509; uint32_t x1510; uint32_t x1511; uint32_t x1512; uint32_t x1513; uint32_t x1514; uint32_t x1515; uint32_t x1516; uint32_t x1517; fiat_p384_uint1 x1518; uint32_t x1519; fiat_p384_uint1 x1520; uint32_t x1521; fiat_p384_uint1 x1522; uint32_t x1523; fiat_p384_uint1 x1524; uint32_t x1525; fiat_p384_uint1 x1526; uint32_t x1527; fiat_p384_uint1 x1528; uint32_t x1529; fiat_p384_uint1 x1530; uint32_t x1531; fiat_p384_uint1 x1532; uint32_t x1533; fiat_p384_uint1 x1534; uint32_t x1535; fiat_p384_uint1 x1536; uint32_t x1537; fiat_p384_uint1 x1538; uint32_t x1539; uint32_t x1540; fiat_p384_uint1 x1541; uint32_t x1542; fiat_p384_uint1 x1543; uint32_t x1544; fiat_p384_uint1 x1545; uint32_t x1546; fiat_p384_uint1 x1547; uint32_t x1548; fiat_p384_uint1 x1549; uint32_t x1550; fiat_p384_uint1 x1551; uint32_t x1552; fiat_p384_uint1 x1553; uint32_t x1554; fiat_p384_uint1 x1555; uint32_t x1556; fiat_p384_uint1 x1557; uint32_t x1558; fiat_p384_uint1 x1559; uint32_t x1560; fiat_p384_uint1 x1561; uint32_t x1562; fiat_p384_uint1 x1563; uint32_t x1564; fiat_p384_uint1 x1565; uint32_t x1566; uint32_t x1567; uint32_t x1568; uint32_t x1569; uint32_t x1570; uint32_t x1571; uint32_t x1572; uint32_t x1573; uint32_t x1574; uint32_t x1575; uint32_t x1576; uint32_t x1577; uint32_t x1578; uint32_t x1579; uint32_t x1580; uint32_t x1581; uint32_t x1582; uint32_t x1583; uint32_t x1584; uint32_t x1585; uint32_t x1586; fiat_p384_uint1 x1587; uint32_t x1588; fiat_p384_uint1 x1589; uint32_t x1590; fiat_p384_uint1 x1591; uint32_t x1592; fiat_p384_uint1 x1593; uint32_t x1594; fiat_p384_uint1 x1595; uint32_t x1596; fiat_p384_uint1 x1597; uint32_t x1598; fiat_p384_uint1 x1599; uint32_t x1600; fiat_p384_uint1 x1601; uint32_t x1602; uint32_t x1603; fiat_p384_uint1 x1604; uint32_t x1605; fiat_p384_uint1 x1606; uint32_t x1607; fiat_p384_uint1 x1608; uint32_t x1609; fiat_p384_uint1 x1610; uint32_t x1611; fiat_p384_uint1 x1612; uint32_t x1613; fiat_p384_uint1 x1614; uint32_t x1615; fiat_p384_uint1 x1616; uint32_t x1617; fiat_p384_uint1 x1618; uint32_t x1619; fiat_p384_uint1 x1620; uint32_t x1621; fiat_p384_uint1 x1622; uint32_t x1623; fiat_p384_uint1 x1624; uint32_t x1625; fiat_p384_uint1 x1626; uint32_t x1627; fiat_p384_uint1 x1628; uint32_t x1629; uint32_t x1630; fiat_p384_uint1 x1631; uint32_t x1632; fiat_p384_uint1 x1633; uint32_t x1634; fiat_p384_uint1 x1635; uint32_t x1636; fiat_p384_uint1 x1637; uint32_t x1638; fiat_p384_uint1 x1639; uint32_t x1640; fiat_p384_uint1 x1641; uint32_t x1642; fiat_p384_uint1 x1643; uint32_t x1644; fiat_p384_uint1 x1645; uint32_t x1646; fiat_p384_uint1 x1647; uint32_t x1648; fiat_p384_uint1 x1649; uint32_t x1650; fiat_p384_uint1 x1651; uint32_t x1652; fiat_p384_uint1 x1653; uint32_t x1654; fiat_p384_uint1 x1655; uint32_t x1656; uint32_t x1657; uint32_t x1658; uint32_t x1659; uint32_t x1660; uint32_t x1661; uint32_t x1662; uint32_t x1663; uint32_t x1664; uint32_t x1665; uint32_t x1666; uint32_t x1667; x1 = (arg1[1]); x2 = (arg1[2]); x3 = (arg1[3]); x4 = (arg1[4]); x5 = (arg1[5]); x6 = (arg1[6]); x7 = (arg1[7]); x8 = (arg1[8]); x9 = (arg1[9]); x10 = (arg1[10]); x11 = (arg1[11]); x12 = (arg1[0]); fiat_p384_mulx_u32(&x13, &x14, x12, (arg2[11])); fiat_p384_mulx_u32(&x15, &x16, x12, (arg2[10])); fiat_p384_mulx_u32(&x17, &x18, x12, (arg2[9])); fiat_p384_mulx_u32(&x19, &x20, x12, (arg2[8])); fiat_p384_mulx_u32(&x21, &x22, x12, (arg2[7])); fiat_p384_mulx_u32(&x23, &x24, x12, (arg2[6])); fiat_p384_mulx_u32(&x25, &x26, x12, (arg2[5])); fiat_p384_mulx_u32(&x27, &x28, x12, (arg2[4])); fiat_p384_mulx_u32(&x29, &x30, x12, (arg2[3])); fiat_p384_mulx_u32(&x31, &x32, x12, (arg2[2])); fiat_p384_mulx_u32(&x33, &x34, x12, (arg2[1])); fiat_p384_mulx_u32(&x35, &x36, x12, (arg2[0])); fiat_p384_addcarryx_u32(&x37, &x38, 0x0, x36, x33); fiat_p384_addcarryx_u32(&x39, &x40, x38, x34, x31); fiat_p384_addcarryx_u32(&x41, &x42, x40, x32, x29); fiat_p384_addcarryx_u32(&x43, &x44, x42, x30, x27); fiat_p384_addcarryx_u32(&x45, &x46, x44, x28, x25); fiat_p384_addcarryx_u32(&x47, &x48, x46, x26, x23); fiat_p384_addcarryx_u32(&x49, &x50, x48, x24, x21); fiat_p384_addcarryx_u32(&x51, &x52, x50, x22, x19); fiat_p384_addcarryx_u32(&x53, &x54, x52, x20, x17); fiat_p384_addcarryx_u32(&x55, &x56, x54, x18, x15); fiat_p384_addcarryx_u32(&x57, &x58, x56, x16, x13); x59 = (x58 + x14); fiat_p384_mulx_u32(&x60, &x61, x35, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x62, &x63, x35, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x64, &x65, x35, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x66, &x67, x35, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x68, &x69, x35, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x70, &x71, x35, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x72, &x73, x35, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x74, &x75, x35, UINT32_C(0xfffffffe)); fiat_p384_mulx_u32(&x76, &x77, x35, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x78, &x79, x35, UINT32_C(0xffffffff)); fiat_p384_addcarryx_u32(&x80, &x81, 0x0, x77, x74); fiat_p384_addcarryx_u32(&x82, &x83, x81, x75, x72); fiat_p384_addcarryx_u32(&x84, &x85, x83, x73, x70); fiat_p384_addcarryx_u32(&x86, &x87, x85, x71, x68); fiat_p384_addcarryx_u32(&x88, &x89, x87, x69, x66); fiat_p384_addcarryx_u32(&x90, &x91, x89, x67, x64); fiat_p384_addcarryx_u32(&x92, &x93, x91, x65, x62); fiat_p384_addcarryx_u32(&x94, &x95, x93, x63, x60); x96 = (x95 + x61); fiat_p384_addcarryx_u32(&x97, &x98, 0x0, x35, x78); fiat_p384_addcarryx_u32(&x99, &x100, x98, x37, x79); fiat_p384_addcarryx_u32(&x101, &x102, x100, x39, 0x0); fiat_p384_addcarryx_u32(&x103, &x104, x102, x41, x76); fiat_p384_addcarryx_u32(&x105, &x106, x104, x43, x80); fiat_p384_addcarryx_u32(&x107, &x108, x106, x45, x82); fiat_p384_addcarryx_u32(&x109, &x110, x108, x47, x84); fiat_p384_addcarryx_u32(&x111, &x112, x110, x49, x86); fiat_p384_addcarryx_u32(&x113, &x114, x112, x51, x88); fiat_p384_addcarryx_u32(&x115, &x116, x114, x53, x90); fiat_p384_addcarryx_u32(&x117, &x118, x116, x55, x92); fiat_p384_addcarryx_u32(&x119, &x120, x118, x57, x94); fiat_p384_addcarryx_u32(&x121, &x122, x120, x59, x96); fiat_p384_mulx_u32(&x123, &x124, x1, (arg2[11])); fiat_p384_mulx_u32(&x125, &x126, x1, (arg2[10])); fiat_p384_mulx_u32(&x127, &x128, x1, (arg2[9])); fiat_p384_mulx_u32(&x129, &x130, x1, (arg2[8])); fiat_p384_mulx_u32(&x131, &x132, x1, (arg2[7])); fiat_p384_mulx_u32(&x133, &x134, x1, (arg2[6])); fiat_p384_mulx_u32(&x135, &x136, x1, (arg2[5])); fiat_p384_mulx_u32(&x137, &x138, x1, (arg2[4])); fiat_p384_mulx_u32(&x139, &x140, x1, (arg2[3])); fiat_p384_mulx_u32(&x141, &x142, x1, (arg2[2])); fiat_p384_mulx_u32(&x143, &x144, x1, (arg2[1])); fiat_p384_mulx_u32(&x145, &x146, x1, (arg2[0])); fiat_p384_addcarryx_u32(&x147, &x148, 0x0, x146, x143); fiat_p384_addcarryx_u32(&x149, &x150, x148, x144, x141); fiat_p384_addcarryx_u32(&x151, &x152, x150, x142, x139); fiat_p384_addcarryx_u32(&x153, &x154, x152, x140, x137); fiat_p384_addcarryx_u32(&x155, &x156, x154, x138, x135); fiat_p384_addcarryx_u32(&x157, &x158, x156, x136, x133); fiat_p384_addcarryx_u32(&x159, &x160, x158, x134, x131); fiat_p384_addcarryx_u32(&x161, &x162, x160, x132, x129); fiat_p384_addcarryx_u32(&x163, &x164, x162, x130, x127); fiat_p384_addcarryx_u32(&x165, &x166, x164, x128, x125); fiat_p384_addcarryx_u32(&x167, &x168, x166, x126, x123); x169 = (x168 + x124); fiat_p384_addcarryx_u32(&x170, &x171, 0x0, x99, x145); fiat_p384_addcarryx_u32(&x172, &x173, x171, x101, x147); fiat_p384_addcarryx_u32(&x174, &x175, x173, x103, x149); fiat_p384_addcarryx_u32(&x176, &x177, x175, x105, x151); fiat_p384_addcarryx_u32(&x178, &x179, x177, x107, x153); fiat_p384_addcarryx_u32(&x180, &x181, x179, x109, x155); fiat_p384_addcarryx_u32(&x182, &x183, x181, x111, x157); fiat_p384_addcarryx_u32(&x184, &x185, x183, x113, x159); fiat_p384_addcarryx_u32(&x186, &x187, x185, x115, x161); fiat_p384_addcarryx_u32(&x188, &x189, x187, x117, x163); fiat_p384_addcarryx_u32(&x190, &x191, x189, x119, x165); fiat_p384_addcarryx_u32(&x192, &x193, x191, x121, x167); fiat_p384_addcarryx_u32(&x194, &x195, x193, x122, x169); fiat_p384_mulx_u32(&x196, &x197, x170, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x198, &x199, x170, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x200, &x201, x170, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x202, &x203, x170, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x204, &x205, x170, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x206, &x207, x170, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x208, &x209, x170, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x210, &x211, x170, UINT32_C(0xfffffffe)); fiat_p384_mulx_u32(&x212, &x213, x170, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x214, &x215, x170, UINT32_C(0xffffffff)); fiat_p384_addcarryx_u32(&x216, &x217, 0x0, x213, x210); fiat_p384_addcarryx_u32(&x218, &x219, x217, x211, x208); fiat_p384_addcarryx_u32(&x220, &x221, x219, x209, x206); fiat_p384_addcarryx_u32(&x222, &x223, x221, x207, x204); fiat_p384_addcarryx_u32(&x224, &x225, x223, x205, x202); fiat_p384_addcarryx_u32(&x226, &x227, x225, x203, x200); fiat_p384_addcarryx_u32(&x228, &x229, x227, x201, x198); fiat_p384_addcarryx_u32(&x230, &x231, x229, x199, x196); x232 = (x231 + x197); fiat_p384_addcarryx_u32(&x233, &x234, 0x0, x170, x214); fiat_p384_addcarryx_u32(&x235, &x236, x234, x172, x215); fiat_p384_addcarryx_u32(&x237, &x238, x236, x174, 0x0); fiat_p384_addcarryx_u32(&x239, &x240, x238, x176, x212); fiat_p384_addcarryx_u32(&x241, &x242, x240, x178, x216); fiat_p384_addcarryx_u32(&x243, &x244, x242, x180, x218); fiat_p384_addcarryx_u32(&x245, &x246, x244, x182, x220); fiat_p384_addcarryx_u32(&x247, &x248, x246, x184, x222); fiat_p384_addcarryx_u32(&x249, &x250, x248, x186, x224); fiat_p384_addcarryx_u32(&x251, &x252, x250, x188, x226); fiat_p384_addcarryx_u32(&x253, &x254, x252, x190, x228); fiat_p384_addcarryx_u32(&x255, &x256, x254, x192, x230); fiat_p384_addcarryx_u32(&x257, &x258, x256, x194, x232); x259 = ((uint32_t)x258 + x195); fiat_p384_mulx_u32(&x260, &x261, x2, (arg2[11])); fiat_p384_mulx_u32(&x262, &x263, x2, (arg2[10])); fiat_p384_mulx_u32(&x264, &x265, x2, (arg2[9])); fiat_p384_mulx_u32(&x266, &x267, x2, (arg2[8])); fiat_p384_mulx_u32(&x268, &x269, x2, (arg2[7])); fiat_p384_mulx_u32(&x270, &x271, x2, (arg2[6])); fiat_p384_mulx_u32(&x272, &x273, x2, (arg2[5])); fiat_p384_mulx_u32(&x274, &x275, x2, (arg2[4])); fiat_p384_mulx_u32(&x276, &x277, x2, (arg2[3])); fiat_p384_mulx_u32(&x278, &x279, x2, (arg2[2])); fiat_p384_mulx_u32(&x280, &x281, x2, (arg2[1])); fiat_p384_mulx_u32(&x282, &x283, x2, (arg2[0])); fiat_p384_addcarryx_u32(&x284, &x285, 0x0, x283, x280); fiat_p384_addcarryx_u32(&x286, &x287, x285, x281, x278); fiat_p384_addcarryx_u32(&x288, &x289, x287, x279, x276); fiat_p384_addcarryx_u32(&x290, &x291, x289, x277, x274); fiat_p384_addcarryx_u32(&x292, &x293, x291, x275, x272); fiat_p384_addcarryx_u32(&x294, &x295, x293, x273, x270); fiat_p384_addcarryx_u32(&x296, &x297, x295, x271, x268); fiat_p384_addcarryx_u32(&x298, &x299, x297, x269, x266); fiat_p384_addcarryx_u32(&x300, &x301, x299, x267, x264); fiat_p384_addcarryx_u32(&x302, &x303, x301, x265, x262); fiat_p384_addcarryx_u32(&x304, &x305, x303, x263, x260); x306 = (x305 + x261); fiat_p384_addcarryx_u32(&x307, &x308, 0x0, x235, x282); fiat_p384_addcarryx_u32(&x309, &x310, x308, x237, x284); fiat_p384_addcarryx_u32(&x311, &x312, x310, x239, x286); fiat_p384_addcarryx_u32(&x313, &x314, x312, x241, x288); fiat_p384_addcarryx_u32(&x315, &x316, x314, x243, x290); fiat_p384_addcarryx_u32(&x317, &x318, x316, x245, x292); fiat_p384_addcarryx_u32(&x319, &x320, x318, x247, x294); fiat_p384_addcarryx_u32(&x321, &x322, x320, x249, x296); fiat_p384_addcarryx_u32(&x323, &x324, x322, x251, x298); fiat_p384_addcarryx_u32(&x325, &x326, x324, x253, x300); fiat_p384_addcarryx_u32(&x327, &x328, x326, x255, x302); fiat_p384_addcarryx_u32(&x329, &x330, x328, x257, x304); fiat_p384_addcarryx_u32(&x331, &x332, x330, x259, x306); fiat_p384_mulx_u32(&x333, &x334, x307, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x335, &x336, x307, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x337, &x338, x307, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x339, &x340, x307, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x341, &x342, x307, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x343, &x344, x307, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x345, &x346, x307, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x347, &x348, x307, UINT32_C(0xfffffffe)); fiat_p384_mulx_u32(&x349, &x350, x307, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x351, &x352, x307, UINT32_C(0xffffffff)); fiat_p384_addcarryx_u32(&x353, &x354, 0x0, x350, x347); fiat_p384_addcarryx_u32(&x355, &x356, x354, x348, x345); fiat_p384_addcarryx_u32(&x357, &x358, x356, x346, x343); fiat_p384_addcarryx_u32(&x359, &x360, x358, x344, x341); fiat_p384_addcarryx_u32(&x361, &x362, x360, x342, x339); fiat_p384_addcarryx_u32(&x363, &x364, x362, x340, x337); fiat_p384_addcarryx_u32(&x365, &x366, x364, x338, x335); fiat_p384_addcarryx_u32(&x367, &x368, x366, x336, x333); x369 = (x368 + x334); fiat_p384_addcarryx_u32(&x370, &x371, 0x0, x307, x351); fiat_p384_addcarryx_u32(&x372, &x373, x371, x309, x352); fiat_p384_addcarryx_u32(&x374, &x375, x373, x311, 0x0); fiat_p384_addcarryx_u32(&x376, &x377, x375, x313, x349); fiat_p384_addcarryx_u32(&x378, &x379, x377, x315, x353); fiat_p384_addcarryx_u32(&x380, &x381, x379, x317, x355); fiat_p384_addcarryx_u32(&x382, &x383, x381, x319, x357); fiat_p384_addcarryx_u32(&x384, &x385, x383, x321, x359); fiat_p384_addcarryx_u32(&x386, &x387, x385, x323, x361); fiat_p384_addcarryx_u32(&x388, &x389, x387, x325, x363); fiat_p384_addcarryx_u32(&x390, &x391, x389, x327, x365); fiat_p384_addcarryx_u32(&x392, &x393, x391, x329, x367); fiat_p384_addcarryx_u32(&x394, &x395, x393, x331, x369); x396 = ((uint32_t)x395 + x332); fiat_p384_mulx_u32(&x397, &x398, x3, (arg2[11])); fiat_p384_mulx_u32(&x399, &x400, x3, (arg2[10])); fiat_p384_mulx_u32(&x401, &x402, x3, (arg2[9])); fiat_p384_mulx_u32(&x403, &x404, x3, (arg2[8])); fiat_p384_mulx_u32(&x405, &x406, x3, (arg2[7])); fiat_p384_mulx_u32(&x407, &x408, x3, (arg2[6])); fiat_p384_mulx_u32(&x409, &x410, x3, (arg2[5])); fiat_p384_mulx_u32(&x411, &x412, x3, (arg2[4])); fiat_p384_mulx_u32(&x413, &x414, x3, (arg2[3])); fiat_p384_mulx_u32(&x415, &x416, x3, (arg2[2])); fiat_p384_mulx_u32(&x417, &x418, x3, (arg2[1])); fiat_p384_mulx_u32(&x419, &x420, x3, (arg2[0])); fiat_p384_addcarryx_u32(&x421, &x422, 0x0, x420, x417); fiat_p384_addcarryx_u32(&x423, &x424, x422, x418, x415); fiat_p384_addcarryx_u32(&x425, &x426, x424, x416, x413); fiat_p384_addcarryx_u32(&x427, &x428, x426, x414, x411); fiat_p384_addcarryx_u32(&x429, &x430, x428, x412, x409); fiat_p384_addcarryx_u32(&x431, &x432, x430, x410, x407); fiat_p384_addcarryx_u32(&x433, &x434, x432, x408, x405); fiat_p384_addcarryx_u32(&x435, &x436, x434, x406, x403); fiat_p384_addcarryx_u32(&x437, &x438, x436, x404, x401); fiat_p384_addcarryx_u32(&x439, &x440, x438, x402, x399); fiat_p384_addcarryx_u32(&x441, &x442, x440, x400, x397); x443 = (x442 + x398); fiat_p384_addcarryx_u32(&x444, &x445, 0x0, x372, x419); fiat_p384_addcarryx_u32(&x446, &x447, x445, x374, x421); fiat_p384_addcarryx_u32(&x448, &x449, x447, x376, x423); fiat_p384_addcarryx_u32(&x450, &x451, x449, x378, x425); fiat_p384_addcarryx_u32(&x452, &x453, x451, x380, x427); fiat_p384_addcarryx_u32(&x454, &x455, x453, x382, x429); fiat_p384_addcarryx_u32(&x456, &x457, x455, x384, x431); fiat_p384_addcarryx_u32(&x458, &x459, x457, x386, x433); fiat_p384_addcarryx_u32(&x460, &x461, x459, x388, x435); fiat_p384_addcarryx_u32(&x462, &x463, x461, x390, x437); fiat_p384_addcarryx_u32(&x464, &x465, x463, x392, x439); fiat_p384_addcarryx_u32(&x466, &x467, x465, x394, x441); fiat_p384_addcarryx_u32(&x468, &x469, x467, x396, x443); fiat_p384_mulx_u32(&x470, &x471, x444, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x472, &x473, x444, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x474, &x475, x444, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x476, &x477, x444, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x478, &x479, x444, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x480, &x481, x444, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x482, &x483, x444, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x484, &x485, x444, UINT32_C(0xfffffffe)); fiat_p384_mulx_u32(&x486, &x487, x444, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x488, &x489, x444, UINT32_C(0xffffffff)); fiat_p384_addcarryx_u32(&x490, &x491, 0x0, x487, x484); fiat_p384_addcarryx_u32(&x492, &x493, x491, x485, x482); fiat_p384_addcarryx_u32(&x494, &x495, x493, x483, x480); fiat_p384_addcarryx_u32(&x496, &x497, x495, x481, x478); fiat_p384_addcarryx_u32(&x498, &x499, x497, x479, x476); fiat_p384_addcarryx_u32(&x500, &x501, x499, x477, x474); fiat_p384_addcarryx_u32(&x502, &x503, x501, x475, x472); fiat_p384_addcarryx_u32(&x504, &x505, x503, x473, x470); x506 = (x505 + x471); fiat_p384_addcarryx_u32(&x507, &x508, 0x0, x444, x488); fiat_p384_addcarryx_u32(&x509, &x510, x508, x446, x489); fiat_p384_addcarryx_u32(&x511, &x512, x510, x448, 0x0); fiat_p384_addcarryx_u32(&x513, &x514, x512, x450, x486); fiat_p384_addcarryx_u32(&x515, &x516, x514, x452, x490); fiat_p384_addcarryx_u32(&x517, &x518, x516, x454, x492); fiat_p384_addcarryx_u32(&x519, &x520, x518, x456, x494); fiat_p384_addcarryx_u32(&x521, &x522, x520, x458, x496); fiat_p384_addcarryx_u32(&x523, &x524, x522, x460, x498); fiat_p384_addcarryx_u32(&x525, &x526, x524, x462, x500); fiat_p384_addcarryx_u32(&x527, &x528, x526, x464, x502); fiat_p384_addcarryx_u32(&x529, &x530, x528, x466, x504); fiat_p384_addcarryx_u32(&x531, &x532, x530, x468, x506); x533 = ((uint32_t)x532 + x469); fiat_p384_mulx_u32(&x534, &x535, x4, (arg2[11])); fiat_p384_mulx_u32(&x536, &x537, x4, (arg2[10])); fiat_p384_mulx_u32(&x538, &x539, x4, (arg2[9])); fiat_p384_mulx_u32(&x540, &x541, x4, (arg2[8])); fiat_p384_mulx_u32(&x542, &x543, x4, (arg2[7])); fiat_p384_mulx_u32(&x544, &x545, x4, (arg2[6])); fiat_p384_mulx_u32(&x546, &x547, x4, (arg2[5])); fiat_p384_mulx_u32(&x548, &x549, x4, (arg2[4])); fiat_p384_mulx_u32(&x550, &x551, x4, (arg2[3])); fiat_p384_mulx_u32(&x552, &x553, x4, (arg2[2])); fiat_p384_mulx_u32(&x554, &x555, x4, (arg2[1])); fiat_p384_mulx_u32(&x556, &x557, x4, (arg2[0])); fiat_p384_addcarryx_u32(&x558, &x559, 0x0, x557, x554); fiat_p384_addcarryx_u32(&x560, &x561, x559, x555, x552); fiat_p384_addcarryx_u32(&x562, &x563, x561, x553, x550); fiat_p384_addcarryx_u32(&x564, &x565, x563, x551, x548); fiat_p384_addcarryx_u32(&x566, &x567, x565, x549, x546); fiat_p384_addcarryx_u32(&x568, &x569, x567, x547, x544); fiat_p384_addcarryx_u32(&x570, &x571, x569, x545, x542); fiat_p384_addcarryx_u32(&x572, &x573, x571, x543, x540); fiat_p384_addcarryx_u32(&x574, &x575, x573, x541, x538); fiat_p384_addcarryx_u32(&x576, &x577, x575, x539, x536); fiat_p384_addcarryx_u32(&x578, &x579, x577, x537, x534); x580 = (x579 + x535); fiat_p384_addcarryx_u32(&x581, &x582, 0x0, x509, x556); fiat_p384_addcarryx_u32(&x583, &x584, x582, x511, x558); fiat_p384_addcarryx_u32(&x585, &x586, x584, x513, x560); fiat_p384_addcarryx_u32(&x587, &x588, x586, x515, x562); fiat_p384_addcarryx_u32(&x589, &x590, x588, x517, x564); fiat_p384_addcarryx_u32(&x591, &x592, x590, x519, x566); fiat_p384_addcarryx_u32(&x593, &x594, x592, x521, x568); fiat_p384_addcarryx_u32(&x595, &x596, x594, x523, x570); fiat_p384_addcarryx_u32(&x597, &x598, x596, x525, x572); fiat_p384_addcarryx_u32(&x599, &x600, x598, x527, x574); fiat_p384_addcarryx_u32(&x601, &x602, x600, x529, x576); fiat_p384_addcarryx_u32(&x603, &x604, x602, x531, x578); fiat_p384_addcarryx_u32(&x605, &x606, x604, x533, x580); fiat_p384_mulx_u32(&x607, &x608, x581, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x609, &x610, x581, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x611, &x612, x581, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x613, &x614, x581, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x615, &x616, x581, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x617, &x618, x581, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x619, &x620, x581, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x621, &x622, x581, UINT32_C(0xfffffffe)); fiat_p384_mulx_u32(&x623, &x624, x581, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x625, &x626, x581, UINT32_C(0xffffffff)); fiat_p384_addcarryx_u32(&x627, &x628, 0x0, x624, x621); fiat_p384_addcarryx_u32(&x629, &x630, x628, x622, x619); fiat_p384_addcarryx_u32(&x631, &x632, x630, x620, x617); fiat_p384_addcarryx_u32(&x633, &x634, x632, x618, x615); fiat_p384_addcarryx_u32(&x635, &x636, x634, x616, x613); fiat_p384_addcarryx_u32(&x637, &x638, x636, x614, x611); fiat_p384_addcarryx_u32(&x639, &x640, x638, x612, x609); fiat_p384_addcarryx_u32(&x641, &x642, x640, x610, x607); x643 = (x642 + x608); fiat_p384_addcarryx_u32(&x644, &x645, 0x0, x581, x625); fiat_p384_addcarryx_u32(&x646, &x647, x645, x583, x626); fiat_p384_addcarryx_u32(&x648, &x649, x647, x585, 0x0); fiat_p384_addcarryx_u32(&x650, &x651, x649, x587, x623); fiat_p384_addcarryx_u32(&x652, &x653, x651, x589, x627); fiat_p384_addcarryx_u32(&x654, &x655, x653, x591, x629); fiat_p384_addcarryx_u32(&x656, &x657, x655, x593, x631); fiat_p384_addcarryx_u32(&x658, &x659, x657, x595, x633); fiat_p384_addcarryx_u32(&x660, &x661, x659, x597, x635); fiat_p384_addcarryx_u32(&x662, &x663, x661, x599, x637); fiat_p384_addcarryx_u32(&x664, &x665, x663, x601, x639); fiat_p384_addcarryx_u32(&x666, &x667, x665, x603, x641); fiat_p384_addcarryx_u32(&x668, &x669, x667, x605, x643); x670 = ((uint32_t)x669 + x606); fiat_p384_mulx_u32(&x671, &x672, x5, (arg2[11])); fiat_p384_mulx_u32(&x673, &x674, x5, (arg2[10])); fiat_p384_mulx_u32(&x675, &x676, x5, (arg2[9])); fiat_p384_mulx_u32(&x677, &x678, x5, (arg2[8])); fiat_p384_mulx_u32(&x679, &x680, x5, (arg2[7])); fiat_p384_mulx_u32(&x681, &x682, x5, (arg2[6])); fiat_p384_mulx_u32(&x683, &x684, x5, (arg2[5])); fiat_p384_mulx_u32(&x685, &x686, x5, (arg2[4])); fiat_p384_mulx_u32(&x687, &x688, x5, (arg2[3])); fiat_p384_mulx_u32(&x689, &x690, x5, (arg2[2])); fiat_p384_mulx_u32(&x691, &x692, x5, (arg2[1])); fiat_p384_mulx_u32(&x693, &x694, x5, (arg2[0])); fiat_p384_addcarryx_u32(&x695, &x696, 0x0, x694, x691); fiat_p384_addcarryx_u32(&x697, &x698, x696, x692, x689); fiat_p384_addcarryx_u32(&x699, &x700, x698, x690, x687); fiat_p384_addcarryx_u32(&x701, &x702, x700, x688, x685); fiat_p384_addcarryx_u32(&x703, &x704, x702, x686, x683); fiat_p384_addcarryx_u32(&x705, &x706, x704, x684, x681); fiat_p384_addcarryx_u32(&x707, &x708, x706, x682, x679); fiat_p384_addcarryx_u32(&x709, &x710, x708, x680, x677); fiat_p384_addcarryx_u32(&x711, &x712, x710, x678, x675); fiat_p384_addcarryx_u32(&x713, &x714, x712, x676, x673); fiat_p384_addcarryx_u32(&x715, &x716, x714, x674, x671); x717 = (x716 + x672); fiat_p384_addcarryx_u32(&x718, &x719, 0x0, x646, x693); fiat_p384_addcarryx_u32(&x720, &x721, x719, x648, x695); fiat_p384_addcarryx_u32(&x722, &x723, x721, x650, x697); fiat_p384_addcarryx_u32(&x724, &x725, x723, x652, x699); fiat_p384_addcarryx_u32(&x726, &x727, x725, x654, x701); fiat_p384_addcarryx_u32(&x728, &x729, x727, x656, x703); fiat_p384_addcarryx_u32(&x730, &x731, x729, x658, x705); fiat_p384_addcarryx_u32(&x732, &x733, x731, x660, x707); fiat_p384_addcarryx_u32(&x734, &x735, x733, x662, x709); fiat_p384_addcarryx_u32(&x736, &x737, x735, x664, x711); fiat_p384_addcarryx_u32(&x738, &x739, x737, x666, x713); fiat_p384_addcarryx_u32(&x740, &x741, x739, x668, x715); fiat_p384_addcarryx_u32(&x742, &x743, x741, x670, x717); fiat_p384_mulx_u32(&x744, &x745, x718, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x746, &x747, x718, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x748, &x749, x718, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x750, &x751, x718, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x752, &x753, x718, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x754, &x755, x718, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x756, &x757, x718, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x758, &x759, x718, UINT32_C(0xfffffffe)); fiat_p384_mulx_u32(&x760, &x761, x718, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x762, &x763, x718, UINT32_C(0xffffffff)); fiat_p384_addcarryx_u32(&x764, &x765, 0x0, x761, x758); fiat_p384_addcarryx_u32(&x766, &x767, x765, x759, x756); fiat_p384_addcarryx_u32(&x768, &x769, x767, x757, x754); fiat_p384_addcarryx_u32(&x770, &x771, x769, x755, x752); fiat_p384_addcarryx_u32(&x772, &x773, x771, x753, x750); fiat_p384_addcarryx_u32(&x774, &x775, x773, x751, x748); fiat_p384_addcarryx_u32(&x776, &x777, x775, x749, x746); fiat_p384_addcarryx_u32(&x778, &x779, x777, x747, x744); x780 = (x779 + x745); fiat_p384_addcarryx_u32(&x781, &x782, 0x0, x718, x762); fiat_p384_addcarryx_u32(&x783, &x784, x782, x720, x763); fiat_p384_addcarryx_u32(&x785, &x786, x784, x722, 0x0); fiat_p384_addcarryx_u32(&x787, &x788, x786, x724, x760); fiat_p384_addcarryx_u32(&x789, &x790, x788, x726, x764); fiat_p384_addcarryx_u32(&x791, &x792, x790, x728, x766); fiat_p384_addcarryx_u32(&x793, &x794, x792, x730, x768); fiat_p384_addcarryx_u32(&x795, &x796, x794, x732, x770); fiat_p384_addcarryx_u32(&x797, &x798, x796, x734, x772); fiat_p384_addcarryx_u32(&x799, &x800, x798, x736, x774); fiat_p384_addcarryx_u32(&x801, &x802, x800, x738, x776); fiat_p384_addcarryx_u32(&x803, &x804, x802, x740, x778); fiat_p384_addcarryx_u32(&x805, &x806, x804, x742, x780); x807 = ((uint32_t)x806 + x743); fiat_p384_mulx_u32(&x808, &x809, x6, (arg2[11])); fiat_p384_mulx_u32(&x810, &x811, x6, (arg2[10])); fiat_p384_mulx_u32(&x812, &x813, x6, (arg2[9])); fiat_p384_mulx_u32(&x814, &x815, x6, (arg2[8])); fiat_p384_mulx_u32(&x816, &x817, x6, (arg2[7])); fiat_p384_mulx_u32(&x818, &x819, x6, (arg2[6])); fiat_p384_mulx_u32(&x820, &x821, x6, (arg2[5])); fiat_p384_mulx_u32(&x822, &x823, x6, (arg2[4])); fiat_p384_mulx_u32(&x824, &x825, x6, (arg2[3])); fiat_p384_mulx_u32(&x826, &x827, x6, (arg2[2])); fiat_p384_mulx_u32(&x828, &x829, x6, (arg2[1])); fiat_p384_mulx_u32(&x830, &x831, x6, (arg2[0])); fiat_p384_addcarryx_u32(&x832, &x833, 0x0, x831, x828); fiat_p384_addcarryx_u32(&x834, &x835, x833, x829, x826); fiat_p384_addcarryx_u32(&x836, &x837, x835, x827, x824); fiat_p384_addcarryx_u32(&x838, &x839, x837, x825, x822); fiat_p384_addcarryx_u32(&x840, &x841, x839, x823, x820); fiat_p384_addcarryx_u32(&x842, &x843, x841, x821, x818); fiat_p384_addcarryx_u32(&x844, &x845, x843, x819, x816); fiat_p384_addcarryx_u32(&x846, &x847, x845, x817, x814); fiat_p384_addcarryx_u32(&x848, &x849, x847, x815, x812); fiat_p384_addcarryx_u32(&x850, &x851, x849, x813, x810); fiat_p384_addcarryx_u32(&x852, &x853, x851, x811, x808); x854 = (x853 + x809); fiat_p384_addcarryx_u32(&x855, &x856, 0x0, x783, x830); fiat_p384_addcarryx_u32(&x857, &x858, x856, x785, x832); fiat_p384_addcarryx_u32(&x859, &x860, x858, x787, x834); fiat_p384_addcarryx_u32(&x861, &x862, x860, x789, x836); fiat_p384_addcarryx_u32(&x863, &x864, x862, x791, x838); fiat_p384_addcarryx_u32(&x865, &x866, x864, x793, x840); fiat_p384_addcarryx_u32(&x867, &x868, x866, x795, x842); fiat_p384_addcarryx_u32(&x869, &x870, x868, x797, x844); fiat_p384_addcarryx_u32(&x871, &x872, x870, x799, x846); fiat_p384_addcarryx_u32(&x873, &x874, x872, x801, x848); fiat_p384_addcarryx_u32(&x875, &x876, x874, x803, x850); fiat_p384_addcarryx_u32(&x877, &x878, x876, x805, x852); fiat_p384_addcarryx_u32(&x879, &x880, x878, x807, x854); fiat_p384_mulx_u32(&x881, &x882, x855, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x883, &x884, x855, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x885, &x886, x855, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x887, &x888, x855, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x889, &x890, x855, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x891, &x892, x855, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x893, &x894, x855, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x895, &x896, x855, UINT32_C(0xfffffffe)); fiat_p384_mulx_u32(&x897, &x898, x855, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x899, &x900, x855, UINT32_C(0xffffffff)); fiat_p384_addcarryx_u32(&x901, &x902, 0x0, x898, x895); fiat_p384_addcarryx_u32(&x903, &x904, x902, x896, x893); fiat_p384_addcarryx_u32(&x905, &x906, x904, x894, x891); fiat_p384_addcarryx_u32(&x907, &x908, x906, x892, x889); fiat_p384_addcarryx_u32(&x909, &x910, x908, x890, x887); fiat_p384_addcarryx_u32(&x911, &x912, x910, x888, x885); fiat_p384_addcarryx_u32(&x913, &x914, x912, x886, x883); fiat_p384_addcarryx_u32(&x915, &x916, x914, x884, x881); x917 = (x916 + x882); fiat_p384_addcarryx_u32(&x918, &x919, 0x0, x855, x899); fiat_p384_addcarryx_u32(&x920, &x921, x919, x857, x900); fiat_p384_addcarryx_u32(&x922, &x923, x921, x859, 0x0); fiat_p384_addcarryx_u32(&x924, &x925, x923, x861, x897); fiat_p384_addcarryx_u32(&x926, &x927, x925, x863, x901); fiat_p384_addcarryx_u32(&x928, &x929, x927, x865, x903); fiat_p384_addcarryx_u32(&x930, &x931, x929, x867, x905); fiat_p384_addcarryx_u32(&x932, &x933, x931, x869, x907); fiat_p384_addcarryx_u32(&x934, &x935, x933, x871, x909); fiat_p384_addcarryx_u32(&x936, &x937, x935, x873, x911); fiat_p384_addcarryx_u32(&x938, &x939, x937, x875, x913); fiat_p384_addcarryx_u32(&x940, &x941, x939, x877, x915); fiat_p384_addcarryx_u32(&x942, &x943, x941, x879, x917); x944 = ((uint32_t)x943 + x880); fiat_p384_mulx_u32(&x945, &x946, x7, (arg2[11])); fiat_p384_mulx_u32(&x947, &x948, x7, (arg2[10])); fiat_p384_mulx_u32(&x949, &x950, x7, (arg2[9])); fiat_p384_mulx_u32(&x951, &x952, x7, (arg2[8])); fiat_p384_mulx_u32(&x953, &x954, x7, (arg2[7])); fiat_p384_mulx_u32(&x955, &x956, x7, (arg2[6])); fiat_p384_mulx_u32(&x957, &x958, x7, (arg2[5])); fiat_p384_mulx_u32(&x959, &x960, x7, (arg2[4])); fiat_p384_mulx_u32(&x961, &x962, x7, (arg2[3])); fiat_p384_mulx_u32(&x963, &x964, x7, (arg2[2])); fiat_p384_mulx_u32(&x965, &x966, x7, (arg2[1])); fiat_p384_mulx_u32(&x967, &x968, x7, (arg2[0])); fiat_p384_addcarryx_u32(&x969, &x970, 0x0, x968, x965); fiat_p384_addcarryx_u32(&x971, &x972, x970, x966, x963); fiat_p384_addcarryx_u32(&x973, &x974, x972, x964, x961); fiat_p384_addcarryx_u32(&x975, &x976, x974, x962, x959); fiat_p384_addcarryx_u32(&x977, &x978, x976, x960, x957); fiat_p384_addcarryx_u32(&x979, &x980, x978, x958, x955); fiat_p384_addcarryx_u32(&x981, &x982, x980, x956, x953); fiat_p384_addcarryx_u32(&x983, &x984, x982, x954, x951); fiat_p384_addcarryx_u32(&x985, &x986, x984, x952, x949); fiat_p384_addcarryx_u32(&x987, &x988, x986, x950, x947); fiat_p384_addcarryx_u32(&x989, &x990, x988, x948, x945); x991 = (x990 + x946); fiat_p384_addcarryx_u32(&x992, &x993, 0x0, x920, x967); fiat_p384_addcarryx_u32(&x994, &x995, x993, x922, x969); fiat_p384_addcarryx_u32(&x996, &x997, x995, x924, x971); fiat_p384_addcarryx_u32(&x998, &x999, x997, x926, x973); fiat_p384_addcarryx_u32(&x1000, &x1001, x999, x928, x975); fiat_p384_addcarryx_u32(&x1002, &x1003, x1001, x930, x977); fiat_p384_addcarryx_u32(&x1004, &x1005, x1003, x932, x979); fiat_p384_addcarryx_u32(&x1006, &x1007, x1005, x934, x981); fiat_p384_addcarryx_u32(&x1008, &x1009, x1007, x936, x983); fiat_p384_addcarryx_u32(&x1010, &x1011, x1009, x938, x985); fiat_p384_addcarryx_u32(&x1012, &x1013, x1011, x940, x987); fiat_p384_addcarryx_u32(&x1014, &x1015, x1013, x942, x989); fiat_p384_addcarryx_u32(&x1016, &x1017, x1015, x944, x991); fiat_p384_mulx_u32(&x1018, &x1019, x992, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x1020, &x1021, x992, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x1022, &x1023, x992, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x1024, &x1025, x992, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x1026, &x1027, x992, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x1028, &x1029, x992, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x1030, &x1031, x992, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x1032, &x1033, x992, UINT32_C(0xfffffffe)); fiat_p384_mulx_u32(&x1034, &x1035, x992, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x1036, &x1037, x992, UINT32_C(0xffffffff)); fiat_p384_addcarryx_u32(&x1038, &x1039, 0x0, x1035, x1032); fiat_p384_addcarryx_u32(&x1040, &x1041, x1039, x1033, x1030); fiat_p384_addcarryx_u32(&x1042, &x1043, x1041, x1031, x1028); fiat_p384_addcarryx_u32(&x1044, &x1045, x1043, x1029, x1026); fiat_p384_addcarryx_u32(&x1046, &x1047, x1045, x1027, x1024); fiat_p384_addcarryx_u32(&x1048, &x1049, x1047, x1025, x1022); fiat_p384_addcarryx_u32(&x1050, &x1051, x1049, x1023, x1020); fiat_p384_addcarryx_u32(&x1052, &x1053, x1051, x1021, x1018); x1054 = (x1053 + x1019); fiat_p384_addcarryx_u32(&x1055, &x1056, 0x0, x992, x1036); fiat_p384_addcarryx_u32(&x1057, &x1058, x1056, x994, x1037); fiat_p384_addcarryx_u32(&x1059, &x1060, x1058, x996, 0x0); fiat_p384_addcarryx_u32(&x1061, &x1062, x1060, x998, x1034); fiat_p384_addcarryx_u32(&x1063, &x1064, x1062, x1000, x1038); fiat_p384_addcarryx_u32(&x1065, &x1066, x1064, x1002, x1040); fiat_p384_addcarryx_u32(&x1067, &x1068, x1066, x1004, x1042); fiat_p384_addcarryx_u32(&x1069, &x1070, x1068, x1006, x1044); fiat_p384_addcarryx_u32(&x1071, &x1072, x1070, x1008, x1046); fiat_p384_addcarryx_u32(&x1073, &x1074, x1072, x1010, x1048); fiat_p384_addcarryx_u32(&x1075, &x1076, x1074, x1012, x1050); fiat_p384_addcarryx_u32(&x1077, &x1078, x1076, x1014, x1052); fiat_p384_addcarryx_u32(&x1079, &x1080, x1078, x1016, x1054); x1081 = ((uint32_t)x1080 + x1017); fiat_p384_mulx_u32(&x1082, &x1083, x8, (arg2[11])); fiat_p384_mulx_u32(&x1084, &x1085, x8, (arg2[10])); fiat_p384_mulx_u32(&x1086, &x1087, x8, (arg2[9])); fiat_p384_mulx_u32(&x1088, &x1089, x8, (arg2[8])); fiat_p384_mulx_u32(&x1090, &x1091, x8, (arg2[7])); fiat_p384_mulx_u32(&x1092, &x1093, x8, (arg2[6])); fiat_p384_mulx_u32(&x1094, &x1095, x8, (arg2[5])); fiat_p384_mulx_u32(&x1096, &x1097, x8, (arg2[4])); fiat_p384_mulx_u32(&x1098, &x1099, x8, (arg2[3])); fiat_p384_mulx_u32(&x1100, &x1101, x8, (arg2[2])); fiat_p384_mulx_u32(&x1102, &x1103, x8, (arg2[1])); fiat_p384_mulx_u32(&x1104, &x1105, x8, (arg2[0])); fiat_p384_addcarryx_u32(&x1106, &x1107, 0x0, x1105, x1102); fiat_p384_addcarryx_u32(&x1108, &x1109, x1107, x1103, x1100); fiat_p384_addcarryx_u32(&x1110, &x1111, x1109, x1101, x1098); fiat_p384_addcarryx_u32(&x1112, &x1113, x1111, x1099, x1096); fiat_p384_addcarryx_u32(&x1114, &x1115, x1113, x1097, x1094); fiat_p384_addcarryx_u32(&x1116, &x1117, x1115, x1095, x1092); fiat_p384_addcarryx_u32(&x1118, &x1119, x1117, x1093, x1090); fiat_p384_addcarryx_u32(&x1120, &x1121, x1119, x1091, x1088); fiat_p384_addcarryx_u32(&x1122, &x1123, x1121, x1089, x1086); fiat_p384_addcarryx_u32(&x1124, &x1125, x1123, x1087, x1084); fiat_p384_addcarryx_u32(&x1126, &x1127, x1125, x1085, x1082); x1128 = (x1127 + x1083); fiat_p384_addcarryx_u32(&x1129, &x1130, 0x0, x1057, x1104); fiat_p384_addcarryx_u32(&x1131, &x1132, x1130, x1059, x1106); fiat_p384_addcarryx_u32(&x1133, &x1134, x1132, x1061, x1108); fiat_p384_addcarryx_u32(&x1135, &x1136, x1134, x1063, x1110); fiat_p384_addcarryx_u32(&x1137, &x1138, x1136, x1065, x1112); fiat_p384_addcarryx_u32(&x1139, &x1140, x1138, x1067, x1114); fiat_p384_addcarryx_u32(&x1141, &x1142, x1140, x1069, x1116); fiat_p384_addcarryx_u32(&x1143, &x1144, x1142, x1071, x1118); fiat_p384_addcarryx_u32(&x1145, &x1146, x1144, x1073, x1120); fiat_p384_addcarryx_u32(&x1147, &x1148, x1146, x1075, x1122); fiat_p384_addcarryx_u32(&x1149, &x1150, x1148, x1077, x1124); fiat_p384_addcarryx_u32(&x1151, &x1152, x1150, x1079, x1126); fiat_p384_addcarryx_u32(&x1153, &x1154, x1152, x1081, x1128); fiat_p384_mulx_u32(&x1155, &x1156, x1129, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x1157, &x1158, x1129, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x1159, &x1160, x1129, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x1161, &x1162, x1129, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x1163, &x1164, x1129, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x1165, &x1166, x1129, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x1167, &x1168, x1129, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x1169, &x1170, x1129, UINT32_C(0xfffffffe)); fiat_p384_mulx_u32(&x1171, &x1172, x1129, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x1173, &x1174, x1129, UINT32_C(0xffffffff)); fiat_p384_addcarryx_u32(&x1175, &x1176, 0x0, x1172, x1169); fiat_p384_addcarryx_u32(&x1177, &x1178, x1176, x1170, x1167); fiat_p384_addcarryx_u32(&x1179, &x1180, x1178, x1168, x1165); fiat_p384_addcarryx_u32(&x1181, &x1182, x1180, x1166, x1163); fiat_p384_addcarryx_u32(&x1183, &x1184, x1182, x1164, x1161); fiat_p384_addcarryx_u32(&x1185, &x1186, x1184, x1162, x1159); fiat_p384_addcarryx_u32(&x1187, &x1188, x1186, x1160, x1157); fiat_p384_addcarryx_u32(&x1189, &x1190, x1188, x1158, x1155); x1191 = (x1190 + x1156); fiat_p384_addcarryx_u32(&x1192, &x1193, 0x0, x1129, x1173); fiat_p384_addcarryx_u32(&x1194, &x1195, x1193, x1131, x1174); fiat_p384_addcarryx_u32(&x1196, &x1197, x1195, x1133, 0x0); fiat_p384_addcarryx_u32(&x1198, &x1199, x1197, x1135, x1171); fiat_p384_addcarryx_u32(&x1200, &x1201, x1199, x1137, x1175); fiat_p384_addcarryx_u32(&x1202, &x1203, x1201, x1139, x1177); fiat_p384_addcarryx_u32(&x1204, &x1205, x1203, x1141, x1179); fiat_p384_addcarryx_u32(&x1206, &x1207, x1205, x1143, x1181); fiat_p384_addcarryx_u32(&x1208, &x1209, x1207, x1145, x1183); fiat_p384_addcarryx_u32(&x1210, &x1211, x1209, x1147, x1185); fiat_p384_addcarryx_u32(&x1212, &x1213, x1211, x1149, x1187); fiat_p384_addcarryx_u32(&x1214, &x1215, x1213, x1151, x1189); fiat_p384_addcarryx_u32(&x1216, &x1217, x1215, x1153, x1191); x1218 = ((uint32_t)x1217 + x1154); fiat_p384_mulx_u32(&x1219, &x1220, x9, (arg2[11])); fiat_p384_mulx_u32(&x1221, &x1222, x9, (arg2[10])); fiat_p384_mulx_u32(&x1223, &x1224, x9, (arg2[9])); fiat_p384_mulx_u32(&x1225, &x1226, x9, (arg2[8])); fiat_p384_mulx_u32(&x1227, &x1228, x9, (arg2[7])); fiat_p384_mulx_u32(&x1229, &x1230, x9, (arg2[6])); fiat_p384_mulx_u32(&x1231, &x1232, x9, (arg2[5])); fiat_p384_mulx_u32(&x1233, &x1234, x9, (arg2[4])); fiat_p384_mulx_u32(&x1235, &x1236, x9, (arg2[3])); fiat_p384_mulx_u32(&x1237, &x1238, x9, (arg2[2])); fiat_p384_mulx_u32(&x1239, &x1240, x9, (arg2[1])); fiat_p384_mulx_u32(&x1241, &x1242, x9, (arg2[0])); fiat_p384_addcarryx_u32(&x1243, &x1244, 0x0, x1242, x1239); fiat_p384_addcarryx_u32(&x1245, &x1246, x1244, x1240, x1237); fiat_p384_addcarryx_u32(&x1247, &x1248, x1246, x1238, x1235); fiat_p384_addcarryx_u32(&x1249, &x1250, x1248, x1236, x1233); fiat_p384_addcarryx_u32(&x1251, &x1252, x1250, x1234, x1231); fiat_p384_addcarryx_u32(&x1253, &x1254, x1252, x1232, x1229); fiat_p384_addcarryx_u32(&x1255, &x1256, x1254, x1230, x1227); fiat_p384_addcarryx_u32(&x1257, &x1258, x1256, x1228, x1225); fiat_p384_addcarryx_u32(&x1259, &x1260, x1258, x1226, x1223); fiat_p384_addcarryx_u32(&x1261, &x1262, x1260, x1224, x1221); fiat_p384_addcarryx_u32(&x1263, &x1264, x1262, x1222, x1219); x1265 = (x1264 + x1220); fiat_p384_addcarryx_u32(&x1266, &x1267, 0x0, x1194, x1241); fiat_p384_addcarryx_u32(&x1268, &x1269, x1267, x1196, x1243); fiat_p384_addcarryx_u32(&x1270, &x1271, x1269, x1198, x1245); fiat_p384_addcarryx_u32(&x1272, &x1273, x1271, x1200, x1247); fiat_p384_addcarryx_u32(&x1274, &x1275, x1273, x1202, x1249); fiat_p384_addcarryx_u32(&x1276, &x1277, x1275, x1204, x1251); fiat_p384_addcarryx_u32(&x1278, &x1279, x1277, x1206, x1253); fiat_p384_addcarryx_u32(&x1280, &x1281, x1279, x1208, x1255); fiat_p384_addcarryx_u32(&x1282, &x1283, x1281, x1210, x1257); fiat_p384_addcarryx_u32(&x1284, &x1285, x1283, x1212, x1259); fiat_p384_addcarryx_u32(&x1286, &x1287, x1285, x1214, x1261); fiat_p384_addcarryx_u32(&x1288, &x1289, x1287, x1216, x1263); fiat_p384_addcarryx_u32(&x1290, &x1291, x1289, x1218, x1265); fiat_p384_mulx_u32(&x1292, &x1293, x1266, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x1294, &x1295, x1266, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x1296, &x1297, x1266, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x1298, &x1299, x1266, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x1300, &x1301, x1266, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x1302, &x1303, x1266, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x1304, &x1305, x1266, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x1306, &x1307, x1266, UINT32_C(0xfffffffe)); fiat_p384_mulx_u32(&x1308, &x1309, x1266, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x1310, &x1311, x1266, UINT32_C(0xffffffff)); fiat_p384_addcarryx_u32(&x1312, &x1313, 0x0, x1309, x1306); fiat_p384_addcarryx_u32(&x1314, &x1315, x1313, x1307, x1304); fiat_p384_addcarryx_u32(&x1316, &x1317, x1315, x1305, x1302); fiat_p384_addcarryx_u32(&x1318, &x1319, x1317, x1303, x1300); fiat_p384_addcarryx_u32(&x1320, &x1321, x1319, x1301, x1298); fiat_p384_addcarryx_u32(&x1322, &x1323, x1321, x1299, x1296); fiat_p384_addcarryx_u32(&x1324, &x1325, x1323, x1297, x1294); fiat_p384_addcarryx_u32(&x1326, &x1327, x1325, x1295, x1292); x1328 = (x1327 + x1293); fiat_p384_addcarryx_u32(&x1329, &x1330, 0x0, x1266, x1310); fiat_p384_addcarryx_u32(&x1331, &x1332, x1330, x1268, x1311); fiat_p384_addcarryx_u32(&x1333, &x1334, x1332, x1270, 0x0); fiat_p384_addcarryx_u32(&x1335, &x1336, x1334, x1272, x1308); fiat_p384_addcarryx_u32(&x1337, &x1338, x1336, x1274, x1312); fiat_p384_addcarryx_u32(&x1339, &x1340, x1338, x1276, x1314); fiat_p384_addcarryx_u32(&x1341, &x1342, x1340, x1278, x1316); fiat_p384_addcarryx_u32(&x1343, &x1344, x1342, x1280, x1318); fiat_p384_addcarryx_u32(&x1345, &x1346, x1344, x1282, x1320); fiat_p384_addcarryx_u32(&x1347, &x1348, x1346, x1284, x1322); fiat_p384_addcarryx_u32(&x1349, &x1350, x1348, x1286, x1324); fiat_p384_addcarryx_u32(&x1351, &x1352, x1350, x1288, x1326); fiat_p384_addcarryx_u32(&x1353, &x1354, x1352, x1290, x1328); x1355 = ((uint32_t)x1354 + x1291); fiat_p384_mulx_u32(&x1356, &x1357, x10, (arg2[11])); fiat_p384_mulx_u32(&x1358, &x1359, x10, (arg2[10])); fiat_p384_mulx_u32(&x1360, &x1361, x10, (arg2[9])); fiat_p384_mulx_u32(&x1362, &x1363, x10, (arg2[8])); fiat_p384_mulx_u32(&x1364, &x1365, x10, (arg2[7])); fiat_p384_mulx_u32(&x1366, &x1367, x10, (arg2[6])); fiat_p384_mulx_u32(&x1368, &x1369, x10, (arg2[5])); fiat_p384_mulx_u32(&x1370, &x1371, x10, (arg2[4])); fiat_p384_mulx_u32(&x1372, &x1373, x10, (arg2[3])); fiat_p384_mulx_u32(&x1374, &x1375, x10, (arg2[2])); fiat_p384_mulx_u32(&x1376, &x1377, x10, (arg2[1])); fiat_p384_mulx_u32(&x1378, &x1379, x10, (arg2[0])); fiat_p384_addcarryx_u32(&x1380, &x1381, 0x0, x1379, x1376); fiat_p384_addcarryx_u32(&x1382, &x1383, x1381, x1377, x1374); fiat_p384_addcarryx_u32(&x1384, &x1385, x1383, x1375, x1372); fiat_p384_addcarryx_u32(&x1386, &x1387, x1385, x1373, x1370); fiat_p384_addcarryx_u32(&x1388, &x1389, x1387, x1371, x1368); fiat_p384_addcarryx_u32(&x1390, &x1391, x1389, x1369, x1366); fiat_p384_addcarryx_u32(&x1392, &x1393, x1391, x1367, x1364); fiat_p384_addcarryx_u32(&x1394, &x1395, x1393, x1365, x1362); fiat_p384_addcarryx_u32(&x1396, &x1397, x1395, x1363, x1360); fiat_p384_addcarryx_u32(&x1398, &x1399, x1397, x1361, x1358); fiat_p384_addcarryx_u32(&x1400, &x1401, x1399, x1359, x1356); x1402 = (x1401 + x1357); fiat_p384_addcarryx_u32(&x1403, &x1404, 0x0, x1331, x1378); fiat_p384_addcarryx_u32(&x1405, &x1406, x1404, x1333, x1380); fiat_p384_addcarryx_u32(&x1407, &x1408, x1406, x1335, x1382); fiat_p384_addcarryx_u32(&x1409, &x1410, x1408, x1337, x1384); fiat_p384_addcarryx_u32(&x1411, &x1412, x1410, x1339, x1386); fiat_p384_addcarryx_u32(&x1413, &x1414, x1412, x1341, x1388); fiat_p384_addcarryx_u32(&x1415, &x1416, x1414, x1343, x1390); fiat_p384_addcarryx_u32(&x1417, &x1418, x1416, x1345, x1392); fiat_p384_addcarryx_u32(&x1419, &x1420, x1418, x1347, x1394); fiat_p384_addcarryx_u32(&x1421, &x1422, x1420, x1349, x1396); fiat_p384_addcarryx_u32(&x1423, &x1424, x1422, x1351, x1398); fiat_p384_addcarryx_u32(&x1425, &x1426, x1424, x1353, x1400); fiat_p384_addcarryx_u32(&x1427, &x1428, x1426, x1355, x1402); fiat_p384_mulx_u32(&x1429, &x1430, x1403, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x1431, &x1432, x1403, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x1433, &x1434, x1403, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x1435, &x1436, x1403, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x1437, &x1438, x1403, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x1439, &x1440, x1403, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x1441, &x1442, x1403, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x1443, &x1444, x1403, UINT32_C(0xfffffffe)); fiat_p384_mulx_u32(&x1445, &x1446, x1403, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x1447, &x1448, x1403, UINT32_C(0xffffffff)); fiat_p384_addcarryx_u32(&x1449, &x1450, 0x0, x1446, x1443); fiat_p384_addcarryx_u32(&x1451, &x1452, x1450, x1444, x1441); fiat_p384_addcarryx_u32(&x1453, &x1454, x1452, x1442, x1439); fiat_p384_addcarryx_u32(&x1455, &x1456, x1454, x1440, x1437); fiat_p384_addcarryx_u32(&x1457, &x1458, x1456, x1438, x1435); fiat_p384_addcarryx_u32(&x1459, &x1460, x1458, x1436, x1433); fiat_p384_addcarryx_u32(&x1461, &x1462, x1460, x1434, x1431); fiat_p384_addcarryx_u32(&x1463, &x1464, x1462, x1432, x1429); x1465 = (x1464 + x1430); fiat_p384_addcarryx_u32(&x1466, &x1467, 0x0, x1403, x1447); fiat_p384_addcarryx_u32(&x1468, &x1469, x1467, x1405, x1448); fiat_p384_addcarryx_u32(&x1470, &x1471, x1469, x1407, 0x0); fiat_p384_addcarryx_u32(&x1472, &x1473, x1471, x1409, x1445); fiat_p384_addcarryx_u32(&x1474, &x1475, x1473, x1411, x1449); fiat_p384_addcarryx_u32(&x1476, &x1477, x1475, x1413, x1451); fiat_p384_addcarryx_u32(&x1478, &x1479, x1477, x1415, x1453); fiat_p384_addcarryx_u32(&x1480, &x1481, x1479, x1417, x1455); fiat_p384_addcarryx_u32(&x1482, &x1483, x1481, x1419, x1457); fiat_p384_addcarryx_u32(&x1484, &x1485, x1483, x1421, x1459); fiat_p384_addcarryx_u32(&x1486, &x1487, x1485, x1423, x1461); fiat_p384_addcarryx_u32(&x1488, &x1489, x1487, x1425, x1463); fiat_p384_addcarryx_u32(&x1490, &x1491, x1489, x1427, x1465); x1492 = ((uint32_t)x1491 + x1428); fiat_p384_mulx_u32(&x1493, &x1494, x11, (arg2[11])); fiat_p384_mulx_u32(&x1495, &x1496, x11, (arg2[10])); fiat_p384_mulx_u32(&x1497, &x1498, x11, (arg2[9])); fiat_p384_mulx_u32(&x1499, &x1500, x11, (arg2[8])); fiat_p384_mulx_u32(&x1501, &x1502, x11, (arg2[7])); fiat_p384_mulx_u32(&x1503, &x1504, x11, (arg2[6])); fiat_p384_mulx_u32(&x1505, &x1506, x11, (arg2[5])); fiat_p384_mulx_u32(&x1507, &x1508, x11, (arg2[4])); fiat_p384_mulx_u32(&x1509, &x1510, x11, (arg2[3])); fiat_p384_mulx_u32(&x1511, &x1512, x11, (arg2[2])); fiat_p384_mulx_u32(&x1513, &x1514, x11, (arg2[1])); fiat_p384_mulx_u32(&x1515, &x1516, x11, (arg2[0])); fiat_p384_addcarryx_u32(&x1517, &x1518, 0x0, x1516, x1513); fiat_p384_addcarryx_u32(&x1519, &x1520, x1518, x1514, x1511); fiat_p384_addcarryx_u32(&x1521, &x1522, x1520, x1512, x1509); fiat_p384_addcarryx_u32(&x1523, &x1524, x1522, x1510, x1507); fiat_p384_addcarryx_u32(&x1525, &x1526, x1524, x1508, x1505); fiat_p384_addcarryx_u32(&x1527, &x1528, x1526, x1506, x1503); fiat_p384_addcarryx_u32(&x1529, &x1530, x1528, x1504, x1501); fiat_p384_addcarryx_u32(&x1531, &x1532, x1530, x1502, x1499); fiat_p384_addcarryx_u32(&x1533, &x1534, x1532, x1500, x1497); fiat_p384_addcarryx_u32(&x1535, &x1536, x1534, x1498, x1495); fiat_p384_addcarryx_u32(&x1537, &x1538, x1536, x1496, x1493); x1539 = (x1538 + x1494); fiat_p384_addcarryx_u32(&x1540, &x1541, 0x0, x1468, x1515); fiat_p384_addcarryx_u32(&x1542, &x1543, x1541, x1470, x1517); fiat_p384_addcarryx_u32(&x1544, &x1545, x1543, x1472, x1519); fiat_p384_addcarryx_u32(&x1546, &x1547, x1545, x1474, x1521); fiat_p384_addcarryx_u32(&x1548, &x1549, x1547, x1476, x1523); fiat_p384_addcarryx_u32(&x1550, &x1551, x1549, x1478, x1525); fiat_p384_addcarryx_u32(&x1552, &x1553, x1551, x1480, x1527); fiat_p384_addcarryx_u32(&x1554, &x1555, x1553, x1482, x1529); fiat_p384_addcarryx_u32(&x1556, &x1557, x1555, x1484, x1531); fiat_p384_addcarryx_u32(&x1558, &x1559, x1557, x1486, x1533); fiat_p384_addcarryx_u32(&x1560, &x1561, x1559, x1488, x1535); fiat_p384_addcarryx_u32(&x1562, &x1563, x1561, x1490, x1537); fiat_p384_addcarryx_u32(&x1564, &x1565, x1563, x1492, x1539); fiat_p384_mulx_u32(&x1566, &x1567, x1540, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x1568, &x1569, x1540, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x1570, &x1571, x1540, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x1572, &x1573, x1540, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x1574, &x1575, x1540, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x1576, &x1577, x1540, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x1578, &x1579, x1540, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x1580, &x1581, x1540, UINT32_C(0xfffffffe)); fiat_p384_mulx_u32(&x1582, &x1583, x1540, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x1584, &x1585, x1540, UINT32_C(0xffffffff)); fiat_p384_addcarryx_u32(&x1586, &x1587, 0x0, x1583, x1580); fiat_p384_addcarryx_u32(&x1588, &x1589, x1587, x1581, x1578); fiat_p384_addcarryx_u32(&x1590, &x1591, x1589, x1579, x1576); fiat_p384_addcarryx_u32(&x1592, &x1593, x1591, x1577, x1574); fiat_p384_addcarryx_u32(&x1594, &x1595, x1593, x1575, x1572); fiat_p384_addcarryx_u32(&x1596, &x1597, x1595, x1573, x1570); fiat_p384_addcarryx_u32(&x1598, &x1599, x1597, x1571, x1568); fiat_p384_addcarryx_u32(&x1600, &x1601, x1599, x1569, x1566); x1602 = (x1601 + x1567); fiat_p384_addcarryx_u32(&x1603, &x1604, 0x0, x1540, x1584); fiat_p384_addcarryx_u32(&x1605, &x1606, x1604, x1542, x1585); fiat_p384_addcarryx_u32(&x1607, &x1608, x1606, x1544, 0x0); fiat_p384_addcarryx_u32(&x1609, &x1610, x1608, x1546, x1582); fiat_p384_addcarryx_u32(&x1611, &x1612, x1610, x1548, x1586); fiat_p384_addcarryx_u32(&x1613, &x1614, x1612, x1550, x1588); fiat_p384_addcarryx_u32(&x1615, &x1616, x1614, x1552, x1590); fiat_p384_addcarryx_u32(&x1617, &x1618, x1616, x1554, x1592); fiat_p384_addcarryx_u32(&x1619, &x1620, x1618, x1556, x1594); fiat_p384_addcarryx_u32(&x1621, &x1622, x1620, x1558, x1596); fiat_p384_addcarryx_u32(&x1623, &x1624, x1622, x1560, x1598); fiat_p384_addcarryx_u32(&x1625, &x1626, x1624, x1562, x1600); fiat_p384_addcarryx_u32(&x1627, &x1628, x1626, x1564, x1602); x1629 = ((uint32_t)x1628 + x1565); fiat_p384_subborrowx_u32(&x1630, &x1631, 0x0, x1605, UINT32_C(0xffffffff)); fiat_p384_subborrowx_u32(&x1632, &x1633, x1631, x1607, 0x0); fiat_p384_subborrowx_u32(&x1634, &x1635, x1633, x1609, 0x0); fiat_p384_subborrowx_u32(&x1636, &x1637, x1635, x1611, UINT32_C(0xffffffff)); fiat_p384_subborrowx_u32(&x1638, &x1639, x1637, x1613, UINT32_C(0xfffffffe)); fiat_p384_subborrowx_u32(&x1640, &x1641, x1639, x1615, UINT32_C(0xffffffff)); fiat_p384_subborrowx_u32(&x1642, &x1643, x1641, x1617, UINT32_C(0xffffffff)); fiat_p384_subborrowx_u32(&x1644, &x1645, x1643, x1619, UINT32_C(0xffffffff)); fiat_p384_subborrowx_u32(&x1646, &x1647, x1645, x1621, UINT32_C(0xffffffff)); fiat_p384_subborrowx_u32(&x1648, &x1649, x1647, x1623, UINT32_C(0xffffffff)); fiat_p384_subborrowx_u32(&x1650, &x1651, x1649, x1625, UINT32_C(0xffffffff)); fiat_p384_subborrowx_u32(&x1652, &x1653, x1651, x1627, UINT32_C(0xffffffff)); fiat_p384_subborrowx_u32(&x1654, &x1655, x1653, x1629, 0x0); fiat_p384_cmovznz_u32(&x1656, x1655, x1630, x1605); fiat_p384_cmovznz_u32(&x1657, x1655, x1632, x1607); fiat_p384_cmovznz_u32(&x1658, x1655, x1634, x1609); fiat_p384_cmovznz_u32(&x1659, x1655, x1636, x1611); fiat_p384_cmovznz_u32(&x1660, x1655, x1638, x1613); fiat_p384_cmovznz_u32(&x1661, x1655, x1640, x1615); fiat_p384_cmovznz_u32(&x1662, x1655, x1642, x1617); fiat_p384_cmovznz_u32(&x1663, x1655, x1644, x1619); fiat_p384_cmovznz_u32(&x1664, x1655, x1646, x1621); fiat_p384_cmovznz_u32(&x1665, x1655, x1648, x1623); fiat_p384_cmovznz_u32(&x1666, x1655, x1650, x1625); fiat_p384_cmovznz_u32(&x1667, x1655, x1652, x1627); out1[0] = x1656; out1[1] = x1657; out1[2] = x1658; out1[3] = x1659; out1[4] = x1660; out1[5] = x1661; out1[6] = x1662; out1[7] = x1663; out1[8] = x1664; out1[9] = x1665; out1[10] = x1666; out1[11] = x1667; } /* * The function fiat_p384_square squares a field element in the Montgomery domain. * * Preconditions: * 0 ≤ eval arg1 < m * Postconditions: * eval (from_montgomery out1) mod m = (eval (from_montgomery arg1) * eval (from_montgomery arg1)) mod m * 0 ≤ eval out1 < m * */ static void fiat_p384_square(fiat_p384_montgomery_domain_field_element out1, const fiat_p384_montgomery_domain_field_element arg1) { uint32_t x1; uint32_t x2; uint32_t x3; uint32_t x4; uint32_t x5; uint32_t x6; uint32_t x7; uint32_t x8; uint32_t x9; uint32_t x10; uint32_t x11; uint32_t x12; uint32_t x13; uint32_t x14; uint32_t x15; uint32_t x16; uint32_t x17; uint32_t x18; uint32_t x19; uint32_t x20; uint32_t x21; uint32_t x22; uint32_t x23; uint32_t x24; uint32_t x25; uint32_t x26; uint32_t x27; uint32_t x28; uint32_t x29; uint32_t x30; uint32_t x31; uint32_t x32; uint32_t x33; uint32_t x34; uint32_t x35; uint32_t x36; uint32_t x37; fiat_p384_uint1 x38; uint32_t x39; fiat_p384_uint1 x40; uint32_t x41; fiat_p384_uint1 x42; uint32_t x43; fiat_p384_uint1 x44; uint32_t x45; fiat_p384_uint1 x46; uint32_t x47; fiat_p384_uint1 x48; uint32_t x49; fiat_p384_uint1 x50; uint32_t x51; fiat_p384_uint1 x52; uint32_t x53; fiat_p384_uint1 x54; uint32_t x55; fiat_p384_uint1 x56; uint32_t x57; fiat_p384_uint1 x58; uint32_t x59; uint32_t x60; uint32_t x61; uint32_t x62; uint32_t x63; uint32_t x64; uint32_t x65; uint32_t x66; uint32_t x67; uint32_t x68; uint32_t x69; uint32_t x70; uint32_t x71; uint32_t x72; uint32_t x73; uint32_t x74; uint32_t x75; uint32_t x76; uint32_t x77; uint32_t x78; uint32_t x79; uint32_t x80; fiat_p384_uint1 x81; uint32_t x82; fiat_p384_uint1 x83; uint32_t x84; fiat_p384_uint1 x85; uint32_t x86; fiat_p384_uint1 x87; uint32_t x88; fiat_p384_uint1 x89; uint32_t x90; fiat_p384_uint1 x91; uint32_t x92; fiat_p384_uint1 x93; uint32_t x94; fiat_p384_uint1 x95; uint32_t x96; uint32_t x97; fiat_p384_uint1 x98; uint32_t x99; fiat_p384_uint1 x100; uint32_t x101; fiat_p384_uint1 x102; uint32_t x103; fiat_p384_uint1 x104; uint32_t x105; fiat_p384_uint1 x106; uint32_t x107; fiat_p384_uint1 x108; uint32_t x109; fiat_p384_uint1 x110; uint32_t x111; fiat_p384_uint1 x112; uint32_t x113; fiat_p384_uint1 x114; uint32_t x115; fiat_p384_uint1 x116; uint32_t x117; fiat_p384_uint1 x118; uint32_t x119; fiat_p384_uint1 x120; uint32_t x121; fiat_p384_uint1 x122; uint32_t x123; uint32_t x124; uint32_t x125; uint32_t x126; uint32_t x127; uint32_t x128; uint32_t x129; uint32_t x130; uint32_t x131; uint32_t x132; uint32_t x133; uint32_t x134; uint32_t x135; uint32_t x136; uint32_t x137; uint32_t x138; uint32_t x139; uint32_t x140; uint32_t x141; uint32_t x142; uint32_t x143; uint32_t x144; uint32_t x145; uint32_t x146; uint32_t x147; fiat_p384_uint1 x148; uint32_t x149; fiat_p384_uint1 x150; uint32_t x151; fiat_p384_uint1 x152; uint32_t x153; fiat_p384_uint1 x154; uint32_t x155; fiat_p384_uint1 x156; uint32_t x157; fiat_p384_uint1 x158; uint32_t x159; fiat_p384_uint1 x160; uint32_t x161; fiat_p384_uint1 x162; uint32_t x163; fiat_p384_uint1 x164; uint32_t x165; fiat_p384_uint1 x166; uint32_t x167; fiat_p384_uint1 x168; uint32_t x169; uint32_t x170; fiat_p384_uint1 x171; uint32_t x172; fiat_p384_uint1 x173; uint32_t x174; fiat_p384_uint1 x175; uint32_t x176; fiat_p384_uint1 x177; uint32_t x178; fiat_p384_uint1 x179; uint32_t x180; fiat_p384_uint1 x181; uint32_t x182; fiat_p384_uint1 x183; uint32_t x184; fiat_p384_uint1 x185; uint32_t x186; fiat_p384_uint1 x187; uint32_t x188; fiat_p384_uint1 x189; uint32_t x190; fiat_p384_uint1 x191; uint32_t x192; fiat_p384_uint1 x193; uint32_t x194; fiat_p384_uint1 x195; uint32_t x196; uint32_t x197; uint32_t x198; uint32_t x199; uint32_t x200; uint32_t x201; uint32_t x202; uint32_t x203; uint32_t x204; uint32_t x205; uint32_t x206; uint32_t x207; uint32_t x208; uint32_t x209; uint32_t x210; uint32_t x211; uint32_t x212; uint32_t x213; uint32_t x214; uint32_t x215; uint32_t x216; fiat_p384_uint1 x217; uint32_t x218; fiat_p384_uint1 x219; uint32_t x220; fiat_p384_uint1 x221; uint32_t x222; fiat_p384_uint1 x223; uint32_t x224; fiat_p384_uint1 x225; uint32_t x226; fiat_p384_uint1 x227; uint32_t x228; fiat_p384_uint1 x229; uint32_t x230; fiat_p384_uint1 x231; uint32_t x232; uint32_t x233; fiat_p384_uint1 x234; uint32_t x235; fiat_p384_uint1 x236; uint32_t x237; fiat_p384_uint1 x238; uint32_t x239; fiat_p384_uint1 x240; uint32_t x241; fiat_p384_uint1 x242; uint32_t x243; fiat_p384_uint1 x244; uint32_t x245; fiat_p384_uint1 x246; uint32_t x247; fiat_p384_uint1 x248; uint32_t x249; fiat_p384_uint1 x250; uint32_t x251; fiat_p384_uint1 x252; uint32_t x253; fiat_p384_uint1 x254; uint32_t x255; fiat_p384_uint1 x256; uint32_t x257; fiat_p384_uint1 x258; uint32_t x259; uint32_t x260; uint32_t x261; uint32_t x262; uint32_t x263; uint32_t x264; uint32_t x265; uint32_t x266; uint32_t x267; uint32_t x268; uint32_t x269; uint32_t x270; uint32_t x271; uint32_t x272; uint32_t x273; uint32_t x274; uint32_t x275; uint32_t x276; uint32_t x277; uint32_t x278; uint32_t x279; uint32_t x280; uint32_t x281; uint32_t x282; uint32_t x283; uint32_t x284; fiat_p384_uint1 x285; uint32_t x286; fiat_p384_uint1 x287; uint32_t x288; fiat_p384_uint1 x289; uint32_t x290; fiat_p384_uint1 x291; uint32_t x292; fiat_p384_uint1 x293; uint32_t x294; fiat_p384_uint1 x295; uint32_t x296; fiat_p384_uint1 x297; uint32_t x298; fiat_p384_uint1 x299; uint32_t x300; fiat_p384_uint1 x301; uint32_t x302; fiat_p384_uint1 x303; uint32_t x304; fiat_p384_uint1 x305; uint32_t x306; uint32_t x307; fiat_p384_uint1 x308; uint32_t x309; fiat_p384_uint1 x310; uint32_t x311; fiat_p384_uint1 x312; uint32_t x313; fiat_p384_uint1 x314; uint32_t x315; fiat_p384_uint1 x316; uint32_t x317; fiat_p384_uint1 x318; uint32_t x319; fiat_p384_uint1 x320; uint32_t x321; fiat_p384_uint1 x322; uint32_t x323; fiat_p384_uint1 x324; uint32_t x325; fiat_p384_uint1 x326; uint32_t x327; fiat_p384_uint1 x328; uint32_t x329; fiat_p384_uint1 x330; uint32_t x331; fiat_p384_uint1 x332; uint32_t x333; uint32_t x334; uint32_t x335; uint32_t x336; uint32_t x337; uint32_t x338; uint32_t x339; uint32_t x340; uint32_t x341; uint32_t x342; uint32_t x343; uint32_t x344; uint32_t x345; uint32_t x346; uint32_t x347; uint32_t x348; uint32_t x349; uint32_t x350; uint32_t x351; uint32_t x352; uint32_t x353; fiat_p384_uint1 x354; uint32_t x355; fiat_p384_uint1 x356; uint32_t x357; fiat_p384_uint1 x358; uint32_t x359; fiat_p384_uint1 x360; uint32_t x361; fiat_p384_uint1 x362; uint32_t x363; fiat_p384_uint1 x364; uint32_t x365; fiat_p384_uint1 x366; uint32_t x367; fiat_p384_uint1 x368; uint32_t x369; uint32_t x370; fiat_p384_uint1 x371; uint32_t x372; fiat_p384_uint1 x373; uint32_t x374; fiat_p384_uint1 x375; uint32_t x376; fiat_p384_uint1 x377; uint32_t x378; fiat_p384_uint1 x379; uint32_t x380; fiat_p384_uint1 x381; uint32_t x382; fiat_p384_uint1 x383; uint32_t x384; fiat_p384_uint1 x385; uint32_t x386; fiat_p384_uint1 x387; uint32_t x388; fiat_p384_uint1 x389; uint32_t x390; fiat_p384_uint1 x391; uint32_t x392; fiat_p384_uint1 x393; uint32_t x394; fiat_p384_uint1 x395; uint32_t x396; uint32_t x397; uint32_t x398; uint32_t x399; uint32_t x400; uint32_t x401; uint32_t x402; uint32_t x403; uint32_t x404; uint32_t x405; uint32_t x406; uint32_t x407; uint32_t x408; uint32_t x409; uint32_t x410; uint32_t x411; uint32_t x412; uint32_t x413; uint32_t x414; uint32_t x415; uint32_t x416; uint32_t x417; uint32_t x418; uint32_t x419; uint32_t x420; uint32_t x421; fiat_p384_uint1 x422; uint32_t x423; fiat_p384_uint1 x424; uint32_t x425; fiat_p384_uint1 x426; uint32_t x427; fiat_p384_uint1 x428; uint32_t x429; fiat_p384_uint1 x430; uint32_t x431; fiat_p384_uint1 x432; uint32_t x433; fiat_p384_uint1 x434; uint32_t x435; fiat_p384_uint1 x436; uint32_t x437; fiat_p384_uint1 x438; uint32_t x439; fiat_p384_uint1 x440; uint32_t x441; fiat_p384_uint1 x442; uint32_t x443; uint32_t x444; fiat_p384_uint1 x445; uint32_t x446; fiat_p384_uint1 x447; uint32_t x448; fiat_p384_uint1 x449; uint32_t x450; fiat_p384_uint1 x451; uint32_t x452; fiat_p384_uint1 x453; uint32_t x454; fiat_p384_uint1 x455; uint32_t x456; fiat_p384_uint1 x457; uint32_t x458; fiat_p384_uint1 x459; uint32_t x460; fiat_p384_uint1 x461; uint32_t x462; fiat_p384_uint1 x463; uint32_t x464; fiat_p384_uint1 x465; uint32_t x466; fiat_p384_uint1 x467; uint32_t x468; fiat_p384_uint1 x469; uint32_t x470; uint32_t x471; uint32_t x472; uint32_t x473; uint32_t x474; uint32_t x475; uint32_t x476; uint32_t x477; uint32_t x478; uint32_t x479; uint32_t x480; uint32_t x481; uint32_t x482; uint32_t x483; uint32_t x484; uint32_t x485; uint32_t x486; uint32_t x487; uint32_t x488; uint32_t x489; uint32_t x490; fiat_p384_uint1 x491; uint32_t x492; fiat_p384_uint1 x493; uint32_t x494; fiat_p384_uint1 x495; uint32_t x496; fiat_p384_uint1 x497; uint32_t x498; fiat_p384_uint1 x499; uint32_t x500; fiat_p384_uint1 x501; uint32_t x502; fiat_p384_uint1 x503; uint32_t x504; fiat_p384_uint1 x505; uint32_t x506; uint32_t x507; fiat_p384_uint1 x508; uint32_t x509; fiat_p384_uint1 x510; uint32_t x511; fiat_p384_uint1 x512; uint32_t x513; fiat_p384_uint1 x514; uint32_t x515; fiat_p384_uint1 x516; uint32_t x517; fiat_p384_uint1 x518; uint32_t x519; fiat_p384_uint1 x520; uint32_t x521; fiat_p384_uint1 x522; uint32_t x523; fiat_p384_uint1 x524; uint32_t x525; fiat_p384_uint1 x526; uint32_t x527; fiat_p384_uint1 x528; uint32_t x529; fiat_p384_uint1 x530; uint32_t x531; fiat_p384_uint1 x532; uint32_t x533; uint32_t x534; uint32_t x535; uint32_t x536; uint32_t x537; uint32_t x538; uint32_t x539; uint32_t x540; uint32_t x541; uint32_t x542; uint32_t x543; uint32_t x544; uint32_t x545; uint32_t x546; uint32_t x547; uint32_t x548; uint32_t x549; uint32_t x550; uint32_t x551; uint32_t x552; uint32_t x553; uint32_t x554; uint32_t x555; uint32_t x556; uint32_t x557; uint32_t x558; fiat_p384_uint1 x559; uint32_t x560; fiat_p384_uint1 x561; uint32_t x562; fiat_p384_uint1 x563; uint32_t x564; fiat_p384_uint1 x565; uint32_t x566; fiat_p384_uint1 x567; uint32_t x568; fiat_p384_uint1 x569; uint32_t x570; fiat_p384_uint1 x571; uint32_t x572; fiat_p384_uint1 x573; uint32_t x574; fiat_p384_uint1 x575; uint32_t x576; fiat_p384_uint1 x577; uint32_t x578; fiat_p384_uint1 x579; uint32_t x580; uint32_t x581; fiat_p384_uint1 x582; uint32_t x583; fiat_p384_uint1 x584; uint32_t x585; fiat_p384_uint1 x586; uint32_t x587; fiat_p384_uint1 x588; uint32_t x589; fiat_p384_uint1 x590; uint32_t x591; fiat_p384_uint1 x592; uint32_t x593; fiat_p384_uint1 x594; uint32_t x595; fiat_p384_uint1 x596; uint32_t x597; fiat_p384_uint1 x598; uint32_t x599; fiat_p384_uint1 x600; uint32_t x601; fiat_p384_uint1 x602; uint32_t x603; fiat_p384_uint1 x604; uint32_t x605; fiat_p384_uint1 x606; uint32_t x607; uint32_t x608; uint32_t x609; uint32_t x610; uint32_t x611; uint32_t x612; uint32_t x613; uint32_t x614; uint32_t x615; uint32_t x616; uint32_t x617; uint32_t x618; uint32_t x619; uint32_t x620; uint32_t x621; uint32_t x622; uint32_t x623; uint32_t x624; uint32_t x625; uint32_t x626; uint32_t x627; fiat_p384_uint1 x628; uint32_t x629; fiat_p384_uint1 x630; uint32_t x631; fiat_p384_uint1 x632; uint32_t x633; fiat_p384_uint1 x634; uint32_t x635; fiat_p384_uint1 x636; uint32_t x637; fiat_p384_uint1 x638; uint32_t x639; fiat_p384_uint1 x640; uint32_t x641; fiat_p384_uint1 x642; uint32_t x643; uint32_t x644; fiat_p384_uint1 x645; uint32_t x646; fiat_p384_uint1 x647; uint32_t x648; fiat_p384_uint1 x649; uint32_t x650; fiat_p384_uint1 x651; uint32_t x652; fiat_p384_uint1 x653; uint32_t x654; fiat_p384_uint1 x655; uint32_t x656; fiat_p384_uint1 x657; uint32_t x658; fiat_p384_uint1 x659; uint32_t x660; fiat_p384_uint1 x661; uint32_t x662; fiat_p384_uint1 x663; uint32_t x664; fiat_p384_uint1 x665; uint32_t x666; fiat_p384_uint1 x667; uint32_t x668; fiat_p384_uint1 x669; uint32_t x670; uint32_t x671; uint32_t x672; uint32_t x673; uint32_t x674; uint32_t x675; uint32_t x676; uint32_t x677; uint32_t x678; uint32_t x679; uint32_t x680; uint32_t x681; uint32_t x682; uint32_t x683; uint32_t x684; uint32_t x685; uint32_t x686; uint32_t x687; uint32_t x688; uint32_t x689; uint32_t x690; uint32_t x691; uint32_t x692; uint32_t x693; uint32_t x694; uint32_t x695; fiat_p384_uint1 x696; uint32_t x697; fiat_p384_uint1 x698; uint32_t x699; fiat_p384_uint1 x700; uint32_t x701; fiat_p384_uint1 x702; uint32_t x703; fiat_p384_uint1 x704; uint32_t x705; fiat_p384_uint1 x706; uint32_t x707; fiat_p384_uint1 x708; uint32_t x709; fiat_p384_uint1 x710; uint32_t x711; fiat_p384_uint1 x712; uint32_t x713; fiat_p384_uint1 x714; uint32_t x715; fiat_p384_uint1 x716; uint32_t x717; uint32_t x718; fiat_p384_uint1 x719; uint32_t x720; fiat_p384_uint1 x721; uint32_t x722; fiat_p384_uint1 x723; uint32_t x724; fiat_p384_uint1 x725; uint32_t x726; fiat_p384_uint1 x727; uint32_t x728; fiat_p384_uint1 x729; uint32_t x730; fiat_p384_uint1 x731; uint32_t x732; fiat_p384_uint1 x733; uint32_t x734; fiat_p384_uint1 x735; uint32_t x736; fiat_p384_uint1 x737; uint32_t x738; fiat_p384_uint1 x739; uint32_t x740; fiat_p384_uint1 x741; uint32_t x742; fiat_p384_uint1 x743; uint32_t x744; uint32_t x745; uint32_t x746; uint32_t x747; uint32_t x748; uint32_t x749; uint32_t x750; uint32_t x751; uint32_t x752; uint32_t x753; uint32_t x754; uint32_t x755; uint32_t x756; uint32_t x757; uint32_t x758; uint32_t x759; uint32_t x760; uint32_t x761; uint32_t x762; uint32_t x763; uint32_t x764; fiat_p384_uint1 x765; uint32_t x766; fiat_p384_uint1 x767; uint32_t x768; fiat_p384_uint1 x769; uint32_t x770; fiat_p384_uint1 x771; uint32_t x772; fiat_p384_uint1 x773; uint32_t x774; fiat_p384_uint1 x775; uint32_t x776; fiat_p384_uint1 x777; uint32_t x778; fiat_p384_uint1 x779; uint32_t x780; uint32_t x781; fiat_p384_uint1 x782; uint32_t x783; fiat_p384_uint1 x784; uint32_t x785; fiat_p384_uint1 x786; uint32_t x787; fiat_p384_uint1 x788; uint32_t x789; fiat_p384_uint1 x790; uint32_t x791; fiat_p384_uint1 x792; uint32_t x793; fiat_p384_uint1 x794; uint32_t x795; fiat_p384_uint1 x796; uint32_t x797; fiat_p384_uint1 x798; uint32_t x799; fiat_p384_uint1 x800; uint32_t x801; fiat_p384_uint1 x802; uint32_t x803; fiat_p384_uint1 x804; uint32_t x805; fiat_p384_uint1 x806; uint32_t x807; uint32_t x808; uint32_t x809; uint32_t x810; uint32_t x811; uint32_t x812; uint32_t x813; uint32_t x814; uint32_t x815; uint32_t x816; uint32_t x817; uint32_t x818; uint32_t x819; uint32_t x820; uint32_t x821; uint32_t x822; uint32_t x823; uint32_t x824; uint32_t x825; uint32_t x826; uint32_t x827; uint32_t x828; uint32_t x829; uint32_t x830; uint32_t x831; uint32_t x832; fiat_p384_uint1 x833; uint32_t x834; fiat_p384_uint1 x835; uint32_t x836; fiat_p384_uint1 x837; uint32_t x838; fiat_p384_uint1 x839; uint32_t x840; fiat_p384_uint1 x841; uint32_t x842; fiat_p384_uint1 x843; uint32_t x844; fiat_p384_uint1 x845; uint32_t x846; fiat_p384_uint1 x847; uint32_t x848; fiat_p384_uint1 x849; uint32_t x850; fiat_p384_uint1 x851; uint32_t x852; fiat_p384_uint1 x853; uint32_t x854; uint32_t x855; fiat_p384_uint1 x856; uint32_t x857; fiat_p384_uint1 x858; uint32_t x859; fiat_p384_uint1 x860; uint32_t x861; fiat_p384_uint1 x862; uint32_t x863; fiat_p384_uint1 x864; uint32_t x865; fiat_p384_uint1 x866; uint32_t x867; fiat_p384_uint1 x868; uint32_t x869; fiat_p384_uint1 x870; uint32_t x871; fiat_p384_uint1 x872; uint32_t x873; fiat_p384_uint1 x874; uint32_t x875; fiat_p384_uint1 x876; uint32_t x877; fiat_p384_uint1 x878; uint32_t x879; fiat_p384_uint1 x880; uint32_t x881; uint32_t x882; uint32_t x883; uint32_t x884; uint32_t x885; uint32_t x886; uint32_t x887; uint32_t x888; uint32_t x889; uint32_t x890; uint32_t x891; uint32_t x892; uint32_t x893; uint32_t x894; uint32_t x895; uint32_t x896; uint32_t x897; uint32_t x898; uint32_t x899; uint32_t x900; uint32_t x901; fiat_p384_uint1 x902; uint32_t x903; fiat_p384_uint1 x904; uint32_t x905; fiat_p384_uint1 x906; uint32_t x907; fiat_p384_uint1 x908; uint32_t x909; fiat_p384_uint1 x910; uint32_t x911; fiat_p384_uint1 x912; uint32_t x913; fiat_p384_uint1 x914; uint32_t x915; fiat_p384_uint1 x916; uint32_t x917; uint32_t x918; fiat_p384_uint1 x919; uint32_t x920; fiat_p384_uint1 x921; uint32_t x922; fiat_p384_uint1 x923; uint32_t x924; fiat_p384_uint1 x925; uint32_t x926; fiat_p384_uint1 x927; uint32_t x928; fiat_p384_uint1 x929; uint32_t x930; fiat_p384_uint1 x931; uint32_t x932; fiat_p384_uint1 x933; uint32_t x934; fiat_p384_uint1 x935; uint32_t x936; fiat_p384_uint1 x937; uint32_t x938; fiat_p384_uint1 x939; uint32_t x940; fiat_p384_uint1 x941; uint32_t x942; fiat_p384_uint1 x943; uint32_t x944; uint32_t x945; uint32_t x946; uint32_t x947; uint32_t x948; uint32_t x949; uint32_t x950; uint32_t x951; uint32_t x952; uint32_t x953; uint32_t x954; uint32_t x955; uint32_t x956; uint32_t x957; uint32_t x958; uint32_t x959; uint32_t x960; uint32_t x961; uint32_t x962; uint32_t x963; uint32_t x964; uint32_t x965; uint32_t x966; uint32_t x967; uint32_t x968; uint32_t x969; fiat_p384_uint1 x970; uint32_t x971; fiat_p384_uint1 x972; uint32_t x973; fiat_p384_uint1 x974; uint32_t x975; fiat_p384_uint1 x976; uint32_t x977; fiat_p384_uint1 x978; uint32_t x979; fiat_p384_uint1 x980; uint32_t x981; fiat_p384_uint1 x982; uint32_t x983; fiat_p384_uint1 x984; uint32_t x985; fiat_p384_uint1 x986; uint32_t x987; fiat_p384_uint1 x988; uint32_t x989; fiat_p384_uint1 x990; uint32_t x991; uint32_t x992; fiat_p384_uint1 x993; uint32_t x994; fiat_p384_uint1 x995; uint32_t x996; fiat_p384_uint1 x997; uint32_t x998; fiat_p384_uint1 x999; uint32_t x1000; fiat_p384_uint1 x1001; uint32_t x1002; fiat_p384_uint1 x1003; uint32_t x1004; fiat_p384_uint1 x1005; uint32_t x1006; fiat_p384_uint1 x1007; uint32_t x1008; fiat_p384_uint1 x1009; uint32_t x1010; fiat_p384_uint1 x1011; uint32_t x1012; fiat_p384_uint1 x1013; uint32_t x1014; fiat_p384_uint1 x1015; uint32_t x1016; fiat_p384_uint1 x1017; uint32_t x1018; uint32_t x1019; uint32_t x1020; uint32_t x1021; uint32_t x1022; uint32_t x1023; uint32_t x1024; uint32_t x1025; uint32_t x1026; uint32_t x1027; uint32_t x1028; uint32_t x1029; uint32_t x1030; uint32_t x1031; uint32_t x1032; uint32_t x1033; uint32_t x1034; uint32_t x1035; uint32_t x1036; uint32_t x1037; uint32_t x1038; fiat_p384_uint1 x1039; uint32_t x1040; fiat_p384_uint1 x1041; uint32_t x1042; fiat_p384_uint1 x1043; uint32_t x1044; fiat_p384_uint1 x1045; uint32_t x1046; fiat_p384_uint1 x1047; uint32_t x1048; fiat_p384_uint1 x1049; uint32_t x1050; fiat_p384_uint1 x1051; uint32_t x1052; fiat_p384_uint1 x1053; uint32_t x1054; uint32_t x1055; fiat_p384_uint1 x1056; uint32_t x1057; fiat_p384_uint1 x1058; uint32_t x1059; fiat_p384_uint1 x1060; uint32_t x1061; fiat_p384_uint1 x1062; uint32_t x1063; fiat_p384_uint1 x1064; uint32_t x1065; fiat_p384_uint1 x1066; uint32_t x1067; fiat_p384_uint1 x1068; uint32_t x1069; fiat_p384_uint1 x1070; uint32_t x1071; fiat_p384_uint1 x1072; uint32_t x1073; fiat_p384_uint1 x1074; uint32_t x1075; fiat_p384_uint1 x1076; uint32_t x1077; fiat_p384_uint1 x1078; uint32_t x1079; fiat_p384_uint1 x1080; uint32_t x1081; uint32_t x1082; uint32_t x1083; uint32_t x1084; uint32_t x1085; uint32_t x1086; uint32_t x1087; uint32_t x1088; uint32_t x1089; uint32_t x1090; uint32_t x1091; uint32_t x1092; uint32_t x1093; uint32_t x1094; uint32_t x1095; uint32_t x1096; uint32_t x1097; uint32_t x1098; uint32_t x1099; uint32_t x1100; uint32_t x1101; uint32_t x1102; uint32_t x1103; uint32_t x1104; uint32_t x1105; uint32_t x1106; fiat_p384_uint1 x1107; uint32_t x1108; fiat_p384_uint1 x1109; uint32_t x1110; fiat_p384_uint1 x1111; uint32_t x1112; fiat_p384_uint1 x1113; uint32_t x1114; fiat_p384_uint1 x1115; uint32_t x1116; fiat_p384_uint1 x1117; uint32_t x1118; fiat_p384_uint1 x1119; uint32_t x1120; fiat_p384_uint1 x1121; uint32_t x1122; fiat_p384_uint1 x1123; uint32_t x1124; fiat_p384_uint1 x1125; uint32_t x1126; fiat_p384_uint1 x1127; uint32_t x1128; uint32_t x1129; fiat_p384_uint1 x1130; uint32_t x1131; fiat_p384_uint1 x1132; uint32_t x1133; fiat_p384_uint1 x1134; uint32_t x1135; fiat_p384_uint1 x1136; uint32_t x1137; fiat_p384_uint1 x1138; uint32_t x1139; fiat_p384_uint1 x1140; uint32_t x1141; fiat_p384_uint1 x1142; uint32_t x1143; fiat_p384_uint1 x1144; uint32_t x1145; fiat_p384_uint1 x1146; uint32_t x1147; fiat_p384_uint1 x1148; uint32_t x1149; fiat_p384_uint1 x1150; uint32_t x1151; fiat_p384_uint1 x1152; uint32_t x1153; fiat_p384_uint1 x1154; uint32_t x1155; uint32_t x1156; uint32_t x1157; uint32_t x1158; uint32_t x1159; uint32_t x1160; uint32_t x1161; uint32_t x1162; uint32_t x1163; uint32_t x1164; uint32_t x1165; uint32_t x1166; uint32_t x1167; uint32_t x1168; uint32_t x1169; uint32_t x1170; uint32_t x1171; uint32_t x1172; uint32_t x1173; uint32_t x1174; uint32_t x1175; fiat_p384_uint1 x1176; uint32_t x1177; fiat_p384_uint1 x1178; uint32_t x1179; fiat_p384_uint1 x1180; uint32_t x1181; fiat_p384_uint1 x1182; uint32_t x1183; fiat_p384_uint1 x1184; uint32_t x1185; fiat_p384_uint1 x1186; uint32_t x1187; fiat_p384_uint1 x1188; uint32_t x1189; fiat_p384_uint1 x1190; uint32_t x1191; uint32_t x1192; fiat_p384_uint1 x1193; uint32_t x1194; fiat_p384_uint1 x1195; uint32_t x1196; fiat_p384_uint1 x1197; uint32_t x1198; fiat_p384_uint1 x1199; uint32_t x1200; fiat_p384_uint1 x1201; uint32_t x1202; fiat_p384_uint1 x1203; uint32_t x1204; fiat_p384_uint1 x1205; uint32_t x1206; fiat_p384_uint1 x1207; uint32_t x1208; fiat_p384_uint1 x1209; uint32_t x1210; fiat_p384_uint1 x1211; uint32_t x1212; fiat_p384_uint1 x1213; uint32_t x1214; fiat_p384_uint1 x1215; uint32_t x1216; fiat_p384_uint1 x1217; uint32_t x1218; uint32_t x1219; uint32_t x1220; uint32_t x1221; uint32_t x1222; uint32_t x1223; uint32_t x1224; uint32_t x1225; uint32_t x1226; uint32_t x1227; uint32_t x1228; uint32_t x1229; uint32_t x1230; uint32_t x1231; uint32_t x1232; uint32_t x1233; uint32_t x1234; uint32_t x1235; uint32_t x1236; uint32_t x1237; uint32_t x1238; uint32_t x1239; uint32_t x1240; uint32_t x1241; uint32_t x1242; uint32_t x1243; fiat_p384_uint1 x1244; uint32_t x1245; fiat_p384_uint1 x1246; uint32_t x1247; fiat_p384_uint1 x1248; uint32_t x1249; fiat_p384_uint1 x1250; uint32_t x1251; fiat_p384_uint1 x1252; uint32_t x1253; fiat_p384_uint1 x1254; uint32_t x1255; fiat_p384_uint1 x1256; uint32_t x1257; fiat_p384_uint1 x1258; uint32_t x1259; fiat_p384_uint1 x1260; uint32_t x1261; fiat_p384_uint1 x1262; uint32_t x1263; fiat_p384_uint1 x1264; uint32_t x1265; uint32_t x1266; fiat_p384_uint1 x1267; uint32_t x1268; fiat_p384_uint1 x1269; uint32_t x1270; fiat_p384_uint1 x1271; uint32_t x1272; fiat_p384_uint1 x1273; uint32_t x1274; fiat_p384_uint1 x1275; uint32_t x1276; fiat_p384_uint1 x1277; uint32_t x1278; fiat_p384_uint1 x1279; uint32_t x1280; fiat_p384_uint1 x1281; uint32_t x1282; fiat_p384_uint1 x1283; uint32_t x1284; fiat_p384_uint1 x1285; uint32_t x1286; fiat_p384_uint1 x1287; uint32_t x1288; fiat_p384_uint1 x1289; uint32_t x1290; fiat_p384_uint1 x1291; uint32_t x1292; uint32_t x1293; uint32_t x1294; uint32_t x1295; uint32_t x1296; uint32_t x1297; uint32_t x1298; uint32_t x1299; uint32_t x1300; uint32_t x1301; uint32_t x1302; uint32_t x1303; uint32_t x1304; uint32_t x1305; uint32_t x1306; uint32_t x1307; uint32_t x1308; uint32_t x1309; uint32_t x1310; uint32_t x1311; uint32_t x1312; fiat_p384_uint1 x1313; uint32_t x1314; fiat_p384_uint1 x1315; uint32_t x1316; fiat_p384_uint1 x1317; uint32_t x1318; fiat_p384_uint1 x1319; uint32_t x1320; fiat_p384_uint1 x1321; uint32_t x1322; fiat_p384_uint1 x1323; uint32_t x1324; fiat_p384_uint1 x1325; uint32_t x1326; fiat_p384_uint1 x1327; uint32_t x1328; uint32_t x1329; fiat_p384_uint1 x1330; uint32_t x1331; fiat_p384_uint1 x1332; uint32_t x1333; fiat_p384_uint1 x1334; uint32_t x1335; fiat_p384_uint1 x1336; uint32_t x1337; fiat_p384_uint1 x1338; uint32_t x1339; fiat_p384_uint1 x1340; uint32_t x1341; fiat_p384_uint1 x1342; uint32_t x1343; fiat_p384_uint1 x1344; uint32_t x1345; fiat_p384_uint1 x1346; uint32_t x1347; fiat_p384_uint1 x1348; uint32_t x1349; fiat_p384_uint1 x1350; uint32_t x1351; fiat_p384_uint1 x1352; uint32_t x1353; fiat_p384_uint1 x1354; uint32_t x1355; uint32_t x1356; uint32_t x1357; uint32_t x1358; uint32_t x1359; uint32_t x1360; uint32_t x1361; uint32_t x1362; uint32_t x1363; uint32_t x1364; uint32_t x1365; uint32_t x1366; uint32_t x1367; uint32_t x1368; uint32_t x1369; uint32_t x1370; uint32_t x1371; uint32_t x1372; uint32_t x1373; uint32_t x1374; uint32_t x1375; uint32_t x1376; uint32_t x1377; uint32_t x1378; uint32_t x1379; uint32_t x1380; fiat_p384_uint1 x1381; uint32_t x1382; fiat_p384_uint1 x1383; uint32_t x1384; fiat_p384_uint1 x1385; uint32_t x1386; fiat_p384_uint1 x1387; uint32_t x1388; fiat_p384_uint1 x1389; uint32_t x1390; fiat_p384_uint1 x1391; uint32_t x1392; fiat_p384_uint1 x1393; uint32_t x1394; fiat_p384_uint1 x1395; uint32_t x1396; fiat_p384_uint1 x1397; uint32_t x1398; fiat_p384_uint1 x1399; uint32_t x1400; fiat_p384_uint1 x1401; uint32_t x1402; uint32_t x1403; fiat_p384_uint1 x1404; uint32_t x1405; fiat_p384_uint1 x1406; uint32_t x1407; fiat_p384_uint1 x1408; uint32_t x1409; fiat_p384_uint1 x1410; uint32_t x1411; fiat_p384_uint1 x1412; uint32_t x1413; fiat_p384_uint1 x1414; uint32_t x1415; fiat_p384_uint1 x1416; uint32_t x1417; fiat_p384_uint1 x1418; uint32_t x1419; fiat_p384_uint1 x1420; uint32_t x1421; fiat_p384_uint1 x1422; uint32_t x1423; fiat_p384_uint1 x1424; uint32_t x1425; fiat_p384_uint1 x1426; uint32_t x1427; fiat_p384_uint1 x1428; uint32_t x1429; uint32_t x1430; uint32_t x1431; uint32_t x1432; uint32_t x1433; uint32_t x1434; uint32_t x1435; uint32_t x1436; uint32_t x1437; uint32_t x1438; uint32_t x1439; uint32_t x1440; uint32_t x1441; uint32_t x1442; uint32_t x1443; uint32_t x1444; uint32_t x1445; uint32_t x1446; uint32_t x1447; uint32_t x1448; uint32_t x1449; fiat_p384_uint1 x1450; uint32_t x1451; fiat_p384_uint1 x1452; uint32_t x1453; fiat_p384_uint1 x1454; uint32_t x1455; fiat_p384_uint1 x1456; uint32_t x1457; fiat_p384_uint1 x1458; uint32_t x1459; fiat_p384_uint1 x1460; uint32_t x1461; fiat_p384_uint1 x1462; uint32_t x1463; fiat_p384_uint1 x1464; uint32_t x1465; uint32_t x1466; fiat_p384_uint1 x1467; uint32_t x1468; fiat_p384_uint1 x1469; uint32_t x1470; fiat_p384_uint1 x1471; uint32_t x1472; fiat_p384_uint1 x1473; uint32_t x1474; fiat_p384_uint1 x1475; uint32_t x1476; fiat_p384_uint1 x1477; uint32_t x1478; fiat_p384_uint1 x1479; uint32_t x1480; fiat_p384_uint1 x1481; uint32_t x1482; fiat_p384_uint1 x1483; uint32_t x1484; fiat_p384_uint1 x1485; uint32_t x1486; fiat_p384_uint1 x1487; uint32_t x1488; fiat_p384_uint1 x1489; uint32_t x1490; fiat_p384_uint1 x1491; uint32_t x1492; uint32_t x1493; uint32_t x1494; uint32_t x1495; uint32_t x1496; uint32_t x1497; uint32_t x1498; uint32_t x1499; uint32_t x1500; uint32_t x1501; uint32_t x1502; uint32_t x1503; uint32_t x1504; uint32_t x1505; uint32_t x1506; uint32_t x1507; uint32_t x1508; uint32_t x1509; uint32_t x1510; uint32_t x1511; uint32_t x1512; uint32_t x1513; uint32_t x1514; uint32_t x1515; uint32_t x1516; uint32_t x1517; fiat_p384_uint1 x1518; uint32_t x1519; fiat_p384_uint1 x1520; uint32_t x1521; fiat_p384_uint1 x1522; uint32_t x1523; fiat_p384_uint1 x1524; uint32_t x1525; fiat_p384_uint1 x1526; uint32_t x1527; fiat_p384_uint1 x1528; uint32_t x1529; fiat_p384_uint1 x1530; uint32_t x1531; fiat_p384_uint1 x1532; uint32_t x1533; fiat_p384_uint1 x1534; uint32_t x1535; fiat_p384_uint1 x1536; uint32_t x1537; fiat_p384_uint1 x1538; uint32_t x1539; uint32_t x1540; fiat_p384_uint1 x1541; uint32_t x1542; fiat_p384_uint1 x1543; uint32_t x1544; fiat_p384_uint1 x1545; uint32_t x1546; fiat_p384_uint1 x1547; uint32_t x1548; fiat_p384_uint1 x1549; uint32_t x1550; fiat_p384_uint1 x1551; uint32_t x1552; fiat_p384_uint1 x1553; uint32_t x1554; fiat_p384_uint1 x1555; uint32_t x1556; fiat_p384_uint1 x1557; uint32_t x1558; fiat_p384_uint1 x1559; uint32_t x1560; fiat_p384_uint1 x1561; uint32_t x1562; fiat_p384_uint1 x1563; uint32_t x1564; fiat_p384_uint1 x1565; uint32_t x1566; uint32_t x1567; uint32_t x1568; uint32_t x1569; uint32_t x1570; uint32_t x1571; uint32_t x1572; uint32_t x1573; uint32_t x1574; uint32_t x1575; uint32_t x1576; uint32_t x1577; uint32_t x1578; uint32_t x1579; uint32_t x1580; uint32_t x1581; uint32_t x1582; uint32_t x1583; uint32_t x1584; uint32_t x1585; uint32_t x1586; fiat_p384_uint1 x1587; uint32_t x1588; fiat_p384_uint1 x1589; uint32_t x1590; fiat_p384_uint1 x1591; uint32_t x1592; fiat_p384_uint1 x1593; uint32_t x1594; fiat_p384_uint1 x1595; uint32_t x1596; fiat_p384_uint1 x1597; uint32_t x1598; fiat_p384_uint1 x1599; uint32_t x1600; fiat_p384_uint1 x1601; uint32_t x1602; uint32_t x1603; fiat_p384_uint1 x1604; uint32_t x1605; fiat_p384_uint1 x1606; uint32_t x1607; fiat_p384_uint1 x1608; uint32_t x1609; fiat_p384_uint1 x1610; uint32_t x1611; fiat_p384_uint1 x1612; uint32_t x1613; fiat_p384_uint1 x1614; uint32_t x1615; fiat_p384_uint1 x1616; uint32_t x1617; fiat_p384_uint1 x1618; uint32_t x1619; fiat_p384_uint1 x1620; uint32_t x1621; fiat_p384_uint1 x1622; uint32_t x1623; fiat_p384_uint1 x1624; uint32_t x1625; fiat_p384_uint1 x1626; uint32_t x1627; fiat_p384_uint1 x1628; uint32_t x1629; uint32_t x1630; fiat_p384_uint1 x1631; uint32_t x1632; fiat_p384_uint1 x1633; uint32_t x1634; fiat_p384_uint1 x1635; uint32_t x1636; fiat_p384_uint1 x1637; uint32_t x1638; fiat_p384_uint1 x1639; uint32_t x1640; fiat_p384_uint1 x1641; uint32_t x1642; fiat_p384_uint1 x1643; uint32_t x1644; fiat_p384_uint1 x1645; uint32_t x1646; fiat_p384_uint1 x1647; uint32_t x1648; fiat_p384_uint1 x1649; uint32_t x1650; fiat_p384_uint1 x1651; uint32_t x1652; fiat_p384_uint1 x1653; uint32_t x1654; fiat_p384_uint1 x1655; uint32_t x1656; uint32_t x1657; uint32_t x1658; uint32_t x1659; uint32_t x1660; uint32_t x1661; uint32_t x1662; uint32_t x1663; uint32_t x1664; uint32_t x1665; uint32_t x1666; uint32_t x1667; x1 = (arg1[1]); x2 = (arg1[2]); x3 = (arg1[3]); x4 = (arg1[4]); x5 = (arg1[5]); x6 = (arg1[6]); x7 = (arg1[7]); x8 = (arg1[8]); x9 = (arg1[9]); x10 = (arg1[10]); x11 = (arg1[11]); x12 = (arg1[0]); fiat_p384_mulx_u32(&x13, &x14, x12, (arg1[11])); fiat_p384_mulx_u32(&x15, &x16, x12, (arg1[10])); fiat_p384_mulx_u32(&x17, &x18, x12, (arg1[9])); fiat_p384_mulx_u32(&x19, &x20, x12, (arg1[8])); fiat_p384_mulx_u32(&x21, &x22, x12, (arg1[7])); fiat_p384_mulx_u32(&x23, &x24, x12, (arg1[6])); fiat_p384_mulx_u32(&x25, &x26, x12, (arg1[5])); fiat_p384_mulx_u32(&x27, &x28, x12, (arg1[4])); fiat_p384_mulx_u32(&x29, &x30, x12, (arg1[3])); fiat_p384_mulx_u32(&x31, &x32, x12, (arg1[2])); fiat_p384_mulx_u32(&x33, &x34, x12, (arg1[1])); fiat_p384_mulx_u32(&x35, &x36, x12, (arg1[0])); fiat_p384_addcarryx_u32(&x37, &x38, 0x0, x36, x33); fiat_p384_addcarryx_u32(&x39, &x40, x38, x34, x31); fiat_p384_addcarryx_u32(&x41, &x42, x40, x32, x29); fiat_p384_addcarryx_u32(&x43, &x44, x42, x30, x27); fiat_p384_addcarryx_u32(&x45, &x46, x44, x28, x25); fiat_p384_addcarryx_u32(&x47, &x48, x46, x26, x23); fiat_p384_addcarryx_u32(&x49, &x50, x48, x24, x21); fiat_p384_addcarryx_u32(&x51, &x52, x50, x22, x19); fiat_p384_addcarryx_u32(&x53, &x54, x52, x20, x17); fiat_p384_addcarryx_u32(&x55, &x56, x54, x18, x15); fiat_p384_addcarryx_u32(&x57, &x58, x56, x16, x13); x59 = (x58 + x14); fiat_p384_mulx_u32(&x60, &x61, x35, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x62, &x63, x35, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x64, &x65, x35, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x66, &x67, x35, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x68, &x69, x35, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x70, &x71, x35, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x72, &x73, x35, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x74, &x75, x35, UINT32_C(0xfffffffe)); fiat_p384_mulx_u32(&x76, &x77, x35, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x78, &x79, x35, UINT32_C(0xffffffff)); fiat_p384_addcarryx_u32(&x80, &x81, 0x0, x77, x74); fiat_p384_addcarryx_u32(&x82, &x83, x81, x75, x72); fiat_p384_addcarryx_u32(&x84, &x85, x83, x73, x70); fiat_p384_addcarryx_u32(&x86, &x87, x85, x71, x68); fiat_p384_addcarryx_u32(&x88, &x89, x87, x69, x66); fiat_p384_addcarryx_u32(&x90, &x91, x89, x67, x64); fiat_p384_addcarryx_u32(&x92, &x93, x91, x65, x62); fiat_p384_addcarryx_u32(&x94, &x95, x93, x63, x60); x96 = (x95 + x61); fiat_p384_addcarryx_u32(&x97, &x98, 0x0, x35, x78); fiat_p384_addcarryx_u32(&x99, &x100, x98, x37, x79); fiat_p384_addcarryx_u32(&x101, &x102, x100, x39, 0x0); fiat_p384_addcarryx_u32(&x103, &x104, x102, x41, x76); fiat_p384_addcarryx_u32(&x105, &x106, x104, x43, x80); fiat_p384_addcarryx_u32(&x107, &x108, x106, x45, x82); fiat_p384_addcarryx_u32(&x109, &x110, x108, x47, x84); fiat_p384_addcarryx_u32(&x111, &x112, x110, x49, x86); fiat_p384_addcarryx_u32(&x113, &x114, x112, x51, x88); fiat_p384_addcarryx_u32(&x115, &x116, x114, x53, x90); fiat_p384_addcarryx_u32(&x117, &x118, x116, x55, x92); fiat_p384_addcarryx_u32(&x119, &x120, x118, x57, x94); fiat_p384_addcarryx_u32(&x121, &x122, x120, x59, x96); fiat_p384_mulx_u32(&x123, &x124, x1, (arg1[11])); fiat_p384_mulx_u32(&x125, &x126, x1, (arg1[10])); fiat_p384_mulx_u32(&x127, &x128, x1, (arg1[9])); fiat_p384_mulx_u32(&x129, &x130, x1, (arg1[8])); fiat_p384_mulx_u32(&x131, &x132, x1, (arg1[7])); fiat_p384_mulx_u32(&x133, &x134, x1, (arg1[6])); fiat_p384_mulx_u32(&x135, &x136, x1, (arg1[5])); fiat_p384_mulx_u32(&x137, &x138, x1, (arg1[4])); fiat_p384_mulx_u32(&x139, &x140, x1, (arg1[3])); fiat_p384_mulx_u32(&x141, &x142, x1, (arg1[2])); fiat_p384_mulx_u32(&x143, &x144, x1, (arg1[1])); fiat_p384_mulx_u32(&x145, &x146, x1, (arg1[0])); fiat_p384_addcarryx_u32(&x147, &x148, 0x0, x146, x143); fiat_p384_addcarryx_u32(&x149, &x150, x148, x144, x141); fiat_p384_addcarryx_u32(&x151, &x152, x150, x142, x139); fiat_p384_addcarryx_u32(&x153, &x154, x152, x140, x137); fiat_p384_addcarryx_u32(&x155, &x156, x154, x138, x135); fiat_p384_addcarryx_u32(&x157, &x158, x156, x136, x133); fiat_p384_addcarryx_u32(&x159, &x160, x158, x134, x131); fiat_p384_addcarryx_u32(&x161, &x162, x160, x132, x129); fiat_p384_addcarryx_u32(&x163, &x164, x162, x130, x127); fiat_p384_addcarryx_u32(&x165, &x166, x164, x128, x125); fiat_p384_addcarryx_u32(&x167, &x168, x166, x126, x123); x169 = (x168 + x124); fiat_p384_addcarryx_u32(&x170, &x171, 0x0, x99, x145); fiat_p384_addcarryx_u32(&x172, &x173, x171, x101, x147); fiat_p384_addcarryx_u32(&x174, &x175, x173, x103, x149); fiat_p384_addcarryx_u32(&x176, &x177, x175, x105, x151); fiat_p384_addcarryx_u32(&x178, &x179, x177, x107, x153); fiat_p384_addcarryx_u32(&x180, &x181, x179, x109, x155); fiat_p384_addcarryx_u32(&x182, &x183, x181, x111, x157); fiat_p384_addcarryx_u32(&x184, &x185, x183, x113, x159); fiat_p384_addcarryx_u32(&x186, &x187, x185, x115, x161); fiat_p384_addcarryx_u32(&x188, &x189, x187, x117, x163); fiat_p384_addcarryx_u32(&x190, &x191, x189, x119, x165); fiat_p384_addcarryx_u32(&x192, &x193, x191, x121, x167); fiat_p384_addcarryx_u32(&x194, &x195, x193, x122, x169); fiat_p384_mulx_u32(&x196, &x197, x170, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x198, &x199, x170, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x200, &x201, x170, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x202, &x203, x170, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x204, &x205, x170, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x206, &x207, x170, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x208, &x209, x170, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x210, &x211, x170, UINT32_C(0xfffffffe)); fiat_p384_mulx_u32(&x212, &x213, x170, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x214, &x215, x170, UINT32_C(0xffffffff)); fiat_p384_addcarryx_u32(&x216, &x217, 0x0, x213, x210); fiat_p384_addcarryx_u32(&x218, &x219, x217, x211, x208); fiat_p384_addcarryx_u32(&x220, &x221, x219, x209, x206); fiat_p384_addcarryx_u32(&x222, &x223, x221, x207, x204); fiat_p384_addcarryx_u32(&x224, &x225, x223, x205, x202); fiat_p384_addcarryx_u32(&x226, &x227, x225, x203, x200); fiat_p384_addcarryx_u32(&x228, &x229, x227, x201, x198); fiat_p384_addcarryx_u32(&x230, &x231, x229, x199, x196); x232 = (x231 + x197); fiat_p384_addcarryx_u32(&x233, &x234, 0x0, x170, x214); fiat_p384_addcarryx_u32(&x235, &x236, x234, x172, x215); fiat_p384_addcarryx_u32(&x237, &x238, x236, x174, 0x0); fiat_p384_addcarryx_u32(&x239, &x240, x238, x176, x212); fiat_p384_addcarryx_u32(&x241, &x242, x240, x178, x216); fiat_p384_addcarryx_u32(&x243, &x244, x242, x180, x218); fiat_p384_addcarryx_u32(&x245, &x246, x244, x182, x220); fiat_p384_addcarryx_u32(&x247, &x248, x246, x184, x222); fiat_p384_addcarryx_u32(&x249, &x250, x248, x186, x224); fiat_p384_addcarryx_u32(&x251, &x252, x250, x188, x226); fiat_p384_addcarryx_u32(&x253, &x254, x252, x190, x228); fiat_p384_addcarryx_u32(&x255, &x256, x254, x192, x230); fiat_p384_addcarryx_u32(&x257, &x258, x256, x194, x232); x259 = ((uint32_t)x258 + x195); fiat_p384_mulx_u32(&x260, &x261, x2, (arg1[11])); fiat_p384_mulx_u32(&x262, &x263, x2, (arg1[10])); fiat_p384_mulx_u32(&x264, &x265, x2, (arg1[9])); fiat_p384_mulx_u32(&x266, &x267, x2, (arg1[8])); fiat_p384_mulx_u32(&x268, &x269, x2, (arg1[7])); fiat_p384_mulx_u32(&x270, &x271, x2, (arg1[6])); fiat_p384_mulx_u32(&x272, &x273, x2, (arg1[5])); fiat_p384_mulx_u32(&x274, &x275, x2, (arg1[4])); fiat_p384_mulx_u32(&x276, &x277, x2, (arg1[3])); fiat_p384_mulx_u32(&x278, &x279, x2, (arg1[2])); fiat_p384_mulx_u32(&x280, &x281, x2, (arg1[1])); fiat_p384_mulx_u32(&x282, &x283, x2, (arg1[0])); fiat_p384_addcarryx_u32(&x284, &x285, 0x0, x283, x280); fiat_p384_addcarryx_u32(&x286, &x287, x285, x281, x278); fiat_p384_addcarryx_u32(&x288, &x289, x287, x279, x276); fiat_p384_addcarryx_u32(&x290, &x291, x289, x277, x274); fiat_p384_addcarryx_u32(&x292, &x293, x291, x275, x272); fiat_p384_addcarryx_u32(&x294, &x295, x293, x273, x270); fiat_p384_addcarryx_u32(&x296, &x297, x295, x271, x268); fiat_p384_addcarryx_u32(&x298, &x299, x297, x269, x266); fiat_p384_addcarryx_u32(&x300, &x301, x299, x267, x264); fiat_p384_addcarryx_u32(&x302, &x303, x301, x265, x262); fiat_p384_addcarryx_u32(&x304, &x305, x303, x263, x260); x306 = (x305 + x261); fiat_p384_addcarryx_u32(&x307, &x308, 0x0, x235, x282); fiat_p384_addcarryx_u32(&x309, &x310, x308, x237, x284); fiat_p384_addcarryx_u32(&x311, &x312, x310, x239, x286); fiat_p384_addcarryx_u32(&x313, &x314, x312, x241, x288); fiat_p384_addcarryx_u32(&x315, &x316, x314, x243, x290); fiat_p384_addcarryx_u32(&x317, &x318, x316, x245, x292); fiat_p384_addcarryx_u32(&x319, &x320, x318, x247, x294); fiat_p384_addcarryx_u32(&x321, &x322, x320, x249, x296); fiat_p384_addcarryx_u32(&x323, &x324, x322, x251, x298); fiat_p384_addcarryx_u32(&x325, &x326, x324, x253, x300); fiat_p384_addcarryx_u32(&x327, &x328, x326, x255, x302); fiat_p384_addcarryx_u32(&x329, &x330, x328, x257, x304); fiat_p384_addcarryx_u32(&x331, &x332, x330, x259, x306); fiat_p384_mulx_u32(&x333, &x334, x307, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x335, &x336, x307, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x337, &x338, x307, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x339, &x340, x307, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x341, &x342, x307, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x343, &x344, x307, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x345, &x346, x307, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x347, &x348, x307, UINT32_C(0xfffffffe)); fiat_p384_mulx_u32(&x349, &x350, x307, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x351, &x352, x307, UINT32_C(0xffffffff)); fiat_p384_addcarryx_u32(&x353, &x354, 0x0, x350, x347); fiat_p384_addcarryx_u32(&x355, &x356, x354, x348, x345); fiat_p384_addcarryx_u32(&x357, &x358, x356, x346, x343); fiat_p384_addcarryx_u32(&x359, &x360, x358, x344, x341); fiat_p384_addcarryx_u32(&x361, &x362, x360, x342, x339); fiat_p384_addcarryx_u32(&x363, &x364, x362, x340, x337); fiat_p384_addcarryx_u32(&x365, &x366, x364, x338, x335); fiat_p384_addcarryx_u32(&x367, &x368, x366, x336, x333); x369 = (x368 + x334); fiat_p384_addcarryx_u32(&x370, &x371, 0x0, x307, x351); fiat_p384_addcarryx_u32(&x372, &x373, x371, x309, x352); fiat_p384_addcarryx_u32(&x374, &x375, x373, x311, 0x0); fiat_p384_addcarryx_u32(&x376, &x377, x375, x313, x349); fiat_p384_addcarryx_u32(&x378, &x379, x377, x315, x353); fiat_p384_addcarryx_u32(&x380, &x381, x379, x317, x355); fiat_p384_addcarryx_u32(&x382, &x383, x381, x319, x357); fiat_p384_addcarryx_u32(&x384, &x385, x383, x321, x359); fiat_p384_addcarryx_u32(&x386, &x387, x385, x323, x361); fiat_p384_addcarryx_u32(&x388, &x389, x387, x325, x363); fiat_p384_addcarryx_u32(&x390, &x391, x389, x327, x365); fiat_p384_addcarryx_u32(&x392, &x393, x391, x329, x367); fiat_p384_addcarryx_u32(&x394, &x395, x393, x331, x369); x396 = ((uint32_t)x395 + x332); fiat_p384_mulx_u32(&x397, &x398, x3, (arg1[11])); fiat_p384_mulx_u32(&x399, &x400, x3, (arg1[10])); fiat_p384_mulx_u32(&x401, &x402, x3, (arg1[9])); fiat_p384_mulx_u32(&x403, &x404, x3, (arg1[8])); fiat_p384_mulx_u32(&x405, &x406, x3, (arg1[7])); fiat_p384_mulx_u32(&x407, &x408, x3, (arg1[6])); fiat_p384_mulx_u32(&x409, &x410, x3, (arg1[5])); fiat_p384_mulx_u32(&x411, &x412, x3, (arg1[4])); fiat_p384_mulx_u32(&x413, &x414, x3, (arg1[3])); fiat_p384_mulx_u32(&x415, &x416, x3, (arg1[2])); fiat_p384_mulx_u32(&x417, &x418, x3, (arg1[1])); fiat_p384_mulx_u32(&x419, &x420, x3, (arg1[0])); fiat_p384_addcarryx_u32(&x421, &x422, 0x0, x420, x417); fiat_p384_addcarryx_u32(&x423, &x424, x422, x418, x415); fiat_p384_addcarryx_u32(&x425, &x426, x424, x416, x413); fiat_p384_addcarryx_u32(&x427, &x428, x426, x414, x411); fiat_p384_addcarryx_u32(&x429, &x430, x428, x412, x409); fiat_p384_addcarryx_u32(&x431, &x432, x430, x410, x407); fiat_p384_addcarryx_u32(&x433, &x434, x432, x408, x405); fiat_p384_addcarryx_u32(&x435, &x436, x434, x406, x403); fiat_p384_addcarryx_u32(&x437, &x438, x436, x404, x401); fiat_p384_addcarryx_u32(&x439, &x440, x438, x402, x399); fiat_p384_addcarryx_u32(&x441, &x442, x440, x400, x397); x443 = (x442 + x398); fiat_p384_addcarryx_u32(&x444, &x445, 0x0, x372, x419); fiat_p384_addcarryx_u32(&x446, &x447, x445, x374, x421); fiat_p384_addcarryx_u32(&x448, &x449, x447, x376, x423); fiat_p384_addcarryx_u32(&x450, &x451, x449, x378, x425); fiat_p384_addcarryx_u32(&x452, &x453, x451, x380, x427); fiat_p384_addcarryx_u32(&x454, &x455, x453, x382, x429); fiat_p384_addcarryx_u32(&x456, &x457, x455, x384, x431); fiat_p384_addcarryx_u32(&x458, &x459, x457, x386, x433); fiat_p384_addcarryx_u32(&x460, &x461, x459, x388, x435); fiat_p384_addcarryx_u32(&x462, &x463, x461, x390, x437); fiat_p384_addcarryx_u32(&x464, &x465, x463, x392, x439); fiat_p384_addcarryx_u32(&x466, &x467, x465, x394, x441); fiat_p384_addcarryx_u32(&x468, &x469, x467, x396, x443); fiat_p384_mulx_u32(&x470, &x471, x444, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x472, &x473, x444, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x474, &x475, x444, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x476, &x477, x444, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x478, &x479, x444, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x480, &x481, x444, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x482, &x483, x444, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x484, &x485, x444, UINT32_C(0xfffffffe)); fiat_p384_mulx_u32(&x486, &x487, x444, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x488, &x489, x444, UINT32_C(0xffffffff)); fiat_p384_addcarryx_u32(&x490, &x491, 0x0, x487, x484); fiat_p384_addcarryx_u32(&x492, &x493, x491, x485, x482); fiat_p384_addcarryx_u32(&x494, &x495, x493, x483, x480); fiat_p384_addcarryx_u32(&x496, &x497, x495, x481, x478); fiat_p384_addcarryx_u32(&x498, &x499, x497, x479, x476); fiat_p384_addcarryx_u32(&x500, &x501, x499, x477, x474); fiat_p384_addcarryx_u32(&x502, &x503, x501, x475, x472); fiat_p384_addcarryx_u32(&x504, &x505, x503, x473, x470); x506 = (x505 + x471); fiat_p384_addcarryx_u32(&x507, &x508, 0x0, x444, x488); fiat_p384_addcarryx_u32(&x509, &x510, x508, x446, x489); fiat_p384_addcarryx_u32(&x511, &x512, x510, x448, 0x0); fiat_p384_addcarryx_u32(&x513, &x514, x512, x450, x486); fiat_p384_addcarryx_u32(&x515, &x516, x514, x452, x490); fiat_p384_addcarryx_u32(&x517, &x518, x516, x454, x492); fiat_p384_addcarryx_u32(&x519, &x520, x518, x456, x494); fiat_p384_addcarryx_u32(&x521, &x522, x520, x458, x496); fiat_p384_addcarryx_u32(&x523, &x524, x522, x460, x498); fiat_p384_addcarryx_u32(&x525, &x526, x524, x462, x500); fiat_p384_addcarryx_u32(&x527, &x528, x526, x464, x502); fiat_p384_addcarryx_u32(&x529, &x530, x528, x466, x504); fiat_p384_addcarryx_u32(&x531, &x532, x530, x468, x506); x533 = ((uint32_t)x532 + x469); fiat_p384_mulx_u32(&x534, &x535, x4, (arg1[11])); fiat_p384_mulx_u32(&x536, &x537, x4, (arg1[10])); fiat_p384_mulx_u32(&x538, &x539, x4, (arg1[9])); fiat_p384_mulx_u32(&x540, &x541, x4, (arg1[8])); fiat_p384_mulx_u32(&x542, &x543, x4, (arg1[7])); fiat_p384_mulx_u32(&x544, &x545, x4, (arg1[6])); fiat_p384_mulx_u32(&x546, &x547, x4, (arg1[5])); fiat_p384_mulx_u32(&x548, &x549, x4, (arg1[4])); fiat_p384_mulx_u32(&x550, &x551, x4, (arg1[3])); fiat_p384_mulx_u32(&x552, &x553, x4, (arg1[2])); fiat_p384_mulx_u32(&x554, &x555, x4, (arg1[1])); fiat_p384_mulx_u32(&x556, &x557, x4, (arg1[0])); fiat_p384_addcarryx_u32(&x558, &x559, 0x0, x557, x554); fiat_p384_addcarryx_u32(&x560, &x561, x559, x555, x552); fiat_p384_addcarryx_u32(&x562, &x563, x561, x553, x550); fiat_p384_addcarryx_u32(&x564, &x565, x563, x551, x548); fiat_p384_addcarryx_u32(&x566, &x567, x565, x549, x546); fiat_p384_addcarryx_u32(&x568, &x569, x567, x547, x544); fiat_p384_addcarryx_u32(&x570, &x571, x569, x545, x542); fiat_p384_addcarryx_u32(&x572, &x573, x571, x543, x540); fiat_p384_addcarryx_u32(&x574, &x575, x573, x541, x538); fiat_p384_addcarryx_u32(&x576, &x577, x575, x539, x536); fiat_p384_addcarryx_u32(&x578, &x579, x577, x537, x534); x580 = (x579 + x535); fiat_p384_addcarryx_u32(&x581, &x582, 0x0, x509, x556); fiat_p384_addcarryx_u32(&x583, &x584, x582, x511, x558); fiat_p384_addcarryx_u32(&x585, &x586, x584, x513, x560); fiat_p384_addcarryx_u32(&x587, &x588, x586, x515, x562); fiat_p384_addcarryx_u32(&x589, &x590, x588, x517, x564); fiat_p384_addcarryx_u32(&x591, &x592, x590, x519, x566); fiat_p384_addcarryx_u32(&x593, &x594, x592, x521, x568); fiat_p384_addcarryx_u32(&x595, &x596, x594, x523, x570); fiat_p384_addcarryx_u32(&x597, &x598, x596, x525, x572); fiat_p384_addcarryx_u32(&x599, &x600, x598, x527, x574); fiat_p384_addcarryx_u32(&x601, &x602, x600, x529, x576); fiat_p384_addcarryx_u32(&x603, &x604, x602, x531, x578); fiat_p384_addcarryx_u32(&x605, &x606, x604, x533, x580); fiat_p384_mulx_u32(&x607, &x608, x581, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x609, &x610, x581, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x611, &x612, x581, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x613, &x614, x581, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x615, &x616, x581, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x617, &x618, x581, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x619, &x620, x581, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x621, &x622, x581, UINT32_C(0xfffffffe)); fiat_p384_mulx_u32(&x623, &x624, x581, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x625, &x626, x581, UINT32_C(0xffffffff)); fiat_p384_addcarryx_u32(&x627, &x628, 0x0, x624, x621); fiat_p384_addcarryx_u32(&x629, &x630, x628, x622, x619); fiat_p384_addcarryx_u32(&x631, &x632, x630, x620, x617); fiat_p384_addcarryx_u32(&x633, &x634, x632, x618, x615); fiat_p384_addcarryx_u32(&x635, &x636, x634, x616, x613); fiat_p384_addcarryx_u32(&x637, &x638, x636, x614, x611); fiat_p384_addcarryx_u32(&x639, &x640, x638, x612, x609); fiat_p384_addcarryx_u32(&x641, &x642, x640, x610, x607); x643 = (x642 + x608); fiat_p384_addcarryx_u32(&x644, &x645, 0x0, x581, x625); fiat_p384_addcarryx_u32(&x646, &x647, x645, x583, x626); fiat_p384_addcarryx_u32(&x648, &x649, x647, x585, 0x0); fiat_p384_addcarryx_u32(&x650, &x651, x649, x587, x623); fiat_p384_addcarryx_u32(&x652, &x653, x651, x589, x627); fiat_p384_addcarryx_u32(&x654, &x655, x653, x591, x629); fiat_p384_addcarryx_u32(&x656, &x657, x655, x593, x631); fiat_p384_addcarryx_u32(&x658, &x659, x657, x595, x633); fiat_p384_addcarryx_u32(&x660, &x661, x659, x597, x635); fiat_p384_addcarryx_u32(&x662, &x663, x661, x599, x637); fiat_p384_addcarryx_u32(&x664, &x665, x663, x601, x639); fiat_p384_addcarryx_u32(&x666, &x667, x665, x603, x641); fiat_p384_addcarryx_u32(&x668, &x669, x667, x605, x643); x670 = ((uint32_t)x669 + x606); fiat_p384_mulx_u32(&x671, &x672, x5, (arg1[11])); fiat_p384_mulx_u32(&x673, &x674, x5, (arg1[10])); fiat_p384_mulx_u32(&x675, &x676, x5, (arg1[9])); fiat_p384_mulx_u32(&x677, &x678, x5, (arg1[8])); fiat_p384_mulx_u32(&x679, &x680, x5, (arg1[7])); fiat_p384_mulx_u32(&x681, &x682, x5, (arg1[6])); fiat_p384_mulx_u32(&x683, &x684, x5, (arg1[5])); fiat_p384_mulx_u32(&x685, &x686, x5, (arg1[4])); fiat_p384_mulx_u32(&x687, &x688, x5, (arg1[3])); fiat_p384_mulx_u32(&x689, &x690, x5, (arg1[2])); fiat_p384_mulx_u32(&x691, &x692, x5, (arg1[1])); fiat_p384_mulx_u32(&x693, &x694, x5, (arg1[0])); fiat_p384_addcarryx_u32(&x695, &x696, 0x0, x694, x691); fiat_p384_addcarryx_u32(&x697, &x698, x696, x692, x689); fiat_p384_addcarryx_u32(&x699, &x700, x698, x690, x687); fiat_p384_addcarryx_u32(&x701, &x702, x700, x688, x685); fiat_p384_addcarryx_u32(&x703, &x704, x702, x686, x683); fiat_p384_addcarryx_u32(&x705, &x706, x704, x684, x681); fiat_p384_addcarryx_u32(&x707, &x708, x706, x682, x679); fiat_p384_addcarryx_u32(&x709, &x710, x708, x680, x677); fiat_p384_addcarryx_u32(&x711, &x712, x710, x678, x675); fiat_p384_addcarryx_u32(&x713, &x714, x712, x676, x673); fiat_p384_addcarryx_u32(&x715, &x716, x714, x674, x671); x717 = (x716 + x672); fiat_p384_addcarryx_u32(&x718, &x719, 0x0, x646, x693); fiat_p384_addcarryx_u32(&x720, &x721, x719, x648, x695); fiat_p384_addcarryx_u32(&x722, &x723, x721, x650, x697); fiat_p384_addcarryx_u32(&x724, &x725, x723, x652, x699); fiat_p384_addcarryx_u32(&x726, &x727, x725, x654, x701); fiat_p384_addcarryx_u32(&x728, &x729, x727, x656, x703); fiat_p384_addcarryx_u32(&x730, &x731, x729, x658, x705); fiat_p384_addcarryx_u32(&x732, &x733, x731, x660, x707); fiat_p384_addcarryx_u32(&x734, &x735, x733, x662, x709); fiat_p384_addcarryx_u32(&x736, &x737, x735, x664, x711); fiat_p384_addcarryx_u32(&x738, &x739, x737, x666, x713); fiat_p384_addcarryx_u32(&x740, &x741, x739, x668, x715); fiat_p384_addcarryx_u32(&x742, &x743, x741, x670, x717); fiat_p384_mulx_u32(&x744, &x745, x718, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x746, &x747, x718, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x748, &x749, x718, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x750, &x751, x718, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x752, &x753, x718, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x754, &x755, x718, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x756, &x757, x718, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x758, &x759, x718, UINT32_C(0xfffffffe)); fiat_p384_mulx_u32(&x760, &x761, x718, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x762, &x763, x718, UINT32_C(0xffffffff)); fiat_p384_addcarryx_u32(&x764, &x765, 0x0, x761, x758); fiat_p384_addcarryx_u32(&x766, &x767, x765, x759, x756); fiat_p384_addcarryx_u32(&x768, &x769, x767, x757, x754); fiat_p384_addcarryx_u32(&x770, &x771, x769, x755, x752); fiat_p384_addcarryx_u32(&x772, &x773, x771, x753, x750); fiat_p384_addcarryx_u32(&x774, &x775, x773, x751, x748); fiat_p384_addcarryx_u32(&x776, &x777, x775, x749, x746); fiat_p384_addcarryx_u32(&x778, &x779, x777, x747, x744); x780 = (x779 + x745); fiat_p384_addcarryx_u32(&x781, &x782, 0x0, x718, x762); fiat_p384_addcarryx_u32(&x783, &x784, x782, x720, x763); fiat_p384_addcarryx_u32(&x785, &x786, x784, x722, 0x0); fiat_p384_addcarryx_u32(&x787, &x788, x786, x724, x760); fiat_p384_addcarryx_u32(&x789, &x790, x788, x726, x764); fiat_p384_addcarryx_u32(&x791, &x792, x790, x728, x766); fiat_p384_addcarryx_u32(&x793, &x794, x792, x730, x768); fiat_p384_addcarryx_u32(&x795, &x796, x794, x732, x770); fiat_p384_addcarryx_u32(&x797, &x798, x796, x734, x772); fiat_p384_addcarryx_u32(&x799, &x800, x798, x736, x774); fiat_p384_addcarryx_u32(&x801, &x802, x800, x738, x776); fiat_p384_addcarryx_u32(&x803, &x804, x802, x740, x778); fiat_p384_addcarryx_u32(&x805, &x806, x804, x742, x780); x807 = ((uint32_t)x806 + x743); fiat_p384_mulx_u32(&x808, &x809, x6, (arg1[11])); fiat_p384_mulx_u32(&x810, &x811, x6, (arg1[10])); fiat_p384_mulx_u32(&x812, &x813, x6, (arg1[9])); fiat_p384_mulx_u32(&x814, &x815, x6, (arg1[8])); fiat_p384_mulx_u32(&x816, &x817, x6, (arg1[7])); fiat_p384_mulx_u32(&x818, &x819, x6, (arg1[6])); fiat_p384_mulx_u32(&x820, &x821, x6, (arg1[5])); fiat_p384_mulx_u32(&x822, &x823, x6, (arg1[4])); fiat_p384_mulx_u32(&x824, &x825, x6, (arg1[3])); fiat_p384_mulx_u32(&x826, &x827, x6, (arg1[2])); fiat_p384_mulx_u32(&x828, &x829, x6, (arg1[1])); fiat_p384_mulx_u32(&x830, &x831, x6, (arg1[0])); fiat_p384_addcarryx_u32(&x832, &x833, 0x0, x831, x828); fiat_p384_addcarryx_u32(&x834, &x835, x833, x829, x826); fiat_p384_addcarryx_u32(&x836, &x837, x835, x827, x824); fiat_p384_addcarryx_u32(&x838, &x839, x837, x825, x822); fiat_p384_addcarryx_u32(&x840, &x841, x839, x823, x820); fiat_p384_addcarryx_u32(&x842, &x843, x841, x821, x818); fiat_p384_addcarryx_u32(&x844, &x845, x843, x819, x816); fiat_p384_addcarryx_u32(&x846, &x847, x845, x817, x814); fiat_p384_addcarryx_u32(&x848, &x849, x847, x815, x812); fiat_p384_addcarryx_u32(&x850, &x851, x849, x813, x810); fiat_p384_addcarryx_u32(&x852, &x853, x851, x811, x808); x854 = (x853 + x809); fiat_p384_addcarryx_u32(&x855, &x856, 0x0, x783, x830); fiat_p384_addcarryx_u32(&x857, &x858, x856, x785, x832); fiat_p384_addcarryx_u32(&x859, &x860, x858, x787, x834); fiat_p384_addcarryx_u32(&x861, &x862, x860, x789, x836); fiat_p384_addcarryx_u32(&x863, &x864, x862, x791, x838); fiat_p384_addcarryx_u32(&x865, &x866, x864, x793, x840); fiat_p384_addcarryx_u32(&x867, &x868, x866, x795, x842); fiat_p384_addcarryx_u32(&x869, &x870, x868, x797, x844); fiat_p384_addcarryx_u32(&x871, &x872, x870, x799, x846); fiat_p384_addcarryx_u32(&x873, &x874, x872, x801, x848); fiat_p384_addcarryx_u32(&x875, &x876, x874, x803, x850); fiat_p384_addcarryx_u32(&x877, &x878, x876, x805, x852); fiat_p384_addcarryx_u32(&x879, &x880, x878, x807, x854); fiat_p384_mulx_u32(&x881, &x882, x855, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x883, &x884, x855, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x885, &x886, x855, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x887, &x888, x855, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x889, &x890, x855, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x891, &x892, x855, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x893, &x894, x855, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x895, &x896, x855, UINT32_C(0xfffffffe)); fiat_p384_mulx_u32(&x897, &x898, x855, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x899, &x900, x855, UINT32_C(0xffffffff)); fiat_p384_addcarryx_u32(&x901, &x902, 0x0, x898, x895); fiat_p384_addcarryx_u32(&x903, &x904, x902, x896, x893); fiat_p384_addcarryx_u32(&x905, &x906, x904, x894, x891); fiat_p384_addcarryx_u32(&x907, &x908, x906, x892, x889); fiat_p384_addcarryx_u32(&x909, &x910, x908, x890, x887); fiat_p384_addcarryx_u32(&x911, &x912, x910, x888, x885); fiat_p384_addcarryx_u32(&x913, &x914, x912, x886, x883); fiat_p384_addcarryx_u32(&x915, &x916, x914, x884, x881); x917 = (x916 + x882); fiat_p384_addcarryx_u32(&x918, &x919, 0x0, x855, x899); fiat_p384_addcarryx_u32(&x920, &x921, x919, x857, x900); fiat_p384_addcarryx_u32(&x922, &x923, x921, x859, 0x0); fiat_p384_addcarryx_u32(&x924, &x925, x923, x861, x897); fiat_p384_addcarryx_u32(&x926, &x927, x925, x863, x901); fiat_p384_addcarryx_u32(&x928, &x929, x927, x865, x903); fiat_p384_addcarryx_u32(&x930, &x931, x929, x867, x905); fiat_p384_addcarryx_u32(&x932, &x933, x931, x869, x907); fiat_p384_addcarryx_u32(&x934, &x935, x933, x871, x909); fiat_p384_addcarryx_u32(&x936, &x937, x935, x873, x911); fiat_p384_addcarryx_u32(&x938, &x939, x937, x875, x913); fiat_p384_addcarryx_u32(&x940, &x941, x939, x877, x915); fiat_p384_addcarryx_u32(&x942, &x943, x941, x879, x917); x944 = ((uint32_t)x943 + x880); fiat_p384_mulx_u32(&x945, &x946, x7, (arg1[11])); fiat_p384_mulx_u32(&x947, &x948, x7, (arg1[10])); fiat_p384_mulx_u32(&x949, &x950, x7, (arg1[9])); fiat_p384_mulx_u32(&x951, &x952, x7, (arg1[8])); fiat_p384_mulx_u32(&x953, &x954, x7, (arg1[7])); fiat_p384_mulx_u32(&x955, &x956, x7, (arg1[6])); fiat_p384_mulx_u32(&x957, &x958, x7, (arg1[5])); fiat_p384_mulx_u32(&x959, &x960, x7, (arg1[4])); fiat_p384_mulx_u32(&x961, &x962, x7, (arg1[3])); fiat_p384_mulx_u32(&x963, &x964, x7, (arg1[2])); fiat_p384_mulx_u32(&x965, &x966, x7, (arg1[1])); fiat_p384_mulx_u32(&x967, &x968, x7, (arg1[0])); fiat_p384_addcarryx_u32(&x969, &x970, 0x0, x968, x965); fiat_p384_addcarryx_u32(&x971, &x972, x970, x966, x963); fiat_p384_addcarryx_u32(&x973, &x974, x972, x964, x961); fiat_p384_addcarryx_u32(&x975, &x976, x974, x962, x959); fiat_p384_addcarryx_u32(&x977, &x978, x976, x960, x957); fiat_p384_addcarryx_u32(&x979, &x980, x978, x958, x955); fiat_p384_addcarryx_u32(&x981, &x982, x980, x956, x953); fiat_p384_addcarryx_u32(&x983, &x984, x982, x954, x951); fiat_p384_addcarryx_u32(&x985, &x986, x984, x952, x949); fiat_p384_addcarryx_u32(&x987, &x988, x986, x950, x947); fiat_p384_addcarryx_u32(&x989, &x990, x988, x948, x945); x991 = (x990 + x946); fiat_p384_addcarryx_u32(&x992, &x993, 0x0, x920, x967); fiat_p384_addcarryx_u32(&x994, &x995, x993, x922, x969); fiat_p384_addcarryx_u32(&x996, &x997, x995, x924, x971); fiat_p384_addcarryx_u32(&x998, &x999, x997, x926, x973); fiat_p384_addcarryx_u32(&x1000, &x1001, x999, x928, x975); fiat_p384_addcarryx_u32(&x1002, &x1003, x1001, x930, x977); fiat_p384_addcarryx_u32(&x1004, &x1005, x1003, x932, x979); fiat_p384_addcarryx_u32(&x1006, &x1007, x1005, x934, x981); fiat_p384_addcarryx_u32(&x1008, &x1009, x1007, x936, x983); fiat_p384_addcarryx_u32(&x1010, &x1011, x1009, x938, x985); fiat_p384_addcarryx_u32(&x1012, &x1013, x1011, x940, x987); fiat_p384_addcarryx_u32(&x1014, &x1015, x1013, x942, x989); fiat_p384_addcarryx_u32(&x1016, &x1017, x1015, x944, x991); fiat_p384_mulx_u32(&x1018, &x1019, x992, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x1020, &x1021, x992, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x1022, &x1023, x992, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x1024, &x1025, x992, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x1026, &x1027, x992, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x1028, &x1029, x992, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x1030, &x1031, x992, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x1032, &x1033, x992, UINT32_C(0xfffffffe)); fiat_p384_mulx_u32(&x1034, &x1035, x992, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x1036, &x1037, x992, UINT32_C(0xffffffff)); fiat_p384_addcarryx_u32(&x1038, &x1039, 0x0, x1035, x1032); fiat_p384_addcarryx_u32(&x1040, &x1041, x1039, x1033, x1030); fiat_p384_addcarryx_u32(&x1042, &x1043, x1041, x1031, x1028); fiat_p384_addcarryx_u32(&x1044, &x1045, x1043, x1029, x1026); fiat_p384_addcarryx_u32(&x1046, &x1047, x1045, x1027, x1024); fiat_p384_addcarryx_u32(&x1048, &x1049, x1047, x1025, x1022); fiat_p384_addcarryx_u32(&x1050, &x1051, x1049, x1023, x1020); fiat_p384_addcarryx_u32(&x1052, &x1053, x1051, x1021, x1018); x1054 = (x1053 + x1019); fiat_p384_addcarryx_u32(&x1055, &x1056, 0x0, x992, x1036); fiat_p384_addcarryx_u32(&x1057, &x1058, x1056, x994, x1037); fiat_p384_addcarryx_u32(&x1059, &x1060, x1058, x996, 0x0); fiat_p384_addcarryx_u32(&x1061, &x1062, x1060, x998, x1034); fiat_p384_addcarryx_u32(&x1063, &x1064, x1062, x1000, x1038); fiat_p384_addcarryx_u32(&x1065, &x1066, x1064, x1002, x1040); fiat_p384_addcarryx_u32(&x1067, &x1068, x1066, x1004, x1042); fiat_p384_addcarryx_u32(&x1069, &x1070, x1068, x1006, x1044); fiat_p384_addcarryx_u32(&x1071, &x1072, x1070, x1008, x1046); fiat_p384_addcarryx_u32(&x1073, &x1074, x1072, x1010, x1048); fiat_p384_addcarryx_u32(&x1075, &x1076, x1074, x1012, x1050); fiat_p384_addcarryx_u32(&x1077, &x1078, x1076, x1014, x1052); fiat_p384_addcarryx_u32(&x1079, &x1080, x1078, x1016, x1054); x1081 = ((uint32_t)x1080 + x1017); fiat_p384_mulx_u32(&x1082, &x1083, x8, (arg1[11])); fiat_p384_mulx_u32(&x1084, &x1085, x8, (arg1[10])); fiat_p384_mulx_u32(&x1086, &x1087, x8, (arg1[9])); fiat_p384_mulx_u32(&x1088, &x1089, x8, (arg1[8])); fiat_p384_mulx_u32(&x1090, &x1091, x8, (arg1[7])); fiat_p384_mulx_u32(&x1092, &x1093, x8, (arg1[6])); fiat_p384_mulx_u32(&x1094, &x1095, x8, (arg1[5])); fiat_p384_mulx_u32(&x1096, &x1097, x8, (arg1[4])); fiat_p384_mulx_u32(&x1098, &x1099, x8, (arg1[3])); fiat_p384_mulx_u32(&x1100, &x1101, x8, (arg1[2])); fiat_p384_mulx_u32(&x1102, &x1103, x8, (arg1[1])); fiat_p384_mulx_u32(&x1104, &x1105, x8, (arg1[0])); fiat_p384_addcarryx_u32(&x1106, &x1107, 0x0, x1105, x1102); fiat_p384_addcarryx_u32(&x1108, &x1109, x1107, x1103, x1100); fiat_p384_addcarryx_u32(&x1110, &x1111, x1109, x1101, x1098); fiat_p384_addcarryx_u32(&x1112, &x1113, x1111, x1099, x1096); fiat_p384_addcarryx_u32(&x1114, &x1115, x1113, x1097, x1094); fiat_p384_addcarryx_u32(&x1116, &x1117, x1115, x1095, x1092); fiat_p384_addcarryx_u32(&x1118, &x1119, x1117, x1093, x1090); fiat_p384_addcarryx_u32(&x1120, &x1121, x1119, x1091, x1088); fiat_p384_addcarryx_u32(&x1122, &x1123, x1121, x1089, x1086); fiat_p384_addcarryx_u32(&x1124, &x1125, x1123, x1087, x1084); fiat_p384_addcarryx_u32(&x1126, &x1127, x1125, x1085, x1082); x1128 = (x1127 + x1083); fiat_p384_addcarryx_u32(&x1129, &x1130, 0x0, x1057, x1104); fiat_p384_addcarryx_u32(&x1131, &x1132, x1130, x1059, x1106); fiat_p384_addcarryx_u32(&x1133, &x1134, x1132, x1061, x1108); fiat_p384_addcarryx_u32(&x1135, &x1136, x1134, x1063, x1110); fiat_p384_addcarryx_u32(&x1137, &x1138, x1136, x1065, x1112); fiat_p384_addcarryx_u32(&x1139, &x1140, x1138, x1067, x1114); fiat_p384_addcarryx_u32(&x1141, &x1142, x1140, x1069, x1116); fiat_p384_addcarryx_u32(&x1143, &x1144, x1142, x1071, x1118); fiat_p384_addcarryx_u32(&x1145, &x1146, x1144, x1073, x1120); fiat_p384_addcarryx_u32(&x1147, &x1148, x1146, x1075, x1122); fiat_p384_addcarryx_u32(&x1149, &x1150, x1148, x1077, x1124); fiat_p384_addcarryx_u32(&x1151, &x1152, x1150, x1079, x1126); fiat_p384_addcarryx_u32(&x1153, &x1154, x1152, x1081, x1128); fiat_p384_mulx_u32(&x1155, &x1156, x1129, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x1157, &x1158, x1129, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x1159, &x1160, x1129, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x1161, &x1162, x1129, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x1163, &x1164, x1129, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x1165, &x1166, x1129, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x1167, &x1168, x1129, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x1169, &x1170, x1129, UINT32_C(0xfffffffe)); fiat_p384_mulx_u32(&x1171, &x1172, x1129, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x1173, &x1174, x1129, UINT32_C(0xffffffff)); fiat_p384_addcarryx_u32(&x1175, &x1176, 0x0, x1172, x1169); fiat_p384_addcarryx_u32(&x1177, &x1178, x1176, x1170, x1167); fiat_p384_addcarryx_u32(&x1179, &x1180, x1178, x1168, x1165); fiat_p384_addcarryx_u32(&x1181, &x1182, x1180, x1166, x1163); fiat_p384_addcarryx_u32(&x1183, &x1184, x1182, x1164, x1161); fiat_p384_addcarryx_u32(&x1185, &x1186, x1184, x1162, x1159); fiat_p384_addcarryx_u32(&x1187, &x1188, x1186, x1160, x1157); fiat_p384_addcarryx_u32(&x1189, &x1190, x1188, x1158, x1155); x1191 = (x1190 + x1156); fiat_p384_addcarryx_u32(&x1192, &x1193, 0x0, x1129, x1173); fiat_p384_addcarryx_u32(&x1194, &x1195, x1193, x1131, x1174); fiat_p384_addcarryx_u32(&x1196, &x1197, x1195, x1133, 0x0); fiat_p384_addcarryx_u32(&x1198, &x1199, x1197, x1135, x1171); fiat_p384_addcarryx_u32(&x1200, &x1201, x1199, x1137, x1175); fiat_p384_addcarryx_u32(&x1202, &x1203, x1201, x1139, x1177); fiat_p384_addcarryx_u32(&x1204, &x1205, x1203, x1141, x1179); fiat_p384_addcarryx_u32(&x1206, &x1207, x1205, x1143, x1181); fiat_p384_addcarryx_u32(&x1208, &x1209, x1207, x1145, x1183); fiat_p384_addcarryx_u32(&x1210, &x1211, x1209, x1147, x1185); fiat_p384_addcarryx_u32(&x1212, &x1213, x1211, x1149, x1187); fiat_p384_addcarryx_u32(&x1214, &x1215, x1213, x1151, x1189); fiat_p384_addcarryx_u32(&x1216, &x1217, x1215, x1153, x1191); x1218 = ((uint32_t)x1217 + x1154); fiat_p384_mulx_u32(&x1219, &x1220, x9, (arg1[11])); fiat_p384_mulx_u32(&x1221, &x1222, x9, (arg1[10])); fiat_p384_mulx_u32(&x1223, &x1224, x9, (arg1[9])); fiat_p384_mulx_u32(&x1225, &x1226, x9, (arg1[8])); fiat_p384_mulx_u32(&x1227, &x1228, x9, (arg1[7])); fiat_p384_mulx_u32(&x1229, &x1230, x9, (arg1[6])); fiat_p384_mulx_u32(&x1231, &x1232, x9, (arg1[5])); fiat_p384_mulx_u32(&x1233, &x1234, x9, (arg1[4])); fiat_p384_mulx_u32(&x1235, &x1236, x9, (arg1[3])); fiat_p384_mulx_u32(&x1237, &x1238, x9, (arg1[2])); fiat_p384_mulx_u32(&x1239, &x1240, x9, (arg1[1])); fiat_p384_mulx_u32(&x1241, &x1242, x9, (arg1[0])); fiat_p384_addcarryx_u32(&x1243, &x1244, 0x0, x1242, x1239); fiat_p384_addcarryx_u32(&x1245, &x1246, x1244, x1240, x1237); fiat_p384_addcarryx_u32(&x1247, &x1248, x1246, x1238, x1235); fiat_p384_addcarryx_u32(&x1249, &x1250, x1248, x1236, x1233); fiat_p384_addcarryx_u32(&x1251, &x1252, x1250, x1234, x1231); fiat_p384_addcarryx_u32(&x1253, &x1254, x1252, x1232, x1229); fiat_p384_addcarryx_u32(&x1255, &x1256, x1254, x1230, x1227); fiat_p384_addcarryx_u32(&x1257, &x1258, x1256, x1228, x1225); fiat_p384_addcarryx_u32(&x1259, &x1260, x1258, x1226, x1223); fiat_p384_addcarryx_u32(&x1261, &x1262, x1260, x1224, x1221); fiat_p384_addcarryx_u32(&x1263, &x1264, x1262, x1222, x1219); x1265 = (x1264 + x1220); fiat_p384_addcarryx_u32(&x1266, &x1267, 0x0, x1194, x1241); fiat_p384_addcarryx_u32(&x1268, &x1269, x1267, x1196, x1243); fiat_p384_addcarryx_u32(&x1270, &x1271, x1269, x1198, x1245); fiat_p384_addcarryx_u32(&x1272, &x1273, x1271, x1200, x1247); fiat_p384_addcarryx_u32(&x1274, &x1275, x1273, x1202, x1249); fiat_p384_addcarryx_u32(&x1276, &x1277, x1275, x1204, x1251); fiat_p384_addcarryx_u32(&x1278, &x1279, x1277, x1206, x1253); fiat_p384_addcarryx_u32(&x1280, &x1281, x1279, x1208, x1255); fiat_p384_addcarryx_u32(&x1282, &x1283, x1281, x1210, x1257); fiat_p384_addcarryx_u32(&x1284, &x1285, x1283, x1212, x1259); fiat_p384_addcarryx_u32(&x1286, &x1287, x1285, x1214, x1261); fiat_p384_addcarryx_u32(&x1288, &x1289, x1287, x1216, x1263); fiat_p384_addcarryx_u32(&x1290, &x1291, x1289, x1218, x1265); fiat_p384_mulx_u32(&x1292, &x1293, x1266, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x1294, &x1295, x1266, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x1296, &x1297, x1266, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x1298, &x1299, x1266, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x1300, &x1301, x1266, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x1302, &x1303, x1266, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x1304, &x1305, x1266, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x1306, &x1307, x1266, UINT32_C(0xfffffffe)); fiat_p384_mulx_u32(&x1308, &x1309, x1266, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x1310, &x1311, x1266, UINT32_C(0xffffffff)); fiat_p384_addcarryx_u32(&x1312, &x1313, 0x0, x1309, x1306); fiat_p384_addcarryx_u32(&x1314, &x1315, x1313, x1307, x1304); fiat_p384_addcarryx_u32(&x1316, &x1317, x1315, x1305, x1302); fiat_p384_addcarryx_u32(&x1318, &x1319, x1317, x1303, x1300); fiat_p384_addcarryx_u32(&x1320, &x1321, x1319, x1301, x1298); fiat_p384_addcarryx_u32(&x1322, &x1323, x1321, x1299, x1296); fiat_p384_addcarryx_u32(&x1324, &x1325, x1323, x1297, x1294); fiat_p384_addcarryx_u32(&x1326, &x1327, x1325, x1295, x1292); x1328 = (x1327 + x1293); fiat_p384_addcarryx_u32(&x1329, &x1330, 0x0, x1266, x1310); fiat_p384_addcarryx_u32(&x1331, &x1332, x1330, x1268, x1311); fiat_p384_addcarryx_u32(&x1333, &x1334, x1332, x1270, 0x0); fiat_p384_addcarryx_u32(&x1335, &x1336, x1334, x1272, x1308); fiat_p384_addcarryx_u32(&x1337, &x1338, x1336, x1274, x1312); fiat_p384_addcarryx_u32(&x1339, &x1340, x1338, x1276, x1314); fiat_p384_addcarryx_u32(&x1341, &x1342, x1340, x1278, x1316); fiat_p384_addcarryx_u32(&x1343, &x1344, x1342, x1280, x1318); fiat_p384_addcarryx_u32(&x1345, &x1346, x1344, x1282, x1320); fiat_p384_addcarryx_u32(&x1347, &x1348, x1346, x1284, x1322); fiat_p384_addcarryx_u32(&x1349, &x1350, x1348, x1286, x1324); fiat_p384_addcarryx_u32(&x1351, &x1352, x1350, x1288, x1326); fiat_p384_addcarryx_u32(&x1353, &x1354, x1352, x1290, x1328); x1355 = ((uint32_t)x1354 + x1291); fiat_p384_mulx_u32(&x1356, &x1357, x10, (arg1[11])); fiat_p384_mulx_u32(&x1358, &x1359, x10, (arg1[10])); fiat_p384_mulx_u32(&x1360, &x1361, x10, (arg1[9])); fiat_p384_mulx_u32(&x1362, &x1363, x10, (arg1[8])); fiat_p384_mulx_u32(&x1364, &x1365, x10, (arg1[7])); fiat_p384_mulx_u32(&x1366, &x1367, x10, (arg1[6])); fiat_p384_mulx_u32(&x1368, &x1369, x10, (arg1[5])); fiat_p384_mulx_u32(&x1370, &x1371, x10, (arg1[4])); fiat_p384_mulx_u32(&x1372, &x1373, x10, (arg1[3])); fiat_p384_mulx_u32(&x1374, &x1375, x10, (arg1[2])); fiat_p384_mulx_u32(&x1376, &x1377, x10, (arg1[1])); fiat_p384_mulx_u32(&x1378, &x1379, x10, (arg1[0])); fiat_p384_addcarryx_u32(&x1380, &x1381, 0x0, x1379, x1376); fiat_p384_addcarryx_u32(&x1382, &x1383, x1381, x1377, x1374); fiat_p384_addcarryx_u32(&x1384, &x1385, x1383, x1375, x1372); fiat_p384_addcarryx_u32(&x1386, &x1387, x1385, x1373, x1370); fiat_p384_addcarryx_u32(&x1388, &x1389, x1387, x1371, x1368); fiat_p384_addcarryx_u32(&x1390, &x1391, x1389, x1369, x1366); fiat_p384_addcarryx_u32(&x1392, &x1393, x1391, x1367, x1364); fiat_p384_addcarryx_u32(&x1394, &x1395, x1393, x1365, x1362); fiat_p384_addcarryx_u32(&x1396, &x1397, x1395, x1363, x1360); fiat_p384_addcarryx_u32(&x1398, &x1399, x1397, x1361, x1358); fiat_p384_addcarryx_u32(&x1400, &x1401, x1399, x1359, x1356); x1402 = (x1401 + x1357); fiat_p384_addcarryx_u32(&x1403, &x1404, 0x0, x1331, x1378); fiat_p384_addcarryx_u32(&x1405, &x1406, x1404, x1333, x1380); fiat_p384_addcarryx_u32(&x1407, &x1408, x1406, x1335, x1382); fiat_p384_addcarryx_u32(&x1409, &x1410, x1408, x1337, x1384); fiat_p384_addcarryx_u32(&x1411, &x1412, x1410, x1339, x1386); fiat_p384_addcarryx_u32(&x1413, &x1414, x1412, x1341, x1388); fiat_p384_addcarryx_u32(&x1415, &x1416, x1414, x1343, x1390); fiat_p384_addcarryx_u32(&x1417, &x1418, x1416, x1345, x1392); fiat_p384_addcarryx_u32(&x1419, &x1420, x1418, x1347, x1394); fiat_p384_addcarryx_u32(&x1421, &x1422, x1420, x1349, x1396); fiat_p384_addcarryx_u32(&x1423, &x1424, x1422, x1351, x1398); fiat_p384_addcarryx_u32(&x1425, &x1426, x1424, x1353, x1400); fiat_p384_addcarryx_u32(&x1427, &x1428, x1426, x1355, x1402); fiat_p384_mulx_u32(&x1429, &x1430, x1403, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x1431, &x1432, x1403, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x1433, &x1434, x1403, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x1435, &x1436, x1403, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x1437, &x1438, x1403, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x1439, &x1440, x1403, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x1441, &x1442, x1403, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x1443, &x1444, x1403, UINT32_C(0xfffffffe)); fiat_p384_mulx_u32(&x1445, &x1446, x1403, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x1447, &x1448, x1403, UINT32_C(0xffffffff)); fiat_p384_addcarryx_u32(&x1449, &x1450, 0x0, x1446, x1443); fiat_p384_addcarryx_u32(&x1451, &x1452, x1450, x1444, x1441); fiat_p384_addcarryx_u32(&x1453, &x1454, x1452, x1442, x1439); fiat_p384_addcarryx_u32(&x1455, &x1456, x1454, x1440, x1437); fiat_p384_addcarryx_u32(&x1457, &x1458, x1456, x1438, x1435); fiat_p384_addcarryx_u32(&x1459, &x1460, x1458, x1436, x1433); fiat_p384_addcarryx_u32(&x1461, &x1462, x1460, x1434, x1431); fiat_p384_addcarryx_u32(&x1463, &x1464, x1462, x1432, x1429); x1465 = (x1464 + x1430); fiat_p384_addcarryx_u32(&x1466, &x1467, 0x0, x1403, x1447); fiat_p384_addcarryx_u32(&x1468, &x1469, x1467, x1405, x1448); fiat_p384_addcarryx_u32(&x1470, &x1471, x1469, x1407, 0x0); fiat_p384_addcarryx_u32(&x1472, &x1473, x1471, x1409, x1445); fiat_p384_addcarryx_u32(&x1474, &x1475, x1473, x1411, x1449); fiat_p384_addcarryx_u32(&x1476, &x1477, x1475, x1413, x1451); fiat_p384_addcarryx_u32(&x1478, &x1479, x1477, x1415, x1453); fiat_p384_addcarryx_u32(&x1480, &x1481, x1479, x1417, x1455); fiat_p384_addcarryx_u32(&x1482, &x1483, x1481, x1419, x1457); fiat_p384_addcarryx_u32(&x1484, &x1485, x1483, x1421, x1459); fiat_p384_addcarryx_u32(&x1486, &x1487, x1485, x1423, x1461); fiat_p384_addcarryx_u32(&x1488, &x1489, x1487, x1425, x1463); fiat_p384_addcarryx_u32(&x1490, &x1491, x1489, x1427, x1465); x1492 = ((uint32_t)x1491 + x1428); fiat_p384_mulx_u32(&x1493, &x1494, x11, (arg1[11])); fiat_p384_mulx_u32(&x1495, &x1496, x11, (arg1[10])); fiat_p384_mulx_u32(&x1497, &x1498, x11, (arg1[9])); fiat_p384_mulx_u32(&x1499, &x1500, x11, (arg1[8])); fiat_p384_mulx_u32(&x1501, &x1502, x11, (arg1[7])); fiat_p384_mulx_u32(&x1503, &x1504, x11, (arg1[6])); fiat_p384_mulx_u32(&x1505, &x1506, x11, (arg1[5])); fiat_p384_mulx_u32(&x1507, &x1508, x11, (arg1[4])); fiat_p384_mulx_u32(&x1509, &x1510, x11, (arg1[3])); fiat_p384_mulx_u32(&x1511, &x1512, x11, (arg1[2])); fiat_p384_mulx_u32(&x1513, &x1514, x11, (arg1[1])); fiat_p384_mulx_u32(&x1515, &x1516, x11, (arg1[0])); fiat_p384_addcarryx_u32(&x1517, &x1518, 0x0, x1516, x1513); fiat_p384_addcarryx_u32(&x1519, &x1520, x1518, x1514, x1511); fiat_p384_addcarryx_u32(&x1521, &x1522, x1520, x1512, x1509); fiat_p384_addcarryx_u32(&x1523, &x1524, x1522, x1510, x1507); fiat_p384_addcarryx_u32(&x1525, &x1526, x1524, x1508, x1505); fiat_p384_addcarryx_u32(&x1527, &x1528, x1526, x1506, x1503); fiat_p384_addcarryx_u32(&x1529, &x1530, x1528, x1504, x1501); fiat_p384_addcarryx_u32(&x1531, &x1532, x1530, x1502, x1499); fiat_p384_addcarryx_u32(&x1533, &x1534, x1532, x1500, x1497); fiat_p384_addcarryx_u32(&x1535, &x1536, x1534, x1498, x1495); fiat_p384_addcarryx_u32(&x1537, &x1538, x1536, x1496, x1493); x1539 = (x1538 + x1494); fiat_p384_addcarryx_u32(&x1540, &x1541, 0x0, x1468, x1515); fiat_p384_addcarryx_u32(&x1542, &x1543, x1541, x1470, x1517); fiat_p384_addcarryx_u32(&x1544, &x1545, x1543, x1472, x1519); fiat_p384_addcarryx_u32(&x1546, &x1547, x1545, x1474, x1521); fiat_p384_addcarryx_u32(&x1548, &x1549, x1547, x1476, x1523); fiat_p384_addcarryx_u32(&x1550, &x1551, x1549, x1478, x1525); fiat_p384_addcarryx_u32(&x1552, &x1553, x1551, x1480, x1527); fiat_p384_addcarryx_u32(&x1554, &x1555, x1553, x1482, x1529); fiat_p384_addcarryx_u32(&x1556, &x1557, x1555, x1484, x1531); fiat_p384_addcarryx_u32(&x1558, &x1559, x1557, x1486, x1533); fiat_p384_addcarryx_u32(&x1560, &x1561, x1559, x1488, x1535); fiat_p384_addcarryx_u32(&x1562, &x1563, x1561, x1490, x1537); fiat_p384_addcarryx_u32(&x1564, &x1565, x1563, x1492, x1539); fiat_p384_mulx_u32(&x1566, &x1567, x1540, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x1568, &x1569, x1540, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x1570, &x1571, x1540, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x1572, &x1573, x1540, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x1574, &x1575, x1540, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x1576, &x1577, x1540, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x1578, &x1579, x1540, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x1580, &x1581, x1540, UINT32_C(0xfffffffe)); fiat_p384_mulx_u32(&x1582, &x1583, x1540, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x1584, &x1585, x1540, UINT32_C(0xffffffff)); fiat_p384_addcarryx_u32(&x1586, &x1587, 0x0, x1583, x1580); fiat_p384_addcarryx_u32(&x1588, &x1589, x1587, x1581, x1578); fiat_p384_addcarryx_u32(&x1590, &x1591, x1589, x1579, x1576); fiat_p384_addcarryx_u32(&x1592, &x1593, x1591, x1577, x1574); fiat_p384_addcarryx_u32(&x1594, &x1595, x1593, x1575, x1572); fiat_p384_addcarryx_u32(&x1596, &x1597, x1595, x1573, x1570); fiat_p384_addcarryx_u32(&x1598, &x1599, x1597, x1571, x1568); fiat_p384_addcarryx_u32(&x1600, &x1601, x1599, x1569, x1566); x1602 = (x1601 + x1567); fiat_p384_addcarryx_u32(&x1603, &x1604, 0x0, x1540, x1584); fiat_p384_addcarryx_u32(&x1605, &x1606, x1604, x1542, x1585); fiat_p384_addcarryx_u32(&x1607, &x1608, x1606, x1544, 0x0); fiat_p384_addcarryx_u32(&x1609, &x1610, x1608, x1546, x1582); fiat_p384_addcarryx_u32(&x1611, &x1612, x1610, x1548, x1586); fiat_p384_addcarryx_u32(&x1613, &x1614, x1612, x1550, x1588); fiat_p384_addcarryx_u32(&x1615, &x1616, x1614, x1552, x1590); fiat_p384_addcarryx_u32(&x1617, &x1618, x1616, x1554, x1592); fiat_p384_addcarryx_u32(&x1619, &x1620, x1618, x1556, x1594); fiat_p384_addcarryx_u32(&x1621, &x1622, x1620, x1558, x1596); fiat_p384_addcarryx_u32(&x1623, &x1624, x1622, x1560, x1598); fiat_p384_addcarryx_u32(&x1625, &x1626, x1624, x1562, x1600); fiat_p384_addcarryx_u32(&x1627, &x1628, x1626, x1564, x1602); x1629 = ((uint32_t)x1628 + x1565); fiat_p384_subborrowx_u32(&x1630, &x1631, 0x0, x1605, UINT32_C(0xffffffff)); fiat_p384_subborrowx_u32(&x1632, &x1633, x1631, x1607, 0x0); fiat_p384_subborrowx_u32(&x1634, &x1635, x1633, x1609, 0x0); fiat_p384_subborrowx_u32(&x1636, &x1637, x1635, x1611, UINT32_C(0xffffffff)); fiat_p384_subborrowx_u32(&x1638, &x1639, x1637, x1613, UINT32_C(0xfffffffe)); fiat_p384_subborrowx_u32(&x1640, &x1641, x1639, x1615, UINT32_C(0xffffffff)); fiat_p384_subborrowx_u32(&x1642, &x1643, x1641, x1617, UINT32_C(0xffffffff)); fiat_p384_subborrowx_u32(&x1644, &x1645, x1643, x1619, UINT32_C(0xffffffff)); fiat_p384_subborrowx_u32(&x1646, &x1647, x1645, x1621, UINT32_C(0xffffffff)); fiat_p384_subborrowx_u32(&x1648, &x1649, x1647, x1623, UINT32_C(0xffffffff)); fiat_p384_subborrowx_u32(&x1650, &x1651, x1649, x1625, UINT32_C(0xffffffff)); fiat_p384_subborrowx_u32(&x1652, &x1653, x1651, x1627, UINT32_C(0xffffffff)); fiat_p384_subborrowx_u32(&x1654, &x1655, x1653, x1629, 0x0); fiat_p384_cmovznz_u32(&x1656, x1655, x1630, x1605); fiat_p384_cmovznz_u32(&x1657, x1655, x1632, x1607); fiat_p384_cmovznz_u32(&x1658, x1655, x1634, x1609); fiat_p384_cmovznz_u32(&x1659, x1655, x1636, x1611); fiat_p384_cmovznz_u32(&x1660, x1655, x1638, x1613); fiat_p384_cmovznz_u32(&x1661, x1655, x1640, x1615); fiat_p384_cmovznz_u32(&x1662, x1655, x1642, x1617); fiat_p384_cmovznz_u32(&x1663, x1655, x1644, x1619); fiat_p384_cmovznz_u32(&x1664, x1655, x1646, x1621); fiat_p384_cmovznz_u32(&x1665, x1655, x1648, x1623); fiat_p384_cmovznz_u32(&x1666, x1655, x1650, x1625); fiat_p384_cmovznz_u32(&x1667, x1655, x1652, x1627); out1[0] = x1656; out1[1] = x1657; out1[2] = x1658; out1[3] = x1659; out1[4] = x1660; out1[5] = x1661; out1[6] = x1662; out1[7] = x1663; out1[8] = x1664; out1[9] = x1665; out1[10] = x1666; out1[11] = x1667; } /* * The function fiat_p384_add adds two field elements in the Montgomery domain. * * Preconditions: * 0 ≤ eval arg1 < m * 0 ≤ eval arg2 < m * Postconditions: * eval (from_montgomery out1) mod m = (eval (from_montgomery arg1) + eval (from_montgomery arg2)) mod m * 0 ≤ eval out1 < m * */ static void fiat_p384_add(fiat_p384_montgomery_domain_field_element out1, const fiat_p384_montgomery_domain_field_element arg1, const fiat_p384_montgomery_domain_field_element arg2) { uint32_t x1; fiat_p384_uint1 x2; uint32_t x3; fiat_p384_uint1 x4; uint32_t x5; fiat_p384_uint1 x6; uint32_t x7; fiat_p384_uint1 x8; uint32_t x9; fiat_p384_uint1 x10; uint32_t x11; fiat_p384_uint1 x12; uint32_t x13; fiat_p384_uint1 x14; uint32_t x15; fiat_p384_uint1 x16; uint32_t x17; fiat_p384_uint1 x18; uint32_t x19; fiat_p384_uint1 x20; uint32_t x21; fiat_p384_uint1 x22; uint32_t x23; fiat_p384_uint1 x24; uint32_t x25; fiat_p384_uint1 x26; uint32_t x27; fiat_p384_uint1 x28; uint32_t x29; fiat_p384_uint1 x30; uint32_t x31; fiat_p384_uint1 x32; uint32_t x33; fiat_p384_uint1 x34; uint32_t x35; fiat_p384_uint1 x36; uint32_t x37; fiat_p384_uint1 x38; uint32_t x39; fiat_p384_uint1 x40; uint32_t x41; fiat_p384_uint1 x42; uint32_t x43; fiat_p384_uint1 x44; uint32_t x45; fiat_p384_uint1 x46; uint32_t x47; fiat_p384_uint1 x48; uint32_t x49; fiat_p384_uint1 x50; uint32_t x51; uint32_t x52; uint32_t x53; uint32_t x54; uint32_t x55; uint32_t x56; uint32_t x57; uint32_t x58; uint32_t x59; uint32_t x60; uint32_t x61; uint32_t x62; fiat_p384_addcarryx_u32(&x1, &x2, 0x0, (arg1[0]), (arg2[0])); fiat_p384_addcarryx_u32(&x3, &x4, x2, (arg1[1]), (arg2[1])); fiat_p384_addcarryx_u32(&x5, &x6, x4, (arg1[2]), (arg2[2])); fiat_p384_addcarryx_u32(&x7, &x8, x6, (arg1[3]), (arg2[3])); fiat_p384_addcarryx_u32(&x9, &x10, x8, (arg1[4]), (arg2[4])); fiat_p384_addcarryx_u32(&x11, &x12, x10, (arg1[5]), (arg2[5])); fiat_p384_addcarryx_u32(&x13, &x14, x12, (arg1[6]), (arg2[6])); fiat_p384_addcarryx_u32(&x15, &x16, x14, (arg1[7]), (arg2[7])); fiat_p384_addcarryx_u32(&x17, &x18, x16, (arg1[8]), (arg2[8])); fiat_p384_addcarryx_u32(&x19, &x20, x18, (arg1[9]), (arg2[9])); fiat_p384_addcarryx_u32(&x21, &x22, x20, (arg1[10]), (arg2[10])); fiat_p384_addcarryx_u32(&x23, &x24, x22, (arg1[11]), (arg2[11])); fiat_p384_subborrowx_u32(&x25, &x26, 0x0, x1, UINT32_C(0xffffffff)); fiat_p384_subborrowx_u32(&x27, &x28, x26, x3, 0x0); fiat_p384_subborrowx_u32(&x29, &x30, x28, x5, 0x0); fiat_p384_subborrowx_u32(&x31, &x32, x30, x7, UINT32_C(0xffffffff)); fiat_p384_subborrowx_u32(&x33, &x34, x32, x9, UINT32_C(0xfffffffe)); fiat_p384_subborrowx_u32(&x35, &x36, x34, x11, UINT32_C(0xffffffff)); fiat_p384_subborrowx_u32(&x37, &x38, x36, x13, UINT32_C(0xffffffff)); fiat_p384_subborrowx_u32(&x39, &x40, x38, x15, UINT32_C(0xffffffff)); fiat_p384_subborrowx_u32(&x41, &x42, x40, x17, UINT32_C(0xffffffff)); fiat_p384_subborrowx_u32(&x43, &x44, x42, x19, UINT32_C(0xffffffff)); fiat_p384_subborrowx_u32(&x45, &x46, x44, x21, UINT32_C(0xffffffff)); fiat_p384_subborrowx_u32(&x47, &x48, x46, x23, UINT32_C(0xffffffff)); fiat_p384_subborrowx_u32(&x49, &x50, x48, x24, 0x0); fiat_p384_cmovznz_u32(&x51, x50, x25, x1); fiat_p384_cmovznz_u32(&x52, x50, x27, x3); fiat_p384_cmovznz_u32(&x53, x50, x29, x5); fiat_p384_cmovznz_u32(&x54, x50, x31, x7); fiat_p384_cmovznz_u32(&x55, x50, x33, x9); fiat_p384_cmovznz_u32(&x56, x50, x35, x11); fiat_p384_cmovznz_u32(&x57, x50, x37, x13); fiat_p384_cmovznz_u32(&x58, x50, x39, x15); fiat_p384_cmovznz_u32(&x59, x50, x41, x17); fiat_p384_cmovznz_u32(&x60, x50, x43, x19); fiat_p384_cmovznz_u32(&x61, x50, x45, x21); fiat_p384_cmovznz_u32(&x62, x50, x47, x23); out1[0] = x51; out1[1] = x52; out1[2] = x53; out1[3] = x54; out1[4] = x55; out1[5] = x56; out1[6] = x57; out1[7] = x58; out1[8] = x59; out1[9] = x60; out1[10] = x61; out1[11] = x62; } /* * The function fiat_p384_sub subtracts two field elements in the Montgomery domain. * * Preconditions: * 0 ≤ eval arg1 < m * 0 ≤ eval arg2 < m * Postconditions: * eval (from_montgomery out1) mod m = (eval (from_montgomery arg1) - eval (from_montgomery arg2)) mod m * 0 ≤ eval out1 < m * */ static void fiat_p384_sub(fiat_p384_montgomery_domain_field_element out1, const fiat_p384_montgomery_domain_field_element arg1, const fiat_p384_montgomery_domain_field_element arg2) { uint32_t x1; fiat_p384_uint1 x2; uint32_t x3; fiat_p384_uint1 x4; uint32_t x5; fiat_p384_uint1 x6; uint32_t x7; fiat_p384_uint1 x8; uint32_t x9; fiat_p384_uint1 x10; uint32_t x11; fiat_p384_uint1 x12; uint32_t x13; fiat_p384_uint1 x14; uint32_t x15; fiat_p384_uint1 x16; uint32_t x17; fiat_p384_uint1 x18; uint32_t x19; fiat_p384_uint1 x20; uint32_t x21; fiat_p384_uint1 x22; uint32_t x23; fiat_p384_uint1 x24; uint32_t x25; uint32_t x26; fiat_p384_uint1 x27; uint32_t x28; fiat_p384_uint1 x29; uint32_t x30; fiat_p384_uint1 x31; uint32_t x32; fiat_p384_uint1 x33; uint32_t x34; fiat_p384_uint1 x35; uint32_t x36; fiat_p384_uint1 x37; uint32_t x38; fiat_p384_uint1 x39; uint32_t x40; fiat_p384_uint1 x41; uint32_t x42; fiat_p384_uint1 x43; uint32_t x44; fiat_p384_uint1 x45; uint32_t x46; fiat_p384_uint1 x47; uint32_t x48; fiat_p384_uint1 x49; fiat_p384_subborrowx_u32(&x1, &x2, 0x0, (arg1[0]), (arg2[0])); fiat_p384_subborrowx_u32(&x3, &x4, x2, (arg1[1]), (arg2[1])); fiat_p384_subborrowx_u32(&x5, &x6, x4, (arg1[2]), (arg2[2])); fiat_p384_subborrowx_u32(&x7, &x8, x6, (arg1[3]), (arg2[3])); fiat_p384_subborrowx_u32(&x9, &x10, x8, (arg1[4]), (arg2[4])); fiat_p384_subborrowx_u32(&x11, &x12, x10, (arg1[5]), (arg2[5])); fiat_p384_subborrowx_u32(&x13, &x14, x12, (arg1[6]), (arg2[6])); fiat_p384_subborrowx_u32(&x15, &x16, x14, (arg1[7]), (arg2[7])); fiat_p384_subborrowx_u32(&x17, &x18, x16, (arg1[8]), (arg2[8])); fiat_p384_subborrowx_u32(&x19, &x20, x18, (arg1[9]), (arg2[9])); fiat_p384_subborrowx_u32(&x21, &x22, x20, (arg1[10]), (arg2[10])); fiat_p384_subborrowx_u32(&x23, &x24, x22, (arg1[11]), (arg2[11])); fiat_p384_cmovznz_u32(&x25, x24, 0x0, UINT32_C(0xffffffff)); fiat_p384_addcarryx_u32(&x26, &x27, 0x0, x1, x25); fiat_p384_addcarryx_u32(&x28, &x29, x27, x3, 0x0); fiat_p384_addcarryx_u32(&x30, &x31, x29, x5, 0x0); fiat_p384_addcarryx_u32(&x32, &x33, x31, x7, x25); fiat_p384_addcarryx_u32(&x34, &x35, x33, x9, (x25 & UINT32_C(0xfffffffe))); fiat_p384_addcarryx_u32(&x36, &x37, x35, x11, x25); fiat_p384_addcarryx_u32(&x38, &x39, x37, x13, x25); fiat_p384_addcarryx_u32(&x40, &x41, x39, x15, x25); fiat_p384_addcarryx_u32(&x42, &x43, x41, x17, x25); fiat_p384_addcarryx_u32(&x44, &x45, x43, x19, x25); fiat_p384_addcarryx_u32(&x46, &x47, x45, x21, x25); fiat_p384_addcarryx_u32(&x48, &x49, x47, x23, x25); out1[0] = x26; out1[1] = x28; out1[2] = x30; out1[3] = x32; out1[4] = x34; out1[5] = x36; out1[6] = x38; out1[7] = x40; out1[8] = x42; out1[9] = x44; out1[10] = x46; out1[11] = x48; } /* * The function fiat_p384_opp negates a field element in the Montgomery domain. * * Preconditions: * 0 ≤ eval arg1 < m * Postconditions: * eval (from_montgomery out1) mod m = -eval (from_montgomery arg1) mod m * 0 ≤ eval out1 < m * */ static void fiat_p384_opp(fiat_p384_montgomery_domain_field_element out1, const fiat_p384_montgomery_domain_field_element arg1) { uint32_t x1; fiat_p384_uint1 x2; uint32_t x3; fiat_p384_uint1 x4; uint32_t x5; fiat_p384_uint1 x6; uint32_t x7; fiat_p384_uint1 x8; uint32_t x9; fiat_p384_uint1 x10; uint32_t x11; fiat_p384_uint1 x12; uint32_t x13; fiat_p384_uint1 x14; uint32_t x15; fiat_p384_uint1 x16; uint32_t x17; fiat_p384_uint1 x18; uint32_t x19; fiat_p384_uint1 x20; uint32_t x21; fiat_p384_uint1 x22; uint32_t x23; fiat_p384_uint1 x24; uint32_t x25; uint32_t x26; fiat_p384_uint1 x27; uint32_t x28; fiat_p384_uint1 x29; uint32_t x30; fiat_p384_uint1 x31; uint32_t x32; fiat_p384_uint1 x33; uint32_t x34; fiat_p384_uint1 x35; uint32_t x36; fiat_p384_uint1 x37; uint32_t x38; fiat_p384_uint1 x39; uint32_t x40; fiat_p384_uint1 x41; uint32_t x42; fiat_p384_uint1 x43; uint32_t x44; fiat_p384_uint1 x45; uint32_t x46; fiat_p384_uint1 x47; uint32_t x48; fiat_p384_uint1 x49; fiat_p384_subborrowx_u32(&x1, &x2, 0x0, 0x0, (arg1[0])); fiat_p384_subborrowx_u32(&x3, &x4, x2, 0x0, (arg1[1])); fiat_p384_subborrowx_u32(&x5, &x6, x4, 0x0, (arg1[2])); fiat_p384_subborrowx_u32(&x7, &x8, x6, 0x0, (arg1[3])); fiat_p384_subborrowx_u32(&x9, &x10, x8, 0x0, (arg1[4])); fiat_p384_subborrowx_u32(&x11, &x12, x10, 0x0, (arg1[5])); fiat_p384_subborrowx_u32(&x13, &x14, x12, 0x0, (arg1[6])); fiat_p384_subborrowx_u32(&x15, &x16, x14, 0x0, (arg1[7])); fiat_p384_subborrowx_u32(&x17, &x18, x16, 0x0, (arg1[8])); fiat_p384_subborrowx_u32(&x19, &x20, x18, 0x0, (arg1[9])); fiat_p384_subborrowx_u32(&x21, &x22, x20, 0x0, (arg1[10])); fiat_p384_subborrowx_u32(&x23, &x24, x22, 0x0, (arg1[11])); fiat_p384_cmovznz_u32(&x25, x24, 0x0, UINT32_C(0xffffffff)); fiat_p384_addcarryx_u32(&x26, &x27, 0x0, x1, x25); fiat_p384_addcarryx_u32(&x28, &x29, x27, x3, 0x0); fiat_p384_addcarryx_u32(&x30, &x31, x29, x5, 0x0); fiat_p384_addcarryx_u32(&x32, &x33, x31, x7, x25); fiat_p384_addcarryx_u32(&x34, &x35, x33, x9, (x25 & UINT32_C(0xfffffffe))); fiat_p384_addcarryx_u32(&x36, &x37, x35, x11, x25); fiat_p384_addcarryx_u32(&x38, &x39, x37, x13, x25); fiat_p384_addcarryx_u32(&x40, &x41, x39, x15, x25); fiat_p384_addcarryx_u32(&x42, &x43, x41, x17, x25); fiat_p384_addcarryx_u32(&x44, &x45, x43, x19, x25); fiat_p384_addcarryx_u32(&x46, &x47, x45, x21, x25); fiat_p384_addcarryx_u32(&x48, &x49, x47, x23, x25); out1[0] = x26; out1[1] = x28; out1[2] = x30; out1[3] = x32; out1[4] = x34; out1[5] = x36; out1[6] = x38; out1[7] = x40; out1[8] = x42; out1[9] = x44; out1[10] = x46; out1[11] = x48; } /* * The function fiat_p384_from_montgomery translates a field element out of the Montgomery domain. * * Preconditions: * 0 ≤ eval arg1 < m * Postconditions: * eval out1 mod m = (eval arg1 * ((2^32)⁻¹ mod m)^12) mod m * 0 ≤ eval out1 < m * */ static void fiat_p384_from_montgomery(fiat_p384_non_montgomery_domain_field_element out1, const fiat_p384_montgomery_domain_field_element arg1) { uint32_t x1; uint32_t x2; uint32_t x3; uint32_t x4; uint32_t x5; uint32_t x6; uint32_t x7; uint32_t x8; uint32_t x9; uint32_t x10; uint32_t x11; uint32_t x12; uint32_t x13; uint32_t x14; uint32_t x15; uint32_t x16; uint32_t x17; uint32_t x18; uint32_t x19; uint32_t x20; uint32_t x21; uint32_t x22; fiat_p384_uint1 x23; uint32_t x24; fiat_p384_uint1 x25; uint32_t x26; fiat_p384_uint1 x27; uint32_t x28; fiat_p384_uint1 x29; uint32_t x30; fiat_p384_uint1 x31; uint32_t x32; fiat_p384_uint1 x33; uint32_t x34; fiat_p384_uint1 x35; uint32_t x36; fiat_p384_uint1 x37; uint32_t x38; fiat_p384_uint1 x39; uint32_t x40; fiat_p384_uint1 x41; uint32_t x42; uint32_t x43; uint32_t x44; uint32_t x45; uint32_t x46; uint32_t x47; uint32_t x48; uint32_t x49; uint32_t x50; uint32_t x51; uint32_t x52; uint32_t x53; uint32_t x54; uint32_t x55; uint32_t x56; uint32_t x57; uint32_t x58; uint32_t x59; uint32_t x60; uint32_t x61; uint32_t x62; fiat_p384_uint1 x63; uint32_t x64; fiat_p384_uint1 x65; uint32_t x66; fiat_p384_uint1 x67; uint32_t x68; fiat_p384_uint1 x69; uint32_t x70; fiat_p384_uint1 x71; uint32_t x72; fiat_p384_uint1 x73; uint32_t x74; fiat_p384_uint1 x75; uint32_t x76; fiat_p384_uint1 x77; uint32_t x78; fiat_p384_uint1 x79; uint32_t x80; fiat_p384_uint1 x81; uint32_t x82; fiat_p384_uint1 x83; uint32_t x84; fiat_p384_uint1 x85; uint32_t x86; fiat_p384_uint1 x87; uint32_t x88; fiat_p384_uint1 x89; uint32_t x90; fiat_p384_uint1 x91; uint32_t x92; fiat_p384_uint1 x93; uint32_t x94; fiat_p384_uint1 x95; uint32_t x96; fiat_p384_uint1 x97; uint32_t x98; fiat_p384_uint1 x99; uint32_t x100; fiat_p384_uint1 x101; uint32_t x102; fiat_p384_uint1 x103; uint32_t x104; fiat_p384_uint1 x105; uint32_t x106; fiat_p384_uint1 x107; uint32_t x108; fiat_p384_uint1 x109; uint32_t x110; fiat_p384_uint1 x111; uint32_t x112; fiat_p384_uint1 x113; uint32_t x114; fiat_p384_uint1 x115; uint32_t x116; fiat_p384_uint1 x117; uint32_t x118; fiat_p384_uint1 x119; uint32_t x120; fiat_p384_uint1 x121; uint32_t x122; fiat_p384_uint1 x123; uint32_t x124; fiat_p384_uint1 x125; uint32_t x126; fiat_p384_uint1 x127; uint32_t x128; uint32_t x129; uint32_t x130; uint32_t x131; uint32_t x132; uint32_t x133; uint32_t x134; uint32_t x135; uint32_t x136; uint32_t x137; uint32_t x138; uint32_t x139; uint32_t x140; uint32_t x141; uint32_t x142; uint32_t x143; uint32_t x144; uint32_t x145; uint32_t x146; uint32_t x147; uint32_t x148; fiat_p384_uint1 x149; uint32_t x150; fiat_p384_uint1 x151; uint32_t x152; fiat_p384_uint1 x153; uint32_t x154; fiat_p384_uint1 x155; uint32_t x156; fiat_p384_uint1 x157; uint32_t x158; fiat_p384_uint1 x159; uint32_t x160; fiat_p384_uint1 x161; uint32_t x162; fiat_p384_uint1 x163; uint32_t x164; fiat_p384_uint1 x165; uint32_t x166; fiat_p384_uint1 x167; uint32_t x168; fiat_p384_uint1 x169; uint32_t x170; fiat_p384_uint1 x171; uint32_t x172; fiat_p384_uint1 x173; uint32_t x174; fiat_p384_uint1 x175; uint32_t x176; fiat_p384_uint1 x177; uint32_t x178; fiat_p384_uint1 x179; uint32_t x180; fiat_p384_uint1 x181; uint32_t x182; fiat_p384_uint1 x183; uint32_t x184; fiat_p384_uint1 x185; uint32_t x186; fiat_p384_uint1 x187; uint32_t x188; fiat_p384_uint1 x189; uint32_t x190; fiat_p384_uint1 x191; uint32_t x192; fiat_p384_uint1 x193; uint32_t x194; fiat_p384_uint1 x195; uint32_t x196; fiat_p384_uint1 x197; uint32_t x198; fiat_p384_uint1 x199; uint32_t x200; fiat_p384_uint1 x201; uint32_t x202; fiat_p384_uint1 x203; uint32_t x204; fiat_p384_uint1 x205; uint32_t x206; fiat_p384_uint1 x207; uint32_t x208; fiat_p384_uint1 x209; uint32_t x210; fiat_p384_uint1 x211; uint32_t x212; fiat_p384_uint1 x213; uint32_t x214; uint32_t x215; uint32_t x216; uint32_t x217; uint32_t x218; uint32_t x219; uint32_t x220; uint32_t x221; uint32_t x222; uint32_t x223; uint32_t x224; uint32_t x225; uint32_t x226; uint32_t x227; uint32_t x228; uint32_t x229; uint32_t x230; uint32_t x231; uint32_t x232; uint32_t x233; uint32_t x234; fiat_p384_uint1 x235; uint32_t x236; fiat_p384_uint1 x237; uint32_t x238; fiat_p384_uint1 x239; uint32_t x240; fiat_p384_uint1 x241; uint32_t x242; fiat_p384_uint1 x243; uint32_t x244; fiat_p384_uint1 x245; uint32_t x246; fiat_p384_uint1 x247; uint32_t x248; fiat_p384_uint1 x249; uint32_t x250; fiat_p384_uint1 x251; uint32_t x252; fiat_p384_uint1 x253; uint32_t x254; fiat_p384_uint1 x255; uint32_t x256; fiat_p384_uint1 x257; uint32_t x258; fiat_p384_uint1 x259; uint32_t x260; fiat_p384_uint1 x261; uint32_t x262; fiat_p384_uint1 x263; uint32_t x264; fiat_p384_uint1 x265; uint32_t x266; fiat_p384_uint1 x267; uint32_t x268; fiat_p384_uint1 x269; uint32_t x270; fiat_p384_uint1 x271; uint32_t x272; fiat_p384_uint1 x273; uint32_t x274; fiat_p384_uint1 x275; uint32_t x276; fiat_p384_uint1 x277; uint32_t x278; fiat_p384_uint1 x279; uint32_t x280; fiat_p384_uint1 x281; uint32_t x282; fiat_p384_uint1 x283; uint32_t x284; fiat_p384_uint1 x285; uint32_t x286; fiat_p384_uint1 x287; uint32_t x288; fiat_p384_uint1 x289; uint32_t x290; fiat_p384_uint1 x291; uint32_t x292; fiat_p384_uint1 x293; uint32_t x294; fiat_p384_uint1 x295; uint32_t x296; fiat_p384_uint1 x297; uint32_t x298; fiat_p384_uint1 x299; uint32_t x300; uint32_t x301; uint32_t x302; uint32_t x303; uint32_t x304; uint32_t x305; uint32_t x306; uint32_t x307; uint32_t x308; uint32_t x309; uint32_t x310; uint32_t x311; uint32_t x312; uint32_t x313; uint32_t x314; uint32_t x315; uint32_t x316; uint32_t x317; uint32_t x318; uint32_t x319; uint32_t x320; fiat_p384_uint1 x321; uint32_t x322; fiat_p384_uint1 x323; uint32_t x324; fiat_p384_uint1 x325; uint32_t x326; fiat_p384_uint1 x327; uint32_t x328; fiat_p384_uint1 x329; uint32_t x330; fiat_p384_uint1 x331; uint32_t x332; fiat_p384_uint1 x333; uint32_t x334; fiat_p384_uint1 x335; uint32_t x336; fiat_p384_uint1 x337; uint32_t x338; fiat_p384_uint1 x339; uint32_t x340; fiat_p384_uint1 x341; uint32_t x342; fiat_p384_uint1 x343; uint32_t x344; fiat_p384_uint1 x345; uint32_t x346; fiat_p384_uint1 x347; uint32_t x348; fiat_p384_uint1 x349; uint32_t x350; fiat_p384_uint1 x351; uint32_t x352; fiat_p384_uint1 x353; uint32_t x354; fiat_p384_uint1 x355; uint32_t x356; fiat_p384_uint1 x357; uint32_t x358; fiat_p384_uint1 x359; uint32_t x360; fiat_p384_uint1 x361; uint32_t x362; fiat_p384_uint1 x363; uint32_t x364; fiat_p384_uint1 x365; uint32_t x366; fiat_p384_uint1 x367; uint32_t x368; fiat_p384_uint1 x369; uint32_t x370; fiat_p384_uint1 x371; uint32_t x372; fiat_p384_uint1 x373; uint32_t x374; fiat_p384_uint1 x375; uint32_t x376; fiat_p384_uint1 x377; uint32_t x378; fiat_p384_uint1 x379; uint32_t x380; fiat_p384_uint1 x381; uint32_t x382; fiat_p384_uint1 x383; uint32_t x384; fiat_p384_uint1 x385; uint32_t x386; uint32_t x387; uint32_t x388; uint32_t x389; uint32_t x390; uint32_t x391; uint32_t x392; uint32_t x393; uint32_t x394; uint32_t x395; uint32_t x396; uint32_t x397; uint32_t x398; uint32_t x399; uint32_t x400; uint32_t x401; uint32_t x402; uint32_t x403; uint32_t x404; uint32_t x405; uint32_t x406; fiat_p384_uint1 x407; uint32_t x408; fiat_p384_uint1 x409; uint32_t x410; fiat_p384_uint1 x411; uint32_t x412; fiat_p384_uint1 x413; uint32_t x414; fiat_p384_uint1 x415; uint32_t x416; fiat_p384_uint1 x417; uint32_t x418; fiat_p384_uint1 x419; uint32_t x420; fiat_p384_uint1 x421; uint32_t x422; fiat_p384_uint1 x423; uint32_t x424; fiat_p384_uint1 x425; uint32_t x426; fiat_p384_uint1 x427; uint32_t x428; fiat_p384_uint1 x429; uint32_t x430; fiat_p384_uint1 x431; uint32_t x432; fiat_p384_uint1 x433; uint32_t x434; fiat_p384_uint1 x435; uint32_t x436; fiat_p384_uint1 x437; uint32_t x438; fiat_p384_uint1 x439; uint32_t x440; fiat_p384_uint1 x441; uint32_t x442; fiat_p384_uint1 x443; uint32_t x444; fiat_p384_uint1 x445; uint32_t x446; fiat_p384_uint1 x447; uint32_t x448; fiat_p384_uint1 x449; uint32_t x450; fiat_p384_uint1 x451; uint32_t x452; fiat_p384_uint1 x453; uint32_t x454; fiat_p384_uint1 x455; uint32_t x456; fiat_p384_uint1 x457; uint32_t x458; fiat_p384_uint1 x459; uint32_t x460; fiat_p384_uint1 x461; uint32_t x462; fiat_p384_uint1 x463; uint32_t x464; fiat_p384_uint1 x465; uint32_t x466; fiat_p384_uint1 x467; uint32_t x468; fiat_p384_uint1 x469; uint32_t x470; fiat_p384_uint1 x471; uint32_t x472; uint32_t x473; uint32_t x474; uint32_t x475; uint32_t x476; uint32_t x477; uint32_t x478; uint32_t x479; uint32_t x480; uint32_t x481; uint32_t x482; uint32_t x483; uint32_t x484; uint32_t x485; uint32_t x486; uint32_t x487; uint32_t x488; uint32_t x489; uint32_t x490; uint32_t x491; uint32_t x492; fiat_p384_uint1 x493; uint32_t x494; fiat_p384_uint1 x495; uint32_t x496; fiat_p384_uint1 x497; uint32_t x498; fiat_p384_uint1 x499; uint32_t x500; fiat_p384_uint1 x501; uint32_t x502; fiat_p384_uint1 x503; uint32_t x504; fiat_p384_uint1 x505; uint32_t x506; fiat_p384_uint1 x507; uint32_t x508; fiat_p384_uint1 x509; uint32_t x510; fiat_p384_uint1 x511; uint32_t x512; fiat_p384_uint1 x513; uint32_t x514; fiat_p384_uint1 x515; uint32_t x516; fiat_p384_uint1 x517; uint32_t x518; fiat_p384_uint1 x519; uint32_t x520; fiat_p384_uint1 x521; uint32_t x522; fiat_p384_uint1 x523; uint32_t x524; fiat_p384_uint1 x525; uint32_t x526; fiat_p384_uint1 x527; uint32_t x528; fiat_p384_uint1 x529; uint32_t x530; fiat_p384_uint1 x531; uint32_t x532; fiat_p384_uint1 x533; uint32_t x534; fiat_p384_uint1 x535; uint32_t x536; fiat_p384_uint1 x537; uint32_t x538; fiat_p384_uint1 x539; uint32_t x540; fiat_p384_uint1 x541; uint32_t x542; fiat_p384_uint1 x543; uint32_t x544; fiat_p384_uint1 x545; uint32_t x546; fiat_p384_uint1 x547; uint32_t x548; fiat_p384_uint1 x549; uint32_t x550; fiat_p384_uint1 x551; uint32_t x552; fiat_p384_uint1 x553; uint32_t x554; fiat_p384_uint1 x555; uint32_t x556; fiat_p384_uint1 x557; uint32_t x558; uint32_t x559; uint32_t x560; uint32_t x561; uint32_t x562; uint32_t x563; uint32_t x564; uint32_t x565; uint32_t x566; uint32_t x567; uint32_t x568; uint32_t x569; uint32_t x570; uint32_t x571; uint32_t x572; uint32_t x573; uint32_t x574; uint32_t x575; uint32_t x576; uint32_t x577; uint32_t x578; fiat_p384_uint1 x579; uint32_t x580; fiat_p384_uint1 x581; uint32_t x582; fiat_p384_uint1 x583; uint32_t x584; fiat_p384_uint1 x585; uint32_t x586; fiat_p384_uint1 x587; uint32_t x588; fiat_p384_uint1 x589; uint32_t x590; fiat_p384_uint1 x591; uint32_t x592; fiat_p384_uint1 x593; uint32_t x594; fiat_p384_uint1 x595; uint32_t x596; fiat_p384_uint1 x597; uint32_t x598; fiat_p384_uint1 x599; uint32_t x600; fiat_p384_uint1 x601; uint32_t x602; fiat_p384_uint1 x603; uint32_t x604; fiat_p384_uint1 x605; uint32_t x606; fiat_p384_uint1 x607; uint32_t x608; fiat_p384_uint1 x609; uint32_t x610; fiat_p384_uint1 x611; uint32_t x612; fiat_p384_uint1 x613; uint32_t x614; fiat_p384_uint1 x615; uint32_t x616; fiat_p384_uint1 x617; uint32_t x618; fiat_p384_uint1 x619; uint32_t x620; fiat_p384_uint1 x621; uint32_t x622; fiat_p384_uint1 x623; uint32_t x624; fiat_p384_uint1 x625; uint32_t x626; fiat_p384_uint1 x627; uint32_t x628; fiat_p384_uint1 x629; uint32_t x630; fiat_p384_uint1 x631; uint32_t x632; fiat_p384_uint1 x633; uint32_t x634; fiat_p384_uint1 x635; uint32_t x636; fiat_p384_uint1 x637; uint32_t x638; fiat_p384_uint1 x639; uint32_t x640; fiat_p384_uint1 x641; uint32_t x642; fiat_p384_uint1 x643; uint32_t x644; uint32_t x645; uint32_t x646; uint32_t x647; uint32_t x648; uint32_t x649; uint32_t x650; uint32_t x651; uint32_t x652; uint32_t x653; uint32_t x654; uint32_t x655; uint32_t x656; uint32_t x657; uint32_t x658; uint32_t x659; uint32_t x660; uint32_t x661; uint32_t x662; uint32_t x663; uint32_t x664; fiat_p384_uint1 x665; uint32_t x666; fiat_p384_uint1 x667; uint32_t x668; fiat_p384_uint1 x669; uint32_t x670; fiat_p384_uint1 x671; uint32_t x672; fiat_p384_uint1 x673; uint32_t x674; fiat_p384_uint1 x675; uint32_t x676; fiat_p384_uint1 x677; uint32_t x678; fiat_p384_uint1 x679; uint32_t x680; fiat_p384_uint1 x681; uint32_t x682; fiat_p384_uint1 x683; uint32_t x684; fiat_p384_uint1 x685; uint32_t x686; fiat_p384_uint1 x687; uint32_t x688; fiat_p384_uint1 x689; uint32_t x690; fiat_p384_uint1 x691; uint32_t x692; fiat_p384_uint1 x693; uint32_t x694; fiat_p384_uint1 x695; uint32_t x696; fiat_p384_uint1 x697; uint32_t x698; fiat_p384_uint1 x699; uint32_t x700; fiat_p384_uint1 x701; uint32_t x702; fiat_p384_uint1 x703; uint32_t x704; fiat_p384_uint1 x705; uint32_t x706; fiat_p384_uint1 x707; uint32_t x708; fiat_p384_uint1 x709; uint32_t x710; fiat_p384_uint1 x711; uint32_t x712; fiat_p384_uint1 x713; uint32_t x714; fiat_p384_uint1 x715; uint32_t x716; fiat_p384_uint1 x717; uint32_t x718; fiat_p384_uint1 x719; uint32_t x720; fiat_p384_uint1 x721; uint32_t x722; fiat_p384_uint1 x723; uint32_t x724; fiat_p384_uint1 x725; uint32_t x726; fiat_p384_uint1 x727; uint32_t x728; fiat_p384_uint1 x729; uint32_t x730; uint32_t x731; uint32_t x732; uint32_t x733; uint32_t x734; uint32_t x735; uint32_t x736; uint32_t x737; uint32_t x738; uint32_t x739; uint32_t x740; uint32_t x741; uint32_t x742; uint32_t x743; uint32_t x744; uint32_t x745; uint32_t x746; uint32_t x747; uint32_t x748; uint32_t x749; uint32_t x750; fiat_p384_uint1 x751; uint32_t x752; fiat_p384_uint1 x753; uint32_t x754; fiat_p384_uint1 x755; uint32_t x756; fiat_p384_uint1 x757; uint32_t x758; fiat_p384_uint1 x759; uint32_t x760; fiat_p384_uint1 x761; uint32_t x762; fiat_p384_uint1 x763; uint32_t x764; fiat_p384_uint1 x765; uint32_t x766; fiat_p384_uint1 x767; uint32_t x768; fiat_p384_uint1 x769; uint32_t x770; fiat_p384_uint1 x771; uint32_t x772; fiat_p384_uint1 x773; uint32_t x774; fiat_p384_uint1 x775; uint32_t x776; fiat_p384_uint1 x777; uint32_t x778; fiat_p384_uint1 x779; uint32_t x780; fiat_p384_uint1 x781; uint32_t x782; fiat_p384_uint1 x783; uint32_t x784; fiat_p384_uint1 x785; uint32_t x786; fiat_p384_uint1 x787; uint32_t x788; fiat_p384_uint1 x789; uint32_t x790; fiat_p384_uint1 x791; uint32_t x792; fiat_p384_uint1 x793; uint32_t x794; fiat_p384_uint1 x795; uint32_t x796; fiat_p384_uint1 x797; uint32_t x798; fiat_p384_uint1 x799; uint32_t x800; fiat_p384_uint1 x801; uint32_t x802; fiat_p384_uint1 x803; uint32_t x804; fiat_p384_uint1 x805; uint32_t x806; fiat_p384_uint1 x807; uint32_t x808; fiat_p384_uint1 x809; uint32_t x810; fiat_p384_uint1 x811; uint32_t x812; fiat_p384_uint1 x813; uint32_t x814; fiat_p384_uint1 x815; uint32_t x816; uint32_t x817; uint32_t x818; uint32_t x819; uint32_t x820; uint32_t x821; uint32_t x822; uint32_t x823; uint32_t x824; uint32_t x825; uint32_t x826; uint32_t x827; uint32_t x828; uint32_t x829; uint32_t x830; uint32_t x831; uint32_t x832; uint32_t x833; uint32_t x834; uint32_t x835; uint32_t x836; fiat_p384_uint1 x837; uint32_t x838; fiat_p384_uint1 x839; uint32_t x840; fiat_p384_uint1 x841; uint32_t x842; fiat_p384_uint1 x843; uint32_t x844; fiat_p384_uint1 x845; uint32_t x846; fiat_p384_uint1 x847; uint32_t x848; fiat_p384_uint1 x849; uint32_t x850; fiat_p384_uint1 x851; uint32_t x852; fiat_p384_uint1 x853; uint32_t x854; fiat_p384_uint1 x855; uint32_t x856; fiat_p384_uint1 x857; uint32_t x858; fiat_p384_uint1 x859; uint32_t x860; fiat_p384_uint1 x861; uint32_t x862; fiat_p384_uint1 x863; uint32_t x864; fiat_p384_uint1 x865; uint32_t x866; fiat_p384_uint1 x867; uint32_t x868; fiat_p384_uint1 x869; uint32_t x870; fiat_p384_uint1 x871; uint32_t x872; fiat_p384_uint1 x873; uint32_t x874; fiat_p384_uint1 x875; uint32_t x876; fiat_p384_uint1 x877; uint32_t x878; fiat_p384_uint1 x879; uint32_t x880; fiat_p384_uint1 x881; uint32_t x882; fiat_p384_uint1 x883; uint32_t x884; fiat_p384_uint1 x885; uint32_t x886; fiat_p384_uint1 x887; uint32_t x888; fiat_p384_uint1 x889; uint32_t x890; fiat_p384_uint1 x891; uint32_t x892; fiat_p384_uint1 x893; uint32_t x894; fiat_p384_uint1 x895; uint32_t x896; fiat_p384_uint1 x897; uint32_t x898; fiat_p384_uint1 x899; uint32_t x900; fiat_p384_uint1 x901; uint32_t x902; uint32_t x903; uint32_t x904; uint32_t x905; uint32_t x906; uint32_t x907; uint32_t x908; uint32_t x909; uint32_t x910; uint32_t x911; uint32_t x912; uint32_t x913; uint32_t x914; uint32_t x915; uint32_t x916; uint32_t x917; uint32_t x918; uint32_t x919; uint32_t x920; uint32_t x921; uint32_t x922; fiat_p384_uint1 x923; uint32_t x924; fiat_p384_uint1 x925; uint32_t x926; fiat_p384_uint1 x927; uint32_t x928; fiat_p384_uint1 x929; uint32_t x930; fiat_p384_uint1 x931; uint32_t x932; fiat_p384_uint1 x933; uint32_t x934; fiat_p384_uint1 x935; uint32_t x936; fiat_p384_uint1 x937; uint32_t x938; fiat_p384_uint1 x939; uint32_t x940; fiat_p384_uint1 x941; uint32_t x942; fiat_p384_uint1 x943; uint32_t x944; fiat_p384_uint1 x945; uint32_t x946; fiat_p384_uint1 x947; uint32_t x948; fiat_p384_uint1 x949; uint32_t x950; fiat_p384_uint1 x951; uint32_t x952; fiat_p384_uint1 x953; uint32_t x954; fiat_p384_uint1 x955; uint32_t x956; fiat_p384_uint1 x957; uint32_t x958; fiat_p384_uint1 x959; uint32_t x960; fiat_p384_uint1 x961; uint32_t x962; fiat_p384_uint1 x963; uint32_t x964; fiat_p384_uint1 x965; uint32_t x966; fiat_p384_uint1 x967; uint32_t x968; fiat_p384_uint1 x969; uint32_t x970; fiat_p384_uint1 x971; uint32_t x972; fiat_p384_uint1 x973; uint32_t x974; fiat_p384_uint1 x975; uint32_t x976; fiat_p384_uint1 x977; uint32_t x978; fiat_p384_uint1 x979; uint32_t x980; fiat_p384_uint1 x981; uint32_t x982; fiat_p384_uint1 x983; uint32_t x984; fiat_p384_uint1 x985; uint32_t x986; fiat_p384_uint1 x987; uint32_t x988; fiat_p384_uint1 x989; uint32_t x990; uint32_t x991; uint32_t x992; uint32_t x993; uint32_t x994; uint32_t x995; uint32_t x996; uint32_t x997; uint32_t x998; uint32_t x999; uint32_t x1000; uint32_t x1001; x1 = (arg1[0]); fiat_p384_mulx_u32(&x2, &x3, x1, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x4, &x5, x1, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x6, &x7, x1, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x8, &x9, x1, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x10, &x11, x1, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x12, &x13, x1, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x14, &x15, x1, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x16, &x17, x1, UINT32_C(0xfffffffe)); fiat_p384_mulx_u32(&x18, &x19, x1, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x20, &x21, x1, UINT32_C(0xffffffff)); fiat_p384_addcarryx_u32(&x22, &x23, 0x0, x19, x16); fiat_p384_addcarryx_u32(&x24, &x25, x23, x17, x14); fiat_p384_addcarryx_u32(&x26, &x27, x25, x15, x12); fiat_p384_addcarryx_u32(&x28, &x29, x27, x13, x10); fiat_p384_addcarryx_u32(&x30, &x31, x29, x11, x8); fiat_p384_addcarryx_u32(&x32, &x33, x31, x9, x6); fiat_p384_addcarryx_u32(&x34, &x35, x33, x7, x4); fiat_p384_addcarryx_u32(&x36, &x37, x35, x5, x2); fiat_p384_addcarryx_u32(&x38, &x39, 0x0, x1, x20); fiat_p384_addcarryx_u32(&x40, &x41, 0x0, (x39 + x21), (arg1[1])); fiat_p384_mulx_u32(&x42, &x43, x40, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x44, &x45, x40, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x46, &x47, x40, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x48, &x49, x40, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x50, &x51, x40, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x52, &x53, x40, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x54, &x55, x40, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x56, &x57, x40, UINT32_C(0xfffffffe)); fiat_p384_mulx_u32(&x58, &x59, x40, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x60, &x61, x40, UINT32_C(0xffffffff)); fiat_p384_addcarryx_u32(&x62, &x63, 0x0, x59, x56); fiat_p384_addcarryx_u32(&x64, &x65, x63, x57, x54); fiat_p384_addcarryx_u32(&x66, &x67, x65, x55, x52); fiat_p384_addcarryx_u32(&x68, &x69, x67, x53, x50); fiat_p384_addcarryx_u32(&x70, &x71, x69, x51, x48); fiat_p384_addcarryx_u32(&x72, &x73, x71, x49, x46); fiat_p384_addcarryx_u32(&x74, &x75, x73, x47, x44); fiat_p384_addcarryx_u32(&x76, &x77, x75, x45, x42); fiat_p384_addcarryx_u32(&x78, &x79, 0x0, x40, x60); fiat_p384_addcarryx_u32(&x80, &x81, x79, x41, x61); fiat_p384_addcarryx_u32(&x82, &x83, x81, x18, 0x0); fiat_p384_addcarryx_u32(&x84, &x85, x83, x22, x58); fiat_p384_addcarryx_u32(&x86, &x87, x85, x24, x62); fiat_p384_addcarryx_u32(&x88, &x89, x87, x26, x64); fiat_p384_addcarryx_u32(&x90, &x91, x89, x28, x66); fiat_p384_addcarryx_u32(&x92, &x93, x91, x30, x68); fiat_p384_addcarryx_u32(&x94, &x95, x93, x32, x70); fiat_p384_addcarryx_u32(&x96, &x97, x95, x34, x72); fiat_p384_addcarryx_u32(&x98, &x99, x97, x36, x74); fiat_p384_addcarryx_u32(&x100, &x101, x99, (x37 + x3), x76); fiat_p384_addcarryx_u32(&x102, &x103, x101, 0x0, (x77 + x43)); fiat_p384_addcarryx_u32(&x104, &x105, 0x0, x80, (arg1[2])); fiat_p384_addcarryx_u32(&x106, &x107, x105, x82, 0x0); fiat_p384_addcarryx_u32(&x108, &x109, x107, x84, 0x0); fiat_p384_addcarryx_u32(&x110, &x111, x109, x86, 0x0); fiat_p384_addcarryx_u32(&x112, &x113, x111, x88, 0x0); fiat_p384_addcarryx_u32(&x114, &x115, x113, x90, 0x0); fiat_p384_addcarryx_u32(&x116, &x117, x115, x92, 0x0); fiat_p384_addcarryx_u32(&x118, &x119, x117, x94, 0x0); fiat_p384_addcarryx_u32(&x120, &x121, x119, x96, 0x0); fiat_p384_addcarryx_u32(&x122, &x123, x121, x98, 0x0); fiat_p384_addcarryx_u32(&x124, &x125, x123, x100, 0x0); fiat_p384_addcarryx_u32(&x126, &x127, x125, x102, 0x0); fiat_p384_mulx_u32(&x128, &x129, x104, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x130, &x131, x104, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x132, &x133, x104, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x134, &x135, x104, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x136, &x137, x104, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x138, &x139, x104, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x140, &x141, x104, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x142, &x143, x104, UINT32_C(0xfffffffe)); fiat_p384_mulx_u32(&x144, &x145, x104, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x146, &x147, x104, UINT32_C(0xffffffff)); fiat_p384_addcarryx_u32(&x148, &x149, 0x0, x145, x142); fiat_p384_addcarryx_u32(&x150, &x151, x149, x143, x140); fiat_p384_addcarryx_u32(&x152, &x153, x151, x141, x138); fiat_p384_addcarryx_u32(&x154, &x155, x153, x139, x136); fiat_p384_addcarryx_u32(&x156, &x157, x155, x137, x134); fiat_p384_addcarryx_u32(&x158, &x159, x157, x135, x132); fiat_p384_addcarryx_u32(&x160, &x161, x159, x133, x130); fiat_p384_addcarryx_u32(&x162, &x163, x161, x131, x128); fiat_p384_addcarryx_u32(&x164, &x165, 0x0, x104, x146); fiat_p384_addcarryx_u32(&x166, &x167, x165, x106, x147); fiat_p384_addcarryx_u32(&x168, &x169, x167, x108, 0x0); fiat_p384_addcarryx_u32(&x170, &x171, x169, x110, x144); fiat_p384_addcarryx_u32(&x172, &x173, x171, x112, x148); fiat_p384_addcarryx_u32(&x174, &x175, x173, x114, x150); fiat_p384_addcarryx_u32(&x176, &x177, x175, x116, x152); fiat_p384_addcarryx_u32(&x178, &x179, x177, x118, x154); fiat_p384_addcarryx_u32(&x180, &x181, x179, x120, x156); fiat_p384_addcarryx_u32(&x182, &x183, x181, x122, x158); fiat_p384_addcarryx_u32(&x184, &x185, x183, x124, x160); fiat_p384_addcarryx_u32(&x186, &x187, x185, x126, x162); fiat_p384_addcarryx_u32(&x188, &x189, x187, ((uint32_t)x127 + x103), (x163 + x129)); fiat_p384_addcarryx_u32(&x190, &x191, 0x0, x166, (arg1[3])); fiat_p384_addcarryx_u32(&x192, &x193, x191, x168, 0x0); fiat_p384_addcarryx_u32(&x194, &x195, x193, x170, 0x0); fiat_p384_addcarryx_u32(&x196, &x197, x195, x172, 0x0); fiat_p384_addcarryx_u32(&x198, &x199, x197, x174, 0x0); fiat_p384_addcarryx_u32(&x200, &x201, x199, x176, 0x0); fiat_p384_addcarryx_u32(&x202, &x203, x201, x178, 0x0); fiat_p384_addcarryx_u32(&x204, &x205, x203, x180, 0x0); fiat_p384_addcarryx_u32(&x206, &x207, x205, x182, 0x0); fiat_p384_addcarryx_u32(&x208, &x209, x207, x184, 0x0); fiat_p384_addcarryx_u32(&x210, &x211, x209, x186, 0x0); fiat_p384_addcarryx_u32(&x212, &x213, x211, x188, 0x0); fiat_p384_mulx_u32(&x214, &x215, x190, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x216, &x217, x190, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x218, &x219, x190, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x220, &x221, x190, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x222, &x223, x190, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x224, &x225, x190, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x226, &x227, x190, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x228, &x229, x190, UINT32_C(0xfffffffe)); fiat_p384_mulx_u32(&x230, &x231, x190, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x232, &x233, x190, UINT32_C(0xffffffff)); fiat_p384_addcarryx_u32(&x234, &x235, 0x0, x231, x228); fiat_p384_addcarryx_u32(&x236, &x237, x235, x229, x226); fiat_p384_addcarryx_u32(&x238, &x239, x237, x227, x224); fiat_p384_addcarryx_u32(&x240, &x241, x239, x225, x222); fiat_p384_addcarryx_u32(&x242, &x243, x241, x223, x220); fiat_p384_addcarryx_u32(&x244, &x245, x243, x221, x218); fiat_p384_addcarryx_u32(&x246, &x247, x245, x219, x216); fiat_p384_addcarryx_u32(&x248, &x249, x247, x217, x214); fiat_p384_addcarryx_u32(&x250, &x251, 0x0, x190, x232); fiat_p384_addcarryx_u32(&x252, &x253, x251, x192, x233); fiat_p384_addcarryx_u32(&x254, &x255, x253, x194, 0x0); fiat_p384_addcarryx_u32(&x256, &x257, x255, x196, x230); fiat_p384_addcarryx_u32(&x258, &x259, x257, x198, x234); fiat_p384_addcarryx_u32(&x260, &x261, x259, x200, x236); fiat_p384_addcarryx_u32(&x262, &x263, x261, x202, x238); fiat_p384_addcarryx_u32(&x264, &x265, x263, x204, x240); fiat_p384_addcarryx_u32(&x266, &x267, x265, x206, x242); fiat_p384_addcarryx_u32(&x268, &x269, x267, x208, x244); fiat_p384_addcarryx_u32(&x270, &x271, x269, x210, x246); fiat_p384_addcarryx_u32(&x272, &x273, x271, x212, x248); fiat_p384_addcarryx_u32(&x274, &x275, x273, ((uint32_t)x213 + x189), (x249 + x215)); fiat_p384_addcarryx_u32(&x276, &x277, 0x0, x252, (arg1[4])); fiat_p384_addcarryx_u32(&x278, &x279, x277, x254, 0x0); fiat_p384_addcarryx_u32(&x280, &x281, x279, x256, 0x0); fiat_p384_addcarryx_u32(&x282, &x283, x281, x258, 0x0); fiat_p384_addcarryx_u32(&x284, &x285, x283, x260, 0x0); fiat_p384_addcarryx_u32(&x286, &x287, x285, x262, 0x0); fiat_p384_addcarryx_u32(&x288, &x289, x287, x264, 0x0); fiat_p384_addcarryx_u32(&x290, &x291, x289, x266, 0x0); fiat_p384_addcarryx_u32(&x292, &x293, x291, x268, 0x0); fiat_p384_addcarryx_u32(&x294, &x295, x293, x270, 0x0); fiat_p384_addcarryx_u32(&x296, &x297, x295, x272, 0x0); fiat_p384_addcarryx_u32(&x298, &x299, x297, x274, 0x0); fiat_p384_mulx_u32(&x300, &x301, x276, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x302, &x303, x276, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x304, &x305, x276, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x306, &x307, x276, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x308, &x309, x276, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x310, &x311, x276, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x312, &x313, x276, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x314, &x315, x276, UINT32_C(0xfffffffe)); fiat_p384_mulx_u32(&x316, &x317, x276, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x318, &x319, x276, UINT32_C(0xffffffff)); fiat_p384_addcarryx_u32(&x320, &x321, 0x0, x317, x314); fiat_p384_addcarryx_u32(&x322, &x323, x321, x315, x312); fiat_p384_addcarryx_u32(&x324, &x325, x323, x313, x310); fiat_p384_addcarryx_u32(&x326, &x327, x325, x311, x308); fiat_p384_addcarryx_u32(&x328, &x329, x327, x309, x306); fiat_p384_addcarryx_u32(&x330, &x331, x329, x307, x304); fiat_p384_addcarryx_u32(&x332, &x333, x331, x305, x302); fiat_p384_addcarryx_u32(&x334, &x335, x333, x303, x300); fiat_p384_addcarryx_u32(&x336, &x337, 0x0, x276, x318); fiat_p384_addcarryx_u32(&x338, &x339, x337, x278, x319); fiat_p384_addcarryx_u32(&x340, &x341, x339, x280, 0x0); fiat_p384_addcarryx_u32(&x342, &x343, x341, x282, x316); fiat_p384_addcarryx_u32(&x344, &x345, x343, x284, x320); fiat_p384_addcarryx_u32(&x346, &x347, x345, x286, x322); fiat_p384_addcarryx_u32(&x348, &x349, x347, x288, x324); fiat_p384_addcarryx_u32(&x350, &x351, x349, x290, x326); fiat_p384_addcarryx_u32(&x352, &x353, x351, x292, x328); fiat_p384_addcarryx_u32(&x354, &x355, x353, x294, x330); fiat_p384_addcarryx_u32(&x356, &x357, x355, x296, x332); fiat_p384_addcarryx_u32(&x358, &x359, x357, x298, x334); fiat_p384_addcarryx_u32(&x360, &x361, x359, ((uint32_t)x299 + x275), (x335 + x301)); fiat_p384_addcarryx_u32(&x362, &x363, 0x0, x338, (arg1[5])); fiat_p384_addcarryx_u32(&x364, &x365, x363, x340, 0x0); fiat_p384_addcarryx_u32(&x366, &x367, x365, x342, 0x0); fiat_p384_addcarryx_u32(&x368, &x369, x367, x344, 0x0); fiat_p384_addcarryx_u32(&x370, &x371, x369, x346, 0x0); fiat_p384_addcarryx_u32(&x372, &x373, x371, x348, 0x0); fiat_p384_addcarryx_u32(&x374, &x375, x373, x350, 0x0); fiat_p384_addcarryx_u32(&x376, &x377, x375, x352, 0x0); fiat_p384_addcarryx_u32(&x378, &x379, x377, x354, 0x0); fiat_p384_addcarryx_u32(&x380, &x381, x379, x356, 0x0); fiat_p384_addcarryx_u32(&x382, &x383, x381, x358, 0x0); fiat_p384_addcarryx_u32(&x384, &x385, x383, x360, 0x0); fiat_p384_mulx_u32(&x386, &x387, x362, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x388, &x389, x362, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x390, &x391, x362, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x392, &x393, x362, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x394, &x395, x362, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x396, &x397, x362, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x398, &x399, x362, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x400, &x401, x362, UINT32_C(0xfffffffe)); fiat_p384_mulx_u32(&x402, &x403, x362, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x404, &x405, x362, UINT32_C(0xffffffff)); fiat_p384_addcarryx_u32(&x406, &x407, 0x0, x403, x400); fiat_p384_addcarryx_u32(&x408, &x409, x407, x401, x398); fiat_p384_addcarryx_u32(&x410, &x411, x409, x399, x396); fiat_p384_addcarryx_u32(&x412, &x413, x411, x397, x394); fiat_p384_addcarryx_u32(&x414, &x415, x413, x395, x392); fiat_p384_addcarryx_u32(&x416, &x417, x415, x393, x390); fiat_p384_addcarryx_u32(&x418, &x419, x417, x391, x388); fiat_p384_addcarryx_u32(&x420, &x421, x419, x389, x386); fiat_p384_addcarryx_u32(&x422, &x423, 0x0, x362, x404); fiat_p384_addcarryx_u32(&x424, &x425, x423, x364, x405); fiat_p384_addcarryx_u32(&x426, &x427, x425, x366, 0x0); fiat_p384_addcarryx_u32(&x428, &x429, x427, x368, x402); fiat_p384_addcarryx_u32(&x430, &x431, x429, x370, x406); fiat_p384_addcarryx_u32(&x432, &x433, x431, x372, x408); fiat_p384_addcarryx_u32(&x434, &x435, x433, x374, x410); fiat_p384_addcarryx_u32(&x436, &x437, x435, x376, x412); fiat_p384_addcarryx_u32(&x438, &x439, x437, x378, x414); fiat_p384_addcarryx_u32(&x440, &x441, x439, x380, x416); fiat_p384_addcarryx_u32(&x442, &x443, x441, x382, x418); fiat_p384_addcarryx_u32(&x444, &x445, x443, x384, x420); fiat_p384_addcarryx_u32(&x446, &x447, x445, ((uint32_t)x385 + x361), (x421 + x387)); fiat_p384_addcarryx_u32(&x448, &x449, 0x0, x424, (arg1[6])); fiat_p384_addcarryx_u32(&x450, &x451, x449, x426, 0x0); fiat_p384_addcarryx_u32(&x452, &x453, x451, x428, 0x0); fiat_p384_addcarryx_u32(&x454, &x455, x453, x430, 0x0); fiat_p384_addcarryx_u32(&x456, &x457, x455, x432, 0x0); fiat_p384_addcarryx_u32(&x458, &x459, x457, x434, 0x0); fiat_p384_addcarryx_u32(&x460, &x461, x459, x436, 0x0); fiat_p384_addcarryx_u32(&x462, &x463, x461, x438, 0x0); fiat_p384_addcarryx_u32(&x464, &x465, x463, x440, 0x0); fiat_p384_addcarryx_u32(&x466, &x467, x465, x442, 0x0); fiat_p384_addcarryx_u32(&x468, &x469, x467, x444, 0x0); fiat_p384_addcarryx_u32(&x470, &x471, x469, x446, 0x0); fiat_p384_mulx_u32(&x472, &x473, x448, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x474, &x475, x448, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x476, &x477, x448, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x478, &x479, x448, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x480, &x481, x448, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x482, &x483, x448, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x484, &x485, x448, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x486, &x487, x448, UINT32_C(0xfffffffe)); fiat_p384_mulx_u32(&x488, &x489, x448, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x490, &x491, x448, UINT32_C(0xffffffff)); fiat_p384_addcarryx_u32(&x492, &x493, 0x0, x489, x486); fiat_p384_addcarryx_u32(&x494, &x495, x493, x487, x484); fiat_p384_addcarryx_u32(&x496, &x497, x495, x485, x482); fiat_p384_addcarryx_u32(&x498, &x499, x497, x483, x480); fiat_p384_addcarryx_u32(&x500, &x501, x499, x481, x478); fiat_p384_addcarryx_u32(&x502, &x503, x501, x479, x476); fiat_p384_addcarryx_u32(&x504, &x505, x503, x477, x474); fiat_p384_addcarryx_u32(&x506, &x507, x505, x475, x472); fiat_p384_addcarryx_u32(&x508, &x509, 0x0, x448, x490); fiat_p384_addcarryx_u32(&x510, &x511, x509, x450, x491); fiat_p384_addcarryx_u32(&x512, &x513, x511, x452, 0x0); fiat_p384_addcarryx_u32(&x514, &x515, x513, x454, x488); fiat_p384_addcarryx_u32(&x516, &x517, x515, x456, x492); fiat_p384_addcarryx_u32(&x518, &x519, x517, x458, x494); fiat_p384_addcarryx_u32(&x520, &x521, x519, x460, x496); fiat_p384_addcarryx_u32(&x522, &x523, x521, x462, x498); fiat_p384_addcarryx_u32(&x524, &x525, x523, x464, x500); fiat_p384_addcarryx_u32(&x526, &x527, x525, x466, x502); fiat_p384_addcarryx_u32(&x528, &x529, x527, x468, x504); fiat_p384_addcarryx_u32(&x530, &x531, x529, x470, x506); fiat_p384_addcarryx_u32(&x532, &x533, x531, ((uint32_t)x471 + x447), (x507 + x473)); fiat_p384_addcarryx_u32(&x534, &x535, 0x0, x510, (arg1[7])); fiat_p384_addcarryx_u32(&x536, &x537, x535, x512, 0x0); fiat_p384_addcarryx_u32(&x538, &x539, x537, x514, 0x0); fiat_p384_addcarryx_u32(&x540, &x541, x539, x516, 0x0); fiat_p384_addcarryx_u32(&x542, &x543, x541, x518, 0x0); fiat_p384_addcarryx_u32(&x544, &x545, x543, x520, 0x0); fiat_p384_addcarryx_u32(&x546, &x547, x545, x522, 0x0); fiat_p384_addcarryx_u32(&x548, &x549, x547, x524, 0x0); fiat_p384_addcarryx_u32(&x550, &x551, x549, x526, 0x0); fiat_p384_addcarryx_u32(&x552, &x553, x551, x528, 0x0); fiat_p384_addcarryx_u32(&x554, &x555, x553, x530, 0x0); fiat_p384_addcarryx_u32(&x556, &x557, x555, x532, 0x0); fiat_p384_mulx_u32(&x558, &x559, x534, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x560, &x561, x534, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x562, &x563, x534, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x564, &x565, x534, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x566, &x567, x534, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x568, &x569, x534, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x570, &x571, x534, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x572, &x573, x534, UINT32_C(0xfffffffe)); fiat_p384_mulx_u32(&x574, &x575, x534, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x576, &x577, x534, UINT32_C(0xffffffff)); fiat_p384_addcarryx_u32(&x578, &x579, 0x0, x575, x572); fiat_p384_addcarryx_u32(&x580, &x581, x579, x573, x570); fiat_p384_addcarryx_u32(&x582, &x583, x581, x571, x568); fiat_p384_addcarryx_u32(&x584, &x585, x583, x569, x566); fiat_p384_addcarryx_u32(&x586, &x587, x585, x567, x564); fiat_p384_addcarryx_u32(&x588, &x589, x587, x565, x562); fiat_p384_addcarryx_u32(&x590, &x591, x589, x563, x560); fiat_p384_addcarryx_u32(&x592, &x593, x591, x561, x558); fiat_p384_addcarryx_u32(&x594, &x595, 0x0, x534, x576); fiat_p384_addcarryx_u32(&x596, &x597, x595, x536, x577); fiat_p384_addcarryx_u32(&x598, &x599, x597, x538, 0x0); fiat_p384_addcarryx_u32(&x600, &x601, x599, x540, x574); fiat_p384_addcarryx_u32(&x602, &x603, x601, x542, x578); fiat_p384_addcarryx_u32(&x604, &x605, x603, x544, x580); fiat_p384_addcarryx_u32(&x606, &x607, x605, x546, x582); fiat_p384_addcarryx_u32(&x608, &x609, x607, x548, x584); fiat_p384_addcarryx_u32(&x610, &x611, x609, x550, x586); fiat_p384_addcarryx_u32(&x612, &x613, x611, x552, x588); fiat_p384_addcarryx_u32(&x614, &x615, x613, x554, x590); fiat_p384_addcarryx_u32(&x616, &x617, x615, x556, x592); fiat_p384_addcarryx_u32(&x618, &x619, x617, ((uint32_t)x557 + x533), (x593 + x559)); fiat_p384_addcarryx_u32(&x620, &x621, 0x0, x596, (arg1[8])); fiat_p384_addcarryx_u32(&x622, &x623, x621, x598, 0x0); fiat_p384_addcarryx_u32(&x624, &x625, x623, x600, 0x0); fiat_p384_addcarryx_u32(&x626, &x627, x625, x602, 0x0); fiat_p384_addcarryx_u32(&x628, &x629, x627, x604, 0x0); fiat_p384_addcarryx_u32(&x630, &x631, x629, x606, 0x0); fiat_p384_addcarryx_u32(&x632, &x633, x631, x608, 0x0); fiat_p384_addcarryx_u32(&x634, &x635, x633, x610, 0x0); fiat_p384_addcarryx_u32(&x636, &x637, x635, x612, 0x0); fiat_p384_addcarryx_u32(&x638, &x639, x637, x614, 0x0); fiat_p384_addcarryx_u32(&x640, &x641, x639, x616, 0x0); fiat_p384_addcarryx_u32(&x642, &x643, x641, x618, 0x0); fiat_p384_mulx_u32(&x644, &x645, x620, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x646, &x647, x620, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x648, &x649, x620, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x650, &x651, x620, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x652, &x653, x620, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x654, &x655, x620, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x656, &x657, x620, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x658, &x659, x620, UINT32_C(0xfffffffe)); fiat_p384_mulx_u32(&x660, &x661, x620, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x662, &x663, x620, UINT32_C(0xffffffff)); fiat_p384_addcarryx_u32(&x664, &x665, 0x0, x661, x658); fiat_p384_addcarryx_u32(&x666, &x667, x665, x659, x656); fiat_p384_addcarryx_u32(&x668, &x669, x667, x657, x654); fiat_p384_addcarryx_u32(&x670, &x671, x669, x655, x652); fiat_p384_addcarryx_u32(&x672, &x673, x671, x653, x650); fiat_p384_addcarryx_u32(&x674, &x675, x673, x651, x648); fiat_p384_addcarryx_u32(&x676, &x677, x675, x649, x646); fiat_p384_addcarryx_u32(&x678, &x679, x677, x647, x644); fiat_p384_addcarryx_u32(&x680, &x681, 0x0, x620, x662); fiat_p384_addcarryx_u32(&x682, &x683, x681, x622, x663); fiat_p384_addcarryx_u32(&x684, &x685, x683, x624, 0x0); fiat_p384_addcarryx_u32(&x686, &x687, x685, x626, x660); fiat_p384_addcarryx_u32(&x688, &x689, x687, x628, x664); fiat_p384_addcarryx_u32(&x690, &x691, x689, x630, x666); fiat_p384_addcarryx_u32(&x692, &x693, x691, x632, x668); fiat_p384_addcarryx_u32(&x694, &x695, x693, x634, x670); fiat_p384_addcarryx_u32(&x696, &x697, x695, x636, x672); fiat_p384_addcarryx_u32(&x698, &x699, x697, x638, x674); fiat_p384_addcarryx_u32(&x700, &x701, x699, x640, x676); fiat_p384_addcarryx_u32(&x702, &x703, x701, x642, x678); fiat_p384_addcarryx_u32(&x704, &x705, x703, ((uint32_t)x643 + x619), (x679 + x645)); fiat_p384_addcarryx_u32(&x706, &x707, 0x0, x682, (arg1[9])); fiat_p384_addcarryx_u32(&x708, &x709, x707, x684, 0x0); fiat_p384_addcarryx_u32(&x710, &x711, x709, x686, 0x0); fiat_p384_addcarryx_u32(&x712, &x713, x711, x688, 0x0); fiat_p384_addcarryx_u32(&x714, &x715, x713, x690, 0x0); fiat_p384_addcarryx_u32(&x716, &x717, x715, x692, 0x0); fiat_p384_addcarryx_u32(&x718, &x719, x717, x694, 0x0); fiat_p384_addcarryx_u32(&x720, &x721, x719, x696, 0x0); fiat_p384_addcarryx_u32(&x722, &x723, x721, x698, 0x0); fiat_p384_addcarryx_u32(&x724, &x725, x723, x700, 0x0); fiat_p384_addcarryx_u32(&x726, &x727, x725, x702, 0x0); fiat_p384_addcarryx_u32(&x728, &x729, x727, x704, 0x0); fiat_p384_mulx_u32(&x730, &x731, x706, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x732, &x733, x706, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x734, &x735, x706, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x736, &x737, x706, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x738, &x739, x706, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x740, &x741, x706, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x742, &x743, x706, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x744, &x745, x706, UINT32_C(0xfffffffe)); fiat_p384_mulx_u32(&x746, &x747, x706, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x748, &x749, x706, UINT32_C(0xffffffff)); fiat_p384_addcarryx_u32(&x750, &x751, 0x0, x747, x744); fiat_p384_addcarryx_u32(&x752, &x753, x751, x745, x742); fiat_p384_addcarryx_u32(&x754, &x755, x753, x743, x740); fiat_p384_addcarryx_u32(&x756, &x757, x755, x741, x738); fiat_p384_addcarryx_u32(&x758, &x759, x757, x739, x736); fiat_p384_addcarryx_u32(&x760, &x761, x759, x737, x734); fiat_p384_addcarryx_u32(&x762, &x763, x761, x735, x732); fiat_p384_addcarryx_u32(&x764, &x765, x763, x733, x730); fiat_p384_addcarryx_u32(&x766, &x767, 0x0, x706, x748); fiat_p384_addcarryx_u32(&x768, &x769, x767, x708, x749); fiat_p384_addcarryx_u32(&x770, &x771, x769, x710, 0x0); fiat_p384_addcarryx_u32(&x772, &x773, x771, x712, x746); fiat_p384_addcarryx_u32(&x774, &x775, x773, x714, x750); fiat_p384_addcarryx_u32(&x776, &x777, x775, x716, x752); fiat_p384_addcarryx_u32(&x778, &x779, x777, x718, x754); fiat_p384_addcarryx_u32(&x780, &x781, x779, x720, x756); fiat_p384_addcarryx_u32(&x782, &x783, x781, x722, x758); fiat_p384_addcarryx_u32(&x784, &x785, x783, x724, x760); fiat_p384_addcarryx_u32(&x786, &x787, x785, x726, x762); fiat_p384_addcarryx_u32(&x788, &x789, x787, x728, x764); fiat_p384_addcarryx_u32(&x790, &x791, x789, ((uint32_t)x729 + x705), (x765 + x731)); fiat_p384_addcarryx_u32(&x792, &x793, 0x0, x768, (arg1[10])); fiat_p384_addcarryx_u32(&x794, &x795, x793, x770, 0x0); fiat_p384_addcarryx_u32(&x796, &x797, x795, x772, 0x0); fiat_p384_addcarryx_u32(&x798, &x799, x797, x774, 0x0); fiat_p384_addcarryx_u32(&x800, &x801, x799, x776, 0x0); fiat_p384_addcarryx_u32(&x802, &x803, x801, x778, 0x0); fiat_p384_addcarryx_u32(&x804, &x805, x803, x780, 0x0); fiat_p384_addcarryx_u32(&x806, &x807, x805, x782, 0x0); fiat_p384_addcarryx_u32(&x808, &x809, x807, x784, 0x0); fiat_p384_addcarryx_u32(&x810, &x811, x809, x786, 0x0); fiat_p384_addcarryx_u32(&x812, &x813, x811, x788, 0x0); fiat_p384_addcarryx_u32(&x814, &x815, x813, x790, 0x0); fiat_p384_mulx_u32(&x816, &x817, x792, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x818, &x819, x792, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x820, &x821, x792, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x822, &x823, x792, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x824, &x825, x792, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x826, &x827, x792, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x828, &x829, x792, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x830, &x831, x792, UINT32_C(0xfffffffe)); fiat_p384_mulx_u32(&x832, &x833, x792, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x834, &x835, x792, UINT32_C(0xffffffff)); fiat_p384_addcarryx_u32(&x836, &x837, 0x0, x833, x830); fiat_p384_addcarryx_u32(&x838, &x839, x837, x831, x828); fiat_p384_addcarryx_u32(&x840, &x841, x839, x829, x826); fiat_p384_addcarryx_u32(&x842, &x843, x841, x827, x824); fiat_p384_addcarryx_u32(&x844, &x845, x843, x825, x822); fiat_p384_addcarryx_u32(&x846, &x847, x845, x823, x820); fiat_p384_addcarryx_u32(&x848, &x849, x847, x821, x818); fiat_p384_addcarryx_u32(&x850, &x851, x849, x819, x816); fiat_p384_addcarryx_u32(&x852, &x853, 0x0, x792, x834); fiat_p384_addcarryx_u32(&x854, &x855, x853, x794, x835); fiat_p384_addcarryx_u32(&x856, &x857, x855, x796, 0x0); fiat_p384_addcarryx_u32(&x858, &x859, x857, x798, x832); fiat_p384_addcarryx_u32(&x860, &x861, x859, x800, x836); fiat_p384_addcarryx_u32(&x862, &x863, x861, x802, x838); fiat_p384_addcarryx_u32(&x864, &x865, x863, x804, x840); fiat_p384_addcarryx_u32(&x866, &x867, x865, x806, x842); fiat_p384_addcarryx_u32(&x868, &x869, x867, x808, x844); fiat_p384_addcarryx_u32(&x870, &x871, x869, x810, x846); fiat_p384_addcarryx_u32(&x872, &x873, x871, x812, x848); fiat_p384_addcarryx_u32(&x874, &x875, x873, x814, x850); fiat_p384_addcarryx_u32(&x876, &x877, x875, ((uint32_t)x815 + x791), (x851 + x817)); fiat_p384_addcarryx_u32(&x878, &x879, 0x0, x854, (arg1[11])); fiat_p384_addcarryx_u32(&x880, &x881, x879, x856, 0x0); fiat_p384_addcarryx_u32(&x882, &x883, x881, x858, 0x0); fiat_p384_addcarryx_u32(&x884, &x885, x883, x860, 0x0); fiat_p384_addcarryx_u32(&x886, &x887, x885, x862, 0x0); fiat_p384_addcarryx_u32(&x888, &x889, x887, x864, 0x0); fiat_p384_addcarryx_u32(&x890, &x891, x889, x866, 0x0); fiat_p384_addcarryx_u32(&x892, &x893, x891, x868, 0x0); fiat_p384_addcarryx_u32(&x894, &x895, x893, x870, 0x0); fiat_p384_addcarryx_u32(&x896, &x897, x895, x872, 0x0); fiat_p384_addcarryx_u32(&x898, &x899, x897, x874, 0x0); fiat_p384_addcarryx_u32(&x900, &x901, x899, x876, 0x0); fiat_p384_mulx_u32(&x902, &x903, x878, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x904, &x905, x878, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x906, &x907, x878, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x908, &x909, x878, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x910, &x911, x878, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x912, &x913, x878, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x914, &x915, x878, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x916, &x917, x878, UINT32_C(0xfffffffe)); fiat_p384_mulx_u32(&x918, &x919, x878, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x920, &x921, x878, UINT32_C(0xffffffff)); fiat_p384_addcarryx_u32(&x922, &x923, 0x0, x919, x916); fiat_p384_addcarryx_u32(&x924, &x925, x923, x917, x914); fiat_p384_addcarryx_u32(&x926, &x927, x925, x915, x912); fiat_p384_addcarryx_u32(&x928, &x929, x927, x913, x910); fiat_p384_addcarryx_u32(&x930, &x931, x929, x911, x908); fiat_p384_addcarryx_u32(&x932, &x933, x931, x909, x906); fiat_p384_addcarryx_u32(&x934, &x935, x933, x907, x904); fiat_p384_addcarryx_u32(&x936, &x937, x935, x905, x902); fiat_p384_addcarryx_u32(&x938, &x939, 0x0, x878, x920); fiat_p384_addcarryx_u32(&x940, &x941, x939, x880, x921); fiat_p384_addcarryx_u32(&x942, &x943, x941, x882, 0x0); fiat_p384_addcarryx_u32(&x944, &x945, x943, x884, x918); fiat_p384_addcarryx_u32(&x946, &x947, x945, x886, x922); fiat_p384_addcarryx_u32(&x948, &x949, x947, x888, x924); fiat_p384_addcarryx_u32(&x950, &x951, x949, x890, x926); fiat_p384_addcarryx_u32(&x952, &x953, x951, x892, x928); fiat_p384_addcarryx_u32(&x954, &x955, x953, x894, x930); fiat_p384_addcarryx_u32(&x956, &x957, x955, x896, x932); fiat_p384_addcarryx_u32(&x958, &x959, x957, x898, x934); fiat_p384_addcarryx_u32(&x960, &x961, x959, x900, x936); fiat_p384_addcarryx_u32(&x962, &x963, x961, ((uint32_t)x901 + x877), (x937 + x903)); fiat_p384_subborrowx_u32(&x964, &x965, 0x0, x940, UINT32_C(0xffffffff)); fiat_p384_subborrowx_u32(&x966, &x967, x965, x942, 0x0); fiat_p384_subborrowx_u32(&x968, &x969, x967, x944, 0x0); fiat_p384_subborrowx_u32(&x970, &x971, x969, x946, UINT32_C(0xffffffff)); fiat_p384_subborrowx_u32(&x972, &x973, x971, x948, UINT32_C(0xfffffffe)); fiat_p384_subborrowx_u32(&x974, &x975, x973, x950, UINT32_C(0xffffffff)); fiat_p384_subborrowx_u32(&x976, &x977, x975, x952, UINT32_C(0xffffffff)); fiat_p384_subborrowx_u32(&x978, &x979, x977, x954, UINT32_C(0xffffffff)); fiat_p384_subborrowx_u32(&x980, &x981, x979, x956, UINT32_C(0xffffffff)); fiat_p384_subborrowx_u32(&x982, &x983, x981, x958, UINT32_C(0xffffffff)); fiat_p384_subborrowx_u32(&x984, &x985, x983, x960, UINT32_C(0xffffffff)); fiat_p384_subborrowx_u32(&x986, &x987, x985, x962, UINT32_C(0xffffffff)); fiat_p384_subborrowx_u32(&x988, &x989, x987, x963, 0x0); fiat_p384_cmovznz_u32(&x990, x989, x964, x940); fiat_p384_cmovznz_u32(&x991, x989, x966, x942); fiat_p384_cmovznz_u32(&x992, x989, x968, x944); fiat_p384_cmovznz_u32(&x993, x989, x970, x946); fiat_p384_cmovznz_u32(&x994, x989, x972, x948); fiat_p384_cmovznz_u32(&x995, x989, x974, x950); fiat_p384_cmovznz_u32(&x996, x989, x976, x952); fiat_p384_cmovznz_u32(&x997, x989, x978, x954); fiat_p384_cmovznz_u32(&x998, x989, x980, x956); fiat_p384_cmovznz_u32(&x999, x989, x982, x958); fiat_p384_cmovznz_u32(&x1000, x989, x984, x960); fiat_p384_cmovznz_u32(&x1001, x989, x986, x962); out1[0] = x990; out1[1] = x991; out1[2] = x992; out1[3] = x993; out1[4] = x994; out1[5] = x995; out1[6] = x996; out1[7] = x997; out1[8] = x998; out1[9] = x999; out1[10] = x1000; out1[11] = x1001; } /* * The function fiat_p384_to_montgomery translates a field element into the Montgomery domain. * * Preconditions: * 0 ≤ eval arg1 < m * Postconditions: * eval (from_montgomery out1) mod m = eval arg1 mod m * 0 ≤ eval out1 < m * */ static void fiat_p384_to_montgomery(fiat_p384_montgomery_domain_field_element out1, const fiat_p384_non_montgomery_domain_field_element arg1) { uint32_t x1; uint32_t x2; uint32_t x3; uint32_t x4; uint32_t x5; uint32_t x6; uint32_t x7; uint32_t x8; uint32_t x9; uint32_t x10; uint32_t x11; uint32_t x12; uint32_t x13; uint32_t x14; uint32_t x15; uint32_t x16; uint32_t x17; uint32_t x18; uint32_t x19; uint32_t x20; uint32_t x21; fiat_p384_uint1 x22; uint32_t x23; uint32_t x24; uint32_t x25; uint32_t x26; uint32_t x27; uint32_t x28; uint32_t x29; uint32_t x30; uint32_t x31; uint32_t x32; uint32_t x33; uint32_t x34; uint32_t x35; uint32_t x36; uint32_t x37; uint32_t x38; uint32_t x39; uint32_t x40; uint32_t x41; uint32_t x42; uint32_t x43; fiat_p384_uint1 x44; uint32_t x45; fiat_p384_uint1 x46; uint32_t x47; fiat_p384_uint1 x48; uint32_t x49; fiat_p384_uint1 x50; uint32_t x51; fiat_p384_uint1 x52; uint32_t x53; fiat_p384_uint1 x54; uint32_t x55; fiat_p384_uint1 x56; uint32_t x57; fiat_p384_uint1 x58; uint32_t x59; fiat_p384_uint1 x60; uint32_t x61; fiat_p384_uint1 x62; uint32_t x63; fiat_p384_uint1 x64; uint32_t x65; fiat_p384_uint1 x66; uint32_t x67; fiat_p384_uint1 x68; uint32_t x69; fiat_p384_uint1 x70; uint32_t x71; fiat_p384_uint1 x72; uint32_t x73; fiat_p384_uint1 x74; uint32_t x75; fiat_p384_uint1 x76; uint32_t x77; fiat_p384_uint1 x78; uint32_t x79; fiat_p384_uint1 x80; uint32_t x81; fiat_p384_uint1 x82; uint32_t x83; uint32_t x84; uint32_t x85; uint32_t x86; uint32_t x87; uint32_t x88; uint32_t x89; uint32_t x90; uint32_t x91; fiat_p384_uint1 x92; uint32_t x93; fiat_p384_uint1 x94; uint32_t x95; fiat_p384_uint1 x96; uint32_t x97; fiat_p384_uint1 x98; uint32_t x99; fiat_p384_uint1 x100; uint32_t x101; fiat_p384_uint1 x102; uint32_t x103; fiat_p384_uint1 x104; uint32_t x105; fiat_p384_uint1 x106; uint32_t x107; fiat_p384_uint1 x108; uint32_t x109; fiat_p384_uint1 x110; uint32_t x111; fiat_p384_uint1 x112; uint32_t x113; fiat_p384_uint1 x114; uint32_t x115; fiat_p384_uint1 x116; uint32_t x117; uint32_t x118; uint32_t x119; uint32_t x120; uint32_t x121; uint32_t x122; uint32_t x123; uint32_t x124; uint32_t x125; uint32_t x126; uint32_t x127; uint32_t x128; uint32_t x129; uint32_t x130; uint32_t x131; uint32_t x132; uint32_t x133; uint32_t x134; uint32_t x135; uint32_t x136; uint32_t x137; fiat_p384_uint1 x138; uint32_t x139; fiat_p384_uint1 x140; uint32_t x141; fiat_p384_uint1 x142; uint32_t x143; fiat_p384_uint1 x144; uint32_t x145; fiat_p384_uint1 x146; uint32_t x147; fiat_p384_uint1 x148; uint32_t x149; fiat_p384_uint1 x150; uint32_t x151; fiat_p384_uint1 x152; uint32_t x153; fiat_p384_uint1 x154; uint32_t x155; fiat_p384_uint1 x156; uint32_t x157; fiat_p384_uint1 x158; uint32_t x159; fiat_p384_uint1 x160; uint32_t x161; fiat_p384_uint1 x162; uint32_t x163; fiat_p384_uint1 x164; uint32_t x165; fiat_p384_uint1 x166; uint32_t x167; fiat_p384_uint1 x168; uint32_t x169; fiat_p384_uint1 x170; uint32_t x171; fiat_p384_uint1 x172; uint32_t x173; fiat_p384_uint1 x174; uint32_t x175; fiat_p384_uint1 x176; uint32_t x177; fiat_p384_uint1 x178; uint32_t x179; uint32_t x180; uint32_t x181; uint32_t x182; uint32_t x183; uint32_t x184; uint32_t x185; uint32_t x186; uint32_t x187; fiat_p384_uint1 x188; uint32_t x189; fiat_p384_uint1 x190; uint32_t x191; fiat_p384_uint1 x192; uint32_t x193; fiat_p384_uint1 x194; uint32_t x195; fiat_p384_uint1 x196; uint32_t x197; fiat_p384_uint1 x198; uint32_t x199; fiat_p384_uint1 x200; uint32_t x201; fiat_p384_uint1 x202; uint32_t x203; fiat_p384_uint1 x204; uint32_t x205; fiat_p384_uint1 x206; uint32_t x207; fiat_p384_uint1 x208; uint32_t x209; fiat_p384_uint1 x210; uint32_t x211; fiat_p384_uint1 x212; uint32_t x213; uint32_t x214; uint32_t x215; uint32_t x216; uint32_t x217; uint32_t x218; uint32_t x219; uint32_t x220; uint32_t x221; uint32_t x222; uint32_t x223; uint32_t x224; uint32_t x225; uint32_t x226; uint32_t x227; uint32_t x228; uint32_t x229; uint32_t x230; uint32_t x231; uint32_t x232; uint32_t x233; fiat_p384_uint1 x234; uint32_t x235; fiat_p384_uint1 x236; uint32_t x237; fiat_p384_uint1 x238; uint32_t x239; fiat_p384_uint1 x240; uint32_t x241; fiat_p384_uint1 x242; uint32_t x243; fiat_p384_uint1 x244; uint32_t x245; fiat_p384_uint1 x246; uint32_t x247; fiat_p384_uint1 x248; uint32_t x249; fiat_p384_uint1 x250; uint32_t x251; fiat_p384_uint1 x252; uint32_t x253; fiat_p384_uint1 x254; uint32_t x255; fiat_p384_uint1 x256; uint32_t x257; fiat_p384_uint1 x258; uint32_t x259; fiat_p384_uint1 x260; uint32_t x261; fiat_p384_uint1 x262; uint32_t x263; fiat_p384_uint1 x264; uint32_t x265; fiat_p384_uint1 x266; uint32_t x267; fiat_p384_uint1 x268; uint32_t x269; fiat_p384_uint1 x270; uint32_t x271; fiat_p384_uint1 x272; uint32_t x273; fiat_p384_uint1 x274; uint32_t x275; uint32_t x276; uint32_t x277; uint32_t x278; uint32_t x279; uint32_t x280; uint32_t x281; uint32_t x282; uint32_t x283; fiat_p384_uint1 x284; uint32_t x285; fiat_p384_uint1 x286; uint32_t x287; fiat_p384_uint1 x288; uint32_t x289; fiat_p384_uint1 x290; uint32_t x291; fiat_p384_uint1 x292; uint32_t x293; fiat_p384_uint1 x294; uint32_t x295; fiat_p384_uint1 x296; uint32_t x297; fiat_p384_uint1 x298; uint32_t x299; fiat_p384_uint1 x300; uint32_t x301; fiat_p384_uint1 x302; uint32_t x303; fiat_p384_uint1 x304; uint32_t x305; fiat_p384_uint1 x306; uint32_t x307; fiat_p384_uint1 x308; uint32_t x309; uint32_t x310; uint32_t x311; uint32_t x312; uint32_t x313; uint32_t x314; uint32_t x315; uint32_t x316; uint32_t x317; uint32_t x318; uint32_t x319; uint32_t x320; uint32_t x321; uint32_t x322; uint32_t x323; uint32_t x324; uint32_t x325; uint32_t x326; uint32_t x327; uint32_t x328; uint32_t x329; fiat_p384_uint1 x330; uint32_t x331; fiat_p384_uint1 x332; uint32_t x333; fiat_p384_uint1 x334; uint32_t x335; fiat_p384_uint1 x336; uint32_t x337; fiat_p384_uint1 x338; uint32_t x339; fiat_p384_uint1 x340; uint32_t x341; fiat_p384_uint1 x342; uint32_t x343; fiat_p384_uint1 x344; uint32_t x345; fiat_p384_uint1 x346; uint32_t x347; fiat_p384_uint1 x348; uint32_t x349; fiat_p384_uint1 x350; uint32_t x351; fiat_p384_uint1 x352; uint32_t x353; fiat_p384_uint1 x354; uint32_t x355; fiat_p384_uint1 x356; uint32_t x357; fiat_p384_uint1 x358; uint32_t x359; fiat_p384_uint1 x360; uint32_t x361; fiat_p384_uint1 x362; uint32_t x363; fiat_p384_uint1 x364; uint32_t x365; fiat_p384_uint1 x366; uint32_t x367; fiat_p384_uint1 x368; uint32_t x369; fiat_p384_uint1 x370; uint32_t x371; uint32_t x372; uint32_t x373; uint32_t x374; uint32_t x375; uint32_t x376; uint32_t x377; uint32_t x378; uint32_t x379; fiat_p384_uint1 x380; uint32_t x381; fiat_p384_uint1 x382; uint32_t x383; fiat_p384_uint1 x384; uint32_t x385; fiat_p384_uint1 x386; uint32_t x387; fiat_p384_uint1 x388; uint32_t x389; fiat_p384_uint1 x390; uint32_t x391; fiat_p384_uint1 x392; uint32_t x393; fiat_p384_uint1 x394; uint32_t x395; fiat_p384_uint1 x396; uint32_t x397; fiat_p384_uint1 x398; uint32_t x399; fiat_p384_uint1 x400; uint32_t x401; fiat_p384_uint1 x402; uint32_t x403; fiat_p384_uint1 x404; uint32_t x405; uint32_t x406; uint32_t x407; uint32_t x408; uint32_t x409; uint32_t x410; uint32_t x411; uint32_t x412; uint32_t x413; uint32_t x414; uint32_t x415; uint32_t x416; uint32_t x417; uint32_t x418; uint32_t x419; uint32_t x420; uint32_t x421; uint32_t x422; uint32_t x423; uint32_t x424; uint32_t x425; fiat_p384_uint1 x426; uint32_t x427; fiat_p384_uint1 x428; uint32_t x429; fiat_p384_uint1 x430; uint32_t x431; fiat_p384_uint1 x432; uint32_t x433; fiat_p384_uint1 x434; uint32_t x435; fiat_p384_uint1 x436; uint32_t x437; fiat_p384_uint1 x438; uint32_t x439; fiat_p384_uint1 x440; uint32_t x441; fiat_p384_uint1 x442; uint32_t x443; fiat_p384_uint1 x444; uint32_t x445; fiat_p384_uint1 x446; uint32_t x447; fiat_p384_uint1 x448; uint32_t x449; fiat_p384_uint1 x450; uint32_t x451; fiat_p384_uint1 x452; uint32_t x453; fiat_p384_uint1 x454; uint32_t x455; fiat_p384_uint1 x456; uint32_t x457; fiat_p384_uint1 x458; uint32_t x459; fiat_p384_uint1 x460; uint32_t x461; fiat_p384_uint1 x462; uint32_t x463; fiat_p384_uint1 x464; uint32_t x465; fiat_p384_uint1 x466; uint32_t x467; uint32_t x468; uint32_t x469; uint32_t x470; uint32_t x471; uint32_t x472; uint32_t x473; uint32_t x474; uint32_t x475; fiat_p384_uint1 x476; uint32_t x477; fiat_p384_uint1 x478; uint32_t x479; fiat_p384_uint1 x480; uint32_t x481; fiat_p384_uint1 x482; uint32_t x483; fiat_p384_uint1 x484; uint32_t x485; fiat_p384_uint1 x486; uint32_t x487; fiat_p384_uint1 x488; uint32_t x489; fiat_p384_uint1 x490; uint32_t x491; fiat_p384_uint1 x492; uint32_t x493; fiat_p384_uint1 x494; uint32_t x495; fiat_p384_uint1 x496; uint32_t x497; fiat_p384_uint1 x498; uint32_t x499; fiat_p384_uint1 x500; uint32_t x501; uint32_t x502; uint32_t x503; uint32_t x504; uint32_t x505; uint32_t x506; uint32_t x507; uint32_t x508; uint32_t x509; uint32_t x510; uint32_t x511; uint32_t x512; uint32_t x513; uint32_t x514; uint32_t x515; uint32_t x516; uint32_t x517; uint32_t x518; uint32_t x519; uint32_t x520; uint32_t x521; fiat_p384_uint1 x522; uint32_t x523; fiat_p384_uint1 x524; uint32_t x525; fiat_p384_uint1 x526; uint32_t x527; fiat_p384_uint1 x528; uint32_t x529; fiat_p384_uint1 x530; uint32_t x531; fiat_p384_uint1 x532; uint32_t x533; fiat_p384_uint1 x534; uint32_t x535; fiat_p384_uint1 x536; uint32_t x537; fiat_p384_uint1 x538; uint32_t x539; fiat_p384_uint1 x540; uint32_t x541; fiat_p384_uint1 x542; uint32_t x543; fiat_p384_uint1 x544; uint32_t x545; fiat_p384_uint1 x546; uint32_t x547; fiat_p384_uint1 x548; uint32_t x549; fiat_p384_uint1 x550; uint32_t x551; fiat_p384_uint1 x552; uint32_t x553; fiat_p384_uint1 x554; uint32_t x555; fiat_p384_uint1 x556; uint32_t x557; fiat_p384_uint1 x558; uint32_t x559; fiat_p384_uint1 x560; uint32_t x561; fiat_p384_uint1 x562; uint32_t x563; uint32_t x564; uint32_t x565; uint32_t x566; uint32_t x567; uint32_t x568; uint32_t x569; uint32_t x570; uint32_t x571; fiat_p384_uint1 x572; uint32_t x573; fiat_p384_uint1 x574; uint32_t x575; fiat_p384_uint1 x576; uint32_t x577; fiat_p384_uint1 x578; uint32_t x579; fiat_p384_uint1 x580; uint32_t x581; fiat_p384_uint1 x582; uint32_t x583; fiat_p384_uint1 x584; uint32_t x585; fiat_p384_uint1 x586; uint32_t x587; fiat_p384_uint1 x588; uint32_t x589; fiat_p384_uint1 x590; uint32_t x591; fiat_p384_uint1 x592; uint32_t x593; fiat_p384_uint1 x594; uint32_t x595; fiat_p384_uint1 x596; uint32_t x597; uint32_t x598; uint32_t x599; uint32_t x600; uint32_t x601; uint32_t x602; uint32_t x603; uint32_t x604; uint32_t x605; uint32_t x606; uint32_t x607; uint32_t x608; uint32_t x609; uint32_t x610; uint32_t x611; uint32_t x612; uint32_t x613; uint32_t x614; uint32_t x615; uint32_t x616; uint32_t x617; fiat_p384_uint1 x618; uint32_t x619; fiat_p384_uint1 x620; uint32_t x621; fiat_p384_uint1 x622; uint32_t x623; fiat_p384_uint1 x624; uint32_t x625; fiat_p384_uint1 x626; uint32_t x627; fiat_p384_uint1 x628; uint32_t x629; fiat_p384_uint1 x630; uint32_t x631; fiat_p384_uint1 x632; uint32_t x633; fiat_p384_uint1 x634; uint32_t x635; fiat_p384_uint1 x636; uint32_t x637; fiat_p384_uint1 x638; uint32_t x639; fiat_p384_uint1 x640; uint32_t x641; fiat_p384_uint1 x642; uint32_t x643; fiat_p384_uint1 x644; uint32_t x645; fiat_p384_uint1 x646; uint32_t x647; fiat_p384_uint1 x648; uint32_t x649; fiat_p384_uint1 x650; uint32_t x651; fiat_p384_uint1 x652; uint32_t x653; fiat_p384_uint1 x654; uint32_t x655; fiat_p384_uint1 x656; uint32_t x657; fiat_p384_uint1 x658; uint32_t x659; uint32_t x660; uint32_t x661; uint32_t x662; uint32_t x663; uint32_t x664; uint32_t x665; uint32_t x666; uint32_t x667; fiat_p384_uint1 x668; uint32_t x669; fiat_p384_uint1 x670; uint32_t x671; fiat_p384_uint1 x672; uint32_t x673; fiat_p384_uint1 x674; uint32_t x675; fiat_p384_uint1 x676; uint32_t x677; fiat_p384_uint1 x678; uint32_t x679; fiat_p384_uint1 x680; uint32_t x681; fiat_p384_uint1 x682; uint32_t x683; fiat_p384_uint1 x684; uint32_t x685; fiat_p384_uint1 x686; uint32_t x687; fiat_p384_uint1 x688; uint32_t x689; fiat_p384_uint1 x690; uint32_t x691; fiat_p384_uint1 x692; uint32_t x693; uint32_t x694; uint32_t x695; uint32_t x696; uint32_t x697; uint32_t x698; uint32_t x699; uint32_t x700; uint32_t x701; uint32_t x702; uint32_t x703; uint32_t x704; uint32_t x705; uint32_t x706; uint32_t x707; uint32_t x708; uint32_t x709; uint32_t x710; uint32_t x711; uint32_t x712; uint32_t x713; fiat_p384_uint1 x714; uint32_t x715; fiat_p384_uint1 x716; uint32_t x717; fiat_p384_uint1 x718; uint32_t x719; fiat_p384_uint1 x720; uint32_t x721; fiat_p384_uint1 x722; uint32_t x723; fiat_p384_uint1 x724; uint32_t x725; fiat_p384_uint1 x726; uint32_t x727; fiat_p384_uint1 x728; uint32_t x729; fiat_p384_uint1 x730; uint32_t x731; fiat_p384_uint1 x732; uint32_t x733; fiat_p384_uint1 x734; uint32_t x735; fiat_p384_uint1 x736; uint32_t x737; fiat_p384_uint1 x738; uint32_t x739; fiat_p384_uint1 x740; uint32_t x741; fiat_p384_uint1 x742; uint32_t x743; fiat_p384_uint1 x744; uint32_t x745; fiat_p384_uint1 x746; uint32_t x747; fiat_p384_uint1 x748; uint32_t x749; fiat_p384_uint1 x750; uint32_t x751; fiat_p384_uint1 x752; uint32_t x753; fiat_p384_uint1 x754; uint32_t x755; uint32_t x756; uint32_t x757; uint32_t x758; uint32_t x759; uint32_t x760; uint32_t x761; uint32_t x762; uint32_t x763; fiat_p384_uint1 x764; uint32_t x765; fiat_p384_uint1 x766; uint32_t x767; fiat_p384_uint1 x768; uint32_t x769; fiat_p384_uint1 x770; uint32_t x771; fiat_p384_uint1 x772; uint32_t x773; fiat_p384_uint1 x774; uint32_t x775; fiat_p384_uint1 x776; uint32_t x777; fiat_p384_uint1 x778; uint32_t x779; fiat_p384_uint1 x780; uint32_t x781; fiat_p384_uint1 x782; uint32_t x783; fiat_p384_uint1 x784; uint32_t x785; fiat_p384_uint1 x786; uint32_t x787; fiat_p384_uint1 x788; uint32_t x789; uint32_t x790; uint32_t x791; uint32_t x792; uint32_t x793; uint32_t x794; uint32_t x795; uint32_t x796; uint32_t x797; uint32_t x798; uint32_t x799; uint32_t x800; uint32_t x801; uint32_t x802; uint32_t x803; uint32_t x804; uint32_t x805; uint32_t x806; uint32_t x807; uint32_t x808; uint32_t x809; fiat_p384_uint1 x810; uint32_t x811; fiat_p384_uint1 x812; uint32_t x813; fiat_p384_uint1 x814; uint32_t x815; fiat_p384_uint1 x816; uint32_t x817; fiat_p384_uint1 x818; uint32_t x819; fiat_p384_uint1 x820; uint32_t x821; fiat_p384_uint1 x822; uint32_t x823; fiat_p384_uint1 x824; uint32_t x825; fiat_p384_uint1 x826; uint32_t x827; fiat_p384_uint1 x828; uint32_t x829; fiat_p384_uint1 x830; uint32_t x831; fiat_p384_uint1 x832; uint32_t x833; fiat_p384_uint1 x834; uint32_t x835; fiat_p384_uint1 x836; uint32_t x837; fiat_p384_uint1 x838; uint32_t x839; fiat_p384_uint1 x840; uint32_t x841; fiat_p384_uint1 x842; uint32_t x843; fiat_p384_uint1 x844; uint32_t x845; fiat_p384_uint1 x846; uint32_t x847; fiat_p384_uint1 x848; uint32_t x849; fiat_p384_uint1 x850; uint32_t x851; uint32_t x852; uint32_t x853; uint32_t x854; uint32_t x855; uint32_t x856; uint32_t x857; uint32_t x858; uint32_t x859; fiat_p384_uint1 x860; uint32_t x861; fiat_p384_uint1 x862; uint32_t x863; fiat_p384_uint1 x864; uint32_t x865; fiat_p384_uint1 x866; uint32_t x867; fiat_p384_uint1 x868; uint32_t x869; fiat_p384_uint1 x870; uint32_t x871; fiat_p384_uint1 x872; uint32_t x873; fiat_p384_uint1 x874; uint32_t x875; fiat_p384_uint1 x876; uint32_t x877; fiat_p384_uint1 x878; uint32_t x879; fiat_p384_uint1 x880; uint32_t x881; fiat_p384_uint1 x882; uint32_t x883; fiat_p384_uint1 x884; uint32_t x885; uint32_t x886; uint32_t x887; uint32_t x888; uint32_t x889; uint32_t x890; uint32_t x891; uint32_t x892; uint32_t x893; uint32_t x894; uint32_t x895; uint32_t x896; uint32_t x897; uint32_t x898; uint32_t x899; uint32_t x900; uint32_t x901; uint32_t x902; uint32_t x903; uint32_t x904; uint32_t x905; fiat_p384_uint1 x906; uint32_t x907; fiat_p384_uint1 x908; uint32_t x909; fiat_p384_uint1 x910; uint32_t x911; fiat_p384_uint1 x912; uint32_t x913; fiat_p384_uint1 x914; uint32_t x915; fiat_p384_uint1 x916; uint32_t x917; fiat_p384_uint1 x918; uint32_t x919; fiat_p384_uint1 x920; uint32_t x921; fiat_p384_uint1 x922; uint32_t x923; fiat_p384_uint1 x924; uint32_t x925; fiat_p384_uint1 x926; uint32_t x927; fiat_p384_uint1 x928; uint32_t x929; fiat_p384_uint1 x930; uint32_t x931; fiat_p384_uint1 x932; uint32_t x933; fiat_p384_uint1 x934; uint32_t x935; fiat_p384_uint1 x936; uint32_t x937; fiat_p384_uint1 x938; uint32_t x939; fiat_p384_uint1 x940; uint32_t x941; fiat_p384_uint1 x942; uint32_t x943; fiat_p384_uint1 x944; uint32_t x945; fiat_p384_uint1 x946; uint32_t x947; uint32_t x948; uint32_t x949; uint32_t x950; uint32_t x951; uint32_t x952; uint32_t x953; uint32_t x954; uint32_t x955; fiat_p384_uint1 x956; uint32_t x957; fiat_p384_uint1 x958; uint32_t x959; fiat_p384_uint1 x960; uint32_t x961; fiat_p384_uint1 x962; uint32_t x963; fiat_p384_uint1 x964; uint32_t x965; fiat_p384_uint1 x966; uint32_t x967; fiat_p384_uint1 x968; uint32_t x969; fiat_p384_uint1 x970; uint32_t x971; fiat_p384_uint1 x972; uint32_t x973; fiat_p384_uint1 x974; uint32_t x975; fiat_p384_uint1 x976; uint32_t x977; fiat_p384_uint1 x978; uint32_t x979; fiat_p384_uint1 x980; uint32_t x981; uint32_t x982; uint32_t x983; uint32_t x984; uint32_t x985; uint32_t x986; uint32_t x987; uint32_t x988; uint32_t x989; uint32_t x990; uint32_t x991; uint32_t x992; uint32_t x993; uint32_t x994; uint32_t x995; uint32_t x996; uint32_t x997; uint32_t x998; uint32_t x999; uint32_t x1000; uint32_t x1001; fiat_p384_uint1 x1002; uint32_t x1003; fiat_p384_uint1 x1004; uint32_t x1005; fiat_p384_uint1 x1006; uint32_t x1007; fiat_p384_uint1 x1008; uint32_t x1009; fiat_p384_uint1 x1010; uint32_t x1011; fiat_p384_uint1 x1012; uint32_t x1013; fiat_p384_uint1 x1014; uint32_t x1015; fiat_p384_uint1 x1016; uint32_t x1017; fiat_p384_uint1 x1018; uint32_t x1019; fiat_p384_uint1 x1020; uint32_t x1021; fiat_p384_uint1 x1022; uint32_t x1023; fiat_p384_uint1 x1024; uint32_t x1025; fiat_p384_uint1 x1026; uint32_t x1027; fiat_p384_uint1 x1028; uint32_t x1029; fiat_p384_uint1 x1030; uint32_t x1031; fiat_p384_uint1 x1032; uint32_t x1033; fiat_p384_uint1 x1034; uint32_t x1035; fiat_p384_uint1 x1036; uint32_t x1037; fiat_p384_uint1 x1038; uint32_t x1039; fiat_p384_uint1 x1040; uint32_t x1041; fiat_p384_uint1 x1042; uint32_t x1043; uint32_t x1044; uint32_t x1045; uint32_t x1046; uint32_t x1047; uint32_t x1048; uint32_t x1049; uint32_t x1050; uint32_t x1051; fiat_p384_uint1 x1052; uint32_t x1053; fiat_p384_uint1 x1054; uint32_t x1055; fiat_p384_uint1 x1056; uint32_t x1057; fiat_p384_uint1 x1058; uint32_t x1059; fiat_p384_uint1 x1060; uint32_t x1061; fiat_p384_uint1 x1062; uint32_t x1063; fiat_p384_uint1 x1064; uint32_t x1065; fiat_p384_uint1 x1066; uint32_t x1067; fiat_p384_uint1 x1068; uint32_t x1069; fiat_p384_uint1 x1070; uint32_t x1071; fiat_p384_uint1 x1072; uint32_t x1073; fiat_p384_uint1 x1074; uint32_t x1075; fiat_p384_uint1 x1076; uint32_t x1077; uint32_t x1078; uint32_t x1079; uint32_t x1080; uint32_t x1081; uint32_t x1082; uint32_t x1083; uint32_t x1084; uint32_t x1085; uint32_t x1086; uint32_t x1087; uint32_t x1088; uint32_t x1089; uint32_t x1090; uint32_t x1091; uint32_t x1092; uint32_t x1093; uint32_t x1094; uint32_t x1095; uint32_t x1096; uint32_t x1097; fiat_p384_uint1 x1098; uint32_t x1099; fiat_p384_uint1 x1100; uint32_t x1101; fiat_p384_uint1 x1102; uint32_t x1103; fiat_p384_uint1 x1104; uint32_t x1105; fiat_p384_uint1 x1106; uint32_t x1107; fiat_p384_uint1 x1108; uint32_t x1109; fiat_p384_uint1 x1110; uint32_t x1111; fiat_p384_uint1 x1112; uint32_t x1113; fiat_p384_uint1 x1114; uint32_t x1115; fiat_p384_uint1 x1116; uint32_t x1117; fiat_p384_uint1 x1118; uint32_t x1119; fiat_p384_uint1 x1120; uint32_t x1121; fiat_p384_uint1 x1122; uint32_t x1123; fiat_p384_uint1 x1124; uint32_t x1125; fiat_p384_uint1 x1126; uint32_t x1127; fiat_p384_uint1 x1128; uint32_t x1129; fiat_p384_uint1 x1130; uint32_t x1131; fiat_p384_uint1 x1132; uint32_t x1133; fiat_p384_uint1 x1134; uint32_t x1135; fiat_p384_uint1 x1136; uint32_t x1137; fiat_p384_uint1 x1138; uint32_t x1139; fiat_p384_uint1 x1140; uint32_t x1141; fiat_p384_uint1 x1142; uint32_t x1143; fiat_p384_uint1 x1144; uint32_t x1145; fiat_p384_uint1 x1146; uint32_t x1147; fiat_p384_uint1 x1148; uint32_t x1149; fiat_p384_uint1 x1150; uint32_t x1151; fiat_p384_uint1 x1152; uint32_t x1153; fiat_p384_uint1 x1154; uint32_t x1155; fiat_p384_uint1 x1156; uint32_t x1157; fiat_p384_uint1 x1158; uint32_t x1159; fiat_p384_uint1 x1160; uint32_t x1161; fiat_p384_uint1 x1162; uint32_t x1163; fiat_p384_uint1 x1164; uint32_t x1165; uint32_t x1166; uint32_t x1167; uint32_t x1168; uint32_t x1169; uint32_t x1170; uint32_t x1171; uint32_t x1172; uint32_t x1173; uint32_t x1174; uint32_t x1175; uint32_t x1176; x1 = (arg1[1]); x2 = (arg1[2]); x3 = (arg1[3]); x4 = (arg1[4]); x5 = (arg1[5]); x6 = (arg1[6]); x7 = (arg1[7]); x8 = (arg1[8]); x9 = (arg1[9]); x10 = (arg1[10]); x11 = (arg1[11]); x12 = (arg1[0]); fiat_p384_mulx_u32(&x13, &x14, x12, 0x2); fiat_p384_mulx_u32(&x15, &x16, x12, UINT32_C(0xfffffffe)); fiat_p384_mulx_u32(&x17, &x18, x12, 0x2); fiat_p384_mulx_u32(&x19, &x20, x12, UINT32_C(0xfffffffe)); fiat_p384_addcarryx_u32(&x21, &x22, 0x0, (fiat_p384_uint1)x14, x12); fiat_p384_mulx_u32(&x23, &x24, x12, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x25, &x26, x12, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x27, &x28, x12, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x29, &x30, x12, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x31, &x32, x12, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x33, &x34, x12, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x35, &x36, x12, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x37, &x38, x12, UINT32_C(0xfffffffe)); fiat_p384_mulx_u32(&x39, &x40, x12, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x41, &x42, x12, UINT32_C(0xffffffff)); fiat_p384_addcarryx_u32(&x43, &x44, 0x0, x40, x37); fiat_p384_addcarryx_u32(&x45, &x46, x44, x38, x35); fiat_p384_addcarryx_u32(&x47, &x48, x46, x36, x33); fiat_p384_addcarryx_u32(&x49, &x50, x48, x34, x31); fiat_p384_addcarryx_u32(&x51, &x52, x50, x32, x29); fiat_p384_addcarryx_u32(&x53, &x54, x52, x30, x27); fiat_p384_addcarryx_u32(&x55, &x56, x54, x28, x25); fiat_p384_addcarryx_u32(&x57, &x58, x56, x26, x23); fiat_p384_addcarryx_u32(&x59, &x60, 0x0, x12, x41); fiat_p384_addcarryx_u32(&x61, &x62, x60, x19, x42); fiat_p384_addcarryx_u32(&x63, &x64, 0x0, x17, x39); fiat_p384_addcarryx_u32(&x65, &x66, x64, (fiat_p384_uint1)x18, x43); fiat_p384_addcarryx_u32(&x67, &x68, x66, x15, x45); fiat_p384_addcarryx_u32(&x69, &x70, x68, x16, x47); fiat_p384_addcarryx_u32(&x71, &x72, x70, x13, x49); fiat_p384_addcarryx_u32(&x73, &x74, x72, x21, x51); fiat_p384_addcarryx_u32(&x75, &x76, x74, x22, x53); fiat_p384_addcarryx_u32(&x77, &x78, x76, 0x0, x55); fiat_p384_addcarryx_u32(&x79, &x80, x78, 0x0, x57); fiat_p384_addcarryx_u32(&x81, &x82, x80, 0x0, (x58 + x24)); fiat_p384_mulx_u32(&x83, &x84, x1, 0x2); fiat_p384_mulx_u32(&x85, &x86, x1, UINT32_C(0xfffffffe)); fiat_p384_mulx_u32(&x87, &x88, x1, 0x2); fiat_p384_mulx_u32(&x89, &x90, x1, UINT32_C(0xfffffffe)); fiat_p384_addcarryx_u32(&x91, &x92, 0x0, (fiat_p384_uint1)x84, x1); fiat_p384_addcarryx_u32(&x93, &x94, 0x0, x61, x1); fiat_p384_addcarryx_u32(&x95, &x96, x94, (x62 + x20), x89); fiat_p384_addcarryx_u32(&x97, &x98, x96, x63, x90); fiat_p384_addcarryx_u32(&x99, &x100, x98, x65, x87); fiat_p384_addcarryx_u32(&x101, &x102, x100, x67, (fiat_p384_uint1)x88); fiat_p384_addcarryx_u32(&x103, &x104, x102, x69, x85); fiat_p384_addcarryx_u32(&x105, &x106, x104, x71, x86); fiat_p384_addcarryx_u32(&x107, &x108, x106, x73, x83); fiat_p384_addcarryx_u32(&x109, &x110, x108, x75, x91); fiat_p384_addcarryx_u32(&x111, &x112, x110, x77, x92); fiat_p384_addcarryx_u32(&x113, &x114, x112, x79, 0x0); fiat_p384_addcarryx_u32(&x115, &x116, x114, x81, 0x0); fiat_p384_mulx_u32(&x117, &x118, x93, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x119, &x120, x93, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x121, &x122, x93, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x123, &x124, x93, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x125, &x126, x93, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x127, &x128, x93, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x129, &x130, x93, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x131, &x132, x93, UINT32_C(0xfffffffe)); fiat_p384_mulx_u32(&x133, &x134, x93, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x135, &x136, x93, UINT32_C(0xffffffff)); fiat_p384_addcarryx_u32(&x137, &x138, 0x0, x134, x131); fiat_p384_addcarryx_u32(&x139, &x140, x138, x132, x129); fiat_p384_addcarryx_u32(&x141, &x142, x140, x130, x127); fiat_p384_addcarryx_u32(&x143, &x144, x142, x128, x125); fiat_p384_addcarryx_u32(&x145, &x146, x144, x126, x123); fiat_p384_addcarryx_u32(&x147, &x148, x146, x124, x121); fiat_p384_addcarryx_u32(&x149, &x150, x148, x122, x119); fiat_p384_addcarryx_u32(&x151, &x152, x150, x120, x117); fiat_p384_addcarryx_u32(&x153, &x154, 0x0, x93, x135); fiat_p384_addcarryx_u32(&x155, &x156, x154, x95, x136); fiat_p384_addcarryx_u32(&x157, &x158, x156, x97, 0x0); fiat_p384_addcarryx_u32(&x159, &x160, x158, x99, x133); fiat_p384_addcarryx_u32(&x161, &x162, x160, x101, x137); fiat_p384_addcarryx_u32(&x163, &x164, x162, x103, x139); fiat_p384_addcarryx_u32(&x165, &x166, x164, x105, x141); fiat_p384_addcarryx_u32(&x167, &x168, x166, x107, x143); fiat_p384_addcarryx_u32(&x169, &x170, x168, x109, x145); fiat_p384_addcarryx_u32(&x171, &x172, x170, x111, x147); fiat_p384_addcarryx_u32(&x173, &x174, x172, x113, x149); fiat_p384_addcarryx_u32(&x175, &x176, x174, x115, x151); fiat_p384_addcarryx_u32(&x177, &x178, x176, ((uint32_t)x116 + x82), (x152 + x118)); fiat_p384_mulx_u32(&x179, &x180, x2, 0x2); fiat_p384_mulx_u32(&x181, &x182, x2, UINT32_C(0xfffffffe)); fiat_p384_mulx_u32(&x183, &x184, x2, 0x2); fiat_p384_mulx_u32(&x185, &x186, x2, UINT32_C(0xfffffffe)); fiat_p384_addcarryx_u32(&x187, &x188, 0x0, (fiat_p384_uint1)x180, x2); fiat_p384_addcarryx_u32(&x189, &x190, 0x0, x155, x2); fiat_p384_addcarryx_u32(&x191, &x192, x190, x157, x185); fiat_p384_addcarryx_u32(&x193, &x194, x192, x159, x186); fiat_p384_addcarryx_u32(&x195, &x196, x194, x161, x183); fiat_p384_addcarryx_u32(&x197, &x198, x196, x163, (fiat_p384_uint1)x184); fiat_p384_addcarryx_u32(&x199, &x200, x198, x165, x181); fiat_p384_addcarryx_u32(&x201, &x202, x200, x167, x182); fiat_p384_addcarryx_u32(&x203, &x204, x202, x169, x179); fiat_p384_addcarryx_u32(&x205, &x206, x204, x171, x187); fiat_p384_addcarryx_u32(&x207, &x208, x206, x173, x188); fiat_p384_addcarryx_u32(&x209, &x210, x208, x175, 0x0); fiat_p384_addcarryx_u32(&x211, &x212, x210, x177, 0x0); fiat_p384_mulx_u32(&x213, &x214, x189, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x215, &x216, x189, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x217, &x218, x189, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x219, &x220, x189, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x221, &x222, x189, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x223, &x224, x189, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x225, &x226, x189, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x227, &x228, x189, UINT32_C(0xfffffffe)); fiat_p384_mulx_u32(&x229, &x230, x189, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x231, &x232, x189, UINT32_C(0xffffffff)); fiat_p384_addcarryx_u32(&x233, &x234, 0x0, x230, x227); fiat_p384_addcarryx_u32(&x235, &x236, x234, x228, x225); fiat_p384_addcarryx_u32(&x237, &x238, x236, x226, x223); fiat_p384_addcarryx_u32(&x239, &x240, x238, x224, x221); fiat_p384_addcarryx_u32(&x241, &x242, x240, x222, x219); fiat_p384_addcarryx_u32(&x243, &x244, x242, x220, x217); fiat_p384_addcarryx_u32(&x245, &x246, x244, x218, x215); fiat_p384_addcarryx_u32(&x247, &x248, x246, x216, x213); fiat_p384_addcarryx_u32(&x249, &x250, 0x0, x189, x231); fiat_p384_addcarryx_u32(&x251, &x252, x250, x191, x232); fiat_p384_addcarryx_u32(&x253, &x254, x252, x193, 0x0); fiat_p384_addcarryx_u32(&x255, &x256, x254, x195, x229); fiat_p384_addcarryx_u32(&x257, &x258, x256, x197, x233); fiat_p384_addcarryx_u32(&x259, &x260, x258, x199, x235); fiat_p384_addcarryx_u32(&x261, &x262, x260, x201, x237); fiat_p384_addcarryx_u32(&x263, &x264, x262, x203, x239); fiat_p384_addcarryx_u32(&x265, &x266, x264, x205, x241); fiat_p384_addcarryx_u32(&x267, &x268, x266, x207, x243); fiat_p384_addcarryx_u32(&x269, &x270, x268, x209, x245); fiat_p384_addcarryx_u32(&x271, &x272, x270, x211, x247); fiat_p384_addcarryx_u32(&x273, &x274, x272, ((uint32_t)x212 + x178), (x248 + x214)); fiat_p384_mulx_u32(&x275, &x276, x3, 0x2); fiat_p384_mulx_u32(&x277, &x278, x3, UINT32_C(0xfffffffe)); fiat_p384_mulx_u32(&x279, &x280, x3, 0x2); fiat_p384_mulx_u32(&x281, &x282, x3, UINT32_C(0xfffffffe)); fiat_p384_addcarryx_u32(&x283, &x284, 0x0, (fiat_p384_uint1)x276, x3); fiat_p384_addcarryx_u32(&x285, &x286, 0x0, x251, x3); fiat_p384_addcarryx_u32(&x287, &x288, x286, x253, x281); fiat_p384_addcarryx_u32(&x289, &x290, x288, x255, x282); fiat_p384_addcarryx_u32(&x291, &x292, x290, x257, x279); fiat_p384_addcarryx_u32(&x293, &x294, x292, x259, (fiat_p384_uint1)x280); fiat_p384_addcarryx_u32(&x295, &x296, x294, x261, x277); fiat_p384_addcarryx_u32(&x297, &x298, x296, x263, x278); fiat_p384_addcarryx_u32(&x299, &x300, x298, x265, x275); fiat_p384_addcarryx_u32(&x301, &x302, x300, x267, x283); fiat_p384_addcarryx_u32(&x303, &x304, x302, x269, x284); fiat_p384_addcarryx_u32(&x305, &x306, x304, x271, 0x0); fiat_p384_addcarryx_u32(&x307, &x308, x306, x273, 0x0); fiat_p384_mulx_u32(&x309, &x310, x285, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x311, &x312, x285, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x313, &x314, x285, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x315, &x316, x285, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x317, &x318, x285, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x319, &x320, x285, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x321, &x322, x285, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x323, &x324, x285, UINT32_C(0xfffffffe)); fiat_p384_mulx_u32(&x325, &x326, x285, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x327, &x328, x285, UINT32_C(0xffffffff)); fiat_p384_addcarryx_u32(&x329, &x330, 0x0, x326, x323); fiat_p384_addcarryx_u32(&x331, &x332, x330, x324, x321); fiat_p384_addcarryx_u32(&x333, &x334, x332, x322, x319); fiat_p384_addcarryx_u32(&x335, &x336, x334, x320, x317); fiat_p384_addcarryx_u32(&x337, &x338, x336, x318, x315); fiat_p384_addcarryx_u32(&x339, &x340, x338, x316, x313); fiat_p384_addcarryx_u32(&x341, &x342, x340, x314, x311); fiat_p384_addcarryx_u32(&x343, &x344, x342, x312, x309); fiat_p384_addcarryx_u32(&x345, &x346, 0x0, x285, x327); fiat_p384_addcarryx_u32(&x347, &x348, x346, x287, x328); fiat_p384_addcarryx_u32(&x349, &x350, x348, x289, 0x0); fiat_p384_addcarryx_u32(&x351, &x352, x350, x291, x325); fiat_p384_addcarryx_u32(&x353, &x354, x352, x293, x329); fiat_p384_addcarryx_u32(&x355, &x356, x354, x295, x331); fiat_p384_addcarryx_u32(&x357, &x358, x356, x297, x333); fiat_p384_addcarryx_u32(&x359, &x360, x358, x299, x335); fiat_p384_addcarryx_u32(&x361, &x362, x360, x301, x337); fiat_p384_addcarryx_u32(&x363, &x364, x362, x303, x339); fiat_p384_addcarryx_u32(&x365, &x366, x364, x305, x341); fiat_p384_addcarryx_u32(&x367, &x368, x366, x307, x343); fiat_p384_addcarryx_u32(&x369, &x370, x368, ((uint32_t)x308 + x274), (x344 + x310)); fiat_p384_mulx_u32(&x371, &x372, x4, 0x2); fiat_p384_mulx_u32(&x373, &x374, x4, UINT32_C(0xfffffffe)); fiat_p384_mulx_u32(&x375, &x376, x4, 0x2); fiat_p384_mulx_u32(&x377, &x378, x4, UINT32_C(0xfffffffe)); fiat_p384_addcarryx_u32(&x379, &x380, 0x0, (fiat_p384_uint1)x372, x4); fiat_p384_addcarryx_u32(&x381, &x382, 0x0, x347, x4); fiat_p384_addcarryx_u32(&x383, &x384, x382, x349, x377); fiat_p384_addcarryx_u32(&x385, &x386, x384, x351, x378); fiat_p384_addcarryx_u32(&x387, &x388, x386, x353, x375); fiat_p384_addcarryx_u32(&x389, &x390, x388, x355, (fiat_p384_uint1)x376); fiat_p384_addcarryx_u32(&x391, &x392, x390, x357, x373); fiat_p384_addcarryx_u32(&x393, &x394, x392, x359, x374); fiat_p384_addcarryx_u32(&x395, &x396, x394, x361, x371); fiat_p384_addcarryx_u32(&x397, &x398, x396, x363, x379); fiat_p384_addcarryx_u32(&x399, &x400, x398, x365, x380); fiat_p384_addcarryx_u32(&x401, &x402, x400, x367, 0x0); fiat_p384_addcarryx_u32(&x403, &x404, x402, x369, 0x0); fiat_p384_mulx_u32(&x405, &x406, x381, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x407, &x408, x381, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x409, &x410, x381, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x411, &x412, x381, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x413, &x414, x381, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x415, &x416, x381, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x417, &x418, x381, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x419, &x420, x381, UINT32_C(0xfffffffe)); fiat_p384_mulx_u32(&x421, &x422, x381, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x423, &x424, x381, UINT32_C(0xffffffff)); fiat_p384_addcarryx_u32(&x425, &x426, 0x0, x422, x419); fiat_p384_addcarryx_u32(&x427, &x428, x426, x420, x417); fiat_p384_addcarryx_u32(&x429, &x430, x428, x418, x415); fiat_p384_addcarryx_u32(&x431, &x432, x430, x416, x413); fiat_p384_addcarryx_u32(&x433, &x434, x432, x414, x411); fiat_p384_addcarryx_u32(&x435, &x436, x434, x412, x409); fiat_p384_addcarryx_u32(&x437, &x438, x436, x410, x407); fiat_p384_addcarryx_u32(&x439, &x440, x438, x408, x405); fiat_p384_addcarryx_u32(&x441, &x442, 0x0, x381, x423); fiat_p384_addcarryx_u32(&x443, &x444, x442, x383, x424); fiat_p384_addcarryx_u32(&x445, &x446, x444, x385, 0x0); fiat_p384_addcarryx_u32(&x447, &x448, x446, x387, x421); fiat_p384_addcarryx_u32(&x449, &x450, x448, x389, x425); fiat_p384_addcarryx_u32(&x451, &x452, x450, x391, x427); fiat_p384_addcarryx_u32(&x453, &x454, x452, x393, x429); fiat_p384_addcarryx_u32(&x455, &x456, x454, x395, x431); fiat_p384_addcarryx_u32(&x457, &x458, x456, x397, x433); fiat_p384_addcarryx_u32(&x459, &x460, x458, x399, x435); fiat_p384_addcarryx_u32(&x461, &x462, x460, x401, x437); fiat_p384_addcarryx_u32(&x463, &x464, x462, x403, x439); fiat_p384_addcarryx_u32(&x465, &x466, x464, ((uint32_t)x404 + x370), (x440 + x406)); fiat_p384_mulx_u32(&x467, &x468, x5, 0x2); fiat_p384_mulx_u32(&x469, &x470, x5, UINT32_C(0xfffffffe)); fiat_p384_mulx_u32(&x471, &x472, x5, 0x2); fiat_p384_mulx_u32(&x473, &x474, x5, UINT32_C(0xfffffffe)); fiat_p384_addcarryx_u32(&x475, &x476, 0x0, (fiat_p384_uint1)x468, x5); fiat_p384_addcarryx_u32(&x477, &x478, 0x0, x443, x5); fiat_p384_addcarryx_u32(&x479, &x480, x478, x445, x473); fiat_p384_addcarryx_u32(&x481, &x482, x480, x447, x474); fiat_p384_addcarryx_u32(&x483, &x484, x482, x449, x471); fiat_p384_addcarryx_u32(&x485, &x486, x484, x451, (fiat_p384_uint1)x472); fiat_p384_addcarryx_u32(&x487, &x488, x486, x453, x469); fiat_p384_addcarryx_u32(&x489, &x490, x488, x455, x470); fiat_p384_addcarryx_u32(&x491, &x492, x490, x457, x467); fiat_p384_addcarryx_u32(&x493, &x494, x492, x459, x475); fiat_p384_addcarryx_u32(&x495, &x496, x494, x461, x476); fiat_p384_addcarryx_u32(&x497, &x498, x496, x463, 0x0); fiat_p384_addcarryx_u32(&x499, &x500, x498, x465, 0x0); fiat_p384_mulx_u32(&x501, &x502, x477, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x503, &x504, x477, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x505, &x506, x477, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x507, &x508, x477, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x509, &x510, x477, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x511, &x512, x477, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x513, &x514, x477, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x515, &x516, x477, UINT32_C(0xfffffffe)); fiat_p384_mulx_u32(&x517, &x518, x477, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x519, &x520, x477, UINT32_C(0xffffffff)); fiat_p384_addcarryx_u32(&x521, &x522, 0x0, x518, x515); fiat_p384_addcarryx_u32(&x523, &x524, x522, x516, x513); fiat_p384_addcarryx_u32(&x525, &x526, x524, x514, x511); fiat_p384_addcarryx_u32(&x527, &x528, x526, x512, x509); fiat_p384_addcarryx_u32(&x529, &x530, x528, x510, x507); fiat_p384_addcarryx_u32(&x531, &x532, x530, x508, x505); fiat_p384_addcarryx_u32(&x533, &x534, x532, x506, x503); fiat_p384_addcarryx_u32(&x535, &x536, x534, x504, x501); fiat_p384_addcarryx_u32(&x537, &x538, 0x0, x477, x519); fiat_p384_addcarryx_u32(&x539, &x540, x538, x479, x520); fiat_p384_addcarryx_u32(&x541, &x542, x540, x481, 0x0); fiat_p384_addcarryx_u32(&x543, &x544, x542, x483, x517); fiat_p384_addcarryx_u32(&x545, &x546, x544, x485, x521); fiat_p384_addcarryx_u32(&x547, &x548, x546, x487, x523); fiat_p384_addcarryx_u32(&x549, &x550, x548, x489, x525); fiat_p384_addcarryx_u32(&x551, &x552, x550, x491, x527); fiat_p384_addcarryx_u32(&x553, &x554, x552, x493, x529); fiat_p384_addcarryx_u32(&x555, &x556, x554, x495, x531); fiat_p384_addcarryx_u32(&x557, &x558, x556, x497, x533); fiat_p384_addcarryx_u32(&x559, &x560, x558, x499, x535); fiat_p384_addcarryx_u32(&x561, &x562, x560, ((uint32_t)x500 + x466), (x536 + x502)); fiat_p384_mulx_u32(&x563, &x564, x6, 0x2); fiat_p384_mulx_u32(&x565, &x566, x6, UINT32_C(0xfffffffe)); fiat_p384_mulx_u32(&x567, &x568, x6, 0x2); fiat_p384_mulx_u32(&x569, &x570, x6, UINT32_C(0xfffffffe)); fiat_p384_addcarryx_u32(&x571, &x572, 0x0, (fiat_p384_uint1)x564, x6); fiat_p384_addcarryx_u32(&x573, &x574, 0x0, x539, x6); fiat_p384_addcarryx_u32(&x575, &x576, x574, x541, x569); fiat_p384_addcarryx_u32(&x577, &x578, x576, x543, x570); fiat_p384_addcarryx_u32(&x579, &x580, x578, x545, x567); fiat_p384_addcarryx_u32(&x581, &x582, x580, x547, (fiat_p384_uint1)x568); fiat_p384_addcarryx_u32(&x583, &x584, x582, x549, x565); fiat_p384_addcarryx_u32(&x585, &x586, x584, x551, x566); fiat_p384_addcarryx_u32(&x587, &x588, x586, x553, x563); fiat_p384_addcarryx_u32(&x589, &x590, x588, x555, x571); fiat_p384_addcarryx_u32(&x591, &x592, x590, x557, x572); fiat_p384_addcarryx_u32(&x593, &x594, x592, x559, 0x0); fiat_p384_addcarryx_u32(&x595, &x596, x594, x561, 0x0); fiat_p384_mulx_u32(&x597, &x598, x573, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x599, &x600, x573, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x601, &x602, x573, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x603, &x604, x573, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x605, &x606, x573, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x607, &x608, x573, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x609, &x610, x573, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x611, &x612, x573, UINT32_C(0xfffffffe)); fiat_p384_mulx_u32(&x613, &x614, x573, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x615, &x616, x573, UINT32_C(0xffffffff)); fiat_p384_addcarryx_u32(&x617, &x618, 0x0, x614, x611); fiat_p384_addcarryx_u32(&x619, &x620, x618, x612, x609); fiat_p384_addcarryx_u32(&x621, &x622, x620, x610, x607); fiat_p384_addcarryx_u32(&x623, &x624, x622, x608, x605); fiat_p384_addcarryx_u32(&x625, &x626, x624, x606, x603); fiat_p384_addcarryx_u32(&x627, &x628, x626, x604, x601); fiat_p384_addcarryx_u32(&x629, &x630, x628, x602, x599); fiat_p384_addcarryx_u32(&x631, &x632, x630, x600, x597); fiat_p384_addcarryx_u32(&x633, &x634, 0x0, x573, x615); fiat_p384_addcarryx_u32(&x635, &x636, x634, x575, x616); fiat_p384_addcarryx_u32(&x637, &x638, x636, x577, 0x0); fiat_p384_addcarryx_u32(&x639, &x640, x638, x579, x613); fiat_p384_addcarryx_u32(&x641, &x642, x640, x581, x617); fiat_p384_addcarryx_u32(&x643, &x644, x642, x583, x619); fiat_p384_addcarryx_u32(&x645, &x646, x644, x585, x621); fiat_p384_addcarryx_u32(&x647, &x648, x646, x587, x623); fiat_p384_addcarryx_u32(&x649, &x650, x648, x589, x625); fiat_p384_addcarryx_u32(&x651, &x652, x650, x591, x627); fiat_p384_addcarryx_u32(&x653, &x654, x652, x593, x629); fiat_p384_addcarryx_u32(&x655, &x656, x654, x595, x631); fiat_p384_addcarryx_u32(&x657, &x658, x656, ((uint32_t)x596 + x562), (x632 + x598)); fiat_p384_mulx_u32(&x659, &x660, x7, 0x2); fiat_p384_mulx_u32(&x661, &x662, x7, UINT32_C(0xfffffffe)); fiat_p384_mulx_u32(&x663, &x664, x7, 0x2); fiat_p384_mulx_u32(&x665, &x666, x7, UINT32_C(0xfffffffe)); fiat_p384_addcarryx_u32(&x667, &x668, 0x0, (fiat_p384_uint1)x660, x7); fiat_p384_addcarryx_u32(&x669, &x670, 0x0, x635, x7); fiat_p384_addcarryx_u32(&x671, &x672, x670, x637, x665); fiat_p384_addcarryx_u32(&x673, &x674, x672, x639, x666); fiat_p384_addcarryx_u32(&x675, &x676, x674, x641, x663); fiat_p384_addcarryx_u32(&x677, &x678, x676, x643, (fiat_p384_uint1)x664); fiat_p384_addcarryx_u32(&x679, &x680, x678, x645, x661); fiat_p384_addcarryx_u32(&x681, &x682, x680, x647, x662); fiat_p384_addcarryx_u32(&x683, &x684, x682, x649, x659); fiat_p384_addcarryx_u32(&x685, &x686, x684, x651, x667); fiat_p384_addcarryx_u32(&x687, &x688, x686, x653, x668); fiat_p384_addcarryx_u32(&x689, &x690, x688, x655, 0x0); fiat_p384_addcarryx_u32(&x691, &x692, x690, x657, 0x0); fiat_p384_mulx_u32(&x693, &x694, x669, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x695, &x696, x669, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x697, &x698, x669, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x699, &x700, x669, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x701, &x702, x669, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x703, &x704, x669, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x705, &x706, x669, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x707, &x708, x669, UINT32_C(0xfffffffe)); fiat_p384_mulx_u32(&x709, &x710, x669, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x711, &x712, x669, UINT32_C(0xffffffff)); fiat_p384_addcarryx_u32(&x713, &x714, 0x0, x710, x707); fiat_p384_addcarryx_u32(&x715, &x716, x714, x708, x705); fiat_p384_addcarryx_u32(&x717, &x718, x716, x706, x703); fiat_p384_addcarryx_u32(&x719, &x720, x718, x704, x701); fiat_p384_addcarryx_u32(&x721, &x722, x720, x702, x699); fiat_p384_addcarryx_u32(&x723, &x724, x722, x700, x697); fiat_p384_addcarryx_u32(&x725, &x726, x724, x698, x695); fiat_p384_addcarryx_u32(&x727, &x728, x726, x696, x693); fiat_p384_addcarryx_u32(&x729, &x730, 0x0, x669, x711); fiat_p384_addcarryx_u32(&x731, &x732, x730, x671, x712); fiat_p384_addcarryx_u32(&x733, &x734, x732, x673, 0x0); fiat_p384_addcarryx_u32(&x735, &x736, x734, x675, x709); fiat_p384_addcarryx_u32(&x737, &x738, x736, x677, x713); fiat_p384_addcarryx_u32(&x739, &x740, x738, x679, x715); fiat_p384_addcarryx_u32(&x741, &x742, x740, x681, x717); fiat_p384_addcarryx_u32(&x743, &x744, x742, x683, x719); fiat_p384_addcarryx_u32(&x745, &x746, x744, x685, x721); fiat_p384_addcarryx_u32(&x747, &x748, x746, x687, x723); fiat_p384_addcarryx_u32(&x749, &x750, x748, x689, x725); fiat_p384_addcarryx_u32(&x751, &x752, x750, x691, x727); fiat_p384_addcarryx_u32(&x753, &x754, x752, ((uint32_t)x692 + x658), (x728 + x694)); fiat_p384_mulx_u32(&x755, &x756, x8, 0x2); fiat_p384_mulx_u32(&x757, &x758, x8, UINT32_C(0xfffffffe)); fiat_p384_mulx_u32(&x759, &x760, x8, 0x2); fiat_p384_mulx_u32(&x761, &x762, x8, UINT32_C(0xfffffffe)); fiat_p384_addcarryx_u32(&x763, &x764, 0x0, (fiat_p384_uint1)x756, x8); fiat_p384_addcarryx_u32(&x765, &x766, 0x0, x731, x8); fiat_p384_addcarryx_u32(&x767, &x768, x766, x733, x761); fiat_p384_addcarryx_u32(&x769, &x770, x768, x735, x762); fiat_p384_addcarryx_u32(&x771, &x772, x770, x737, x759); fiat_p384_addcarryx_u32(&x773, &x774, x772, x739, (fiat_p384_uint1)x760); fiat_p384_addcarryx_u32(&x775, &x776, x774, x741, x757); fiat_p384_addcarryx_u32(&x777, &x778, x776, x743, x758); fiat_p384_addcarryx_u32(&x779, &x780, x778, x745, x755); fiat_p384_addcarryx_u32(&x781, &x782, x780, x747, x763); fiat_p384_addcarryx_u32(&x783, &x784, x782, x749, x764); fiat_p384_addcarryx_u32(&x785, &x786, x784, x751, 0x0); fiat_p384_addcarryx_u32(&x787, &x788, x786, x753, 0x0); fiat_p384_mulx_u32(&x789, &x790, x765, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x791, &x792, x765, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x793, &x794, x765, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x795, &x796, x765, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x797, &x798, x765, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x799, &x800, x765, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x801, &x802, x765, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x803, &x804, x765, UINT32_C(0xfffffffe)); fiat_p384_mulx_u32(&x805, &x806, x765, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x807, &x808, x765, UINT32_C(0xffffffff)); fiat_p384_addcarryx_u32(&x809, &x810, 0x0, x806, x803); fiat_p384_addcarryx_u32(&x811, &x812, x810, x804, x801); fiat_p384_addcarryx_u32(&x813, &x814, x812, x802, x799); fiat_p384_addcarryx_u32(&x815, &x816, x814, x800, x797); fiat_p384_addcarryx_u32(&x817, &x818, x816, x798, x795); fiat_p384_addcarryx_u32(&x819, &x820, x818, x796, x793); fiat_p384_addcarryx_u32(&x821, &x822, x820, x794, x791); fiat_p384_addcarryx_u32(&x823, &x824, x822, x792, x789); fiat_p384_addcarryx_u32(&x825, &x826, 0x0, x765, x807); fiat_p384_addcarryx_u32(&x827, &x828, x826, x767, x808); fiat_p384_addcarryx_u32(&x829, &x830, x828, x769, 0x0); fiat_p384_addcarryx_u32(&x831, &x832, x830, x771, x805); fiat_p384_addcarryx_u32(&x833, &x834, x832, x773, x809); fiat_p384_addcarryx_u32(&x835, &x836, x834, x775, x811); fiat_p384_addcarryx_u32(&x837, &x838, x836, x777, x813); fiat_p384_addcarryx_u32(&x839, &x840, x838, x779, x815); fiat_p384_addcarryx_u32(&x841, &x842, x840, x781, x817); fiat_p384_addcarryx_u32(&x843, &x844, x842, x783, x819); fiat_p384_addcarryx_u32(&x845, &x846, x844, x785, x821); fiat_p384_addcarryx_u32(&x847, &x848, x846, x787, x823); fiat_p384_addcarryx_u32(&x849, &x850, x848, ((uint32_t)x788 + x754), (x824 + x790)); fiat_p384_mulx_u32(&x851, &x852, x9, 0x2); fiat_p384_mulx_u32(&x853, &x854, x9, UINT32_C(0xfffffffe)); fiat_p384_mulx_u32(&x855, &x856, x9, 0x2); fiat_p384_mulx_u32(&x857, &x858, x9, UINT32_C(0xfffffffe)); fiat_p384_addcarryx_u32(&x859, &x860, 0x0, (fiat_p384_uint1)x852, x9); fiat_p384_addcarryx_u32(&x861, &x862, 0x0, x827, x9); fiat_p384_addcarryx_u32(&x863, &x864, x862, x829, x857); fiat_p384_addcarryx_u32(&x865, &x866, x864, x831, x858); fiat_p384_addcarryx_u32(&x867, &x868, x866, x833, x855); fiat_p384_addcarryx_u32(&x869, &x870, x868, x835, (fiat_p384_uint1)x856); fiat_p384_addcarryx_u32(&x871, &x872, x870, x837, x853); fiat_p384_addcarryx_u32(&x873, &x874, x872, x839, x854); fiat_p384_addcarryx_u32(&x875, &x876, x874, x841, x851); fiat_p384_addcarryx_u32(&x877, &x878, x876, x843, x859); fiat_p384_addcarryx_u32(&x879, &x880, x878, x845, x860); fiat_p384_addcarryx_u32(&x881, &x882, x880, x847, 0x0); fiat_p384_addcarryx_u32(&x883, &x884, x882, x849, 0x0); fiat_p384_mulx_u32(&x885, &x886, x861, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x887, &x888, x861, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x889, &x890, x861, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x891, &x892, x861, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x893, &x894, x861, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x895, &x896, x861, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x897, &x898, x861, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x899, &x900, x861, UINT32_C(0xfffffffe)); fiat_p384_mulx_u32(&x901, &x902, x861, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x903, &x904, x861, UINT32_C(0xffffffff)); fiat_p384_addcarryx_u32(&x905, &x906, 0x0, x902, x899); fiat_p384_addcarryx_u32(&x907, &x908, x906, x900, x897); fiat_p384_addcarryx_u32(&x909, &x910, x908, x898, x895); fiat_p384_addcarryx_u32(&x911, &x912, x910, x896, x893); fiat_p384_addcarryx_u32(&x913, &x914, x912, x894, x891); fiat_p384_addcarryx_u32(&x915, &x916, x914, x892, x889); fiat_p384_addcarryx_u32(&x917, &x918, x916, x890, x887); fiat_p384_addcarryx_u32(&x919, &x920, x918, x888, x885); fiat_p384_addcarryx_u32(&x921, &x922, 0x0, x861, x903); fiat_p384_addcarryx_u32(&x923, &x924, x922, x863, x904); fiat_p384_addcarryx_u32(&x925, &x926, x924, x865, 0x0); fiat_p384_addcarryx_u32(&x927, &x928, x926, x867, x901); fiat_p384_addcarryx_u32(&x929, &x930, x928, x869, x905); fiat_p384_addcarryx_u32(&x931, &x932, x930, x871, x907); fiat_p384_addcarryx_u32(&x933, &x934, x932, x873, x909); fiat_p384_addcarryx_u32(&x935, &x936, x934, x875, x911); fiat_p384_addcarryx_u32(&x937, &x938, x936, x877, x913); fiat_p384_addcarryx_u32(&x939, &x940, x938, x879, x915); fiat_p384_addcarryx_u32(&x941, &x942, x940, x881, x917); fiat_p384_addcarryx_u32(&x943, &x944, x942, x883, x919); fiat_p384_addcarryx_u32(&x945, &x946, x944, ((uint32_t)x884 + x850), (x920 + x886)); fiat_p384_mulx_u32(&x947, &x948, x10, 0x2); fiat_p384_mulx_u32(&x949, &x950, x10, UINT32_C(0xfffffffe)); fiat_p384_mulx_u32(&x951, &x952, x10, 0x2); fiat_p384_mulx_u32(&x953, &x954, x10, UINT32_C(0xfffffffe)); fiat_p384_addcarryx_u32(&x955, &x956, 0x0, (fiat_p384_uint1)x948, x10); fiat_p384_addcarryx_u32(&x957, &x958, 0x0, x923, x10); fiat_p384_addcarryx_u32(&x959, &x960, x958, x925, x953); fiat_p384_addcarryx_u32(&x961, &x962, x960, x927, x954); fiat_p384_addcarryx_u32(&x963, &x964, x962, x929, x951); fiat_p384_addcarryx_u32(&x965, &x966, x964, x931, (fiat_p384_uint1)x952); fiat_p384_addcarryx_u32(&x967, &x968, x966, x933, x949); fiat_p384_addcarryx_u32(&x969, &x970, x968, x935, x950); fiat_p384_addcarryx_u32(&x971, &x972, x970, x937, x947); fiat_p384_addcarryx_u32(&x973, &x974, x972, x939, x955); fiat_p384_addcarryx_u32(&x975, &x976, x974, x941, x956); fiat_p384_addcarryx_u32(&x977, &x978, x976, x943, 0x0); fiat_p384_addcarryx_u32(&x979, &x980, x978, x945, 0x0); fiat_p384_mulx_u32(&x981, &x982, x957, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x983, &x984, x957, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x985, &x986, x957, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x987, &x988, x957, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x989, &x990, x957, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x991, &x992, x957, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x993, &x994, x957, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x995, &x996, x957, UINT32_C(0xfffffffe)); fiat_p384_mulx_u32(&x997, &x998, x957, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x999, &x1000, x957, UINT32_C(0xffffffff)); fiat_p384_addcarryx_u32(&x1001, &x1002, 0x0, x998, x995); fiat_p384_addcarryx_u32(&x1003, &x1004, x1002, x996, x993); fiat_p384_addcarryx_u32(&x1005, &x1006, x1004, x994, x991); fiat_p384_addcarryx_u32(&x1007, &x1008, x1006, x992, x989); fiat_p384_addcarryx_u32(&x1009, &x1010, x1008, x990, x987); fiat_p384_addcarryx_u32(&x1011, &x1012, x1010, x988, x985); fiat_p384_addcarryx_u32(&x1013, &x1014, x1012, x986, x983); fiat_p384_addcarryx_u32(&x1015, &x1016, x1014, x984, x981); fiat_p384_addcarryx_u32(&x1017, &x1018, 0x0, x957, x999); fiat_p384_addcarryx_u32(&x1019, &x1020, x1018, x959, x1000); fiat_p384_addcarryx_u32(&x1021, &x1022, x1020, x961, 0x0); fiat_p384_addcarryx_u32(&x1023, &x1024, x1022, x963, x997); fiat_p384_addcarryx_u32(&x1025, &x1026, x1024, x965, x1001); fiat_p384_addcarryx_u32(&x1027, &x1028, x1026, x967, x1003); fiat_p384_addcarryx_u32(&x1029, &x1030, x1028, x969, x1005); fiat_p384_addcarryx_u32(&x1031, &x1032, x1030, x971, x1007); fiat_p384_addcarryx_u32(&x1033, &x1034, x1032, x973, x1009); fiat_p384_addcarryx_u32(&x1035, &x1036, x1034, x975, x1011); fiat_p384_addcarryx_u32(&x1037, &x1038, x1036, x977, x1013); fiat_p384_addcarryx_u32(&x1039, &x1040, x1038, x979, x1015); fiat_p384_addcarryx_u32(&x1041, &x1042, x1040, ((uint32_t)x980 + x946), (x1016 + x982)); fiat_p384_mulx_u32(&x1043, &x1044, x11, 0x2); fiat_p384_mulx_u32(&x1045, &x1046, x11, UINT32_C(0xfffffffe)); fiat_p384_mulx_u32(&x1047, &x1048, x11, 0x2); fiat_p384_mulx_u32(&x1049, &x1050, x11, UINT32_C(0xfffffffe)); fiat_p384_addcarryx_u32(&x1051, &x1052, 0x0, (fiat_p384_uint1)x1044, x11); fiat_p384_addcarryx_u32(&x1053, &x1054, 0x0, x1019, x11); fiat_p384_addcarryx_u32(&x1055, &x1056, x1054, x1021, x1049); fiat_p384_addcarryx_u32(&x1057, &x1058, x1056, x1023, x1050); fiat_p384_addcarryx_u32(&x1059, &x1060, x1058, x1025, x1047); fiat_p384_addcarryx_u32(&x1061, &x1062, x1060, x1027, (fiat_p384_uint1)x1048); fiat_p384_addcarryx_u32(&x1063, &x1064, x1062, x1029, x1045); fiat_p384_addcarryx_u32(&x1065, &x1066, x1064, x1031, x1046); fiat_p384_addcarryx_u32(&x1067, &x1068, x1066, x1033, x1043); fiat_p384_addcarryx_u32(&x1069, &x1070, x1068, x1035, x1051); fiat_p384_addcarryx_u32(&x1071, &x1072, x1070, x1037, x1052); fiat_p384_addcarryx_u32(&x1073, &x1074, x1072, x1039, 0x0); fiat_p384_addcarryx_u32(&x1075, &x1076, x1074, x1041, 0x0); fiat_p384_mulx_u32(&x1077, &x1078, x1053, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x1079, &x1080, x1053, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x1081, &x1082, x1053, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x1083, &x1084, x1053, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x1085, &x1086, x1053, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x1087, &x1088, x1053, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x1089, &x1090, x1053, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x1091, &x1092, x1053, UINT32_C(0xfffffffe)); fiat_p384_mulx_u32(&x1093, &x1094, x1053, UINT32_C(0xffffffff)); fiat_p384_mulx_u32(&x1095, &x1096, x1053, UINT32_C(0xffffffff)); fiat_p384_addcarryx_u32(&x1097, &x1098, 0x0, x1094, x1091); fiat_p384_addcarryx_u32(&x1099, &x1100, x1098, x1092, x1089); fiat_p384_addcarryx_u32(&x1101, &x1102, x1100, x1090, x1087); fiat_p384_addcarryx_u32(&x1103, &x1104, x1102, x1088, x1085); fiat_p384_addcarryx_u32(&x1105, &x1106, x1104, x1086, x1083); fiat_p384_addcarryx_u32(&x1107, &x1108, x1106, x1084, x1081); fiat_p384_addcarryx_u32(&x1109, &x1110, x1108, x1082, x1079); fiat_p384_addcarryx_u32(&x1111, &x1112, x1110, x1080, x1077); fiat_p384_addcarryx_u32(&x1113, &x1114, 0x0, x1053, x1095); fiat_p384_addcarryx_u32(&x1115, &x1116, x1114, x1055, x1096); fiat_p384_addcarryx_u32(&x1117, &x1118, x1116, x1057, 0x0); fiat_p384_addcarryx_u32(&x1119, &x1120, x1118, x1059, x1093); fiat_p384_addcarryx_u32(&x1121, &x1122, x1120, x1061, x1097); fiat_p384_addcarryx_u32(&x1123, &x1124, x1122, x1063, x1099); fiat_p384_addcarryx_u32(&x1125, &x1126, x1124, x1065, x1101); fiat_p384_addcarryx_u32(&x1127, &x1128, x1126, x1067, x1103); fiat_p384_addcarryx_u32(&x1129, &x1130, x1128, x1069, x1105); fiat_p384_addcarryx_u32(&x1131, &x1132, x1130, x1071, x1107); fiat_p384_addcarryx_u32(&x1133, &x1134, x1132, x1073, x1109); fiat_p384_addcarryx_u32(&x1135, &x1136, x1134, x1075, x1111); fiat_p384_addcarryx_u32(&x1137, &x1138, x1136, ((uint32_t)x1076 + x1042), (x1112 + x1078)); fiat_p384_subborrowx_u32(&x1139, &x1140, 0x0, x1115, UINT32_C(0xffffffff)); fiat_p384_subborrowx_u32(&x1141, &x1142, x1140, x1117, 0x0); fiat_p384_subborrowx_u32(&x1143, &x1144, x1142, x1119, 0x0); fiat_p384_subborrowx_u32(&x1145, &x1146, x1144, x1121, UINT32_C(0xffffffff)); fiat_p384_subborrowx_u32(&x1147, &x1148, x1146, x1123, UINT32_C(0xfffffffe)); fiat_p384_subborrowx_u32(&x1149, &x1150, x1148, x1125, UINT32_C(0xffffffff)); fiat_p384_subborrowx_u32(&x1151, &x1152, x1150, x1127, UINT32_C(0xffffffff)); fiat_p384_subborrowx_u32(&x1153, &x1154, x1152, x1129, UINT32_C(0xffffffff)); fiat_p384_subborrowx_u32(&x1155, &x1156, x1154, x1131, UINT32_C(0xffffffff)); fiat_p384_subborrowx_u32(&x1157, &x1158, x1156, x1133, UINT32_C(0xffffffff)); fiat_p384_subborrowx_u32(&x1159, &x1160, x1158, x1135, UINT32_C(0xffffffff)); fiat_p384_subborrowx_u32(&x1161, &x1162, x1160, x1137, UINT32_C(0xffffffff)); fiat_p384_subborrowx_u32(&x1163, &x1164, x1162, x1138, 0x0); fiat_p384_cmovznz_u32(&x1165, x1164, x1139, x1115); fiat_p384_cmovznz_u32(&x1166, x1164, x1141, x1117); fiat_p384_cmovznz_u32(&x1167, x1164, x1143, x1119); fiat_p384_cmovznz_u32(&x1168, x1164, x1145, x1121); fiat_p384_cmovznz_u32(&x1169, x1164, x1147, x1123); fiat_p384_cmovznz_u32(&x1170, x1164, x1149, x1125); fiat_p384_cmovznz_u32(&x1171, x1164, x1151, x1127); fiat_p384_cmovznz_u32(&x1172, x1164, x1153, x1129); fiat_p384_cmovznz_u32(&x1173, x1164, x1155, x1131); fiat_p384_cmovznz_u32(&x1174, x1164, x1157, x1133); fiat_p384_cmovznz_u32(&x1175, x1164, x1159, x1135); fiat_p384_cmovznz_u32(&x1176, x1164, x1161, x1137); out1[0] = x1165; out1[1] = x1166; out1[2] = x1167; out1[3] = x1168; out1[4] = x1169; out1[5] = x1170; out1[6] = x1171; out1[7] = x1172; out1[8] = x1173; out1[9] = x1174; out1[10] = x1175; out1[11] = x1176; } /* * The function fiat_p384_nonzero outputs a single non-zero word if the input is non-zero and zero otherwise. * * Preconditions: * 0 ≤ eval arg1 < m * Postconditions: * out1 = 0 ↔ eval (from_montgomery arg1) mod m = 0 * * Input Bounds: * arg1: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff]] * Output Bounds: * out1: [0x0 ~> 0xffffffff] */ static void fiat_p384_nonzero(uint32_t* out1, const uint32_t arg1[12]) { uint32_t x1; x1 = ((arg1[0]) | ((arg1[1]) | ((arg1[2]) | ((arg1[3]) | ((arg1[4]) | ((arg1[5]) | ((arg1[6]) | ((arg1[7]) | ((arg1[8]) | ((arg1[9]) | ((arg1[10]) | (arg1[11])))))))))))); *out1 = x1; } /* * The function fiat_p384_selectznz is a multi-limb conditional select. * * Postconditions: * out1 = (if arg1 = 0 then arg2 else arg3) * * Input Bounds: * arg1: [0x0 ~> 0x1] * arg2: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff]] * arg3: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff]] * Output Bounds: * out1: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff]] */ static void fiat_p384_selectznz(uint32_t out1[12], fiat_p384_uint1 arg1, const uint32_t arg2[12], const uint32_t arg3[12]) { uint32_t x1; uint32_t x2; uint32_t x3; uint32_t x4; uint32_t x5; uint32_t x6; uint32_t x7; uint32_t x8; uint32_t x9; uint32_t x10; uint32_t x11; uint32_t x12; fiat_p384_cmovznz_u32(&x1, arg1, (arg2[0]), (arg3[0])); fiat_p384_cmovznz_u32(&x2, arg1, (arg2[1]), (arg3[1])); fiat_p384_cmovznz_u32(&x3, arg1, (arg2[2]), (arg3[2])); fiat_p384_cmovznz_u32(&x4, arg1, (arg2[3]), (arg3[3])); fiat_p384_cmovznz_u32(&x5, arg1, (arg2[4]), (arg3[4])); fiat_p384_cmovznz_u32(&x6, arg1, (arg2[5]), (arg3[5])); fiat_p384_cmovznz_u32(&x7, arg1, (arg2[6]), (arg3[6])); fiat_p384_cmovznz_u32(&x8, arg1, (arg2[7]), (arg3[7])); fiat_p384_cmovznz_u32(&x9, arg1, (arg2[8]), (arg3[8])); fiat_p384_cmovznz_u32(&x10, arg1, (arg2[9]), (arg3[9])); fiat_p384_cmovznz_u32(&x11, arg1, (arg2[10]), (arg3[10])); fiat_p384_cmovznz_u32(&x12, arg1, (arg2[11]), (arg3[11])); out1[0] = x1; out1[1] = x2; out1[2] = x3; out1[3] = x4; out1[4] = x5; out1[5] = x6; out1[6] = x7; out1[7] = x8; out1[8] = x9; out1[9] = x10; out1[10] = x11; out1[11] = x12; } /* * The function fiat_p384_to_bytes serializes a field element NOT in the Montgomery domain to bytes in little-endian order. * * Preconditions: * 0 ≤ eval arg1 < m * Postconditions: * out1 = map (λ x, ⌊((eval arg1 mod m) mod 2^(8 * (x + 1))) / 2^(8 * x)⌋) [0..47] * * Input Bounds: * arg1: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff]] * Output Bounds: * out1: [[0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff]] */ static void fiat_p384_to_bytes(uint8_t out1[48], const uint32_t arg1[12]) { uint32_t x1; uint32_t x2; uint32_t x3; uint32_t x4; uint32_t x5; uint32_t x6; uint32_t x7; uint32_t x8; uint32_t x9; uint32_t x10; uint32_t x11; uint32_t x12; uint8_t x13; uint32_t x14; uint8_t x15; uint32_t x16; uint8_t x17; uint8_t x18; uint8_t x19; uint32_t x20; uint8_t x21; uint32_t x22; uint8_t x23; uint8_t x24; uint8_t x25; uint32_t x26; uint8_t x27; uint32_t x28; uint8_t x29; uint8_t x30; uint8_t x31; uint32_t x32; uint8_t x33; uint32_t x34; uint8_t x35; uint8_t x36; uint8_t x37; uint32_t x38; uint8_t x39; uint32_t x40; uint8_t x41; uint8_t x42; uint8_t x43; uint32_t x44; uint8_t x45; uint32_t x46; uint8_t x47; uint8_t x48; uint8_t x49; uint32_t x50; uint8_t x51; uint32_t x52; uint8_t x53; uint8_t x54; uint8_t x55; uint32_t x56; uint8_t x57; uint32_t x58; uint8_t x59; uint8_t x60; uint8_t x61; uint32_t x62; uint8_t x63; uint32_t x64; uint8_t x65; uint8_t x66; uint8_t x67; uint32_t x68; uint8_t x69; uint32_t x70; uint8_t x71; uint8_t x72; uint8_t x73; uint32_t x74; uint8_t x75; uint32_t x76; uint8_t x77; uint8_t x78; uint8_t x79; uint32_t x80; uint8_t x81; uint32_t x82; uint8_t x83; uint8_t x84; x1 = (arg1[11]); x2 = (arg1[10]); x3 = (arg1[9]); x4 = (arg1[8]); x5 = (arg1[7]); x6 = (arg1[6]); x7 = (arg1[5]); x8 = (arg1[4]); x9 = (arg1[3]); x10 = (arg1[2]); x11 = (arg1[1]); x12 = (arg1[0]); x13 = (uint8_t)(x12 & UINT8_C(0xff)); x14 = (x12 >> 8); x15 = (uint8_t)(x14 & UINT8_C(0xff)); x16 = (x14 >> 8); x17 = (uint8_t)(x16 & UINT8_C(0xff)); x18 = (uint8_t)(x16 >> 8); x19 = (uint8_t)(x11 & UINT8_C(0xff)); x20 = (x11 >> 8); x21 = (uint8_t)(x20 & UINT8_C(0xff)); x22 = (x20 >> 8); x23 = (uint8_t)(x22 & UINT8_C(0xff)); x24 = (uint8_t)(x22 >> 8); x25 = (uint8_t)(x10 & UINT8_C(0xff)); x26 = (x10 >> 8); x27 = (uint8_t)(x26 & UINT8_C(0xff)); x28 = (x26 >> 8); x29 = (uint8_t)(x28 & UINT8_C(0xff)); x30 = (uint8_t)(x28 >> 8); x31 = (uint8_t)(x9 & UINT8_C(0xff)); x32 = (x9 >> 8); x33 = (uint8_t)(x32 & UINT8_C(0xff)); x34 = (x32 >> 8); x35 = (uint8_t)(x34 & UINT8_C(0xff)); x36 = (uint8_t)(x34 >> 8); x37 = (uint8_t)(x8 & UINT8_C(0xff)); x38 = (x8 >> 8); x39 = (uint8_t)(x38 & UINT8_C(0xff)); x40 = (x38 >> 8); x41 = (uint8_t)(x40 & UINT8_C(0xff)); x42 = (uint8_t)(x40 >> 8); x43 = (uint8_t)(x7 & UINT8_C(0xff)); x44 = (x7 >> 8); x45 = (uint8_t)(x44 & UINT8_C(0xff)); x46 = (x44 >> 8); x47 = (uint8_t)(x46 & UINT8_C(0xff)); x48 = (uint8_t)(x46 >> 8); x49 = (uint8_t)(x6 & UINT8_C(0xff)); x50 = (x6 >> 8); x51 = (uint8_t)(x50 & UINT8_C(0xff)); x52 = (x50 >> 8); x53 = (uint8_t)(x52 & UINT8_C(0xff)); x54 = (uint8_t)(x52 >> 8); x55 = (uint8_t)(x5 & UINT8_C(0xff)); x56 = (x5 >> 8); x57 = (uint8_t)(x56 & UINT8_C(0xff)); x58 = (x56 >> 8); x59 = (uint8_t)(x58 & UINT8_C(0xff)); x60 = (uint8_t)(x58 >> 8); x61 = (uint8_t)(x4 & UINT8_C(0xff)); x62 = (x4 >> 8); x63 = (uint8_t)(x62 & UINT8_C(0xff)); x64 = (x62 >> 8); x65 = (uint8_t)(x64 & UINT8_C(0xff)); x66 = (uint8_t)(x64 >> 8); x67 = (uint8_t)(x3 & UINT8_C(0xff)); x68 = (x3 >> 8); x69 = (uint8_t)(x68 & UINT8_C(0xff)); x70 = (x68 >> 8); x71 = (uint8_t)(x70 & UINT8_C(0xff)); x72 = (uint8_t)(x70 >> 8); x73 = (uint8_t)(x2 & UINT8_C(0xff)); x74 = (x2 >> 8); x75 = (uint8_t)(x74 & UINT8_C(0xff)); x76 = (x74 >> 8); x77 = (uint8_t)(x76 & UINT8_C(0xff)); x78 = (uint8_t)(x76 >> 8); x79 = (uint8_t)(x1 & UINT8_C(0xff)); x80 = (x1 >> 8); x81 = (uint8_t)(x80 & UINT8_C(0xff)); x82 = (x80 >> 8); x83 = (uint8_t)(x82 & UINT8_C(0xff)); x84 = (uint8_t)(x82 >> 8); out1[0] = x13; out1[1] = x15; out1[2] = x17; out1[3] = x18; out1[4] = x19; out1[5] = x21; out1[6] = x23; out1[7] = x24; out1[8] = x25; out1[9] = x27; out1[10] = x29; out1[11] = x30; out1[12] = x31; out1[13] = x33; out1[14] = x35; out1[15] = x36; out1[16] = x37; out1[17] = x39; out1[18] = x41; out1[19] = x42; out1[20] = x43; out1[21] = x45; out1[22] = x47; out1[23] = x48; out1[24] = x49; out1[25] = x51; out1[26] = x53; out1[27] = x54; out1[28] = x55; out1[29] = x57; out1[30] = x59; out1[31] = x60; out1[32] = x61; out1[33] = x63; out1[34] = x65; out1[35] = x66; out1[36] = x67; out1[37] = x69; out1[38] = x71; out1[39] = x72; out1[40] = x73; out1[41] = x75; out1[42] = x77; out1[43] = x78; out1[44] = x79; out1[45] = x81; out1[46] = x83; out1[47] = x84; } /* * The function fiat_p384_from_bytes deserializes a field element NOT in the Montgomery domain from bytes in little-endian order. * * Preconditions: * 0 ≤ bytes_eval arg1 < m * Postconditions: * eval out1 mod m = bytes_eval arg1 mod m * 0 ≤ eval out1 < m * * Input Bounds: * arg1: [[0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff]] * Output Bounds: * out1: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff]] */ static void fiat_p384_from_bytes(uint32_t out1[12], const uint8_t arg1[48]) { uint32_t x1; uint32_t x2; uint32_t x3; uint8_t x4; uint32_t x5; uint32_t x6; uint32_t x7; uint8_t x8; uint32_t x9; uint32_t x10; uint32_t x11; uint8_t x12; uint32_t x13; uint32_t x14; uint32_t x15; uint8_t x16; uint32_t x17; uint32_t x18; uint32_t x19; uint8_t x20; uint32_t x21; uint32_t x22; uint32_t x23; uint8_t x24; uint32_t x25; uint32_t x26; uint32_t x27; uint8_t x28; uint32_t x29; uint32_t x30; uint32_t x31; uint8_t x32; uint32_t x33; uint32_t x34; uint32_t x35; uint8_t x36; uint32_t x37; uint32_t x38; uint32_t x39; uint8_t x40; uint32_t x41; uint32_t x42; uint32_t x43; uint8_t x44; uint32_t x45; uint32_t x46; uint32_t x47; uint8_t x48; uint32_t x49; uint32_t x50; uint32_t x51; uint32_t x52; uint32_t x53; uint32_t x54; uint32_t x55; uint32_t x56; uint32_t x57; uint32_t x58; uint32_t x59; uint32_t x60; uint32_t x61; uint32_t x62; uint32_t x63; uint32_t x64; uint32_t x65; uint32_t x66; uint32_t x67; uint32_t x68; uint32_t x69; uint32_t x70; uint32_t x71; uint32_t x72; uint32_t x73; uint32_t x74; uint32_t x75; uint32_t x76; uint32_t x77; uint32_t x78; uint32_t x79; uint32_t x80; uint32_t x81; uint32_t x82; uint32_t x83; uint32_t x84; x1 = ((uint32_t)(arg1[47]) << 24); x2 = ((uint32_t)(arg1[46]) << 16); x3 = ((uint32_t)(arg1[45]) << 8); x4 = (arg1[44]); x5 = ((uint32_t)(arg1[43]) << 24); x6 = ((uint32_t)(arg1[42]) << 16); x7 = ((uint32_t)(arg1[41]) << 8); x8 = (arg1[40]); x9 = ((uint32_t)(arg1[39]) << 24); x10 = ((uint32_t)(arg1[38]) << 16); x11 = ((uint32_t)(arg1[37]) << 8); x12 = (arg1[36]); x13 = ((uint32_t)(arg1[35]) << 24); x14 = ((uint32_t)(arg1[34]) << 16); x15 = ((uint32_t)(arg1[33]) << 8); x16 = (arg1[32]); x17 = ((uint32_t)(arg1[31]) << 24); x18 = ((uint32_t)(arg1[30]) << 16); x19 = ((uint32_t)(arg1[29]) << 8); x20 = (arg1[28]); x21 = ((uint32_t)(arg1[27]) << 24); x22 = ((uint32_t)(arg1[26]) << 16); x23 = ((uint32_t)(arg1[25]) << 8); x24 = (arg1[24]); x25 = ((uint32_t)(arg1[23]) << 24); x26 = ((uint32_t)(arg1[22]) << 16); x27 = ((uint32_t)(arg1[21]) << 8); x28 = (arg1[20]); x29 = ((uint32_t)(arg1[19]) << 24); x30 = ((uint32_t)(arg1[18]) << 16); x31 = ((uint32_t)(arg1[17]) << 8); x32 = (arg1[16]); x33 = ((uint32_t)(arg1[15]) << 24); x34 = ((uint32_t)(arg1[14]) << 16); x35 = ((uint32_t)(arg1[13]) << 8); x36 = (arg1[12]); x37 = ((uint32_t)(arg1[11]) << 24); x38 = ((uint32_t)(arg1[10]) << 16); x39 = ((uint32_t)(arg1[9]) << 8); x40 = (arg1[8]); x41 = ((uint32_t)(arg1[7]) << 24); x42 = ((uint32_t)(arg1[6]) << 16); x43 = ((uint32_t)(arg1[5]) << 8); x44 = (arg1[4]); x45 = ((uint32_t)(arg1[3]) << 24); x46 = ((uint32_t)(arg1[2]) << 16); x47 = ((uint32_t)(arg1[1]) << 8); x48 = (arg1[0]); x49 = (x47 + (uint32_t)x48); x50 = (x46 + x49); x51 = (x45 + x50); x52 = (x43 + (uint32_t)x44); x53 = (x42 + x52); x54 = (x41 + x53); x55 = (x39 + (uint32_t)x40); x56 = (x38 + x55); x57 = (x37 + x56); x58 = (x35 + (uint32_t)x36); x59 = (x34 + x58); x60 = (x33 + x59); x61 = (x31 + (uint32_t)x32); x62 = (x30 + x61); x63 = (x29 + x62); x64 = (x27 + (uint32_t)x28); x65 = (x26 + x64); x66 = (x25 + x65); x67 = (x23 + (uint32_t)x24); x68 = (x22 + x67); x69 = (x21 + x68); x70 = (x19 + (uint32_t)x20); x71 = (x18 + x70); x72 = (x17 + x71); x73 = (x15 + (uint32_t)x16); x74 = (x14 + x73); x75 = (x13 + x74); x76 = (x11 + (uint32_t)x12); x77 = (x10 + x76); x78 = (x9 + x77); x79 = (x7 + (uint32_t)x8); x80 = (x6 + x79); x81 = (x5 + x80); x82 = (x3 + (uint32_t)x4); x83 = (x2 + x82); x84 = (x1 + x83); out1[0] = x51; out1[1] = x54; out1[2] = x57; out1[3] = x60; out1[4] = x63; out1[5] = x66; out1[6] = x69; out1[7] = x72; out1[8] = x75; out1[9] = x78; out1[10] = x81; out1[11] = x84; } /* * The function fiat_p384_set_one returns the field element one in the Montgomery domain. * * Postconditions: * eval (from_montgomery out1) mod m = 1 mod m * 0 ≤ eval out1 < m * */ static void fiat_p384_set_one(fiat_p384_montgomery_domain_field_element out1) { out1[0] = 0x1; out1[1] = UINT32_C(0xffffffff); out1[2] = UINT32_C(0xffffffff); out1[3] = 0x0; out1[4] = 0x1; out1[5] = 0x0; out1[6] = 0x0; out1[7] = 0x0; out1[8] = 0x0; out1[9] = 0x0; out1[10] = 0x0; out1[11] = 0x0; } /* * The function fiat_p384_msat returns the saturated representation of the prime modulus. * * Postconditions: * twos_complement_eval out1 = m * 0 ≤ eval out1 < m * * Output Bounds: * out1: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff]] */ static void fiat_p384_msat(uint32_t out1[13]) { out1[0] = UINT32_C(0xffffffff); out1[1] = 0x0; out1[2] = 0x0; out1[3] = UINT32_C(0xffffffff); out1[4] = UINT32_C(0xfffffffe); out1[5] = UINT32_C(0xffffffff); out1[6] = UINT32_C(0xffffffff); out1[7] = UINT32_C(0xffffffff); out1[8] = UINT32_C(0xffffffff); out1[9] = UINT32_C(0xffffffff); out1[10] = UINT32_C(0xffffffff); out1[11] = UINT32_C(0xffffffff); out1[12] = 0x0; } /* * The function fiat_p384_divstep_precomp returns the precomputed value for Bernstein-Yang-inversion (in montgomery form). * * Postconditions: * eval (from_montgomery out1) = ⌊(m - 1) / 2⌋^(if ⌊log2 m⌋ + 1 < 46 then ⌊(49 * (⌊log2 m⌋ + 1) + 80) / 17⌋ else ⌊(49 * (⌊log2 m⌋ + 1) + 57) / 17⌋) * 0 ≤ eval out1 < m * * Output Bounds: * out1: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff]] */ static void fiat_p384_divstep_precomp(uint32_t out1[12]) { out1[0] = UINT32_C(0xfff18fff); out1[1] = UINT32_C(0xfff69400); out1[2] = UINT32_C(0xffffd3ff); out1[3] = UINT32_C(0x2b7fe); out1[4] = UINT32_C(0xfffe97ff); out1[5] = UINT32_C(0xfffedbff); out1[6] = UINT16_C(0x2fff); out1[7] = UINT32_C(0x28400); out1[8] = UINT32_C(0x50400); out1[9] = UINT32_C(0x60400); out1[10] = UINT32_C(0x38000); out1[11] = UINT32_C(0xfffc4800); } /* * The function fiat_p384_divstep computes a divstep. * * Preconditions: * 0 ≤ eval arg4 < m * 0 ≤ eval arg5 < m * Postconditions: * out1 = (if 0 < arg1 ∧ (twos_complement_eval arg3) is odd then 1 - arg1 else 1 + arg1) * twos_complement_eval out2 = (if 0 < arg1 ∧ (twos_complement_eval arg3) is odd then twos_complement_eval arg3 else twos_complement_eval arg2) * twos_complement_eval out3 = (if 0 < arg1 ∧ (twos_complement_eval arg3) is odd then ⌊(twos_complement_eval arg3 - twos_complement_eval arg2) / 2⌋ else ⌊(twos_complement_eval arg3 + (twos_complement_eval arg3 mod 2) * twos_complement_eval arg2) / 2⌋) * eval (from_montgomery out4) mod m = (if 0 < arg1 ∧ (twos_complement_eval arg3) is odd then (2 * eval (from_montgomery arg5)) mod m else (2 * eval (from_montgomery arg4)) mod m) * eval (from_montgomery out5) mod m = (if 0 < arg1 ∧ (twos_complement_eval arg3) is odd then (eval (from_montgomery arg4) - eval (from_montgomery arg4)) mod m else (eval (from_montgomery arg5) + (twos_complement_eval arg3 mod 2) * eval (from_montgomery arg4)) mod m) * 0 ≤ eval out5 < m * 0 ≤ eval out5 < m * 0 ≤ eval out2 < m * 0 ≤ eval out3 < m * * Input Bounds: * arg1: [0x0 ~> 0xffffffff] * arg2: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff]] * arg3: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff]] * arg4: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff]] * arg5: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff]] * Output Bounds: * out1: [0x0 ~> 0xffffffff] * out2: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff]] * out3: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff]] * out4: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff]] * out5: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff]] */ static void fiat_p384_divstep(uint32_t* out1, uint32_t out2[13], uint32_t out3[13], uint32_t out4[12], uint32_t out5[12], uint32_t arg1, const uint32_t arg2[13], const uint32_t arg3[13], const uint32_t arg4[12], const uint32_t arg5[12]) { uint32_t x1; fiat_p384_uint1 x2; fiat_p384_uint1 x3; uint32_t x4; fiat_p384_uint1 x5; uint32_t x6; uint32_t x7; uint32_t x8; uint32_t x9; uint32_t x10; uint32_t x11; uint32_t x12; uint32_t x13; uint32_t x14; uint32_t x15; uint32_t x16; uint32_t x17; uint32_t x18; uint32_t x19; uint32_t x20; fiat_p384_uint1 x21; uint32_t x22; fiat_p384_uint1 x23; uint32_t x24; fiat_p384_uint1 x25; uint32_t x26; fiat_p384_uint1 x27; uint32_t x28; fiat_p384_uint1 x29; uint32_t x30; fiat_p384_uint1 x31; uint32_t x32; fiat_p384_uint1 x33; uint32_t x34; fiat_p384_uint1 x35; uint32_t x36; fiat_p384_uint1 x37; uint32_t x38; fiat_p384_uint1 x39; uint32_t x40; fiat_p384_uint1 x41; uint32_t x42; fiat_p384_uint1 x43; uint32_t x44; fiat_p384_uint1 x45; uint32_t x46; uint32_t x47; uint32_t x48; uint32_t x49; uint32_t x50; uint32_t x51; uint32_t x52; uint32_t x53; uint32_t x54; uint32_t x55; uint32_t x56; uint32_t x57; uint32_t x58; uint32_t x59; uint32_t x60; uint32_t x61; uint32_t x62; uint32_t x63; uint32_t x64; uint32_t x65; uint32_t x66; uint32_t x67; uint32_t x68; uint32_t x69; uint32_t x70; uint32_t x71; fiat_p384_uint1 x72; uint32_t x73; fiat_p384_uint1 x74; uint32_t x75; fiat_p384_uint1 x76; uint32_t x77; fiat_p384_uint1 x78; uint32_t x79; fiat_p384_uint1 x80; uint32_t x81; fiat_p384_uint1 x82; uint32_t x83; fiat_p384_uint1 x84; uint32_t x85; fiat_p384_uint1 x86; uint32_t x87; fiat_p384_uint1 x88; uint32_t x89; fiat_p384_uint1 x90; uint32_t x91; fiat_p384_uint1 x92; uint32_t x93; fiat_p384_uint1 x94; uint32_t x95; fiat_p384_uint1 x96; uint32_t x97; fiat_p384_uint1 x98; uint32_t x99; fiat_p384_uint1 x100; uint32_t x101; fiat_p384_uint1 x102; uint32_t x103; fiat_p384_uint1 x104; uint32_t x105; fiat_p384_uint1 x106; uint32_t x107; fiat_p384_uint1 x108; uint32_t x109; fiat_p384_uint1 x110; uint32_t x111; fiat_p384_uint1 x112; uint32_t x113; fiat_p384_uint1 x114; uint32_t x115; fiat_p384_uint1 x116; uint32_t x117; fiat_p384_uint1 x118; uint32_t x119; fiat_p384_uint1 x120; uint32_t x121; uint32_t x122; uint32_t x123; uint32_t x124; uint32_t x125; uint32_t x126; uint32_t x127; uint32_t x128; uint32_t x129; uint32_t x130; uint32_t x131; uint32_t x132; uint32_t x133; fiat_p384_uint1 x134; uint32_t x135; fiat_p384_uint1 x136; uint32_t x137; fiat_p384_uint1 x138; uint32_t x139; fiat_p384_uint1 x140; uint32_t x141; fiat_p384_uint1 x142; uint32_t x143; fiat_p384_uint1 x144; uint32_t x145; fiat_p384_uint1 x146; uint32_t x147; fiat_p384_uint1 x148; uint32_t x149; fiat_p384_uint1 x150; uint32_t x151; fiat_p384_uint1 x152; uint32_t x153; fiat_p384_uint1 x154; uint32_t x155; fiat_p384_uint1 x156; uint32_t x157; uint32_t x158; fiat_p384_uint1 x159; uint32_t x160; fiat_p384_uint1 x161; uint32_t x162; fiat_p384_uint1 x163; uint32_t x164; fiat_p384_uint1 x165; uint32_t x166; fiat_p384_uint1 x167; uint32_t x168; fiat_p384_uint1 x169; uint32_t x170; fiat_p384_uint1 x171; uint32_t x172; fiat_p384_uint1 x173; uint32_t x174; fiat_p384_uint1 x175; uint32_t x176; fiat_p384_uint1 x177; uint32_t x178; fiat_p384_uint1 x179; uint32_t x180; fiat_p384_uint1 x181; uint32_t x182; uint32_t x183; uint32_t x184; uint32_t x185; uint32_t x186; uint32_t x187; uint32_t x188; uint32_t x189; uint32_t x190; uint32_t x191; uint32_t x192; uint32_t x193; fiat_p384_uint1 x194; uint32_t x195; uint32_t x196; uint32_t x197; uint32_t x198; uint32_t x199; uint32_t x200; uint32_t x201; uint32_t x202; uint32_t x203; uint32_t x204; uint32_t x205; uint32_t x206; uint32_t x207; uint32_t x208; fiat_p384_uint1 x209; uint32_t x210; fiat_p384_uint1 x211; uint32_t x212; fiat_p384_uint1 x213; uint32_t x214; fiat_p384_uint1 x215; uint32_t x216; fiat_p384_uint1 x217; uint32_t x218; fiat_p384_uint1 x219; uint32_t x220; fiat_p384_uint1 x221; uint32_t x222; fiat_p384_uint1 x223; uint32_t x224; fiat_p384_uint1 x225; uint32_t x226; fiat_p384_uint1 x227; uint32_t x228; fiat_p384_uint1 x229; uint32_t x230; fiat_p384_uint1 x231; uint32_t x232; fiat_p384_uint1 x233; uint32_t x234; uint32_t x235; uint32_t x236; uint32_t x237; uint32_t x238; uint32_t x239; uint32_t x240; uint32_t x241; uint32_t x242; uint32_t x243; uint32_t x244; uint32_t x245; uint32_t x246; fiat_p384_uint1 x247; uint32_t x248; fiat_p384_uint1 x249; uint32_t x250; fiat_p384_uint1 x251; uint32_t x252; fiat_p384_uint1 x253; uint32_t x254; fiat_p384_uint1 x255; uint32_t x256; fiat_p384_uint1 x257; uint32_t x258; fiat_p384_uint1 x259; uint32_t x260; fiat_p384_uint1 x261; uint32_t x262; fiat_p384_uint1 x263; uint32_t x264; fiat_p384_uint1 x265; uint32_t x266; fiat_p384_uint1 x267; uint32_t x268; fiat_p384_uint1 x269; uint32_t x270; fiat_p384_uint1 x271; uint32_t x272; fiat_p384_uint1 x273; uint32_t x274; fiat_p384_uint1 x275; uint32_t x276; fiat_p384_uint1 x277; uint32_t x278; fiat_p384_uint1 x279; uint32_t x280; fiat_p384_uint1 x281; uint32_t x282; fiat_p384_uint1 x283; uint32_t x284; fiat_p384_uint1 x285; uint32_t x286; fiat_p384_uint1 x287; uint32_t x288; fiat_p384_uint1 x289; uint32_t x290; fiat_p384_uint1 x291; uint32_t x292; fiat_p384_uint1 x293; uint32_t x294; fiat_p384_uint1 x295; uint32_t x296; fiat_p384_uint1 x297; uint32_t x298; uint32_t x299; uint32_t x300; uint32_t x301; uint32_t x302; uint32_t x303; uint32_t x304; uint32_t x305; uint32_t x306; uint32_t x307; uint32_t x308; uint32_t x309; uint32_t x310; uint32_t x311; uint32_t x312; uint32_t x313; uint32_t x314; uint32_t x315; uint32_t x316; uint32_t x317; uint32_t x318; uint32_t x319; uint32_t x320; uint32_t x321; uint32_t x322; uint32_t x323; uint32_t x324; uint32_t x325; uint32_t x326; uint32_t x327; uint32_t x328; uint32_t x329; uint32_t x330; uint32_t x331; uint32_t x332; uint32_t x333; uint32_t x334; fiat_p384_addcarryx_u32(&x1, &x2, 0x0, (~arg1), 0x1); x3 = (fiat_p384_uint1)((fiat_p384_uint1)(x1 >> 31) & (fiat_p384_uint1)((arg3[0]) & 0x1)); fiat_p384_addcarryx_u32(&x4, &x5, 0x0, (~arg1), 0x1); fiat_p384_cmovznz_u32(&x6, x3, arg1, x4); fiat_p384_cmovznz_u32(&x7, x3, (arg2[0]), (arg3[0])); fiat_p384_cmovznz_u32(&x8, x3, (arg2[1]), (arg3[1])); fiat_p384_cmovznz_u32(&x9, x3, (arg2[2]), (arg3[2])); fiat_p384_cmovznz_u32(&x10, x3, (arg2[3]), (arg3[3])); fiat_p384_cmovznz_u32(&x11, x3, (arg2[4]), (arg3[4])); fiat_p384_cmovznz_u32(&x12, x3, (arg2[5]), (arg3[5])); fiat_p384_cmovznz_u32(&x13, x3, (arg2[6]), (arg3[6])); fiat_p384_cmovznz_u32(&x14, x3, (arg2[7]), (arg3[7])); fiat_p384_cmovznz_u32(&x15, x3, (arg2[8]), (arg3[8])); fiat_p384_cmovznz_u32(&x16, x3, (arg2[9]), (arg3[9])); fiat_p384_cmovznz_u32(&x17, x3, (arg2[10]), (arg3[10])); fiat_p384_cmovznz_u32(&x18, x3, (arg2[11]), (arg3[11])); fiat_p384_cmovznz_u32(&x19, x3, (arg2[12]), (arg3[12])); fiat_p384_addcarryx_u32(&x20, &x21, 0x0, 0x1, (~(arg2[0]))); fiat_p384_addcarryx_u32(&x22, &x23, x21, 0x0, (~(arg2[1]))); fiat_p384_addcarryx_u32(&x24, &x25, x23, 0x0, (~(arg2[2]))); fiat_p384_addcarryx_u32(&x26, &x27, x25, 0x0, (~(arg2[3]))); fiat_p384_addcarryx_u32(&x28, &x29, x27, 0x0, (~(arg2[4]))); fiat_p384_addcarryx_u32(&x30, &x31, x29, 0x0, (~(arg2[5]))); fiat_p384_addcarryx_u32(&x32, &x33, x31, 0x0, (~(arg2[6]))); fiat_p384_addcarryx_u32(&x34, &x35, x33, 0x0, (~(arg2[7]))); fiat_p384_addcarryx_u32(&x36, &x37, x35, 0x0, (~(arg2[8]))); fiat_p384_addcarryx_u32(&x38, &x39, x37, 0x0, (~(arg2[9]))); fiat_p384_addcarryx_u32(&x40, &x41, x39, 0x0, (~(arg2[10]))); fiat_p384_addcarryx_u32(&x42, &x43, x41, 0x0, (~(arg2[11]))); fiat_p384_addcarryx_u32(&x44, &x45, x43, 0x0, (~(arg2[12]))); fiat_p384_cmovznz_u32(&x46, x3, (arg3[0]), x20); fiat_p384_cmovznz_u32(&x47, x3, (arg3[1]), x22); fiat_p384_cmovznz_u32(&x48, x3, (arg3[2]), x24); fiat_p384_cmovznz_u32(&x49, x3, (arg3[3]), x26); fiat_p384_cmovznz_u32(&x50, x3, (arg3[4]), x28); fiat_p384_cmovznz_u32(&x51, x3, (arg3[5]), x30); fiat_p384_cmovznz_u32(&x52, x3, (arg3[6]), x32); fiat_p384_cmovznz_u32(&x53, x3, (arg3[7]), x34); fiat_p384_cmovznz_u32(&x54, x3, (arg3[8]), x36); fiat_p384_cmovznz_u32(&x55, x3, (arg3[9]), x38); fiat_p384_cmovznz_u32(&x56, x3, (arg3[10]), x40); fiat_p384_cmovznz_u32(&x57, x3, (arg3[11]), x42); fiat_p384_cmovznz_u32(&x58, x3, (arg3[12]), x44); fiat_p384_cmovznz_u32(&x59, x3, (arg4[0]), (arg5[0])); fiat_p384_cmovznz_u32(&x60, x3, (arg4[1]), (arg5[1])); fiat_p384_cmovznz_u32(&x61, x3, (arg4[2]), (arg5[2])); fiat_p384_cmovznz_u32(&x62, x3, (arg4[3]), (arg5[3])); fiat_p384_cmovznz_u32(&x63, x3, (arg4[4]), (arg5[4])); fiat_p384_cmovznz_u32(&x64, x3, (arg4[5]), (arg5[5])); fiat_p384_cmovznz_u32(&x65, x3, (arg4[6]), (arg5[6])); fiat_p384_cmovznz_u32(&x66, x3, (arg4[7]), (arg5[7])); fiat_p384_cmovznz_u32(&x67, x3, (arg4[8]), (arg5[8])); fiat_p384_cmovznz_u32(&x68, x3, (arg4[9]), (arg5[9])); fiat_p384_cmovznz_u32(&x69, x3, (arg4[10]), (arg5[10])); fiat_p384_cmovznz_u32(&x70, x3, (arg4[11]), (arg5[11])); fiat_p384_addcarryx_u32(&x71, &x72, 0x0, x59, x59); fiat_p384_addcarryx_u32(&x73, &x74, x72, x60, x60); fiat_p384_addcarryx_u32(&x75, &x76, x74, x61, x61); fiat_p384_addcarryx_u32(&x77, &x78, x76, x62, x62); fiat_p384_addcarryx_u32(&x79, &x80, x78, x63, x63); fiat_p384_addcarryx_u32(&x81, &x82, x80, x64, x64); fiat_p384_addcarryx_u32(&x83, &x84, x82, x65, x65); fiat_p384_addcarryx_u32(&x85, &x86, x84, x66, x66); fiat_p384_addcarryx_u32(&x87, &x88, x86, x67, x67); fiat_p384_addcarryx_u32(&x89, &x90, x88, x68, x68); fiat_p384_addcarryx_u32(&x91, &x92, x90, x69, x69); fiat_p384_addcarryx_u32(&x93, &x94, x92, x70, x70); fiat_p384_subborrowx_u32(&x95, &x96, 0x0, x71, UINT32_C(0xffffffff)); fiat_p384_subborrowx_u32(&x97, &x98, x96, x73, 0x0); fiat_p384_subborrowx_u32(&x99, &x100, x98, x75, 0x0); fiat_p384_subborrowx_u32(&x101, &x102, x100, x77, UINT32_C(0xffffffff)); fiat_p384_subborrowx_u32(&x103, &x104, x102, x79, UINT32_C(0xfffffffe)); fiat_p384_subborrowx_u32(&x105, &x106, x104, x81, UINT32_C(0xffffffff)); fiat_p384_subborrowx_u32(&x107, &x108, x106, x83, UINT32_C(0xffffffff)); fiat_p384_subborrowx_u32(&x109, &x110, x108, x85, UINT32_C(0xffffffff)); fiat_p384_subborrowx_u32(&x111, &x112, x110, x87, UINT32_C(0xffffffff)); fiat_p384_subborrowx_u32(&x113, &x114, x112, x89, UINT32_C(0xffffffff)); fiat_p384_subborrowx_u32(&x115, &x116, x114, x91, UINT32_C(0xffffffff)); fiat_p384_subborrowx_u32(&x117, &x118, x116, x93, UINT32_C(0xffffffff)); fiat_p384_subborrowx_u32(&x119, &x120, x118, x94, 0x0); x121 = (arg4[11]); x122 = (arg4[10]); x123 = (arg4[9]); x124 = (arg4[8]); x125 = (arg4[7]); x126 = (arg4[6]); x127 = (arg4[5]); x128 = (arg4[4]); x129 = (arg4[3]); x130 = (arg4[2]); x131 = (arg4[1]); x132 = (arg4[0]); fiat_p384_subborrowx_u32(&x133, &x134, 0x0, 0x0, x132); fiat_p384_subborrowx_u32(&x135, &x136, x134, 0x0, x131); fiat_p384_subborrowx_u32(&x137, &x138, x136, 0x0, x130); fiat_p384_subborrowx_u32(&x139, &x140, x138, 0x0, x129); fiat_p384_subborrowx_u32(&x141, &x142, x140, 0x0, x128); fiat_p384_subborrowx_u32(&x143, &x144, x142, 0x0, x127); fiat_p384_subborrowx_u32(&x145, &x146, x144, 0x0, x126); fiat_p384_subborrowx_u32(&x147, &x148, x146, 0x0, x125); fiat_p384_subborrowx_u32(&x149, &x150, x148, 0x0, x124); fiat_p384_subborrowx_u32(&x151, &x152, x150, 0x0, x123); fiat_p384_subborrowx_u32(&x153, &x154, x152, 0x0, x122); fiat_p384_subborrowx_u32(&x155, &x156, x154, 0x0, x121); fiat_p384_cmovznz_u32(&x157, x156, 0x0, UINT32_C(0xffffffff)); fiat_p384_addcarryx_u32(&x158, &x159, 0x0, x133, x157); fiat_p384_addcarryx_u32(&x160, &x161, x159, x135, 0x0); fiat_p384_addcarryx_u32(&x162, &x163, x161, x137, 0x0); fiat_p384_addcarryx_u32(&x164, &x165, x163, x139, x157); fiat_p384_addcarryx_u32(&x166, &x167, x165, x141, (x157 & UINT32_C(0xfffffffe))); fiat_p384_addcarryx_u32(&x168, &x169, x167, x143, x157); fiat_p384_addcarryx_u32(&x170, &x171, x169, x145, x157); fiat_p384_addcarryx_u32(&x172, &x173, x171, x147, x157); fiat_p384_addcarryx_u32(&x174, &x175, x173, x149, x157); fiat_p384_addcarryx_u32(&x176, &x177, x175, x151, x157); fiat_p384_addcarryx_u32(&x178, &x179, x177, x153, x157); fiat_p384_addcarryx_u32(&x180, &x181, x179, x155, x157); fiat_p384_cmovznz_u32(&x182, x3, (arg5[0]), x158); fiat_p384_cmovznz_u32(&x183, x3, (arg5[1]), x160); fiat_p384_cmovznz_u32(&x184, x3, (arg5[2]), x162); fiat_p384_cmovznz_u32(&x185, x3, (arg5[3]), x164); fiat_p384_cmovznz_u32(&x186, x3, (arg5[4]), x166); fiat_p384_cmovznz_u32(&x187, x3, (arg5[5]), x168); fiat_p384_cmovznz_u32(&x188, x3, (arg5[6]), x170); fiat_p384_cmovznz_u32(&x189, x3, (arg5[7]), x172); fiat_p384_cmovznz_u32(&x190, x3, (arg5[8]), x174); fiat_p384_cmovznz_u32(&x191, x3, (arg5[9]), x176); fiat_p384_cmovznz_u32(&x192, x3, (arg5[10]), x178); fiat_p384_cmovznz_u32(&x193, x3, (arg5[11]), x180); x194 = (fiat_p384_uint1)(x46 & 0x1); fiat_p384_cmovznz_u32(&x195, x194, 0x0, x7); fiat_p384_cmovznz_u32(&x196, x194, 0x0, x8); fiat_p384_cmovznz_u32(&x197, x194, 0x0, x9); fiat_p384_cmovznz_u32(&x198, x194, 0x0, x10); fiat_p384_cmovznz_u32(&x199, x194, 0x0, x11); fiat_p384_cmovznz_u32(&x200, x194, 0x0, x12); fiat_p384_cmovznz_u32(&x201, x194, 0x0, x13); fiat_p384_cmovznz_u32(&x202, x194, 0x0, x14); fiat_p384_cmovznz_u32(&x203, x194, 0x0, x15); fiat_p384_cmovznz_u32(&x204, x194, 0x0, x16); fiat_p384_cmovznz_u32(&x205, x194, 0x0, x17); fiat_p384_cmovznz_u32(&x206, x194, 0x0, x18); fiat_p384_cmovznz_u32(&x207, x194, 0x0, x19); fiat_p384_addcarryx_u32(&x208, &x209, 0x0, x46, x195); fiat_p384_addcarryx_u32(&x210, &x211, x209, x47, x196); fiat_p384_addcarryx_u32(&x212, &x213, x211, x48, x197); fiat_p384_addcarryx_u32(&x214, &x215, x213, x49, x198); fiat_p384_addcarryx_u32(&x216, &x217, x215, x50, x199); fiat_p384_addcarryx_u32(&x218, &x219, x217, x51, x200); fiat_p384_addcarryx_u32(&x220, &x221, x219, x52, x201); fiat_p384_addcarryx_u32(&x222, &x223, x221, x53, x202); fiat_p384_addcarryx_u32(&x224, &x225, x223, x54, x203); fiat_p384_addcarryx_u32(&x226, &x227, x225, x55, x204); fiat_p384_addcarryx_u32(&x228, &x229, x227, x56, x205); fiat_p384_addcarryx_u32(&x230, &x231, x229, x57, x206); fiat_p384_addcarryx_u32(&x232, &x233, x231, x58, x207); fiat_p384_cmovznz_u32(&x234, x194, 0x0, x59); fiat_p384_cmovznz_u32(&x235, x194, 0x0, x60); fiat_p384_cmovznz_u32(&x236, x194, 0x0, x61); fiat_p384_cmovznz_u32(&x237, x194, 0x0, x62); fiat_p384_cmovznz_u32(&x238, x194, 0x0, x63); fiat_p384_cmovznz_u32(&x239, x194, 0x0, x64); fiat_p384_cmovznz_u32(&x240, x194, 0x0, x65); fiat_p384_cmovznz_u32(&x241, x194, 0x0, x66); fiat_p384_cmovznz_u32(&x242, x194, 0x0, x67); fiat_p384_cmovznz_u32(&x243, x194, 0x0, x68); fiat_p384_cmovznz_u32(&x244, x194, 0x0, x69); fiat_p384_cmovznz_u32(&x245, x194, 0x0, x70); fiat_p384_addcarryx_u32(&x246, &x247, 0x0, x182, x234); fiat_p384_addcarryx_u32(&x248, &x249, x247, x183, x235); fiat_p384_addcarryx_u32(&x250, &x251, x249, x184, x236); fiat_p384_addcarryx_u32(&x252, &x253, x251, x185, x237); fiat_p384_addcarryx_u32(&x254, &x255, x253, x186, x238); fiat_p384_addcarryx_u32(&x256, &x257, x255, x187, x239); fiat_p384_addcarryx_u32(&x258, &x259, x257, x188, x240); fiat_p384_addcarryx_u32(&x260, &x261, x259, x189, x241); fiat_p384_addcarryx_u32(&x262, &x263, x261, x190, x242); fiat_p384_addcarryx_u32(&x264, &x265, x263, x191, x243); fiat_p384_addcarryx_u32(&x266, &x267, x265, x192, x244); fiat_p384_addcarryx_u32(&x268, &x269, x267, x193, x245); fiat_p384_subborrowx_u32(&x270, &x271, 0x0, x246, UINT32_C(0xffffffff)); fiat_p384_subborrowx_u32(&x272, &x273, x271, x248, 0x0); fiat_p384_subborrowx_u32(&x274, &x275, x273, x250, 0x0); fiat_p384_subborrowx_u32(&x276, &x277, x275, x252, UINT32_C(0xffffffff)); fiat_p384_subborrowx_u32(&x278, &x279, x277, x254, UINT32_C(0xfffffffe)); fiat_p384_subborrowx_u32(&x280, &x281, x279, x256, UINT32_C(0xffffffff)); fiat_p384_subborrowx_u32(&x282, &x283, x281, x258, UINT32_C(0xffffffff)); fiat_p384_subborrowx_u32(&x284, &x285, x283, x260, UINT32_C(0xffffffff)); fiat_p384_subborrowx_u32(&x286, &x287, x285, x262, UINT32_C(0xffffffff)); fiat_p384_subborrowx_u32(&x288, &x289, x287, x264, UINT32_C(0xffffffff)); fiat_p384_subborrowx_u32(&x290, &x291, x289, x266, UINT32_C(0xffffffff)); fiat_p384_subborrowx_u32(&x292, &x293, x291, x268, UINT32_C(0xffffffff)); fiat_p384_subborrowx_u32(&x294, &x295, x293, x269, 0x0); fiat_p384_addcarryx_u32(&x296, &x297, 0x0, x6, 0x1); x298 = ((x208 >> 1) | ((x210 << 31) & UINT32_C(0xffffffff))); x299 = ((x210 >> 1) | ((x212 << 31) & UINT32_C(0xffffffff))); x300 = ((x212 >> 1) | ((x214 << 31) & UINT32_C(0xffffffff))); x301 = ((x214 >> 1) | ((x216 << 31) & UINT32_C(0xffffffff))); x302 = ((x216 >> 1) | ((x218 << 31) & UINT32_C(0xffffffff))); x303 = ((x218 >> 1) | ((x220 << 31) & UINT32_C(0xffffffff))); x304 = ((x220 >> 1) | ((x222 << 31) & UINT32_C(0xffffffff))); x305 = ((x222 >> 1) | ((x224 << 31) & UINT32_C(0xffffffff))); x306 = ((x224 >> 1) | ((x226 << 31) & UINT32_C(0xffffffff))); x307 = ((x226 >> 1) | ((x228 << 31) & UINT32_C(0xffffffff))); x308 = ((x228 >> 1) | ((x230 << 31) & UINT32_C(0xffffffff))); x309 = ((x230 >> 1) | ((x232 << 31) & UINT32_C(0xffffffff))); x310 = ((x232 & UINT32_C(0x80000000)) | (x232 >> 1)); fiat_p384_cmovznz_u32(&x311, x120, x95, x71); fiat_p384_cmovznz_u32(&x312, x120, x97, x73); fiat_p384_cmovznz_u32(&x313, x120, x99, x75); fiat_p384_cmovznz_u32(&x314, x120, x101, x77); fiat_p384_cmovznz_u32(&x315, x120, x103, x79); fiat_p384_cmovznz_u32(&x316, x120, x105, x81); fiat_p384_cmovznz_u32(&x317, x120, x107, x83); fiat_p384_cmovznz_u32(&x318, x120, x109, x85); fiat_p384_cmovznz_u32(&x319, x120, x111, x87); fiat_p384_cmovznz_u32(&x320, x120, x113, x89); fiat_p384_cmovznz_u32(&x321, x120, x115, x91); fiat_p384_cmovznz_u32(&x322, x120, x117, x93); fiat_p384_cmovznz_u32(&x323, x295, x270, x246); fiat_p384_cmovznz_u32(&x324, x295, x272, x248); fiat_p384_cmovznz_u32(&x325, x295, x274, x250); fiat_p384_cmovznz_u32(&x326, x295, x276, x252); fiat_p384_cmovznz_u32(&x327, x295, x278, x254); fiat_p384_cmovznz_u32(&x328, x295, x280, x256); fiat_p384_cmovznz_u32(&x329, x295, x282, x258); fiat_p384_cmovznz_u32(&x330, x295, x284, x260); fiat_p384_cmovznz_u32(&x331, x295, x286, x262); fiat_p384_cmovznz_u32(&x332, x295, x288, x264); fiat_p384_cmovznz_u32(&x333, x295, x290, x266); fiat_p384_cmovznz_u32(&x334, x295, x292, x268); *out1 = x296; out2[0] = x7; out2[1] = x8; out2[2] = x9; out2[3] = x10; out2[4] = x11; out2[5] = x12; out2[6] = x13; out2[7] = x14; out2[8] = x15; out2[9] = x16; out2[10] = x17; out2[11] = x18; out2[12] = x19; out3[0] = x298; out3[1] = x299; out3[2] = x300; out3[3] = x301; out3[4] = x302; out3[5] = x303; out3[6] = x304; out3[7] = x305; out3[8] = x306; out3[9] = x307; out3[10] = x308; out3[11] = x309; out3[12] = x310; out4[0] = x311; out4[1] = x312; out4[2] = x313; out4[3] = x314; out4[4] = x315; out4[5] = x316; out4[6] = x317; out4[7] = x318; out4[8] = x319; out4[9] = x320; out4[10] = x321; out4[11] = x322; out5[0] = x323; out5[1] = x324; out5[2] = x325; out5[3] = x326; out5[4] = x327; out5[5] = x328; out5[6] = x329; out5[7] = x330; out5[8] = x331; out5[9] = x332; out5[10] = x333; out5[11] = x334; }
mirage-crypto
2.0.2
ISC
https://github.com/mirage/mirage-crypto
git+https://github.com/mirage/mirage-crypto.git
h
mirage-crypto-2.0.2/ec/native/p384_64.h
/* Autogenerated: '../fiat-crypto/src/ExtractionOCaml/word_by_word_montgomery' --static --use-value-barrier --inline-internal p384 64 '2^384 - 2^128 - 2^96 + 2^32 - 1' */ /* curve description: p384 */ /* machine_wordsize = 64 (from "64") */ /* requested operations: (all) */ /* m = 0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffeffffffff0000000000000000ffffffff (from "2^384 - 2^128 - 2^96 + 2^32 - 1") */ /* */ /* NOTE: In addition to the bounds specified above each function, all */ /* functions synthesized for this Montgomery arithmetic require the */ /* input to be strictly less than the prime modulus (m), and also */ /* require the input to be in the unique saturated representation. */ /* All functions also ensure that these two properties are true of */ /* return values. */ /* */ /* Computed values: */ /* eval z = z[0] + (z[1] << 64) + (z[2] << 128) + (z[3] << 192) + (z[4] << 256) + (z[5] << 0x140) */ /* bytes_eval z = z[0] + (z[1] << 8) + (z[2] << 16) + (z[3] << 24) + (z[4] << 32) + (z[5] << 40) + (z[6] << 48) + (z[7] << 56) + (z[8] << 64) + (z[9] << 72) + (z[10] << 80) + (z[11] << 88) + (z[12] << 96) + (z[13] << 104) + (z[14] << 112) + (z[15] << 120) + (z[16] << 128) + (z[17] << 136) + (z[18] << 144) + (z[19] << 152) + (z[20] << 160) + (z[21] << 168) + (z[22] << 176) + (z[23] << 184) + (z[24] << 192) + (z[25] << 200) + (z[26] << 208) + (z[27] << 216) + (z[28] << 224) + (z[29] << 232) + (z[30] << 240) + (z[31] << 248) + (z[32] << 256) + (z[33] << 0x108) + (z[34] << 0x110) + (z[35] << 0x118) + (z[36] << 0x120) + (z[37] << 0x128) + (z[38] << 0x130) + (z[39] << 0x138) + (z[40] << 0x140) + (z[41] << 0x148) + (z[42] << 0x150) + (z[43] << 0x158) + (z[44] << 0x160) + (z[45] << 0x168) + (z[46] << 0x170) + (z[47] << 0x178) */ /* twos_complement_eval z = let x1 := z[0] + (z[1] << 64) + (z[2] << 128) + (z[3] << 192) + (z[4] << 256) + (z[5] << 0x140) in */ /* if x1 & (2^384-1) < 2^383 then x1 & (2^384-1) else (x1 & (2^384-1)) - 2^384 */ #include <stdint.h> typedef unsigned char fiat_p384_uint1; typedef signed char fiat_p384_int1; #if defined(__GNUC__) || defined(__clang__) # define FIAT_P384_FIAT_EXTENSION __extension__ # define FIAT_P384_FIAT_INLINE __inline__ #else # define FIAT_P384_FIAT_EXTENSION # define FIAT_P384_FIAT_INLINE #endif FIAT_P384_FIAT_EXTENSION typedef signed __int128 fiat_p384_int128; FIAT_P384_FIAT_EXTENSION typedef unsigned __int128 fiat_p384_uint128; /* The type fiat_p384_montgomery_domain_field_element is a field element in the Montgomery domain. */ /* Bounds: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]] */ typedef uint64_t fiat_p384_montgomery_domain_field_element[6]; /* The type fiat_p384_non_montgomery_domain_field_element is a field element NOT in the Montgomery domain. */ /* Bounds: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]] */ typedef uint64_t fiat_p384_non_montgomery_domain_field_element[6]; #if (-1 & 3) != 3 #error "This code only works on a two's complement system" #endif #if !defined(FIAT_P384_NO_ASM) && (defined(__GNUC__) || defined(__clang__)) static __inline__ uint64_t fiat_p384_value_barrier_u64(uint64_t a) { __asm__("" : "+r"(a) : /* no inputs */); return a; } #else # define fiat_p384_value_barrier_u64(x) (x) #endif /* * The function fiat_p384_addcarryx_u64 is an addition with carry. * * Postconditions: * out1 = (arg1 + arg2 + arg3) mod 2^64 * out2 = ⌊(arg1 + arg2 + arg3) / 2^64⌋ * * Input Bounds: * arg1: [0x0 ~> 0x1] * arg2: [0x0 ~> 0xffffffffffffffff] * arg3: [0x0 ~> 0xffffffffffffffff] * Output Bounds: * out1: [0x0 ~> 0xffffffffffffffff] * out2: [0x0 ~> 0x1] */ static FIAT_P384_FIAT_INLINE void fiat_p384_addcarryx_u64(uint64_t* out1, fiat_p384_uint1* out2, fiat_p384_uint1 arg1, uint64_t arg2, uint64_t arg3) { fiat_p384_uint128 x1; uint64_t x2; fiat_p384_uint1 x3; x1 = ((arg1 + (fiat_p384_uint128)arg2) + arg3); x2 = (uint64_t)(x1 & UINT64_C(0xffffffffffffffff)); x3 = (fiat_p384_uint1)(x1 >> 64); *out1 = x2; *out2 = x3; } /* * The function fiat_p384_subborrowx_u64 is a subtraction with borrow. * * Postconditions: * out1 = (-arg1 + arg2 + -arg3) mod 2^64 * out2 = -⌊(-arg1 + arg2 + -arg3) / 2^64⌋ * * Input Bounds: * arg1: [0x0 ~> 0x1] * arg2: [0x0 ~> 0xffffffffffffffff] * arg3: [0x0 ~> 0xffffffffffffffff] * Output Bounds: * out1: [0x0 ~> 0xffffffffffffffff] * out2: [0x0 ~> 0x1] */ static FIAT_P384_FIAT_INLINE void fiat_p384_subborrowx_u64(uint64_t* out1, fiat_p384_uint1* out2, fiat_p384_uint1 arg1, uint64_t arg2, uint64_t arg3) { fiat_p384_int128 x1; fiat_p384_int1 x2; uint64_t x3; x1 = ((arg2 - (fiat_p384_int128)arg1) - arg3); x2 = (fiat_p384_int1)(x1 >> 64); x3 = (uint64_t)(x1 & UINT64_C(0xffffffffffffffff)); *out1 = x3; *out2 = (fiat_p384_uint1)(0x0 - x2); } /* * The function fiat_p384_mulx_u64 is a multiplication, returning the full double-width result. * * Postconditions: * out1 = (arg1 * arg2) mod 2^64 * out2 = ⌊arg1 * arg2 / 2^64⌋ * * Input Bounds: * arg1: [0x0 ~> 0xffffffffffffffff] * arg2: [0x0 ~> 0xffffffffffffffff] * Output Bounds: * out1: [0x0 ~> 0xffffffffffffffff] * out2: [0x0 ~> 0xffffffffffffffff] */ static FIAT_P384_FIAT_INLINE void fiat_p384_mulx_u64(uint64_t* out1, uint64_t* out2, uint64_t arg1, uint64_t arg2) { fiat_p384_uint128 x1; uint64_t x2; uint64_t x3; x1 = ((fiat_p384_uint128)arg1 * arg2); x2 = (uint64_t)(x1 & UINT64_C(0xffffffffffffffff)); x3 = (uint64_t)(x1 >> 64); *out1 = x2; *out2 = x3; } /* * The function fiat_p384_cmovznz_u64 is a single-word conditional move. * * Postconditions: * out1 = (if arg1 = 0 then arg2 else arg3) * * Input Bounds: * arg1: [0x0 ~> 0x1] * arg2: [0x0 ~> 0xffffffffffffffff] * arg3: [0x0 ~> 0xffffffffffffffff] * Output Bounds: * out1: [0x0 ~> 0xffffffffffffffff] */ static FIAT_P384_FIAT_INLINE void fiat_p384_cmovznz_u64(uint64_t* out1, fiat_p384_uint1 arg1, uint64_t arg2, uint64_t arg3) { fiat_p384_uint1 x1; uint64_t x2; uint64_t x3; x1 = (!(!arg1)); x2 = ((fiat_p384_int1)(0x0 - x1) & UINT64_C(0xffffffffffffffff)); x3 = ((fiat_p384_value_barrier_u64(x2) & arg3) | (fiat_p384_value_barrier_u64((~x2)) & arg2)); *out1 = x3; } /* * The function fiat_p384_mul multiplies two field elements in the Montgomery domain. * * Preconditions: * 0 ≤ eval arg1 < m * 0 ≤ eval arg2 < m * Postconditions: * eval (from_montgomery out1) mod m = (eval (from_montgomery arg1) * eval (from_montgomery arg2)) mod m * 0 ≤ eval out1 < m * */ static void fiat_p384_mul(fiat_p384_montgomery_domain_field_element out1, const fiat_p384_montgomery_domain_field_element arg1, const fiat_p384_montgomery_domain_field_element arg2) { uint64_t x1; uint64_t x2; uint64_t x3; uint64_t x4; uint64_t x5; uint64_t x6; uint64_t x7; uint64_t x8; uint64_t x9; uint64_t x10; uint64_t x11; uint64_t x12; uint64_t x13; uint64_t x14; uint64_t x15; uint64_t x16; uint64_t x17; uint64_t x18; uint64_t x19; fiat_p384_uint1 x20; uint64_t x21; fiat_p384_uint1 x22; uint64_t x23; fiat_p384_uint1 x24; uint64_t x25; fiat_p384_uint1 x26; uint64_t x27; fiat_p384_uint1 x28; uint64_t x29; uint64_t x30; uint64_t x31; uint64_t x32; uint64_t x33; uint64_t x34; uint64_t x35; uint64_t x36; uint64_t x37; uint64_t x38; uint64_t x39; uint64_t x40; uint64_t x41; uint64_t x42; uint64_t x43; uint64_t x44; fiat_p384_uint1 x45; uint64_t x46; fiat_p384_uint1 x47; uint64_t x48; fiat_p384_uint1 x49; uint64_t x50; fiat_p384_uint1 x51; uint64_t x52; fiat_p384_uint1 x53; uint64_t x54; uint64_t x55; fiat_p384_uint1 x56; uint64_t x57; fiat_p384_uint1 x58; uint64_t x59; fiat_p384_uint1 x60; uint64_t x61; fiat_p384_uint1 x62; uint64_t x63; fiat_p384_uint1 x64; uint64_t x65; fiat_p384_uint1 x66; uint64_t x67; fiat_p384_uint1 x68; uint64_t x69; uint64_t x70; uint64_t x71; uint64_t x72; uint64_t x73; uint64_t x74; uint64_t x75; uint64_t x76; uint64_t x77; uint64_t x78; uint64_t x79; uint64_t x80; uint64_t x81; fiat_p384_uint1 x82; uint64_t x83; fiat_p384_uint1 x84; uint64_t x85; fiat_p384_uint1 x86; uint64_t x87; fiat_p384_uint1 x88; uint64_t x89; fiat_p384_uint1 x90; uint64_t x91; uint64_t x92; fiat_p384_uint1 x93; uint64_t x94; fiat_p384_uint1 x95; uint64_t x96; fiat_p384_uint1 x97; uint64_t x98; fiat_p384_uint1 x99; uint64_t x100; fiat_p384_uint1 x101; uint64_t x102; fiat_p384_uint1 x103; uint64_t x104; fiat_p384_uint1 x105; uint64_t x106; uint64_t x107; uint64_t x108; uint64_t x109; uint64_t x110; uint64_t x111; uint64_t x112; uint64_t x113; uint64_t x114; uint64_t x115; uint64_t x116; uint64_t x117; uint64_t x118; uint64_t x119; uint64_t x120; fiat_p384_uint1 x121; uint64_t x122; fiat_p384_uint1 x123; uint64_t x124; fiat_p384_uint1 x125; uint64_t x126; fiat_p384_uint1 x127; uint64_t x128; fiat_p384_uint1 x129; uint64_t x130; uint64_t x131; fiat_p384_uint1 x132; uint64_t x133; fiat_p384_uint1 x134; uint64_t x135; fiat_p384_uint1 x136; uint64_t x137; fiat_p384_uint1 x138; uint64_t x139; fiat_p384_uint1 x140; uint64_t x141; fiat_p384_uint1 x142; uint64_t x143; fiat_p384_uint1 x144; uint64_t x145; uint64_t x146; uint64_t x147; uint64_t x148; uint64_t x149; uint64_t x150; uint64_t x151; uint64_t x152; uint64_t x153; uint64_t x154; uint64_t x155; uint64_t x156; uint64_t x157; uint64_t x158; fiat_p384_uint1 x159; uint64_t x160; fiat_p384_uint1 x161; uint64_t x162; fiat_p384_uint1 x163; uint64_t x164; fiat_p384_uint1 x165; uint64_t x166; fiat_p384_uint1 x167; uint64_t x168; uint64_t x169; fiat_p384_uint1 x170; uint64_t x171; fiat_p384_uint1 x172; uint64_t x173; fiat_p384_uint1 x174; uint64_t x175; fiat_p384_uint1 x176; uint64_t x177; fiat_p384_uint1 x178; uint64_t x179; fiat_p384_uint1 x180; uint64_t x181; fiat_p384_uint1 x182; uint64_t x183; uint64_t x184; uint64_t x185; uint64_t x186; uint64_t x187; uint64_t x188; uint64_t x189; uint64_t x190; uint64_t x191; uint64_t x192; uint64_t x193; uint64_t x194; uint64_t x195; uint64_t x196; uint64_t x197; fiat_p384_uint1 x198; uint64_t x199; fiat_p384_uint1 x200; uint64_t x201; fiat_p384_uint1 x202; uint64_t x203; fiat_p384_uint1 x204; uint64_t x205; fiat_p384_uint1 x206; uint64_t x207; uint64_t x208; fiat_p384_uint1 x209; uint64_t x210; fiat_p384_uint1 x211; uint64_t x212; fiat_p384_uint1 x213; uint64_t x214; fiat_p384_uint1 x215; uint64_t x216; fiat_p384_uint1 x217; uint64_t x218; fiat_p384_uint1 x219; uint64_t x220; fiat_p384_uint1 x221; uint64_t x222; uint64_t x223; uint64_t x224; uint64_t x225; uint64_t x226; uint64_t x227; uint64_t x228; uint64_t x229; uint64_t x230; uint64_t x231; uint64_t x232; uint64_t x233; uint64_t x234; uint64_t x235; fiat_p384_uint1 x236; uint64_t x237; fiat_p384_uint1 x238; uint64_t x239; fiat_p384_uint1 x240; uint64_t x241; fiat_p384_uint1 x242; uint64_t x243; fiat_p384_uint1 x244; uint64_t x245; uint64_t x246; fiat_p384_uint1 x247; uint64_t x248; fiat_p384_uint1 x249; uint64_t x250; fiat_p384_uint1 x251; uint64_t x252; fiat_p384_uint1 x253; uint64_t x254; fiat_p384_uint1 x255; uint64_t x256; fiat_p384_uint1 x257; uint64_t x258; fiat_p384_uint1 x259; uint64_t x260; uint64_t x261; uint64_t x262; uint64_t x263; uint64_t x264; uint64_t x265; uint64_t x266; uint64_t x267; uint64_t x268; uint64_t x269; uint64_t x270; uint64_t x271; uint64_t x272; uint64_t x273; uint64_t x274; fiat_p384_uint1 x275; uint64_t x276; fiat_p384_uint1 x277; uint64_t x278; fiat_p384_uint1 x279; uint64_t x280; fiat_p384_uint1 x281; uint64_t x282; fiat_p384_uint1 x283; uint64_t x284; uint64_t x285; fiat_p384_uint1 x286; uint64_t x287; fiat_p384_uint1 x288; uint64_t x289; fiat_p384_uint1 x290; uint64_t x291; fiat_p384_uint1 x292; uint64_t x293; fiat_p384_uint1 x294; uint64_t x295; fiat_p384_uint1 x296; uint64_t x297; fiat_p384_uint1 x298; uint64_t x299; uint64_t x300; uint64_t x301; uint64_t x302; uint64_t x303; uint64_t x304; uint64_t x305; uint64_t x306; uint64_t x307; uint64_t x308; uint64_t x309; uint64_t x310; uint64_t x311; uint64_t x312; fiat_p384_uint1 x313; uint64_t x314; fiat_p384_uint1 x315; uint64_t x316; fiat_p384_uint1 x317; uint64_t x318; fiat_p384_uint1 x319; uint64_t x320; fiat_p384_uint1 x321; uint64_t x322; uint64_t x323; fiat_p384_uint1 x324; uint64_t x325; fiat_p384_uint1 x326; uint64_t x327; fiat_p384_uint1 x328; uint64_t x329; fiat_p384_uint1 x330; uint64_t x331; fiat_p384_uint1 x332; uint64_t x333; fiat_p384_uint1 x334; uint64_t x335; fiat_p384_uint1 x336; uint64_t x337; uint64_t x338; uint64_t x339; uint64_t x340; uint64_t x341; uint64_t x342; uint64_t x343; uint64_t x344; uint64_t x345; uint64_t x346; uint64_t x347; uint64_t x348; uint64_t x349; uint64_t x350; uint64_t x351; fiat_p384_uint1 x352; uint64_t x353; fiat_p384_uint1 x354; uint64_t x355; fiat_p384_uint1 x356; uint64_t x357; fiat_p384_uint1 x358; uint64_t x359; fiat_p384_uint1 x360; uint64_t x361; uint64_t x362; fiat_p384_uint1 x363; uint64_t x364; fiat_p384_uint1 x365; uint64_t x366; fiat_p384_uint1 x367; uint64_t x368; fiat_p384_uint1 x369; uint64_t x370; fiat_p384_uint1 x371; uint64_t x372; fiat_p384_uint1 x373; uint64_t x374; fiat_p384_uint1 x375; uint64_t x376; uint64_t x377; uint64_t x378; uint64_t x379; uint64_t x380; uint64_t x381; uint64_t x382; uint64_t x383; uint64_t x384; uint64_t x385; uint64_t x386; uint64_t x387; uint64_t x388; uint64_t x389; fiat_p384_uint1 x390; uint64_t x391; fiat_p384_uint1 x392; uint64_t x393; fiat_p384_uint1 x394; uint64_t x395; fiat_p384_uint1 x396; uint64_t x397; fiat_p384_uint1 x398; uint64_t x399; uint64_t x400; fiat_p384_uint1 x401; uint64_t x402; fiat_p384_uint1 x403; uint64_t x404; fiat_p384_uint1 x405; uint64_t x406; fiat_p384_uint1 x407; uint64_t x408; fiat_p384_uint1 x409; uint64_t x410; fiat_p384_uint1 x411; uint64_t x412; fiat_p384_uint1 x413; uint64_t x414; uint64_t x415; uint64_t x416; uint64_t x417; uint64_t x418; uint64_t x419; uint64_t x420; uint64_t x421; uint64_t x422; uint64_t x423; uint64_t x424; uint64_t x425; uint64_t x426; uint64_t x427; uint64_t x428; fiat_p384_uint1 x429; uint64_t x430; fiat_p384_uint1 x431; uint64_t x432; fiat_p384_uint1 x433; uint64_t x434; fiat_p384_uint1 x435; uint64_t x436; fiat_p384_uint1 x437; uint64_t x438; uint64_t x439; fiat_p384_uint1 x440; uint64_t x441; fiat_p384_uint1 x442; uint64_t x443; fiat_p384_uint1 x444; uint64_t x445; fiat_p384_uint1 x446; uint64_t x447; fiat_p384_uint1 x448; uint64_t x449; fiat_p384_uint1 x450; uint64_t x451; fiat_p384_uint1 x452; uint64_t x453; uint64_t x454; fiat_p384_uint1 x455; uint64_t x456; fiat_p384_uint1 x457; uint64_t x458; fiat_p384_uint1 x459; uint64_t x460; fiat_p384_uint1 x461; uint64_t x462; fiat_p384_uint1 x463; uint64_t x464; fiat_p384_uint1 x465; uint64_t x466; fiat_p384_uint1 x467; uint64_t x468; uint64_t x469; uint64_t x470; uint64_t x471; uint64_t x472; uint64_t x473; x1 = (arg1[1]); x2 = (arg1[2]); x3 = (arg1[3]); x4 = (arg1[4]); x5 = (arg1[5]); x6 = (arg1[0]); fiat_p384_mulx_u64(&x7, &x8, x6, (arg2[5])); fiat_p384_mulx_u64(&x9, &x10, x6, (arg2[4])); fiat_p384_mulx_u64(&x11, &x12, x6, (arg2[3])); fiat_p384_mulx_u64(&x13, &x14, x6, (arg2[2])); fiat_p384_mulx_u64(&x15, &x16, x6, (arg2[1])); fiat_p384_mulx_u64(&x17, &x18, x6, (arg2[0])); fiat_p384_addcarryx_u64(&x19, &x20, 0x0, x18, x15); fiat_p384_addcarryx_u64(&x21, &x22, x20, x16, x13); fiat_p384_addcarryx_u64(&x23, &x24, x22, x14, x11); fiat_p384_addcarryx_u64(&x25, &x26, x24, x12, x9); fiat_p384_addcarryx_u64(&x27, &x28, x26, x10, x7); x29 = (x28 + x8); fiat_p384_mulx_u64(&x30, &x31, x17, UINT64_C(0x100000001)); fiat_p384_mulx_u64(&x32, &x33, x30, UINT64_C(0xffffffffffffffff)); fiat_p384_mulx_u64(&x34, &x35, x30, UINT64_C(0xffffffffffffffff)); fiat_p384_mulx_u64(&x36, &x37, x30, UINT64_C(0xffffffffffffffff)); fiat_p384_mulx_u64(&x38, &x39, x30, UINT64_C(0xfffffffffffffffe)); fiat_p384_mulx_u64(&x40, &x41, x30, UINT64_C(0xffffffff00000000)); fiat_p384_mulx_u64(&x42, &x43, x30, UINT32_C(0xffffffff)); fiat_p384_addcarryx_u64(&x44, &x45, 0x0, x43, x40); fiat_p384_addcarryx_u64(&x46, &x47, x45, x41, x38); fiat_p384_addcarryx_u64(&x48, &x49, x47, x39, x36); fiat_p384_addcarryx_u64(&x50, &x51, x49, x37, x34); fiat_p384_addcarryx_u64(&x52, &x53, x51, x35, x32); x54 = (x53 + x33); fiat_p384_addcarryx_u64(&x55, &x56, 0x0, x17, x42); fiat_p384_addcarryx_u64(&x57, &x58, x56, x19, x44); fiat_p384_addcarryx_u64(&x59, &x60, x58, x21, x46); fiat_p384_addcarryx_u64(&x61, &x62, x60, x23, x48); fiat_p384_addcarryx_u64(&x63, &x64, x62, x25, x50); fiat_p384_addcarryx_u64(&x65, &x66, x64, x27, x52); fiat_p384_addcarryx_u64(&x67, &x68, x66, x29, x54); fiat_p384_mulx_u64(&x69, &x70, x1, (arg2[5])); fiat_p384_mulx_u64(&x71, &x72, x1, (arg2[4])); fiat_p384_mulx_u64(&x73, &x74, x1, (arg2[3])); fiat_p384_mulx_u64(&x75, &x76, x1, (arg2[2])); fiat_p384_mulx_u64(&x77, &x78, x1, (arg2[1])); fiat_p384_mulx_u64(&x79, &x80, x1, (arg2[0])); fiat_p384_addcarryx_u64(&x81, &x82, 0x0, x80, x77); fiat_p384_addcarryx_u64(&x83, &x84, x82, x78, x75); fiat_p384_addcarryx_u64(&x85, &x86, x84, x76, x73); fiat_p384_addcarryx_u64(&x87, &x88, x86, x74, x71); fiat_p384_addcarryx_u64(&x89, &x90, x88, x72, x69); x91 = (x90 + x70); fiat_p384_addcarryx_u64(&x92, &x93, 0x0, x57, x79); fiat_p384_addcarryx_u64(&x94, &x95, x93, x59, x81); fiat_p384_addcarryx_u64(&x96, &x97, x95, x61, x83); fiat_p384_addcarryx_u64(&x98, &x99, x97, x63, x85); fiat_p384_addcarryx_u64(&x100, &x101, x99, x65, x87); fiat_p384_addcarryx_u64(&x102, &x103, x101, x67, x89); fiat_p384_addcarryx_u64(&x104, &x105, x103, x68, x91); fiat_p384_mulx_u64(&x106, &x107, x92, UINT64_C(0x100000001)); fiat_p384_mulx_u64(&x108, &x109, x106, UINT64_C(0xffffffffffffffff)); fiat_p384_mulx_u64(&x110, &x111, x106, UINT64_C(0xffffffffffffffff)); fiat_p384_mulx_u64(&x112, &x113, x106, UINT64_C(0xffffffffffffffff)); fiat_p384_mulx_u64(&x114, &x115, x106, UINT64_C(0xfffffffffffffffe)); fiat_p384_mulx_u64(&x116, &x117, x106, UINT64_C(0xffffffff00000000)); fiat_p384_mulx_u64(&x118, &x119, x106, UINT32_C(0xffffffff)); fiat_p384_addcarryx_u64(&x120, &x121, 0x0, x119, x116); fiat_p384_addcarryx_u64(&x122, &x123, x121, x117, x114); fiat_p384_addcarryx_u64(&x124, &x125, x123, x115, x112); fiat_p384_addcarryx_u64(&x126, &x127, x125, x113, x110); fiat_p384_addcarryx_u64(&x128, &x129, x127, x111, x108); x130 = (x129 + x109); fiat_p384_addcarryx_u64(&x131, &x132, 0x0, x92, x118); fiat_p384_addcarryx_u64(&x133, &x134, x132, x94, x120); fiat_p384_addcarryx_u64(&x135, &x136, x134, x96, x122); fiat_p384_addcarryx_u64(&x137, &x138, x136, x98, x124); fiat_p384_addcarryx_u64(&x139, &x140, x138, x100, x126); fiat_p384_addcarryx_u64(&x141, &x142, x140, x102, x128); fiat_p384_addcarryx_u64(&x143, &x144, x142, x104, x130); x145 = ((uint64_t)x144 + x105); fiat_p384_mulx_u64(&x146, &x147, x2, (arg2[5])); fiat_p384_mulx_u64(&x148, &x149, x2, (arg2[4])); fiat_p384_mulx_u64(&x150, &x151, x2, (arg2[3])); fiat_p384_mulx_u64(&x152, &x153, x2, (arg2[2])); fiat_p384_mulx_u64(&x154, &x155, x2, (arg2[1])); fiat_p384_mulx_u64(&x156, &x157, x2, (arg2[0])); fiat_p384_addcarryx_u64(&x158, &x159, 0x0, x157, x154); fiat_p384_addcarryx_u64(&x160, &x161, x159, x155, x152); fiat_p384_addcarryx_u64(&x162, &x163, x161, x153, x150); fiat_p384_addcarryx_u64(&x164, &x165, x163, x151, x148); fiat_p384_addcarryx_u64(&x166, &x167, x165, x149, x146); x168 = (x167 + x147); fiat_p384_addcarryx_u64(&x169, &x170, 0x0, x133, x156); fiat_p384_addcarryx_u64(&x171, &x172, x170, x135, x158); fiat_p384_addcarryx_u64(&x173, &x174, x172, x137, x160); fiat_p384_addcarryx_u64(&x175, &x176, x174, x139, x162); fiat_p384_addcarryx_u64(&x177, &x178, x176, x141, x164); fiat_p384_addcarryx_u64(&x179, &x180, x178, x143, x166); fiat_p384_addcarryx_u64(&x181, &x182, x180, x145, x168); fiat_p384_mulx_u64(&x183, &x184, x169, UINT64_C(0x100000001)); fiat_p384_mulx_u64(&x185, &x186, x183, UINT64_C(0xffffffffffffffff)); fiat_p384_mulx_u64(&x187, &x188, x183, UINT64_C(0xffffffffffffffff)); fiat_p384_mulx_u64(&x189, &x190, x183, UINT64_C(0xffffffffffffffff)); fiat_p384_mulx_u64(&x191, &x192, x183, UINT64_C(0xfffffffffffffffe)); fiat_p384_mulx_u64(&x193, &x194, x183, UINT64_C(0xffffffff00000000)); fiat_p384_mulx_u64(&x195, &x196, x183, UINT32_C(0xffffffff)); fiat_p384_addcarryx_u64(&x197, &x198, 0x0, x196, x193); fiat_p384_addcarryx_u64(&x199, &x200, x198, x194, x191); fiat_p384_addcarryx_u64(&x201, &x202, x200, x192, x189); fiat_p384_addcarryx_u64(&x203, &x204, x202, x190, x187); fiat_p384_addcarryx_u64(&x205, &x206, x204, x188, x185); x207 = (x206 + x186); fiat_p384_addcarryx_u64(&x208, &x209, 0x0, x169, x195); fiat_p384_addcarryx_u64(&x210, &x211, x209, x171, x197); fiat_p384_addcarryx_u64(&x212, &x213, x211, x173, x199); fiat_p384_addcarryx_u64(&x214, &x215, x213, x175, x201); fiat_p384_addcarryx_u64(&x216, &x217, x215, x177, x203); fiat_p384_addcarryx_u64(&x218, &x219, x217, x179, x205); fiat_p384_addcarryx_u64(&x220, &x221, x219, x181, x207); x222 = ((uint64_t)x221 + x182); fiat_p384_mulx_u64(&x223, &x224, x3, (arg2[5])); fiat_p384_mulx_u64(&x225, &x226, x3, (arg2[4])); fiat_p384_mulx_u64(&x227, &x228, x3, (arg2[3])); fiat_p384_mulx_u64(&x229, &x230, x3, (arg2[2])); fiat_p384_mulx_u64(&x231, &x232, x3, (arg2[1])); fiat_p384_mulx_u64(&x233, &x234, x3, (arg2[0])); fiat_p384_addcarryx_u64(&x235, &x236, 0x0, x234, x231); fiat_p384_addcarryx_u64(&x237, &x238, x236, x232, x229); fiat_p384_addcarryx_u64(&x239, &x240, x238, x230, x227); fiat_p384_addcarryx_u64(&x241, &x242, x240, x228, x225); fiat_p384_addcarryx_u64(&x243, &x244, x242, x226, x223); x245 = (x244 + x224); fiat_p384_addcarryx_u64(&x246, &x247, 0x0, x210, x233); fiat_p384_addcarryx_u64(&x248, &x249, x247, x212, x235); fiat_p384_addcarryx_u64(&x250, &x251, x249, x214, x237); fiat_p384_addcarryx_u64(&x252, &x253, x251, x216, x239); fiat_p384_addcarryx_u64(&x254, &x255, x253, x218, x241); fiat_p384_addcarryx_u64(&x256, &x257, x255, x220, x243); fiat_p384_addcarryx_u64(&x258, &x259, x257, x222, x245); fiat_p384_mulx_u64(&x260, &x261, x246, UINT64_C(0x100000001)); fiat_p384_mulx_u64(&x262, &x263, x260, UINT64_C(0xffffffffffffffff)); fiat_p384_mulx_u64(&x264, &x265, x260, UINT64_C(0xffffffffffffffff)); fiat_p384_mulx_u64(&x266, &x267, x260, UINT64_C(0xffffffffffffffff)); fiat_p384_mulx_u64(&x268, &x269, x260, UINT64_C(0xfffffffffffffffe)); fiat_p384_mulx_u64(&x270, &x271, x260, UINT64_C(0xffffffff00000000)); fiat_p384_mulx_u64(&x272, &x273, x260, UINT32_C(0xffffffff)); fiat_p384_addcarryx_u64(&x274, &x275, 0x0, x273, x270); fiat_p384_addcarryx_u64(&x276, &x277, x275, x271, x268); fiat_p384_addcarryx_u64(&x278, &x279, x277, x269, x266); fiat_p384_addcarryx_u64(&x280, &x281, x279, x267, x264); fiat_p384_addcarryx_u64(&x282, &x283, x281, x265, x262); x284 = (x283 + x263); fiat_p384_addcarryx_u64(&x285, &x286, 0x0, x246, x272); fiat_p384_addcarryx_u64(&x287, &x288, x286, x248, x274); fiat_p384_addcarryx_u64(&x289, &x290, x288, x250, x276); fiat_p384_addcarryx_u64(&x291, &x292, x290, x252, x278); fiat_p384_addcarryx_u64(&x293, &x294, x292, x254, x280); fiat_p384_addcarryx_u64(&x295, &x296, x294, x256, x282); fiat_p384_addcarryx_u64(&x297, &x298, x296, x258, x284); x299 = ((uint64_t)x298 + x259); fiat_p384_mulx_u64(&x300, &x301, x4, (arg2[5])); fiat_p384_mulx_u64(&x302, &x303, x4, (arg2[4])); fiat_p384_mulx_u64(&x304, &x305, x4, (arg2[3])); fiat_p384_mulx_u64(&x306, &x307, x4, (arg2[2])); fiat_p384_mulx_u64(&x308, &x309, x4, (arg2[1])); fiat_p384_mulx_u64(&x310, &x311, x4, (arg2[0])); fiat_p384_addcarryx_u64(&x312, &x313, 0x0, x311, x308); fiat_p384_addcarryx_u64(&x314, &x315, x313, x309, x306); fiat_p384_addcarryx_u64(&x316, &x317, x315, x307, x304); fiat_p384_addcarryx_u64(&x318, &x319, x317, x305, x302); fiat_p384_addcarryx_u64(&x320, &x321, x319, x303, x300); x322 = (x321 + x301); fiat_p384_addcarryx_u64(&x323, &x324, 0x0, x287, x310); fiat_p384_addcarryx_u64(&x325, &x326, x324, x289, x312); fiat_p384_addcarryx_u64(&x327, &x328, x326, x291, x314); fiat_p384_addcarryx_u64(&x329, &x330, x328, x293, x316); fiat_p384_addcarryx_u64(&x331, &x332, x330, x295, x318); fiat_p384_addcarryx_u64(&x333, &x334, x332, x297, x320); fiat_p384_addcarryx_u64(&x335, &x336, x334, x299, x322); fiat_p384_mulx_u64(&x337, &x338, x323, UINT64_C(0x100000001)); fiat_p384_mulx_u64(&x339, &x340, x337, UINT64_C(0xffffffffffffffff)); fiat_p384_mulx_u64(&x341, &x342, x337, UINT64_C(0xffffffffffffffff)); fiat_p384_mulx_u64(&x343, &x344, x337, UINT64_C(0xffffffffffffffff)); fiat_p384_mulx_u64(&x345, &x346, x337, UINT64_C(0xfffffffffffffffe)); fiat_p384_mulx_u64(&x347, &x348, x337, UINT64_C(0xffffffff00000000)); fiat_p384_mulx_u64(&x349, &x350, x337, UINT32_C(0xffffffff)); fiat_p384_addcarryx_u64(&x351, &x352, 0x0, x350, x347); fiat_p384_addcarryx_u64(&x353, &x354, x352, x348, x345); fiat_p384_addcarryx_u64(&x355, &x356, x354, x346, x343); fiat_p384_addcarryx_u64(&x357, &x358, x356, x344, x341); fiat_p384_addcarryx_u64(&x359, &x360, x358, x342, x339); x361 = (x360 + x340); fiat_p384_addcarryx_u64(&x362, &x363, 0x0, x323, x349); fiat_p384_addcarryx_u64(&x364, &x365, x363, x325, x351); fiat_p384_addcarryx_u64(&x366, &x367, x365, x327, x353); fiat_p384_addcarryx_u64(&x368, &x369, x367, x329, x355); fiat_p384_addcarryx_u64(&x370, &x371, x369, x331, x357); fiat_p384_addcarryx_u64(&x372, &x373, x371, x333, x359); fiat_p384_addcarryx_u64(&x374, &x375, x373, x335, x361); x376 = ((uint64_t)x375 + x336); fiat_p384_mulx_u64(&x377, &x378, x5, (arg2[5])); fiat_p384_mulx_u64(&x379, &x380, x5, (arg2[4])); fiat_p384_mulx_u64(&x381, &x382, x5, (arg2[3])); fiat_p384_mulx_u64(&x383, &x384, x5, (arg2[2])); fiat_p384_mulx_u64(&x385, &x386, x5, (arg2[1])); fiat_p384_mulx_u64(&x387, &x388, x5, (arg2[0])); fiat_p384_addcarryx_u64(&x389, &x390, 0x0, x388, x385); fiat_p384_addcarryx_u64(&x391, &x392, x390, x386, x383); fiat_p384_addcarryx_u64(&x393, &x394, x392, x384, x381); fiat_p384_addcarryx_u64(&x395, &x396, x394, x382, x379); fiat_p384_addcarryx_u64(&x397, &x398, x396, x380, x377); x399 = (x398 + x378); fiat_p384_addcarryx_u64(&x400, &x401, 0x0, x364, x387); fiat_p384_addcarryx_u64(&x402, &x403, x401, x366, x389); fiat_p384_addcarryx_u64(&x404, &x405, x403, x368, x391); fiat_p384_addcarryx_u64(&x406, &x407, x405, x370, x393); fiat_p384_addcarryx_u64(&x408, &x409, x407, x372, x395); fiat_p384_addcarryx_u64(&x410, &x411, x409, x374, x397); fiat_p384_addcarryx_u64(&x412, &x413, x411, x376, x399); fiat_p384_mulx_u64(&x414, &x415, x400, UINT64_C(0x100000001)); fiat_p384_mulx_u64(&x416, &x417, x414, UINT64_C(0xffffffffffffffff)); fiat_p384_mulx_u64(&x418, &x419, x414, UINT64_C(0xffffffffffffffff)); fiat_p384_mulx_u64(&x420, &x421, x414, UINT64_C(0xffffffffffffffff)); fiat_p384_mulx_u64(&x422, &x423, x414, UINT64_C(0xfffffffffffffffe)); fiat_p384_mulx_u64(&x424, &x425, x414, UINT64_C(0xffffffff00000000)); fiat_p384_mulx_u64(&x426, &x427, x414, UINT32_C(0xffffffff)); fiat_p384_addcarryx_u64(&x428, &x429, 0x0, x427, x424); fiat_p384_addcarryx_u64(&x430, &x431, x429, x425, x422); fiat_p384_addcarryx_u64(&x432, &x433, x431, x423, x420); fiat_p384_addcarryx_u64(&x434, &x435, x433, x421, x418); fiat_p384_addcarryx_u64(&x436, &x437, x435, x419, x416); x438 = (x437 + x417); fiat_p384_addcarryx_u64(&x439, &x440, 0x0, x400, x426); fiat_p384_addcarryx_u64(&x441, &x442, x440, x402, x428); fiat_p384_addcarryx_u64(&x443, &x444, x442, x404, x430); fiat_p384_addcarryx_u64(&x445, &x446, x444, x406, x432); fiat_p384_addcarryx_u64(&x447, &x448, x446, x408, x434); fiat_p384_addcarryx_u64(&x449, &x450, x448, x410, x436); fiat_p384_addcarryx_u64(&x451, &x452, x450, x412, x438); x453 = ((uint64_t)x452 + x413); fiat_p384_subborrowx_u64(&x454, &x455, 0x0, x441, UINT32_C(0xffffffff)); fiat_p384_subborrowx_u64(&x456, &x457, x455, x443, UINT64_C(0xffffffff00000000)); fiat_p384_subborrowx_u64(&x458, &x459, x457, x445, UINT64_C(0xfffffffffffffffe)); fiat_p384_subborrowx_u64(&x460, &x461, x459, x447, UINT64_C(0xffffffffffffffff)); fiat_p384_subborrowx_u64(&x462, &x463, x461, x449, UINT64_C(0xffffffffffffffff)); fiat_p384_subborrowx_u64(&x464, &x465, x463, x451, UINT64_C(0xffffffffffffffff)); fiat_p384_subborrowx_u64(&x466, &x467, x465, x453, 0x0); fiat_p384_cmovznz_u64(&x468, x467, x454, x441); fiat_p384_cmovznz_u64(&x469, x467, x456, x443); fiat_p384_cmovznz_u64(&x470, x467, x458, x445); fiat_p384_cmovznz_u64(&x471, x467, x460, x447); fiat_p384_cmovznz_u64(&x472, x467, x462, x449); fiat_p384_cmovznz_u64(&x473, x467, x464, x451); out1[0] = x468; out1[1] = x469; out1[2] = x470; out1[3] = x471; out1[4] = x472; out1[5] = x473; } /* * The function fiat_p384_square squares a field element in the Montgomery domain. * * Preconditions: * 0 ≤ eval arg1 < m * Postconditions: * eval (from_montgomery out1) mod m = (eval (from_montgomery arg1) * eval (from_montgomery arg1)) mod m * 0 ≤ eval out1 < m * */ static void fiat_p384_square(fiat_p384_montgomery_domain_field_element out1, const fiat_p384_montgomery_domain_field_element arg1) { uint64_t x1; uint64_t x2; uint64_t x3; uint64_t x4; uint64_t x5; uint64_t x6; uint64_t x7; uint64_t x8; uint64_t x9; uint64_t x10; uint64_t x11; uint64_t x12; uint64_t x13; uint64_t x14; uint64_t x15; uint64_t x16; uint64_t x17; uint64_t x18; uint64_t x19; fiat_p384_uint1 x20; uint64_t x21; fiat_p384_uint1 x22; uint64_t x23; fiat_p384_uint1 x24; uint64_t x25; fiat_p384_uint1 x26; uint64_t x27; fiat_p384_uint1 x28; uint64_t x29; uint64_t x30; uint64_t x31; uint64_t x32; uint64_t x33; uint64_t x34; uint64_t x35; uint64_t x36; uint64_t x37; uint64_t x38; uint64_t x39; uint64_t x40; uint64_t x41; uint64_t x42; uint64_t x43; uint64_t x44; fiat_p384_uint1 x45; uint64_t x46; fiat_p384_uint1 x47; uint64_t x48; fiat_p384_uint1 x49; uint64_t x50; fiat_p384_uint1 x51; uint64_t x52; fiat_p384_uint1 x53; uint64_t x54; uint64_t x55; fiat_p384_uint1 x56; uint64_t x57; fiat_p384_uint1 x58; uint64_t x59; fiat_p384_uint1 x60; uint64_t x61; fiat_p384_uint1 x62; uint64_t x63; fiat_p384_uint1 x64; uint64_t x65; fiat_p384_uint1 x66; uint64_t x67; fiat_p384_uint1 x68; uint64_t x69; uint64_t x70; uint64_t x71; uint64_t x72; uint64_t x73; uint64_t x74; uint64_t x75; uint64_t x76; uint64_t x77; uint64_t x78; uint64_t x79; uint64_t x80; uint64_t x81; fiat_p384_uint1 x82; uint64_t x83; fiat_p384_uint1 x84; uint64_t x85; fiat_p384_uint1 x86; uint64_t x87; fiat_p384_uint1 x88; uint64_t x89; fiat_p384_uint1 x90; uint64_t x91; uint64_t x92; fiat_p384_uint1 x93; uint64_t x94; fiat_p384_uint1 x95; uint64_t x96; fiat_p384_uint1 x97; uint64_t x98; fiat_p384_uint1 x99; uint64_t x100; fiat_p384_uint1 x101; uint64_t x102; fiat_p384_uint1 x103; uint64_t x104; fiat_p384_uint1 x105; uint64_t x106; uint64_t x107; uint64_t x108; uint64_t x109; uint64_t x110; uint64_t x111; uint64_t x112; uint64_t x113; uint64_t x114; uint64_t x115; uint64_t x116; uint64_t x117; uint64_t x118; uint64_t x119; uint64_t x120; fiat_p384_uint1 x121; uint64_t x122; fiat_p384_uint1 x123; uint64_t x124; fiat_p384_uint1 x125; uint64_t x126; fiat_p384_uint1 x127; uint64_t x128; fiat_p384_uint1 x129; uint64_t x130; uint64_t x131; fiat_p384_uint1 x132; uint64_t x133; fiat_p384_uint1 x134; uint64_t x135; fiat_p384_uint1 x136; uint64_t x137; fiat_p384_uint1 x138; uint64_t x139; fiat_p384_uint1 x140; uint64_t x141; fiat_p384_uint1 x142; uint64_t x143; fiat_p384_uint1 x144; uint64_t x145; uint64_t x146; uint64_t x147; uint64_t x148; uint64_t x149; uint64_t x150; uint64_t x151; uint64_t x152; uint64_t x153; uint64_t x154; uint64_t x155; uint64_t x156; uint64_t x157; uint64_t x158; fiat_p384_uint1 x159; uint64_t x160; fiat_p384_uint1 x161; uint64_t x162; fiat_p384_uint1 x163; uint64_t x164; fiat_p384_uint1 x165; uint64_t x166; fiat_p384_uint1 x167; uint64_t x168; uint64_t x169; fiat_p384_uint1 x170; uint64_t x171; fiat_p384_uint1 x172; uint64_t x173; fiat_p384_uint1 x174; uint64_t x175; fiat_p384_uint1 x176; uint64_t x177; fiat_p384_uint1 x178; uint64_t x179; fiat_p384_uint1 x180; uint64_t x181; fiat_p384_uint1 x182; uint64_t x183; uint64_t x184; uint64_t x185; uint64_t x186; uint64_t x187; uint64_t x188; uint64_t x189; uint64_t x190; uint64_t x191; uint64_t x192; uint64_t x193; uint64_t x194; uint64_t x195; uint64_t x196; uint64_t x197; fiat_p384_uint1 x198; uint64_t x199; fiat_p384_uint1 x200; uint64_t x201; fiat_p384_uint1 x202; uint64_t x203; fiat_p384_uint1 x204; uint64_t x205; fiat_p384_uint1 x206; uint64_t x207; uint64_t x208; fiat_p384_uint1 x209; uint64_t x210; fiat_p384_uint1 x211; uint64_t x212; fiat_p384_uint1 x213; uint64_t x214; fiat_p384_uint1 x215; uint64_t x216; fiat_p384_uint1 x217; uint64_t x218; fiat_p384_uint1 x219; uint64_t x220; fiat_p384_uint1 x221; uint64_t x222; uint64_t x223; uint64_t x224; uint64_t x225; uint64_t x226; uint64_t x227; uint64_t x228; uint64_t x229; uint64_t x230; uint64_t x231; uint64_t x232; uint64_t x233; uint64_t x234; uint64_t x235; fiat_p384_uint1 x236; uint64_t x237; fiat_p384_uint1 x238; uint64_t x239; fiat_p384_uint1 x240; uint64_t x241; fiat_p384_uint1 x242; uint64_t x243; fiat_p384_uint1 x244; uint64_t x245; uint64_t x246; fiat_p384_uint1 x247; uint64_t x248; fiat_p384_uint1 x249; uint64_t x250; fiat_p384_uint1 x251; uint64_t x252; fiat_p384_uint1 x253; uint64_t x254; fiat_p384_uint1 x255; uint64_t x256; fiat_p384_uint1 x257; uint64_t x258; fiat_p384_uint1 x259; uint64_t x260; uint64_t x261; uint64_t x262; uint64_t x263; uint64_t x264; uint64_t x265; uint64_t x266; uint64_t x267; uint64_t x268; uint64_t x269; uint64_t x270; uint64_t x271; uint64_t x272; uint64_t x273; uint64_t x274; fiat_p384_uint1 x275; uint64_t x276; fiat_p384_uint1 x277; uint64_t x278; fiat_p384_uint1 x279; uint64_t x280; fiat_p384_uint1 x281; uint64_t x282; fiat_p384_uint1 x283; uint64_t x284; uint64_t x285; fiat_p384_uint1 x286; uint64_t x287; fiat_p384_uint1 x288; uint64_t x289; fiat_p384_uint1 x290; uint64_t x291; fiat_p384_uint1 x292; uint64_t x293; fiat_p384_uint1 x294; uint64_t x295; fiat_p384_uint1 x296; uint64_t x297; fiat_p384_uint1 x298; uint64_t x299; uint64_t x300; uint64_t x301; uint64_t x302; uint64_t x303; uint64_t x304; uint64_t x305; uint64_t x306; uint64_t x307; uint64_t x308; uint64_t x309; uint64_t x310; uint64_t x311; uint64_t x312; fiat_p384_uint1 x313; uint64_t x314; fiat_p384_uint1 x315; uint64_t x316; fiat_p384_uint1 x317; uint64_t x318; fiat_p384_uint1 x319; uint64_t x320; fiat_p384_uint1 x321; uint64_t x322; uint64_t x323; fiat_p384_uint1 x324; uint64_t x325; fiat_p384_uint1 x326; uint64_t x327; fiat_p384_uint1 x328; uint64_t x329; fiat_p384_uint1 x330; uint64_t x331; fiat_p384_uint1 x332; uint64_t x333; fiat_p384_uint1 x334; uint64_t x335; fiat_p384_uint1 x336; uint64_t x337; uint64_t x338; uint64_t x339; uint64_t x340; uint64_t x341; uint64_t x342; uint64_t x343; uint64_t x344; uint64_t x345; uint64_t x346; uint64_t x347; uint64_t x348; uint64_t x349; uint64_t x350; uint64_t x351; fiat_p384_uint1 x352; uint64_t x353; fiat_p384_uint1 x354; uint64_t x355; fiat_p384_uint1 x356; uint64_t x357; fiat_p384_uint1 x358; uint64_t x359; fiat_p384_uint1 x360; uint64_t x361; uint64_t x362; fiat_p384_uint1 x363; uint64_t x364; fiat_p384_uint1 x365; uint64_t x366; fiat_p384_uint1 x367; uint64_t x368; fiat_p384_uint1 x369; uint64_t x370; fiat_p384_uint1 x371; uint64_t x372; fiat_p384_uint1 x373; uint64_t x374; fiat_p384_uint1 x375; uint64_t x376; uint64_t x377; uint64_t x378; uint64_t x379; uint64_t x380; uint64_t x381; uint64_t x382; uint64_t x383; uint64_t x384; uint64_t x385; uint64_t x386; uint64_t x387; uint64_t x388; uint64_t x389; fiat_p384_uint1 x390; uint64_t x391; fiat_p384_uint1 x392; uint64_t x393; fiat_p384_uint1 x394; uint64_t x395; fiat_p384_uint1 x396; uint64_t x397; fiat_p384_uint1 x398; uint64_t x399; uint64_t x400; fiat_p384_uint1 x401; uint64_t x402; fiat_p384_uint1 x403; uint64_t x404; fiat_p384_uint1 x405; uint64_t x406; fiat_p384_uint1 x407; uint64_t x408; fiat_p384_uint1 x409; uint64_t x410; fiat_p384_uint1 x411; uint64_t x412; fiat_p384_uint1 x413; uint64_t x414; uint64_t x415; uint64_t x416; uint64_t x417; uint64_t x418; uint64_t x419; uint64_t x420; uint64_t x421; uint64_t x422; uint64_t x423; uint64_t x424; uint64_t x425; uint64_t x426; uint64_t x427; uint64_t x428; fiat_p384_uint1 x429; uint64_t x430; fiat_p384_uint1 x431; uint64_t x432; fiat_p384_uint1 x433; uint64_t x434; fiat_p384_uint1 x435; uint64_t x436; fiat_p384_uint1 x437; uint64_t x438; uint64_t x439; fiat_p384_uint1 x440; uint64_t x441; fiat_p384_uint1 x442; uint64_t x443; fiat_p384_uint1 x444; uint64_t x445; fiat_p384_uint1 x446; uint64_t x447; fiat_p384_uint1 x448; uint64_t x449; fiat_p384_uint1 x450; uint64_t x451; fiat_p384_uint1 x452; uint64_t x453; uint64_t x454; fiat_p384_uint1 x455; uint64_t x456; fiat_p384_uint1 x457; uint64_t x458; fiat_p384_uint1 x459; uint64_t x460; fiat_p384_uint1 x461; uint64_t x462; fiat_p384_uint1 x463; uint64_t x464; fiat_p384_uint1 x465; uint64_t x466; fiat_p384_uint1 x467; uint64_t x468; uint64_t x469; uint64_t x470; uint64_t x471; uint64_t x472; uint64_t x473; x1 = (arg1[1]); x2 = (arg1[2]); x3 = (arg1[3]); x4 = (arg1[4]); x5 = (arg1[5]); x6 = (arg1[0]); fiat_p384_mulx_u64(&x7, &x8, x6, (arg1[5])); fiat_p384_mulx_u64(&x9, &x10, x6, (arg1[4])); fiat_p384_mulx_u64(&x11, &x12, x6, (arg1[3])); fiat_p384_mulx_u64(&x13, &x14, x6, (arg1[2])); fiat_p384_mulx_u64(&x15, &x16, x6, (arg1[1])); fiat_p384_mulx_u64(&x17, &x18, x6, (arg1[0])); fiat_p384_addcarryx_u64(&x19, &x20, 0x0, x18, x15); fiat_p384_addcarryx_u64(&x21, &x22, x20, x16, x13); fiat_p384_addcarryx_u64(&x23, &x24, x22, x14, x11); fiat_p384_addcarryx_u64(&x25, &x26, x24, x12, x9); fiat_p384_addcarryx_u64(&x27, &x28, x26, x10, x7); x29 = (x28 + x8); fiat_p384_mulx_u64(&x30, &x31, x17, UINT64_C(0x100000001)); fiat_p384_mulx_u64(&x32, &x33, x30, UINT64_C(0xffffffffffffffff)); fiat_p384_mulx_u64(&x34, &x35, x30, UINT64_C(0xffffffffffffffff)); fiat_p384_mulx_u64(&x36, &x37, x30, UINT64_C(0xffffffffffffffff)); fiat_p384_mulx_u64(&x38, &x39, x30, UINT64_C(0xfffffffffffffffe)); fiat_p384_mulx_u64(&x40, &x41, x30, UINT64_C(0xffffffff00000000)); fiat_p384_mulx_u64(&x42, &x43, x30, UINT32_C(0xffffffff)); fiat_p384_addcarryx_u64(&x44, &x45, 0x0, x43, x40); fiat_p384_addcarryx_u64(&x46, &x47, x45, x41, x38); fiat_p384_addcarryx_u64(&x48, &x49, x47, x39, x36); fiat_p384_addcarryx_u64(&x50, &x51, x49, x37, x34); fiat_p384_addcarryx_u64(&x52, &x53, x51, x35, x32); x54 = (x53 + x33); fiat_p384_addcarryx_u64(&x55, &x56, 0x0, x17, x42); fiat_p384_addcarryx_u64(&x57, &x58, x56, x19, x44); fiat_p384_addcarryx_u64(&x59, &x60, x58, x21, x46); fiat_p384_addcarryx_u64(&x61, &x62, x60, x23, x48); fiat_p384_addcarryx_u64(&x63, &x64, x62, x25, x50); fiat_p384_addcarryx_u64(&x65, &x66, x64, x27, x52); fiat_p384_addcarryx_u64(&x67, &x68, x66, x29, x54); fiat_p384_mulx_u64(&x69, &x70, x1, (arg1[5])); fiat_p384_mulx_u64(&x71, &x72, x1, (arg1[4])); fiat_p384_mulx_u64(&x73, &x74, x1, (arg1[3])); fiat_p384_mulx_u64(&x75, &x76, x1, (arg1[2])); fiat_p384_mulx_u64(&x77, &x78, x1, (arg1[1])); fiat_p384_mulx_u64(&x79, &x80, x1, (arg1[0])); fiat_p384_addcarryx_u64(&x81, &x82, 0x0, x80, x77); fiat_p384_addcarryx_u64(&x83, &x84, x82, x78, x75); fiat_p384_addcarryx_u64(&x85, &x86, x84, x76, x73); fiat_p384_addcarryx_u64(&x87, &x88, x86, x74, x71); fiat_p384_addcarryx_u64(&x89, &x90, x88, x72, x69); x91 = (x90 + x70); fiat_p384_addcarryx_u64(&x92, &x93, 0x0, x57, x79); fiat_p384_addcarryx_u64(&x94, &x95, x93, x59, x81); fiat_p384_addcarryx_u64(&x96, &x97, x95, x61, x83); fiat_p384_addcarryx_u64(&x98, &x99, x97, x63, x85); fiat_p384_addcarryx_u64(&x100, &x101, x99, x65, x87); fiat_p384_addcarryx_u64(&x102, &x103, x101, x67, x89); fiat_p384_addcarryx_u64(&x104, &x105, x103, x68, x91); fiat_p384_mulx_u64(&x106, &x107, x92, UINT64_C(0x100000001)); fiat_p384_mulx_u64(&x108, &x109, x106, UINT64_C(0xffffffffffffffff)); fiat_p384_mulx_u64(&x110, &x111, x106, UINT64_C(0xffffffffffffffff)); fiat_p384_mulx_u64(&x112, &x113, x106, UINT64_C(0xffffffffffffffff)); fiat_p384_mulx_u64(&x114, &x115, x106, UINT64_C(0xfffffffffffffffe)); fiat_p384_mulx_u64(&x116, &x117, x106, UINT64_C(0xffffffff00000000)); fiat_p384_mulx_u64(&x118, &x119, x106, UINT32_C(0xffffffff)); fiat_p384_addcarryx_u64(&x120, &x121, 0x0, x119, x116); fiat_p384_addcarryx_u64(&x122, &x123, x121, x117, x114); fiat_p384_addcarryx_u64(&x124, &x125, x123, x115, x112); fiat_p384_addcarryx_u64(&x126, &x127, x125, x113, x110); fiat_p384_addcarryx_u64(&x128, &x129, x127, x111, x108); x130 = (x129 + x109); fiat_p384_addcarryx_u64(&x131, &x132, 0x0, x92, x118); fiat_p384_addcarryx_u64(&x133, &x134, x132, x94, x120); fiat_p384_addcarryx_u64(&x135, &x136, x134, x96, x122); fiat_p384_addcarryx_u64(&x137, &x138, x136, x98, x124); fiat_p384_addcarryx_u64(&x139, &x140, x138, x100, x126); fiat_p384_addcarryx_u64(&x141, &x142, x140, x102, x128); fiat_p384_addcarryx_u64(&x143, &x144, x142, x104, x130); x145 = ((uint64_t)x144 + x105); fiat_p384_mulx_u64(&x146, &x147, x2, (arg1[5])); fiat_p384_mulx_u64(&x148, &x149, x2, (arg1[4])); fiat_p384_mulx_u64(&x150, &x151, x2, (arg1[3])); fiat_p384_mulx_u64(&x152, &x153, x2, (arg1[2])); fiat_p384_mulx_u64(&x154, &x155, x2, (arg1[1])); fiat_p384_mulx_u64(&x156, &x157, x2, (arg1[0])); fiat_p384_addcarryx_u64(&x158, &x159, 0x0, x157, x154); fiat_p384_addcarryx_u64(&x160, &x161, x159, x155, x152); fiat_p384_addcarryx_u64(&x162, &x163, x161, x153, x150); fiat_p384_addcarryx_u64(&x164, &x165, x163, x151, x148); fiat_p384_addcarryx_u64(&x166, &x167, x165, x149, x146); x168 = (x167 + x147); fiat_p384_addcarryx_u64(&x169, &x170, 0x0, x133, x156); fiat_p384_addcarryx_u64(&x171, &x172, x170, x135, x158); fiat_p384_addcarryx_u64(&x173, &x174, x172, x137, x160); fiat_p384_addcarryx_u64(&x175, &x176, x174, x139, x162); fiat_p384_addcarryx_u64(&x177, &x178, x176, x141, x164); fiat_p384_addcarryx_u64(&x179, &x180, x178, x143, x166); fiat_p384_addcarryx_u64(&x181, &x182, x180, x145, x168); fiat_p384_mulx_u64(&x183, &x184, x169, UINT64_C(0x100000001)); fiat_p384_mulx_u64(&x185, &x186, x183, UINT64_C(0xffffffffffffffff)); fiat_p384_mulx_u64(&x187, &x188, x183, UINT64_C(0xffffffffffffffff)); fiat_p384_mulx_u64(&x189, &x190, x183, UINT64_C(0xffffffffffffffff)); fiat_p384_mulx_u64(&x191, &x192, x183, UINT64_C(0xfffffffffffffffe)); fiat_p384_mulx_u64(&x193, &x194, x183, UINT64_C(0xffffffff00000000)); fiat_p384_mulx_u64(&x195, &x196, x183, UINT32_C(0xffffffff)); fiat_p384_addcarryx_u64(&x197, &x198, 0x0, x196, x193); fiat_p384_addcarryx_u64(&x199, &x200, x198, x194, x191); fiat_p384_addcarryx_u64(&x201, &x202, x200, x192, x189); fiat_p384_addcarryx_u64(&x203, &x204, x202, x190, x187); fiat_p384_addcarryx_u64(&x205, &x206, x204, x188, x185); x207 = (x206 + x186); fiat_p384_addcarryx_u64(&x208, &x209, 0x0, x169, x195); fiat_p384_addcarryx_u64(&x210, &x211, x209, x171, x197); fiat_p384_addcarryx_u64(&x212, &x213, x211, x173, x199); fiat_p384_addcarryx_u64(&x214, &x215, x213, x175, x201); fiat_p384_addcarryx_u64(&x216, &x217, x215, x177, x203); fiat_p384_addcarryx_u64(&x218, &x219, x217, x179, x205); fiat_p384_addcarryx_u64(&x220, &x221, x219, x181, x207); x222 = ((uint64_t)x221 + x182); fiat_p384_mulx_u64(&x223, &x224, x3, (arg1[5])); fiat_p384_mulx_u64(&x225, &x226, x3, (arg1[4])); fiat_p384_mulx_u64(&x227, &x228, x3, (arg1[3])); fiat_p384_mulx_u64(&x229, &x230, x3, (arg1[2])); fiat_p384_mulx_u64(&x231, &x232, x3, (arg1[1])); fiat_p384_mulx_u64(&x233, &x234, x3, (arg1[0])); fiat_p384_addcarryx_u64(&x235, &x236, 0x0, x234, x231); fiat_p384_addcarryx_u64(&x237, &x238, x236, x232, x229); fiat_p384_addcarryx_u64(&x239, &x240, x238, x230, x227); fiat_p384_addcarryx_u64(&x241, &x242, x240, x228, x225); fiat_p384_addcarryx_u64(&x243, &x244, x242, x226, x223); x245 = (x244 + x224); fiat_p384_addcarryx_u64(&x246, &x247, 0x0, x210, x233); fiat_p384_addcarryx_u64(&x248, &x249, x247, x212, x235); fiat_p384_addcarryx_u64(&x250, &x251, x249, x214, x237); fiat_p384_addcarryx_u64(&x252, &x253, x251, x216, x239); fiat_p384_addcarryx_u64(&x254, &x255, x253, x218, x241); fiat_p384_addcarryx_u64(&x256, &x257, x255, x220, x243); fiat_p384_addcarryx_u64(&x258, &x259, x257, x222, x245); fiat_p384_mulx_u64(&x260, &x261, x246, UINT64_C(0x100000001)); fiat_p384_mulx_u64(&x262, &x263, x260, UINT64_C(0xffffffffffffffff)); fiat_p384_mulx_u64(&x264, &x265, x260, UINT64_C(0xffffffffffffffff)); fiat_p384_mulx_u64(&x266, &x267, x260, UINT64_C(0xffffffffffffffff)); fiat_p384_mulx_u64(&x268, &x269, x260, UINT64_C(0xfffffffffffffffe)); fiat_p384_mulx_u64(&x270, &x271, x260, UINT64_C(0xffffffff00000000)); fiat_p384_mulx_u64(&x272, &x273, x260, UINT32_C(0xffffffff)); fiat_p384_addcarryx_u64(&x274, &x275, 0x0, x273, x270); fiat_p384_addcarryx_u64(&x276, &x277, x275, x271, x268); fiat_p384_addcarryx_u64(&x278, &x279, x277, x269, x266); fiat_p384_addcarryx_u64(&x280, &x281, x279, x267, x264); fiat_p384_addcarryx_u64(&x282, &x283, x281, x265, x262); x284 = (x283 + x263); fiat_p384_addcarryx_u64(&x285, &x286, 0x0, x246, x272); fiat_p384_addcarryx_u64(&x287, &x288, x286, x248, x274); fiat_p384_addcarryx_u64(&x289, &x290, x288, x250, x276); fiat_p384_addcarryx_u64(&x291, &x292, x290, x252, x278); fiat_p384_addcarryx_u64(&x293, &x294, x292, x254, x280); fiat_p384_addcarryx_u64(&x295, &x296, x294, x256, x282); fiat_p384_addcarryx_u64(&x297, &x298, x296, x258, x284); x299 = ((uint64_t)x298 + x259); fiat_p384_mulx_u64(&x300, &x301, x4, (arg1[5])); fiat_p384_mulx_u64(&x302, &x303, x4, (arg1[4])); fiat_p384_mulx_u64(&x304, &x305, x4, (arg1[3])); fiat_p384_mulx_u64(&x306, &x307, x4, (arg1[2])); fiat_p384_mulx_u64(&x308, &x309, x4, (arg1[1])); fiat_p384_mulx_u64(&x310, &x311, x4, (arg1[0])); fiat_p384_addcarryx_u64(&x312, &x313, 0x0, x311, x308); fiat_p384_addcarryx_u64(&x314, &x315, x313, x309, x306); fiat_p384_addcarryx_u64(&x316, &x317, x315, x307, x304); fiat_p384_addcarryx_u64(&x318, &x319, x317, x305, x302); fiat_p384_addcarryx_u64(&x320, &x321, x319, x303, x300); x322 = (x321 + x301); fiat_p384_addcarryx_u64(&x323, &x324, 0x0, x287, x310); fiat_p384_addcarryx_u64(&x325, &x326, x324, x289, x312); fiat_p384_addcarryx_u64(&x327, &x328, x326, x291, x314); fiat_p384_addcarryx_u64(&x329, &x330, x328, x293, x316); fiat_p384_addcarryx_u64(&x331, &x332, x330, x295, x318); fiat_p384_addcarryx_u64(&x333, &x334, x332, x297, x320); fiat_p384_addcarryx_u64(&x335, &x336, x334, x299, x322); fiat_p384_mulx_u64(&x337, &x338, x323, UINT64_C(0x100000001)); fiat_p384_mulx_u64(&x339, &x340, x337, UINT64_C(0xffffffffffffffff)); fiat_p384_mulx_u64(&x341, &x342, x337, UINT64_C(0xffffffffffffffff)); fiat_p384_mulx_u64(&x343, &x344, x337, UINT64_C(0xffffffffffffffff)); fiat_p384_mulx_u64(&x345, &x346, x337, UINT64_C(0xfffffffffffffffe)); fiat_p384_mulx_u64(&x347, &x348, x337, UINT64_C(0xffffffff00000000)); fiat_p384_mulx_u64(&x349, &x350, x337, UINT32_C(0xffffffff)); fiat_p384_addcarryx_u64(&x351, &x352, 0x0, x350, x347); fiat_p384_addcarryx_u64(&x353, &x354, x352, x348, x345); fiat_p384_addcarryx_u64(&x355, &x356, x354, x346, x343); fiat_p384_addcarryx_u64(&x357, &x358, x356, x344, x341); fiat_p384_addcarryx_u64(&x359, &x360, x358, x342, x339); x361 = (x360 + x340); fiat_p384_addcarryx_u64(&x362, &x363, 0x0, x323, x349); fiat_p384_addcarryx_u64(&x364, &x365, x363, x325, x351); fiat_p384_addcarryx_u64(&x366, &x367, x365, x327, x353); fiat_p384_addcarryx_u64(&x368, &x369, x367, x329, x355); fiat_p384_addcarryx_u64(&x370, &x371, x369, x331, x357); fiat_p384_addcarryx_u64(&x372, &x373, x371, x333, x359); fiat_p384_addcarryx_u64(&x374, &x375, x373, x335, x361); x376 = ((uint64_t)x375 + x336); fiat_p384_mulx_u64(&x377, &x378, x5, (arg1[5])); fiat_p384_mulx_u64(&x379, &x380, x5, (arg1[4])); fiat_p384_mulx_u64(&x381, &x382, x5, (arg1[3])); fiat_p384_mulx_u64(&x383, &x384, x5, (arg1[2])); fiat_p384_mulx_u64(&x385, &x386, x5, (arg1[1])); fiat_p384_mulx_u64(&x387, &x388, x5, (arg1[0])); fiat_p384_addcarryx_u64(&x389, &x390, 0x0, x388, x385); fiat_p384_addcarryx_u64(&x391, &x392, x390, x386, x383); fiat_p384_addcarryx_u64(&x393, &x394, x392, x384, x381); fiat_p384_addcarryx_u64(&x395, &x396, x394, x382, x379); fiat_p384_addcarryx_u64(&x397, &x398, x396, x380, x377); x399 = (x398 + x378); fiat_p384_addcarryx_u64(&x400, &x401, 0x0, x364, x387); fiat_p384_addcarryx_u64(&x402, &x403, x401, x366, x389); fiat_p384_addcarryx_u64(&x404, &x405, x403, x368, x391); fiat_p384_addcarryx_u64(&x406, &x407, x405, x370, x393); fiat_p384_addcarryx_u64(&x408, &x409, x407, x372, x395); fiat_p384_addcarryx_u64(&x410, &x411, x409, x374, x397); fiat_p384_addcarryx_u64(&x412, &x413, x411, x376, x399); fiat_p384_mulx_u64(&x414, &x415, x400, UINT64_C(0x100000001)); fiat_p384_mulx_u64(&x416, &x417, x414, UINT64_C(0xffffffffffffffff)); fiat_p384_mulx_u64(&x418, &x419, x414, UINT64_C(0xffffffffffffffff)); fiat_p384_mulx_u64(&x420, &x421, x414, UINT64_C(0xffffffffffffffff)); fiat_p384_mulx_u64(&x422, &x423, x414, UINT64_C(0xfffffffffffffffe)); fiat_p384_mulx_u64(&x424, &x425, x414, UINT64_C(0xffffffff00000000)); fiat_p384_mulx_u64(&x426, &x427, x414, UINT32_C(0xffffffff)); fiat_p384_addcarryx_u64(&x428, &x429, 0x0, x427, x424); fiat_p384_addcarryx_u64(&x430, &x431, x429, x425, x422); fiat_p384_addcarryx_u64(&x432, &x433, x431, x423, x420); fiat_p384_addcarryx_u64(&x434, &x435, x433, x421, x418); fiat_p384_addcarryx_u64(&x436, &x437, x435, x419, x416); x438 = (x437 + x417); fiat_p384_addcarryx_u64(&x439, &x440, 0x0, x400, x426); fiat_p384_addcarryx_u64(&x441, &x442, x440, x402, x428); fiat_p384_addcarryx_u64(&x443, &x444, x442, x404, x430); fiat_p384_addcarryx_u64(&x445, &x446, x444, x406, x432); fiat_p384_addcarryx_u64(&x447, &x448, x446, x408, x434); fiat_p384_addcarryx_u64(&x449, &x450, x448, x410, x436); fiat_p384_addcarryx_u64(&x451, &x452, x450, x412, x438); x453 = ((uint64_t)x452 + x413); fiat_p384_subborrowx_u64(&x454, &x455, 0x0, x441, UINT32_C(0xffffffff)); fiat_p384_subborrowx_u64(&x456, &x457, x455, x443, UINT64_C(0xffffffff00000000)); fiat_p384_subborrowx_u64(&x458, &x459, x457, x445, UINT64_C(0xfffffffffffffffe)); fiat_p384_subborrowx_u64(&x460, &x461, x459, x447, UINT64_C(0xffffffffffffffff)); fiat_p384_subborrowx_u64(&x462, &x463, x461, x449, UINT64_C(0xffffffffffffffff)); fiat_p384_subborrowx_u64(&x464, &x465, x463, x451, UINT64_C(0xffffffffffffffff)); fiat_p384_subborrowx_u64(&x466, &x467, x465, x453, 0x0); fiat_p384_cmovznz_u64(&x468, x467, x454, x441); fiat_p384_cmovznz_u64(&x469, x467, x456, x443); fiat_p384_cmovznz_u64(&x470, x467, x458, x445); fiat_p384_cmovznz_u64(&x471, x467, x460, x447); fiat_p384_cmovznz_u64(&x472, x467, x462, x449); fiat_p384_cmovznz_u64(&x473, x467, x464, x451); out1[0] = x468; out1[1] = x469; out1[2] = x470; out1[3] = x471; out1[4] = x472; out1[5] = x473; } /* * The function fiat_p384_add adds two field elements in the Montgomery domain. * * Preconditions: * 0 ≤ eval arg1 < m * 0 ≤ eval arg2 < m * Postconditions: * eval (from_montgomery out1) mod m = (eval (from_montgomery arg1) + eval (from_montgomery arg2)) mod m * 0 ≤ eval out1 < m * */ static void fiat_p384_add(fiat_p384_montgomery_domain_field_element out1, const fiat_p384_montgomery_domain_field_element arg1, const fiat_p384_montgomery_domain_field_element arg2) { uint64_t x1; fiat_p384_uint1 x2; uint64_t x3; fiat_p384_uint1 x4; uint64_t x5; fiat_p384_uint1 x6; uint64_t x7; fiat_p384_uint1 x8; uint64_t x9; fiat_p384_uint1 x10; uint64_t x11; fiat_p384_uint1 x12; uint64_t x13; fiat_p384_uint1 x14; uint64_t x15; fiat_p384_uint1 x16; uint64_t x17; fiat_p384_uint1 x18; uint64_t x19; fiat_p384_uint1 x20; uint64_t x21; fiat_p384_uint1 x22; uint64_t x23; fiat_p384_uint1 x24; uint64_t x25; fiat_p384_uint1 x26; uint64_t x27; uint64_t x28; uint64_t x29; uint64_t x30; uint64_t x31; uint64_t x32; fiat_p384_addcarryx_u64(&x1, &x2, 0x0, (arg1[0]), (arg2[0])); fiat_p384_addcarryx_u64(&x3, &x4, x2, (arg1[1]), (arg2[1])); fiat_p384_addcarryx_u64(&x5, &x6, x4, (arg1[2]), (arg2[2])); fiat_p384_addcarryx_u64(&x7, &x8, x6, (arg1[3]), (arg2[3])); fiat_p384_addcarryx_u64(&x9, &x10, x8, (arg1[4]), (arg2[4])); fiat_p384_addcarryx_u64(&x11, &x12, x10, (arg1[5]), (arg2[5])); fiat_p384_subborrowx_u64(&x13, &x14, 0x0, x1, UINT32_C(0xffffffff)); fiat_p384_subborrowx_u64(&x15, &x16, x14, x3, UINT64_C(0xffffffff00000000)); fiat_p384_subborrowx_u64(&x17, &x18, x16, x5, UINT64_C(0xfffffffffffffffe)); fiat_p384_subborrowx_u64(&x19, &x20, x18, x7, UINT64_C(0xffffffffffffffff)); fiat_p384_subborrowx_u64(&x21, &x22, x20, x9, UINT64_C(0xffffffffffffffff)); fiat_p384_subborrowx_u64(&x23, &x24, x22, x11, UINT64_C(0xffffffffffffffff)); fiat_p384_subborrowx_u64(&x25, &x26, x24, x12, 0x0); fiat_p384_cmovznz_u64(&x27, x26, x13, x1); fiat_p384_cmovznz_u64(&x28, x26, x15, x3); fiat_p384_cmovznz_u64(&x29, x26, x17, x5); fiat_p384_cmovznz_u64(&x30, x26, x19, x7); fiat_p384_cmovznz_u64(&x31, x26, x21, x9); fiat_p384_cmovznz_u64(&x32, x26, x23, x11); out1[0] = x27; out1[1] = x28; out1[2] = x29; out1[3] = x30; out1[4] = x31; out1[5] = x32; } /* * The function fiat_p384_sub subtracts two field elements in the Montgomery domain. * * Preconditions: * 0 ≤ eval arg1 < m * 0 ≤ eval arg2 < m * Postconditions: * eval (from_montgomery out1) mod m = (eval (from_montgomery arg1) - eval (from_montgomery arg2)) mod m * 0 ≤ eval out1 < m * */ static void fiat_p384_sub(fiat_p384_montgomery_domain_field_element out1, const fiat_p384_montgomery_domain_field_element arg1, const fiat_p384_montgomery_domain_field_element arg2) { uint64_t x1; fiat_p384_uint1 x2; uint64_t x3; fiat_p384_uint1 x4; uint64_t x5; fiat_p384_uint1 x6; uint64_t x7; fiat_p384_uint1 x8; uint64_t x9; fiat_p384_uint1 x10; uint64_t x11; fiat_p384_uint1 x12; uint64_t x13; uint64_t x14; fiat_p384_uint1 x15; uint64_t x16; fiat_p384_uint1 x17; uint64_t x18; fiat_p384_uint1 x19; uint64_t x20; fiat_p384_uint1 x21; uint64_t x22; fiat_p384_uint1 x23; uint64_t x24; fiat_p384_uint1 x25; fiat_p384_subborrowx_u64(&x1, &x2, 0x0, (arg1[0]), (arg2[0])); fiat_p384_subborrowx_u64(&x3, &x4, x2, (arg1[1]), (arg2[1])); fiat_p384_subborrowx_u64(&x5, &x6, x4, (arg1[2]), (arg2[2])); fiat_p384_subborrowx_u64(&x7, &x8, x6, (arg1[3]), (arg2[3])); fiat_p384_subborrowx_u64(&x9, &x10, x8, (arg1[4]), (arg2[4])); fiat_p384_subborrowx_u64(&x11, &x12, x10, (arg1[5]), (arg2[5])); fiat_p384_cmovznz_u64(&x13, x12, 0x0, UINT64_C(0xffffffffffffffff)); fiat_p384_addcarryx_u64(&x14, &x15, 0x0, x1, (x13 & UINT32_C(0xffffffff))); fiat_p384_addcarryx_u64(&x16, &x17, x15, x3, (x13 & UINT64_C(0xffffffff00000000))); fiat_p384_addcarryx_u64(&x18, &x19, x17, x5, (x13 & UINT64_C(0xfffffffffffffffe))); fiat_p384_addcarryx_u64(&x20, &x21, x19, x7, x13); fiat_p384_addcarryx_u64(&x22, &x23, x21, x9, x13); fiat_p384_addcarryx_u64(&x24, &x25, x23, x11, x13); out1[0] = x14; out1[1] = x16; out1[2] = x18; out1[3] = x20; out1[4] = x22; out1[5] = x24; } /* * The function fiat_p384_opp negates a field element in the Montgomery domain. * * Preconditions: * 0 ≤ eval arg1 < m * Postconditions: * eval (from_montgomery out1) mod m = -eval (from_montgomery arg1) mod m * 0 ≤ eval out1 < m * */ static void fiat_p384_opp(fiat_p384_montgomery_domain_field_element out1, const fiat_p384_montgomery_domain_field_element arg1) { uint64_t x1; fiat_p384_uint1 x2; uint64_t x3; fiat_p384_uint1 x4; uint64_t x5; fiat_p384_uint1 x6; uint64_t x7; fiat_p384_uint1 x8; uint64_t x9; fiat_p384_uint1 x10; uint64_t x11; fiat_p384_uint1 x12; uint64_t x13; uint64_t x14; fiat_p384_uint1 x15; uint64_t x16; fiat_p384_uint1 x17; uint64_t x18; fiat_p384_uint1 x19; uint64_t x20; fiat_p384_uint1 x21; uint64_t x22; fiat_p384_uint1 x23; uint64_t x24; fiat_p384_uint1 x25; fiat_p384_subborrowx_u64(&x1, &x2, 0x0, 0x0, (arg1[0])); fiat_p384_subborrowx_u64(&x3, &x4, x2, 0x0, (arg1[1])); fiat_p384_subborrowx_u64(&x5, &x6, x4, 0x0, (arg1[2])); fiat_p384_subborrowx_u64(&x7, &x8, x6, 0x0, (arg1[3])); fiat_p384_subborrowx_u64(&x9, &x10, x8, 0x0, (arg1[4])); fiat_p384_subborrowx_u64(&x11, &x12, x10, 0x0, (arg1[5])); fiat_p384_cmovznz_u64(&x13, x12, 0x0, UINT64_C(0xffffffffffffffff)); fiat_p384_addcarryx_u64(&x14, &x15, 0x0, x1, (x13 & UINT32_C(0xffffffff))); fiat_p384_addcarryx_u64(&x16, &x17, x15, x3, (x13 & UINT64_C(0xffffffff00000000))); fiat_p384_addcarryx_u64(&x18, &x19, x17, x5, (x13 & UINT64_C(0xfffffffffffffffe))); fiat_p384_addcarryx_u64(&x20, &x21, x19, x7, x13); fiat_p384_addcarryx_u64(&x22, &x23, x21, x9, x13); fiat_p384_addcarryx_u64(&x24, &x25, x23, x11, x13); out1[0] = x14; out1[1] = x16; out1[2] = x18; out1[3] = x20; out1[4] = x22; out1[5] = x24; } /* * The function fiat_p384_from_montgomery translates a field element out of the Montgomery domain. * * Preconditions: * 0 ≤ eval arg1 < m * Postconditions: * eval out1 mod m = (eval arg1 * ((2^64)⁻¹ mod m)^6) mod m * 0 ≤ eval out1 < m * */ static void fiat_p384_from_montgomery(fiat_p384_non_montgomery_domain_field_element out1, const fiat_p384_montgomery_domain_field_element arg1) { uint64_t x1; uint64_t x2; uint64_t x3; uint64_t x4; uint64_t x5; uint64_t x6; uint64_t x7; uint64_t x8; uint64_t x9; uint64_t x10; uint64_t x11; uint64_t x12; uint64_t x13; uint64_t x14; uint64_t x15; uint64_t x16; fiat_p384_uint1 x17; uint64_t x18; fiat_p384_uint1 x19; uint64_t x20; fiat_p384_uint1 x21; uint64_t x22; fiat_p384_uint1 x23; uint64_t x24; fiat_p384_uint1 x25; uint64_t x26; fiat_p384_uint1 x27; uint64_t x28; fiat_p384_uint1 x29; uint64_t x30; fiat_p384_uint1 x31; uint64_t x32; fiat_p384_uint1 x33; uint64_t x34; fiat_p384_uint1 x35; uint64_t x36; fiat_p384_uint1 x37; uint64_t x38; fiat_p384_uint1 x39; uint64_t x40; fiat_p384_uint1 x41; uint64_t x42; fiat_p384_uint1 x43; uint64_t x44; fiat_p384_uint1 x45; uint64_t x46; fiat_p384_uint1 x47; uint64_t x48; fiat_p384_uint1 x49; uint64_t x50; fiat_p384_uint1 x51; uint64_t x52; uint64_t x53; uint64_t x54; uint64_t x55; uint64_t x56; uint64_t x57; uint64_t x58; uint64_t x59; uint64_t x60; uint64_t x61; uint64_t x62; uint64_t x63; uint64_t x64; uint64_t x65; uint64_t x66; fiat_p384_uint1 x67; uint64_t x68; fiat_p384_uint1 x69; uint64_t x70; fiat_p384_uint1 x71; uint64_t x72; fiat_p384_uint1 x73; uint64_t x74; fiat_p384_uint1 x75; uint64_t x76; fiat_p384_uint1 x77; uint64_t x78; fiat_p384_uint1 x79; uint64_t x80; fiat_p384_uint1 x81; uint64_t x82; fiat_p384_uint1 x83; uint64_t x84; fiat_p384_uint1 x85; uint64_t x86; fiat_p384_uint1 x87; uint64_t x88; fiat_p384_uint1 x89; uint64_t x90; fiat_p384_uint1 x91; uint64_t x92; fiat_p384_uint1 x93; uint64_t x94; fiat_p384_uint1 x95; uint64_t x96; fiat_p384_uint1 x97; uint64_t x98; fiat_p384_uint1 x99; uint64_t x100; fiat_p384_uint1 x101; uint64_t x102; uint64_t x103; uint64_t x104; uint64_t x105; uint64_t x106; uint64_t x107; uint64_t x108; uint64_t x109; uint64_t x110; uint64_t x111; uint64_t x112; uint64_t x113; uint64_t x114; uint64_t x115; uint64_t x116; fiat_p384_uint1 x117; uint64_t x118; fiat_p384_uint1 x119; uint64_t x120; fiat_p384_uint1 x121; uint64_t x122; fiat_p384_uint1 x123; uint64_t x124; fiat_p384_uint1 x125; uint64_t x126; fiat_p384_uint1 x127; uint64_t x128; fiat_p384_uint1 x129; uint64_t x130; fiat_p384_uint1 x131; uint64_t x132; fiat_p384_uint1 x133; uint64_t x134; fiat_p384_uint1 x135; uint64_t x136; fiat_p384_uint1 x137; uint64_t x138; fiat_p384_uint1 x139; uint64_t x140; fiat_p384_uint1 x141; uint64_t x142; fiat_p384_uint1 x143; uint64_t x144; fiat_p384_uint1 x145; uint64_t x146; fiat_p384_uint1 x147; uint64_t x148; fiat_p384_uint1 x149; uint64_t x150; fiat_p384_uint1 x151; uint64_t x152; uint64_t x153; uint64_t x154; uint64_t x155; uint64_t x156; uint64_t x157; uint64_t x158; uint64_t x159; uint64_t x160; uint64_t x161; uint64_t x162; uint64_t x163; uint64_t x164; uint64_t x165; uint64_t x166; fiat_p384_uint1 x167; uint64_t x168; fiat_p384_uint1 x169; uint64_t x170; fiat_p384_uint1 x171; uint64_t x172; fiat_p384_uint1 x173; uint64_t x174; fiat_p384_uint1 x175; uint64_t x176; fiat_p384_uint1 x177; uint64_t x178; fiat_p384_uint1 x179; uint64_t x180; fiat_p384_uint1 x181; uint64_t x182; fiat_p384_uint1 x183; uint64_t x184; fiat_p384_uint1 x185; uint64_t x186; fiat_p384_uint1 x187; uint64_t x188; fiat_p384_uint1 x189; uint64_t x190; fiat_p384_uint1 x191; uint64_t x192; fiat_p384_uint1 x193; uint64_t x194; fiat_p384_uint1 x195; uint64_t x196; fiat_p384_uint1 x197; uint64_t x198; fiat_p384_uint1 x199; uint64_t x200; fiat_p384_uint1 x201; uint64_t x202; uint64_t x203; uint64_t x204; uint64_t x205; uint64_t x206; uint64_t x207; uint64_t x208; uint64_t x209; uint64_t x210; uint64_t x211; uint64_t x212; uint64_t x213; uint64_t x214; uint64_t x215; uint64_t x216; fiat_p384_uint1 x217; uint64_t x218; fiat_p384_uint1 x219; uint64_t x220; fiat_p384_uint1 x221; uint64_t x222; fiat_p384_uint1 x223; uint64_t x224; fiat_p384_uint1 x225; uint64_t x226; fiat_p384_uint1 x227; uint64_t x228; fiat_p384_uint1 x229; uint64_t x230; fiat_p384_uint1 x231; uint64_t x232; fiat_p384_uint1 x233; uint64_t x234; fiat_p384_uint1 x235; uint64_t x236; fiat_p384_uint1 x237; uint64_t x238; fiat_p384_uint1 x239; uint64_t x240; fiat_p384_uint1 x241; uint64_t x242; fiat_p384_uint1 x243; uint64_t x244; fiat_p384_uint1 x245; uint64_t x246; fiat_p384_uint1 x247; uint64_t x248; fiat_p384_uint1 x249; uint64_t x250; fiat_p384_uint1 x251; uint64_t x252; uint64_t x253; uint64_t x254; uint64_t x255; uint64_t x256; uint64_t x257; uint64_t x258; uint64_t x259; uint64_t x260; uint64_t x261; uint64_t x262; uint64_t x263; uint64_t x264; uint64_t x265; uint64_t x266; fiat_p384_uint1 x267; uint64_t x268; fiat_p384_uint1 x269; uint64_t x270; fiat_p384_uint1 x271; uint64_t x272; fiat_p384_uint1 x273; uint64_t x274; fiat_p384_uint1 x275; uint64_t x276; fiat_p384_uint1 x277; uint64_t x278; fiat_p384_uint1 x279; uint64_t x280; fiat_p384_uint1 x281; uint64_t x282; fiat_p384_uint1 x283; uint64_t x284; fiat_p384_uint1 x285; uint64_t x286; fiat_p384_uint1 x287; uint64_t x288; fiat_p384_uint1 x289; uint64_t x290; fiat_p384_uint1 x291; uint64_t x292; fiat_p384_uint1 x293; uint64_t x294; fiat_p384_uint1 x295; uint64_t x296; fiat_p384_uint1 x297; uint64_t x298; fiat_p384_uint1 x299; uint64_t x300; fiat_p384_uint1 x301; uint64_t x302; fiat_p384_uint1 x303; uint64_t x304; uint64_t x305; uint64_t x306; uint64_t x307; uint64_t x308; uint64_t x309; x1 = (arg1[0]); fiat_p384_mulx_u64(&x2, &x3, x1, UINT64_C(0x100000001)); fiat_p384_mulx_u64(&x4, &x5, x2, UINT64_C(0xffffffffffffffff)); fiat_p384_mulx_u64(&x6, &x7, x2, UINT64_C(0xffffffffffffffff)); fiat_p384_mulx_u64(&x8, &x9, x2, UINT64_C(0xffffffffffffffff)); fiat_p384_mulx_u64(&x10, &x11, x2, UINT64_C(0xfffffffffffffffe)); fiat_p384_mulx_u64(&x12, &x13, x2, UINT64_C(0xffffffff00000000)); fiat_p384_mulx_u64(&x14, &x15, x2, UINT32_C(0xffffffff)); fiat_p384_addcarryx_u64(&x16, &x17, 0x0, x15, x12); fiat_p384_addcarryx_u64(&x18, &x19, x17, x13, x10); fiat_p384_addcarryx_u64(&x20, &x21, x19, x11, x8); fiat_p384_addcarryx_u64(&x22, &x23, x21, x9, x6); fiat_p384_addcarryx_u64(&x24, &x25, x23, x7, x4); fiat_p384_addcarryx_u64(&x26, &x27, 0x0, x1, x14); fiat_p384_addcarryx_u64(&x28, &x29, x27, 0x0, x16); fiat_p384_addcarryx_u64(&x30, &x31, x29, 0x0, x18); fiat_p384_addcarryx_u64(&x32, &x33, x31, 0x0, x20); fiat_p384_addcarryx_u64(&x34, &x35, x33, 0x0, x22); fiat_p384_addcarryx_u64(&x36, &x37, x35, 0x0, x24); fiat_p384_addcarryx_u64(&x38, &x39, x37, 0x0, (x25 + x5)); fiat_p384_addcarryx_u64(&x40, &x41, 0x0, x28, (arg1[1])); fiat_p384_addcarryx_u64(&x42, &x43, x41, x30, 0x0); fiat_p384_addcarryx_u64(&x44, &x45, x43, x32, 0x0); fiat_p384_addcarryx_u64(&x46, &x47, x45, x34, 0x0); fiat_p384_addcarryx_u64(&x48, &x49, x47, x36, 0x0); fiat_p384_addcarryx_u64(&x50, &x51, x49, x38, 0x0); fiat_p384_mulx_u64(&x52, &x53, x40, UINT64_C(0x100000001)); fiat_p384_mulx_u64(&x54, &x55, x52, UINT64_C(0xffffffffffffffff)); fiat_p384_mulx_u64(&x56, &x57, x52, UINT64_C(0xffffffffffffffff)); fiat_p384_mulx_u64(&x58, &x59, x52, UINT64_C(0xffffffffffffffff)); fiat_p384_mulx_u64(&x60, &x61, x52, UINT64_C(0xfffffffffffffffe)); fiat_p384_mulx_u64(&x62, &x63, x52, UINT64_C(0xffffffff00000000)); fiat_p384_mulx_u64(&x64, &x65, x52, UINT32_C(0xffffffff)); fiat_p384_addcarryx_u64(&x66, &x67, 0x0, x65, x62); fiat_p384_addcarryx_u64(&x68, &x69, x67, x63, x60); fiat_p384_addcarryx_u64(&x70, &x71, x69, x61, x58); fiat_p384_addcarryx_u64(&x72, &x73, x71, x59, x56); fiat_p384_addcarryx_u64(&x74, &x75, x73, x57, x54); fiat_p384_addcarryx_u64(&x76, &x77, 0x0, x40, x64); fiat_p384_addcarryx_u64(&x78, &x79, x77, x42, x66); fiat_p384_addcarryx_u64(&x80, &x81, x79, x44, x68); fiat_p384_addcarryx_u64(&x82, &x83, x81, x46, x70); fiat_p384_addcarryx_u64(&x84, &x85, x83, x48, x72); fiat_p384_addcarryx_u64(&x86, &x87, x85, x50, x74); fiat_p384_addcarryx_u64(&x88, &x89, x87, ((uint64_t)x51 + x39), (x75 + x55)); fiat_p384_addcarryx_u64(&x90, &x91, 0x0, x78, (arg1[2])); fiat_p384_addcarryx_u64(&x92, &x93, x91, x80, 0x0); fiat_p384_addcarryx_u64(&x94, &x95, x93, x82, 0x0); fiat_p384_addcarryx_u64(&x96, &x97, x95, x84, 0x0); fiat_p384_addcarryx_u64(&x98, &x99, x97, x86, 0x0); fiat_p384_addcarryx_u64(&x100, &x101, x99, x88, 0x0); fiat_p384_mulx_u64(&x102, &x103, x90, UINT64_C(0x100000001)); fiat_p384_mulx_u64(&x104, &x105, x102, UINT64_C(0xffffffffffffffff)); fiat_p384_mulx_u64(&x106, &x107, x102, UINT64_C(0xffffffffffffffff)); fiat_p384_mulx_u64(&x108, &x109, x102, UINT64_C(0xffffffffffffffff)); fiat_p384_mulx_u64(&x110, &x111, x102, UINT64_C(0xfffffffffffffffe)); fiat_p384_mulx_u64(&x112, &x113, x102, UINT64_C(0xffffffff00000000)); fiat_p384_mulx_u64(&x114, &x115, x102, UINT32_C(0xffffffff)); fiat_p384_addcarryx_u64(&x116, &x117, 0x0, x115, x112); fiat_p384_addcarryx_u64(&x118, &x119, x117, x113, x110); fiat_p384_addcarryx_u64(&x120, &x121, x119, x111, x108); fiat_p384_addcarryx_u64(&x122, &x123, x121, x109, x106); fiat_p384_addcarryx_u64(&x124, &x125, x123, x107, x104); fiat_p384_addcarryx_u64(&x126, &x127, 0x0, x90, x114); fiat_p384_addcarryx_u64(&x128, &x129, x127, x92, x116); fiat_p384_addcarryx_u64(&x130, &x131, x129, x94, x118); fiat_p384_addcarryx_u64(&x132, &x133, x131, x96, x120); fiat_p384_addcarryx_u64(&x134, &x135, x133, x98, x122); fiat_p384_addcarryx_u64(&x136, &x137, x135, x100, x124); fiat_p384_addcarryx_u64(&x138, &x139, x137, ((uint64_t)x101 + x89), (x125 + x105)); fiat_p384_addcarryx_u64(&x140, &x141, 0x0, x128, (arg1[3])); fiat_p384_addcarryx_u64(&x142, &x143, x141, x130, 0x0); fiat_p384_addcarryx_u64(&x144, &x145, x143, x132, 0x0); fiat_p384_addcarryx_u64(&x146, &x147, x145, x134, 0x0); fiat_p384_addcarryx_u64(&x148, &x149, x147, x136, 0x0); fiat_p384_addcarryx_u64(&x150, &x151, x149, x138, 0x0); fiat_p384_mulx_u64(&x152, &x153, x140, UINT64_C(0x100000001)); fiat_p384_mulx_u64(&x154, &x155, x152, UINT64_C(0xffffffffffffffff)); fiat_p384_mulx_u64(&x156, &x157, x152, UINT64_C(0xffffffffffffffff)); fiat_p384_mulx_u64(&x158, &x159, x152, UINT64_C(0xffffffffffffffff)); fiat_p384_mulx_u64(&x160, &x161, x152, UINT64_C(0xfffffffffffffffe)); fiat_p384_mulx_u64(&x162, &x163, x152, UINT64_C(0xffffffff00000000)); fiat_p384_mulx_u64(&x164, &x165, x152, UINT32_C(0xffffffff)); fiat_p384_addcarryx_u64(&x166, &x167, 0x0, x165, x162); fiat_p384_addcarryx_u64(&x168, &x169, x167, x163, x160); fiat_p384_addcarryx_u64(&x170, &x171, x169, x161, x158); fiat_p384_addcarryx_u64(&x172, &x173, x171, x159, x156); fiat_p384_addcarryx_u64(&x174, &x175, x173, x157, x154); fiat_p384_addcarryx_u64(&x176, &x177, 0x0, x140, x164); fiat_p384_addcarryx_u64(&x178, &x179, x177, x142, x166); fiat_p384_addcarryx_u64(&x180, &x181, x179, x144, x168); fiat_p384_addcarryx_u64(&x182, &x183, x181, x146, x170); fiat_p384_addcarryx_u64(&x184, &x185, x183, x148, x172); fiat_p384_addcarryx_u64(&x186, &x187, x185, x150, x174); fiat_p384_addcarryx_u64(&x188, &x189, x187, ((uint64_t)x151 + x139), (x175 + x155)); fiat_p384_addcarryx_u64(&x190, &x191, 0x0, x178, (arg1[4])); fiat_p384_addcarryx_u64(&x192, &x193, x191, x180, 0x0); fiat_p384_addcarryx_u64(&x194, &x195, x193, x182, 0x0); fiat_p384_addcarryx_u64(&x196, &x197, x195, x184, 0x0); fiat_p384_addcarryx_u64(&x198, &x199, x197, x186, 0x0); fiat_p384_addcarryx_u64(&x200, &x201, x199, x188, 0x0); fiat_p384_mulx_u64(&x202, &x203, x190, UINT64_C(0x100000001)); fiat_p384_mulx_u64(&x204, &x205, x202, UINT64_C(0xffffffffffffffff)); fiat_p384_mulx_u64(&x206, &x207, x202, UINT64_C(0xffffffffffffffff)); fiat_p384_mulx_u64(&x208, &x209, x202, UINT64_C(0xffffffffffffffff)); fiat_p384_mulx_u64(&x210, &x211, x202, UINT64_C(0xfffffffffffffffe)); fiat_p384_mulx_u64(&x212, &x213, x202, UINT64_C(0xffffffff00000000)); fiat_p384_mulx_u64(&x214, &x215, x202, UINT32_C(0xffffffff)); fiat_p384_addcarryx_u64(&x216, &x217, 0x0, x215, x212); fiat_p384_addcarryx_u64(&x218, &x219, x217, x213, x210); fiat_p384_addcarryx_u64(&x220, &x221, x219, x211, x208); fiat_p384_addcarryx_u64(&x222, &x223, x221, x209, x206); fiat_p384_addcarryx_u64(&x224, &x225, x223, x207, x204); fiat_p384_addcarryx_u64(&x226, &x227, 0x0, x190, x214); fiat_p384_addcarryx_u64(&x228, &x229, x227, x192, x216); fiat_p384_addcarryx_u64(&x230, &x231, x229, x194, x218); fiat_p384_addcarryx_u64(&x232, &x233, x231, x196, x220); fiat_p384_addcarryx_u64(&x234, &x235, x233, x198, x222); fiat_p384_addcarryx_u64(&x236, &x237, x235, x200, x224); fiat_p384_addcarryx_u64(&x238, &x239, x237, ((uint64_t)x201 + x189), (x225 + x205)); fiat_p384_addcarryx_u64(&x240, &x241, 0x0, x228, (arg1[5])); fiat_p384_addcarryx_u64(&x242, &x243, x241, x230, 0x0); fiat_p384_addcarryx_u64(&x244, &x245, x243, x232, 0x0); fiat_p384_addcarryx_u64(&x246, &x247, x245, x234, 0x0); fiat_p384_addcarryx_u64(&x248, &x249, x247, x236, 0x0); fiat_p384_addcarryx_u64(&x250, &x251, x249, x238, 0x0); fiat_p384_mulx_u64(&x252, &x253, x240, UINT64_C(0x100000001)); fiat_p384_mulx_u64(&x254, &x255, x252, UINT64_C(0xffffffffffffffff)); fiat_p384_mulx_u64(&x256, &x257, x252, UINT64_C(0xffffffffffffffff)); fiat_p384_mulx_u64(&x258, &x259, x252, UINT64_C(0xffffffffffffffff)); fiat_p384_mulx_u64(&x260, &x261, x252, UINT64_C(0xfffffffffffffffe)); fiat_p384_mulx_u64(&x262, &x263, x252, UINT64_C(0xffffffff00000000)); fiat_p384_mulx_u64(&x264, &x265, x252, UINT32_C(0xffffffff)); fiat_p384_addcarryx_u64(&x266, &x267, 0x0, x265, x262); fiat_p384_addcarryx_u64(&x268, &x269, x267, x263, x260); fiat_p384_addcarryx_u64(&x270, &x271, x269, x261, x258); fiat_p384_addcarryx_u64(&x272, &x273, x271, x259, x256); fiat_p384_addcarryx_u64(&x274, &x275, x273, x257, x254); fiat_p384_addcarryx_u64(&x276, &x277, 0x0, x240, x264); fiat_p384_addcarryx_u64(&x278, &x279, x277, x242, x266); fiat_p384_addcarryx_u64(&x280, &x281, x279, x244, x268); fiat_p384_addcarryx_u64(&x282, &x283, x281, x246, x270); fiat_p384_addcarryx_u64(&x284, &x285, x283, x248, x272); fiat_p384_addcarryx_u64(&x286, &x287, x285, x250, x274); fiat_p384_addcarryx_u64(&x288, &x289, x287, ((uint64_t)x251 + x239), (x275 + x255)); fiat_p384_subborrowx_u64(&x290, &x291, 0x0, x278, UINT32_C(0xffffffff)); fiat_p384_subborrowx_u64(&x292, &x293, x291, x280, UINT64_C(0xffffffff00000000)); fiat_p384_subborrowx_u64(&x294, &x295, x293, x282, UINT64_C(0xfffffffffffffffe)); fiat_p384_subborrowx_u64(&x296, &x297, x295, x284, UINT64_C(0xffffffffffffffff)); fiat_p384_subborrowx_u64(&x298, &x299, x297, x286, UINT64_C(0xffffffffffffffff)); fiat_p384_subborrowx_u64(&x300, &x301, x299, x288, UINT64_C(0xffffffffffffffff)); fiat_p384_subborrowx_u64(&x302, &x303, x301, x289, 0x0); fiat_p384_cmovznz_u64(&x304, x303, x290, x278); fiat_p384_cmovznz_u64(&x305, x303, x292, x280); fiat_p384_cmovznz_u64(&x306, x303, x294, x282); fiat_p384_cmovznz_u64(&x307, x303, x296, x284); fiat_p384_cmovznz_u64(&x308, x303, x298, x286); fiat_p384_cmovznz_u64(&x309, x303, x300, x288); out1[0] = x304; out1[1] = x305; out1[2] = x306; out1[3] = x307; out1[4] = x308; out1[5] = x309; } /* * The function fiat_p384_to_montgomery translates a field element into the Montgomery domain. * * Preconditions: * 0 ≤ eval arg1 < m * Postconditions: * eval (from_montgomery out1) mod m = eval arg1 mod m * 0 ≤ eval out1 < m * */ static void fiat_p384_to_montgomery(fiat_p384_montgomery_domain_field_element out1, const fiat_p384_non_montgomery_domain_field_element arg1) { uint64_t x1; uint64_t x2; uint64_t x3; uint64_t x4; uint64_t x5; uint64_t x6; uint64_t x7; uint64_t x8; uint64_t x9; uint64_t x10; uint64_t x11; uint64_t x12; uint64_t x13; uint64_t x14; uint64_t x15; fiat_p384_uint1 x16; uint64_t x17; fiat_p384_uint1 x18; uint64_t x19; fiat_p384_uint1 x20; uint64_t x21; fiat_p384_uint1 x22; uint64_t x23; uint64_t x24; uint64_t x25; uint64_t x26; uint64_t x27; uint64_t x28; uint64_t x29; uint64_t x30; uint64_t x31; uint64_t x32; uint64_t x33; uint64_t x34; uint64_t x35; uint64_t x36; uint64_t x37; fiat_p384_uint1 x38; uint64_t x39; fiat_p384_uint1 x40; uint64_t x41; fiat_p384_uint1 x42; uint64_t x43; fiat_p384_uint1 x44; uint64_t x45; fiat_p384_uint1 x46; uint64_t x47; fiat_p384_uint1 x48; uint64_t x49; fiat_p384_uint1 x50; uint64_t x51; fiat_p384_uint1 x52; uint64_t x53; fiat_p384_uint1 x54; uint64_t x55; fiat_p384_uint1 x56; uint64_t x57; fiat_p384_uint1 x58; uint64_t x59; fiat_p384_uint1 x60; uint64_t x61; uint64_t x62; uint64_t x63; uint64_t x64; uint64_t x65; uint64_t x66; uint64_t x67; uint64_t x68; uint64_t x69; fiat_p384_uint1 x70; uint64_t x71; fiat_p384_uint1 x72; uint64_t x73; fiat_p384_uint1 x74; uint64_t x75; fiat_p384_uint1 x76; uint64_t x77; fiat_p384_uint1 x78; uint64_t x79; fiat_p384_uint1 x80; uint64_t x81; fiat_p384_uint1 x82; uint64_t x83; fiat_p384_uint1 x84; uint64_t x85; fiat_p384_uint1 x86; uint64_t x87; fiat_p384_uint1 x88; uint64_t x89; uint64_t x90; uint64_t x91; uint64_t x92; uint64_t x93; uint64_t x94; uint64_t x95; uint64_t x96; uint64_t x97; uint64_t x98; uint64_t x99; uint64_t x100; uint64_t x101; uint64_t x102; uint64_t x103; fiat_p384_uint1 x104; uint64_t x105; fiat_p384_uint1 x106; uint64_t x107; fiat_p384_uint1 x108; uint64_t x109; fiat_p384_uint1 x110; uint64_t x111; fiat_p384_uint1 x112; uint64_t x113; fiat_p384_uint1 x114; uint64_t x115; fiat_p384_uint1 x116; uint64_t x117; fiat_p384_uint1 x118; uint64_t x119; fiat_p384_uint1 x120; uint64_t x121; fiat_p384_uint1 x122; uint64_t x123; fiat_p384_uint1 x124; uint64_t x125; fiat_p384_uint1 x126; uint64_t x127; uint64_t x128; uint64_t x129; uint64_t x130; uint64_t x131; uint64_t x132; uint64_t x133; uint64_t x134; uint64_t x135; fiat_p384_uint1 x136; uint64_t x137; fiat_p384_uint1 x138; uint64_t x139; fiat_p384_uint1 x140; uint64_t x141; fiat_p384_uint1 x142; uint64_t x143; fiat_p384_uint1 x144; uint64_t x145; fiat_p384_uint1 x146; uint64_t x147; fiat_p384_uint1 x148; uint64_t x149; fiat_p384_uint1 x150; uint64_t x151; fiat_p384_uint1 x152; uint64_t x153; fiat_p384_uint1 x154; uint64_t x155; uint64_t x156; uint64_t x157; uint64_t x158; uint64_t x159; uint64_t x160; uint64_t x161; uint64_t x162; uint64_t x163; uint64_t x164; uint64_t x165; uint64_t x166; uint64_t x167; uint64_t x168; uint64_t x169; fiat_p384_uint1 x170; uint64_t x171; fiat_p384_uint1 x172; uint64_t x173; fiat_p384_uint1 x174; uint64_t x175; fiat_p384_uint1 x176; uint64_t x177; fiat_p384_uint1 x178; uint64_t x179; fiat_p384_uint1 x180; uint64_t x181; fiat_p384_uint1 x182; uint64_t x183; fiat_p384_uint1 x184; uint64_t x185; fiat_p384_uint1 x186; uint64_t x187; fiat_p384_uint1 x188; uint64_t x189; fiat_p384_uint1 x190; uint64_t x191; fiat_p384_uint1 x192; uint64_t x193; uint64_t x194; uint64_t x195; uint64_t x196; uint64_t x197; uint64_t x198; uint64_t x199; uint64_t x200; uint64_t x201; fiat_p384_uint1 x202; uint64_t x203; fiat_p384_uint1 x204; uint64_t x205; fiat_p384_uint1 x206; uint64_t x207; fiat_p384_uint1 x208; uint64_t x209; fiat_p384_uint1 x210; uint64_t x211; fiat_p384_uint1 x212; uint64_t x213; fiat_p384_uint1 x214; uint64_t x215; fiat_p384_uint1 x216; uint64_t x217; fiat_p384_uint1 x218; uint64_t x219; fiat_p384_uint1 x220; uint64_t x221; uint64_t x222; uint64_t x223; uint64_t x224; uint64_t x225; uint64_t x226; uint64_t x227; uint64_t x228; uint64_t x229; uint64_t x230; uint64_t x231; uint64_t x232; uint64_t x233; uint64_t x234; uint64_t x235; fiat_p384_uint1 x236; uint64_t x237; fiat_p384_uint1 x238; uint64_t x239; fiat_p384_uint1 x240; uint64_t x241; fiat_p384_uint1 x242; uint64_t x243; fiat_p384_uint1 x244; uint64_t x245; fiat_p384_uint1 x246; uint64_t x247; fiat_p384_uint1 x248; uint64_t x249; fiat_p384_uint1 x250; uint64_t x251; fiat_p384_uint1 x252; uint64_t x253; fiat_p384_uint1 x254; uint64_t x255; fiat_p384_uint1 x256; uint64_t x257; fiat_p384_uint1 x258; uint64_t x259; uint64_t x260; uint64_t x261; uint64_t x262; uint64_t x263; uint64_t x264; uint64_t x265; uint64_t x266; uint64_t x267; fiat_p384_uint1 x268; uint64_t x269; fiat_p384_uint1 x270; uint64_t x271; fiat_p384_uint1 x272; uint64_t x273; fiat_p384_uint1 x274; uint64_t x275; fiat_p384_uint1 x276; uint64_t x277; fiat_p384_uint1 x278; uint64_t x279; fiat_p384_uint1 x280; uint64_t x281; fiat_p384_uint1 x282; uint64_t x283; fiat_p384_uint1 x284; uint64_t x285; fiat_p384_uint1 x286; uint64_t x287; uint64_t x288; uint64_t x289; uint64_t x290; uint64_t x291; uint64_t x292; uint64_t x293; uint64_t x294; uint64_t x295; uint64_t x296; uint64_t x297; uint64_t x298; uint64_t x299; uint64_t x300; uint64_t x301; fiat_p384_uint1 x302; uint64_t x303; fiat_p384_uint1 x304; uint64_t x305; fiat_p384_uint1 x306; uint64_t x307; fiat_p384_uint1 x308; uint64_t x309; fiat_p384_uint1 x310; uint64_t x311; fiat_p384_uint1 x312; uint64_t x313; fiat_p384_uint1 x314; uint64_t x315; fiat_p384_uint1 x316; uint64_t x317; fiat_p384_uint1 x318; uint64_t x319; fiat_p384_uint1 x320; uint64_t x321; fiat_p384_uint1 x322; uint64_t x323; fiat_p384_uint1 x324; uint64_t x325; uint64_t x326; uint64_t x327; uint64_t x328; uint64_t x329; uint64_t x330; uint64_t x331; uint64_t x332; uint64_t x333; fiat_p384_uint1 x334; uint64_t x335; fiat_p384_uint1 x336; uint64_t x337; fiat_p384_uint1 x338; uint64_t x339; fiat_p384_uint1 x340; uint64_t x341; fiat_p384_uint1 x342; uint64_t x343; fiat_p384_uint1 x344; uint64_t x345; fiat_p384_uint1 x346; uint64_t x347; fiat_p384_uint1 x348; uint64_t x349; fiat_p384_uint1 x350; uint64_t x351; fiat_p384_uint1 x352; uint64_t x353; uint64_t x354; uint64_t x355; uint64_t x356; uint64_t x357; uint64_t x358; uint64_t x359; uint64_t x360; uint64_t x361; uint64_t x362; uint64_t x363; uint64_t x364; uint64_t x365; uint64_t x366; uint64_t x367; fiat_p384_uint1 x368; uint64_t x369; fiat_p384_uint1 x370; uint64_t x371; fiat_p384_uint1 x372; uint64_t x373; fiat_p384_uint1 x374; uint64_t x375; fiat_p384_uint1 x376; uint64_t x377; fiat_p384_uint1 x378; uint64_t x379; fiat_p384_uint1 x380; uint64_t x381; fiat_p384_uint1 x382; uint64_t x383; fiat_p384_uint1 x384; uint64_t x385; fiat_p384_uint1 x386; uint64_t x387; fiat_p384_uint1 x388; uint64_t x389; fiat_p384_uint1 x390; uint64_t x391; fiat_p384_uint1 x392; uint64_t x393; fiat_p384_uint1 x394; uint64_t x395; fiat_p384_uint1 x396; uint64_t x397; fiat_p384_uint1 x398; uint64_t x399; fiat_p384_uint1 x400; uint64_t x401; fiat_p384_uint1 x402; uint64_t x403; fiat_p384_uint1 x404; uint64_t x405; uint64_t x406; uint64_t x407; uint64_t x408; uint64_t x409; uint64_t x410; x1 = (arg1[1]); x2 = (arg1[2]); x3 = (arg1[3]); x4 = (arg1[4]); x5 = (arg1[5]); x6 = (arg1[0]); fiat_p384_mulx_u64(&x7, &x8, x6, UINT64_C(0x200000000)); fiat_p384_mulx_u64(&x9, &x10, x6, UINT64_C(0xfffffffe00000000)); fiat_p384_mulx_u64(&x11, &x12, x6, UINT64_C(0x200000000)); fiat_p384_mulx_u64(&x13, &x14, x6, UINT64_C(0xfffffffe00000001)); fiat_p384_addcarryx_u64(&x15, &x16, 0x0, x14, x11); fiat_p384_addcarryx_u64(&x17, &x18, x16, x12, x9); fiat_p384_addcarryx_u64(&x19, &x20, x18, x10, x7); fiat_p384_addcarryx_u64(&x21, &x22, x20, x8, x6); fiat_p384_mulx_u64(&x23, &x24, x13, UINT64_C(0x100000001)); fiat_p384_mulx_u64(&x25, &x26, x23, UINT64_C(0xffffffffffffffff)); fiat_p384_mulx_u64(&x27, &x28, x23, UINT64_C(0xffffffffffffffff)); fiat_p384_mulx_u64(&x29, &x30, x23, UINT64_C(0xffffffffffffffff)); fiat_p384_mulx_u64(&x31, &x32, x23, UINT64_C(0xfffffffffffffffe)); fiat_p384_mulx_u64(&x33, &x34, x23, UINT64_C(0xffffffff00000000)); fiat_p384_mulx_u64(&x35, &x36, x23, UINT32_C(0xffffffff)); fiat_p384_addcarryx_u64(&x37, &x38, 0x0, x36, x33); fiat_p384_addcarryx_u64(&x39, &x40, x38, x34, x31); fiat_p384_addcarryx_u64(&x41, &x42, x40, x32, x29); fiat_p384_addcarryx_u64(&x43, &x44, x42, x30, x27); fiat_p384_addcarryx_u64(&x45, &x46, x44, x28, x25); fiat_p384_addcarryx_u64(&x47, &x48, 0x0, x13, x35); fiat_p384_addcarryx_u64(&x49, &x50, x48, x15, x37); fiat_p384_addcarryx_u64(&x51, &x52, x50, x17, x39); fiat_p384_addcarryx_u64(&x53, &x54, x52, x19, x41); fiat_p384_addcarryx_u64(&x55, &x56, x54, x21, x43); fiat_p384_addcarryx_u64(&x57, &x58, x56, x22, x45); fiat_p384_addcarryx_u64(&x59, &x60, x58, 0x0, (x46 + x26)); fiat_p384_mulx_u64(&x61, &x62, x1, UINT64_C(0x200000000)); fiat_p384_mulx_u64(&x63, &x64, x1, UINT64_C(0xfffffffe00000000)); fiat_p384_mulx_u64(&x65, &x66, x1, UINT64_C(0x200000000)); fiat_p384_mulx_u64(&x67, &x68, x1, UINT64_C(0xfffffffe00000001)); fiat_p384_addcarryx_u64(&x69, &x70, 0x0, x68, x65); fiat_p384_addcarryx_u64(&x71, &x72, x70, x66, x63); fiat_p384_addcarryx_u64(&x73, &x74, x72, x64, x61); fiat_p384_addcarryx_u64(&x75, &x76, x74, x62, x1); fiat_p384_addcarryx_u64(&x77, &x78, 0x0, x49, x67); fiat_p384_addcarryx_u64(&x79, &x80, x78, x51, x69); fiat_p384_addcarryx_u64(&x81, &x82, x80, x53, x71); fiat_p384_addcarryx_u64(&x83, &x84, x82, x55, x73); fiat_p384_addcarryx_u64(&x85, &x86, x84, x57, x75); fiat_p384_addcarryx_u64(&x87, &x88, x86, x59, x76); fiat_p384_mulx_u64(&x89, &x90, x77, UINT64_C(0x100000001)); fiat_p384_mulx_u64(&x91, &x92, x89, UINT64_C(0xffffffffffffffff)); fiat_p384_mulx_u64(&x93, &x94, x89, UINT64_C(0xffffffffffffffff)); fiat_p384_mulx_u64(&x95, &x96, x89, UINT64_C(0xffffffffffffffff)); fiat_p384_mulx_u64(&x97, &x98, x89, UINT64_C(0xfffffffffffffffe)); fiat_p384_mulx_u64(&x99, &x100, x89, UINT64_C(0xffffffff00000000)); fiat_p384_mulx_u64(&x101, &x102, x89, UINT32_C(0xffffffff)); fiat_p384_addcarryx_u64(&x103, &x104, 0x0, x102, x99); fiat_p384_addcarryx_u64(&x105, &x106, x104, x100, x97); fiat_p384_addcarryx_u64(&x107, &x108, x106, x98, x95); fiat_p384_addcarryx_u64(&x109, &x110, x108, x96, x93); fiat_p384_addcarryx_u64(&x111, &x112, x110, x94, x91); fiat_p384_addcarryx_u64(&x113, &x114, 0x0, x77, x101); fiat_p384_addcarryx_u64(&x115, &x116, x114, x79, x103); fiat_p384_addcarryx_u64(&x117, &x118, x116, x81, x105); fiat_p384_addcarryx_u64(&x119, &x120, x118, x83, x107); fiat_p384_addcarryx_u64(&x121, &x122, x120, x85, x109); fiat_p384_addcarryx_u64(&x123, &x124, x122, x87, x111); fiat_p384_addcarryx_u64(&x125, &x126, x124, ((uint64_t)x88 + x60), (x112 + x92)); fiat_p384_mulx_u64(&x127, &x128, x2, UINT64_C(0x200000000)); fiat_p384_mulx_u64(&x129, &x130, x2, UINT64_C(0xfffffffe00000000)); fiat_p384_mulx_u64(&x131, &x132, x2, UINT64_C(0x200000000)); fiat_p384_mulx_u64(&x133, &x134, x2, UINT64_C(0xfffffffe00000001)); fiat_p384_addcarryx_u64(&x135, &x136, 0x0, x134, x131); fiat_p384_addcarryx_u64(&x137, &x138, x136, x132, x129); fiat_p384_addcarryx_u64(&x139, &x140, x138, x130, x127); fiat_p384_addcarryx_u64(&x141, &x142, x140, x128, x2); fiat_p384_addcarryx_u64(&x143, &x144, 0x0, x115, x133); fiat_p384_addcarryx_u64(&x145, &x146, x144, x117, x135); fiat_p384_addcarryx_u64(&x147, &x148, x146, x119, x137); fiat_p384_addcarryx_u64(&x149, &x150, x148, x121, x139); fiat_p384_addcarryx_u64(&x151, &x152, x150, x123, x141); fiat_p384_addcarryx_u64(&x153, &x154, x152, x125, x142); fiat_p384_mulx_u64(&x155, &x156, x143, UINT64_C(0x100000001)); fiat_p384_mulx_u64(&x157, &x158, x155, UINT64_C(0xffffffffffffffff)); fiat_p384_mulx_u64(&x159, &x160, x155, UINT64_C(0xffffffffffffffff)); fiat_p384_mulx_u64(&x161, &x162, x155, UINT64_C(0xffffffffffffffff)); fiat_p384_mulx_u64(&x163, &x164, x155, UINT64_C(0xfffffffffffffffe)); fiat_p384_mulx_u64(&x165, &x166, x155, UINT64_C(0xffffffff00000000)); fiat_p384_mulx_u64(&x167, &x168, x155, UINT32_C(0xffffffff)); fiat_p384_addcarryx_u64(&x169, &x170, 0x0, x168, x165); fiat_p384_addcarryx_u64(&x171, &x172, x170, x166, x163); fiat_p384_addcarryx_u64(&x173, &x174, x172, x164, x161); fiat_p384_addcarryx_u64(&x175, &x176, x174, x162, x159); fiat_p384_addcarryx_u64(&x177, &x178, x176, x160, x157); fiat_p384_addcarryx_u64(&x179, &x180, 0x0, x143, x167); fiat_p384_addcarryx_u64(&x181, &x182, x180, x145, x169); fiat_p384_addcarryx_u64(&x183, &x184, x182, x147, x171); fiat_p384_addcarryx_u64(&x185, &x186, x184, x149, x173); fiat_p384_addcarryx_u64(&x187, &x188, x186, x151, x175); fiat_p384_addcarryx_u64(&x189, &x190, x188, x153, x177); fiat_p384_addcarryx_u64(&x191, &x192, x190, ((uint64_t)x154 + x126), (x178 + x158)); fiat_p384_mulx_u64(&x193, &x194, x3, UINT64_C(0x200000000)); fiat_p384_mulx_u64(&x195, &x196, x3, UINT64_C(0xfffffffe00000000)); fiat_p384_mulx_u64(&x197, &x198, x3, UINT64_C(0x200000000)); fiat_p384_mulx_u64(&x199, &x200, x3, UINT64_C(0xfffffffe00000001)); fiat_p384_addcarryx_u64(&x201, &x202, 0x0, x200, x197); fiat_p384_addcarryx_u64(&x203, &x204, x202, x198, x195); fiat_p384_addcarryx_u64(&x205, &x206, x204, x196, x193); fiat_p384_addcarryx_u64(&x207, &x208, x206, x194, x3); fiat_p384_addcarryx_u64(&x209, &x210, 0x0, x181, x199); fiat_p384_addcarryx_u64(&x211, &x212, x210, x183, x201); fiat_p384_addcarryx_u64(&x213, &x214, x212, x185, x203); fiat_p384_addcarryx_u64(&x215, &x216, x214, x187, x205); fiat_p384_addcarryx_u64(&x217, &x218, x216, x189, x207); fiat_p384_addcarryx_u64(&x219, &x220, x218, x191, x208); fiat_p384_mulx_u64(&x221, &x222, x209, UINT64_C(0x100000001)); fiat_p384_mulx_u64(&x223, &x224, x221, UINT64_C(0xffffffffffffffff)); fiat_p384_mulx_u64(&x225, &x226, x221, UINT64_C(0xffffffffffffffff)); fiat_p384_mulx_u64(&x227, &x228, x221, UINT64_C(0xffffffffffffffff)); fiat_p384_mulx_u64(&x229, &x230, x221, UINT64_C(0xfffffffffffffffe)); fiat_p384_mulx_u64(&x231, &x232, x221, UINT64_C(0xffffffff00000000)); fiat_p384_mulx_u64(&x233, &x234, x221, UINT32_C(0xffffffff)); fiat_p384_addcarryx_u64(&x235, &x236, 0x0, x234, x231); fiat_p384_addcarryx_u64(&x237, &x238, x236, x232, x229); fiat_p384_addcarryx_u64(&x239, &x240, x238, x230, x227); fiat_p384_addcarryx_u64(&x241, &x242, x240, x228, x225); fiat_p384_addcarryx_u64(&x243, &x244, x242, x226, x223); fiat_p384_addcarryx_u64(&x245, &x246, 0x0, x209, x233); fiat_p384_addcarryx_u64(&x247, &x248, x246, x211, x235); fiat_p384_addcarryx_u64(&x249, &x250, x248, x213, x237); fiat_p384_addcarryx_u64(&x251, &x252, x250, x215, x239); fiat_p384_addcarryx_u64(&x253, &x254, x252, x217, x241); fiat_p384_addcarryx_u64(&x255, &x256, x254, x219, x243); fiat_p384_addcarryx_u64(&x257, &x258, x256, ((uint64_t)x220 + x192), (x244 + x224)); fiat_p384_mulx_u64(&x259, &x260, x4, UINT64_C(0x200000000)); fiat_p384_mulx_u64(&x261, &x262, x4, UINT64_C(0xfffffffe00000000)); fiat_p384_mulx_u64(&x263, &x264, x4, UINT64_C(0x200000000)); fiat_p384_mulx_u64(&x265, &x266, x4, UINT64_C(0xfffffffe00000001)); fiat_p384_addcarryx_u64(&x267, &x268, 0x0, x266, x263); fiat_p384_addcarryx_u64(&x269, &x270, x268, x264, x261); fiat_p384_addcarryx_u64(&x271, &x272, x270, x262, x259); fiat_p384_addcarryx_u64(&x273, &x274, x272, x260, x4); fiat_p384_addcarryx_u64(&x275, &x276, 0x0, x247, x265); fiat_p384_addcarryx_u64(&x277, &x278, x276, x249, x267); fiat_p384_addcarryx_u64(&x279, &x280, x278, x251, x269); fiat_p384_addcarryx_u64(&x281, &x282, x280, x253, x271); fiat_p384_addcarryx_u64(&x283, &x284, x282, x255, x273); fiat_p384_addcarryx_u64(&x285, &x286, x284, x257, x274); fiat_p384_mulx_u64(&x287, &x288, x275, UINT64_C(0x100000001)); fiat_p384_mulx_u64(&x289, &x290, x287, UINT64_C(0xffffffffffffffff)); fiat_p384_mulx_u64(&x291, &x292, x287, UINT64_C(0xffffffffffffffff)); fiat_p384_mulx_u64(&x293, &x294, x287, UINT64_C(0xffffffffffffffff)); fiat_p384_mulx_u64(&x295, &x296, x287, UINT64_C(0xfffffffffffffffe)); fiat_p384_mulx_u64(&x297, &x298, x287, UINT64_C(0xffffffff00000000)); fiat_p384_mulx_u64(&x299, &x300, x287, UINT32_C(0xffffffff)); fiat_p384_addcarryx_u64(&x301, &x302, 0x0, x300, x297); fiat_p384_addcarryx_u64(&x303, &x304, x302, x298, x295); fiat_p384_addcarryx_u64(&x305, &x306, x304, x296, x293); fiat_p384_addcarryx_u64(&x307, &x308, x306, x294, x291); fiat_p384_addcarryx_u64(&x309, &x310, x308, x292, x289); fiat_p384_addcarryx_u64(&x311, &x312, 0x0, x275, x299); fiat_p384_addcarryx_u64(&x313, &x314, x312, x277, x301); fiat_p384_addcarryx_u64(&x315, &x316, x314, x279, x303); fiat_p384_addcarryx_u64(&x317, &x318, x316, x281, x305); fiat_p384_addcarryx_u64(&x319, &x320, x318, x283, x307); fiat_p384_addcarryx_u64(&x321, &x322, x320, x285, x309); fiat_p384_addcarryx_u64(&x323, &x324, x322, ((uint64_t)x286 + x258), (x310 + x290)); fiat_p384_mulx_u64(&x325, &x326, x5, UINT64_C(0x200000000)); fiat_p384_mulx_u64(&x327, &x328, x5, UINT64_C(0xfffffffe00000000)); fiat_p384_mulx_u64(&x329, &x330, x5, UINT64_C(0x200000000)); fiat_p384_mulx_u64(&x331, &x332, x5, UINT64_C(0xfffffffe00000001)); fiat_p384_addcarryx_u64(&x333, &x334, 0x0, x332, x329); fiat_p384_addcarryx_u64(&x335, &x336, x334, x330, x327); fiat_p384_addcarryx_u64(&x337, &x338, x336, x328, x325); fiat_p384_addcarryx_u64(&x339, &x340, x338, x326, x5); fiat_p384_addcarryx_u64(&x341, &x342, 0x0, x313, x331); fiat_p384_addcarryx_u64(&x343, &x344, x342, x315, x333); fiat_p384_addcarryx_u64(&x345, &x346, x344, x317, x335); fiat_p384_addcarryx_u64(&x347, &x348, x346, x319, x337); fiat_p384_addcarryx_u64(&x349, &x350, x348, x321, x339); fiat_p384_addcarryx_u64(&x351, &x352, x350, x323, x340); fiat_p384_mulx_u64(&x353, &x354, x341, UINT64_C(0x100000001)); fiat_p384_mulx_u64(&x355, &x356, x353, UINT64_C(0xffffffffffffffff)); fiat_p384_mulx_u64(&x357, &x358, x353, UINT64_C(0xffffffffffffffff)); fiat_p384_mulx_u64(&x359, &x360, x353, UINT64_C(0xffffffffffffffff)); fiat_p384_mulx_u64(&x361, &x362, x353, UINT64_C(0xfffffffffffffffe)); fiat_p384_mulx_u64(&x363, &x364, x353, UINT64_C(0xffffffff00000000)); fiat_p384_mulx_u64(&x365, &x366, x353, UINT32_C(0xffffffff)); fiat_p384_addcarryx_u64(&x367, &x368, 0x0, x366, x363); fiat_p384_addcarryx_u64(&x369, &x370, x368, x364, x361); fiat_p384_addcarryx_u64(&x371, &x372, x370, x362, x359); fiat_p384_addcarryx_u64(&x373, &x374, x372, x360, x357); fiat_p384_addcarryx_u64(&x375, &x376, x374, x358, x355); fiat_p384_addcarryx_u64(&x377, &x378, 0x0, x341, x365); fiat_p384_addcarryx_u64(&x379, &x380, x378, x343, x367); fiat_p384_addcarryx_u64(&x381, &x382, x380, x345, x369); fiat_p384_addcarryx_u64(&x383, &x384, x382, x347, x371); fiat_p384_addcarryx_u64(&x385, &x386, x384, x349, x373); fiat_p384_addcarryx_u64(&x387, &x388, x386, x351, x375); fiat_p384_addcarryx_u64(&x389, &x390, x388, ((uint64_t)x352 + x324), (x376 + x356)); fiat_p384_subborrowx_u64(&x391, &x392, 0x0, x379, UINT32_C(0xffffffff)); fiat_p384_subborrowx_u64(&x393, &x394, x392, x381, UINT64_C(0xffffffff00000000)); fiat_p384_subborrowx_u64(&x395, &x396, x394, x383, UINT64_C(0xfffffffffffffffe)); fiat_p384_subborrowx_u64(&x397, &x398, x396, x385, UINT64_C(0xffffffffffffffff)); fiat_p384_subborrowx_u64(&x399, &x400, x398, x387, UINT64_C(0xffffffffffffffff)); fiat_p384_subborrowx_u64(&x401, &x402, x400, x389, UINT64_C(0xffffffffffffffff)); fiat_p384_subborrowx_u64(&x403, &x404, x402, x390, 0x0); fiat_p384_cmovznz_u64(&x405, x404, x391, x379); fiat_p384_cmovznz_u64(&x406, x404, x393, x381); fiat_p384_cmovznz_u64(&x407, x404, x395, x383); fiat_p384_cmovznz_u64(&x408, x404, x397, x385); fiat_p384_cmovznz_u64(&x409, x404, x399, x387); fiat_p384_cmovznz_u64(&x410, x404, x401, x389); out1[0] = x405; out1[1] = x406; out1[2] = x407; out1[3] = x408; out1[4] = x409; out1[5] = x410; } /* * The function fiat_p384_nonzero outputs a single non-zero word if the input is non-zero and zero otherwise. * * Preconditions: * 0 ≤ eval arg1 < m * Postconditions: * out1 = 0 ↔ eval (from_montgomery arg1) mod m = 0 * * Input Bounds: * arg1: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]] * Output Bounds: * out1: [0x0 ~> 0xffffffffffffffff] */ static void fiat_p384_nonzero(uint64_t* out1, const uint64_t arg1[6]) { uint64_t x1; x1 = ((arg1[0]) | ((arg1[1]) | ((arg1[2]) | ((arg1[3]) | ((arg1[4]) | (arg1[5])))))); *out1 = x1; } /* * The function fiat_p384_selectznz is a multi-limb conditional select. * * Postconditions: * out1 = (if arg1 = 0 then arg2 else arg3) * * Input Bounds: * arg1: [0x0 ~> 0x1] * arg2: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]] * arg3: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]] * Output Bounds: * out1: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]] */ static void fiat_p384_selectznz(uint64_t out1[6], fiat_p384_uint1 arg1, const uint64_t arg2[6], const uint64_t arg3[6]) { uint64_t x1; uint64_t x2; uint64_t x3; uint64_t x4; uint64_t x5; uint64_t x6; fiat_p384_cmovznz_u64(&x1, arg1, (arg2[0]), (arg3[0])); fiat_p384_cmovznz_u64(&x2, arg1, (arg2[1]), (arg3[1])); fiat_p384_cmovznz_u64(&x3, arg1, (arg2[2]), (arg3[2])); fiat_p384_cmovznz_u64(&x4, arg1, (arg2[3]), (arg3[3])); fiat_p384_cmovznz_u64(&x5, arg1, (arg2[4]), (arg3[4])); fiat_p384_cmovznz_u64(&x6, arg1, (arg2[5]), (arg3[5])); out1[0] = x1; out1[1] = x2; out1[2] = x3; out1[3] = x4; out1[4] = x5; out1[5] = x6; } /* * The function fiat_p384_to_bytes serializes a field element NOT in the Montgomery domain to bytes in little-endian order. * * Preconditions: * 0 ≤ eval arg1 < m * Postconditions: * out1 = map (λ x, ⌊((eval arg1 mod m) mod 2^(8 * (x + 1))) / 2^(8 * x)⌋) [0..47] * * Input Bounds: * arg1: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]] * Output Bounds: * out1: [[0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff]] */ static void fiat_p384_to_bytes(uint8_t out1[48], const uint64_t arg1[6]) { uint64_t x1; uint64_t x2; uint64_t x3; uint64_t x4; uint64_t x5; uint64_t x6; uint8_t x7; uint64_t x8; uint8_t x9; uint64_t x10; uint8_t x11; uint64_t x12; uint8_t x13; uint64_t x14; uint8_t x15; uint64_t x16; uint8_t x17; uint64_t x18; uint8_t x19; uint8_t x20; uint8_t x21; uint64_t x22; uint8_t x23; uint64_t x24; uint8_t x25; uint64_t x26; uint8_t x27; uint64_t x28; uint8_t x29; uint64_t x30; uint8_t x31; uint64_t x32; uint8_t x33; uint8_t x34; uint8_t x35; uint64_t x36; uint8_t x37; uint64_t x38; uint8_t x39; uint64_t x40; uint8_t x41; uint64_t x42; uint8_t x43; uint64_t x44; uint8_t x45; uint64_t x46; uint8_t x47; uint8_t x48; uint8_t x49; uint64_t x50; uint8_t x51; uint64_t x52; uint8_t x53; uint64_t x54; uint8_t x55; uint64_t x56; uint8_t x57; uint64_t x58; uint8_t x59; uint64_t x60; uint8_t x61; uint8_t x62; uint8_t x63; uint64_t x64; uint8_t x65; uint64_t x66; uint8_t x67; uint64_t x68; uint8_t x69; uint64_t x70; uint8_t x71; uint64_t x72; uint8_t x73; uint64_t x74; uint8_t x75; uint8_t x76; uint8_t x77; uint64_t x78; uint8_t x79; uint64_t x80; uint8_t x81; uint64_t x82; uint8_t x83; uint64_t x84; uint8_t x85; uint64_t x86; uint8_t x87; uint64_t x88; uint8_t x89; uint8_t x90; x1 = (arg1[5]); x2 = (arg1[4]); x3 = (arg1[3]); x4 = (arg1[2]); x5 = (arg1[1]); x6 = (arg1[0]); x7 = (uint8_t)(x6 & UINT8_C(0xff)); x8 = (x6 >> 8); x9 = (uint8_t)(x8 & UINT8_C(0xff)); x10 = (x8 >> 8); x11 = (uint8_t)(x10 & UINT8_C(0xff)); x12 = (x10 >> 8); x13 = (uint8_t)(x12 & UINT8_C(0xff)); x14 = (x12 >> 8); x15 = (uint8_t)(x14 & UINT8_C(0xff)); x16 = (x14 >> 8); x17 = (uint8_t)(x16 & UINT8_C(0xff)); x18 = (x16 >> 8); x19 = (uint8_t)(x18 & UINT8_C(0xff)); x20 = (uint8_t)(x18 >> 8); x21 = (uint8_t)(x5 & UINT8_C(0xff)); x22 = (x5 >> 8); x23 = (uint8_t)(x22 & UINT8_C(0xff)); x24 = (x22 >> 8); x25 = (uint8_t)(x24 & UINT8_C(0xff)); x26 = (x24 >> 8); x27 = (uint8_t)(x26 & UINT8_C(0xff)); x28 = (x26 >> 8); x29 = (uint8_t)(x28 & UINT8_C(0xff)); x30 = (x28 >> 8); x31 = (uint8_t)(x30 & UINT8_C(0xff)); x32 = (x30 >> 8); x33 = (uint8_t)(x32 & UINT8_C(0xff)); x34 = (uint8_t)(x32 >> 8); x35 = (uint8_t)(x4 & UINT8_C(0xff)); x36 = (x4 >> 8); x37 = (uint8_t)(x36 & UINT8_C(0xff)); x38 = (x36 >> 8); x39 = (uint8_t)(x38 & UINT8_C(0xff)); x40 = (x38 >> 8); x41 = (uint8_t)(x40 & UINT8_C(0xff)); x42 = (x40 >> 8); x43 = (uint8_t)(x42 & UINT8_C(0xff)); x44 = (x42 >> 8); x45 = (uint8_t)(x44 & UINT8_C(0xff)); x46 = (x44 >> 8); x47 = (uint8_t)(x46 & UINT8_C(0xff)); x48 = (uint8_t)(x46 >> 8); x49 = (uint8_t)(x3 & UINT8_C(0xff)); x50 = (x3 >> 8); x51 = (uint8_t)(x50 & UINT8_C(0xff)); x52 = (x50 >> 8); x53 = (uint8_t)(x52 & UINT8_C(0xff)); x54 = (x52 >> 8); x55 = (uint8_t)(x54 & UINT8_C(0xff)); x56 = (x54 >> 8); x57 = (uint8_t)(x56 & UINT8_C(0xff)); x58 = (x56 >> 8); x59 = (uint8_t)(x58 & UINT8_C(0xff)); x60 = (x58 >> 8); x61 = (uint8_t)(x60 & UINT8_C(0xff)); x62 = (uint8_t)(x60 >> 8); x63 = (uint8_t)(x2 & UINT8_C(0xff)); x64 = (x2 >> 8); x65 = (uint8_t)(x64 & UINT8_C(0xff)); x66 = (x64 >> 8); x67 = (uint8_t)(x66 & UINT8_C(0xff)); x68 = (x66 >> 8); x69 = (uint8_t)(x68 & UINT8_C(0xff)); x70 = (x68 >> 8); x71 = (uint8_t)(x70 & UINT8_C(0xff)); x72 = (x70 >> 8); x73 = (uint8_t)(x72 & UINT8_C(0xff)); x74 = (x72 >> 8); x75 = (uint8_t)(x74 & UINT8_C(0xff)); x76 = (uint8_t)(x74 >> 8); x77 = (uint8_t)(x1 & UINT8_C(0xff)); x78 = (x1 >> 8); x79 = (uint8_t)(x78 & UINT8_C(0xff)); x80 = (x78 >> 8); x81 = (uint8_t)(x80 & UINT8_C(0xff)); x82 = (x80 >> 8); x83 = (uint8_t)(x82 & UINT8_C(0xff)); x84 = (x82 >> 8); x85 = (uint8_t)(x84 & UINT8_C(0xff)); x86 = (x84 >> 8); x87 = (uint8_t)(x86 & UINT8_C(0xff)); x88 = (x86 >> 8); x89 = (uint8_t)(x88 & UINT8_C(0xff)); x90 = (uint8_t)(x88 >> 8); out1[0] = x7; out1[1] = x9; out1[2] = x11; out1[3] = x13; out1[4] = x15; out1[5] = x17; out1[6] = x19; out1[7] = x20; out1[8] = x21; out1[9] = x23; out1[10] = x25; out1[11] = x27; out1[12] = x29; out1[13] = x31; out1[14] = x33; out1[15] = x34; out1[16] = x35; out1[17] = x37; out1[18] = x39; out1[19] = x41; out1[20] = x43; out1[21] = x45; out1[22] = x47; out1[23] = x48; out1[24] = x49; out1[25] = x51; out1[26] = x53; out1[27] = x55; out1[28] = x57; out1[29] = x59; out1[30] = x61; out1[31] = x62; out1[32] = x63; out1[33] = x65; out1[34] = x67; out1[35] = x69; out1[36] = x71; out1[37] = x73; out1[38] = x75; out1[39] = x76; out1[40] = x77; out1[41] = x79; out1[42] = x81; out1[43] = x83; out1[44] = x85; out1[45] = x87; out1[46] = x89; out1[47] = x90; } /* * The function fiat_p384_from_bytes deserializes a field element NOT in the Montgomery domain from bytes in little-endian order. * * Preconditions: * 0 ≤ bytes_eval arg1 < m * Postconditions: * eval out1 mod m = bytes_eval arg1 mod m * 0 ≤ eval out1 < m * * Input Bounds: * arg1: [[0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff]] * Output Bounds: * out1: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]] */ static void fiat_p384_from_bytes(uint64_t out1[6], const uint8_t arg1[48]) { uint64_t x1; uint64_t x2; uint64_t x3; uint64_t x4; uint64_t x5; uint64_t x6; uint64_t x7; uint8_t x8; uint64_t x9; uint64_t x10; uint64_t x11; uint64_t x12; uint64_t x13; uint64_t x14; uint64_t x15; uint8_t x16; uint64_t x17; uint64_t x18; uint64_t x19; uint64_t x20; uint64_t x21; uint64_t x22; uint64_t x23; uint8_t x24; uint64_t x25; uint64_t x26; uint64_t x27; uint64_t x28; uint64_t x29; uint64_t x30; uint64_t x31; uint8_t x32; uint64_t x33; uint64_t x34; uint64_t x35; uint64_t x36; uint64_t x37; uint64_t x38; uint64_t x39; uint8_t x40; uint64_t x41; uint64_t x42; uint64_t x43; uint64_t x44; uint64_t x45; uint64_t x46; uint64_t x47; uint8_t x48; uint64_t x49; uint64_t x50; uint64_t x51; uint64_t x52; uint64_t x53; uint64_t x54; uint64_t x55; uint64_t x56; uint64_t x57; uint64_t x58; uint64_t x59; uint64_t x60; uint64_t x61; uint64_t x62; uint64_t x63; uint64_t x64; uint64_t x65; uint64_t x66; uint64_t x67; uint64_t x68; uint64_t x69; uint64_t x70; uint64_t x71; uint64_t x72; uint64_t x73; uint64_t x74; uint64_t x75; uint64_t x76; uint64_t x77; uint64_t x78; uint64_t x79; uint64_t x80; uint64_t x81; uint64_t x82; uint64_t x83; uint64_t x84; uint64_t x85; uint64_t x86; uint64_t x87; uint64_t x88; uint64_t x89; uint64_t x90; x1 = ((uint64_t)(arg1[47]) << 56); x2 = ((uint64_t)(arg1[46]) << 48); x3 = ((uint64_t)(arg1[45]) << 40); x4 = ((uint64_t)(arg1[44]) << 32); x5 = ((uint64_t)(arg1[43]) << 24); x6 = ((uint64_t)(arg1[42]) << 16); x7 = ((uint64_t)(arg1[41]) << 8); x8 = (arg1[40]); x9 = ((uint64_t)(arg1[39]) << 56); x10 = ((uint64_t)(arg1[38]) << 48); x11 = ((uint64_t)(arg1[37]) << 40); x12 = ((uint64_t)(arg1[36]) << 32); x13 = ((uint64_t)(arg1[35]) << 24); x14 = ((uint64_t)(arg1[34]) << 16); x15 = ((uint64_t)(arg1[33]) << 8); x16 = (arg1[32]); x17 = ((uint64_t)(arg1[31]) << 56); x18 = ((uint64_t)(arg1[30]) << 48); x19 = ((uint64_t)(arg1[29]) << 40); x20 = ((uint64_t)(arg1[28]) << 32); x21 = ((uint64_t)(arg1[27]) << 24); x22 = ((uint64_t)(arg1[26]) << 16); x23 = ((uint64_t)(arg1[25]) << 8); x24 = (arg1[24]); x25 = ((uint64_t)(arg1[23]) << 56); x26 = ((uint64_t)(arg1[22]) << 48); x27 = ((uint64_t)(arg1[21]) << 40); x28 = ((uint64_t)(arg1[20]) << 32); x29 = ((uint64_t)(arg1[19]) << 24); x30 = ((uint64_t)(arg1[18]) << 16); x31 = ((uint64_t)(arg1[17]) << 8); x32 = (arg1[16]); x33 = ((uint64_t)(arg1[15]) << 56); x34 = ((uint64_t)(arg1[14]) << 48); x35 = ((uint64_t)(arg1[13]) << 40); x36 = ((uint64_t)(arg1[12]) << 32); x37 = ((uint64_t)(arg1[11]) << 24); x38 = ((uint64_t)(arg1[10]) << 16); x39 = ((uint64_t)(arg1[9]) << 8); x40 = (arg1[8]); x41 = ((uint64_t)(arg1[7]) << 56); x42 = ((uint64_t)(arg1[6]) << 48); x43 = ((uint64_t)(arg1[5]) << 40); x44 = ((uint64_t)(arg1[4]) << 32); x45 = ((uint64_t)(arg1[3]) << 24); x46 = ((uint64_t)(arg1[2]) << 16); x47 = ((uint64_t)(arg1[1]) << 8); x48 = (arg1[0]); x49 = (x47 + (uint64_t)x48); x50 = (x46 + x49); x51 = (x45 + x50); x52 = (x44 + x51); x53 = (x43 + x52); x54 = (x42 + x53); x55 = (x41 + x54); x56 = (x39 + (uint64_t)x40); x57 = (x38 + x56); x58 = (x37 + x57); x59 = (x36 + x58); x60 = (x35 + x59); x61 = (x34 + x60); x62 = (x33 + x61); x63 = (x31 + (uint64_t)x32); x64 = (x30 + x63); x65 = (x29 + x64); x66 = (x28 + x65); x67 = (x27 + x66); x68 = (x26 + x67); x69 = (x25 + x68); x70 = (x23 + (uint64_t)x24); x71 = (x22 + x70); x72 = (x21 + x71); x73 = (x20 + x72); x74 = (x19 + x73); x75 = (x18 + x74); x76 = (x17 + x75); x77 = (x15 + (uint64_t)x16); x78 = (x14 + x77); x79 = (x13 + x78); x80 = (x12 + x79); x81 = (x11 + x80); x82 = (x10 + x81); x83 = (x9 + x82); x84 = (x7 + (uint64_t)x8); x85 = (x6 + x84); x86 = (x5 + x85); x87 = (x4 + x86); x88 = (x3 + x87); x89 = (x2 + x88); x90 = (x1 + x89); out1[0] = x55; out1[1] = x62; out1[2] = x69; out1[3] = x76; out1[4] = x83; out1[5] = x90; } /* * The function fiat_p384_set_one returns the field element one in the Montgomery domain. * * Postconditions: * eval (from_montgomery out1) mod m = 1 mod m * 0 ≤ eval out1 < m * */ static void fiat_p384_set_one(fiat_p384_montgomery_domain_field_element out1) { out1[0] = UINT64_C(0xffffffff00000001); out1[1] = UINT32_C(0xffffffff); out1[2] = 0x1; out1[3] = 0x0; out1[4] = 0x0; out1[5] = 0x0; } /* * The function fiat_p384_msat returns the saturated representation of the prime modulus. * * Postconditions: * twos_complement_eval out1 = m * 0 ≤ eval out1 < m * * Output Bounds: * out1: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]] */ static void fiat_p384_msat(uint64_t out1[7]) { out1[0] = UINT32_C(0xffffffff); out1[1] = UINT64_C(0xffffffff00000000); out1[2] = UINT64_C(0xfffffffffffffffe); out1[3] = UINT64_C(0xffffffffffffffff); out1[4] = UINT64_C(0xffffffffffffffff); out1[5] = UINT64_C(0xffffffffffffffff); out1[6] = 0x0; } /* * The function fiat_p384_divstep_precomp returns the precomputed value for Bernstein-Yang-inversion (in montgomery form). * * Postconditions: * eval (from_montgomery out1) = ⌊(m - 1) / 2⌋^(if ⌊log2 m⌋ + 1 < 46 then ⌊(49 * (⌊log2 m⌋ + 1) + 80) / 17⌋ else ⌊(49 * (⌊log2 m⌋ + 1) + 57) / 17⌋) * 0 ≤ eval out1 < m * * Output Bounds: * out1: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]] */ static void fiat_p384_divstep_precomp(uint64_t out1[6]) { out1[0] = UINT64_C(0xfff69400fff18fff); out1[1] = UINT64_C(0x2b7feffffd3ff); out1[2] = UINT64_C(0xfffedbfffffe97ff); out1[3] = UINT64_C(0x2840000002fff); out1[4] = UINT64_C(0x6040000050400); out1[5] = UINT64_C(0xfffc480000038000); } /* * The function fiat_p384_divstep computes a divstep. * * Preconditions: * 0 ≤ eval arg4 < m * 0 ≤ eval arg5 < m * Postconditions: * out1 = (if 0 < arg1 ∧ (twos_complement_eval arg3) is odd then 1 - arg1 else 1 + arg1) * twos_complement_eval out2 = (if 0 < arg1 ∧ (twos_complement_eval arg3) is odd then twos_complement_eval arg3 else twos_complement_eval arg2) * twos_complement_eval out3 = (if 0 < arg1 ∧ (twos_complement_eval arg3) is odd then ⌊(twos_complement_eval arg3 - twos_complement_eval arg2) / 2⌋ else ⌊(twos_complement_eval arg3 + (twos_complement_eval arg3 mod 2) * twos_complement_eval arg2) / 2⌋) * eval (from_montgomery out4) mod m = (if 0 < arg1 ∧ (twos_complement_eval arg3) is odd then (2 * eval (from_montgomery arg5)) mod m else (2 * eval (from_montgomery arg4)) mod m) * eval (from_montgomery out5) mod m = (if 0 < arg1 ∧ (twos_complement_eval arg3) is odd then (eval (from_montgomery arg4) - eval (from_montgomery arg4)) mod m else (eval (from_montgomery arg5) + (twos_complement_eval arg3 mod 2) * eval (from_montgomery arg4)) mod m) * 0 ≤ eval out5 < m * 0 ≤ eval out5 < m * 0 ≤ eval out2 < m * 0 ≤ eval out3 < m * * Input Bounds: * arg1: [0x0 ~> 0xffffffffffffffff] * arg2: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]] * arg3: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]] * arg4: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]] * arg5: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]] * Output Bounds: * out1: [0x0 ~> 0xffffffffffffffff] * out2: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]] * out3: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]] * out4: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]] * out5: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]] */ static void fiat_p384_divstep(uint64_t* out1, uint64_t out2[7], uint64_t out3[7], uint64_t out4[6], uint64_t out5[6], uint64_t arg1, const uint64_t arg2[7], const uint64_t arg3[7], const uint64_t arg4[6], const uint64_t arg5[6]) { uint64_t x1; fiat_p384_uint1 x2; fiat_p384_uint1 x3; uint64_t x4; fiat_p384_uint1 x5; uint64_t x6; uint64_t x7; uint64_t x8; uint64_t x9; uint64_t x10; uint64_t x11; uint64_t x12; uint64_t x13; uint64_t x14; fiat_p384_uint1 x15; uint64_t x16; fiat_p384_uint1 x17; uint64_t x18; fiat_p384_uint1 x19; uint64_t x20; fiat_p384_uint1 x21; uint64_t x22; fiat_p384_uint1 x23; uint64_t x24; fiat_p384_uint1 x25; uint64_t x26; fiat_p384_uint1 x27; uint64_t x28; uint64_t x29; uint64_t x30; uint64_t x31; uint64_t x32; uint64_t x33; uint64_t x34; uint64_t x35; uint64_t x36; uint64_t x37; uint64_t x38; uint64_t x39; uint64_t x40; uint64_t x41; fiat_p384_uint1 x42; uint64_t x43; fiat_p384_uint1 x44; uint64_t x45; fiat_p384_uint1 x46; uint64_t x47; fiat_p384_uint1 x48; uint64_t x49; fiat_p384_uint1 x50; uint64_t x51; fiat_p384_uint1 x52; uint64_t x53; fiat_p384_uint1 x54; uint64_t x55; fiat_p384_uint1 x56; uint64_t x57; fiat_p384_uint1 x58; uint64_t x59; fiat_p384_uint1 x60; uint64_t x61; fiat_p384_uint1 x62; uint64_t x63; fiat_p384_uint1 x64; uint64_t x65; fiat_p384_uint1 x66; uint64_t x67; uint64_t x68; uint64_t x69; uint64_t x70; uint64_t x71; uint64_t x72; uint64_t x73; fiat_p384_uint1 x74; uint64_t x75; fiat_p384_uint1 x76; uint64_t x77; fiat_p384_uint1 x78; uint64_t x79; fiat_p384_uint1 x80; uint64_t x81; fiat_p384_uint1 x82; uint64_t x83; fiat_p384_uint1 x84; uint64_t x85; uint64_t x86; fiat_p384_uint1 x87; uint64_t x88; fiat_p384_uint1 x89; uint64_t x90; fiat_p384_uint1 x91; uint64_t x92; fiat_p384_uint1 x93; uint64_t x94; fiat_p384_uint1 x95; uint64_t x96; fiat_p384_uint1 x97; uint64_t x98; uint64_t x99; uint64_t x100; uint64_t x101; uint64_t x102; uint64_t x103; fiat_p384_uint1 x104; uint64_t x105; uint64_t x106; uint64_t x107; uint64_t x108; uint64_t x109; uint64_t x110; uint64_t x111; uint64_t x112; fiat_p384_uint1 x113; uint64_t x114; fiat_p384_uint1 x115; uint64_t x116; fiat_p384_uint1 x117; uint64_t x118; fiat_p384_uint1 x119; uint64_t x120; fiat_p384_uint1 x121; uint64_t x122; fiat_p384_uint1 x123; uint64_t x124; fiat_p384_uint1 x125; uint64_t x126; uint64_t x127; uint64_t x128; uint64_t x129; uint64_t x130; uint64_t x131; uint64_t x132; fiat_p384_uint1 x133; uint64_t x134; fiat_p384_uint1 x135; uint64_t x136; fiat_p384_uint1 x137; uint64_t x138; fiat_p384_uint1 x139; uint64_t x140; fiat_p384_uint1 x141; uint64_t x142; fiat_p384_uint1 x143; uint64_t x144; fiat_p384_uint1 x145; uint64_t x146; fiat_p384_uint1 x147; uint64_t x148; fiat_p384_uint1 x149; uint64_t x150; fiat_p384_uint1 x151; uint64_t x152; fiat_p384_uint1 x153; uint64_t x154; fiat_p384_uint1 x155; uint64_t x156; fiat_p384_uint1 x157; uint64_t x158; fiat_p384_uint1 x159; uint64_t x160; uint64_t x161; uint64_t x162; uint64_t x163; uint64_t x164; uint64_t x165; uint64_t x166; uint64_t x167; uint64_t x168; uint64_t x169; uint64_t x170; uint64_t x171; uint64_t x172; uint64_t x173; uint64_t x174; uint64_t x175; uint64_t x176; uint64_t x177; uint64_t x178; fiat_p384_addcarryx_u64(&x1, &x2, 0x0, (~arg1), 0x1); x3 = (fiat_p384_uint1)((fiat_p384_uint1)(x1 >> 63) & (fiat_p384_uint1)((arg3[0]) & 0x1)); fiat_p384_addcarryx_u64(&x4, &x5, 0x0, (~arg1), 0x1); fiat_p384_cmovznz_u64(&x6, x3, arg1, x4); fiat_p384_cmovznz_u64(&x7, x3, (arg2[0]), (arg3[0])); fiat_p384_cmovznz_u64(&x8, x3, (arg2[1]), (arg3[1])); fiat_p384_cmovznz_u64(&x9, x3, (arg2[2]), (arg3[2])); fiat_p384_cmovznz_u64(&x10, x3, (arg2[3]), (arg3[3])); fiat_p384_cmovznz_u64(&x11, x3, (arg2[4]), (arg3[4])); fiat_p384_cmovznz_u64(&x12, x3, (arg2[5]), (arg3[5])); fiat_p384_cmovznz_u64(&x13, x3, (arg2[6]), (arg3[6])); fiat_p384_addcarryx_u64(&x14, &x15, 0x0, 0x1, (~(arg2[0]))); fiat_p384_addcarryx_u64(&x16, &x17, x15, 0x0, (~(arg2[1]))); fiat_p384_addcarryx_u64(&x18, &x19, x17, 0x0, (~(arg2[2]))); fiat_p384_addcarryx_u64(&x20, &x21, x19, 0x0, (~(arg2[3]))); fiat_p384_addcarryx_u64(&x22, &x23, x21, 0x0, (~(arg2[4]))); fiat_p384_addcarryx_u64(&x24, &x25, x23, 0x0, (~(arg2[5]))); fiat_p384_addcarryx_u64(&x26, &x27, x25, 0x0, (~(arg2[6]))); fiat_p384_cmovznz_u64(&x28, x3, (arg3[0]), x14); fiat_p384_cmovznz_u64(&x29, x3, (arg3[1]), x16); fiat_p384_cmovznz_u64(&x30, x3, (arg3[2]), x18); fiat_p384_cmovznz_u64(&x31, x3, (arg3[3]), x20); fiat_p384_cmovznz_u64(&x32, x3, (arg3[4]), x22); fiat_p384_cmovznz_u64(&x33, x3, (arg3[5]), x24); fiat_p384_cmovznz_u64(&x34, x3, (arg3[6]), x26); fiat_p384_cmovznz_u64(&x35, x3, (arg4[0]), (arg5[0])); fiat_p384_cmovznz_u64(&x36, x3, (arg4[1]), (arg5[1])); fiat_p384_cmovznz_u64(&x37, x3, (arg4[2]), (arg5[2])); fiat_p384_cmovznz_u64(&x38, x3, (arg4[3]), (arg5[3])); fiat_p384_cmovznz_u64(&x39, x3, (arg4[4]), (arg5[4])); fiat_p384_cmovznz_u64(&x40, x3, (arg4[5]), (arg5[5])); fiat_p384_addcarryx_u64(&x41, &x42, 0x0, x35, x35); fiat_p384_addcarryx_u64(&x43, &x44, x42, x36, x36); fiat_p384_addcarryx_u64(&x45, &x46, x44, x37, x37); fiat_p384_addcarryx_u64(&x47, &x48, x46, x38, x38); fiat_p384_addcarryx_u64(&x49, &x50, x48, x39, x39); fiat_p384_addcarryx_u64(&x51, &x52, x50, x40, x40); fiat_p384_subborrowx_u64(&x53, &x54, 0x0, x41, UINT32_C(0xffffffff)); fiat_p384_subborrowx_u64(&x55, &x56, x54, x43, UINT64_C(0xffffffff00000000)); fiat_p384_subborrowx_u64(&x57, &x58, x56, x45, UINT64_C(0xfffffffffffffffe)); fiat_p384_subborrowx_u64(&x59, &x60, x58, x47, UINT64_C(0xffffffffffffffff)); fiat_p384_subborrowx_u64(&x61, &x62, x60, x49, UINT64_C(0xffffffffffffffff)); fiat_p384_subborrowx_u64(&x63, &x64, x62, x51, UINT64_C(0xffffffffffffffff)); fiat_p384_subborrowx_u64(&x65, &x66, x64, x52, 0x0); x67 = (arg4[5]); x68 = (arg4[4]); x69 = (arg4[3]); x70 = (arg4[2]); x71 = (arg4[1]); x72 = (arg4[0]); fiat_p384_subborrowx_u64(&x73, &x74, 0x0, 0x0, x72); fiat_p384_subborrowx_u64(&x75, &x76, x74, 0x0, x71); fiat_p384_subborrowx_u64(&x77, &x78, x76, 0x0, x70); fiat_p384_subborrowx_u64(&x79, &x80, x78, 0x0, x69); fiat_p384_subborrowx_u64(&x81, &x82, x80, 0x0, x68); fiat_p384_subborrowx_u64(&x83, &x84, x82, 0x0, x67); fiat_p384_cmovznz_u64(&x85, x84, 0x0, UINT64_C(0xffffffffffffffff)); fiat_p384_addcarryx_u64(&x86, &x87, 0x0, x73, (x85 & UINT32_C(0xffffffff))); fiat_p384_addcarryx_u64(&x88, &x89, x87, x75, (x85 & UINT64_C(0xffffffff00000000))); fiat_p384_addcarryx_u64(&x90, &x91, x89, x77, (x85 & UINT64_C(0xfffffffffffffffe))); fiat_p384_addcarryx_u64(&x92, &x93, x91, x79, x85); fiat_p384_addcarryx_u64(&x94, &x95, x93, x81, x85); fiat_p384_addcarryx_u64(&x96, &x97, x95, x83, x85); fiat_p384_cmovznz_u64(&x98, x3, (arg5[0]), x86); fiat_p384_cmovznz_u64(&x99, x3, (arg5[1]), x88); fiat_p384_cmovznz_u64(&x100, x3, (arg5[2]), x90); fiat_p384_cmovznz_u64(&x101, x3, (arg5[3]), x92); fiat_p384_cmovznz_u64(&x102, x3, (arg5[4]), x94); fiat_p384_cmovznz_u64(&x103, x3, (arg5[5]), x96); x104 = (fiat_p384_uint1)(x28 & 0x1); fiat_p384_cmovznz_u64(&x105, x104, 0x0, x7); fiat_p384_cmovznz_u64(&x106, x104, 0x0, x8); fiat_p384_cmovznz_u64(&x107, x104, 0x0, x9); fiat_p384_cmovznz_u64(&x108, x104, 0x0, x10); fiat_p384_cmovznz_u64(&x109, x104, 0x0, x11); fiat_p384_cmovznz_u64(&x110, x104, 0x0, x12); fiat_p384_cmovznz_u64(&x111, x104, 0x0, x13); fiat_p384_addcarryx_u64(&x112, &x113, 0x0, x28, x105); fiat_p384_addcarryx_u64(&x114, &x115, x113, x29, x106); fiat_p384_addcarryx_u64(&x116, &x117, x115, x30, x107); fiat_p384_addcarryx_u64(&x118, &x119, x117, x31, x108); fiat_p384_addcarryx_u64(&x120, &x121, x119, x32, x109); fiat_p384_addcarryx_u64(&x122, &x123, x121, x33, x110); fiat_p384_addcarryx_u64(&x124, &x125, x123, x34, x111); fiat_p384_cmovznz_u64(&x126, x104, 0x0, x35); fiat_p384_cmovznz_u64(&x127, x104, 0x0, x36); fiat_p384_cmovznz_u64(&x128, x104, 0x0, x37); fiat_p384_cmovznz_u64(&x129, x104, 0x0, x38); fiat_p384_cmovznz_u64(&x130, x104, 0x0, x39); fiat_p384_cmovznz_u64(&x131, x104, 0x0, x40); fiat_p384_addcarryx_u64(&x132, &x133, 0x0, x98, x126); fiat_p384_addcarryx_u64(&x134, &x135, x133, x99, x127); fiat_p384_addcarryx_u64(&x136, &x137, x135, x100, x128); fiat_p384_addcarryx_u64(&x138, &x139, x137, x101, x129); fiat_p384_addcarryx_u64(&x140, &x141, x139, x102, x130); fiat_p384_addcarryx_u64(&x142, &x143, x141, x103, x131); fiat_p384_subborrowx_u64(&x144, &x145, 0x0, x132, UINT32_C(0xffffffff)); fiat_p384_subborrowx_u64(&x146, &x147, x145, x134, UINT64_C(0xffffffff00000000)); fiat_p384_subborrowx_u64(&x148, &x149, x147, x136, UINT64_C(0xfffffffffffffffe)); fiat_p384_subborrowx_u64(&x150, &x151, x149, x138, UINT64_C(0xffffffffffffffff)); fiat_p384_subborrowx_u64(&x152, &x153, x151, x140, UINT64_C(0xffffffffffffffff)); fiat_p384_subborrowx_u64(&x154, &x155, x153, x142, UINT64_C(0xffffffffffffffff)); fiat_p384_subborrowx_u64(&x156, &x157, x155, x143, 0x0); fiat_p384_addcarryx_u64(&x158, &x159, 0x0, x6, 0x1); x160 = ((x112 >> 1) | ((x114 << 63) & UINT64_C(0xffffffffffffffff))); x161 = ((x114 >> 1) | ((x116 << 63) & UINT64_C(0xffffffffffffffff))); x162 = ((x116 >> 1) | ((x118 << 63) & UINT64_C(0xffffffffffffffff))); x163 = ((x118 >> 1) | ((x120 << 63) & UINT64_C(0xffffffffffffffff))); x164 = ((x120 >> 1) | ((x122 << 63) & UINT64_C(0xffffffffffffffff))); x165 = ((x122 >> 1) | ((x124 << 63) & UINT64_C(0xffffffffffffffff))); x166 = ((x124 & UINT64_C(0x8000000000000000)) | (x124 >> 1)); fiat_p384_cmovznz_u64(&x167, x66, x53, x41); fiat_p384_cmovznz_u64(&x168, x66, x55, x43); fiat_p384_cmovznz_u64(&x169, x66, x57, x45); fiat_p384_cmovznz_u64(&x170, x66, x59, x47); fiat_p384_cmovznz_u64(&x171, x66, x61, x49); fiat_p384_cmovznz_u64(&x172, x66, x63, x51); fiat_p384_cmovznz_u64(&x173, x157, x144, x132); fiat_p384_cmovznz_u64(&x174, x157, x146, x134); fiat_p384_cmovznz_u64(&x175, x157, x148, x136); fiat_p384_cmovznz_u64(&x176, x157, x150, x138); fiat_p384_cmovznz_u64(&x177, x157, x152, x140); fiat_p384_cmovznz_u64(&x178, x157, x154, x142); *out1 = x158; out2[0] = x7; out2[1] = x8; out2[2] = x9; out2[3] = x10; out2[4] = x11; out2[5] = x12; out2[6] = x13; out3[0] = x160; out3[1] = x161; out3[2] = x162; out3[3] = x163; out3[4] = x164; out3[5] = x165; out3[6] = x166; out4[0] = x167; out4[1] = x168; out4[2] = x169; out4[3] = x170; out4[4] = x171; out4[5] = x172; out5[0] = x173; out5[1] = x174; out5[2] = x175; out5[3] = x176; out5[4] = x177; out5[5] = x178; }
mirage-crypto
2.0.2
ISC
https://github.com/mirage/mirage-crypto
git+https://github.com/mirage/mirage-crypto.git
c
mirage-crypto-2.0.2/ec/native/p384_stubs.c
#include "mirage_crypto.h" /* Microsoft compiler does not support 128-bit integers. Drop down to * 32-bit for MSVC. */ #if defined(ARCH_64BIT) && !defined(_MSC_VER) #include "p384_64.h" #define LIMBS 6 #define WORD uint64_t #define WORDSIZE 64 #include "p384_tables_64.h" #else #include "p384_32.h" #define LIMBS 12 #define WORD uint32_t #define WORDSIZE 32 #include "p384_tables_32.h" #endif #define LEN_PRIME 384 #define CURVE_DESCRIPTION fiat_p384 #include "inversion_template.h" #include "point_operations.h" #include <caml/memory.h> CAMLprim value mc_p384_sub(value out, value a, value b) { CAMLparam3(out, a, b); fiat_p384_sub((WORD*)Bytes_val(out), (const WORD*)String_val(a), (const WORD*)String_val(b)); CAMLreturn(Val_unit); } CAMLprim value mc_p384_add(value out, value a, value b) { CAMLparam3(out, a, b); fiat_p384_add((WORD*)Bytes_val(out), (const WORD*)String_val(a), (const WORD*)String_val(b)); CAMLreturn(Val_unit); } CAMLprim value mc_p384_mul(value out, value a, value b) { CAMLparam3(out, a, b); fiat_p384_mul((WORD*)Bytes_val(out), (const WORD*)String_val(a), (const WORD*)String_val(b)); CAMLreturn(Val_unit); } CAMLprim value mc_p384_from_bytes(value out, value in) { CAMLparam2(out, in); fiat_p384_from_bytes((WORD*)Bytes_val(out), _st_uint8(in)); CAMLreturn(Val_unit); } CAMLprim value mc_p384_to_bytes(value out, value in) { CAMLparam2(out, in); fiat_p384_to_bytes(Bytes_val(out), (const WORD*)String_val(in)); CAMLreturn(Val_unit); } CAMLprim value mc_p384_sqr(value out, value in) { CAMLparam2(out, in); fiat_p384_square((WORD*)Bytes_val(out), (const WORD*)String_val(in)); CAMLreturn(Val_unit); } CAMLprim value mc_p384_from_montgomery(value out, value in) { CAMLparam2(out, in); fiat_p384_from_montgomery((WORD*)Bytes_val(out), (const WORD*)String_val(in)); CAMLreturn(Val_unit); } CAMLprim value mc_p384_to_montgomery(value out, value in) { CAMLparam2(out, in); fiat_p384_to_montgomery((WORD*)Bytes_val(out), (const WORD*)String_val(in)); CAMLreturn(Val_unit); } CAMLprim value mc_p384_nz(value x) { CAMLparam1(x); CAMLreturn(Val_bool(fe_nz((const WORD*)String_val(x)))); } CAMLprim value mc_p384_set_one(value x) { CAMLparam1(x); fiat_p384_set_one((WORD*)Bytes_val(x)); CAMLreturn(Val_unit); } CAMLprim value mc_p384_inv(value out, value in) { CAMLparam2(out, in); inversion((WORD*)Bytes_val(out), (const WORD*)String_val(in)); CAMLreturn(Val_unit); } CAMLprim value mc_p384_point_double(value out, value in) { CAMLparam2(out, in); point_double( (WORD*)Bytes_val(Field(out, 0)), (WORD*)Bytes_val(Field(out, 1)), (WORD*)Bytes_val(Field(out, 2)), (const WORD*)String_val(Field(in, 0)), (const WORD*)String_val(Field(in, 1)), (const WORD*)String_val(Field(in, 2)) ); CAMLreturn(Val_unit); } CAMLprim value mc_p384_point_add(value out, value p, value q) { CAMLparam3(out, p, q); point_add( (WORD*)Bytes_val(Field(out, 0)), (WORD*)Bytes_val(Field(out, 1)), (WORD*)Bytes_val(Field(out, 2)), (const WORD*)String_val(Field(p, 0)), (const WORD*)String_val(Field(p, 1)), (const WORD*)String_val(Field(p, 2)), 0, (const WORD*)String_val(Field(q, 0)), (const WORD*)String_val(Field(q, 1)), (const WORD*)String_val(Field(q, 2)) ); CAMLreturn(Val_unit); } CAMLprim value mc_p384_select(value out, value bit, value t, value f) { CAMLparam4(out, bit, t, f); fe_cmovznz( (WORD*)Bytes_val(out), Bool_val(bit), (const WORD*)String_val(f), (const WORD*)String_val(t) ); CAMLreturn(Val_unit); } CAMLprim value mc_p384_scalar_mult_base(value out, value s) { CAMLparam2(out, s); scalar_mult_base( (WORD *) Bytes_val(Field(out, 0)), (WORD *) Bytes_val(Field(out, 1)), (WORD *) Bytes_val(Field(out, 2)), _st_uint8(s), caml_string_length(s) ); CAMLreturn(Val_unit); }
mirage-crypto
2.0.2
ISC
https://github.com/mirage/mirage-crypto
git+https://github.com/mirage/mirage-crypto.git
h
mirage-crypto-2.0.2/ec/native/p384_tables_32.h
/* Pre-computed 32-bit multiples of the generator point G for the curve p384, used for speeding up its scalar multiplication in point_operations.h. Generated by ../../_build/default/ec/gen_tables/gen_tables.exe */ #ifdef ARCH_64BIT #error "Cannot use 32-bit tables on a 64-bit architecture" #endif static WORD generator_table[96][15][3][LIMBS] = { { { { 0x49c0b528, 0x3dd07566, 0xa0d6ce38, 0x20e378e2, 0x541b4d6e, 0x879c3afc, 0x59a30eff, 0x64548684, 0x614ede2b, 0x812ff723, 0x299e1513, 0x4d3aadc2 }, { 0x4b03a4fe, 0x23043dad, 0x7bb4a9ac, 0xa1bfa8bf, 0x2e83b050, 0x8bade756, 0x68f4ffd9, 0xc6c35219, 0x3969a840, 0xdd800226, 0x5a15c5e9, 0x2b78abc2 }, { 0x000001, 0xffffffff, 0xffffffff, 00000000, 0x000001, 00000000, 00000000, 00000000, 00000000, 00000000, 00000000, 00000000 } }, { { 0x171377ce, 0x1775f419, 0xf02dd53f, 0x8f8dcacc, 0x57721602, 0x108eafd9, 0x3049e16e, 0x2bfbb6c6, 0x2630cb3a, 0xc2aaeeb1, 0xe82fa916, 0x18e5fd62 }, { 0xeff819e0, 0xd9962e22, 0xef83f274, 0x5acb8f8, 0xaa3a6d6, 0x6b7f4932, 0x38f6d02f, 0xf5330ad4, 0xe8de0342, 0x1b0f5f11, 0xf3ea4828, 0x49ef8462 }, { 0x960749fc, 0x46087b5a, 0xf7695358, 0x437f517e, 0x5d0760a1, 0x175bceac, 0xd1e9ffb3, 0x8d86a432, 0x72d35081, 0xbb00044c, 0xb42b8bd3, 0x56f15784 } }, { { 0xcd3f87e4, 0x90061190, 0xbb5a79f5, 0x7498b874, 0x40e63552, 0x527623b4, 0xcc37dce6, 0xb013a039, 0xe53eab90, 0x7514c4ed, 0xc56c46e8, 0xb54d7318 }, { 0xed39daf7, 0x71af69f3, 0xdc7e9a3, 0x6a3080fb, 0xefd9f8ef, 0x71f545a8, 0x79e2a183, 0xbc0fdedb, 0xa8a9ebb8, 0x5e2b5907, 0x421ddd9, 0x22d141a7 }, { 0xed4c0c1, 0x3a07faea, 0xb06ca3b5, 0x33d41da3, 0x9b64463a, 0x5ebd1570, 0xbe62f6a2, 0x6a2b12f, 0xdb8d656e, 0x5f4c6dd6, 0xd22daaac, 0x1b85600c } }, { { 0x7d43053e, 0xd0810c25, 0x31fccf4d, 0x9205222b, 0xd6891f70, 0x313eff1a, 0x639196b3, 0x41ce635c, 0x288f9ff0, 0x8381a476, 0x6d5794ef, 0x7cdfc78 }, { 0x61100a2d, 0x67ea350a, 0xf3a4677c, 0x44436418, 0xf778bf39, 0x763844aa, 0x627615fc, 0xdf2f94ba, 0x770e5948, 0xbdacb42e, 0x674224ef, 0x463d1dc3 }, { 0x17b84458, 0x58516b3a, 0x341a79b4, 0x8119eae3, 0xad467b28, 0x1ec85e22, 0x1fe6c4bb, 0x8730a2ab, 0x25be605c, 0xb40ce167, 0xad15ca1f, 0x8a127fdb } }, { { 0x2fa621b1, 0xbaccc89c, 0xab8e11e7, 0xb42e2a56, 0x9c772f47, 0x4f92e554, 0x42c1289c, 0xf2ed6ffc, 0x102d26f2, 0x9f70ebae, 0xde0a7256, 0xcba70d16 }, { 0x30f2f421, 0x5a5be463, 0x7073c5cd, 0x5d3a2b48, 0x5c9fc83c, 0xa1b79b6a, 0xc1baf0de, 0x5d932b36, 0x11650361, 0x9cd1e34a, 0x6be51642, 0x35ebb673 }, { 0x6b6b6a53, 0x340c6022, 0xd9af0c85, 0x897365d2, 0xda2ede61, 0x5dd1178, 0x5dbfc016, 0xf404544d, 0xfd560ee4, 0x5711dce8, 0x625ffeba, 0x2248af1 } }, { { 0xd607168c, 0xc7a1f7d0, 0x773d34b, 0x5b428dce, 0x5a9e7d06, 0xf0446f76, 0x7c520736, 0xe801980c, 0x32f7576b, 0xdda9194d, 0x4a985bb7, 0xec5a0e3d }, { 0xdb29a31d, 0xce8a3799, 0xebc4c34, 0x8e8c34ec, 0x90394d2a, 0xa7b23cb9, 0x62560bc7, 0x6a52fc8a, 0xa88dbb77, 0xf3a98244, 0xa7ef8698, 0xde8033ca }, { 0x75129a5c, 0x8337a008, 0x4d2d526d, 0x34ec1098, 0xe8e281b4, 0xa4874cc9, 0x23e4c098, 0x21d352c8, 0xfa26652e, 0xf0f3299a, 0x7451abbf, 0x70cd33b6 } }, { { 0x90e0fd07, 0xad3b9730, 0xf6f6c37d, 0x59d49373, 0x7e1a9c5c, 0x5ae827c3, 0x44fe8bde, 0x426b59f9, 0x74c001c1, 0x38b5c72, 0xc6f70a43, 0xbbe8356b }, { 0x146dfc5c, 0xca4a8885, 0xa2b85365, 0xebebe942, 0x2a1bc413, 0xd9a14d6f, 0xc843e9ca, 0xaa55001f, 0x22bbce7b, 0xd3a66c49, 0x4d8f8f3c, 0x6952586c }, { 0xe1fdc405, 0x419e0342, 0xd57c0802, 0x2d857a06, 0x688eed7, 0x5b17b037, 0xca6bb2d2, 0x3f726217, 0x6cc35c65, 0xdf4731e6, 0x717bfbc5, 0x34aefb81 } }, { { 0x9d58a106, 0x6d74e8e6, 0xe4b44554, 0xc02b5245, 0x14d677ed, 0xc314f9b3, 0x84281f6c, 0xe6e9fdf7, 0x411e744f, 0xd8513cef, 0x464233, 0x32ca0a5c }, { 0xfa195866, 0x59749c04, 0x772e5d6e, 0x34af1d32, 0x48dc4954, 0x25828355, 0x1eceded4, 0xa178fffd, 0x33666974, 0x96cffe12, 0x969f4db4, 0x5d9cd415 }, { 0xb1a806b1, 0x25a535dd, 0x7f387bf4, 0x7729bdcf, 0x2807e90e, 0xa4be02, 0x6b18d5b3, 0x55a5895a, 0x312504cd, 0xcdb27366, 0xc9399087, 0xf4b936b8 } }, { { 0xaa07ff30, 0xe0da4d6f, 0xe5f8266, 0x1f3d7d4, 0x59075c09, 0x46682a7b, 0xdcc35cc, 0xb018242e, 0xe5b34129, 0x7076fbc6, 0xbedebd04, 0x47db6430 }, { 0x739eab0d, 0xf18f1d17, 0x64003ecd, 0x5e43e83c, 0x17b303bf, 0xe96b68ad, 0x5908600d, 0x3ab953a2, 0x975aaa92, 0xfd9731f8, 0x7e7f7bce, 0x4c85a4ee }, { 0x1b02ae8c, 0x88c0f86f, 0x75570f14, 0x87757ec4, 0x3d9b4b2b, 0x3de88a57, 0x5cbb82c8, 0xd9feef1b, 0xe11e4575, 0x3cb78960, 0x25337c98, 0xc4d3cb34 } }, { { 0xb10ff913, 0x874f376c, 0xed5273bd, 0x1f784a07, 0xd0d603e4, 0xea9abd72, 0x2961a0ae, 0xc310b8df, 0x58517304, 0xfbbd061f, 0x1235ded0, 0xf7dddf93 }, { 0xae358ac7, 0x3fa74e99, 0x79bea66e, 0x5229903e, 0x1f3471e3, 0xf43772a7, 0x526ba376, 0xf3703279, 0x738393bb, 0x551889c7, 0x533597fe, 0xc349ae26 }, { 0xf238534a, 0x112e468e, 0xd2f6356a, 0x7c61f09e, 0x158f87fe, 0x5baeb29a, 0x35add6a7, 0x88e55cf, 0xa57d7fd9, 0xf3e3b165, 0x2c8b4fa6, 0x348f0a22 } }, { { 0x7d3d080, 0x195dbb5f, 0xe77ed7a, 0x1d5aed01, 0x836339a4, 0xd9932eb4, 0x4142dcd1, 0x6e1f1a5b, 0x284c10e9, 0x772e1081, 0x7f929724, 0x19171e4e }, { 0xba14eeea, 0x2cf5f216, 0xdc4d63b9, 0x12880010, 0xe6a0ac13, 0x41de18cd, 0x232cf37f, 0xaa63a0ad, 0xcb9403d, 0xc0484c7e, 0xfa9ce19e, 0xa3750c09 }, { 0xf30e6ce4, 0x17b92a6b, 0x3896d1af, 0xdfcecf9a, 0xc0cce54d, 0xf0714881, 0x49921e71, 0x5a316667, 0x143545f1, 0x38ab7ac4, 0x4a3ff556, 0x86884ece } }, { { 0x90fbb67b, 0xce60810, 0x14db04bf, 0x9ab47990, 0x781812a2, 0xb22d63d9, 0x4920fc18, 0xd4e24f2, 0xd5f99176, 0x2dae40ff, 0xec7a6d7, 0x6be1ff40 }, { 0xc526cd03, 0xfe1a383a, 0x9e1f01d, 0x20efe987, 0x64f085c3, 0x8f9f75ea, 0xfe7ae7e4, 0x39021219, 0xb0638633, 0xb7aa2253, 0xcda9390c, 0x55e5c90f }, { 0xf3414221, 0xabfbecce, 0x8054e870, 0xf3367b85, 0xcbf0a821, 0xa386fadf, 0x367980f, 0x78643e69, 0x22477e1, 0x90a07be8, 0x48168bdb, 0xcb70c041 } }, { { 0x663097a9, 0x455266ee, 0x2c11aecf, 0x9c19530c, 0x97e11b53, 0xbf841014, 0xd2545e3d, 0x2d41b3d1, 0x9dbd6317, 0xbe3bfa7f, 0x1cce2037, 0x65b5d1d3 }, { 0x66f5ac7a, 0x4e84079a, 0x7a29ff7d, 0x284bd082, 0x84bd8d34, 0x60c020d2, 0xe7649460, 0x290f64c, 0xe70d7eb, 0x898452c8, 0x70def7f9, 0x11c09e85 }, { 0x3867b7cb, 0xff0ed92f, 0x6f1e8c54, 0xfe835f47, 0xd0612220, 0x8f16af25, 0xc39bace9, 0xfb76789d, 0xea2bfbd5, 0xb3a32d2c, 0x37821402, 0x24018477 } }, { { 0xc1a249da, 0x2644fa3c, 0xa8763f93, 0x2a4f94dd, 0xa4795963, 0x1d3d04e5, 0xa3c09a1, 0xf75d883f, 0x1977b254, 0x8fd57799, 0x79e9817, 0xc248a2cf }, { 0xff015d89, 0xba1e7b84, 0xbdd09901, 0x87092a0, 0x7af88ba, 0x8519b316, 0x31ef9d88, 0xd52732b5, 0xe0c87634, 0xce4ebe8b, 0xf20aa1d7, 0x4914f90c }, { 0x52ea2338, 0xe1509d81, 0xcc544725, 0xaab0b5f9, 0x1fd23f3c, 0x5d33ce78, 0xbbf950f9, 0xfd07c64f, 0xcb590e37, 0x809683d8, 0xff8f704c, 0x91000306 } }, { { 0x1421ba3d, 0x6e8fe61d, 0x49041117, 0x71f69efa, 0xa27b8646, 0x14655fb7, 0x4207ce86, 0x1923320a, 0x818e451b, 0x7009e76, 0x9baabeb6, 0x353a5ad7 }, { 0xaa101ab3, 0xe1095ddb, 0x4ee3ab40, 0x41cc1e06, 0xacff35f6, 0xaa71ca12, 0x69fb60cc, 0x4cb7dd8c, 0x90ebdf5f, 0x490474b9, 0xd1731154, 0x7970c034 }, { 0x2e06411c, 0x257b30f8, 0x95153d61, 0x9934f274, 0xfe4528ee, 0x6b043911, 0x5b5de15, 0x81a3b376, 0xb4cac64f, 0x13f2ee, 0x2b3e572, 0x9ef18c0c } } }, { { { 0xe00b15ad, 0x2b5ed6, 0x618ff810, 0x2631077e, 0xdb23f814, 0x9efd9f5b, 0xa5f59d35, 0xbb6b4c83, 0xce33e46c, 0xce0965e1, 0x2eb4f4ff, 0x8ae8708b }, { 0xc55ff2d9, 0x9c088d7d, 0x8649849c, 0xf7baab61, 0x81b37633, 0x9f1a80d5, 0x8e580be7, 0x9e4ae478, 0xc137ae83, 0x8eb92fa2, 0xe75163d6, 0xf2b96a01 }, { 0x875df0b3, 0x8adb9ae9, 0x9e8174c3, 0x7b288df8, 0x458d756e, 0x252d4e3b, 0x38d74dd0, 0xc669c14e, 0x43d29138, 0x59ec7d1, 0x57d17c1a, 0xe7da8f7d } }, { { 0x5bb99c6b, 0xb4631240, 0xdd1d9c39, 0x38b24b31, 0xaa7b3e58, 0x3e8acf64, 0xdee93358, 0xe98769d3, 0xdbe16a8b, 0x714d850e, 0xc5eaf8c2, 0x77f005a1 }, { 0x705e3ff8, 0xe9ad5ebc, 0x3e35c761, 0x526a5634, 0x15ec1f07, 0x90f057c1, 0x95e90beb, 0x84a15593, 0xd3e871f8, 0x9232eb20, 0xc30be810, 0x31a26917 }, { 0x83ef7535, 0xfbb3aa5a, 0x4de6267c, 0x9a2d622e, 0x59e26672, 0x241e1b04, 0x2019430e, 0x7a78e10b, 0x2544abe8, 0x666ffd1d, 0x8a0ea03b, 0x95593e57 } }, { { 0xc388203e, 0xab364bb9, 0xedaaff37, 0xecc8d8b7, 0xe8ef0c24, 0xd9b03c6f, 0x8f100ccf, 0x8c775b2, 0xffb41aa, 0xac618820, 0x32d397be, 0x4555135b }, { 0x6012201a, 0xc8588461, 0xa2b26296, 0x37705244, 0x3a71acf, 0x98821dab, 0xd33ef254, 0xa1dee9c4, 0x4baa5579, 0xc3831526, 0x7a92b198, 0x725013a6 }, { 0x4dba5439, 0x8d99ea1f, 0xfcd8dea5, 0x19090128, 0x6392efed, 0x714d2f4c, 0xbba0cd44, 0xb10f8896, 0xc45dcf77, 0x63e198f4, 0xc3ecd98, 0xc3de520f } }, { { 0xab29e799, 0x30a08974, 0xcba3430d, 0xaf1362f8, 0x7d0b14d5, 0x7bc51aa, 0x7e23d228, 0x2323b087, 0xaddc977c, 0x6f530f21, 0x916f0034, 0xb1670e57 }, { 0x6e31e99a, 0x550a77ab, 0x64c4d1f7, 0x42259f07, 0x82446254, 0x66bb6487, 0xf5e65415, 0x2b2273fd, 0x3f08e611, 0xc0cbd3c9, 0x4aebed0b, 0x3f747a7c }, { 0xe31b004c, 0x671262b7, 0x24e71cc3, 0x5e905c74, 0xebc7611a, 0xbd6fb4e8, 0xebb9e90c, 0x3a580bc, 0x4f96d0c0, 0x37ec1c61, 0x1d033b74, 0x370c63c0 } }, { { 0xdd76f303, 0x8e29c564, 0x552366b7, 0x4a4c37e2, 0xe0fb2acd, 0x339bc0f4, 0xc3541fe0, 0xb883e0c6, 0x9ef67d0b, 0xc51700cd, 0xc992a3ee, 0x7163daf9 }, { 0x2d677e71, 0x6c626d55, 0x8d2d63c, 0xd676b813, 0x39832fa9, 0xa44d1ddc, 0x95e4e3cc, 0xad8e79f9, 0xbb65d859, 0xfd8209cc, 0x5b2ebebb, 0x953466ab }, { 0x49e46fdd, 0x8d707ab9, 0x9d142e65, 0xd9d8a1d7, 0xa2624c5f, 0x7be4ce9, 0x832ed889, 0x2ec1188b, 0x120b3755, 0x64d6a408, 0x5743034c, 0x2ca98840 } }, { { 0x976b637a, 0xa7d14bc4, 0xc9ddaeb, 0x2de20ec3, 0x687e361c, 0xa47c8e4, 0x6861118a, 0x874a76c9, 0x1cfad40, 0x94b9dbc3, 0x31117ade, 0x4ef70dcc }, { 0xdf93321, 0xf6d00092, 0x58a8407c, 0x617e8047, 0xe1c6c4eb, 0x85d18704, 0x80b25584, 0xa21a686e, 0xc3042a87, 0xa04417f9, 0x5453a0d7, 0x4f94ed5a }, { 0x49c58d7f, 0xf43be4f6, 0x49a927c6, 0x170ca278, 0x67463666, 0xa129c516, 0x31aa74f6, 0x5a845bf9, 0x17e7e613, 0x728f3724, 0xfae28755, 0x12e946d9 } }, { { 0x1dd7ea61, 0xba8ec845, 0x847b5d23, 0x1739c421, 0x4a628afb, 0x131a1484, 0x33b72971, 0x8d8bc99c, 0x7f03cdcc, 0x8bb3197c, 0xb8c742ee, 0x1a1e09ef }, { 0xb77968e6, 0x25f5c94, 0xc0fb2652, 0xd81110b1, 0x3f767f93, 0x4a3fa922, 0x8dfa1bd8, 0xab3a7ec0, 0x97f8d910, 0xe882391a, 0xa5b166b8, 0x284dc826 }, { 0x7c69230b, 0x14a86679, 0x83431ab2, 0xd3b70045, 0x3a7e5c28, 0x5cb596a0, 0x463c7b2a, 0x37b28ef5, 0x3592f8a2, 0x99bc2722, 0x17dffcd0, 0xbe448e7f } }, { { 0x518a467a, 0x3cf5096b, 0xd82b449d, 0x8d770249, 0xe1102928, 0x48dc4470, 0x2e94e8f9, 0xfc8d4da3, 0x6972253d, 0x2945c66f, 0x764155b0, 0x43d675b7 }, { 0x56fcbb55, 0x3860ee2, 0x28440876, 0xe144cbf5, 0x790403c0, 0xc42ed02e, 0x578c55cf, 0xa1ae80e2, 0x2f69fa7, 0xb6edc4d5, 0x1ae2c098, 0xdb52f865 }, { 0xcc74f60f, 0xc01d600, 0x6cefdf50, 0xee70cab4, 0xd9de0ab4, 0x71ba3319, 0x94cc8441, 0x847e8c1b, 0xdffb136, 0x28783a4a, 0xed384da9, 0xad48c494 } }, { { 0x24b9015d, 0x2c26ea98, 0x21a76635, 0xb0f18d26, 0x59a95009, 0xb1348f7c, 0xe1111578, 0x94b228da, 0x611860b6, 0x6d734d32, 0x8f28e677, 0x7adf4569 }, { 0xcb5e5cea, 0xf7e151c2, 0x1960143c, 0x199fe015, 0xff40af31, 0x2da20d87, 0x311ece7b, 0x34ca25dd, 0x8a9875bb, 0x6c966e1, 0x3bbe8e97, 0x23a4a39c }, { 0xa64221fe, 0x3df1f22d, 0x78eb3f8, 0x9365581, 0xf0dc7946, 0xf41215f4, 0x8fea67bb, 0x2af1cf55, 0x1e80a11e, 0x9ea80319, 0x7864db7d, 0xbe424890 } }, { { 0xb04c923e, 0x779840b4, 0xc29908f0, 0x79ad84ba, 0x934b139c, 0x7e9a67df, 0xf4a9d489, 0x32806f42, 0x4e1a9bc0, 0x35534b40, 0x957fd851, 0x3970d78b }, { 0x749e0f74, 0x991fe8fb, 0x7bd46cc3, 0x8edb1048, 0xf0df0aff, 0x74642a9d, 0x26f39e6e, 0xc5ab51fb, 0x9103c368, 0x44317e8b, 0xcf0bb9c9, 0xfe7125ec }, { 0xd530779f, 0xf7d1f5cd, 0x7252a72c, 0x7713be37, 0xd06e0796, 0xaaa9ee4a, 0xf8c4c97b, 0x7ba3ba8a, 0xa04429ec, 0x2976af70, 0xbf78012a, 0x733e59b4 } }, { { 0xed1c32a9, 0xfb45c1b0, 0xf2e28db6, 0x7f13f083, 0x23f35a58, 0xd6c8f890, 0xf63dbe4, 0xeae5a138, 0x10fac7af, 0x6e8721ee, 0x22a377f8, 0x2937b734 }, { 0x448f4baa, 0xac5a498e, 0x5ca888af, 0xe91a7096, 0xb7f2efb1, 0x486dac0e, 0x1b36268a, 0x85951236, 0x6854d261, 0xcecd2c4b, 0xfeaa0bac, 0x58142369 }, { 0x51d78378, 0x47f9d408, 0x465dbc11, 0x78b8e5ce, 0x529f95e3, 0xb8288f1e, 0x2b697803, 0x4b5e0918, 0x9f1b112d, 0xf3e78f31, 0x97084408, 0xc1ac6c1a } }, { { 0x693c78c9, 0x1bb42cf4, 0xd572e7bf, 0xb005c3be, 0x43ec6024, 0x95bb74e8, 0xd11dbcc5, 0x72f3e8c9, 0x5bdab33c, 0x60dbf470, 0x501a6b04, 0x4fe22772 }, { 0xcea546d7, 0x6770bd81, 0xb577bc3c, 0xd99483fa, 0x3b905ed5, 0x76ecf900, 0x431bffa9, 0x77a5e497, 0xf6bbc5b9, 0xf2d7e43f, 0x857aaa1e, 0x2feca451 }, { 0x616864f, 0xd896b61, 0xd34d6c85, 0xf9c7fe18, 0x20cdb0de, 0xa0f8df3f, 0x38140659, 0xb5a28b61, 0xe189a451, 0x58a54588, 0x692b2520, 0xa068e57b } }, { { 0xd2842263, 0x35f63a20, 0xbdd94669, 0x412886be, 0xc6931df9, 0xa2d28ea9, 0x9457a28a, 0xb8f447bf, 0x4628f06b, 0xbc80ef37, 0x32d1b24c, 0x13e75be6 }, { 0xe82192a, 0x68e68109, 0x7532442, 0x72aa217, 0x32586e6d, 0x4ccbd886, 0xa058ad64, 0x3d27e321, 0xd1492416, 0xbf956203, 0xb0e79d8, 0x7a45f69c }, { 0x4f3e4d95, 0xddeb974, 0xf67a659c, 0x128e7f06, 0xf278f0aa, 0x8dd6c477, 0x30c22fca, 0x3c1e845, 0xa46eddb8, 0x108949d5, 0x6454cc03, 0xb3446f1d } }, { { 0xf04c8831, 0x1566b621, 0x4ec0a6d4, 0x38e4d327, 0x50e8d74c, 0xbb9151be, 0xabc0e9f9, 0x8ee9240, 0xecaaf2e0, 0x34cfaf48, 0x2136bd0, 0x7f07df24 }, { 0x9d6d859a, 0xdd31ffe7, 0xc252b565, 0x42776f03, 0xd969fa08, 0x73e969ea, 0x92e7a11e, 0x63b97b5d, 0xf4f0083, 0xff34d42f, 0x2bd553ae, 0x81eb8c17 }, { 0x307507a4, 0x9d1b437a, 0x2b0f88f5, 0xbc52f18b, 0xfef3dbb, 0x895fc412, 0x12bb3f62, 0xc767b58f, 0x5e8127f1, 0x88c64e1c, 0xe29999b8, 0xcd46dde9 } }, { { 0x4c127da1, 0xfeafe8cb, 0xf911d02c, 0x19238ce, 0x64553898, 0x7f202062, 0xbe06e54e, 0xd7336952, 0x653ea48b, 0x5c44ee84, 0x186bd4ee, 0x10e0f568 }, { 0xee3b1c91, 0xea3d2d4e, 0xb2080775, 0x43a3eba6, 0xf13da549, 0xdd87dd5d, 0x51a91c80, 0x3ef80dab, 0x2c6d9c4d, 0xe96d1dc, 0xbe83c248, 0xd9f5fe16 }, { 0xa173675d, 0xcfc04300, 0x77a1712f, 0x218e8566, 0x720b62e5, 0x2a47a096, 0x9d1b89e7, 0x70b13f12, 0xbfa066fb, 0xb04e282d, 0xadf6cab9, 0x9b99daee } } }, { { { 0xb202c725, 0xab7dd6be, 0xd8977d4f, 0x2f011645, 0xae62f148, 0xc780260a, 0x0481bd, 0x872c6487, 0xc67dac7c, 0xd4ec2988, 0xfb00a004, 0x19271701 }, { 0xbd8cb2a1, 0xe1bf6398, 0x821f83f1, 0xf5c3f2ec, 0xa3b3a7ac, 0xffdbb287, 0xc5544363, 0x4d3c708b, 0x1a08fdd2, 0x9fc8b2cf, 0xe1dd7251, 0x77b5df9c }, { 0xcb19b723, 0x5c492759, 0xb6598b09, 0xcfccef49, 0xb53bb487, 0xc2ae166e, 0x2431a277, 0x3ca72a60, 0xfbdd06ab, 0xd336b293, 0xe4d9fc96, 0xe81a556a } }, { { 0x1b7e8050, 0xdf4b609f, 0x26ce2fdf, 0x48c61d2a, 0x382481f4, 0xa5f78d95, 0xa765e815, 0x8a099c8, 0xb8824ca1, 0xeb544534, 0xff2b5588, 0x43c1966c }, { 0xf1ee3269, 0x5025f8fb, 0x70ce7790, 0xba027fcf, 0x1d31f49b, 0x62ac9047, 0x5cccace8, 0x35cfc950, 0xae6c89dc, 0x9e4d664c, 0xc5528b73, 0x125f5ece }, { 0x4b150dc, 0xd2c44f0c, 0xcec4b986, 0x21d62613, 0xa8d894a1, 0x4488c141, 0xdf340382, 0x29c09ca8, 0xbba452af, 0x20be00ff, 0xf8d80eb6, 0x2e7c707b } }, { { 0x4b65c082, 0x44b6bf61, 0xc77e25b5, 0xd737eaa3, 0x15fd71ad, 0xa8caf10d, 0x847fd1c1, 0x314971f0, 0xfd3dedd4, 0x3d6d698a, 0x67ff72ed, 0xe4d419db }, { 0xa3bff197, 0x2ce4fb78, 0x7469d889, 0x158f18fc, 0xb8ba0717, 0x4ab3aafa, 0x2d8af09c, 0xa02a9a9b, 0x7c4b5318, 0xf58b72d6, 0xcdb9ba43, 0x44a33b42 }, { 0x6de0a980, 0xff0c0a39, 0x23e7e4fc, 0xcaeb49bf, 0xbd8e8087, 0x4ad02da, 0xcce50960, 0x608de9b3, 0x2dc8f50c, 0x42e6f487, 0x41d78ebc, 0x4b3d5a11 } }, { { 0x4f9a5a57, 0xd878755a, 0xa81b2479, 0x1e66330a, 0x6550fdb1, 0x4233130e, 0x2fb80f6, 0x430b64e5, 0xc58e4b35, 0x8ba0ee25, 0x58df1b65, 0x11f096fe }, { 0xadb076ba, 0x2decc9f1, 0x33b2bc6a, 0x2bc164ac, 0xa83b6a21, 0xce34398a, 0x3f096759, 0xb7faf71e, 0x55b8183, 0x755e0528, 0xa4f0b201, 0x4d6a535d }, { 0xc80a29e1, 0xe8665487, 0xf1c32519, 0x71c9b9fe, 0xbdf168aa, 0xfbe83ea9, 0x9d586a01, 0x7aa56344, 0x263679ee, 0x46574cd8, 0x3b601347, 0x2f596633 } }, { { 0x59b362ba, 0x48873721, 0xddac4175, 0xd8090c31, 0x5a0189dd, 0x5204d042, 0xe3ed3d99, 0xc3a9d578, 0x7ae4802b, 0xf85f6946, 0xc2849973, 0xca5c85af }, { 0x88d3c05d, 0x46edf3a0, 0xafe3576c, 0x2fd24688, 0x2b7e11bd, 0x4c709e02, 0x7ae65443, 0x6476a16a, 0xc4995a8c, 0xb6f8a6c3, 0x1c102fba, 0xc920df8a }, { 0x5f423cb6, 0xe49a6b54, 0x61c89e88, 0x1a88016, 0xf212604a, 0xbb5e9172, 0x2a90e243, 0x39f27bb9, 0xa450facc, 0x9ec1bb82, 0x295a468c, 0x524aad8a } }, { { 0xfccffcb1, 0x4e318823, 0xa0ce3ffc, 0x735ea4bd, 0xe7d89216, 0x62b380fa, 0x1f9574d4, 0x12afe34a, 0x1aaf6f31, 0xadb8fee5, 0x4d3a1fea, 0xee798cdc }, { 0xf060431e, 0xcc4fd021, 0xd1cf6198, 0x89689664, 0x15a27334, 0xcf2d7ad3, 0x69ba5733, 0x570d38f, 0x69a476ae, 0x60d5d3f2, 0x839bd2a8, 0x47c49483 }, { 0xbd71034b, 0x81022567, 0x5d91a254, 0xcd80104b, 0x885dc8a5, 0x78402871, 0x21bd2630, 0x5666d538, 0x661425e6, 0x5a4b1d6a, 0x261b1c7e, 0x278ed610 } }, { { 0xc324b920, 0x837be1b6, 0x52c5e765, 0x904943c5, 0x668da511, 0x134b3a05, 0xdffe3e28, 0x21257032, 0xe5fc8a56, 0x99f62de6, 0xed869065, 0xdeac5f54 }, { 0x69ea0a64, 0xcd3766e2, 0x90706a2, 0xdc3acf93, 0xb8d07be0, 0x7023e2ed, 0xe59dd8ce, 0xa1c25be7, 0x36fc529e, 0xb2519ab5, 0x12d1ad09, 0x41eff874 }, { 0x18043965, 0x8e9aa1e9, 0xe7dd81a2, 0xfe82f6c0, 0x1587b6ce, 0x8d5306aa, 0xf5c05e39, 0x6e767f81, 0x55403744, 0x336f9c0e, 0x2582eef4, 0x9ca6ee5c } }, { { 0xa755152e, 0xd544806d, 0xc23bd0f7, 0xd2313863, 0xce703eff, 0xfaea8fbc, 0x7e118931, 0x988158af, 0xf4ab5582, 0x7c7b6b53, 0x3947c52, 0x1331b650 }, { 0x57fb603b, 0xaadbdbff, 0x7030a6de, 0x78fb9ca8, 0xb20aa731, 0x27ff8a50, 0x1dfb5a80, 0x273a5412, 0x1b6a5f2e, 0xb456f23f, 0x1a26826a, 0xc67a08d }, { 0x2939612e, 0xd4088240, 0xbc32ee50, 0x2fbc53f5, 0x77e9bb47, 0x60dddaf2, 0x6b1ef7ea, 0x7974ee7c, 0xe8b56fc, 0x25e4860, 0xd8750e5a, 0x1654aff9 } }, { { 0x3f41457e, 0xd8daf89, 0xad1cb63e, 0x1293ecbc, 0x2930904d, 0xe1866009, 0xb3a2990d, 0x46845571, 0x9b723907, 0x95165459, 0xcc8d438e, 0x7c9f1b29 }, { 0x9790cc6, 0x31f0fa8c, 0x524da688, 0x98898a51, 0x1a066186, 0xe5263397, 0x250747ac, 0x85e7097c, 0x8e25660f, 0xccd291f6, 0xe69d2674, 0x13eb71b5 }, { 0x7f3799d6, 0x51e801, 0xaf642bc3, 0x5b8362a3, 0x11111619, 0xc22c3ea2, 0xc692074, 0x5c194211, 0x7b3dbe7f, 0x3fc692e1, 0x7990d6e1, 0x49b7ca5b } }, { { 0xe5f087ae, 0xeec47ab7, 0xc5c8e03, 0x499dd84a, 0x127ea4c5, 0x54e3fab5, 0x85e9749e, 0xc9aaa34a, 0xa7b5a614, 0xd333e8c8, 0x422433cc, 0xc8627bdd }, { 0xfa77a1da, 0x60aaff1d, 0x9e3ae686, 0xa2eaabb1, 0x2a0d755b, 0x51fc23d7, 0x8efc7c0, 0x40a0386, 0x41e4fbf9, 0x36013519, 0x4939351a, 0x5a71c352 }, { 0x26539579, 0xefad917, 0xde371f10, 0xe109f241, 0x23941720, 0x25a5adb6, 0xe5e04acc, 0x4eea7a5f, 0x2cc1a6e0, 0xa47e3e32, 0x4600f678, 0xf3e3e343 } }, { { 0xe858fc27, 0xa8f1110b, 0xd574464f, 0x1f9195e0, 0x751c38c4, 0x5c15ea2, 0x2e806e85, 0x72da7139, 0x52f03091, 0xe92dd10e, 0x8cda8f21, 0x4dadd2bb }, { 0x21cd7e91, 0x4d676e09, 0xe3b5598e, 0xee042b2b, 0xc2e6a73b, 0x8c6d7941, 0x1ea17b98, 0x401d6ced, 0xbcf96571, 0x9ac3f1b, 0xf7fdd74b, 0x1e0d2306 }, { 0xe5379c80, 0x67737bd9, 0xa4cb401b, 0x70b578c8, 0xc08da6d9, 0xd4fa3b0d, 0x2eff1fb, 0x526b32db, 0x4ade9b7d, 0x7aa572da, 0xf4a32b4c, 0x87b6f5fa } }, { { 0x911cd251, 0x3930a7fd, 0xf232ee32, 0x44e43265, 0xc49c5c97, 0xac65728d, 0xfb720674, 0x7bd7d674, 0x1bf0a822, 0x63400751, 0xd61c1f4b, 0xfb6d6358 }, { 0xbab5c7ed, 0x4a159c95, 0x9022349d, 0x1bee0435, 0x89e5520c, 0x3ab29eb7, 0xd177fec9, 0xca0e6415, 0x3fbe6f7f, 0xabe412e7, 0x5220eb7c, 0x1894f105 }, { 0xbd6ccb9c, 0x7173a89d, 0x9d514467, 0x705ee3ec, 0xf77f6352, 0x5890ddae, 0x4039ccbb, 0xfec161aa, 0x2ac800aa, 0x3900fb5f, 0x1802d484, 0x3c49144 } }, { { 0xe0f6aa14, 0x37bd93f3, 0x29d6c1df, 0x484b8e39, 0xf3da396e, 0x6a5cf222, 0xffb799af, 0x64884932, 0x188138b2, 0x701debf4, 0xc1c00300, 0xded1eeda }, { 0x1973ef4, 0x9503d0e1, 0xbf2736e5, 0x0e8312, 0x64721c20, 0xb8f2938c, 0x4e8a5f07, 0xa5637320, 0x958d34c5, 0xdfff2750, 0x969abdfd, 0xf3bd3280 }, { 0x47d5295d, 0xe176367a, 0xdcd445b4, 0x1dea7e1e, 0x79e947c6, 0x672b5d0e, 0x1e060cd, 0x26b07c60, 0x6bb2d2eb, 0xca8864f1, 0x6decd466, 0x8c530464 } }, { { 0x3fd8f7a2, 0x148810cf, 0xea3cf388, 0xa62c827a, 0x376e0d70, 0x6170da31, 0x7c12ab18, 0xa8835eba, 0xaa5e180a, 0xd9b39bbb, 0x779ec28, 0x9cb6caf4 }, { 0x922dfba8, 0xd724326f, 0xc68521d2, 0x759d8aca, 0x3d7e9b29, 0x6077d1ed, 0xdca648af, 0xadafc1a7, 0x50420657, 0xa86ca808, 0xa9229c4c, 0x7b845b51 }, { 0x480421d, 0x91e7ce2, 0x65eb10bf, 0x9aabc67, 0x56303110, 0xda1af0a, 0x6dade110, 0x5f1b0ada, 0x2c51eedb, 0xa10b6d29, 0xaf2531f2, 0x10c71db6 } }, { { 0x6831fdf3, 0x89d44b1b, 0xe905a58f, 0x1fb3e52, 0xea2371ef, 0x103cb83e, 0xdcd27a9b, 0xd2cbcde5, 0x629ea61c, 0x6c7adbb8, 0xf96058a6, 0xf3aed52e }, { 0x1cb06199, 0x467e8f6f, 0xe993df69, 0x72de875d, 0xe83cd9f, 0x7583cdbf, 0x1c4ba8e7, 0x43a41b1d, 0x16e9daf1, 0x11a438ae, 0xe6243cc7, 0x81d69e4c }, { 0xf5b8c9e6, 0x3dabc782, 0x209c4dd9, 0xf6d8b321, 0x4c510238, 0x439a79d7, 0x7a6f494c, 0x3453d6dd, 0x909a79cf, 0xf72e5825, 0x6bea73fe, 0x7dfe722e } } }, { { { 0x56e5fdfa, 0xa8ae8baf, 0xafa4f939, 0xc29eead6, 0xdb0d64e8, 0xb9f55b55, 0xab649b92, 0x177d5d3c, 0x54fb3ba, 0x5227be25, 0x9967a3d5, 0xf75a5c40 }, { 0x4a056e7c, 0x9e6b2353, 0xc1c7c3b8, 0xeb3e010, 0x62a65cc0, 0xbc834019, 0x70279cae, 0x8a7fdf79, 0xb16a288b, 0xb17e7ec0, 0x8073d4d6, 0x734d5b54 }, { 0xff486fea, 0x9f995efc, 0x9110b194, 0x854bc736, 0xa99f8b3d, 0x15c2cee4, 0xb9ad615e, 0xf82f66eb, 0x2c36cca0, 0x7f4c2ce0, 0xa0d1a8a2, 0xfb8774cd } }, { { 0x94170115, 0xe46ad4c8, 0xe935c834, 0xcfe06d01, 0xee3c237a, 0x82f723cd, 0xfb7932cc, 0x9275ced8, 0x2e4bf731, 0xb594a4e6, 0xb88e69f7, 0x38b6e57b }, { 0xdcf4ce35, 0x66e8d830, 0x3516fc3, 0xad9e7822, 0x2677aef3, 0xc85855a4, 0x535e7e0d, 0xbfca9305, 0x79155e85, 0x31282656, 0xc8667cba, 0xa8a963af }, { 0x5ccae131, 0x21f55075, 0x474536f3, 0xae52a367, 0xd18ff02f, 0x6986aecc, 0x6a99bc5b, 0xab0db354, 0x1a15a8a4, 0x78a34661, 0x1ec5b0e9, 0x2e85be99 } }, { { 0xd9af4cc, 0x7014233b, 0x4cd355fd, 0x3a9c9159, 0x2ba184bf, 0xc3025cd1, 0xc5805b7e, 0x31a8af30, 0x14956d79, 0x7cdae512, 0x9bcdbc5e, 0xd2cc4c18 }, { 0xe4252d43, 0x5292f86e, 0x4fbc000a, 0x8ccca792, 0x5589ac2f, 0xd3cfeb4, 0x3e65c9ac, 0x2a1fa313, 0x3f1a4e1, 0x953f5edc, 0x11018731, 0x38eb6430 }, { 0xd0802dff, 0x8815ef00, 0x7325aaf6, 0x8d35d129, 0xe9116db0, 0xea03317d, 0x38dcf930, 0x2fe62ac4, 0x7dae33bb, 0x4e560f2, 0xc6adfddc, 0x74ac6e0c } }, { { 0xbdc0acad, 0xb0028271, 0xe9f218d3, 0x910ebf20, 0x4da9535f, 0x3d01d704, 0xa1791afd, 0x1d7b8ae1, 0xc8e3d62a, 0x4a81b848, 0xd2fc084d, 0x767e5c97 }, { 0x986726a3, 0x7528a7c0, 0x857ed6aa, 0x95d68458, 0x28ab1481, 0xc19418c1, 0xb4b0465f, 0x75256abf, 0x9b1742c1, 0xed38ffbb, 0x46f4f9e2, 0xd58d339d }, { 0xc6a18f4f, 0x3cdb7657, 0xe0b401dd, 0x218ef53d, 0x86b831c9, 0x5e448563, 0x1e280279, 0x2616b295, 0x432afc87, 0xf5ca15a2, 0xf81442fa, 0x3e572b7e } }, { { 0x7a92a43c, 0xeccc4e6, 0xf61fa134, 0xef36e946, 0xb785562b, 0xdd9155bc, 0xcf8ea63c, 0x7a1d5989, 0x5d54f140, 0x7b729cd4, 0xcaf5a1e9, 0x6caecf22 }, { 0xde0486b0, 0x603b2a7b, 0x5ae9b52c, 0x3f505eda, 0x9b27766b, 0x4946536c, 0xa44ef9c4, 0xb8e714e3, 0x7fc8c8ce, 0x444fc77a, 0x4add620a, 0x2ced56d }, { 0xb6c284e5, 0xea00b079, 0xc7eba1ca, 0x2e52691d, 0x408b6774, 0xa57475c3, 0xadc63480, 0x30635a93, 0xc784f289, 0x816ab922, 0xd6b934ee, 0xb2ca9726 } }, { { 0x499b62df, 0x30763403, 0xc911259e, 0x3e72e3f4, 0x859a7e4c, 0x6767475f, 0x590eb2c4, 0xba472d8c, 0xcb62a0dc, 0x34a525a3, 0x50c8be01, 0xb6871b27 }, { 0x75c84cc2, 0xdb6cf4ae, 0xce0a9033, 0x4878e58c, 0x450a28c, 0x69f9a91a, 0xae37690, 0x4db60a10, 0x8d2d0a4c, 0x17fb6c32, 0x3e218074, 0x4157bfeb }, { 0x7898182f, 0x805b9199, 0x75d2c645, 0x70d6d780, 0xb329d61, 0x7e5bf91b, 0x7141d117, 0xcec1c6a, 0x4574f971, 0x2e6cd1fb, 0x831cf4d, 0xa37a28c2 } }, { { 0x6d75ae60, 0x8d5b80a1, 0x9cf9008e, 0x588a8c89, 0x86b239f6, 0x1e6b0098, 0x715ca5aa, 0x15d4881c, 0x8db3e529, 0xf0744364, 0x9e2a681b, 0x1604a66f }, { 0x6211b56b, 0x52f53a2f, 0xfd5cd0d3, 0x5a1fa0de, 0xa1afbdbf, 0x4e393226, 0xd4f322dc, 0x77e84d39, 0x3cd9ba4e, 0x1a1d805f, 0xc27e250c, 0xb6c339e8 }, { 0x259b6ecc, 0x54358561, 0xb6b405a5, 0x4011cfe0, 0xbc371edc, 0x6714d4da, 0x89057698, 0x3fdcc8d0, 0x98056605, 0x692d6197, 0xe2695561, 0x9b836599 } }, { { 0x906f983c, 0x3a9e9d33, 0x98638e20, 0x2d144aad, 0x257997dd, 0x8ea7bac0, 0x1658e474, 0xb5cc4553, 0x324d634f, 0xd34b81bd, 0x58dcbd4e, 0x535d5033 }, { 0x242e8cb5, 0x12b46e12, 0xb5352153, 0xceb7d860, 0x59046f46, 0xd2f73a7c, 0x548dcf40, 0x2d5c4c81, 0xb8359266, 0xa3850c51, 0x9dc52f9f, 0x87470b75 }, { 0xa1adcbc2, 0xade2ed68, 0x38ffb142, 0x1f04b178, 0x10e35419, 0x6667d069, 0x88bee9d3, 0x567578a4, 0xf93b9d72, 0xfd1c627a, 0x6e42df5e, 0x45264876 } }, { { 0xd3155b13, 0xe2afad2e, 0xfd2f34fc, 0x2173894, 0x6c20cb9c, 0xe8d7ca7d, 0x50d8ca3a, 0xbca37e6d, 0x689ec1ba, 0xad8bdb0, 0xcc1836f0, 0x230e2a6e }, { 0x69be110f, 0x3486d31e, 0x6b5ad0de, 0xd11e8fac, 0xd809eab1, 0x1b16e103, 0x7b02f91d, 0x6b993340, 0xc5637ec, 0x1928192b, 0xda8e6204, 0xce95046e }, { 0x6cebaf4f, 0xb416f010, 0x834c131a, 0xb9fdc273, 0xfb1232fa, 0x1b53b744, 0x5f6f2407, 0x3b93024a, 0x7085a3dd, 0x9973469d, 0x4f0e4a18, 0x2b3f80e6 } }, { { 0x74537d05, 0x53e0c601, 0xe5ebc375, 0x3b743877, 0x36f057c7, 0x6db87209, 0xaa1b9a51, 0xa656820f, 0x43f7e34f, 0x29aadb53, 0x226ec18a, 0x845f5884 }, { 0xb96cba02, 0x78ad7747, 0x362a5bd7, 0x9dc2c552, 0xf630c912, 0x229dc2bd, 0xb54b024a, 0x83692490, 0x2d0c8ead, 0xf3d06e42, 0xe979c4f, 0x1183b0df }, { 0x552bbcd4, 0x4f433c44, 0xcd3ec208, 0x367d82e1, 0xa062c778, 0x53594b78, 0xf45b97fe, 0x5ea24e2d, 0x9b2b45a6, 0xad5b1383, 0x1c97da00, 0xb735e167 } }, { { 0xfb156200, 0xceb887e, 0x75324cc0, 0x7a5ca71, 0xf1e64141, 0xf84ff61a, 0x1559746, 0xd1fd0494, 0xcfd95659, 0x5e49210e, 0x7ce761fa, 0xc2467eb0 }, { 0xc620b92d, 0x73608570, 0x85adfbe6, 0x55835d7a, 0xc09d02cc, 0x2428ae41, 0x1212071, 0xc44e1bf4, 0x4ccd835b, 0x54fb2c59, 0xafb9b55, 0x5f6306c5 }, { 0x8162f423, 0xa8fff7e8, 0x342d804b, 0x423b964a, 0x89648a08, 0x8c0e172, 0x3c9ad90, 0x263e71d8, 0xca17dbbb, 0xc08a15c3, 0x8140ebcf, 0x8c729c66 } }, { { 0xe8207a85, 0xef2de490, 0x9897ba2, 0xabc3ad92, 0xefb34745, 0xa7864127, 0x9c931e9c, 0x2fcd6a3f, 0x85c130c3, 0x301af1d9, 0x42409c0e, 0x6490803e }, { 0xc77265a1, 0xaf4c0abb, 0x213a2f96, 0xf10dffa4, 0x7647268d, 0x911fc98a, 0xbe61074e, 0x84fe24b2, 0x3fc99af, 0x4f624b43, 0x4ac19010, 0xa3fcca88 }, { 0x62723d71, 0xff07fb89, 0x29ff786, 0x6ed21072, 0xfe971abc, 0xeda162ff, 0xc432d0a0, 0x6de16130, 0xf412ebf, 0xcb20dd2c, 0x85a8003d, 0xe5c6751f } }, { { 0x43a0f4a, 0xff29fe62, 0x504f27c0, 0x851d1a52, 0x94f20439, 0x17257f6b, 0x831fd9fe, 0x56aa30a5, 0x4bdfadc7, 0xaf94a88c, 0xe5e32ddf, 0xcc12402a }, { 0xbfd94924, 0x8118ad56, 0x1538e546, 0xa8465768, 0xe8fe3cc4, 0x7b237a73, 0xd8cd501c, 0xc1b11f8b, 0xa0cbf114, 0x4424e195, 0x5ea6dbd2, 0x7f293e64 }, { 0xea0ee8fb, 0xe1d4ea80, 0xfcfdf496, 0x250f890c, 0x62acf5c5, 0xf4636083, 0xfa358af0, 0x4fab3355, 0xa0c6c583, 0x93b6d38, 0xf248cf69, 0x79b095b3 } }, { { 0xb8d54c83, 0x3bd3180, 0x5c4f412d, 0xbb85d4c1, 0x4eda5cb7, 0xb8f134a9, 0x18b375a0, 0x28ad5fa, 0x495dfdfa, 0x423d9a75, 0xed481784, 0xb95e3a0f }, { 0x9e82d697, 0xdd5212e7, 0xda990f30, 0x118bf91c, 0x4b915232, 0xa858f1e0, 0x5ba391f1, 0x8196bd65, 0xcad8f341, 0xdd43b91c, 0x9d9e8055, 0xca1d9284 }, { 0xa11300d8, 0x623995fa, 0x323e4ad6, 0xaeb512a6, 0x10e4b354, 0x2b11b77e, 0xeb8314a1, 0x5ba64eb0, 0x88a88232, 0xf8388123, 0xf4739e9d, 0x9ed0e190 } }, { { 0x26ca9983, 0xcd3c269a, 0xdff816, 0xc303ec, 0xca1c86d5, 0x88df92b, 0xa43be160, 0x6969e02a, 0x10eb2c33, 0x5bcfd161, 0xa6c5d942, 0x1faff035 }, { 0x63d0a287, 0xe3f7a42b, 0x6ea62cc3, 0x326386ab, 0xd66512f, 0xa8020722, 0xfad5bce9, 0x105b87e1, 0xf35c76bd, 0xcf4711bb, 0x92a4decd, 0x62ec5f12 }, { 0x8ca4eb94, 0x10fea576, 0x2a776e84, 0x6c51075d, 0xbe28b219, 0xec8a390a, 0xa07d5873, 0x5ce94e80, 0x53e8ccb0, 0x9b0e145b, 0xd24c04d5, 0x18a1dcd } } }, { { { 0x104b88f7, 0x5d2b5f62, 0x28fc17cb, 0x33b10c54, 0xfa3d3ec6, 0x8147fc4, 0x86bb376d, 0xcf71c64e, 0x741958d6, 0xb9ecc96b, 0xeba9587c, 0x57e1f36f }, { 0x5aecd364, 0x34cc2fdf, 0xe9050ecc, 0x6e2afb75, 0xaf8278fa, 0xe49dc03a, 0x4bf13c08, 0xc621b3a8, 0xf2f53a14, 0xf745457e, 0x5c8577b0, 0x595f2cb0 }, { 0x4523b0d3, 0x7e3b8c52, 0xe17a78a6, 0x51f572d3, 0xdc40a3b3, 0xb068837f, 0x2b7d690e, 0xc9cbadf, 0x6119a2a2, 0x65f8b8af, 0x159b3933, 0xd53662b1 } }, { { 0x543d7d6f, 0x5414dd65, 0xc2376039, 0xc9a8919f, 0xb632affa, 0x9cec7d2a, 0x9b2c948f, 0xdbac1e81, 0x415cbb10, 0xdb605b21, 0xfec5204c, 0xa5e95c80 }, { 0x8e2d56c4, 0x63c1e2f3, 0xfc2a7f40, 0xfd54c235, 0xd204fc82, 0x44aef465, 0x78abb161, 0xf40cf2fb, 0x647fdd1c, 0x8e4eeb80, 0x840023f4, 0xc711a5b1 }, { 0xa78ef3da, 0x2ab00820, 0xa1b6051e, 0x63bb3673, 0x36fa6c6e, 0x3933e6e0, 0x568afa18, 0x61a77454, 0x68b12227, 0x31e893de, 0x8e2d92b3, 0x4bb508f2 } }, { { 0xfbd6e3c3, 0x7cdef3f, 0xb45247bf, 0xf602bb61, 0x4fff9886, 0x62e8f048, 0x900ea15a, 0x16a13126, 0xf5f5f3c4, 0x878f64f0, 0x600435c8, 0xdc8b5a9f }, { 0x79b4c818, 0xd43e2d64, 0x1a684f1b, 0xbcc45021, 0x66fbd156, 0x99b7c652, 0x482f59f0, 0x2ac06217, 0xd50e7343, 0xc6b01209, 0xa7784bfe, 0xcdd22ff9 }, { 0xef44c41d, 0xf103bf5c, 0x109daaa2, 0xa0047c46, 0xbc979ad6, 0x3eff8e26, 0xf9e9ff8b, 0x6fbd9c33, 0x6e9c5af1, 0x5659c953, 0x74c242ea, 0x6d0ec2a7 } }, { { 0x8ede0e85, 0x41dde03b, 0x18b1e48b, 0x66c536fa, 0xeedb1e7a, 0x416228e1, 0xaab4b5b8, 0x7d80822e, 0xf73fcc0f, 0x332f4a3, 0x2271ea1d, 0xb93fa08a }, { 0xd67b2d2c, 0x235df497, 0xa9ea53e4, 0xb75b27ec, 0xba71cff4, 0xf2b7e344, 0x98215f9f, 0x38663402, 0x33cd3d88, 0x542a834a, 0xd21aa703, 0x2df3a23d }, { 0x6d665ab8, 0xc0708507, 0x55f9513, 0xb894d74f, 0xd91a8439, 0xbda16f0, 0xb66b58ef, 0xce860577, 0xbd73fe7e, 0xe805e8b8, 0x149647e0, 0x1644c8e8 } }, { { 0x8a15e79c, 0x4e5fc415, 0xdb8e38b5, 0xadf3f8e2, 0x3f6f2152, 0x7aed1651, 0xfc5090aa, 0x6e6f7cde, 0x301c50e, 0x9072044a, 0xc1c3e96d, 0xdbae6d1 }, { 0x7d653f0c, 0x57d93296, 0xb2d583d7, 0x18f24faa, 0x5acc209c, 0x9cd7d31d, 0xf7a23b5d, 0xebafac61, 0xaf05fae8, 0xa6732bf4, 0x32a514c2, 0x1210153d }, { 0x3aeee705, 0xa70e66e5, 0x612a2bc8, 0x3e826617, 0x5cb3401d, 0x8b73db6e, 0xf0fdb6cc, 0x1a60a13b, 0x7fb8a5cc, 0x2531ed7b, 0xf60bf3c4, 0x6afcdb00 } }, { { 0x2c6e9fc5, 0xe6dc0a22, 0x44c6f488, 0xa172c861, 0x9cc8d6ce, 0x1be7d28c, 0xeda41a54, 0x4d85634f, 0xc2953a8f, 0x840fec15, 0xb7e764a5, 0xbaef9c80 }, { 0x29be010, 0x12d8f9b7, 0x1f05a9e9, 0x6bc17e71, 0xf11a07a, 0x4c187ec0, 0xb5dd8fef, 0xb351d54b, 0x2c0b0348, 0x66f87b2f, 0xc856120b, 0x7ce66d80 }, { 0xbfc76eb2, 0x1746dea6, 0x48438080, 0xa5828dab, 0x62872690, 0x17955694, 0x28df189c, 0xfcf31ccf, 0x1851feac, 0xe7a34f11, 0x42a41611, 0x519340a4 } }, { { 0xf59f2906, 0x43e3bf99, 0x2d5db0ca, 0xf4dfdcb1, 0x171d9ffc, 0xa51158c6, 0xa49b77ed, 0x7242528c, 0x5bde090e, 0x9faf2a1d, 0xfbcb66d6, 0x49b1fc0 }, { 0x4d3b6ced, 0xfd2cdf8a, 0xf7270504, 0xb1e1c7d2, 0xa5573d3, 0x7153b2de, 0x80a7ec9e, 0x21939874, 0xefe6f4ad, 0x4af54a75, 0x7599f1b7, 0xd86f2b46 }, { 0x3fe733ec, 0xdff313b1, 0xc0eb456, 0x82727464, 0x750dea79, 0xda2a9976, 0x5dcf5181, 0x7daccfac, 0x109601f0, 0x402e1c2e, 0x162f8607, 0xa1b80b8e } }, { { 0x6135d586, 0x5d9eed01, 0x64c4ebfc, 0xc6d285b0, 0xeb998ed4, 0xd6093db6, 0x4c118835, 0xf9bc7659, 0x18165e2a, 0xe3bc48ae, 0xa12bd2dd, 0x590551a5 }, { 0x5bf64a52, 0xca59a391, 0x97d83e84, 0xcad43118, 0x4809c05, 0x6a559c9e, 0xddc1ae9d, 0xff4b65ba, 0x27e676d7, 0x70e5b955, 0x1d7f2f20, 0xea666a4c }, { 0x528dd9e7, 0x25bf7014, 0x57567267, 0xb5e2df77, 0xe5be51e7, 0xa029cc86, 0x11848928, 0x8e3e2006, 0x8ae5536c, 0xf974f1d8, 0x7e3805e7, 0xb3f1191d } }, { { 0xd7a1f9fc, 0x8634d6a6, 0x64b63d59, 0x866a323c, 0x9ca65f59, 0x154e9494, 0xb8837ec9, 0x1df9ed73, 0xcd39ab3d, 0x7e807034, 0x975bc79a, 0x45faa8a4 }, { 0x4b191db4, 0xb0decb97, 0xf0cdece, 0x5527de6d, 0x78d517ab, 0x9f54cdd4, 0x3efaeb5a, 0xc42bc9e1, 0x2b3acf1c, 0xb8a21508, 0x9db8d48c, 0x4df1d6d7 }, { 0xc1cf1c33, 0x9d3354ff, 0xaefe643d, 0x6c2c8ace, 0xcc66c925, 0x8232ee1c, 0x2420ad40, 0xb85fcbf6, 0x97ffed57, 0xbf709857, 0x8cac10b7, 0xbe07edd9 } }, { { 0xd265a878, 0xedd50dcf, 0x50e355a7, 0xf498d7bb, 0xdf8ca87b, 0x3571a04, 0x6b982b01, 0x739f0570, 0xb84e7b2e, 0xbd3e2b95, 0xebfb0ef7, 0x8844222 }, { 0x436a6a44, 0x7f5f698d, 0x4b589a96, 0x968c8740, 0x4ed26a19, 0x7edb83e6, 0x9064e5d8, 0xadc19f41, 0x5f1397fb, 0x192e7965, 0xe9bd8a9c, 0x38a14c60 }, { 0xcae82749, 0x59176612, 0x13c92582, 0x2f51c1aa, 0xf1c52df8, 0x65647a6e, 0xa8ecb7f3, 0xda970fe2, 0x861c4513, 0xfcfaf79c, 0x95ed0c61, 0xf96896ac } }, { { 0xf0092200, 0x7de1a323, 0x8887c844, 0x846144ee, 0x3827cab6, 0xcd677666, 0xc893c1cd, 0x89c36382, 0xe54f7c06, 0xb5d23797, 0x19e105ab, 0x689da213 }, { 0x99a7f47, 0x1934bfe2, 0x3e1d18a9, 0x5fb5794f, 0x60884904, 0x6731fcce, 0xe2d658cc, 0x695011ba, 0x58482951, 0x45f3a8da, 0xfdfebd74, 0x1f9a0ca3 }, { 0xba393305, 0x4d8398c6, 0x32ee73f6, 0x23d79474, 0x994918c0, 0x25bbf1a, 0xb5d7065b, 0xcba64f30, 0xef22762b, 0x4436eff0, 0x375324e2, 0xde955298 } }, { { 0x29778bb, 0xbf427c4d, 0x120b1a73, 0x5359ad52, 0xed24b512, 0x9625fecf, 0xa8e31695, 0xab25353c, 0x43bc138, 0xf9bc6e02, 0x1ae02e42, 0x1984a112 }, { 0x86bde702, 0xd73475c0, 0x38afdc8d, 0x196d4c19, 0x42dadcc2, 0xdea4a38a, 0xc0807a49, 0xc8fc7995, 0xe6f7696e, 0xf6474da8, 0x33d73d3c, 0xb3c469d4 }, { 0xbff803d9, 0x677bcf31, 0xb677a92c, 0xc30d4897, 0x5c0f2507, 0xf25d15f9, 0xde43e37, 0x4d247589, 0xffe13424, 0xf99164f3, 0xed070afd, 0xc3173bd9 } }, { { 0x565eca7b, 0x25197a97, 0x91a8ce50, 0xab989fc6, 0xbda4e7df, 0xddae9a51, 0xdadbddcd, 0x5105154f, 0x11a555ca, 0xb9294143, 0x38f0e144, 0xf321db6a }, { 0x474cdd87, 0xa71bc2d8, 0x2d3ce1e0, 0x1815261a, 0xaff2d702, 0x435cc35d, 0x2de4168f, 0x5b848a64, 0xaad2d364, 0xde64efa6, 0xba738bbd, 0x450f3471 }, { 0x3b6f8279, 0xb9e597b, 0xa4d80e3f, 0xe81d3e02, 0x45f239b1, 0xfb1593bc, 0x529fb344, 0x5ead8058, 0xe65491d7, 0xf1e2fcea, 0xc4ba8719, 0x85fc21a1 } }, { { 0x1cfbde43, 0x64b66a9, 0x8b7df167, 0x931a8ce8, 0x95fb1639, 0xa533c054, 0xace9ad1f, 0xf88c556f, 0x1a02e8eb, 0xc96156c, 0xccb3109, 0x474a6d1b }, { 0xefe388cd, 0x23112f53, 0x9cccbd8d, 0xb9610709, 0x55c72d5d, 0x458cbd93, 0x7f5d3a43, 0x49e94433, 0xaa59720d, 0xe4383594, 0xdbd1e0fd, 0x3430b570 }, { 0x32962209, 0x277ead8d, 0x58359f14, 0xad5057a9, 0x957e708, 0x8f78900e, 0x62c572e, 0xda38a4f1, 0x3d72187e, 0x67809259, 0x8601da49, 0xc0cb0e70 } }, { { 0xbd11ee59, 0xabcfbbf4, 0x3585d97a, 0x2fc25f35, 0x33c869df, 0x226806e0, 0x62629288, 0x47c5dd2b, 0xd29f8954, 0xb7394f4, 0x46459ed8, 0x48b18daf }, { 0x6fc275c, 0x273f69bf, 0x36d341a5, 0xd8b4a3ec, 0xb2b89118, 0x8006c313, 0xa7caf718, 0x24d996d2, 0x33d2e61e, 0xf5cfaa2a, 0xfa9b5a74, 0x4811c5cf }, { 0xd5284f1b, 0x9dcd5d81, 0xb92ee6fe, 0x9745875d, 0xb2a9c69, 0xf16e1273, 0x5a2802db, 0x6f181267, 0xe586e073, 0xb4d892db, 0xfd460649, 0xfc19fb1d } } }, { { { 0x1a3a4626, 0x38b9cfef, 0x9056101c, 0xe0667fb7, 0xde27e89f, 0x144dc231, 0x7c026258, 0x9edae8c8, 0x1c8d22c1, 0xf09fcac7, 0xcd33edce, 0xa341d8fd }, { 0xb9baaf30, 0x88491581, 0x2d1ca27e, 0x6439c962, 0x38af559a, 0x45ba153d, 0x2f06931a, 0x9e7bc1cd, 0xe20cddc, 0x78444fff, 0x36e673ff, 0x40702919 }, { 0x6ed8c957, 0x3ee22cac, 0x7bb620f9, 0x2512d450, 0x449cf0ab, 0xd5d965d1, 0x96985b68, 0x8038f657, 0x23f9fb1c, 0x367f9e03, 0xc3a31c7b, 0x17797704 } }, { { 0xe2a541f6, 0xd489fd8, 0xff621184, 0x6f4b2e1f, 0x532f8adc, 0x51c92e5a, 0x4c509dd6, 0x4d0ae235, 0x6af1c4eb, 0xe8306de4, 0x5b1c872e, 0xcc3d1be6 }, { 0xe8a13781, 0x6aed1cf6, 0x3dcadf2b, 0x8d8ab099, 0x15fccaf2, 0x9cb27299, 0xbe19e097, 0x304f1530, 0x17fdb6df, 0xbf8d689b, 0x583e3a2e, 0x1221bcf8 }, { 0x8f48b963, 0x86d3075, 0x5c58d8d1, 0xf6a592bb, 0x76d90f76, 0xa36a288c, 0xaeec4f9e, 0x2565e948, 0x9df630a7, 0x9a71ff66, 0x1dedd7c1, 0x6a355577 } }, { { 0xa9e458d4, 0xc401a7de, 0x3e42a664, 0x1575b75c, 0xd4103cf9, 0x2a872e86, 0xa352e6de, 0x3c4f0228, 0x9ed09615, 0xa859e105, 0xf7d3a8ef, 0xcc40cb08 }, { 0xa25205d7, 0x1eeeb02b, 0x4e20e0d5, 0x216e0fd1, 0xaf1a047b, 0x9e495a9a, 0x3ef99a66, 0xb366ad9b, 0x1533273, 0xe271081a, 0xee746933, 0xd197d0f4 }, { 0x3a0aa978, 0xd88f61c5, 0xbe39edc1, 0x14569d18, 0x19c9e282, 0x2c11ffb0, 0x2bca828e, 0xea7c7a15, 0xc34f9ecb, 0x3f65cf13, 0x29250a4e, 0xc2d5fb3f } }, { { 0x6e849cf2, 0xc565ec11, 0xf6fd4048, 0x49b0a868, 0xd56506d1, 0x40c40c32, 0x912c94b6, 0xf8e1445f, 0x50ea2eca, 0x6fcaf7c6, 0xb9f78b8e, 0x52f94954 }, { 0xae751ea4, 0x8c5a89f1, 0x70695b4a, 0x1ff5c5a0, 0x9fe24893, 0xae2e939a, 0xfed6aaea, 0x1b91ca91, 0x107483b, 0x506a82a7, 0xe9e1dd9d, 0x4192bfee }, { 0x50c77fff, 0x6c01f948, 0xcd14706f, 0xa0d092b, 0xba3d3d87, 0xc031ca12, 0xe57cd862, 0x68963053, 0xe98dfa4c, 0xe35c5ecd, 0xfd52c902, 0xb2cbbb40 } }, { { 0x2570ff4, 0x7e9add75, 0xb8ad6ae8, 0x58e2b28a, 0xd3825858, 0x7dbfebfb, 0x17eefc15, 0x5a8b5bef, 0xdf549670, 0x5e7a36fd, 0xa3dba72c, 0x469e89d0 }, { 0x2140f7e0, 0xb73df5f, 0x92e167b6, 0xe97669b8, 0xfe445097, 0x7f4aae71, 0xa472613b, 0xdd19cda2, 0xb1ac673d, 0x118bab28, 0x65029b9b, 0xe7b2801f }, { 0xf9422fae, 0x36f06776, 0x6969b776, 0x9f59b9b2, 0xdb671a2b, 0xe573929, 0xcf54c18, 0xf1331248, 0xe1cc6ec, 0xec70be46, 0x9868e448, 0xd134e73 } }, { { 0x8c34c092, 0xfcc17f0a, 0xf9d1a6c5, 0x306b4475, 0xe6402934, 0x4f7c9dea, 0x1b75f77, 0xc9b61147, 0x2de8041, 0x2f6a5335, 0x7bd0ccef, 0x561270e0 }, { 0xf5b8de8e, 0x385a1472, 0x3cf7b155, 0xe5525fdf, 0x8743a95c, 0x9eb29a2e, 0x9fad916, 0x1630d993, 0x6c505430, 0x60f4071d, 0x81d4b1ec, 0x38ce1ade }, { 0x2b5df9e1, 0xdd386946, 0x54297c3f, 0xb59b57ea, 0x1c9adf41, 0x3bb81d1, 0xbb5558f2, 0x55b9a510, 0xd7a06725, 0x168863ad, 0x5f49c565, 0xd4ae2423 } }, { { 0x38ec0289, 0xc6b393c0, 0x68d7682f, 0x7da0aa20, 0xaa7fb05f, 0x4161c54, 0x9c2ff38d, 0xcc79168, 0x5a5686a2, 0xeffabc69, 0xadef8141, 0xf333ac15 }, { 0xdfc47dc2, 0xf1fd8473, 0x616e222a, 0xee3bec37, 0xc79f2c10, 0x523c65de, 0xf5794115, 0x7e61737e, 0x8c919d9a, 0xcc21e54f, 0x7633abd6, 0x60f03c64 }, { 0x3f2e6b0d, 0xa30720c2, 0xeee1e257, 0x5f6098f6, 0xa4aa1ac0, 0x816cbe11, 0xc0107564, 0xd9d482ec, 0x9ddd22, 0x74bc26a0, 0xe74986d0, 0x9722a9e5 } }, { { 0xdef146f4, 0x3b742f22, 0x9f64853a, 0x6cebea09, 0x3f3ae3fc, 0x16046753, 0xf9eeadb0, 0xf2a094c2, 0x1e23ab1e, 0xb532bdc9, 0x93f68fec, 0xcbe977e0 }, { 0x743a8ff6, 0x23941b4b, 0x715c5556, 0x279a87d5, 0xdf704514, 0xef160b27, 0x2f4af3a, 0xfc97eb43, 0x2de81ac5, 0x36300c6a, 0x922fba6f, 0xa49d9f1b }, { 0xe0811adf, 0x5ffe61be, 0x56eba569, 0xdcfebeaf, 0x7e9962d1, 0x4ae05c16, 0xe089752d, 0x218e2b19, 0x82b592db, 0x9419675d, 0x4ab41ed1, 0x58bb12e3 } }, { { 0x669edb26, 0xa3d82a20, 0x936a045a, 0xe0ee8027, 0x818f7b91, 0x4287aef8, 0x4b81239f, 0xa6bb9f6d, 0xc4fe330a, 0x3fd4dd64, 0x41bca87d, 0x8a7bb334 }, { 0x13a51a35, 0xcf30b838, 0x2769eb0b, 0x1b49d56a, 0x2099b027, 0xbd62e0ba, 0x3e65ee2f, 0x31b63b96, 0x8301210d, 0x49c4b2aa, 0xf08c41e0, 0xffe5af15 }, { 0xc1a50e22, 0x817d2cb8, 0xd8245310, 0x899883d9, 0x2155940f, 0x8b7e5f0f, 0x4c7b699f, 0x9f886076, 0xe2320f25, 0x4fe5f3d0, 0x1200f1ce, 0xe3c875cb } }, { { 0x326cd471, 0x77d095cc, 0x9a9d9ef, 0xedfc6a69, 0x99ed302e, 0x2d4ba496, 0x7c8fb0ad, 0x8a29d552, 0xed9803c6, 0x71193fd, 0xb866fa22, 0xa4611321 }, { 0xc00dc14b, 0x292e8d31, 0x11d0d0bb, 0x59ac7f69, 0x4a93a447, 0xa190d8b7, 0xce7ad7ce, 0x533d9133, 0x29096df2, 0xc517562b, 0xb4b9530a, 0x5ed32af8 }, { 0xe1d1cedf, 0x52575b1a, 0xf88e9ff2, 0x7804afde, 0xa5a58784, 0x515c6baa, 0x2d5c5c77, 0x81ec6dcb, 0x3549aa7f, 0x5cb049a3, 0x3c9bc832, 0x21a0fb69 } }, { { 0x721bc041, 0x88c4091b, 0xb0cf470e, 0x89d4ce4f, 0x3692c55f, 0xa11bcfc6, 0x38787540, 0x68d18e4b, 0xd6b5d757, 0x6fdd8ab9, 0xa33dd38f, 0x4f0e8d52 }, { 0x770d3cb0, 0xb18ae411, 0x45ccdea, 0x4f1e1225, 0xd9839140, 0x53013de3, 0x6f9899, 0xa48a8839, 0x4313d899, 0xc9e6772a, 0x7ae445ba, 0x6baaf350 }, { 0xaac71b57, 0x513583a2, 0x93a011be, 0xfa43c2c0, 0xe55af690, 0xa715d10, 0xbc01383e, 0xf36917a, 0xa4c1b181, 0xc2a85362, 0xe676712, 0x39e1ae54 } }, { { 0x536d8284, 0x8c6274db, 0x8b80ebc7, 0xe9d8db7b, 0x45a087ba, 0xb1ea971, 0xcf1146b6, 0xa9e078b3, 0xecc3ea19, 0x52a37dc5, 0x49713833, 0x46fda718 }, { 0x26ebc19b, 0x9e61ae50, 0xde9da3d8, 0x519610a4, 0x13f6c355, 0x332efd4d, 0x526b583c, 0x22370b10, 0x38245e1a, 0x2c3076de, 0xe7d084aa, 0xa6d2edfe }, { 0x3c1a07f9, 0xffa2c3cc, 0x44d24c0d, 0x73b21055, 0x26132bde, 0x1f5858ad, 0x3751ff5d, 0x67020b7b, 0x1ad60463, 0x2b715fcd, 0x7a50232f, 0x89272ff6 } }, { { 0x842d9a32, 0xa3c6a667, 0xca7291ad, 0xec991e50, 0xe97d34d0, 0xdd65dfd6, 0x2e49078, 0x466a48f5, 0xa758b714, 0x75d30f57, 0x9ad55ed3, 0x70bbe9c6 }, { 0xc862312f, 0x19ec40d0, 0x91245b56, 0xd15575f2, 0xed79ad4d, 0xc6cd43be, 0x75a6b36e, 0x12531d94, 0x1dbe92fb, 0x46f137b9, 0xc527c773, 0x77c12b14 }, { 0x8705df11, 0xe389a359, 0x236ff9e3, 0x1ef5f185, 0x7972027d, 0x66cc0bc1, 0x14ba1471, 0x782e718e, 0x3422695d, 0xb2961248, 0xdb489304, 0xcc06a29a } }, { { 0x45121c94, 0x5d29ae80, 0xd8043ffb, 0xb86aa8ee, 0x785acd4b, 0x5a04b31b, 0x6b48e170, 0xe2941649, 0x204418a2, 0xd7a8b56e, 0xfeabdf57, 0xf5806bde }, { 0xe1bbfe15, 0x1d492863, 0x4306657b, 0xecbc13ac, 0x75775555, 0xcd16d4e0, 0x52277c51, 0x1074cd39, 0x6070de63, 0xff984f79, 0x5f306608, 0x1b6ee403 }, { 0x75948afb, 0xe403ab7b, 0x892acceb, 0x5e4dea28, 0x72c2d87e, 0x2440210, 0x8a5f0463, 0xf980c2b7, 0x855a8ea0, 0x23d4ed4a, 0xd31583bd, 0x88b192d3 } }, { { 0x7de24628, 0xbc8d2ea1, 0x3e335e7b, 0x89928f57, 0x3b54c7bf, 0xbb52b8d, 0x5baf29e6, 0x6b9a40e3, 0xa6f94700, 0x4a4413d0, 0x9714b804, 0x58ed5ccf }, { 0xdf165c71, 0x4c939dac, 0x3b6dfeaf, 0xc4568077, 0x64c6dec1, 0x2714b976, 0x7a4710e3, 0x9ff978a2, 0xb58dca35, 0x26bfb839, 0x6d2f4205, 0x98b4060c }, { 0x4d09fa03, 0x3e31f0c7, 0x7d3386b1, 0xa63b4f09, 0x214ea25f, 0xa86b9248, 0xa7fc7c1a, 0x113fa833, 0x4574bbc, 0xd6666406, 0xe065d75c, 0xac9ce3ca } } }, { { { 0xa5aa31eb, 0x62310b92, 0x95fad44, 0xaaec873a, 0x9f098048, 0xa39ad4ba, 0xa9c72553, 0x139122d, 0xf4931291, 0xfcec4be4, 0xeeef422b, 0xa973258f }, { 0xce130e1d, 0x56afab8d, 0x1571045, 0x997cf484, 0x846788c9, 0x9abd7205, 0x4452e3c7, 0x9c8de790, 0x316d29f9, 0xc25479e2, 0xb1543cdc, 0x74f5bf1e }, { 0xaeed8f0e, 0x3e9105f1, 0x26ea0c82, 0x963adfdf, 0x4599773f, 0x1a7f0aad, 0x5926c36f, 0x1f4edc43, 0x8f3a103c, 0x8ed523f1, 0x286af2e5, 0xc5c6f29c } }, { { 0x62639816, 0x80666152, 0x52c902ff, 0xb500aafc, 0x9c9e6f0a, 0x6773939b, 0xab077f17, 0xbd99d93b, 0x667e5bba, 0x5e2dbb6, 0x657cef02, 0x86b5bf16 }, { 0xc18624fd, 0x8e2f7a33, 0x330f6f05, 0x5e9efa53, 0x28821cae, 0x523f27b1, 0xeb1dc7e2, 0x7f9b9526, 0x3bef3261, 0x5e8a90ba, 0xbcb8380a, 0xe336b5cb }, { 0xff4fc0b4, 0x1cdd2d88, 0xda94884d, 0xa0c476d0, 0xf908a4f5, 0xd26b0ca1, 0x80735cfb, 0x22d63dce, 0x8970557, 0xef7ccc0b, 0xfbdea55f, 0x1e0d8f04 } }, { { 0x33d100f6, 0xe9fb232a, 0xc2f7c0c5, 0xcbd7d0a2, 0x7e08fcc8, 0x3f43c8e7, 0x819a305e, 0xb6bf5b0, 0xaf102281, 0x6ac19cd7, 0x40044612, 0x5f0f8b25 }, { 0x1a1dbed1, 0x8670e948, 0xef0b7929, 0xf272355c, 0xc7c1d48b, 0xcde61f10, 0xfaa2e83e, 0xb32a9d86, 0x19d3ee7a, 0x65829f7e, 0xcda47368, 0xbcbf91ba }, { 0x1b9cad9e, 0x861310ea, 0x4d5a2af0, 0xd2e7fc0e, 0xd04a4d07, 0xc0723e49, 0xfaaf0789, 0x834281e, 0x9d7f9d3e, 0x9875f562, 0x5b0a5fc8, 0x1a4dd5c0 } }, { { 0x2954912d, 0xa3d76779, 0xdd1222ad, 0xb4abbcf6, 0x177ed2dd, 0x2fe425ad, 0x7e7ca98d, 0x8de7b15a, 0x461bfac0, 0xd02fc54a, 0xb6433244, 0x63585663 }, { 0x9111756, 0x65cb199a, 0x16e89731, 0x4464b5f, 0x8ede6360, 0x60f045f6, 0x424daf86, 0xb911f341, 0x8ba94914, 0x2fb0d63e, 0x2c85386b, 0x2000f2bf }, { 0x8146c519, 0xdc467b00, 0x6032659b, 0x305776bf, 0xf0b61c4c, 0x33f11eb7, 0x4cd7ba37, 0x8f3c4d01, 0xf1e92bcc, 0x1f5e2edb, 0xe189ccfc, 0xba795e23 } }, { { 0xf9d07ea4, 0xa6cfc4f, 0x16e49164, 0xb7a2bbce, 0x1f4f20a7, 0x58f4f4e7, 0x3b262835, 0x3d72109e, 0x91f6d6a, 0x82bf7f34, 0x930509b7, 0xaa058306 }, { 0xc81c4e75, 0x8dd0e868, 0x6f6885de, 0xc48ebf8a, 0x71fda46d, 0x498cb984, 0x27cb4974, 0xe405bbff, 0x53d2d9fc, 0xd9aabd39, 0x5813a31b, 0xa3a7d54 }, { 0xfa01ddd8, 0x2fce9865, 0xc48b8ec0, 0x7b709cea, 0x271a5e30, 0xf88d094e, 0xbc47f33e, 0x54d54e48, 0x10ce8065, 0x8e17b4b9, 0x4ca0875, 0x1a4caa4a } }, { { 0xce5c979, 0x95daf7f, 0x3dbe0df7, 0xce4207e0, 0xecb16ea0, 0xff706b62, 0x48e35b, 0xa1b90d97, 0x5a2b8a9f, 0x970bc9ff, 0xd10de113, 0xbdcb6d55 }, { 0xbafae543, 0x30533074, 0xf6aa8e54, 0x8dd00196, 0x97260d42, 0x3006da70, 0xb43f92c3, 0xfdae6e0e, 0x3917af61, 0x79a43448, 0x728a1c1b, 0xfdee12b8 }, { 0x8de5f36c, 0xbc93ba77, 0x601679e3, 0x11f36be5, 0xadcc0360, 0x6739999f, 0x23b802bb, 0x7bbd398d, 0x83227620, 0xc063145a, 0x25dcb293, 0x9e93231a } }, { { 0x9c0685e2, 0x38db55de, 0xe906ec96, 0x3bc93b1c, 0x4efc2665, 0x4d05bf2e, 0xb19cd55c, 0x333bcf08, 0xf5c86cf1, 0x7a0757ce, 0x7a49144c, 0xc848a1a3 }, { 0x28d6342d, 0xac488d54, 0xccb17f46, 0x3abe4a2b, 0x72ca3a6d, 0x74c3245e, 0x869b406f, 0x97ce93eb, 0xd8946da1, 0x8f5d4100, 0xf6abbee, 0x80a0b5aa }, { 0x82baf216, 0xde5b2d40, 0xaf5570f7, 0xc52a4016, 0xd54c885, 0x3fa6e4a9, 0xe2aaa600, 0x4906f713, 0x9ddb029d, 0x2721b5a9, 0x956bad8, 0x6e3aafb2 } }, { { 0xb3ecd292, 0x660d2dec, 0x8c4f3903, 0x73a8802e, 0xdfd79e1e, 0x5a02a16d, 0xe39250, 0x7cdb8173, 0xe760e83f, 0x562dcc1f, 0x35e180e2, 0x4d8197d }, { 0x4e983bdc, 0x2a60134f, 0x3b8a7235, 0xfed7e6a3, 0x75962c75, 0x2bf0ab80, 0xdd875eb1, 0x6aba9f27, 0x89a21398, 0x80877758, 0xe0c5dc10, 0x69b652a4 }, { 0xd313386d, 0xf493fb17, 0x39dfade0, 0xd374b39c, 0xef8a891b, 0x78a49c22, 0x11f35e64, 0x14759fd3, 0x3450dd5a, 0xb4aebb80, 0x1585bda3, 0x4702167 } }, { { 0x6fd71448, 0x4225313b, 0xd27c0547, 0xec10023c, 0x28b3c4aa, 0x100aef7c, 0x371512f1, 0x97c4e297, 0xf6f9b863, 0xa1303c7, 0x46c888ae, 0x79b705f1 }, { 0xfc05844e, 0x83626781, 0x165213a9, 0xdd7cb623, 0x2e7a627d, 0x2d0a8a41, 0x2f71c033, 0x3cbe6520, 0x85fbba66, 0xce88bf1e, 0x951ba8c1, 0xe3da01d0 }, { 0x60d7f1bb, 0x76c8f8d0, 0xb4016dd5, 0xfa97bb74, 0x8717ce74, 0x1939b908, 0x79e9f49c, 0x5a97be66, 0x550558ea, 0xce5a41d8, 0xb64e8d70, 0x14b6f8a5 } }, { { 0x94069e7e, 0x9ac11bd5, 0x7e3f6f0b, 0xfba0512c, 0x48e9dfea, 0x88c17126, 0x17d03f6c, 0xf8e33f08, 0xed82494c, 0xadaf6127, 0xdda482e4, 0x5bb18ad6 }, { 0xfc16b44a, 0xdc048314, 0x2d2fc5e8, 0xace06e4c, 0x61ff8778, 0x39072f3e, 0xa2387fd8, 0x7926bad5, 0x6b9a9271, 0xceb67c9b, 0xca80f582, 0x7f4b867b }, { 0x6dcd6ae3, 0xb8d21d18, 0xb937453d, 0x845c99bb, 0x414ca1db, 0x8e0d664c, 0x8c64165d, 0xe07a4496, 0xf4edd41, 0xa633c3, 0x2c3ad333, 0x838973ed } }, { { 0xdd73fa57, 0xdaffdeb0, 0x9c55d335, 0x84df2af4, 0xa17e92d1, 0xa4071623, 0xc50527b0, 0xba8e231d, 0x2b0b9673, 0x66c130c4, 0xf3d57719, 0x8b35acf6 }, { 0xb86ed29c, 0xfbe12436, 0x6b7b18c3, 0x48796f1d, 0x8821b991, 0x65622409, 0x8e1f42ca, 0x360dc417, 0x78d3cc4f, 0x9b8ee29c, 0x6d7246aa, 0x85549d99 }, { 0xaf245348, 0x17de6274, 0x73d2d8c5, 0x52ce1534, 0xc035da2a, 0x8984808b, 0x19677a93, 0xd11143cd, 0xddd203d2, 0xb88779c9, 0xbb165616, 0xc4465afb } }, { { 0x57b411f2, 0xb7502a1e, 0xd47b3e7a, 0x2b9db983, 0x50e676a0, 0x3bf07702, 0xc5fb67c1, 0x91dc457, 0x69b5b1bb, 0xf12fa144, 0x621b6f98, 0x67ac9fe2 }, { 0x4d47d6e2, 0x622f919e, 0x4b2762e2, 0x9573b492, 0xfcbba451, 0x53963fca, 0x29efb407, 0xf2a8dadb, 0x84aa145b, 0xae38735d, 0x55e7eccf, 0x164de8bc }, { 0xc17b8195, 0x44b98776, 0x36e80480, 0x56f6b27b, 0x106cbd2, 0x508ce5e5, 0xb3983a48, 0x1570a61a, 0x720ab108, 0xbf54c040, 0xf8fe5fdc, 0x6441b065 } }, { { 0xa8a265b9, 0xa9a25c4f, 0xaa1adf80, 0xffea7a0d, 0x8c4e86a1, 0x1969bcf7, 0xa1afcad6, 0x45f777a2, 0xb027bde4, 0x19e21fed, 0x391992de, 0xdc5d4cb4 }, { 0x4c0942de, 0xe086f705, 0xab1e72f5, 0x56e5debf, 0xcf2704c3, 0x48ff936a, 0xd562ad7b, 0xe4ac3c4b, 0x55ccc2c4, 0xb4bc1676, 0xbccb2444, 0xe1f6d166 }, { 0x84ff1baa, 0xeff92d61, 0x35782ed8, 0x6b025328, 0xc0e04239, 0x5c4f4bf8, 0x9b518d55, 0xe35e4939, 0x5bb904d1, 0x380e2704, 0xb348b973, 0x88fb995c } }, { { 0x63eddaa, 0x1c3ba5f8, 0x36553580, 0x1ef3cd6f, 0x443434c, 0xc491b908, 0x28fd3464, 0x71fcf11f, 0x5f2bb1fb, 0x9a049d71, 0xb0295337, 0x7bd2167e }, { 0xd277d288, 0x6b32b893, 0x5473a6fa, 0x8591a42, 0x4d15eef0, 0x2fa1e3e, 0x8c3c3632, 0x436adbdc, 0xee92e39b, 0x675bef57, 0x27801a4a, 0x7abd40c6 }, { 0x31321e91, 0x36da0a51, 0xeeae0480, 0x5de33951, 0xbb24031d, 0x1c292846, 0x91b5dbd5, 0xc53e6421, 0x6827b6dc, 0x2f0025ee, 0xaa2810e5, 0x8c3f6298 } }, { { 0xe165549f, 0xe3d4934d, 0x21ad1988, 0x78cc017b, 0x885b4c6b, 0x29e288fe, 0xd0c7baaa, 0xd81bb617, 0x6f8caad5, 0x9f5b753, 0x1a20fd4, 0xec55047d }, { 0x878f2d43, 0x46e72b66, 0x165c30f0, 0xb0160a8, 0xdaffa26d, 0x6d23d60a, 0xdd829360, 0x9e6daba0, 0xb005f133, 0xc2d5f29f, 0x98537e6d, 0x46e5cf2 }, { 0x5667bf4a, 0x9cbd7e81, 0xd668d501, 0x3baeb4b8, 0x41b7c995, 0x64bcc672, 0x87be6878, 0x5af8602, 0x8af8345, 0x34dce23d, 0x76840b2d, 0x90ac545 } } }, { { { 0xbce1dce2, 0xca8ade13, 0xf4e4b487, 0xcf1bf47e, 0xb3415376, 0x2d26283e, 0xcfee169e, 0xd2db87c6, 0x7e04b3f4, 0x99740606, 0xbf7acd57, 0x2ead7308 }, { 0xa877d8ec, 0xf4aab929, 0xeca4c5a7, 0x8fda614a, 0xcdbb5a68, 0x1a570cd0, 0x71e11101, 0x80fc1152, 0x2e05ff55, 0x9a89d9af, 0x2c153da9, 0xc0ff2bfb }, { 0x1f8520b4, 0x992c206c, 0xa3d7e136, 0x32bf0655, 0x211fcf79, 0xaa28f45b, 0x22180578, 0x6aa85c39, 0xf2828dc6, 0xf165c0e5, 0xac56bfd9, 0x5c192fb1 } }, { { 0x7f9798fb, 0x935be2a3, 0x3deddc50, 0x2cc85603, 0xe445b130, 0xb2fec9e0, 0x3531af5c, 0xa740e31e, 0x70b0196b, 0xe775ee45, 0xe8188067, 0xc18382e2 }, { 0x310709f9, 0xbedd6e57, 0x73bf7b28, 0x83730c83, 0x4c1312fd, 0x34e3ea9f, 0x64e5ab68, 0x98f66645, 0x59acbccd, 0xbdb3828f, 0xc7be487b, 0xf26b0a8d }, { 0x7f281a4, 0x5ea68af3, 0x86ef737b, 0x9ec4dc34, 0xfac6ea12, 0xfde97d1f, 0xa511d475, 0xe5322c51, 0x874a4f1d, 0x4ec84361, 0x52b4e2ae, 0x6b8b3553 } }, { { 0xda7181b5, 0xa39bc24, 0x37136ca0, 0x95135291, 0x13aef46, 0x64686f5b, 0xd0ec56cd, 0xeebd0aab, 0x18d6951c, 0x78380110, 0x46d75927, 0x5cf90376 }, { 0x9ee64d29, 0x7c133973, 0x3179dfc7, 0x42b54b23, 0xb9ad6cd9, 0x41923420, 0x9c4e1cda, 0xf6656229, 0x61da1b36, 0x4bd2137f, 0xabd0a45d, 0xaba41f99 }, { 0xe6729b11, 0x32c8b0c, 0xea317b75, 0xea11d252, 0x56e90713, 0x715c7395, 0xc424d10b, 0x60f5281c, 0x9a647120, 0xa55b7f69, 0x7d7bbeb7, 0x39fcb126 } }, { { 0xfe5b8a74, 0x5790fe1b, 0xe00bfca2, 0xff403d4c, 0xbbd319c8, 0xb770c05b, 0xec5dcaba, 0x73a7cbc9, 0xc17fa5ed, 0x62cb3de3, 0x8832c313, 0xed6fecd7 }, { 0x85befa9a, 0xb895d369, 0x67e85c6, 0x5f853adb, 0x53a7308a, 0x460b7ff0, 0xc19b5c7f, 0x801f1c53, 0x87176049, 0x9c5385dd, 0xca18f6c1, 0x97e98406 }, { 0xdcd07cb, 0x1334aea3, 0x679339d3, 0x6c1b6d64, 0x2973505f, 0xa019f53c, 0x31091d08, 0xdeb694bc, 0x4b821235, 0x56f93e04, 0x2aa3860e, 0x13f860b9 } }, { { 0xf6d201cc, 0x60a5d0a, 0x94bfcc9d, 0x84f8bdca, 0x48bf6f4e, 0x5b2c63a2, 0x576e36c4, 0x61585fc1, 0xb04e984a, 0x5aa37c66, 0xc78f0fb2, 0x5579e7e3 }, { 0x6735a68d, 0xe7337bd2, 0xc63cc9aa, 0xae8f75a5, 0xc399c4cf, 0xc5cb5d62, 0xee53b45, 0x77878314, 0x496d0c74, 0x5436bbc, 0xec8953d4, 0x670fb1df }, { 0x18ab9949, 0x101f9398, 0x877040de, 0xdedd990a, 0xc83e5b72, 0x9406b483, 0x25a978d0, 0xd4ac4b8a, 0x336f958e, 0x7631ae61, 0xdd3bd41c, 0xb67fabd8 } }, { { 0x83fd013c, 0xbe65fff5, 0x8f22933c, 0x24d7d789, 0x137479d5, 0x6f1cf426, 0x7af8c91d, 0x1e21b18a, 0xf90e98f4, 0x6196ab65, 0xcfc293e5, 0x1fffa975 }, { 0x3c85cb76, 0xd5e8b77c, 0x76674a21, 0x69008e3c, 0xbd6aba28, 0xcb1c98fb, 0x9c6e7f8b, 0x77d4a70b, 0xa38024e3, 0x642c797b, 0xd887af95, 0xc05ba426 }, { 0x7b73ed30, 0xe47bbc03, 0x811bbd42, 0xbaadec63, 0xf03c8ba3, 0xc1617a10, 0x628ace75, 0x2e7caa35, 0xcefbf9ba, 0xdf01f3b2, 0x1a737657, 0x59263279 } }, { { 0x275bd65d, 0xc2e52d44, 0xd57cdfb4, 0x5c6ba67c, 0xd4ed7101, 0x327d1895, 0xe67e2fa4, 0x8eb68c1e, 0xed694b49, 0xc52a21d4, 0xa5dacbbe, 0xa2a0db9d }, { 0xdff1ea3f, 0x77383e0a, 0xfce89891, 0x69b3dc1a, 0xdc39f939, 0x686cb98f, 0xa6a401cf, 0xfc14a2bd, 0x33f7a00a, 0xc17ae668, 0x554e56ab, 0xe19ff835 }, { 0x16c3e3b9, 0x890c4e31, 0x9c4e138, 0xe0d3ae22, 0xb0ac4e0f, 0xff17e445, 0xfd3f8924, 0xe6dffc9f, 0x13b8f29a, 0x8bc24545, 0x65585cb3, 0x4d987086 } }, { { 0x454e9bf5, 0xf0802fe6, 0x5bfd1f2a, 0xa585b8eb, 0x5c1615c4, 0x6fbccd73, 0xace7eb23, 0x739dc47, 0xf52d7edf, 0x44130b72, 0xf61c8d71, 0x8594d064 }, { 0x2854abea, 0x7c331116, 0xe645704f, 0x7e0c2b48, 0x6b89c3b7, 0x8b6f256f, 0xf66c03d1, 0x6f92f09, 0xf5ac1c24, 0xc166723d, 0xf5c7c4dd, 0x605c6897 }, { 0x76de9f58, 0xe8d71d56, 0x76b3b752, 0x3d4a9c9f, 0xa405fe30, 0x92f0a721, 0x3ca2bc77, 0x8aa218ac, 0x65006723, 0xf21f6e, 0x9e066cd3, 0xba92b6a4 } }, { { 0x735e45cf, 0x44b0cbbc, 0x750bb263, 0x5e24d186, 0x2482ee59, 0x412219ca, 0xdd8fc0e8, 0xb75d6817, 0xeb125b21, 0xaf438417, 0xf77b3dbc, 0x48d32118 }, { 0xe7318ec4, 0xcdc749f8, 0xa70b5a7c, 0x3935b948, 0xfbf6f5fc, 0xfe7d3d65, 0xc7d0629b, 0x643f2645, 0xcfca0fef, 0x601c5976, 0xd3838968, 0x38d61283 }, { 0x9bcb90c2, 0xec1e2a59, 0x5669580f, 0x89568841, 0x4218fe0b, 0x414bff09, 0x627c01dc, 0xaafcff12, 0x930f3f52, 0x63edfa33, 0x4b770201, 0x51ae4f } }, { { 0xe8535f6b, 0x3e3ed0d6, 0xf5c834be, 0x6ddc0468, 0xc99cbad0, 0x5f168b1b, 0xe0316f02, 0xcd32d07f, 0x441c5842, 0x2f00e4d1, 0xc5888f6f, 0xb8eb861f }, { 0x84f0fa95, 0x508c11eb, 0x95447e09, 0x41f542a6, 0x79536b10, 0xda6a4eb9, 0xb88c23da, 0x3750abb7, 0xc77bf2f8, 0x79fdc17, 0x5ad96afb, 0xc766d074 }, { 0x92718aa9, 0x1b31b042, 0x1a951531, 0xa84ae969, 0xc65451f, 0x8038b628, 0x5c66d558, 0xc277da9a, 0xed0cb494, 0xee77c20e, 0xc8a2741b, 0xebf6db2d } }, { { 0xeede8347, 0xad608b1f, 0xfb57808, 0x84b9c102, 0x1b86f919, 0xfd59eeec, 0x3d7a482a, 0xda2f7009, 0x23de111a, 0x97c5e5f2, 0xa7e2bdf3, 0xcd62d4f }, { 0x58c6068, 0xcbf9a05b, 0x5730e8ff, 0xa66c77ff, 0xb86cb907, 0x58258eb8, 0x17446112, 0xe1f294e5, 0x538ac828, 0x80136d58, 0x16bdb337, 0x2f687692 }, { 0xa3e4b28d, 0xb0380970, 0x9e805b20, 0x89b75515, 0x44d29c3c, 0x285c0331, 0x2cfb1d92, 0x2dc5fca9, 0x585e73fe, 0xda74cb6d, 0xf2b5b718, 0xbc2a0938 } }, { { 0xc77e769, 0x27bef20, 0x9ba8b00, 0xeb2290a1, 0x7aa6a90e, 0x9627764b, 0xcd54f31a, 0x244922af, 0xb7eacb0e, 0xb5d0b796, 0x2c87b1e0, 0x98cce0af }, { 0x74c5cc2, 0x553defbf, 0x31df0eaf, 0xce86904d, 0x8958c9ba, 0x84d82bec, 0x5b54bb74, 0xa72d5572, 0x8b65663f, 0xf7bc1cce, 0xa6db003, 0xcc4d7a25 }, { 0xcba63e13, 0x73037974, 0x11921c27, 0x1659f092, 0x4115191f, 0xf94c4a51, 0x7ae2421a, 0x9407baf0, 0xc95a5d6f, 0x3570075a, 0xc55438fb, 0x237447ec } }, { { 0xfa546603, 0x5eb4f666, 0xb5212bc4, 0x780435c1, 0xb2525c84, 0x8cf3d57f, 0x861144a, 0x5cf9dc2, 0xb75b17fe, 0x11d0732b, 0xf79ca422, 0x81ca95ef }, { 0xa6f6d045, 0x7e7afc9f, 0xf169c02d, 0xbfbf2331, 0x99d2a470, 0x169c5d52, 0xe70aa7c6, 0xa8979b43, 0xb10e9f6c, 0xda785078, 0xa9f074b, 0xb39b200f }, { 0x541c8fd5, 0x77714603, 0x5628c690, 0x559a0112, 0x7c24b3db, 0x7216480b, 0xf0d42bad, 0x526855ca, 0xc1f708cd, 0xc38f2090, 0x1e8a6ead, 0x126803b9 } }, { { 0x9cf7c00f, 0x8d0ee714, 0xcdab23f9, 0x17263570, 0x7b2952bf, 0x2d2e6cab, 0xac0d73bd, 0x5d6f6307, 0xd8d67c00, 0xdc9d2382, 0xfec17098, 0xfb327336 }, { 0x8756ea0f, 0x528f59b2, 0x6d451fa3, 0x7511037d, 0xf65fdb28, 0x50dabb62, 0x5948038f, 0x6099e5f4, 0xf034065d, 0xc1b79d53, 0x2d96a08e, 0x60c33097 }, { 0xda5ddb81, 0x653ffbfe, 0xa7d6e03f, 0x390064d9, 0xc85cab44, 0x8bd3ef0d, 0x619aac39, 0x9f00d360, 0xed0320b6, 0x4dcdc825, 0x9e1ca09c, 0x784993b1 } }, { { 0x5b7637, 0x131796a4, 0xd0f3a9da, 0x5eeb1f9d, 0xd0d0c625, 0x48f59a83, 0x621df7ea, 0xa61ca10, 0xbd2adad0, 0x7f1d7c04, 0x5c67344, 0xe9b91382 }, { 0x7b1810c8, 0x2e627890, 0x145cbf27, 0xc01a3fd5, 0x6da108f3, 0xc617eb33, 0x45b4d457, 0x656cea72, 0x7c0ee62d, 0x35991b23, 0xe1fba2ce, 0xb1dddb1d }, { 0xc126765e, 0x2ec0e7be, 0x390a58b6, 0x2e959876, 0x54242e6f, 0x4169c429, 0x93bf4056, 0xf8126c1, 0x90699c8b, 0xbbc1090, 0x4259fadd, 0x23323653 } } }, { { { 0xc2e89c97, 0x1f41fc40, 0x5bd41cdf, 0xc3bffb19, 0x366a13bf, 0x936f1dd4, 0x67c85817, 0x9534c010, 0x41b49d3, 0x2d60c259, 0xc4029c7d, 0x12c53a59 }, { 0x354677e, 0x4b899f6e, 0x5518a6a0, 0x867f490e, 0x9a74e7f7, 0xbd055798, 0xe606ace0, 0x4d7cd07e, 0x33dc9138, 0x1d3533b4, 0x83a6bde9, 0x9f189535 }, { 0x25f67291, 0x77d80d17, 0x90f3163c, 0xac52afd5, 0xb124bb9b, 0xe485ce59, 0xcd9b6c60, 0xad04da78, 0x807503d8, 0x8088a5c9, 0xdefbc8d7, 0x534bbb8b } }, { { 0x90c0298d, 0x94404190, 0x7a10714b, 0xa6593478, 0xd8c018ee, 0x2daa4312, 0x9b80bc29, 0x20151019, 0xafb1b3b2, 0x5e94f822, 0x3dd387ba, 0xa10df45d }, { 0xce6f28dd, 0x86531375, 0x7565b8c7, 0x52e3fa1, 0xc354b0c7, 0xe881f40a, 0x3625d039, 0x8cd3ad1c, 0xb1438f74, 0x9f93e797, 0xe9eb76ec, 0x4c8eae75 }, { 0xee7a2be, 0x9bb0f37f, 0x94fc460, 0xe9c9fd2e, 0x479b1362, 0x7633f6b8, 0xc9caea8a, 0xa1ec26d1, 0xc1ce2632, 0x2070de8b, 0x7497c6e6, 0x8f6c7172 } }, { { 0x2b495944, 0x61f8741, 0x5c32ce3c, 0x3376f1fa, 0xb4559213, 0x60792d7, 0x9c7c4c36, 0xed8db554, 0x3c22997f, 0xe8b994aa, 0xbefcc5c3, 0x9afd9513 }, { 0x60cc938d, 0x23141b70, 0xa0891587, 0x7c4661f9, 0x86f30433, 0x26b2d1ad, 0x7547506c, 0x46aab750, 0xacf7c64c, 0x44fd12d8, 0x78073752, 0xc7681823 }, { 0x68056729, 0x7c416aee, 0xde06f2cb, 0xdc4d562c, 0xd807044f, 0xd64d21dc, 0xd446ac36, 0x96ffcce9, 0x495f187b, 0xaf75b105, 0x49f67c55, 0x1498a796 } }, { { 0x32738a61, 0x589ea617, 0x6316d342, 0xc9e5adf9, 0xd451331a, 0xb6d597b7, 0x464f4cbc, 0xa5eab96a, 0x75cc0bef, 0xde6ae1eb, 0x8b325dee, 0xd5ea3910 }, { 0xfe05f824, 0xdc52da7e, 0x1ada1341, 0x10894b58, 0x1e14f646, 0x9198d96f, 0xb0a728f6, 0xbda2905, 0xa6faa68f, 0x8e9b2355, 0x15c6e19a, 0x9b2842f9 }, { 0x7b0f9250, 0x8c44157f, 0xb89a74c9, 0xada10f00, 0x6f026c36, 0xf8e0e923, 0xf7234dc9, 0x36b8180e, 0xa4e1fbc8, 0x5f6b18f3, 0x8e240a69, 0xa3f8b84e } }, { { 0x36e2ada4, 0xcd27b8b4, 0x9797f6b1, 0xeafcdd8b, 0x12acc045, 0xa0b9cc57, 0x9d407a41, 0xfc33725f, 0x9b537b2b, 0xf62d322f, 0x8f6c69f2, 0x1142a86f }, { 0xa63fe2a2, 0xad0aec80, 0xd3b26b0c, 0x2f291be1, 0x2be48903, 0x55d80d58, 0x5cd9127e, 0xe17ced80, 0x49b18036, 0xd44d800a, 0xec522289, 0xd6de6af0 }, { 0xc234366e, 0x258882da, 0xd5ff0049, 0xef185e5c, 0xc4357022, 0xfe4b7f32, 0xfa049dbc, 0x5bc40d25, 0xa3b9acfb, 0x66f6f54f, 0x28230a6c, 0x234d5d59 } }, { { 0x3bd0ca97, 0x43df284b, 0xf0905cbd, 0xe67a7851, 0x77c326ea, 0xf82f0e28, 0xe5f5efcb, 0x521db3f7, 0x5b62132c, 0xe3f31da4, 0xfa65b970, 0x23d919a0 }, { 0xa8166a28, 0xd2745c0a, 0x93d93bd7, 0xace6095c, 0x28bba986, 0x335a6567, 0x2f986b98, 0xa76b57e0, 0x3f5b5291, 0xd96ed1a3, 0x2d13362b, 0x2525b533 }, { 0xa2c03352, 0x1cbf19f9, 0xdae8995f, 0xfdab0f0, 0xc9232ee9, 0xa8a7e2d8, 0xe11bdaeb, 0xce809928, 0x51a82961, 0x53314be0, 0x9d5dff2f, 0xb96cf29c } }, { { 0x36901234, 0x1e5ac975, 0x85577383, 0x8f4ac245, 0xd7a04264, 0x1f125bae, 0x99b7be40, 0xebcc1dad, 0xfaaee084, 0x62435948, 0xdec47dc7, 0x799710bd }, { 0xb0d5cf87, 0x8ddd7f53, 0xa61907d3, 0xa95af87e, 0x1f6ccc45, 0xd56d669b, 0xd057758b, 0x65a68315, 0x81f30aa4, 0x1816cf78, 0xcb94f0b7, 0x42100f23 }, { 0x40f6b795, 0x84228dc2, 0xe7d3d44f, 0x80b25e30, 0xd72000c5, 0x537f8518, 0xcfdadfbc, 0x5fdf8c49, 0xddf0ca47, 0x5435c0bb, 0xf331787d, 0xaed9883f } }, { { 0xdad50468, 0xe89148fe, 0xd5e877a8, 0x7be28224, 0x49444f4e, 0xf8a604c9, 0xd608e4e, 0xfdedbff3, 0xd813395, 0xae451da7, 0x42664f56, 0x725a4c42 }, { 0x9421f46d, 0x2280bf77, 0x4f4a30f1, 0x3e3b46d8, 0xeca8fd7c, 0x78c4e839, 0xd79bb9e6, 0xd2c4b46d, 0x29aa0e6d, 0xfd2373a5, 0x257e50f3, 0xec24b890 }, { 0xb23a5274, 0x656987c4, 0x8e52c147, 0xc3286a9c, 0x886aefce, 0x6fca5ecd, 0xa663d4c9, 0xf7937c34, 0x81ff7cee, 0x7a996aef, 0x12e2392f, 0xe8170b85 } }, { { 0x7792fd28, 0xe1a7099d, 0x8b96cf27, 0x46604b95, 0x4db18d6b, 0x8a49a92a, 0xb3565af, 0x7913ad76, 0xa1db2e21, 0xbada43c0, 0xeddc7e4e, 0xa5a2fae0 }, { 0x8caee17, 0x47f86ee1, 0xc26a6b5c, 0x82f9352d, 0x10ab0d9e, 0x3bbe768d, 0x20416230, 0x1c67e820, 0xd72d7fad, 0xc7d0978c, 0x76dd70cf, 0xe86a44aa }, { 0xb72853b6, 0x9b9909c7, 0x8753d690, 0xd49905ea, 0xe0302762, 0xf7ba25b2, 0xceee4a52, 0x1b842f45, 0x3671c610, 0x3d01e83b, 0x2b98b6c2, 0xa805dc1e } }, { { 0x996f1f35, 0x719f59da, 0xbc513b41, 0x530d21ab, 0x18375c61, 0xcbd58e3a, 0x49f52465, 0x63346a3b, 0x9ca8168b, 0xce307824, 0x36ea89b0, 0x2d11cde2 }, { 0x93b8591d, 0x7f5c16e1, 0x315a3b20, 0xbc25f5f5, 0x6e27979e, 0x42074436, 0x6b73986b, 0x4f437914, 0x22b615e3, 0xc6c03487, 0xd7456d04, 0x8336daed }, { 0xec243dd9, 0xde2850a9, 0xece39007, 0xc8677101, 0xf2331779, 0xbd458d5f, 0x3003b422, 0x2adea0d5, 0x18ebd14d, 0xe47d9a5, 0x5d6d767d, 0x7ad8be4f } }, { { 0xa699b7ef, 0xf36ceae3, 0xf9540d63, 0x66a041a5, 0x68ba0347, 0x4a1a172e, 0x70576da6, 0x4f0b04aa, 0x5f3520c1, 0x2ac6fa42, 0x8a39e57, 0x48826cb6 }, { 0x756ea2d0, 0x1fa3063e, 0x6a80e7b9, 0xb3fb8cab, 0x8b55a024, 0x2368b2ae, 0x437504ed, 0xb9f4b97c, 0xa174a2f7, 0x671fc19a, 0x3b7455a6, 0x2e18d638 }, { 0x49785670, 0xb2d14c45, 0x3c7b7195, 0x2b79ea6c, 0xd2c824d4, 0xf1201da7, 0x30cd72e6, 0x218edb2b, 0x91163d32, 0xb1a689ef, 0x12a223d5, 0x6d2a648c } }, { { 0xefef479d, 0xe14f7f44, 0x770dde71, 0xc693bd9f, 0xfbbbf089, 0x842df668, 0xd6e7bdde, 0xcd6f65aa, 0xe6a983f6, 0xc1eecac2, 0x5939ef79, 0xcc1b7d45 }, { 0xf9cf4451, 0xa0be247b, 0x5d1c36f, 0x4bb52236, 0x2da4caf2, 0xa030a3a1, 0xbd736db8, 0x793eba84, 0xee6fd30, 0xfcb3f0ba, 0x5e08d8ed, 0xad26ea5d }, { 0xa0172270, 0xbbca5945, 0x44577626, 0x50418a5e, 0x8f7d351f, 0x6d3e83a8, 0x9c863f68, 0x7fafe069, 0x7a768cc3, 0xe516c47d, 0x97abee2b, 0xd52b1efe } }, { { 0x8267c01c, 0x3a2b21ff, 0xe118d700, 0x6979b0f, 0xccc0e055, 0xcb2e06e0, 0x21b435f3, 0x1514a41f, 0x4acb94cd, 0xa0e2d428, 0xa8e2f84f, 0x94cb1c83 }, { 0xcbc0bcfb, 0xcf56962, 0x93105518, 0x22292b50, 0x552e3adc, 0x810b3608, 0xd33315d1, 0x41fdf259, 0x8b6ae8b2, 0x93e358c, 0x35863197, 0x91613dd4 }, { 0xa37e8d6b, 0x14563ac6, 0x83c804bb, 0x72835155, 0x4243814c, 0x5f4fda68, 0x16b45693, 0x2dc4ea2a, 0xa8bd3470, 0x9a2a4d92, 0x61c761a6, 0x6ff09d2c } }, { { 0xf5c659ba, 0xfd98f330, 0xebc1403f, 0x7b05f561, 0x1935f853, 0x86acf7ac, 0x946d227f, 0x946c499c, 0x1373d25, 0x2b9524b8, 0x707228b6, 0x144692b }, { 0x23c4adc1, 0xfad6ee0, 0xb1c0da91, 0x6e99f944, 0xc6553fa3, 0x8173fb5, 0x74a3b6f9, 0x1bc294c0, 0x301ad3d0, 0xe1906d24, 0x854a366b, 0xb9644959 }, { 0xaaf36782, 0x43d1d3b0, 0x3534270e, 0x51101cbf, 0x60cd7c8, 0xcc212540, 0xe8f30695, 0x667d3f5b, 0xa6365979, 0xad0fd743, 0x6465aa1b, 0xe398a376 } }, { { 0xc11f3695, 0x67944e31, 0xff3cd730, 0xbac25966, 0x55ce4003, 0xccb343f1, 0xbfec175e, 0x598c0ba0, 0x6e23595f, 0x8e5d15b3, 0x9b42d464, 0x93228be2 }, { 0x3ece60c4, 0x935ededc, 0xfe5a88a6, 0x48243739, 0xdfb72072, 0x7483c6c0, 0x83295ebd, 0x16e160fb, 0x646cab84, 0x8c49a5e8, 0x644cd6b7, 0x1c18c7a0 }, { 0xcb59ff0b, 0x347b165e, 0x19a91fb2, 0xbdaa9a81, 0xbdd65f65, 0xe9b5ea68, 0xfb5faffc, 0x3c087341, 0xb6a83b84, 0xb213b83d, 0xd769028f, 0x8bf78958 } } }, { { { 0x6fcb5153, 0xedb5aa6f, 0x7fad976f, 0x5ee998f3, 0xc943c2c7, 0x2b3c8f5b, 0x9890b605, 0x57c02637, 0xd12011b4, 0xcf4d6bab, 0xcb21fb7e, 0xcf6e515c }, { 0x88055964, 0x91146245, 0x68580165, 0x5b8d3b0b, 0x2d90ad0f, 0xd703ae1a, 0x590c367e, 0xc73988b9, 0xf2d04cbc, 0xc41b6c17, 0xb31443bc, 0xd96b468b }, { 0x2b253ea2, 0x9354358e, 0x23eab01b, 0x889105de, 0x5da7d3f7, 0x400f7adf, 0x4204b078, 0x8112d4d, 0x2a4f6789, 0xde09a8f5, 0xfc19cc92, 0x175d50ee } }, { { 0xefc40967, 0xfc90b37e, 0xab11b8b4, 0xe18a6020, 0x9ca5a061, 0xc2efe19b, 0x138633b1, 0xa7febfbc, 0x95185a06, 0x7213007f, 0xcb9b4da4, 0xcfc51275 }, { 0x37db424, 0x5497d1f3, 0x7297135f, 0x4c02c44f, 0x79bc6539, 0xf9220a55, 0x15360b44, 0x3cc65b26, 0x51b4b9d9, 0xdd978c09, 0x9399132f, 0x8a4369b6 }, { 0xbb4b363d, 0x40678669, 0x7be6d93f, 0xc2b24220, 0x78ac3021, 0xd2f608f, 0xe0693c5b, 0x97590d7, 0x7150350e, 0x843b09e0, 0x6b3c62c3, 0x3cdbcf3d } }, { { 0xa5bdb0b1, 0xfea5b8e1, 0xca621949, 0xa5f3dc1b, 0x4a3777cb, 0x9dfeb351, 0x225b6c0, 0xfce41b1b, 0x70c3cb5b, 0xef732027, 0xf2ca2e70, 0x268b4972 }, { 0x66475cf4, 0x24b39e13, 0x104812e, 0x8e19a9e, 0x927a526a, 0xe3b24627, 0x25f55b41, 0xb628afc9, 0xeaf1a869, 0xe7ed9e57, 0x8117703f, 0xf8df8c25 }, { 0x5a012177, 0xff066e3b, 0x64a06a62, 0xa83e5730, 0xce56a854, 0xcd75f064, 0x8019c17, 0x5b81f104, 0xb39deaab, 0x73618165, 0x4580e176, 0xd91448dc } }, { { 0xfbfd5d98, 0x9b81778b, 0x44f2f241, 0xa814426b, 0x225493c4, 0x5e203727, 0xd53f5a4d, 0x35413b5f, 0xb29447c2, 0xdfb9ac19, 0x51b98c67, 0x3212f6b3 }, { 0x9cb3ba60, 0xcb6bdaa7, 0x5647d79b, 0x4a0c5de3, 0xcdd95721, 0x591bd4e4, 0x6940ec8f, 0xf54d32ee, 0x96555da1, 0x732fd353, 0x3637494e, 0x535a49d1 }, { 0x87e56cf4, 0x30cf4c69, 0xbd21e51c, 0x482b1e0a, 0x1b519db4, 0x32f9b7c4, 0x6fcc3eb6, 0xc8a27368, 0x26a575e2, 0xdc888dc9, 0xbb1dfd35, 0xed4d9f2c } }, { { 0x5c871797, 0x6f0623f9, 0x6b670b76, 0x5039d9df, 0x688ca45c, 0x6ad72581, 0xc817658d, 0x8a79cac7, 0xfd0a8e8d, 0x94aefce2, 0x782d8f37, 0x257bb468 }, { 0x1f7e408c, 0x1b046493, 0x6a7adf56, 0xf6b37958, 0x80827ca6, 0xb8df458c, 0x9c7556d7, 0xacd436c6, 0x8f81c0ed, 0x8b5d30f1, 0x219caf55, 0xf633f1b3 }, { 0x87c41ab4, 0xc63ea325, 0xa880609a, 0x4e7342c4, 0xc2851102, 0xd8facf35, 0xfa660b66, 0xa27e7f7e, 0xcc0e5d88, 0x4885906b, 0xcd60b7c9, 0x7e0540c2 } }, { { 0xa463fe17, 0x3830acc3, 0xa51b3da, 0x2e7cba32, 0x20b801ff, 0xed23cbd8, 0xd36cddeb, 0xb5ed2d1a, 0x81d9c854, 0x1823642, 0xeea0071a, 0x8d50d4fc }, { 0x52a1a086, 0x81249baf, 0x96737357, 0x8e1b280b, 0x9267fdc5, 0xdb4cd935, 0x952e388d, 0xb628b4e7, 0xb4c4565b, 0x7f78535b, 0x91201386, 0x1febdee0 }, { 0x105e7176, 0x42214d6, 0x56cc9c95, 0xec054595, 0xea74552f, 0x94ea6cd6, 0xe74e65b6, 0x3f88767f, 0x5da31b8c, 0x40454af3, 0x513bcd5c, 0xb080a5b8 } }, { { 0xbd42a784, 0xb409c4e8, 0xa0ce1785, 0x3d224cee, 0x33feab50, 0x70432767, 0x90bde52, 0xd7886f91, 0x605f69e8, 0x165daff5, 0x44be1d98, 0x3d3b3702 }, { 0xa9794066, 0x98de81e0, 0x4c2e3dde, 0x29aa95f0, 0x6a497a0, 0x2c8c2506, 0x5b991d9c, 0xf9b61c3b, 0x8ee497c9, 0x80e5cf86, 0x87a3224b, 0xc06c80e6 }, { 0xc5f798ba, 0x4a897aaa, 0x73689db8, 0x29538f5d, 0x85d2bced, 0xd1592da, 0xfa34507, 0x152a6917, 0x8d98bb23, 0x98e19673, 0x99f3a204, 0xe724c11d } }, { { 0x50222de5, 0x3b495606, 0xefbf98b6, 0x5535be56, 0xa397eb7e, 0xe16fae4e, 0x6eabeb92, 0x95768d53, 0xce10906, 0x21ae0743, 0xcc1ac4b6, 0x5378ec06 }, { 0xea3dbd9e, 0x48d5ac6e, 0x2d7d1c04, 0x6cc485b0, 0x6c783ed6, 0xba8ea98e, 0x20aca019, 0x43722e7d, 0xa830afe6, 0xa9cdf18, 0x140bc720, 0xd78f67cd }, { 0x1a0a7110, 0x456b562f, 0xc7da7742, 0x5683287a, 0x660a2707, 0x386f939a, 0x5e694508, 0xffeacfe2, 0x7816ff4b, 0x223cffbf, 0xc2fa7058, 0x44160869 } }, { { 0xa29caab2, 0xe1ebe138, 0x65553267, 0xe7bca14d, 0x77daa37b, 0xa46e2d18, 0x763d9916, 0x9b7fc839, 0x6c5f698d, 0x39870e1e, 0xa62bb638, 0x7130cb78 }, { 0xb4e640ef, 0x6672548, 0xc590a41d, 0xb080c877, 0xb6658ad7, 0xf90182d9, 0xad838b80, 0xd15badb3, 0xe6c6710, 0x5a61c0a1, 0xbde507ff, 0x5b50922c }, { 0xd6990fe4, 0xc01c8938, 0xeac6aa7f, 0xb287dde5, 0x3a71a5cb, 0x4616a0ae, 0x8d2ad2dd, 0x3174bba3, 0xd6bd288d, 0x7bce9026, 0x551afd30, 0x5203bc33 } }, { { 0x72dd61f6, 0x5fc535ed, 0x91a03293, 0xf8fb0b25, 0xc1617ec8, 0x3b5aac93, 0x247c4252, 0x33dcee4b, 0x524eaa53, 0x8ef77292, 0xfa642a76, 0x45b7774e }, { 0xc38f13a7, 0x450e461b, 0xf00391e8, 0x182a97d5, 0x9424b1c8, 0x483ac1ab, 0xd90e623d, 0xc5f5e291, 0x8a5b75f5, 0x52bffabf, 0xfab13a8, 0xfbfe4d6c }, { 0x9143510d, 0x637d911b, 0xd32ed6a, 0xb93b0d8b, 0xea33969d, 0x7345b3ee, 0x6e53d44d, 0x29d03f43, 0x8ae11a83, 0x875e78e8, 0x807fdfc1, 0x790728bf } }, { { 0x727d58c1, 0x74ce0b0, 0x36e372bb, 0x907e29f8, 0x9e397f09, 0xf8244653, 0xdc83d93f, 0xd35abd82, 0xd2738071, 0x7b990c53, 0x2a923e10, 0x66390cc5 }, { 0xca77411a, 0xaf52a3f7, 0x75966f68, 0xa839bbf3, 0x2cb8c902, 0x1b314301, 0x772a67cd, 0xe33ee5a1, 0x8526496b, 0x34d9043e, 0x7396df61, 0x4e75ee1b }, { 0x6956faec, 0x5c839b70, 0xb0a52f12, 0x907d3ef3, 0xe10e4f99, 0x734623d9, 0x91965009, 0x924e67a6, 0xeb990e76, 0x69699270, 0xeee73c68, 0x45e5b66b } }, { { 0xabec3512, 0xca3d5c5, 0x7698ee28, 0x955c79d7, 0xe04bf704, 0xfbc3dba0, 0xfd10ff50, 0xdbd73a05, 0x73dadd3f, 0x459210cb, 0x46d19ab9, 0xebc0097f }, { 0xf307e180, 0xde6032f8, 0xa5789cb9, 0x34768e5c, 0x455783b3, 0xe22a6fdc, 0xdcbc2a08, 0xe3b6eb02, 0x8e9fa137, 0x8cab41e9, 0x6fde308e, 0x38608fe6 }, { 0x2b4fee43, 0x72a2d357, 0xb0359e3e, 0xda136870, 0xf4d6b850, 0xa233bfea, 0x6e89c7db, 0x2847fcd, 0x1e022ea0, 0x6f04dfc3, 0xdb1fce17, 0x9d19c6fc } }, { { 0x92809a03, 0x42187251, 0xd3c8c741, 0x50681dd8, 0x9f932e0e, 0x574f5345, 0x9898dff, 0x6dcb8a8b, 0x1c40187b, 0x4b198b56, 0xa7920510, 0xb608d799 }, { 0x118ade40, 0x4c777b4, 0x608c364, 0xf68648e3, 0x1ba35e38, 0x7edd063e, 0x203a46ea, 0x7d813c26, 0xf4b543ed, 0x1e45e9f8, 0x9a2dc8fe, 0xe3640ae5 }, { 0x901e0d12, 0xf7853cf3, 0x88f14aa9, 0xac11e88c, 0x8baf66b6, 0x6676205a, 0x39d19063, 0x122363ea, 0x370db64e, 0x48912422, 0x16b02d7a, 0xde6db475 } }, { { 0xa9350999, 0x8a61c9ed, 0xfa617939, 0x7e656461, 0xaea1e5a5, 0xba98dd6b, 0x13d91273, 0x41360532, 0x264f65f7, 0x56e13a20, 0xd2232848, 0x2dd51710 }, { 0x7cbccd3b, 0x948ede79, 0x67c52de0, 0x8bd8b2c9, 0x47a0479, 0x93946d3, 0x7d3ceeb2, 0x852346b5, 0x8d7ba387, 0x44770881, 0xdc91f7ca, 0x8d9c2df1 }, { 0xd62d1ed5, 0xff4c7f5d, 0x8b60ffce, 0xd3af72fc, 0x47a51db3, 0x802dfc9, 0x10cacf56, 0x1891a316, 0x3b0a647a, 0xc00aff44, 0xbcc4ffae, 0xbb0f0cc8 } }, { { 0xd2218772, 0xe47d2cc0, 0xc1b39229, 0x76678b9d, 0xf2f7fcfc, 0x4c7f3eea, 0x5875092b, 0x8555d289, 0xac8820c0, 0x8d4007b0, 0xe2aa3281, 0x2f0ba736 }, { 0x8291e3af, 0x184114a, 0x83622fa6, 0x73bd1a34, 0xc96f5908, 0x83d4bb11, 0x4f72ec83, 0x5bb24c10, 0x1ca69d48, 0xbbdd6b45, 0x53fdbbba, 0x4938475e }, { 0x873f3dc8, 0x43ec3129, 0xda9b84de, 0xb3b6214f, 0xc072ca17, 0x71b1dcc7, 0xdca01496, 0xa5bef802, 0x231cc923, 0x7ff14678, 0xb019ac91, 0x75c4a305 } } }, { { { 0x98c6352e, 0x3bc7b419, 0xf58bfe26, 0x47343546, 0xbd004ea5, 0x9e533bc5, 0x9999c1a5, 0x4d559db1, 0x1507f5af, 0x7ad1f1ca, 0xee8e08bf, 0xc09498ad }, { 0x5eebfe07, 0xaab6be80, 0xd51d5321, 0x6ad2aea3, 0xe6e13cba, 0xd154543f, 0xdacd4c1, 0xe82d19c9, 0x4e5053b5, 0x3da00876, 0x171cf001, 0x302a2210 }, { 0x7dbb499, 0x6cd7b295, 0xa0fdd824, 0x50f99594, 0x8b32fc01, 0xd1047329, 0x1849f422, 0xc3795e5f, 0x58eeacb8, 0x60d8c645, 0xba6ee6f8, 0x14039914 } }, { { 0xbb95e6e0, 0xd165bbc5, 0x7cc46117, 0x5680d5b5, 0xd1bb4b9d, 0xc596f7a3, 0xca9b8e19, 0xc197841f, 0x8bab116a, 0x6ebe9a8b, 0x7adb85a9, 0xfdd9dbb3 }, { 0x81333479, 0xc1554c3c, 0x11e1da04, 0x85d576db, 0x69d2fbc2, 0x7edd2517, 0x7994abb8, 0x746fb21a, 0x9f585d2b, 0xd5881d93, 0xd0e5d035, 0x37d6f81d }, { 0x56a193e, 0x6a3a6a63, 0xf00f81, 0x4f902e68, 0x26b4426d, 0x3113aa6e, 0xb7483724, 0x77cb12e7, 0x890a4bb7, 0xa104ea26, 0x22aced31, 0xca916c4b } }, { { 0xfd5855c5, 0x33199041, 0xaf649f41, 0xd9fecf1b, 0x5aba216, 0x1f5106f5, 0x1d479227, 0x6668ec98, 0x146e77fc, 0xf802fea6, 0xe509f388, 0x1c1bfafe }, { 0xb07ef993, 0x80e14f14, 0x16fcbac0, 0x7e5ec18b, 0x70419176, 0x7222e0a9, 0x2f82d2c4, 0x67dff99, 0x8d28e04c, 0x9e67aca2, 0x53d18691, 0xcb1d1275 }, { 0x3d4b262f, 0x54e55107, 0xc97b734b, 0x55b0f350, 0x3864f9d6, 0x1cdfce9d, 0x8b1a5c87, 0xe0f0ea57, 0xb28b2180, 0xcbe5cb3f, 0x97af3cef, 0x94e77b6c } }, { { 0x18dbd068, 0xa8b1ce38, 0x649756f9, 0x89bcf24, 0x197ecee8, 0xd7d8a3a5, 0xa9ec4c0, 0xc247bb66, 0xcfd4894, 0x709de3dd, 0xf89c5ea6, 0xd7aad937 }, { 0x4fcbb796, 0xa4a9f8fe, 0x8c974bbe, 0x61a04470, 0x99b34b96, 0xc623db9d, 0x7eedb69f, 0x282e99a3, 0xf6e5c633, 0xc0b65489, 0x8fa0cb6d, 0x672e3232 }, { 0xb6285f7e, 0x2ea77283, 0x78a15e72, 0x13162525, 0xeb1e5863, 0xe5c0e9d5, 0xb1fd10ab, 0x4c68c926, 0x4de035e6, 0x9ce1bdfe, 0xbfde1044, 0xf3d6c98f } }, { { 0x18662ff2, 0x9949cd62, 0x8a8dccb, 0x4e61e21e, 0x66a84c9d, 0xccc2a268, 0x78227bb4, 0x5a858a15, 0x4de73826, 0x979cfb72, 0xf307a42f, 0xc287b35f }, { 0x3ab342cc, 0x4750b869, 0xdbbac768, 0x9c411fab, 0xb800364d, 0xea8a48f2, 0xc59b2fb2, 0x47bb6208, 0xfbcc882a, 0xa3d36ae7, 0x1a718b84, 0x25ea34f2 }, { 0x745898d5, 0xfe4041f2, 0x5dc7e035, 0xb07c3ed2, 0x3fbe2c6c, 0x41f543f8, 0xaa16266, 0x96b02f90, 0xba08d16d, 0xd07c2fe0, 0xd5788f8b, 0xa54c4447 } }, { { 0x7ef2b0ee, 0x7ca17d06, 0xbab84dd1, 0x35a3cdfa, 0x84f591df, 0x41aaff9e, 0x63616b7e, 0xbe75a6c9, 0x198bd439, 0x9ce63ccc, 0xb8b37969, 0x4d09c1f8 }, { 0x3476b046, 0x1c055241, 0xc933598, 0xc2cbfd53, 0x1511dca8, 0xf9ea93c0, 0xaa76d038, 0x7ec97e53, 0x884eab2f, 0x53f30992, 0xdb2b2e80, 0xa3548dc }, { 0xf8fcf8b1, 0x754d1a09, 0xb4895e5, 0xadfecd23, 0x473194d5, 0xf5f99f84, 0x2dfdd60f, 0x4dad929b, 0xfb4aba65, 0x869af3d1, 0xfcc0f61a, 0x4e5273da } }, { { 0xa6ca6b10, 0x45f01f04, 0x45f5a36a, 0x96d76c6c, 0xd500ca15, 0x119723b1, 0x2b849118, 0xe169f3e9, 0x499b8078, 0x605b107d, 0xc117e185, 0x841f9203 }, { 0x4ac81e8a, 0x9ee1668b, 0x6d3b4e9a, 0xd05cc510, 0xf9ec086e, 0x445f0374, 0xb858e0a9, 0xdf971d62, 0x8147681a, 0x4c8b3c99, 0x274ae013, 0xafe2a6ac }, { 0x7df08094, 0x3e2acfc3, 0xefc25964, 0x446b86e2, 0x3427e7b3, 0xb538eb2f, 0x2ce06625, 0xcfe126a2, 0x2c889917, 0x1b18be99, 0x207613f0, 0xce9e0605 } }, { { 0x8ca54f2e, 0x70597280, 0x4658dbf0, 0xca2ab334, 0x619bb498, 0x5a039e68, 0x82f29e80, 0x7db27057, 0xe38289b3, 0xc6ad7521, 0x726e7997, 0xecd90d9e }, { 0xd45315e3, 0xcc9b0ae9, 0xd9169968, 0x4b59fae6, 0xb952dd1a, 0xa8365b5f, 0xe731ce25, 0xd03fca81, 0x822f3d89, 0x188ff10e, 0x9f8fa865, 0x487af38e }, { 0xab4880f5, 0xd8e4734c, 0xe33c1a3c, 0x96e2f2fa, 0x2bf1dfcf, 0x70f42a2c, 0xa31db66e, 0x6f0531cf, 0xc5d944a0, 0x20c080a9, 0x1a027fa0, 0x2090c785 } }, { { 0xab68b259, 0x89d19a54, 0x4dab6f0b, 0x463f5c5d, 0x295ac7b2, 0x7fbf5b, 0x578ac06c, 0x3f8a3264, 0x8de77c2a, 0x68d7f894, 0x295b862c, 0xfc9ebb03 }, { 0xdc1a67ad, 0x3b558706, 0x1fdcc535, 0x10622dea, 0xbe61f195, 0x1bae0847, 0x27f3a1c7, 0xcf96ed36, 0x4310f497, 0x10bbe918, 0xdc382d62, 0xb98e61fb }, { 0x9b81135e, 0xb450f30c, 0xe25ee1d4, 0x6b6bda3d, 0x77fd3aa0, 0x97e63e6f, 0x18d7a40c, 0xe4d966d2, 0xb23bde41, 0x650515f6, 0x57b8a8e1, 0xc83af43 } }, { { 0x2ff2baa5, 0x8fde11f7, 0xad12ce67, 0x586b730, 0xa2c698a6, 0x9b8c2f04, 0x6af91427, 0xbae20256, 0xf8d0b94e, 0xf697bf60, 0xd394d69c, 0x2e9a63a2 }, { 0x107a87f2, 0xd0e2285c, 0x3916be8a, 0xa21a89f0, 0x3bab4067, 0x7c3a4c31, 0xf01d31d0, 0x67eb3986, 0xc201f4f6, 0xec875cb8, 0xfd5685a8, 0xacbbb863 }, { 0x173ac769, 0x175b3a5, 0xf9c2caaa, 0xa7c8d744, 0x6fa54f94, 0xea6ba859, 0xf69b7841, 0xf8c84a80, 0xf9763922, 0xf92fcc5c, 0x32ab6445, 0xcaf509dc } }, { { 0xd474c87f, 0x74c823fe, 0xfa45befa, 0x7083e097, 0xd979dea7, 0x91d14408, 0xf716c439, 0x5f50648d, 0x8f2a2768, 0x694a8298, 0x94dfc243, 0xccbeefa7 }, { 0xb7d616bb, 0xd5d4cd35, 0xb9b72fce, 0xdf074151, 0xb4979ba, 0x486d225d, 0x4b6ecdf7, 0x580dab1d, 0xfaaf9ea4, 0x2a339f42, 0x5e31069f, 0xd539dd3a }, { 0xa46212ec, 0xad6e2e4b, 0x7a6acb3d, 0x6dcc1754, 0xad21e7ab, 0x934ea76e, 0x37387da8, 0xa187ad01, 0xe89f3906, 0x3a4016b5, 0xec6edad3, 0xef79d0 } }, { { 0x7d298f07, 0xdaf1fb98, 0x8b3e48ef, 0xb982b2f4, 0x6dfa6069, 0x40068da7, 0xf3c81ee1, 0x9b582923, 0x33b35e90, 0xd7dd4b2, 0x49b569ab, 0xcec5167 }, { 0x7374cebb, 0x26b46a21, 0xcbeaaa7, 0x534bc31e, 0xf3440ad0, 0x45f5d28c, 0x6a05d238, 0x92fea38d, 0xc4038fb3, 0x92d41812, 0x70a28200, 0x8099627f }, { 0xa0103320, 0xc551c0a4, 0xef21a458, 0x110cb4fc, 0x9d16cc8b, 0x1c4af1d0, 0xc9e3f563, 0xd671d0fc, 0xa4adf251, 0x5a2a1a33, 0xba91c42c, 0x35420c47 } }, { { 0x4427d9ff, 0xe37603cd, 0x8551eae8, 0xa917ac61, 0x570cef90, 0x18f7d14f, 0x7a5aa22a, 0xd57202d7, 0x8fef68ab, 0xbd3359db, 0x5869b1b5, 0xee81ac61 }, { 0x27c20b6c, 0x16a1c3e2, 0x4d87ab0e, 0x7db33723, 0xdeff4d42, 0xd5cf7adb, 0xf0dd2f59, 0xe2b7e518, 0xf3117512, 0x87a2d308, 0xeb6cd3cc, 0x5c8d7833 }, { 0xb09161a4, 0xaf6ca6ee, 0x841d8d6e, 0x364842bf, 0x95d09bcd, 0x9c6a207f, 0x7222d221, 0x32ea0f13, 0x7a191347, 0xc865c8b8, 0xde902d9, 0xda1c4367 } }, { { 0x58c89fd7, 0x524deec0, 0x42f53eb8, 0x931d4a2d, 0x9bb424fd, 0x91411c94, 0xb195ca1b, 0xbc480faf, 0xb3fe38e0, 0xed089ce6, 0xf2aaf7f6, 0x35a4deb3 }, { 0x43337ab0, 0xd771ed6f, 0x6fa40982, 0x320e23f3, 0xbeaedd42, 0xa4fe3aa3, 0x612f865b, 0x40808000, 0x433c17b1, 0x63a1319b, 0xe7b8bd6f, 0xbfef56dd }, { 0x7596b7f, 0x1424a298, 0xcab30cfc, 0x5cf4a3c9, 0xa213b001, 0xe1abe344, 0xf54712ef, 0xfd4cca81, 0x64073ffd, 0x8994a72, 0x508e263e, 0x5500df2b } }, { { 0x4dbb0c1e, 0x205a9081, 0xa0702660, 0xd6ecd21b, 0x209d316f, 0x3cc2698, 0x8f9bac71, 0xd90b4423, 0x48eb8453, 0xd1751183, 0xfe0ee867, 0xdb5ac4b }, { 0xefe85411, 0xaebee8f4, 0xbaba945b, 0x93ce190a, 0x1daaac44, 0x4ec67cf6, 0xc5717825, 0x9e5e466b, 0x188e5668, 0xca04e56a, 0x4dd10db9, 0x1b9d2482 }, { 0x52cb9a1, 0xa135325f, 0xb358bf88, 0xbae73c0e, 0xbada6244, 0x5ab4ce73, 0xf5a79e8a, 0x57fdf58a, 0x7c1234b0, 0xcdb24a8f, 0x3410f0ca, 0x77df74be } } }, { { { 0x45cbe9d4, 0xcf4b2c9f, 0xd255b1f1, 0x1ce43596, 0x912ac349, 0x2340c781, 0x82fa4563, 0x147e2794, 0x520216b1, 0x3ac9dae0, 0xb2ca005b, 0xbd716eb6 }, { 0x9dd9c1f8, 0x5f730891, 0x4e18c228, 0xf7b18f2d, 0xc9dc1456, 0xfcd4614c, 0x8b68a3e8, 0xf4b2594a, 0x80c97558, 0xb08d0b21, 0x62cb8927, 0xd1f79a7c }, { 0xebeb9518, 0xaf29f75a, 0xd6d7e8f4, 0x5ad6e78a, 0xa421871, 0x55760ce4, 0x69e2910c, 0xde98d0fd, 0x3764fc66, 0x4c2f1aa0, 0xdfad908b, 0xc756405c } }, { { 0xf7856797, 0xea049ddd, 0x281c2d28, 0xec518e0c, 0x10dd6e78, 0xb3b8022b, 0x13739f4f, 0xd5342334, 0x64464666, 0xac4ed3da, 0xd78c67c, 0x5f76dae1 }, { 0x3ffc9c09, 0x640569f5, 0xbd2cff9, 0xa249bce0, 0x19e79d23, 0xab4d73b9, 0x773c0891, 0x1d4e857d, 0xb5171187, 0xbcd8b7a2, 0x766dc50d, 0x40f9418f }, { 0x3ffc1942, 0xfb03b6bd, 0x4884f0e4, 0x7f6e19c9, 0x43e7bf, 0x6f6b6d9, 0x84636f62, 0x8b471166, 0x95c36b64, 0x8fefd237, 0x566cfba4, 0xbf6eabb1 } }, { { 0x4bcac33d, 0x49c3b12c, 0x298034e3, 0xdf70ac85, 0xbe0646f5, 0x147698e4, 0x3db13c06, 0x49f3f07e, 0x1694d783, 0x4f377290, 0x30bdc559, 0xdb11850d }, { 0x7e079039, 0x5ca59b04, 0x96943f11, 0xf37cc224, 0xc5d360f9, 0x8371c91e, 0x9fd1dbbb, 0x42e1f9e4, 0x7a6130b0, 0x657c1749, 0x484e0653, 0x4ee35919 }, { 0xc2db5701, 0xe63aa1af, 0xaead5cf5, 0x88a2b3dd, 0x451184bf, 0xe9a032d9, 0xf938a632, 0x7cb8562e, 0xb443e10d, 0xc76bbee, 0x159cc46c, 0x5fa814be } }, { { 0x4ab9699c, 0x8e2be79d, 0x5f6174b5, 0x1bd7428d, 0x29a282e8, 0x7152ae50, 0xa0c9af81, 0x488397ff, 0x55ed4ad0, 0xc938bd94, 0x3ee56a53, 0x8928f51a }, { 0x91b15fbc, 0x7af990b1, 0x9b4137d6, 0xf0ba7cee, 0xe1d59a5e, 0x6e362230, 0x5c5710f4, 0x8c663d22, 0xcdc0ab81, 0x2923d0cc, 0xd76da3c8, 0xb06bb68e }, { 0xce40a10e, 0xe9cad216, 0x7f79d353, 0x9b5aa2b0, 0xf81855b1, 0x99235153, 0xce64b3b4, 0xc9373bfd, 0x4bac2322, 0xf9c07f7e, 0x8c684fb4, 0xe332fc70 } }, { { 0x39eedc4c, 0x52f4f8ca, 0x5dc2024a, 0xffbfa8a9, 0xd5b02cc1, 0x6a7ebe47, 0xe26c33a0, 0x83f7b5c0, 0x34c1d73a, 0x18d16c4e, 0xbe47f5e8, 0x26b6e8be }, { 0xcaa05aa5, 0xced8194e, 0x3c2f2d0, 0x97184e57, 0xc07e0e1b, 0x4bcde19, 0x13830bff, 0x232f5526, 0x6e06574c, 0x33668820, 0xae22a64a, 0x283a84c9 }, { 0x2952aecd, 0xe2494b7a, 0xa7f6a448, 0x379ac12d, 0xe43e5701, 0x915ef142, 0xf57cbae9, 0x776682cf, 0x5554de33, 0x6a51cc57, 0x91b6d7bf, 0x5b54fb4f } }, { { 0xf9fc8352, 0x8db1e3b7, 0x6b4ae211, 0x274aacc3, 0x40ef7ea0, 0xc963155d, 0xd69e1809, 0x4a55ba86, 0xed220b56, 0x275010b, 0x9bd7fcae, 0x4b846451 }, { 0xe81b98b, 0x65b54ee0, 0xa4da0319, 0xe50f96e0, 0x26fe9a61, 0xb23a249c, 0x54de59a9, 0xc78fa09c, 0x20c0ab4b, 0x3869bdef, 0x4a996d8b, 0x19caed9c }, { 0xdaa2523f, 0x904d4e0f, 0xceac5b2f, 0x9de6a2c5, 0xb7d0366c, 0xbd39158a, 0xc52c41b7, 0xdcea925b, 0xc612a05, 0x24f5077c, 0x4d3d1bcd, 0xb7ea00bb } }, { { 0xb7b7ace8, 0x218f59f1, 0xe59eed29, 0xdc67b20b, 0x8a31d646, 0xd31a5e65, 0x5f06cbe2, 0x2f1ef311, 0x824067ac, 0xfae4d72a, 0x50fe6ed5, 0x1334f979 }, { 0xfad870c7, 0x81425352, 0x54505edb, 0xea7c25dd, 0x36388163, 0xba855255, 0x340d9cc5, 0x9d910b52, 0xdaf0deab, 0xdca78946, 0x83ac5c0d, 0x18f66ec1 }, { 0x1297fdba, 0x6c5b6f0c, 0xd4d8d9fc, 0xbaf46955, 0x3edd5e01, 0x1284ca53, 0xeb3ccf7b, 0x4955c1ba, 0xdc7f81f, 0x90c9a209, 0x5486f7f8, 0xf4c0467c } }, { { 0x9561e5de, 0x395fb334, 0xca7860b1, 0xc22144f7, 0x10dc5256, 0x575fa05b, 0xecf00237, 0x5a48231a, 0xbd1381ff, 0xb5d04d2b, 0x559b6b17, 0x45564f01 }, { 0x2c0406ad, 0xac89bdcd, 0x30ff172e, 0xd177a6e9, 0x3615d1f6, 0xb7bfb2b, 0x6e66aedc, 0xcacd7e86, 0x33f46d7a, 0xa56511a, 0xbe6566bc, 0x839280bf }, { 0x98f40b3d, 0xcfeb47e0, 0xd3382044, 0xe3d5bfa3, 0xfcad9da7, 0x2f111b32, 0xe8b0cd4c, 0xd6586420, 0x2b7af7c6, 0x7b616fda, 0x77a333c0, 0xf91c46e3 } }, { { 0xe1d602f7, 0x1eea931a, 0xbfa05c23, 0x2aaed60a, 0xe4c5f161, 0x2c4205a1, 0xec2f701e, 0xbb21f2c3, 0x36fee749, 0xf50c71e6, 0x56ab91e2, 0xc5b5f24 }, { 0xad9715e, 0x7bd48472, 0xa6af534d, 0x62bf51fc, 0x22df826b, 0xf04691b3, 0x5f4c21ad, 0xdc22985b, 0xb07fd805, 0xe87c9e56, 0x9cc420cb, 0x8895f0df }, { 0x74d88202, 0x2e39cd8d, 0x16649273, 0x12eff606, 0x153565ef, 0x64479f6f, 0xfd54037d, 0xa34d5a51, 0xa14ae313, 0x1e973c10, 0x787352c1, 0x6daea6f } }, { { 0x5f7adb8, 0xd1b95a12, 0xd039362e, 0x1100b7fc, 0xde771fad, 0xe4f1147b, 0xbe5e6613, 0x67f1e161, 0xc4d0d60c, 0x5666cdd4, 0xdb867ca6, 0x5bd7d8d1 }, { 0x8b13fc2b, 0xa72bd334, 0x444f0aa5, 0xa138eba4, 0xba829996, 0xbb55a5a6, 0x79a8671e, 0xe463b379, 0xcd8f4c33, 0xc1d9911e, 0x8ab10699, 0xef520b92 }, { 0xe48110eb, 0x542705aa, 0x42704d4c, 0xb4722a75, 0xef8be431, 0x4386ff95, 0xc6aa3b85, 0x28bda4d9, 0x77bc4c50, 0xa4798160, 0x5f785c1a, 0x60f56912 } }, { { 0xb70e1bd9, 0x28f64a5e, 0xfcf56413, 0xd37fcea1, 0xb3b3d912, 0x8f62a457, 0x31192ef6, 0xd62556fb, 0x34af5a2c, 0xdbbc70fb, 0xb3f51205, 0x7495b898 }, { 0x3af1a0c, 0xbc04ea08, 0x98430ca2, 0x8bfbcb07, 0x9a1247ec, 0x32462b43, 0xc516c69c, 0x32f688d, 0x3e46cdc4, 0x24ae16da, 0x3b51910e, 0xe7f9a6d0 }, { 0x7b1abf4f, 0xda0910e9, 0xe09abc10, 0x61d8423e, 0x881c5c1c, 0xe2421f56, 0x8ed9ecaa, 0xad8c0e0e, 0xb9ac21b7, 0x91fb0d1d, 0x6d18d659, 0x83e55ce3 } }, { { 0x3c5a4c, 0x13bb6898, 0x12a04691, 0xb1df35f0, 0xc254bd42, 0x976d8486, 0xc587e916, 0x1c6eb663, 0x1e11612c, 0xf65dc54b, 0x9f729b7e, 0x52ab92c }, { 0xeac6ea41, 0x9563c771, 0xa5d9031a, 0x2eeae845, 0xc95b574, 0x6a7c7330, 0xfe335523, 0x62050f8, 0xce8671b1, 0xfc0d7c44, 0x21b8b8cf, 0x59e82aba }, { 0x2cc271d7, 0x54c4f2ed, 0x21ebd26b, 0x64cefa62, 0xf1591f1e, 0xa4f5e9c1, 0x609f9649, 0x31fe8aa6, 0xf08eea81, 0xefd907de, 0xf1852409, 0x652b442b } }, { { 0x116d755, 0x7fa8431a, 0xd4500268, 0xe2b46ec2, 0x4dbd80ae, 0xc26cedc2, 0x9c81fa0e, 0x1e864dd4, 0x9a0637ac, 0xef26385e, 0xe3b37d20, 0xf1147d2a }, { 0x94822e4f, 0xbd3124d2, 0x7f845be4, 0x3970431d, 0x51a642c2, 0xbbf9df10, 0x1be9044e, 0xe0feb24a, 0xca78a32c, 0x9ae3e07c, 0x0c156b, 0xac06504e }, { 0x111b1880, 0x22b23590, 0x84d84868, 0xc359f394, 0xf1c471d2, 0x4553be55, 0xe21fab2c, 0xd7ad956c, 0xb339c29e, 0x88ee58b4, 0xf7258075, 0xa46523c1 } }, { { 0xb9abea5b, 0xedda6f2e, 0xa8a9e704, 0x5e745ba7, 0x6983d2bf, 0x17d34391, 0xc7926a4c, 0x20b54b45, 0xf09cd1de, 0x1594faeb, 0x18ab344f, 0x75cd369c }, { 0x4e029b4e, 0x3b5d96ef, 0xee4fce0e, 0x9ea104cc, 0xa24de9e8, 0x57caadc9, 0xa53590ff, 0xbd65a297, 0x4eed67a1, 0x749b5543, 0xcaf9b402, 0xa59812be }, { 0xec538e8c, 0x2d0d92e8, 0xc0cfd7af, 0x2b169307, 0x6ea058ea, 0x752ce6a8, 0x9d74e7f6, 0xe8977b7e, 0x36101de3, 0x93c340ee, 0x459c23c7, 0x96b78f8c } }, { { 0xf12d4225, 0x8fc508b9, 0x9a498295, 0xb971e9af, 0x9f5161fb, 0xf0872f40, 0xbf47beb2, 0x9cf77741, 0x8604f400, 0x3c86b861, 0xcf046fc6, 0xd6a75528 }, { 0xeeaf7b7, 0x192be449, 0xd04462ed, 0x46ef450, 0xfc4b48db, 0xf69fbd0, 0x6858031d, 0x596b822f, 0xcf23cde9, 0xa8bba572, 0xeb4d214e, 0x55062fed }, { 0x1a1bb5fc, 0x513819dc, 0xcce71200, 0x97dc5a1b, 0x7e95140a, 0xad0a06c4, 0x8e6839c2, 0xb290c118, 0xa01055e9, 0x59c40aae, 0xe9eb6d38, 0x2914d336 } } }, { { { 0xda60f378, 0x8179ba6b, 0x6dae1f3b, 0x6614b0f1, 0x9d94adaa, 0x7294cc73, 0xb3029499, 0x2abca7f3, 0x60adb90d, 0x7331b884, 0x373ce8b0, 0x1bfd0dea }, { 0x9eaba2e4, 0x453b59f4, 0x8f768f93, 0xaa654116, 0xbfd8c1b, 0xf2426ee8, 0xea285b55, 0x6738a90c, 0x795e8701, 0xee7a6c26, 0xf9f96391, 0xa6d28877 }, { 0xb62044ed, 0xb1565dfd, 0xc939b868, 0xf3327dba, 0x55e87f5c, 0x346ec4bb, 0xbd2bd117, 0x807f2c30, 0x7b277cc2, 0x624b1090, 0xadc747b2, 0x70069802 } }, { { 0x62eea100, 0x20938172, 0x16424c7b, 0xdc0d0afb, 0xb049fc0b, 0xc3ffb1dd, 0x94c1016b, 0xd54061ba, 0x95e1664c, 0x71eef841, 0x8139bb60, 0x32fd07c7 }, { 0x85dfbddf, 0xc3252ccb, 0xeae8604b, 0xf8683983, 0xaeaba3ed, 0x7d8ea3dc, 0xb9c43084, 0xd6919267, 0x16048b57, 0xc595939f, 0xcb3508a1, 0xf9bfca26 }, { 0x26e6a249, 0xd839a876, 0x1974817d, 0xa8f7c088, 0xdc021166, 0x8f7c33f0, 0xde0f3749, 0x73ed5e18, 0x99a5c9ac, 0x86feb8c8, 0xe7434025, 0xc15f9713 } }, { { 0x9e4812e7, 0x1903da8f, 0x2a6f06b, 0x648e86e7, 0x32e6160, 0xfe9430f4, 0xc4af948c, 0x92475365, 0x18c6e1d9, 0x691310b7, 0x65ef5b51, 0x80298152 }, { 0x50d96d44, 0x75ed0ca6, 0x1639065b, 0xc285aa59, 0xefff5990, 0xe7913020, 0x37fc9e36, 0x80a761a2, 0xb61fc018, 0x4d6eead0, 0x3d9bb7bc, 0xe66fd5a9 }, { 0xf175d49e, 0xfb72eab3, 0x31e9d83c, 0x627ce37c, 0x4e404f2b, 0x704c15da, 0x318e8c63, 0x1fede7c4, 0x6d0c9338, 0xe8e6950, 0xf6d8f4bf, 0x10c15089 } }, { { 0x7d7f4060, 0xb937609d, 0xb9f58fcd, 0x7f9f16d6, 0xc7bcf2e7, 0xe2b3de30, 0x534a4c7f, 0xdae1c550, 0xf73bdffe, 0xd920f592, 0xa5d72a7, 0x21fdfbc7 }, { 0x1315d8ad, 0xf9d4181, 0x2465958f, 0xe7c41559, 0xac0380a4, 0x448e2007, 0x12a6a78, 0x14a7c85e, 0x64584e56, 0xfd7bef6f, 0xf86e10e3, 0x238c8582 }, { 0x9da4289d, 0xf0a1d137, 0x8aeba07a, 0xf6390c4, 0x8ae129d, 0xcdc212c2, 0x8f33543d, 0x58a74532, 0x9d494e02, 0x9c63a3e9, 0x8a7276b1, 0xeccaa608 } }, { { 0x179cdb4b, 0x66cec397, 0x68b3948e, 0x17be01e4, 0xb9b49786, 0x2b14e814, 0x9df941b6, 0x7e978d18, 0x497da41f, 0xe773f5b4, 0x47bfbae1, 0x6f25d822 }, { 0xf6b8af85, 0xa35510ee, 0xa61e1fb0, 0x3c5cbcbc, 0x3ea5e160, 0x55a55930, 0xdc0fec1b, 0xd345eca6, 0xf3df2f20, 0x9f6c192c, 0x370a8332, 0xdf5e99a }, { 0x9104ae0a, 0xd38023a1, 0xde4d1571, 0xc7c74abf, 0x3b2826d, 0x6e09fd47, 0x2ff287d0, 0x7618c362, 0x45b26e2d, 0xaee0ba9, 0x25175421, 0x5e7c543b } }, { { 0x31397276, 0xd9a8eea0, 0xde54e358, 0x3d9dffb2, 0x5fd2715, 0xdaa5cdae, 0x75ed4027, 0xfb43918a, 0xbae9a61a, 0x39f2a564, 0x316dcc78, 0x15dafc62 }, { 0xd3a04c56, 0xe1a87620, 0xf3029eed, 0x1469b338, 0xb3e654b9, 0xdcd52d0e, 0x743335fd, 0xb534f399, 0xada29bea, 0x6c1566a3, 0x7cc3ef4f, 0xe430cd10 }, { 0xfe2f5d97, 0x4db42110, 0x155569c0, 0x2919912b, 0x18bf57d, 0x444e7e11, 0x24e77e8f, 0xf1fecf51, 0x4c722d47, 0x93f5d6bb, 0xe6607f4f, 0x14ba1736 } }, { { 0x553242b1, 0xec9f7c6, 0xd800ae2b, 0x4c65097b, 0x5caa2f0e, 0x57d751a7, 0x1707df27, 0xd85e64f7, 0x68522233, 0x905cee43, 0xa60f11c0, 0xdfac9f75 }, { 0x6d012230, 0xb8db81fc, 0xb87606f6, 0xc40b1ac1, 0x664c86c8, 0x7c8e0594, 0x92a4a0f9, 0xe75d39e0, 0x8a28065e, 0x66b08c8, 0xd2fff2e, 0xbe2b76f1 }, { 0x94df234e, 0x7c6a63e2, 0x683910b0, 0x5766355c, 0xbc8aafc0, 0x9fcbcaa9, 0x584261d3, 0x36bf912, 0xf45df2c6, 0x5ee73f67, 0x6d832212, 0xd4723a67 } }, { { 0x747792fc, 0xa16c85ec, 0x68a18b3e, 0xb42f15f4, 0xc05d37d8, 0xc1aa6d5, 0x60b2944a, 0xe73be8fc, 0x9c00f6a, 0xe8b199b2, 0xdfa218c4, 0x2aa5a659 }, { 0x16d52890, 0xd403135d, 0x752cc0da, 0x511b243a, 0x9ef0dea, 0x6b720820, 0x24de26ea, 0xc8e30305, 0x8d07180, 0xb5c118b1, 0x49bd114d, 0xa3487a87 }, { 0x2414f356, 0x4ac0a417, 0x248a03f7, 0x3fd1145c, 0xc3a9bf3, 0xc1fcd39e, 0x1f9f76e2, 0xf8bb8b6e, 0xb6c31648, 0xad640c31, 0x9ea4334d, 0x19b64c1f } }, { { 0xdf51ede3, 0xfa387f9e, 0xc2ca328, 0xb4acce46, 0x62a0ef81, 0xddd56d74, 0x3c6943b1, 0x6f8fc96d, 0xa11e53f, 0x71d38f4, 0x5494f97d, 0x45be39dd }, { 0x21b15d7d, 0xaee37044, 0xe7a1e5fb, 0x91c60c4a, 0x3497d4be, 0xa1ba2db, 0xf49612f4, 0xd184ab53, 0xb1a1c3a, 0x944167c0, 0x3c12b01, 0xe3a88a0f }, { 0x81b76be6, 0x3b0eee93, 0x47e46bd, 0x9d927603, 0xe816ecfb, 0x751e1866, 0xbd8c1314, 0x9f3a0edc, 0x9f7db673, 0xdc227a71, 0x480650f4, 0xf16127de } }, { { 0x43b30ee4, 0x65f7bee6, 0xdb991bf1, 0x5963635e, 0x51896ad4, 0x2af122d2, 0x57337b19, 0xc12f0494, 0xdf7a4287, 0x891c0140, 0xd2339e65, 0xe1657b22 }, { 0xe9e7a88a, 0xd7ae5138, 0x95b3f597, 0xfb05ad1e, 0x1be31292, 0xf549b43b, 0x78c3d7b2, 0xe752e1db, 0x9d88aad0, 0xeb8ac5b8, 0x3a1fb73e, 0x6e17edae }, { 0x22428d8a, 0xb688f4d4, 0x26980b01, 0xe2ba3515, 0xfa9e3d66, 0x3d6af54a, 0xa4add52c, 0xf7421d2, 0xe101a059, 0x93550f74, 0x201c76f5, 0xd013e468 } }, { { 0x334dc994, 0xa491e7b3, 0x993a427d, 0x51691a14, 0xa5f39972, 0xa2af2e67, 0x77eaa9ca, 0x4906a530, 0x299e3c12, 0xfb2c5adc, 0x1b347bcc, 0x77e9c2ef }, { 0x15e9da5a, 0xbf428c16, 0xa5034faf, 0x59a503c9, 0xcb55ea2d, 0x59a5781b, 0x343b5132, 0x66b2981b, 0x9e04f64c, 0x6da897ac, 0xa8917349, 0xfdbdb950 }, { 0xbc46e911, 0xc243c581, 0xa62fc704, 0xb9f4fc70, 0xc3758bfe, 0xf3400696, 0xd1a05c68, 0xdbd003bc, 0x440417b1, 0xca84ebe7, 0x91f806b9, 0xa0e95311 } }, { { 0x103b9f95, 0x540c95b1, 0x5705abfa, 0x1d8413c1, 0x8824c12a, 0xe8c93827, 0xd5445e5f, 0x42ca51f8, 0xf7b2489c, 0x50e565b4, 0x129acaa5, 0xff97117b }, { 0x785562fe, 0x5418e08d, 0x6e13079b, 0x95ce7a95, 0x746f65d8, 0x8ac422e9, 0xcc5b7f88, 0x64cca48d, 0x912a1529, 0x4ce82839, 0xef53dd5a, 0x37052f96 }, { 0xeace01c1, 0xf51529b0, 0x3a3837e0, 0x5d3ee595, 0x85ad45c, 0x319b2507, 0x80d60945, 0x613242c1, 0x1bbc666f, 0x9bb42a5c, 0x51418d5f, 0x8fa8e01e } }, { { 0xd631317d, 0xd9411e7c, 0xda9b943b, 0xb38c16a2, 0xfc70c3c9, 0x2a9be077, 0x895735f, 0x87d9f452, 0x6ebb06f9, 0x47c72e61, 0x9e07ff3c, 0xeb8fdef6 }, { 0xd095386d, 0xdb32e10, 0xa450407a, 0xe1258e3f, 0x5aadbe23, 0x7ec49269, 0xbbd76e11, 0x111ef8b1, 0x93b1460f, 0x38313fef, 0x922b8d8c, 0x5fe71857 }, { 0x2a28d891, 0xac7e4338, 0x5638d54b, 0xa07c1add, 0xeda73c3e, 0xf4fbd1f6, 0xb258b5d0, 0x6851bfe8, 0xad262b7f, 0x482fb407, 0xd476b624, 0x52fa3bd6 } }, { { 0xbf5808dc, 0xaa81a79d, 0xb318db10, 0x48edfdf, 0x2ae58d0a, 0xaa6c07f5, 0xcb6a9664, 0x547685c2, 0x254d9b11, 0xe01df20a, 0x3e88aacd, 0x950c29ca }, { 0x946f3eb3, 0x6e6b9a66, 0x353d7cc5, 0xa1a03251, 0x15f04d50, 0x506e084e, 0x7ae6ff3f, 0xaa15671, 0x46725b9b, 0x3b1e56fe, 0xe0cc3ba3, 0x925f5d7b }, { 0x64e4658f, 0xf60b9dbd, 0x940d3bf5, 0x42434480, 0x5834247, 0xea09e83d, 0xbbad8d63, 0x48ac20e2, 0xf4d23b31, 0x3379e140, 0x5988d559, 0x68cfe8f6 } }, { { 0x7e95ed75, 0x235a6844, 0x2f092771, 0xc7e415bb, 0x72d02b55, 0xf035eaba, 0xd2136d9a, 0x536dbd40, 0xfb264cac, 0x1a0e2081, 0xeff60955, 0x2c0d6653 }, { 0x1cfb30c5, 0x13d8cbdd, 0xc738dfc8, 0x99d6ff6c, 0x1dc227b, 0x7b585cc7, 0x74d72923, 0x833d71ac, 0x27ea03f2, 0x43dc8038, 0x20e2de59, 0x318cb9ed }, { 0xb752f6a5, 0xf7fb9589, 0xf349f08b, 0x17c2bd52, 0x4f6c70c6, 0x9b0040aa, 0xa29b3bd3, 0xc4ad99f4, 0x2bf38e0a, 0x6bcceaf9, 0x26657a9c, 0xf79eb6e2 } } }, { { { 0xb083bcc1, 0x7b50ad5a, 0x92ba9916, 0xe1468262, 0xb4644f0f, 0x37e336c2, 0xccf63998, 0x3815ae89, 0xb34c27ab, 0xc9ceca60, 0x3c6eb04b, 0xd310540c }, { 0xed4f60b6, 0x9221227b, 0x1e511bb4, 0xa058f874, 0x70339c27, 0x11a26c9, 0x8d7d9b31, 0xc5beaafa, 0x915967dc, 0x51d4ff1f, 0x7ce378f4, 0xfb581daa }, { 0xb9ac9fda, 0xf7e43590, 0xcbbc1c35, 0xac61b08d, 0x2701913a, 0xc33e7c60, 0xc687b56c, 0xf31d15bd, 0xcb552fa0, 0xddfadc0a, 0xb1d1df21, 0x419242a1 } }, { { 0x1fef68ba, 0x2f2496fc, 0xc8698805, 0x145841b0, 0x5b73f41b, 0x62223587, 0x7b474b16, 0x68f2cd4, 0xcd2fb126, 0xc8413595, 0x1920d398, 0xe9c629cb }, { 0x3beb2327, 0x87a01cfc, 0xe51228af, 0x8cfc5143, 0x1e7900f2, 0x19e1262b, 0xd3337477, 0x80d0f1ac, 0x432ed4ce, 0xebb2018e, 0x6f8c104d, 0x840dada1 }, { 0x70eac2c2, 0x186685ae, 0x6dee8024, 0x170c86b0, 0xd5ebdb5, 0x87f838d6, 0x5bd1c2b6, 0xfa96b5ae, 0x9dcd13ae, 0x46d10971, 0xf15bf267, 0x8019052d } }, { { 0x88214eb0, 0x398bc90c, 0x2c2aa96a, 0x6d94e6e, 0xc543acea, 0xd2278323, 0x7fd5555d, 0x3dfdb892, 0xc5fc45f4, 0x5ace3613, 0xe0b18843, 0xb8850f7a }, { 0xe35eb350, 0xf2c79d99, 0x743b06b8, 0xa7a1157b, 0x866b0ded, 0x85f77a59, 0x14aca6bd, 0x3421223e, 0x5de90046, 0x802ca074, 0x4ad11ef5, 0x1b27f4e1 }, { 0xd7ff23d3, 0xa5ff13f, 0x8db17608, 0x4f49c23e, 0x41bb2572, 0x6853225c, 0x73f53642, 0xcd18b0fb, 0xff6e1193, 0x3b38d8de, 0x1e6eebd8, 0xafd7669b } }, { { 0x69518950, 0xa7d1cc4a, 0x5b11a288, 0x4de3e0a8, 0x5d81e258, 0xcd55d59f, 0x4092cd, 0x53565644, 0x13bda8a7, 0x719b5a28, 0x940583c5, 0x2c4afdcf }, { 0xcef119b8, 0xbb4e5fe5, 0x95290d22, 0xc943d8a2, 0x3c5e019e, 0xc956a653, 0x75d5a7af, 0x4f472e36, 0xf1b7ab2a, 0xa6801758, 0x825b75f9, 0xc77f1b4 }, { 0x89061a6a, 0x56795dc9, 0x3650041c, 0x64a20f14, 0x9d3bf35b, 0xfb88bfc, 0x4cc41c2d, 0xede1af5f, 0x1094ce9, 0xd7da4604, 0x559f2e34, 0xf1d2f26d } }, { { 0x8d076e08, 0xe7e978b4, 0xba26f5b5, 0x69cce1b, 0xb28fc989, 0x52c70dad, 0x900fff57, 0xe4cbac14, 0x8b770a8, 0xc0eb7177, 0x1e1c0892, 0xfb4921ec }, { 0xf5485f48, 0x79bf242f, 0x53a9b421, 0xea12d27a, 0xa6051cdb, 0xa8138e8c, 0xb7404f28, 0x21995d7e, 0x44b51cd6, 0xc628f268, 0xd24f42a6, 0x7265a7ff }, { 0x342e0ebe, 0xea8a789c, 0xc1da4756, 0xedbb6012, 0x8774d300, 0xf6793f18, 0x634e753d, 0xaaf583c2, 0xfc8e4163, 0x5b711963, 0x2b068a62, 0x4ea0dc1e } }, { { 0xd188878c, 0x9bc0009b, 0x6befb7e7, 0xfdbe5f3f, 0xb824440c, 0xf4b5655a, 0xf50d64f0, 0xb1521283, 0x67f0595e, 0x3e0225f4, 0x6a6e84ff, 0x8086382e }, { 0x904445a7, 0x87c8c4c0, 0x6750fa45, 0x15df7138, 0x4f797328, 0xb74927c, 0x9c82bcfc, 0x184cfcfb, 0x60c2f196, 0x8aea9a1f, 0x6986eb12, 0x954ba566 }, { 0x16cf17cb, 0xf862c568, 0xc3315458, 0xef721e5e, 0xf93bcd99, 0x4aafae8e, 0x12dffb80, 0x3b9713ef, 0xe7691ef8, 0x5e3e34cd, 0x233a9282, 0x68430e48 } }, { { 0xdb4bb5eb, 0xcf2e41c3, 0x70bbb26, 0xd1cbff07, 0x3bb9bac9, 0x71545deb, 0x77823f8c, 0x763d7bc5, 0x715187c, 0x598caba0, 0x2303b332, 0x9fe7f624 }, { 0xb1a71d01, 0x8ea9c7c4, 0xf65048c1, 0xac0417ce, 0x64c994e0, 0x947ee3b8, 0x3861777a, 0xc7388e70, 0xf299c072, 0x4bf8cbac, 0x678a6099, 0xffe08049 }, { 0xff6b26c2, 0x53f455b9, 0xbf93294a, 0xafca88b9, 0x905b6384, 0xed8be7ff, 0x23b3cda4, 0x831276a9, 0x3a849824, 0x7692e5a6, 0xe6d7fccc, 0x3f0ba6e8 } }, { { 0x477a7db4, 0x3e5e85d0, 0xbcc14c16, 0x5b4f80f9, 0x6611b924, 0x8693a0a3, 0xb7d95c27, 0x22757236, 0xff2904ab, 0xb11a6907, 0x8514cdf5, 0x693939e }, { 0xe4279544, 0x92a4870e, 0xb84e939, 0xc05a4cc2, 0x98ec0e6d, 0xc2648023, 0x593b3dab, 0x34a47ba0, 0x31616990, 0x9dbe052b, 0xb662bde3, 0x3b4a2b4c }, { 0xdfe4708b, 0x2a1c0cb5, 0x88974925, 0xc9c67046, 0x12a9c6f, 0x7354f333, 0x78b58fa4, 0x2631abc6, 0xb42efc2b, 0x253ae608, 0xc8bd7d5d, 0xa0640e27 } }, { { 0x8f898ead, 0xb39a864f, 0x99f36c4c, 0x83d297ea, 0x756301cb, 0x811a2c84, 0x367abefd, 0x1f74fc1, 0xa9030732, 0x8ec8a61a, 0x73e21291, 0x14f2a937 }, { 0x781be103, 0x4ade3f03, 0x2db25840, 0x2ba34eab, 0xcf4b4fff, 0xf648b2d1, 0xbbbe59cf, 0x4efeec3e, 0x64c68504, 0xef1e7408, 0x6efac3fe, 0xa1a0c3b1 }, { 0xb03131e4, 0x17d6c591, 0xf87dad61, 0x7eaf2376, 0xc594cbef, 0x2059d8ef, 0xb794f869, 0x301d4e90, 0x283f229f, 0x70df6e8e, 0x627e2617, 0x7e539e92 } }, { { 0x81274186, 0xe499af36, 0x588e2a5e, 0xa4aa83fb, 0xa86d4473, 0x7d528d55, 0xb8bca69f, 0x4304622e, 0xa992de93, 0x965ec23e, 0x5624035a, 0x1b08a4df }, { 0xe71a2295, 0xe668fc9, 0x37c87667, 0xaf5328d1, 0xca31af63, 0x88c9822f, 0x2d0c50c9, 0xa418d995, 0xb7bc0708, 0xf5a81171, 0x8423f430, 0x8b15ef95 }, { 0x1db40256, 0xe6253f73, 0xdd00a21e, 0x1c3ced3e, 0x609d664d, 0xa8b90f72, 0x90a6b78b, 0x07fd9a, 0x17342fd2, 0x20a202b4, 0xdc1e831b, 0xc1b03be9 } }, { { 0x5a69409b, 0xdbad0cfb, 0x471ecee, 0xf2ed57cd, 0x7fb3009f, 0xb46032c3, 0x6b8628e6, 0x9bf3ccc2, 0x3d4175a0, 0x3934a2b6, 0x8d1c4b4e, 0x41d02629 }, { 0x6ac8338d, 0xc17b9aba, 0xf6329f3c, 0xd7b5006, 0x719eea02, 0x24b7817f, 0xb2cdfe20, 0xa32970c8, 0xede1df4b, 0xe2767575, 0x98c7d81b, 0xc1b6501b }, { 0x6e78f030, 0x96968810, 0x951ae55c, 0x496043de, 0xfc542549, 0x3736ce82, 0x63036664, 0xe3843169, 0x555d6b2a, 0x9333362f, 0xcb1f7402, 0x2174ed32 } }, { { 0x17e7cb7c, 0x35401973, 0x3e78abab, 0x339a3144, 0xbd3c036f, 0x58f441e4, 0x7cc13c24, 0x1ba48df2, 0x489a26bc, 0x70b78a9, 0x62781ac2, 0x5fce2be0 }, { 0x4d2b124b, 0x9de488bd, 0x8092f7c0, 0xec2bda31, 0xad2d664d, 0x990a402d, 0xd2fda8ed, 0x6be23c28, 0x4e79e5e4, 0xc40bd89, 0x8143b4e1, 0x653080e4 }, { 0x61f1f478, 0x279a5983, 0x6841d35e, 0x24f4ed0a, 0xd7a3eb1a, 0x2ed7b260, 0x9b7ab0e6, 0x5626c003, 0xd09c160c, 0xc46b0ad0, 0xaf379647, 0xec9126b3 } }, { { 0x64dbdf4, 0x15362f5, 0x472d802e, 0xfa42df46, 0x11ed1f51, 0x4890829b, 0xb5bbf7ad, 0xb2361036, 0xbcf67c74, 0x408b767f, 0x11b470a5, 0x6cb3748f }, { 0xf8f225d, 0xc19d66b, 0xa7d23f97, 0xecac950b, 0x2c2480f5, 0x24582320, 0x60a71dec, 0x2e73083f, 0x5ef6e11b, 0x9989d71f, 0xa47f6b7b, 0xb1ff98e0 }, { 0x9f6ee1ff, 0x113878d4, 0x1a980939, 0x68ff95c2, 0xb3f907fa, 0x6d1f254f, 0x968ffb1f, 0xd1e0295f, 0xa9f6b67b, 0xe97a767f, 0xa4fa4cde, 0x3c2d94de } }, { { 0x50f5d841, 0xba4eb09d, 0xd72a1089, 0x6a8ab3d0, 0x6582cda8, 0x4bcdbf69, 0x635cdb60, 0x3e697480, 0x84366f07, 0xb3e177ea, 0x8a27098d, 0x1890799b }, { 0x26fc3e56, 0x2bdd5e23, 0x69d66ae8, 0x2c246882, 0xe3ab1b, 0x3c8f670a, 0xf066ffc6, 0xdd6ea1a5, 0xb6b99a0a, 0x42a0d4da, 0x5d3140e5, 0x25c7c10d }, { 0x5b38379f, 0xa634c562, 0x26d5b782, 0xd77054c3, 0x4c02e9fe, 0x82e7575, 0x6c926e67, 0x2f9983c5, 0x89010675, 0xba2f2bc4, 0x3f0062da, 0xf8e67310 } }, { { 0xc403bfde, 0x5bc7827d, 0x89c453ac, 0xa747f17d, 0xcae95480, 0xe7d010ca, 0xb7841ab1, 0xa98373b5, 0x1ee35cf, 0x5ae71440, 0x3a426760, 0x67d68ac6 }, { 0x4c0d731, 0xbfdd2a8c, 0x46905ac7, 0x239c2b07, 0xe1994b3d, 0xd93671e2, 0x97c0f514, 0xcecb20eb, 0x34d6f99d, 0xb98b83a8, 0xd6e2fa57, 0x40790ccc }, { 0x86ef24ed, 0xa3e5fb26, 0xaf3862a4, 0x73c0ba30, 0x6a0b2cff, 0xb9d0718f, 0xe08fe565, 0xf443a44e, 0x867c5bbf, 0x8b46a84a, 0x725e0cca, 0x72ae5cec } } }, { { { 0xcb0d5846, 0x4693a653, 0x2fd7918, 0x20fd291f, 0xc2f69181, 0xad1240de, 0x483cedfd, 0xad612f58, 0x5c608d49, 0x89a842b2, 0xd1ce8f78, 0x220081d7 }, { 0x1e5b852b, 0x78527b94, 0xb33beb42, 0x117cc0f6, 0xb7ac42cd, 0x520eb9d0, 0xdeaa04a4, 0x735c9254, 0xc9a850f8, 0x19bdaa3, 0x288d2648, 0x5afa3c77 }, { 0x79ff9503, 0x9cfbfb4, 0x421889ba, 0xc6d34099, 0xbb0e09df, 0xbd351cd6, 0xb66a5597, 0xe051c6bf, 0xb129291d, 0x8a29ab30, 0x7e647a72, 0xc685d40f } }, { { 0xccc5d955, 0x581463ca, 0x49bf10a8, 0x7307f3ea, 0x513a892d, 0x29bfd51, 0x969731af, 0x4ea0de48, 0x3b991006, 0xf985bbd3, 0x5fcf9b8b, 0x887fa5be }, { 0xae68c771, 0xd6110b6f, 0x21162590, 0x677fe40c, 0x80d289f3, 0x37dbbf88, 0xe613264, 0x40c07a0a, 0xe6e9340, 0xd2ff1d08, 0x8aa2288f, 0xbba7ecba }, { 0x6cc2f84d, 0xebf075d7, 0xaa5cc44c, 0xc7014471, 0x7ac42b27, 0x6a2b7789, 0x952599a9, 0x1894bd41, 0x9b119bfe, 0x49410284, 0xce2c7834, 0x9c22313a } }, { { 0x443ea1a9, 0x3356cd88, 0x991c6d69, 0x407bae67, 0x8c268254, 0xfce9239c, 0xa53f63d6, 0x1769f2ea, 0xc739874b, 0x64b8f4ce, 0xd37d4b04, 0x6efd0f42 }, { 0xd08a9df5, 0x3cadb42d, 0x1fd14ef5, 0x15c53bf6, 0x1a96595, 0x6c5d348a, 0x251e7b51, 0xc08fcf96, 0x65201a58, 0x12398725, 0x5d1a42e, 0xe072b965 }, { 0xca495c28, 0x3c303156, 0x2939fac5, 0x216e0211, 0xe7dd9cd8, 0x364f8ff4, 0xabbfb070, 0xaa3e5162, 0xc4d1e438, 0x1d517350, 0x38834cfe, 0x3a037e04 } }, { { 0xcbd5adf7, 0xdd266650, 0x1b52562f, 0x4aaabb5, 0x59777f94, 0x1b4e5032, 0x1cb9605a, 0x2e838c5d, 0x7e3c0b66, 0xbe69a696, 0x49b2f404, 0x620cc727 }, { 0x696279d4, 0x5cd5e21d, 0x433a4d9, 0x9355d7a2, 0xc64fc81, 0x6c734678, 0x72469be8, 0x9ee6fee2, 0x4cef1a08, 0xcc322144, 0xbe86f17c, 0x77d6384d }, { 0xf29c28b7, 0x5a4d630d, 0xdb53c046, 0x45e3684, 0xa68055a7, 0x1c28b721, 0xb9985d9c, 0x6776cae6, 0xb610f65d, 0xb379b723, 0x53090280, 0xd1820fad } }, { { 0x7ec73f71, 0x47ce8981, 0x93b18a8b, 0xf2b3254e, 0x905721d1, 0x665dd33b, 0xa786ecf, 0xd7d0f736, 0xfb86c43e, 0xe3097db3, 0x6d79b3ec, 0x3e4f269 }, { 0x209b1e83, 0x43d2c1ae, 0x95e8dcc4, 0xd3be1828, 0x3fc4d660, 0xb2552136, 0xa12e8723, 0x9902864d, 0x56678e84, 0x4e80ca8d, 0x46b864a3, 0xe3c77b28 }, { 0xfadc9b81, 0xb12a3c3, 0xc1b9de17, 0x26c30401, 0x9c78f062, 0x46ed3914, 0x9db2d0f8, 0x9f9fd841, 0x8b2379db, 0x4024831a, 0x226d25cd, 0x8d358e46 } }, { { 0x1110dd10, 0x9c69c47, 0x689babd1, 0xb47b903a, 0x7b14ed87, 0x5430e9a, 0x762388da, 0xbd06f101, 0xa3677b64, 0xc62c3a31, 0xf114d40d, 0x8ea70cfd }, { 0x6cf86c3f, 0x4780aa26, 0x5e714645, 0x6b4c5bd1, 0xfdb3bd77, 0x91523ce5, 0xda783b10, 0xdb4f53ae, 0x49b9aba2, 0x6cabc662, 0x4d53e6fb, 0x113732fc }, { 0xafbb4fac, 0xd4640b64, 0x7fad4fce, 0x7f267679, 0x8b6d9dab, 0xd1bdbd6d, 0x6b22cbe6, 0x31104f1b, 0x8a974d59, 0xef2ef241, 0x1b393e31, 0x4d40623a } }, { { 0xf71d0287, 0xddeb9307, 0x9f1d8913, 0x7a864701, 0xb655cc1f, 0x54c4f6d6, 0xa29c5af1, 0x3699baa9, 0x350010c2, 0xaeb42e54, 0x21227dc3, 0xbf9b0ba7 }, { 0xa06fb44b, 0xd9030189, 0xd7786c3a, 0x41a975a7, 0x4b20d99a, 0x4e8799d9, 0xaaac1116, 0xd78c39f3, 0x45871a23, 0x3c929a66, 0x84dbe8fe, 0x34859b0d }, { 0xd1d90332, 0x19395db1, 0xb24aa88d, 0x68510ea, 0x2864e2b9, 0x61ec9d44, 0x11db512c, 0x37477a9, 0x1ae1ef36, 0xa1eb655b, 0x5da4e574, 0xf8806dc9 } }, { { 0x6357c483, 0x6656afa8, 0x77b92f06, 0x9dd7dea6, 0xd4e65bb7, 0xf3316ac5, 0xfe1d344, 0xf130f457, 0x82db8d4e, 0x1211da33, 0x36d0fc4e, 0x2f4fb78d }, { 0xf682fc50, 0x15f27348, 0x82e7d1ba, 0x26ae3476, 0x4efaf82a, 0xdd0bf7d6, 0xbf08f62e, 0x17bff450, 0xdd3667d5, 0x1a412d0a, 0xf3f48281, 0xfacbe375 }, { 0x98c5a1c9, 0x9e1fa845, 0x6c01d312, 0x89bae71c, 0x57c8b807, 0xe3413b9a, 0xe15f5322, 0x19931d79, 0x7206c84d, 0x6c7ce92e, 0x32eaf24d, 0x7006aad3 } }, { { 0x694f266e, 0x8b0f403, 0x9f09efc0, 0x11cd47fc, 0xf1a845d9, 0x4402a0f8, 0x9063290a, 0xbb2df72, 0x117bbdf3, 0xf31d569a, 0x79d7c8dd, 0xbd3d3304 }, { 0x1d0b91db, 0x70b0950b, 0x38c7224d, 0x3a5db747, 0xc5078296, 0xaa87259b, 0x858dddf8, 0x8ba490d4, 0x1422b4c1, 0x82989eed, 0x3799fd7b, 0x51c25d2a }, { 0x2b5dbfd4, 0x927fd411, 0x2bef3ac0, 0x29d6594f, 0x930f27e9, 0x49e0dc9a, 0x8ef0ea61, 0xed5ab762, 0x842e036d, 0x9519308c, 0x1ab5d6c1, 0x97311236 } }, { { 0xadf9bc2, 0xe45d7c0d, 0x9305fe52, 0x6b360c1d, 0xeb33768a, 0x38dc4d44, 0x4881ee07, 0xd853665b, 0xe72f01d4, 0x9dc8df8a, 0x4e7d59c8, 0x684a644d }, { 0x3d41ee68, 0x4e8949c, 0x31fbf11f, 0xa666796f, 0x4d205658, 0xdfdfe555, 0x10fc1932, 0xe73b2745, 0x5432bdf7, 0x1ccf3ca4, 0xd213df2f, 0xbfeeec }, { 0x984cfe22, 0xa15d4003, 0xfe02bff2, 0xde5dc186, 0x89318a37, 0xf6558c2b, 0x94cfa7ed, 0x66ab1c68, 0x5ce0f0d4, 0x4413eaf, 0xde37205, 0x8849b446 } }, { { 0xa9b31437, 0xac9f1304, 0x91d6a39a, 0x2afa094e, 0x5d827378, 0xac30ff0c, 0x88ea1b54, 0x7722cb9b, 0x81d07a14, 0x5b2b2443, 0x8a647fb4, 0xde67417b }, { 0xb3df3873, 0xf9015196, 0xe95ab855, 0x5f904c64, 0x65dc326, 0x17ae1b29, 0x857f5fa4, 0xbba43bd1, 0xe8f8cc3d, 0xa20dd213, 0x4d570ad8, 0xb753e2b1 }, { 0x45bcc367, 0x179a01cc, 0x7907c309, 0x4b5ad8f5, 0x6394cdbc, 0x619eb010, 0xa3e2ccb8, 0x99de6e23, 0x9a60640f, 0x9882b3cb, 0x39e665, 0xb5329564 } }, { { 0x59588929, 0x5ddc65c8, 0xe1b5a369, 0x32b16a9a, 0x70366b8a, 0x38c1b1fe, 0x33f34dc5, 0x4399d41b, 0x33933dab, 0x67e11aba, 0xfbaa939a, 0x2105f9a5 }, { 0x4e8b20f5, 0xe0f9ac5, 0x7fa2deb1, 0xe4b039c8, 0xf57eea4b, 0x44f25ba3, 0x15bfbe6, 0x86b842b2, 0xe8c50ad1, 0x88bf1b56, 0x6c859d35, 0xa59eb5b5 }, { 0x1fa9271d, 0xa2c31f5d, 0x4de449, 0x9d03d6c7, 0x1afb2296, 0x2a08f2bf, 0xa6fa112e, 0x8e5e8f2f, 0x10989a1a, 0x190a1e6e, 0xa20033b7, 0xfbfd43ec } }, { { 0x6e0d9f64, 0x4fe31761, 0x1f6b7868, 0xf269912, 0x178532dd, 0x184ed58, 0xacbf8952, 0x612df962, 0x46c3a538, 0xa9d45397, 0x4318f12b, 0x5f1a12e4 }, { 0x60c3d51b, 0xffaf596d, 0x4e7e9b77, 0xfc54b4a0, 0x50aed76b, 0x98d8963f, 0xd65f25bf, 0x86778ac4, 0x115c036e, 0x5a04b4d9, 0x2b2677ff, 0x101a912b }, { 0xfe9a4fa5, 0xdaf2f040, 0xa3810e29, 0xbca66839, 0x6aafdc82, 0x55239284, 0xd468a82c, 0x623c3b74, 0xf27afbf9, 0x59f2001d, 0x4e409153, 0x55b7c6c5 } }, { { 0x63ca2d5, 0x1df92b78, 0xca504306, 0xf8998a1e, 0xdcaf5866, 0x8721e315, 0xb6039779, 0x394860c1, 0x1feda03c, 0x591b65d8, 0x657ba68f, 0x8f7242d }, { 0x97aea2a1, 0xc4aee70d, 0x54de696a, 0x1c0d314f, 0xcd2d02f3, 0x277bd7e5, 0x2b90e2b6, 0xe956f3ee, 0x2a16c162, 0x59372d1b, 0x2278a0d5, 0x69830764 }, { 0x86decf8e, 0xba688446, 0x596459e3, 0xc590e5b1, 0xbf859354, 0x6a13e05f, 0xe9a545da, 0x9ffa8636, 0xc007be3c, 0x695dc3fc, 0x96f20dec, 0x830411a0 } }, { { 0x74cbb8c5, 0xc67684f0, 0x8a0285b4, 0xfd2551fb, 0x6b47d54d, 0xce2fdbd8, 0xc8216256, 0x254f10c8, 0xb63f827e, 0x2c74f93b, 0x27118ec7, 0x18ad406f }, { 0x5e1cce32, 0xb65ce969, 0xeab1f98b, 0xda09bfae, 0xcc464d63, 0xb5ccbb08, 0x1a56561b, 0x37b02c4d, 0xbf7780b4, 0xb02f7850, 0x9e895a19, 0xba6fbf04 }, { 0x4465dd5e, 0x948f794c, 0x50ee87ec, 0x98ab8c78, 0x5b72daa8, 0x59185893, 0x1dce32f0, 0xbc25f64a, 0xfee4d1a7, 0xa3092927, 0x810434bd, 0x74e125d8 } } }, { { { 0x8dbebaa7, 0xbea8990d, 0x8cae0544, 0x6244590d, 0xe658751e, 0xbe1a89b1, 0x1cc48390, 0xdf127a85, 0x68122b6, 0x8a9ae432, 0x54d09269, 0xf3ffcc16 }, { 0x7c293d5e, 0xdf1167c0, 0x16b1d49c, 0xbed6a9f8, 0x19a08fc5, 0x1f3ea620, 0x7fd220aa, 0x9b0bf171, 0x53a1cb8e, 0x21ef913, 0x94a3b9d5, 0x9115dbda }, { 0x82802ce8, 0x4f356846, 0xaa5d0a04, 0xc5dd6db5, 0xe5398ba3, 0xa9536f0d, 0xc0c652da, 0x20605ca8, 0x406a6420, 0x37d8e36a, 0x8bbc08cd, 0x4a6eb1b1 } }, { { 0xb18ec3bb, 0xf89cbc37, 0x24a40c94, 0x79738a1b, 0xbd8996d3, 0x44e3a576, 0x663af0f2, 0xe24ad32b, 0xebbbd0f5, 0xc18cab21, 0x495fb0fc, 0x453bf618 }, { 0x7b8c0a8c, 0x9798d8fd, 0xbc84f663, 0xde457640, 0xb26f597f, 0xea345b57, 0x3dcbf704, 0x10067a75, 0x6a41b458, 0x455c445b, 0x39041886, 0xc4a815ef }, { 0xe403b35e, 0x514308fc, 0x3289cae5, 0x221b2cc7, 0xc858cec8, 0x1712bbb2, 0x56fec491, 0x3384cedb, 0x89e97e70, 0x71170ed4, 0x50bc0dcf, 0x25eb478b } }, { { 0x78832330, 0xe7b6b6f7, 0xda05ae88, 0x562b8437, 0x9608c6d9, 0x608057ca, 0xdf968071, 0x43cfb255, 0x6db30637, 0x3a07d7f5, 0x2e412abf, 0xf22ab42 }, { 0x79bcc1b9, 0x58b0753a, 0xcd2d7bfe, 0x2f047540, 0xf7d920bd, 0xb43c2699, 0xd40d2a52, 0x5348c55e, 0x1d06a4b8, 0xf4878862, 0x3ffde942, 0xf6cd651a }, { 0x788c5b57, 0x6191f4c5, 0x899d3ee8, 0x9613682d, 0x43581fb2, 0x446f49d5, 0x1e052093, 0xede4a631, 0xade085a0, 0xf95dde3b, 0x365ba477, 0x5d7e25c7 } }, { { 0xb5b4fe1d, 0xd878e6ad, 0xfb64669f, 0x1d92e157, 0xffb3d469, 0x77787c4d, 0xc0934d48, 0x86375252, 0xeaf723da, 0x8e4719f1, 0x6097a2c7, 0x9344f92b }, { 0xf10a63df, 0xd7e50184, 0x2b22b8a7, 0x61fc1c77, 0x81d58268, 0x93c43a0e, 0xe99ec1b4, 0x1dadfa3c, 0xb3e22fb7, 0xecc203fb, 0xffd5a04f, 0x242d8a30 }, { 0x573658de, 0x3983b328, 0x582748f2, 0x45552e1e, 0xc8321d16, 0x82bb72d3, 0xbe18539a, 0x6c9f0e19, 0xb09aa160, 0xb8a4c314, 0xe2cc61a1, 0x32eb7b4a } }, { { 0xfa0adae0, 0xc08a2ac0, 0x653d8677, 0xb4aed594, 0x5bc05cdc, 0x4f27ff0f, 0xb4d5bf13, 0x4f9c4b15, 0xa6417589, 0xf7aee6dc, 0x5f0c1243, 0x1165a82d }, { 0x107a838d, 0x3d73352c, 0x7b508f47, 0x430f0b52, 0x3a78db4, 0x39f77cff, 0xd5eb9494, 0xa3f068ba, 0xf7391d93, 0x67d9a40f, 0x4b7f3624, 0xe8dd02c }, { 0xfd44fbbf, 0x6e09a950, 0xc97447ae, 0xa142d4f9, 0x32277c0, 0x45655279, 0x32e9e48a, 0x183d85ac, 0xc275e908, 0xd33cfea6, 0x3a0ae7fe, 0xdd690816 } }, { { 0x87a57a48, 0x4cb43cb, 0xa81b9b15, 0xe616acf9, 0x509b8805, 0x690a60af, 0xa7355d55, 0x9a63e04c, 0xaf11e3fe, 0x8e2c716f, 0x71b7a657, 0xb0b61667 }, { 0xfa03c6a4, 0x7f63d1ba, 0x5e2d2248, 0x40b5dabc, 0x1a6b55ff, 0xe4026959, 0x9a59286b, 0x4bf33020, 0x375f4d8a, 0x41a4c34, 0x6edbaf39, 0x4245dc8f }, { 0xf51aabc1, 0x3176ec7c, 0xd2555628, 0x25310187, 0xf4fa5c27, 0x70f490a2, 0x6624bf99, 0xca4f3f1d, 0x627de5a3, 0xb55874dc, 0xaefa80af, 0x195d2588 } }, { { 0xc0a1b49b, 0x40034749, 0xa4939864, 0xe4d80b9, 0x4e73efd, 0x2371f055, 0x830427d2, 0xc1d0aa8e, 0xab0854d3, 0x2d49264e, 0x6abc3fe2, 0xa13b58ce }, { 0x960cda43, 0xfe589d99, 0x143e4ee7, 0xfbbb0546, 0xdf14df93, 0x8df56455, 0x1ed71ae1, 0x6d595e3, 0x18e88829, 0x665fc048, 0xff8c59b5, 0x86ebc00e }, { 0xaf877ee7, 0x29b5d7e0, 0x564fa178, 0x36183f52, 0xe6dfc38e, 0x4ef5b55c, 0xa9819d58, 0xbf1df836, 0x20440d47, 0x23cdb4d8, 0x3ed046ae, 0xb1e4d1b1 } }, { { 0xd2351386, 0x23695866, 0xfa34f704, 0x33815208, 0x374ecda5, 0xc560b1d7, 0x8ee3f2b4, 0xdbdee752, 0x5b79b674, 0x562a3330, 0x9af9858a, 0x95679ecd }, { 0x24561ac8, 0xd37ce3d9, 0x4da5af14, 0xc2fa25bf, 0x7f439652, 0xd01e13cf, 0x46216540, 0xc73f3ce3, 0x25dfb999, 0x481f38a6, 0xab67eb87, 0xc6a9e4f7 }, { 0x1980b713, 0xc045842a, 0x30f8d8f9, 0x4d51007d, 0x977fc9c6, 0x257af6b2, 0x1b3f0851, 0xf983e46c, 0xf34e5be2, 0x8ca5368b, 0x82eccbc2, 0xb32b3138 } }, { { 0x48e0f666, 0xb3065690, 0x991f5af3, 0xdc5a371b, 0xbe04d2ee, 0x55a5ef22, 0x46c4289c, 0x792d2775, 0x2c81754b, 0xfcb00482, 0x6c63ac77, 0xb6883cd9 }, { 0xf1f52bdd, 0x44496e5a, 0x58059dda, 0x2359ccff, 0xf67e4ef2, 0xe51d5b44, 0x798af177, 0x8f5733c0, 0xdfc88269, 0x9a62e9a8, 0x4d5b120d, 0x57cb4b7a }, { 0x84418e9b, 0x3771881f, 0x8949ad52, 0x834e7b1e, 0x9384ea56, 0x6a0e27df, 0x66ef1028, 0x6985375f, 0x496284f7, 0x71cabe01, 0x8a2a5029, 0xba9f566c } }, { { 0x6265094d, 0xdc093a32, 0x17dd34eb, 0xe57b4389, 0x2489d8ab, 0x4288a4bc, 0xd7ed0072, 0x4ad91525, 0x98c9ea0b, 0xb956c6f1, 0xa18ec150, 0x56b1a20 }, { 0x9ebb2a84, 0xa0bfa57b, 0x67886ede, 0xb7a2c781, 0x15db7d27, 0x83849f2e, 0x8ecc5bc8, 0xe54c3551, 0x94640208, 0x153750c7, 0xf3000212, 0x6224c315 }, { 0x5f2ea101, 0xcc662b58, 0x3dfb135d, 0xd6e8c2fd, 0x6c5253ea, 0xaaff2b1f, 0x1d9e21bd, 0x2a2c63d4, 0x3a7b2092, 0x8f523233, 0x36313e2e, 0x2f104538 } }, { { 0x80e903d, 0x944e8b22, 0x1afe9ee9, 0x5a0ff61d, 0x38062618, 0xf77a7b6b, 0x2683eb8d, 0xf4bf43c0, 0xddb674c0, 0x873eb7b3, 0x49b74232, 0xcc58ed77 }, { 0x6b1e27b7, 0xdd738d74, 0xa2068d8, 0x99510d43, 0xc2a5ebbb, 0x952dab55, 0x19a962e0, 0xeced8317, 0xff5ee312, 0x7b112cc9, 0xa0c28d77, 0xb64970c4 }, { 0xe1ad93a1, 0xc833d940, 0xf2a2131c, 0xd98526d7, 0xbf32d0d2, 0x79d2cc9c, 0xabb4ca85, 0x1c6a2ec0, 0xfa11b948, 0xe286c373, 0x6d3ca544, 0xb3a6c47 } }, { { 0xc2f9623a, 0xee68a35, 0x16349704, 0xd4227950, 0xf5420e8b, 0x4a41e884, 0x19cad9c8, 0x9adc2df0, 0xac822574, 0x1e6cbd9, 0x35c48d11, 0x1d246e7a }, { 0x94360146, 0xde9aa440, 0x7ec4fb4b, 0x440d477e, 0x3fedbc70, 0x4d566225, 0x55d12082, 0x5c0112fe, 0xc7b70d6c, 0x52cd8933, 0xa4bc346c, 0xe5797071 }, { 0xaf4cd04b, 0x2059c2fd, 0xf070f968, 0x27e913ea, 0xc7a5ff04, 0x51fd5ce8, 0x4e595b8b, 0xecca08e8, 0x7ab3b50, 0xdd30c305, 0x4b98bb52, 0x2cb83447 } }, { { 0x5424d549, 0x9c9066b0, 0x2b17205a, 0xbe1d6f7c, 0x63a408eb, 0x9d78d38d, 0xbc77236b, 0xc83c7027, 0x9c9339b5, 0x1397a813, 0xcf913adc, 0xaca9b9f8 }, { 0x3d8e8d54, 0x377722c4, 0x2e547345, 0xcac03bfa, 0x1e555ea9, 0x302b8ea1, 0x55efede1, 0x7bb9f03e, 0x8ea405b7, 0x951fd657, 0xf4d7055e, 0x1834399d }, { 0xb365c403, 0xbeac1cbe, 0x2b6f66ca, 0x763b6e59, 0x218056be, 0xf11b84b, 0x1d95610e, 0x1bacf72b, 0xcb320313, 0xfcc614e4, 0xa96c7b03, 0x2b092616 } }, { { 0xa86ec0b4, 0x48abf521, 0xb23951a8, 0xca9e2362, 0x222d6276, 0xe3dfe369, 0x60032db6, 0x9d9a78e5, 0x7f575785, 0x85afd36d, 0x2b0113c8, 0x6be622d4 }, { 0x7f4f3e9a, 0x9259f4cf, 0x2e97b3a9, 0x892ed282, 0x22ca5321, 0xa849476d, 0x96aa706a, 0xa70c9b3b, 0x40fdeb1d, 0xb1f00804, 0x573949e6, 0x1c02e5e }, { 0x3b3f4dca, 0x5dba22c1, 0x71b34564, 0x2ffe5651, 0x46a04216, 0x49564c24, 0xe868f84c, 0xed6aee22, 0x66b3ab4, 0x6d3eebc1, 0xb88056b8, 0xbe544180 } }, { { 0xecf641a9, 0x6ca780c9, 0x2e41d16, 0xfe417eb3, 0x64205876, 0x8076807d, 0x5addd5d, 0xa4a4a3ec, 0xca8bfce1, 0x6453f608, 0x5645af90, 0x631e2040 }, { 0xc0d21f4e, 0xdf97160a, 0x387a11be, 0x237537bd, 0xd86fa129, 0xf1944f6e, 0xe23ef134, 0xfa352d07, 0xf2bbc643, 0x616bc7e9, 0x959340bc, 0xd8076529 }, { 0x39c4e170, 0x1d999bb6, 0x5f8c2c29, 0x2ffd2158, 0x5ad2a82d, 0x3342bafd, 0x9f56a789, 0x6a5823e2, 0xb17716ca, 0x45ad47db, 0xae9547eb, 0x5a59a37a } } }, { { { 0xcd151489, 0x20df5d7, 0x57b5f370, 0xf1930101, 0x49632ab1, 0xd43ead93, 0xb391ce64, 0xf6327193, 0xf17649e0, 0x1a964516, 0xda4d7f9b, 0xd8c8ae9a }, { 0xddb6f136, 0xf4380b53, 0xcee5fb7c, 0x1bbc06ee, 0x898450a4, 0xabeeec51, 0xf5527969, 0x3ed5f92d, 0x26b37afb, 0x58642dcb, 0xf911484b, 0x499bad6b }, { 0x85ed7e86, 0x20a6b9d6, 0x1c8ef502, 0x1b35531f, 0xa6608a84, 0x74e6d45c, 0xa5ad8263, 0x3f1e2611, 0x18763723, 0x153e01d3, 0xb863c7d8, 0xcf4284f6 } }, { { 0x8d958bfe, 0x5756c277, 0x2ac06b10, 0x471b150c, 0x7727a64e, 0xc51d93fc, 0x184677d, 0xa36b759a, 0xb1b7a78c, 0x8a24fb72, 0x8de2c468, 0xdc0bd58a }, { 0xd12053bc, 0x8627c11, 0x22817ce8, 0xa89e32e9, 0x4407cf1b, 0xe046dbe9, 0x857ed35e, 0xad39f236, 0xa4f2892f, 0x458d5f5d, 0xadb81695, 0xc0cf9f9a }, { 0x8b19c76f, 0xd3409717, 0xb6dd96c2, 0x9326dbd3, 0x59a501cf, 0xe46186ba, 0x9f0619a3, 0xa4c5a6e6, 0xf04cecf, 0x11d6f84b, 0xb3808a35, 0x89296804 } }, { { 0xfdb471dd, 0xe6a985a1, 0x18c3cb57, 0xba67a056, 0x2719f5bd, 0x402cb449, 0x8a785666, 0x9b3f5981, 0x96832a1b, 0x5cabee2f, 0x7d737cf3, 0x6822cd00 }, { 0x63466f82, 0x121508b1, 0x12eea16, 0x8ac18252, 0xe02417f, 0x70b8f82e, 0x7da4dcef, 0x4015e647, 0x99cc459e, 0xfa0641a9, 0xd99d6c1a, 0x534abf63 }, { 0xf3479fb3, 0x88f8bbcd, 0x12f8de39, 0xf62e712d, 0xcc5e156a, 0x8d6b2395, 0x23d0f9c0, 0x2968b66e, 0x476787cc, 0x25842228, 0xba2c342a, 0x899aec00 } }, { { 0xaec9b670, 0xcf095834, 0x7d044386, 0x111ef4ff, 0x842e05ab, 0xce18e15f, 0x777acbe2, 0x4234cfb2, 0x53e41bce, 0x7add46a2, 0xd83d1b7, 0x5df85eb0 }, { 0xc7107ca0, 0x38be48e, 0xad0a4780, 0x37c724a5, 0x459315a5, 0x7bd98601, 0xc4e6228e, 0x9c511e6b, 0xec9fd616, 0x889f3389, 0x128bf18a, 0x859f42ef }, { 0xe0f5341c, 0xd00fb4c9, 0x3c560695, 0x10154b16, 0xa707fa0e, 0xef92e40a, 0x558e8a58, 0xb99d4493, 0xf2ba839b, 0x3d5f65c0, 0x47e56afb, 0xdcc68bce } }, { { 0x209d48c8, 0x9dab6b5, 0x988e6f8, 0xc1774f04, 0x5d8881c5, 0x296cc67f, 0x66114546, 0xd9f07c4e, 0x8fd5d10f, 0x1b494335, 0xef4d231b, 0x409ef2a8 }, { 0x4676a4c1, 0xdf5c02d6, 0xa89b4c85, 0x4b25958e, 0xc998e950, 0x55279605, 0x1dcf7240, 0xf5d5c0f8, 0xaf70190d, 0x985dca35, 0xbad3cd35, 0xf4b4e1b1 }, { 0x479f8670, 0x33556fc, 0xef55c1a3, 0xa8160391, 0xbd32303b, 0x6b5c34b0, 0xcbfc8dde, 0x337923c5, 0x34480650, 0xd8f81f8e, 0x149f94e0, 0x8c594d4 } }, { { 0xcd821db0, 0xfa26aef0, 0x22bad707, 0x4c8fead6, 0x904a86a7, 0x25bd1658, 0x1256a019, 0x9ecf9e04, 0x717b824b, 0x639138a0, 0x5ae952ca, 0xce9589cd }, { 0x6b841652, 0x16f8c5d4, 0xa38f1c3b, 0xb4721621, 0xbad0ebd2, 0x6b98f074, 0x59e1f887, 0xfc2c6f9c, 0x3fada404, 0x9f166c7a, 0x5d31b8f2, 0x1fedfec2 }, { 0xf9121c31, 0x8209ce3, 0x3dfb91ff, 0x20aba7b2, 0xbfd345da, 0x512ffb0e, 0x61b75526, 0x653055a4, 0x79c661e4, 0xa19c8d70, 0xafba2162, 0x22b20f84 } }, { { 0x1bb0ad52, 0x7f0353e1, 0x17c12bf9, 0xb43ac88f, 0x88ec4dc, 0x1d4f0eaa, 0x87d73711, 0x405266b1, 0x22e42dec, 0x98d2583c, 0x929da8d1, 0x98f0506d }, { 0xe57dcddf, 0x1fe8054d, 0x99bd2568, 0xf8a1f9a5, 0xc2b8465f, 0xa8997bc2, 0xf188f252, 0x86247ad, 0xf9bc197f, 0xb11be78, 0x9e2e5a97, 0xda5cf050 }, { 0x34795164, 0x3f9a8291, 0xd7d0d04, 0x36196f81, 0x7179ad4c, 0x95346a13, 0xd19de9c6, 0x34a47225, 0xcdf88fdf, 0xa05c35a6, 0x32e77349, 0x93c28e9b } }, { { 0xbb8bdb53, 0xbedaf2f3, 0x977db034, 0x9f059c14, 0x1e3b1646, 0x1f0dba75, 0xc7ef92e3, 0x4f3af0ff, 0x1a3f789f, 0xbf35afd4, 0x1cde3b9f, 0x28a166d0 }, { 0xa8e34a7b, 0x66d3d5c1, 0xf5be730b, 0x24a6aa38, 0xf4b428e, 0xa08e9ff7, 0xb0c20b25, 0x6ad58110, 0xb9239427, 0xbb5f124d, 0x7ad6b433, 0x6d9c624d }, { 0x53a6fa27, 0xb9158763, 0x73e15882, 0xc24de0d2, 0x54617902, 0x466c026b, 0x8b12b6a, 0x9fa61a2a, 0x40f40a4c, 0x212e2708, 0xb08b9bfa, 0x65238ecc } }, { { 0x97101022, 0x5cc4f2e7, 0x78031104, 0x5decb709, 0x2f5ed6b9, 0xbaac8cc3, 0xa0bb61e, 0x9d53332d, 0x97757b0d, 0x1ceeb851, 0x138d40ca, 0xb410175b }, { 0x66b48d0d, 0xf86192df, 0x4b7882b, 0x66dbe6e8, 0xc45865ce, 0x2e6c4c7b, 0x60b47b63, 0x4fe98e93, 0x79711688, 0x7d029a93, 0x1462f844, 0x629d7806 }, { 0x91eb583a, 0x8e6787a3, 0x9944f7a5, 0x98eabbb3, 0xd84a09eb, 0xb41aa6f4, 0x9af414a6, 0x643dea82, 0xb1b24a3b, 0x582ce85, 0xbb94afc6, 0xeaf24674 } }, { { 0xf6bfce93, 0xf9b6f40, 0xe1792e29, 0xb48f3158, 0x65037821, 0x6a0fbdc5, 0x4a92dfd7, 0xdfb81bba, 0x36b44813, 0xa617c898, 0xb3fa6e17, 0x3b294c5d }, { 0xb2d5e792, 0x78af43b5, 0x90503f3e, 0x80c5c6c1, 0xd79aef35, 0x2c8e5d30, 0x5cf5c78a, 0xfe0e1376, 0xd17b5150, 0x1f0ee4f4, 0x29cbc785, 0xfe2d8888 }, { 0x35663a68, 0x4c9d5734, 0x5fec7ef6, 0xa6aa9fbb, 0x198e1fde, 0x9e6bef49, 0xecd879ae, 0x7aca521f, 0xabcee294, 0xd4a40cff, 0x535f1f27, 0x62a9f8b9 } }, { { 0xa502248c, 0x14e41de0, 0x11990ca5, 0xbd1dde9a, 0x4997c3eb, 0x864350d4, 0x6908d98e, 0xd8514f6d, 0x6b852b76, 0xc3953458, 0x7a4ad219, 0x666a1728 }, { 0x4aa43a6f, 0xbf3469e7, 0x8266106e, 0xf96ef8e4, 0xc791e16d, 0xd0afa958, 0xc7c81f0b, 0xf2fb77be, 0x650f49de, 0x854cf56c, 0x3764299c, 0x8fd15527 }, { 0xadb52c56, 0x2ea14751, 0x65cfd2b0, 0x2e566ee6, 0x937d2840, 0xbbf02887, 0x7a6f6865, 0x8861ebfe, 0xb3796fbe, 0xa02e3088, 0xba6fce9e, 0x6b59e159 } }, { { 0xf000c736, 0xd92b7d68, 0x1d0cc323, 0x41553cbe, 0xa97f1281, 0x8f6f06f, 0xda80ebc3, 0xadddd20e, 0x95b7d096, 0x89153714, 0x3cfd9f76, 0x8ab1a3d6 }, { 0x45168db, 0x82c1781a, 0x1365d05a, 0x9ffb9ff, 0x523cbc7b, 0xa6b5af1f, 0x20276d21, 0x51ddaf77, 0x8c25a7f, 0xd258285d, 0x1e7a5b4d, 0xa997d28f }, { 0x9946d9e5, 0x665a5537, 0x9866a6ca, 0x7e6e4b02, 0x4f58ff12, 0x6168dbce, 0x57236a71, 0x967c7266, 0x3c25be26, 0xbf6c3626, 0x87af8476, 0xd95c6b80 } }, { { 0x914369b5, 0x3edcb6d2, 0x9036ff20, 0x8dcff453, 0x40e6404b, 0xb1bdf902, 0xf0ebeca, 0x3dbf3509, 0xb076de59, 0x53786737, 0x4cd53ac5, 0x5ef3a957 }, { 0x7f44d39b, 0x3c7c0aa3, 0x3c9daf6f, 0x20c4a51b, 0x995245bb, 0x1842bcdd, 0xeb682ec3, 0xb7e37339, 0x7b9801fa, 0xdd517da7, 0x363d356f, 0x396bcbe1 }, { 0x1ebbad38, 0x4ef5656b, 0xf49f0a57, 0x77b109a5, 0x7bde8a39, 0x1f4e024a, 0x72a81a66, 0xc1df248f, 0x3d186618, 0x90469cf5, 0xb371f26b, 0x71bdf957 } }, { { 0x3e4c7af5, 0xf0ca2692, 0xc75e388f, 0x6963ffd4, 0x30fb4286, 0x550c0fa3, 0x7c22d7a6, 0x53814c2, 0xfa649311, 0xac69e042, 0xbde59fd8, 0x1f2a1021 }, { 0x6749d8b0, 0xc2a6ae6a, 0x3c41fa00, 0xb1b795fb, 0x4ff62b23, 0x1493143b, 0xdfb29c02, 0xe87815dc, 0x50db74ae, 0xcd86728e, 0xbdcbd957, 0x4c762372 }, { 0x47c0f73b, 0x5c18c98c, 0x4ab4a48c, 0xd212b8f4, 0xffce080, 0xb2943b56, 0x90f33b7f, 0x197cd535, 0x62f38be5, 0x232a868d, 0xcc86a530, 0xd43c26df } }, { { 0x50a93f7c, 0xbfbf8a5f, 0xfd993492, 0x8ffcf3eb, 0x71ddcc76, 0x16c22bb6, 0x9232bf20, 0x232526a4, 0xa103846d, 0x163f7d35, 0xb610a759, 0xa5fa6c4a }, { 0x4a5e1d01, 0x296ecdf3, 0xee986c3, 0xf85f13f1, 0xaf9fd960, 0x722fda58, 0xe6028a71, 0x344bd119, 0x3061a619, 0xa695cf82, 0xc2f4b7b3, 0x6cbed662 }, { 0xaf83244f, 0x3d1be275, 0x8abb4669, 0xae5ed014, 0xb3907a82, 0x821a21d4, 0x5d63d25f, 0x5eb1b53a, 0x36ca975, 0xa9d4aa3a, 0xd3681cb6, 0x7a9999b4 } } }, { { { 0xa35d7eb8, 0x62e42daf, 0x7d840c2a, 0xd88f27d1, 0xbd23a5fa, 0xbc0c3227, 0xcc5f2f14, 0x5e843132, 0xf9279fba, 0x4e82c68b, 0x50144199, 0x9bb25dae }, { 0xb6933c55, 0xed7aefff, 0xae0086ef, 0x43236c9b, 0xe700abe5, 0x154191bc, 0x38ff07f4, 0xfaf4cc59, 0x60682ecf, 0xcb450e11, 0xe334a24a, 0xa71b965e }, { 0xba8dbfcf, 0xb949dec3, 0x73f1635a, 0x9ebcdc71, 0x9513e3c0, 0xfd94c133, 0x444feaf0, 0x76f4becd, 0x737c3b09, 0xa4a1fc1, 0x9b8eb856, 0x66a0f928 } }, { { 0x69cc5deb, 0x84c2968a, 0x673638d3, 0xbe1abc3d, 0xfdd37f19, 0x15ba4f80, 0x50e46a99, 0x12b5f8fe, 0x79f8fc11, 0xf65e4a93, 0xcf490a72, 0x91c15a2a }, { 0x52801629, 0xd6be2ae1, 0xfe640fae, 0xb43e1002, 0xf123f2b, 0xbe778b2d, 0x4217d1e0, 0x9baba6ad, 0x786cfa5e, 0xcbeecf05, 0xfacd7bcf, 0xe07b679a }, { 0x1d1b2482, 0x712962bc, 0x225cfc2e, 0x843deab9, 0x32ebf88d, 0x7b033ccf, 0xa51abd11, 0xd88fe574, 0x346bb87f, 0xe7a1cc02, 0x31cf0cd1, 0xafb60a7f } }, { { 0x92bc8c9a, 0x6e7a8758, 0x838a9934, 0xfe794817, 0x3776798b, 0x749a77bd, 0x88c4ad9f, 0xb99cd481, 0x44179c78, 0x6d512fab, 0xf6009c9a, 0xdb4ba4 }, { 0x2aff997c, 0xdfc58e34, 0xb30747dc, 0xcf981f24, 0x559aa141, 0xdb26ca78, 0x2a87772e, 0x53b9f71c, 0xfa5fab95, 0x751afe60, 0xedd4d4cd, 0x2ff2858d }, { 0x7eb5e122, 0x96246c17, 0x184508e5, 0x528781ae, 0x931009e7, 0x19f8d257, 0x3534c48c, 0xa5df279, 0x2b8437b2, 0x815a81b5, 0x30f378cf, 0xd999189b } }, { { 0x3dc7f472, 0x7b6b63a4, 0xaf00962a, 0xdbab47e5, 0xd5073158, 0xa8054f59, 0x9572cb74, 0x5fb6dc3, 0x4708534, 0x9f9256a0, 0xc89a5f85, 0x266e44fc }, { 0xa3d3f5be, 0xca9b1fb6, 0x9c4ef63c, 0xef220320, 0x23980954, 0xfaba27c2, 0x84ffd713, 0xb11af45f, 0xfd1afea8, 0x7ad91e69, 0x9b4dcb37, 0x79b613fa }, { 0x5caad8fb, 0x3c72040a, 0x3d9745ca, 0xb02215e7, 0x3aac81de, 0x6155dc9c, 0xafde2da1, 0xf2b558f0, 0xb57bdf3d, 0x33e38ac5, 0xed152c55, 0x529fa85f } }, { { 0x5c7f1594, 0x9e4a1945, 0x831f7c71, 0xeb7f028, 0x7af202ea, 0x44995c45, 0x45b2d44d, 0x8df6ad74, 0x7da584d, 0xd50a365, 0x525275e7, 0x68da8a96 }, { 0x8ff9e974, 0x460aba41, 0x59a3bc83, 0xd969fc63, 0x831a3667, 0x196ec12f, 0x87c321ea, 0xf1ca48e3, 0x2f9d0261, 0x1a052de0, 0x8434a566, 0xc432c6ee }, { 0x28d2bbf0, 0x1ed3c57f, 0xe3e463c0, 0xa38fdea, 0x34c506ec, 0xb379339, 0xb1bcf744, 0x76691f40, 0xed207ddc, 0x4f532781, 0x41c2343a, 0x7adaa526 } }, { { 0xdf951e8b, 0x874af09e, 0xa79132ea, 0xa1e15e94, 0xf435d83b, 0xbaa08d21, 0x3de2ada2, 0x99839872, 0x1439c378, 0x7de422ad, 0x2d3e7499, 0xa0718ba6 }, { 0x874c9756, 0x2a1969d, 0x978695f1, 0xde9bffdb, 0x78c2df78, 0xa49c5d89, 0x2007a02c, 0x41f453e7, 0xc609926b, 0x665b34a8, 0x95fc904b, 0x2a18db4d }, { 0x8f98e2d1, 0x6a3250a7, 0xbe080730, 0x81ea6b9b, 0xe5259e6e, 0xed1d1849, 0x928b321f, 0xf0f8b0af, 0xdc180da8, 0x7ee92069, 0x9bec80af, 0xb8cebcbf } }, { { 0xb111f981, 0x224514ff, 0x52418f90, 0x73cb65ac, 0x35a0d8fb, 0xe300d9d9, 0x21d0f9aa, 0x1d2ed5c, 0x6d71ca03, 0x93cb20c6, 0x837189d0, 0xc90a8cf0 }, { 0x336d2d3e, 0xa1050625, 0x3880b573, 0x9b792fac, 0xba41aa4b, 0x537fc70e, 0x7c7fc306, 0x2879fddb, 0x57843371, 0x44edd0c2, 0x69981ba4, 0xc6eb551f }, { 0x72dfcd, 0x96252a7, 0x8ed62a52, 0x59bb87cd, 0xf06d9bf8, 0xdd9ab435, 0x5337e174, 0x2c76030f, 0x784505d, 0x60d6726f, 0xb8c25d86, 0xc44eab18 } }, { { 0x7a9ad861, 0x4cd70e5a, 0x87f3617e, 0xca0ef5fb, 0xd507344e, 0x10208bef, 0x62628e45, 0x4e156b3b, 0x6bb003ab, 0x69d649d1, 0xfa7291e2, 0x86d2c054 }, { 0xd502eb0, 0x41864550, 0x3eab950b, 0xdcb3fa57, 0xe52ea68d, 0x13d460fe, 0xd3842c28, 0xb4f0c515, 0xad1b5f7d, 0xe096ddec, 0xcd3fdd22, 0xc9d16018 }, { 0xa6718a13, 0xffa42201, 0xdb8db803, 0xabe88d87, 0xfd8897e3, 0x3ae5b067, 0x7cf61ed1, 0x160b7c3d, 0x6612301b, 0x4ed9809, 0xe50e4688, 0xaaad2b5c } }, { { 0x7ac457b8, 0xe7e52714, 0x65cf8ed4, 0x5828a232, 0x95f96f60, 0xdc13c282, 0xbc6458a2, 0xfe2aa94c, 0x48a7313c, 0x4bc3fa6a, 0xb90e0ff1, 0x328fef52 }, { 0x5d3c25ae, 0xf1ba4943, 0xb2c4d2d5, 0x203a918a, 0x5261f041, 0xaf767a1d, 0x1d62f255, 0xa3911eb6, 0xd725f221, 0x7fad514f, 0x357bdfa5, 0x4369471d }, { 0xba1b0661, 0x9e1e9481, 0x52c6f2f0, 0xd28614d3, 0x11c26a01, 0x48593d1c, 0x17dadb92, 0x351cf517, 0x50d2684b, 0x243724e7, 0xb66a1f8c, 0x1d0c56e4 } }, { { 0x174159f2, 0xff796897, 0x8f89ae83, 0xfe9bbf16, 0xc71d1d54, 0x68bfc1f3, 0x109119e3, 0x77519fbd, 0x6947a5df, 0xb870b68, 0xea2c7285, 0x6343e0a0 }, { 0xaf0b281e, 0x9099da39, 0xc59a1421, 0xbbb7f76d, 0x43682928, 0x2118ac9d, 0x38b9f136, 0x683f0fec, 0x2a7cd06e, 0xf0ffc7d5, 0xb90f8398, 0x73ce7003 }, { 0x5eeecece, 0xf53b7f97, 0x8618de2b, 0x6a8d31ed, 0x9d3a8076, 0xc1fb940d, 0xc8b21461, 0x194d513d, 0x1d10323d, 0xd1064d21, 0xb3a78375, 0x702d6860 } }, { { 0x22d79ed7, 0xb1427e73, 0x3c87b626, 0xf7c59fdc, 0x20748ed2, 0x5214c779, 0xb103fd44, 0x58e96b50, 0x2a43588d, 0xf385f319, 0xc0139502, 0x3b80934c }, { 0x67d2eb1e, 0xf94eb705, 0x413d6027, 0x873ffef8, 0xc43a848d, 0x4e3ff40a, 0x3fa87c5d, 0xa3bbd076, 0xba1cf6fe, 0x14b8680, 0xc441a59d, 0xccf1b579 }, { 0xa7d2762b, 0x4c159700, 0xadacac6d, 0x163dc87, 0x995cc91c, 0x5a46e563, 0x24940e77, 0x4b3b13db, 0x1696af12, 0xef601df7, 0xda272833, 0x45ce049c } }, { { 0x4be5d1b9, 0x416887be, 0xb0b35a5b, 0x711ed5ee, 0xfb7a6eca, 0x57677511, 0x1a3c740a, 0x5534179e, 0x743e3f6b, 0x6f15f6c, 0x2e9eca26, 0xbede080f }, { 0x39a30e09, 0xe4197c05, 0xd1bde64c, 0xfc377cd1, 0x521daa46, 0x2b6ac915, 0xf0617e11, 0xdc8a7f1e, 0xede18b97, 0x831c5804, 0x601aa317, 0x445da586 }, { 0x7f08c521, 0xb9720229, 0xbbefbede, 0xa52008bc, 0x5582712f, 0xbb903dde, 0xc5f60db0, 0x3b25153, 0x368ca34b, 0x21768590, 0x8c11b28a, 0x2d51d280 } }, { { 0xfb70db30, 0x5a66b309, 0x898f77a2, 0x9fa6b968, 0x69b34602, 0x2bbfb761, 0x34ed97b2, 0x4f48a77b, 0xefb75b7e, 0x9c76add7, 0x53d0bca2, 0x97851e29 }, { 0x69e5627c, 0x1f62be4e, 0xaaa4a693, 0x67466d2, 0xf51b0e7c, 0x7b9bc857, 0xbeda0d4c, 0xaf39dce1, 0x8ab9d5d7, 0x44cb762f, 0x2d9c9082, 0xafac07ae }, { 0xf856113b, 0x276d47d1, 0xaff8798a, 0xe3d10ef5, 0x3aa9d438, 0x8a9bdb03, 0xb54baafc, 0xd18a4611, 0xe585eb74, 0x7aaea8c7, 0x4ddc1991, 0xd0ceb6bf } }, { { 0xb47c21b6, 0xa02f9202, 0x2134790e, 0x5956f5da, 0xb17c8e3f, 0xb7aea7f7, 0xf3ebaa1, 0x2926cea1, 0x2ee818d7, 0xbe591268, 0xece4c96a, 0x81119cc8 }, { 0xea1707e0, 0x980ecdc3, 0x58bd0dfb, 0x7621c465, 0x7d325419, 0x6421c801, 0xe25ad66f, 0xd3ef062a, 0x76e1e8c8, 0x19ae71df, 0x9100c4ff, 0xd6103d5b }, { 0xd24322a9, 0x4e3c6d49, 0x4fa2d97f, 0x3e9af416, 0xd467670a, 0x8e231a5a, 0xdc3d98b3, 0xc6d3c15b, 0xdb928854, 0x1647a568, 0xe82c06ac, 0xb38876a6 } }, { { 0xe332e4d2, 0x5131ff9f, 0xf795852e, 0x6962e6f5, 0xf00775fa, 0xe394408a, 0x1cf5a42f, 0xecc127c3, 0x80a25da9, 0x339b1e1c, 0x76a9b099, 0x57ecd7d9 }, { 0xf3ff07c7, 0x398b21db, 0x89b156e7, 0xeafdf5a2, 0x85d5c822, 0x759bdbd2, 0x7c31206b, 0x78f4abf9, 0xb0a2db59, 0x47795cd, 0x11d92fe2, 0x4b747288 }, { 0xf464a265, 0x335132c6, 0xbc47d3aa, 0x499a3e25, 0x33c96e3, 0x4a227769, 0x39b2841c, 0xce9c31b3, 0xdcc38104, 0xcd5e2e4, 0x93dea1c1, 0x487b65ce } } }, { { { 0xf254dab6, 0x8f19a332, 0x9bffe9ce, 0xa4d894c8, 0x283aefd4, 0xb7d7bb79, 0xb9eb8dbd, 0x3c5441f7, 0x2fe811dc, 0xbdb52193, 0xfbc09ecd, 0xab001178 }, { 0xf1e0b5da, 0x48efba80, 0xb8a14a5e, 0x1c7c1f0, 0x1b247aa3, 0x7956ab22, 0x41cd706, 0x5d71d3cf, 0x6c4b0328, 0xab8b0ff8, 0x7c4a4f3d, 0xd724b567 }, { 0x670799ef, 0x69152d02, 0xbc531ce1, 0xcd17900e, 0xed6667a6, 0xa449a7e2, 0x1a4e2206, 0x6bcfe878, 0xef10fcc, 0x2e8f0d08, 0xdfbc23b5, 0x296271c1 } }, { { 0xcedaf563, 0xe4635cd1, 0x93ac18bd, 0x3335aca, 0x64ad3412, 0x52963bfc, 0xad14fcf1, 0x506e1c4a, 0xf1b682a4, 0xe1afb200, 0x7416ec35, 0x854b888a }, { 0x54c5c361, 0xd0a65e4a, 0xd4249356, 0xf3b96510, 0xa866f34a, 0x6c779cc2, 0x2aba5c5c, 0x3198a9cb, 0x2f775f02, 0xee6fa394, 0xec6e9815, 0x778ea797 }, { 0x4464f5c8, 0x6d56ba75, 0x347ec587, 0x6e584c56, 0x9264c408, 0x5d82bbb9, 0x9e245680, 0x51ca9052, 0x29e4d09b, 0x63376c7c, 0x1c9939d3, 0x2bd05bc5 } }, { { 0xf79f5a76, 0x625b60e6, 0x27f10d9b, 0xc2faaae2, 0x4b59719c, 0x31a3ff38, 0x382f427a, 0x8393d2c, 0xea818cba, 0xc2bd397a, 0x10f4a88f, 0xbbbe91a9 }, { 0x27515361, 0xec2fa114, 0x688979cc, 0xb6f92595, 0x53c0f90d, 0x8e114293, 0x7f0ea550, 0x2874c3e8, 0x7346b4f1, 0xe06ba112, 0xb47f8ba8, 0x8566cbc4 }, { 0xe94130ff, 0x48bbb05, 0x4d25962f, 0x9fefea5, 0x29e19913, 0x5ec165b5, 0xb1484a37, 0x28f676dc, 0x9ababebe, 0x85c7fa48, 0x794e7bf4, 0xc2fdf469 } }, { { 0x82c8d156, 0xfc4101e6, 0x2f845c54, 0x160012e, 0x2d3622ad, 0x6b043618, 0x585336c2, 0xab610d83, 0x9c07bab0, 0xf0c2c1e4, 0xe31f93ab, 0x1c2d1706 }, { 0xce48da28, 0xc3f69be7, 0x5eefe92a, 0x7cce4998, 0x7a7c4c00, 0x4b948989, 0xe617dbde, 0xb2012ff2, 0x55d4ea81, 0x58a700ed, 0x6d16e1be, 0xd3c9aae1 }, { 0x575f0777, 0x88c57bb0, 0xd21aa5b4, 0xf995eb4a, 0x78c11e53, 0x5eb5c777, 0xf3ccbca7, 0x88bc84e1, 0xbe636d1b, 0x6e01416e, 0x7f0eddb8, 0xfd038282 } }, { { 0xead3c0e2, 0x31c6e6cd, 0x6052def9, 0x6c05a259, 0x93a1df13, 0x986d85e8, 0xe455ff41, 0xd1f92b5e, 0x547f892, 0xfdafe08f, 0x1d4c6a87, 0xa0255302 }, { 0x53363288, 0x17b8fa8d, 0x24e5f0d6, 0x2d526d7e, 0x11e7330f, 0x394e992c, 0x75c1178d, 0x39254433, 0x5e87435a, 0x394f2698, 0x5a552a8e, 0xc1a2dc45 }, { 0x69246aea, 0xbe5f6104, 0xc0982170, 0xb28d8915, 0xe0eead38, 0x4bbffed8, 0xfaf4b03b, 0x41b96d03, 0xa8cdb0af, 0xd5ad4128, 0xfe9c2785, 0xb3e2a0e4 } }, { { 0x69c872cc, 0x40e837cd, 0xed991547, 0x7b0f6b7c, 0x6fedcd3d, 0xe946324e, 0xad0ffed7, 0xec57c33, 0x930cbb38, 0xe52058f2, 0xbdfff18f, 0x7f9f4433 }, { 0xb754d997, 0x7627ec22, 0x2a0490f3, 0x3abe6328, 0xf3592fa5, 0x2f6a2a42, 0xeb519dd9, 0x3bf6bfb0, 0x4d02bf73, 0x56d79d80, 0xe969a56e, 0xff80a32 }, { 0x26c57ba5, 0xbe0f20d1, 0x1b58c7d5, 0x9a3edfb2, 0xfd6bc856, 0x4cc751cd, 0xbc8c4f44, 0xa8f2108, 0xa1b6ed35, 0xe5b9c5e0, 0xda145ca2, 0xeafec2c1 } }, { { 0xe662cbe5, 0xab856bb3, 0xef52b4a8, 0x3b7aa1a, 0xeee4f7ca, 0x1a80fb80, 0x7eec81b, 0xda6518c1, 0x1af9f037, 0x8e7cbf2f, 0xbe7e7308, 0x732ea774 }, { 0x45ae55fe, 0xb4df5ecf, 0x8e736b30, 0x52b7a910, 0x4475bf4, 0x78f7d586, 0x6e05c067, 0xfd4950d7, 0x6d4e76ec, 0xcd7786a4, 0x6d686267, 0x2886ced6 }, { 0xc92256b0, 0x3a878aac, 0x12cc41e8, 0x23333753, 0xc6edbd5e, 0xd92f1130, 0x98499d7e, 0xef987666, 0xa131f2bf, 0xcb0b7943, 0x1cabc82a, 0x59645d3f } }, { { 0x38345786, 0xdfa0da0e, 0x2adf402e, 0x32fde18a, 0xf5fb9e6b, 0xaf50e01a, 0x6df55f55, 0xa921e549, 0x8d00fcce, 0xb7c9f261, 0x938fe286, 0xf49e1010 }, { 0x8e478c71, 0x6d0a5d77, 0x4f8e4f26, 0x54177619, 0x81be67e4, 0xf8dc1a9a, 0x13edd850, 0x7e90be47, 0x2ccc753d, 0x9e4a3b9f, 0x47b50b17, 0xb7d7bfac }, { 0x93dc77bb, 0x19dad4ca, 0x359d6364, 0x74d3455, 0x9d7527ec, 0x1e116af, 0x5499a7ea, 0x3a6addd4, 0xe06bb967, 0x8ac2c44f, 0x11a20a01, 0x67589ca } }, { { 0x3764e4fa, 0x7eb8e2c2, 0x8d216c6a, 0xf34ca8c3, 0xb62d7278, 0x5e7ffcf1, 0x15332450, 0xaab3332a, 0x42418fbd, 0xe40835d2, 0xb49ee263, 0xaca168b5 }, { 0x9143f7bf, 0x1db8d5b4, 0x4cd5dcf4, 0x83bc4c53, 0x8fb26ce3, 0x3adb7344, 0x144f8d7a, 0x358eea0f, 0xb46c5855, 0x2a3bf452, 0xac0848f2, 0x6dcd06bf }, { 0x2a143a00, 0x9e572fa3, 0xfad0ae20, 0xe8c3cc1c, 0xe2f45b1d, 0x42425157, 0x5355479f, 0x16bdf1db, 0xbf5ce843, 0x4915d2f9, 0x3ae1d22e, 0xfdd12309 } }, { { 0xe1416350, 0x5ee52429, 0x30412c48, 0xf3723745, 0xf14c9c53, 0x68e441e7, 0xa2e6725, 0x7c67940, 0x15a0f600, 0x2139cfac, 0xc410bc1b, 0x4b5e9d05 }, { 0x31ce537, 0x48030062, 0x7ea48649, 0xc222f422, 0xe9f58d5d, 0xcaa7a92c, 0x68b0751e, 0x2d5efe02, 0x34d09051, 0xe9bfce0c, 0xa0148d4d, 0xe8c81d41 }, { 0x14ffe79b, 0xa31137a8, 0x9bed621c, 0xfea4cace, 0xbb5cd505, 0xefb1ebcb, 0x9fa38746, 0x1b76ee38, 0x3c51e6db, 0x3d4a98d, 0xfca153ec, 0xc0d8a0e } }, { { 0xb0eba938, 0xe5fd320f, 0x1209acf2, 0x796047c8, 0xeac82da0, 0x9cd89eef, 0x25949e6e, 0xa4e385e5, 0xaf2af31d, 0x948e1d0b, 0xb562a4a8, 0xf60c9ea6 }, { 0xde0b0d73, 0xac0cffea, 0x582972aa, 0x942d1fae, 0xde137522, 0xfebc1f70, 0xbc790187, 0xf7a01ebc, 0x66cc395f, 0x8aa52540, 0xda350d49, 0x4fac1194 }, { 0xf125d4e2, 0xc41e62dc, 0x1e91e285, 0xe2f97329, 0xd93c9e95, 0x4340133c, 0x5eeeaa57, 0x4646a065, 0xa97c553a, 0xabfdb73, 0x6dd68a15, 0x12e6fe90 } }, { { 0xa50dcf1, 0xcd138577, 0x9a20195e, 0x4a7232ca, 0x6467df1a, 0x7ba57b3, 0x7db035d5, 0x6ddc665, 0x7f429dc, 0x6d27c916, 0xe662a253, 0xfc191d5 }, { 0xde783fc7, 0x67dfed95, 0x543e4039, 0x1aea61ec, 0x55200410, 0x9e426632, 0xac3dcdd9, 0x55f1a94c, 0x368ed041, 0xec3be546, 0x8e3a1d47, 0x9cb115f4 }, { 0xfa61ec07, 0x4d5f3b28, 0x79c627f5, 0x7f4fb93, 0x966866dc, 0x1be2dcd7, 0x35b677a2, 0x5828b58f, 0xb55649c3, 0xaa79439f, 0xb073884e, 0xc94b074d } }, { { 0x96330d94, 0x3d4bd22c, 0xe40522b4, 0x67ff537, 0x89080f2d, 0xbd60ab81, 0x82aad705, 0xf1d9a735, 0x36278f2b, 0x42f800aa, 0x1d1b41c4, 0xef9f5692 }, { 0x26a377b, 0x621c8f7f, 0x56e0be4b, 0xd946c4, 0xc1d366e3, 0xc3362bab, 0xe52fec28, 0x7b6422ef, 0x6ce6bcc7, 0xfa8a0e3, 0x59723b31, 0xabad5b5d }, { 0x96ec63e8, 0xc2df31b, 0xf52b3bef, 0x258dd55c, 0x5503f3c8, 0x19e5ac1b, 0xc9a61097, 0x4c09d528, 0x971391c4, 0xeda6266, 0x6afbc30a, 0x6fdb3595 } }, { { 0xbd7075bf, 0x523b298, 0x613c2c92, 0x8f8fe7e1, 0xbc2135e1, 0x1fa18f3f, 0x32b931b9, 0xf4691252, 0xf44bf8c9, 0xa0524483, 0xbe93818b, 0x99c5f23d }, { 0x17565f6c, 0xcfe4bd25, 0x5952c99, 0xf7ad7e1d, 0x18d4a055, 0xbe62627c, 0xe91d83eb, 0x4307a97d, 0x3ecf5ba4, 0xddf9285c, 0xa6fa820, 0xb9e633e6 }, { 0x200df16a, 0xae3c2e4c, 0x4885a207, 0x5ae712c5, 0x758ac95c, 0x18a151b5, 0xdf2276a6, 0x45a79273, 0x5db8fa59, 0x203f8df5, 0xfda6b3ec, 0x10a888ee } }, { { 0xebe56909, 0x432611d3, 0xe10bc53c, 0x21c7c5c5, 0x8c798075, 0x655c03fa, 0xea428e54, 0x91013ab3, 0xa17daeeb, 0xee0c98a3, 0x19d686c7, 0x71d2de5e }, { 0x41088626, 0x9d45212b, 0x2bba04c3, 0xb78353f4, 0x217bbee8, 0x67df2213, 0x52bc5ce6, 0x280d7516, 0xf410471d, 0xbe1ad4d8, 0xb2838251, 0xcd1117a2 }, { 0x1409076b, 0x3c36ccc8, 0xb734ab9, 0x92443a48, 0xf7401749, 0x85c290de, 0xdf2d5b2c, 0x1f335db6, 0xde17565a, 0x46743609, 0x7eb77f09, 0x7b884942 } } }, { { { 0x2a529049, 0x41a111e8, 0x51636d1a, 0x20402b8, 0xda7dfbc5, 0xb3c27933, 0x8b2f939c, 0x11ebac16, 0x60402b08, 0x7bdd3851, 0x6c98cd4f, 0x7fbb3ea0 }, { 0x9684dc6a, 0xc8beea36, 0xe3d41634, 0xdd4060b3, 0x805f1fe, 0x657299e1, 0x2d335718, 0x9054bd0c, 0x13e35d9e, 0xe3128051, 0x9be5aeb9, 0xd60b43ca }, { 0x1244b44c, 0xfbf51455, 0x97d92053, 0x4b4404df, 0x6ebdf0be, 0x88ed20ef, 0x6b8e130a, 0xc29fbdca, 0x2934af3e, 0xfa492a5, 0x817ceb76, 0x1ea0453c } }, { { 0x843579c0, 0xb7230590, 0x61c37b40, 0xcf0b97c6, 0xa2673a0, 0x1a2f4d8c, 0x91174c42, 0x4c0aaa65, 0x1f13b418, 0xf63e64aa, 0xa8338b82, 0xc9f16e5f }, { 0x5765e7, 0xe14aae6e, 0xc849a3ef, 0x960dc5c1, 0x5a25620b, 0xaca82faa, 0x51a00493, 0x13e1499d, 0x97e2b335, 0x958a3f33, 0x20e44dd4, 0xfda55807 }, { 0x7b6c814b, 0x33f44744, 0xedb46e0f, 0x8ac71f85, 0xeeb0dcc0, 0xc73e88ac, 0xe708c338, 0x73fac6c9, 0x28e8d0a2, 0x47e32d68, 0x94c24cb1, 0xbc625c1a } }, { { 0xaeccbc2f, 0x2a5036db, 0x9e335bd2, 0xa4cd41b9, 0xf151654a, 0xe1bdf5e7, 0xd2af0f96, 0xc51540d8, 0xd271588d, 0x4440637a, 0x312b501c, 0x9756b0fc }, { 0x28e6a6a7, 0x30f14781, 0x71941bd3, 0x48e608c8, 0x15dcb883, 0x57d12fc, 0x8810bbda, 0xa97cc84c, 0xc9b01bbb, 0xb3c90424, 0x6549c3f2, 0x20f8329a }, { 0x1b4ba2cb, 0x6c25fc15, 0x247d876f, 0xae81ec3b, 0x7e6b54b3, 0x340fd05d, 0x48afdbe0, 0xdbce7da0, 0x46ee54e4, 0xb5795027, 0xf83a6a7, 0x30f90b44 } }, { { 0x9515d79b, 0xc881719f, 0x2ec97e01, 0x8e8931b4, 0xbc94e5c1, 0xc239c72a, 0xcac1422f, 0x867d9375, 0xfd84b8ad, 0xedf77274, 0xfb66e2d, 0x25e64407 }, { 0x77720a3a, 0x998aa616, 0x2de80ceb, 0x63513fa1, 0x79473465, 0x87c86aa6, 0xf3139e6a, 0x57815563, 0xc59500d1, 0x70ccb156, 0xb04eef8a, 0xcbd3eafa }, { 0x9c28bbb5, 0x3bd415d, 0xd0b3c100, 0x91bcdd99, 0xa4921ba4, 0x899a2f6b, 0x6af40a25, 0x8a4eeb4a, 0x34392ef7, 0xec32b303, 0xc061ae93, 0xabfc879a } }, { { 0xe57b9ab1, 0xfeebb1e9, 0x913a1366, 0xb2a76923, 0x53e65a19, 0x10ee7f0, 0x1dc23c43, 0xd2d493c9, 0x22110509, 0x58354b28, 0x31bdfd8, 0x8c07543c }, { 0x519fdd1f, 0xe28f7c51, 0xbe9070c7, 0x16e6e159, 0xd46c858a, 0xda64730d, 0x108254c7, 0x467cce63, 0xe94b277f, 0x9255aeac, 0x1942beff, 0x430ec7a5 }, { 0xf37e9ef2, 0x56a0e4af, 0x50bffa88, 0x96b0a20e, 0x6945dfb5, 0x7fa531e1, 0xcd352718, 0xf811a4c8, 0x4fdda794, 0x51c931d3, 0x680d70b2, 0x702aa874 } }, { { 0xba9e217f, 0x7f6d4a6b, 0x9982ea07, 0x63b8e399, 0xb26c23c7, 0x364561c7, 0xcd05e717, 0xc1533dd9, 0xbcf5895e, 0xe5cba08a, 0xa0841746, 0x720d81d9 }, { 0x8eed27e4, 0x9c660f58, 0x361a152b, 0xa833db0d, 0xe40725d, 0x34be581, 0x46fff2a1, 0xd3058c88, 0x8a390799, 0x41f12e4c, 0x1c76144c, 0xcdb1bc48 }, { 0x79eed7c3, 0xc6b0078, 0xa4ce9900, 0xdbb625b6, 0xa4068f4e, 0xc849925f, 0xa754b893, 0xa2cc2920, 0xd1eb2ccc, 0xeddcbed1, 0x8c993e1c, 0xf84dc66e } }, { { 0x1b73fec5, 0x5fe7e1e4, 0x644c74da, 0xd61887bf, 0xc31fd5ac, 0xe6bad797, 0xc2da9025, 0x7bded363, 0xb5921a9b, 0x5103cf9, 0xcd76b5b6, 0x2115a31c }, { 0x770e43fb, 0xe6a0d57a, 0xdb4c7d41, 0x14e5d410, 0x2d1ec080, 0xf7040e83, 0x5bdf9058, 0x77fad367, 0x373e9fcc, 0xaaef655a, 0xacc96981, 0x2820644e }, { 0xca5813f7, 0xbc7014ce, 0x3ba4feaf, 0xd263b5ce, 0xbf8c1d52, 0xacc63a16, 0x3a230ebb, 0xa8dd8aaa, 0xa046b36f, 0xd737ea86, 0x2ba5a513, 0x27491223 } }, { { 0x81dc13bc, 0x95b1bac6, 0x285887ed, 0x574e00d8, 0xdeca1914, 0x932987e5, 0x37591d90, 0x1fba9cd5, 0xe87efab1, 0x6084023e, 0xbf6a906c, 0xd2f2642b }, { 0xca8ea3d7, 0xf1ba358d, 0x5e1cebb0, 0x2aeeb7db, 0x3a973210, 0xf43dc62b, 0xdc15381f, 0x52b13ba3, 0x810e28d5, 0x6ce7582b, 0xec72c8e1, 0xc28ba66d }, { 0x8d517c0c, 0x2b54b678, 0xba37a4e8, 0xf4f34dbe, 0x3f22483e, 0x6611cbdf, 0x4a4a9679, 0x7eb14008, 0x6c6015d3, 0x5bd27b95, 0xd86b06cc, 0x6da557c2 } }, { { 0xf0377948, 0xe8aea242, 0xa2f66606, 0x75b9a67b, 0x39e69f32, 0x918ea270, 0x718095b0, 0xb6f42481, 0x4e530a8c, 0x81443827, 0x15b2706a, 0xe54b0a7f }, { 0xa3a738a2, 0xc897cb5c, 0x8636dc15, 0xe50d6d37, 0xb441ee6f, 0x5519058, 0x19758fc5, 0xb0d71fdc, 0x5091a653, 0xf85c4db9, 0x4ba52fa8, 0xe725fc83 }, { 0xd311f0f0, 0x6c643af7, 0x73b2b97c, 0xa3892679, 0x216f1cb0, 0x58a6dc74, 0x3f7e5aa3, 0x2fe4252d, 0x25ae186c, 0x74831822, 0xd7749e41, 0x4a48667a } }, { { 0x997a04cc, 0x7256650b, 0x25338950, 0xa6c54049, 0x716b724d, 0xf5f73334, 0xb4e852a0, 0x4f6f36eb, 0x686884e1, 0x4ee82fb6, 0x9e1b87b5, 0x56e18f70 }, { 0x8d84003a, 0x4efa4ae2, 0x4dc41058, 0xe05c286e, 0x5ae6d048, 0x9938cbed, 0x9edcd61f, 0x3ebd0780, 0x1f75bf50, 0xc3ab006b, 0x414d4afd, 0xb0a40935 }, { 0x8ebfad3c, 0x774080ca, 0xd74d42a8, 0xf41ff65d, 0x2f960795, 0xd9a622cd, 0xa1c066f7, 0x18a92d05, 0x3eaee2c, 0xdc5d11ca, 0x2df4463d, 0xda34b885 } }, { { 0x15b1b30, 0x8815b64a, 0x89fd2f9f, 0x1e919697, 0x3893757, 0x59170bcf, 0x3a284060, 0x515e6acc, 0xe2d4f64a, 0x27eb91d2, 0x8730a9ef, 0x3b877d0e }, { 0x80e4f283, 0x366dc92a, 0x3af80dab, 0xa4414730, 0x3748a981, 0xed24ab7f, 0xd7d01a8c, 0x1fb07486, 0xfe6fbb1b, 0x2d49f7d, 0xc3c3fab2, 0x82c18ee2 }, { 0x8d4a255f, 0x67c40aea, 0xe155af80, 0x7caee657, 0x17cf291c, 0xa7860f0f, 0xcac435d0, 0xba9f77da, 0x85c54db, 0x1772d9b1, 0xe1e93b22, 0x90d4c5fc } }, { { 0x277558f4, 0x32ec7e7, 0x736051bf, 0xa14180eb, 0x361a176, 0xf115c461, 0xf59f16c, 0xfd395a6e, 0xf8a3f308, 0xb3865dc3, 0x328f112e, 0x4c387db }, { 0xc5ba13b0, 0x46be7d79, 0x870ab3b0, 0x242f20b6, 0xf1822d9, 0x34036291, 0xd7008cd5, 0xf6fa9611, 0x4245845f, 0xc387a2e4, 0xc6ed108, 0xc82dbf70 }, { 0x87ffdd5b, 0x9fca3a9f, 0x343cf47a, 0x66423d2b, 0x28a1d5a7, 0x6898344d, 0xea386737, 0x903e86cc, 0x2376a09c, 0x9341482e, 0x56a206e, 0x7adac0a0 } }, { { 0x156c349d, 0x4390062c, 0x12e37164, 0xf7ee581e, 0xf93d29fc, 0x8c286e95, 0x19d40ee9, 0x4ada9b59, 0xb9ac1d3, 0x8c4efdb2, 0xf6f13d6e, 0x5f8fb521 }, { 0x17be18a0, 0x3c181110, 0x59c0ddef, 0xbb1b851, 0x4d2b53ea, 0xfe428a9d, 0xdc84a933, 0x970df2ce, 0xb010dd5c, 0x34fabb62, 0x6cc9eb12, 0xbc355c90 }, { 0xacbcdb1c, 0x14f86e11, 0xe719ee32, 0x479ef2b2, 0x53bcd7f4, 0xc0cf46ad, 0x20ab73be, 0xa75d900b, 0xfbdb9781, 0x822bfb4, 0x89bbd3f6, 0x592f2d75 } }, { { 0xde4a6b52, 0x79238d5f, 0x823fd358, 0x7ca3a7e1, 0x5e06c4ae, 0xfaf9652a, 0xad3e0c79, 0x174411d6, 0x93c2532f, 0xcdd54ff6, 0xf7d6a245, 0x65eb1f2e }, { 0xa7875e4d, 0x52459052, 0x86eec0db, 0xd8d25d96, 0x30cc4302, 0xac8bfbfd, 0x6a61ae01, 0x2c708d3c, 0xd6722db1, 0x4ef571cf, 0xb7db9b47, 0x89a1944a }, { 0xb67649a8, 0xf5f22ad8, 0x4a18c58a, 0xefd4eda3, 0x8d82c3a3, 0x19b33186, 0x4c353712, 0x59c2d43e, 0x8b90f39a, 0xf26e05cb, 0x7980c9a8, 0x112d927f } }, { { 0x7232da85, 0x9483c9b5, 0xa5f4ada1, 0xdcbff30f, 0xd9c283ea, 0x8d339d79, 0xdbda86bd, 0x70f4c83f, 0xe9c64693, 0xcbf8d0fa, 0x2e232be8, 0xfd792e1b }, { 0xfca39d8d, 0x7ae56b07, 0x79cd5dc, 0xf3a1ba3c, 0xd3e94f5c, 0x8447c7ef, 0x54911d25, 0x6ff189e6, 0xbb6f51af, 0xfe884335, 0x3c2d5ea, 0x7ca936aa }, { 0x4fa9e478, 0x1d2ec854, 0xa0a14eb, 0xdd3f2a31, 0xc3de97e3, 0xbdc81710, 0x3fa8c48e, 0xbedd8c59, 0x5271a84a, 0xac20622b, 0x3ceea1cf, 0x79223b1b } } }, { { { 0x79df601a, 0x316714d4, 0xba14c22c, 0x4327ed8, 0xee199886, 0x4139169b, 0xafb105a7, 0x3898fa4f, 0xd619e862, 0x57191c18, 0xf712df66, 0x67f3a0f3 }, { 0xb68b3867, 0x3288fe21, 0xf5abb9b, 0xd79a79d8, 0x6e34d64a, 0x1f3ff110, 0xb7242519, 0x27115452, 0xf34658e4, 0x26a2b9aa, 0x77e9123d, 0x5b9a98f }, { 0x583dd4bf, 0x1b4cd492, 0xc2b7c5ed, 0xceffe906, 0x5d88215e, 0x2600836c, 0xd2822e39, 0x7e9ca0de, 0x5f026469, 0x9f0a2f90, 0xb12234d3, 0xe2a51128 } }, { { 0x2107051b, 0x4ff2b250, 0xa173ab6b, 0x8365e5ae, 0x1ee2bfe, 0x39be69a1, 0xc6114c48, 0xc391f1b2, 0xbb2ff0bb, 0x79f3497b, 0x12c32e0, 0x465eca26 }, { 0xf03a6172, 0xbb04d271, 0xc7c6393a, 0x6646704b, 0xa3ec5395, 0xd78da5d, 0xba78903c, 0x4bb9ee5b, 0xddf6eab0, 0x872e5e2d, 0xedb611b0, 0x94b739c7 }, { 0xc2f7290, 0xbeadac2a, 0x6a26d5da, 0xa56922c8, 0xcbb0b00b, 0x6429cddc, 0xc3297f5b, 0x8e7f625, 0x6d45ea17, 0x64c7033b, 0xbdf26f23, 0x880df58b } }, { { 0xd6f06a04, 0x283325b5, 0xd0222c2d, 0xa0a53709, 0xed63dd00, 0xe6ac73b4, 0x65ab87bc, 0xb8c67e87, 0xa37b2f3c, 0x9b28bde5, 0x23c85b36, 0x5bd54c6c }, { 0x26d6bf5d, 0x93d633dd, 0x646635f5, 0xccf81d24, 0xa7cba11c, 0x817aed49, 0x5e0e3353, 0xccbe3e9d, 0xe02ddf0, 0x65928724, 0x31bd4ce7, 0xd2e7e0b5 }, { 0x426adf70, 0x637edd52, 0x450a457d, 0x4308fa43, 0x50b4c3d0, 0xc14e88f, 0xbdb2f916, 0xff2d8f13, 0x52d5955e, 0x9fb33713, 0xb68757a3, 0x3292cd71 } }, { { 0xaa4b8b91, 0xec970e07, 0xfd371521, 0xa0a71fd6, 0x1722c918, 0xe8163a2d, 0x772decd0, 0xa42ba5b, 0xfb40a746, 0x7eced9d3, 0xd83e1757, 0x1339ec88 }, { 0xf188f622, 0xc00f4a78, 0x3dcf7655, 0x5d127073, 0xfebbef0a, 0x127ea8c, 0xd8c659b4, 0x48ac84a6, 0xce9eb308, 0xb9922690, 0xd2273806, 0x7b77fa61 }, { 0xb425815a, 0x183f5c69, 0x2d28b07f, 0xe9339131, 0xa25b2c39, 0xa95d372, 0xa935b8e5, 0x4899b303, 0x79a3dc36, 0x6bc43752, 0x22bbf50a, 0xd6bb151d } }, { { 0xa1d2cf3c, 0x52c44f90, 0x93a6d4d3, 0x7f3b7f81, 0xb92f7cd7, 0x7851ceee, 0xccaa987c, 0x805920a3, 0x144eec4f, 0x417a0fa3, 0xf18809f4, 0xb41cdd6b }, { 0xf2eaa072, 0x52a2326a, 0x4eb30034, 0x34858f3, 0xabbba7af, 0x4cffb249, 0xc214567c, 0x294b0111, 0xcd146b0c, 0x8eafa00c, 0x73876184, 0x3b9f789d }, { 0x7b8ae79c, 0x4c1fd5d, 0x2ab28293, 0x1dadf544, 0xa926ab44, 0x786000ca, 0xa9df71cc, 0x1066d906, 0xb6120504, 0xd676efcc, 0x627636de, 0x7cf8ebf2 } }, { { 0xa963e23d, 0xd00932bb, 0xf0986d08, 0xb6730616, 0xd46b29a5, 0x4614243a, 0x29836da9, 0x61b5462f, 0x11c39bf4, 0x9303ddb, 0x521a4179, 0x1db379bb }, { 0xaa728e9a, 0x8eb2ec2e, 0x803616f5, 0x931406f4, 0xeafc4c5f, 0xe91a0873, 0x48bd370d, 0x9fd54e47, 0x4275645f, 0x119f1f77, 0xecfeb8ab, 0x26caf12d }, { 0x9bc98f6, 0x5ef8b09c, 0x810fb5c5, 0xef78d563, 0x7e35dbe2, 0xcfa76158, 0x58b81446, 0x726011a6, 0x65c58771, 0x39df2a13, 0x3845c80c, 0x37898976 } }, { { 0x611ae043, 0x4f7c65fb, 0xf4b24ca5, 0x69754a7c, 0xa14ee4be, 0x4cd90ce1, 0xc773f9e8, 0xec737a25, 0x3e4b8197, 0xdfd2c1de, 0xf76b7c79, 0x604e896e }, { 0x7056fa7c, 0xc734b8ca, 0x395f0535, 0xf4bed3b6, 0xf17f2e1c, 0x39322b9f, 0xeab0d1b8, 0xcc23c100, 0x63b23f43, 0xdfa1949b, 0x2ed97602, 0x323f82d }, { 0xd48f062, 0x5bcc3d0e, 0xf6564cee, 0x19e1e7d, 0xffbf7c3, 0x71f89e8b, 0xadce2e50, 0xf2b86f05, 0x8481dc18, 0xa96ae97, 0x1a97fe8, 0x710674d5 } }, { { 0xf47e9444, 0x47b8226c, 0x5459bc7a, 0xa6066e1, 0xf50c7ab3, 0xc3cfdcd5, 0xe6020532, 0x9c344b0e, 0x113b47e0, 0xb8f00a8a, 0xddf76e30, 0x7fb2bea8 }, { 0x54003066, 0x78ddf4f9, 0x477719c1, 0x65e35455, 0x5eb022e1, 0x16ba087b, 0xf8639255, 0xbb153d8d, 0xf167088c, 0x333d4736, 0x35d7fbd0, 0x37af359b }, { 0xbe6b4a04, 0x59d75c82, 0x76875c9c, 0x81bf5b80, 0xeced9747, 0x94853dad, 0xc6764425, 0x7f530444, 0x4cf70126, 0x5feb2a0a, 0xe0a64c47, 0xb9734c2a } }, { { 0x4a7f9809, 0xa12f7c24, 0xfe5c8c77, 0x762d45f8, 0x5f5a5031, 0xf81a29b8, 0xcd274703, 0x1bf12ed7, 0xdf48abd5, 0x4f89fdd8, 0x87ec13d1, 0xff7a6cf4 }, { 0xda2ffc22, 0x4e55f9db, 0xe19cc2d1, 0x8b7572bf, 0x7fc4cdf7, 0x5d6a0c99, 0xc3f63497, 0x3d78a433, 0x887f3d87, 0x4ffdfa11, 0xc8a5bee2, 0xd0916b78 }, { 0xab97463c, 0x15142ca4, 0x725a9933, 0xf3427d5b, 0x740ad980, 0x9bf4e26f, 0x9361da16, 0xce732936, 0x52e1b827, 0xe6063e78, 0x65d1f0f1, 0xc82a152e } }, { { 0x2945948, 0x2d57b360, 0x46c3f796, 0x275d604, 0xee405dfa, 0xb7a507a8, 0x6c121dc3, 0x76aa3bba, 0xe1fd76ed, 0xffc96b9b, 0xc8d26dd8, 0x1650069e }, { 0xd24c0af5, 0x5c4bb583, 0x5f07174c, 0xdb42f5f6, 0xb83ddd5, 0xfe5a67dc, 0x26b937e9, 0x181cd3a7, 0x203a2493, 0x624a0f3d, 0x4b8cefa1, 0xae155fd3 }, { 0xf59e61c1, 0xe7c3a792, 0x7f7407dd, 0xe44d8d0e, 0xa0ac9e18, 0xdedae037, 0xc2abb1cd, 0xe4826226, 0x2355027, 0x6a53485f, 0x7a121a7b, 0x48c69203 } }, { { 0xa5b267e3, 0xac003566, 0x921e1231, 0x2ad27359, 0x5340957b, 0xc38f8503, 0x4a5e74a5, 0xb1edd141, 0x5963856d, 0xf4f52c14, 0xcf5ec019, 0xca176f56 }, { 0x2c723a81, 0xdc3764cb, 0xd329c70, 0x7bc811a5, 0x2092c660, 0x64e9ecae, 0x5c6d90f8, 0x2a1e7d4a, 0x1544c304, 0x521549ee, 0x57a8e29, 0xb7b149dd }, { 0x965e2b85, 0x43103d7d, 0xfd23a2e5, 0x33324210, 0x9c1b7863, 0x533eb3d5, 0xd245160, 0x6ff6480c, 0x54570b35, 0xe1ae2f8a, 0x434c9aa4, 0xdd43dbe4 } }, { { 0x19ee589d, 0x8d995f1f, 0xbfea962, 0x941d4c5d, 0xe8118101, 0x6bf305eb, 0x5623d1ed, 0xedca4ab7, 0x7ad6e282, 0xd9b04ce6, 0xf9a13cd7, 0x4eceb29f }, { 0x685609a1, 0x692ae015, 0x8b36904c, 0x361ffc87, 0x298a4b43, 0xf6db5f8, 0x6758ff12, 0x9565f1ff, 0x8c6af22, 0xc8a1e28d, 0xc1c218bc, 0x769430b9 }, { 0x8240f263, 0x618b590, 0xca7d4b4, 0x57279e96, 0xf6534409, 0x6789951c, 0xc8a041a, 0xc999f59f, 0x90bcafa2, 0xd4c30245, 0x40450c6b, 0x97192904 } }, { { 0xef835a3f, 0xe33efce2, 0x613b61e2, 0xff4ea16d, 0x754dc9e3, 0xb9bdcd07, 0x5bb76156, 0x72064e47, 0x891e97ec, 0x33420e59, 0x917276cc, 0xd1dfd734 }, { 0xdc659829, 0x437c25e4, 0x73f192f8, 0xe8a2be45, 0x8d065eca, 0xfd272c6f, 0x9b829a89, 0x54872f0f, 0x27bbb52b, 0xbac29ffa, 0xa6b97e58, 0x946b38ce }, { 0x5287e6d9, 0x14de201c, 0xfd465135, 0x74423776, 0xfe75aaf2, 0x7a8faa0a, 0x97afada, 0xf9211bd1, 0x4265a8de, 0x3aea7602, 0x26f02d5d, 0xa513b7f } }, { { 0xbae0b952, 0xd8f2c87, 0x507c576a, 0x11e8fdcd, 0x8793fd34, 0x1c8e987c, 0x6003e848, 0xf10bf618, 0x9df343ff, 0x73cfa7d1, 0x29e2139c, 0xab7081f3 }, { 0xa3dd02bc, 0xc5ee9ca, 0xde6e4e6f, 0xb83821f7, 0xa28c853a, 0x704adc5f, 0x8fcb514c, 0x2ffb17b, 0x4a59d6ce, 0x31f2084a, 0xc556518f, 0xf40ba8ce }, { 0x89387509, 0x60853827, 0xff4cdb6c, 0x1345d180, 0x86952cf3, 0xf43b2889, 0xa47c7beb, 0x95667fd9, 0x25cc0118, 0x8eff4b0d, 0x69479933, 0x751981b5 } }, { { 0x5899b31f, 0xe5817835, 0xad420308, 0xb6ee1b51, 0x9d1caf95, 0x36b33bdf, 0x31cf2ead, 0x324a6d45, 0x36aeb959, 0x71a4aa0b, 0x5d13dd66, 0x3d2ac008 }, { 0x72d023e6, 0xc2e917c9, 0x1e66be84, 0x5c8d92d, 0xc1215ec7, 0xbd49da52, 0x9df2c9c2, 0x5e255c90, 0x6c02f690, 0xd860e09d, 0x9800c7, 0xbd5ef77f }, { 0x6347875d, 0x2d4bbe41, 0xae8a5284, 0x3a1ecf2a, 0xe199e38d, 0xae24bf6a, 0xfd4a3bf, 0xaf777df4, 0xde4da26, 0x251b243, 0xe6051ae1, 0x6fbb0eac } } }, { { { 0x3f630a24, 0xd92f5793, 0x33de5b5a, 0x3a937410, 0xd877aca2, 0xe62430f4, 0x13e6bbdb, 0xf640511f, 0x9d29540c, 0xeefdead, 0x70a605c9, 0x23a94ea3 }, { 0x447779bc, 0x6b2530ac, 0x1d0639ed, 0x476b7104, 0xff268b80, 0xd185e5fa, 0x527d6387, 0x700242c9, 0x2cabc43b, 0xc9324e8e, 0xa99f32f, 0xbc1d4247 }, { 0x3f77feb7, 0xbe045d06, 0xe1b219e2, 0x20bafcb3, 0x47628e1, 0x2a0d38ad, 0x733633b4, 0xcc930c1f, 0xbd8171c3, 0x3a463afe, 0x6995ded, 0xa9164014 } }, { { 0xb0308508, 0x672354da, 0x7967c775, 0xc1b93cc3, 0xcf88254e, 0x500044f9, 0x38e0ae7c, 0xd7bdbb8b, 0x3b9fe5ab, 0x5177ee8b, 0x782d9c31, 0x1a104c8f }, { 0x691364ea, 0x5520fc7, 0x896c41d0, 0xf17bad5e, 0x16e0ed23, 0xecd68d27, 0xa0048f77, 0xb08384fc, 0x7c356e54, 0x100dee09, 0x80bcca34, 0x6d6cdf2c }, { 0xd1b43333, 0xb75bc156, 0xd4895d27, 0xd772ccf8, 0x1a6587aa, 0xf1e7a4dc, 0xa876e981, 0x2f138a59, 0x7a7026c9, 0x5bee01ea, 0xc424189c, 0x79b28e38 } }, { { 0xb0d87b29, 0xcd2ec601, 0x1ea4a489, 0xfad6b5e3, 0xc9c6c28f, 0xacaf3eb6, 0x8fb03c31, 0x2b3ae660, 0xc9602e94, 0xf8913a7d, 0xa751b49, 0x915935ec }, { 0xfda4939b, 0xca4f5b05, 0xa4c79592, 0x30ec17b, 0xb28bab4e, 0xb8ff8a9d, 0x59776faa, 0xc119aeff, 0x540ee58e, 0xbfbc5485, 0x507598bc, 0x344e0c6e }, { 0xf0848a18, 0xf2ba6113, 0x83ecc73, 0xcefddbeb, 0xa1a92455, 0x2c6fdcb7, 0x81b63bf1, 0x10af5b11, 0xf78db7da, 0xb014ba44, 0xa93c24a, 0xb1a2ff2c } }, { { 0x1cb48835, 0x50f80476, 0x87de0095, 0x30f08dc6, 0x1a9c8d89, 0x1fff34e2, 0xaaccba1a, 0x74e7d316, 0xaece8d58, 0xf1d26f66, 0x96f0a41e, 0xa1bd7d77 }, { 0x5372fa7d, 0x4cbc1164, 0xe75cd1e3, 0xcb192fc, 0x6f6ca463, 0x7b45d614, 0x74d09345, 0xddacaf50, 0x117e15fb, 0x4b2522e4, 0xbc7d8323, 0x1f3c6002 }, { 0x77db1036, 0x461f18bd, 0x74ff125e, 0xb80d3ecf, 0x2f58ca19, 0x75ed6c7c, 0x45ea6dcc, 0x6f0cfdd2, 0x432d9c40, 0x9f0d463c, 0xe2f969af, 0x95065eb } }, { { 0xc1379b18, 0x5c702120, 0xcd9e06e9, 0x324c8418, 0x49c674ba, 0xb079dd3, 0x7f8dc237, 0xc30c178e, 0x6ad77a5, 0x8aa57197, 0xc3783b39, 0xb4ce45b0 }, { 0x7fe44a6d, 0xa6aa1804, 0xa0d9f8d0, 0x5e47f3fd, 0xbbcc0b43, 0xd67f7800, 0x9211023, 0xf333d280, 0x4cd7e174, 0x5cc360ed, 0xcf7c4080, 0x62564673 }, { 0x583c85b4, 0x9b92871, 0xcbceb537, 0x99fbcc0d, 0x7c92d8ac, 0x65b599d, 0x37bc120e, 0x61ae102f, 0x4ca68388, 0xf9bba7d9, 0x7e690cf7, 0xcc6753b7 } }, { { 0x7e03cc4d, 0x17bd9647, 0xda2e9cb2, 0x7357b4ca, 0xdc798ac2, 0xa6760d4f, 0xb1dedaca, 0x12c00e56, 0x555aec6b, 0x32bd0070, 0x4015892c, 0xb64c2dd7 }, { 0xb2f3515a, 0x74d584b, 0x40523e9c, 0x17297610, 0xa691adce, 0xfe953c3e, 0x1eb87027, 0x4a86f805, 0xd2f1c320, 0xc84cd5ee, 0xf9825c23, 0x4a2f6b82 }, { 0x64fcb063, 0x5adb0121, 0xbb736159, 0x2c36ae75, 0x11d287b9, 0x9206b8d4, 0x84690578, 0x25119599, 0xe26ad0fd, 0x80748dcf, 0xd9023e4, 0x29b1631a } }, { { 0x2d0ce64f, 0x59ff2932, 0x9034b1c6, 0xe7de47d7, 0x36da8e0b, 0x359ec17e, 0x39f0f6d9, 0xf54f9d12, 0x4ae89db8, 0x7fcfdf13, 0x53184a5a, 0x2b772d6f }, { 0xf84cfae4, 0xd56e2c8c, 0x5d256414, 0x623f86e3, 0xeed2f7af, 0xd74ec156, 0x59f8b48b, 0x4c34672c, 0x2ff7f45b, 0xa69cc63f, 0xa09dca17, 0xce79970c }, { 0x101aad75, 0xd311e773, 0x6e3bc8a8, 0xddea0818, 0x73b2ac0, 0x94d8bc75, 0x7fdb8371, 0xf42d6728, 0x32305428, 0x4854dd4b, 0x3c0d337f, 0x93a16ecb } }, { { 0xd8bf2809, 0xcaa9ddaf, 0x2cc14d1f, 0x5c1cca39, 0x7e26216d, 0xc7ad8005, 0x9b0df553, 0x6eebe947, 0x5f0c1362, 0x9a58c937, 0x6466a30b, 0x2bda2349 }, { 0x4800f71c, 0x47a7c5b8, 0x751a4a9c, 0xbcd7345f, 0x3eaf8e52, 0x14a1032d, 0x432fca57, 0x2533d5d9, 0x4800c8ce, 0x387b4ef9, 0x3426de06, 0xba720d87 }, { 0x44099dc3, 0xfef19472, 0x4525dc29, 0xdcf0f8e3, 0x986e8378, 0xaaefc480, 0xa16dbbe8, 0x36b615ec, 0x66cf6f6c, 0x23d9554b, 0x4b737495, 0x9d16f4fd } }, { { 0x7d664d13, 0x2cccda9a, 0x9e9569b9, 0x4cadba31, 0xde4b1f04, 0xea7f20d5, 0xc04666b6, 0xc80f91f5, 0x86f779f5, 0x1c8cf665, 0x4db051de, 0x784171df }, { 0xfb06ab4d, 0x513e1a70, 0xfe815629, 0xf1ec65aa, 0xba2e207a, 0x91243887, 0x297582c3, 0x62b05da2, 0xd0049dba, 0x5447fc16, 0x9011a4eb, 0x2b57baf7 }, { 0x4c5eae27, 0xbd9074f5, 0xce34ca08, 0xb3c3a0c3, 0x8986d6af, 0x341e5c21, 0xd7051c86, 0x1a4d5855, 0x4af3175f, 0x622bc20e, 0x48c9f5fc, 0x7c187a51 } }, { { 0x2ffb39a, 0x4484e262, 0xe93f8ced, 0x2b51d559, 0x2da22997, 0xf1966bf1, 0x72cea1df, 0x8d28f884, 0x1d3a8d81, 0x6cbc246d, 0x92dee7bf, 0xf7beba59 }, { 0xeba3a5a9, 0x61024845, 0xc71dfa0f, 0xdbfc3f8a, 0xc4e6ed52, 0xeacf209a, 0xfc9ccfaa, 0xe862e16d, 0x8c51faf7, 0x8f6bc4a6, 0xe376327f, 0x916e7eb0 }, { 0x32eda959, 0x5d28ad97, 0x6d1e0350, 0xfa2b134b, 0x3c105b47, 0xe5b37da5, 0x9881532e, 0xe0ef4df1, 0xafcef0b3, 0x959ca8d, 0x5abae086, 0xb9c21405 } }, { { 0xe41cedc2, 0x1619309e, 0x5764ae6, 0xa734a10a, 0x569ce5e6, 0xad34e749, 0x3fababb7, 0xeae4915f, 0x15ff383f, 0x43b4c5fe, 0xb0a0998d, 0x92280943 }, { 0x568637e9, 0xd4f24e24, 0x541e90a3, 0x8a60a456, 0xe7ae8b7b, 0xf7021c2e, 0x8149071a, 0x179d201c, 0x4fa09072, 0xf64227b, 0x5fd12f7e, 0xc2f6259c }, { 0x95845159, 0x68b783b1, 0x435b0e96, 0x2458eaca, 0x275329f9, 0x3facbd01, 0xcb26e4db, 0xba21da67, 0x8521768e, 0x4eb045a4, 0x15a58f37, 0xf80f6751 } }, { { 0x54155625, 0xb709bf23, 0x86907d80, 0xdeb1c241, 0xb5f06121, 0xef6dd4c0, 0x320e2632, 0x54e9a5cb, 0x991e5624, 0x35f416e4, 0x3d77a62, 0xd044999f }, { 0x722ee364, 0x769543ba, 0x576841ac, 0xd3b5e4e9, 0x81775fe7, 0xaa368e3c, 0x76575668, 0xf7c0fdc7, 0x5fc135e6, 0x155c5141, 0xfd4b33f0, 0xddb80ccd }, { 0x1757c840, 0xa49931a1, 0x5d439cb7, 0x69faad68, 0x2d0059ac, 0xad63f55a, 0xc19e764, 0xa23e0efb, 0xce55ceeb, 0x139d5e5b, 0x7c79fa5f, 0x63740146 } }, { { 0x7f082455, 0x74ec78f3, 0xf158cc94, 0x810aa90d, 0x493593a9, 0x3455c6f2, 0x9697b224, 0x80d0c23c, 0x8a9b9fc9, 0xb84f40d9, 0x9e1b4108, 0xe5db0c98 }, { 0x29389e4f, 0xc5d812c8, 0xa6eca005, 0x151f2f43, 0xba89d9ef, 0xcbabdc69, 0x201e6eb4, 0x81c6af34, 0x712f79c1, 0x12b334e7, 0x5aec19d, 0x98ad7ec1 }, { 0xa3366e65, 0x9728263, 0xd5efd289, 0x33c5bb78, 0x7c43632a, 0xa7d00104, 0x10731cd1, 0x9f32048f, 0xb70bc7a1, 0x6959a8a1, 0xa62bcbb3, 0xef84c0ed } }, { { 0x8a347e82, 0x9839d11f, 0x3085547f, 0x9abcb29b, 0x958c3614, 0xe71ba047, 0x52a874ba, 0x43ceb993, 0xa1fe0eea, 0xadfc5797, 0xde4c1b7, 0xea1d100b }, { 0x38921025, 0xdf14ae68, 0xef388484, 0xd11f5914, 0xd6aaae57, 0x792364c0, 0x1cf2a2c6, 0x4a1fd7fc, 0x7835e2b7, 0x434315d8, 0x2404a6c5, 0x271efb42 }, { 0x716f896a, 0x974355db, 0x895941e1, 0xa0e156c8, 0x2d71e528, 0x40585a92, 0xedb45c30, 0x73732b73, 0x48904676, 0x76f34a5d, 0x398da2ed, 0x2dc055e2 } }, { { 0x3547d6c5, 0x3c3a8131, 0x5b9d7bef, 0xd274264f, 0xbde4d2e6, 0xab9afdf, 0xfaf20672, 0xefc6c7f3, 0x3239cc1d, 0x8bbde9d8, 0x2358f429, 0xe3454692 }, { 0xd5bcfef8, 0xfb2660b0, 0x84a9ee73, 0x8d8962af, 0xd47d7a6, 0xdb1b8a3f, 0x3f75460c, 0xea58fddb, 0x3920b5be, 0x90e94ee4, 0xab36cd4f, 0xdd127d }, { 0xbcdd852d, 0x116461e3, 0xcef1a0f9, 0x86979705, 0xe726dd95, 0xdd6d3f84, 0x79aa22af, 0x14c131e8, 0xc114972f, 0x78f86b46, 0x55e6ebaa, 0xc9653177 } } }, { { { 0xfef60b2c, 0x1b7c8daf, 0x2feba9d3, 0x76a1821b, 0x2d92f41e, 0x628abe4a, 0xb1873427, 0xdd7c1543, 0x85afee34, 0x0f0fb9, 0x4a6ba3dc, 0xd92063b5 }, { 0x48c4a69a, 0x8b201482, 0xe9ee9a7b, 0x7b9c650e, 0x557397cf, 0xa3bde7b3, 0x21dd5f6e, 0xdaf98ce3, 0x7daffb8a, 0xf09595aa, 0xc43427e7, 0x3bb24097 }, { 0xd8c9f74e, 0xb75efb44, 0x615f47df, 0x2612a5b, 0x2e4157c7, 0xd6f10458, 0x16d3754f, 0x6202acbb, 0xd4aa0ed2, 0xaa5af959, 0x5933860c, 0xaf850e99 } }, { { 0x88862cf, 0x2eb04c04, 0x1bfc7145, 0x3292683a, 0x4bc62948, 0x96145f2c, 0x4bde6f11, 0x6ecdfb90, 0xd070d336, 0x74eecb1b, 0xb7a7076d, 0xa8090134 }, { 0xd0cc86f6, 0xf7e3ac6f, 0xe9458d8d, 0x4d2d9eb9, 0x8e40b22, 0x59349a36, 0x5e5df230, 0xcb9819c9, 0x41d0dee, 0xde83aa90, 0x962991b, 0xa43cbf7b }, { 0x178aa771, 0xd5bac5a1, 0x9fc0af80, 0x83373c9, 0x94631ea0, 0xd3fa0753, 0xb6c9c2a0, 0xf42e85bb, 0x26c70e1d, 0xcae109e6, 0x3580c435, 0x418a2a3b } }, { { 0xa9b4d1c, 0x9372ab3c, 0x4b84233d, 0x268feeee, 0xbdfbe8cd, 0x7aa32130, 0x113ba50, 0x266d8c47, 0xbe65b9f6, 0xe78ed0bc, 0xe871fb7f, 0xd472b12c }, { 0x6ebed866, 0x3892e2fd, 0x99ea82b3, 0xf01628a8, 0x4e6496f4, 0xc22f25b9, 0x552d8d1a, 0x56c095e7, 0xfc855c94, 0x26c02bc3, 0xe1a2d82d, 0x3cc01000 }, { 0xca971ee9, 0x32d41a77, 0x20c01aa1, 0x96a9d8e1, 0x443dae92, 0xa19acd01, 0xf781266d, 0x8ca3abd, 0x96556ff1, 0x670e03f4, 0x385aa20a, 0xa93f822b } }, { { 0xb5de4753, 0xdfb7a3af, 0xbfba604a, 0xea5974e9, 0xc63a5a31, 0x686503ad, 0xc5463449, 0xaa2a11e4, 0x6d37c31e, 0xe3139e2a, 0x4fc6f728, 0x50edddb9 }, { 0x795340a9, 0x73e4edb7, 0x36325f4d, 0x24203d60, 0xed7fcaf3, 0x9facec6e, 0x4315f7f3, 0x64c4df0c, 0xaea075b, 0x9637c3aa, 0xd186a54, 0x91db9965 }, { 0x3a23300e, 0xc4f9ca79, 0xc4bce89, 0xa7ed8bd0, 0x942405e7, 0xd967f9a0, 0x3cd1f0c, 0x43d65a90, 0xeb9581e9, 0x204e5831, 0x48cd6d17, 0xd29cb72e } }, { { 0xb8230957, 0x3150927, 0x47022d6, 0xd5aa6097, 0x9c9904d0, 0xdbf6abe1, 0x65ca07c0, 0x86916b29, 0x78b379df, 0xe91d609a, 0xc99618f1, 0x64513211 }, { 0x2d70ee4b, 0x6e14956f, 0x887d65ee, 0xd73c3fba, 0x25b86f61, 0xef0734c4, 0x7fe36fc1, 0x3010a9bb, 0x4ad98f5, 0x2dbc6e87, 0x6678190f, 0x3c89556d }, { 0xb08032de, 0x57fee327, 0x308455f0, 0x194c3638, 0x8ba73abb, 0xb4f28d2e, 0xbcce35ed, 0x2905383f, 0xc7d296d2, 0xe3410100, 0x89f1a3e7, 0xb299e970 } }, { { 0xc079f066, 0x41d95f4e, 0x806aed20, 0x95660eee, 0xdfc713f5, 0xc9394fd2, 0xf9ccd4ba, 0xaad5fd46, 0x538c75a, 0x750a1cf7, 0x9178ffa, 0xcf5d0dd0 }, { 0x5301ae9b, 0xe9eb248, 0x86009bed, 0xa8df0035, 0xd94e802b, 0xe3aa6271, 0x3c891509, 0x64a233fa, 0xe138af0, 0xfa5a3e04, 0xcb3201e0, 0xb577681d }, { 0x593840b5, 0xfc5daa2, 0xa013340a, 0x9dd2678e, 0x92c2b765, 0x43307916, 0x63817bc6, 0xa401028d, 0xc1b8572d, 0x84ed99a6, 0xafe5f173, 0x984958a1 } }, { { 0xe0b9a3b5, 0xcf65a0ea, 0xc9c97690, 0xf55babc0, 0x5c47de7, 0x74e2ad92, 0xe5f9b061, 0xb8e91d5e, 0xd7471eb2, 0x1b1eee53, 0xd733dc7d, 0xd6a05353 }, { 0xf5db2abf, 0x6b2ee2a0, 0xaf13917a, 0xa4280fb5, 0x4798a59, 0xa720f5d8, 0x118b086e, 0x9b315f42, 0x78274f0, 0xa03a82a0, 0x10adfe7d, 0x730e993f }, { 0x9940279e, 0xba91f6ba, 0xeb87f69a, 0xc3720ee1, 0x67c7afe7, 0xf6a62ee4, 0xbeaf65d8, 0x6c3a6806, 0x4ff62020, 0xcaacae79, 0xb5a5dd2, 0xd36a19a7 } }, { { 0x8326c33a, 0xbd7822c, 0x4d5c78c7, 0x53bfed11, 0x2162b58b, 0xd1ee2e49, 0xacf9b022, 0x63e37d87, 0x6f4d282e, 0x3fbcdc29, 0x840bd815, 0xe44029e1 }, { 0x9ed3c405, 0x36f9f9cd, 0x31ed24e7, 0x40738a0e, 0x3636f7bf, 0x9363d8d, 0x5d52b8a3, 0xf7727d86, 0x6074a663, 0xe7b134b7, 0xfe63146d, 0x5199984 }, { 0x9c13b775, 0x135834fa, 0xf1bc212e, 0x2cf80ff5, 0x936a27f5, 0xd72b9866, 0x273c870c, 0x2afb1a7d, 0x3ffbd16d, 0x5d8fd80c, 0x5bb3ad7a, 0xb9584c26 } }, { { 0x22071195, 0x9fb39f62, 0xf4d5618b, 0x28988bfa, 0x2b4db930, 0x79e08ae9, 0xf4f0753e, 0x597b0a1f, 0xb5a03d0d, 0x7a5288c2, 0xd3cca833, 0x33b33a86 }, { 0xc338ae53, 0x642e0971, 0x20c5e96c, 0xb6d40b4b, 0xf7e28094, 0xf9e75721, 0xe2dfb3de, 0x104bc487, 0x1e0cc95, 0xa2042c11, 0xd890faf0, 0xc04a0178 }, { 0xdd1029ff, 0xf47dec22, 0xefd61e31, 0x56675611, 0x5ba533ef, 0xce0d04c3, 0xc102aba5, 0x134b696d, 0x1095ff28, 0x31ae6865, 0x2acc3c5, 0xa4f4d613 } }, { { 0xdc52e852, 0xb8eed201, 0x656d204e, 0x8bafa051, 0xbf5fd60a, 0xcaf55589, 0x21269a38, 0x8c802bde, 0xab02a27f, 0x8e697570, 0x26c0190d, 0x17be4c0 }, { 0x1bb31700, 0x72dd1be9, 0xdbb1d119, 0xf0bcea3f, 0xeea40c74, 0x957084ab, 0x5b8a17f5, 0x94068411, 0xf8269dfd, 0x326b68e9, 0xda369047, 0x837d784a }, { 0xa6f10993, 0x5e593434, 0xd0bef743, 0x259e0455, 0x8a1d2d1b, 0x6f4fd85e, 0x7e73d986, 0x88c215b2, 0x7302cd66, 0x5bc95a36, 0x52a00f69, 0x1eaa67e2 } }, { { 0x15de7701, 0x67291ff9, 0xa917d4ea, 0xbe906765, 0xe1ba18da, 0x21a50c34, 0x70068927, 0xe7f67ae2, 0xc54e539d, 0x22f5db4, 0x23cb3c73, 0x806fa678 }, { 0xf1d708c0, 0xfb25dc28, 0xcdd77a9a, 0x3b897950, 0xbebb188f, 0xa0b62bdf, 0xb0aa06f2, 0xef574358, 0xe8f9fe0, 0xfac30ac2, 0x2b711a75, 0x5a8173ac }, { 0xe4d55386, 0x96f2907f, 0xec966c90, 0x8699a14e, 0x9efc5ec8, 0x1690c7b7, 0x93dd526a, 0x5d4518d1, 0x94a3c9e2, 0x73509a29, 0x248298c2, 0xa90a773e } }, { { 0xcc591e7, 0x76d7cdb1, 0x9fa6aeaf, 0x506acb6d, 0x23a2b755, 0xf0f74bae, 0x7b2c2086, 0x384c71c, 0x5a9bb90d, 0xfb849487, 0x7822a103, 0x87f9275c }, { 0x14cb6e51, 0xcf5b61, 0xf8d18faa, 0x1b3df847, 0xf9a06d44, 0x99d47368, 0xfde661d7, 0x14ff8243, 0x9fc5e334, 0xb1b9c570, 0xb11b0482, 0x9eb271d }, { 0xc2429f1, 0xc742bdc0, 0x518d10ef, 0xd900d2ba, 0x397761f9, 0xced063e0, 0xaeb66843, 0x11e19b0b, 0x6a7ecf76, 0x29c5aa06, 0x2026f777, 0x4fc6096d } }, { { 0xb23ab2d8, 0x45f3e7d2, 0x9658bc2b, 0xb9d25432, 0xb49a9eac, 0xc519f4c4, 0x5026a7cb, 0xce127a61, 0x6c6c39cf, 0x2cfea081, 0x52b01dae, 0x437541f0 }, { 0x9e59578e, 0xa8d17d60, 0x98c873e6, 0xf1a3b9f8, 0x5fec1a9c, 0x7abb14e6, 0x96d3700c, 0x7ae9e9fe, 0xcecee968, 0xc1619566, 0xbd8b2831, 0xa0fc7cd4 }, { 0xbaa14c2e, 0x2bec408b, 0x1060e772, 0x655cffbf, 0x4544e358, 0xa82d0e34, 0x6d85f04e, 0x11e9e70f, 0xe266367a, 0xecfe1e03, 0xe7fe1599, 0x359fbdf8 } }, { { 0xe715e4ee, 0x9e44143d, 0xb8d4535, 0x6e062c8e, 0x3d5a4fd3, 0x4c8c938a, 0x494538a5, 0x53bdff51, 0x73d70fac, 0x6dd478bb, 0x3e360755, 0x23dec934 }, { 0x5b6b9d23, 0x45a59544, 0x8a099115, 0x8591b0d1, 0x55bd930, 0x8eb0de25, 0x96b95de3, 0x69e837ab, 0x6b050d15, 0x7a2b6167, 0xbbff0438, 0x910b9cd8 }, { 0x48cd478c, 0xcf4552f, 0x15a34578, 0x6fcbd9b1, 0xbfcf2b65, 0x94e50a1f, 0xa48f179a, 0x608cef3d, 0xda848091, 0xd549ee87, 0xc22cc92d, 0x29f00560 } }, { { 0x49b935a2, 0xafc4ac2c, 0xc958c83, 0x5ee5789e, 0xa70f0d9d, 0x791ab05b, 0xd85c4236, 0xdcc5ee92, 0xdc96be58, 0xf7d43147, 0x63139a2d, 0xa1b9dff5 }, { 0x7896e46f, 0x5c0f334f, 0x8d73af0b, 0x7d3f51e5, 0x21f4bab4, 0xfabc99cb, 0x4f0f6e0b, 0x49bb5abf, 0xc52cc299, 0xf656f788, 0x529c16e1, 0x21f969c6 }, { 0xf9c4cbe3, 0x2d53f869, 0xaaa60571, 0x1329140f, 0xf783cdf0, 0x675f9c49, 0xc88e0876, 0x1988e241, 0xac7adf01, 0x945a73d2, 0xd0d6b755, 0x89e50b50 } } }, { { { 0xf8a0d04f, 0xb0d9109, 0x4f730ec, 0xb4ec5061, 0xdc3c01a2, 0x2abcfb70, 0x1b4ec76d, 0x791caf80, 0x5d527450, 0xc0908a3b, 0x4be16699, 0x44c9c6a0 }, { 0x46d9ef8, 0xf2db5d94, 0x6e6fa416, 0x63cc6e64, 0x40fa9d51, 0x1c748d34, 0x81496a03, 0xe6273c86, 0xc57683d1, 0x2726336e, 0xb2cfb9a0, 0x7306975b }, { 0x50b63052, 0x299734f6, 0x37f6fc82, 0x55b53b88, 0xf1d3bd15, 0x91c9dc58, 0xa4515193, 0xc5990c67, 0xb03d2ed2, 0x1c85756b, 0x33571b33, 0xceb00ca3 } }, { { 0x8f39bfd3, 0x53149817, 0x9c9c49fe, 0x4af601d3, 0xc919f710, 0x7fc44d96, 0x5cea670, 0x4bba7808, 0xe4565cd0, 0x726d1e06, 0x4b08c1a7, 0x3184c768 }, { 0xbe442e78, 0x39fbd598, 0x50486f8f, 0xcabcd77b, 0x3d8a4627, 0x7dfebbf9, 0xfcac6b61, 0x16ef23a8, 0x33634b22, 0x65a3cb37, 0xf389b81f, 0x9501575a }, { 0xaf9372f, 0x865f4dd8, 0x5d303602, 0x8d7e7b5c, 0x6ee469e1, 0x350ad1f5, 0xbff58186, 0xdf90ac9f, 0x5c865c01, 0xc1e5f917, 0x5eaffac0, 0x624b53fe } }, { { 0x446c9dc0, 0x4fde591b, 0x615a798a, 0x375c6c04, 0x987ef34e, 0x213bbac7, 0xbbd43c42, 0x2f1a9341, 0x102441be, 0x800b9ab7, 0x2a0eb6d, 0x3479efd0 }, { 0xded02e2, 0xf6a431bb, 0x8f87cd82, 0xc090e93a, 0x9a3ad33a, 0xc0de7241, 0xb52eadd, 0x1db43f6c, 0xc6de9319, 0xa1ca87ea, 0x71247021, 0x98e59222 }, { 0xca04ab4b, 0x5e3e14dd, 0x3c6033a6, 0x1374738c, 0xc5345bfc, 0xecef19f6, 0x18fccc42, 0xf40bb330, 0xc12d0b9d, 0x89cfc64a, 0x797958bc, 0x5e97ce16 } }, { { 0xad2a84b7, 0x811902b0, 0xf1075bfe, 0x825f2527, 0x83a26dd9, 0x6dd32128, 0xb011080d, 0xda6c8fa, 0xf4d3cac9, 0xd4c4c3c8, 0x15b181c3, 0xb38d6a4f }, { 0xfc876430, 0x4f2fa7e9, 0xb4643e8c, 0x20cd267a, 0x99278076, 0x34024d87, 0x6956a10a, 0xd0a08791, 0x3d30afe2, 0x2aaec0e3, 0x4d4e499c, 0xcec5fe5 }, { 0x48734d56, 0x5ddd7858, 0x605ea531, 0x23f2e9a, 0xe3bcaf01, 0x29e3e057, 0x9d349a30, 0x569b868a, 0x208a3eba, 0xfcc979e6, 0x287c8fea, 0x941f755f } }, { { 0x5871b7d9, 0x678ad30e, 0xda167d0a, 0xa66827b, 0xd42f13c8, 0x2978b9ac, 0xbf1a2676, 0x28c1223c, 0x40b138ff, 0xadc6f2a5, 0xefc0f809, 0xb5f0beee }, { 0x787827ce, 0x1ac9d3c8, 0x56e1b135, 0x7380fb8a, 0xb69058aa, 0x937f4888, 0xc4675bd1, 0xca9bf430, 0xdcc685b8, 0xc88fac9a, 0x1c539f39, 0x90f9bee6 }, { 0x578b9827, 0x9539ca57, 0xb6c9d267, 0x5ff90854, 0xca0fd94f, 0xf8bbabc3, 0xfa617b36, 0x1252d916, 0xfa5bff35, 0xfdce3728, 0x3ea70189, 0xc4ddc561 } }, { { 0x24941315, 0xa1b3e489, 0x24f39d1f, 0x5d28f656, 0x1469f919, 0x15d32e6b, 0x5128f438, 0x3f7a3fc7, 0x5c72e4e0, 0xf3b33907, 0x1b7b96d8, 0xbdc22833 }, { 0x47e1feb0, 0xf1fe7979, 0xaed4d920, 0xb1b658a5, 0xf5a646a3, 0x81852bd5, 0xed7c084c, 0x498918b1, 0xc4236d91, 0x6fa05b21, 0x59576813, 0xa6256b10 }, { 0x7a1b48c7, 0x19ce03e7, 0xee8f7c71, 0x2e4803c7, 0x1ce72636, 0xd49dc6a2, 0x71245451, 0xcd0cb3ba, 0x18360a24, 0x50fe8b57, 0x576a7df4, 0xb2615c7a } }, { { 0xd7e6db04, 0x21e00c3d, 0x7e5a4c96, 0xa9588ade, 0x7e1145b2, 0x2904cb57, 0xfd323c4b, 0x1e1afc80, 0xa6f7c8a9, 0xde0da2b9, 0x659d8c6c, 0x26e1236e }, { 0xb54718a3, 0xa4190669, 0x63225cac, 0x26565157, 0x8c65cf97, 0x301d5a4c, 0xb10eced0, 0x328f6eaa, 0x7aa1b6cd, 0x973086e, 0x93eb7bdd, 0xe74444ab }, { 0x92df3adc, 0xb197e8df, 0x64e22d00, 0xbdffc36b, 0x80dc2b5c, 0x5cee9ee1, 0xdf0ce2e7, 0xf333e2eb, 0x92804609, 0x51e89c1, 0x9de6d3cb, 0x34a9cdf2 } }, { { 0x4732d7ee, 0x97c9854e, 0xe2cd698a, 0xcbfee967, 0xd191f467, 0x63fcf227, 0xc250fcf0, 0x51cb3957, 0x4c481b3, 0xca59c300, 0xc9f70dd2, 0x839b821e }, { 0x5adbbf7a, 0xdae2cb35, 0x7310f934, 0x86f82cc0, 0xd764b074, 0xee79afc4, 0x1f1da60d, 0x68e64f06, 0x903cafde, 0xa93c857a, 0xddf3daa2, 0x140b5717 }, { 0x6790daf, 0x4979314e, 0xc09c09cb, 0x3ba4f471, 0x190d06e1, 0xa19e862d, 0x11b1e2a3, 0xa841a77d, 0x8710b7c7, 0xc62350a6, 0x440a99cd, 0x4a97bee3 } }, { { 0x53707bf3, 0x4da4f9e6, 0x1c3b8963, 0xcf8e1846, 0x2ebd027d, 0x1b62e7e1, 0x5ad00db3, 0xa19cab68, 0x6c012e9e, 0x895c149d, 0x1deb3b60, 0x26b4fc14 }, { 0x716788f3, 0x22138df5, 0x71a6e8a1, 0xd2737e62, 0x39f9b6d8, 0x6aff5429, 0xd1b8dda3, 0x52c1fc38, 0x157495c1, 0xbb76b374, 0xbd8ad385, 0x1bb55cf }, { 0xccf07019, 0xc3d7b2f3, 0x67c43b2b, 0x205d1687, 0xbd410bd0, 0x5e42bab6, 0xbc6485aa, 0xd0635378, 0x6a0f02d6, 0x35a581a1, 0x74b4f756, 0x7a9aaaca } }, { { 0x4385de72, 0x618d3d41, 0x78a24293, 0x38abe2f9, 0xca7c32a5, 0xde51c5b7, 0xbe58f2a8, 0xb47d95aa, 0x767c4cee, 0x727992d9, 0x88161bc9, 0x875d8c36 }, { 0x72969b78, 0x766c0f80, 0xcb4fc62f, 0x7fe42731, 0x43237d6e, 0x7382a8ea, 0x3eb3c18d, 0x678f6dc, 0x12667618, 0x16fe310a, 0x45fd7f79, 0xa46d72ca }, { 0xe100e902, 0x75ec7822, 0x1899a0b2, 0x536d4f75, 0xf0dec1df, 0x289a64cf, 0x8e5252e, 0x6999ee1d, 0x48c1748d, 0xd851d1e0, 0x1bc26a19, 0xdc37be1c } }, { { 0x73f84c94, 0x308c422c, 0xb574f0b3, 0x691065df, 0x528f9df5, 0xd7ea5631, 0xf1463e7a, 0x60ca15ae, 0x65aa4e94, 0x4ec2401b, 0xa6e34fa4, 0x58c9775d }, { 0xbbb4defa, 0xb99c630f, 0x738b9596, 0xedeb7ee5, 0x1c34758f, 0xfc5f1662, 0xbba87585, 0x11db7a5c, 0xcc878b82, 0xc737ae1, 0x20bdf313, 0xc0fda1a3 }, { 0x91a41c13, 0xa89a70a9, 0x8e48253b, 0xde81bb40, 0x4f17da8b, 0x3bdefa5c, 0x2dc1ae7e, 0x7f22eb13, 0xf5402f1, 0x95dc7824, 0x34e9dbe1, 0x7643b792 } }, { { 0xc67b2569, 0x62c041af, 0x7aaf788, 0x9f53c85f, 0x324c5a09, 0x8fadcc8, 0x25eb8c4d, 0xc6bba1c0, 0x981fa496, 0x8834228a, 0xf3b044a4, 0x94c75b7f }, { 0xf601b42, 0x6e6729de, 0xaaa0f06, 0x8065e5bc, 0xa18a195b, 0xf310887f, 0xa2dae23d, 0xeb9b2d14, 0xf44e014c, 0xffc6aa2a, 0xf1ffb971, 0xf7621f4c }, { 0xcbd160ac, 0xe24ccbb0, 0xbdd2ceb, 0x651f8405, 0x22af1997, 0x57e8e8ec, 0x7c8591c5, 0xfb7e4c10, 0x997a65b4, 0xb96f1f4d, 0xe3f6b6f1, 0xabeaf091 } }, { { 0x81e9f2c8, 0x51c6b45c, 0xc25e2040, 0xe1f1dca8, 0xe3bc9e28, 0xbbe2f31c, 0x56220463, 0x384cad56, 0x62ce649d, 0x462dc112, 0x89342fc8, 0x17a5312a }, { 0x3839bc2c, 0x589d2192, 0x57bc89b1, 0x853c79f2, 0x975b045b, 0xdd77b52a, 0xce6a3fd3, 0xc915a79b, 0x5073dddc, 0x44a044b2, 0x411fe934, 0x3eac4a42 }, { 0x83e3c7c0, 0xa8709775, 0x11184b46, 0x28086f79, 0xfc3b81c, 0x6dcc481d, 0x9ff6c832, 0x43dd6a49, 0xc724f066, 0xcabdddf1, 0xbc72a5bb, 0x9b1b69af } }, { { 0x6a6c2b46, 0x244b485b, 0x303f0229, 0x3f7aa598, 0x113512ea, 0x50ba8c4c, 0xd4831875, 0xd3e5bada, 0x63661a6d, 0x884c1619, 0xe1178d32, 0xa55a6453 }, { 0x73e4127, 0x65ef0e62, 0xa3ec4966, 0xca9ad1cd, 0x612a832f, 0x6a9209bd, 0x70c450ee, 0xbed18e2a, 0x3ba5b2aa, 0x61cd2467, 0x57dabd20, 0x8f145527 }, { 0x4eabe225, 0x39f0bd1a, 0xd271a1d9, 0x62b33ac0, 0xec01d2bb, 0xfa4eec1f, 0xe5267192, 0xd543cee4, 0x403ea00, 0x48303b56, 0x433e763a, 0xe9d00d0a } }, { { 0xef6f220e, 0x601d24be, 0xfe92470f, 0x6728c406, 0x82d85e09, 0x11f7caf2, 0xa7c30608, 0x75f94870, 0xd40f1bf7, 0x304b46a5, 0xb9404603, 0x3bb9b86e }, { 0x1558e216, 0xd9c4360d, 0xbb897361, 0x82c5d95, 0x7081f22e, 0x1afd87f3, 0x98c063a4, 0x9becfcce, 0xb55cb6a2, 0x51019cfe, 0xe2654faa, 0xdb050c44 }, { 0x19b2ff52, 0x481b0575, 0x765c132d, 0xcfefca62, 0x1481b53d, 0x2776b691, 0xcd0ea280, 0xf5820c44, 0xefc41787, 0x3962b990, 0x38a7c621, 0x565322d2 } } }, { { { 0x7b35d42e, 0x10578f29, 0x9cf75829, 0xe2772b1d, 0xc23d7a9, 0x5b699809, 0x923c953b, 0xa752bb63, 0x625de50a, 0x6217b88f, 0xa4836361, 0xc73329fc }, { 0xf5a1a373, 0x2015c06d, 0xc462f58f, 0x7abca48e, 0xfa7614af, 0x53e8ed0d, 0x4b7267ee, 0x36257522, 0xf9ccbea7, 0x6771d580, 0x274ce0c4, 0x709fe440 }, { 0x49b0d5b4, 0x735bba3c, 0x43eca55c, 0x77758987, 0xa8cd982c, 0xabb06a3d, 0xe9544fed, 0xa84c44b6, 0xfd0ce53d, 0x6a1e6669, 0xfe1ac0c7, 0xdabe6dd } }, { { 0x309cf83b, 0xe4546ed6, 0x2e9f687, 0x4c2c257c, 0x404f19c6, 0x686a3275, 0x5adbfd90, 0xcc5f8a08, 0xe5ab0e76, 0x30965abf, 0x38d7569a, 0x9bb23b3e }, { 0x1d64c654, 0x55dfe656, 0xa12cb128, 0xbacba204, 0x40f14805, 0x3b9b0245, 0x49c35a54, 0x2c72b50e, 0x4e9e19c, 0x4321e728, 0xe319817, 0x4dc8586c }, { 0xe74af1a1, 0xcf8f2e13, 0xd24a6e70, 0xb8780bb7, 0xa8e2a6fd, 0xdfa6c92c, 0xf1164076, 0x89b816fb, 0xd874f1a9, 0x903a4ebe, 0x4ba7f89, 0x6c488a03 } }, { { 0x2f4754f4, 0x1b9e7ef6, 0xcf91be36, 0x45e536e2, 0x5abfa6c, 0xeb988cf3, 0x131991e4, 0x1cc7ca25, 0x4fea5823, 0x2172c475, 0xcf3f8f16, 0x49b16a15 }, { 0xfaccd7c7, 0x1794790b, 0xed0deb1e, 0xe975f230, 0xd05793fe, 0xd3d7bb96, 0xb9e7cea4, 0xa0ae4617, 0xc09cc9f6, 0x4ed00035, 0x9625e9de, 0x793c42b0 }, { 0x21f5e2d, 0x5515fe62, 0xaa89113, 0xe1aa466, 0xc76b3cba, 0xb89d4d4b, 0xad20450f, 0x4a8c2239, 0x284bae3e, 0x318cc89e, 0xee8135c2, 0xe6eddf5c } }, { { 0xf25237b7, 0x19d49dbd, 0x7de2e8db, 0xe53122cf, 0x3b3408ab, 0xecfe06c7, 0x3d92ec3d, 0x443491a2, 0x16eb602c, 0xbcd76666, 0x48de7dbf, 0xdc864270 }, { 0x800cd70, 0xc275f9bc, 0xa96b3f77, 0x72313881, 0xba8960a2, 0xcd693be0, 0xcc1a3f0d, 0x3549da8f, 0x7b6d9a5, 0x2d09b8e2, 0x40b61305, 0xbfa9696f }, { 0x27efbd4e, 0x5fe9698, 0xaaeb08d0, 0xcd466f02, 0xa2e2b393, 0xc1b03d3a, 0x1dabb101, 0x5dbc5a42, 0xb2a86afd, 0xbd74c45e, 0x7fc1f95d, 0xdea5d9ce } }, { { 0xf0a5008e, 0x6acc0cc6, 0x5e7fcbd6, 0x5aef5c66, 0x999fd0f0, 0x16d51417, 0x93b8ecd0, 0xa1065ee6, 0xeb7258d, 0xc199e4fa, 0xd59eac01, 0x3d54d4b7 }, { 0x752f8c60, 0x7083126e, 0xee1d5367, 0xec924043, 0xc345d215, 0xe2ac15d2, 0x627896d9, 0x23b311da, 0xe48a4b9d, 0x6ab0f5de, 0xc9a7ccd7, 0xcd500aaa }, { 0x9d6d8cb1, 0x14a22721, 0xb6aba153, 0xd65931a6, 0x2f2ba8c7, 0x42ce9ea4, 0x1a4a024d, 0xb937ce84, 0xbc7ad14a, 0x62783acc, 0xd2393999, 0x9a8d7bc3 } }, { { 0x229f1e7, 0x6dfdf4be, 0x43659430, 0x8117f263, 0xeca453e5, 0x9e2799d, 0xa41a44a9, 0x4422f0f5, 0x33b65485, 0x98d38b88, 0xdddd2fcc, 0xda8c080e }, { 0xcc67a12e, 0xcff6ae43, 0x4e0576a9, 0x7b4927ae, 0xf59ab5b2, 0x28fa536a, 0x9143d4f0, 0x2b896b0c, 0x54640f78, 0x8872c1b5, 0x86138466, 0x8f965eb6 }, { 0x52904f22, 0xd09758a9, 0xa36ff703, 0x2b88ceb0, 0xb3a0d9fa, 0x10741c6, 0x54dbbeac, 0x62e216fa, 0xc43cde40, 0x14046ff1, 0x42cfc5b8, 0xd996ca57 } }, { { 0x16d69a5, 0xc5cbed8f, 0x482378d6, 0x1e798e9e, 0xba5580c, 0xee4b1080, 0xa8975472, 0xf81b1749, 0xb0729844, 0x67bce0b8, 0x2381623e, 0x57b690c1 }, { 0x6e83ee9b, 0xa835107d, 0x7953cad9, 0xb2794a30, 0x7434790c, 0xd6ecedc6, 0x51d7e012, 0xa8eb2691, 0xf1fe33d7, 0x4120fd74, 0x8f0bfb73, 0x8fcd34c9 }, { 0x6daf672b, 0xf06502f1, 0x64d75a51, 0x331f1229, 0xf18b8bfc, 0xff032d34, 0x4e6915d0, 0x79fbf678, 0x62497efb, 0x498690f2, 0xd0952809, 0xdbf3f0ec } }, { { 0xbaa233a2, 0x6986760, 0xab5451c9, 0xe0a3d818, 0xcb73e16d, 0x4403d4cd, 0x77e0ca17, 0x8b8dbc71, 0x2cdd5d98, 0x188f1409, 0x582abd9e, 0x6147c56 }, { 0x3923f521, 0xe835aada, 0x4c75c316, 0x8134cb44, 0xaf03c057, 0x22a9dfe6, 0xf23d2f60, 0xc7c46dda, 0xc20f548, 0xde0e8964, 0x2fbcbc0f, 0x4438d617 }, { 0xd1b33667, 0xb76672ff, 0x73c5bc64, 0xc0080425, 0xc842d56a, 0x2295a201, 0x66091019, 0x668dbcab, 0x31a5e3a3, 0xb7d2fe1b, 0xb0ffa877, 0x31b22d7a } }, { { 0x2b7bace4, 0x7988cf40, 0x4c3c3718, 0x756d813f, 0x1c711034, 0xeeea5779, 0x332eec2c, 0xf36efd46, 0xe409aad2, 0x2cf0e6f4, 0x802387e3, 0x691a7192 }, { 0xfbb2dac, 0xb2671933, 0xeb3ba11a, 0x9bacc2d4, 0xb38780e1, 0x2e72cbe6, 0xa5b9cd2d, 0x4e4dbab3, 0x1e7b34a3, 0xac860194, 0x14e26824, 0x165e9da3 }, { 0x561e08b8, 0x5843a367, 0xfb83f4b9, 0x3be11932, 0x97f19215, 0x8fa4e1f7, 0x9a0fd3f4, 0x4cdcbeea, 0x577ceeb5, 0x729b5189, 0x6aafb3a1, 0xc89aa78c } }, { { 0x324a2658, 0xf06be779, 0xdfdffe37, 0x82ca7fc0, 0xdbd6fdf9, 0xb0cb4a15, 0xe35e510d, 0x708dfcd2, 0xe2c4b518, 0x640b5898, 0x7467eb4a, 0x12dc78f0 }, { 0x443258d3, 0xb83fb654, 0x4af65e02, 0xfbf79946, 0xe5a85a44, 0x6e5feda1, 0x8d71f828, 0x3fb5d109, 0xa7496d5d, 0xdb037ccb, 0xb451b923, 0x46added6 }, { 0x31c4d6d2, 0x5dec710f, 0x3a6d623e, 0x8c4c6022, 0x2456d7, 0xefe370fb, 0x83cf186e, 0x809b846e, 0xc0331c0d, 0xff0145cc, 0xb1b4da53, 0xb61728ee } }, { { 0x45d1c569, 0xa63e048c, 0x9ec0d151, 0x58b29f03, 0xc9420780, 0x6e2bb576, 0xfc0e195d, 0x951c5c74, 0x223df55c, 0xc7385307, 0xda4b5aa1, 0x40f491a3 }, { 0x82ca0826, 0x248c2bc5, 0xaf8e4654, 0xbe5b757b, 0xa522a170, 0x86811701, 0xd7676721, 0x88078c0e, 0x4523b14a, 0x79782c2d, 0x415535b3, 0x61d2f13d }, { 0x3bccfe13, 0xd8cea973, 0xea34ad13, 0xdf6daf01, 0xcc3e5ee4, 0x44bad425, 0x2613d200, 0x9237ef3e, 0x45734901, 0x34d399b4, 0xbfd85abe, 0xd83e471d } }, { { 0xba757407, 0xb9e3fbef, 0x8b2dc154, 0xfdead840, 0xb04e457f, 0xc43576a2, 0x63e7bfdd, 0x874687b5, 0xce4217e1, 0x3de20751, 0x1fd2a868, 0xc12896da }, { 0xf35cae35, 0x9d5abcd9, 0xad03af2c, 0x27c21263, 0xf176ed08, 0x96fea032, 0x2eb4f405, 0xba8cfbba, 0x62a2e4f8, 0xd07e84ff, 0x72b3bcfa, 0xfa582f4a }, { 0x1e07e518, 0xbfdacb39, 0xbb65420d, 0xad55923b, 0x59cc347, 0x84dffe6b, 0xa83e2086, 0x64bb31, 0xd4ba204b, 0xce4b0642, 0x415ccef9, 0xbd44dac9 } }, { { 0xe99a7618, 0x3920b4de, 0x1d35e9c5, 0xa05595dc, 0x308a5ef2, 0x7dc3f958, 0x85da8f07, 0xe94011ea, 0xa25c3d35, 0x9f44b473, 0xca93f7d8, 0xf1101371 }, { 0x8273c6ed, 0x13733cb5, 0xb4b4e51f, 0xc6ba5293, 0x4bdc2099, 0xf65d9b66, 0xef350b1b, 0x3e4c5981, 0x5c8a27eb, 0x969661ff, 0x21cc2bf0, 0x654d5c27 }, { 0x2354929f, 0xcc5916e1, 0xbf72da1d, 0x9628c2d7, 0xa3b3683a, 0xc98568c2, 0xb3834728, 0x7b82f71, 0xf7ac03c8, 0x8ad48336, 0x24b4a481, 0x3cf1d2d5 } }, { { 0xaed25cb6, 0x725a2cbb, 0xfd2b0fc3, 0xcafb7c45, 0x6e6566f7, 0xa42d14f, 0xb3e08feb, 0x8bbb6465, 0xd0d531b9, 0x84f262c5, 0xcf011463, 0x4d4bd896 }, { 0x4fce97bd, 0xb8929655, 0x835a9453, 0x94d035c1, 0xbbcdf6d6, 0x4556ced7, 0x36814f9a, 0xdfc03d8f, 0xa33351df, 0xa6e724f3, 0xe92db0a4, 0xfa487088 }, { 0x2d40b412, 0xde085726, 0x7e2f222f, 0x2bcf4595, 0x86cd8fe6, 0xd9a26ae, 0x9b5c1f51, 0x2d1b28fe, 0xfff20bbb, 0x8ad8b451, 0x3154f9f3, 0x77acbd9d } }, { { 0x59e5c67f, 0x106a8b5d, 0xcc015b, 0xed894c9, 0x4d996e03, 0x3c3fb205, 0xdcb7a256, 0x34a0678d, 0x33697304, 0xf1c2c2a1, 0x8181d64c, 0xecdc418 }, { 0xa994e53e, 0xb9c13769, 0xba69903d, 0x5db15e0, 0x6b23fc0f, 0xebeee873, 0xce2af530, 0xce876669, 0x453c23c4, 0x87bf9dda, 0x261fc72c, 0x5357f7b4 }, { 0x4a7dbe4, 0xa3294ad0, 0x83cf682, 0x931bd5b, 0x78ca989d, 0x5529d7a3, 0xb93292c4, 0xeff368c, 0x318a7b20, 0xe93f3b45, 0x6ab51011, 0xf335c4c5 } } }, { { { 0x3467c714, 0x5dfe15b2, 0x67785a84, 0x234feb1e, 0xce5dd987, 0xfd1abb76, 0xdb9d76a6, 0x3106d86f, 0xf1457934, 0x2fa8ccc9, 0x41209a9f, 0x210e3986 }, { 0x36c034e9, 0x5255f221, 0x8114f698, 0x2fd11c56, 0x7346e1d6, 0x2d013e74, 0xab978e3f, 0x524f58fb, 0xbfdcb8f5, 0x9ff30c19, 0x8df2828c, 0xa7bfb7c9 }, { 0x90223e76, 0x8d7b01ba, 0x775f54e7, 0x48a6452, 0xc10a4880, 0xe14d9b4e, 0x779e689b, 0xddb188a5, 0x5dc855b4, 0xefee0d15, 0xd426be18, 0xf3dab7d3 } }, { { 0x7dc9fc52, 0xcceb38a8, 0x5a01b0bd, 0xd5e81b47, 0xe375e978, 0x3ede5d6f, 0xa61ee2eb, 0x4f4f33f4, 0xe0542a8f, 0xf3d8864f, 0x232c0fe6, 0x6663e6eb }, { 0x8baeb105, 0xde176e1f, 0x19c2d897, 0xa51739f5, 0x51d7faea, 0x5bf82de8, 0x6a775ad6, 0xff6789ae, 0x6842a321, 0xe7bd040f, 0xa8cfad8, 0x8c5dcdb5 }, { 0x5cced52d, 0x60ddc52, 0xd340ff5d, 0xb6598fb4, 0x31a4794c, 0xee4a7588, 0x26d97502, 0xb37ea550, 0xfb8616b4, 0x907d6060, 0xde293c0f, 0x30ccf9f0 } }, { { 0xe4bdd7c7, 0x18562627, 0x9a635a8b, 0x43560bf7, 0x2734801a, 0x6975a446, 0xf10d7ef3, 0xdb47396e, 0x89b92519, 0x528a1c96, 0xaead5dad, 0x325b8ae8 }, { 0xbee05e16, 0xa52fe3f1, 0x1be65dbb, 0xef55daee, 0x82b009e5, 0x6e3aba19, 0x995fc681, 0x10089c59, 0x56b0d81f, 0xb9a16465, 0x74a6247b, 0xfb81d680 }, { 0xa6affd67, 0xc9e4e27a, 0xa692e7fa, 0xfa270bbd, 0x261dab88, 0x15fb503b, 0xa6a34a9b, 0xc99fbb16, 0x3e8061c1, 0x7f0e650b, 0xb7206595, 0x5e83cf0d } }, { { 0x657bb412, 0xa8d7ab07, 0x48d0f579, 0x8c65c236, 0x66984b75, 0xec434714, 0xbede4dcc, 0x7551af22, 0xac53fca3, 0xb2fb85fe, 0x1b8cf4af, 0x4cd96c2d }, { 0x35e67b23, 0xcb68ec00, 0xe919317d, 0x652fc120, 0x16e6fbc1, 0x1de628d, 0x2f368f7a, 0x543b762f, 0x4488b44d, 0xf85795f1, 0x16240d35, 0xda3da3b4 }, { 0x6e7a5a5c, 0xa1fe6634, 0xbe58df0a, 0x5c82d6d7, 0xc8c4c15, 0x5c1f0ad1, 0x1b4d7747, 0x4986266a, 0xe1f97146, 0x66b3c555, 0x4a9a60c4, 0x4df9973d } }, { { 0x57f05d95, 0x3563dfda, 0xff942cbf, 0xbd0c7b14, 0xc46432d2, 0x4e73ca0, 0x9d04f99a, 0x7bf49815, 0xd2e90f5b, 0x59c81baa, 0x8bcae771, 0x1ff6741c }, { 0x18fcab9a, 0xd0dbee3, 0xe71e1124, 0x4364a73f, 0xf312e1ac, 0x9c7ddefd, 0x5758bd0f, 0x56610559, 0x7b3c5c54, 0xf071379a, 0xf80575e0, 0xaf84e998 }, { 0x94c6f2bf, 0x8be5c08d, 0xe511ea98, 0xa6eb6bd2, 0xfd97f79d, 0xe5e866d6, 0x66da1ef6, 0xbe75637b, 0x71dc25dc, 0x284bab24, 0xe95979f2, 0xc6ed5ba2 } }, { { 0xd27d24f5, 0x85f9c85f, 0x947d6149, 0xfc5d0cfc, 0xa87bb4a, 0xcc9cda94, 0x32f1752f, 0x8da75c53, 0x27e14b11, 0x4ca0d21d, 0xee2bbd6c, 0x12b9a876 }, { 0xdb1f0096, 0x674129dc, 0x5e687803, 0xf3bbc2e6, 0x94f4cdf3, 0x93b75304, 0x5251daa7, 0xa0c0a2f8, 0xfce94255, 0x18778701, 0x1725bf43, 0x1cd70efa }, { 0x98ddc757, 0x216b3f30, 0x9386af4a, 0xe2b3e8ca, 0x64772213, 0xce71f8ac, 0x4170878e, 0x9e2997a3, 0xd853e5c0, 0x69cf737c, 0xb4deb16f, 0xab242b84 } }, { { 0x5287fb15, 0x426b338f, 0x85be147d, 0x730d3d7, 0xb03f8c84, 0xaf2b897a, 0xf33e8d5d, 0x49994257, 0x570ae6e, 0x4e9b6a3b, 0x2b7ce2d4, 0x9575094b }, { 0x4b9295c5, 0xddfc1882, 0xb4501c62, 0xd48e8122, 0x16f529e5, 0x4fec7261, 0x2e14500, 0x4df28e6e, 0xb0f7f068, 0x98818a5c, 0xf80c0cdc, 0x5b63032 }, { 0x4eec5cbc, 0x2b5ad0b6, 0xf360c86c, 0x9a85e40, 0x4bb6d7ad, 0x4fd482a9, 0xfd37c699, 0xafca24ff, 0x71e8e857, 0x8ca661b2, 0x46dd2ce4, 0x819528bc } }, { { 0xfc16889d, 0xf1dca9f4, 0x4233531a, 0xb803a07, 0x1d6ab28b, 0xf22f23ab, 0x929aa38d, 0xfc96cd8f, 0x608abd6a, 0x110472e2, 0xf358b575, 0x39c996a4 }, { 0xe92fa4af, 0x8275df68, 0xf62b994f, 0x4380acf2, 0xeae3cfaf, 0x510fc070, 0x7d2bcce8, 0xe6a0d5b9, 0x3ec0c552, 0x51b4e680, 0x881c075e, 0xcd0d6c48 }, { 0xc6150184, 0x71080ecf, 0x8e1a401d, 0x2e3d4c46, 0xbf231aab, 0x35ce9644, 0x2f085b9d, 0x8dd174a0, 0x1bb1dfc4, 0xd685e5d9, 0x54c43eed, 0xf58fa5a2 } }, { { 0xe79dad36, 0x3a769124, 0x59bc0ee6, 0x18099a66, 0xa82f5956, 0x79a91054, 0x2f78fe3b, 0xfb9a7dc0, 0x7333a2f8, 0x5f094f25, 0x95ad9901, 0xbb48d6f }, { 0x38987222, 0xd9214a11, 0x22158b29, 0x6ce1d009, 0x5fb94a87, 0xb4dc9eeb, 0x2823a6ab, 0xd06a7058, 0xfdd7e833, 0xb2cddcb0, 0xebfc5278, 0x962ebae2 }, { 0xca1145c5, 0xe7a1a0ea, 0x6c59eccb, 0x49c8c1fe, 0xf2c53b11, 0xee119a9a, 0xa08b1cb8, 0x3d4b6dbe, 0x77ee1e7e, 0x52ec6d36, 0xd6fc3337, 0xbac5743d } }, { { 0xaa5f9570, 0x59226a37, 0xd8246571, 0xc36133a4, 0x4b751045, 0xb82c932e, 0x27dbc8c2, 0x1867ba39, 0x9c1fca0a, 0x8b2d6395, 0xcdaa5f4d, 0x1f5fbf4e }, { 0x81e1cc70, 0x11041443, 0x18f2d1d9, 0xaeda595a, 0x5e26bb26, 0x97ddb709, 0x1927acaf, 0x6cf612d0, 0x84fc7e0d, 0xfba532e, 0xb90e8030, 0xc7ce01f6 }, { 0x3475fbd1, 0xb60bfb37, 0x84cc3157, 0xfbc45262, 0x8281756c, 0x5047225e, 0xa4d8b2be, 0x113c0540, 0x7866e0d3, 0x19be728b, 0x2aa69721, 0xe5961614 } }, { { 0xf5eb9e60, 0x446fc578, 0x6c9d21b3, 0x191249c0, 0xb7d70102, 0x22bc31ad, 0xfbe4a65c, 0xcbd135e6, 0x1d8a15bd, 0x4d0fac6e, 0xe84a4a9e, 0x5c0add81 }, { 0x41b98c13, 0xfa1f473a, 0x70d77cc6, 0xcf1cb454, 0x1acdf2c6, 0xbb994999, 0x800b5f73, 0x79294139, 0xa4c8af5c, 0xafc243cc, 0xdf773ee4, 0xe92efeb8 }, { 0x7d854ef1, 0x87c16a4f, 0xcbbb763, 0x560ac3fc, 0x32dc08ee, 0xa30c6e00, 0xf26aefc1, 0xe8a9c031, 0xc8a4dc18, 0xbb4d8ff9, 0x651c4480, 0x1e238af } }, { { 0xe04e45e, 0x469a02cb, 0xce802c99, 0xb7003530, 0x88f6a5f8, 0x492c8649, 0xe9131c9c, 0x374702cb, 0x4ca88a0f, 0x57cfb651, 0xe270aeef, 0x8bd0bea6 }, { 0x452c8546, 0xdb630683, 0xee8f70c9, 0x380d29b8, 0x67a004de, 0x65300ac8, 0x3b005a24, 0x42aff734, 0xdfc16e6a, 0x19265d7d, 0x929f6916, 0xdf9afd96 }, { 0x988df747, 0x7edb6264, 0xb4fcef2d, 0x8887d850, 0x357dac34, 0x145cdd7d, 0xdc2ba9f5, 0xfedeb2eb, 0x5cf287e1, 0xb8410d38, 0xdebdea7b, 0x1bc6ec79 } }, { { 0x96e7d982, 0xd9751423, 0xf9777a18, 0x4f6c4032, 0x9d970a49, 0x4b6bff28, 0xb733ed73, 0xab4fc650, 0x696657e1, 0x399b38ed, 0xaa3cb7ed, 0xb873f6d3 }, { 0xb65b2f38, 0x9e1f9acb, 0xb47d22c4, 0x6745cb97, 0x61044275, 0x40d8a447, 0xcfe2adce, 0x1aa2a4dd, 0x202c9c0e, 0xc4bd2936, 0x944baf30, 0x39370973 }, { 0x739fefcd, 0x49fa2dd3, 0xa092a596, 0xb129c649, 0x4047d7b3, 0xbbb4e205, 0x6c5ce538, 0x41577019, 0x54abbe44, 0xf5318e6e, 0xaade7359, 0x48e3a627 } }, { { 0x481a02d3, 0x3883342f, 0x4fdfe621, 0xd73c1138, 0xdc81facf, 0x1f33bfd2, 0x8070d4d8, 0xfeee8aee, 0x472dad13, 0x48a6ee9a, 0x21100915, 0xa4258638 }, { 0xafb882c8, 0xcf2c620e, 0x112de2a7, 0xe7c97180, 0xd31fa602, 0x6e5a0fe7, 0x6a6a88fd, 0xf8311ba3, 0xa8ac40e7, 0x8aa280e, 0x9d4fb955, 0x3edcc829 }, { 0x3cbf70f, 0x82badab, 0x6cae1221, 0x71da8d3a, 0xc56c0bf8, 0xe70829df, 0x87b4a8fa, 0xc2cc62e0, 0xa1e04cfd, 0x66136273, 0x6c9ce978, 0xd42ce6f5 } }, { { 0xb2536592, 0xa0d89e26, 0x58c4b47d, 0xabdd070f, 0x1d96dd23, 0x76a6ed3, 0xe77b95a4, 0x61cc53a9, 0xb615557c, 0xf76ea476, 0x1ff53aa9, 0xb5604c3f }, { 0x84f0ffe, 0xe39b5b4c, 0xdb600791, 0x66ab43d2, 0xe5832c88, 0xb2faa904, 0x9109b352, 0x99e8b4c0, 0xff2c150, 0xe46ca8bf, 0xbbb31ec9, 0x1e05b16f }, { 0xc787517f, 0x4e951eef, 0xb95ac944, 0x2c2012c8, 0xa07121a0, 0x13a517ca, 0x5277c3a7, 0x6eeaf1ee, 0xb981ed53, 0xd9bece0e, 0xaaba49bb, 0x2daa1319 } } }, { { { 0xe31e4f3b, 0x6895b57, 0x3a64278d, 0xe9d67c73, 0xfb928115, 0xe4c6a4e6, 0x5b4ea753, 0x9ef4a963, 0xa1692cc0, 0xacfa6705, 0x29567e5d, 0x26c577b5 }, { 0x9a165acc, 0x46761bf3, 0x793af50c, 0x27e1d4f6, 0xfe4285bb, 0x8f07f38e, 0x57bcf5a0, 0x88b2312b, 0xcd4d7741, 0x3c0676a2, 0xc00f8813, 0xe87e1865 }, { 0xf998a9cc, 0xc37c88e5, 0x11ee1cda, 0x3a072c89, 0xc9848579, 0xfbe9bff1, 0xdd180778, 0x954d1db0, 0x91217d05, 0x62297ef5, 0x54f4f481, 0xf9825671 } }, { { 0x698d4dc, 0xa1da308a, 0xcaf8d0b4, 0xe2ec1f6b, 0x40f146dd, 0xf2011bec, 0xe97f46dd, 0xacca86d8, 0xf4c4c0db, 0x7f1a7e69, 0xa2947b32, 0x9c601ca8 }, { 0xafec8bec, 0xc599da49, 0xf98081a2, 0x9d0c379a, 0x83c3cfd1, 0x6c389d5, 0x47910089, 0x1eee6caf, 0xe90111c6, 0x9fbb73b3, 0x1f87d2fc, 0xc3b45b41 }, { 0x77c3002e, 0x4eba0ce6, 0x762e90d1, 0xcd07229, 0x8424e515, 0xc7b8d0a5, 0xeca9a6f2, 0xe9dfb77c, 0xa8154767, 0x3899c628, 0x90e9f2be, 0x5777f51f } }, { { 0xb483309, 0xffe1ed0e, 0xeceda71d, 0x9b8a7d56, 0x189fe370, 0x103d409f, 0x9eb84a71, 0x26a01515, 0xa09178be, 0xbabeffd7, 0xb6e9e21a, 0x46acb63 }, { 0xc2be844b, 0x41fc7721, 0xd4e7bab8, 0x9fb45946, 0xb151743a, 0xcc29b269, 0xdd5f90f6, 0x787db951, 0x4b8e15e9, 0x5fcab7f6, 0xb5ac3af1, 0x1fbfb0b7 }, { 0xf61a3563, 0x1ae64fe3, 0x4c4156db, 0x1c1afb5c, 0x470c9bd5, 0x6ad24d90, 0x9f85817d, 0x23c99f4, 0xd6c4afc5, 0xdd56c2fb, 0xa5660866, 0xbbb0378e } }, { { 0x5065074c, 0x50bf464d, 0x4a6d9c1d, 0x5b751569, 0xa5ad830a, 0x306d026f, 0x845a4cb4, 0xe35c8f60, 0xc74bf0a3, 0x87b4560, 0x455bc097, 0x8a4f12a7 }, { 0xe1e0d961, 0xe5e241cc, 0x872f6b1b, 0xde8059cf, 0x5dd5c069, 0xd857dae9, 0xbd7ae9b8, 0x8b2bf464, 0xfe8f5603, 0xe8e33b0a, 0x37479d21, 0xa3b18d0e }, { 0x7e3a3b24, 0xd85819f2, 0x6f7a333a, 0x859a5441, 0xa93c04e1, 0x3751e38d, 0x40648cd3, 0x551256e1, 0x2533b30f, 0xdab2d187, 0x9e2ea8e8, 0xfa5daec8 } }, { { 0xb0b2c1a4, 0x974c275c, 0xd16e05ea, 0x28f8ad87, 0xea8547da, 0xb261112f, 0xfdb998a3, 0xf27f1737, 0x1db74511, 0x27fe67df, 0x834cfcb9, 0x3c9ae2c9 }, { 0xeec6ba9b, 0xcefb0588, 0x929a3d2c, 0xc73a186d, 0xa6bf7570, 0xa82060ce, 0x9922ee93, 0xabd665bc, 0xbb0afc7e, 0x8c2fb0d5, 0xf0dad11b, 0x6b50912c }, { 0x879f6ea7, 0xf6432782, 0xdf510d75, 0x9b431e25, 0xa95f1a8c, 0x9273aba6, 0x27ffea23, 0x7569bb3f, 0xbf875d82, 0x14bd597d, 0xa12ebd55, 0xe34c9675 } }, { { 0x9350ce6c, 0x6f848db4, 0x647b45a4, 0x134a446c, 0xcc474296, 0x36d84fb8, 0xf9ff2bd6, 0x2a81e5e8, 0x6e6c572c, 0xce91aa3, 0xa53b6dc7, 0xb6e02724 }, { 0x4045ee34, 0x744cd9b1, 0xf9a9c195, 0x16a431d1, 0x750109fd, 0x9b86dcd2, 0x86ee5e59, 0x60267532, 0xa988cba0, 0x3a090a73, 0x82fe67f3, 0xb4438b84 }, { 0x7b5f3111, 0xbe064149, 0x5a7ca3e2, 0xca775ffc, 0xf116c958, 0x23cf752b, 0xfe01e515, 0xcd5b73b3, 0x7f78d502, 0xd1dec6ba, 0x5ca8cf97, 0x30b6541 } }, { { 0x8248c42e, 0x9a11af97, 0xb7768b6b, 0x1fdd398a, 0x1b7bfd0d, 0x1900f868, 0xf210be83, 0x7d69797d, 0xe0d8ba49, 0x662e773a, 0x3ac05669, 0x2bdc5c38 }, { 0x32c2966c, 0xa63dae9c, 0xf68ce15, 0xad666e44, 0xa5f3afb5, 0x3b6b8db0, 0xf141a9ee, 0xf11117a4, 0x119cccd0, 0xfaaa1d34, 0x7f8305f0, 0x19da6107 }, { 0xdb52a6b0, 0x6af450d8, 0x940bf355, 0x80101b3e, 0x646f834, 0xe97d37e, 0x76f27b0d, 0xb694cf21, 0xf10b1802, 0x8416c8b, 0x13a29c4, 0xe6892d9c } }, { { 0xb31e4e08, 0xca566d0b, 0x7055c12, 0x26d94b0e, 0xa17cb4c0, 0x6a4ce1d9, 0x65b9dc86, 0x3a03f21c, 0x2a53e5e9, 0xe5249e2d, 0xb7aa99fb, 0xfebd9a01 }, { 0x65bc8a23, 0x171a5279, 0x4e9c6cb0, 0x16be85a1, 0x89e99f73, 0x4889f1e2, 0x53071391, 0x778badde, 0x7bbe8120, 0x66860bd7, 0x722624a, 0x45238c56 }, { 0x97098f18, 0x7a8d83cb, 0x33e8bee6, 0xed72ae49, 0x3c52b852, 0x5b88707d, 0x96730c33, 0xf9db635f, 0xc7da4207, 0x6e694ad0, 0x5419deef, 0x6dbce2be } }, { { 0x7748e4b4, 0x7450fee1, 0x39eb0fe7, 0xd303def8, 0x40bdfc8f, 0xd96db8cb, 0xf6fee964, 0x3505c9a3, 0x13a04997, 0xf53df999, 0x7a4f0e0c, 0x5cfb3980 }, { 0xb2b173c7, 0x73ca157e, 0xdf332639, 0xb56eaf4e, 0x85b6fed4, 0x2e679531, 0x30063ab9, 0xf9b6328, 0x1ed5396e, 0xa413395f, 0xb107bc1a, 0xa44f352b }, { 0x3149c88d, 0x5ec2e625, 0xd2760ca7, 0x39378eda, 0x931f4c78, 0xdcfdf345, 0xb6c28f69, 0xe2a04b2b, 0xfae0629f, 0xa7562087, 0x88477035, 0xf587c589 } }, { { 0xd59a7066, 0x266e6a1a, 0xf0983cd9, 0x5d334360, 0xe7887d8d, 0x92411729, 0x6c5e0d80, 0x282962be, 0xf07231a8, 0xdd2a065e, 0xc9235d14, 0xb058de12 }, { 0x53028067, 0x80cd23f9, 0xee758e13, 0xfbacdca3, 0x95d4c814, 0xab143d70, 0xa4c75c1c, 0x5eb346c3, 0x787a6650, 0xa7bcafc9, 0x5f849970, 0x29582b1c }, { 0x10336e38, 0x6e76b0b9, 0x85ee1492, 0xd2a61a21, 0x151c1ee7, 0xe08b5040, 0x1d86602, 0xcde99ae4, 0xc143a828, 0x35bcf655, 0xf5c4394a, 0xd47672ba } }, { { 0xe662d932, 0xaf7a43a5, 0x68efd106, 0xaadb35bb, 0x9c992e1d, 0xe8af68b5, 0x587bb754, 0x7ad50512, 0xf8c43eaa, 0xc2ac743c, 0x455f6afc, 0x6609ca70 }, { 0x28d04f3d, 0xe97e7e0c, 0x24f300f, 0x4cd9c50a, 0x74c53813, 0xbaf10e62, 0xc83dffc8, 0xb3b817e2, 0x2880408, 0xa3cb2eda, 0xbb437524, 0x627d31a1 }, { 0xdd75baa8, 0x8af84aa4, 0x75f3ae10, 0xb51545af, 0x3e9f52c3, 0x1dec6c6d, 0x3c97af77, 0x3de5780b, 0x979ef01b, 0x44a680ec, 0x9f4dd00, 0x2f66c464 } }, { { 0xb80358a, 0x4ccfdce8, 0x89c5af5a, 0xbe3a2747, 0xfac7cc9d, 0xabae0974, 0xa17bf1f1, 0x16c01280, 0x30e282dd, 0x8c4daa4f, 0x6f81ee8c, 0x38818135 }, { 0x66afac82, 0xc167b13c, 0x4eafec2b, 0x850688d5, 0x61ca332d, 0x229b7d9d, 0x92f6cc29, 0x371748d2, 0x2f632e29, 0x18e4daa4, 0x948d8b44, 0x6cd95c44 }, { 0xe3f5d6d5, 0xc72dcaa9, 0x33c20b18, 0xbf58885e, 0xa4d5cb2d, 0x5f68c2cf, 0x4e34647e, 0xac46af6a, 0x6250a0d0, 0x65b78ff1, 0x3f1d3b6b, 0x488b89ad } }, { { 0xcad48686, 0x1b5b3dbf, 0x2a7b1b54, 0x2e383eeb, 0x2984eb31, 0x78a06329, 0xdeb5f27e, 0xa637d482, 0x9e7297cd, 0x76aade7b, 0x8fd91839, 0x922a6aa0 }, { 0xcf89e51f, 0x3cc9339f, 0x968a3588, 0x507a1e08, 0xb44e00c9, 0x6910e58d, 0xe27b519e, 0xfda05d4c, 0x7fea581a, 0xf417edd8, 0xbb0bdf1e, 0x85c6e2ac }, { 0x16f4dcc2, 0xe938c251, 0x2f0b0daa, 0x8f723cab, 0xe7d3d257, 0x51c5b2c3, 0xbe4783d, 0x199bd58, 0xd07e9db8, 0xd764065e, 0xd25970ba, 0xabdc202d } }, { { 0x6aa7942c, 0xeb021d3d, 0x1703ca, 0x189d87ee, 0x226c91d5, 0x4230ce0, 0x88e06bd1, 0x25fffc41, 0xcf8831e, 0x6d6d5eff, 0x4bd73eae, 0xadff2c52 }, { 0x51adc174, 0x84aca250, 0x926e65da, 0xd276d5ee, 0xf7a4bea1, 0xe4462182, 0xef7814c8, 0xa09ac177, 0xd15f29a1, 0xaf10415e, 0x7961a19c, 0xb7934062 }, { 0x99afa24a, 0x15f57f66, 0x726922d, 0xae73f5c3, 0x148cd908, 0xc98948af, 0x83ff5116, 0x9bd59baa, 0xcfafd1b6, 0x7921dc30, 0x7fed9931, 0x7eb7e5d7 } }, { { 0xa739133b, 0xa0be7087, 0x3f608d8a, 0x895cc0e, 0x44363e55, 0xd202edd1, 0xade50e8a, 0x1174f58a, 0xb80e2f01, 0x5f78fae9, 0x31a9c02a, 0x9575a700 }, { 0xc74704f4, 0xb761aa76, 0x78bc2e60, 0x45dd055e, 0x7336e131, 0xf1ee82be, 0xcbc1db1, 0x6a960302, 0xfe55f335, 0xc30fe283, 0xdf7acb19, 0x6044558 }, { 0x7224f4e3, 0xa3756413, 0x845b768f, 0x6185f3a9, 0x250a022d, 0x610f542b, 0x1646a91a, 0x331047e, 0x66a82114, 0xb0e80572, 0x701a7666, 0xa097f389 } } }, { { { 0xc823651f, 0xb9db01f1, 0x282e8281, 0xc71fbd0c, 0x9f683632, 0xb7a592d6, 0x4af95521, 0xf565ce19, 0x1cacc6b3, 0x49f672fe, 0x3609de3f, 0x5de2674f }, { 0xedc22e55, 0xae46197, 0xf99dfa04, 0xdfb14488, 0x1255176e, 0x2123d233, 0x6531d468, 0x48f4545b, 0xc2a8994d, 0x4d94c5af, 0xcb81aea5, 0xdbd730f1 }, { 0x41f02f3d, 0xd3a407b0, 0xf089803b, 0x252c4057, 0x609ed59d, 0xf8c2c1ee, 0x989b30d0, 0xf96bad76, 0xfbcda2af, 0x7d1076ff, 0x57055b3a, 0x636a9ddb } }, { { 0xbb9bd327, 0x7ada8cfa, 0x145ca1d, 0x2119b98e, 0xb9cc980e, 0xe3588c4d, 0xa6e625ad, 0x304c8a46, 0x170e048d, 0xcc8d4e8, 0xf5ef82ce, 0xa9ffb34e }, { 0xe4d535fb, 0xc631c92a, 0xcd84ff27, 0x128cf8be, 0x28f0af06, 0x20cdb752, 0x5008dd21, 0xb80ac137, 0x70a02bfe, 0x7b383e53, 0x1194beff, 0x265c7bc9 }, { 0xe9025cf8, 0xed266f5a, 0x204d5da8, 0xee1ea303, 0xbad88d0f, 0xf7ff725d, 0x2d4347e7, 0x945b5a35, 0x3760bb65, 0x6c0b9843, 0x8d79356, 0xc33d4d80 } }, { { 0x3d873bc9, 0xaacab031, 0x227f582e, 0xeac4adb, 0x2127f989, 0x15524cf3, 0xcd34b24f, 0x5d018848, 0xc57604e9, 0x7913308f, 0xbd38c5d7, 0xf54c7d88 }, { 0x820eaa15, 0xb7d0e2fc, 0x483a2d9e, 0x5663f46b, 0x32f5b661, 0x7bfb1556, 0xaee5d4e7, 0x9658bcc2, 0xd32bb7af, 0x8554ddc3, 0xf79d6a91, 0xab027102 }, { 0x370d576e, 0xa9f9266b, 0x14ec50b8, 0x247c2f2a, 0x484d2a9b, 0xfe058562, 0xf1288293, 0x3b594dc2, 0xf6b147bd, 0x6cf87e7b, 0xb7bca9de, 0x4b661462 } }, { { 0x823affed, 0x2253e54, 0x7fd7d586, 0x31180729, 0xbcab4d27, 0x98779f2a, 0xcf6f2cc3, 0x6990788c, 0xf5afe21b, 0x34ca600f, 0x2198e05f, 0xa4bc9af9 }, { 0xe8d41fef, 0xb712f5ad, 0x13013877, 0xffc5c89b, 0x1373a5d3, 0xf8fe2e0a, 0x82ddd9c6, 0x83afcecb, 0x85fd8bb1, 0xe6760792, 0x3a36836c, 0xba909837 }, { 0xf2fb7032, 0xf190198e, 0xa54acad5, 0xd3060654, 0x38ec81ce, 0x2229d7b4, 0x11956dc, 0x85b529f8, 0x525ccff6, 0x648a067e, 0x29c0e6b, 0xd5d7d8c5 } }, { { 0x8da32c3f, 0xca5a7984, 0xb695a5f0, 0x87efe1f0, 0xe846094, 0x3f5d82d, 0xd421f2c2, 0x9c9a5303, 0x8aa1ea6f, 0x4e6d1d16, 0x19eacf7d, 0xf4319f08 }, { 0x35274f4d, 0x6c61299f, 0x27287039, 0x67ced7f9, 0x3136902d, 0xc7dfaeb2, 0xf3b9c1d1, 0x50fcc9fd, 0xc4eb94f2, 0xed1155ae, 0x660bdae2, 0x3f979cd6 }, { 0x4f08a599, 0x5f67d67f, 0x46bbf24e, 0x31bc9f3a, 0xa888d8e7, 0xa053436a, 0xe77c7cb0, 0x31bf64f5, 0x7f372246, 0xf48bdf8b, 0x38f7a305, 0x3870f209 } }, { { 0x6c05959b, 0x10757a40, 0x6276bd5e, 0x6fef1d65, 0xcf7d8416, 0x3a19da08, 0x7c00bcb6, 0x2e91287c, 0x9b1afc39, 0x4ff485ba, 0x486e5c4c, 0xe9729204 }, { 0x2a85c419, 0xf7b8d7a0, 0x4fc627da, 0x623bd53a, 0x17b9579b, 0x78a4f9d3, 0xe5dc0155, 0xe208bbc2, 0x805d0b3b, 0x3a812585, 0xdbdf56bf, 0x4a7b7985 }, { 0xe73b4e86, 0x51a945b6, 0x2cb77699, 0xaae8f458, 0xf455fb74, 0x4de4c879, 0x59381bfe, 0xdb4e50df, 0xe830d10e, 0x1fb03cea, 0x695cb2d4, 0x837f35c4 } }, { { 0xd6d72b63, 0xc7ea65c2, 0x5a610e98, 0xe326e7f7, 0xb6df830d, 0x9a4c9df0, 0x39a0d3b2, 0x55d2208c, 0xa9d3819b, 0x3dd575df, 0x4c610255, 0xd571fc43 }, { 0x66c29b32, 0xf69edcb5, 0xeb2df38, 0x3491f185, 0x710a27ac, 0x2e564c81, 0x73741c33, 0x397ef126, 0x137f0bc4, 0x61bf2d2d, 0xff9bd3e5, 0xf8f9ddd }, { 0xf4a37810, 0xaef5669d, 0x7af6fd84, 0xca18ecfe, 0xdccf2b75, 0xd5452a45, 0xea6ff1c, 0x409d8648, 0x8657fbee, 0xf33cb2, 0xbcb82d43, 0x83f6184f } }, { { 0x310f78ce, 0x1cd11d1c, 0x9f915373, 0x20a83d9, 0x80f0590, 0xc4374c15, 0x5003e514, 0x1c705076, 0x1cff7687, 0x59c6b23, 0x36d02142, 0x25e5fee3 }, { 0x39f05d4d, 0xd4aa1524, 0x17260269, 0x331be088, 0xab3ef95c, 0xfa401443, 0xdaf2e5ae, 0xbb7a8263, 0xadbbd518, 0xccecf424, 0x56354827, 0x87d96f1 }, { 0xacdf32ba, 0xc851d8f, 0x21bad22c, 0x44e1d892, 0x4ade24cc, 0x8a6454a6, 0x6809d469, 0x62680a76, 0xbf6fc1cf, 0xedaf0691, 0xc92d823b, 0x839a629a } }, { { 0x37770239, 0xa889e62e, 0xb105f0e0, 0xf3406e97, 0x30a99a9f, 0x981d9585, 0x223a2720, 0x50e94898, 0x9622963, 0x409042c8, 0x284b72c7, 0x7349990e }, { 0x75bef8c9, 0x278cd525, 0xa0d57d84, 0xcaf8245, 0x7ff29bf3, 0x5672ac40, 0x136b3b4a, 0x2fb3de53, 0x51724602, 0xda3e25f4, 0x683a5042, 0xd5da4a79 }, { 0x737c7257, 0xd3cce8f7, 0x7ae87b86, 0xe7f7121b, 0x5eaa9884, 0xeb988357, 0xa6c72694, 0xc03be8bb, 0xae9307e7, 0xfcc4560a, 0x31b5084b, 0x21f3c9da } }, { { 0x96355007, 0xed903dda, 0x657ed5bd, 0x66d1b6ac, 0xdf123b23, 0xb0980cbc, 0xecf38818, 0x1480161d, 0x69512877, 0x47a51523, 0x1cd2f634, 0x9df47a2e }, { 0xcd36c9da, 0x79aa1c9d, 0xe9694046, 0x4c7769f3, 0xf28ffd93, 0xd93bc26c, 0x94058089, 0xf2670d6a, 0x36de3b7e, 0x238b4b34, 0x3925a09b, 0xc102f6f4 }, { 0xb37ac501, 0xfe035c60, 0x115943ff, 0x1fc65ce5, 0xad07a601, 0x2afb85dd, 0x982ada21, 0x61de5bd, 0x461790ac, 0xe4c47260, 0x7824d94f, 0xa0c2a39 } }, { { 0xad880fa8, 0xf11d3696, 0x38b1ad80, 0xe03f1721, 0x7118daa8, 0x92e65549, 0xe24c7fad, 0x8c654c3c, 0xa1b25a8d, 0x1fa1dbde, 0xae00be30, 0x23012c16 }, { 0x4001af65, 0x582b0a82, 0xe27b2308, 0xe6570155, 0x5e6ceb0b, 0xc77cf192, 0xe9f80bc3, 0x459d3823, 0x8f2c6343, 0x576ef9be, 0x63ded58e, 0xb381d788 }, { 0x7b92693d, 0x6ce19f99, 0xcd878ae2, 0x8efe747d, 0x78042177, 0x2ddfa0e9, 0x85e079a0, 0xd3e73a34, 0x3dd8ae35, 0x4f941b67, 0xd38eba57, 0x78372275 } }, { { 0x64194340, 0xafce46bd, 0x11e296ea, 0xaa2776b0, 0x4af2873d, 0x1c6a627d, 0x407291f9, 0x900e6dbd, 0xf59606d4, 0x56f0843e, 0xcc7cde6, 0x88cbabde }, { 0xcf31b404, 0xbc742863, 0xac0937af, 0x7c5cb669, 0xde55d566, 0xa39644c8, 0x480a93ca, 0xd055b354, 0x5f1eddc, 0xc5402f9b, 0xfc632a73, 0x4ff82ffc }, { 0xd50a9f6f, 0x90e2dd21, 0x14f5381c, 0xb81617c8, 0x6f865c90, 0xf14bd4a1, 0xd97e6087, 0x22bf33e0, 0x589092c7, 0xc2a36a79, 0xa83d66c5, 0xf822148d } }, { { 0x51108d77, 0xccb3a881, 0x3966e0a7, 0x86ef5499, 0xa64cc404, 0x5215f11d, 0xaea21e13, 0x5ce7dc8b, 0x56be1125, 0x4d8cb7a9, 0x2de7073c, 0xe9a9d253 }, { 0xb1208274, 0x29079c6b, 0xf5163ebe, 0x608410d4, 0x25d19e7, 0x85d70f4b, 0x6c98f58b, 0x1eb8c026, 0x571d8f62, 0x51f5bb78, 0x3cd36541, 0xba3dca9f }, { 0x446ec405, 0x897fc90f, 0x8d98abe5, 0x1fad04e7, 0x937ff3a7, 0x2ab31f4e, 0x3b175ba9, 0xc9bbcc2b, 0x189d2b5e, 0x9c34b1d2, 0x9e55d369, 0xf686185 } }, { { 0xf705f2e3, 0x902c45bd, 0xa2d7726e, 0x9a1fe56e, 0x56b810db, 0xfbad6766, 0x6ca38b43, 0xf03c4f9b, 0x8813f5f, 0x173b9e54, 0xd230d364, 0x852b1455 }, { 0xf176b555, 0xec5e82c3, 0x99ccbd29, 0x42097c66, 0x9fb19605, 0x16f7c343, 0xb98b5ab7, 0x35ca56c1, 0x444b8edc, 0x1f13c041, 0x37e1eb17, 0x9af5626a }, { 0x5b2dbed6, 0xd24f4563, 0xc5ff03a3, 0x6f7f60b1, 0x52270368, 0x98684945, 0x32c389c5, 0x18810024, 0x9d3a9cd2, 0x915c7822, 0x9271422d, 0xbdcbb218 } }, { { 0x55610332, 0x5d0550d7, 0x4c9be622, 0x1813549d, 0xf46f5821, 0xc69a8ff1, 0x8e920666, 0xbd067dc4, 0x48e2b1d8, 0x2b800455, 0xcd55fc07, 0xf8ae9e6b }, { 0xbd12aecd, 0xeaecb830, 0xaf36bdd, 0xef942595, 0x5b9dad6e, 0xc216c3f8, 0xf673b8cf, 0x8ab9cfd4, 0x57186c9d, 0xae50c675, 0x2f848869, 0x4bae123e }, { 0xeb6c0977, 0x7a3b0e74, 0x96de3e46, 0xf1dda2b8, 0xb7e67003, 0x10a6601, 0xf21d7c25, 0x461399f6, 0xb944c9de, 0xb556b149, 0x20daa19d, 0xeadea109 } } }, { { { 0x73828a10, 0x5bba02fb, 0x2f6f7caa, 0xc88bc73b, 0x9e627897, 0x53d37dce, 0xb16d499d, 0x2592a5d3, 0xdf991068, 0xd9ff131f, 0x6a846930, 0xc66fec37 }, { 0x2e3e5635, 0xf124a197, 0x746c17b0, 0x37a0201c, 0xb53a8beb, 0x7d5470d0, 0xcdae4fcd, 0x989203f4, 0x72839174, 0xeb17aa86, 0x6bc45ec, 0x8ddde329 }, { 0xa1bcbbbb, 0x5bf8567, 0x5f466cfc, 0x2ea8920a, 0x15d76bbf, 0x37c3b702, 0x5143f5ac, 0x8a8e0a18, 0x56fa8f2, 0x6c48ac24, 0xcdb8c0ca, 0x363bc2a9 } }, { { 0xc8fe0c78, 0x75ab880, 0x21f760e6, 0x1432231e, 0xab380866, 0xb39417d9, 0x23d03055, 0x94d7589c, 0x64c9e63d, 0x7944f89b, 0xd694bab2, 0xad8264c5 }, { 0x23dabe46, 0xa10a3943, 0xb245b525, 0xcff4ad89, 0xf762c22f, 0x7414dc34, 0x1ebbc08e, 0x95fe3c77, 0x535f7925, 0x105416e7, 0x471e0f01, 0x869fb8fe }, { 0xbcda0b7d, 0x64491dac, 0xa1a71d5d, 0xdcfe09a, 0xe94399fe, 0x78b19582, 0xdce7eef0, 0x7d6ccba3, 0x370d2d4a, 0x78623c9b, 0x9d147343, 0x9df1476 } }, { { 0xac22811d, 0x2f65e740, 0xc9b7c6d8, 0x3eed27f0, 0xcab59565, 0x291edddb, 0x10c9d5f4, 0xade68bb9, 0x2fda0ef8, 0x483f8eb4, 0x31a3f7dc, 0xfe3cdbd3 }, { 0x2488002, 0xbbfb3186, 0x15294c34, 0xb24843ef, 0x21c063c8, 0xe0174c23, 0xcb67be5b, 0xb8cb0a32, 0xb83c0934, 0x4f533fe4, 0x46790011, 0x728a45cb }, { 0x283ca335, 0xcc67a9ae, 0xa81bd300, 0x8a255400, 0xe4309064, 0x8ed75b64, 0x920b675e, 0x93f3ac8f, 0xc1185277, 0x906de13e, 0xbc8bdf17, 0x91c195ed } }, { { 0xa61ced65, 0x573f7d82, 0x9af17caa, 0xdd4ead9b, 0x96586bb5, 0xe5fef6fc, 0x6322243f, 0xc558955, 0xfe69458a, 0x906db28b, 0x35ca39f0, 0xd28a6ef4 }, { 0x203bb9b5, 0xac293412, 0x8a6377a8, 0xa2ca996d, 0x9afb7c8f, 0x8519ee74, 0x35da98af, 0x1294d601, 0xb7fd7241, 0x5972cdce, 0x8f22d572, 0x722801ae }, { 0xb0b38952, 0xa7b29466, 0x38a95a30, 0x53048fd5, 0xd29e9172, 0x1f6c3d6e, 0xff876589, 0x53b1b087, 0x1aa2bb49, 0x52a71894, 0xbdb3bf51, 0xd21d8acb } }, { { 0x2f5653e7, 0xfaaf47af, 0x607fb759, 0x5be527b5, 0xc144802a, 0x7aff3e72, 0x4e95d276, 0xfb4d315f, 0xcb03ff09, 0x830ff02f, 0x48c50db7, 0x8f2ef8aa }, { 0x8bdf2d0b, 0x859a461d, 0x41bd1e1e, 0x5a1591a5, 0x1c194430, 0xab7a9e3f, 0x3d5ae39d, 0x6bfa4bfb, 0x3d9fe2ca, 0x791817d6, 0xffce61ed, 0x6ca26a5b }, { 0x402e92fd, 0x31e7b6e6, 0x8a086783, 0xdaf60e06, 0x8ddd6ef3, 0x29938d9b, 0x1ee3d433, 0x18086a7c, 0x1a9970a5, 0x8d69bbea, 0x29882952, 0xd518ebca } }, { { 0x42fdaa1c, 0x3754c44c, 0x60ea1c8f, 0xdd0a3bae, 0x112c6cb4, 0x400d8086, 0xe7ac3cd0, 0xced534e4, 0xaadcc574, 0x1843f1ec, 0x61a8911, 0x4b318021 }, { 0x82fe54af, 0xe423dc8e, 0xb94980a1, 0xc984ac40, 0xe1572bc1, 0x19ae3583, 0xa29b82c6, 0xcf4d3ba9, 0xcd15202f, 0x360d200e, 0x528a14c0, 0x532c6dc1 }, { 0x4f7c9429, 0xbba65b63, 0x7f90227, 0x785d5441, 0x6c3b84d8, 0xc7761375, 0x92101519, 0xa178643e, 0x4f7c2aa8, 0x67a776a4, 0x70afb53b, 0xf738e3b6 } }, { { 0x215202f9, 0x182269fc, 0x1cf8a5d0, 0x1e2a53ae, 0x54641039, 0x5e065221, 0x1a4e00dc, 0xabc1c4c7, 0x1562c2b7, 0x96ea2cba, 0x173e6ff8, 0x23ccf5de }, { 0x11bc5e61, 0x52f04dbf, 0xc60d48de, 0xf1f8bc2d, 0x9072584e, 0x98dc6235, 0x923bda0c, 0xfdd7ab26, 0x4a7c1f04, 0xc94a1881, 0x475affc0, 0x78d3c126 }, { 0x9c92e2fd, 0x883b030d, 0x2da332f1, 0x66afd1a, 0x16248788, 0xed2f6164, 0x9f46e3a6, 0x744844d5, 0x1bc4b64c, 0x8d8ba18d, 0x86bb94d5, 0xc9535822 } }, { { 0x269c25cb, 0xc42bd74f, 0x54d6afd0, 0x252fabb8, 0xec74c848, 0x61c0318e, 0x73b6858, 0x69cb4244, 0xdce13376, 0xa26c25bf, 0x24061c6a, 0x1de72bd }, { 0x6d8699c2, 0x35870a05, 0xe4978cff, 0x6e898f25, 0xfc5e138b, 0xed94ca12, 0x5005b227, 0x504918f, 0xffc77f5b, 0xeb5171b6, 0x43e1fa38, 0x24ea6ef9 }, { 0x69d6d365, 0x3f56bd9d, 0x7ea0be6c, 0xe6ae5cba, 0x78a44bf7, 0xfc1cddaa, 0x1468976e, 0x3cc90641, 0x73aa4920, 0xe460ef9, 0xe371a981, 0xc16f64db } }, { { 0x38435f5c, 0x9d0aa5cc, 0x43afaa8c, 0xf723522, 0xf5e1efd6, 0xb5f7d8e2, 0x712b0a61, 0x72057814, 0x140d795f, 0xc650c17d, 0x6709a9c0, 0x65d26b17 }, { 0x2d09e49f, 0x699d9407, 0xa2a1e184, 0x70477f0d, 0x6eadad89, 0x2301157b, 0xec1121b3, 0x464b4e65, 0xc0c57e, 0x589a59bb, 0xfd4fb1f9, 0x7b7f421 }, { 0x17d55b95, 0xd44b58e6, 0xfb311352, 0x1338a0e4, 0xa3071045, 0x1b0c5d2d, 0x5ab487a, 0xcdb4e7db, 0x4ef7eabc, 0x7648d966, 0x5eae1e39, 0x54397b0e } }, { { 0x21a65534, 0xbd8f1417, 0xbc06f948, 0xede7a887, 0x255662d8, 0xc0bbc6a0, 0x23f65227, 0x59a48cfc, 0x52321f5d, 0x62e76ae3, 0xb66fada, 0x8b459889 }, { 0xaa291206, 0x4df27c42, 0x608085b0, 0xfce2e53e, 0x507c73fe, 0xdfb151ba, 0x38d99f0, 0x755eb49f, 0x9752be1, 0xee27e522, 0x408be8ea, 0x8fd3517f }, { 0xf1e3f3f4, 0x3fd578ef, 0x12889735, 0xcb794762, 0x7a538aff, 0x1429740b, 0xf76a1f7c, 0x1c040fac, 0x8d53048, 0x3f30e669, 0x1b065865, 0x4fa03770 } }, { { 0x7c4f6c2f, 0xdb2e8b39, 0x98bcff9e, 0x98f56171, 0x48223a49, 0xe74cb7c0, 0x81e6682a, 0x508430c3, 0xa362e58c, 0x67d940, 0xc85e7694, 0xb6c72212 }, { 0x35ad3ab6, 0xb68fe47b, 0xa2af86c2, 0x4d44dc4f, 0x2fa95122, 0xd8dd00ed, 0xf15fc161, 0x2e547fa9, 0x966ca4fb, 0xbc35fd55, 0xbd1472c0, 0x9cccf0a0 }, { 0x5161bffc, 0x2df72763, 0xb9f2586f, 0xda1a9054, 0xe3c48b85, 0x66a7fa4, 0xf29343b6, 0xa54de199, 0xbe3ccb45, 0xf3bd1801, 0x4620a63a, 0xe730b6c4 } }, { { 0xaea9e388, 0xe3c4ffa3, 0x4c91708a, 0x2b6310af, 0x68431b83, 0x8ea64d8b, 0xbbcb84c1, 0xff2673c1, 0x8866ee98, 0x7e2bc3c5, 0x55f30283, 0x119ff76e }, { 0x32edc8fe, 0x8ed953de, 0x74b7cb77, 0x2fd235f0, 0xfa94c549, 0x3f2bb934, 0x1a3eeb7f, 0xf7a7f998, 0x865fc56a, 0x9cf224e3, 0xfc192ef1, 0x42079cdc }, { 0xe37fb46e, 0x6408f2e5, 0x8724b9e1, 0x41ffa95c, 0x5116a6aa, 0x99e4ca68, 0xce777e3b, 0x6a4a89f4, 0xbb24b6b5, 0x32b1b96b, 0x9da8449c, 0xc4126d4e } }, { { 0x61776f20, 0x9ad74a98, 0x815b8f7f, 0x4108759a, 0x3fe87369, 0x3c463bc9, 0x3eb44b53, 0x7f161560, 0x961e9296, 0x56cf1273, 0x60bdc2dc, 0x6c49eba0 }, { 0x6f92e38d, 0xe2a3a8e1, 0xe23f5565, 0xb1e26afa, 0x6cbd34d8, 0xa12b8551, 0x80e0474f, 0x64c47ffe, 0x807af46b, 0xef2f5ba4, 0x2dee3240, 0x1f30994 }, { 0x2dd9ae53, 0x7d9aec89, 0xf8ea9731, 0x68bb5155, 0x3de0451e, 0x456d0b03, 0x659904b9, 0xb4c340a6, 0xc8c350e6, 0x69c39677, 0x910db67f, 0x24e9f995 } }, { { 0xd889ccd8, 0x61a7c0ce, 0x614d178d, 0x69a8cbbc, 0x95cac8e9, 0x312e0b03, 0xad894aa, 0xefe26821, 0xf1401d61, 0x113371c6, 0xcd0ce9ff, 0xc635d4e8 }, { 0xd239b439, 0xcda64cd5, 0xc08ae306, 0x973d039e, 0xdb608aa9, 0x572e8ad0, 0xae53e0cb, 0x9fbcc5e8, 0x2397cf67, 0x3dc05fc2, 0x4e197f5c, 0xfd8ceb4e }, { 0x7be35039, 0x3263a81f, 0x52160deb, 0x6e4a57b5, 0xbb76ac61, 0x4d0ed495, 0x8eb0af37, 0xb383377b, 0xa573d11b, 0xdfdac470, 0xd068faad, 0x45df1b54 } }, { { 0xff1fbc2c, 0xa76372e3, 0xdffb964, 0x987581fd, 0x27bc6590, 0x945c05d1, 0x5f950aee, 0xcc826b3e, 0x6dd399a, 0x29683367, 0xecd22a46, 0xd1360650 }, { 0x54da4b62, 0xc2e91f98, 0x1035b36, 0x32122880, 0x7b3458a9, 0xfc9ea1f7, 0xa00c7d16, 0xc880ef9e, 0x88889c9, 0x4b2d60af, 0x90db4139, 0x4edfe6e6 }, { 0x9547de69, 0xd1c86151, 0x8d84f688, 0xe69def4, 0x37b97db1, 0x909f0672, 0x4446a03e, 0x55a1ff01, 0xf7cec41e, 0xab1933b6, 0xe03e1a88, 0x27c0c08e } } }, { { { 0xe0663946, 0x858088b4, 0xa6217539, 0xeb6781d8, 0x7d104499, 0xc15fca67, 0xe360f7a1, 0xa23371c1, 0xc78960bd, 0xaca24b75, 0x7cd39c17, 0xb6274b4 }, { 0xefad5b10, 0xa33ab55c, 0xc74199b5, 0x8f9dfa9, 0xac3db189, 0xd6a535b7, 0x785c5e62, 0x1edd6d0a, 0xcb02214, 0xdb4a0b85, 0xd0634e66, 0x82dc2e2a }, { 0xd7ced1cd, 0x24531fa9, 0x2f2767a8, 0xff626180, 0x3ae9114c, 0x1eb71c8f, 0x5e8ba334, 0x370fc733, 0x4947515d, 0xb9d3919f, 0xaaefa986, 0x13f91757 } }, { { 0x5c6f986c, 0x11ab201c, 0x1794e4d3, 0x564a2eca, 0xa23ab3a8, 0x2b6d515b, 0xdc683e1b, 0x3b00b194, 0xf5ae13c6, 0x23135ddf, 0xcbf9c3dc, 0xcbd5b682 }, { 0x79e07d8f, 0x688b3741, 0x5895a996, 0xf982fc57, 0xe819453d, 0x73fb9225, 0x726dcd57, 0xef3445ad, 0x4e6fb6d8, 0x56425390, 0xfed889df, 0x287cb511 }, { 0x25c2ce4d, 0x5bc4eaa3, 0x64914c78, 0xd1402ba, 0xd00ccd53, 0x40648da4, 0xbf81f5d3, 0xa3d84920, 0x69df5522, 0xa898d61c, 0x80757fbb, 0xa9bd2243 } }, { { 0x72d2b1da, 0x511813d9, 0xcbcf8091, 0xa440e256, 0xcbc0dabe, 0xf97d4020, 0xcc9ae11f, 0x32d7c2c7, 0xcc5bfeb8, 0xd3f841ef, 0x9a81f997, 0x775d0174 }, { 0x9d1ea6ec, 0xe92902a9, 0xead3685c, 0x9dfac27, 0x2bcdfbe, 0xfab88d2, 0x59a47c29, 0xc60704e5, 0xf0605005, 0xcfcb83cd, 0x8615b4a8, 0x2b10ab3 }, { 0x6b0f436b, 0x6425dc44, 0x621d2b53, 0x72d092e5, 0x2c65bd3b, 0x64e9f054, 0x53180b25, 0x2e165695, 0xda37dbf2, 0x18f1c23c, 0x3c2b37c3, 0x72241fbc } }, { { 0x7fc3cf39, 0xa91c68e8, 0xcebe4201, 0x58bde8e1, 0xa9836d0b, 0x8364595d, 0xb9e81573, 0x5a20b673, 0x9c0a04d3, 0x61f1727d, 0x2f069752, 0x4774c5d6 }, { 0xd21d4ce3, 0xdf403372, 0xcf64191a, 0x11d08dd7, 0xfe0ef7f0, 0xb7b43355, 0x5fd5b10f, 0x914a1a31, 0x9442efc3, 0x60700f78, 0xabf95213, 0xedd3f0d }, { 0xd83db05b, 0x1ff52362, 0x7b501d90, 0x08ef13, 0x4cc9fadb, 0xcf14e91a, 0x57ad4584, 0x4cbcae2d, 0x4b864a6b, 0x33d429c3, 0x5673ad15, 0xc41295d } }, { { 0x76b31216, 0xf0a279b3, 0xab495983, 0x5eca4158, 0xe55ded49, 0x4340cb22, 0x34947263, 0x85c8c608, 0x50ce21b6, 0x329b259e, 0x7d0b3aba, 0x87c81737 }, { 0x619f17e4, 0xdb9534f0, 0xf7ba754f, 0xf5e5446c, 0xd620a6c1, 0x968f9abb, 0x2f59e2d4, 0x8775c3c3, 0xfe2f5d5a, 0x4c2b08f9, 0x530c94d2, 0x1b5c5e5e }, { 0xcde4c4e6, 0x1b52ec22, 0xc440cfd7, 0x1f47dbc9, 0xdfa5459a, 0x281afb3, 0x60d0ac5b, 0x3254701c, 0xb7a73d21, 0x28cef3f1, 0xb0b5b748, 0x2ae71056 } }, { { 0xf73caacb, 0x458a7cee, 0xe028ac54, 0xb5ff1edb, 0x8b1876a8, 0xd4d67e4f, 0x7a56e058, 0x60d3bad5, 0x427961f8, 0xc8317f0a, 0x9d4da5f6, 0x2dc4f711 }, { 0x3bd44d72, 0x6ab7b29a, 0x21744dff, 0x5ea6f112, 0x95a8fec8, 0xb0ed1c16, 0x90e3b409, 0xef66c9be, 0x71c67bb2, 0x74404122, 0x59489469, 0x47d23080 }, { 0x74b0f30, 0x5ee63167, 0xf86d8b20, 0x88164658, 0x71941031, 0x92827e4d, 0x3432146b, 0xebc96342, 0x9d84bd73, 0x810858e1, 0xb7e16ebb, 0xf764788 } }, { { 0xbee06a7d, 0xc4e81a3f, 0xac580d82, 0x5ab6521b, 0x3d38fc9f, 0xc6c2d59b, 0xc92c7dd4, 0xe0543277, 0x124c9e0a, 0x1a7ec8ef, 0x414d9d2, 0x16e87853 }, { 0x393ffc03, 0xf1560fed, 0xb127d45a, 0x77cfaa8c, 0xed50e3a3, 0xe5ad1e47, 0xff8eba7b, 0x5db8c64e, 0xc1bf0733, 0x602076f2, 0x8072d24d, 0x979e405c }, { 0x8a34a90b, 0xc1c0c956, 0x6afc1039, 0x87eb9980, 0x4b237806, 0x62a22d2b, 0x101838d2, 0x3fb61e2a, 0xa7b8fc7f, 0x755d16a0, 0xbba78ab3, 0xd940d86b } }, { { 0xc352dd6, 0x85a78f08, 0xad71ce56, 0x184262e6, 0x8356acca, 0xc5a15585, 0x88962158, 0x7038126f, 0x7c6684a5, 0xb700aa57, 0x789f675a, 0x7e27784b }, { 0x88668cbe, 0x9454a51, 0xdcdca898, 0x184e4a5f, 0xd6d0e328, 0x50005042, 0x6b609fe7, 0x652aae8f, 0x9090b661, 0x2d5efce0, 0x1aa9ea29, 0x6eeeb227 }, { 0x3bed1fee, 0xfda114eb, 0xdd6dbd33, 0xd4f3a746, 0x25c0e670, 0xfd729bb1, 0xa57edd15, 0x2b8d145d, 0xbfcfe868, 0x5a6209f7, 0x456942e1, 0x5f483f98 } }, { { 0x4469bc45, 0xfd2ba2a2, 0x34d3e825, 0xe3953f37, 0x32d96758, 0x4bc3dea4, 0x3e26b323, 0x41e4f64, 0x4c48ceaa, 0xa5e8b170, 0x8fa5b2f7, 0x90851c15 }, { 0xcf70cfc8, 0x7d36afe8, 0x4e7fd773, 0x44e78e3a, 0x2bcfa502, 0xd274f82e, 0x430124e3, 0x27c18da0, 0xcc7e27cf, 0xb4ca9267, 0x37b7a192, 0x2273d7aa }, { 0x33464053, 0x90b145b8, 0x2ea38eb2, 0x49764d38, 0x21fa795a, 0xfd910ca, 0xb747b59a, 0xe5903ad3, 0xa00540b9, 0x37ce8ab5, 0x80be650c, 0x965444c7 } }, { { 0x5794618b, 0xf454f3b3, 0x3d44dba2, 0x8baf38a7, 0x49bf2aff, 0xa21b9fbe, 0xdc3aa633, 0x74bd9f48, 0xaa442fe3, 0xaca20e24, 0xc125fab8, 0x5e6895db }, { 0x0a671b, 0x7c60320, 0xbe692776, 0x87ba84a0, 0x759e5145, 0x7d801d37, 0x8f7289e0, 0x8da848b2, 0x65730a49, 0x1d1922e5, 0xe41f548, 0x561958c6 }, { 0x2aaa9795, 0x797d1d63, 0x2b03868, 0x64653eb6, 0x704b3984, 0x1767518e, 0x56d10ba1, 0x7fcd0eb8, 0x42ddae2d, 0x36319bb0, 0x8078252b, 0x7688ce02 } }, { { 0x6968da06, 0xa8839431, 0x304d395d, 0x270182de, 0x92a43c3b, 0xb4513114, 0x3b641e08, 0x3d78499a, 0xf4632281, 0x31ed3f11, 0xbded5661, 0x1823a3c5 }, { 0xf5157c91, 0x885a8f50, 0x2abf0ff9, 0x43408b18, 0x2499601, 0x5eaa4e53, 0x3334ec31, 0xa8c2b239, 0x6859a0c, 0x522880ba, 0x7033a7d9, 0x5ed882c }, { 0x71e390d6, 0x32f328d2, 0xa94f4929, 0x842a244, 0xcba309dd, 0xfbae8db1, 0xbf374f23, 0x98541ac6, 0x415d843c, 0xcb0adcf8, 0x52e084b0, 0x38d3c8f6 } }, { { 0x26bd2dfc, 0xa0b3a4c3, 0xcf202cd6, 0x539014be, 0x1022e090, 0xf2360119, 0xf6a08053, 0xe2eb1017, 0x1a20be27, 0x57e581ab, 0x3a0cf5f9, 0x5d838c92 }, { 0x4607ec2c, 0xa7920146, 0x11166f5a, 0xa6eb32a0, 0x41d68309, 0x15dc03c3, 0xc8d7d14f, 0x99079f17, 0x9c7c8e19, 0x88d3ff1a, 0xe1be65d7, 0xd79e3ac8 }, { 0x747d5dc3, 0x8430fd8c, 0xd34f18ca, 0x9e80b8c3, 0x6d87c521, 0xf2416a41, 0xe7593662, 0x8e29c1a8, 0x1d0dd560, 0xac7aa44c, 0xea8f5e9a, 0x789a3be0 } }, { { 0x87230424, 0xd032f6ed, 0x6dd0ef41, 0xde9a34d3, 0xe628ea85, 0x68a09fad, 0x442257b9, 0x31b19788, 0x4e0638fc, 0xb9680104, 0x373fc997, 0x9d8b3656 }, { 0x5592a597, 0xbd275639, 0x66584674, 0xfb186c31, 0x970e8b22, 0x42e0c891, 0x44aa2747, 0x3e8170f6, 0xc6d53ae0, 0x8bc39273, 0x2cb1df15, 0x33481150 }, { 0x2fbe8ea0, 0x4b4cd2f6, 0xffd7278e, 0x3aded9fb, 0x2ba23ee1, 0x9ec4eac0, 0xed4bb496, 0xf8560544, 0x7843b7a5, 0xc5db5dd8, 0xb064220, 0xa72b4b2a } }, { { 0xc25829ac, 0x2f36edf4, 0xfbf75c1d, 0x3e53ae98, 0xc80ff35, 0x20f00239, 0x8cf620ea, 0x68824027, 0x7df67825, 0xf0a7b0a3, 0x4b5626cd, 0xd7f9cbb3 }, { 0xaea7d16c, 0xbff77add, 0xcce33eac, 0x5db0c839, 0x12b899b7, 0x1b94c8b6, 0xc3e0fd61, 0x8cbd2121, 0xb9c2fb44, 0x4bd43a8a, 0x5edbd10f, 0x7762fbc7 }, { 0xf84048, 0xd3b566dd, 0xaeeb79a5, 0xe8084a10, 0x5cb14841, 0xa7a0e595, 0x7ff35bbb, 0x1e59e3fb, 0x645c9db5, 0x6fff7689, 0x1834f4a5, 0xc06a00ff } }, { { 0x8d4f98bb, 0x89d018e2, 0x31512b3b, 0x207917cd, 0xe0d0a667, 0x7067bdd2, 0x849ad058, 0xd1a72fd5, 0xd52dd29b, 0xc66eb225, 0x388087b1, 0x1a7c3f55 }, { 0xeecf8a10, 0xfefe910d, 0xece86d2c, 0x3560ad26, 0x8754e18e, 0x49a6d8e9, 0x32515959, 0xa6f049d1, 0x7b37334a, 0xd2dd0327, 0x8f1d95a0, 0x480d10b6 }, { 0x1700f71a, 0xe8c3597e, 0x3e392ddf, 0x4c2a2a18, 0xff274c0d, 0x6fed39fb, 0x220e12e8, 0xf3b894ab, 0xd973e6ca, 0xb143e73, 0x414b4ee9, 0x7d1cc4fb } } }, { { { 0xae2a0a08, 0x66076678, 0x25c4dc8c, 0x566c5d97, 0x7318184c, 0x4f947a76, 0xf596dae1, 0xdb42c53, 0x4a847ada, 0x21dc855b, 0xb1557b39, 0x252fcfa3 }, { 0xc9074c16, 0x2975f7f, 0x6137c81e, 0xda22bb0c, 0x5ca52c91, 0x8e1d751f, 0xf610fcca, 0x36ca533d, 0x81c6d124, 0xaba8f02c, 0xd0d6ed5c, 0xe92e736e }, { 0xff703c14, 0x900b21d9, 0x3b3dfa19, 0x34441fc9, 0xd5b1977b, 0xf26c6062, 0x75194684, 0xe088a5d9, 0xa7827d61, 0xe14e6f02, 0xc4fc4aad, 0xd663eca7 } }, { { 0x4f7fa7c0, 0xe7f1c1a2, 0x5d5e9d35, 0x292f8914, 0xba812873, 0x596ff012, 0xc3cf8982, 0xbd8931ba, 0x536bed20, 0x3c8d941a, 0xf9847983, 0x8fcccd73 }, { 0x68e47807, 0x4828e97f, 0xd8c3e0f1, 0x51f2b1, 0x39c0c832, 0x769f2344, 0x5ef453ad, 0x38491f44, 0x940d48fd, 0xb0429638, 0xddc44b73, 0xdccecc14 }, { 0xf4b77d1a, 0x541381d0, 0x515fc0f0, 0x37771fe9, 0x5aee27f7, 0xf0efd28c, 0x950f0525, 0xad2ecc38, 0xb00b9b8f, 0xff2b1e0, 0x631dc074, 0xdca12936 } }, { { 0x600507fb, 0x304763b9, 0xa165955f, 0x3f65244e, 0x3c53de2, 0x89845257, 0x3e8146bc, 0x82b1449c, 0x7574a073, 0x5b6a6c0f, 0x34a779b2, 0xf8b359cd }, { 0xf62cbf5d, 0x25e7029b, 0xfb20dbf9, 0x98b869a8, 0x35e285c4, 0xd2bc0bcb, 0xe009d399, 0x651b4057, 0x9b2f941b, 0x5541bdb0, 0x8c0066cf, 0x2b6eabd }, { 0xac4ea51, 0x80600c1a, 0x7e3552f2, 0xe5d5e019, 0x9583ded1, 0xad130905, 0x7ad6c01c, 0xc80c352e, 0x3bc4c985, 0x35df9a2c, 0x6114959f, 0x71c320cd } }, { { 0xd176a815, 0x547432ca, 0x50f8baca, 0x54fd0771, 0x109bb354, 0x2841ff2, 0x97cd2410, 0x2fd02fdb, 0xbe26259c, 0xb04dccca, 0x63264e67, 0x89cdde24 }, { 0x42bce9df, 0x182e7352, 0x5e27eb64, 0x323715d, 0x8309602e, 0x9406466c, 0x905c78f4, 0x3e62e489, 0x2fc9c388, 0x5db08483, 0xa5e8d4dd, 0x99ab333c }, { 0x8d8d37e2, 0x6505bcd7, 0xfdbc31ea, 0x2f019cb6, 0x8bf785ec, 0xda61e8ca, 0xe7f125be, 0xf7c0ef83, 0x7fb7cf4b, 0xfa2c2628, 0x937a4c46, 0x76146719 } }, { { 0x6690a778, 0xcb503287, 0x233d4784, 0x1c0c5d9d, 0xb176954e, 0x12fd3ae8, 0xbc30d690, 0xba5d8c4, 0x5f8f9e1e, 0xeed7054f, 0xeeb6209c, 0x93ee6114 }, { 0xefed232, 0x7fbf72d6, 0x3ca10e0c, 0x4f33a6b9, 0x9522fe60, 0x2c27219d, 0x3e6da459, 0x10644f63, 0x16be2d2, 0x4aae09a7, 0xf6d4db7b, 0xde5daa9c }, { 0x4f8c361b, 0x175365fb, 0x76d372cb, 0xdc4317a5, 0xa7e1491a, 0xd6da9f3d, 0x3eb5e701, 0x5fb712ba, 0xed59d917, 0xdaf723f7, 0xa32b0bc1, 0x505b3dff } }, { { 0xf958a6f1, 0x7cee67c4, 0x8d23348e, 0xa1aafd78, 0x7c5d287e, 0xc81c9271, 0x2f7a581f, 0x46dae4c, 0x289c1371, 0x693db2d6, 0x5c4690cc, 0xb78c28c4 }, { 0xa941bff1, 0x6a2106a8, 0xa1337d73, 0x3db70b9d, 0x255fe712, 0x75227363, 0xb94724b3, 0x6a7f1208, 0xea68d611, 0x76fceef9, 0xa495fd47, 0x6c6049e }, { 0x46a6f673, 0xdf31fc7a, 0x2774b0e3, 0x5d548509, 0xb5277a02, 0xe93f0afc, 0xba993dd4, 0x781bdd37, 0xa98566db, 0x49189b7e, 0x952e175, 0x4c5207f2 } }, { { 0x66f7e382, 0xfba138a2, 0x1979d85d, 0x81576746, 0x9248ce4f, 0xa89177ca, 0xfad1b121, 0xd52e4892, 0x4c85ae2b, 0x9eb1dfc2, 0x508ae7d2, 0x323de61f }, { 0xf6df4187, 0xfc03f596, 0xbb4bf7fa, 0x81bb7f9e, 0x8b0051bc, 0x75b6446, 0x697dc192, 0x56f6e142, 0xe378f014, 0x742ad8a8, 0x5c6d83d0, 0x57e5d5e }, { 0x1a12b6e5, 0x1b463a67, 0x462f7aab, 0xf57cc8fb, 0xfaec211f, 0xee10667b, 0x44f819d, 0x6d242ea7, 0xe1f597e0, 0x6f41362, 0x538f5974, 0xc7812b0c } }, { { 0x253a787a, 0xf1f7806b, 0x5aac3f88, 0x452d81d6, 0x4f9b1428, 0x2cb4ad20, 0xad715064, 0xdefc2083, 0x16e03cad, 0x3fb9df1c, 0x2b3126eb, 0xbfa0d4df }, { 0x41114fdc, 0x37723d24, 0xc14d4aa4, 0x2262509c, 0x63147ec3, 0x53b0d6e1, 0xdc99a67c, 0xd4a907b5, 0x869d6cf8, 0xaf86cc21, 0x1190c318, 0x91dd7566 }, { 0x850acde6, 0x5dd716ad, 0xf45fc95f, 0x24399370, 0x57fad5c5, 0x6e88a01, 0xce54d49f, 0x34057bbc, 0x43fe58ef, 0xad40bbed, 0xb84d98ec, 0x983d4e49 } }, { { 0x9cc3639c, 0xe66cdc64, 0x3002fd7c, 0x44e12238, 0xe46da558, 0xeec83420, 0x70f61e7e, 0x6e8817d4, 0x1dd6bed6, 0x8b70395a, 0x882d78f6, 0x4eef7c1c }, { 0x884b6d89, 0x2f7f4115, 0xf320ddd5, 0x1e0779e9, 0x9ee0d173, 0x95f2da8, 0xcca8f0f0, 0x3d365134, 0xba031cba, 0xe7c38511, 0x3b23d737, 0xf2479371 }, { 0xebc2d20a, 0x7a3473a4, 0x626d249b, 0x84634dab, 0x9e07fe47, 0x967b92ee, 0x8b5c4b01, 0x9290dc84, 0x149e78d, 0xa387291d, 0x50ce72a9, 0x265f4a6f } }, { { 0xf9a7e02a, 0x56926220, 0x96eb90f6, 0x34e4e95f, 0xa92e0b67, 0x8cab962e, 0xd974c211, 0x7e816d62, 0xef426495, 0xdaab77d8, 0xff0fd6d2, 0xb679308d }, { 0x4536b465, 0xa00cf7c5, 0x40331460, 0xa52ac703, 0x7e645d6d, 0x8f7efb65, 0x9baef962, 0x4b9e091, 0xa69b413f, 0x14d40c8f, 0xdd301d49, 0x5e2e54cf }, { 0x610416c1, 0x474da74a, 0x8891a933, 0xbc98cc04, 0x2a17695b, 0x7b5a0346, 0x1508f53b, 0x953294fb, 0xfb384b88, 0xd7b07807, 0x319d487c, 0x3854bd9d } }, { { 0x298f7bc5, 0xee416352, 0x3763e997, 0x46602c4d, 0x63b4a0e0, 0x694613ae, 0x99b53258, 0x77aa51d, 0xb8b0b93c, 0x75688b82, 0xa61fde2a, 0x3ef772a8 }, { 0xb03ecf94, 0x96cedd15, 0x6de4ddae, 0xf8eacb0e, 0x80e35b5e, 0xedcb808c, 0x148ecc1d, 0xcd43b4a8, 0xf4c13683, 0xcf28efd1, 0x141587e0, 0xa97235e9 }, { 0xa6874ec9, 0x2c99fef2, 0x27de4b1, 0x175c40fc, 0xee02515f, 0xebdb35b1, 0x1de770e, 0xf48feefc, 0x2da2c481, 0xcc29963, 0xb72f46da, 0xe8d4e9e } }, { { 0xb101298a, 0x1b1cee61, 0x725c0854, 0x2585264b, 0x320cbd64, 0x2a8e862d, 0x87dc805b, 0xc151efac, 0xdfd8ab43, 0x513075af, 0x65d65ccb, 0x8c13fdf3 }, { 0x7f48567e, 0xd3501f1c, 0x6fbe268e, 0x72c11535, 0x60e3f2bc, 0xf0e24c4e, 0xd46049eb, 0xf1c8deb, 0x657064e9, 0xe416f72a, 0xaabbb89b, 0x587f8328 }, { 0x1ab02825, 0xa3fcb550, 0xb90d96fd, 0x61ff628b, 0x6b9ef21f, 0x496fc941, 0x6df8280f, 0xa8b38377, 0x80767bef, 0xdd449c1, 0x56dec625, 0x8567835b } }, { { 0xf8ba2c5d, 0xb164a215, 0xf5284b9e, 0x263e6db7, 0xc9dec299, 0x6e8c1569, 0x9324c9b4, 0x3c386fef, 0x7591b0db, 0xf71df30e, 0xd1f4b02b, 0xc47b245d }, { 0x357d188, 0x46156e03, 0x664c585b, 0x34ac2a45, 0xc9cc0225, 0x9ee76246, 0x3c2e89eb, 0xbf3239db, 0xa7745cfa, 0xf04c47f6, 0x6b5b7ee5, 0x34a9266f }, { 0x4e5bbdff, 0xe6387ee0, 0x869a4cc7, 0x2f64559c, 0x62e895f7, 0x3ea9baf, 0x685355e2, 0x552b1e66, 0x1eac5379, 0xdbd51df7, 0x84f1446d, 0x9c16d65f } }, { { 0x3a9e2b30, 0xb5ffcde5, 0x77d81489, 0x5e187302, 0x814e438b, 0xd03232e4, 0xe494075, 0xfb1d9402, 0xa3446ca7, 0xe81a682, 0x6142d81f, 0x3c2c85ee }, { 0xee64574a, 0x1bdf23cc, 0x17e60e84, 0x4d3718f, 0x450c88fa, 0x66f670bf, 0xe69aa779, 0xb88b12b3, 0x2efc7530, 0x1751ce5f, 0x44795b6d, 0x45cc8668 }, { 0xf603caec, 0x249d9e95, 0x4c6ec893, 0x759a76e9, 0x76ee358b, 0x938a0cca, 0xabd4b4ba, 0xb893981c, 0x591311d6, 0xaf5c6128, 0xab2c5fc1, 0x5ed500b4 } }, { { 0x3fd23dd8, 0x6cf97d95, 0x5a6b3c1a, 0xebc90d65, 0xb1d4d7b5, 0x69c6a974, 0x9bee1b17, 0xf3057fe3, 0x25051d31, 0x1a8af4ab, 0xb7eb08ac, 0x7664e455 }, { 0x94804c16, 0x2b989f25, 0x324d2113, 0x8ec1b85b, 0x17f44c36, 0x847ee585, 0x7d275793, 0x2199b0a8, 0x664ad25d, 0xb50dde30, 0x1ac95f4f, 0x64ea23f8 }, { 0x7f3e2404, 0x4cff0b53, 0x6fd90bc1, 0xabb11846, 0x102cd3f6, 0x234e4ae, 0x91903f82, 0xffcb1f29, 0x8b34fc89, 0xdb580a9c, 0xa6750cf4, 0xc8d65e8 } } }, { { { 0x60d4c7aa, 0xe2432084, 0x90b0638e, 0xfe8727f4, 0x80a08ae, 0x141bba31, 0x334c0e8a, 0x8cad3768, 0x73f3cb99, 0xb72a085b, 0x220cab0b, 0xffdba7be }, { 0x7cad1506, 0xff0c77ce, 0x2cf29fa7, 0xa2932a72, 0x36d57b96, 0x5a13aa07, 0x38f5598b, 0xe071cbdc, 0x7d7159ca, 0x21b1ce29, 0xb7725f53, 0xb66a712a }, { 0x780222bb, 0x61012949, 0x13b3eeea, 0xa56f7f97, 0x50fd4e11, 0x7c924d2d, 0xa39f53b1, 0x775efc24, 0xd77d2071, 0xe6c85d67, 0xd795817a, 0x6fd69bea } }, { { 0x42f76e6d, 0xb14e5355, 0x656d2242, 0x8b7fe913, 0x9829922e, 0xe9c5daff, 0x2d49cfcd, 0x814f83b1, 0x6a160495, 0x33c9ab64, 0x58ffdcc2, 0x4e664043 }, { 0x870fb427, 0xdf1b125c, 0xfa2b9cd, 0xc33d4130, 0xf9563ac3, 0x4a068e76, 0x7f2cc7f9, 0x9fd90308, 0x94024210, 0x7d47f44, 0x44ceaeb8, 0xa5529ddc }, { 0x6d558227, 0xc4283fd7, 0x22e40d24, 0xd49d9404, 0xf1d8e35a, 0xdb21f97a, 0x79d6aa8f, 0xe093c859, 0xaaa8735d, 0xae503378, 0xe323017c, 0x85916d8c } }, { { 0x1aade5a9, 0xb2367645, 0x2785eee7, 0x171f01c9, 0x370bfd6f, 0x519081a2, 0x36f2e204, 0x1b05eb1d, 0x2b71703b, 0x8b9718b4, 0x71ef921c, 0x51e486fb }, { 0x4968c0a, 0x444f8065, 0xaa9ba09e, 0x45cdf624, 0xfada76c, 0x9f5a4d60, 0x5dd8578e, 0xa99fbb03, 0xe2f79f71, 0xb7f39eb0, 0xd9e449ab, 0x8dc2e9ae }, { 0xaa447a8e, 0x47f1396b, 0xed7e1212, 0x183c4095, 0x21d489d4, 0x290e4e3e, 0xbccd5c1e, 0xad6ef9c9, 0x1bde8cd4, 0x7dcd7ea0, 0xe8703ef4, 0x9844fb32 } }, { { 0xf42e06e7, 0xffe20006, 0x1138d96e, 0xf3752fd3, 0x307b5c1c, 0x431b51ff, 0x3b9f7766, 0x93f0babe, 0xbe5d41b, 0x6741d93b, 0xca068d98, 0xb6ddef06 }, { 0xd5740983, 0xa5129c24, 0x42df731b, 0x93efd65f, 0x49844da7, 0x38b98157, 0x60f601f7, 0xab8d9ed1, 0xc8c7e8fe, 0x64169027, 0x20aa0f3d, 0x1c3162d5 }, { 0xe1e6ed22, 0x9f5cbbb4, 0x3f0ca7f6, 0xbda29dc9, 0xa0b4af37, 0x949e0f1a, 0x3630cb18, 0x7b3f0510, 0x14ed36b2, 0x5d50023f, 0x9ef94fa, 0x69d84d0e } }, { { 0x4222ad51, 0xfb64bf51, 0x981b451e, 0xe33de867, 0xfec0247b, 0x810ebcc, 0x3579e37d, 0xd770f80a, 0x940310d5, 0xb87ac5e1, 0x5a64e662, 0x1700209f }, { 0x889b4695, 0x21bb27dd, 0x6940c7d8, 0x24880392, 0x5efd8d50, 0x56faefb8, 0x25c3c06c, 0x22395c0c, 0xd03f3b1b, 0x8783d561, 0x1c58c61a, 0x4a10411b }, { 0x3b6d0d33, 0xbbf0deda, 0x86468900, 0xf5a19f96, 0x4dda2575, 0x306e3369, 0x61b9d3ba, 0x1868c5a0, 0x5067c664, 0xbd776720, 0xb30deeb2, 0x7ec22ee } }, { { 0x9c47d09a, 0xe5deb03, 0xb9f3fe7e, 0x39790b16, 0x8105c906, 0xc1f9fd4, 0x9fce5012, 0x4c5727eb, 0x7c35b393, 0x8c2213c3, 0x8b3e501e, 0xf3bb751d }, { 0x3e86eadc, 0xef3af401, 0x73061343, 0xf2c12ef9, 0x3e6d8d4c, 0x953b81fe, 0x261a6638, 0x11830873, 0x16a19958, 0x819ead1b, 0x3f0fbbc6, 0xfe1d2a30 }, { 0xcfb49f25, 0xc838e3f3, 0x49285e25, 0x632858a4, 0xd036273c, 0xf2053076, 0x7c4edbfb, 0xb76c0db2, 0xdeb10f1a, 0xa8057c92, 0x2e5cd72, 0x6b9f477d } }, { { 0xe9098e44, 0x5ef4830c, 0xaaac4686, 0x19bdef15, 0x578f7505, 0xb273defc, 0x1f60d729, 0x76a61c34, 0x1a576ad9, 0x984f6022, 0x2a21a09a, 0x3cff81b5 }, { 0xf86f7964, 0xcdf777a8, 0x21e6cc03, 0x29566f27, 0x8c305d71, 0xaab222b1, 0xe4120cea, 0xaa380898, 0xc36314f6, 0x9d1e6574, 0x4a564cb5, 0x8a6296c2 }, { 0xc1029820, 0x70fd5a35, 0xd7a334c4, 0x84b21782, 0x7ea396c1, 0xfad02e9, 0xa65a0205, 0xb1d66fbe, 0x74a424d2, 0x4294abb3, 0x488c9d80, 0x50eb712a } }, { { 0xe95aa828, 0x9c7d7c3c, 0xc88ea982, 0xf785d5f5, 0x5c7fb79e, 0xeb77397f, 0xd99df617, 0x3efd1360, 0xbe224f7, 0xb735c7b2, 0x9175c670, 0xab7416b3 }, { 0x8f9183ec, 0x7f9b8168, 0x81bbf9ee, 0xb65d12d6, 0xe984e2c2, 0xb5ca02d4, 0x88b8c304, 0x87cb0dea, 0x6eb80e78, 0x743f8efa, 0xc80fd960, 0xcbfbb410 }, { 0x32ecdee6, 0x58989331, 0xa7fb2028, 0x3b5c269, 0x4f9c3f36, 0x1f930be5, 0xf5ec1fe6, 0x8e140039, 0x7c63fcd2, 0x1c789446, 0x99973d40, 0x6a1d1b66 } }, { { 0xff9ae559, 0x595d354c, 0x6117848e, 0x746ca1, 0x52075eb5, 0x5821d829, 0x79abebf, 0xadff8bb, 0x4de37400, 0x9beb8f15, 0x6dc952fa, 0x17b5166d }, { 0x5b7ee1a, 0xbc005504, 0xcd9029a5, 0xb97bfc34, 0x23febf, 0xffdd02ea, 0x878f325a, 0xc0be92f9, 0xcfd3fcd2, 0x4a55059d, 0x56574440, 0xbcef8664 }, { 0xb7dc3910, 0x921c0f72, 0x7a25b83e, 0x6510d696, 0x5d940e02, 0xc52f27e9, 0x6209a48c, 0xf4ee5f12, 0x9b53e973, 0x44bf7f35, 0x9033c0d3, 0xac85e56e } }, { { 0x99a20f10, 0x94b82053, 0x6df74367, 0x86667a6c, 0x41217a41, 0xfff6ce23, 0xf5df1d72, 0xaa64fca1, 0xe2c00f4b, 0x49e41922, 0x15db0d25, 0x3721abcb }, { 0x4d0c3995, 0x81c495c, 0x9908ad54, 0x3351d55a, 0x4f28f0e4, 0xdc42bdec, 0xa8bd8401, 0x837e7d55, 0x34eb1f62, 0xfaaea812, 0x6303fd37, 0x657be3a0 }, { 0x40c4c878, 0x2709b5dc, 0x23e07ccb, 0xb20986f3, 0xe40b7804, 0x96de00e6, 0x2a09965d, 0x89815a76, 0x48a07a1e, 0xd7d381e4, 0x7789c55e, 0xa26111d2 } }, { { 0x26f11a9c, 0x3f19b659, 0xe7dc7dfb, 0xda021c03, 0x1c0b636a, 0x53cd8c4, 0xd4730054, 0x1287003f, 0xb2a5a560, 0x5e3ddc3e, 0x942b0cb7, 0xda84570b }, { 0xb32004e0, 0x2b34c52, 0x881ebbb5, 0xb7fd6d14, 0xa71d7745, 0x591b7568, 0x71958aa5, 0x950c689a, 0x198c4275, 0xba4faefd, 0x29b13a92, 0xea37a19a }, { 0xa0024b4c, 0x92479301, 0xba5b08f8, 0xb16ff733, 0xf765f40e, 0xc247ebb7, 0xf2db856, 0xfcd39bf4, 0xc0be409f, 0xc73cfba2, 0x6956fcd, 0x305a9af4 } }, { { 0x5cccc0e0, 0x2ae66b4b, 0x36268ac5, 0x29a67267, 0xae2696d0, 0x27a7c87f, 0xaf345d16, 0x9b4bddf5, 0x8996cdf6, 0x65d4fa9b, 0x33f902c5, 0x8c7a1f6b }, { 0xa56051c, 0x55d31144, 0x5a897c0c, 0x3d30778b, 0xf276ce0d, 0x63c98492, 0xe5107e0e, 0xa930bfbd, 0x52acc6c, 0x53c76cbe, 0x893535d1, 0x7da803cc }, { 0x4f077738, 0x8755b888, 0x96d0d90e, 0x9e36527, 0xf69e5b06, 0x693f515f, 0xadcca852, 0xfe16cc, 0xd8028b71, 0x28ff2fea, 0x8a0cb0d0, 0xa6e9ed9c } }, { { 0xa9c9a4ff, 0x1ff66460, 0x92543632, 0x311e13ab, 0xfa5a6495, 0x42faf245, 0xffacbf5d, 0x9b7b6915, 0x29e1edaf, 0x4b13c2d6, 0x7fed58fc, 0x8eee33b }, { 0x61b2cf6f, 0x3b790b49, 0xfb33825a, 0x8d820eb4, 0x2cbebc5b, 0xaa537ebb, 0xe6691da7, 0x4ec3991b, 0xd412e769, 0xa1e7afb0, 0xbb741ca0, 0x43b2f3a9 }, { 0x7f5538aa, 0x601d56ab, 0x1e4b662, 0xbec0ce22, 0x85a390d8, 0x725f6794, 0x82b34c8a, 0xf24e39d4, 0xaf071abe, 0x882056bc, 0xaa5d1cd3, 0xddc86e8c } }, { { 0x6f6aca4d, 0x9884cd10, 0x39e24f23, 0x2a80c2aa, 0xd879fde1, 0x3d4ce741, 0xf4c352e, 0x78ed9236, 0x47a41c19, 0x122c8437, 0x7e03186b, 0x3a9b94b1 }, { 0xb8abc740, 0x96c4dad4, 0x8d452403, 0x12adedc2, 0xa9ae4716, 0x57c603c7, 0x78eeb3ff, 0x647cb9c1, 0x7eede89b, 0x2e82142b, 0xa2769bf9, 0x87d90e7d }, { 0x5eb7c227, 0x60b1c2c0, 0x1311374e, 0x5041c1ac, 0x2c4cd442, 0x68056eb0, 0xbd2a28db, 0x427667b9, 0xea4dd9d0, 0x9024ab7c, 0x6aebab2b, 0xf3c8086a } }, { { 0x1804689c, 0xc7716593, 0x3cb732d9, 0x96eeadc9, 0x24296571, 0x7a3624d2, 0x61cbe6f, 0x20c675f, 0x79fd60e0, 0xfb3fc615, 0xc2eed64c, 0x24618aae }, { 0x4b0ef90d, 0xbfbd4fb5, 0x89fc4806, 0x91ea459f, 0x9fc2f4a6, 0x6ff7f601, 0x17b0f1d4, 0xceceea01, 0xa3568b80, 0x3c891b27, 0x40db48a7, 0x603a35a8 }, { 0x7f03209a, 0x48a49493, 0xdd456195, 0x96d44ac2, 0x439a8cae, 0x2dbfcb1a, 0x28abcfb2, 0xb19859f0, 0x2d294a53, 0x38f8f7f0, 0x1bc3e33d, 0xeb9be1c4 } } }, { { { 0x74a183d5, 0x9ad865b, 0x3a378d32, 0x9352b49d, 0x1857dba7, 0x8dbc65ed, 0xf63c2f6e, 0x803b33b3, 0x5c514bd4, 0xeddbd49c, 0xe99df648, 0x996612f9 }, { 0x58eac66e, 0xaebdb1f1, 0x7cd31a2d, 0x5e7a0f15, 0xa1ac8186, 0xe39a7e0, 0x61e5b687, 0xdcd4df70, 0x6529005, 0xc2ad969d, 0x8042e969, 0x833c96c2 }, { 0x245f1fd4, 0x21280830, 0xdc0d6a4, 0x12548e4a, 0xc79ba6e7, 0x5013b4df, 0xd37d93b6, 0x49b89336, 0x8799e013, 0x64f7632d, 0xcaae57f1, 0xc1c88156 } }, { { 0x63c30948, 0x3a760a57, 0xdfa9c9b2, 0xf744690b, 0x35e4338d, 0x8c61e487, 0x1b6c1a6d, 0x4f777f82, 0x45c16015, 0xa5d47465, 0x5400cdb6, 0x2e8ace4b }, { 0x7870bf00, 0x58294442, 0x28c278f7, 0x381bbfc9, 0x4b2b2ccb, 0xf7821133, 0xe2e9b528, 0xe9ed912e, 0xef5b7f3c, 0xbc0d4a68, 0xde4b71e9, 0x4509121f }, { 0xa2555840, 0x43282470, 0x8e41fa77, 0xdaf136dc, 0x2f211c1d, 0x46190a86, 0x5e299435, 0x5e18a544, 0xb7d9cf7a, 0x34b41edc, 0xb10d39c5, 0x897a64f } }, { { 0xd22b677f, 0xe297e15c, 0x1507a667, 0x402f7d77, 0x67e122b, 0x25751aa9, 0x53d30ac3, 0xa0fd8481, 0xb9376800, 0x6ffdff66, 0x19c0c492, 0xc8ec24b6 }, { 0xcf0bffe8, 0xb1fbbdae, 0x2cf0ec, 0x86e17019, 0x5c7a767b, 0x433a742, 0xdafbbfd, 0xb84db8c7, 0xe4afab8c, 0x7551653, 0x71658de4, 0xb96b3e1b }, { 0xe8101007, 0x60df6291, 0xfdc85d71, 0xc7660630, 0xd6d6a5b4, 0xecab7a7c, 0x849f6fc0, 0xf12d2281, 0xd70d405a, 0x7d5ac395, 0xc9882c07, 0x39bba916 } }, { { 0xad4782ae, 0x9022a11e, 0xc3efc1c6, 0x8abaf64f, 0x34a803f8, 0x2b350769, 0xcf0fc39d, 0x198f0d2e, 0xbc183024, 0xb63c5a37, 0x591d7c82, 0xf91bdf90 }, { 0xff0102aa, 0x92bce7ec, 0x8f7b4a0c, 0x19ca7faf, 0xdd95520d, 0xe3f948f, 0xd8aec8fe, 0xa6945b2e, 0xdfe7773, 0xef3577ac, 0x3d074c44, 0xfdbd25e2 }, { 0xadfaead6, 0x9e6f5ba, 0x9c40891e, 0x39a5148e, 0x90a402d7, 0x770920c8, 0x6b11ad59, 0x8efda5b0, 0x12dbd162, 0xa5e0373b, 0xcc305c47, 0xaac5683a } }, { { 0xf05a0a35, 0x9422aeb3, 0x5e6348f1, 0x4a27bf76, 0x569f940c, 0x90738176, 0x7c9b8856, 0xe7a29b54, 0x260af53e, 0xbdf0c89, 0xdbdf2af6, 0x71f074f2 }, { 0xa91f7e46, 0xe7acdf6a, 0x4aa9403b, 0x3ef1b7b2, 0x81f0fd07, 0x8df0a524, 0x51589a85, 0xdc5950e8, 0x7fb4bce1, 0xcce2b3b0, 0xe5551b8c, 0xb6824433 }, { 0x3d729689, 0xf1199338, 0xcff0ac69, 0xc320fb5e, 0xb6168e14, 0xf0c9618b, 0xe0217593, 0xdee03f6, 0x8de977e2, 0xf5709815, 0x8c68c239, 0xdf36330b } }, { { 0xfb647773, 0x654e4485, 0x36444683, 0x3b0e2709, 0x794dbf00, 0xb1058504, 0x8c410ae2, 0x5890c181, 0xd0f66dc5, 0x3f91b2f7, 0x4bf34223, 0x77ee6e1a }, { 0xfc0b689e, 0xdaefd5f7, 0xa3e0656e, 0x3ecadcdd, 0xc500dfbe, 0xe464a882, 0xae85c895, 0x22e82762, 0xe5c8afd2, 0xe84e5452, 0x2ee32f68, 0xd60a5146 }, { 0x6070e2bb, 0xe8bb5e31, 0x756712e9, 0x192e0016, 0xedfb00be, 0xa5de4afc, 0xb99ec6b2, 0x726e6dc3, 0x8d9ef98, 0xc09901d6, 0xd4b9d32, 0xb62cc119 } }, { { 0x333b9411, 0x81846c84, 0xebef1704, 0x39f4556b, 0x7088769a, 0xf557bca0, 0x342dc188, 0x15cc60f2, 0xbeb2f6be, 0x30318929, 0x151b30d9, 0x8db6fe52 }, { 0x6236cc68, 0xc0acba18, 0x76ab146, 0x67acb02, 0x5e85f0b9, 0xbe398b49, 0x506074ae, 0xa34edf68, 0xcff783ec, 0xaab7d49e, 0x16ec6737, 0x86c10001 }, { 0xfeb74cde, 0x9bb4f1a2, 0x4efeec43, 0x7bfebf7c, 0x8f1e311c, 0xe44b6a2a, 0x1a727e64, 0xb615f2b3, 0x3f8b7a15, 0xa78a9699, 0xdba264fb, 0x3bd737f0 } }, { { 0x3fd14ed1, 0xaf2fc266, 0x31466d48, 0xe0cda4e4, 0x83f386e4, 0x15c2eca0, 0x8c5a32f8, 0xcc203dad, 0x51934b57, 0xaeb1fea4, 0x3957f411, 0x2a5d8e19 }, { 0xecffde7f, 0xacf25992, 0x6b8b0443, 0xe27a2d9, 0xb2f0bdd5, 0xe2c1d20f, 0x2f3e1266, 0xe2a73542, 0xfc99c739, 0x5081d873, 0x66e09a2e, 0x8609e216 }, { 0x818f9b9b, 0xdafde317, 0xec132c88, 0x3af1dd31, 0xf9b15379, 0xcd5fc16c, 0xbe8fd364, 0x1d6a3a38, 0xca6c659e, 0xf0221237, 0xa990aa69, 0x96c482cb } }, { { 0x389659c5, 0x2f1d640c, 0xd2cd6455, 0x750e38f7, 0xf4a59f5, 0xd11338f8, 0x1674ec, 0x9ef03263, 0xa34a8d53, 0x954c0da4, 0xcdb53d4, 0x447e9c1c }, { 0x2d5dd1a3, 0x74799fc9, 0x314ea6f, 0xea605372, 0x64ddb0ac, 0x1baaa808, 0x28380983, 0x3299538a, 0x9945a932, 0x2ff88047, 0x92a53e27, 0x3419eddc }, { 0x409942e2, 0xa230af56, 0xbd8bcd70, 0xcc2ba67d, 0x3a72142b, 0xa87c446c, 0xfa290f71, 0xb2835327, 0x55395e0, 0x46d37f6a, 0x5f892ac4, 0x4ac46c09 } }, { { 0xdc3e9d14, 0xa10aa2ef, 0x7839561e, 0xa628f1ca, 0xb544252d, 0xfc98a3fa, 0xb47c5e1f, 0xb88de2d3, 0x99325b15, 0xd9fc673b, 0xe063f436, 0x67dc8282 }, { 0xdf8bb7f4, 0x244ffc6, 0x2d0cf2f8, 0xad558dd2, 0x4ddc1eb3, 0x411710e1, 0x46f69482, 0x66552aba, 0x4cef5eb, 0xf6481675, 0x478578d4, 0xdd90afce }, { 0x421eb2eb, 0x9a098a17, 0x45322e53, 0xde198f87, 0x9df83346, 0x87b41261, 0xf7156f27, 0x152ccd3e, 0x91d6a6dc, 0xdc8fd874, 0x15e30df5, 0xf7d28d4 } }, { { 0x42e05981, 0xa99e3b2e, 0x81cea2f0, 0xacfcfbea, 0x8c7da28f, 0x461042e3, 0x3d187e3d, 0xfb64a667, 0x10c02508, 0xc2481fb8, 0x2a1e4927, 0x282913c7 }, { 0x325aabe6, 0x39e77ce1, 0x547bfed1, 0x6951c6f6, 0x633726b7, 0xba917d89, 0xcf06a07e, 0xeb5cd445, 0x67ae3d37, 0xd74e25e9, 0xcfd6fb89, 0xc944e59e }, { 0x28a666ad, 0x2cbf4e5f, 0xf20ae4c6, 0xba46566e, 0xf639f547, 0x6da55ed8, 0x9a8c7352, 0x448f9e09, 0x4e523dcc, 0x173541e6, 0x6b8f9f3c, 0x21f9d25c } }, { { 0xe5f0cfd5, 0xf2e7995c, 0xee9b05d4, 0xfd5edb4a, 0x5050d812, 0xf0838437, 0x602bf8ef, 0x9abc6c12, 0x38da491b, 0x8f9a5b9a, 0x448d7588, 0x7de23e40 }, { 0xd52c849f, 0xfb21ecf7, 0x86b67e6f, 0xf5ee45a2, 0xb3db2ee9, 0xf1f824d5, 0x4c223f44, 0x496486b, 0xd7435ac3, 0x22ec08ac, 0xddebefeb, 0x5e8c1bc2 }, { 0xaa9b50d6, 0xb58cf65c, 0xf577a272, 0xe8b444a1, 0xf8744a33, 0x2273480, 0x437c0bce, 0x24f8dcec, 0xb6b3eefe, 0x7d01cb8f, 0x7d617699, 0xcf30ff0 } }, { { 0xa8b254dd, 0xfd1f8fa0, 0x15961f2f, 0x3769212f, 0xd5deb3c4, 0x62a37165, 0x78856834, 0x3f3546fb, 0x77922141, 0x3faf23b4, 0x3bb463aa, 0x5eaf7329 }, { 0x424ec53c, 0x9295cb7d, 0x6e17b197, 0x7ee9b75e, 0x67d6f009, 0xc91e15f1, 0x6d0e3f29, 0x931f8e01, 0xd339edd1, 0x50a3de41, 0xfd9c6a75, 0x39c9f684 }, { 0x617bcbc7, 0x7b6aa34c, 0xa916d1eb, 0x51d7a42f, 0xa2cf0ef9, 0x72541361, 0xf61dc7cc, 0x64b573a0, 0xc478b1ac, 0x1fd8ebe4, 0x5c9aa503, 0x2c8325dc } }, { { 0xb0c5130e, 0x90de93d5, 0x46282730, 0xa50e33ca, 0xc0625ab6, 0x2c10a52f, 0x1f254d84, 0x1c2063c8, 0x7e49c5dd, 0xcdab90bc, 0xbd166e0c, 0x152faab1 }, { 0x91e6478, 0x3e97c3c7, 0x5c285459, 0x170898e3, 0xac3ce549, 0x4efe6004, 0x56edefd6, 0x72dda07f, 0xba186ce3, 0x93b2df06, 0xf73a8179, 0x79bc8f3a }, { 0x113d7860, 0x79adde87, 0x6494df35, 0x32a12825, 0x73c78e91, 0x6c8af011, 0x9fb4988e, 0x4fb072ad, 0x6e83d4c9, 0x56c481f, 0xd724aec6, 0x5b135125 } }, { { 0x4e40af79, 0xe7abc31a, 0xc23018a7, 0x334cd1fe, 0xe09c8d0d, 0x5ef3aff, 0x1327e9be, 0x862fe16e, 0xfdde5fa6, 0xe46cdc9e, 0xf2079ddb, 0xd2628fbd }, { 0xcc33707f, 0x6f199988, 0x1db99687, 0x7985d7db, 0x693775da, 0x83d945cb, 0xf725ce95, 0xdfe25d52, 0x366bd9d7, 0x1b2af6fd, 0xb52561db, 0x839b1401 }, { 0x27e70c9a, 0x3190847e, 0x77177cea, 0x8f1279f, 0x97b96718, 0xb2cbd538, 0x958316a8, 0x25734850, 0x1c7ed310, 0x582a58cb, 0x6e0ebad, 0x5b38914b } } }, { { { 0xb689a2e0, 0x2de7ac12, 0xff6e330f, 0x2b712187, 0x9fa5f9d2, 0x63b49a1, 0x2645dc61, 0x487824e, 0x83136361, 0x66c6ae46, 0xe9dddd45, 0xa1e50b0a }, { 0xa40c4861, 0x7c82e3bf, 0x94c85be9, 0x5d730dcf, 0x85d9c00, 0x63f1ef84, 0x9fc3c943, 0xe57b0c7e, 0xd539a1ac, 0xf55f34dc, 0x8a2a7685, 0x2e81d1df }, { 0x89d61082, 0x5e53db8c, 0x805e34d5, 0x1b71c569, 0x2c86533b, 0x7aeb1dde, 0x3021111c, 0xc691137d, 0x8b0f4c1b, 0x579a9e7, 0xc0ae51ed, 0x1b0a8115 } }, { { 0x19f689a1, 0x75d50c23, 0x62252731, 0x9e275520, 0x8cfde359, 0xf24bec7c, 0x2e5c8218, 0xc5fe8ced, 0xb1ee4bb4, 0xc2c45b03, 0xc3d3f8d2, 0xe5db9358 }, { 0x346950e9, 0x279f16fe, 0xce0191d1, 0xb1693a69, 0x5b489bad, 0x2ae6c392, 0x41f707db, 0xfda01e68, 0xe0e63b67, 0x1b9d6583, 0xaec5406, 0xb9cc1041 }, { 0xd98a7841, 0xc1d864eb, 0xe4909958, 0x9a53b006, 0x1f51dd5e, 0xb4b05fdb, 0x282f3703, 0x6bde3269, 0xc3f56e52, 0x23839db4, 0x49c42d70, 0x32766197 } }, { { 0x21d2713, 0x963652e5, 0xe30e9583, 0x10226476, 0xe909b0e2, 0xd19d3e5c, 0x1ec195eb, 0x6157208c, 0xba665fc3, 0x7778dc53, 0xdea0bd65, 0x1ef942a6 }, { 0xa16568c6, 0x22f25238, 0xe7749b7c, 0x971588d, 0x94345bb5, 0xcc2576f8, 0xb1ce6805, 0xf9ea5e26, 0x180bdb25, 0xbf3f711c, 0xeb546c47, 0x3ea2d800 }, { 0x4982f70b, 0xd7ae2be5, 0x4d8b6fcb, 0x99b46efb, 0x600e0a81, 0xf6b6f64c, 0x6abd9a3e, 0x8b42f01d, 0x362cdaca, 0x229e027a, 0x803cfbc3, 0x799f5ac2 } }, { { 0xe8018faa, 0x2ac28a8b, 0x777cd99f, 0x3f993fb9, 0xa9d13cef, 0x9bb60a4, 0x26198ee8, 0xd7c39ac9, 0xb83cf9d7, 0x1cfd67e7, 0x4075d974, 0xae4d9a67 }, { 0x157dfaf6, 0x2a0b1012, 0x43839817, 0x8de8c32, 0xcad1fd63, 0xaddd365a, 0xc02a874d, 0x173cbf09, 0xf688c81c, 0x38eb3552, 0xda62389, 0x6bc64288 }, { 0x225a4c57, 0x73d96809, 0xd7f3ff2b, 0x262b69a2, 0x71daca34, 0x683cc161, 0xfb842ccd, 0x159c6f3d, 0x67ba98a5, 0x31010298, 0x66c531c9, 0xcf23e236 } }, { { 0xfa621420, 0xbdbe9e72, 0xa165080b, 0x7ee4a4ca, 0xf337c7c8, 0xb8e2fa7c, 0xc458ed8, 0xc456e7e8, 0xc6546452, 0x4e98fe6e, 0xe2ad1264, 0x4cd0ab68 }, { 0xbb214d4, 0xe18bc6bf, 0x3c9e4b89, 0xe6b0567a, 0x39f16150, 0x1764f0c1, 0x9e50af04, 0x6bf49792, 0xbd3bcd59, 0x4d02e80d, 0xc35ef26d, 0x5c8ab781 }, { 0x65a0e75e, 0x2df5160b, 0x71c77e08, 0xc90885fd, 0xf98841d7, 0xcdbfebf8, 0xde572809, 0x84172ebd, 0x1b77f644, 0xdbcd48f4, 0xc96c5451, 0xba7dbbda } }, { { 0x8de8a2a4, 0xb767fe89, 0x5e194d19, 0x3fe0aebc, 0x87dfadaa, 0xe979943b, 0xe8caa7b6, 0x5117d554, 0x37983534, 0x8c7439a9, 0xe0a4a314, 0xd5d72ab8 }, { 0xfa2b4efb, 0x7d6fce3b, 0xbd61cf68, 0x99f15e86, 0x74f979ed, 0x775aab6d, 0x1d1a95b2, 0x6a5f275f, 0x38107613, 0x63553965, 0xa74a4aa3, 0xa9824ead }, { 0x1e3f3bef, 0xd090e18e, 0x8465e624, 0x664171, 0x3d2df6ca, 0xd8c54d70, 0x2b263bb, 0xee2b09d7, 0x5f157be0, 0xd09c0983, 0x22dbe65, 0xe9244334 } }, { { 0xf0991982, 0xc8d13670, 0xfaa57875, 0xfdef354, 0xbc68ea0a, 0x96d2ab02, 0x25d5b9b7, 0xe38ab072, 0x705e696c, 0x8411b81d, 0xe318f0ea, 0xf4455c9 }, { 0x73b61d94, 0xf7f03ea0, 0xda53edf, 0x14a5cf14, 0x48b0de2f, 0xb5eba34d, 0x67cdfbac, 0x18f7c6ea, 0xa8f88881, 0xf41f9e7a, 0xdeaea24d, 0xf1d653fa }, { 0x223b253f, 0x165ebd8d, 0xc1436ffc, 0x63d81bec, 0x161fb430, 0xc3cfd550, 0xcd8109c3, 0x65bc83ab, 0x6c507aff, 0xd0c5a653, 0x3addf5a6, 0xad403307 } }, { { 0x150022ee, 0x59731f59, 0xb078bb40, 0x6adc453b, 0xd73a0807, 0x679927bf, 0x667d7347, 0x7a107baf, 0xba0d079c, 0xc8334435, 0xf755b413, 0xbb4350db }, { 0x8fe1501c, 0xc00942c2, 0x2b41b967, 0x9cce8f06, 0x5ebe9805, 0x8a3ce47a, 0xaf07d9e7, 0x7dda0735, 0x6a493f0c, 0x1c0695e0, 0x9e2836e9, 0xf6fe942f }, { 0x1e903e61, 0x7c079fbb, 0x9d481c02, 0xff365f69, 0xcf735d2c, 0xaab400f8, 0xf9d65635, 0xef8d534e, 0x40490f9e, 0x817ae60e, 0x6f4f9701, 0x2c3f9aa4 } }, { { 0xd6bfca4d, 0xb1dcde45, 0x5903f0c5, 0x440d7478, 0x321c798b, 0x3f97b927, 0x7428615a, 0xbcd75cbf, 0xf1a67199, 0x39430af3, 0x3a6b37a, 0x9aa6822b }, { 0x1157898a, 0xda8a54c3, 0xc1c9c652, 0xc6c18139, 0x5f9e8685, 0x9fb9993e, 0x714d67ef, 0x6c6d785e, 0x2d30156b, 0x305df083, 0xb286904b, 0xb5c60b27 }, { 0x1e8bae2b, 0x3618d741, 0x832ede86, 0x872f188f, 0xf7409eb3, 0xaa5f5434, 0xbb9cfa15, 0x4bdc4069, 0xc0eb7ad8, 0x538dfb2d, 0x5710799c, 0x3c191247 } }, { { 0x7468f077, 0x6b41e6, 0x678aa676, 0x1a296f67, 0xe8c5fa18, 0x591bcd44, 0x1dc72fd2, 0xf300e7df, 0x388bbea9, 0xe5e97c27, 0x887c2e30, 0x30e98d30 }, { 0xfbadf6cc, 0xd70c4429, 0xfa1eda40, 0x1ec7cbaf, 0xa6934a9b, 0x4e2c390b, 0xf1288558, 0xf5754df2, 0x191bf8f3, 0xf367758, 0x25195332, 0x1e06522 }, { 0xccaa77fc, 0xf5c5662, 0x910caaeb, 0x2907bfa3, 0x29cb88ff, 0xc5703f5d, 0xd98e1136, 0xc9e4848e, 0x7eb57cd5, 0xd6c37c22, 0x65785669, 0xb1370e55 } }, { { 0xc1cdee50, 0xce73cbea, 0x752a504c, 0x78a99444, 0x118401a7, 0x70ecf276, 0x3e226d3b, 0x5a425fc0, 0xad7e7bf5, 0x4aa2cae6, 0x4db12a6d, 0x42680126 }, { 0x744e4b05, 0x878b94ab, 0xd7ec91a1, 0x972a7072, 0x1ef8b5d9, 0x34b56004, 0x7c350266, 0xa3b8c25d, 0x9d9626db, 0x35930d1d, 0xfe81a245, 0x78cca142 }, { 0xae9edec3, 0x2bda033f, 0x3d0401f1, 0x214d90d4, 0x7b5c2cca, 0x46fb7068, 0xf67a2267, 0xaa1343ec, 0x65db1576, 0xf16aafaf, 0x16218bfa, 0x789701be } }, { { 0xb189702e, 0x4cab9e75, 0x3258c959, 0x687c69cc, 0x1a10108, 0xefc97bde, 0xdec84416, 0xc6ddd4f1, 0x2f5b2336, 0x676166bd, 0x670b7097, 0x806f7e1 }, { 0x6dff8527, 0xb6e5112b, 0x81ebb48a, 0x9b61c57b, 0xc6bb1fb0, 0x94b8830a, 0xa99bf5ef, 0x370cff21, 0x99d7f0d8, 0xdf152db2, 0x81165379, 0x5052957c }, { 0xae0c9c70, 0x74d62864, 0x151a9c6, 0x9addd26b, 0x81401798, 0xbeb099d5, 0xd040ffbd, 0x583f0eba, 0x318a42a4, 0xcf1eb0cb, 0x953aa07a, 0x4dfc7225 } }, { { 0x327d9bb3, 0x7d4ead6b, 0xa4790beb, 0xad61d0cc, 0x3145c052, 0x23e9a252, 0xfb0699c3, 0xdbe5b0aa, 0x9cc9a7d5, 0x4bd72ab7, 0xe1f2a26c, 0xc0431f83 }, { 0x55911c90, 0xa740358e, 0x600afdf7, 0xe8b75365, 0x7df5531, 0xc27802de, 0x53b969b5, 0x80dbe3fd, 0x9f7c4cf5, 0xe3ae8eef, 0xdd134674, 0x7ae4f0aa }, { 0xb0721bf9, 0xd5ea22bb, 0xd8ae3f37, 0x206cab88, 0xf4146112, 0x38dcaa4f, 0xdec7217d, 0xfa635330, 0x50abd791, 0xd67105f0, 0xa685ed9a, 0x61628e82 } }, { { 0x2f161992, 0x9d418828, 0x6c4162ac, 0x6ed4cd78, 0x8b5c4987, 0x6d788464, 0x5e278326, 0x5c616c7d, 0xe36d38b9, 0x3e71fc5d, 0x9a408323, 0x5408f805 }, { 0x5e27c27a, 0x4cc77255, 0xbac6e75c, 0xae11868e, 0x6ee1dd2d, 0x9d851819, 0xd130e905, 0xa2ff18b1, 0x6f27e059, 0x534782f9, 0x27c5d550, 0x160789d2 }, { 0x7b802bba, 0xc215df66, 0xa7e5df4c, 0xeaf878b5, 0xce289313, 0x4b88f286, 0x30fa4fcf, 0x497f08c4, 0x1c5929e, 0x92b835bc, 0x7d8f8b45, 0x9a7e8a75 } }, { { 0x134442b4, 0xd3446203, 0x38ca30ec, 0xbf084daf, 0x22be7339, 0x594db529, 0x96a011c0, 0xb96c2313, 0x743b031b, 0xafc49112, 0xcfa237ab, 0x2b9c29ba }, { 0xf8744f68, 0x1bf10b0e, 0xc62f5b9f, 0xd511ea9, 0xd2ba44e, 0x34aa2130, 0x53b07449, 0x5c7e303, 0xfeb28a, 0xfb08b9fc, 0x9ce1f386, 0xf0056c72 }, { 0xeae6f99d, 0x397278d2, 0x484b743b, 0xfd8d0e92, 0x73b61b37, 0x2ce01738, 0x5ae41b29, 0x6cf120ec, 0xf6caa73, 0x135a234a, 0x744518dd, 0xb8ad94 } } }, { { { 0x6cb9be3a, 0x88a68a0, 0x5c976352, 0x20a78cc2, 0x7776fd29, 0x1ee5c131, 0xd6f0c1b, 0x4aadb010, 0x4f5327a9, 0xc8666ed3, 0xee487220, 0x23dabedb }, { 0x7ce32d1b, 0x8ab5df6a, 0xd1988596, 0xf87cb7ae, 0x233f268, 0xede8766d, 0xa4c0d49, 0x7fc59aaf, 0x22f903b5, 0x333c6823, 0x763882e2, 0xf4c1bb6a }, { 0xc5f5e095, 0x6a4708c7, 0xb38123ce, 0x9315f0f3, 0x88115299, 0xa8a6b7cb, 0xf2a4d55c, 0x6840c0b1, 0x4afb0bf3, 0x11fa6fb4, 0x1be85ba6, 0xa9010efc } }, { { 0x9919ebe3, 0x9196254b, 0xc515d765, 0x7b3e196d, 0x76c1e8a0, 0x240668af, 0xc5502478, 0x7576ac, 0xe214dbc4, 0xc2879cc6, 0xbe48d01a, 0x4faea5e6 }, { 0xf23fc2b8, 0x16075380, 0x140194a0, 0x54517b1b, 0x275602c9, 0x1b72e9e9, 0xa5d71c57, 0xa84c81aa, 0x62375467, 0x8bf4fb00, 0xbcf990fb, 0xede15a3c }, { 0x2c32753f, 0x4614e3d6, 0x648c7aeb, 0x8b7bf193, 0x31d1a9a1, 0x61dffadb, 0xd47858fa, 0x9856db12, 0x5261b0fd, 0xf7611d16, 0xb1c46dc5, 0x9631beb7 } }, { { 0xb0ecd587, 0x18abf6e3, 0x10fa5e83, 0x9883c9b4, 0x87a52aca, 0xc84cab20, 0xa4dab9f8, 0xfe6ccb45, 0xc873a94d, 0x104c4fe2, 0xf05a254e, 0xc39a1da3 }, { 0x7c0a9516, 0xe8beb5ff, 0xc13186a7, 0x9d755a1b, 0x6ef001e0, 0x18556d71, 0xdbfa291c, 0x2930b5f7, 0x2239c8c4, 0xcce6c6ec, 0xb51b542d, 0x1d912ff5 }, { 0x1b09107e, 0x6de23d6c, 0x53a6c03f, 0x7c613d33, 0xb2700cb9, 0x6428ecf5, 0x2c2b61f7, 0xeddca296, 0x9938f8f3, 0xfc8f2a75, 0xf5f0a99c, 0x84473b4e } }, { { 0x3f4dfa4c, 0x5249f014, 0xff55491c, 0x5fce1d3f, 0x1fbb95be, 0x7a32c1bd, 0x523efb00, 0x3ec45db6, 0xa26d23f4, 0x4d5bb423, 0x1b52a09e, 0x28f20067 }, { 0x51f08b12, 0xf8cb168, 0x9cb88a3b, 0x89b583fa, 0x4d07fa9f, 0x4e71ad84, 0x6a929fdc, 0x3b18bad1, 0x64ce5478, 0x23bd577f, 0x9058a7fe, 0xebd85bb9 }, { 0xd2ebe5e0, 0x1637af20, 0x39ac6d4c, 0xccd28ced, 0xe71ec8a8, 0xffa20837, 0xb2ded17a, 0xa34a4772, 0xf875dead, 0x3c41db18, 0x369cc25f, 0x172200d } }, { { 0x42819b43, 0xc6b2e9ac, 0xf63b4503, 0xa65d42ac, 0xa222f665, 0xe05a9a3a, 0xc086d024, 0xdd99a262, 0xed91c13e, 0xce2081fc, 0xb691585f, 0xa5c772fb }, { 0xdd368de, 0x4bdca731, 0x19618432, 0x8cc9add, 0xc776d01e, 0x1f410d38, 0x7ed45937, 0x9c98246, 0xdf2661fd, 0x5a9ebf5c, 0x425fd169, 0xa876285c }, { 0x7d39f167, 0xb561485f, 0x856a3231, 0x1da74083, 0x21f4ffce, 0xbcab8ed9, 0xc608e767, 0x1fb4e886, 0xc299a2ce, 0x23642f57, 0xa23e5573, 0xc644a344 } }, { { 0xb8bf4e20, 0xd1756f6e, 0x1d789395, 0x205d0c53, 0x45422a69, 0x91405232, 0x962c2310, 0x22d3c2d6, 0x18ed0510, 0xc13f4f10, 0xf7c59f47, 0x5aebd80c }, { 0xcc988c0e, 0xa0bbc1fb, 0x2f0e8e, 0xe0d6014, 0x7ad3805b, 0x53ed7f45, 0xc246a700, 0x1c3550ca, 0x2090bfcf, 0x7d8a593f, 0x1131b5d6, 0xa78d8597 }, { 0x381d93ad, 0xbf6a5ff2, 0x83635cb7, 0xc18dee95, 0x8da0b8ae, 0x164bede0, 0x9f17ef42, 0x56f88e34, 0xdd8b3016, 0x32d32d63, 0xdca7ebf5, 0xf0cda902 } }, { { 0x8105fd83, 0x29625372, 0xbd698f6f, 0xb79a5440, 0x182a527d, 0x70f40452, 0x2b9c4dbc, 0xdc05776, 0x5bb7221c, 0x4e903778, 0xf5c0eead, 0xb8063f7c }, { 0xe205d4cc, 0xa9c84549, 0xff5ff4d7, 0x651e7e35, 0x5d7c46a, 0x732d0dfc, 0xcd0a2541, 0x8185f702, 0x3d958618, 0x3f4fa088, 0x65ab68e8, 0x5267e63 }, { 0x3a7cbe02, 0xdc63d5a9, 0xf328a478, 0x3befbc0d, 0xd80c329e, 0x90aa8083, 0x1dc1c797, 0x39a75e79, 0x410af4e6, 0x8f9d281d, 0xf9955650, 0xe3188e0b } }, { { 0x172fbb30, 0xaf7f16a3, 0xf522f0b5, 0x6ab8936d, 0x102e21ed, 0xe1dce822, 0x21317f19, 0xb3b4c9f1, 0x5321ad4a, 0xd3cd12e9, 0x23980882, 0xb9351ae0 }, { 0xa0cca89a, 0x966b6052, 0xaf3b1832, 0xb3a24d, 0xe9f228b4, 0x26b46b9a, 0x2806575b, 0x32032781, 0xb68b2abe, 0x839e88b4, 0xa8bd097b, 0x5368214d }, { 0xdb9db3da, 0xad271640, 0x5e527209, 0x3b07e423, 0xaf3539b4, 0xe694f309, 0xd2506fc, 0xfdb1d402, 0x9f5c5ab6, 0xb3798174, 0xe0398492, 0xebf5de39 } }, { { 0x2b225b52, 0xdad295f4, 0xeacb0d48, 0x210152e3, 0x298e9840, 0x8233d359, 0xff56d8dc, 0x559e1522, 0xcdc37620, 0xeede7b10, 0x7ab06d27, 0xb6d7bf65 }, { 0xad1fa022, 0x328351c3, 0x6b8ea774, 0xb8dcad44, 0x69d5d453, 0x93e5e593, 0xa3fb4f81, 0x25858102, 0x1e8f459e, 0xcacdbb8f, 0x8453a8ec, 0xfc9df3c6 }, { 0x5effc5bb, 0x90261296, 0x812d7aaa, 0xf3b915dd, 0x315c1be9, 0x318fb883, 0x9110b2ac, 0xea9a7cc8, 0x871060ec, 0x98f06b0a, 0xbd85d36d, 0x8add2c3 } }, { { 0xe4178970, 0x9807b952, 0x82ed9d2f, 0xd1dd3067, 0x8cd891cb, 0xc54c651a, 0x31edfd0, 0x78a86b5c, 0x9a9da90e, 0x16219059, 0xc2b5e37b, 0x6dc055e1 }, { 0x9656fc19, 0xb13cf551, 0x650999a5, 0x75930e8c, 0xd8b5fd0, 0x5fbe1d12, 0xa283960c, 0x572200fe, 0xca8c0f8e, 0x2f4f538f, 0x92f81de8, 0x8ed5d2c9 }, { 0x321795cb, 0x35630aca, 0x15a2ac19, 0xc348695e, 0x5ef4bed2, 0x3ceb1c9c, 0x20fe6630, 0x93c01a17, 0x5ebb9b65, 0xf186a517, 0x8daf71ee, 0x6d2b2e1f } }, { { 0x45576ef0, 0xe403865f, 0xc2f163f0, 0x45403521, 0x23f351ff, 0xc2a62a7a, 0xa9b3973d, 0xaf5ed714, 0x19f1069f, 0xfb919a33, 0x99f629bc, 0xc0757549 }, { 0x51f44524, 0x7a3f4455, 0xbfb3eb05, 0x6c465d71, 0x50769586, 0x704d0ecc, 0xd079da88, 0xc94208d1, 0xf081c662, 0x234bc01b, 0xcbb14b85, 0xcf9cef3 }, { 0x7b820dbc, 0xfd1734f, 0x1177c5b1, 0xe1cdf7c9, 0x408aa1a6, 0xe30496af, 0xb2d607be, 0xe2ef99df, 0x392eb5ab, 0xcfbcfcd4, 0x3217dcea, 0xcb43caef } }, { { 0xb3a603e5, 0xa834a406, 0xadbeb0b1, 0x228ad77e, 0x10c8291e, 0xc7a126bb, 0xeb61c6ed, 0xccd43fa3, 0x620d99c5, 0xc2870d9d, 0x832360ad, 0xd7af210d }, { 0xc4445a4e, 0xf1b1898f, 0x2d3dfaf2, 0xc3a96e1, 0xb247a959, 0x6317249b, 0xe62f1cff, 0x1c64fc1d, 0xb33d0132, 0x4e09984e, 0xf5ec90a8, 0x48cc095e }, { 0x4fb05a75, 0xeb62955b, 0xb5295aa0, 0x762e4fc4, 0x5b6cd84b, 0xc689bddc, 0xa1c9fc18, 0xcefac094, 0x1fd92d80, 0xe9ae494f, 0xd227f35b, 0x4e6f4db4 } }, { { 0x1da9ac42, 0xff28c65c, 0xbc5b24ef, 0x48f74405, 0xf75e4f20, 0xfa3c9145, 0xc6fd1cc7, 0x4f850a35, 0x559cd0f9, 0xa6c65933, 0x1c66183f, 0xd250f62 }, { 0xeaf417d0, 0x16e1cbcc, 0x79a7e3ff, 0xba7604e8, 0xbb8f0dfb, 0x4a1c8723, 0x8085590a, 0x67a0d444, 0x3ce46ffb, 0xc9649e20, 0xa9b7d258, 0xf57637d6 }, { 0xc6272db7, 0xfe9a815a, 0xcdbd9c97, 0x9606eea0, 0x262f5aa2, 0x3b678bee, 0x832ca39, 0xf774c6b9, 0xa9c1b3c4, 0x171cb7ed, 0x5f402f47, 0xb15b0be9 } }, { { 0xad6c7865, 0x3488f51d, 0x46c45b54, 0xd0cd1a93, 0x3e38513e, 0x85b84b0, 0x73f59d40, 0x529a83cb, 0xb2c4d867, 0x2bc659de, 0xdc83c1eb, 0x17f415a4 }, { 0x1fb50306, 0x220da03, 0x998779b0, 0xe076b59d, 0xe668e976, 0xf83bc6e4, 0x62a9fe25, 0x99f468e0, 0x1b9b9c66, 0x26651e80, 0x5e116ab0, 0x9c044e0c }, { 0xef4d23da, 0x4e44cf47, 0xb3759414, 0x24489e4d, 0x719fda32, 0x6d0388e3, 0x40a09d1c, 0x5dc3c72d, 0x892feb16, 0xac5d9ba, 0x6c642db9, 0xa490b959 } }, { { 0x2c7833da, 0xe629b9ae, 0x4acdf4b6, 0x9b9d809e, 0x86951815, 0x2a5e0cfc, 0xbc092c6, 0x15420894, 0x66de8853, 0x625f17d5, 0xb6f1b671, 0xbb511257 }, { 0x6e51ab46, 0xbf60a286, 0x28360f08, 0xdebf4a04, 0x6ac72f13, 0x41fc91e8, 0xbdb9d6b7, 0x93625ff1, 0xfebea51d, 0x602c3b74, 0x4e80e980, 0x9c9cca25 }, { 0x490b5d3a, 0x515113ad, 0x4f02db9b, 0x93d5c850, 0x6e6079cc, 0x27befc24, 0x581cff2d, 0x29e105b8, 0x140c4673, 0x3cde5fd7, 0xb19066f0, 0xb48503be } } }, { { { 0xb1c6c0ab, 0x433dea9, 0x720e9912, 0x76ff87fa, 0xc00b1bd7, 0x4c2cf16f, 0xc12a85c, 0xb4c1a61f, 0x1ec07f7d, 0x5aec7597, 0xccd17fe4, 0x6d95d677 }, { 0x4ab5f12, 0xad1334f6, 0xb47f0e95, 0x1da87df2, 0x656156d0, 0xe26b73f1, 0x73cb5699, 0xa1373db3, 0xba2b483c, 0x8ffa4708, 0xb6489a9a, 0xe48b0998 }, { 0xb9276f72, 0x253bbbf2, 0xb1092c14, 0x1fb178ff, 0x2cbed4c8, 0x909abf59, 0xb0c5effd, 0x27e71332, 0x8293bcf4, 0x4ff8d12d, 0x664856e7, 0x10de038d } }, { { 0x7d2835f0, 0xa0368f03, 0x8c1b88b8, 0x9b23a5c1, 0x75ae3a74, 0x95afb30a, 0x2c547890, 0x9d6facf1, 0xebae8429, 0x867d03be, 0x8d4ec0c9, 0xdbcb43f4 }, { 0xfed35c9a, 0x8f711559, 0x7f648f67, 0xb1abdba4, 0xfaf464e5, 0x62ccc8a0, 0xd569d241, 0x382dc443, 0x798fe10f, 0x724ded3e, 0xe540dd20, 0xc5c4e7b1 }, { 0xaf52fff6, 0x8293f756, 0x38669c73, 0x3e6b1f55, 0x5bc2eed4, 0xbb83025d, 0xc7883a50, 0x44edad7a, 0x127dee5c, 0x9afe977e, 0x4812f5e6, 0xbd2e3c2e } }, { { 0x7e1907cc, 0x6f7e1364, 0x6aa4d722, 0x5727be9f, 0x339f9444, 0xc8a029aa, 0xc5897e53, 0x5d6f5366, 0x462a77ba, 0x96e2c7b, 0x84bea78e, 0xf8c86016 }, { 0xbee48bd7, 0xd119b47d, 0x90c348e9, 0x94934ea5, 0xa597b068, 0x6a7d5b28, 0x3834c67f, 0xcddb480c, 0x6c6f2adc, 0xc0801728, 0x385302ce, 0xcfff34f3 }, { 0x8c4aa1e6, 0x4176890d, 0x2e7baf43, 0x38cd7f76, 0x3f8e6b15, 0x8549193b, 0x50d8204d, 0x977c1912, 0xa2616b86, 0xcbf45731, 0x6075e6bf, 0x59d69443 } }, { { 0x938ca195, 0x9027de54, 0xee972244, 0xbdd57d3, 0xdbcc92b9, 0x1c8e9345, 0x11e25197, 0xaa7c9306, 0x9fd18c98, 0xd0e00216, 0x9c36e0f5, 0xd44e3856 }, { 0x22987610, 0xa39b5e74, 0x762c225a, 0xf99c0bca, 0x29503510, 0x52ab28e8, 0x3628e69b, 0x599873ea, 0xff26570f, 0x40b8f13b, 0xe2ba9ced, 0x12510fd }, { 0xb13a5ab1, 0x29400e9d, 0x7b1b069c, 0x1a0d149, 0xd74c292, 0xd3648d09, 0xa686746d, 0x2b939720, 0x454dbdd1, 0xe3e84d3, 0x4f9c7524, 0x6d6bc4c6 } }, { { 0x6e55adb5, 0x4a452dfd, 0xa1541869, 0x4a75f9ec, 0x5e45ef2, 0x168982a5, 0xc6c8a2f2, 0x15ebffc1, 0x1b5c8bf5, 0xb35c39b, 0x7e18e1cb, 0xd8b722d3 }, { 0x37c7c498, 0x679b0067, 0xcf1873c, 0xbc0c2fa7, 0xa608cce, 0x4941a7cd, 0x52267b4f, 0xe314eea0, 0x6d28ad0c, 0xa0cd8885, 0x190d16af, 0xa15ea754 }, { 0x24a6dea3, 0xe3ee7fe3, 0xc98944eb, 0x73cf418a, 0xd9f91c77, 0x4421977c, 0x1a59730b, 0x60689fe5, 0xa8f192be, 0x5f518963, 0xcd5e9b62, 0xcbccc9c7 } }, { { 0x3ba2a507, 0x4562f386, 0x5c5aabaf, 0x3a7659e1, 0x2d521009, 0xf073ca3, 0xcb0c7162, 0x3f72993b, 0x7c62c676, 0x843d0591, 0xcbfe87ab, 0xcf619706 }, { 0x9cca2cd4, 0x6e6d8fd4, 0xbe928c01, 0xe818d643, 0x1b858d3a, 0x24676405, 0x4aa362b7, 0x67d26195, 0x6813745d, 0xcb818e6c, 0xc4a54887, 0x1657cb9c }, { 0xb398c60d, 0xd5da8034, 0x210160e9, 0xd5281b59, 0x1524449f, 0x3dbf0e3b, 0xd3c15925, 0x209a21c0, 0x8e8b15a9, 0x3ca9d160, 0x961990b2, 0x83cbc728 } }, { { 0xb34754f7, 0x62e70749, 0x7f3d0f0a, 0xa13c333d, 0xbe5eed91, 0x2bdd32b6, 0xdd42d052, 0x6d7c3f86, 0xedb1fde3, 0xd6344c9c, 0xd14dc1f3, 0xda55a794 }, { 0xdd147008, 0x330cf26c, 0x6de7a7e4, 0xd857c0f9, 0xf5378a4, 0xf171624f, 0x98d1bed4, 0x387ed57d, 0x17512f74, 0x1ec8ae6e, 0x674a7cb5, 0x5e43ff04 }, { 0x5e584212, 0x70715db2, 0x34292514, 0xeb4d3899, 0xb8c7475c, 0x2d95cd81, 0xf8942b73, 0xce3b059c, 0xb898b8ec, 0x77788721, 0x5708b95, 0x8def7567 } }, { { 0x915e8d10, 0x41227c17, 0xb5c2791e, 0x90f196f8, 0xeafb4527, 0x124d5cc8, 0xb3b746ff, 0x1699b935, 0x5687b7c8, 0x23cc5264, 0x8bcf068b, 0x27805a29 }, { 0x6a0a6a35, 0x96f56446, 0x4dcfdea2, 0x6af60470, 0xcf1dda70, 0x360826f0, 0x3b0bf37b, 0xfca37f37, 0x47844d88, 0x9060ce67, 0x948ec037, 0xc510a5f8 }, { 0xc3ced9f3, 0x54c7730e, 0x84f11683, 0x4f977de1, 0xa3b701dd, 0xa473af84, 0xc038e958, 0xfc006ef7, 0x37b9b5f9, 0x6b2edbf7, 0x451f9cb3, 0x2b936429 } }, { { 0x8756fd5d, 0xf2762226, 0xb9a359e1, 0x242433ca, 0x74d8076b, 0x729be150, 0x90749e62, 0x9e7bdd84, 0x3d2ad164, 0x9fdc7a52, 0x5c3bb8ea, 0xbcdd15d3 }, { 0x8a5f91f3, 0xd9a97115, 0x639dd4fd, 0xd33375cb, 0xfe5e6f9d, 0x12ae7861, 0x3d70b71c, 0xe94de8d, 0xbd3864af, 0x3d69ae6d, 0x58c6761d, 0x221d15df }, { 0x56a24e62, 0x3039b9a8, 0xf01c486e, 0xbb0cba14, 0xfbddc4dc, 0x98fe02fd, 0xf79a2915, 0x89e23ec7, 0x2327d1e1, 0x8abf9f61, 0x45b35578, 0xa9a28269 } }, { { 0xc3f89dd7, 0xdd31aea4, 0xfdad2fc3, 0xff8a98c2, 0x9bad2435, 0x1d9559b9, 0xbdf30429, 0xe2c6f594, 0x74fec973, 0xd3415202, 0x6535a7b2, 0x1f2896c }, { 0xe82456db, 0x9cdfca32, 0x605757b2, 0xa09d831, 0x38684a89, 0x2199172f, 0x3a2667c3, 0x11561bd2, 0xfebf5422, 0xff8beb23, 0xf3b302bf, 0x4c387e66 }, { 0x9280b332, 0x26b1f226, 0x82c2c3de, 0xa6765c16, 0xe180606a, 0x1a2c106d, 0x581253fa, 0x99bc8de3, 0x2ea396ad, 0x938bec1c, 0x14e76c42, 0xeb28bcd } }, { { 0x2ef8bee0, 0x23527ba8, 0x8684d3a9, 0x469727d6, 0xf09edc94, 0xabb90b66, 0x42fe4fc2, 0x2c77ef50, 0x699a924a, 0xda68175c, 0xa1e54b2e, 0x9104094a }, { 0x90a323c4, 0xb2f3668, 0x789b7b8f, 0x5d02f6b8, 0xe57b8890, 0xe68f3e53, 0xd6a9edd7, 0x4a32f7a6, 0xa36f940e, 0xfebd799d, 0x47ef8d1e, 0xbf15b8af }, { 0xa8275e71, 0x6107dd23, 0x38accea5, 0xc312af9c, 0xb5c6bcd2, 0xbf5c6a1c, 0xb1ef2c65, 0x396ba252, 0xe4ab57da, 0x5bb5c824, 0xae496b2e, 0x69b2ac23 } }, { { 0x6c843a17, 0x228405d8, 0xa176584b, 0x67263054, 0x524b29db, 0xd3fc45eb, 0x8414a3bd, 0x94b70dff, 0x111b13bb, 0x8ee0c662, 0xe245c5a6, 0x7f677cf5 }, { 0xa1b4f8de, 0xa07b3ab1, 0x2a8dfe95, 0xf1676d30, 0x1387325, 0x982fc43b, 0x127cd9c3, 0x281a861d, 0x46401977, 0x74d67388, 0xdd3cb5be, 0x667dcd93 }, { 0x9a68179b, 0x47eca892, 0xa013c56c, 0x65dc18a, 0x72f254b9, 0x5ae9f121, 0x108d981e, 0x74a295fe, 0xab4176a, 0x85923b59, 0x973e183e, 0x9f82d9d7 } }, { { 0x46d83535, 0x4a52dad7, 0x5219e325, 0x95966301, 0x828fd8e8, 0x537809a8, 0xc03adbe2, 0x1be3ad05, 0xee390dee, 0x6fd78b20, 0xdb1e664a, 0x4650abc8 }, { 0xf2b8612c, 0xe1391972, 0x3934e5bc, 0xa63d102e, 0xa0c0117e, 0x74781a33, 0xb7baaf4b, 0xec3ecfd6, 0xb96ab6e2, 0x798ccf4f, 0x6935b611, 0xa8c2d0a7 }, { 0x7dbc7dfe, 0xb8d5c9f8, 0x43ebc016, 0xe5213d0a, 0xf3a47fc1, 0xa582a5d8, 0x6cc608b8, 0xac22758a, 0x9bc171a1, 0x6dc7ac81, 0x87b1b71f, 0x8d321452 } }, { { 0x1935a8aa, 0xdced9bae, 0x4fd78bce, 0xd1f9418a, 0xc2d4f4c1, 0x3a7022c1, 0xe8b8d929, 0x1f067690, 0x2a8e5d35, 0x13685b53, 0xf75f5730, 0xfebebd22 }, { 0x1a0ae8af, 0x2758345f, 0x5623f1eb, 0x95fe6aca, 0x5a9e40bc, 0x63180900, 0x3680ef47, 0x1959b71d, 0x794f313d, 0xb16d8ad0, 0x85983645, 0x98b57388 }, { 0x3df1f5e1, 0xb56430ac, 0xdad48287, 0xc215262d, 0xf42d2ed8, 0xc1ac39f5, 0x3638428d, 0xde771c17, 0xf60a9cda, 0xaaeff0f3, 0x6aeb0983, 0x2f7ccb55 } }, { { 0x15f2c3fe, 0x118a1fcc, 0x95ed980a, 0x49f54ff4, 0x42b220ac, 0xaaed67be, 0x7d36c108, 0xa4f218d8, 0x9be6778f, 0xcf52d570, 0x1faad4e5, 0x3220e636 }, { 0x6e93a0a2, 0x6efc172f, 0xfb78e650, 0xb7d74e1f, 0x66e77583, 0x6e1613af, 0x1658d4b1, 0x4d297505, 0x49a0337b, 0x7e39efa5, 0x5134a4c9, 0xf74fb00d }, { 0x1450ad09, 0x45201744, 0xc23aeb1f, 0xa8f9b9fa, 0x7095314b, 0xf2373607, 0x44095f51, 0x7f460ac, 0xd138e265, 0xf89d3dfa, 0xfc0d8fc5, 0x2beecb87 } } }, { { { 0xb5aa352a, 0xf8b2ac68, 0xdc1019a8, 0xc0dd9b55, 0x5a1314f8, 0xe88d701a, 0xc7bd5a87, 0x92bc0f89, 0xaea8fb5e, 0x2ab876de, 0xd5d2dfc7, 0xdfd9719b }, { 0x8fef97c5, 0x8872f4f8, 0x6000065f, 0xd248ec8e, 0xe63c1588, 0x74826603, 0xc0f08cfa, 0x897fc2ef, 0x9d5592ff, 0xfa9b7d3a, 0x532ef787, 0x58528628 }, { 0xb8301642, 0xcebcf3f9, 0xe77ff857, 0x98eddce8, 0xb1b55afe, 0x1f51911, 0x11b0655a, 0xd7ec8662, 0xc654373f, 0xc87d3a4f, 0xc93f5b0a, 0x5c6ee823 } }, { { 0xc371d35b, 0x95bf6511, 0x9de39c99, 0x3f44a661, 0xfda63af2, 0xf8384701, 0x92464635, 0xb577fdd1, 0xa1ba6630, 0xa05913fe, 0x3c4e6cd6, 0x7f368ad6 }, { 0x904f24d9, 0x5b340cc8, 0x90d68ac9, 0xaf1c5e3e, 0x7b75d3f, 0x58634c98, 0x9474f6cf, 0x48ca4ea7, 0x3ebeeaa1, 0x52dd0b57, 0xe2b63f9f, 0x9bfdf97 }, { 0xe2784f75, 0x2afaaa52, 0x9860d028, 0x70bf5b8e, 0xfe56a82, 0xbc852146, 0xb6f48a72, 0xb49ebc7e, 0x351df4f3, 0x1e28ad39, 0xc3f4ecd5, 0x7b0d108a } }, { { 0xfb0980c5, 0x2807bec3, 0x52c148c3, 0x21f6987f, 0xa8670d57, 0x6189124f, 0xe76a6dbf, 0x8298516a, 0x49ed380f, 0x7e1a527, 0x556c0ba5, 0xfbc6dbbb }, { 0x5520674d, 0xedd71634, 0x4e837f9a, 0x85094617, 0x33e5cc10, 0xa10340d2, 0xa4cc03f6, 0xf6b2ab93, 0xde44a7d2, 0x174cc5e0, 0x4b79ed8, 0x4ff15d02 }, { 0xacb21cc1, 0x5d8ae41a, 0x98e29b5a, 0xa71ec54c, 0x7c73de74, 0x167473ca, 0xc185158d, 0x42135c7e, 0x2786e383, 0x4568b1b5, 0xc06d0fbc, 0x41fd7d25 } }, { { 0xa67eb3ca, 0xfcd7c323, 0xebe19c3c, 0x4f58e939, 0x7505121d, 0xd58a0a50, 0x410d926c, 0xfeb97933, 0xcdc0a30, 0x5a186982, 0xc1342628, 0x6a2187db }, { 0x699a1219, 0xbc8e0edd, 0x34f58888, 0xa53f37ef, 0x77fd5f60, 0x2877a8bb, 0x27ddbb50, 0x4203ca14, 0x149f3bad, 0x10e44048, 0x5fc8b3f8, 0x3a350032 }, { 0xd0698a9d, 0xae612437, 0x92ed69a3, 0xcb8524d, 0xd30b2245, 0x64fda24e, 0x82d8c5b, 0xac63ac16, 0x20883eea, 0xd3ebe446, 0xae85070c, 0xb1d4b886 } }, { { 0x4531c45c, 0x431be7cb, 0x9baef0e1, 0xb34e99a4, 0x6b5b2e5e, 0xfc54dd76, 0x467527a, 0xb304776e, 0xf7ed51c8, 0xda536439, 0x591af65f, 0xc2f3f42c }, { 0x5261fa7a, 0x5d112b6a, 0xe0866e35, 0x2945559a, 0x9de19b8d, 0x64a621f5, 0xb94f10a3, 0x1a51f227, 0x6a0ef1aa, 0xb91fb411, 0xfebbafeb, 0x6cb6fc02 }, { 0x4d81fc17, 0xf82267da, 0xf609caf4, 0x757b9861, 0x827f0eeb, 0x6741c386, 0x7d963372, 0xf9ca8206, 0x545ceed1, 0xd23496e6, 0x72055296, 0x534588af } }, { { 0x3159bdac, 0xae27cc39, 0x6c162408, 0x4752cadc, 0x2117fafc, 0x27739e65, 0x4c6ec506, 0x72f37a02, 0xfee21eb9, 0xcbe34f86, 0x72a7a35f, 0x2d091a3c }, { 0xe48f6533, 0x5fce630d, 0x8a625b4b, 0x81b030b3, 0x5636b5c0, 0x27c75634, 0x56f06866, 0x4a5dfc6, 0x9735bfc2, 0x8f121293, 0x863c3e83, 0xbcac3cbc }, { 0xe362452c, 0x6876ba2, 0xb55e7e94, 0xee6dc491, 0xd580da69, 0xaf5f03eb, 0x7e9a5a33, 0xd005d126, 0x67d46bc4, 0x40ef5f59, 0xc2ad86f3, 0xc73fb36c } }, { { 0xb2a6d671, 0x4f78dfa5, 0xc0cd550c, 0x32d67a5b, 0x231b17b9, 0xcaba43ed, 0xa4042fd2, 0xe7fd8f24, 0x5b577622, 0xc495d5e3, 0x4dcc2270, 0x8ba6bd9f }, { 0x461f0ba0, 0xcdceeb44, 0x329a4bf9, 0x85df8e85, 0xa0fa133b, 0x72191da9, 0x2ee8d884, 0xbe6c5a07, 0xf0670c8f, 0xeeaa42f0, 0x98cf2301, 0xffbcd89 }, { 0x66563d6d, 0x8fbd3eaf, 0x87fddcf2, 0xc19398eb, 0x9c8de7b1, 0xaf3e4e8d, 0x6263bd0b, 0x13f6e8ad, 0x55088549, 0xda8306f5, 0x24abdfb1, 0x743a2b3a } }, { { 0xb3255b08, 0x382ca91f, 0x284278df, 0xad8f28fc, 0xde6aa36b, 0x13720214, 0x84bbbbdf, 0xa84ccc14, 0xc365f0f6, 0xd562fdd, 0xaaf171fd, 0x3730dab2 }, { 0x78d4bcdf, 0xa8ffc9b2, 0x93efa8c4, 0x3bfbe740, 0xb7dc55cc, 0x86b7da4, 0x6b4eae9c, 0x21419d5f, 0xbfc07de8, 0xab5b1289, 0x8d3c3a9c, 0x8e20ff65 }, { 0x3b21f89f, 0x58e46db9, 0x6dc72451, 0x7da69c44, 0x13b02c71, 0x87c62116, 0xd0e6ceaf, 0xa53b970c, 0x1f21ad11, 0x196a9533, 0xd85f0831, 0x5b54c12 } }, { { 0xf519ffb1, 0xee42d38, 0xdebdec1b, 0x761c57cb, 0x3652cd62, 0x5374288e, 0x48d7de01, 0x7233fa86, 0x6c6ef741, 0x13f650e3, 0x32d43a26, 0xa2817809 }, { 0xa88e671a, 0xec579426, 0xd2462b72, 0x11230036, 0xd2aeb5d4, 0xe6b6b3f2, 0x7cc44373, 0xe2d1b400, 0x4d18f1f1, 0xba8d2fc4, 0x8fdefa70, 0x37287224 }, { 0xdadbfb75, 0xf82c99d3, 0xd91b95c1, 0xff9b6f06, 0x723e5d96, 0x3bc35745, 0xb06ee375, 0xddbd031, 0x449a9e0e, 0xc291cdbc, 0x77124210, 0x71d04536 } }, { { 0x5e90c924, 0x8ac82bc5, 0x1ac8ef4b, 0x44d172eb, 0x51d2bf55, 0x1f4dc4f8, 0x43e5bad5, 0xb8ff7a9c, 0xcdfdec7c, 0xf5a7b177, 0xdd9f1653, 0x40558f1 }, { 0xfc74fd56, 0x25b821a5, 0xb1713dc7, 0x5857b414, 0x6a5807bd, 0xf078ca34, 0xc139aad6, 0x7cb13ee0, 0xfdf0b1d2, 0x9c13b6f9, 0x443c65fc, 0xc1704f6d }, { 0x8b8ac26, 0xa02a04da, 0xd7feb4ae, 0x742c81c9, 0x4f36ceee, 0x16bed763, 0x8e05d117, 0xb1ac15cc, 0x75a43328, 0xcd028b5c, 0x4149a75d, 0xc2d20282 } }, { { 0xf6800969, 0xddd1b657, 0xb6f98f2e, 0x7ab4c8d8, 0xd0a9d93c, 0x9f0ee459, 0x955a0af3, 0xecdeb1dc, 0x1cab3e6, 0x9ef8e6bf, 0x308f95, 0xcd6e0ea7 }, { 0x651518af, 0xbc204980, 0x22a74dab, 0x62559820, 0xb85a2234, 0x615b4a9f, 0x4c63dbb4, 0x113fbac3, 0xbb6be6b2, 0xccd3eddd, 0xfbebb4fd, 0x5f87add4 }, { 0x3abb118d, 0x9cdf40c7, 0xfcbd6969, 0x625ef122, 0xd41490c, 0x127a6bb2, 0x53164d18, 0x42ac4c89, 0xe8b2b5d6, 0x986ff666, 0xb2f7eb79, 0x26b48fa2 } }, { { 0xce388f3d, 0x747eef63, 0xef0e2cfe, 0xc79ef80c, 0xdc285317, 0xbf15a1a1, 0xfe3c7105, 0x811bfad0, 0x23b999d, 0x6daf6cc4, 0x32e30e7f, 0xde61c092 }, { 0x30fecbea, 0x255a9f9a, 0x4f980890, 0x26ca0a17, 0x23867ec9, 0xe6a29eba, 0x9ee5d395, 0x4b2565e8, 0x78ff4ab1, 0x3edead8d, 0xd0e2ef97, 0xe65745a5 }, { 0x291f99d9, 0x9990ba90, 0xaceb3b1e, 0x8e41c90d, 0x591430e9, 0x7ec15366, 0xafc1f45c, 0x77c10ef5, 0xfa144164, 0xa99e5323, 0xbc05174a, 0xdb76a8d1 } }, { { 0xa99bff62, 0x85e0ada8, 0x10a86489, 0x8b2a8fcb, 0x51b9038e, 0xa6700de1, 0x81a78f8d, 0xbbbecd91, 0x84b1c567, 0x1c0b8215, 0x841755de, 0x90da5d6a }, { 0x169eb966, 0xff14d0ef, 0x2ac76173, 0x57d9ec87, 0x767c96b0, 0x4a7b8098, 0xee8d8e4b, 0xf2669095, 0x8ee6038c, 0xfbc76631, 0xa2a64053, 0x36738551 }, { 0xcc19ff46, 0x6eb08d91, 0x8e0b7728, 0xc45174fc, 0x5fd8f710, 0x1d3b2533, 0x3972f825, 0x37aa32fd, 0x50b3256a, 0xee8055b, 0x884f3bd3, 0x43d47efd } }, { { 0x84737f7f, 0xd7d1d795, 0x3c2f3a8e, 0x4b342fa, 0x6371cca5, 0x9d48136d, 0x9d0f9b89, 0x5a35d55b, 0x175074f7, 0x1e1f0545, 0x29b4150, 0xca2123e3 }, { 0xde800045, 0xbbd0b9e5, 0xd61be82d, 0x9c98fe81, 0x39017ba5, 0x6f676d95, 0x750554f5, 0x6b6b9fed, 0x26db0fd7, 0x8fd33fb0, 0x8bfe41ef, 0xca35e134 }, { 0x1f6ca454, 0x63adbd2e, 0xe15e9c2b, 0xf7601fb9, 0x74f7e157, 0x31444f50, 0xbfa7c991, 0xd79d3b34, 0x56c107f6, 0x4325680c, 0xc5c588f5, 0xd3b8e9c3 } }, { { 0x92c977c3, 0xd17ff722, 0xc18c9dc6, 0x91dd5b40, 0xfeb018c7, 0x9a06e481, 0xa9d3faa, 0x7e527c4d, 0x67415b70, 0xb9016ddf, 0xf1d05b66, 0xe834b2d3 }, { 0xf764100f, 0x6490cf71, 0x688ba5d4, 0x2d694082, 0x931f78a2, 0xe24c7344, 0x9a19dfdc, 0x5d4ae83e, 0xf904ce8a, 0xe5bb9e0d, 0xeceefc66, 0x2f305117 }, { 0xc621f4c6, 0x92769711, 0xc5aab04, 0x9e44f8b3, 0xe5bcbc04, 0xa73227fd, 0xca9a6905, 0xfdf2812a, 0x23cac268, 0xabbeb12d, 0x9ec3bfad, 0x17bd556e } } }, { { { 0xe36efc7b, 0xef6c9b0, 0x21b000f8, 0x9513f06e, 0xee63c6b4, 0x2b9bfd7a, 0x352737ae, 0x9b5842c7, 0x76ad7ae7, 0xaab7498, 0xc5255389, 0x8a5294b1 }, { 0x32a4fa61, 0xa0a9d03e, 0xdc146e3b, 0x8dea4c8f, 0x16090842, 0x21167035, 0x25416693, 0x2470a78c, 0x24a81570, 0x59756a65, 0x52ef9952, 0xead24d1c }, { 0x2295b1d2, 0x43fb6330, 0x7dbd92ae, 0x62563189, 0x9015ecb0, 0xcfa6135c, 0x2665f05, 0xcdbab71f, 0xe234ccd5, 0x946a3381, 0xa001d219, 0x812486e6 } }, { { 0x7c322ded, 0x5b901b39, 0xaa9c5bd1, 0x1a662180, 0xa3ce8222, 0x582fb5a0, 0xcd9ab38c, 0x29942cc0, 0xa3d70344, 0x4103bb97, 0xe96b8377, 0xc8aa8a48 }, { 0xd5577678, 0xc284ac97, 0xc2e1341d, 0x6da5c908, 0x5f125cfa, 0x5290732e, 0xfce13fb1, 0x5aae374d, 0xa07b8915, 0x70895447, 0xf8fac6b3, 0x87fd080b }, { 0xd327925c, 0x5c36347f, 0x2759357c, 0xd344625, 0x22a769ad, 0x737dde6d, 0xc1ed8d92, 0xc55848d7, 0x64e18351, 0x4c191c3b, 0xe07fe8d8, 0x4c40dff5 } }, { { 0x65dabc48, 0xb9ec4b95, 0xcc6c436e, 0x2257e333, 0xe6aa6dd, 0xa71bdb82, 0xaaffc041, 0x317033a5, 0x74e8e3a1, 0xa00f780e, 0x4ae1066a, 0xfc1dcc94 }, { 0x7663c60c, 0x9761fee9, 0x32c66ea6, 0x40a200bb, 0xf4a00537, 0x60758ad7, 0x77debe3e, 0x69d26afd, 0xa93d3f4, 0x71465b0f, 0x50fde444, 0xbfababae }, { 0x76ced40e, 0x68b4e756, 0xfbba669a, 0x212fe4a5, 0xa7c5d1d9, 0x5f8dd72b, 0xc4d44319, 0xbeeda5ad, 0xbb2e5529, 0x586a5512, 0xca8cf165, 0x1520001e } }, { { 0xef0387b4, 0xdf2ac5d5, 0x5fadb76c, 0xa8ae53e0, 0xfa003b10, 0x9d5a7267, 0x95347e9f, 0xd7889932, 0xf1c9fd89, 0x9284425, 0xa7882524, 0xece35a97 }, { 0x45a39acb, 0xb2575372, 0x4ce451bf, 0xcee0fe64, 0xd5c19d71, 0x4bffdb5, 0x9bb2446, 0x3a75f161, 0x39cd65c5, 0x764ce080, 0xf92aa73c, 0x9ef2e488 }, { 0x9c630bc, 0x71cd64cb, 0xff4781f8, 0x979a50dc, 0x3552dc57, 0xa9e08369, 0xf7a457bf, 0xcca740b3, 0x8f760ffa, 0xfa41c387, 0x306d08f0, 0x4ec7b98f } }, { { 0x328f45ea, 0x65df7874, 0x2820f2c7, 0x5077e5a3, 0x24a0e6ea, 0x2794c883, 0x2411942, 0xab1c4196, 0xb32275d8, 0x7680d791, 0xddbc4560, 0xa303d1cd }, { 0x7626abe, 0xd7391b60, 0xf24560f3, 0xe9d8b237, 0x97907f3d, 0xf16b117d, 0xcac2f2ef, 0xf35c3816, 0x381830a5, 0xbef2b064, 0x80c9335d, 0x95737571 }, { 0x540ea07, 0xe1154fd7, 0x911f3923, 0xf4ff2c5f, 0xb17d69d9, 0xa76ca9ae, 0x5e60c198, 0x22002cb7, 0x3b0fa1d4, 0xab1430a3, 0x9889e470, 0xa6074c2c } }, { { 0x7e5eed7, 0xbf45f0af, 0xca267cba, 0x89f64994, 0xf11f6438, 0x1c7d1e4b, 0xdcbe39b3, 0x4fb46943, 0xf17bf04e, 0xb5da872c, 0xc4857c08, 0xa1424665 }, { 0x35cc3e4c, 0x706608a1, 0xdcda78c1, 0x79b59b48, 0x53b59682, 0xac4910b8, 0x6e82696b, 0x62aeb59d, 0xb77af5ed, 0xe0cee86b, 0xf7511045, 0x51b31f6d }, { 0x90229b88, 0x9c9ffdd9, 0x2f93d087, 0xc7a8257d, 0xafca1663, 0x7408db82, 0xdc0aa786, 0xb47ab45d, 0x43c60b97, 0x66d10de6, 0x8882c151, 0xfdf2b57d } }, { { 0x7ad4e268, 0xf6c53c8c, 0xadb932ef, 0xc52e3bb, 0x3fe4c0cf, 0x8bc9bffd, 0xc8d88060, 0xb38e526e, 0x5f65bb78, 0x9b7ebcf9, 0x2fa1af62, 0x3be2e998 }, { 0xbf98d48c, 0x5d624394, 0x317c428a, 0xe04bf352, 0x2391fd26, 0xa019c566, 0x651e88f4, 0x4f270ace, 0xe513ecbf, 0x93c5184b, 0xa8ae445c, 0x180f30a5 }, { 0x87611647, 0xaf2b98ac, 0xff6c3d96, 0x2145ea6c, 0x201bd63d, 0x6c8c0ecf, 0x5f47e1bd, 0x390d8fb7, 0xb77250b3, 0x2b60d33e, 0xbc75ac04, 0x21721710 } }, { { 0x2926a5d6, 0x34725509, 0x95c48b56, 0x5594c30f, 0xc61c5ebe, 0xe17c34fc, 0x56027ca8, 0xa5601854, 0xdf6c7a88, 0x897d4b20, 0x5bb77755, 0xff1ab109 }, { 0xbaa674f5, 0x7631fcb, 0x46dff793, 0xe8098ab5, 0x397015ab, 0x6bd31b3b, 0x49f3360, 0xac5dc40e, 0x7ad0e293, 0x7995692f, 0x1429068a, 0x9978d6f7 }, { 0x4b4ad8de, 0x23be1bbf, 0x9196e6f2, 0xbc67692f, 0xcc0e3331, 0xd64e48dd, 0xd7130f7e, 0x9de762c8, 0x361c9efe, 0x598d9d30, 0xcf9cf082, 0x69db83dc } }, { { 0x2a7dd982, 0xd52e4636, 0x9fd15380, 0x8eb4ca9b, 0x925027ab, 0x5b10a0be, 0x99cca3f6, 0x1b047245, 0xd2463d17, 0x9f0f0d6, 0x8e7061e5, 0x1d82c5f3 }, { 0xe19d6691, 0xe561c67f, 0xad22a795, 0x10fb0906, 0x98fb30d4, 0x1b34f563, 0x6fc436e0, 0x1327b0d3, 0xe596da71, 0x4b475eba, 0x546b951d, 0x7cc29efc }, { 0x9619721b, 0x61e4b9dd, 0x77c535cc, 0x1d701f97, 0xdc55f6a8, 0xbbcecd87, 0x84a01cd6, 0xcf797192, 0x6dd6d544, 0xebc9f1b4, 0x49de9f91, 0xa874e2d9 } }, { { 0x67bd29d7, 0xa6b3a87, 0x6e11874, 0x1b9d4b6, 0xd33e910a, 0x1e371bef, 0x2b3164da, 0x721652d1, 0x44889f8e, 0x18de4e5a, 0xa932fb40, 0xdc6454c7 }, { 0x655c185e, 0xe76ae30a, 0xeceaf7cc, 0xa56b92fc, 0xba71535a, 0x78535db7, 0xdada02bf, 0x4177b1a8, 0x6792165d, 0x203ddb90, 0xe94828e5, 0x1681cef8 }, { 0xacdc5302, 0xdeec0afe, 0x943e6478, 0x7b7dc47, 0x57fcafb3, 0x37d33098, 0xf25f621c, 0xc68b6e96, 0x7bea0912, 0x150870f7, 0x9d923458, 0x2443a717 } }, { { 0xeb87de53, 0xbe7dcbe5, 0x37a98b45, 0x60db9eb5, 0xb736cf47, 0x9f256ee8, 0x7c88b94a, 0x33142efa, 0x9e7e11de, 0xc7a1dcf3, 0x323ee81b, 0x33648098 }, { 0xfc668e8d, 0x57955129, 0x9e03cef1, 0xa3fe97d, 0xa6ca5bac, 0xdecebeaf, 0xea0359ea, 0xe0569252, 0x5404d06a, 0x35d89775, 0x3ca8af6b, 0x4a396914 }, { 0xe2aec3e6, 0xe34f24d9, 0xe628c420, 0xa5832441, 0x898dd435, 0xf1dd6d20, 0x94c96ff3, 0x84c328dd, 0x430ce108, 0x3477f930, 0x2e5aaf2b, 0x46d72e20 } }, { { 0x3131e907, 0x95b6693, 0xfb788c69, 0xfe4130b0, 0x2cadf7fe, 0x9fb4b4e0, 0x19f60b1e, 0xccb2b03e, 0x4fa004e2, 0x291497f5, 0xcfd22a63, 0x246d684c }, { 0x82f784b2, 0x6263a9, 0x596e6289, 0x4f260f23, 0x705d8023, 0xa206e777, 0x478fab43, 0x7af78cf7, 0x58c8a593, 0x91839e1, 0x8bebf860, 0xf56bdb0c }, { 0x8f8ce926, 0x4c52977, 0xba38ed7, 0xbdeb760e, 0x4053069d, 0x74bdefff, 0xa7c9378f, 0xc9697f43, 0x54c438f0, 0xc73283a7, 0x3ea42c8, 0x220f5b8 } }, { { 0xf254adbc, 0xcd48c303, 0x189afe54, 0xe5f74fb0, 0x7a3ba79f, 0x99b750b9, 0x83746437, 0x17819b0c, 0x5f512680, 0x587bd89b, 0x79d7ed58, 0x7f8c01b0 }, { 0xe74bfc88, 0xcf8e1049, 0x3469429c, 0x6bd89b6c, 0x5c85bccc, 0xdb604bcb, 0x6b2efa4e, 0xeb9bbbd4, 0x6fe273f7, 0xbcba4450, 0x76aad885, 0x4b28392e }, { 0x3757d11f, 0x5e8671b6, 0xbe77023a, 0xac74ce50, 0xf761e72b, 0x38b67e50, 0x50ec86e2, 0xd3d1b087, 0x8a7bec89, 0xf95759aa, 0x8eedbf3a, 0x9c9504a4 } }, { { 0xcf704010, 0x2472af2, 0xe39f8c51, 0xd1b6ca05, 0xbc18e560, 0xdb706cc2, 0xd765ca31, 0xf75f3e27, 0xa8d98ea6, 0x2ed825bb, 0x6d6c6432, 0xe233c93e }, { 0xd7c8e668, 0xfbbdae44, 0x8700e57a, 0xa5efce8d, 0xb0e7060e, 0xe76f3207, 0x820db53c, 0xd0dfb2c0, 0x6c8217fc, 0xb354ce32, 0x10739e08, 0x4bb65632 }, { 0x6e494a70, 0xde502862, 0x4cfdcdd6, 0x800f5d1d, 0x1d376dd2, 0x2541636d, 0x4e299998, 0xc2366942, 0x5b3feca1, 0x16c66440, 0xe1f8e7f5, 0x18ff81e5 } }, { { 0xf204df33, 0x1c48db9e, 0x603f9a4e, 0x6577114b, 0xeae22458, 0x991545c9, 0xa1f70951, 0x58149a14, 0x1a91da01, 0xaa32f1f3, 0xc0063a87, 0x9883719a }, { 0x9817bf1c, 0x5a7594d9, 0x8eb45cab, 0xab5f0794, 0x6ebe95f6, 0x605626d4, 0x5f68a94, 0x3cfe4d84, 0x17332487, 0x6356f8ef, 0x5a6921b, 0x6174829b }, { 0xca40359e, 0x4bab6caf, 0x6ff2fc53, 0x5626ab94, 0xf248acbd, 0x7fd0ca07, 0xd5c7c45c, 0xcd10d7e3, 0xeb29a30e, 0xc822c1d9, 0x836c35e4, 0xdb0d1858 } } }, { { { 0x9861cb7e, 0x9e632c98, 0xaa6aa3fd, 0xb8db5aca, 0x239e16bd, 0xf9a66a9d, 0xde8dbe7e, 0x605526e1, 0x1a184419, 0xaaf6c12b, 0x1dc0577b, 0x48239e0f }, { 0x6dec73bd, 0x244587bc, 0xcb06a887, 0x7bf37ed4, 0xb073404a, 0xe1eed66a, 0xdcddc5bd, 0x51ef3bc, 0xdcc5f2e0, 0x5028e1c9, 0xb5836921, 0x2452b596 }, { 0x3bdd5ab3, 0x90024eb7, 0x8a8a4632, 0xcef74e7f, 0xc3a80154, 0xfd1c27de, 0x9fd40660, 0xd5c04b14, 0xebf834f1, 0xe2c6d3d4, 0x913654f2, 0x94fd7abe } }, { { 0x2b4d80e2, 0xf2842865, 0xc0308599, 0x6abe3265, 0xc809dd6d, 0x98d91ea4, 0xb724f5cc, 0x19973653, 0xc04ad48c, 0xa8ef4e18, 0x645569fe, 0x6b18e0d3 }, { 0x7bbd05be, 0xeca0f0e2, 0xf1c48a9, 0x2fb0acb4, 0x4da4d730, 0x7934f19f, 0x28b1bc24, 0x7a6d5fd5, 0xfa358ead, 0xf96bc4a1, 0x8e9d1a42, 0x7056d8ff }, { 0xd1f8d1a7, 0xb17f5cc6, 0x1aacf014, 0xd6449258, 0x8b2a8028, 0xbcb78f9c, 0x50a00e12, 0x7f6deed, 0x38dd1056, 0x2cf2ecdf, 0xecf5c7e2, 0x55a8e3bb } }, { { 0xdd7022a, 0x202bf617, 0xb4a7b45f, 0xed87dcba, 0xf96281b5, 0x9e3cc856, 0x18af8cd1, 0xb9157cfa, 0x166023e2, 0xc518b17e, 0x950c8da0, 0x4191264d }, { 0x9902b07f, 0xd60faa4e, 0x629db4fa, 0xdc4a8e80, 0xbf7e9c20, 0x3452cf1a, 0x3d863f5b, 0xcd8f5b0, 0x44fc989b, 0x38e041c8, 0x45dd7bdd, 0xb48a594a }, { 0x3db8a18f, 0xb8d6d869, 0xe71af50a, 0x6dcbbdb8, 0x96c70b79, 0x19610ea, 0x6c014900, 0xbf01e9b1, 0x85ba24d7, 0xbdef992, 0x9835a66d, 0x974978d2 } }, { { 0x25aed513, 0x2b3030bf, 0xbe5d486f, 0x31eede8b, 0xee2b27f7, 0xaf5ab735, 0x16b654c0, 0xca6c374, 0xe24d4402, 0xbe4c6693, 0x36ff2f3f, 0xe1017edc }, { 0xa05a1da0, 0x3a36ea96, 0x7b6c9020, 0x6a10df23, 0x38088d5d, 0x7dd2af05, 0xa7291c04, 0xccca1e72, 0xa99001c2, 0x6977d7d0, 0xe227d88f, 0x119cdb0d }, { 0xe5b23e07, 0xcfa2c1b8, 0xd71ba5bd, 0xc2266896, 0x31f7ef81, 0x614aefc9, 0xa295e37, 0x9032a631, 0x4b805826, 0xbc9bf8d0, 0xd2cc1748, 0xe123076e } }, { { 0xe62869b0, 0x9d9798dd, 0x69edda3c, 0xe6374229, 0xbd5cec67, 0x2f6bf3f7, 0x133148a4, 0x4301207f, 0x4ee01a2a, 0x7cdc42c7, 0xd21ea819, 0x62557303 }, { 0x55764106, 0x74031d98, 0xbcae8766, 0x4d786c7e, 0xec62efa3, 0x1ee8d9db, 0x53ba644c, 0xf9a48403, 0xa6541d93, 0x59271400, 0x9be91992, 0x3d93a0d1 }, { 0x3a3b01f4, 0x40c5c836, 0x90019be3, 0x90a8aac3, 0x481bfec5, 0x8c44ab, 0xcf18641c, 0x3b8f5637, 0xa567375b, 0x9939c3e5, 0x33a1909e, 0xcc040298 } }, { { 0xd056fd53, 0x9cf9a714, 0x6d34b0ce, 0x82e14ca5, 0x6442f3b, 0xecfc9242, 0x2fb1dbab, 0x9a0456bc, 0x53c8f7fc, 0x29e6d5c2, 0xb62639f8, 0x6cf6815 }, { 0xba997664, 0x9c5877f, 0x56fa7c7, 0x36ed6ac4, 0xd99245cb, 0xc071d8c1, 0xbde06042, 0xe4e4e47f, 0x1e20cdab, 0x116b582, 0xb1ab00c5, 0xba72fd44 }, { 0x9d2edb72, 0x6be88cb9, 0x9b0e8394, 0xc0ceca75, 0xf3b2fcc7, 0xb6ad5bd7, 0x9120871c, 0x2748a055, 0x3b01e4ee, 0xadd89e3c, 0x90c8fe34, 0xa7b8711b } }, { { 0x3e09982, 0x7fdadc1d, 0xb0545176, 0xa30e7d9d, 0x665ffd6d, 0x894f84e7, 0x459961f8, 0x2210be79, 0x5dc5a19a, 0x4f06bfd4, 0x5585016a, 0xe698cbad }, { 0x7735f79f, 0xb31e8bd1, 0x7cb4ac43, 0xa76a94d2, 0xff3985ed, 0xa94dc864, 0xea70bbf, 0x3d912619, 0xeb24aa09, 0xafc0b70d, 0x645167df, 0x75c1689c }, { 0x42930f3e, 0xb31aa98f, 0x92049bed, 0x44a1af20, 0x622d8e6f, 0x7e91af85, 0x7a7cddbb, 0xdc162d4f, 0x3a493fe1, 0xedd74e9, 0x1e8e4daf, 0x87925d75 } }, { { 0x9433a305, 0x285ac23a, 0x76fb8304, 0x296ffe5e, 0x7d832f13, 0x9b76828c, 0xa21accc3, 0x3cd7b1ae, 0x59ea540f, 0x2de55c14, 0x553faae6, 0x826fc2a7 }, { 0xaa6feba8, 0x1a749749, 0x89f67fc8, 0x18cabcc5, 0x555c8d17, 0x793f0733, 0x6a93c136, 0x73508e87, 0xf878cf3d, 0x62600bfa, 0x5a65fa04, 0xe0ecc56a }, { 0x57e2a862, 0xd58e3ffa, 0x451824df, 0xb749617a, 0x3ef2cc63, 0x2b7fe5eb, 0xdcf183e9, 0x54c932b6, 0xaa4caec2, 0xd5d23a92, 0x17c92eb4, 0xc4a20994 } }, { { 0x5b11f3b1, 0xdaea3b5d, 0x1ac67ea1, 0x59c73160, 0x56549287, 0xed0aab7e, 0x912e0d92, 0xa0510453, 0xd6dd3c02, 0x5c417696, 0x3e02a61c, 0x3754283f }, { 0x431850c4, 0x1987e0de, 0xc009867b, 0xc90dfd23, 0xe43c52c1, 0x1ed7a399, 0x61cdb4d7, 0x9ff1cd79, 0x23be9824, 0xdef69363, 0x407918a0, 0xb86e83df }, { 0xa624b222, 0x96f24bdb, 0x9299cad, 0xa73d6585, 0xc3a88009, 0x183b27ff, 0x98a6553f, 0xd550c7e2, 0xc302c249, 0xa66a036f, 0xe96cca30, 0x549db28 } }, { { 0x3e878998, 0x465c0d6a, 0xe347e4b, 0x9359c4b1, 0x80604270, 0x69a19787, 0x1a3ebd3c, 0xe3fbfa12, 0x97ec2381, 0xb197b388, 0x3aa6af90, 0x5b928922 }, { 0x28381558, 0x536b8d11, 0xc9edc680, 0x92adcbf8, 0xe891edcc, 0xd5b96948, 0xd5603dca, 0x3e111734, 0x6c26ee2b, 0x28cd46d0, 0x943b1b29, 0x1387e58c }, { 0xbc23f5dd, 0x4d3980d8, 0x460d3d8f, 0x857da5df, 0x14029e82, 0xfb6da523, 0x69b2cc01, 0x833abcdb, 0x7481f98, 0x1f8a0b40, 0xed19087c, 0x6a638d05 } }, { { 0xe391b4ee, 0xee770be1, 0xced310da, 0x5408a91b, 0xc31154ca, 0xae935be8, 0x50f2f13b, 0x9b55de8, 0x729ca804, 0x43831843, 0x6fc962e6, 0xd5fd576a }, { 0xafcbce1d, 0xe9cb653f, 0xea872e3a, 0x2046aed, 0xd9594501, 0xdd1b6dcf, 0xd6b318e3, 0xbdfdc827, 0xace7cc2f, 0x8b972077, 0x8f7cd921, 0x1c920adf }, { 0x83a9f679, 0x83ad9433, 0x79e44987, 0x77fe6f0f, 0xa4f2ccf0, 0x793ad286, 0x216ef011, 0x4b6b4680, 0xee23092, 0x33aad57d, 0xa5232283, 0x781b68c2 } }, { { 0x6598c838, 0xae1049ac, 0x4ed66fd5, 0xf6210fdd, 0x2ee9ebf3, 0x67dd622d, 0x5ec22c51, 0x389a962e, 0xc330c6c9, 0xd4c6590c, 0xa980cc5c, 0x102289fe }, { 0x6bac4580, 0xe03eb02d, 0x2ef18661, 0x5a60286d, 0x7a418f80, 0x14e50488, 0xf78a0320, 0xb05eef51, 0x4e9a22b3, 0x27661157, 0xaf698707, 0x515fff7d }, { 0xd12dfd90, 0x3dafa3a, 0x55cd06eb, 0xfe871443, 0xc2a82a44, 0x4e8bf167, 0x7cfde936, 0xa1a60f10, 0xfe37903b, 0xdf61eddb, 0x5494bfa8, 0xb1d9636b } }, { { 0x7607f05e, 0xa7ca605c, 0xabd14c56, 0xc400615b, 0x99fb8c33, 0x51f1ff4a, 0xe256f51d, 0x19071a59, 0x4e6d5a5e, 0xe1068634, 0xc9dadce9, 0x75f83de0 }, { 0x6f89cfd0, 0xd6d68b1d, 0xc980c75a, 0xb1a35a01, 0x73b16e8a, 0x601c9e02, 0x70f38e54, 0xfdc0330d, 0x9f5ed0eb, 0xd5002deb, 0xe434822a, 0x6420f538 }, { 0x445b4a53, 0x70b07fdf, 0xcd8a1ea6, 0xfbc11808, 0x7400f9f5, 0x35e240d, 0x8fab8233, 0x87587e2a, 0x2015d4fa, 0x97e0c0a3, 0xe43fa193, 0xbdca030f } }, { { 0x3c0d9b4f, 0x3a29f24f, 0x8909b08f, 0x44dfff29, 0xdc0c7650, 0x67ac4532, 0xf952fb2b, 0xd9ea313c, 0xdbc3f1f, 0x5c3b37d, 0x70bb0e2e, 0xfc6989ef }, { 0x20759781, 0xf1e949d8, 0x7ec74813, 0xdceb9378, 0xf96812b4, 0x23f5db2, 0x5808b7d2, 0xae46ca49, 0xf1c61512, 0x2e2a64fb, 0xf9ef1c2c, 0x3d75816 }, { 0x262a4868, 0xa6d8efab, 0x84b3a683, 0x18c7854a, 0xde2000ca, 0xcbdc0eb, 0xa04987dc, 0xe6bfbc2d, 0x56c36422, 0x604dc6e6, 0x4789c47e, 0x5f31c39b } }, { { 0x69edf217, 0xbf68ec9b, 0x71b7c615, 0xc63ba2d2, 0x99c172d0, 0x5ff544db, 0xbf740cfc, 0xe63abea3, 0x5f1f3a9e, 0xe57abcd4, 0x1b9b70c1, 0x5cd46915 }, { 0x1468a1b4, 0x20266df7, 0x359fb96c, 0x76020f4a, 0x6e992cea, 0x49803431, 0xe0c5e576, 0x9d478c8f, 0xe37d9f10, 0x466f92c8, 0xead9bd0, 0xb0f1b4a3 }, { 0xad0362d2, 0xab8ac17b, 0x8af7310c, 0x5c3f8123, 0x6bfa0af3, 0x79c6fa, 0xf53372e9, 0x877ab385, 0x40535762, 0xfe5ad9be, 0x8b01c31b, 0xa895aca0 } } }, { { { 0x3a97c6d1, 0x191ea93d, 0x287045ad, 0x6ad3c76c, 0xdfd3a526, 0xd0ae5080, 0x7391254a, 0xfc09a003, 0xd0f1374d, 0x73e4d66e, 0x49ab11b7, 0xfcd57af3 }, { 0xc0e5589b, 0x38e77f5f, 0x9ddc6b3e, 0x46bcdb2, 0x2ab03593, 0xb9e86da4, 0x93128eaf, 0x5dba99e6, 0x5dccb02b, 0x1fe630fe, 0x923664d4, 0xab32ec75 }, { 0x613741cb, 0x7308c2de, 0xa0d29467, 0x9a426249, 0x9e6f8f06, 0x18f2eda2, 0xeb62c1f6, 0x2518df1b, 0xe2f5e0b4, 0x83184e9a, 0x34945e38, 0x55abc7fd } }, { { 0xb87d3ca2, 0xe0b4dc12, 0xf312a059, 0x7d3a043a, 0x9f6d7b3, 0xb6db605c, 0xf1a21a22, 0x7c855e6e, 0xfba121af, 0x6962d123, 0x811fb559, 0x9fae3f3c }, { 0xd3ad4002, 0x17dc894c, 0x98c64c3b, 0xd261d7de, 0x98e38ac7, 0xf12cefd3, 0x476ca05f, 0x103748c6, 0xfe661ca6, 0xe326bddd, 0x310639a2, 0x9cb68c7d }, { 0xb639009e, 0xca135fa8, 0xf48d814d, 0xbdf115a2, 0x1af55709, 0x9b5dc977, 0x341e3ccc, 0x9a9fecb2, 0x80e76d20, 0xe6e07191, 0x45b89c52, 0xe80c138 } }, { { 0x44212d0c, 0x271e4bf1, 0x4030d4c9, 0xc3a31440, 0x6d1c5312, 0x872d1999, 0x87ccad46, 0xe01f2da1, 0xc7e4e4b1, 0x6a1a2989, 0x48edc9c3, 0x64aa77ed }, { 0x822a89e9, 0xaef11111, 0xd4f6e564, 0xf96245a0, 0x3cb9c50a, 0xa60d620e, 0x37a3f944, 0x1d0eea9b, 0xaa4f8f58, 0x9d391f52, 0x80cada33, 0xe376933a }, { 0xd97ed07d, 0x7b2a9420, 0x66492bf5, 0x3198991a, 0x72884218, 0x6b94e984, 0x7f3fb1d6, 0xfc7c6d47, 0x786a80d, 0x6685ad4f, 0xea074efc, 0xea48046a } }, { { 0xb36c7e75, 0x429030ea, 0x9d28384c, 0x888dc4ec, 0x5b14721e, 0x68f0c61d, 0x66509f16, 0xe655e9d2, 0x819f028b, 0xefb10603, 0x4609e2a8, 0x68ddd218 }, { 0xa1d16923, 0x5fae880d, 0xae1c1dc8, 0x44c9a548, 0x13b4f177, 0x9dde194c, 0x1f86879f, 0x44e7d56f, 0xe8b3f9db, 0x25631a77, 0x66b200c5, 0x8f0fe88d }, { 0x3b7e51c1, 0xf6a242ec, 0xaf292b6c, 0x7ef0af9b, 0x4ad469e3, 0xb6b7ee64, 0xdba2bfb, 0x317ff61f, 0x7b1c5c48, 0xc21f31a5, 0x6bd260, 0xa35e5ff3 } }, { { 0x9e7d47c1, 0xa5d9d476, 0x47eb6ac5, 0xcdfd59c, 0xffae7697, 0xd318bdd1, 0xa28dfdce, 0x2296fbf3, 0x188faaaa, 0x2882232f, 0x918badc0, 0xd0ff8f3e }, { 0xee13ebc3, 0x79410a90, 0x3c9d5a7b, 0x3cb4645c, 0x24af4322, 0x4fb663ba, 0x3958c089, 0xdeb3df8, 0x4b255be9, 0x31734166, 0xe01637c3, 0xc670a64b }, { 0x35b2cc71, 0xfb6795b9, 0xfb7dc5f9, 0xb44317e9, 0x1e609e45, 0x20311b19, 0xdeff24b4, 0xf1bf2e3c, 0x283dea9d, 0xd9c625be, 0x31f7bb9f, 0xbcb07714 } }, { { 0x3935c866, 0x9a9e5067, 0x7b3332c4, 0xb11b3c93, 0x99d3a0ce, 0x6049918f, 0xfeb82505, 0x23be9c6f, 0x7bb412f5, 0x1819d7f6, 0x10ce1c8f, 0xbf2e8192 }, { 0x4b57237b, 0x5eee0183, 0xe2dc00d4, 0xd2a2c1d8, 0xd0380f2d, 0x31025bba, 0x4c3bbbf5, 0x7853fa9e, 0x4900f5ec, 0xe29f6053, 0x42b06aa3, 0x192e1d4 }, { 0x13301e40, 0xdd0ac9cc, 0xaf12ec0c, 0x140237bc, 0xab0f70b6, 0xea63bf24, 0xa5d50299, 0xaa9b7bd4, 0x3027ad83, 0x12220f97, 0xa7f6d25b, 0x2437c6b1 } }, { { 0x68fe2ac8, 0xcba1af5d, 0x3adc67a, 0x763e2867, 0x5123819a, 0xdb8381d7, 0x69ff7d65, 0x5b5a1654, 0xbb51dca1, 0x63143cf7, 0x761afe6d, 0x3154baf6 }, { 0x119a4ee0, 0xf33a8e56, 0xb026d2d9, 0x7bfc0275, 0x50b8d022, 0x3080e296, 0x97e63c5c, 0x24004039, 0xc456a1b4, 0xbfa6842f, 0xa3a75863, 0xf3395d6d }, { 0xb0bf79f0, 0xf524f561, 0x11739820, 0x418ff28e, 0x929c153f, 0x21b8b00a, 0xad0e750e, 0x22d72d1b, 0xc6527342, 0x62b45a18, 0x629d7e6c, 0x6876364a } }, { { 0x6db07df4, 0x96408946, 0x9422fd9a, 0xf8b53ed7, 0x1f1233d5, 0xf822d584, 0xe1f43ae4, 0x7fdc1a6, 0xebab2d85, 0x6fe6573b, 0x3893768c, 0xa9ec5905 }, { 0x8dc7d853, 0x47f0ff56, 0xfb1fc27c, 0xab2eb965, 0x29755e6e, 0x6972d14c, 0xbd786dd4, 0xa62b1c4b, 0xa4c519f3, 0x7e77dbd1, 0x4406ea6f, 0xb95d856d }, { 0xc0d822ed, 0xdc64e515, 0xa1b15807, 0x8c7c1b8c, 0x4cc6c9c0, 0xfd9c1217, 0x8697b51f, 0x45e93d14, 0xc233679f, 0xae0f61ac, 0x79461860, 0x8fff0444 } }, { { 0x232fe282, 0x29d52282, 0xc2b3a05b, 0xa909e6f2, 0x64080a05, 0x4bcd6f59, 0x837a28d7, 0xd29e3507, 0xb06720b0, 0x72c81e6f, 0x54690137, 0xb525d1ac }, { 0xa7ceed31, 0xe3a80a57, 0x85c7b54d, 0x26b83d55, 0xe69ffeba, 0xde1a1ec4, 0x1b5647d1, 0xbfe12d10, 0x19b8849b, 0x741a9bb2, 0x866e449e, 0xa39bd884 }, { 0xf0d0ddcb, 0x38e0078e, 0xfdbadbd, 0xf83f964c, 0x79c24ceb, 0xa0ed67c1, 0xedd7efba, 0x2f10f33e, 0x99395daf, 0x7fb71fce, 0x38f73afd, 0x3220394a } }, { { 0xcac39c48, 0xa76eba01, 0x259c6fb7, 0x3d78c9be, 0x2cde6e7, 0x30cf806d, 0xa05b57ef, 0x714e029d, 0xb563bab2, 0xcfae0c4f, 0x30f47ad4, 0x5aa97065 }, { 0x302ff1d6, 0x261b1795, 0x8810d895, 0x6256450, 0x8c4bf375, 0xa2761063, 0x11bc931d, 0x672d612f, 0xf3b4508b, 0x87ada4f9, 0xbd965d4e, 0x31bea3b1 }, { 0x4e716520, 0x3a9e5b36, 0x4015ace5, 0xd8ad0ae3, 0xa146a4ca, 0x5f8d9275, 0xf8d988d3, 0xec162afa, 0x1a3afb3d, 0x970f549c, 0x1b0e2d6d, 0x856820ec } }, { { 0xf38ca561, 0x449dfc7b, 0x64ba2dcb, 0x9e9a5e6d, 0xed69bab4, 0x74919644, 0x8ffd00e4, 0x2539cfb2, 0xa080d886, 0x2e69a3c1, 0x1219e5f9, 0x469f5010 }, { 0xa5e5384e, 0x91f060fb, 0x46f77a2, 0x4e76ddaf, 0xabb5eac9, 0xf3ca600d, 0x43f30fdd, 0x3a1d4243, 0xf3bada6c, 0x8d4280b3, 0xffda7481, 0x23ce1889 }, { 0x59c0e8b0, 0xb8cac97f, 0x3629f98e, 0xb1ae7525, 0x4be1efea, 0x3b62fb28, 0x941312aa, 0x991db500, 0x5aff3ad1, 0x1b5d693b, 0x62f6dafa, 0x8d6356a8 } }, { { 0x60886deb, 0xbb49a4b8, 0xf4e16911, 0x893beca8, 0xb734bc4d, 0xb4caafd5, 0x5a44747c, 0x893905f7, 0xa28662b7, 0x97a8343e, 0x8b4b9766, 0x9db25e10 }, { 0xed3a8fda, 0xd350f974, 0x4f0c50a9, 0x926b37c6, 0x2fa710a, 0x9a061a04, 0xa2543501, 0x690c8a6c, 0xabfa8fde, 0x8b6ff2b8, 0xcfdc2c88, 0x33bc8997 }, { 0xb75d850f, 0x9cd593e9, 0x26ccf1e6, 0x794ba063, 0xcca775bf, 0xf2d251cd, 0x8e5692d4, 0x7e60930a, 0xa123a997, 0xc0488e01, 0x181f4d71, 0x9ab29d0d } }, { { 0x4aeb092, 0xddc35a1e, 0xe3bf07a3, 0xe39bceee, 0x3156c3ab, 0xb07685ff, 0xb5899c82, 0x53dc79c2, 0xc6aee57f, 0x5af754d3, 0x2db27989, 0x9d7f117c }, { 0xbcf8ea41, 0x53e5a847, 0xc679e987, 0x1cdd38c6, 0x53dc6101, 0x40d8d7a9, 0xed2e75fa, 0xa14de739, 0x62a22e6f, 0xf1a588fb, 0x7a107e94, 0x6cf2b44b }, { 0x933c8b55, 0x9d6b5f8a, 0xbaa93519, 0xfe209a0f, 0x10836e97, 0xcb55496a, 0x843d9a55, 0x8cd6372c, 0x57699ec9, 0x4b44bca8, 0x384a6962, 0x3a825c6f } }, { { 0xf4a4a3bc, 0x70d8401c, 0x21ca755c, 0x6a3c2afe, 0x75e0cc91, 0xfccc3119, 0x6b2566b8, 0xd025148, 0xd910acf2, 0xaa78fa6d, 0x3db570b3, 0x528c71f1 }, { 0x1afa343a, 0x6cd5a779, 0xe641dac5, 0x9bd9ccc1, 0xd3681532, 0xec66c3f4, 0x8a5f8b8, 0x945abc79, 0x90636df9, 0x52a7e9b2, 0x6bb84eb2, 0x31ece5a }, { 0xc0495d6e, 0xd3111fc1, 0x78fa2fe1, 0x518b50e2, 0xaa0ec24, 0x6dbaad60, 0x794d951f, 0x652fc506, 0x66e62191, 0x68a5b71e, 0x16eac705, 0x48ef4e36 } }, { { 0x86169d25, 0x269877e5, 0x87f3a947, 0xc5f64dae, 0xd3df3a85, 0x6852cc87, 0x29bac9e2, 0x33b5e129, 0xdca1ab0d, 0x152405dd, 0xb9a5a321, 0xf73d073e }, { 0xf62a7eae, 0xc9446b18, 0x46e8ce6d, 0xf521dfa7, 0xd3c48372, 0x6798417, 0xeef6898d, 0x19efd781, 0x907d276d, 0x9db131fc, 0x7782cd8f, 0xaff6ca0 }, { 0x4930b2aa, 0xb09afe42, 0xb101285, 0xe0a14f3a, 0xc514e189, 0x366c7ede, 0x88b748a2, 0x456b3966, 0xb87863e1, 0x2c03915a, 0x11291be7, 0x5f0012d8 } } }, { { { 0x33408617, 0xa1846ef, 0xf501b609, 0xffc263a5, 0xc188827a, 0x7cdd0a01, 0x55991f6f, 0x8ee105ff, 0xe0d7f5fc, 0x4738ea54, 0xe7e0b3c3, 0x8cf80796 }, { 0xb75a73ea, 0xb70d4f7b, 0xa1d736a, 0x8ec1951d, 0x3b80d4c9, 0xbf3b1b37, 0x31a17813, 0x96da9223, 0x46f8d0fb, 0xd28a962c, 0xb733a46b, 0xedbe91af }, { 0xc53e67a, 0x2cc881e5, 0xe2afefba, 0x2459e791, 0x3e6d79b, 0x49954a59, 0x51b728d2, 0x42804b98, 0x361f1f3b, 0x8aef833b, 0x64f04b20, 0x4dcd73c0 } }, { { 0x6429d9df, 0x9e6b3c01, 0x26d13a2e, 0xe780426, 0xde6e4614, 0x68cf1f3d, 0xfab2d5ca, 0x70c84909, 0xddcb3058, 0xed2cd2a9, 0x9c7ce1b8, 0x3c33adba }, { 0x75e07d86, 0x33f486ec, 0x225ba003, 0x46f58914, 0x3c51e7fa, 0xc419407b, 0xc759e739, 0xd29fbe3a, 0xe545e576, 0x3642b96c, 0x5cb4799f, 0xf2743faf }, { 0x6047617e, 0x198a7c82, 0x332c6cd2, 0x545ae0ef, 0xec0aa9ba, 0x9ebcea9, 0x5cf52196, 0x5c5c2a42, 0xf2e713b8, 0x14cafff8, 0x218c7cd5, 0x6e50fced } }, { { 0xb7792752, 0x14cb0a5, 0x2d99a979, 0x90733fa0, 0x20972318, 0x90f403c1, 0xf9d4dc9a, 0x24b3290f, 0xa3c5ce6a, 0x6e342319, 0x30cded48, 0x3c738f0b }, { 0xfa44410, 0x98a5f269, 0xe1d3a534, 0x170b17e8, 0xf4ee195e, 0x5faae1fe, 0xa0bb1ff, 0xb2f6c503, 0x1156312e, 0xbef3fe91, 0x93b27761, 0x35bce57c }, { 0x6cd64f3f, 0xca93df8a, 0xa61429ac, 0xa0d537ea, 0x8c67034c, 0xa23b3ebf, 0x2c61d76d, 0x161a27c3, 0x8e644b06, 0x7da84c36, 0x1e8649bf, 0xa4be36fe } }, { { 0x3afbe09e, 0x7edd5a27, 0x508656cf, 0x7ea5cb6d, 0xbf889f66, 0xb81d9de2, 0x3c1f37eb, 0x2d451405, 0x9020d4e6, 0xaff874ef, 0x70dee8b5, 0xbd88ab61 }, { 0x4f6f98fe, 0xa0f39e28, 0x4757c82, 0xc162e56, 0x46e55dc9, 0xf880297f, 0x54f4fbcc, 0x7d4d91b1, 0xc50e8f83, 0xfdbba307, 0xe72ddc2, 0xde771195 }, { 0x98c9e204, 0x9044384b, 0x49e8cf8b, 0x7521dde6, 0x80b3ebde, 0x81951926, 0x2d777b46, 0x375377b0, 0xf3f0739c, 0x79630428, 0xafe2167f, 0xd3261b51 } }, { { 0x35a62515, 0xb30a6e10, 0xebfa618, 0x55e7fca1, 0x50ec69e4, 0x2177dc98, 0xcbc8c32e, 0xcde65d90, 0xaa4c269d, 0x7da074a7, 0xc0c8672e, 0x2ba149f2 }, { 0xdb443f77, 0x666b87b2, 0xa89f1dc1, 0x5678ee05, 0x34158a0, 0x11da9c68, 0xbb6aa372, 0x35c8a4b8, 0xd7ae97a8, 0x9e192de4, 0x7ae844f3, 0x53adc3b0 }, { 0x81b070d4, 0x414ec2a5, 0x72e6cfa, 0x8fb033de, 0xf0f6cf55, 0xd57d8d4f, 0x4c13e13a, 0x96877087, 0x2bb6e7b1, 0xb5820a0b, 0x84318a6e, 0xc5d708d } }, { { 0x86277b02, 0x37a661bd, 0xde4d255e, 0xb694a665, 0xe79493ce, 0x6de2cbaf, 0x39f762c8, 0x7bd3d286, 0x21b9e337, 0x9f373805, 0x33050fe9, 0xe36351c4 }, { 0xa4c2ffd5, 0x59ebe6fa, 0x647d4aa7, 0x34af7e86, 0x2ec46112, 0x843a12d2, 0x59b628dd, 0xc4cbfa49, 0x991f735, 0x6b5d409c, 0xf01a0167, 0x920973e5 }, { 0x34698f61, 0x6b1b1d14, 0xc432aa49, 0x925f4526, 0x20f99e75, 0xd357dd6d, 0xf5cb76b4, 0xcf75bdc, 0xc5bd93e, 0x9ac51f3b, 0x28a95562, 0xd6d9909e } }, { { 0xc73bdc3, 0x6d1e933, 0xe235face, 0x8819d794, 0xe1b97bcd, 0x86f69226, 0x4282a9df, 0x40c57917, 0x198309d, 0xb1679e0a, 0xbc1225e3, 0xa5b8b082 }, { 0xb90aaa7c, 0xddb6b06b, 0x3936cd36, 0xf78dbea9, 0x9cc37d60, 0xaa5c27f3, 0xde5dd559, 0xa1b839a4, 0xb7ab41ad, 0x953de600, 0x440f45ff, 0x378ed430 }, { 0xa8974d7, 0x3fc7f0d0, 0x308cb876, 0xe831a8ad, 0x3ec4eac7, 0x100e0fd9, 0x16f8d40, 0xe3b71e12, 0xd242ff1f, 0x3a82320, 0xe7e66080, 0xa9781694 } }, { { 0x3fd415e, 0xa89b70d9, 0xdd667ba8, 0xe72a3a33, 0xe80aa26c, 0x1ef1175a, 0x60d57a34, 0x8087eb9b, 0x46ac415d, 0x79b6eef4, 0xf8bd1f89, 0x72b35452 }, { 0xe296c5f0, 0x94b11552, 0x98787d52, 0x1e0a0ed2, 0xa202d90a, 0xe7c4b734, 0x3d8db8ea, 0x4f638be8, 0xd3763ce7, 0x9307a028, 0x8ab85677, 0x56d56889 }, { 0x9e02d901, 0x1e336a01, 0xd2bbf920, 0xcfadc40f, 0x9c91cd02, 0x1b2cfe9, 0x474c9730, 0xbbe9c1a0, 0x603ae3d5, 0x37d5fe2b, 0x1e1953f, 0xa429082a } }, { { 0x4aa1f247, 0xeb24118b, 0x88c27a62, 0x381d3fab, 0xbf6948f8, 0x2df347fb, 0x73329e1d, 0xa4b1e766, 0xb217270a, 0x782da4b2, 0x8ed2e2a9, 0x81029a9e }, { 0x57cbdc33, 0x4a73c326, 0xbbf248dc, 0x3cad2961, 0xfc4661d7, 0x949b2586, 0xc76cb820, 0xeab0d5a5, 0x4291f199, 0xc91b9d65, 0x7c8c8182, 0x4afcc993 }, { 0xeea353f, 0xf188eaaf, 0x2dabb952, 0x7631ec9c, 0xfb0c7c4e, 0x40ab65d, 0x13d7f97f, 0x2d551807, 0x46e4e563, 0x2bf8d5a6, 0xb5b7d7ae, 0x61242056 } }, { { 0xb265d92, 0xf433bf25, 0xac0522c6, 0x6ec56dbf, 0x34d84ebe, 0xeea93a9b, 0x16d5aa0e, 0xa4321588, 0x6014876c, 0x343e9c06, 0x914d3318, 0xfc206055 }, { 0x6d5f68b8, 0x265efa1b, 0xcae0a559, 0x85bf75f8, 0x82d7643a, 0x9c6af730, 0x232b3b52, 0x37db108c, 0x465231b8, 0xd9413d59, 0x8297ff8b, 0xc4a282cf }, { 0xfe260dfa, 0x540bd233, 0xdc18624b, 0x73094771, 0xf60555ce, 0x401f3dcc, 0x846e11ab, 0x757fe80a, 0xed0628ca, 0xc9d38680, 0x19c6b9d2, 0xae9541a3 } }, { { 0xa8eaabee, 0x52fc0ff3, 0x6eabd0df, 0xcf96ab47, 0x39458cfd, 0xa4c382b7, 0x6af819dd, 0xa0d41349, 0xca070738, 0xe758dd1b, 0xa03bb675, 0x21227b78 }, { 0x3b53a4a6, 0x811adeb1, 0xccea93fd, 0x8bdfb725, 0xbe2f4952, 0x63634055, 0xc690342b, 0x95c5498, 0xb3e2a729, 0x2f3c917, 0x6f95a6c6, 0x9861aee }, { 0x986622b7, 0x67cb779e, 0x44a1fb39, 0xe199ed5e, 0xaf1f71eb, 0x8bbb61e1, 0x9854966b, 0x6dee34ad, 0x969c0ab8, 0x368519f7, 0x5f6e1230, 0x23c9fb8b } }, { { 0x2c25d1fb, 0xa1ab68fc, 0xa7d79aad, 0x957bb7a0, 0xd0f6e3f4, 0x99b765d8, 0x70abea10, 0x4446bdb9, 0x4a8bdfb1, 0x85b838c5, 0xaa995d54, 0xff158af9 }, { 0x3caab134, 0xdde22c7f, 0x3accd604, 0xa95dd04f, 0x8facea5, 0xedaa3fba, 0x4cb7e42d, 0xec5f5093, 0x50fe257, 0x6e6c1267, 0x33a644fd, 0x6f9726a3 }, { 0x73dfbafe, 0x56872948, 0x596471f6, 0xdb1446c4, 0x85035558, 0x931152fa, 0x87dbe501, 0x6e37f01b, 0xd7ebd610, 0x6145d492, 0xfd5094d7, 0x9bf59f52 } }, { { 0x3ab1e91f, 0xaf0896cc, 0xbe1944a9, 0xf79eade6, 0x435cf6fe, 0xda2ef6c7, 0x7c791a9a, 0x87edadaf, 0xa3bcd516, 0xda11b07f, 0x2485fd3e, 0xa84bbd42 }, { 0x99cdfdb3, 0x42d17cbb, 0x3a645e42, 0xd0cd1e65, 0x2f08cd0b, 0x900a40c0, 0x3f6719b4, 0xbe528c82, 0xcd246b1e, 0x211bc4df, 0xcfe9199b, 0x5ad20a70 }, { 0x63a283f, 0xa88976e, 0xbf1f72, 0x5b2614c0, 0xaed289b, 0xf0a5ed93, 0x4b4697ca, 0x82ee268b, 0x936f4c3f, 0x6c6da036, 0xba8556e9, 0x55ed1266 } }, { { 0x73409dc3, 0x8b561a43, 0xd52a69af, 0xc8360fd2, 0x4551c660, 0x2cd345bd, 0xd827eca0, 0x922a7b64, 0x44956f05, 0xc1429b0a, 0x22b0f8ee, 0x39a45ade }, { 0x2a38875a, 0x40c71837, 0xe493fb46, 0x77d44160, 0x94167595, 0xde94abe5, 0x6f1aa1d9, 0x3697ae3, 0x632d4bca, 0x13bd7de5, 0x7ebb4927, 0x25a33d39 }, { 0xeed0196e, 0x6a8936a2, 0x833c4cc, 0x1fd1301d, 0xc24d27e8, 0x20b94219, 0xa26031f5, 0x1cfd7abf, 0xb6fc1eb8, 0xd97c86c4, 0x83e55cf5, 0x2508bd39 } }, { { 0xc48e842f, 0x53aaf7d3, 0x8709c724, 0x307d0bb1, 0xe7591999, 0x72524161, 0x4ba0d605, 0x3f20a47f, 0x69e4c9b2, 0xbece7db8, 0x698f2d10, 0x929f268c }, { 0x8c57f78a, 0xd1ff3d7b, 0x40794252, 0x8c8ee32, 0xc2a8b3af, 0xf7f9d02f, 0x80995e6c, 0x2e33120, 0x4c22984d, 0x3bbbbc1d, 0x39ac55dc, 0xdbdd1c9d }, { 0x182daed5, 0x14dff5b6, 0xaa1986e1, 0x98761d96, 0x586cde10, 0xcced4f37, 0xa2864487, 0x35901510, 0xa0038bf3, 0xe4d94509, 0xd1658bf6, 0x8708fe64 } } }, { { { 0x7531c3a3, 0x66e8860a, 0x7b61ef42, 0xdbcc8146, 0x9dabd551, 0x4469edde, 0x502496c7, 0xb1593d7b, 0xf651df24, 0x849e9f73, 0x1cf0daef, 0xc1803c50 }, { 0xca0cfa24, 0x28b30abf, 0x1de1ed96, 0xd1286ef6, 0x2e4375eb, 0xb2bcdfd0, 0xb3cd24b3, 0x1eb28f9b, 0x9a1cb9cc, 0x6a1bc2a8, 0x923409d0, 0x692596e3 }, { 0xcc564c2e, 0x968110e1, 0x8ab5e6cb, 0xdb55df37, 0x55f26d2d, 0xa9b0a0bb, 0x5b7ef5c9, 0x88a453ac, 0xea361a65, 0x78993c17, 0x777c8343, 0x9d3a09dd } }, { { 0x391ccb5a, 0x2635af4d, 0xed3e3ca4, 0x283dc4f9, 0x2cb98728, 0x46cdf5a2, 0xc7420d99, 0xa5a91bfa, 0xe945abb8, 0x480eaa63, 0x6fdceff6, 0x4ab844f5 }, { 0x58a00f74, 0x20cd01c2, 0x5535f3e5, 0xca1e80f5, 0x233389d5, 0x9285b528, 0x4b0e3944, 0xc4bd99b2, 0x24beaa1a, 0x4df3a3b5, 0x3f6e1b3a, 0xeeff573e }, { 0x9185aead, 0x8aee6cac, 0x9a53ea83, 0xbb683d04, 0x4251fe66, 0xdc4583f3, 0x65084e2f, 0x91510539, 0x1e79e3b4, 0xda17979d, 0xa63ea84c, 0x1e6c8b8e } }, { { 0xd0f0fac, 0xd9781e1c, 0xccfe885f, 0xf399e7c4, 0x996ef5b2, 0x6697b741, 0x9e84c43c, 0xb6e16a2b, 0xf9ec898e, 0xac298efe, 0x7ecf7ec8, 0x17e7186c }, { 0x71b92d80, 0xd285667, 0xbb0bc166, 0x34012ddd, 0xf82daf56, 0x9918269, 0xda81287c, 0x3a0da8f7, 0x7d4bbaff, 0x7abd213d, 0xea4d07cb, 0x2b7bacc1 }, { 0x762f9ed, 0xf64fc728, 0xdca7585a, 0x1d9c87fb, 0x8c58c466, 0xe7ea6c95, 0x4a62c89d, 0x1774dd50, 0x4d6428f5, 0xdd9201e, 0xcb0674ec, 0x9c5daafc } }, { { 0xa2a3b30c, 0x58d2d8f0, 0x156a83d9, 0x686a491f, 0x52eceb89, 0xf241b1ca, 0x50c0c775, 0x1473720b, 0x75dff19b, 0xdbd9f15a, 0x1badc6bf, 0xa3be77df }, { 0x76117f70, 0x63cf021f, 0x58b6fb7e, 0x7ffe84d3, 0xa17415ef, 0x2d880cc5, 0x916acbbe, 0x6c1f2cc, 0x9f7ea5a7, 0x53604e27, 0xfe221875, 0x4866199 }, { 0xf3719455, 0x29533c0c, 0xa7f6cce6, 0x4ecaae2e, 0x78390f02, 0x792b24f3, 0xed1b221a, 0xcfa97afd, 0xb785601a, 0x8b678634, 0x9c9aef4f, 0xf2edaeb4 } }, { { 0xf3a8157, 0x87ba295b, 0x5fb86f05, 0x56af5fe3, 0x8939fa06, 0xe34dae0, 0x6a69859c, 0x89a1ea14, 0xa7faa481, 0x62e2cf4a, 0xfc774ef3, 0x5b2b4ee3 }, { 0x87b6dff5, 0x4bfdf69, 0xe563444f, 0xd557a924, 0xf3cf6671, 0x782c8ffe, 0x96f31738, 0x1c296253, 0xb56f5dca, 0x9b757bab, 0x6a1b064e, 0x80e1bc51 }, { 0x3fc989fe, 0xdcae0779, 0x34eb4197, 0x39a59b46, 0xfad77e2c, 0xd97b2667, 0x825b2360, 0xd0483ec4, 0x30e0fc59, 0xde335741, 0xa6587651, 0x2ca68095 } }, { { 0xcf0190c4, 0x6386726f, 0xade270f2, 0x1e0bc60d, 0xc1b247a, 0x6fef4df0, 0x6196b7b5, 0x94e79203, 0x823e2b39, 0x20bb52a9, 0x4bd0e7c7, 0x814c8c17 }, { 0x298c4f3b, 0xc55b6a87, 0x73204d4d, 0x490227a4, 0xab5e48a5, 0xfdb0e600, 0xca4adc5a, 0x8dcb80f1, 0xed48ddf7, 0x8fd7b9ac, 0x72a01aaa, 0x68efc8e8 }, { 0xae967848, 0x73198add, 0xe91e5fab, 0x34ac718d, 0x52b9f2f3, 0x8ab955b7, 0x2fb79ae4, 0x5c63d39f, 0x207fefe5, 0x81537ce, 0x454c5381, 0x23fc6958 } }, { { 0x8c18374a, 0x6485ba18, 0xe3b0ddc0, 0x9aa1f7a7, 0x60c0b317, 0x3f336a4c, 0x1c39cc0d, 0x57525ce8, 0x7b3b665f, 0xeccef79f, 0x484506f1, 0x8127bba5 }, { 0x6bb04de6, 0x74f5c505, 0x746a6189, 0xe85d5bcb, 0xa7e3c76b, 0xfaa4b830, 0xe595689b, 0x1befd7db, 0xb72caf45, 0x562351aa, 0xccda6f2d, 0x9fefca8b }, { 0x57a371e3, 0xbde985d9, 0x165046c4, 0x2a50e899, 0x12b55ff1, 0x9af3d390, 0x882570e0, 0xbde5b9ad, 0xe472b85, 0xdf097538, 0xa45eab57, 0xf6d715b6 } }, { { 0x4c129551, 0xe0be6c1b, 0x2a55ebf6, 0x1da81bc8, 0x67f013fb, 0xf2a08ee7, 0x53915b9d, 0x55d08d45, 0x5d2088e3, 0x137d931d, 0x72d49b5f, 0xa7c99ddc }, { 0x75a35fe3, 0xb226af4a, 0x8b9417da, 0x1197a237, 0x530c1ecf, 0x83eb9f21, 0x6dd3593b, 0x7738f98c, 0xc791cb67, 0x9a248ddb, 0x37278fc4, 0x59499539 }, { 0xba910281, 0x7864314d, 0xdafb50c9, 0x1bed2e39, 0xe7a20dc2, 0xe505bae, 0x17f92d09, 0xb41a08d9, 0x3bf45935, 0x78e8063a, 0x72ea36e5, 0x3c250e62 } }, { { 0x78e9ff9c, 0xe2af43b0, 0x75dde4e1, 0x15901c11, 0xe806a2e5, 0xf1456c4a, 0x542062c1, 0x4942c18c, 0x636895e1, 0xd37fb541, 0xefdb5f56, 0xb0950b10 }, { 0x93e3ef9e, 0xe70b038a, 0xd7df5b5a, 0x7c0cd61, 0xfab4e737, 0x18143e6e, 0x3d3a26b0, 0x73acdb82, 0xad4c30f, 0x15fbad23, 0x1301899, 0xf7e2eefa }, { 0xd1051b35, 0x7eb9bf07, 0xd64b2f47, 0x292509b2, 0x3b7cb4f7, 0x8d0251ac, 0x75d35274, 0xb3e68227, 0x88186335, 0xf7ef8718, 0x248911d5, 0x64281e72 } }, { { 0x4fe1e8cf, 0x2043d3fa, 0x9181293e, 0x49fdbdf7, 0xcb5c1324, 0xb0d4da99, 0x66f0243a, 0x51942b5b, 0xc4908e51, 0x8429044b, 0x8c560432, 0x7a676612 }, { 0xd8074be8, 0xf0cbb013, 0xca785f9, 0xd1cb1f43, 0x382b1950, 0xf36e399f, 0xe63bbd22, 0x81b961c9, 0x434e2cef, 0x192d9417, 0x5c2b9a11, 0x5b0c771c }, { 0xee4f9793, 0x7f0cfddd, 0xa1cb908b, 0xa8e3a9d1, 0x10656006, 0xf937a3be, 0xf0b357de, 0xd069c607, 0x8ec06591, 0xec74e9fb, 0x5dfa4401, 0x97f2ba5a } }, { { 0x5db2d288, 0xcbda8e9c, 0x6a8e96ee, 0xf8737ff7, 0x6ab8bbac, 0xe4a3df95, 0xd011090c, 0xfe3a539, 0x375af01f, 0xdf7554a9, 0x4f230349, 0xdc618cc7 }, { 0xc4537507, 0x627f00af, 0x4e5a3abb, 0x5f1d2472, 0x6cce9456, 0xd3c88e93, 0x9e1b927d, 0x3ecc8995, 0xfb6ff03, 0x128bc510, 0x85550e60, 0x7af722e3 }, { 0x73c21ec5, 0x88e8085, 0xa6722fdb, 0x67120d0f, 0xf23e3ead, 0xaf11e44c, 0x327551a4, 0xf91a23ba, 0x24d05ed3, 0x34fbad78, 0xf0adc6ca, 0xe42881b5 } }, { { 0x5ff3d00d, 0x9fc24d23, 0x7b7d472d, 0x7db1b6ad, 0xc37afc9, 0xf49c1e9f, 0xffbda038, 0xe80b84fa, 0x60b6380b, 0xf692cf7e, 0x157b2429, 0x7bb540d0 }, { 0x5e38ce19, 0x6ba17eb8, 0x6fc58ecb, 0xb55746ac, 0x9b12e338, 0x90d824b3, 0x3f463cf1, 0x50c457aa, 0x8ce99b53, 0x8814ec53, 0x14422bcf, 0xed7157e1 }, { 0xa0c7b882, 0x2db390fe, 0xedcc9a87, 0x3ff32ec3, 0x40af6878, 0x43879283, 0xeec7100e, 0xb3ea0d6a, 0x3ed7ab5d, 0x4e212147, 0xf2bf05e1, 0x2be19f1d } }, { { 0x25d09de, 0xb09632d4, 0xca00d947, 0x1d684f22, 0x31b0c783, 0xbe3d8163, 0xfa0021c5, 0xf9b636f7, 0x14e3f8f8, 0xceae9236, 0x37ae54, 0xd13388d2 }, { 0xa20b9410, 0x8cbdae1a, 0x5ffbec5a, 0x41036522, 0x96428b42, 0xa23df0ff, 0x4d490590, 0x342daece, 0xd3f10180, 0x651224e0, 0x70b2e4d5, 0x2d74b250 }, { 0x902edac2, 0x5d942d15, 0x627eec4b, 0x1cabac64, 0x380101c6, 0xa91635ed, 0x3399f111, 0xf6bf5bdc, 0xdff2057d, 0xa30028df, 0xd3bc3a09, 0x9dad7729 } }, { { 0x607fd3d8, 0x50fb5d5a, 0x3a2dfb81, 0xc83d37c2, 0x74f35791, 0x6e08cf6c, 0x867194a0, 0xb0dc8647, 0x543e5fd6, 0x6fbbfd36, 0xab26793, 0x5392406b }, { 0x6514061f, 0xeaf9cc67, 0xd4148404, 0x1c8d6621, 0x2e834638, 0x9fb19539, 0x2adc1522, 0xc5a4e422, 0x73071a12, 0x37b17f00, 0xb56d5708, 0x1b75bc72 }, { 0x74123471, 0xbd04548a, 0x7a55c94c, 0xb1f6505b, 0x97625506, 0x410c8f07, 0x4ec15f2d, 0xa9d06b2b, 0x81cefa2e, 0xfca3aabc, 0x15d07dc0, 0xc24b322f } }, { { 0xe75a095a, 0x156f5045, 0xf598c775, 0xdd821fac, 0xb41f7cb8, 0xc58555b6, 0x7916f30b, 0x2b5120a0, 0x92ef7478, 0x28139261, 0xbe816eb, 0xa251e553 }, { 0xcd7b1eb2, 0x3c9dab4b, 0x2c01bd59, 0x55d73301, 0x8f8e0af2, 0x159e8d18, 0xcd0967f4, 0xa29aee7f, 0x557de5eb, 0x9bcbc18, 0x4fd5da74, 0xb83237af }, { 0x32ad0d04, 0x10c5d722, 0xac644321, 0x389f0a76, 0x416b240c, 0xb2c9bea9, 0xdd317005, 0xd4742b14, 0x45ddeb01, 0x3b10b331, 0x895bcadf, 0x305906ba } } }, { { { 0xfffe1842, 0x21bad6a1, 0xe090e045, 0xc8218a8a, 0xb1b896ce, 0x67d4cfca, 0x37fed4e1, 0xdd919822, 0x721843a4, 0x43bad383, 0xd89a7473, 0xeea1df62 }, { 0x52d90428, 0x13e629c9, 0x5feb9eef, 0x51e85414, 0xa38a9dd8, 0xe5aff904, 0x2ea05c80, 0xd3bccfab, 0x83ade066, 0x6369145b, 0x3a15de50, 0xfd9c3341 }, { 0x1bc1807d, 0x3e1407a5, 0x9daaecd0, 0xb69dbd78, 0x701036e8, 0x4536a39d, 0x60950afe, 0x81ef42d5, 0x748adf80, 0xfca3850a, 0x2fd68f9a, 0x1a078d96 } }, { { 0xf63ddaf5, 0x3d9b7dcb, 0xb2941ac5, 0x443b6e1e, 0x73b8edfd, 0x4d8622fd, 0x7c8ee5e2, 0x95cfb16e, 0x9388da1f, 0xc8f9a618, 0x3de6d1a9, 0xc9e487a8 }, { 0xbcf2e2ba, 0x66a75a61, 0x5f8c82e8, 0x63a24612, 0xccf308d8, 0x3ed91423, 0x986975a9, 0xef2ecf85, 0x644aa5be, 0xba735efd, 0xc5242a2f, 0x3d49ce2c }, { 0xc4e99fbd, 0x261ab417, 0xe623e4be, 0x838912a8, 0xe3157173, 0x88b67b36, 0x6d793657, 0x8decc5f8, 0x72f27455, 0x8eae380e, 0xbdf60054, 0x8553edbd } }, { { 0xbeae7afc, 0x7430e73a, 0xa5b9f221, 0x62269188, 0xe903f7b5, 0x75435f48, 0x91837307, 0xd68cd48a, 0x7ee55d0a, 0xf0f8f2cc, 0x93da941e, 0xb7d381d5 }, { 0x73ed0ee4, 0xd768acef, 0x1caa14df, 0x572d47c3, 0x925a4ac5, 0x7bf298ac, 0x431cbcaf, 0x92b6e50c, 0xe883181b, 0x68ce8f77, 0x91715d5f, 0xef5ebd10 }, { 0x70925c66, 0xc4235d5e, 0xa1f8f854, 0x204eee83, 0x797469f3, 0xe3b429f4, 0xf017a4c5, 0x42bca9d9, 0x87b4cdc6, 0x6b698fe8, 0x7c7ba57a, 0x186bdc1e } }, { { 0xbb08dfcb, 0xdcad2825, 0xae3db5f1, 0xc97dbe36, 0xdda981fd, 0x7d0cc51, 0xc5337807, 0xf46bb710, 0x2322c012, 0x12e3ac13, 0x40eb727b, 0xbf696b15 }, { 0xd3eff0e, 0x455e3ecf, 0x94d03abd, 0x100eb7ba, 0x8296e796, 0xa13bb4df, 0x59beb0e3, 0xad8ba552, 0x254e8dab, 0x118f0bad, 0x2474acb2, 0x432d59fa }, { 0x7e0de25b, 0x718275a0, 0xf8e6eae4, 0xccea90b8, 0xac82e3a0, 0x9c018dff, 0x2fd1649b, 0x1da2774a, 0xb0f41e90, 0x1e12f1f0, 0xc15d93e5, 0x32988bef } }, { { 0x4da64e7c, 0x1649e620, 0xc73aa927, 0x5abf4586, 0xf958b1ba, 0x92b74ffa, 0x742ba499, 0xd04253e5, 0xe079c98a, 0x84f2ffc3, 0xd45e73bd, 0x832779db }, { 0x676c5f4a, 0xca989419, 0x6a6ddddf, 0x20a6950b, 0x69fe9911, 0xf83fc457, 0xf0cca7c9, 0x41a4881a, 0x25ef9c7a, 0x71db998b, 0xaf8bd6c7, 0x2f6c045c }, { 0x65794f31, 0xcad24fad, 0x37109f78, 0xd0200e8, 0xfed28e2d, 0xad10c7eb, 0x107350e, 0xe829f825, 0xb962120f, 0x4ef4609e, 0x6c2b22dc, 0xc74b1ea5 } }, { { 0x6c73fed8, 0xc6131f88, 0x8c2819d1, 0x6e0352ad, 0x955f47bd, 0x33f2c8d4, 0x4bf5770e, 0xbfbc6b29, 0x285a2e9f, 0x543ab16, 0x8460f8a9, 0x66aff0ed }, { 0x7f1e03ff, 0x268f4f56, 0xed98310b, 0xdbf840e1, 0x923783f1, 0xf3d22616, 0x809af579, 0x7128cc1d, 0x51ec40fe, 0x61d9bf19, 0x4303afd2, 0x3ab9a568 }, { 0xf87fd551, 0x5dce451f, 0x3d57744c, 0xfb481e25, 0x8623c3de, 0x3ba4126a, 0x4d193138, 0x2188a8d6, 0x294fcf79, 0xd9b7a868, 0x5563d7f4, 0xf85d9d6b } }, { { 0xd0a40c2c, 0x98398e1d, 0xc155f15, 0x2dc173, 0xeb468f09, 0xd73dc499, 0x7d5e1caa, 0x58dacab3, 0xd226d9c4, 0x663c77d9, 0xf4799c64, 0xc445100b }, { 0x117c0553, 0x2d8df518, 0x611b1f17, 0x96672277, 0x97a78ea3, 0xee109ee8, 0x3558aab8, 0x7b7270cc, 0x2f3aa975, 0xdd16bb1a, 0x555c6e7b, 0x4518e0e0 }, { 0x8fe24d03, 0xe5d10f70, 0xf6eb24bd, 0xb2b4e186, 0xa2492bde, 0x2f28c565, 0xd7663f04, 0xf543efc0, 0x5cc15782, 0xabec338f, 0xbb2b04c5, 0x5bb8af3d } }, { { 0x98210b29, 0xd743d8a0, 0x548cba85, 0xf1a3bd51, 0xb19667, 0x7b5d7ba, 0x4d24d3da, 0x818b464d, 0xa9eb6758, 0xe7061e3e, 0xf52d405f, 0xa2a50d51 }, { 0xfc934a86, 0x54303322, 0x160869cb, 0xaf2c5057, 0xffd80fc6, 0x2f8af699, 0xb2c8059d, 0xfb5f4bdd, 0xf61183d8, 0x1f71139e, 0xc5090c46, 0x742cbc3c }, { 0x9339b632, 0x58508a2b, 0x954c72ec, 0x422925a6, 0x97bbdf4, 0xfd7f704e, 0x5da00435, 0x2be32b85, 0x5610e7b7, 0xa9de206e, 0xf0264f08, 0x6c38ed6c } }, { { 0x805875ed, 0xb91a1cb3, 0xc6c660fe, 0x4c7d304d, 0xe7c69009, 0x4c1dae71, 0xb59f55a, 0x1c4f2b2e, 0x7d57607, 0x8fc077e4, 0xbf48a58e, 0x1bbdeeea }, { 0x6dedfbf, 0x2acdd895, 0xdf81b8e8, 0xf983c71, 0xb6177824, 0x83090e87, 0xc20f049d, 0x8a071e27, 0xe611aa39, 0xadc28b58, 0x833355f4, 0xa1dc5d6b }, { 0x799f9f0d, 0x3911c74, 0x30592ec6, 0x69dfd3c2, 0x31672f0c, 0xa342f832, 0x482f2879, 0x1ca809f6, 0x5a7e271e, 0x37cf3f87, 0x4a7ba3d3, 0x15a9b963 } }, { { 0x99f04c54, 0x192c4db9, 0xc8d04d4, 0x8fc0a0df, 0x987102ef, 0x19fe8c0f, 0x93ab59a9, 0xe6309709, 0xa87c8c9, 0xa85dd566, 0xda7ade8a, 0x822d444e }, { 0xe11b49a3, 0xe8143be0, 0x51257145, 0xce303811, 0x4b410218, 0x4b33c2f3, 0x2fb15a7f, 0x2982ae41, 0x66580ab1, 0xcd2a872c, 0xb645deaa, 0xfffec344 }, { 0xd894f1e3, 0xe7867d2c, 0xd5ee21a3, 0x6f8d91f, 0x9217eac3, 0x3d2cca4d, 0x28fd6bb6, 0xe5581880, 0x7b2d01c4, 0x957c164c, 0x9c5622d7, 0x6bf7f87c } }, { { 0xcf53b671, 0xa7b510fc, 0x6da39bf8, 0xc27a082d, 0xf43d4fa, 0x476c6e10, 0x75345edd, 0x4ca744bc, 0xc539c0d0, 0xacc4c1ae, 0xdcba75a2, 0xbaa640ea }, { 0xacc12021, 0x1a54e9cf, 0xf579d6b0, 0x442e68e7, 0x65956ccb, 0x4e2c4ab5, 0x4f68ba92, 0x5bef0e64, 0xb5f26a6c, 0x5d2fd67b, 0xd3e93f14, 0x990d686e }, { 0x5520252, 0x92fabf11, 0x84b91cec, 0xda8f5a9e, 0x4332e152, 0xce383e8f, 0x6f83ad4c, 0x79ec5388, 0x976ce7f2, 0xd2056085, 0xfbf494ac, 0x6151a382 } }, { { 0x560b1e0f, 0x970cb0c3, 0x8d58f449, 0xf7d2405f, 0xfc28287f, 0x5c048709, 0xb62fce30, 0xe7f17a99, 0x59b985bd, 0xb35ca1a4, 0xb8bcd54f, 0xf8e91948 }, { 0xfa471529, 0x42c42e0e, 0x79aea574, 0xb9cac9db, 0xd32269fb, 0xb67b09fc, 0xf6fb80cc, 0xb606d17, 0xe1b0d0bd, 0xe65c625, 0x7c61000b, 0xd43f97b9 }, { 0xe981a048, 0xdd36611e, 0xc4907590, 0xd1ab90c5, 0x5d3cd048, 0xa1171e03, 0x10c735c6, 0xf82cad45, 0x4a6c15c9, 0x51cb759a, 0x5d7e69e9, 0xa3595693 } }, { { 0x8114b70, 0xcb9b7486, 0xdd45bdc2, 0xbf4d4252, 0xc1c626c9, 0x474adca2, 0x14d59428, 0x905e5f37, 0xc4d81bfb, 0x45c94104, 0x2a310c3b, 0xa467e4d8 }, { 0xa80bdd2e, 0x3d4fcb71, 0xcb2dc8e1, 0x756c20d7, 0x23b4501d, 0x58bce53b, 0x6c2e7a58, 0xd1333ba4, 0xb78ba109, 0xadcc0ea3, 0xb9f23ddd, 0x7d17b9a9 }, { 0x16c92487, 0xbef093e5, 0x72a8bab5, 0xc49b1d56, 0x7c53894d, 0xdfc1761c, 0x59a1511, 0xa2df6f50, 0x8c72b5d5, 0x9f2367d3, 0x1cb1318a, 0x36bc9b4e } }, { { 0x4f8686d6, 0xeb120584, 0xce7fbee4, 0x4f45f2d3, 0x12de9a23, 0x7eedef02, 0xf8277495, 0xc3f896f6, 0x6bcf6fca, 0xa802600c, 0x22761dc, 0xb7869ebe }, { 0xc4451bf9, 0xa63e2a8, 0xe55faeb7, 0x2fd7cd17, 0x689359c7, 0x3ff9430a, 0x3e787796, 0x6aead117, 0xc119533e, 0x3223fc0c, 0x3cd00222, 0xe0655ee5 }, { 0x8d0c267b, 0xa23a8174, 0x92280b79, 0x5b3ec705, 0xc706d485, 0xb5613e0b, 0x1e3e205f, 0xa661c20d, 0xc886398a, 0xec257125, 0xc77d07f3, 0x3ea493ff } }, { { 0xedf7de4, 0xeaffd1e7, 0xdc3d825f, 0x98bcda14, 0xaec096f8, 0x1cae6241, 0xf8d2b5c, 0xed94a11e, 0x4d509f55, 0xfd7f7ad3, 0x5718a3ed, 0xd0e4fa10 }, { 0x64337e64, 0x1b937216, 0x6cd1503c, 0x9613d06d, 0xb2ecc0ed, 0xb6f0fa82, 0xcc4c1db9, 0x2af8776, 0xf32a2818, 0x5edc5ccd, 0x13e4e255, 0x613a6d5d }, { 0x9d144b2a, 0xc4996359, 0x437fb155, 0x7c06573c, 0xc2ef3358, 0x1eecec66, 0x7c361808, 0x8a310696, 0x542dac9b, 0x6c31372, 0x7e25f72a, 0x17a8156a } } }, { { { 0x963f5402, 0x666d3aaf, 0x40cecf8, 0xf98916cf, 0xe817266c, 0xd21e4151, 0xdf41890e, 0x8fa5d40, 0x4cc68dd3, 0x862268c1, 0xdc5436b4, 0x3898cb45 }, { 0x6d5a40c3, 0x3944bb53, 0xe2740076, 0x11763e7a, 0xd33cf3d5, 0x49e4a8d6, 0xf9a2eafb, 0x2ce76eae, 0xf4f50c28, 0xa5b40b0c, 0x97b60585, 0x78225a2e }, { 0x535461d8, 0x692f6f75, 0xad72c96b, 0x3c47381f, 0x593ab82d, 0xd53ad4f3, 0xb6b20f4c, 0x13a504bd, 0x27c30ca4, 0x94114821, 0x4275fc9e, 0x49345ee3 } }, { { 0x1c38d3db, 0x6d2b989c, 0x6c421a92, 0xc50faf73, 0xc1960635, 0xffa79bc3, 0x5ac6b430, 0xcfe68514, 0x2a7f3be0, 0xb132aeb8, 0x7b38a8b7, 0x1cc71963 }, { 0x3758a25b, 0x2c2a5182, 0x86f42f61, 0x923d7db, 0xbbf429a5, 0x39ae3bde, 0xa5bdbb90, 0xff44ebf7, 0x5f83e78a, 0xce154d83, 0x8385467e, 0x261aa8b2 }, { 0x7acc5cfb, 0xa9dad9d2, 0x45ae9c11, 0x2dca41f7, 0xc15a1b70, 0x7d714267, 0x92f3fe7e, 0xf6a789fd, 0xa453248, 0x3f9434ae, 0xe1bc7bcc, 0xa8796115 } }, { { 0xacd5966e, 0x42d63e1d, 0x5c67d401, 0x58cbb0e5, 0x1787a23a, 0x43db7728, 0xc10efc28, 0x50b60023, 0x909946a9, 0x3b63a83c, 0x6ef9564e, 0x54b18139 }, { 0x38726ebf, 0xb81e00f7, 0xf7689efa, 0xc8c50c35, 0x3464b54f, 0xb8cff806, 0xc537b069, 0x2463aeb1, 0x9c593dd3, 0xe673e99d, 0x4d5fc812, 0x18eb059a }, { 0xc82f8045, 0x6a2408db, 0x76c8bfee, 0x99e4951c, 0xed182997, 0x82835ca9, 0xbf0bfb2c, 0x2b2486a, 0x54ca1fa2, 0x3af4563a, 0xb35ea256, 0x9223cd60 } }, { { 0xe222492f, 0x8c271b12, 0xf0dc15c1, 0x95e88483, 0x4c117f20, 0xc41fa7b1, 0x11c7c30b, 0xb28b9bf2, 0x2e7f0c4c, 0xb483ce67, 0x73be778d, 0xb2e6003e }, { 0x74e8aff6, 0x5b044364, 0x143fab1, 0x24afadb9, 0x900738b7, 0x556ab2a8, 0xb8635e1, 0xe29d7990, 0x2ddc1c4, 0xba44a125, 0xcd37ee4d, 0x8487eda3 }, { 0x983e3284, 0x7af2118a, 0x7130ffaf, 0x2b87db3e, 0x7e021a42, 0x7f529838, 0xc0be1f4b, 0x15749d8a, 0xb5d4562e, 0x3f46b3b9, 0x7d266e61, 0xec143557 } }, { { 0x23fb3dcf, 0x916c5567, 0xb7e6cfdc, 0x71765e30, 0x3694e867, 0x254542fa, 0x661b361d, 0xf369686f, 0x22da8cb7, 0x6501434f, 0x1fa6230b, 0xeb180627 }, { 0xc0161433, 0xfbd613ad, 0x313deab7, 0x89fd8242, 0x2ea04f85, 0xdb3f5edd, 0xe2e94254, 0xfc43c11b, 0x3045920a, 0x3a45814d, 0xed2bee5c, 0x9443f890 }, { 0xa98d4f77, 0x5c6462f, 0xccfbe8b6, 0x21d30edc, 0x583b1aae, 0xca730adc, 0x4bddbaef, 0xf9780431, 0x346ea8e4, 0x4fca0f8c, 0x68992ea6, 0x35942b6 } }, { { 0xec47df9f, 0xdde48928, 0x9b78de41, 0x2ad500d5, 0xec462e57, 0x3e1eee32, 0xf4f6ce32, 0x24fdcd64, 0x12127ea0, 0xa6d9cb2e, 0x2e35c5be, 0x2529c06c }, { 0xde93af9f, 0xcca27877, 0xcb83ab6a, 0xb408a773, 0xcffe8ae3, 0x2ca870ff, 0xa9d70f46, 0x2a4032d2, 0x9eb7f636, 0xe1768ec9, 0x9d26127a, 0x8d42c489 }, { 0x78a41e15, 0x5d4ddd8b, 0x61948159, 0x375f86e4, 0x1db9f9be, 0xf4ed0103, 0x58e7d6ea, 0x3aa9c524, 0x30d15592, 0x27987c9f, 0x833a4089, 0x443f1724 } }, { { 0xfd07447e, 0x4a5bc305, 0x8d9c3293, 0xde3f139f, 0x3bc4e4d9, 0x4880271b, 0xfbe09968, 0x42b1ddf4, 0xf19ad3ca, 0x5b236539, 0x95bb3231, 0xa41cfac6 }, { 0xfe128852, 0x96a64059, 0xb248070c, 0x1e072427, 0xf713e08, 0xef759b23, 0xcbff0c65, 0x48fc3a00, 0xa46d9f63, 0x73f39dab, 0x9cf018b, 0x9df55691 }, { 0x6167eebb, 0xc8cc8452, 0x2b602ce4, 0xb00581b6, 0xd45bd877, 0x374abed9, 0xe7d41340, 0x193295d6, 0xdcc4ddb0, 0xd3314e35, 0x88692f88, 0x33f1c6b8 } }, { { 0x5520c63f, 0xdf2a9eb9, 0x451f4b55, 0x650e90d7, 0xb7c27374, 0xac51804d, 0xe6a7247d, 0x9632f7c7, 0x4a72c978, 0x7cf1847, 0xbdf4c5a1, 0x95917c56 }, { 0x99252be7, 0xd0209cea, 0x335af5a4, 0x6a566459, 0x7e35a857, 0x2ac2a97f, 0xf5866396, 0x38774411, 0xcddec6df, 0x45fa9ac0, 0x946df4f2, 0x10ba2f85 }, { 0xf5a0e1f, 0x8429ef3b, 0x4872e793, 0x4844c02, 0x591a9f73, 0x2c08d0f8, 0xd1031d4, 0xab6acdb5, 0xd31ca8d2, 0x991cf68c, 0x31aae38f, 0xf2b8f817 } }, { { 0x7f2778f2, 0x112a3878, 0x4d2a961d, 0x938b2cb1, 0x244eb966, 0xf89efde0, 0x82d0f73b, 0x1480670e, 0xdf0a808a, 0x7b5349c3, 0x42de8a89, 0x621820c1 }, { 0x8f624623, 0xb9636be0, 0xa0d931db, 0x9836fcbf, 0xd310d2f2, 0x74e62ea6, 0x5e0b22c1, 0x1bd474a, 0x1d3160ba, 0x2520a400, 0x13f5a100, 0xb4ba1aab }, { 0xe79b536d, 0x611d804c, 0x4029dada, 0xe1acc3a9, 0x729e5128, 0x369987ca, 0xfe55340e, 0x8edc0062, 0x41f244e8, 0xb5c9b428, 0x32282fe7, 0x953839dd } }, { { 0x287ebfc6, 0x3e22ae53, 0x24c4abf8, 0x9f531e6b, 0x39ce8ad, 0xcd4dff15, 0x64bab64c, 0x1c4083f0, 0x8b069128, 0xdea4f222, 0xf86cefe, 0xa701c557 }, { 0x3903d023, 0x3e296fc9, 0x7b1544bd, 0x3b5cb448, 0x22e98921, 0xb0866a47, 0xed9c08b5, 0x475984e9, 0x651c7e33, 0x12e2ac69, 0xe0d85e8b, 0x15255ec9 }, { 0x9e9324ff, 0x65e519e0, 0xd91c2508, 0x91769c9a, 0x4dd269e9, 0xcd07e579, 0xfda7c07d, 0xa2424b7a, 0x7a149548, 0x8121396e, 0xbae60101, 0x162a0386 } }, { { 0x1a268065, 0x6c799c9b, 0x7e2dbab3, 0xfb39253e, 0x6055c285, 0xe3c9c3b1, 0x7de48c28, 0x671db203, 0x491a53be, 0xa61480d1, 0x2d24ebf4, 0x89bd1491 }, { 0xce6ee520, 0xb0ef88e, 0xb0bf1bfd, 0x85f0f590, 0x5fd3ce45, 0x49ceae0b, 0x3df6e011, 0xfb10ff55, 0x5f5084b4, 0x7a7c95dc, 0x6404caa5, 0xb754e69c }, { 0x1eff6741, 0xa74d4b34, 0xba370a40, 0x1fb3b1bc, 0xc6eac34, 0x8e2291c3, 0xd7ae4039, 0xaf390341, 0xb10c5d1, 0x49783579, 0xeba9df1c, 0x31480ccd } }, { { 0x7e3695ce, 0xef30b230, 0x505f0343, 0x27dba69d, 0x4c3c420f, 0xfd454261, 0xdf10cbbc, 0x4415b0bf, 0x6a939a16, 0xc143e3b2, 0xecb0eed5, 0x720b5f84 }, { 0x29d78304, 0xce212620, 0x99c11c59, 0xb5498ba3, 0xf4de87ee, 0x202fc27f, 0xd4a42b17, 0x21522d23, 0x7101a99c, 0x2d372321, 0x50206d35, 0xe664e0c9 }, { 0x67243731, 0x349e2f62, 0x907c64c1, 0xb624d65f, 0x986ece07, 0xe1f45e50, 0xe3f5354a, 0x83bcd98f, 0x8bfc0a7c, 0x7104193e, 0xa4570259, 0x7f0bfb95 } }, { { 0xb13e01e8, 0x4f7fe06e, 0x70209dcf, 0xe5fcfa53, 0xb3ceddf9, 0x888fe425, 0x6aae34ad, 0xc65f6f4, 0x12768e26, 0x66a602bd, 0x6421d188, 0x19d8584d }, { 0x642175a1, 0x25478acf, 0x3dcf8ce9, 0x9959f431, 0x5f7914cf, 0x7c261d7a, 0x14a77ec3, 0xc524d347, 0xb08f66f2, 0x2737d5b7, 0x89f244f7, 0xc123e457 }, { 0xd77aeffd, 0x18ddc125, 0xf24b8c7, 0xc73d8f36, 0x590f1451, 0x53b847f3, 0x2ce569bc, 0x283d476e, 0x5cdf2426, 0xb0e01003, 0x8630d4b2, 0x6bb9a91f } }, { { 0xd3d7b1fa, 0x4d796600, 0x9f5da2fb, 0x22a158b9, 0xdd07f19e, 0xaa42695a, 0x9904c481, 0x61debaf9, 0x1be123c4, 0x17ee3b11, 0xb57b01c0, 0xd8bf9d54 }, { 0xb4958c95, 0x7d671650, 0xa09df5b8, 0x86d82e95, 0x866558f5, 0x4872ed30, 0x68573d8b, 0x7c7630c9, 0xf6dd52a, 0x3a9aa802, 0x791ea5f2, 0xfb76b480 }, { 0xc9d9ff43, 0x7aa5a37a, 0xb0d01bf7, 0xa053e86f, 0xbe32c73a, 0x8f83fb55, 0x4501a878, 0xebfd1515, 0x169cb5fe, 0xd42dcff4, 0xd683cf, 0xf2ed38d2 } }, { { 0x3a86e287, 0x2cb16c12, 0xe48e0a8e, 0xfc42b5d0, 0x9ece6be8, 0xfa806b1a, 0x922594a6, 0xad182682, 0x3f56a990, 0x72e99e66, 0x3e713e53, 0x70f679a3 }, { 0x1c6d8991, 0xd228170d, 0x10c33077, 0x3a3d26de, 0xfcce1d9b, 0x805b85a0, 0xc761982d, 0x904145ef, 0x7fb7e9fe, 0xe0d1b40c, 0x3a404ffe, 0xc44440e }, { 0xaeb17790, 0x84e27e1e, 0x94bf975, 0xdfa60266, 0xaf9612bf, 0xa6417ecc, 0x65bfff1b, 0x820da5a, 0x43e58dd5, 0x32e3eb5c, 0xdf3751e8, 0x300b6da6 } } }, { { { 0xed83c7b7, 0x8cdf66a1, 0x4db2dfab, 0xd14a8972, 0x6a643707, 0x2549267d, 0xaa32ac20, 0x98b8b0c0, 0x5674964c, 0x90e7fbb7, 0x11f9c677, 0x801f9fd6 }, { 0xa1f4b926, 0x24462f67, 0xcefb067f, 0x64aa3c68, 0x61d4784, 0x1f0c5999, 0x929dade8, 0xae7680d7, 0x1bd8ba9, 0x859a486e, 0x315c3513, 0x42ffd1cc }, { 0x217e064f, 0xb6d6ee3e, 0xb1f18c94, 0xa2133e9f, 0xb1f5c26, 0xff8f55f1, 0x63efacfa, 0xe96733e0, 0xfaf6dd9f, 0x29e0a306, 0x59a2fd40, 0x46e13706 } }, { { 0x237a4ac, 0xe1700699, 0xe695aa77, 0xaa1a5a8f, 0xf19fcf2, 0xbd7fc624, 0xfdc5009, 0xc8e97b0, 0x449ada5e, 0x3740b1b5, 0xb7d88b08, 0xa1a56a76 }, { 0x309d5214, 0xfa8b2b05, 0x8ffb66e2, 0x31673f8f, 0x50e130e8, 0x4d223db0, 0x7607c7f, 0x84cc94b1, 0x6be1bde7, 0xdfc49060, 0xc701a25f, 0xc7653699 }, { 0x6f3410e7, 0x552d32a6, 0xff36b1a3, 0x8694eef3, 0x57cc7945, 0x6544804d, 0xbbd9ef68, 0xe5ef5363, 0x72655f92, 0x10b3bc14, 0xcd671701, 0x3d996245 } }, { { 0x2a25f08e, 0x1498ba40, 0x6591a7fa, 0x23df4a11, 0x3d4a2e8c, 0x8ba215, 0x7aa36d1, 0xdab77380, 0x379cf46a, 0xcd30a011, 0x950cfec5, 0x7deb7517 }, { 0xf359de57, 0xc93565db, 0x8306f893, 0x5b06a6ac, 0xdb7703dc, 0x30284cda, 0xc46e4c81, 0x8477782e, 0xd870b7c9, 0x666613a0, 0x32d74e3b, 0x8a30f6e8 }, { 0x1c09d177, 0x171348c8, 0xa1574b94, 0x3b143c5b, 0xf7117145, 0xf73989a4, 0x83b22b24, 0x735ccfa4, 0xb92fa11a, 0x48d3d8fd, 0x668ca4f0, 0x601e62b8 } }, { { 0x66ef9eed, 0xf3c957aa, 0xa762190, 0x149bfcdd, 0x1dcf250b, 0xfbc3958c, 0x410745bf, 0x38aa0909, 0x7a00218b, 0x2f04db31, 0xc5179c26, 0x605d1208 }, { 0x5c40aeda, 0x752b625c, 0x54792ad6, 0xe96d5b11, 0x8735eeb4, 0xaa06b157, 0xe592ac00, 0xaf7a1a91, 0x9b54dfa7, 0xe836a156, 0x7e7ad1d1, 0x965e72c }, { 0xd7d061d3, 0xb6195e44, 0x64898ff4, 0xa71327ee, 0x45a8523d, 0x980aed98, 0x45c91bcd, 0x3b5329a1, 0x91a195fd, 0xbab6c3a4, 0x24217114, 0x8ca9bc43 } }, { { 0x5ee7cc41, 0x80a9e72a, 0x7fac6e51, 0xfd294157, 0x28943e69, 0x9e39a507, 0x98be0eca, 0xfed07ff5, 0x39284b6d, 0xe78a10e8, 0x5c467b39, 0xf66cb57e }, { 0xdb175337, 0x4fd70a21, 0xf036b812, 0x355bb63b, 0x3e97bea0, 0x599ddeac, 0xe031ef20, 0x752bab08, 0xe015fa7d, 0x45114197, 0xaf3ac2f3, 0x1a03bf1d }, { 0xb2385ee6, 0x4ef814b1, 0xf7362760, 0xdeec1ab0, 0x628767c4, 0xe3d8b077, 0x2dcb9f1c, 0x14c382d3, 0x36472ae, 0x7162e7fd, 0x97408504, 0xe9681840 } }, { { 0x2125369a, 0x373e6706, 0x143c3a4, 0xc23249e9, 0x2ade3d26, 0x26602e8a, 0x1717ef20, 0x63a33667, 0x82637080, 0xd2fa315, 0xf77540b4, 0x388e2898 }, { 0x5bcd4663, 0xa2f7e427, 0xb5cacc8d, 0x9a92e9ba, 0x98b6ec54, 0xfbef8490, 0xb33078bd, 0xd416794a, 0x77e74b58, 0x346e5a75, 0x92bad790, 0x477d417d }, { 0x183468f7, 0x106972b8, 0x9e0155b0, 0x4d8b34d8, 0x11054b00, 0x35e03b58, 0x161ee7cb, 0x6247cefd, 0x5ba0f6aa, 0x58ddecc7, 0xaa4594, 0xce99a21d } }, { { 0x6d8e009a, 0x164e11d2, 0xf24515a, 0x43bd7727, 0x7e579702, 0x31f142e6, 0x52995c8d, 0x68cbd450, 0x7fd68d97, 0xb5d78284, 0x345e0769, 0xd584697f }, { 0x49c1534b, 0xaa10bfc0, 0x93a39e86, 0x15950996, 0xe6229637, 0x736688d9, 0x94de90c4, 0xef1303a7, 0xa58fef58, 0x18ebf9aa, 0x99d017ae, 0x1261eb2f }, { 0x96ede9fb, 0x9ae23fc3, 0x95158d24, 0x2b9e48b4, 0x6d2f97c, 0xa1a9cba5, 0x7127dc10, 0x2ee7c973, 0x8bf6fe9f, 0x9ad79c2a, 0xbf3322e8, 0x63776908 } }, { { 0x8fb189a0, 0x35c338f8, 0x3b254f25, 0x220e39af, 0x8aa75714, 0x98fd4aff, 0xad7a50e1, 0x9d979d75, 0x39c21222, 0x1d61a880, 0xcaa869c7, 0xa5845a72 }, { 0x2d96511c, 0x935d554a, 0x6cfac0e3, 0xbff22b2b, 0xb5a71d40, 0x948661c7, 0xa2c8972, 0x440a2fdb, 0xa58b5dcc, 0x64e087c2, 0x7d4ca83f, 0xdb169e67 }, { 0xf51b4169, 0xa792f165, 0xa2328268, 0xe6cecce3, 0x602ce8cd, 0xf088f164, 0xe4be4b2c, 0x44ead2cf, 0x8bc9c55c, 0x64153dfa, 0x7067d6c4, 0x30a7e781 } }, { { 0x3cafac0d, 0xd085d642, 0x258bb8cd, 0x6af640b9, 0x3613d8b2, 0x9856b06, 0x80bfde58, 0xaf1e6289, 0x7886393b, 0x184ab41f, 0xab0a12ea, 0x732f1da }, { 0x6e302477, 0x8c9b9763, 0x858bdbe8, 0x6b90bfb9, 0x8247d3a3, 0xa6da0e8f, 0x4169473b, 0x4cc5af93, 0xb1241a67, 0x6365ee8e, 0x8a556a53, 0x1dea4f58 }, { 0x99504510, 0xe55e9864, 0xf33a9125, 0x76755c76, 0xc7b398b7, 0x4823883d, 0xfa64fa9f, 0xd69d6a2d, 0xecf47549, 0xa487990, 0x274f96f8, 0xa4a6a3d } }, { { 0xced234f8, 0xf3251793, 0xd9cb54b5, 0xb7bbb753, 0xded2678c, 0x6405f487, 0xfd53697f, 0xb6b72b05, 0x20c822b6, 0x92fc2b34, 0xea216ffc, 0xba47e35a }, { 0xe7096109, 0x4d4ebbb, 0xe41ebba1, 0xf9797979, 0xc173fef5, 0x81a781ed, 0xaad08466, 0x3e6d8453, 0xc24958cd, 0x42a18529, 0x52174344, 0x28e92b37 }, { 0x3b8eed9a, 0x17528a57, 0x25436287, 0x6bc3273f, 0x7471f9da, 0x7bf52a19, 0x53631a17, 0xfac8661, 0xb3bdf830, 0xb0e68ad9, 0x1a34e7e, 0xca7af851 } }, { { 0x618fd1a, 0x9c54e6bd, 0xaedaa054, 0x4de77123, 0x8bc1fa0e, 0x898c377f, 0xf374ec88, 0x29f07f84, 0xa711a11, 0x13274690, 0x5f6f7702, 0x2cb3a4bb }, { 0x366a1639, 0x695bad60, 0x2f030ced, 0xd6e07738, 0x583bc671, 0xd046281, 0x97a6c5e1, 0x2d7ee2ca, 0x71b5b434, 0x481023f3, 0x81ad9935, 0x521d41a9 }, { 0x2f40f02d, 0xc85efaf, 0x8b9aed64, 0x2b767ed, 0x409d7515, 0x9b8e3209, 0x506c6a48, 0x2d02a17d, 0xca927bf8, 0xd4f15d2a, 0xf436c27d, 0x4ede95b6 } }, { { 0xbb5daa6d, 0x8433daa6, 0xcfcb0a66, 0x6b117ffd, 0x58283868, 0xb1206280, 0x7e9fbf2c, 0x9e0ebc0f, 0xe54b7a70, 0x8d3532b, 0xbee2eaa3, 0xbddbc86c }, { 0x244f8df1, 0xe24d495f, 0xcc8bec7c, 0x7754832f, 0xc561ab27, 0x45a87b77, 0x82547b2, 0x193de9e3, 0xa4d520c3, 0x1a65e19b, 0xa8da5696, 0x7361a6ff }, { 0x6685a096, 0xf9b321bf, 0x845e0d91, 0xae759622, 0xff1e8b1d, 0xf02ad95b, 0x15387c66, 0xd8a071e, 0xfbbfc31e, 0x2680f51c, 0x5d6196fc, 0x171a77b } }, { { 0xc59d937c, 0x12bfe475, 0x33fd46c4, 0xa15dceea, 0xf6b9e448, 0xd9bda0da, 0x6c8831b3, 0x17cb66eb, 0x891fb23a, 0x8739a01, 0xce41f6f7, 0x9fe3101a }, { 0x56de9906, 0x90a4c0b5, 0x2b4f80b8, 0xd43cbca4, 0x3f57af03, 0xd99e28e8, 0xcc06db33, 0xe85891cf, 0x10eafc78, 0x9640fc8, 0xae4cfc2e, 0xbb116195 }, { 0xd1b9a058, 0xb379cd49, 0xb4c226f5, 0xfa27f716, 0x12eaca2b, 0x3bb0cffb, 0x8ebcacc7, 0xa8bb189, 0x23c9ae33, 0x35ba8e2f, 0x3a32c046, 0xadf4c09c } }, { { 0x62f9a1cb, 0x999f1ad0, 0x45b82fc4, 0xcf5a109b, 0xe4ba4f58, 0x9efa644, 0xeececfee, 0xb64c06cd, 0x8b9b5659, 0xc922a5e7, 0x7ef9e186, 0xf433249 }, { 0x4f4eaa17, 0x1676f38f, 0x5ec02cb6, 0xb53dcb19, 0xaf50862c, 0xa08fa318, 0xecd2f973, 0x5578b6e2, 0xd16761ad, 0x781f9692, 0xfce27bfc, 0x844e0a8b }, { 0x487d2607, 0xb1c90ec7, 0x3bd89d7d, 0x39c2dbae, 0xa0c5c566, 0x3ee48a00, 0x952225a3, 0x950d4d06, 0xfbb6a1e3, 0xf001354e, 0x3ccbd572, 0x3cdda7e2 } }, { { 0x4907035d, 0xa17bc62b, 0x5061f324, 0xf6f463e6, 0x61eb1ccc, 0x83784138, 0xd6f3a797, 0xe0d996bf, 0x20263049, 0x82b1f0f5, 0xfbbf714a, 0xc692efaf }, { 0x2d646ecb, 0x498e2f42, 0x40488cf5, 0x5c277bf3, 0xfe074647, 0xcdf00428, 0x85b95646, 0xe68e03af, 0xb8f39ff9, 0x27c770b5, 0x151e8a7, 0x7ac7d70c }, { 0x600f6ee4, 0xb71bbf64, 0xeb5620b4, 0x3297bbd8, 0xfa6b2073, 0xc5ccdb4d, 0x5ea06ba2, 0x781f0860, 0xeba35c09, 0xf9c13458, 0xb4442e43, 0x66baef17 } } }, { { { 0xc5633c6f, 0xdf60fe70, 0xc8dc8cb8, 0x727406c1, 0x8575b25c, 0xc79df86c, 0x7a89c4e7, 0xbc8dc15e, 0x796cbd5b, 0x94027037, 0xbed03699, 0xa3105ea3 }, { 0xe90b9a0e, 0x9244c64f, 0xb941b16a, 0xcb8cb945, 0xb5fec0, 0x18dcbb4c, 0xde00a81e, 0xfa82b916, 0xd160f456, 0x4368d31c, 0xc4018830, 0xcbf12a1b }, { 0x774919a2, 0x11a17941, 0xb3c2be0a, 0xe6f9425a, 0xa3ce8bec, 0xb437cf6c, 0x5c1abfa3, 0x65362a83, 0x639a2e27, 0x4bf5e14e, 0x62ab1f87, 0x326be32b } }, { { 0x70f8f302, 0x7130409d, 0xc5111fc5, 0x38ca94e2, 0x5d427b36, 0x32d9bccf, 0x5ac09f9b, 0x35b341f9, 0xa657a82f, 0x657dd932, 0x57cb559c, 0xb5227234 }, { 0x1e57b2a9, 0x69d59516, 0xdf179235, 0x86cb8b4b, 0x669362cd, 0x5141c901, 0xfc259f83, 0xc766508c, 0x225b0562, 0x2102b620, 0xa7b016f2, 0xd6ec71ae }, { 0x9fcb5c63, 0xbc354d7b, 0x7179f5cc, 0xcf7b20bf, 0xc3c228e6, 0x57c7e9d5, 0x483b6d73, 0x3a2df873, 0x355dd737, 0xdb527d0e, 0xbe5713a5, 0xa57ae31a } }, { { 0x1a8de994, 0x6ff616bf, 0x8ee276d9, 0x87cf1070, 0x1bf615ed, 0x71155fab, 0x68ba4a33, 0x671b5bc0, 0x6ab4fc45, 0xd2613e83, 0x9ebf0729, 0x796290c6 }, { 0xf347e63e, 0x19ecff19, 0x496eec30, 0xd5bbec8e, 0xc03d29a2, 0xe38a4d8a, 0x9cc5e3ee, 0x79cac609, 0xdcca23de, 0x55e3966a, 0xb487a428, 0xaab5c3b9 }, { 0xaa886ad4, 0x933767df, 0x6b3af6c2, 0x9ea78889, 0xb50949fb, 0x5c23970a, 0x9c6839cd, 0x3547c9b2, 0x1100bb52, 0x7f863f4f, 0xe7d045ec, 0x4fcb3372 } }, { { 0x598d5539, 0xdf679366, 0x3f6d8628, 0x8ceda991, 0xafed00ce, 0x872f3e3f, 0x728df09e, 0x748784a3, 0xd2e8d267, 0x8427cf07, 0x294ef415, 0xfe48ce7 }, { 0x665517ae, 0x3028cd8d, 0x37765841, 0x509b6420, 0x954983b, 0x8371b2ed, 0x68a08bf7, 0x2c150c74, 0xa443fb8, 0xed83656d, 0xbf25050f, 0x35e67483 }, { 0xe6647c3a, 0xc95986ed, 0x245ee8d5, 0x50c8d888, 0x84c865f6, 0x5fe7672d, 0x9ec275e5, 0xd5be73f7, 0x9beab20e, 0xa80f9bb8, 0x2c6a1374, 0xdd8a497e } }, { { 0x3aacc162, 0x7176767d, 0xa163c3e9, 0xcae98845, 0x1b3668d9, 0xf960669d, 0x4a7e6ab5, 0x637697d5, 0x448dd46, 0x654715d7, 0xfcf84991, 0xbfc9251b }, { 0xb1009975, 0x6fe65b96, 0xc8ef0a51, 0x54827a61, 0x337c8bc2, 0xd75f52b1, 0xdf763ecd, 0xcfc9b271, 0xb952c733, 0x7e8b2fc1, 0x9cf92b91, 0x1779e413 }, { 0xd4ffb3b, 0xd1add54, 0xc233ccfa, 0xb849c127, 0x56e30f0e, 0x361ae6b0, 0x221937b3, 0xfecfc651, 0x9519a0e3, 0x880eeacd, 0x5e5983bc, 0xc324e5aa } }, { { 0x8c835cdc, 0x6b4c9d5d, 0x34a35cdc, 0x1ed475f9, 0x114700e9, 0x9c07ba1e, 0xf498496a, 0x9470a842, 0xb4bca89, 0xe9704701, 0xf7b9885e, 0x672a6402 }, { 0x7fbca421, 0x567f2312, 0xbca24c6a, 0x10677b1d, 0xbe453b61, 0x5c96726a, 0xff455c73, 0xd3548343, 0xd7d40cbd, 0x1ca78830, 0x7443dcea, 0x4e12e83c }, { 0x94305b69, 0x5c96000, 0xbc93e37, 0xcf00223f, 0x1abbc514, 0x7ad7a8, 0x33a96d46, 0x2a778a59, 0x14dc98ae, 0x3c2e353f, 0x994d243, 0xec57f4c6 } }, { { 0x78d04dfc, 0x18a18cd3, 0xbe95c33a, 0xf958221e, 0xc1b6444a, 0xe52ef9cb, 0x99233d4e, 0xf6dbad55, 0xf7c1fa1c, 0xbfa83939, 0x477e8fc3, 0x2034c657 }, { 0xc6788d9a, 0x4c1b935e, 0x83ab96b5, 0x895c3be7, 0xf95b252c, 0x844f2b4, 0x6f574aa, 0xe2deb348, 0xe7230104, 0x3efe5a12, 0xff157e43, 0x19595a8e }, { 0x9d148633, 0x33b2df9a, 0xf6434c5f, 0x8f2df365, 0x8e3396b3, 0x6d099d81, 0xb7e06a96, 0x920ff71b, 0x209f760a, 0x5428c77a, 0xc8418856, 0x36621de4 } }, { { 0xb8a88d08, 0x1a937eef, 0x71c35c41, 0xc5ab4ecb, 0xeb164d74, 0x55823c28, 0x8b6a16e8, 0xe7ae08dd, 0x1d48833a, 0x7fd9798f, 0x53e03d8b, 0xfe17a9ee }, { 0x9bdba688, 0xdd4c0b9a, 0x10cec228, 0x55668839, 0xb24b6f0d, 0x3200a7ac, 0xfb8621fe, 0xc3206838, 0x5a4041f8, 0x266a5500, 0x88375791, 0x668b9577 }, { 0x262b4c64, 0xdbd42ea4, 0xc5bc81ff, 0xf69276d6, 0x9f9603bf, 0x9a08f2ec, 0x7a69606b, 0x28a3907d, 0x3309e830, 0x7a96ab14, 0xe17c604, 0x1b9a3111 } }, { { 0xc335c357, 0x4ca30bfe, 0x773e082b, 0xef7efdf8, 0xaaf7fbee, 0x9e28b9ac, 0xb640ff16, 0x59f272e5, 0xed16c5d0, 0xf0e06b1b, 0x5a00c5dc, 0x9a4726b1 }, { 0x585868da, 0x2d995ce3, 0xaec9d8be, 0x56167071, 0x9e7c648, 0xeb984df6, 0xa8e0aa4d, 0x3c170412, 0x3c70ba27, 0x3aab56af, 0x9555aa12, 0x28bf40fd }, { 0xe1ec82ff, 0x18288870, 0x236fff3f, 0x731feed2, 0xb8b649ee, 0x673e36e5, 0x9a3442bc, 0x58688b5b, 0x3b18a79f, 0x4533604b, 0xb3d7cac8, 0x82e30e49 } }, { { 0x4665a741, 0x89d21829, 0x4ea5f796, 0x113dfd2d, 0x9e78bb19, 0x8cf7a216, 0x2db6c30e, 0x589c42a9, 0x89bbe01e, 0x9d85b521, 0x22ce0d60, 0x319a8d97 }, { 0x8decea0b, 0x58ebf772, 0xcf390472, 0x6147d43d, 0xe7b327e8, 0x5de4c7b1, 0x65e478be, 0x4de25242, 0xdbd5f1f2, 0xaab79840, 0x7aaf1824, 0x5c750b16 }, { 0x339e826b, 0x71de3ba6, 0x778fc81a, 0xa67647b8, 0x3ee5f5fe, 0x4a0106a7, 0x794ed56e, 0x161cf2, 0x6db967b9, 0xbafe5b83, 0x4d18947d, 0x8380cc4c } }, { { 0x4cdde29d, 0xcc0f01a1, 0xd7956de5, 0xd665eec0, 0x721947d4, 0x1d38f576, 0xa8427915, 0x2d1f334b, 0x7afd960, 0xe23a6458, 0x1078869b, 0x7ea70f18 }, { 0xfbce24df, 0xb9ae490d, 0x7a29cb35, 0xd99bc0f0, 0x91b49a92, 0x52187bea, 0x6b01789e, 0x3d791aa3, 0x84b072a5, 0xd85b50c8, 0xbb285551, 0x4d6c1c48 }, { 0xea94e67a, 0x1963e62, 0x5acc21bd, 0x3e58a7c9, 0x767c294a, 0x43285f9e, 0xb6c97900, 0x8de9d3a6, 0x39a2e41e, 0x4ceff087, 0xca2c0f59, 0xd2e14b3a } }, { { 0xb31fda57, 0x17a9f25a, 0x1a7338c9, 0x90fd2ee1, 0x571197f9, 0x8ab1d3a2, 0xaa1b5a08, 0xe09c1b66, 0xe05522dc, 0x89d1753d, 0x72ec9096, 0x2b9a0e5 }, { 0xca4890db, 0xf41e7d18, 0x3cd3b50a, 0x1e495e2d, 0x1f8ff730, 0xab4d63f3, 0x518f2969, 0x6e2e632f, 0x68b03d1d, 0xa8026c78, 0xc813436e, 0x1b0815a }, { 0x263748c0, 0xd1f7e40d, 0x2603fdc, 0x260d3371, 0x28aa76e1, 0x3fd3b33, 0x331bb947, 0x8af78ed1, 0x20416af3, 0x3917adf9, 0xc13d588d, 0x9012542f } }, { { 0x6deeaafa, 0x9061446b, 0x99b63be, 0x8afc4ef7, 0xa9bf8bbd, 0x106701fb, 0x28d21a55, 0xc1ed76b6, 0x1a14d1b7, 0xb0c5db1b, 0x6c4b06d4, 0xea96013f }, { 0x20f0f0b4, 0x2fb1c4ca, 0xf53c16e4, 0x150900ef, 0x81035ec4, 0x5f5d0226, 0x6f77e396, 0x22ed7213, 0x72ab03d3, 0x78580503, 0xf2ad924b, 0x4805e913 }, { 0x139ae65d, 0xcd81b9e6, 0xf99a46ea, 0xda3aa2ce, 0x9eb23327, 0x43541004, 0x32d8c873, 0xa1413344, 0x9cefed53, 0x21d25034, 0x1c93b514, 0xfd25ff37 } }, { { 0x247e4805, 0x2401a10, 0xc61625f7, 0x72204d97, 0x1fca5e4a, 0x8fa99542, 0x77089458, 0x1863101d, 0x48682341, 0xb42db934, 0x85ff3168, 0xc599df9a }, { 0xcca37885, 0x98553744, 0xe3d02b40, 0x847ad168, 0x9f2f4bc1, 0x6aa2d778, 0x82af9310, 0x47461160, 0xa7d625e4, 0xba874c56, 0xd7b68039, 0xcc0ecb77 }, { 0xbb4840b7, 0x8cc97a00, 0x6f4c7f20, 0xf1bd39ed, 0x41e0ffd, 0xd47c498, 0xe72edfe6, 0xd73d8d3f, 0xfbd3809, 0xa35334c, 0x9581bd5f, 0xfe431223 } }, { { 0xdf1bc4b8, 0x8c011e27, 0xc6b82417, 0x7730ddd1, 0x9d453ed4, 0x98f07c7a, 0xb3de7632, 0x2785e942, 0x7022ab21, 0x4ee9c3e9, 0x96ee5072, 0xeaa15606 }, { 0xc4a0eb0a, 0x62702fb8, 0xc76b3c35, 0x11684554, 0x2868b1b9, 0x3b8706f4, 0x998ceb1b, 0x173ee6d5, 0x13f7e5e3, 0xabda1cf7, 0xa2571519, 0xfbff6620 }, { 0x45236df5, 0x46707baa, 0xc523fc0b, 0xf92a1134, 0xe7fcdad3, 0x4f35b19c, 0xe66440e0, 0x20ca8c0a, 0xeb79bc28, 0x2ba27e9b, 0x4e045bbf, 0xac4e0ea } } }, { { { 0x97382ca2, 0x71186760, 0x2ecaffd4, 0xb9c53263, 0x8368138a, 0xfd2458c1, 0x17847da6, 0xfdf42d6a, 0x2d0ed28f, 0x39b89a7e, 0xf1df3e98, 0x179950bd }, { 0xe66a59a8, 0x14b30780, 0x952b0d, 0x11cdfa6a, 0x9b914382, 0x846b47bc, 0xe69a16ab, 0x43d0187a, 0x843e31dc, 0x8ca2654c, 0x3064670c, 0x876fdb86 }, { 0x44005495, 0x117c0386, 0x4546b93b, 0xc46b1659, 0x57efefb5, 0xdd7aa8c3, 0xeb406beb, 0xa6efe5e2, 0xcd99c135, 0x487af001, 0x413d3885, 0x63234f68 } }, { { 0xd14a1e49, 0x4cb292af, 0x664df3ae, 0x7519d050, 0xc7aea7f0, 0x7744b4c4, 0x29482b57, 0xb192b45e, 0xd1f8648f, 0xf8f641b7, 0x558def73, 0x56472c77 }, { 0x27a3ba1f, 0x9db22360, 0x67dcf42f, 0xc0097aa4, 0x68d87e12, 0xd7223e8c, 0x11bf549f, 0xf436c42, 0x501a264c, 0xa373db53, 0x708ee3d1, 0xf8a29083 }, { 0x1f5b24c4, 0x2c8b149d, 0x3e887439, 0x3703463e, 0x4a22625f, 0x58e2907, 0x64c119cd, 0x7d362707, 0xb7d88c30, 0xb969f93a, 0xf87b30ef, 0x5d4b9372 } }, { { 0x9c3da753, 0xe8627bd1, 0x3bfca179, 0x91576e71, 0x907a508a, 0xe74f0ada, 0xf8251b98, 0x9702ffb2, 0xd99c27cc, 0x85ec95d4, 0x0f4ee2, 0xa6d3ca79 }, { 0x9f4f4bea, 0x6dc7cfb7, 0x665a31c6, 0xbf25be8c, 0x9218d9a0, 0x58fbc29a, 0xf11d98d4, 0x55e7dd49, 0xa96849a8, 0x1f143942, 0x1643cb2e, 0xbe043bf0 }, { 0xaef1f681, 0x5f6b81d8, 0xe6534f6d, 0xf8f414df, 0xf6a0fdf1, 0xdd651946, 0x821077e5, 0x52537d31, 0x336d7c74, 0xe2586f02, 0x139efa92, 0x3b773294 } }, { { 0x73bcfd5d, 0xaecdd7b5, 0x17e88cd2, 0x1da53664, 0x3a7a9b61, 0xa18d54d, 0x462243d6, 0x566393a0, 0x1c3cabe9, 0x8e719630, 0xfd43715c, 0xdd513e54 }, { 0xac21b62d, 0x6588e2e9, 0x4ed6a7e5, 0xc8d22e33, 0xb9bfe8c9, 0x1096e89f, 0x5e00fa07, 0x940356fe, 0x33728390, 0xab016b18, 0x5fddfeeb, 0xa492ca00 }, { 0x31d02a87, 0x560064e9, 0x909c7102, 0x138e16a4, 0x34a9d03c, 0xc772a9a8, 0xe7924ac2, 0x25fd226c, 0xd1dba1f8, 0xfcf8568d, 0x758a11bc, 0xe81a6fb3 } }, { { 0x2e1ac7d5, 0xb7b389a3, 0x4e1b739f, 0x24ee81d0, 0x77fb2556, 0xbff20369, 0x35050a91, 0x2374af2b, 0xd729f2, 0xfc9a5930, 0x9526707f, 0x4156e40e }, { 0x8082699c, 0x45bca019, 0x2f31efb5, 0x45730c63, 0xe0349e95, 0x7cebdd12, 0x82b36c08, 0xdccecb0a, 0xb2818845, 0xa3897d2b, 0x1f89f3d, 0xdab1f158 }, { 0xecce27, 0x73ef5c04, 0x3ee5778d, 0x3548446d, 0x58846710, 0xfbdc3b1a, 0x7fe7b8b3, 0x85845aaa, 0xf413e85, 0x939251a5, 0xad383bda, 0x371b003e } }, { { 0x18a2d9f6, 0xccebe816, 0xbaaccfc3, 0xa9ee40b1, 0x1f744cc, 0xd1c69d17, 0x36054e48, 0x25241b3c, 0x6487c5c1, 0xcc7d8196, 0x6a6d7f47, 0xbd0a2807 }, { 0xd3a67e91, 0x1613397c, 0x5d67a7e, 0x5152a685, 0x2c89c69e, 0x700407e2, 0x39e6f32d, 0x48078f39, 0xa78e5c6, 0x876ba8a3, 0x1457786f, 0x7bfc9145 }, { 0x99567c51, 0x8c2a9040, 0x24ec26ba, 0xc3386567, 0xe2250ab8, 0xfe293c99, 0xe9014c4c, 0x22768b3d, 0xc17dd782, 0x95f89368, 0x97252be, 0x37b59a1e } }, { { 0xa4a062c4, 0x203d9ea, 0x45e88d7e, 0x4cef995e, 0x1d879a66, 0x6b99a02e, 0xd5927b76, 0xaddb118d, 0x490ce5a6, 0x39867b86, 0x151ad556, 0xef19cbb1 }, { 0xcfb109df, 0xaaa8c318, 0x1df944ac, 0xabb8a8a9, 0x5fb5abf6, 0x91d2fd21, 0x737b4b6f, 0x4a1bb39a, 0xf8e41315, 0x6f4a82b1, 0xc5972095, 0xfe9d56f }, { 0x29708ff, 0xbc7a37c, 0xe77b8540, 0xc1260e90, 0x640ad6, 0x9dde9c94, 0xfa1e4e10, 0x235aaed4, 0x1941cc07, 0x894c6964, 0x583fa8fb, 0xf525266c } }, { { 0x2c8505f0, 0x64264bf7, 0x4de9ebf3, 0x5266699d, 0xbfd491e5, 0x996cce1f, 0x3bb0b783, 0xcf31e0e2, 0x9e15aae1, 0x4a4fb432, 0xfc44a242, 0xa944ede9 }, { 0x1fb2721c, 0xe264b7e1, 0xd4405be5, 0xccbc636c, 0xf87424af, 0x75ca3a68, 0x4e698667, 0xd419c679, 0xd55c36ab, 0x69f26710, 0xedb2eb8d, 0xd565be51 }, { 0xfb2f31a3, 0x275c4344, 0x8e3fb3b2, 0xb0654636, 0x2a7c655f, 0xba9ddc29, 0x569f01, 0x24be9d75, 0xc68728f1, 0x8a65f424, 0xeb5a65ba, 0xc59653ff } }, { { 0xf667d7de, 0xb40086d7, 0x69616746, 0x1947f03b, 0xa4427cf9, 0x5120a45a, 0x91f6f5ab, 0xf91768cb, 0xebd2e0f4, 0xb4f5e504, 0xca9fe53f, 0x439acc36 }, { 0x51605e45, 0xd2e0b676, 0x958714fa, 0x88ec9310, 0xaf8f9da6, 0x6eef590c, 0x73be68be, 0xe7f044ba, 0x8ee57b0, 0x80467e43, 0xc3b8d9dc, 0x76b5fe72 }, { 0xe9fec3c5, 0xa7539d09, 0x9e2020, 0xe19ea4b2, 0xcaa0f649, 0x10f9b6fd, 0x34094970, 0x560fdf0a, 0x5319132b, 0xdcfae765, 0xf2b58fb3, 0xb8be0f64 } }, { { 0xe7799d1a, 0xb06e1bfc, 0x5d496abb, 0x51fc125f, 0x53fd4142, 0x393db088, 0x305302, 0xe48cf540, 0xb64b48dd, 0x11a0a580, 0xdc20dfa9, 0xa0c9946e }, { 0x1f6d3f3a, 0x9792d81f, 0xd6ec5746, 0xd393bdc7, 0x68369e3c, 0x6bdd26c9, 0xf3cb17d1, 0x2753a46, 0xda28bbd3, 0xa5dc2f74, 0x54472f36, 0xd4ee1d93 }, { 0x3546c4a9, 0x45ceb5d7, 0x50056eb9, 0x2a40d6a7, 0xbe0d2a8a, 0x8b897da8, 0x6ba462c1, 0x4b0bff37, 0x2d90a751, 0x88f1c761, 0x8bbf4148, 0xe81e21d5 } }, { { 0x7ed57fb6, 0xa13a28fa, 0x3030c581, 0x3ca86662, 0x6f801c8c, 0xb20b6bd5, 0x2c6ebe8f, 0xa3c1bcf1, 0xcdf3f9c1, 0x2e5aa896, 0xfff6ca16, 0x16326da0 }, { 0x93375ea5, 0x4a7d9a46, 0xeadb520d, 0x7cfc2c44, 0x46102397, 0x291d6fe4, 0xa0a42d59, 0xa2cdf621, 0xf3642e4e, 0x9ee75b01, 0xfaab3876, 0x339398cb }, { 0xaa9603d, 0x46a9759b, 0xf503b9f7, 0xb12d9b64, 0x9dd56546, 0x14ded8ac, 0x347db0fb, 0xd6fba648, 0x76e5f730, 0xe9ac8760, 0x9165711d, 0x2d04d8f5 } }, { { 0x4457ee99, 0xdf0668f, 0xb621aff5, 0x93910be9, 0xd2cc8fc, 0x79b545e6, 0x6f86972, 0x5539618f, 0x555a36e4, 0xbd55da66, 0x47c0bf89, 0x296096aa }, { 0xc164238c, 0xf2721a42, 0x2cf23d05, 0x3e575262, 0xe9b93f4c, 0x67e1f821, 0x4494f1cf, 0x1c0ebf71, 0xc254cf0a, 0x27c106c, 0xa5a3bbf9, 0x24f0d9ff }, { 0xedf31c2e, 0xae62357f, 0xf06bfe7c, 0x2b194505, 0x2a465a37, 0x1a464a47, 0x6ab4558a, 0x13cbfca6, 0xdc8c47ea, 0xee141d73, 0x5da07981, 0xae888790 } }, { { 0xfb0cf5f7, 0xe3eb7db1, 0x7072cd8e, 0x8e82900a, 0x3aa8ee6a, 0x9f203573, 0xa8f4499d, 0xfce1c438, 0xe2ffc1e6, 0xefa7170e, 0x88213e9d, 0x43b32fa1 }, { 0x1c5aaaea, 0xf972fda3, 0x4a8f0b08, 0xe2599849, 0x3e684fa1, 0x24931a84, 0x4419cd15, 0x7565feac, 0xaa8cc5a, 0xbfcc9b0a, 0x2be7307d, 0x9c9d6d87 }, { 0x4d9649b4, 0x64805f9f, 0x9f70b24, 0x38ebdb39, 0x1ec19f8d, 0xebae2e7, 0xeb66bfdf, 0xc8729279, 0xa92c5ea2, 0x740b0f6f, 0x26109621, 0x27c879e3 } }, { { 0xdd8a896, 0x13d92ceb, 0x7eb729a4, 0x617101da, 0xddbd6d82, 0xaa97b9fe, 0x5355aeeb, 0x9bf86340, 0x6df347da, 0xd88e5f52, 0xf473c582, 0xce646113 }, { 0x3af1c782, 0x6e36ffa7, 0xbb8576e1, 0xab4d385d, 0x8fd02209, 0x34719766, 0xa889d9bd, 0x2a95bf9b, 0xeee22f76, 0x6818b210, 0xc06ffcff, 0xefc11c92 }, { 0xf6018795, 0x9ea04efc, 0xba81681f, 0xf0fc4104, 0x103bf910, 0xb298757, 0xe850ee51, 0x6b05f354, 0xd60fd9b9, 0x3d1350ec, 0x1616518b, 0x16896a0d } }, { { 0xa373503f, 0x1f8b6349, 0xf6b58f1c, 0x7b7a2934, 0xb28ea188, 0x2cff65e0, 0x9a745b05, 0xcf9dbf34, 0xefb7c384, 0x453e42c9, 0xb6b2ae2d, 0x80b5e63 }, { 0x220acade, 0xb5be7afb, 0x59ec0e73, 0xa96728eb, 0xc926f9ee, 0xf88b9939, 0x3e9e5c5c, 0x3ce4cd5e, 0x3f3a4d34, 0x69bd32fe, 0x5e7ec6a, 0x9caf2a2d }, { 0xcc90f644, 0x9a3bc42c, 0xa94440e2, 0xf72d4001, 0x111ad4e5, 0x86563bb1, 0x8db3d881, 0xba96730b, 0x38111041, 0xe8c55c82, 0x803327ea, 0xb9601a18 } } }, { { { 0x6d9ba263, 0x23b57597, 0x4a6c5c98, 0xf9fa1c83, 0x98768938, 0x861c4ff8, 0x2b0a1f63, 0x391fa45e, 0x10018ffc, 0x99e34dde, 0x589fd6b3, 0x924fda98 }, { 0x6866962e, 0x599ab141, 0x1319c2a4, 0xc7f218c2, 0x1f59a3f9, 0x49e22a89, 0xca8eadcb, 0x7e983463, 0x9b373ad5, 0x8b1e2150, 0xbfb6981d, 0xf122d8b6 }, { 0x703b5b42, 0xbe7d0b88, 0xa8b94e13, 0xf544b8be, 0x75645e57, 0xa7a1c903, 0x8cd2915e, 0x970b680, 0x92473dae, 0x84098053, 0x3856d748, 0x71751afc } }, { { 0xfbb19d14, 0x95b8af1a, 0x1cccca8, 0xa367baa3, 0xecf910aa, 0xa0a68552, 0x797972e4, 0xf218314f, 0x2231d940, 0xcd02020b, 0x78d1de84, 0x44e1be08 }, { 0x5e22fe9f, 0x9e4de3d4, 0xbee32984, 0x3c017eda, 0x3477ccae, 0x9862fa22, 0xf150b2bf, 0xbaffb04d, 0xcaf68a30, 0xd10d5b17, 0x5fb5d72, 0x1600153e }, { 0xf35ed09a, 0xa1650a88, 0x5ab239dd, 0x912849a5, 0x3ceb9f9a, 0x2377bf25, 0x8a367f66, 0xe437a47a, 0x86fffcf, 0x3b472f54, 0x7a03541c, 0x92e3d3ab } }, { { 0x5ebf15ac, 0xa7538e55, 0x806ca632, 0xe3d0d642, 0x4efd77ac, 0xf8c7ab9c, 0xfa800dac, 0xce6e0ed2, 0xe8309090, 0xd28efb59, 0xb7c4a37d, 0x8689a77a }, { 0x3de863a8, 0xf7cd7cb1, 0x612dc261, 0xbdd9409c, 0xf18f204e, 0xb5ec1b3e, 0xece9e82, 0x3964385e, 0xafb8623e, 0xd521a49, 0xce5349bf, 0x5b6b6e52 }, { 0xcacbe53b, 0x185bd807, 0x9fc7c348, 0xfb8bbb69, 0x93b1bfe9, 0x8df030d5, 0xa24852ff, 0x8468bcbf, 0xb1707bc, 0x617130f8, 0x1d7ce18c, 0xbc196f29 } }, { { 0x4d5a6b77, 0x65b29b67, 0xc98b3e36, 0x8c2337b, 0x746e8664, 0x6310bf6, 0x420c6912, 0xa747e656, 0x9fe5b08d, 0x50992b74, 0xe26d66c0, 0x89b6e84 }, { 0x31347de4, 0x894d8ba1, 0x5211013a, 0xc9d86c65, 0x941adb6b, 0x9703aa50, 0x16e40ee9, 0x2e9dc805, 0xc812c32d, 0x62aadb64, 0x3d1d5ae, 0x3583bfd9 }, { 0x1c85832f, 0xe27a8708, 0xecfd45d, 0xfbf9491b, 0x64d9f1b4, 0x37f45a4d, 0x8e4d12e0, 0x5aca9bb5, 0x2e528f44, 0x7f61dc8c, 0x8e3b4cdc, 0x6fb57d36 } }, { { 0xeda48f6, 0xe307c5f5, 0xdf6d7847, 0x8c3a88f9, 0x2810966d, 0xc918bd9d, 0x9ff2a20e, 0x15aa3059, 0x24dca1a8, 0x489c8966, 0xc1f221e6, 0x8495d9fd }, { 0x66529bf6, 0x457d6c43, 0xf727ddf0, 0x3bce15c7, 0x4e004308, 0x3036090e, 0xc4cc522d, 0xfe4c634a, 0xcce35998, 0x2cb9165c, 0x20409754, 0x1aa20105 }, { 0xa46fdec2, 0x6da4589b, 0x7326093a, 0x392ff5b9, 0xd459b84c, 0xeaab243f, 0xa6a87381, 0x493c96ac, 0x2aade66f, 0xc6261a98, 0xf021f5b, 0x38b192f9 } }, { { 0x12dabd52, 0x1be4c4b8, 0xe0b00fe6, 0xae8c5add, 0xc11f2bf3, 0x16b32ef5, 0xdf9b6f41, 0x68d3777e, 0x6f93803b, 0x9204189f, 0xebee3ba8, 0x43b9a5e }, { 0xb58b513c, 0x32475e03, 0xc3b1c5c9, 0xd9de2370, 0x5fbce109, 0xcefa8a04, 0x546ea500, 0x1fdfd680, 0x9df0aa0f, 0xbc299e67, 0xe99cbf68, 0xdb8e0df8 }, { 0xd2bedb59, 0xa384738f, 0x758c14fc, 0x1d676c7b, 0xb32b3a49, 0xa50ea479, 0x6dd3821b, 0xc1c5e4e, 0x5481d3ba, 0x2de1c4ce, 0x20841801, 0x79eae23f } }, { { 0x6794e375, 0x309c296, 0xca51e8b5, 0x346368fc, 0x574b10ee, 0xc527da49, 0x53e6af58, 0xff0ed718, 0x20999bbb, 0x5b751bdf, 0xd6f1b1a5, 0x99e288c }, { 0xc2f85360, 0xc01a97d, 0xc567d018, 0x234e74ba, 0x27bd2d94, 0xada8998b, 0x8fe75162, 0x26cb1780, 0x63920ad2, 0x1ca1ca6e, 0xeca2880c, 0x5c44ceba }, { 0xa7900873, 0x8da11600, 0x31b6f6c, 0xfa6111b, 0xf917ee88, 0x32d0bce7, 0xb700ab7, 0x4270fc55, 0x38d1ffe2, 0xff84f051, 0xaf6c7fa8, 0xe3e4f1b2 } }, { { 0xebc8916b, 0x1051dffa, 0x5363a243, 0xc765f36b, 0xdf5873e2, 0x7beb9c0d, 0xd12b37a1, 0x84d133da, 0xdc7fd7ee, 0x994bb43f, 0x8bdf58e0, 0x8f07e2f5 }, { 0x7bc34bf2, 0x44a4fb9f, 0xd78bea8f, 0xe81a545f, 0x5e4a5f7f, 0xcfd2ccc8, 0xc3b814cc, 0x7d84f38, 0x6f31ff3d, 0x28d64d3, 0x21870d60, 0x5de4ae79 }, { 0xa21c6174, 0x2c276ae4, 0x2a3189f2, 0xfeea9a69, 0xdfd1263, 0x966ff720, 0x34976621, 0x6da0fa85, 0x8ef4f8a3, 0x78b6e901, 0x79f2cc59, 0xa2b68261 } }, { { 0xac0fc6f6, 0x3217da79, 0x487a761f, 0xd240d94e, 0x76c69cf7, 0xe654e463, 0xf90e467e, 0x5a558daa, 0x4e287f2b, 0x14fda426, 0x736ff5a6, 0x773d51c9 }, { 0xcab3d169, 0xa49410cf, 0x69d383ac, 0xbf36a6c2, 0x54da1704, 0xcc542d3b, 0x2c79d576, 0x24b8913d, 0x5116aa97, 0xfadd2eb1, 0x4512e2a6, 0x147379b7 }, { 0x67fc517f, 0xddee5d38, 0x84557d84, 0x4adfae72, 0x83f0af9c, 0x528741c8, 0x449c269b, 0x246b7055, 0xff5fbf3e, 0x8446bff1, 0x235c825, 0xe2473417 } }, { { 0xdeb2a4e4, 0x73e9368a, 0x834750d8, 0x6839fc39, 0x5e2838e3, 0xd6898208, 0x7b777c29, 0x73ae3931, 0x436c1de7, 0xa65f564d, 0x4c0a3687, 0x11aeae5c }, { 0x56079b56, 0xedf4cfc7, 0xeb417769, 0x52f4e400, 0x30af6263, 0xbc06de54, 0x183e3a45, 0xe57d5b3d, 0x118d52d4, 0x83aec5e4, 0x78b7309d, 0x1c67234 }, { 0x90b3f31e, 0x8e5f0242, 0xfa0601c3, 0x6b27be50, 0x989376d5, 0x20d7aa0d, 0x43741d62, 0x2bf464a1, 0x387353ab, 0x146ccb5a, 0x98f1437c, 0x72e4e16 } }, { { 0xc02e0fbc, 0x7dc5eea0, 0xe813c42d, 0x4e3210f5, 0x46967236, 0x118dd91a, 0x3a46d3be, 0x5ef1e425, 0xa6420bef, 0x4ed11837, 0x36086e62, 0x1a67e586 }, { 0x92ca48aa, 0x32edcdd6, 0xb24452de, 0x9bf5cb97, 0xaf246083, 0xa8df9be9, 0xbb514019, 0xa1e793bd, 0xdc8040c5, 0xf7786a1d, 0xd3c8c295, 0x1ef0102a }, { 0x151f3457, 0xfda3b044, 0x8b0cbf19, 0x83677397, 0xbebc11f1, 0xd607a051, 0xd2fc5634, 0x85cd3cbd, 0x1c7fb3a4, 0x5cfb465a, 0x76783ae2, 0x4a705b37 } }, { { 0xc20d671, 0x87655cba, 0xb3766cfa, 0x7a0dafb8, 0xd986d58e, 0xa860258a, 0x2e165141, 0x8aa69115, 0x8baa96d1, 0xd2cd17e7, 0x30b64cd, 0x3839427a }, { 0x67a27b6d, 0x44eecc5f, 0xbd27c14b, 0xf9f46620, 0x92e19982, 0x3c89aeb6, 0x353823d0, 0x30f1932c, 0x85a8f044, 0x7e1b3256, 0x473a8ce2, 0x3603430b }, { 0x54c7752f, 0x1e5c87dd, 0x78ae9e1f, 0xca4b2cf6, 0xc005832, 0xb527bdb1, 0x8c6ff6a5, 0x2b35bac8, 0xcff3d5e1, 0x328dcf81, 0x26f228a0, 0x11d6fceb } }, { { 0x105bd4d2, 0x68d0be44, 0xe0e6d1ad, 0x1e96bf58, 0x73df579, 0xe0af5ae0, 0xb2b2b6cf, 0xc62148e8, 0x48528527, 0x70a08257, 0xdfe0e5a6, 0x800667df }, { 0xdb44a539, 0x552f3ae7, 0x971e6344, 0x6559f1d8, 0xbc16d771, 0xf493d682, 0xb2388c8d, 0x6c19156e, 0x2244c49a, 0xc6aff5b, 0xa9eeb4b5, 0xfa86d2b5 }, { 0xa16f9a8e, 0xfdd653c0, 0x187de2b4, 0x8fa7b87, 0x20182583, 0x3131b739, 0xce7b3fe, 0xf31afa34, 0xcd03d47d, 0xb4e787f0, 0x17656c46, 0x2f572b53 } }, { { 0x24d3114b, 0xb4969f16, 0xc7282ecf, 0x19543e4e, 0x9d1776f6, 0xa1a96eee, 0xf897daf3, 0x1b6d0c0a, 0x48a20fc0, 0x57070b8f, 0xb03c586b, 0x83cf08bb }, { 0xfc21846d, 0x5a59bdff, 0x27f9580e, 0x8dd0c8aa, 0x48777699, 0xe98f0800, 0x2fee194f, 0xca71787c, 0xf1f9b122, 0xb5ab36ed, 0x42616ac7, 0xc84efd20 }, { 0xd507e7f6, 0xfbec25b7, 0x7e24be90, 0xc6edeb98, 0xfe7dd8ed, 0xe3014ab6, 0xd80b3358, 0xf3d1b301, 0x579e3ed6, 0x6c00266a, 0x36572f87, 0xc89e787d } }, { { 0x399f3b47, 0x556c9308, 0x4f935acb, 0x981b4662, 0x8fa417db, 0x16459b47, 0xf6945e1d, 0x1cbc7a17, 0x3dee9b3e, 0xeef2a904, 0x94334412, 0xbeae29a0 }, { 0xae7860f8, 0x8ed6abab, 0x10242866, 0x1d7a6c23, 0x2865ee35, 0xc72d19b1, 0x71ed9bbe, 0x6222c990, 0x38cd0cae, 0xa2e1def, 0x6f19423, 0x7eaab443 }, { 0x1a72b256, 0x3e25d8f9, 0x82a456a0, 0x6abb11f1, 0x19897af2, 0xae1ca639, 0x32a363e3, 0x4c596551, 0x3e0acab4, 0xdce9adb0, 0x9395af5, 0xa5802077 } } }, { { { 0xbe117516, 0x95006981, 0x4c42c5ab, 0xd72ce96c, 0x846c2768, 0xfcc9c1a, 0x2b58dffb, 0x727fcad9, 0xa01e44ec, 0xdce2dc05, 0x790e3e31, 0xf2734151 }, { 0x3e0f000d, 0xc19b9dab, 0x8740524b, 0x905de109, 0x412a32e2, 0x339c35da, 0x1a7f5743, 0xa3cd9e9f, 0x4707c13, 0x38ee9325, 0xc60585e, 0x1dc706bb }, { 0x249e3da3, 0xcec89404, 0xa61d063f, 0xfd91a73e, 0x1297b733, 0x43632505, 0xcddd99bc, 0x687b8bb, 0x732fada3, 0xfe66b0d, 0xce79b089, 0xb06966a9 } }, { { 0xf5b05af9, 0xc2cbcb15, 0x37b45c1f, 0xf662b350, 0x30269085, 0xbd02551, 0x549f9b4b, 0xf57de369, 0xe9b5202c, 0x8a684a6d, 0xa3756b2e, 0xb0a38819 }, { 0x2eb52385, 0xdade48a0, 0xf1117087, 0x2d35d242, 0x8d635ff7, 0xca4ecd0, 0x7c8f6ce4, 0xde7d0ed3, 0x531c848b, 0x985b34db, 0xfbe54f8, 0x215ed215 }, { 0x382346ad, 0xe018d6c0, 0x562798e2, 0xc36871a4, 0xc983af4c, 0xe1b90f27, 0x467e7d7d, 0xf069ec3f, 0x8ab22dd9, 0x31f2ad66, 0x15cb0089, 0x8690a79c } }, { { 0x5a40a83a, 0x8c1b07fa, 0x9e01bb08, 0x7f2ccce0, 0x52e5a347, 0x4e98e2d3, 0x3792feb2, 0x60a2b367, 0xd249dae3, 0x852a8584, 0x90919727, 0x5dff3df6 }, { 0xb7ee8110, 0xfb9a26c, 0x55291939, 0x9f07e6cb, 0x3db5adb8, 0xe0e8a0d7, 0xa95c33a, 0x10c8843c, 0xc6427a77, 0x9efb2167, 0xf1c9183c, 0x1256c7c4 }, { 0xe7c8da2c, 0x787490f5, 0xd6d23fa6, 0xd5adde89, 0x8e8aeb84, 0x30c86bc8, 0x165c8e1f, 0xe4258d6c, 0x8a5d3f87, 0x5e1d1ff1, 0xe0861ebb, 0x342afd95 } }, { { 0xe51a670f, 0x97e2072b, 0xdf9949d0, 0x34ace54f, 0x57dee63f, 0x9a10a947, 0x45cc312f, 0xbca5dcaa, 0x23fe02fa, 0xc1bd8ff5, 0xf8d53f2, 0x28ba9159 }, { 0x64b3e428, 0x95eb4158, 0xf321b60e, 0xcbd1adb1, 0xb00de3d4, 0xfb79e04a, 0xa96a8fc1, 0x4e05c3f6, 0xed015655, 0x9c309dee, 0x12fe8e78, 0xb7863839 }, { 0x1f2a87fc, 0x160306d7, 0xa825e69, 0x7a871cf4, 0xaaedf350, 0xbd9423bc, 0xf9b0003c, 0x6c23ef1e, 0xb26f5943, 0x8078245f, 0xd7461d7b, 0xaef43abb } }, { { 0xb76b964a, 0xfbb575b7, 0xffa81f48, 0x5f4f0137, 0x61bc5030, 0xf7c3a44f, 0xad0fddc7, 0xab45141f, 0xb928b052, 0x8f8e57db, 0xc3e7dac, 0x35ee6f84 }, { 0xc011927d, 0x356a0129, 0x504cf00f, 0x28a9d66b, 0x9ee98a25, 0xf154a183, 0x814d6d34, 0xbe6bae61, 0x8d4de854, 0x6b33e933, 0x2eea81ab, 0xbea79f0b }, { 0x78723377, 0x2a32778c, 0xe12983fb, 0xda9a9dcb, 0x67b27200, 0x5c0ecb8c, 0x45383386, 0x998ff609, 0x50739ff0, 0x19d9982a, 0x114f0482, 0xa4377b42 } }, { { 0xbf27cc49, 0x5b1fe0f5, 0xa6dc3653, 0xe2ee4178, 0x23bcf066, 0x2d5f2226, 0xa5181d9a, 0xf8c9c2a0, 0xb87dc088, 0x8721043, 0xcb280e7a, 0xf89aec38 }, { 0x147f3068, 0xb14ecd0a, 0x348dd6bf, 0x72efb7cb, 0x8669297, 0x74e4bf43, 0x29e7874b, 0x3677e38f, 0x50406f32, 0xc3d7194c, 0x996983fb, 0xd1c945f8 }, { 0x13071ef8, 0x2f787d95, 0xf7b83f02, 0xccbf0f5b, 0xe16f5424, 0x246a1605, 0x219b350b, 0x91040216, 0x511bc8e9, 0xc38e91ad, 0xaf83fa22, 0xb91f581c } }, { { 0xe9d80cb8, 0xd418a01d, 0xa2ce4a34, 0x4ea7c184, 0x65089e96, 0xfcbf4df9, 0x403cd29, 0x1421895, 0xc93714a8, 0x9476d8d8, 0x8740783b, 0xb9ab17af }, { 0x20bb3c65, 0x38290108, 0xa4aba672, 0x2e5eca5f, 0x1398475d, 0xc91a9dc7, 0x9a4809da, 0xf0b7ec68, 0x74bb14ed, 0x53384748, 0xd76f40cd, 0xb1c199b4 }, { 0xd4c1ab47, 0x62c375c9, 0xa7af749f, 0x26f2010c, 0x2aba06aa, 0x6a0f723, 0xe8f68acf, 0xe60b3f9, 0xdceb5184, 0x1b0df894, 0x50210a72, 0x7c1bd48c } }, { { 0xf09e025c, 0x59152fe1, 0xa472c0cb, 0xd6ed3630, 0xb72708ed, 0xa2486ab4, 0x1170b99c, 0xe3436d7a, 0xd2a9b2c3, 0x69e14ad, 0x90b407e6, 0x2d865138 }, { 0xe88931a9, 0x9d28623d, 0x4cbe46b0, 0xc973d14d, 0xe4d18a1f, 0xfe425122, 0xa77df9bc, 0x704ad3f9, 0x62e86766, 0xffa57678, 0xb39fc23d, 0x662b1a6c }, { 0x58f773ac, 0x4475ba2, 0x22544df1, 0xb7e2a001, 0xde88982, 0xde5ce4e2, 0xa82e5cc5, 0x1711ce27, 0xbb5d8c0, 0xc359071, 0x87a824eb, 0x67dc1ff } }, { { 0x1f130c67, 0x1b8a1a4a, 0x1dff994, 0xb63dc76d, 0x9781e322, 0xb639f365, 0x9f9cef3c, 0xa38f2bf5, 0xbaab6c0c, 0x5e4acb08, 0x311da290, 0x44825c59 }, { 0x8e87468d, 0xbed4a0c4, 0xa945f6e6, 0xcb8475db, 0x3ef21b42, 0x166caa9b, 0xc1e693d0, 0x6e343af8, 0x7938ae94, 0xc54c7edd, 0x494c0e84, 0x6b5f13cf }, { 0x7a8afdd9, 0xc4e8727e, 0x782d86e5, 0x98d2103a, 0xd0b2dbf9, 0x94a1c78, 0x4f36f255, 0x5a26e225, 0xd2e2363a, 0x7ade511a, 0xda6e94a5, 0x3678e152 } }, { { 0xa8612f77, 0xc3ae0db4, 0x8fab5e9, 0xb0cb1e54, 0x143cc145, 0xe493b70f, 0xcc6662b6, 0xe80c0c8e, 0xe666023a, 0x525c221a, 0x91132e31, 0x49cc7f22 }, { 0x9782bf18, 0xb54f1a2a, 0x20e3224f, 0xe845bbbf, 0x5d6284cd, 0xe15cfac8, 0xd6cd9f60, 0xc3e70179, 0xb973e92c, 0xe2e14676, 0xb7a49e1d, 0xfc819a35 }, { 0x6c180fc7, 0xb5a2f609, 0x69f2cf81, 0x624b8069, 0x931073d9, 0x68c8c21b, 0x4dc11ee, 0x3a981d12, 0x632de32d, 0x5b4afb3a, 0xeba5028e, 0x5502407e } }, { { 0x95290796, 0x2d764d20, 0xde383cd4, 0x5355cc9d, 0xc1700c20, 0x3e09a4a5, 0xcd2f3d5f, 0xd97f4fbf, 0xe4b380a2, 0xe75d67b0, 0x9117716f, 0xf89cab2b }, { 0x8abe68a0, 0xebbc43ec, 0x15be4710, 0xbd375826, 0xa4f05b38, 0x25fca07d, 0x76e94dc0, 0x85b4917a, 0x66885b47, 0xa9c9126d, 0xa26b2bdd, 0x535afccb }, { 0x3d3e2ef6, 0x1e9e64bb, 0xc8d8ba6a, 0x3f8a7b08, 0x594bb998, 0xa268aa61, 0x72a9ecd2, 0xa229dc9c, 0x97bcd2dd, 0xb0898fc4, 0xcc6d3723, 0x4be9d6ba } }, { { 0xa9b29546, 0x2e23b55, 0xc5c99420, 0xacfee4b6, 0x5786b50d, 0x875e67a7, 0x60e9601d, 0x63c45006, 0x88c26ef, 0x94f4c754, 0x29732b52, 0xfb1922d4 }, { 0x81c51088, 0x4249cb6e, 0xdf13a965, 0x9ebb5b57, 0x9916b86a, 0xa117eb72, 0xaccc3a82, 0xbb888c79, 0x67b935c3, 0xb4d393c, 0x51c7190d, 0xbba8f05e }, { 0x451d13cc, 0xb2a90166, 0xfb805bce, 0xb8516cec, 0xef318fc0, 0xfdd38c98, 0xb6a5412d, 0x4601ff65, 0x6bbcf62, 0xbd0fa037, 0x1bd0f167, 0xef2ca32 } }, { { 0x86df3fee, 0x52f8ed14, 0x381501dd, 0x67ca0c68, 0xa0c9f6e2, 0x1a050d3b, 0xaa7ca529, 0x19b3a892, 0x54dd47b7, 0x584e2ab0, 0x7ce0aca1, 0x115977c7 }, { 0x2d576987, 0x82a045a4, 0x1317559, 0xe65f54c3, 0xec76ff60, 0x7e7e8b8f, 0x5b055e78, 0x100e046a, 0xe9288009, 0xe521bd56, 0xa7eb0b9f, 0x320f422d }, { 0x5fc423d1, 0xbb6d15e1, 0x64054c97, 0x34506016, 0x83f580d0, 0x5e7e353b, 0xcd374a80, 0x8c328a3, 0xb086759a, 0xdb4c11b8, 0xd6a8a88f, 0x53a81cae } }, { { 0xceb0d953, 0x98021793, 0x99355388, 0x98c13cb8, 0xbe4dc39d, 0xca08ea67, 0xeaa62b68, 0xedbfc18d, 0x6b64c9b2, 0x2f8e4920, 0x8d61708a, 0x26ec294 }, { 0x997c83af, 0x72cba1b6, 0x97b3dfbb, 0x379776cb, 0x5011aa7c, 0xe5fa9090, 0x1e309174, 0x80812e07, 0xbc8470c0, 0xf0aaf41e, 0x2e2f1958, 0xdd2ef289 }, { 0x966e33e3, 0xfc1e2196, 0x7aa9635d, 0x75abd306, 0x14eed41b, 0x65de41fa, 0x43cff7cf, 0x9bfbbc0e, 0x18cf15ac, 0x3244ef4c, 0x946b2d9f, 0x7a32c054 } }, { { 0x241083fb, 0x6385c830, 0xef67e9cc, 0x58f0f594, 0xfebf85ba, 0x7c872d8c, 0x69b555a8, 0x577e72ab, 0x6cd3c860, 0x2ec6f97, 0x31623f0c, 0xbe7311a2 }, { 0xb6ee6c9c, 0xa9fff1c, 0xfa59a0c6, 0xbf70ed13, 0x6baeacfa, 0xa5d01004, 0xfada0a0e, 0xd7c006aa, 0x4cdfd9ad, 0x99d79baf, 0x83598cb2, 0x23e588f2 }, { 0x3e3d9228, 0xdd224bda, 0x1de8687a, 0xce43baa5, 0xde1d7ac, 0xa9df36aa, 0xfeef5149, 0x3054efb2, 0xfd9a1cd6, 0x41d33583, 0x55b6a31d, 0x493299ec } } }, { { { 0x57a6329a, 0x7a5b03d4, 0xef5ab982, 0xec896948, 0x14fe4086, 0x931ebddd, 0xf55397e2, 0x19b5bef2, 0x747df2ba, 0xc19e7d1c, 0x2d7ce60, 0x4716e8d8 }, { 0x2f89c798, 0x7431464, 0x735639c3, 0xb3c02e7f, 0x217999fd, 0x5f6f6ad0, 0xabdbf234, 0xbfa86548, 0x21c217ff, 0xd849e1b, 0xba4bdba0, 0x9e4d518f }, { 0x7d65d08a, 0x441d8f2e, 0x7d2a2e5e, 0x506fe308, 0x32f19dba, 0x3bec2d5e, 0x7a9379f4, 0x36597122, 0x77b45d61, 0x327d096c, 0x9eb25a9, 0xab43fb03 } }, { { 0x42fd49c9, 0xe2c84a65, 0xd6c78a9d, 0x251965c7, 0x2804229, 0x79f2f7a2, 0x6988ddbf, 0x25a3e5fa, 0xfb29fe96, 0xf44ce176, 0xfc476c78, 0x92a4d3de }, { 0xb71366a0, 0x7b69559c, 0x19761c54, 0xff9b4380, 0x27ca938c, 0x426f8e7, 0x2c31476b, 0x101390a6, 0x67636201, 0xf6020e3d, 0x4a0628d7, 0xfba39355 }, { 0xda3e8a1e, 0xd6ff4f87, 0x8ccf42d9, 0xa93a561b, 0x33f2110c, 0x8a1583d4, 0xeb247f5e, 0x7dfcd383, 0x725721aa, 0xc2817a85, 0x3df7446, 0x9e9c3053 } }, { { 0x2841467b, 0x86c836a, 0x699de17, 0x54c9c22d, 0x4d238d09, 0x2211ad09, 0x5f5441bb, 0x41181a22, 0x555c5ac2, 0xb919c9c6, 0x96438e9c, 0x421ca36d }, { 0x771b8bad, 0x83daef44, 0x554e86a4, 0xeffd3a49, 0x25e13d05, 0x813aa7ff, 0x2c28ffa5, 0xcd74bcdc, 0x95a00fa, 0xf493bd33, 0xdd59a6a0, 0x81595d7f }, { 0xaa6a4c1c, 0x31b4545c, 0x110762e8, 0x2f607f48, 0xb7a7eb2a, 0x82b45177, 0x3c20cca5, 0x980cfe1a, 0xb0c5d809, 0x1b20839b, 0x7ccc6fe1, 0xa8b3e52f } }, { { 0xec29f186, 0x2e5de119, 0xd21d97cb, 0x27d88861, 0x34d21082, 0x42b7bb3d, 0x9ca1d95d, 0xabf94384, 0x9a458ae3, 0x68388ef3, 0xcc1ff360, 0x23991d02 }, { 0x21909916, 0xe1081ae2, 0x9323f969, 0x42d64bb9, 0x4efeb04c, 0xca151589, 0x706c7d60, 0xea5c54ed, 0xfbab8ffc, 0x55c9fda3, 0x1860b5e1, 0x6dfb0874 }, { 0x9c01c4f5, 0xe6c84240, 0xd4894d5f, 0xe93d6685, 0x5ce1d184, 0x59372fd5, 0xa087ed37, 0xeb2a1f4, 0xe16ca2ef, 0x2db13aec, 0x8747e678, 0x22eb3834 } }, { { 0xf85c7d2d, 0x41c3df47, 0xd41f6266, 0x51c2944d, 0x7194a591, 0x55f53236, 0xb63b6112, 0x526a7b05, 0xeadd15ec, 0xa9cecb2f, 0x66ea1f83, 0xcabc9703 }, { 0x1debe8b7, 0xcf3c348a, 0xe94d4c9e, 0x214d68df, 0x29ba0e53, 0xb752c269, 0x33ee15c, 0x33356310, 0x2adcfb28, 0x467657ea, 0x6c1552f7, 0xf7e8737d }, { 0x4ff336c7, 0xcf4d8f94, 0xbb43cde9, 0x9be437a9, 0x2dcdddf, 0x218ff0a4, 0xdfd40673, 0x187dc1fb, 0x6be4bed6, 0x531f58d6, 0xc0e77650, 0xbcb29279 } }, { { 0x82f2ae2d, 0xfa5cdaec, 0x8f189edd, 0x6eedf5d7, 0x6868a708, 0xbf541b23, 0x6d3bd201, 0x73cc7c47, 0x201141c3, 0x265bd7b9, 0x6e1377e4, 0x64b7ddf8 }, { 0xa82c0869, 0xfef0e681, 0x8ab6ddf4, 0x1f4cad0e, 0x63005715, 0xf0bf9a47, 0x55bf724c, 0xc5b8a4d5, 0xa5b2900c, 0xb63eb43b, 0xd91a5f87, 0xc03d53cd }, { 0x7dd8e705, 0x81b45460, 0xdb4fa1d7, 0x335b43da, 0x2c8920b0, 0x3b01e9e5, 0x2b2e2c2a, 0x807b683, 0x2359e5be, 0x350f3f9a, 0xb9543012, 0x61e045d7 } }, { { 0x4fe0b339, 0x815b78e, 0xcf880a81, 0xba67f506, 0x3f711b08, 0xd6203ad, 0x62dc335, 0x1b972d53, 0x3439d898, 0xf5cd2fbc, 0xc6ab76cd, 0x1adb7863 }, { 0x4e42f58e, 0x6ac0b115, 0xa01c65d4, 0xefeb019b, 0x4712035e, 0xa1e72a77, 0x10c5a299, 0xffa091c1, 0x9dcbaf5a, 0x4d5ac21a, 0xf9a03028, 0x6cdea6c7 }, { 0xe5b6fb60, 0xf6628ad5, 0x75c70182, 0x1a93de23, 0x293b2a2c, 0x78ceb019, 0x2a8feef9, 0x475db96f, 0xc2c74e0a, 0x462f6a57, 0xa421b01, 0xaf0518d5 } }, { { 0x3298d3c4, 0xde99312b, 0x5f7dee4a, 0x73a0a81c, 0x7331cbe4, 0xa17b0ebd, 0xdf76f636, 0x7106d8ee, 0x65268553, 0xcc95e70, 0xc4059f36, 0xe2790063 }, { 0x8989b824, 0x877d73c1, 0x2723dc60, 0x89dd7a2e, 0x34af42e2, 0x6d237b48, 0xd36c2fc6, 0x6f04e112, 0x9adf3432, 0xbd6608de, 0x487d9086, 0xb5b6f456 }, { 0x1b6a9cd0, 0x29ffca0b, 0x4b4f5828, 0x8df48f7a, 0xbde8401f, 0x37a8b0df, 0x1b2c8056, 0x99c1df5f, 0xddc7ba6f, 0xb532f1e9, 0x2838aba, 0xdf256757 } }, { { 0x8c726e71, 0x599133b7, 0x5db00465, 0xb214ba3, 0x9429af24, 0xbf02b10b, 0xcfdf3248, 0x31d1847b, 0x6789cce6, 0xf3e9c268, 0x65ff847d, 0xd4464cb6 }, { 0xcd3c700c, 0x5a86cdf4, 0x8910764d, 0x14a4b490, 0x6d4d157f, 0x712b83b2, 0x5802bb70, 0x986459db, 0xce316de8, 0x36f51c98, 0xc0026e14, 0xe4717a73 }, { 0xb23fe1c4, 0x8fb7eb1d, 0xd10714c2, 0x4762e6fd, 0xa238f3e8, 0xeced12d2, 0x4f01a236, 0x5e61864a, 0xbda659ec, 0x2a76086c, 0x5b91c80, 0x2d4fb78b } }, { { 0x17a693eb, 0xc3882e5f, 0xb39579cf, 0x849033d7, 0x39d61b00, 0xbc401fc0, 0xb208bc93, 0x348acd04, 0x7b8a9d56, 0x2c7b19f1, 0x74e77d0a, 0xfe1b375 }, { 0x78b63314, 0x7b28f87, 0x33bef65b, 0x3889c442, 0xbb42b0bb, 0x498c7f41, 0x284dadfb, 0x6bb61d22, 0xa8bdbc1, 0x5523b364, 0xaca9c18e, 0x9f8918b4 }, { 0xfc07a3bd, 0xd37c1f59, 0x1b17e9f6, 0x7e7354b0, 0xe07da4b5, 0xdeb5ddb4, 0xdb24589a, 0x48908e22, 0xb3b6bdc3, 0xe7304c3c, 0x212086d8, 0xc480dddd } }, { { 0x876bbf59, 0xeac1ae09, 0x35d9f7af, 0x29a1700f, 0x21be2d0b, 0xbec42bff, 0x826d7136, 0x3822fa89, 0x40f78f15, 0xfd421b24, 0x6eea547b, 0x467ae22 }, { 0xdfbce39a, 0x2f613a29, 0x5f3e093a, 0xf595ea41, 0x3638a79d, 0xbe612909, 0x79a2c25a, 0x1f0fdb12, 0xda786a7, 0x2395dc0a, 0x4b6fc703, 0x29417a0e }, { 0xb2c18e4b, 0xc4662f7b, 0xa1d8838e, 0x4d329242, 0xa089f27d, 0x6b407f6e, 0xecbe389a, 0x95ff4ceb, 0xef0831f6, 0x4d29d9c1, 0x3db988fd, 0xe470bf31 } }, { { 0x8586103, 0x8b732365, 0xa1e90514, 0xcd5e6b72, 0x744d9c9, 0x31f84e44, 0x50f8e61b, 0xb8d7a5c5, 0xdf14ad64, 0xc570c8e2, 0x56e73782, 0x1ccb60fa }, { 0x99de9c57, 0xf70e160, 0x1adb932c, 0x6aa12e76, 0x44d17889, 0xc7638133, 0x32fd512f, 0xec2083c5, 0x9b0c0286, 0xf2d908c5, 0x95470b79, 0x91878aa8 }, { 0xc1b64b44, 0x37d07a31, 0x2a6b8c50, 0x3350ef92, 0xa87e1cc, 0x375afd11, 0xbd4702, 0x12010c93, 0xd4f1b03, 0x3f90a77e, 0xac348844, 0xd656baa5 } }, { { 0x9ec1eff7, 0x971d3c38, 0xef399998, 0x1f6c29d3, 0xbe354dfd, 0xdd81924c, 0x964bbae7, 0xf321134a, 0x62ac4911, 0x3aeeb71d, 0xa8760261, 0x3e4e4d4c }, { 0xf300c7c3, 0x295c73c2, 0xf9a4491c, 0x14d07b4, 0x12f89072, 0x1f532ad0, 0x42de0585, 0xf2ea96b5, 0x14896943, 0xfa3151f5, 0xcddd7169, 0x739def60 }, { 0x30be3d45, 0xa035fa2d, 0xc88c3c5c, 0x9f14b948, 0xb6fb1e51, 0x6fe43695, 0x9fac7309, 0x620503c3, 0xae32d646, 0x6c90971b, 0xaf244618, 0xb84be41c } }, { { 0x4b56cc13, 0xeb83cfa2, 0x729eda3, 0x790cd694, 0xaa5b1acd, 0xe5f6358f, 0x67626336, 0xb4a155d5, 0xdffdeb78, 0x31a7baf3, 0x958861d2, 0x4983ab3d }, { 0x2127b357, 0x8894a971, 0xd3d99b95, 0x24e11334, 0x6d783c3c, 0xc330f64a, 0x721483c3, 0xd3d870f4, 0xd3300d81, 0xe81c28fd, 0xb109f5da, 0x5b192ad5 }, { 0x88ad7cc3, 0x73217e90, 0xc992cb57, 0x443e81a1, 0x758b183a, 0x344fd095, 0x196a2ad, 0x336b0911, 0xc7e39a49, 0xed890bdc, 0xfce91a17, 0xf53bda9d } }, { { 0x8b4a38ea, 0x20b7b027, 0x15a7ddbe, 0xf976a2c2, 0xc00debe4, 0xba47915f, 0x8524349d, 0xb0396158, 0x8ea9842a, 0x99bbf752, 0x9b3908dd, 0x969fd627 }, { 0x4df78981, 0x1321ece7, 0x782676c5, 0x3a67b6e0, 0x22a3326b, 0x531b7193, 0x5af66679, 0x17aca835, 0x5e8636e2, 0xff545055, 0xcfa7247d, 0xe4fda655 }, { 0xa56fa723, 0xa4eaf02f, 0x2ce35856, 0x6dfb4a4d, 0x3c68fb93, 0x6e31f3b2, 0xe3ffc870, 0x475ef917, 0x48292eb, 0x90358aa7, 0x659afcf9, 0x9ab543cd } } }, { { { 0xef1a0aa, 0xf09194a5, 0x30540816, 0x654f9ea8, 0x6c2290e2, 0xdeb1d26c, 0xbd0cdc08, 0x134533f2, 0xaec8a287, 0x2da4ddf0, 0x7df65604, 0x60c0fffc }, { 0xb89eac5e, 0x82cf30f1, 0x59649f7e, 0xa1e8cae5, 0xdf616c94, 0xc8aa408c, 0xea89046c, 0x4ee5af88, 0xe82839e0, 0xb8f557e8, 0x60d96f60, 0x137ee440 }, { 0x673b5b2f, 0xee9a5536, 0x41881a2e, 0xd918731f, 0x4eca5ca5, 0xd1a8316c, 0xe6263dde, 0x27be279a, 0x7512b70f, 0x229d0c35, 0x644977b3, 0x82580f02 } }, { { 0x19247ed9, 0x818898ca, 0xf2ef7323, 0x1bcfebfd, 0x3b54e072, 0x6a4fd93a, 0xa95f0bae, 0xe9b0374d, 0x7232bc61, 0x552153db, 0x41ac7f67, 0x3718cb79 }, { 0xc6e9fc2d, 0xb21c385f, 0xd152546, 0xf7254ecc, 0xf5495642, 0xffbc5c1c, 0x82ee9da4, 0x7bf5f780, 0xc9953cc1, 0xabbbae3a, 0x7226fb30, 0x6c07bd44 }, { 0xe11ca5e3, 0xb4f34a03, 0x1acf150a, 0xbb1faee6, 0x4646a094, 0xadfa99ef, 0x75c16c89, 0x89e308a8, 0x5733d958, 0xc8137cbe, 0xfd2d167f, 0x34acffe } }, { { 0xdc19c6ce, 0xa202fa1d, 0xbdfcc130, 0x2aedd7ec, 0xca96cd80, 0xb3e9c622, 0x39f8b179, 0xc53fb324, 0xbec0c617, 0xfb8a9c41, 0xb958a5c2, 0xbac675ec }, { 0x73e0c83e, 0xf521237f, 0x171ab6f4, 0x71a86a30, 0xa11cb2e7, 0xb169a0c1, 0x3425bdd9, 0xf4243ebf, 0xd2484fd2, 0x93ba554, 0x9da3370a, 0xd683cad7 }, { 0x315c10bc, 0x885b6964, 0x7913becf, 0x73f4d206, 0x501da26c, 0x77c621de, 0x142a07fc, 0x914a3434, 0x4af17dd1, 0x11cacfd0, 0x97a75954, 0x8834b4ee } }, { { 0xeb614968, 0x9e0504e8, 0xab90018e, 0xed96b3b4, 0x13b3ab99, 0xc712cb7c, 0x6382f774, 0x9e492c7c, 0xfbc73ab7, 0xa84194e7, 0xbcf26d85, 0xfc5ddeb3 }, { 0x40499f98, 0x1c59edc, 0xf5a22441, 0x25463f4b, 0x6641610f, 0x355eb1a3, 0xd1c9e57a, 0x9f1bc67a, 0xcf1374a0, 0x98502af2, 0xe93767e8, 0x81983d42 }, { 0x4bd34398, 0x3f02bcce, 0xb73278ba, 0xf877e2e0, 0xb2ef6307, 0x7bc1e9d6, 0xb0d644b0, 0x5dbbe877, 0xd7bba478, 0x5b7949e8, 0xc0a03f8c, 0x3fc5a1b5 } }, { { 0x3f2db564, 0x1f10cc71, 0xa143a6e5, 0xf0e4abe, 0x2dec7294, 0xece05e41, 0x7fcf3c8c, 0x10e8fbad, 0x4ad2eab8, 0x3f16e9c6, 0xc3b16b4a, 0xb7c5f606 }, { 0xafb9ef58, 0x7c142037, 0xa63b31a1, 0x631cca97, 0x19bca3dc, 0xddd91dc5, 0x4e559219, 0x57c8ee7a, 0x77bc3b98, 0x7b0e05d, 0xcf9d0a77, 0xa1647fab }, { 0xbed9a744, 0x5ca1ddcb, 0x7f912d25, 0x63a0c030, 0x45433959, 0xa51a3e55, 0x566ec746, 0xefcb48bf, 0xe70dbf10, 0x121805f0, 0x8298ad6a, 0x391c5809 } }, { { 0xace31c8d, 0xc8571e16, 0x203530c0, 0x167c490e, 0xd0a2fb88, 0x82872e08, 0xf08b2592, 0x89ecd10a, 0x94a01cde, 0xb62af7d7, 0x32fe3060, 0x9543813 }, { 0x5dca5682, 0xa78c8720, 0x9467097a, 0x2a9d055b, 0x4ab48886, 0xb7a964b4, 0x26b4388a, 0x3c548ecd, 0x1e80761e, 0xe7eabf44, 0xa3ba3524, 0x3c49cc25 }, { 0xb5b391a3, 0x5c714063, 0xfb5f04d6, 0x4bf8b30a, 0x3699a122, 0x9c1d48e4, 0x3ec7612, 0x10ca75c7, 0xc2c44329, 0xba78cb40, 0xc5c30c20, 0x4b5ce800 } }, { { 0x541dcc58, 0x5fc1cd71, 0x94fd1a18, 0x9ad05e0c, 0x26fd5bd, 0xc526f5fc, 0xcac8004f, 0x373349f, 0x7f7f53e7, 0xe4cfab0d, 0xb23168e4, 0x595069b7 }, { 0x81c89280, 0xf8cb517f, 0x5f8b5319, 0x5b550e3a, 0xb474c068, 0x2f4b5949, 0x2e2a45d1, 0x1c3c0561, 0x8ab6ac65, 0x15422190, 0xf66bb8f4, 0xcdbf8cd5 }, { 0x5190cfc7, 0x88414ab6, 0xae168aa5, 0xf7de3e23, 0xabd810dc, 0x3aa6e8f3, 0xa6b4f3fd, 0xa8777908, 0x4ec708af, 0x90cde698, 0xe732ec36, 0xf95b5a3f } }, { { 0x8b13eb55, 0x2c769f7d, 0x88c89cd0, 0xf276bcb9, 0xd1901860, 0x9f4f79c2, 0x2e90ed55, 0x24f8e7a, 0x540e9f4, 0x46a6910, 0x79e28c4, 0xaf9ecf3f }, { 0x85000d72, 0xf510f025, 0x84f65b0c, 0xcd418b41, 0x4bbe5f0a, 0x947bc8c4, 0xe081ac36, 0x2df95fff, 0x6df6bf40, 0xb4c6edfb, 0x1abf38ad, 0xda7533fa }, { 0xcda44806, 0x6fe07383, 0xf5b66de4, 0xdb49dda9, 0x71c469a9, 0x2a7d46f5, 0xb11fa5ae, 0xb9068fe0, 0xad4cf51c, 0xdfa409e5, 0x7c225997, 0xb0812abf } }, { { 0xce7b64d9, 0x3d7057b8, 0x4df978fc, 0xae9bc24a, 0x59087ee6, 0x3b13c9a6, 0xb2e793bb, 0xb0a56065, 0xb9823334, 0x8e6728da, 0x8397ffb, 0x1e3c8955 }, { 0xccd19541, 0x825252da, 0x93ca464, 0x1a412182, 0xb9e987e2, 0xe1099ea6, 0xefe3a4a, 0x367ac2e0, 0x51a7ff81, 0x924bd69e, 0x592f8cd9, 0x69a935a6 }, { 0x8846b190, 0xf80307de, 0x8df6bee2, 0x8bb26cef, 0xf3ea1145, 0xcf486186, 0x1a353c75, 0x2a5e9f42, 0x7bd9f49b, 0x1534e802, 0x64d564fc, 0x9a0d8f3 } }, { { 0x2b2dc84, 0x599c6dff, 0xd7e062d2, 0x1a5fcac1, 0x1c679f56, 0xf154f130, 0xd59a808c, 0x91cd4d03, 0x6222ade4, 0x80de4971, 0x191b0dc4, 0x582b3b0a }, { 0xb6538b48, 0x343326b7, 0xef462828, 0x790b2405, 0xdccb0a2a, 0x4115a340, 0xbbf44a2a, 0xf8abd082, 0x36942e76, 0xa06281c2, 0x63657c0d, 0xc5dff482 }, { 0x8108130d, 0x3df3ccd9, 0x67f1047e, 0x40c0c74b, 0xfbad91f, 0xa6dd412d, 0xd9dc5f7c, 0xa76b582a, 0xe43d6d6d, 0x8b657b3, 0x8593b6ff, 0x2c918cab } }, { { 0x33e55750, 0xba3e12e6, 0x1c18d75f, 0xd4e96b1, 0xa8a7f311, 0xcecbcf0d, 0x91ee592f, 0x690b39af, 0x39be3a97, 0x651ccb4a, 0x60b2f9e5, 0x2fe8451e }, { 0x19f33d5f, 0x746702c9, 0x46584d42, 0xa461740, 0x99639097, 0xfcf1a9f0, 0xb470593b, 0x9ef67a73, 0x128f6894, 0xb2b9850c, 0x11a17ace, 0x6344ea6c }, { 0xf8c7918, 0xb9407f8c, 0xfee1819d, 0xd2e6621c, 0x1fff0708, 0x4b12cc14, 0xf47e3744, 0x87fb3f49, 0xb237e450, 0x6c6a2043, 0x16298657, 0x4e7b2a9f } }, { { 0xe56b4528, 0x16c3ea5b, 0xee2b4e50, 0x79b2cf2a, 0xfdd0b920, 0xc7298984, 0x570cdb55, 0xd003e170, 0x92331f5a, 0xcda0f5b0, 0x24cc93bf, 0xe0660f1d }, { 0x8eb1dc29, 0x3c55e571, 0x9a367ad9, 0x30e36268, 0xc1c360d7, 0x9a8c18fd, 0x2b94f9d5, 0x8ae2d98b, 0xbbec4e1c, 0xb55d3df5, 0x53a79318, 0x403e6bd4 }, { 0x8d44534a, 0xe2fb4278, 0x17e00290, 0xfd5afa4, 0x61f513c, 0x822ff969, 0x8165f33b, 0xe005060f, 0x312b345c, 0xa8fce64a, 0x840d004, 0x6723c2c0 } }, { { 0x8af3ae5d, 0xa46661af, 0x37628e09, 0xc1f8b131, 0x772c67f6, 0x7a200f7c, 0x5353d249, 0x39c16c4a, 0x6d38dba4, 0x5ad03d7b, 0x8d0bd35c, 0xc4983e98 }, { 0xd72189aa, 0xe55130b6, 0x920483c9, 0x6f17f50, 0xd726a6fd, 0x6036d803, 0xba09a704, 0x95e945b, 0x1b16f4f8, 0x93046331, 0x35d07bf3, 0x3c68abc }, { 0x7b588af, 0x2778fe55, 0x7538f75a, 0x7f3993a1, 0xbca9c019, 0x85cc2f55, 0x936d0a1e, 0xdddcf3e6, 0x67e2bf80, 0x876ace86, 0x7d9ced27, 0x95833903 } }, { { 0xd0850f53, 0x125fd3ed, 0x89feefd8, 0xccfd4c76, 0xbe022aac, 0x864f276e, 0x389c0cc6, 0x74f0feb1, 0x2d21f870, 0xa2e5ee42, 0x6177e81e, 0x20576663 }, { 0xc611ea6d, 0x20ff2e3, 0x662adde4, 0x11ee4f3c, 0x94020b7f, 0x2245485b, 0xa190c594, 0x824606e9, 0x62be153b, 0x32bde7ce, 0x201ecc34, 0x5e9a54e }, { 0x2a175527, 0xdba71dee, 0x65bae722, 0xd1e1a19f, 0x906a0f6b, 0xad5f0a6c, 0xf8774dc8, 0xd27d1683, 0x42caa8f1, 0xd6871442, 0x55136f26, 0x14625691 } }, { { 0x4746872c, 0x1335d583, 0x375f9a36, 0xd862ebf3, 0x1dde0954, 0x45f7da82, 0xf25e1242, 0x14f2d055, 0x2a190fc8, 0x48039378, 0x26ef41bc, 0xd18f6506 }, { 0xa6f0b592, 0x525842d9, 0x135f250b, 0x29dd74, 0xfd74eef3, 0xdaef0699, 0xc8c57260, 0xadb8ef7c, 0x87db8b98, 0xe92dd4e2, 0xafe28a83, 0x1bd52fa6 }, { 0xa95b9463, 0x26150298, 0x7274edfd, 0x658444f1, 0x863aee56, 0x985d878e, 0x652513d2, 0x39247878, 0xf82befd, 0x7d747bc9, 0x1d34efc3, 0x4c842268 } } }, { { { 0xa916bf1, 0xe9af49a7, 0xa58cb5ab, 0xe994bcab, 0xa3bab147, 0x1556cf01, 0x91c206a0, 0x8e6e77eb, 0x6b2c084e, 0xc58b92a1, 0x1f0958ce, 0x39cc275f }, { 0xf263cb8b, 0x550f1691, 0x9024b05d, 0x663c78ce, 0xddd4dc73, 0xdf21dd8, 0x34f85d36, 0xe46b58d2, 0x9b0b9283, 0xeca640c6, 0x293678d0, 0xe7c1464e }, { 0xc383dce1, 0x1931aba1, 0x5a25cbe7, 0x683a7597, 0x32cdf741, 0xd8a4241e, 0x5f1bab51, 0xde7629a8, 0x40fcf4eb, 0xf2323ca4, 0xf0292d9e, 0x91e9b1cb } }, { { 0x189f8d74, 0xbf986b12, 0xd00be3ab, 0xa26a84f0, 0xfd029eb4, 0x96572d03, 0xe64b8879, 0xcb8a096e, 0xa4ae5f34, 0x796a56, 0x7888a9bd, 0x2bace257 }, { 0x8439beef, 0x5cc6e541, 0x74b8416f, 0xdeda7549, 0x8c680cdd, 0x902ce17f, 0xed4437b9, 0x3fec5eb9, 0xd5cfafff, 0xb8e0658, 0xfe684655, 0xec414b89 }, { 0x886f17a5, 0x2b147602, 0x6ad73274, 0x8ad6cef, 0xc3acf822, 0x79892ca5, 0xe641096, 0x5adffe48, 0xa83fedb5, 0x903163a2, 0x2f935147, 0x230b0128 } }, { { 0xb3cc574d, 0x91d44c70, 0xa3c88657, 0xe9c9d3a3, 0x6c4bfdd3, 0x45b85f8e, 0x9a09f235, 0x66fbcaaf, 0x508975ab, 0xf647e16c, 0x4364598c, 0xe267477e }, { 0x3f6e5baf, 0xb98c724d, 0x4f577eaa, 0xf84f0101, 0xc6371a0e, 0x92122182, 0x27d348e3, 0x444c7b20, 0x5c811ae0, 0x61ee7ddc, 0x510ee630, 0x63808ac7 }, { 0x51796e38, 0x208a883c, 0x6eb07361, 0x498fe8a6, 0xfa58adb2, 0x70e29010, 0x46dd6313, 0xbef0ac93, 0xaef2470f, 0xc1f2bb0b, 0xc8aca55c, 0x706aa657 } }, { { 0x34ab8f2, 0x21092cab, 0x101a53d6, 0x9d6bc44d, 0x7d9b94b1, 0xfbe786df, 0xe93367ef, 0x6cbf0942, 0x4e18a49, 0x5c37a106, 0x7cb3699d, 0x995810fe }, { 0x1d6bb5a5, 0x84bd4f9a, 0x8c323e34, 0x674f0a7c, 0xdd7397dc, 0x3b587887, 0x61f7ce7c, 0xeeaea627, 0xeffe268b, 0x22e4d4ff, 0x6ea71b44, 0xbaefb237 }, { 0x1fccedc4, 0xce9d8e75, 0x6d077c8f, 0x6af5ea5b, 0xccb8a12d, 0xb1f48c7d, 0x3bc443ab, 0x62e177bd, 0x805bafb6, 0x46bcf8fe, 0xb917b980, 0x615dc9de } }, { { 0xeea8fb48, 0x515138f3, 0xa1ae2b85, 0xbd353d7d, 0x8bd1260, 0xc134d10e, 0x7064531d, 0x2d4919dd, 0x725cf404, 0x6b87eb83, 0x88c4f4a, 0x90802147 }, { 0x7004a72, 0x8e8c6658, 0x93632bbe, 0x2e215d58, 0x1b2039a, 0x7815b337, 0xfd746665, 0x6a8d9f8, 0x4bf5c5cc, 0xecfba88, 0x867367cd, 0xf84e53d9 }, { 0x973e3443, 0x8c8f9146, 0x81b1dddf, 0x3ae54c06, 0x7bf91978, 0x8e0835ab, 0xb2afd3cd, 0x2e58ea3a, 0x48ac6af0, 0xa3e792ea, 0x5cad909b, 0xeb0cd8b9 } }, { { 0xf3fb6392, 0x1020eedc, 0x7bcdc03, 0xca96a1d8, 0xdb3f4715, 0x54cc92e8, 0x411ff6c, 0xe6054227, 0x384f7d6f, 0x121f46b7, 0x218b5f9b, 0x145e5811 }, { 0x95f6eeaa, 0xeea97c07, 0xc3389388, 0xd202655f, 0xd2ce3b92, 0x34f75645, 0x93b94b74, 0xc88af1ce, 0xd12cdd86, 0xc0515723, 0x353537fe, 0x148fa08b }, { 0x58938b5b, 0x64362bc8, 0x64714c4f, 0xf22a408c, 0x2503e825, 0xa33dc2a5, 0xb3d01b82, 0xf4d334e2, 0x40cf6002, 0x2bfed052, 0xd3cca29f, 0xbcd37103 } }, { { 0xda70e287, 0xf182be4b, 0xd04fe85b, 0x210004b2, 0xba4fd620, 0x8be9a663, 0x971dd725, 0x798b47d5, 0x307886a, 0x2384f9bc, 0xb703d810, 0x6dba4e4e }, { 0x95995c52, 0xc6cb36e3, 0x740173c0, 0x9c64bb90, 0x553d9359, 0xd7a69967, 0x65d5c192, 0xff70d388, 0x7ed7a083, 0x6802fd51, 0x511f65ea, 0x14722d4f }, { 0x68534393, 0x5d6b02de, 0xc86cccec, 0x701e9506, 0x6aab5ae7, 0x258fd944, 0xd9c596db, 0xbfd9a4c6, 0x88ef5ff9, 0x3201a17c, 0xffa5558f, 0xba43dc50 } }, { { 0x592e5617, 0x2d00b329, 0x7587b657, 0x5bacfe68, 0xb29b3b6b, 0x459a67b9, 0x327c1ec, 0x25499427, 0x957d3cd4, 0x3f04b497, 0x6277de9d, 0x5fb149e6 }, { 0x9dfc6eb2, 0x782ece94, 0xb313ef34, 0x81688f, 0x80dfdc5c, 0xad241d72, 0x2630a3ae, 0x5d6fa1f, 0x8eb18553, 0x40c7878e, 0x3b1a8281, 0xa1857deb }, { 0x5686e7de, 0xc5d7c156, 0xfb724156, 0xaf9b7b1a, 0x6f60cf96, 0x547dbf7c, 0x98ef121c, 0xf7caaef7, 0x589291fa, 0x2c892789, 0x5532207e, 0xe30f1247 } }, { { 0x851e385, 0xdf64aaf7, 0xf44c1241, 0x2df1ddab, 0x43f32ff6, 0x9fbfb6e4, 0x524b2570, 0x8fe4c379, 0xc259a1f9, 0x32da04a2, 0x5918aef7, 0xa82ba0e6 }, { 0xfbb46d76, 0x666438b6, 0x10ed8327, 0xb4c7d338, 0xbbc64bb1, 0x8b30f740, 0x1a4af471, 0x8f4b77d3, 0x7bc89d33, 0x395a0dd5, 0xc688212e, 0x7e585dde }, { 0x36fea0d1, 0x22f30d01, 0x89621580, 0x68af688d, 0xa03c4670, 0x1f488560, 0x1c74b43f, 0x1e8889d6, 0xcbaab174, 0x40a57227, 0xf2b3bdb1, 0x17226faf } }, { { 0x7eed590e, 0x87c1e6fd, 0xef233df, 0xc6b25ebb, 0x9459fd81, 0x86c32ddd, 0xe2c8f67b, 0xd1046c6, 0x4dd16352, 0x690c35a9, 0xe7a013b, 0xcf5d4329 }, { 0xa2f75abe, 0x2a223820, 0x7d75cc00, 0xda3fb2e7, 0x4df7d8a6, 0x81b322fd, 0x80f1398f, 0xd467aba5, 0x7bcedd87, 0x493f10bd, 0xa1cdced3, 0x398c9661 }, { 0xbce9fcda, 0x200c2016, 0x1bf89170, 0x47743461, 0x7084c55, 0xf7c537e1, 0x54eca800, 0x6e8cf332, 0x3dcb9bc, 0xa669e993, 0xcd28e871, 0x5c2ce928 } }, { { 0x8d743418, 0x9a5cd2de, 0x2ce797c5, 0x99875958, 0x3e0902c0, 0x6f4c5aa2, 0xa67e49e1, 0xe03a6972, 0x9eebfda7, 0xbdff0e13, 0xe6427315, 0x8bea6e49 }, { 0x91ed00a1, 0xcda21f8c, 0x926d53a2, 0x9917197b, 0xed513172, 0x62681445, 0x3b426cfe, 0xdc294fc4, 0x6a3d2c06, 0xa05a99da, 0xc0c6fbf, 0xfe48ccb }, { 0xddaec8dd, 0xf9b2aa25, 0xc036a2fb, 0x7cebacb6, 0x3886e502, 0x1bdf5c69, 0xbba1cb6e, 0x875048d7, 0xbf1f3d9f, 0xa690e4c3, 0xa04301e8, 0x40687cf } }, { { 0x1b652ec4, 0x3c268090, 0xbdac990a, 0x4fe387f7, 0x80144053, 0xbbc00402, 0xfefd71bb, 0xd8c0676a, 0x25912d56, 0x92a5dd8, 0x2c750f2f, 0xf556e017 }, { 0xe8f50221, 0xa4585da6, 0xb8303d98, 0x5d897612, 0x494060e3, 0x3a7ebd3b, 0x339b56d1, 0x79b70750, 0x9fae8153, 0xd40285aa, 0x8aedf333, 0x9a3d8d4b }, { 0xc6a7a7d5, 0x8e2c0070, 0x207c835c, 0x1672cc7b, 0x4c98ab1d, 0x6fafda61, 0x88a0967c, 0xed966415, 0x3c80491, 0x827ef3ae, 0x9f3b90ff, 0x479893b8 } }, { { 0x36ceec25, 0x4781f126, 0x46a4e7b, 0xa91adcd2, 0x73793b5e, 0x810de831, 0x720cef22, 0x34071f2e, 0x6b88b6e9, 0x72360bc, 0xfbcb3dbb, 0x1650b920 }, { 0xdd88c3dd, 0xa2ead49f, 0xf1e8d867, 0xdf97bccc, 0x834361fa, 0x1c1283fa, 0xb6388b30, 0x627b7efe, 0xfbaf9fd2, 0x40387fcf, 0xb8aed985, 0x4704ae80 }, { 0x36b5f688, 0x7f4e139b, 0x92c78289, 0x3112b941, 0xb5915a8, 0x16ca7ee0, 0x1b14a40a, 0x573ec1e5, 0x9bc91e24, 0xc8ac3f6a, 0x59d601f6, 0x14700111 } }, { { 0xf321dc18, 0x684a1c68, 0x8999fe8a, 0x21954bf9, 0x5eb9e98e, 0xd2ce2da7, 0x9a3f807f, 0x55dff66d, 0x6c78c24f, 0xd87ca180, 0xa18a127e, 0x51bd2360 }, { 0xba75399f, 0x23459e2c, 0xc0002e8a, 0x12d29dce, 0xe957a27f, 0xc48f1f5e, 0x8bec10f6, 0x88fe50f5, 0xacd0d46f, 0xa88dd2cb, 0x646e34f8, 0x284f6c9e }, { 0x55ceab0d, 0xb88b6fc1, 0x8f61037f, 0xe35db7e2, 0x4b4813c, 0x6fa642a3, 0xfcf40f7a, 0x90825907, 0x7fa69c7a, 0x1a57b882, 0xab1258c1, 0x87daf341 } }, { { 0x422a6c08, 0x96f154b4, 0x7f2efee3, 0x6347a31b, 0xdee9e30a, 0xa336affa, 0x57a0e718, 0xc956e9a9, 0x617aca81, 0x13ad83ab, 0x176788df, 0x4239044a }, { 0x49f6e8a3, 0xdf0073e2, 0x7859be65, 0x360c8178, 0x3efdb299, 0xd40688f2, 0xe4f5d0bf, 0x4c89787b, 0xd8596cd2, 0x2619fbac, 0x8bd76424, 0xd2165473 }, { 0x2a39a108, 0xc9647763, 0x70eab394, 0x96a4102a, 0xa6f6ebc9, 0x240239d2, 0x2121e779, 0x7acf185b, 0xc694eda9, 0xa612745f, 0xf56834b0, 0x508e8b59 } } }, { { { 0xc44fa240, 0xeed85e66, 0x3747d971, 0xfbd2e30a, 0x64252dba, 0x3d5b62a, 0x49068b2e, 0x169d6fc5, 0xaeb7eae9, 0x2352d927, 0xf6011b07, 0x11c6dce5 }, { 0x9b5be39c, 0x83d0ffb7, 0x566eea19, 0x1690ff4d, 0xef08a7d5, 0xfb607c29, 0x3121c598, 0x39361427, 0x48a7acb2, 0xb184ded, 0xc90d9fc8, 0x8f17bc65 }, { 0x47a00c8a, 0xc7b0c5dc, 0x9e0e0bcd, 0xf3fe0e22, 0x869c51ed, 0xdaf4a65e, 0x762af5ac, 0x73f137ac, 0xb3f66b8c, 0x9cfbaf96, 0x93972151, 0xf67389e6 } }, { { 0x628dfdf3, 0xb9094f21, 0x4ee194cb, 0xffde3f8e, 0xd4c79f8a, 0xc6036c61, 0xdc48d5b8, 0xce52fa33, 0xe10297dd, 0x832ff73, 0xf91abdd3, 0x2aeb4a9e }, { 0x27172d69, 0x78281768, 0x6194df93, 0xc823fea4, 0x37cc849e, 0x4fe6a45d, 0x55fbb8d4, 0x56d5a856, 0xd6e07c2c, 0xbc78ee81, 0x89eaa2df, 0x6dde3a86 }, { 0x3b47a6c8, 0x4ad7ec3d, 0x263184a7, 0x79dffb4f, 0x4a47b860, 0xc94ae1ca, 0x62cd4907, 0x3c58741e, 0x15eb1f5c, 0x1a0b4b45, 0xa97e2bf, 0x4de80f8d } }, { { 0x6c2be6ae, 0xfce2afd4, 0x73806be2, 0x9298f6e3, 0x2d526ddf, 0xa366a52c, 0x5fb2db39, 0xf80a1a76, 0xee8be15c, 0x405f0c84, 0x37b06c8e, 0xee415650 }, { 0xe56a32c1, 0xd9053f87, 0xc2b24f0a, 0xbf64d4bc, 0x8f5be6ae, 0xc3de230c, 0xb9c86612, 0x756133d4, 0x8339340d, 0x72c26cba, 0xb0eb7d86, 0x6e45fb94 }, { 0xe010bdeb, 0x661de02f, 0x8440036f, 0xf0f5bf04, 0x4b190667, 0x2348912d, 0xf3c5aa7, 0x65bc3ea7, 0xaf2505c6, 0x9c70b74a, 0x50823af9, 0xf770ddc8 } }, { { 0x5057ec23, 0xac005a4d, 0x1cc484ba, 0xe7b4768d, 0xe34c3e97, 0x22ecd59f, 0x2f221e2b, 0xa341aa9d, 0x66c142a0, 0x183af00, 0x1e2cb5bb, 0x5f1cc25f }, { 0x56fb779c, 0x20ba8cac, 0x60ae8e43, 0x887fce06, 0xf1930e4f, 0x1b9c5841, 0xb115769e, 0x87b5cc26, 0x225783e4, 0xaecc2a81, 0x61864118, 0xab3d77ef }, { 0x864dc644, 0x226b5950, 0x50604b9b, 0xd182d12, 0x89ae6c0f, 0x69b68df1, 0xf9ffa905, 0x2e6bde9c, 0xb856def7, 0x1228ddc0, 0x89d805ff, 0xa7d5c5ee } }, { { 0x41a9d64b, 0x3ea0892d, 0x3bc5e192, 0x8bd69ff2, 0xdbeb8cf8, 0xeafeee2, 0xe2bb55d9, 0xd2ecb461, 0x6ec98d54, 0xa4adaa11, 0xc123138c, 0x132ee29d }, { 0xaa7e9fad, 0xa2075b90, 0xcc1c9c59, 0xe6554f02, 0x92d407fd, 0x92afa1c, 0x1b9e3f29, 0xf2549e8b, 0x4a8b12dc, 0x61d4aac2, 0x3592cdbc, 0xbab5d42c }, { 0x145f950c, 0x4a9ec3e9, 0xc855d71f, 0x1ce547f2, 0x2576525, 0x7885d92a, 0xac0c44c0, 0x9330f417, 0x70426b36, 0x9061c8e1, 0x49d6ba2b, 0x9136923b } }, { { 0x2a52a8ae, 0x701b4485, 0x327901bb, 0x7de43d86, 0xeac8baef, 0x955d3423, 0x9fcb27e3, 0x5097c497, 0x3019e3b8, 0x9590e553, 0xd09e6e85, 0x59cf6966 }, { 0xf5b854e0, 0x948c3d18, 0xabcc857e, 0xa4c6c3c1, 0x51991daa, 0x7a208462, 0xb8e2606c, 0x46ef4eb2, 0xbba527b7, 0xc24f6a36, 0x57ad4a03, 0x18ba375b }, { 0x500bdbe0, 0x55adfb4a, 0xee9a38b5, 0x25405f31, 0x9711c6f0, 0xbbe17181, 0xdfea9366, 0x1170bbcc, 0x16dc900e, 0x28a75709, 0xc9f4e9e2, 0xbd9e68ea } }, { { 0x80bdcfa2, 0x957560a0, 0x4b738e9c, 0x604c2e76, 0x9d9e6979, 0x6be53c9d, 0xb74a3af9, 0xc0ac5e6b, 0xae09c2a, 0xea3a54dd, 0xbbe2c9f1, 0xc69e78f3 }, { 0xb5cfbf1d, 0xdb922b0d, 0x32730544, 0xf404e65f, 0x51499a8c, 0xec8898f9, 0x3cd255d3, 0xad1ed98, 0xb3c65db5, 0x7dd04171, 0x79cce385, 0xa398ac77 }, { 0xbac20ef1, 0xa87dff12, 0x7b6900bd, 0xdce515e, 0xeaa7e930, 0x6f05ea4d, 0xd704bfc5, 0x2d96e366, 0x8dc5e1a2, 0x59eea9cc, 0xfaf9a79f, 0x1cf09789 } }, { { 0x1453580, 0xf1b0c897, 0x8da5ff14, 0x22ea62ad, 0xf0ba2348, 0x19973f13, 0x138c625, 0x948bf821, 0x31f31cc0, 0x74e048f4, 0xb55e063b, 0xec1b6a01 }, { 0x1548d0b1, 0xa5e8905b, 0x66bc4e10, 0xd4a458e4, 0x52372993, 0xc1310017, 0x54f4de41, 0xbd2ea1e1, 0xce0ce63e, 0x2094611a, 0xdfe8e18e, 0xc9c79da5 }, { 0x25fc8016, 0x5b225b4a, 0x25dcba1c, 0xc992036f, 0x25acb591, 0x25b28871, 0x4d7357cf, 0x287e35f2, 0xa07d102, 0xdb13cf84, 0xaf1378d4, 0x2a646b8c } }, { { 0x1f182cba, 0xa2b00740, 0x412d4170, 0xbd85805e, 0xa0ed6238, 0x5ac1a37c, 0x65e47b4e, 0xe6aeea43, 0x7b564760, 0x6905eb22, 0x46c39595, 0x2a709bdc }, { 0xe43f7d22, 0x7f52c3ee, 0x60ebc547, 0xf18363c7, 0xcadbea4f, 0xed538263, 0x770967dd, 0x7cb8b73e, 0xa9aaf272, 0xdc7517bc, 0xa05f2eb8, 0x6c7fb3de }, { 0xf0661d5e, 0x2c3ac7ae, 0x4bc78f5a, 0x8243b0e9, 0x7e21a562, 0xd033bca5, 0x66d5251, 0x5ff567cc, 0x366b38a9, 0x92752b62, 0x66bb1832, 0xcec38608 } }, { { 0x884d00d3, 0x67d78924, 0x1b8556da, 0x4bb81448, 0x6bc5ce14, 0xc7855af6, 0x4e227ea4, 0xcb7a479b, 0xcc04d639, 0x7bf09a1d, 0xd084650f, 0x1748af82 }, { 0x6dc98126, 0x7b5d30c2, 0x55ffd64d, 0xac4c94de, 0xc5b2cd7, 0x364c829b, 0x47d2e00f, 0xec0c2346, 0x2b7e51b4, 0xda03b743, 0x19d97ba1, 0xf2699f00 }, { 0xf69165a0, 0x9ba4a3d6, 0xa2ab1bb2, 0x3d9bb358, 0x6c5e2bae, 0x1b44968c, 0xe3443349, 0x4001d1d8, 0x75afe8fc, 0xbb5ce205, 0x2c29b917, 0x4a0fb16 } }, { { 0x738da4c0, 0xe5416c60, 0x306157dd, 0xc6f25dc3, 0xdf68657b, 0x9dc52bcf, 0xa7f9f28c, 0x8d40047b, 0xc1743b5c, 0xce29b2d5, 0x7ba6adbd, 0xf6f7383 }, { 0xb4c3dc75, 0x890abc41, 0x3ad36432, 0xd989b087, 0xb4643ce5, 0xc44cf969, 0xd2ba66de, 0x18951862, 0x21998bdf, 0xec77df78, 0xec7ec212, 0x206a38af }, { 0xefe0339a, 0xdadcfce6, 0xa08419aa, 0x5f912e27, 0x82a0e95, 0x1750d5be, 0xf916577e, 0xc8f071cc, 0x62f1d6c2, 0xb030bc8e, 0x37b2a97b, 0x43098c92 } }, { { 0x692f9443, 0xb84c0c51, 0xcae8efc6, 0xef2dcfc6, 0xdbc0dda5, 0x3ffba0ef, 0xfd864e5a, 0x61b314db, 0x67590ef7, 0xa0253c46, 0x72339aaf, 0x85b7b4aa }, { 0x11be59e6, 0xef00031e, 0xdf70a10c, 0x2fd6819f, 0x24f6671d, 0x81a8e8da, 0x3a1422b4, 0xdec8ff24, 0xc90105b2, 0x4b2d4ed8, 0xf822ec91, 0xd7a747b9 }, { 0xbe0ff863, 0xfe1bfbb1, 0x66c6c8d9, 0x9abcbf0c, 0x8a0bf9b3, 0xce79fa42, 0xfaf76f7a, 0x63e97bc0, 0xb91be56f, 0x9c5ff1bb, 0xe8827911, 0xb1225b7d } }, { { 0x80dcf99, 0x1678f450, 0x1548624b, 0xb11c4a65, 0x254cb033, 0x91041d93, 0x9f774ee, 0x16ffe674, 0x9e78b422, 0x69de559e, 0xc59a0fc9, 0x5ec0bc20 }, { 0x6aa03b65, 0x9318d11b, 0x4c365f7f, 0xbd4b5690, 0x126f349e, 0x98411110, 0xb5967edd, 0xf8fa93c3, 0x8f44b7fb, 0x95a2d98e, 0xc1085cf2, 0xe70a059e }, { 0xc9552fbe, 0x1aef3812, 0xe06f0330, 0xd681d9e5, 0x1af20713, 0xb6c4c883, 0xbae2c409, 0x96705d8a, 0x5ec9c0d5, 0x98dd3df9, 0x5ea51264, 0xfcd91b81 } }, { { 0x158d22cc, 0x82987a66, 0x935fcb1c, 0x564566fe, 0x4884cf7e, 0x3ec7ce82, 0x7b2bf5ec, 0x8b55aacb, 0xe5a1d17, 0x81f9ea0d, 0x57c13c02, 0xe07b1194 }, { 0xc7b898ef, 0xfa3537c4, 0x343a1d45, 0x9c5a0243, 0xb94d8ab3, 0x5092e746, 0xd0ce3000, 0x676b8a66, 0x61b5ee2c, 0x5eb3af9d, 0x2c297e0d, 0xc2d24b61 }, { 0x1f323520, 0xf21c8a7e, 0x53e1404f, 0x6a364227, 0xa85a02f5, 0x40eedb53, 0x7301ef0a, 0xe1c88078, 0xc118a1aa, 0x7eb6b2ec, 0xa2b5430, 0x78a0e5a6 } }, { { 0x297a4924, 0x3f69c96b, 0x5f621c2b, 0x3f6300b6, 0x8d3292ca, 0x4fd7ac27, 0xb0fcbb3e, 0xa018d4e6, 0x5e93a3a1, 0x4ef965f, 0xe3a030b8, 0x2e7ddb8d }, { 0xb42d9fe8, 0xde3defcb, 0x9fb17770, 0xec768d63, 0xed74a897, 0xab210e42, 0xcf6aeb57, 0xc96b090f, 0x1743b8ba, 0x739fcfe1, 0x24e57e3a, 0x7f9df3eb }, { 0xc101574f, 0x5e55792a, 0x27f04b8, 0xbd000917, 0x154665b0, 0xe1c5c1d5, 0x6a80957d, 0x9482c37e, 0x60ce388d, 0xd4e59334, 0xf6f26571, 0x2cdd8bff } } }, { { { 0xb5194349, 0x369e0f10, 0x38c22505, 0x848b8482, 0xbd88fd8f, 0x6c5b6c7c, 0x3b57b98f, 0x13c7264e, 0x8d523989, 0xaac357dd, 0x1d079d27, 0x8ce4dbac }, { 0xe4458f60, 0xb80a8a95, 0xb125e459, 0x5e5f3f34, 0x69607812, 0x506d1924, 0xbac02dd4, 0x8d588095, 0x3865159e, 0x7dfc0223, 0x84db958, 0xb82b4ae0 }, { 0x6e33820b, 0xbba29c6f, 0x71f5cdb4, 0x34040419, 0xb7ff349b, 0x356f7939, 0x13b00357, 0x7a4674a9, 0x882dd997, 0xe688c97, 0x12e6960, 0x2ded6e6e } }, { { 0x75520fda, 0x28dc3f87, 0x7938e42b, 0xc42c272f, 0xd30eface, 0x1e680b39, 0x31b51aa4, 0x1272681f, 0xa20cfc4c, 0x3863f471, 0x74ccd3ab, 0x76aa9b0a }, { 0x9e7912a2, 0x3854c142, 0x67c00cda, 0x3a7a8cad, 0xbdacea6c, 0xbdb26ff4, 0xbfc29668, 0x573d060e, 0xf83e1a07, 0xb670befe, 0x7d95c544, 0x2b5e5e36 }, { 0x4c92c82, 0x23253a0c, 0x314405ae, 0xf81fc6ee, 0xd4fc25ee, 0xbda4ba62, 0x736abff8, 0x923515a3, 0xeb048991, 0xe17b7d0b, 0x7e58be2a, 0x397dec8d } }, { { 0x5fb56c45, 0x881f04b6, 0x528f2bd4, 0x8b14c58d, 0x39cd334b, 0x280eeb16, 0x48517e3f, 0x952d1eaf, 0x24005af6, 0x5b138f18, 0xdac2a27, 0x9495f524 }, { 0xabd01265, 0xd0870f61, 0xf040ecc1, 0x5e9b9ca7, 0xff869280, 0xf51c6474, 0xf419d272, 0xcb685f6, 0xb9b06ec5, 0x61b652ba, 0x5e55db40, 0x24b50ff5 }, { 0x3f35d574, 0xa8b59ea8, 0xd1f8ae4, 0x359c7631, 0x89a1449a, 0x62cae064, 0xb9bf3445, 0x3c7ac157, 0xf0610fe4, 0x4915019a, 0x798f23ab, 0x52136e82 } }, { { 0xd563468d, 0x199eaeb2, 0x67587f46, 0x4942b94b, 0x5ad103d, 0x4513a19f, 0x80d0b295, 0x1a79e50e, 0xe2c6010c, 0xf1c3af3c, 0xad066ab4, 0x8d550905 }, { 0x3b02a314, 0x36074065, 0xb0f8de4c, 0xeff9daef, 0x6389dc72, 0x9523f112, 0x49d7631b, 0x9bdd4490, 0xcec29c3d, 0x483946e0, 0x5430167f, 0xb5334856 }, { 0x939023fe, 0xfc4fe4db, 0xa51a91a4, 0x366a7d42, 0x8f349b4, 0x77279109, 0x9d46262, 0x39754d17, 0x2f67e8b8, 0x522fe27e, 0x69c7f42, 0xb305dc2 } }, { { 0x4cf9bf60, 0x4da1159c, 0x151152f7, 0xdd826d9e, 0xb24ea969, 0x4949c7db, 0xb3e06398, 0xef4ed13a, 0x9bdbd8dc, 0xe2c55e07, 0x60576417, 0x8691b8ae }, { 0xd9904717, 0xbf6f0cce, 0xba2ea458, 0xfd865851, 0x70500d40, 0xd2f96978, 0x52d49c87, 0x6f98a270, 0x20a6d9cf, 0x9b7fc10a, 0xf4e2e256, 0xb3434e34 }, { 0x4ec757fc, 0xe327a49b, 0xe2536bb2, 0xaf94591a, 0x9a238e8a, 0x8e620dc1, 0xfd46e962, 0x8742a475, 0xd7ec03eb, 0x4a3cb619, 0xff0896ea, 0x3f73a23f } }, { { 0x9d546fa, 0x268ddb0a, 0xb9bcb0cd, 0x8b6115e1, 0xbe7ec60b, 0xc3844462, 0x68d9591e, 0x79ef2d0a, 0xc69c10e4, 0x4e16c95d, 0x963d7845, 0x7f890602 }, { 0x869d7b2e, 0x8bc7568, 0x459f7797, 0x7f066365, 0x36ad4dda, 0x2fe9f0f5, 0xfffc32a3, 0x4f9f64a0, 0x5b94a958, 0x5f87f88f, 0xb9fa7b9, 0xc77af99e }, { 0xe08fe67c, 0x6767d0b2, 0x3f0eec4b, 0x8f3420eb, 0x87920ec1, 0x733ff14c, 0x8c2cf5c4, 0xad954ab4, 0x9927b657, 0x6c21352c, 0x8ae321e6, 0xba2bbf8c } }, { { 0x4ec85ca0, 0x81487f99, 0x83310689, 0x448d2fea, 0xdc7a4f8e, 0xa7750254, 0x1301c5b0, 0xd77eb1e8, 0xd93b480a, 0xf95368b2, 0xcbdbf9a4, 0x11409943 }, { 0xf5d1f5ef, 0xf0357b8d, 0x2164b0c0, 0x970ba972, 0xac9e0c74, 0xf1213730, 0x3a80b871, 0x51014e79, 0x71589df, 0x70bf5e74, 0x54f06d73, 0x82c4af28 }, { 0x407072c1, 0x64f06d5c, 0x90e2afb5, 0xcc3b8f16, 0xc732fc08, 0x60678299, 0x27a9b956, 0xd1bc584e, 0x70f92bc0, 0x310fe5db, 0xa4f6d7fa, 0x79fd5e42 } }, { { 0x195bc2a4, 0x97aa12fd, 0x318cc2a4, 0x77a80991, 0x47351968, 0x325f4014, 0x51af33b0, 0xedb1e34a, 0x8142bdec, 0x7a0f1482, 0xc6877c3d, 0x98289ba2 }, { 0xe7539fd8, 0xa4ecd68e, 0x2410c8e1, 0x65ed069c, 0xe07d114b, 0xf6b7d477, 0x4db7b280, 0x66a775f5, 0xca5b0889, 0x9d1a954e, 0x59135ce8, 0x22d46205 }, { 0xfb5a982d, 0x4db15bd1, 0xa2331c9c, 0xf67ef404, 0xf7936bc9, 0x6ece4bbb, 0x8fd7145f, 0xc2955a6a, 0xdf7e4ae0, 0x3fc8c350, 0xd2f2b770, 0x1084bad3 } }, { { 0x3b15402e, 0xfce911ba, 0xa1029799, 0x5aa534dc, 0xc4357102, 0x5654d22b, 0xda2994e6, 0xc18cd4f3, 0x56819e89, 0x8a7745e, 0xdfd8affa, 0x70c9ec49 }, { 0xbeb096c6, 0x4056e4fb, 0xc342b21e, 0x30a1d1b1, 0x9aa3371d, 0x62143e3, 0x5167a993, 0xf5916c3f, 0x19f18bf3, 0xa337cf11, 0x3fde2a8b, 0x68557f4a }, { 0x51570ae4, 0x197ee4cd, 0xeedb14b4, 0x7758321b, 0x30cafb5e, 0xb9d0c686, 0xeb2b2416, 0xc3b05bd3, 0x4854748f, 0x21fa2bce, 0x6e3572f4, 0x56a28235 } }, { { 0x6fba9f4d, 0x23f49ef8, 0x59f98244, 0x5d316c31, 0xd9b430f5, 0x3a3ef70d, 0xed1240d9, 0xb97d6c00, 0x22b03b5f, 0x68f8d296, 0xad62ca2d, 0x77362dd6 }, { 0x1c1f13a5, 0xfcfe038a, 0x37080795, 0x4130370c, 0xe0ac4c4d, 0x338278a6, 0x9f913cfc, 0xfd66b177, 0x5174df6f, 0x57e68256, 0x8231cfd5, 0xdd5cdf53 }, { 0x53525f15, 0xa939dded, 0x328fd7d4, 0x84a175f2, 0x858752e0, 0x32e20746, 0x2d35c228, 0xba9abaaa, 0x14325b5b, 0x21856081, 0xf4835998, 0x1758df4d } }, { { 0xfa2d4ad8, 0x707b6081, 0xc5a12fbe, 0xf827362, 0x476db6d7, 0x15531bf4, 0x562bb429, 0x46ee4351, 0x7bb34d72, 0x7e0a9f54, 0xe479b4a0, 0xc5818701 }, { 0xbaec6b8a, 0x2d4f9533, 0x815a08ca, 0xe06776a9, 0x410e9bf6, 0xa0d8440f, 0x2b807b83, 0x35651206, 0xf0776c0c, 0x398663a2, 0x9238a5c9, 0xb6686e8b }, { 0x7a84b07e, 0x795e91d0, 0x162d1baa, 0x3b0180c7, 0x99b81e23, 0x6f09e5f4, 0xfa9913d2, 0x2d7baa84, 0xffd6a917, 0x991254e, 0xc742971c, 0xb6429a4b } }, { { 0xdbac1025, 0x473ad47c, 0x7b6150a, 0x25f758c7, 0x69ca7854, 0x20e8c5ae, 0x91820c41, 0x393a8bcf, 0x9f3a0333, 0xa993889a, 0xa10f0ca8, 0xf800feca }, { 0x1ad25eeb, 0xd02d5cca, 0xd722832e, 0xe04c8b64, 0x742f0f3d, 0x725edf7b, 0x93c34dfb, 0xf1e0f0f, 0xe66e17af, 0xef0e3abc, 0x8b39a196, 0xb6131610 }, { 0xf3ea8a30, 0x6227e287, 0x2cffab4b, 0xb65efb88, 0x5985914c, 0xa481902a, 0x88b300df, 0x1de78bac, 0xdb95056c, 0x68a50660, 0xea634b95, 0x431365e } }, { { 0xf51440ee, 0x72bf6369, 0x2a6c02e6, 0x8406b317, 0xe14a5698, 0xcdfe27dc, 0xc94cc857, 0x83c91e8f, 0x8d72045b, 0xd679f958, 0xbdf7ebb7, 0x8be329be }, { 0xd2394588, 0xbb1ac541, 0x719b2568, 0x1274ff2b, 0x3d10dae4, 0x25177c16, 0x9a965fd4, 0x23946d79, 0x5b66648b, 0xc94afc6f, 0xbd9e007d, 0x3e8c11c1 }, { 0xb06f6c59, 0x18093b3b, 0x5a44cb44, 0x120f982a, 0xb7565d3c, 0x6eb28f76, 0xddee35a7, 0xe83d7e2, 0x92638b6a, 0x268eb8dd, 0xf9d31af1, 0x70da8994 } }, { { 0xf3a02618, 0xd316e148, 0x6358e34b, 0x6458145f, 0x708dd4e0, 0x99c2c4be, 0xc9a8eaa, 0x4b78d12c, 0x90b52e61, 0x97ac0de9, 0xa21d3aef, 0x84ef066c }, { 0xe6b2f163, 0x9b5f2457, 0x3295fc6f, 0x8cd7e321, 0x9ccc0293, 0x1db020eb, 0xa59d3d52, 0xbd43446b, 0x481400d, 0x8f307768, 0x1f716941, 0x92c347b4 }, { 0x474c17bf, 0xd8816b14, 0xf8ed2390, 0x66e5932c, 0xeb26d07a, 0xb5c656cf, 0xc6b4a5a5, 0x84402223, 0x4bf328f7, 0x2029f5c6, 0xb9ff5e95, 0x6f9a1259 } }, { { 0xd3303878, 0xf9e78804, 0x1b921229, 0x52cbaa8f, 0x460e2059, 0xf9fde53f, 0xdf131e3b, 0x11193ab4, 0x80b29df6, 0x421aacb5, 0x8d303d2e, 0x13d39c34 }, { 0xfa3cfbec, 0x46922fd3, 0xfcb5e970, 0x2ea8c441, 0x6133c48d, 0x38e7f4c7, 0x94fd5a3a, 0xcaf59fb8, 0xe8bc8369, 0x48f1f06c, 0xc3381323, 0x80a24d56 }, { 0xf63b8db5, 0x8de6643a, 0x37233326, 0x602c8700, 0x99af8bf1, 0xbba193d9, 0x767154c7, 0xce6d2875, 0x74f993dd, 0x1df1a818, 0xd774fb4e, 0x13a8bb70 } } }, { { { 0x9836ab23, 0x21b55de3, 0x5f1bedff, 0x49c54128, 0x7327e98c, 0xcffd228e, 0x2129ec1d, 0xe0b7eb5f, 0xde946736, 0xcebab3c4, 0x9f107dcb, 0x5a62d274 }, { 0x3991ea1b, 0xb7c06cb, 0xb12bf2ff, 0x3def893f, 0x8b8a5f03, 0x7e63a95e, 0x33e1ded6, 0x5e2a6b38, 0x7c2a768f, 0x96b27622, 0x484f3786, 0xa80dc677 }, { 0x4a893a79, 0x1a23fff6, 0x82be7e4a, 0xc2bb974e, 0x191f829b, 0x66d93ebf, 0x4e6d97a5, 0xd623aa10, 0x801607dd, 0xc9c3f8c4, 0x7c56974c, 0xcde8372a } }, { { 0x4439697d, 0x35963a63, 0x2ed59408, 0xe6249105, 0x7500477a, 0x1dbdfb3f, 0x9633f5c7, 0x84688a64, 0xb07dfd86, 0xbd3848cc, 0x3386438, 0x2d97100c }, { 0x7e3f2457, 0x3aff6d77, 0x1db47f36, 0xe31ae55a, 0xa066e426, 0x8460351a, 0x553380f2, 0x257604a0, 0xa504c695, 0x862b135b, 0xb3f50b2b, 0x6718f337 }, { 0x1a3fb02d, 0xeb137ee9, 0x92039f9a, 0x9285c9a3, 0x485f7204, 0xbf6bb186, 0x12a5b12e, 0xf312ffe5, 0x2cacf3f, 0x6ebb97e3, 0xe0acc733, 0x27f61513 } }, { { 0x236455da, 0x1d9da76b, 0x5751d168, 0x864eeec, 0x6e5a2899, 0xd4a6aad8, 0xbc43ebf5, 0x560b063c, 0xfae6c131, 0x1dfabd03, 0xc94f80d2, 0x71b70fdc }, { 0x5af63bb7, 0x22f33c6c, 0x5f6ad0c1, 0x97418c6d, 0x6b232d4c, 0xcbc79f7, 0x314c3416, 0x56599403, 0xd013cfb1, 0x1eb7e5cf, 0x2719fbba, 0xd2a32185 }, { 0xf9033a6f, 0x58b55656, 0xcc3e1c66, 0x15d4c4d2, 0x6758754, 0xc637757d, 0x30803aa, 0x9f33d5be, 0xaefaf944, 0xfe01ca75, 0x1c21c70d, 0x66a1e66c } }, { { 0xd6684723, 0xc049c387, 0x6e0141ef, 0xf5273344, 0xadbfbd97, 0x401f739, 0xafe31ed0, 0xbb57548c, 0x156cc3b3, 0x16ce727d, 0xf924b3c, 0xcae3512 }, { 0xc172f619, 0xb3d8eb44, 0x573a933b, 0xcc35692a, 0x8572ff21, 0x18d51da7, 0x62f679e7, 0x26d02b48, 0xa74ef367, 0x52d7e3e2, 0x495177b4, 0xd8da79e1 }, { 0xa0395787, 0x99d71114, 0x7ee99502, 0xd556c273, 0xbb453283, 0xaabb527a, 0xfcf0b116, 0x7f5799c2, 0x55c5e2ef, 0xe46aefbb, 0x61909bf1, 0x5b974e5a } }, { { 0xc1b7a55, 0x84ed5807, 0x8a78c58f, 0xc038ec7d, 0x3c739754, 0x527f030, 0x3a1828ee, 0xe7b263a9, 0xce682b81, 0x7cb3079b, 0xe7bb2230, 0xfed42761 }, { 0xa6d8f03f, 0x4bdca13b, 0xa13bd6bf, 0xbb6f6eab, 0xc8dc9ca0, 0x4f3d1377, 0x4bfe2f5b, 0xb76de499, 0xfb8ae0f2, 0x57b7ec60, 0x38e9c3f9, 0x16f8adb3 }, { 0x5f33b3dd, 0x63608b90, 0xe1dc72f6, 0xbe20fd66, 0xc8b50d1b, 0x4edcc760, 0x6a273307, 0x42d520f9, 0x4dacb949, 0x1ba9950, 0x88bd702d, 0xab3e0468 } }, { { 0x5674e304, 0x6d3b09b6, 0xf5c782b7, 0xc4e6c1dc, 0xfc18bc6c, 0xb693840b, 0x82b19654, 0x5ec745fa, 0xedf6a0c8, 0x88b331c2, 0x79ab47a0, 0x387177ed }, { 0xd42c4d69, 0xc55c70e4, 0xa4d76ea, 0xaa3ff962, 0x9faecf9a, 0x74751d28, 0xc31d9bbb, 0x555a71da, 0x2bd67900, 0xd9147813, 0x1a4c600d, 0x2b4b4581 }, { 0x4ce13625, 0xe9e6e15a, 0x5b7bae45, 0xa346cbfe, 0xea40083a, 0x3f865e7c, 0x374ff731, 0x2a9896e8, 0x20e61521, 0x6de0cb12, 0x42851344, 0x3d16370f } }, { { 0x2c49bbbe, 0x93bb4dd, 0xf38d1608, 0x77c4fa31, 0xa0f33c60, 0xacb418bf, 0x90a16890, 0xa8e3a930, 0x9983cb67, 0x7ba75b3b, 0x17e983cf, 0x428103f2 }, { 0x6c7496dd, 0x33fe9204, 0xfe59b21d, 0x8a23079a, 0xcaa50c0, 0xb1295414, 0xc7f0b649, 0xee555a4a, 0xdb9ea04d, 0xe17465a9, 0xd2c4cce, 0x767990db }, { 0x43aac11c, 0x9fa914b2, 0x603a007d, 0xa9c62147, 0x5a01ef2c, 0xa53985c0, 0x80a089f4, 0x2aab2e82, 0xd6958816, 0xc4ac8af4, 0xda3dc846, 0x3806ed89 } }, { { 0x37f3b423, 0x75879197, 0x67eeb6b3, 0x2250c81d, 0x8bab3aba, 0x15d36aed, 0x10e97493, 0x576ea0d4, 0x2b3df7ac, 0x44f4efb7, 0x9148def4, 0xd7759503 }, { 0x6af53634, 0x356a8025, 0xec00ac43, 0xf048e5e6, 0xfab5600c, 0xce2bd51b, 0xac5954d9, 0x397ef930, 0x313e879f, 0x6ab6f854, 0xafe771b2, 0x340dbe6 }, { 0x494b091b, 0x94ecca9a, 0xe2988eb6, 0x739f3a6, 0x28b7778d, 0x210e47de, 0x72d06243, 0xca01716, 0xd7a026d7, 0xd7859f14, 0x749527dd, 0xd692ced } }, { { 0xf4cf69ef, 0xf5da5b3f, 0x872cf672, 0xc185e5af, 0xfa17fb83, 0x348dccc, 0xfe78c62c, 0x339d5777, 0x52478e2f, 0xedc4c404, 0xa8eda1fd, 0x1424fb63 }, { 0x432559c9, 0xcc1da825, 0x28a101d3, 0x246cf0cd, 0x30707500, 0x88a952fe, 0xfc4a95a4, 0x497a2e75, 0x8fd8c843, 0x1ac9a545, 0x36a9a775, 0xd83b6d6a }, { 0xdc1b8a50, 0x1e58d0bb, 0x7a095766, 0xc31c48ed, 0xbc2ef651, 0x60bcf1f1, 0x87d45eee, 0xdae0c269, 0xd050b0e, 0x6cfcc51e, 0xda3fd695, 0x6a3d9df3 } }, { { 0x6574719d, 0x927f67e9, 0x414060dd, 0x6fa05d, 0xf37722b9, 0x53fc874, 0x4bf8d6f0, 0x7b9564da, 0x27d131b7, 0x2f406e90, 0xaa382e6e, 0x3c238653 }, { 0x4cbec43d, 0x6468202, 0x55205052, 0xf3d77922, 0xe1e4d971, 0x48189041, 0x774c302a, 0x1cc0563c, 0xc6d39f73, 0xe7caea66, 0x9214bca7, 0x3c9f5734 }, { 0x9aad2e12, 0xbd0b98a2, 0x1200ae52, 0x7f9ad791, 0xdba527b3, 0x9d3ee6ff, 0xd484a701, 0x2d6ed9a1, 0xf3741daf, 0x7f12fec8, 0xd4afaa0d, 0xf95f9c7f } }, { { 0x65513c82, 0xa6933c70, 0x8cb1d76e, 0xcb347c6b, 0x5a557d21, 0xdde6a8e7, 0x53e96624, 0xe684e26e, 0xcfcb0cd5, 0xd56182ff, 0xb49de5e6, 0xae08f57c }, { 0x51170c39, 0x6b3b6981, 0xe75268bc, 0x3838daab, 0x4f7c2ba, 0xe15cebae, 0xa5ad7aa4, 0xa38960fe, 0xae1fe53f, 0xad731e91, 0xc4609f3e, 0xe0f3b4a4 }, { 0xaeb0d6b0, 0xddcb4da5, 0xae15bfd8, 0x59a78fe0, 0x550f8bfd, 0x43c6ed70, 0xc2d4dc14, 0xd34a781c, 0x1270c057, 0xab53936d, 0x88096ab3, 0x80e26532 } }, { { 0x282301dc, 0xa4bca833, 0xc2b20999, 0xd774db76, 0xef09ed79, 0x8f9883ed, 0xf09e9a67, 0x9ffacfaa, 0xf0557dd4, 0x5df3971, 0xe58001d3, 0x81ed294b }, { 0x80d12b03, 0x24400c80, 0x8b5cac05, 0x87361fb1, 0xba1f6a47, 0xf25d519f, 0x129b53a1, 0x56ff94ec, 0x1a470e1a, 0x9c14e02d, 0xfa773e7, 0x4f3bcfd6 }, { 0x9e6558af, 0xf00714f, 0x59a20e9, 0xa2030a0f, 0xa27186c1, 0xd4a543c4, 0x4c8418fb, 0x4bbd9cba, 0x8d8affa7, 0x554ba2d4, 0xbe308f9d, 0x4def6af7 } }, { { 0x709bd85b, 0xee07d018, 0x7092a7b, 0x7d210c88, 0x2d637c98, 0xbe01f84, 0x4527516d, 0x9f1995a1, 0x94619d57, 0x8fd957e1, 0x729ec126, 0x8eaade93 }, { 0x8d5a7089, 0x44ee4f7a, 0x58d3870, 0x412bc42f, 0xb26b6f35, 0xdb959b64, 0xf87a7665, 0x7fcc9099, 0xb2c94d65, 0x6e01a1f5, 0x7689de51, 0x6ea36a30 }, { 0x2b785e75, 0xdb7bab32, 0x95c8262b, 0x3326ad73, 0x768f57ea, 0x5597a6af, 0xab850721, 0x2e9e398c, 0x62911f73, 0x484912d3, 0x5adda948, 0xa06189e2 } }, { { 0xd0ca1133, 0xc27e325d, 0xd1bd689c, 0xa29f0cb6, 0x7b78355c, 0x7a378ca8, 0xcce6019d, 0x7f2f8bc3, 0x573d3549, 0xfa3ebe28, 0x288fe6f, 0x631e5543 }, { 0x42618b47, 0xce20004a, 0xd747af28, 0xe7545ca3, 0x5c06a3ee, 0xf2f70220, 0xfc97521, 0x55702c0e, 0xe8fbeb, 0x585a04c9, 0xbb8e6e49, 0x1d0b4e4 }, { 0x51e44ba, 0xdc1c6cc3, 0xd8288533, 0xecd16eac, 0xac89c3d8, 0x41343762, 0x76a8fae0, 0xd95c9470, 0x6ee43c38, 0xb08ee994, 0x9280a261, 0x9d5eb3f1 } }, { { 0x75a0f212, 0xdebf3e24, 0x33036b25, 0x9304ad23, 0x9659fe17, 0x1596330c, 0x2a1029c, 0x6fef9f3e, 0x82efdb97, 0xc5ebf301, 0xb87ecda5, 0xeb9b1acc }, { 0x8cba0f1a, 0x622a5b7a, 0xd61b8b2d, 0xa90d1f70, 0xd74e4aed, 0x1b01b54, 0x8ca5f6e1, 0x8e8c637c, 0xc9d6d78f, 0x433a139d, 0xef3281a2, 0xd294ee1 }, { 0x1386c7e3, 0xf33809c4, 0x342a6a0, 0xcd3cea68, 0x5ed3797c, 0xb7778109, 0x85898b14, 0x232d63f1, 0x31e2ac1a, 0x5752cb68, 0xab481570, 0x7c53cea } } }, { { { 0xf9c14458, 0xfca11d11, 0x257d7400, 0x9672fbd5, 0x45ccbfe8, 0xea45962, 0x8aa98197, 0x28c7dd86, 0xb2fd4063, 0x84b2939b, 0x31164f7c, 0x1c1296ae }, { 0x8c9b0c9d, 0x90f1de5b, 0x84e54cc4, 0xf4332885, 0x1e5c41ae, 0x752e208e, 0x9a3f39f5, 0x5594c4b3, 0xc8b111b5, 0xa9e509d1, 0x6e5455e1, 0xe842208b }, { 0x33165f94, 0x9099a33b, 0x6c4c0237, 0xc80036c2, 0x8469f842, 0xd24f1582, 0xc9547573, 0xd49e2ee2, 0xe303ee98, 0x95f18926, 0x91199ee2, 0xe17ad317 } }, { { 0xba5760fc, 0x5561eb39, 0xea114b94, 0x9d490d16, 0xbb8e1051, 0xba80b42e, 0xaea8f66e, 0xa402e974, 0x7a9d4f51, 0x5e8f6062, 0x764a5582, 0x7282e96f }, { 0xbccc1ab2, 0x2205df40, 0xc7bcae79, 0x246c5f3b, 0x92faedcc, 0x3b076830, 0x28ffb729, 0x970bcbde, 0xaa6a2777, 0x5b01c9e0, 0x14337fa5, 0xefb9c502 }, { 0xd14fa53e, 0x06508c, 0x501008ad, 0xf9b0ccd6, 0x679901f5, 0x801ee124, 0xced5dfd8, 0x5c90b9c0, 0x5303447c, 0x103e6004, 0xac03a480, 0x6c9dce34 } }, { { 0x12ac1ab0, 0x40a88389, 0xfdb3401c, 0x5a1fb554, 0xef0249df, 0x53f211ed, 0xaedd8c3, 0x6a843f88, 0x10de73fa, 0xe3480ac7, 0xa087a02a, 0x80949f55 }, { 0x8b797936, 0x7ce077e, 0x7f6cadc0, 0xc5056d62, 0x2a326a55, 0x32f831e, 0x1fbe502c, 0x41521d1b, 0xbfc6a4ff, 0xb47558b6, 0x6cf62bf8, 0xd4cb6aef }, { 0xff24b2a, 0x4250621d, 0x17943cf8, 0x7dc61fc0, 0xb30f1592, 0xc1caf1e9, 0x8cd4f38, 0x7f196917, 0x47455af1, 0x9d46821e, 0xaf6acca8, 0x1fcad9 } }, { { 0x39f9ad2c, 0x2d52125a, 0x2435d9b1, 0xdf01fc1b, 0x20472139, 0x284eadbf, 0x720de6cc, 0x8cd415a, 0xc307e446, 0xbac35462, 0x4f207b73, 0xc065c392 }, { 0x1ad98e64, 0x18fcda4f, 0xe42534d8, 0x3fe619a4, 0xe74adc21, 0xe91998e0, 0x2ba4dd9d, 0xaa69880e, 0x195e4745, 0xba35edf7, 0x69f1da5a, 0x9cc3e43e }, { 0x9ddc2f8b, 0xb2542e97, 0x88b8a382, 0xebd31e1f, 0x9c0d3c40, 0xee8ebd04, 0x20d32ba9, 0x3d5e58ed, 0xdc04aa92, 0x28176a94, 0x89fd55a4, 0xaa225b05 } }, { { 0x17139b80, 0xd17d6be3, 0x6cfab9c4, 0xf9224c9c, 0xc7c4036e, 0x4e93adf5, 0xdea92115, 0x5f915a1, 0x929d2537, 0x32f0709f, 0xc2f4b815, 0x19c57b47 }, { 0x49b04dc7, 0xa73547d0, 0x8ac639e2, 0x52cf6dfd, 0x3df9e2bd, 0x8846b79e, 0x22093a72, 0x1ca42bd, 0xebe6f5b8, 0x3a962768, 0x6aab71f, 0xb0a161ec }, { 0x4fadbab2, 0x5dcc953d, 0xc8cdc7e8, 0xbcf54112, 0x61677fa8, 0xa8d2479c, 0x9a2d7a56, 0x89c501f1, 0xcfaaa202, 0x8c29d52c, 0x8a7c0053, 0x26c587c2 } }, { { 0x30b07aa2, 0x8e83c060, 0x946878d4, 0x7835729e, 0xda6e7405, 0x9c4d8e11, 0x1c385431, 0x972849ab, 0xebe3e802, 0xd4e37405, 0x53b47787, 0x1717edbe }, { 0xb8cf2195, 0xf7ef6e74, 0x40bfa430, 0x31aadb1d, 0x52612991, 0xb3948158, 0x3708155, 0x2b4e937b, 0xd577c638, 0x7b5fde74, 0x79cedba5, 0x95a2c8cf }, { 0x6720f3f7, 0x8458b667, 0x79b7a84d, 0x1f21e66f, 0x4783c25b, 0x78aac9bb, 0x37388afb, 0xc43289fb, 0x334c8ffe, 0x5ee36cb1, 0x3547360a, 0x456a8c2b } }, { { 0x16e88c73, 0x73ba8f1, 0x24c63653, 0xd88e1666, 0xfe28213f, 0x6541a85a, 0x26465841, 0x1df76fe3, 0x2ccf261, 0x5bbc4a29, 0x46f6859d, 0xa7708fb6 }, { 0xc2b57c89, 0x3f6f5436, 0x26a2dd18, 0xb6ba5cdc, 0x20e8510, 0x429f60c3, 0x612690a1, 0x55cc8863, 0xca3b6996, 0x236429a5, 0xd829f684, 0xe65fe8ab }, { 0xb0133d3c, 0xdd66199f, 0xc21cc04e, 0x72597d77, 0x68908c7c, 0x29fe7b0e, 0x40bba68b, 0x92123471, 0x1280b5e3, 0xa0b29612, 0xb5fc639d, 0xa4ccef09 } }, { { 0xb5f0829a, 0x8e94a9e7, 0xd7ba0f5b, 0x74558ae8, 0x8138b276, 0x6b2b4ca3, 0xbde3e806, 0xea4d3a5e, 0xf1d4788a, 0x58affe98, 0x21a10cf9, 0x9aeb62a }, { 0x6210ccc2, 0xf700ea96, 0x13a8c817, 0xd016f706, 0x7fd3ba4c, 0x474ec428, 0x5494630d, 0xc344a65a, 0x192e455c, 0x4772f157, 0xb0f481cc, 0x2bcafbf7 }, { 0x6f188447, 0x52f1aab9, 0xdb277b0b, 0xaeed0e95, 0xff6ff877, 0x9864c828, 0x2d133f44, 0xa976b0aa, 0x387a7b3c, 0x614145ee, 0x9fa751b3, 0x7436303d } }, { { 0x1993086b, 0x3e42a530, 0xd8eea38e, 0x913ece8c, 0xc9f4f2bf, 0x416ad66f, 0x982f061c, 0xe28fff8b, 0x9366ca60, 0x3aaa369a, 0xd4122355, 0x2260f932 }, { 0x86725a06, 0xf5df7acd, 0xcd14c4bd, 0xf98d2bec, 0x5926992d, 0x2cde9435, 0xe7cefe6f, 0xae35f366, 0x450c5d82, 0xb6f3b2ce, 0x4b9bc15c, 0x2224758d }, { 0x6f9c780, 0xb1f0abf8, 0xa1d97ef, 0xaebf0f7d, 0xc64f2964, 0xf98455d1, 0x5ff34967, 0xe9e91515, 0xf6dcf70b, 0xf08a4a98, 0xcb6948ac, 0x668584c2 } }, { { 0x85304a5f, 0x8ff663fe, 0x5a05ebc1, 0xe7b67307, 0xa1b38de6, 0x57d3f878, 0x7df5c49c, 0x3600f4f, 0xfa6b22f9, 0x7aa7d4b4, 0x209ff28e, 0x517e2ef8 }, { 0xef2886ce, 0x2251fd2a, 0x1529f32e, 0xc203888b, 0xaa5c9990, 0x52e93d8e, 0x1ffb03a6, 0xd3fc4eef, 0x8ab32aaf, 0x54b561dd, 0x795eafe4, 0xf4cbb001 }, { 0xd5aa5815, 0xf2eb1bf1, 0xebfada0c, 0x417d9359, 0xd0b0e2c4, 0x9f95a8d5, 0x2cd9a073, 0x3b3f524d, 0xc8c7e14, 0xdfe608ea, 0xde18c2a3, 0x90a0920d } }, { { 0xb19d8d8b, 0x4090bf3c, 0x8b800403, 0x620aab25, 0xb74bcd1a, 0xa7ad97e9, 0x84566c1c, 0xb4343771, 0xd35ec7c7, 0x1595428c, 0x33e8c4c5, 0x99098091 }, { 0x56b3e4d7, 0x4a6cfd3e, 0x1b695e64, 0xacab7214, 0xf431faf6, 0x7638a0ab, 0x3195b1b0, 0xc0263202, 0xc96ad530, 0x3aeb7c62, 0x3451fb73, 0xb19e25d0 }, { 0xb51cc0fa, 0xe50e3f91, 0xfd8ecb95, 0x20d4c368, 0x6f5513a5, 0x12455cff, 0xc84e0444, 0xccb1d146, 0x9d3fc9e7, 0x4398fd1a, 0x4213f996, 0xf3530873 } }, { { 0x1efd2426, 0xb23fa2d2, 0xe0c0ac2e, 0x24c27a06, 0xb33de56c, 0xe354b3c3, 0x11710c0c, 0x945b807c, 0xa59b13f8, 0x466217cb, 0xe234c099, 0x001170 }, { 0x5cb1d6ec, 0xb36e8c69, 0x1ae0499a, 0xebfea004, 0xe229821f, 0xbbc0935a, 0xc112fc4e, 0x5869aee0, 0x80414fe5, 0x49729e1d, 0x3d415490, 0xdfcc086a }, { 0xf9bcce4, 0xd787c807, 0xbf78b356, 0xe38101c9, 0x9e64ec3d, 0x550ebe21, 0xb27d8149, 0xc7b99719, 0xe55b5a84, 0x16709281, 0xc52da155, 0x370bae03 } }, { { 0x9566c6e3, 0x34531369, 0x1c083393, 0xca43184c, 0xccaf3416, 0x7fa14335, 0x93fc696d, 0xa1c586e4, 0xbfb69962, 0x6306cd8b, 0xe8f26665, 0xcd4b2f0b }, { 0x2b228e09, 0x25f1a6c9, 0xcf7ca3d9, 0x5d4780b1, 0x64908397, 0x9e8bd457, 0x485b98c0, 0xc9083892, 0xf34e804e, 0xbc14a6d2, 0x4c7b194c, 0x96f381ed }, { 0xe83dd88c, 0x795f88cd, 0xd410a2f9, 0xa10461c, 0xbe254507, 0xafde835e, 0x9b581b31, 0x94164b12, 0x42c5d32a, 0x94e91288, 0x85e3d8ea, 0x2eb72ef1 } }, { { 0xaf2667d8, 0x4e880e72, 0xcc3b0c4e, 0x420d2561, 0xfdc4516b, 0x590a753, 0xbb88ecf7, 0x14435aea, 0xa1b22386, 0x6a8cbded, 0x4f00bfcf, 0x68d8f72e }, { 0xa07b9fab, 0x3c010831, 0x1ede50ce, 0xe5346cef, 0x706855bd, 0xaacf34d1, 0x115aa23e, 0x9c8573fe, 0x7c3fd7ee, 0xcc993031, 0x351159fe, 0xe7b32e55 }, { 0xe73ac60, 0x8d881390, 0x3ab73b3d, 0x4a5b08b0, 0x9f07ed54, 0xa07288a, 0xdf7cba65, 0x6e7686a1, 0x9255b49e, 0x62b02ff1, 0xdc21eda3, 0x6ee8f762 } }, { { 0x6f17fc9c, 0x275128a6, 0xf6be4d87, 0xe9eea8c7, 0xa4a90908, 0x77460b7, 0x87254e4f, 0x2b80c079, 0x870bc7d, 0x5a493d82, 0x4e3c6d04, 0x8553966b }, { 0x6539000, 0x67333259, 0x56640dc6, 0x1e79e83d, 0x4713dba9, 0xc9a2a3c, 0x9c24b3b7, 0x8a49ce2d, 0xedcf81ef, 0xcae1a666, 0x96b2a44, 0xb33aacfe }, { 0x46419132, 0x17804a66, 0x59ecd62b, 0xdadfd0d8, 0x982df41c, 0xce932f44, 0x61b53c9b, 0x68564fda, 0x3c20d72f, 0xe2b8100b, 0xde6df676, 0x1b2bd1ea } } }, { { { 0x398a9226, 0x559118df, 0x347ee2ef, 0x26471f54, 0x8ce404c9, 0x8f7af377, 0x4f61b76a, 0x4cc5668e, 0x6e602f67, 0x7eca35b1, 0x9e14ef4, 0xaf37d89e }, { 0xa3cdf35d, 0x32e7ac13, 0xc94a4ab2, 0x425642b0, 0x49321f8b, 0xa500217d, 0x27dceff5, 0x12f4c9ee, 0x5b1045d4, 0xf15367cc, 0x2e795be2, 0x2e52d10c }, { 0xaf2d61fb, 0x1971414c, 0xd0273067, 0xe8e8ee59, 0x379c033a, 0x3f6a861d, 0x539460b8, 0x88775edf, 0xa56b91b5, 0xa7123fc0, 0x1227652b, 0xf25dfab6 } }, { { 0x86d9ca09, 0xc011b90f, 0x7e443802, 0x1f8f8010, 0x883cee4f, 0xd995c57a, 0xde04bf37, 0x96641eb2, 0x9fa5dcb5, 0xf9ad3a27, 0xbc10f11f, 0x92e7037a }, { 0x97f1ae77, 0xea80ab57, 0xf46ecfa6, 0xa663bc3e, 0x6550e49d, 0x48b76b, 0x5ed718a2, 0xa9d9b8db, 0x7454316a, 0x53150fa, 0xf4f5c62, 0xab392da3 }, { 0x1e84f9ed, 0xcd77c098, 0x4134ebf0, 0x5888f664, 0x82ad082f, 0xe78f5fbc, 0x36a39361, 0x81152bee, 0x19227961, 0xa5f22f89, 0x79194834, 0x5f9b8031 } }, { { 0xf057d731, 0x79a28e0b, 0x4b370940, 0xab4a81bf, 0x41ec8907, 0x14ec7534, 0x80369faf, 0xc6764cc4, 0x8d705480, 0x7d50e7c, 0x650f2739, 0xdc9db77e }, { 0x236d4b2a, 0x21ceb28d, 0x3537eaa, 0x24ed9dbe, 0x10249511, 0xbb87d93c, 0x76b38e50, 0xe78747d1, 0xe68a0c2e, 0xc3ace72c, 0x4a273032, 0xef5092ed }, { 0xfd37ad79, 0xf001ac4d, 0xc6e18291, 0x6a77dcbd, 0x3813accc, 0xe29b9810, 0x926621d9, 0x5d03f0e2, 0xda9b7696, 0xa05a2333, 0x7f70e582, 0x6b497f40 } }, { { 0x58eac44d, 0x767d85cc, 0xe43726b6, 0xf015406d, 0xed157453, 0xc6e1ea5a, 0x118a16aa, 0x86e6a3f9, 0x35a81578, 0x588b2a57, 0x29f74fc9, 0x7b9ea749 }, { 0xef870905, 0xab973306, 0xdac14c4, 0x959accce, 0x7e007c74, 0x122201a5, 0x781b32ec, 0x4136dd00, 0x28e7a5ac, 0x58bd291a, 0x61fdc30f, 0xe3c4a128 }, { 0x1fc304de, 0x18061b8, 0x1ee8b542, 0x3509e325, 0x9b14d493, 0x37d48900, 0xbd03e62d, 0xb5e7bbac, 0xecf6d7c9, 0xd168317e, 0xc2016df, 0xc0ec6d7 } }, { { 0x95abe20, 0xa1c06905, 0xd167bd2e, 0xdf22c4cc, 0xf3ebaafb, 0xfdc18aef, 0x13e14b65, 0xe029be33, 0x2f11044c, 0x694d2c84, 0x8374a611, 0xb1901498 }, { 0xd46a0433, 0x725d4ddb, 0xc6d7651d, 0x5b48af5, 0xa183238d, 0x6a9fb37a, 0xbb85131c, 0x85914a9a, 0x7e6c71f5, 0xee44c938, 0x4d4e814c, 0x23b88f2 }, { 0xf9d4c7b7, 0x905d9315, 0xadbacdbb, 0xf12b102f, 0x9ac74e1d, 0xa5f35ed4, 0x502487d, 0xb0b2bc6a, 0x977dcc78, 0x9879d5f, 0x7394b3f9, 0xb71ef100 } }, { { 0x6c251814, 0x8865b84f, 0x88144057, 0xfbb702aa, 0xa94ec547, 0x5ece43f9, 0x70a9efe6, 0x78a34ee5, 0xd39b827b, 0x1cb4574d, 0x3df3a92f, 0x3f10372a }, { 0x127722ba, 0xed829082, 0xf0c3d173, 0x42fc65a9, 0xfde211, 0xbf8cb1b1, 0xb283d69a, 0x3dd236df, 0xa8710e62, 0x915e192f, 0x241d8c1e, 0x3106c842 }, { 0x69983c1e, 0x2da0508f, 0xbdcb018, 0x3d24900e, 0x5e9b4e91, 0x33f09380, 0xf08efedd, 0xc474f73f, 0xa020940d, 0x882fed3c, 0x5ef6ad82, 0x3c1128fc } }, { { 0x792ade7c, 0x51f03f24, 0x71412748, 0xf66d8196, 0x8a50481, 0x83d53e97, 0xbc366992, 0x90b7f76, 0x73e3f28b, 0x16737b8e, 0xc280826c, 0xce13b30f }, { 0x30fd259c, 0x6a840f04, 0xf7f2d2b9, 0xc5933f97, 0x498c987c, 0x66b763db, 0xe74d8010, 0xb73d2d1e, 0x6c41efeb, 0x78444494, 0xcc9a117e, 0x8c613846 }, { 0x1f76a583, 0xc1a326c4, 0xa5333b34, 0x2995c4f9, 0x9e45f4e3, 0xceeb41ec, 0xdf64c6b8, 0xc8b82bf6, 0x12c25e1c, 0xf4b92d86, 0x11dbd474, 0xd5b49b24 } }, { { 0x5c969462, 0x6c874b3, 0x414481e1, 0x5f0f131a, 0xfc76707d, 0xebbaf95e, 0xb50ee550, 0xad9083e0, 0x83d82409, 0x1e47937e, 0x6ac48af3, 0x25806ea1 }, { 0x22fb74c4, 0x88887c31, 0xcedd2d16, 0xd9d68e67, 0xa561160a, 0xf9ef90c2, 0xcb440f19, 0x2ec03c3d, 0x20dc604d, 0x2d833c89, 0x6f50af2e, 0x1ad9f936 }, { 0xc4d4433f, 0x459decef, 0x95be417b, 0x58e64b66, 0x28e2df8f, 0xc5a48f8a, 0x35701f58, 0xb4debd9f, 0x7a471b5a, 0x8955b6ac, 0x97f8d35a, 0xea7e1894 } }, { { 0x492f34d7, 0x32dec04d, 0x9d317566, 0x9bb8f555, 0x9472162d, 0xf3624860, 0x3fe55c29, 0x48661a45, 0x4260b03a, 0xb235011f, 0x9872e1c1, 0xa13df98a }, { 0xa38f4de7, 0x496b0e3c, 0xc4ecfa6d, 0xe58c91d6, 0x7556df12, 0x3a579228, 0x2e28cca3, 0x52254815, 0x1229fb48, 0x7f2111d, 0x7bf5c212, 0x7acc1205 }, { 0xcd74ec9d, 0x9cf29fc3, 0x34f3523, 0xc65ddee, 0xdeda7568, 0x882c8346, 0xd4be0314, 0x2508e98c, 0xce265aca, 0x40ab3148, 0x5122aa2, 0x2b1eab1c } }, { { 0x26e1ae43, 0x3348c693, 0x6db7cc36, 0x09cad8, 0xc8e639bf, 0xe07d04cc, 0xbbbaefda, 0xf4a0cca7, 0x74d5239e, 0xf62162e8, 0xc3417bd9, 0xa75f250c }, { 0xcad181d2, 0x66fdd2aa, 0xf88b45a5, 0x660679ce, 0x7986551d, 0xa48804cb, 0x331c0e13, 0xcf41b825, 0x18bb6ba3, 0x71362a16, 0x7c3e729e, 0x66f4cc84 }, { 0xde763a15, 0x16a00aac, 0xccc8d3c5, 0x42140abe, 0x37856137, 0x24f7f37d, 0x5fa091c7, 0xb958ede, 0x62ba9a60, 0xaf329afe, 0x80c9133c, 0xcb552cd9 } }, { { 0x1dd15e6b, 0x1baee359, 0x9d08248, 0xb67e73e5, 0x5f4bd8a9, 0x2c9b7e5, 0x21f3026a, 0x4cd78218, 0x393c21ef, 0x3787ab59, 0x17655408, 0xd9fa4710 }, { 0x17b1c4c2, 0x49e133f8, 0x75beb734, 0xb10d88b3, 0xc6e6d012, 0xc30ade85, 0x784a02df, 0x4f744710, 0x90757eab, 0x15e5f366, 0x11dd8b2d, 0xad83ed87 }, { 0x84fe4058, 0x9ec5383a, 0x8e0c7d69, 0xdb7bc77a, 0xc4da2c8d, 0x1e085703, 0x912e350c, 0xa988fdf5, 0x9cd15c3e, 0xa8af924f, 0xf0e7b18c, 0xa78b142f } }, { { 0x874ab5eb, 0xb8133e0f, 0x883b2bfc, 0x8de78896, 0x959328d8, 0xbc7bc6b8, 0x9946e2b8, 0xd07be060, 0xd5a452e9, 0x826e6c4f, 0x3e4fe37f, 0x45a6fd08 }, { 0x33f289b9, 0xef864209, 0x87b59832, 0x23e493be, 0xf36979e5, 0x9082c742, 0xa69bf1d4, 0xd254624f, 0x4e5a9dc7, 0x13af474e, 0xc8c15785, 0xf8847731 }, { 0xbebce8cb, 0xc569bdf6, 0x4f4dd4d6, 0x12d17957, 0x4b4daa30, 0x970c3bb4, 0xd6e4a40b, 0x7d143455, 0x72632de1, 0x581dfb0d, 0xbbcdfa2e, 0x1a839588 } }, { { 0x8b1c88cc, 0xb739a835, 0x85c4575d, 0x7957fc21, 0x32a6b77e, 0xd75ac8c7, 0x834c990a, 0xb1356f64, 0xfa8b8bd4, 0xe20fd78a, 0xbf6f7db7, 0x80a0323 }, { 0x6ac36d2d, 0x6d173694, 0x12d1f78a, 0x21caa14, 0x4b442f58, 0xc806e014, 0xcf2cb47b, 0xe1d8a142, 0x5cac5d5a, 0x7882582c, 0x41262626, 0xf21955ce }, { 0xc5a775f0, 0xf76e5b9b, 0x9e481be2, 0x9fd54b50, 0xcd7d3207, 0xe171910a, 0xbf119289, 0xe08e2f4d, 0x4133ac23, 0xafb3b58, 0x9d220226, 0x894f566 } }, { { 0xee943b0a, 0x1f38d450, 0xd724148b, 0xece2eb9b, 0x132aec29, 0xb7aff56a, 0xab261db9, 0xf33db7d1, 0x84ab241, 0x520954e6, 0xe6d4c292, 0xdcddfb6d }, { 0x73fbcfb5, 0x8868052e, 0x64a879a9, 0x9c86a5fc, 0x68a50042, 0xc2e6772a, 0x8bddaf5d, 0xdc5900fa, 0x2b990a4c, 0xee61c0a1, 0xed71c2ba, 0x8bd882fd }, { 0xdcbca1bb, 0x4809266c, 0xa36f22ab, 0x5a8c7ae4, 0x9e050f65, 0xaaf41d6f, 0x51687822, 0x75381b29, 0xf421ffe5, 0xbc1c4b3a, 0xf1e3a119, 0xaa113e8b } }, { { 0x34424395, 0xdbf40115, 0xb0606b12, 0xb76e7559, 0xa50692a0, 0x76ce2b2c, 0x8bfbebba, 0xaf46349c, 0x3d042d3f, 0x59cc96f5, 0x245e51e4, 0xaee9f1fa }, { 0x67344f2e, 0x13265734, 0x5a64d869, 0xa31ecda5, 0xc767e1db, 0x1f191bdd, 0x11b32228, 0xd27f4cdf, 0x8129e371, 0xcf7218ed, 0xf402f07d, 0xb6549c45 }, { 0xa2ccd370, 0x8b264f00, 0x7695d72b, 0xdd5e60fc, 0x52f227e6, 0xa0655541, 0xa11ca7e3, 0xf5010114, 0x5ff6006b, 0xeea331dd, 0x63847f0f, 0xafe561c4 } } }, { { { 0xd50ac9ec, 0x271e5d7a, 0xaed36897, 0x9edfab11, 0x2df7e434, 0x8e030246, 0xbb06cf6a, 0xc531f162, 0x50021fb1, 0x69117105, 0x712bf33d, 0xa96426f0 }, { 0x657381d9, 0x9724af2f, 0xee01901e, 0x263ffc9d, 0x8980d8a3, 0xea253f35, 0xa3d913e7, 0xa4feb44, 0x8e4dfabf, 0x61cea932, 0x8944ae77, 0xab06602 }, { 0x5a60c336, 0xfe4f40b0, 0xfc7322c6, 0x2b1fdef, 0x21e146f3, 0xbc160697, 0x882653d5, 0xfce065ee, 0xab19c871, 0xbefef8f5, 0xbc2c2a49, 0x6e66d081 } }, { { 0xe91131ee, 0x71331e4f, 0xda712d6d, 0x91f368ca, 0x49f6a3a2, 0x3ecd4c4b, 0x56ff68ca, 0x1a165ac, 0x2da125ad, 0x18fd01ef, 0x6b0eacfc, 0x858e512e }, { 0x7169a01c, 0xd11126d, 0x4d080fa7, 0xc4caf837, 0x3cf07a40, 0x66aaae60, 0xddd3cea5, 0xb067dc0b, 0x792d0c8, 0x78bc8b60, 0x827e597e, 0xe88e3988 }, { 0xa29a9165, 0xeecf0c5b, 0x78d48490, 0x6da13d18, 0x273529d8, 0xd476c0e9, 0xd685bd10, 0xe6a4d9ad, 0xca3aabe3, 0xd8bb73b4, 0x42074b68, 0x641d3a14 } }, { { 0xb8a27055, 0x4db4f925, 0x4fc12fb6, 0xe899acc6, 0x7f9f6965, 0x8c886798, 0x707682d1, 0x9ac314e3, 0xe4235de1, 0xdbef14b2, 0x6b2c26dc, 0xbc5bf110 }, { 0x63af7d31, 0x8df548b9, 0x9ec3e660, 0x8d02965b, 0xfe3892e, 0x3446dff2, 0xe1dd9a33, 0xb3c18633, 0x472c5ae, 0xd01c999e, 0x58e316f6, 0x9ca987f6 }, { 0xab6fd796, 0x52304c9a, 0xdc1a9f99, 0x1260d2a8, 0x903b87d7, 0xb53e6261, 0x4005380d, 0x18cdaa1d, 0x50bdbf8c, 0x9b798438, 0xcce51684, 0x95853c91 } }, { { 0x3859d547, 0xc49dea74, 0x37ad2117, 0xbcbcbbf6, 0x95ccc7b, 0xbc3527ef, 0x660da835, 0xb0688653, 0xae459b55, 0xd5173cb3, 0x270b87fd, 0x55ce17be }, { 0xf3ccd214, 0xfe5e8cd2, 0x7ec9c0f0, 0xc4b92805, 0x32b22d88, 0x95909bd9, 0x7eb8b5fd, 0xfd043f52, 0xa3d1d2ff, 0x5499a05d, 0x453f4f4f, 0x25bc90eb }, { 0xebf45edb, 0x419bfd8f, 0xd4f4b338, 0x8d32ae5d, 0x942b9683, 0x9dbf80a6, 0xb5f7d2a6, 0xa140c1ce, 0x8d1498f5, 0x5316b16c, 0x2ab21356, 0xefce33cc } }, { { 0x93a14979, 0x3af19b9e, 0xaca52a80, 0xe55016c8, 0x52cb04ce, 0x103d2283, 0x5db6e3a, 0x35b44777, 0x9f049541, 0x825e4e5e, 0xd369fe56, 0x90ee839b }, { 0x1dc3d704, 0x97f5561e, 0x210b6c10, 0xe5f35dfc, 0x8648094e, 0x59714524, 0x44c9ab61, 0xd34e475b, 0x66f758a0, 0x8b416a5d, 0xb81cb852, 0x21f9d390 }, { 0x9579c78b, 0xa5ac46e4, 0x898d9027, 0xdefb98d7, 0xe4141bc6, 0xfa866ffb, 0xbd2a110f, 0x1103d7e7, 0xaadca14, 0xd283a37f, 0x9ef71b78, 0x130b20e3 } }, { { 0x7cb6b4fc, 0xab82a5ed, 0x9d4e0981, 0x502733ae, 0x8087e06d, 0x5c6e5a9e, 0x18c4688a, 0x66a0310c, 0xac45f12, 0x468b9bd2, 0x83c8a66, 0xd58bec04 }, { 0x9dd538b4, 0xb579d2c3, 0x20adf38f, 0x82591b1e, 0xb98ff5dc, 0xdc4e2f6f, 0x6d6a0776, 0xab9648a6, 0x966e77bf, 0xb815f4c6, 0x4d544246, 0x9ee0001a }, { 0x9fbdcfb4, 0x18a587a6, 0xc17ca8a, 0x774a57f6, 0x7f02ab75, 0x20c19390, 0x8bbc324a, 0x1f5af533, 0x49d44b22, 0xda3f7c94, 0x2748a290, 0x6dc1dba6 } }, { { 0x9d8bbe26, 0x486f43d1, 0x233179c5, 0x2178eff1, 0x76d60323, 0x6c5612fc, 0x15758daa, 0x4af89e6b, 0x42856e4f, 0x6929fda7, 0xf99d318d, 0x2e79a6a0 }, { 0xa7ad8950, 0xe1d7fde6, 0xf8853607, 0x13c8c21b, 0xb55a3801, 0x9ff730b2, 0x72fba284, 0x2d76e767, 0x9af92223, 0x655e9964, 0x762ad035, 0xe7b1ff5e }, { 0xf7adb9dc, 0x69f0404e, 0x245057db, 0xd0d09bf1, 0xe5a4cc6c, 0xb4ab8022, 0x7a62041d, 0x22bee9fe, 0x2a993ed2, 0xc7517e52, 0x9bc3bc2d, 0x5a05c93e } }, { { 0x2dfaf2b1, 0x2439724b, 0xca99f702, 0x12724eef, 0x29c3934f, 0xe6d2528, 0x56a7f904, 0x59cd8cd5, 0xd4d8758e, 0x796252ac, 0x258c5171, 0x2568cf4a }, { 0xf826f835, 0xa367692a, 0x1d8bb03c, 0x234fa65, 0xba3c8315, 0x65f499b1, 0x38f60bd4, 0x41080c86, 0xde327c1f, 0x57d18040, 0x7a213e0d, 0x8c57670 }, { 0x51efa545, 0x7ae933fc, 0x6f37cfdf, 0xafd32a76, 0x7c3bf6bc, 0xeedfacbc, 0x5dc8a2f4, 0x61cfc228, 0x163e5242, 0x6c1e7ea9, 0xafa554fa, 0x3747452 } }, { { 0x25e39970, 0x750231c1, 0xfcdd2d26, 0x1fe33c69, 0xfa9fef3d, 0x20281fe2, 0x50725b9c, 0x209f84ae, 0xb8254775, 0xb188bb28, 0x6fa30abe, 0x13df9274 }, { 0x4cac2876, 0x58450034, 0x7a27f8f2, 0x9dcec21a, 0xdafa5ae1, 0x34567663, 0x210802b8, 0xce1d9880, 0x3e98d293, 0xe064639b, 0x7e1f8d1, 0x32baf6ec }, { 0xa94f310c, 0x7e33237c, 0xd5e2f809, 0x59b3ede5, 0x8ef454ed, 0x1337b933, 0x45b4d0fe, 0x22ae977f, 0x4d7a9156, 0xb04a921, 0xab6dc08c, 0xba5d4dc } }, { { 0x6a0134, 0xb13b512f, 0xdec7e875, 0x9dbf5e68, 0x401ac52a, 0xbca48082, 0x302aa4c9, 0x575f5f9c, 0x109330a1, 0x59a32bc7, 0xaf22a377, 0x6ca9bae9 }, { 0xc434946, 0x532f5a37, 0x8b3efa55, 0x5825cba6, 0xdcddc754, 0xa74e09b6, 0xcb6f86ed, 0xe1375d21, 0x1ba99171, 0xcc32ec59, 0xde3960d0, 0xb60dc3e0 }, { 0x770cfc6f, 0x8b33db2d, 0x2b96a974, 0x202976f5, 0x23e105ef, 0x65895dec, 0x58a02abf, 0x46158f83, 0xccf8779e, 0x5e259a6a, 0x952538a9, 0x6d652f72 } }, { { 0x54b7add3, 0x3bf162b4, 0xcf093501, 0x948e27ab, 0xdf634bd, 0xfabfb11e, 0x871cd1df, 0xdf3882b8, 0x3d40ab3b, 0x69be366a, 0xb039b8cd, 0x72cc2853 }, { 0x1d98342b, 0x97d8d62d, 0xe3f55cdc, 0x8915c2e0, 0x35e3e040, 0x4b8e863a, 0x4c313d86, 0xebae7d22, 0x5fed4bb9, 0x5551ea2d, 0xc6645fb2, 0x529beb3f }, { 0x82767fec, 0xf0442ea4, 0xdcff55b6, 0x59550854, 0xab99fcec, 0x8f35e0f7, 0xf0e2365c, 0x1bdcdcd6, 0x63efb82f, 0x42bf8723, 0xfd0c25e1, 0x1de8b1d2 } }, { { 0xeb142bc3, 0x531588a5, 0x9e4a0597, 0xb2419e7e, 0x2be9e6ee, 0xe2a91c0f, 0xfbfa7e8, 0xb679e286, 0xee0b6cc8, 0x94d4918e, 0x3a612680, 0xff91a1fe }, { 0x237f0c70, 0xe4587b2a, 0xebeab3db, 0x53fbefe3, 0xa6f08a25, 0xe8ba84bf, 0xf9a932fc, 0x96f12b18, 0x2fbf7a66, 0x87dfe2ec, 0xd0aff3b7, 0x9e9edb2d }, { 0xdd6a5430, 0x4635657d, 0xc396c6f9, 0x8573cefe, 0x6094e1f0, 0x8722178b, 0xde89cad8, 0xca4d3ad4, 0xe436a2a5, 0x3d36b935, 0x76f110c9, 0x8fed1a56 } }, { { 0xe82a9421, 0xb8d31cde, 0xfc4cd742, 0xb0ce26b5, 0x266e4049, 0x38d1144f, 0xfa66794e, 0x19f9a0b5, 0x6948777d, 0x4fed8c76, 0xd8708931, 0xce597ed1 }, { 0x83ca5990, 0xdf8d0597, 0x18ca31b6, 0x194c3c0c, 0x20933b86, 0xa3772f86, 0x2634a870, 0x2500d4fc, 0x605f67d4, 0x7d668e36, 0xb239b261, 0x35896d2a }, { 0x696c804e, 0x3c20a980, 0x6eecaec6, 0x9160c280, 0x7a830554, 0xf788c9fb, 0x79a0505d, 0x3ee34841, 0xdfa73075, 0x41bba7ce, 0xa6efc972, 0xfc64f0ec } }, { { 0x5e72bd9c, 0xe9f6c684, 0x9b6cc92, 0x68c2efe4, 0xbf141c98, 0xe8f3e098, 0x36ee7d81, 0x77334bbf, 0xdcf78bb9, 0xe4e28ade, 0x6374e176, 0x375368c8 }, { 0xb88782e8, 0x71f8c562, 0x87d514e4, 0xcc0c0438, 0x881fd7d8, 0xec5b32f0, 0x917e14f3, 0xfcd155ee, 0xa1e84734, 0x6cc2ab1c, 0xa273a3b6, 0xf5a685eb }, { 0xd5e9188e, 0x29fb0da0, 0x211ba05b, 0x4e0b64e7, 0x9e3963, 0xad2319cf, 0xba126895, 0x14820c57, 0x86f9de8e, 0x6925bda1, 0xe4119707, 0x6f8c803b } }, { { 0x97eb57a4, 0xd7e1625a, 0x40298bdc, 0xf5c2d4a5, 0x3deb8252, 0x36d7f4bb, 0xfb8c2c54, 0x48fe2274, 0xd0b749fb, 0xd8ca64bd, 0xae1aa81, 0x94c09a9f }, { 0xa96ddb8, 0x93463643, 0xf6d79448, 0xec73e153, 0x94f560a, 0xb6d339c2, 0x553ee677, 0xdbd9a039, 0x1a9e6679, 0x715a5e3b, 0x801fa430, 0x32f2bd42 }, { 0xf90f84d6, 0xf8e6dfe9, 0x5550de30, 0x8dc23f01, 0x8e3e333b, 0xb2ca14a4, 0x9614a39c, 0x887a0fa2, 0x4436e05d, 0x65955eeb, 0xe7d401ee, 0x4deb338b } } }, { { { 0xca5fe2cc, 0x7d75545d, 0xb836920c, 0x7bcb7454, 0x4b781dbc, 0xd98336c0, 0x4f902c6b, 0x373b35e, 0x5b485eab, 0xbc69dfd0, 0x51bf055, 0x7f807743 }, { 0x1c1e80e2, 0xd44c08a1, 0x902074f7, 0xa8da1050, 0x24e4c00d, 0x2b44359c, 0x6f27860f, 0x27cc0bff, 0x57832bfa, 0x737260c8, 0x197c7f8e, 0x6348b052 }, { 0xe007c6a5, 0x4f6901f8, 0xd91baae1, 0x3b79801a, 0x7711484, 0x39ab03fc, 0x7f0ecc96, 0x97628b1b, 0xf1423cca, 0xe90b4a9a, 0x89a04ad3, 0x46bee2e8 } }, { { 0xb5ed0d2, 0x4c61a23, 0x584c4a35, 0xab9591e8, 0x87b277f, 0x2dab1ad4, 0x7030fc2e, 0xd753414b, 0x5e776e41, 0x28f0afa, 0x256faba4, 0xf4e9ed4c }, { 0x26156633, 0xdb89cb0b, 0x80790d24, 0x45c8006d, 0x1970c038, 0x96179fce, 0xfeba5b0d, 0x811594bd, 0xfd9a374d, 0x73f4f770, 0x4ed05bc6, 0x2d3af1b9 }, { 0xe07aece9, 0xff5e9cb8, 0x407f6098, 0x6c48ea09, 0xa8342e57, 0xdc8de262, 0x792b5050, 0x75dc7367, 0xf71fa360, 0xd0d45044, 0x93ac78f3, 0xeaa9e302 } }, { { 0x799d1098, 0xa07041e3, 0x1831068, 0x1ccbb024, 0xc803f7a3, 0xedfcf5b4, 0x20462b60, 0x154a7193, 0x60cb0ee6, 0xee7ca7b4, 0x1721df20, 0x27aeadba }, { 0x2fecae15, 0x4f4c2056, 0xc8015f99, 0xc7c576b1, 0x64c87bda, 0xc9341ef3, 0x20f9db3e, 0xc303b2b, 0x197222be, 0x3fba04bd, 0x43cde8f3, 0xb02baebe }, { 0xb3ea4ee5, 0xb6e6bcd8, 0xe16db540, 0x74ba6ff8, 0x62d84bda, 0xe4b9b79b, 0x2ac0e633, 0xeeb0bbdd, 0x3ddf39e4, 0xc6df01a7, 0x816a5f4d, 0xa9b86736 } }, { { 0x66f9c46f, 0x88c92e04, 0x61c6fa9c, 0xc695a9c4, 0xb8884e9b, 0x814ab5ee, 0x2d70023a, 0x175c5db8, 0x71064a91, 0xbf2bf138, 0x5c8b4926, 0x10e1ce6a }, { 0xd6f884fc, 0x9defae91, 0x9fc21fc6, 0xd86ae8ae, 0x782f912f, 0x2f2f7a7b, 0xa2ee9cf6, 0x64461f37, 0xf8c5282c, 0xedbafddd, 0xe92a583c, 0x9660b73 }, { 0x7a5b293e, 0x6d70b9d2, 0x7904fc57, 0x7a410c22, 0xf1ce9d2c, 0x67395e62, 0xdb4c5671, 0x827e6cea, 0x474cdd27, 0x8c71d222, 0xd3b74b5, 0x7068844f } }, { { 0xe61338f7, 0x372cc417, 0x6a83115e, 0xf7b05ffb, 0x48edcfda, 0x4220ac5a, 0x4a620ad6, 0x8afd9002, 0xae3f95e5, 0xda74aebf, 0x8545bdd2, 0xc83083a5 }, { 0x3bd985d2, 0x4fc84657, 0xe921e18f, 0xa1e65901, 0xc23019cb, 0x5077d4f4, 0x492d7db4, 0xd8d60a4b, 0x756ec48d, 0x6e13bb29, 0x9459c137, 0xe255cfa6 }, { 0xfb253fcb, 0x9a68caf5, 0xbb4063af, 0x729211be, 0xb47b3c9c, 0x4ee7eb68, 0xb87c0a4f, 0xfb67ed3f, 0x678dd750, 0x66694fcc, 0xdc195181, 0x8640ed56 } }, { { 0x49c8053e, 0x17776896, 0x592db172, 0xc584dfb0, 0xb9031620, 0x4d9fe7bb, 0x2aea062a, 0xa87e3931, 0xc70fb701, 0x7a5e236d, 0x62c2cd67, 0xd6859034 }, { 0x677f6087, 0x59dc56af, 0x8a9267, 0x6fa5479b, 0x1867dbf6, 0x31171368, 0x446e1c3e, 0x8b656666, 0x19932af2, 0x3968aa33, 0x3b7c19c5, 0x695e072c }, { 0x35df9d20, 0x73a88cc0, 0xf2e51599, 0xdced8151, 0x650a4d97, 0x140a02ee, 0x7c83356b, 0xf57bf29d, 0xe906e642, 0x2ec58f7b, 0x626d1835, 0x91b4ce19 } }, { { 0x3752a723, 0x714e2a8e, 0xe5f85dc0, 0x78282ea1, 0xb4b4118c, 0x465d2eea, 0x534aeaf1, 0x31e34b75, 0x31214c57, 0xa966be3a, 0xae31a766, 0x125332dd }, { 0xb610660a, 0x4d2d4c32, 0x199c8b05, 0xee5b2a89, 0xacc90b44, 0x1030a071, 0x7f893168, 0x2db5150f, 0xf29bdd42, 0x8b7e3bda, 0xa85411f6, 0x347547c7 }, { 0x77481a60, 0x14800835, 0x8f610a93, 0xc8b61525, 0x5da25c81, 0xbe93bf77, 0xe9cdc39, 0x7cd1369e, 0x8f1b1f86, 0x4618f873, 0xedf455da, 0xc3e7f0b5 } }, { { 0x17ac7282, 0x6193dc3f, 0x2f5ee219, 0xcfe63b50, 0xca14b9e8, 0x448bca02, 0xe37ac8ca, 0x25f135df, 0x30349798, 0x23e0b34, 0x2574e71b, 0x5ef83fe2 }, { 0xc93ca6e8, 0x93398c94, 0x378527bc, 0xe36acfb8, 0x5c8bcf32, 0x8dbed92, 0xde73dcc6, 0x1db87301, 0x2ec2bfed, 0x79f2d6fa, 0xa07010bf, 0xc1b28b45 }, { 0x2604e954, 0x43d2aede, 0xa257bf82, 0x5149fc50, 0x9887646f, 0x9873fdb, 0x933be0e2, 0x83c6cde9, 0x1773f12b, 0xbdf73149, 0x7ea2ec20, 0xafa15e0e } }, { { 0x72c7d0f1, 0xed593859, 0xdcb4c448, 0x20f9f430, 0x6757e45, 0x498436be, 0x4d032f09, 0x36660fab, 0xba524d1e, 0xe22a0bed, 0x9024e70, 0xcc2e7e5a }, { 0x659ad222, 0xfecbcdeb, 0xd1bf1ad3, 0x26c9e0cb, 0x78d5ab28, 0xb09b934f, 0x977f9e99, 0x5842b408, 0xd0c4bcc6, 0x1081275f, 0x3754c3a8, 0x3cc6fff6 }, { 0x121ca471, 0x2e3fd2aa, 0x84b28230, 0x211298f0, 0xc214cb38, 0x3e31a3fe, 0xb956a18e, 0xcc8e6c62, 0x3a612752, 0x9ecf7376, 0x1dd6c233, 0x1744a614 } }, { { 0x8e2d345e, 0x966c0f31, 0x31521a4e, 0xa2eb42e2, 0x7f8367d5, 0x80bb1144, 0x16e86eb2, 0x702b2b45, 0x9a123aa8, 0xa941d23f, 0x7a1904f1, 0x9cb41966 }, { 0x93983b17, 0x9207d196, 0x918caa94, 0x221dbe6d, 0x42882712, 0x2aecd9de, 0x555228d9, 0xfe0d3da8, 0x4f434455, 0xed7a3c72, 0xeedcaad7, 0xa409bb02 }, { 0x11ee00f0, 0x40c1310f, 0x1167b481, 0xf64cfe53, 0x87b411f9, 0x433bd29e, 0xa380dda4, 0x1c90baa6, 0x2ff04f0b, 0xb13cf872, 0xe9aaa6c1, 0x5b41a471 } }, { { 0xb45f8d7b, 0xbac2fe75, 0xc4649e24, 0x34bb2a9b, 0xfcf0097b, 0x63f3a0ad, 0x7a6ce33, 0xd5bfaef0, 0x55ada596, 0xe3ac641b, 0xc6a18fe9, 0x4e8a457c }, { 0x86f43fa5, 0xb4cb8289, 0xc123f67f, 0xbbc97275, 0x9d0549e, 0x769613f7, 0x27078c1b, 0x96f84770, 0xa789dd0e, 0xb3290590, 0x9d9ee5f4, 0x78b31691 }, { 0x8a475120, 0x79954e1a, 0x4fecc9ed, 0xbb85bb1d, 0x6ff0a02a, 0x7367ee83, 0xb868a2, 0x13ffbc0c, 0xf79672fe, 0x16e94e59, 0xac742dab, 0x614ca552 } }, { { 0xff0a2eea, 0x6a288407, 0x9175755a, 0x31b8bfab, 0xe1932ff, 0xb01ec2d, 0x681c845e, 0x55190798, 0xf18b3cf6, 0x560950d0, 0x353d2d, 0xb0c0235b }, { 0x68e469c9, 0x35d859e9, 0xeb69937e, 0x2b5b6096, 0xd618d9e, 0x3a8801fc, 0xb44336ad, 0xe3a528b, 0x28275487, 0x758a3902, 0x1dcc2121, 0xf2fb064a }, { 0x76c4c67e, 0xab7b7100, 0xf150e877, 0x4d325d5e, 0xd100ebe3, 0xce21a93c, 0x99efb73, 0x7af79e3d, 0xd6abcfcf, 0xfc96f0ff, 0x5452eb03, 0xb4cc3d5d } }, { { 0xa5265da8, 0x82ddb350, 0x38ba6012, 0x40cc7557, 0x9063ffe2, 0x8ac69005, 0x86b7859d, 0xab201770, 0x8c77cba3, 0x57a84a42, 0x741daecf, 0x1f24651d }, { 0xdb01d236, 0x8dc03884, 0x386b629d, 0xb0cf3452, 0xb528c93, 0xa018fa9a, 0x72510458, 0xa09ff32e, 0x48e7fa41, 0xce70f4a, 0x32531add, 0x731c03e3 }, { 0xe3eb330e, 0xbdeab1bc, 0x137b8c63, 0x203cd59c, 0x570bf6cb, 0x5a5ff36e, 0x25d78a22, 0x20d4b93a, 0x5d306da4, 0x876735b3, 0xcabf6fc9, 0x80211bbb } }, { { 0xf1332998, 0xf165ca87, 0x54960f6c, 0x27ab151c, 0xa50ffc94, 0x8939acb4, 0xd350049d, 0x8873f109, 0x7ef465c7, 0x17eab970, 0x6e653b31, 0x69b84820 }, { 0xcdea0b1a, 0xd2632981, 0xcf6ad088, 0xe059b4a6, 0x470926f8, 0xeea3e850, 0x618b3eb3, 0x15ac805c, 0xdacf4ab9, 0xe2a9e269, 0xfd6f43f5, 0xdf53ffb0 }, { 0x148b83bd, 0xa58b75a6, 0x53d6f74e, 0x6d65353c, 0x468f8fb, 0x165147b4, 0x8b3f2f4f, 0xfa8f3d87, 0x2e4cf871, 0x7d7ac74a, 0x87bb4b0a, 0xb7edb649 } }, { { 0x6149399, 0x180ef023, 0xa911e054, 0x6355afad, 0xbf747f1c, 0xfa76ae57, 0x7f66e164, 0xbfcff506, 0xe08172f1, 0xdfd63197, 0x10977e2e, 0xe57d837e }, { 0x8fdcac7, 0xa5ac3136, 0xbf71bcec, 0x136688b2, 0xa14bd81, 0xf6dae16b, 0x9f876287, 0xd0d4efaa, 0x81b69a0a, 0xc5c2acd1, 0xb9819024, 0xee43990c }, { 0x44452241, 0x64bbd0b8, 0x3aab7be5, 0x32061eb1, 0x96ca23b7, 0xedca0f4c, 0xde823865, 0xec84ad55, 0xe3b4bc69, 0x900ff3fd, 0x6843a4cf, 0xca6e5e8b } } }, { { { 0x4caf30b8, 0xf80c1a7d, 0xe341a09f, 0x1babd268, 0x7477e01b, 0x2bd5e5a8, 0xded04a19, 0xbba20d6e, 0xcdf0edcb, 0xc023e155, 0xb7540a93, 0xffbe9f1e }, { 0xff71a299, 0x902504f3, 0x833475d0, 0xf64d2a5f, 0xb9b14d83, 0x8591901a, 0xb9890d82, 0xb73f4788, 0x209fc553, 0xdeba7fe9, 0x33e77658, 0xb678be9d }, { 0x9a2da5a9, 0xcc3d695c, 0xfe3f0fbe, 0x2935d09e, 0xfd6500b2, 0x1072f1e4, 0xd40ed349, 0xaa2624, 0xb2c6bca7, 0x2391fbc5, 0x18654bbd, 0xdf7626f6 } }, { { 0x4b39f88f, 0x250636a2, 0x83aded, 0x7122552c, 0x7bdbcf8, 0xbcde7385, 0x9ee5457e, 0x19392ac8, 0x71ad25eb, 0x4aa34b96, 0xff829373, 0xa282a38c }, { 0x9f1a83c8, 0x26f9e9bd, 0x55c5b9d4, 0x9c73d325, 0x88151819, 0xd370c4d0, 0x66c96954, 0x6874f5a1, 0x95a71998, 0x5c4685b4, 0x172d7174, 0x3afcc54 }, { 0x5f4c79fd, 0x1e2b8d8a, 0x4d7da30b, 0x2657271a, 0x218c3bc2, 0xbaa07b98, 0x73a4a224, 0xa60fd658, 0xc7de852f, 0xb80aeb72, 0x144c3fa0, 0x8e6a889 } }, { { 0xad4b6966, 0x215900e6, 0x4e12ca0c, 0x73184e65, 0x7b7123ec, 0x4615d7cd, 0xc0a20f35, 0xe81a5f11, 0x22cdbce6, 0xcb7c9e19, 0xeaf1474, 0x3112fbf5 }, { 0xafa8845f, 0xe63a3239, 0x987c63ed, 0x1a127477, 0xde8d329f, 0xfd3f801d, 0xa0516d84, 0xe0321750, 0x6922766e, 0x62e7c5f9, 0xd86e6279, 0x4c697bb9 }, { 0x46bfe373, 0x1688e0d8, 0xeed4b8e1, 0xaf908e9b, 0xae620c1b, 0xe3d94a1e, 0xa0274a82, 0xaa0b53df, 0x5e8ffaea, 0x89b2231d, 0xbc257192, 0x8e95c405 } }, { { 0x93038eea, 0xb2cef2e1, 0xc806b474, 0x7a5e2aa1, 0xda83149, 0x26902dc8, 0x1e39b1fb, 0x8e6abf63, 0xba344ffa, 0xa110b0c2, 0x47bcccd6, 0x89e527c4 }, { 0xdbf83330, 0x239165e2, 0x87234ac, 0x93b77ebb, 0x92e00680, 0x3757d695, 0x283e0441, 0x7f842ee9, 0xe6f26c5f, 0x7874423d, 0x889a8cac, 0x991a620f }, { 0xc789b50e, 0x28d1165, 0x320d7aa, 0x6fd364b1, 0x224967bb, 0x569e4d9f, 0x1309cac1, 0xa6d3f1fb, 0x950cd234, 0x75062ec1, 0x5e73d2ef, 0xfb76ec33 } }, { { 0xbec430f0, 0xcb39d565, 0x7259cc, 0xe8345138, 0xd67b9b9d, 0xea7b384e, 0x8eec9c6e, 0xaa747a57, 0xe42470b1, 0x57d6b7da, 0xc8878872, 0x2b29b98f }, { 0x2ff288c6, 0x74effc33, 0xca8c6e34, 0xf462544b, 0xde67c0f2, 0x9574f8e0, 0x10d84786, 0x1cdd8d4, 0x17733bfb, 0x9359d590, 0xf171c4e1, 0x49b049ca }, { 0xe1fe587a, 0x6499d8b5, 0x99c6312b, 0xef6ce904, 0xb4aaa22e, 0x77878c83, 0x9f202fa1, 0xb694fc41, 0x1e21eb5c, 0x5b823379, 0x15003280, 0xbbaeada5 } }, { { 0xce88fdda, 0x11a8bb3c, 0xf65cbed6, 0xe26ab06e, 0xe126f28f, 0x14ffea25, 0x4edf87f1, 0x55eb286b, 0x72dbe93d, 0x144b4f7f, 0x39d987ee, 0xf3560bad }, { 0xe985cc54, 0x5401444, 0x9271c314, 0x7acb19c3, 0x3af35359, 0xd6dec6df, 0x999be2e0, 0xa1ea6fcb, 0x7895bf72, 0x7432e092, 0xfffe873f, 0xb3d55270 }, { 0xb8f9ec11, 0xc46a13a7, 0xce2738e3, 0x64deb34c, 0x4a26bb5a, 0x63e4561b, 0x77b702e6, 0x6bcdcc24, 0x83ca43ee, 0xef52ff24, 0x16b29c34, 0xf752a166 } }, { { 0x9269d245, 0x23bade8a, 0x99f681f8, 0x5d0288b, 0xb7dcfcb9, 0x5eb736ec, 0xf8d9d838, 0x13fb676c, 0x81f5cf38, 0xc0e20727, 0x98708424, 0xeac44b17 }, { 0x2e2b7a96, 0x5d61785, 0x76e1ca1d, 0xc0a123a2, 0x9d2fa3bf, 0xd3c7a0ed, 0xe96efe94, 0x8e42ed3a, 0xe437ba21, 0xb3dd568, 0xaa6c66c6, 0x6439f9c4 }, { 0x64b3f31a, 0xb15320bb, 0xd3bfd265, 0x31d32e7a, 0xdecac6da, 0x77017c17, 0xbee67b1a, 0xa5c346a5, 0x5e7b46a3, 0x66ded2c1, 0x10341a24, 0xb63cb4ae } }, { { 0xd1bf5750, 0xdcfe996f, 0x4d41e8b7, 0x1b6c142c, 0x6a1375c1, 0x5645e69b, 0xe687bb6e, 0x3d64bc0d, 0x7a11490d, 0xa8c54901, 0xc06a9d40, 0x3e620112 }, { 0xb3a0a26f, 0x48d91f18, 0xaa20868a, 0x67397bab, 0x73210437, 0xe0689d87, 0x30d1f7fa, 0x1ccf9a6b, 0x7237272f, 0x4bb221b8, 0x866379c8, 0xf14ff3ae }, { 0xa63b76a8, 0x925fd161, 0xdb629636, 0x21e18a30, 0x2a045add, 0x194d59c8, 0x442ec11b, 0x296d527d, 0x251a93fa, 0xe4089de9, 0xa3ff4fc8, 0xf58c79a2 } }, { { 0x90fe0f0c, 0xa6400808, 0x402869d9, 0x2f7a92b4, 0x944d4946, 0xfc9b4cc6, 0x721f1c28, 0x40d79999, 0xae229bb1, 0xcebfaba, 0x601822a1, 0xd20108ef }, { 0x5eeeb5be, 0x8045ea56, 0xb24e14f3, 0x3c8f390c, 0x4c473782, 0xb3b42323, 0xe881d0dc, 0xdc290ec1, 0x179223c7, 0xf8436a79, 0xbcafb4a6, 0x76022f30 }, { 0xac7769ca, 0x9541fb88, 0x9f0400a5, 0x63f08ef5, 0xf4293314, 0x9c9892f6, 0x36db5703, 0x6bfe4a9e, 0x22738991, 0x56fe4ab7, 0x85c8d552, 0x84018627 } }, { { 0xbf4b8092, 0xd99ca3b1, 0x54a0270f, 0x244c192b, 0xd923bac4, 0xea93db46, 0xc263cbdf, 0x8e968dbf, 0x1442e960, 0x7f0c5cd2, 0x569d4b6c, 0xd2848d0b }, { 0x57a36bd1, 0x8ee5a279, 0xb923c815, 0x2cc5a72c, 0x35a1d8ee, 0x56930641, 0x7957bbf6, 0xfa2c6bd8, 0x70fda9d3, 0x9a5b1235, 0x51bff98a, 0xefdb2630 }, { 0x5101e31f, 0x74970fce, 0xaa89e303, 0xe62abeaa, 0x9f366d04, 0xaf4dd2df, 0x25105332, 0x47fc3572, 0xdcc077e1, 0x3699f759, 0x58732363, 0x3a4b6b5c } }, { { 0xa3ef9543, 0x7a04b137, 0x77abf76c, 0xe8e03bc6, 0x560d7f54, 0xbf5463a2, 0xb95c1f0, 0x5e95b3f1, 0xc791ccec, 0x62a6819a, 0xc5c54b3b, 0x2d2e75ae }, { 0xd682ef06, 0xb967f032, 0x694b4657, 0x12289f04, 0xa9a7b6bc, 0x604b1093, 0x85e28aa1, 0x75b384b1, 0xb3538ca3, 0x29139c36, 0x4910af19, 0x5de7ae57 }, { 0x5977882f, 0x5d58a6f1, 0xe6b96f0f, 0x17d1d7c2, 0x6262929b, 0xa97afceb, 0xf1127f77, 0x3a07a689, 0x771a9b2e, 0x53715ae1, 0xec22eab, 0xce1fa3bf } }, { { 0xcd012362, 0xca5057f3, 0xfacf213b, 0x22013793, 0x9a94c082, 0xe9a37be3, 0x19189a9, 0x23c33352, 0xf1454828, 0xf43545e5, 0x38e1e1c7, 0xa5980775 }, { 0xb08704db, 0xa12ca365, 0xc8a9eb67, 0x8c3f5c8, 0xbe4b6da7, 0x2d23accb, 0x139de693, 0x862a984, 0x2eeaec54, 0x94d55d2, 0xaeb917da, 0x3364f72b }, { 0x5558574c, 0x674a0938, 0x465e48d5, 0x1bdf0631, 0x9c739b5, 0x7f073fa0, 0xf51a231d, 0xc4632e8f, 0x771dd4f0, 0x1d01e087, 0x60e9a50f, 0x9f40473f } }, { { 0x820046ca, 0xe7d08097, 0xec981e52, 0x79774d66, 0x8d6b694a, 0xbaa4a729, 0x5c7a45bc, 0x27a821f2, 0xbe488293, 0xd24353f7, 0xa42052de, 0xff2e7531 }, { 0xf551a0d6, 0x659a2ed5, 0xf26a8fb1, 0xf8a95fcc, 0xbfb9ee87, 0x3cfd0fac, 0xb2764f7a, 0x42029014, 0x3790075e, 0x51ea8038, 0xe58d21bc, 0xbc83a152 }, { 0x94acb927, 0x32a135b6, 0x3ca16247, 0xac6b0764, 0xf202fb69, 0x5010a73e, 0x26ed0022, 0x5b9ccaeb, 0x3414dfb6, 0xdd78d402, 0xb4be2d1b, 0x623a0868 } }, { { 0x3433075c, 0x305c3fa5, 0xc9823f59, 0x17691118, 0xe08dd2de, 0x514154ec, 0x267224ee, 0xe6c637a1, 0x68eea0ce, 0xfa1239f0, 0x6d183ec6, 0x87c7ddf7 }, { 0xa52e7f91, 0x2bf509c6, 0xdaa8e12e, 0xa794d135, 0xcf7e206a, 0x8c7893be, 0x976fddb, 0x9cdeab7e, 0x350aaa16, 0xf42e629c, 0xec38cd56, 0x5faf1706 }, { 0x41b2ff6, 0xa83ed25d, 0x7f2652c5, 0x311f93e2, 0x996ba43b, 0xa4ccc2d2, 0xc148b6b4, 0xc34d188, 0x9a167176, 0xc75e5887, 0x6c3fa8f6, 0xaab96ea3 } }, { { 0x8c3a299a, 0xb5299a32, 0xfc8b1ede, 0x44fe6f76, 0x41e3a1fa, 0xbdc6dea7, 0xef018056, 0xf72b88df, 0x287066b1, 0xafc2f5c7, 0xd4046ad, 0xcff9bee7 }, { 0xc0b2407c, 0x63e7254e, 0xb3185555, 0x3c30f861, 0xa21c34fe, 0xc4f09585, 0xc9e51866, 0xee40375, 0x10d55987, 0x65026ea1, 0xd77460a8, 0xd723f79c }, { 0x9d5fd4b7, 0xf7b550c2, 0xe1fe9b10, 0xb3b281b8, 0xef943360, 0xafb2138c, 0x9760dc56, 0x34e2824e, 0x38e3a0dd, 0x61f45c2b, 0x7b4004c1, 0xe8cea2d4 } } }, { { { 0x9c117581, 0x22697e89, 0x500f2575, 0x87f4e700, 0x71e2ddda, 0xb1bab90a, 0xbaa2fb47, 0xaa87a396, 0xb7b6e2d2, 0xa4bd9378, 0x915dad37, 0x87be4400 }, { 0x7d430b91, 0x1d5281db, 0x196c1667, 0x47f509f9, 0x40273c37, 0xf571d04b, 0x19e09f68, 0x53864da5, 0x8829d6eb, 0xe4f9c9ba, 0xcd7adfd0, 0xdb22f359 }, { 0x6351e3d2, 0x32923dac, 0xd74c7f2b, 0x7a42d3fc, 0x2d7eab4b, 0xde9eaff0, 0x60113790, 0xfa58c771, 0x25797f04, 0x6910c28f, 0x63b3c27a, 0x37fb8ad4 } }, { { 0x60a6cba7, 0x4a53e257, 0x1ebbe15b, 0x8d534b8, 0xf1670aba, 0x6947b96f, 0xdb5980c1, 0xab4482fd, 0x75c87f63, 0xe8a6ebbb, 0x6698579d, 0x6ea95a42 }, { 0x3a46f6ba, 0x2ad480c2, 0x50f718b5, 0x65a1feee, 0xe99794cc, 0x199fe764, 0xf46d0785, 0xef2bfc98, 0xcc17b8f1, 0x51335173, 0x6299fd9c, 0x7ca1ff3f }, { 0xcb6d5f20, 0x42f77655, 0x1b49a03e, 0x1759bf43, 0x8bed421f, 0x18c6edaf, 0xfc7878c3, 0xdc64586b, 0x5b94a94, 0xdb921c45, 0xc3e91abb, 0x5cacc2ed } }, { { 0x10eb0100, 0x5db168f6, 0xb47053fe, 0x37654ce2, 0x53f6f066, 0x7f37a62a, 0x28f897fb, 0x26a13593, 0xdf31e09c, 0xb260ce90, 0xe68510c9, 0xc4fc2bb1 }, { 0xd88a19ed, 0x55ecec85, 0xd6de9b04, 0x220753a0, 0x3137d513, 0x4c55e3a5, 0xa5aa81f4, 0x555bc7f4, 0x6031517d, 0xd4d168bd, 0xc5cd99f0, 0x905ffdda }, { 0xd3255d38, 0x960c47a5, 0x8d1bf7e5, 0x6a11abef, 0xfcb8b657, 0x58e3b2c0, 0xfb1d73a3, 0xe3ca19e3, 0x914822ff, 0xb6aaeb2a, 0xe43a35d9, 0x58d88afe } }, { { 0xc2bb1ed7, 0x7ae66ee, 0xfa951843, 0x78423790, 0x80765925, 0x8257e7a1, 0x6d1e22f2, 0x384729f8, 0x4d8bcc4c, 0xb3bb5787, 0x9c047870, 0xffa28ac2 }, { 0x15f12ce7, 0x2c777125, 0x9491c6a3, 0xa0d161d, 0xf31bf3d3, 0x448313ae, 0x5fa8d442, 0x8e561661, 0x9a247a9f, 0x77365502, 0x2e5ac673, 0xc50c4435 }, { 0xe89fbf8a, 0x22598a39, 0x46d2e283, 0x6b286697, 0xebbe0444, 0x761d24cc, 0x19bc6728, 0x42a20563, 0x44fb741f, 0x40651122, 0xcfc3549f, 0x73f468e6 } }, { { 0x358e5e3c, 0xc4eb4519, 0xbc208938, 0xf022ab30, 0xb8c5f5cb, 0xb2aa833f, 0xc9aa72cc, 0x815c7255, 0x150c1eb9, 0x47271472, 0x3860a240, 0xa63aed6a }, { 0xdeed1a41, 0xbbbdd781, 0xb34cb1f1, 0x989618aa, 0xfeb1f67c, 0xa948e056, 0x3836b42e, 0xa26906b2, 0x14096324, 0x286748b5, 0x75ab01b6, 0x66404e4a }, { 0x291fd687, 0x21e2be3b, 0x9ac3fcc7, 0xb4a2562e, 0xbac79853, 0xf605f906, 0xd67158f8, 0xf60b91d2, 0xc66d013d, 0x1b213fa9, 0xe8febd93, 0x45c9614e } }, { { 0x64b556c1, 0x49d8a117, 0x2b94b0af, 0x833337b3, 0x6edc1817, 0xdc3bf4d7, 0x7090c892, 0x5df1f7d8, 0xa5e58b75, 0x733d9b80, 0xaf530326, 0xf44f948c }, { 0x6adbfac8, 0x108655d4, 0xa4b25171, 0xa46b9a06, 0x38e5d2f8, 0x623f9001, 0x265acdcd, 0xd2035f74, 0x91296fa7, 0xd68d507b, 0x3591094b, 0x33eefc25 }, { 0x2c7c48ab, 0x35b6c05, 0x1ac04499, 0xe4343616, 0x4fa3efc8, 0xb74cf99f, 0x93406ee0, 0x9b64412, 0xbda95835, 0xc815a4a3, 0x2c575446, 0xa697a55b } }, { { 0x489fcaff, 0xb96c80f, 0x1fe82b33, 0xe394d460, 0x2457912e, 0x2c6b58a9, 0x5b57c523, 0xdf217a68, 0xac28cc4a, 0x1bd50955, 0xc34c2b3a, 0x702c9399 }, { 0x5ea7f0eb, 0xd173987f, 0xfc9ab7f1, 0x59ec9aeb, 0x357e0a8f, 0x45b397fe, 0xa8990e51, 0x712974c, 0x4a8bb457, 0x9f8426a4, 0x76497220, 0xdb4ca623 }, { 0xc12b14e, 0x53dd09e9, 0x4b70e527, 0x99e23605, 0x39a168b7, 0xaaf7bf63, 0xfa107c1b, 0x7044e1ba, 0x16f6cf8f, 0x1a8ccd26, 0xe5d3626d, 0x516cf9f3 } }, { { 0xe62ca5b6, 0xf9b9c79e, 0x111938fe, 0x4a15e704, 0xc674423a, 0x50939bff, 0x6f0662d4, 0xb8f9e32e, 0x6f7d945a, 0x31dfbcc1, 0x9afa4097, 0x324e50c3 }, { 0xab4b6fd7, 0xd95f5b2a, 0x2b8b6457, 0xe71f8a9, 0xaf147bd1, 0x5984e5d9, 0xfeb4e3b3, 0xea89029c, 0xf60dfbc6, 0xba414b58, 0x70689160, 0xcb51df92 }, { 0x94403362, 0xcb09aa75, 0xbaa7ae6f, 0xa1d09630, 0x429f0465, 0x598e2c14, 0x4c6d085f, 0x80ad22af, 0x1dd21743, 0xb646433, 0x6c8650b2, 0x5d46a3c8 } }, { { 0x8f3fe6a8, 0xdfdaff4e, 0x1c501e68, 0xb4fa728, 0x723dfbf0, 0x359e484e, 0x39a6ac62, 0x26cbc7e3, 0xcfd3c712, 0x46045f94, 0x7d8b44aa, 0x9f5c9b16 }, { 0xc79f349d, 0xd2d81aac, 0xc6ce32dc, 0x4288a634, 0xd19dc011, 0xf885d1bc, 0xd4d25cd7, 0x16af7985, 0x36542f37, 0x2df90877, 0x477b1c25, 0x8f0003f8 }, { 0xf79486e4, 0x6dc47bd0, 0xa97a3356, 0x38504af0, 0xa7fd5415, 0x3b7e838a, 0x1f49d7ed, 0x791aa933, 0x22dcabc5, 0x2fdc5605, 0x408a8f28, 0x98931196 } }, { { 0x47d72b59, 0x39c186a, 0xfe17cd31, 0xd547cc5d, 0x46889659, 0x4d93c5da, 0xb57858f2, 0xe505b624, 0x56d92ad2, 0x6351bcea, 0xfbeadaaf, 0x9fdfc173 }, { 0xc02115e2, 0xf0cfe17f, 0x1494ec69, 0x2e7374c5, 0x7432f8ac, 0xf943e7f4, 0xdb979668, 0xeae2221a, 0x73b34714, 0x45d4e11, 0xdbf797a1, 0x63911c40 }, { 0x4dc1541d, 0x43eca7e8, 0xc44de168, 0x51c65d9, 0xc30fb317, 0xbea2f4a7, 0x5badfd76, 0xeafdf7a7, 0x6cfc4796, 0x443acfa1, 0x67557bff, 0x67188bf9 } }, { { 0x25fc451c, 0xc0685627, 0x54709ba3, 0x233e7640, 0xd201e502, 0x9f99cef, 0x6632d55a, 0x72c9aa46, 0xaca3824d, 0x7f0bec4, 0x40eb0392, 0x3e7829f7 }, { 0xa36040fd, 0x125cceb5, 0x7ef9312e, 0xe20a20d9, 0xb84b72a2, 0x52bc44cd, 0x9f3dfe72, 0xa71bbd80, 0x84890556, 0x4fa060fb, 0xb18be0a0, 0xabf24b5b }, { 0xb6851547, 0x20f86a63, 0xb9ef175b, 0xf7b4a5c7, 0x67d92f59, 0xd0265b58, 0x2a1d00e2, 0xf663015d, 0x283f1e79, 0x7f6fc5ca, 0x48df99dc, 0xfa746d1a } }, { { 0xac958f00, 0xb6aa10c8, 0xaf4c0452, 0xd50401a6, 0xb1275d8a, 0xea83ee5c, 0xc308b8d9, 0xe0ea0545, 0xb334703d, 0x1637e55, 0xc16f0943, 0xe0826fd3 }, { 0xe660643a, 0x169c527b, 0xadd9fc81, 0xaa2ca765, 0x8b931fd, 0xd7eb1814, 0x62feb1b8, 0x31b265a8, 0xb54c0571, 0x7dee95d4, 0x7b840d7f, 0xf6dfaa6 }, { 0xc19e1afe, 0x76b58577, 0x5f3b7d54, 0xa219532d, 0x41a47ac8, 0x251e6e9e, 0x428364be, 0x910f0e1e, 0x5ed584a9, 0x1b1f3bdf, 0x95225012, 0x6a21c448 } }, { { 0x6d901f4, 0x107cc47b, 0xa55e6be5, 0x76e290a0, 0xf0cc7c74, 0xbd8a8323, 0xd5b2d35e, 0x3d8e6eb8, 0x59ccc452, 0x5e4add93, 0x13656798, 0x5a97be60 }, { 0x3fe11232, 0x249b494d, 0xbf192173, 0x32ce1c00, 0xe5d3a5ee, 0x7e3c76b4, 0x6098ed23, 0x3d5fd123, 0x72fc65fe, 0x1a94fd00, 0x9a9229eb, 0x50988bc2 }, { 0x2eb1abb7, 0xafe4850b, 0x3fb4fe05, 0xc901b79f, 0x9d302afc, 0xfd1e6fa5, 0x630cb218, 0x1415991d, 0x5f506208, 0xe53878a7, 0x3cb30ccd, 0x583149c7 } }, { { 0xf1843016, 0x34dbbabb, 0xfbc65208, 0xe69ccc3e, 0xf5bc1dc0, 0xd8f90a9e, 0x6db657ec, 0x5bb02ef4, 0x9757e05c, 0x9842a122, 0x8d8723aa, 0x32a660ae }, { 0x1e4ed15d, 0xad6a0dad, 0x65aca1ca, 0x7eac15ac, 0x66619845, 0xcd0f6368, 0x434938fc, 0xe26d3dab, 0xe17d665a, 0x73b6e054, 0xb00bf795, 0x14ca0a65 }, { 0xf66cf95c, 0x22df0b9e, 0x60d3702e, 0xe743d6ba, 0xabc2a549, 0x8dbbb3df, 0x19fd8876, 0x7316194f, 0xca81d5a0, 0x8699dd5, 0x4502f7c4, 0xb3913a82 } }, { { 0x577c3add, 0x8299cc4d, 0x4bc1b635, 0x98268f28, 0x89c803ce, 0x2e040728, 0x34eae8f8, 0x1299556f, 0x21b3f37d, 0x6421b6c5, 0x6817800d, 0xc9ebf25c }, { 0xc611142f, 0x14f85ca8, 0x6c541902, 0x8b4f985c, 0x2b4f7045, 0x8f609ede, 0x49e2559d, 0x2694caad, 0x843ed70c, 0xe3912152, 0xe3ad56a1, 0xe6bb52cb }, { 0x4a300509, 0xbd02afe5, 0x296ac739, 0xb3f966e2, 0xdd1da2b4, 0xacd1810d, 0x926cc8b3, 0x58cabcd5, 0x51f440ec, 0x9a81876c, 0x3dcda97f, 0x93a37179 } } }, { { { 0x7fe31035, 0x9ffce183, 0x7e1cd54b, 0x794d91e7, 0x6443a4c2, 0x1d6da0b, 0xb521fd21, 0x1d198a75, 0x5f1f07fe, 0xf5291936, 0xb9c5b9ec, 0x22effae5 }, { 0xbba29e6e, 0x2eaeb7b, 0xa070844c, 0x373530a4, 0xaec01f, 0xa1bcf14, 0x3be35a44, 0xe0a8a620, 0x487f73e9, 0xc0e9bb3a, 0x26873ca, 0x812e93ee }, { 0x399b6ab6, 0xb0c8100d, 0x98aa1d32, 0xf1455a41, 0xd230430c, 0xef46fe8, 0x83e2bc1, 0x4cf6f4aa, 0x70221eb5, 0x234ee177, 0x325170f7, 0x28b6c84d } }, { { 0xc95b74d3, 0x5638957a, 0xbfa202ea, 0x8685c8e, 0xa9d5e6b3, 0x52e0c93c, 0xe3901dfe, 0x843e35d9, 0xcab7ed29, 0x99927809, 0x200dd718, 0xd8de7c56 }, { 0xaa4e95b8, 0xa3482318, 0x7d3e02e7, 0x182ae1c7, 0xc8dc1954, 0x93f48d4b, 0x9c4efe22, 0xfb49c28, 0x7488420b, 0x89d40409, 0xee37701c, 0x69c326cc }, { 0x8bbaf136, 0x6d1031d2, 0xf30d7602, 0x75056287, 0x713d7a1, 0x6012cf1, 0xaaf97840, 0x9adc1b8a, 0x99a2cce3, 0xca78088f, 0x2f205559, 0xb1b0408 } }, { { 0x2e236881, 0x6ba35fcc, 0xdd915217, 0xb6cdf51f, 0x6212d364, 0x4f6ec88e, 0x753b161b, 0x84227c66, 0xdd00ef2d, 0xdf476589, 0x24906919, 0x3215911d }, { 0xd5d8b8e7, 0xcbb84792, 0x2abb1b9c, 0x2fcdedfe, 0x47e6c39d, 0x3d8f9b1a, 0xa85aec22, 0x2da8b078, 0x66c96294, 0xbe0b6233, 0x9a58e804, 0x8094e990 }, { 0x67a4db11, 0x6a488044, 0xea7df898, 0x698c9a57, 0x8bbb4c0b, 0xd5a741aa, 0xe14f8901, 0x3ca6a8a9, 0xa1a7ecee, 0xb3fc5d49, 0xdc1e9527, 0xf5248daf } }, { { 0x8ff22f09, 0x258623ed, 0x670c497c, 0x4a0189cf, 0xc97823ee, 0xe38e3b4f, 0xebfd30b4, 0x91051b98, 0xc5bd1d5d, 0xc1899dda, 0x3946d81f, 0x8484c5d8 }, { 0x17ee0829, 0x7f67f43f, 0x47490753, 0x9403c17c, 0x893358ec, 0x1e410db9, 0xc9ececba, 0x25e788e, 0x82c97846, 0x360d076d, 0x87616ff3, 0xf28ed3a5 }, { 0xb0268b34, 0x72b3abd1, 0x16b507dd, 0xe14aaa9d, 0x88ef63c, 0xe71bee03, 0x4d0a5ed, 0xf1b65551, 0x26b51e28, 0x8e62ec4a, 0xb610e596, 0xc2bcc78 } }, { { 0x8ade8768, 0xeb119799, 0xf390a85f, 0xcb0f7937, 0xf39297f0, 0x73420cb3, 0xa2c1932e, 0xa8562dab, 0xf7d00f, 0xa2700669, 0xd9980d86, 0x3f923ae9 }, { 0x8540826a, 0x4697fb0c, 0x70a90783, 0x4be3cc1, 0xb13c6f7e, 0x1e1f93cd, 0x7c7f2732, 0x5ef0c186, 0x36d26270, 0xde3b6674, 0xf0a2bf25, 0x9e0adb07 }, { 0x155e5e55, 0xb8ccc611, 0x6f5ee145, 0x3ed3e5c9, 0x4731f555, 0x8d162ecf, 0xc220af44, 0x6cd47f78, 0x5f6820d8, 0x90cb89f1, 0x56937017, 0x2838c71f } }, { { 0xca265ed, 0xf760f538, 0xfde7fa0c, 0xd040ac9, 0xc1be854b, 0x6b619a54, 0x8a8256d6, 0x463ac01b, 0x9822eac8, 0xe3aec80a, 0xcc26c1af, 0xc4043e5f }, { 0x292f0ff5, 0xcd3ff1bd, 0x144f9a4d, 0xa7b6a061, 0xc52295ef, 0x371ccd50, 0xf51975b1, 0xd612f60b, 0x3e8d896e, 0x9b11cab9, 0x5f55e4cf, 0xb2917808 }, { 0x641be9ca, 0xc35437a6, 0x910602d, 0x8d202e47, 0x57b3b9ea, 0x73cebb3a, 0x75f553e9, 0x75bc6687, 0x168d71fc, 0x761e16b4, 0x9a1cb62a, 0x8d0fb2d6 } }, { { 0xc3831452, 0x4f9ad643, 0xe806b5aa, 0xdd9d10c5, 0x6a6244e3, 0xe7507dba, 0xd42dc2ee, 0x7e460ef, 0x546016d5, 0xe56ceae0, 0x58bf49ab, 0xdbec5a5 }, { 0x20f92c9e, 0x1ba84237, 0x892cbe52, 0x26d3f628, 0xac5a8014, 0x1c959e5c, 0x3f5444aa, 0x82c4bc0, 0x9c431ded, 0x67d2cd7a, 0x25de3c09, 0x7328f1d8 }, { 0xc98a0fe6, 0xf178927e, 0x3f3ed9c5, 0xde9b7a02, 0x7059344c, 0xaf29ab93, 0xa24ad490, 0x6138a8bf, 0xf810b10, 0xba4b6a5, 0x291aba61, 0xafb02acd } }, { { 0xd6a62e0, 0x8538e4c4, 0xa0d9c6e2, 0x78b6c5d7, 0xad83b697, 0xf7ec3774, 0xc49b6b95, 0x7151bf99, 0x481bae59, 0x638bb5a8, 0x3f0be1f6, 0x10be19f8 }, { 0x6fa4e626, 0x84c8e72f, 0x28d04171, 0x6e6be322, 0x5e3be111, 0xdf49ebcc, 0x70d02c80, 0x8eca452d, 0xccba734, 0x334dc9c5, 0x475984ef, 0x7623de62 }, { 0x4a47b12f, 0x68587f06, 0xeea4b05a, 0x3e348b84, 0xd58f694f, 0x8d5efd3b, 0x7c0438a4, 0xe1608774, 0xe962c63c, 0x25f2003e, 0x7b106016, 0x6188c954 } }, { { 0x40e73036, 0x75c86bf4, 0x3187236c, 0x57f9217b, 0xa244e377, 0x2b4ccba3, 0x810cc9b8, 0x1c6a2ded, 0x324ad87a, 0xd9d44448, 0x6fbf9754, 0x423185a9 }, { 0x7d1ecab5, 0xc0f5a4f8, 0xcf3f3ec3, 0xbd2597c2, 0x52e06b7b, 0xfe6c11ae, 0x8f00cd80, 0x4e0cc298, 0xc1295a85, 0xff5fd97c, 0x15de134d, 0xbccede62 }, { 0xe29a3844, 0xe036852d, 0xbed67393, 0xe5c14bb9, 0x1491b9ce, 0x906e4bbb, 0xd4888757, 0x5746f6d3, 0x76f6a7f0, 0x4fcd6cbf, 0x30e1d0ea, 0xf528a45f } }, { { 0xb6c6fc4b, 0x686a5f61, 0xb1b65c1f, 0x259c38a2, 0x50581a1f, 0x5ba4492e, 0xd1bc6c52, 0xdf18d647, 0xbd2444d8, 0xf0da97fc, 0xc9db8b1c, 0x13cd65ec }, { 0x73bdba77, 0x60acbedd, 0x23e232e5, 0xff287f84, 0x5c299f75, 0xfdb0cc37, 0xf2b044ee, 0x11fb5f68, 0xeab8b02e, 0x5091ec29, 0x2d62aced, 0xe14fee7f }, { 0xf7c29bc3, 0x6e9aa174, 0x61e47a1a, 0x2a8acf62, 0xe23fc00e, 0x1817fb8f, 0x37b2c139, 0x74b70af5, 0x80cd54c9, 0xf2f72165, 0x2edc47b2, 0x33ce1cd5 } }, { { 0x558406f2, 0xe4261ae6, 0x3f91ba6a, 0x7cee0531, 0xe9ee927c, 0x6ebc4e52, 0x1a2699d3, 0x539f6ee0, 0x84437ed0, 0x42aef11, 0x4e54e8d, 0x7e9568b1 }, { 0x88b4dfe5, 0x35e9c794, 0x4b67b98e, 0x3cdfd951, 0x82c7dbc2, 0x3f2e5478, 0x631a90a7, 0xa579ee3e, 0x9907ccb6, 0x4f823a18, 0x9a7d57f2, 0xd294491d }, { 0x426ffd8a, 0xda3b1c0f, 0x691938a3, 0xc40e2656, 0x1e53c346, 0xb1f57690, 0x2137dbab, 0xe1ffa652, 0x64b2bf24, 0x8a52cb9e, 0x696332c, 0x49af6f46 } }, { { 0x2d2e6a76, 0xb1c5b18, 0x83ab47c3, 0xdef82066, 0xd0d49199, 0xea7e7cee, 0x8ee20d6a, 0xbe7f2a40, 0x7d245aec, 0x7c3956a2, 0x8c003091, 0x42c45055 }, { 0x825bd4f0, 0xff528b31, 0xbda7c468, 0x50221230, 0x4c4e3661, 0x7bcf73aa, 0x37315343, 0x5cf74080, 0x8ca0d7f, 0x3edaa7ca, 0x1aead3bf, 0x17848b70 }, { 0xe8d74249, 0xb30a5b77, 0xd94ebf5f, 0x8972c3c1, 0xc7ef53c2, 0xe766b489, 0x1e023ebc, 0x18eb32a0, 0x23973aa7, 0xea051720, 0x70ceee62, 0x7fd2736e } }, { { 0xf97a76f9, 0x8f9776bf, 0xfb16e3e7, 0x8cd0ae51, 0xe0b58b65, 0x39b24873, 0x9ad3fec3, 0xa1b34d3c, 0x83de8f52, 0xc7efd57, 0xbc2ef644, 0xaadefb22 }, { 0xc4da358f, 0x9fcdb9c6, 0x11a530eb, 0xb29dd317, 0x95c78a, 0x3cd99c28, 0x819ac719, 0xc1ce091b, 0x42c18008, 0xc7d874a5, 0xb05f0c5a, 0xca904ccf }, { 0x4c1689da, 0xde9c99f6, 0x6505f2dd, 0x49e2152a, 0x152e3f68, 0x1524cfdb, 0x138a273e, 0x871d1b10, 0x21209a93, 0xe5ce8eb1, 0xdfa1e62c, 0x6eb12f3a } }, { { 0x33b3c0d5, 0xf2e9ba8, 0xda8a2d20, 0x330e114a, 0x44e93b31, 0x7e134595, 0x8f46fcea, 0x9899d0dc, 0x4c8d5e5c, 0x8d6a96de, 0x51022761, 0xfefa1e }, { 0x103a16fe, 0x3ca61d69, 0x434602d0, 0xe92e900d, 0x528de802, 0x90c141d3, 0x7e57f80e, 0x1be0a16b, 0x51d3078b, 0x7d97cac6, 0x56df1730, 0x2c786af6 }, { 0x4cfc93ea, 0xb0849cd1, 0x570f6aec, 0x2c0af404, 0xca37c0f2, 0x5d6a136a, 0xd63709cb, 0x27cf7f86, 0xa3438d4e, 0x2140b4ac, 0x4749a43b, 0xee62b279 } }, { { 0x19d7dbf0, 0xc1c5afd6, 0x60d20008, 0xe0364e6d, 0x82a5c226, 0xd98c4b44, 0xa4338c8e, 0x51d52b1d, 0x7989dba5, 0xcfff2000, 0xa9e4e44b, 0xcc7accb0 }, { 0x69d2e8e8, 0xef5219e8, 0x39846570, 0x91cb039d, 0xc116aa2e, 0x98794dfe, 0x346d3b0b, 0x466a54e1, 0x8a3ccd94, 0x96f1b609, 0xfb706a97, 0x32573457 }, { 0xd17d3f6f, 0x719ac064, 0x9b170170, 0x1e30075a, 0x1b25248b, 0x6038315, 0xee62d13d, 0xf0020beb, 0x880e6cad, 0x2eef8690, 0xf7262d46, 0x85613136 } } }, { { { 0x3ce09624, 0x62a7b632, 0xa07d3577, 0xc4544f90, 0xf40a53c9, 0xe368f13e, 0x1b4542b4, 0x3c542194, 0xcaba6d66, 0xa68b31e0, 0xe8949c, 0xdf5089ce }, { 0x8fc95e1, 0x47a26ba2, 0x926cb243, 0xe77bf015, 0xe6ec939e, 0xc15db023, 0xc1908802, 0xd8edec4f, 0x9e7d4fff, 0x43da074b, 0x2987c039, 0xb994c701 }, { 0x3e009636, 0x9005ffe0, 0xaeca940e, 0xd1b64bec, 0xaa8c3a2f, 0x548ac483, 0x7e32bed7, 0x752acda1, 0x8c3e9d78, 0x52e2991c, 0x1d3fb2af, 0xb8e0d37c } }, { { 0x407bd875, 0x6559a5b0, 0x5fa1a018, 0x750fa20f, 0x47b629c3, 0x39c591e9, 0xc114ae4b, 0x90283337, 0xdba0ab7d, 0xdc517035, 0x415fc520, 0xd5439f53 }, { 0x93909df4, 0xac598ea9, 0xc853ca71, 0x28531c98, 0xcaf4c27c, 0x7977c236, 0x2569b2ff, 0xb756e0a0, 0xaa18d3b7, 0x4f88f087, 0x6fa16223, 0x851255d0 }, { 0x61ef0da, 0x744a90b3, 0x8dd1c75, 0xba9aeac7, 0x6b48cfd1, 0xbecef4b6, 0xb0128b9f, 0xba8e92f2, 0x3e1cacab, 0x5f064ad3, 0xa969a59f, 0x7d197c90 } }, { { 0x5a7906c9, 0xf056e68e, 0x61467a4, 0x6d627abf, 0xdb355888, 0x3b8e4c4b, 0xbe97c55d, 0x59d8e17b, 0xc38dfc14, 0xcf06a76a, 0xa1ca2e4a, 0x877fc75b }, { 0xfce752a7, 0x97a5d656, 0x25e5af0c, 0x3b494c39, 0x9c6c0e03, 0x47df49b2, 0x727c6b81, 0xa64cdd91, 0x1596f928, 0xb644e1ee, 0xcbaf9f21, 0x894485f8 }, { 0x1a4d05eb, 0x6543b434, 0xdeb87552, 0x30cb62ee, 0x77a8c782, 0x3b52834a, 0xd8d59767, 0x1b3a9c98, 0x5971d17d, 0xd7e485f0, 0x1e27b719, 0x724dfa70 } }, { { 0xc90abe7e, 0x6aaeab58, 0xc2e5de3e, 0x8059e332, 0xeccf1989, 0xf43c74aa, 0xe00ffe29, 0xd5468f21, 0x1d36f336, 0x2e6eeb23, 0x1c2f41d9, 0x1105e254 }, { 0x70099b68, 0x9cf32626, 0x437aeb13, 0x664336e3, 0x2525178a, 0x68cfe039, 0x417bb658, 0x4c370163, 0x6501449a, 0x95b245ab, 0xec84de80, 0x5740b93a }, { 0x7d33e7fd, 0x4b55c79c, 0xa0a1672, 0xe575f362, 0xe6015d5b, 0x5f47ea0e, 0xa707eba5, 0x93444def, 0x1cdf0972, 0xd6cdf3af, 0x38fe0b61, 0x7dde1b7e } }, { { 0xfb0da145, 0x27011467, 0xff74ef34, 0xb879eb89, 0x83008fe8, 0xd76b1ba6, 0x58141d6, 0x1dad9623, 0x688eb3c7, 0x4ae579d1, 0xeb165372, 0x7e155f89 }, { 0x48a21c86, 0xb0731111, 0x60e2d76b, 0x23f02348, 0xace79a74, 0xd8fa4d91, 0x1f3ff4bd, 0x3f1ab1, 0x7e624896, 0xa8a447ee, 0x82b3e5d6, 0x3444b9f2 }, { 0x7f171a26, 0x4d06c7c9, 0x377b56e3, 0x13a9e999, 0x23104636, 0x2eddb30, 0xee7d1b02, 0xfc422e7e, 0x6ed8f245, 0x266ce057, 0xfdbd1b99, 0x53349521 } }, { { 0x8f1e3799, 0x7a6859b1, 0x93c5ce2f, 0x4aa301d9, 0x7b5daee9, 0x8f0ee5ba, 0xa987d5fd, 0x52885af4, 0x9a2810c2, 0x465d42cf, 0xcd97005c, 0x71efaeca }, { 0xa84e6331, 0x31c90c33, 0x50fc65c5, 0xe7f376fc, 0x250c65e1, 0x45156d9c, 0xd205b68a, 0x38286445, 0x5155ddb2, 0xafcb1313, 0x9317fa87, 0x852f3ed4 }, { 0xf02e70e6, 0xc118c78f, 0xb540e8e8, 0x4cf2aaa8, 0x88032a80, 0x6ac7cc1d, 0x2c675b4a, 0x9ca1f2f, 0xeaa2226b, 0x874ee4bc, 0x314ea8fa, 0xc760c905 } }, { { 0xf78a8e81, 0x40a8fc07, 0xd8fb4ac7, 0x46080d66, 0x111dbff3, 0xe9414aef, 0x9fc3dc98, 0x4d18ac1f, 0x2d1c3e6e, 0x7e379300, 0x4511ad81, 0xf6c15df7 }, { 0xf1dd0394, 0xb3bdddb3, 0x90e14c66, 0xb86a1100, 0x8af69988, 0x3dd20a19, 0x724ca4d3, 0xec26bf2, 0x5d73c1ce, 0xf5570a4a, 0x90207d, 0x68a0f94d }, { 0xa95a49ac, 0x62b6991c, 0xd9cc595a, 0x42edc830, 0xbb77d46, 0xdd311e17, 0x1c99e1ac, 0x79506023, 0x815753cd, 0xf006fa25, 0xd9295c05, 0xaf7b108e } }, { { 0x7f8b6590, 0xd0c91154, 0x1abc7358, 0x91b097de, 0xf8be56c, 0xce6c8482, 0x104993db, 0x280a065a, 0xc9a86791, 0xb5ffea4c, 0x3cb9aa4b, 0x2c910d18 }, { 0xfa418573, 0x449cd0e4, 0x1594a56f, 0xd25678c7, 0x49b86da7, 0xe06920e0, 0x8f523062, 0x8e8dc1cc, 0x75f5571f, 0xea1c3ca3, 0xb0cbc56c, 0xdb26deac }, { 0xab1f757, 0x69c1f5b, 0xc69c6633, 0x6161f7a1, 0x15e735fd, 0x11053003, 0x86069a36, 0xb3412c90, 0xcb6ea572, 0xd23b4f09, 0x1c829b8b, 0xa2d74bb4 } }, { { 0x8f26b203, 0x4140b0a0, 0x8a17001d, 0x673efe54, 0x19e87ef6, 0x89c4467, 0x1130ba60, 0x5d22346f, 0x6a7eed3, 0xa701310e, 0x7fb1c393, 0x749fa6f }, { 0x818a0553, 0xfb789c88, 0x7880b5bb, 0xcc4fe40d, 0x92337c90, 0x1e48531b, 0xb021ab76, 0x3307a042, 0xc8117eff, 0x5c0c8a19, 0x77bb8195, 0x4fec16ae }, { 0x3d995afb, 0x3e0f38dc, 0x91909a2c, 0xe749de0a, 0xa8db05f8, 0x32a8935b, 0xf444a7eb, 0x6a03b926, 0x14c08b5c, 0xfb09f687, 0x1bfb27, 0x4fb49572 } }, { { 0xac8a35bd, 0xf04730f8, 0xed7b3de6, 0x20230894, 0x4b4c75a4, 0xda0dc1ec, 0x1e5db600, 0x76172bd7, 0x40e70dfd, 0x757d8c16, 0x6aeb87f3, 0xd0e9f8ac }, { 0x545ef5b3, 0xab171ead, 0x4edbbf2e, 0xc1250da3, 0x293db8, 0xb642d5e4, 0x316416bc, 0x30bee16e, 0x3ef61e0d, 0xf751dc8e, 0xf16c209e, 0xffdf7661 }, { 0xf5688486, 0x9d761db1, 0x98b553ed, 0x4eeb5eb6, 0xe78fed92, 0x48713287, 0x36a37f8, 0x4ec1d7c9, 0x62ed8761, 0x76611c9f, 0x522da622, 0xa21590ff } }, { { 0x4396b2d7, 0xeee60014, 0x769fcb69, 0x6e91ecb3, 0x750c35e5, 0x80e259c8, 0xd85926c2, 0x3588de0b, 0x8a235af5, 0x369277a4, 0x54f06b1c, 0x5fc4fb57 }, { 0xd8591eee, 0xe0e55eb2, 0x3d5b818e, 0xa657a88f, 0x3cf194c6, 0x3037f755, 0x5366842a, 0x20db804c, 0xc79b67cc, 0xa556cf7, 0xefc004a6, 0x5bf960d9 }, { 0x691c8205, 0x53e98b39, 0xdd732e17, 0x8f0c03ec, 0x1b51af0b, 0xa1d7b3de, 0xa7ad324e, 0x616e8ee5, 0xef5da945, 0x4f78ef44, 0x57de3b46, 0x25b6325b } }, { { 0x2c34e752, 0x2d437d27, 0x51fbf782, 0x2e195065, 0x2715b27c, 0x869bf2d5, 0x375b440c, 0xe420b93c, 0x49400865, 0x2d84c8bb, 0x557c8309, 0x72320247 }, { 0x17e9965b, 0xf0db6a78, 0xef921740, 0xd3ca8210, 0xee8e2726, 0x2b3f2bbb, 0x86d98270, 0x3fe6d506, 0x6baa0145, 0x4a32efe8, 0xb69ee1c3, 0x1439e3a8 }, { 0x6d09ba7f, 0x6a4334a1, 0x74356bfa, 0x458a8863, 0xe806b25b, 0xecdac71d, 0xf8ea0db4, 0x8801d707, 0x4e10c40f, 0xc5454fe, 0x33e61b52, 0xedae0ae } }, { { 0x7cf4ad16, 0x359c3fa6, 0x26734dc, 0x5c18ffa1, 0x895101bc, 0x14e73bb3, 0x1ad79c3c, 0x1bfcc7b0, 0xa478553b, 0xcbc5440c, 0x5eeaabc8, 0x7859d4ef }, { 0xb0af2487, 0x6688e270, 0x46898ba9, 0xfb1855e, 0x3bd7ad6, 0x84b9e5b3, 0x69805532, 0xd2e31580, 0x4c85ddbf, 0xf32c6a3d, 0xa5ab47e3, 0xa4071525 }, { 0x90b4652b, 0x1c103053, 0x2cec2833, 0x7ee936d7, 0x13279361, 0xcb7a855b, 0xd4700ab, 0xbf180020, 0x2a1b9047, 0xdf13ab6c, 0x638b13e7, 0xb9f1e6ca } }, { { 0x27b6efc6, 0x5eb2caad, 0x8ae81daa, 0xd43f685a, 0xab909898, 0x3b5dcda9, 0x2fbaf4ef, 0x7dd19691, 0x24166b9a, 0x1e09d794, 0x1074d0f8, 0xac97014e }, { 0xc2c1236, 0xb5243c40, 0xea43effd, 0x9aa0f95c, 0xc93b5ea2, 0x55bc4a21, 0x51bbc15a, 0xe97bfed1, 0xa1bc3e81, 0x57549f0d, 0x387b3903, 0x1a7c3cf1 }, { 0x7185b9eb, 0xf30faaa5, 0xeb328dcd, 0x4826e47d, 0xc5d7fa15, 0xfcddf370, 0xe6b02090, 0x4821a789, 0x3c872059, 0x93cc2c4d, 0xb4ad75ce, 0xfd1ca902 } }, { { 0xe7725f32, 0x40f29e5c, 0x8f18820, 0xa12a0838, 0x50c328e2, 0xbec6bf48, 0x44dac47a, 0x9b09ea8c, 0x6e0660a2, 0xf8448da8, 0x8b1cd688, 0x2bda26c9 }, { 0xbc5b909a, 0x3fd685ae, 0x7d7ee171, 0x599c567f, 0xfc96faf4, 0x5b540ef, 0x26f83cde, 0xe3bb9f6c, 0x560c1bea, 0xed96920a, 0xd00bdacd, 0x662d77ab }, { 0x909fddc5, 0xb6fae11a, 0xb34a22d3, 0xdebd2d9, 0x4a76b834, 0xbfae61f5, 0x8f2ec8af, 0xbad81189, 0xc3b159e8, 0x5085593f, 0x919d3b09, 0x7aa38c49 } } }, { { { 0xef660c9f, 0x7805c7d7, 0x7b55f511, 0x84a9f764, 0xb07cc09d, 0x686a0242, 0x87bfd172, 0x585a1626, 0xe225cb40, 0xc98cf358, 0xf16b2de5, 0x5e389011 }, { 0xf2fd3e99, 0x76d3d9f0, 0x1de252d6, 0x94f52181, 0xeb451afb, 0xae2a4a14, 0x71d26fc7, 0xedb57e36, 0xebc84a59, 0x7e47e6a2, 0x8029d274, 0xca5a55e0 }, { 0x795a269a, 0xebbda1ca, 0x528796f4, 0xb7e269e0, 0x743b367a, 0x4c584ae2, 0x809cfce6, 0x573837c0, 0x8f0e6f65, 0x26ca65a0, 0x93ac5be3, 0xe692abbf } }, { { 0x3b7f0561, 0x7e50d8e1, 0x2d2efd6d, 0xcfd831db, 0xbc647c8a, 0x993f8be5, 0x5786edaf, 0xa4f617e6, 0xd69be956, 0xcf305dc3, 0x3ebdbb30, 0xc5332fed }, { 0x3248b9a6, 0x2d5ffcb, 0x437690ca, 0xf065989a, 0x348da6ba, 0xeff6fd05, 0xa3819e97, 0x15902d9, 0x84ee9411, 0x5f197f28, 0x25f47174, 0x99bf79 }, { 0x6b10d552, 0xc3d0e0be, 0xe6bb2064, 0x5c7eb219, 0x7e1a84c9, 0x2c165b46, 0x8f9cc87b, 0x270370b, 0x5f54e64f, 0x28418d2a, 0x4f4efb6b, 0xf2620bce } }, { { 0xb006bdb9, 0x202d4652, 0x932f1a51, 0xde67797b, 0xf1d64bf6, 0xd1d7ae3d, 0xd08df2a3, 0xfde78833, 0xb16c3955, 0x2af8c5d0, 0xba50543e, 0xcce38606 }, { 0xb9ff799f, 0x4913c69a, 0xd8997865, 0xa01029a4, 0xc4253dc6, 0x9a8df16, 0xe7956f87, 0xd2202b02, 0x4c84e14a, 0x673c7ef3, 0xdad30995, 0x38ba0ee9 }, { 0x26e83a6e, 0xf43d7ec5, 0x25aaf1d7, 0xc91306f5, 0x7c91ff9a, 0x8a2a9da0, 0xa802d0c9, 0x685a9010, 0x53629b99, 0xa4b8f118, 0x1adf6ffb, 0x8cc735ab } }, { { 0xa30505da, 0x98c26ee3, 0xacbe8db9, 0xba71c46c, 0xd6196386, 0xd8e9d855, 0xc87e205, 0x6b92d0a5, 0xdecbac9f, 0xcce4146d, 0x876874ee, 0xb07a7257 }, { 0xd249e888, 0x1f4d281a, 0xe23f9fe5, 0xc8bc69e2, 0xfd669d7d, 0x35bba217, 0x90a78154, 0xbec96106, 0x95384bd7, 0x7f912b5a, 0x701fbbaa, 0x78b637eb }, { 0xa1774407, 0xa9485438, 0x6b55d812, 0x5aed2191, 0xb074dc79, 0x621798c, 0x66078be3, 0x6b0dba97, 0xe603610d, 0xea718b97, 0x18e8b155, 0x40cac0ce } }, { { 0x158836c1, 0x2a15c5dd, 0x3ceb9827, 0x16ca282e, 0xcb010097, 0xc2a1dbbc, 0xc98bf31d, 0x453ae80a, 0x4a7a16eb, 0x74b30aed, 0x46544913, 0x71150c27 }, { 0x7687b4ec, 0x4d38824, 0xe9628cbe, 0xcf81c94c, 0x907a2a9b, 0x69dd4df9, 0x186a1fec, 0x7a6ac5a9, 0x7ff4066b, 0x2320a52b, 0xd190076c, 0x34879497 }, { 0x3c987e8d, 0x5185554e, 0x7be634ec, 0x4acc6196, 0xea9afdc, 0x9362d521, 0xd0ee214a, 0x4b254009, 0x3663e99, 0xc067a170, 0xe20f1806, 0x3f76f56c } }, { { 0x5c1dd3a3, 0x5c25f300, 0x76956b64, 0x9b671cc9, 0xf2d2254d, 0x6ad833d3, 0xd763501a, 0x63f91c4d, 0xd3722e0, 0x1f6f7cfb, 0xe6f6b9be, 0xff573094 }, { 0x2616ce58, 0x5bf7c9df, 0xd69cad38, 0x6865c181, 0x88f4c591, 0x256ede86, 0x43dd2da9, 0x21be5dc2, 0x48920826, 0x893fe135, 0x5d6250a7, 0xb6177d02 }, { 0x525e2425, 0x501797a7, 0xce8a6dfc, 0x748d3d5b, 0xb3ba0c7f, 0x67e624e2, 0x272a151a, 0xa46ca0a, 0x33655782, 0xc74470a0, 0x2f0608a6, 0x86d1c781 } }, { { 0x1ca4b6c7, 0x7d9efde4, 0x1181a298, 0xebbdad4a, 0xe49f39dc, 0x5171c46e, 0xdb03833c, 0x43068994, 0xd680c9dd, 0x3d869dd4, 0x44de0145, 0x69237726 }, { 0x4c65c212, 0x12109fed, 0xc44d00b, 0xd5b9aa20, 0x41eca377, 0xdb5757a0, 0x1e581b59, 0x5034e5b8, 0x58612ce3, 0xeacac2d2, 0x22c7aa2, 0x17c419f5 }, { 0xc1991719, 0xc7598696, 0x5c07a69c, 0x5b5a9591, 0xc26dae61, 0x2177fd96, 0xa2d63313, 0x48380e18, 0xb4b04f89, 0xf54a100f, 0x7a37708, 0x1769523e } }, { { 0x28e53af6, 0x64892f5d, 0x5079054d, 0xf77fb1bc, 0xbf4e7b40, 0xae057d47, 0x5db58975, 0x569de430, 0x6e27b208, 0x8cc18fe1, 0x26c65202, 0x808a4d94 }, { 0xcdf860c4, 0x25a362bf, 0x4524369e, 0x26651740, 0xb9e1f073, 0x538c9a99, 0x44962cf, 0xa6076d12, 0xbeb73375, 0x4f765c1a, 0xc1fa6b3a, 0x1b8a0290 }, { 0xd5d631df, 0xae94c051, 0x4ceafeb, 0xec106607, 0x819eae2b, 0x893fc35e, 0x8e98dcfc, 0xaf292049, 0x3e1a4595, 0x5b415ce3, 0x1812d5da, 0xeaf924e } }, { { 0xe907075e, 0xed532107, 0x618ca0eb, 0xe5ba89c3, 0x7e8848f5, 0xe74a53da, 0x3a13e18a, 0x1b572c68, 0xa0e1942f, 0x752cf300, 0x2ba19278, 0xf98f79ac }, { 0x728ac504, 0x966b4b54, 0xfc257bf8, 0x13abee7a, 0xacac2b77, 0xe077e63c, 0x318d0b87, 0x823e3add, 0x2db52142, 0xb456dd17, 0x65069193, 0x3dbb59db }, { 0x62a384b2, 0x7e94d456, 0x767125ea, 0xdd8fa886, 0xcea34782, 0xa1dad06e, 0x26df9005, 0xb3c4cd34, 0x27eb894f, 0x5d52de8e, 0x5d7e36f8, 0x97e49bde } }, { { 0xfc5b61c9, 0x50c31747, 0x65088583, 0xd2a85243, 0x24c8b3d2, 0xec6c9b18, 0x7eddceaf, 0xab731780, 0x20988b4c, 0x201a510, 0x9d21e4ad, 0x4b05be1c }, { 0xd936f29e, 0xd5cfdb9, 0x73351e5, 0x302b0e2, 0x229e6ca3, 0x72b5e856, 0xaf35a563, 0x7a4e0e3a, 0x398960ce, 0x5f49bf15, 0x3a9a6c92, 0xd8e197a5 }, { 0xe86fbd15, 0x54065ed9, 0xc88a8dab, 0xb97f193, 0x3fd466f3, 0x4cf8e8f0, 0x71c55d93, 0x38fce268, 0xc4e1af6b, 0x7d2289b3, 0xddc8014c, 0x51a9cb73 } }, { { 0x6ed5ea4b, 0xf0e07df2, 0xf27b70c3, 0x7dfccc14, 0x22b97991, 0xde7af0d2, 0x47a7ddd7, 0x8760f5, 0x408f21e1, 0x49f2c080, 0x2e7102bc, 0x77c7bbc2 }, { 0x2a5e2bdc, 0xd320d826, 0x42fafcb3, 0xc242c0ce, 0xe4717c2e, 0x3c361470, 0x88751077, 0x8f35bc80, 0xd6da5c2d, 0x5dd276ef, 0x61dde518, 0xbf77b951 }, { 0xcd988e6e, 0xa65d193, 0x158d45b3, 0x57ae521c, 0xd1e98f8b, 0x8976f37f, 0x4b2c64fc, 0x8c75e7af, 0xe642b9b6, 0x82e8da1b, 0x47573dac, 0x78abe504 } }, { { 0xe1f079cd, 0x68fd52ef, 0xa9ebcf03, 0x62c2243d, 0xec8f6691, 0xa2cc5e41, 0xff0322d8, 0x63b3c58f, 0x85685c31, 0xf93a13d, 0x4ec15a56, 0xd23ec6c1 }, { 0xcee49ff8, 0xe6ade45a, 0xf68c0c1a, 0xc92971d2, 0x6f130414, 0xcfa7dada, 0x7bd339c1, 0x360e3cc, 0xb2717830, 0xece96991, 0xb6b464b5, 0xa62cdb0 }, { 0x7ad72a45, 0xbe8633fc, 0x73cd18a6, 0x46936857, 0x55339c9e, 0x88f467d2, 0x889f349f, 0xe238fcc6, 0xfff48f6e, 0xd8a8dd58, 0xca96bf35, 0x684487f8 } }, { { 0x13cc774b, 0xd0249fa4, 0x59f3a68c, 0x3cfc8f28, 0xdecb275c, 0xb1550ed0, 0x9ccd4319, 0xc85247e7, 0xcab4e4a3, 0x5a60efa2, 0x242b080, 0x97f6d4c5 }, { 0x93f09d65, 0xa7bedcc3, 0x432ad2a3, 0xb39ceae4, 0x3d1440f5, 0x922e02f3, 0xfc0c64f, 0x38609b36, 0xc83f686d, 0xe9a8b4df, 0xc48c941b, 0x6e35a9a2 }, { 0xfbeda47d, 0x3e57f243, 0xaa7586a7, 0x5b4770a3, 0xe9918723, 0xe64fea3f, 0x76b9fe0f, 0xa64f7a5d, 0x1de633ef, 0x923325f2, 0x33b24505, 0xe9225c25 } }, { { 0xdbd35c4d, 0xb8b6e06f, 0x96d1d8a, 0x215f590f, 0x79294513, 0x97bbe19a, 0x78978f1f, 0x924e17e9, 0x160e0fd0, 0x7e546cc3, 0x74a1f739, 0x3455836d }, { 0x63ed67a5, 0xfe5b893c, 0xb7c13ecf, 0xd7bfc4d1, 0xbd06b624, 0x16762bae, 0x2bf6f8a0, 0xdb7d417c, 0x3d4da667, 0x72f39598, 0x9f564353, 0x81b797e4 }, { 0x71e22430, 0x13c3746e, 0xa63bd017, 0xf61a58b, 0x6cef7b35, 0xf7dbc6bb, 0xc78aeef4, 0xbd4966ef, 0xf73f6221, 0x23043d3a, 0xe66a9948, 0x1710d7f8 } }, { { 0x1729e15a, 0x1cc548df, 0x66842ba5, 0x735dd592, 0x623efae7, 0x1a0cbbf, 0x4a29f689, 0x1057f392, 0x2774dd63, 0xee0c6b40, 0x3bac2be1, 0xa4133a55 }, { 0x70af50e1, 0x6a206883, 0xd7f0c5f1, 0xe4e3e1a, 0x43835943, 0x88b90114, 0x899774a9, 0xe6698711, 0x2c9c535a, 0x56176e4a, 0xb0a59b23, 0x40c53249 }, { 0x1b24733f, 0x690ae999, 0x9a86f3f, 0xd9ae5328, 0xbf5985c8, 0xef5234e5, 0x123d93be, 0x5a894760, 0xb63f57ec, 0xa0ceaf78, 0x690078b, 0x1581f574 } } }, { { { 0x1b807644, 0xe46288dc, 0x8b77a7c6, 0x6e6596d1, 0x4b0df4f, 0xe4e314a0, 0x10b63250, 0x470eb9aa, 0x2585f610, 0x60e6e42f, 0xc8cd26c0, 0xdc29e5f3 }, { 0x8ce11962, 0x8a479c4f, 0x2542d9fe, 0x95106a96, 0x19efe23, 0x2fd0df2a, 0x32830738, 0x8602b3f0, 0x30fa076, 0xa2177e19, 0x9a6d9d06, 0xc960d141 }, { 0xf96e74f2, 0xc5bf21ef, 0xa2452703, 0xc3acc77b, 0xce93a72d, 0x4453ba3f, 0xf806d3e7, 0x42ac778e, 0xa2e8b06b, 0x9d5f6151, 0x62e16323, 0x62004b7d } }, { { 0xba9a32ca, 0x7eb2f0eb, 0xb9a9b26c, 0x6f44d12f, 0x2d4587d3, 0xc832f3b1, 0xa87ec1e4, 0xd3ef688f, 0xdf1b4b38, 0xccb3918f, 0x3827c55d, 0x6259a82c }, { 0x14212ecb, 0xef7a9b1, 0x57de7cb3, 0xb31af563, 0x2f0c48ce, 0x800e8e85, 0x2775c9a9, 0x8644ce77, 0x728ba9e, 0xa4dbfcb6, 0xebd3d302, 0x751dfae1 }, { 0xcd879ccd, 0xbe98d31a, 0x968f739b, 0x397a71c, 0xf593a6a1, 0xbf874f2f, 0x8962d65, 0xea8b641a, 0x680a4146, 0xb9d6f7b2, 0x68488db6, 0xd151350d } }, { { 0x1636ab8b, 0x93f4802, 0x380ce16d, 0x5adac34e, 0x68c7ada4, 0x5969f8df, 0x799f6af2, 0xd95003ec, 0x74a0985e, 0xf954388d, 0xb67e3e4e, 0x4634d89f }, { 0x63dd2143, 0xdd682ccd, 0xd0ce87df, 0xc3e87135, 0xa1fc3c98, 0x298e0204, 0xd0141089, 0xb12065f7, 0x74f2d276, 0xd5478e98, 0xde0a9c6b, 0x8bc2c896 }, { 0xd2b29e14, 0x8a494ed8, 0xb121627c, 0x32b0e29c, 0xc983c1e1, 0xdfa42b7d, 0x1201aebc, 0xc47229c6, 0x86ae6c0c, 0xef18fd31, 0x23b2c358, 0x764b7759 } }, { { 0x6e35d6ba, 0x311f8bed, 0x979933b4, 0xa5c33416, 0x1f510e38, 0xeae87ff, 0xf7ecbab2, 0x22653626, 0x56409d8f, 0x319d0952, 0xef03d798, 0x451a5263 }, { 0x1e7f4284, 0x1b92f25c, 0x4f36a404, 0xaf22cdd8, 0x74220458, 0x18dbd1c0, 0xb8d15de9, 0xbe211216, 0xae0baade, 0x55b42486, 0x97f30f55, 0x60b74070 }, { 0x3d045d71, 0x45e8d24b, 0x49a15c33, 0x2727af6, 0xcbd2f3de, 0x977e83d5, 0x93880fa9, 0x2fc9be47, 0x6ae00363, 0x3423603a, 0x9aed95f2, 0x72c9c6ba } }, { { 0xf1b58c73, 0xd805fc6d, 0xdfb4847f, 0x1b1b6db, 0xa58eea86, 0x257b7fde, 0xa2256227, 0x344071c8, 0x772cd491, 0xc41a819, 0x445204c1, 0xf46e3af }, { 0xcc0f7e76, 0x73afe398, 0x3e961491, 0x61cb3b96, 0x1955611f, 0xb1cbe7e5, 0x34dc0c68, 0x489a43bf, 0x78568ac, 0x9d9ed2d0, 0x2e49dd33, 0x98a93ca2 }, { 0x7a0deba7, 0xd230fb6b, 0x5066657, 0x2c887605, 0x21ac5f2d, 0x5e72c882, 0xd876dfce, 0xa1f6773e, 0x9dfaa107, 0x5f639cb2, 0x90451383, 0x6dd3ef08 } }, { { 0xa6a6d713, 0x4d6c63a9, 0x5bf43a03, 0x5b1ea4ae, 0x1d3cd4f0, 0xfdca8533, 0xdaa92091, 0x8e3cb0a7, 0x6bbdedf3, 0x2c3768c6, 0x76095bac, 0xadd66c62 }, { 0x6c723757, 0xd8c914d8, 0xe4417c, 0xa2417386, 0xf14aba14, 0x7a9d41cb, 0x349c02b6, 0x18da0e06, 0xbec4ddf0, 0xb3a7e350, 0xd1d5c402, 0x9178f2f9 }, { 0x8efa314d, 0x4b82c665, 0x3cb7f049, 0xc52493e5, 0xca7dccfa, 0xe90b7b6a, 0x28a64208, 0x8b62fc5c, 0x71fe14bf, 0xc0133673, 0x7f94b91b, 0x35e1d7f1 } }, { { 0x619560bf, 0x40a533b6, 0x5088f68a, 0xdbdfa733, 0xc9f3a721, 0xba5b118, 0x2240f752, 0xe6b11c44, 0x47d98df1, 0x2185c744, 0x7c11159d, 0x3162be7a }, { 0x3b6984ae, 0xa9652689, 0x9bbc1102, 0x4bea9159, 0x1c08b79d, 0xad55efe, 0xc955f9c2, 0xee26309b, 0xda4bfbad, 0xbbff1f56, 0xe70612fe, 0x79d2a91a }, { 0x9657816c, 0xc8e6fb26, 0x9b0bc0df, 0x8c48ad3f, 0xfc644975, 0xe496b17d, 0x1e1d5bab, 0xbf628762, 0x6411df5d, 0x53d75f27, 0x43302083, 0x16028cd } }, { { 0x226f900b, 0xb141720, 0xf28e00a8, 0x2c77cad6, 0x8806181c, 0x879f66a4, 0x5aa04508, 0xe40def5, 0xf6b8f8de, 0xe8cc2db8, 0x2d33cac8, 0xb9c3abd7 }, { 0xac327e17, 0xbf1145f4, 0x1cfded02, 0x99255a33, 0x20448204, 0x9b7a57cd, 0xf93588, 0x1ce36dc4, 0x89a5ddd5, 0x17fd3bb0, 0xa88b68cb, 0x43f978e7 }, { 0x841e5e3b, 0x1bf84459, 0xd6abeb76, 0xf5d9d3b0, 0x8373b5e7, 0x9ac81239, 0x815f8c35, 0x11d1fcbf, 0xe855a1ef, 0x7cc64561, 0x94520d52, 0x7ab5ffb7 } }, { { 0x2d54f081, 0xd2b6d470, 0x5fba892c, 0x50ee7124, 0xb4cfb808, 0x8949d5f1, 0x2784563f, 0x3e19d9be, 0x588a30d9, 0xe8f2999d, 0x20d0835f, 0xf0c215c9 }, { 0x75ba4e3f, 0xe3a9a090, 0xe51982ba, 0x4423aaca, 0xdd705a2d, 0xe3ca5a87, 0x15aa20b8, 0x3fc7f939, 0x6af47474, 0xf2f793ae, 0xe58a3ef6, 0xaf1e9ab8 }, { 0xf70a75d3, 0x27df4bc, 0xa2461689, 0xce5b84fb, 0x28e1a892, 0x6df3e295, 0xb5da2009, 0x6e5fb28d, 0xf11f3fe1, 0x22ac19c5, 0xca581cc3, 0x96b785f } }, { { 0x52ccf149, 0x67bbca7, 0x894f117f, 0x594897c0, 0x27ba23dc, 0xf72373d6, 0x2a671c0e, 0xdd699a22, 0x7178c610, 0x1f4cf1be, 0xe50a2685, 0xd0def003 }, { 0x4e1d176d, 0x851dfaf3, 0xb2f85d42, 0x4d41f797, 0x5101590f, 0xfa792c68, 0x1dd9fde1, 0x1628b962, 0x7134068c, 0x31549f21, 0x60e9daff, 0x98b63d32 }, { 0x5800a4e7, 0xf178c847, 0x946db599, 0x3515eb5c, 0xfa10996d, 0x12368ad2, 0x9f551866, 0x454fd014, 0x7d9148ad, 0xe7a65a7d, 0xace66a58, 0x2eb04842 } }, { { 0x7c3b98a9, 0x94e35d7a, 0x3aa379f8, 0x1fd1e835, 0xe51538ba, 0x248e057e, 0xce9d526c, 0xc4d9044, 0x67407d64, 0x326daf45, 0xbd12a0e0, 0xa16f9192 }, { 0xb6c8d29d, 0xbdbc701c, 0x5f46e7c5, 0xfb597e3, 0xc184f84c, 0x3aeb76fc, 0x9be7d543, 0x888f7541, 0x8ae151aa, 0xff412f14, 0x49d3b1c5, 0xc1159a6a }, { 0x91f334bb, 0xb629e7fd, 0xad76e26, 0x1adb8dc9, 0x456f7507, 0x3bcd05ef, 0xb3200c3e, 0x2fe1c2fd, 0x58345ea0, 0x1de30f4e, 0xb9f44cac, 0x2937f8e8 } }, { { 0xc2d5f79f, 0x8e6ae19b, 0xe88caf13, 0x708e4c0b, 0xcff27284, 0x7c6b0ac5, 0x7f053dbb, 0x2022e95e, 0xc2ba18fb, 0x538d1899, 0x44816c29, 0xf0599315 }, { 0x2c9be94a, 0x5a2cbb64, 0x8075335b, 0x90986aa1, 0x79a915b3, 0xa2192683, 0x8e27ada8, 0xb3bf4567, 0xe65740bb, 0xac7c9229, 0x82fee622, 0x95fae9de }, { 0x44801d61, 0x36e6e0ba, 0x2a23814, 0x1b48cf28, 0xea58d19f, 0x809f94cb, 0xb5561484, 0xdb511754, 0x38a7e2a2, 0xc698c277, 0x37bcce8b, 0x88fa2bd4 } }, { { 0x3907abf9, 0xe7cb2d75, 0xbc94f12e, 0x30447365, 0x255a8428, 0x839a2d37, 0x35bb5a0d, 0x2d04fd52, 0xfd07ac06, 0xe403237b, 0xe9ebcb33, 0xc484959c }, { 0xb683342f, 0xf43d694a, 0x47b18aa6, 0x182b9156, 0x2bab1c8, 0x33876990, 0xd05b1a93, 0x7c20afef, 0xa8373673, 0xba3b1e70, 0x35ca5bb6, 0xd9b58e6e }, { 0xf39d87c4, 0x87d7f75d, 0x9caeeca1, 0x9089f6f2, 0xd218e1c9, 0x27c3d93b, 0x1cbaaba6, 0x7f48f8de, 0x6d806ab5, 0x6743b044, 0x34c98ea1, 0x85f0e476 } }, { { 0x8517cb6c, 0xf59a72e3, 0x44447b3b, 0x2c55af62, 0x8fae7609, 0x38e49f88, 0x9a6b91ac, 0xa2c5352a, 0x61052194, 0xff889313, 0x69ac731d, 0x774d7a }, { 0x442c8106, 0x504d95a5, 0x6dec208b, 0xd2f03c7f, 0xd2ccae69, 0x2c1ed5c, 0x4fcfb44f, 0x7a715d5c, 0x184ddf6e, 0x11ec1d3e, 0x8b90b1fb, 0x585fc071 }, { 0x9adea7e2, 0x27b39a90, 0x6c4ff436, 0x605b69db, 0xc8cf5f76, 0x8e5f45fd, 0x87c5c738, 0x999e8107, 0xd1ce8d78, 0x72cdb6af, 0x9be7e273, 0xf0eaf0d6 } }, { { 0x54d2ca2d, 0x80b47fab, 0xe8d0e8c7, 0xf7b55f9c, 0xf6d60f1a, 0xdc0bc33c, 0x20d0b17d, 0x8eccdf24, 0xfea8750, 0x541eb624, 0xade015be, 0xf36e59a7 }, { 0xe4ce66a4, 0xcb14d942, 0xd2e9bf19, 0x79a18ed0, 0x20a658da, 0x53fe6b97, 0xdac54cb3, 0x4b240fcd, 0xe0b9fd8b, 0xc00b6c7c, 0x7e5f9811, 0x25a12903 }, { 0xeb725949, 0x1f2b5856, 0xf2fc5f0e, 0xf327d823, 0x70a9fa52, 0xe1fca77b, 0x10a8db0b, 0x2150b44b, 0xd822593d, 0x4a2d6168, 0xafc8fb77, 0x6154f0c8 } } }, { { { 0x2123c8ce, 0xaf241fc6, 0xb7c43740, 0xbd676f2a, 0x423b8cfb, 0x476b651, 0xaa3c2817, 0xefc10f05, 0x214a7f7, 0x89799deb, 0x1a89e5ca, 0xcbf8a0ac }, { 0x3f3e604d, 0xf41a528b, 0x6fa83b02, 0x969f5166, 0xb9433f14, 0xff04de61, 0x391cfea0, 0x30d5728e, 0x550bc382, 0xc5ca3217, 0x18155f20, 0xe08dd23 }, { 0xf68c390a, 0x3c2b8a68, 0x3841abfc, 0xc33f3101, 0xc228aef6, 0x1a860ccd, 0x1c31f523, 0x1543d4d2, 0xc3892ac8, 0x6b57d4cd, 0x18faedee, 0xcace2260 } }, { { 0xd6759f91, 0xe43ff6c, 0x4d5d3672, 0x2fe2e1d6, 0x5e7798f8, 0xe9159509, 0x6647458a, 0x4b79684, 0x4c6c989, 0xa12eea7, 0xf532ffb2, 0xc8b8f8c2 }, { 0xc68885ce, 0x7604e285, 0x447ca505, 0x8592a9ce, 0xcc1ff36a, 0x384fc5ad, 0x5c4b7808, 0x13c53213, 0x6557410e, 0x9d01790d, 0xfb6fa828, 0xa49140aa }, { 0x46bc7fac, 0xd8b42860, 0xb0f113b4, 0x57c2c9f7, 0x21d8a6ce, 0xcf7f998f, 0xa45df614, 0xdef3e9bd, 0xbf0b73d0, 0x3789b43c, 0xebb05aa3, 0xd518a422 } }, { { 0x7332cb44, 0x5653a5dd, 0x8a90d6bf, 0x71d4880e, 0xf0e525a5, 0xd8bc1745, 0x81b47db8, 0x96d24766, 0xa91fec43, 0x6d406308, 0x1bb1c85f, 0x289f531d }, { 0xfe60a3d6, 0x6dcf4948, 0x4d4a9e0e, 0x92223520, 0x9e9b2ad, 0x4aa73767, 0xc9b61b1c, 0xaae9675c, 0x7eef14ab, 0x290a6f60, 0x548a7592, 0xb7ee750c }, { 0xca7748f5, 0xfe47cbdc, 0x7de99acd, 0x4afceb71, 0x54babc01, 0x2c99892b, 0x23bd6222, 0x775c09e4, 0x8fdaa321, 0x7010bc72, 0x928b7499, 0x3774e2b2 } }, { { 0xc3af0bbb, 0x18710d9c, 0xb47138db, 0xd8769f4, 0xf110aaa1, 0x32795c6, 0x558cb95, 0xc1a7c563, 0x3c937053, 0xa26f9d44, 0xde7c712c, 0xd3bbcd21 }, { 0x1032d375, 0xd21ea6ea, 0x64098ba5, 0x85bfc68f, 0x71119721, 0x6f821f2a, 0xa028113c, 0x8ebb9bfc, 0x6c6d27f1, 0x96bd1b6e, 0xeb65c685, 0x15541826 }, { 0x8d629828, 0xf660859a, 0x8e7c0178, 0x73381091, 0x84dc0add, 0x718a5f1c, 0xb370dd4f, 0xb73f2e7d, 0x8486462, 0x47d85c54, 0xd3d79d63, 0x754cd942 } }, { { 0x86566517, 0x93a2cd7b, 0x63171596, 0x97f37a36, 0x2cfa9ca8, 0xec0a3866, 0x98287de8, 0xea7ea34c, 0x479aed5a, 0x34742177, 0x312abddf, 0xfcac7641 }, { 0x511135c6, 0xad02b059, 0xc12480a5, 0xfffcbecb, 0xe0f458c2, 0xc4836db2, 0xeb8c63f6, 0x271aac8f, 0x1ec8c019, 0xf36d5915, 0x3425c3f6, 0xfb706990 }, { 0x4b435dc8, 0x6027b230, 0x501958af, 0xe5adf410, 0xaafbb806, 0x7ca7e9f5, 0xb7b65b6f, 0xf22857b0, 0xcb8620a4, 0xf53d449e, 0x5ff78517, 0xe8d208d6 } }, { { 0x61a2f87d, 0x60536412, 0x363d800d, 0x379a934c, 0x4cfdb4c2, 0x28506e9a, 0x702fc7ef, 0x460019bf, 0x69aa10c0, 0x91cdce6b, 0x74f317b2, 0xf13b8c90 }, { 0x62e77e01, 0xb1ee783d, 0xdbfe1219, 0xc9daab70, 0xb6c70065, 0x29c8eb72, 0x2c36f399, 0xfbc7bf45, 0xd2818cff, 0x9b940757, 0x6d530c0, 0x6efb5805 }, { 0x9c9519d4, 0x1e12f8e5, 0xfb7eb31f, 0x433fb55f, 0x663754c6, 0x717a9cda, 0xd37feb6b, 0x1beadf72, 0xaf174f1b, 0x6d43e5b1, 0x37ad6cf4, 0x5022f87e } }, { { 0xafd53949, 0x7824ef8f, 0xcb7506a3, 0x86306d06, 0x87bd9817, 0x1d96f55f, 0x17741fd0, 0xd3f653cb, 0xd8b165bc, 0xdd5cf041, 0xf4d7c108, 0xf0b32427 }, { 0xe19652fe, 0xdbd87f40, 0x10529428, 0x8f07ce52, 0x3e2229f7, 0x9e3c9ff9, 0x1f73ce7, 0x752324a5, 0x618017d4, 0x74b49c34, 0x56fe72c1, 0xc3dc8e86 }, { 0xd0751091, 0x1ff60ed6, 0xd54a6375, 0x351d13ee, 0x9d37087b, 0x197542c1, 0x244ae614, 0xa3fbe722, 0x51e27595, 0x440f46fe, 0xd29d52a0, 0xf0a5b409 } }, { { 0xec9a8ed, 0x7e295b5, 0xfb4ad301, 0xe242248d, 0x57d4e4a, 0xdaedc488, 0x91329d24, 0x19ca5387, 0x220ac979, 0x6e743e1b, 0x71ca3e37, 0xb5e5a4f1 }, { 0x5bb5fb6a, 0xb933d536, 0x188bc16f, 0xbb43e09c, 0x8cccbb1, 0x8062ad3f, 0xa50615ff, 0x759ab4d9, 0x5da3f68a, 0xcb9cbba3, 0xb3ea0442, 0x76c5a9cd }, { 0xd8a3a7f0, 0xa20afcc6, 0xef238089, 0x5e41ae4f, 0x97a9fc9c, 0xf03c84fd, 0x8d0ee59f, 0x47af4477, 0x7c43c564, 0x9d1c166f, 0x605f1fa6, 0x539c4a11 } }, { { 0x1e006da4, 0xb66658f7, 0xb4ce5b10, 0x9f79c4be, 0x26165e51, 0x9ed5569e, 0x2870b6fa, 0x8d30eaef, 0xed2d6d49, 0x4408067d, 0xbb46b53c, 0x82d2f466 }, { 0x85cd077c, 0xa74817be, 0x7de5f436, 0x2be4c14d, 0x8e282514, 0xd5549ac5, 0xd5df1dcc, 0xf4dac04e, 0x10c588c2, 0xf2c4979c, 0x22c035f2, 0xead37dd5 }, { 0x9800d90e, 0xb549f5dc, 0xb4cbb096, 0x11615965, 0x4da85099, 0x892c23b6, 0x8d33fc4c, 0xd3bb004f, 0x7256fc1c, 0x839ea80b, 0x5aec8b98, 0xffdc0025 } }, { { 0xcbed80b2, 0x400a9f60, 0xc56579dc, 0x6260ddcd, 0x7e001805, 0x27b89ed3, 0x1e99fd0d, 0x39c04554, 0x74fa1314, 0x7407641a, 0x5bf0c69d, 0x8517941c }, { 0x128d8584, 0xe41cd702, 0x2ddf789d, 0x6a75d2be, 0xbcdd1114, 0xd346de17, 0xa473a2af, 0xf4bcf842, 0x2dc62b46, 0xb74b80ec, 0xd18d38e1, 0xb29670bb }, { 0xc5cb9a88, 0xd16777ed, 0x5638aff3, 0xc1a8fb55, 0x4235d9ee, 0x9bcd1c63, 0xe7d40974, 0x8b8792d2, 0xb9b2c3aa, 0x4df0a4b5, 0xae0e024e, 0xcc23eac3 } }, { { 0xb91a929e, 0xbedddcae, 0xa5b31341, 0x8b22f447, 0xd7d2d1b, 0x7fa8215e, 0x68ac7405, 0xe3156f1a, 0xb69e8df1, 0x55ccd118, 0x8cd4435c, 0xaf50d089 }, { 0xea82b73f, 0x781dbe38, 0x45c3a572, 0x55a96c7a, 0x7a067f14, 0x67d2462c, 0xd15512a, 0x99cf89d5, 0xb433bc59, 0xe6b727a0, 0x5e37ebfc, 0x26c39a1f }, { 0xd8eae1f8, 0x8e25439e, 0xd4ac83f7, 0x9b60c3bc, 0x22e4e8a8, 0x934e6268, 0xd153ba3c, 0xf458f0ac, 0xf66e6d32, 0x23cc4c10, 0x67d871bc, 0x033f89 } }, { { 0xb195d71c, 0xf3b8ac72, 0x176ee97b, 0x372a4903, 0xa3eb0f09, 0x679fa641, 0x668a44ae, 0x70d24104, 0x4c9f4bf3, 0x642998c, 0xe172fdd3, 0xdb2ffdc4 }, { 0x86a2aae8, 0x3c3b747d, 0xbe20095f, 0x5ffcb202, 0x3961d102, 0x37150c8a, 0x435430af, 0x81d6774, 0xa5dcc406, 0x58686a1a, 0x25d156b, 0x8febb292 }, { 0xfa1e2259, 0x17c7c1be, 0xbd7de582, 0x2144af5e, 0x44078827, 0x619fe5f6, 0xee2abbf4, 0x90a0a5d5, 0x231d307, 0xdf3b24a, 0x6a6cebb9, 0x3a84522 } }, { { 0xe1107764, 0x285d3c54, 0x9abc89b9, 0x3405a44d, 0xde846142, 0x23fa7ad9, 0xe98c9613, 0x98013af9, 0xa86da030, 0xa0dc1a13, 0xd8c7e76c, 0x1115a7f7 }, { 0xc42eae1d, 0xc872e756, 0x8b5e138a, 0x7a4eaa2e, 0xf06fcfab, 0x48331aae, 0x13e23c51, 0xad53f27, 0x684c41aa, 0xb613020c, 0xc6304cad, 0x36f94ddd }, { 0xa44fd053, 0x33dc43d5, 0x6e0932b8, 0x750ba34e, 0x6b37cff4, 0xd381ec6, 0xa52dde0, 0x56a47427, 0xd3c5ac65, 0xa7d72912, 0xc07804d, 0x2e0a7fce } }, { { 0x593baaa8, 0x96948dbc, 0xf5cb5d30, 0xd735667e, 0x63db0161, 0x242b2741, 0x8de1653, 0x534e5546, 0x274d51f0, 0x671e91fa, 0xc2a83578, 0xa821e7a6 }, { 0x979f3a51, 0xb845738f, 0x49eae5fa, 0x473b3969, 0x459e418f, 0x255388fe, 0xca62bdba, 0xc2129200, 0x4516304c, 0x7bb90a14, 0xccb347e, 0x4fa0c52a }, { 0x5050e79, 0x1b091a0d, 0xdc67b451, 0x6d5ddb9d, 0xcb8c8ca7, 0x7081fa4a, 0xe8aaf5fc, 0x79e4924d, 0xd8afd069, 0xb2f92f87, 0x29ed7be8, 0x23061378 } }, { { 0xda29cfc1, 0x4afb85cf, 0x41084c99, 0x63011094, 0x17a51423, 0x3b7e4eeb, 0xba8166a9, 0x3aee7ea8, 0xc18c680, 0xde43aa7d, 0x2f3a5c94, 0xfdf51647 }, { 0xeea86f1, 0xd250bc36, 0x94ecb675, 0xd8f49cf4, 0xeb9b3944, 0x44ef87ac, 0xfa5e338b, 0x3e064455, 0xc8427759, 0x38bec8c1, 0x81584ce6, 0xb6fc5dd5 }, { 0xf2a3a306, 0xe0ca644b, 0x1f9e04e8, 0xdddefa01, 0x70f43874, 0x9e89bfff, 0xaba505e0, 0xec7987a0, 0x9773890c, 0xe9b627da, 0xe654d763, 0x37dfe900 } } }, { { { 0x429cf888, 0x2dc5827c, 0xf240c10f, 0x36e73427, 0x6bcdcaa6, 0x5d168637, 0x68b3f2b3, 0x6e6ca53e, 0x430e99a9, 0xdfe8a871, 0xafae5485, 0xe8acb7f0 }, { 0xb3aa5711, 0x51b962df, 0x5ef6a001, 0xf66c7ee4, 0x34d394d0, 0x9c137b11, 0xe9dafe92, 0x7a87fa21, 0x79b623c8, 0x632855d5, 0x1cc44bd2, 0x5ef0457a }, { 0xa5db33c4, 0xcf0ae5f6, 0x407c2666, 0x31b2429, 0x74a36f81, 0x4c44c5da, 0x75ca73b5, 0x7dc407e7, 0x10f9deec, 0x5d6c0bc4, 0xd7aba6a0, 0xcea6aa5c } }, { { 0x7bdfea5a, 0xadf4fb9c, 0x82bb56aa, 0xf0671656, 0x594e4fe1, 0x242f64a7, 0x2d0b7c17, 0x1883f45f, 0x8d5b07aa, 0xcf590775, 0xb179a706, 0x3c433854 }, { 0xbc29c821, 0x67c5443d, 0x471840cc, 0x92a5afb7, 0x4edae660, 0x3da4a89b, 0xf357f3d2, 0xb1574d15, 0xc2b329f0, 0x87ecc9e9, 0xfc0991ac, 0x38825d25 }, { 0x4f93245f, 0xb44e81e, 0xdd8e29c5, 0x73ca5559, 0x1af1f8a2, 0xcfe245c6, 0xdd27fcab, 0x84df8ec8, 0x3118cfd4, 0xe46709e9, 0xd4b62238, 0xdefd5ddb } }, { { 0x3beb045f, 0xe547255, 0x2bf2ee99, 0x40c9c998, 0x7833a21f, 0x47fb9b84, 0xda1ce615, 0x4f763c6d, 0xed78b121, 0x98893066, 0xaf0c8e02, 0x417286fd }, { 0x226b047f, 0xd2194097, 0x944817a0, 0xd1a17535, 0x87cfa37f, 0xdc89eaef, 0xe322f496, 0x2674cd6d, 0xbb80b41b, 0x7c61503e, 0x6fe431be, 0x38f34a49 }, { 0x7e60f09c, 0x98451070, 0x8df6c6c4, 0xadbd3981, 0x1b46f170, 0xad50c8c4, 0xb82254d1, 0x7f850b1, 0x2c97ff34, 0x3bfc1e2a, 0xc4201170, 0x3e586ac3 } }, { { 0xa62379bd, 0x207898b2, 0x9afc30b0, 0xff0be76, 0x299841d6, 0xf26b3dde, 0xd87e6a3b, 0x49e77c55, 0x6d15d27, 0xcd6366f9, 0xa8cdccd4, 0xb6dc0a3d }, { 0xac2f46ae, 0xa803a8e, 0x8559480b, 0x64e15bbd, 0x6e2861ac, 0xc3ae76f5, 0x6b2f0ecf, 0x81bb915d, 0xa6880306, 0x85d3eddb, 0x1933abb5, 0x3d785c4e }, { 0x4fa2c558, 0xb2b6de5d, 0x70967db0, 0xf5c2808c, 0x1620e7dd, 0xf88f054c, 0x9c4f45ef, 0x970b2433, 0xa2f7752b, 0x80788ff1, 0x98a87d38, 0xf2d13589 } }, { { 0xb1d501d0, 0xaf4acb7, 0x82ceb77b, 0x5b4bf8d3, 0x9b5de711, 0x9fe4a668, 0xb67a4639, 0xa6ef971b, 0xf34a968d, 0xea4ebc0f, 0x5e869de7, 0x45dfbed5 }, { 0x59130756, 0x121245ab, 0x33ded6ca, 0x82ed1aba, 0x41c12f64, 0xf8b53397, 0x99fe9963, 0xf1d395f3, 0x6a7fea8c, 0x1730ddf3, 0xbcad3a1b, 0x823b1cf9 }, { 0xf5d813c1, 0x90dd74ae, 0x7a4dbde5, 0x6d2856d, 0x5bb64330, 0x68037c1e, 0x9b226a53, 0xa4d0cbda, 0x82cadd00, 0x4b4f2378, 0x9f80af33, 0x8633a905 } }, { { 0xe2254380, 0x2556336c, 0x5024d3f6, 0xb12babea, 0x629539f0, 0x9e40a9a9, 0xe0b24b08, 0xe03eb890, 0x2ac1b935, 0xb412744f, 0xeaa38622, 0xf7cd31b5 }, { 0xd56273d8, 0xaff5f94b, 0xe0b506e0, 0x338054e2, 0xbda79ac6, 0xcb413841, 0xa691da93, 0x70e64e73, 0xa5ccbd21, 0x4265524a, 0x322f8ef0, 0x1de48c58 }, { 0x7232f482, 0xebbcfaa1, 0xbce358b1, 0x48b23171, 0x13e7a62e, 0xd5f8adaa, 0x6226e394, 0xa21fe786, 0x9be68f45, 0x64c99b3b, 0xdc7f8f3f, 0x5efda162 } }, { { 0x64a5dc69, 0x2d6e0428, 0x64be815d, 0x5d7278c2, 0x4193089c, 0xcedaad5c, 0xf7d3965e, 0x6bdf6c24, 0xc141b4a3, 0x6ec83690, 0xe467f000, 0x3c21b1f4 }, { 0xad091824, 0x853c9c63, 0x74fafe5b, 0xf9ee1d7b, 0x6bd88791, 0x320fa26a, 0x2063369, 0x4a8bc774, 0x9aae38d3, 0x26ae2a88, 0xa76396e9, 0x3d49e382 }, { 0xc60ebb27, 0x36120f79, 0x73ebff78, 0x5387e839, 0x45ecc4c6, 0xe1095b51, 0x6b8f061f, 0x7307e807, 0x778796b3, 0x1deb8465, 0x7e0337ea, 0x728b472f } }, { { 0x60dacbf2, 0x52139997, 0xa30af0c8, 0x1d09301c, 0x7c92d66c, 0xf6afcf8b, 0x84956517, 0x98388539, 0xe2e4d5d8, 0x68cce3a4, 0xcdc57708, 0x9ff6c392 }, { 0x4d9526c, 0x85c23d7d, 0x57ae40a7, 0xfedd15d, 0x50af9359, 0x6fb3a321, 0x581b36ff, 0x216a6f29, 0x8e9cff1, 0x95d05337, 0xe3661b7f, 0xd564ea36 }, { 0xd8c701c3, 0x2adaf7d0, 0xf0caff8e, 0x8f68b113, 0x956024b5, 0x6b3fc83b, 0x7ce5523b, 0x8eabc542, 0x9ad69028, 0x862a65a7, 0xbd1d69b1, 0x17ad9834 } }, { { 0x57078d69, 0xaf19b307, 0x73244930, 0x9100eaa, 0x1a3f2d5f, 0xbaa4425e, 0x71c41527, 0x5378072a, 0xa701d70a, 0x1daba3ca, 0x552908c1, 0x62e24489 }, { 0xf84ade5c, 0xbebfc11a, 0xd1f0ed1d, 0x6b184de8, 0x9102ebae, 0x6838e036, 0x73b8a64c, 0xd229d972, 0x4c62c01f, 0xa0672a9b, 0xe0f07a4e, 0x9760ba78 }, { 0x4d5d0428, 0xe847f212, 0xdaf6536f, 0x1a94ce5e, 0xc6815a56, 0xc1aa666d, 0x81c22ef3, 0x75bba06, 0x178fe60d, 0xb7da10ec, 0xfb49ba07, 0x58a88679 } }, { { 0x3f8506fb, 0xc3cf6110, 0x2f761d53, 0x170f5a88, 0x6f839331, 0x3d4c82b9, 0x60eefb13, 0x48b0fd2, 0x3e7cc5c6, 0x4a7d0381, 0x514f3f2c, 0x8924efc2 }, { 0x5ad9a74, 0xbd045c4f, 0x943c1259, 0xf6571f0f, 0x9f03f50c, 0xe8150481, 0xf34b280, 0x6dc351fa, 0xc202fe6d, 0x94b9647, 0xa1f944d0, 0x5513c4da }, { 0x4efdecd7, 0x5e0d5aec, 0xb9a58770, 0x349931fc, 0x2555e625, 0xb61f3f0d, 0xb934d955, 0x1fbd41, 0x522c3c24, 0xb8091101, 0x6868012d, 0x44ce6fca } }, { { 0x1b01b6b, 0x2455afb2, 0x37e61ff6, 0xffd67a92, 0xfe823edf, 0xd26eb9c9, 0x4bd6b292, 0x2dd281d4, 0x87c87090, 0x2bc5aca0, 0x27d051, 0x8f47ed5a }, { 0x2cf6cbc3, 0x89be068e, 0x2684a902, 0xe56ec4b4, 0x89429351, 0xf663685a, 0x51dfa8af, 0x665b9ee8, 0xee1dccd3, 0x167d620b, 0xb3b4d8f2, 0x65492bc3 }, { 0xbd11f868, 0x4315db29, 0x4b5bd351, 0xeb638e49, 0xcb0a97df, 0x10894ea7, 0xddf33933, 0x684da517, 0xde708da5, 0x470bc441, 0x736109f5, 0x673d21c6 } }, { { 0x2d459a4a, 0x417a162c, 0x638d33b8, 0xaaa1984e, 0x775e456, 0xa71dc295, 0x27c05cbe, 0xbc6c2968, 0x3a8ad5ee, 0x83af6111, 0x9996165b, 0xc2635f44 }, { 0x2eed468c, 0xd827eff3, 0x70ddf9b9, 0x75c1856c, 0xc4d6f37, 0x37a15a66, 0x7a6d5092, 0xc6dbf5f7, 0x2ea10896, 0x53b2d223, 0x744d88f5, 0x8f44bc5f }, { 0xd7af761d, 0x1dc8e83a, 0x6157ceef, 0xd9b6d688, 0x87d3fce7, 0xefe4dece, 0x8761ea0b, 0xdc50964c, 0x90e3165c, 0xc11c7756, 0xadc29464, 0x3bc6dbaa } }, { { 0xb7d824c6, 0xf362cb2e, 0xd3638265, 0x5ea801dd, 0x8a03eb2e, 0x9b42b97e, 0x328da440, 0xfcfd4472, 0x8d3734af, 0x95019e3d, 0xe1608245, 0x581fb571 }, { 0x61692307, 0x1d807888, 0xd3baf66, 0x5066e104, 0x23cb8df0, 0x2a27411f, 0x6082bc1e, 0x7fc82a4f, 0x530bf4be, 0xde47f6f6, 0xde25f2ad, 0xba6ad382 }, { 0xefcba387, 0xf3a57f06, 0xbc0e51f4, 0x9b88e6, 0x4886e07f, 0x1c77e6e, 0xaa190198, 0xdfb5bc21, 0x9b200451, 0xa9891cbd, 0x22174c88, 0x1007e6be } }, { { 0x48c07e29, 0x5810ca3c, 0xd32f3b4a, 0xbe16dee, 0xcce01f1a, 0xbb89a5ba, 0x2e6d08ac, 0x542abc46, 0x9cbb42ce, 0xa9cc20a7, 0x243983f4, 0xc18491d6 }, { 0xc2efdf66, 0x504ed19c, 0x5e944e06, 0xd7a49461, 0x83ba30bb, 0x368de410, 0x7452b546, 0x91f137df, 0x518354b8, 0x5e53302, 0x50acb385, 0xc4166513 }, { 0x8df7add8, 0xc5c2f1a4, 0xa74ef96f, 0x765515ab, 0xfd47373d, 0x37272817, 0x305a7adb, 0x53f8261c, 0x63a11d07, 0xdebd26ed, 0x78907242, 0x71876fa } }, { { 0xc4b001ad, 0x23e1a115, 0x3c089cd5, 0x1c44a1a1, 0xeea01b9, 0xb7575d2f, 0xe1236cb7, 0x9efd5436, 0x19107c1a, 0xb5604ca0, 0x3e0d471b, 0x1db9a10f }, { 0x6e2b3ea0, 0x4cd2270e, 0x6dd0fa89, 0xdd43f714, 0x275be217, 0xc3639495, 0x69463814, 0x67cb6229, 0x911c2283, 0x6463e6ce, 0xbe04479a, 0xd8b29c2e }, { 0x4bbd568, 0x66a806c1, 0xd00f13d4, 0x32ec4422, 0xed366a64, 0xc62bafb6, 0x9406bf03, 0xb986639, 0x2d38cd1e, 0x5d9d41c9, 0xc6243e43, 0x9b22548b } } }, { { { 0x3fc26eee, 0xa4ddb2b9, 0x818aa044, 0xd8a2ea56, 0x94743be6, 0x35040997, 0x1f1ab7f8, 0x1c5ad386, 0xa9d9ab7a, 0x249c8c28, 0x9eccb415, 0x734a3e5a }, { 0x6b2a56c0, 0xb268fca0, 0xdefecbc5, 0x80c928a7, 0xcc02ef7c, 0x21d8dbe0, 0x9e3d13e8, 0xeae262b0, 0x6f9866bc, 0xa2e27340, 0x417c7d0f, 0x20396aa8 }, { 0x7bebb1e1, 0x87c3778d, 0x3dbfd0e3, 0x54abf432, 0xeaada2e7, 0x357a1470, 0x2506a2b3, 0x19a1bf6b, 0x4d5437c, 0xad1a6e60, 0x2b67110e, 0xa7d63ee1 } }, { { 0xafde1a1e, 0x2ef862ce, 0x8a115eec, 0x2e2b6022, 0xd827d01d, 0x10a60e5, 0xdfc77df5, 0x9c0472bf, 0x21171589, 0x7214095b, 0xf26e91cd, 0xe6773402 }, { 0x823ecba3, 0xdb574ea0, 0x5f1dbdf7, 0x370b6228, 0x396041ef, 0x474e63bd, 0x58acb79, 0x36b80bdc, 0x91cd033d, 0x7ab4776a, 0xbd2daf80, 0xd346a8a6 }, { 0x805a603, 0x6dcf7c4d, 0x2f136bd6, 0x2a826389, 0x457578a2, 0x1efdc1ce, 0x5a673879, 0xeea92563, 0xab9002fd, 0xbf4ab3a7, 0x2a93fe0f, 0xedfcf298 } }, { { 0xe483b270, 0xc55233bf, 0x1034b862, 0x6b23682b, 0x807235a6, 0x9b64b694, 0x1575f7b3, 0x2b905dbb, 0x60fa5ec, 0x431e3af, 0xf63141ba, 0xaab8076b }, { 0x795f843a, 0x3bb65a92, 0xdb303025, 0xa4d50989, 0xa2808564, 0x7a3abd4d, 0x273233b4, 0xbe8f5ee4, 0x6024fcfe, 0x4e0ea32e, 0x4c066a87, 0xf6f29d69 }, { 0x5928a9c3, 0x2eae669c, 0xb1ddd629, 0xb923f2f2, 0x7ae78809, 0xb4dae5b8, 0xf70e554a, 0x4c2d3728, 0x5e0df891, 0x98b77232, 0x948e905e, 0x18cb1e05 } }, { { 0x9fb904f, 0xcece047d, 0x8b246366, 0x9cca06d7, 0xc1c47ac6, 0x1f6769b9, 0x33a0072b, 0x347dbd1d, 0x26e3f9c9, 0x36fa9757, 0xb3791622, 0x33f3e3cd }, { 0xaa09d77c, 0x67a091a0, 0x264d05d, 0x46e4ce6, 0x2148f5de, 0xb9cf888c, 0x6ca3247a, 0x8e07053, 0x3a296f69, 0xc197a260, 0x1fde860f, 0xb3f920a9 }, { 0xb5e7136d, 0x508c1da5, 0xeba68f45, 0xf9621d16, 0x7b306f17, 0xf4cbe8ff, 0xccf916f4, 0xccfc6d59, 0xa30dfdb2, 0xf4d2553a, 0xc3be450, 0x27fb7c7e } }, { { 0xc5cd55c6, 0xb1b29f3f, 0x748fb48, 0xeaeda613, 0xc36b7986, 0xc479624c, 0x97dc2970, 0x709399d0, 0x2bfd0dcb, 0x35665783, 0xb5b9903b, 0x8fd536f6 }, { 0xdff97dfc, 0x4f224409, 0xb4d8ecc6, 0x9a59e2f, 0xcf93b803, 0x4c102cce, 0x879cd180, 0x31ca16c7, 0x2eae10f7, 0x1ec64734, 0xe5ef427e, 0x1904eb24 }, { 0x99143ed2, 0x14019e3f, 0x428fdbbc, 0x39c0fed3, 0x57de7b61, 0xa8884742, 0xd9721bd7, 0xfa8fc07e, 0x8f7ac951, 0xaf88c886, 0x20c95e48, 0x3cdde3dc } }, { { 0xc918f8b0, 0x39f9ca51, 0x1044ba0c, 0x1afe6d2e, 0x32da32ab, 0x332e82a9, 0x7180bfbb, 0x431c147, 0x6009dd3e, 0x46fd9b21, 0xc2b520ea, 0xf520db9c }, { 0x218c53d1, 0xf9550aa2, 0x95c0ee60, 0xecddf02a, 0x5a0c99a, 0xc612cd6d, 0xdf572a99, 0x4434af8c, 0x8b3be934, 0xc4aad035, 0x1afc1e4, 0x515b45de }, { 0xf25dbddd, 0xe308f6c8, 0x7a925528, 0x14b8962c, 0x3211a802, 0x441b2cfd, 0xed3fef15, 0x67cb443e, 0x8e397b1d, 0x6ba88af3, 0xca6d32fc, 0xd85019b6 } }, { { 0x8568cdf9, 0xa5c0f085, 0x2d87c3ad, 0xb4378824, 0xcdd1cf62, 0xfbcb5bc3, 0xb3fc64d, 0xb225c868, 0xacd702cd, 0x73a772d3, 0xffd9024, 0x25b875b }, { 0x82a1373c, 0xb32addc8, 0x1edf2f75, 0x852d87ce, 0x645e0334, 0xf3577a1f, 0x4db0ff39, 0x5824cc99, 0xb15f9015, 0x31ea441e, 0x32d72422, 0x80e059f1 }, { 0x535192a7, 0x43f95b87, 0x256e78ab, 0x3d50ba4, 0x24473870, 0x60df4bf6, 0x83806173, 0x33e974b6, 0xf5623c3e, 0xeff1831b, 0x8763b5f1, 0x363a54cd } }, { { 0xdbc58f3a, 0x9ff003be, 0x1c2c7d44, 0xb78e5fc8, 0xe6e36a45, 0x6574ccfa, 0x903528c4, 0x87f97b8c, 0x745ae3df, 0xc9102bc, 0x1e840fd8, 0x8a91fd6c }, { 0x94a82f9b, 0x41b7d11d, 0xb437e0a4, 0x3141fd81, 0x5612c63c, 0x820d1e75, 0x55bad829, 0xf764cef1, 0xc1ce5e59, 0xc4d8b331, 0xb8d72eb, 0x1e0aaabe }, { 0xa32c58c9, 0x2b2152d5, 0x859df7ef, 0xa72ee3f9, 0xa5f24ec4, 0xea6f2970, 0x8b16d392, 0x6c6b37e7, 0x345c8e76, 0xfacdb89c, 0xbddfc194, 0xdb1ed824 } }, { { 0xf393e192, 0x4c4bfa9e, 0x971d9525, 0x37bb5515, 0xbc933d99, 0x13f01f5, 0x68503e9e, 0xa838194c, 0xb5348b91, 0x24a258f9, 0x7a689232, 0xc7d8e80e }, { 0x99ddd1b6, 0x8fd46965, 0x34f7232d, 0x77a59e93, 0xf86a457b, 0xd70089a, 0x6eacc667, 0xb21d7d01, 0xcfabf49, 0xb084b673, 0x5917f07d, 0x4eb7e00a }, { 0x8a892483, 0x3a4942fc, 0xfa9cff2d, 0x33a6e8b0, 0xe1abf15, 0x1a754af, 0xb2e77dba, 0x12d5c3a8, 0x383e540b, 0xa0245af, 0xf6ca13b6, 0x9cf759e3 } }, { { 0xf14f8da1, 0x111381c7, 0xe3a2ceee, 0x7fdd2d97, 0x130845f0, 0x6d3d37a4, 0x7aab5cac, 0xceec81c8, 0xfd53d8cf, 0xd751069e, 0xcffbd6f4, 0x36b1e282 }, { 0x365aa1a5, 0x22579da1, 0xdc371d90, 0xc1a1d54, 0xe6ec7fbf, 0xe61be3c2, 0x33d1bd5d, 0xa9d9e3ea, 0x31202749, 0x2f94488a, 0x834df767, 0x23275b07 }, { 0x85cd420e, 0xa590b73b, 0x72899be9, 0x601275cf, 0x670c64c4, 0x1183e172, 0xa51618a3, 0x304cef45, 0x4e5dd030, 0xc0cd0277, 0x4fbf24f, 0x58f08688 } }, { { 0x9605ec39, 0x154b293d, 0x3b542b55, 0x6bf99bbc, 0xb096aca8, 0xe53b666e, 0x1834ec5e, 0xa8ec6687, 0xe7224c08, 0xf47c9b3a, 0x5bb8cd4f, 0xfb5552ba }, { 0xb8418366, 0x68b6f952, 0x447b3fd3, 0x12ca2401, 0x5cebf1aa, 0x389ed59e, 0x17735d2b, 0xfb5e43f9, 0xc0d2dff0, 0x2de0d436, 0x54b49125, 0xedfb1b2c }, { 0x43a36b34, 0xdd7d9ec3, 0xe841883a, 0xc0874007, 0xe6502846, 0xe2f31ef7, 0x3333f10d, 0x17220cc4, 0xbae4e2db, 0xe4fc03c6, 0xc45d2478, 0x3e7489d7 } }, { { 0xde42da06, 0x1039bf0b, 0xcbf51592, 0xcbd7b803, 0x6077f94a, 0x2d4df9a8, 0x9f53544e, 0x49c729a1, 0x6f0bad2, 0xdbaf37a4, 0xe63589f4, 0xaa225bf2 }, { 0x6ad84442, 0x454df6e0, 0x2250b99, 0x141ca19a, 0x4d12ae60, 0x81ff645d, 0xfe25668d, 0xa31007c4, 0xc7067cd1, 0xa6428e4a, 0xf2665d4, 0x8513b255 }, { 0xba31f83f, 0x39a2185e, 0xbc8b2500, 0x935cd67c, 0x61491284, 0x494f2720, 0x60e96419, 0x21c3e095, 0xa60ad6bb, 0xeb7ebf7b, 0xf93b6bdd, 0x85514155 } }, { { 0xf62552a4, 0xe54807a9, 0x5c82001b, 0x851037d2, 0xb545fa4e, 0x464007f2, 0xb446787d, 0x75bbc630, 0x99cb0aca, 0x12c2e014, 0x8cc2e0e8, 0xf47ee70d }, { 0xf6a234d1, 0xa18e78a1, 0x4d1d5e16, 0x94d737c2, 0x3abe3170, 0xf6daceea, 0x82bbea8e, 0x6c290b3b, 0xab8fc240, 0xb2a28050, 0x535d2176, 0x71df38ae }, { 0x6ba04897, 0x145373c7, 0xaf0287a5, 0xa31d70ee, 0x4937bb38, 0x5221aef4, 0x4b305a06, 0x1192b6f2, 0xbad6d041, 0x84b4eded, 0x6a0273d4, 0x7f3a8d79 } }, { { 0x3e24785e, 0xa0565efb, 0xaca34a44, 0x947bbf9a, 0xb8609d90, 0x11493c5c, 0x860512c8, 0x2539f527, 0x759ada76, 0x4e9ab831, 0xa47d25ad, 0x6501df58 }, { 0xd494f1e3, 0x2be77ba6, 0x76d55098, 0x6f8789f5, 0x3b4e3d2b, 0x8adf0c32, 0x8d476bf, 0xbc3c2282, 0x2653dedf, 0xaa35392f, 0x29fbde47, 0xd7f02bc7 }, { 0x54a1fa2e, 0x51028d36, 0xa85f1d25, 0x516db8cd, 0x8a1ece40, 0x800123ac, 0x5f21d6c4, 0xbced7ec5, 0xa15a8139, 0x6e6c4eb, 0x475666b2, 0xa4a67d6b } }, { { 0x75acbe21, 0x5ea5718b, 0x2285b905, 0x14dd0f8d, 0x492ac2cb, 0x8a09f328, 0x11a2ed6c, 0xb13b0dd6, 0xe3c435a8, 0x931fee85, 0x4f1b4f05, 0xbe9fd7ee }, { 0x3fbffba0, 0x3591dab, 0xa625c63a, 0x216d5606, 0xe2d0688e, 0xee8024, 0x895b4e33, 0x6f9169ae, 0x6b7f9c69, 0x7e749886, 0x4505cbe8, 0x49893fc7 }, { 0x3a3ab133, 0xc498bfa, 0xd2b835a7, 0x28139786, 0xc671b932, 0x546dce17, 0xb8b2cf87, 0xc2031366, 0x17178617, 0x75b17e4a, 0x22058e11, 0xe6226e5a } } }, { { { 0x233b368f, 0xaff05a60, 0xf524aff3, 0xaf02756a, 0x7d3fa894, 0x3b096ab3, 0x52e4faa2, 0x8aabcef1, 0x7622fba1, 0xd2c1d8ac, 0x430b761, 0x61fb14c8 }, { 0xd6a809d7, 0x9122e619, 0x8ff9d629, 0xd92e96cd, 0x64b1d641, 0x2e7a6238, 0xb18b4a93, 0x8c286df0, 0x64cf9b52, 0x68012147, 0x2ea523b8, 0xcf1f05ec }, { 0xc98548d3, 0xc9fa145, 0xc4a76798, 0xd919dc4e, 0x7fdafcf0, 0xf033815e, 0xb2129646, 0xe893300e, 0x966d0617, 0x59e2de46, 0xa0af3004, 0x4f21109d } }, { { 0x7438015f, 0xfad13a83, 0x1fb5db66, 0xc719daa9, 0xe55a5282, 0xccd1cae8, 0x74ec1ec, 0x2f0472b, 0xe632ba74, 0xcc5097d1, 0x82e75ae, 0xd3d8ddf3 }, { 0xbaf95ead, 0x7a51344, 0xbda83cba, 0xa6e4714d, 0xa25875ec, 0x4d5bbbf9, 0x2be5fca9, 0x40fbdd06, 0x23b005be, 0x372d584a, 0x58b48a43, 0xed578420 }, { 0x8347bdf1, 0x3e6746d3, 0x48c74e3a, 0x17fd6512, 0x9c455b6, 0x36eee2ac, 0xd64efb4a, 0x85971a17, 0x993ddd12, 0x2bf1b2f8, 0x90eb05a8, 0x8174c501 } }, { { 0xc28ff9d1, 0x58b976cb, 0x3de56829, 0x89da484b, 0xe7c6196a, 0x1d236e49, 0x3d210337, 0x639ad751, 0xd644c364, 0x9b7321c6, 0x88281eb1, 0x1dfed38b }, { 0xfc42aef7, 0x8966ba48, 0x7a7ae368, 0x4f961e75, 0x85800965, 0x62c14a3a, 0x641981ec, 0x47fb94da, 0x6a28d875, 0x5a3e3b9e, 0xed0e35c9, 0xe4e465ef }, { 0x391ca849, 0xae58823f, 0xab807292, 0x3c23f9ee, 0xce9358b, 0xd5859a1c, 0xc28c43bc, 0x9f8b81e3, 0x467ae01b, 0x70a9d683, 0x76ac8add, 0x591c5515 } }, { { 0x39f9c225, 0x6aa934c6, 0x17d31b9e, 0xbbc156aa, 0x9dd3020, 0x7d065022, 0x3ac643e1, 0x30cd2701, 0xd9632e01, 0xc8ffb59, 0xef925ef2, 0xe936f52f }, { 0x634362d6, 0x376c032b, 0x5514e16, 0xf2c9c532, 0x8caa7807, 0x45b9af9b, 0x87f4ca14, 0xbefbaa36, 0x9a9c6e11, 0xa92b0b2d, 0xcb203d62, 0x60a18bf }, { 0x506a75d0, 0x99f121fd, 0x1f70397c, 0x13f5da4e, 0x1805cd39, 0x8cf787a2, 0xede47ddd, 0x1c240c0, 0x123dca4b, 0x71f611d0, 0xd279dabf, 0xc7215c46 } }, { { 0xbe364911, 0x6479b526, 0x6fabaabe, 0xba85081a, 0x5d484210, 0xe4ad3775, 0xf11397df, 0xe2cf7051, 0x1c22d2c5, 0xb16908f4, 0x1059626c, 0xd4d33c2 }, { 0xe29f87f0, 0x9330f689, 0xa40d42f3, 0xf6008379, 0xbf16e325, 0x1085730b, 0x1e35a208, 0x2aaa5596, 0x7b1d417a, 0xb34628f8, 0x49df147, 0x29a2f72f }, { 0x5402db52, 0xe0f24dbc, 0xfff8a957, 0x9238d379, 0x699089b, 0x7ff74048, 0x9cc5b5e1, 0x50ffe4b6, 0xf1ce284f, 0xe6f7cf38, 0x366b3db3, 0x1e1c44bc } }, { { 0x1be44daf, 0x119f72a5, 0xa4c4d053, 0x2d88070d, 0xbb34fae0, 0xb93d1bd, 0x6b75f437, 0x6a962488, 0x90fa8724, 0x926711ca, 0x7781da57, 0xcf438cf2 }, { 0x67d02370, 0x687e4ef4, 0xc4e429a9, 0xf0771465, 0x4fa9f81c, 0x3c712afb, 0x6b92c856, 0x3efcf65a, 0xe5cd3f7, 0x656206d9, 0x326b3999, 0xf45d729d }, { 0x5d8d6de4, 0xe26c3de6, 0xb00875bf, 0x285b6e90, 0x866715ca, 0x4f427e0d, 0x6fc31f7b, 0x7e2b85b5, 0xd6204638, 0xa601543b, 0xd3d1856c, 0xae66cec8 } }, { { 0x9ec36701, 0x74e8d84b, 0x485479b6, 0xc362aeef, 0x3a535ab, 0x14211e6, 0xa0624d7a, 0x8be2cb51, 0x4d72e78d, 0x7d26d3b8, 0x64116862, 0x876de6cc }, { 0xa95df8de, 0x247837a0, 0x193a128b, 0xe34a6079, 0x756eb8e5, 0x51a0cce5, 0x5da60a00, 0x804aa02f, 0xd9028760, 0x2b5f00fc, 0x6360b38a, 0xbce1e468 }, { 0x93f561f, 0x3884cd6, 0xbde8a1f1, 0xb3b68242, 0xc292c44e, 0x4f9737bb, 0x9b975a4f, 0xcf38a8b9, 0x88623231, 0xa6cea388, 0x6580614e, 0xa8ffaa8a } }, { { 0xfb57128, 0xd29193b4, 0xc3807da5, 0x59580b6b, 0xf965cc98, 0xc11043a0, 0x77307238, 0xc0b0d6e2, 0xb0148d97, 0xf4ea202b, 0x652671d7, 0xfcdf0f33 }, { 0x1b82965, 0xcc8edc34, 0xff42c9e, 0x23fee8d6, 0x30dfcb25, 0x82992754, 0xa2bb8088, 0x3962b0f3, 0x21febebe, 0x230baf4e, 0xa8bde5c9, 0xe73a97f2 }, { 0x17ae6a3c, 0x9ed59880, 0xb4ce2636, 0xcf036fa6, 0xdb6adad7, 0xb78e4aa4, 0xc06b241b, 0xec25a160, 0x9d32965b, 0x80927905, 0x81c12569, 0x561037c7 } }, { { 0xe802cf56, 0xe326433c, 0x45f86ff7, 0x6ca74696, 0x74ba918, 0x61120717, 0x25b3f6ba, 0x62f61b98, 0x87193745, 0xb86b3f76, 0x3910dc9a, 0x91496422 }, { 0xedd9c2da, 0x8c0c410b, 0x43e67d3e, 0x66d6568e, 0x6f815508, 0xfc3ce55e, 0xe1a7505, 0x7aba656f, 0x24aec837, 0x63d9c44b, 0x71628571, 0xd851c73 }, { 0x237ef6b1, 0x2ce7dc57, 0xa32556b0, 0xae840c99, 0x4fbae5b0, 0xa1155b08, 0x9c3b783b, 0xc19071f3, 0x752e5805, 0xedc56c72, 0x4d185dac, 0x7576294a } }, { { 0xea6de42f, 0x8aa8bc44, 0x7279a979, 0xf9ddcd7b, 0x7dce47fd, 0x9ac8bafc, 0x0678f7, 0x6e279b29, 0xdacc153, 0x6a320002, 0x5d3f6675, 0x89424da9 }, { 0xc126a1f1, 0xd7595984, 0xfd9735d5, 0xa8da9f94, 0xa1ea3969, 0x36912ca1, 0xcc0df575, 0x1bba1dc0, 0x9d5a7269, 0xc19b4868, 0xcf01fef, 0x6a9d9f24 }, { 0x6b4d17c1, 0xed65bb73, 0x3203596, 0x24a7420f, 0x5586aff2, 0xa1a96a74, 0x3709b096, 0x7d87de44, 0xae3c584f, 0x37c8cea7, 0xcb8f71c9, 0x98d6402b } }, { { 0x8ef6c8f2, 0x7d9359dc, 0xf7ae1d58, 0x71b06d3, 0x35545485, 0x3af5fef2, 0x12daf3fb, 0xdccace9, 0x73670c0d, 0xe32bc9cd, 0x598b201a, 0x7444e956 }, { 0xb661d70c, 0x323dbdf6, 0x7c3cd366, 0xfa64d741, 0xf1f6522d, 0x82f79cf9, 0x8fbadd0f, 0xdd85c65d, 0x62116a17, 0x8fb1c9b0, 0x47e372f, 0xb127d7f5 }, { 0x77af0043, 0xfb48e3b, 0x6c15c53f, 0x1b327728, 0x9cd3db2, 0x1440f8a9, 0xe65f13b4, 0x6624604, 0x745d4fa0, 0x55083e1e, 0x2cb8bd00, 0x370c81ed } }, { { 0x52d28d6f, 0xee5f49cb, 0x8ad133cc, 0x185aa318, 0x7aab8e67, 0x3cfe5dbb, 0x1dbea158, 0x714b673a, 0xec093431, 0xe943c213, 0xe8d9a448, 0x22ee19d8 }, { 0x2000fc48, 0x41deb35b, 0xe9939f33, 0xeb76435e, 0x35606b5d, 0x378c525b, 0xa390bbc4, 0x4acc4db9, 0x98de53c, 0xee79fcc1, 0x4dc56b3d, 0xa89360a3 }, { 0x527e21d9, 0x1b4645d4, 0xf6f996, 0xfb20a7ae, 0x2c445de6, 0x24798953, 0x22bab4fd, 0x3bee8a62, 0x178c8d90, 0x72d78e3e, 0xf7bb656, 0x8dc0cef0 } }, { { 0x8fcd20a9, 0x20ac5373, 0x7f62319d, 0xa4c600a1, 0xaf933db3, 0x5045837d, 0xc939792f, 0x12c7b1a7, 0x30ce7347, 0x16b9b335, 0x8a2aef43, 0x331c8585 }, { 0x46a695b1, 0x6009252e, 0x27e8147f, 0x2815d45b, 0x71163ee4, 0xf492c87a, 0x4ef76824, 0x39f1db94, 0xfe8a662, 0x3364adf8, 0xe919d1fa, 0x6ca4d468 }, { 0xfcef72b7, 0xfa8c8691, 0x3aef5f56, 0xdadb6ec, 0x38f9c010, 0x984b8b37, 0x90a64aa3, 0x9d72a4aa, 0x64a13913, 0x4a9a2bc6, 0xa88b9aea, 0xabc23e51 } }, { { 0x80f38dee, 0xf6f648df, 0x26d69956, 0x9150febe, 0xfc96b1e3, 0x91c02bf8, 0x212d1f02, 0xf08b45c3, 0xc5581906, 0xac942910, 0xfc8ad7ff, 0x5f925f2 }, { 0xab171dfa, 0xfb9773be, 0xeedbe370, 0xc30ece02, 0xa47f708, 0x90ebe9c5, 0x46cc379f, 0x53141e2a, 0x2b9c0b50, 0x809a5560, 0x854f6982, 0x49da3324 }, { 0xdf3a7340, 0x57ff17aa, 0x26a3dcde, 0x9b0131ea, 0x5c97e6a1, 0x77463f3a, 0x2d1c1b9a, 0x4a426553, 0xb38b2ba8, 0x222cc92a, 0x8e8802f, 0xbf1eb094 } }, { { 0x1c03f9d3, 0xec9d2b69, 0x3f2128bc, 0xd6fbd855, 0x9e0801bb, 0x1b665f0f, 0xe23283f2, 0x57a3a01d, 0xe918f6ce, 0xd06008c2, 0xa40b6534, 0x8c36c3a0 }, { 0xb72a28fa, 0x9ba65ec1, 0x854dd37b, 0x1b32565c, 0x40a57629, 0xa9bb9a5b, 0x6ba88ba7, 0x7ad9bbbe, 0xa41bc8c9, 0xe4393cb4, 0x4062ac87, 0x1a5378c4 }, { 0xe75f1f40, 0x10109278, 0x8e24820a, 0xed7f0fc6, 0xaf277415, 0xa1a7ef4d, 0x7ef50705, 0x335ac931, 0x9de403fa, 0xfbba8ed9, 0x2aa5471a, 0x2fb1d3c } } }, { { { 0x509d5192, 0x249a0e91, 0x8e91836e, 0x93a782b3, 0x323866bb, 0xfd5c5c59, 0xa434e6e7, 0xc5906b20, 0x2837ac91, 0xe96c69e, 0xdfe8ae94, 0x8d8da7a4 }, { 0x3704e82, 0xe9d3622, 0xfe72fb96, 0x42e5aa72, 0xfcec39cf, 0x647b8a2d, 0xcf416ac, 0x51a476a9, 0xb43164d7, 0x72a82b56, 0x214b810f, 0x6900001d }, { 0x976d9ff2, 0x209d8c32, 0xaee5fbf, 0x6475f51e, 0xb74e0b57, 0x1273db06, 0x43a67e93, 0xfa0c8ea0, 0x7a3d1d7c, 0x37b814e4, 0xaff1aa6a, 0x8bc23c1c } }, { { 0xe5306ffa, 0xb0ec7757, 0xc38c1511, 0xb3f333d0, 0x53005973, 0x65eb669e, 0x887b1588, 0x6787fd10, 0x248ddef7, 0xfe8f5b93, 0xdeee9588, 0x45554904 }, { 0xe4f6c1c0, 0x28caa6c3, 0x69460f9d, 0x7263a847, 0xf7f7be64, 0x62c35fc1, 0xb911be88, 0xd6c261bf, 0x449c1c5d, 0x1c97c564, 0xb891e09, 0x585ff8b7 }, { 0x73b37f2b, 0xb67b05cd, 0x2a98a764, 0xc13aac47, 0xaae255ce, 0xfe0a60fe, 0x13f7b188, 0x5f1643d8, 0x6e7c31a6, 0xeae56e7f, 0x52302cba, 0xf57499d3 } }, { { 0x244ec7d6, 0xb2602988, 0x154d3cce, 0xa06fef1d, 0x906f659d, 0x7557782f, 0x3fc9446, 0x5be8bdb8, 0x9740a74f, 0x23683499, 0xc228a48, 0x51ec61c3 }, { 0x25dc7116, 0x90f7b2a8, 0xbe88c2b9, 0x78a324b, 0x213611a5, 0x615730a7, 0xbd7796aa, 0x7852a054, 0xc36eac24, 0x1191ea8f, 0x9239d0, 0xba07786e }, { 0xfd5fbd73, 0xb170092e, 0x2ed640b7, 0x8705c827, 0x25f67878, 0x840b4c6a, 0x7cdc4b0e, 0xe3adf0a1, 0x66611c94, 0x5a93d7a3, 0x3d59372b, 0x574dad31 } }, { { 0xf1da5995, 0x37cc85e, 0x755b1b85, 0xb3c638ac, 0xaf18cc33, 0xa2dd90f8, 0x188f30a7, 0x3ab209b0, 0x5476327d, 0x906bff52, 0xb7259c44, 0xaea8d586 }, { 0x8a1a5d4a, 0xf2b3ef9e, 0xb7e8e964, 0x6bd85ec0, 0xab67f405, 0xd47e262c, 0xe64877a, 0x5ae7967d, 0xe4a59c6c, 0x15abc539, 0xf0f96bf7, 0xc83d77eb }, { 0xc4e55f46, 0x6f56f55b, 0x8151fe23, 0x3247f4e8, 0xb5fad147, 0x825be38a, 0xd396405e, 0x46f461b8, 0xbbb07bf3, 0xd3e44739, 0x5ae1ce38, 0xaf51720a } }, { { 0x84a604b8, 0xd0896a10, 0x9b0572d7, 0x5f4a130, 0x922a4c, 0xb0184662, 0x6b8332d1, 0x39a6d795, 0x783a0f83, 0xc6473d27, 0x25c324b2, 0x1bddde41 }, { 0xc87ff375, 0x4cb8e24e, 0x6611bfd9, 0xac05b125, 0xe7289e76, 0xd013ebd2, 0xa8ec0b2d, 0xad647935, 0x8ec006d6, 0xb95ca139, 0x14639773, 0xdead57c2 }, { 0x10285554, 0xe3150679, 0xa7debb4, 0xc7ffcd9c, 0x9741bf88, 0xe79ea439, 0x186a8b48, 0xfe34055, 0x39a5e4a3, 0x2826cabc, 0x5b97060a, 0x97127bc6 } }, { { 0xfa283d64, 0x3cceaf2f, 0xf2dbe96f, 0xa1d0bbb4, 0xf4820a37, 0x285d5a2d, 0x54c8ce9b, 0xb3e3bd90, 0x4badadf1, 0x7eaa1976, 0x8490592d, 0xf276cd3f }, { 0x615197b5, 0xb9faad00, 0xe5b70df5, 0x70dd285f, 0x6c2468aa, 0xf3d255d4, 0x868a7c4e, 0x28e2a1, 0xa0ecf452, 0x3328363c, 0xabf5533a, 0x72ab4c46 }, { 0x25ff326, 0x77d05290, 0xf9efb727, 0x910f09df, 0xfe9f24ba, 0x20ba1fee, 0x98c2a6a1, 0x4976e577, 0x45cc5424, 0xaad8cb1b, 0x6f88f8ad, 0xf7dbe8be } }, { { 0x71cfe43, 0xe36c7f22, 0x675c906d, 0x3218331a, 0x448a066e, 0x7035cb1f, 0x6aedc322, 0xbed8ee8d, 0x800185ad, 0x3985903, 0xde2e6978, 0x66155efa }, { 0x3f1e90f5, 0xdca36a4d, 0xb16ff930, 0x6e902bfa, 0xb37fcf27, 0xf61fbf82, 0x2d554e25, 0x7613cc13, 0xa8c3ed5a, 0xae81265e, 0x58fb053f, 0x83e6510e }, { 0x468a090f, 0xd02e6199, 0x463580da, 0x8dd3347e, 0xa6e6d60d, 0xbd3490a1, 0xd22c1cb0, 0xe430bf0d, 0x38d9f66d, 0x38ae5a71, 0xa93ba9aa, 0x535bf300 } }, { { 0x578f2054, 0xdce37b48, 0xcd6e4ace, 0xff9cb5b3, 0xb50a807, 0xc060a90b, 0x16bd8203, 0x8972855a, 0x13f0afea, 0x36e52433, 0xf49360b6, 0x487b2f80 }, { 0x9cc80b4a, 0x49360ff3, 0x4d27334c, 0x4e4e5eea, 0x5cc65bd6, 0x100d6778, 0x778db48f, 0x73a38674, 0xe4ceb2be, 0x4866af7b, 0x21b29d7d, 0x43d28971 }, { 0x567e5098, 0xe33b00e1, 0xddcbaa9e, 0x62b28612, 0xbe3aee82, 0x7dfc68f8, 0xfd2d381, 0x2c8429fe, 0x5ffa3852, 0xd0543045, 0x134f204b, 0x664b8224 } }, { { 0x3b72627a, 0x1351ff4e, 0x10733dfc, 0x9b835b7d, 0x956b3139, 0x597d38ea, 0x36427a6d, 0x347069c9, 0x8283bef8, 0x129a8370, 0xec098b2e, 0x62dbdb92 }, { 0x57581adb, 0x153974e, 0xde915959, 0xec31fda7, 0x475cbb7d, 0x2893dcf3, 0x51b457ab, 0x4116d3c6, 0x913696ab, 0xd948c020, 0xc7380fba, 0x5fbc645b }, { 0x187366b5, 0xe3a7ab83, 0x63cbd000, 0x74b670bb, 0x1de81fff, 0xd169b283, 0x707ba360, 0x1f024abf, 0xa1845b34, 0x95aa2b75, 0x6077995b, 0xf666a498 } }, { { 0x9110aa62, 0x127a0d11, 0xe784b73b, 0x8e250ec3, 0xe7a088b0, 0x9e251e75, 0x3c6e0063, 0x8355bd44, 0xcefb8a96, 0x7a17e617, 0x2b1aeacd, 0xfc334a5c }, { 0x2c9923e8, 0xe221f8c7, 0xfb17b915, 0xab22a1ba, 0x2ef7d370, 0x2870c81a, 0xdbfb2043, 0x9a3a6054, 0x76c8d363, 0xa0478d7c, 0x5c6d7819, 0x1c80d0b1 }, { 0x32f29902, 0x73701cc2, 0xa4057cb4, 0x908368ec, 0xcbae2e94, 0xb0f4898a, 0x190273ea, 0xaaf5c3df, 0x50fb8392, 0x7ab3998d, 0x3d04c592, 0x83435bed } }, { { 0xbf3317c4, 0x8a5ab0b0, 0x9f6045d2, 0x77b450c, 0xd64dfa3c, 0x265a535e, 0x34b7b5dd, 0xbe7698ad, 0x211ce265, 0xd907e9f3, 0x74ec59ae, 0xb6169cf7 }, { 0x26251990, 0x1c7ea534, 0x3236c63e, 0xf53d940, 0xc08b8129, 0x8af424c4, 0x8a56ff7d, 0x682a5ba9, 0xc87d8f21, 0x4df4cdc6, 0x17fab96, 0x7cdaee94 }, { 0x45be51a8, 0xeae59b5c, 0x97d1a02b, 0xb29b6910, 0x5c75343f, 0x18644960, 0x86940ea1, 0x17dd3234, 0x42ef9718, 0x7760e03e, 0xfa7ea4b4, 0xa20583ec } }, { { 0x9b2d144e, 0xc59871e9, 0x4661d42b, 0x59540708, 0xfac42270, 0x317aba2c, 0xe5fc3f77, 0x5e86bae9, 0x6c509f77, 0x66c8ba31, 0xe7d9d401, 0x7859a1e8 }, { 0x87274571, 0xb87b10a1, 0x3f2e41a3, 0x7d4d712d, 0xe2dac559, 0xe9525618, 0x5b77e82, 0x7a108f13, 0x5005040b, 0xab5371a4, 0xb67de633, 0x71133068 }, { 0x5a796263, 0xb185ddc7, 0x32f8d723, 0xe25ebd3a, 0x2e9ccd2, 0x6ad71fca, 0x4994dd14, 0x990c6591, 0x3e44f2fc, 0xbb8ec5d6, 0x28ed8e85, 0xba72e310 } }, { { 0x84a716ff, 0x6d949207, 0x167d516a, 0x1cf3a1d2, 0x278881ac, 0x533b2d82, 0xe5806a16, 0x9e142bbb, 0xe7ec1f5f, 0x735a3ecc, 0xf7a46c34, 0x3e390666 }, { 0xffe799ae, 0x5d118f9d, 0xa6e45f1c, 0xb33adb9a, 0x9447707e, 0xfdbcc774, 0xbc5e39b6, 0xb634d0ac, 0x1f5e1afd, 0xdfc768af, 0x17c61975, 0x2fc7fdbf }, { 0x5c47dbd6, 0x757c05f4, 0xeb10b25b, 0x64a2a00d, 0x303e9dfd, 0xc1f73dcb, 0x10ca9b44, 0xff9897b1, 0xb2b35630, 0x8f58c1f, 0xda908b70, 0xdafdcf49 } }, { { 0xaa752f52, 0xb66d23ae, 0xbc7f7afd, 0x651131fd, 0xebd229b8, 0xa16b0a53, 0x2b544253, 0xc78accc8, 0xda1e1ad1, 0xf48e8000, 0x19dd13c7, 0x1dfb77ac }, { 0x6917298f, 0x2584c457, 0x4da62ff3, 0x996a9bc, 0xbbc12222, 0x9e634ced, 0x9d349d34, 0x465250b3, 0x6039ba51, 0x6b2815c2, 0xc54a576e, 0x1475892a }, { 0xd49280a7, 0xe8bf226a, 0x4fc32517, 0x8ee52fcf, 0x1702f8cf, 0x9427599e, 0x2d2956c7, 0x5cb417a1, 0x7a6bd457, 0x23d187d3, 0xf3f47da8, 0x871a6f8a } }, { { 0xfe4b7090, 0x8f36a08a, 0xe30ec74f, 0x3c5bb79, 0x54d6e9c9, 0x65c6ed48, 0xa279d032, 0xe3b1f482, 0x521d2e6, 0x50c674be, 0x3aca5792, 0x62ab3047 }, { 0x751aecd4, 0x29e18b59, 0x4bc4e756, 0xf8e88fbc, 0xb6afe186, 0xded4c089, 0xd60d9f5d, 0x10507363, 0x615e29c4, 0x5d602a1, 0x9385c680, 0xcbf71bad }, { 0x350a66e8, 0x470d9403, 0xede099f0, 0xe08137a4, 0x1634a662, 0x890f5ec3, 0x64784266, 0x49588784, 0x3cf3442c, 0x29bf3b43, 0x4d729e38, 0x63e33848 } } }, { { { 0xc21bb47, 0xfee00533, 0x1ab0ffe3, 0xdd2d16e6, 0x10b08227, 0x82f4b24e, 0x2b85c69a, 0xbc994820, 0xb11a5fa6, 0xb503c298, 0x320af99a, 0xa0fd74f4 }, { 0x65814445, 0xf54b4aa5, 0x57b52ad4, 0x5a00991c, 0xd5252d5a, 0xd3501572, 0x6c869fcd, 0x68387a43, 0x53d0851c, 0x128a0bf1, 0x5f305adc, 0x640e5369 }, { 0xae7a84c5, 0xf1d2d63e, 0xa18cbf7f, 0x2bc2edc, 0x6c77ffbc, 0x6e48aa93, 0xb1e4aa6, 0xa1fde738, 0x416c6598, 0xb728d931, 0x733ecf84, 0x139bacfe } }, { { 0x806da554, 0x308c41d, 0x8e146e4f, 0xa12e54d0, 0x3fc3eb46, 0xe6b08e6c, 0x5242695, 0x493ef48f, 0xedb0193b, 0x5a04b324, 0xc72ca5cd, 0x6933b47d }, { 0x50ca8084, 0xaaf9678e, 0x60ef8e4d, 0xce26b220, 0x35cb5b30, 0xbb5e8435, 0x8a3a3cdb, 0x4a02563e, 0xa9d4cf35, 0x648795b2, 0xd677a07f, 0x6e87bb11 }, { 0x6ce8233a, 0xcf43b5d3, 0x6fd35384, 0xa291d2, 0x60ea8df0, 0xdc9b7960, 0x28b4d591, 0x2f79ef35, 0xfa2c932b, 0x507bf4fb, 0xc67c0b22, 0xec80ad01 } }, { { 0x4c5198ce, 0x1ef0af4a, 0xf078d696, 0xcb72de91, 0x70b5f437, 0xe34610f5, 0xe2c83b35, 0x741ebbb5, 0x498e40bb, 0xcdff68d1, 0xe9dacd39, 0x8a4108c9 }, { 0xe5b670cd, 0x9c1a8116, 0xc5cb326d, 0x95defdd0, 0xc06ee0d4, 0x25604d5c, 0x896323f3, 0xcaaecda9, 0x3944d44c, 0x2ec81bf6, 0x4ab4c1ce, 0xbf81e294 }, { 0xbd191c2a, 0x39f2364f, 0x7cb931f4, 0x876f452e, 0x128db523, 0x67766d7c, 0x90cfdf7, 0xeb5e9d4, 0xde47fd60, 0x55234480, 0xaaccc6c8, 0xcdc1a632 } }, { { 0x604f75aa, 0x30f0b260, 0x4177eb23, 0x44e837fb, 0xf1f13160, 0x9252228e, 0x61033a7b, 0x159a9a57, 0xdad40969, 0xb9f87403, 0xf1aee26a, 0x4f3c8107 }, { 0x13e763da, 0x84336951, 0x589349b0, 0x4ae42d72, 0x18a581fa, 0x2bfdb144, 0xe8b9c6c7, 0xc1e37ac5, 0x6930702d, 0x4d006f1c, 0x2405018a, 0x3188ac32 }, { 0xaf5c8479, 0xf2038d15, 0xb49e5124, 0x2158242c, 0x63b694f3, 0x3693f2bc, 0x7cc7f9d5, 0x5e90bc19, 0x28921c9a, 0x42e9a923, 0xf004ff47, 0x1741cc0b } }, { { 0xdf6416d4, 0x5b68873e, 0x8bc05f1d, 0x8e16498c, 0x3243456b, 0xc43a4610, 0x36c7dbfd, 0x4b8b97db, 0x51b06c64, 0x9d798da6, 0xc27ae371, 0x25dd4c66 }, { 0xaccfe09b, 0x5c3e1e9d, 0x3933e82b, 0x1a90df38, 0x196100d2, 0x67961440, 0x3a8d9ae, 0xb814a2aa, 0xbb28fe85, 0xc5a158e1, 0x606fbc18, 0xabe4263c }, { 0x2d497860, 0xb461b403, 0x42653952, 0x3e368a7a, 0x313d246d, 0xcda0b6df, 0xa2baf3a6, 0x102e01a8, 0x53f713fc, 0x216fd194, 0xbef53ed9, 0x2f2fc81f } }, { { 0xa760eea2, 0xe603bca, 0x2670bfd3, 0x2f7695cb, 0xb2d57e20, 0xec9ca5fc, 0x6f60e543, 0xce447d6c, 0xcd3d2634, 0xe1b47638, 0xc4f972c6, 0xd23c1a50 }, { 0x264ee565, 0x4d703920, 0xcf0acd1, 0x7da3a3ce, 0xd9b2f2c1, 0x6b17fe57, 0xe346109c, 0xc7fd879, 0x3f3eff33, 0x7e9baa88, 0x3dada63d, 0xb5c69a68 }, { 0xece52971, 0x24063c09, 0x49b22175, 0xe5a8adf3, 0x20e87535, 0x6d23bf1, 0x8eeabebf, 0xc6a6400e, 0x6d54eaba, 0x3afe9eff, 0x39a89439, 0x2e38e6af } }, { { 0x415badd7, 0xf10f1881, 0x25763b39, 0xecd2b99d, 0xd79e9aea, 0x10a2f38c, 0x4c6604e4, 0xc9cbeef0, 0x94cc924c, 0x4ebf9787, 0x3f619c27, 0x53cf125e }, { 0x97555516, 0xdd34ea41, 0x2efca5a0, 0xc8182af4, 0x3c3d9b37, 0x59a2b6e9, 0x405d0c40, 0xfb30888, 0x484f9a97, 0x1c93f981, 0xf2d76120, 0x5d06f219 }, { 0x44cab292, 0x9a37a014, 0x359126df, 0x30959909, 0x9732e558, 0x16522871, 0xf2bf507c, 0x1a5e8516, 0xcf56c0d0, 0xa40e118a, 0xc48a3aef, 0x58203728 } }, { { 0xe39b438b, 0x81105aae, 0x740aa253, 0x400fc5c9, 0xe6bc4588, 0x428901b0, 0x5390397d, 0x5c0b8932, 0xf2804fa5, 0xf0a7c0bb, 0x41aad40c, 0x2a1393e1 }, { 0x4a297d54, 0xc27b14b7, 0xd8e76f03, 0xde3f394e, 0x5428109c, 0x3d63049d, 0xb2cfa2, 0x248b7f3e, 0xfd0d54ec, 0xcfbff722, 0x4fa53d3f, 0x356b7b44 }, { 0x40a17224, 0x6edc82fa, 0xb3732df9, 0x884aff89, 0xb6488b80, 0xa13528c5, 0x48de9c31, 0x43a10a7d, 0x64ef479f, 0x750da223, 0xb50f92fe, 0x88a8e967 } }, { { 0x885697a4, 0x797621f1, 0x83c08c61, 0xccc03ac1, 0xf8d3879f, 0x9904a1d0, 0x5607a0ec, 0xc9318c04, 0x25c0adce, 0x1c82f6ed, 0xe2d95537, 0x831284b3 }, { 0x33f09aa3, 0x4360975, 0xecadad8e, 0xa4203e9d, 0xc89b248b, 0x68e6de4f, 0x189cfc1d, 0xfe608921, 0x6fe09feb, 0x8d90de81, 0xd19b903f, 0x47ddb4e8 }, { 0xe743b7d, 0x8740515b, 0x361c22be, 0xa84e50b1, 0x32b5c951, 0x33313e3a, 0xd4919738, 0x878daf67, 0x2740204f, 0x6d9920f6, 0xa39a6b76, 0x920ecd69 } }, { { 0x4285875b, 0x2faea7a, 0xce9a651b, 0x95119698, 0x82ca5b7d, 0x50076a1a, 0xd25f0712, 0x5234ae72, 0xa7d3bc50, 0x9607f699, 0xa3f98fa3, 0xe4bc2f4e }, { 0x7692e74a, 0x59fef42f, 0x55793033, 0xc9f1c384, 0x66ccb4f9, 0xc607be92, 0x249c3be1, 0xbd93db16, 0x23e3e06e, 0x72b46089, 0xbfdf9211, 0xe7b44e38 }, { 0x44ed3200, 0x68064fe7, 0x95b22bb6, 0xee25de3b, 0xb2716746, 0x5e85b692, 0xbba92ed1, 0xd1fad05d, 0xf7ba9b26, 0x911e4f86, 0x54865129, 0x81c5cba1 } }, { { 0xaed05904, 0xc972e7ab, 0x7ca4a30a, 0x3ba4c482, 0x183af4fb, 0x2b30dbe4, 0x1949e9ae, 0x1254926b, 0x4e7199c4, 0xaa739141, 0x5d54f430, 0xdef5bcce }, { 0x79f73bbb, 0x8da3266b, 0x9ca30757, 0x1e29f74, 0xddf54b1b, 0xbc22ba3, 0x2f486b3c, 0xbe6ea078, 0xa6222cf9, 0xdf78d8cf, 0x79d3c205, 0x9e0883b1 }, { 0xde8d8465, 0xf63fd437, 0x9027102d, 0xf9c2e93d, 0x9c0bcc80, 0x5f72c54d, 0xc900f751, 0x616c699f, 0xf80aadcf, 0x1a345911, 0x158dd181, 0x7717f26c } }, { { 0xa52f72f9, 0xa35b4bfd, 0x6317b8d4, 0xfa61d6f9, 0x5976f6c3, 0xe638b389, 0x38c44dcb, 0xc62acb48, 0xecdd273e, 0x4c1bb787, 0x6be89f99, 0x987c4611 }, { 0x676c1593, 0xcc97dccd, 0xbba54bfd, 0x99a5a333, 0x80ce06d4, 0xf5ef8d77, 0x68800f79, 0x1744b673, 0x99571ea4, 0xa9510395, 0x7ee2a8a0, 0xa71806e3 }, { 0x4a981926, 0x1a8dcdfe, 0xfe103105, 0x64be6769, 0x19731c1c, 0x98c3798, 0x7e42ec81, 0xfd996449, 0x8a67f12b, 0x3c77bdc0, 0x2f1cd14c, 0xf777a554 } }, { { 0xeed00ab0, 0xa8704610, 0x62216beb, 0x43438c4c, 0xbe4cd652, 0x811c5c62, 0xf686378f, 0xdcb1da60, 0x777e5698, 0x99a1c228, 0x8bfa08a0, 0xe29c4b94 }, { 0x9af76733, 0xcdbd7700, 0xc748b6e0, 0x2bcc2ee, 0x2e4711b6, 0x18820ec8, 0xdae526e2, 0xe2922023, 0x508e736, 0xc4cd5d8e, 0x1f4d2d52, 0x90eefb4e }, { 0xf498e123, 0x4a061893, 0x8e0839be, 0x58a94498, 0xe28f2b4e, 0x30227675, 0x4d99aa8, 0xb8322e1b, 0x8ae7e950, 0xe9bd9efd, 0x4a322bfc, 0xc43f79d5 } }, { { 0x42437ad2, 0xd80d30d1, 0x8d09b4cc, 0xa970f410, 0x518e1525, 0xa88e32a7, 0x9fc41c39, 0x526b1a90, 0x9b757a44, 0x992b426d, 0x1d9cd47a, 0x894a0757 }, { 0x972c21b2, 0x5d018d29, 0x47915bd9, 0x668b89e4, 0xf77464c2, 0x12fae496, 0xf9058ea7, 0xf686278a, 0xc5758b85, 0x16d17d53, 0xf511918c, 0xd409eba3 }, { 0x3ca86381, 0xac7118f1, 0x6937ce20, 0xf8d642e0, 0xc37b143b, 0xe2d78ccf, 0x5b42f37b, 0x2acf0ecd, 0xbaeadcce, 0xa8d48f60, 0x46f83098, 0x92f87073 } }, { { 0x1c5994a7, 0x45e2e34e, 0xd96030aa, 0x8418f33, 0x6648c19f, 0x373a2023, 0x2e8f6092, 0x7f5ca98c, 0x790b795, 0xfd81058b, 0x66260a52, 0x6f8f45f0 }, { 0x4a39fc69, 0x93dc0cc8, 0xe5bba926, 0xb1e41559, 0xacb31454, 0x2f7ed6e7, 0xbbfda427, 0x422ee9d, 0x2511807a, 0x78c189db, 0x26ff454b, 0x74a12d49 }, { 0x8a6f1042, 0x4ea02431, 0xc390ff92, 0x85636c0d, 0x3c37b20b, 0xee70a1da, 0xf08c57e, 0x2dfd7ca7, 0xc7ee1abc, 0xb9fe3a8e, 0xc6932179, 0x61339cc5 } } }, { { { 0x6b9291cf, 0x3fb38bc6, 0x2eed91cf, 0x79c63f84, 0x6c70eef1, 0x80623ed7, 0xf69a4b0f, 0xee3d8e3e, 0xddb2474a, 0xd28d5e42, 0xe1ea7f13, 0x45f1c07e }, { 0x52134a48, 0xea0f864f, 0x7a90768e, 0xb5786de5, 0xd2e1edef, 0xbf53852d, 0x405d1f10, 0x30053bb, 0xcb79cc2e, 0x851d11a5, 0xa07fdace, 0xd29656c1 }, { 0x40a44eb2, 0x303e3a65, 0x43fb28b, 0x2fa6f303, 0x6d4ef41d, 0xbefbb35c, 0x29e069f6, 0x5aa81e58, 0xfe7e2443, 0x78401a59, 0xcff6f2f5, 0xfc786d4d } }, { { 0x8029946b, 0x28579e77, 0x4027470a, 0xce74e9ba, 0xfdffa657, 0x4525fe16, 0x9589afda, 0x4597cdd9, 0x16e7fd55, 0xb832309a, 0x98eb3c33, 0xa1d1c1e8 }, { 0x14d8b642, 0xa1f2b12e, 0xa713c907, 0x22362ac, 0x2d1d7f55, 0x1b3ba870, 0xc6c76a63, 0x13abf3b9, 0xf6a49726, 0x1455e810, 0xb5144172, 0xa2a81df4 }, { 0x47af1f45, 0x6e13ae04, 0x5796bd40, 0xbe9ce11d, 0x1ce28c68, 0xbd7e6c3, 0xa915a3df, 0x6f55aac8, 0x7982ee5b, 0xef57cc7e, 0xdfb488f4, 0xdef8e7dd } }, { { 0x5488d1cc, 0x46ab1f1, 0x758dd475, 0x96889462, 0xb9cb2e68, 0xdd28f953, 0xae19e225, 0x5bdb43e5, 0x1fdff466, 0x4cb90e87, 0x73b00b43, 0xa956c3a2 }, { 0xfe197ca0, 0x81ce07ad, 0x602d67dc, 0xa9d949e4, 0xda3eacc8, 0x2e4ef32e, 0x3820683, 0xf137fad2, 0x52c72b6e, 0xda1db1b5, 0x8d39a065, 0x27d3ce23 }, { 0xf740b3b9, 0x5e967426, 0x851d059e, 0x9d00bd81, 0x5f273cb3, 0xcfdfbf28, 0x1718894d, 0x8bc3adf7, 0x90dadba6, 0x33a8a8ee, 0x5fb902fe, 0x2a4eae56 } }, { { 0x3c5b9a90, 0x356832b4, 0x5f02783c, 0xc3b8523a, 0x608bfb60, 0xae15e0c0, 0x4dae79d8, 0x49532fe6, 0xc96112e4, 0x7a28e4fe, 0xf1400482, 0x430e4caa }, { 0xf080d8d2, 0x43764006, 0xc848497f, 0x7433021b, 0xbc96df2a, 0xd4ee7904, 0x49c7879d, 0x34e3e785, 0x195a50a6, 0x76dd6f56, 0x9a07c53a, 0xc4c7c1e2 }, { 0x93d73135, 0x8e19b21a, 0xb3bd93a3, 0xa67f29c8, 0x816e22b4, 0xce259176, 0xa94d2ac5, 0x946a9baf, 0xc6f28f1a, 0xbd9049ce, 0xe6e0915e, 0x3356e5b6 } }, { { 0x47889e49, 0x9c8ded30, 0xa878e052, 0xcad7b039, 0x64da5287, 0x57c46b70, 0x6cc5cd27, 0x85111b70, 0x2c7532b9, 0xecf1c5f0, 0xc5e042b1, 0x68fe922f }, { 0x55f4d1ed, 0xb16c8119, 0xf434d698, 0x57e6c124, 0x81edfc48, 0x13f84a68, 0x2c2ccbe3, 0xc942022b, 0x8f43343e, 0xe6f3c044, 0x901955d5, 0xb1afa43f }, { 0x3c7e81cf, 0xaefd0540, 0x61a9a38c, 0x24d6b9e7, 0x6aa9eecc, 0xca26d23c, 0x5f26de50, 0x823bb133, 0xbcb0eb9, 0x9d40daa1, 0x7d0b7177, 0x749d0c6e } }, { { 0xc8b6dc81, 0xc7d30781, 0x947aa573, 0xce45b0a8, 0xf1022b32, 0xc09e7d72, 0x24b4f4a5, 0xde82a9a9, 0x21fd0ec9, 0x4c493c87, 0xa8ff5d6c, 0xaba3d08b }, { 0x1a94ab54, 0x2bfbcc47, 0xcb99b859, 0xf89b9d87, 0x938ab015, 0xbc04ef0, 0x44318327, 0xb2df743b, 0x3f3ee791, 0x7139bf8d, 0x42ed0d07, 0xe7b93d68 }, { 0x3f5976bd, 0x8d3dc181, 0x219c0f8b, 0x640f6a7a, 0xf6b10017, 0xbd4f185e, 0x1ab15690, 0xb0007bf8, 0xdf83f2ab, 0xadb3b5e9, 0x7c1e596a, 0xf353c006 } }, { { 0x2042d37f, 0x1af4158b, 0xfc2d7a8c, 0xbc4ba7b4, 0x9777d7b7, 0x18adb613, 0xda999a97, 0x3187f16e, 0x65e55379, 0x8e198a44, 0xc1b1c249, 0x7b2305d }, { 0xb8a40d75, 0x65cba624, 0x416057d4, 0x64445ada, 0xa6de2fa, 0xef1aa7b6, 0x4f3f4be6, 0x24c660a7, 0x8e22b118, 0x5cc289be, 0x9113f7b4, 0x7f7b58f }, { 0xbd56009, 0x3bfe1756, 0x77a8e14a, 0x202d3dd7, 0x88341d3f, 0x99bc1243, 0xdcf6af5a, 0x9e0d9659, 0x2ad9d72a, 0xe280ab00, 0xd7fdb06e, 0xdaabb0b6 } }, { { 0xe8fdc99f, 0x9282d116, 0xec967e0d, 0x7ee9a466, 0xb7da3dee, 0x572acd30, 0x3671a85, 0x3e4d991e, 0xcdb928d9, 0xd78b0abb, 0xdac94725, 0xfa995902 }, { 0x71b2971c, 0xbb6507f1, 0x12b932cc, 0xe64796c1, 0x7dfca8ed, 0x8641189, 0x8bdde010, 0x9de8e171, 0xd70e96af, 0x49d40d80, 0x6501da5a, 0xcdfbcf39 }, { 0xfc4b669e, 0x54a3c559, 0x6225e045, 0xe00536be, 0xf4e5fc76, 0x8f5f4ef8, 0x92a2a6f5, 0xec74b42c, 0xe8fd496b, 0x54c32a52, 0xcde47c9e, 0xc4ba2fc8 } }, { { 0x5e0995ca, 0x652ab70, 0x919d6c5f, 0x418fa470, 0x396eb83d, 0xf9b4180b, 0xeb25f8c0, 0xa164ad59, 0xf43b2a46, 0xdcfa7da2, 0x68d76d53, 0x51883b07 }, { 0x836a4309, 0x76a9f819, 0xbda0bde1, 0xe02fd228, 0x38690d55, 0x79e7a5d5, 0xb07a789f, 0xf6a0590b, 0x6c9612, 0x116151b1, 0x200b850a, 0x38472536 }, { 0x3d9db876, 0xf6392030, 0xcc1ddfe8, 0x73bf0b9, 0x2a2a2491, 0x8775cc09, 0x69392cd7, 0xde292861, 0xbb6a35a4, 0x185137f4, 0xc12a0bcf, 0xf698feef } }, { { 0xd3f45ad, 0xf91f37b0, 0x27186319, 0x6c54acdc, 0x2080ac49, 0xf8d537ad, 0x24d56e99, 0xc7f12e14, 0x5aa868d7, 0x54101506, 0x9a3b8bb9, 0x1a458c22 }, { 0x50976543, 0x4542d1cb, 0x1f817d3c, 0x3f3e183a, 0xe3066cc6, 0x60069c14, 0x61fb8539, 0x1959decc, 0x3ea13bcf, 0x323f072, 0xfb48eeba, 0x95d9149b }, { 0xc7987d0f, 0x90d70174, 0x53c0e14, 0x57a02ddc, 0x6c64a155, 0x4d1ae402, 0x7f8e377a, 0xcd3019d6, 0x22076a93, 0xbc93d9e7, 0xd3fdb9a2, 0x2ff725e6 } }, { { 0xcd7ce454, 0xac081caa, 0x339642c6, 0x8f036336, 0xabcba270, 0xcada3ab3, 0x22500bb2, 0x7812de5, 0x91430720, 0x8cb8eb6e, 0xd8e5d2a7, 0x7bb395db }, { 0xbbe6c8f6, 0xefef71c2, 0x8235fb10, 0x8448a146, 0x5985db0a, 0x36ff5328, 0xa1b9f972, 0xfc2cd33d, 0x7a6b654f, 0x8f73d836, 0x2adf8fe3, 0x9bf95e14 }, { 0x31b47787, 0xb84b934, 0x54b4cec7, 0x8ffe6d27, 0x832b1fb2, 0x18cf41a, 0x6c6d1987, 0x84d51667, 0x7e1d4e86, 0x7b29fc29, 0xa8233fe3, 0x74532553 } }, { { 0x1fcec361, 0xd7203ecf, 0x1f2a4985, 0x56ef3d44, 0xbe5cd845, 0x20a2cd58, 0x35c8820b, 0xc82e61f8, 0x11d03029, 0xecb05607, 0xe4af7961, 0x171c7650 }, { 0x286b0057, 0xa5d0b6e7, 0x6a73cbe0, 0x6d6fc54c, 0xc6d39814, 0xe9438fd6, 0xc012794c, 0x37de4e98, 0x3106521a, 0xbfd9da13, 0xe39910b0, 0xb927d71e }, { 0x1f1cb14e, 0x4aeba4a2, 0x8eaa70ee, 0x2a5bddb1, 0xbc2a5ba6, 0xce2f2f68, 0x1bfe8695, 0xf171be6d, 0x9e5f58cf, 0xe7de5b78, 0xa01e9cf3, 0x646e900a } }, { { 0xe0ca7fa3, 0x197ebbac, 0xdf8b0260, 0x91b0c63d, 0xcbd65269, 0x56e73a1d, 0x27f45f0f, 0x7d65d2ed, 0xff983c90, 0x9f25b51e, 0x515191e1, 0xd0c24cbd }, { 0xdd04e6eb, 0x2d3bb86b, 0x8b7089a, 0xdb37ecf1, 0x23b8c23f, 0xa2b35dc3, 0xeaf8a4e3, 0x533f5c17, 0xfaf71e8f, 0x30d77252, 0xa719faec, 0x99c71450 }, { 0x981ef1e1, 0x4cbfb12e, 0x1e465848, 0x983a0200, 0x33b37c9, 0x725326ae, 0x5788a455, 0xf3928830, 0xae524f58, 0x87931373, 0xdef57f0c, 0x1c682028 } }, { { 0xc2bd40a9, 0x72d8f8fa, 0x865c678b, 0xc5188652, 0x147c2a88, 0xfe62f110, 0xab1969ca, 0xce5f11b6, 0x4d2db515, 0xd5d023b7, 0x3850caa5, 0xf2ae33ad }, { 0x6519b039, 0x2f17e6ea, 0xecd5a615, 0x925298f6, 0x7e6fa07c, 0x2eb73c4b, 0x136da01f, 0xc1141014, 0x95639e0e, 0x7aeb1af3, 0x55cb4540, 0xc1125ba }, { 0x971b5059, 0x6fd85050, 0xb175a6e1, 0x11a0fe9a, 0xe427c004, 0x8229f8fd, 0x7936558, 0xd6ea2e58, 0xaf39b92c, 0x9b95e598, 0xb7026a65, 0xee6d044f } }, { { 0x6cb99fd1, 0x7aea2393, 0xf80ccd6f, 0x5c16e49e, 0xd15696ac, 0x531b8573, 0xe97f62e7, 0xc8143a2d, 0x5d45310e, 0x87386fc6, 0x518f8ce, 0x7f980566 }, { 0x1a3671b4, 0xa981f676, 0x2a2d99dc, 0xa5186aa, 0x9d5b4132, 0x5fbf9a64, 0x64f093ee, 0xe36a6746, 0x77203e04, 0x3ab6e01a, 0x179a5410, 0x91888b8b }, { 0xf2372a4e, 0x2c031c8d, 0xd0f74cae, 0x9b5600c4, 0xbf2b6702, 0x371dce7e, 0xe358a5b, 0x2c4eaf06, 0x6544ecbb, 0x7d5899f8, 0x445ea4fd, 0xbb6f1fdb } } }, { { { 0x52d56753, 0xfb73376c, 0xd356b995, 0x6a0cff75, 0x826f47f1, 0x9e6dc85b, 0x49d9880, 0x1d2324b, 0xcd363c1e, 0xe298d223, 0x2accac5e, 0x86061c2 }, { 0x3e8687ba, 0x94fe01ad, 0x714468d3, 0x201dbe45, 0xb22fbf22, 0x4bd380f8, 0xb64a23ca, 0x2dcb9128, 0xbfb78529, 0x3ab0dac0, 0x7464889e, 0x15a2ca22 }, { 0xaa6b606c, 0x7cc265c9, 0xcbaa3e1c, 0x5206dbd9, 0x7d6aeb4e, 0x55740cfb, 0xabebe318, 0x5e6d4956, 0x7c20e6e4, 0xd1e43ca4, 0xbfd5aae1, 0x97fd7857 } }, { { 0x96699f9, 0xf95cb72, 0x9a313c50, 0xbb8abb2a, 0xeced8982, 0x30af71de, 0xd6ebf3af, 0xcabe0f3d, 0x29fbc45f, 0xa9948df2, 0x1b96cd2e, 0x76356e7b }, { 0x634e1398, 0x8198d07e, 0x183ed29c, 0xfc6c2f78, 0xcab15860, 0xa0b71488, 0x4a50e5af, 0x4e500563, 0xea4d1087, 0x370fc554, 0x85f7485c, 0xe7c7ea2c }, { 0x51faf197, 0x9a98bdce, 0xf7845a11, 0x12ada0c2, 0xee06b3da, 0x15f01145, 0x13a8e82f, 0x3c713fed, 0xfbd25a42, 0xe9e9aebd, 0xd58e5cf8, 0xdf0e01c7 } }, { { 0x6afefa7a, 0x2cfba889, 0xa81f8c82, 0x11a59911, 0xe64e2089, 0x5f6cafe2, 0x4aa6fd44, 0x80248473, 0xe274e883, 0x4fa6491b, 0x6e150c65, 0xd1f38a3f }, { 0x47b97ae7, 0x4c45290d, 0x6ee0b1d3, 0xaa81212b, 0xcf5575aa, 0x7139efda, 0x53982837, 0xd96feba7, 0xdbbba6c5, 0xc9f7bfc, 0x646043aa, 0x30437221 }, { 0x2871e8c0, 0xa2f61bce, 0x46b557fc, 0x7a08068c, 0x8c82b4f, 0xc66f2c75, 0x14af4ab3, 0xe1f3b7db, 0x5316acb, 0x7643ba38, 0x5ef5d877, 0xc8436575 } }, { { 0x9852dac5, 0x381fb4bd, 0xb0b08a84, 0x4eae142b, 0x50a873bb, 0xf846e455, 0xdc5359ab, 0x52783d51, 0xc5f3f0c6, 0x14ee9a2d, 0xba605500, 0xd4b77eb }, { 0xb8640106, 0x5e1dcdd4, 0x52688ece, 0xa0ee220, 0x6f132ba3, 0xd42be5ca, 0xa7ce1551, 0x574b67c9, 0x4f5e7fdd, 0x9c6bcf7f, 0x89c6f7ef, 0x60666eb6 }, { 0x78fd3a9e, 0xff8e1c4d, 0x75b5d66c, 0xdf1f9fc9, 0x6a3fe617, 0x9d152d1b, 0x6a9202c2, 0x345662b0, 0x61b3f285, 0xc9c712d0, 0x987146ac, 0x7aea092d } }, { { 0x727c1bf6, 0xbda72c96, 0xed98fdd0, 0x3afeb2d1, 0x7de374e4, 0x64733879, 0x70ce4e3, 0xf22fd939, 0x33c4d156, 0x58961282, 0x24bce423, 0x46a27c74 }, { 0xa20ad1e4, 0x5309cd53, 0xc785e511, 0x4fa7bee0, 0xf6acbc63, 0xa283e8bf, 0xb34c02ff, 0x39e38886, 0x2153e1d, 0xec053318, 0x5b6b7489, 0x61e21d39 }, { 0xe5c4934c, 0xd48d7a3f, 0x35c63a24, 0xbfeb860c, 0xafed6f8d, 0x7794fede, 0xcd1e2300, 0xca0507f6, 0x160798f, 0x70870df3, 0x5e72c179, 0x6ce11496 } }, { { 0x685472fd, 0xe6ed04ba, 0x3055c789, 0x118f6f9f, 0x3f85d9c3, 0x192bc02e, 0x8b75082a, 0x98790c19, 0xd19c93f6, 0x8a6a29ac, 0x7fcb7221, 0xe7d6186b }, { 0x4400f151, 0xf494eeaf, 0xbce5cf24, 0xfee38bf6, 0x8d3ce3f7, 0x4f87d5c3, 0x14342105, 0x1094d4db, 0x762147bd, 0x8d559eec, 0xa280e246, 0x1a4bd229 }, { 0x18b839dd, 0x6f72486a, 0x44b017e, 0x7a6e8d5e, 0x275d794c, 0x1d6d3d4c, 0x194fabfc, 0x554b9aee, 0xc87d9209, 0xb0fe4735, 0x989152ee, 0x5331e84f } }, { { 0xd8865572, 0x92e32e97, 0xc41f5646, 0xfbc77e8d, 0x11907092, 0xa262df88, 0xc4ad9f25, 0x1bbecd68, 0xf5badd7, 0x7c69aa2e, 0x612d0d3f, 0x583d17ee }, { 0x99fd722d, 0xe00a876b, 0x7fa88528, 0x52a81349, 0xa61b153d, 0x3cdb3a02, 0xa0559b53, 0xfbe13df2, 0x4e8d5993, 0x39dc5604, 0x67b7d5c9, 0xf3ccfa4b }, { 0x8052535d, 0x83279d5b, 0x7b6bce18, 0xaab4a622, 0x537b71bb, 0x9de3f303, 0x1e11f86a, 0xec756961, 0x8963336, 0xd8965f24, 0xb5e7bc05, 0x87a90eb6 } }, { { 0x854bff50, 0xa5cfe02e, 0x5ad0d212, 0xe2621eee, 0xd976e211, 0xb5c4b225, 0x11a401e8, 0xe87f9af5, 0xb7847f83, 0x20c65fc6, 0x2b45d308, 0x80e72251 }, { 0x2879daa0, 0x4c9736b8, 0xc964ee10, 0xfedcc8ef, 0x882e7292, 0xc60361f4, 0x14824afe, 0x5c4a1c70, 0x35a652cd, 0x940670ac, 0x971dfc40, 0xcbd62804 }, { 0x7ad37986, 0x9e45ec86, 0x2f960f12, 0xc19db5c3, 0x3fc202fa, 0x67cde657, 0x109ebca9, 0x94741e08, 0xa9cc8f13, 0xf4743d75, 0x88f551c, 0x27352e84 } }, { { 0x945509be, 0x82b71c6, 0x98e9e8d3, 0xd2528d51, 0xa9fd6089, 0xf2ea9f46, 0x910453e4, 0xcd1a0fa2, 0xb0eff514, 0x2c53fca9, 0xc95fb422, 0x584a8c0 }, { 0x20ef561a, 0x2133c07d, 0x39eb6d95, 0xfe75fde4, 0x904ed84c, 0x480b8f22, 0x84aef10e, 0xcf80a3cc, 0x944e587a, 0xfd242700, 0x65fe7c6d, 0x2eb35737 }, { 0xb72b36ae, 0xfc50803f, 0xb1d9e2ec, 0x847bbcfa, 0x90cd4089, 0xb87299d6, 0x2367df60, 0x4a607056, 0x27e52242, 0x7b91b3f3, 0x3b3ec20f, 0xf6aa127f } }, { { 0x2da723b, 0xc1e4f79, 0x484c884f, 0x7a958714, 0x6fad037b, 0xd1f6145, 0x93c580d6, 0x5b4b7cfc, 0x25b144dc, 0x4dd0d03, 0x2ddc9f2b, 0x868f04a7 }, { 0x590c5b45, 0xd6f4f751, 0x28088560, 0x45e52bc8, 0x7ddbb3d, 0x2f862624, 0x432c6a4c, 0xb4e46a14, 0x14e7a785, 0xe80194c1, 0x1e29d5d1, 0x300747ad }, { 0x9b9f0815, 0x6f412638, 0xf787061f, 0xb6524b7c, 0xfc02098d, 0x179b92d8, 0x34328f6d, 0x8f08ef36, 0xdeec5592, 0x1f112396, 0x8344107e, 0xec88a498 } }, { { 0x8dd19318, 0x28f657be, 0xf37fb3ae, 0x6fb95f30, 0xa3d083bc, 0x39144cb6, 0x308e3588, 0xc6c666e9, 0x5eb75703, 0x844fde82, 0x4c12d480, 0xfa6c3308 }, { 0x511d4e94, 0xe40c2859, 0xbea0baf0, 0x62ac093f, 0xc8caa256, 0xc86f6ea4, 0x6d3451af, 0x48a73dc8, 0x8a1f23be, 0x98fb7168, 0xfe770ac8, 0x5f397eb6 }, { 0xd39c9a1c, 0xec6db5bc, 0x7a7aacbe, 0xb947b8d7, 0xfd46a453, 0xcc1459ed, 0x9402c0bf, 0x2ea97243, 0xb3cc5efb, 0x5aa89f61, 0xe0632066, 0xe59acf5f } }, { { 0x2674ed79, 0xa4a5845a, 0xe7b7a2ea, 0x71c1100b, 0x2a3bf9f1, 0x428a372e, 0x6afdf2c, 0x6bd817dc, 0xf1568bf, 0x4f365257, 0x798c2bf7, 0x15d08bc0 }, { 0x881de281, 0xc7fdea19, 0x9c37003c, 0x822d634, 0x47c196f7, 0xd1d3648c, 0xab910ed8, 0xe9a2106, 0xd43af051, 0x807d138b, 0x9d47454b, 0x2c030b4d }, { 0x5512c2de, 0x69e6ffe5, 0x60c3e31f, 0x3afbdde4, 0x86a82b42, 0xa76281b8, 0x7f5ec17c, 0x52cb7ef8, 0xe8c36be6, 0x5601ff54, 0x1d5cf9c3, 0x41c467bd } }, { { 0xa40ed64, 0xd2119b05, 0x63ceb1dc, 0xedcf2b7a, 0x9c66c464, 0x293b927d, 0xb1ea89e7, 0x33667f4d, 0x8a869178, 0xfdae2e61, 0x4cabb044, 0xfc79c7ae }, { 0xb2b246be, 0x511aad5e, 0x5ccf4cc3, 0xf3862024, 0xc0c385f5, 0xee92371d, 0xf5f700de, 0x2aa55f66, 0xd8821430, 0x1339d1e5, 0xf21a0675, 0x6edd7826 }, { 0x74c8f6aa, 0xb9486dc6, 0xac07270b, 0x9bf6c2f2, 0x1a44d47b, 0xfd7ab376, 0x9b04c0c0, 0x14380f3c, 0xd2804a70, 0x69590cc2, 0xb992fd8f, 0x7e739289 } }, { { 0xd5e5e27d, 0xb786fb39, 0x439466c1, 0xecd59b69, 0x35303d65, 0xc315457d, 0x7480552e, 0xe32c7276, 0x407afb9b, 0xc8e36b1b, 0x64c5cce4, 0x8425ecb7 }, { 0xcaf3e8b4, 0x8423abc7, 0xfec56e6e, 0xd3920524, 0x36b7897a, 0x6b5f13fa, 0x11bb4b74, 0xfcb74716, 0xe4aeda53, 0x2b3c907b, 0x533908e4, 0x372b08d5 }, { 0xcc997bd7, 0x2fd0a393, 0xa96b238d, 0x400fbba3, 0x5a8ddf93, 0x918bbd87, 0xf5503914, 0x3b4bca8, 0x4b886e3e, 0x3dac8e7b, 0xa97cf7db, 0x75379bd7 } }, { { 0xf5d27b79, 0xb039f059, 0xf0b1f92c, 0xb88f4e98, 0xb6d9b722, 0xaf7d1283, 0xdf67b6cb, 0x70c5c462, 0xefea4546, 0x7ce85950, 0xab4a13fa, 0xd9c27a80 }, { 0x3c4c3935, 0xdd294b78, 0x9a3a2a61, 0xbc60b948, 0xe7c1c964, 0xcbbc8fa1, 0x5d4f1295, 0xbd5573ed, 0xfce9119, 0x2f034059, 0x79a5ff83, 0x4b2b8ee2 }, { 0x85e3773c, 0xab330413, 0xc86c59ca, 0xcc66502d, 0x205078b6, 0x3fdd72e3, 0x4e0265cb, 0x1d93aa1, 0x187f6693, 0xbf9a4cfc, 0xbf52bfa9, 0x84c7fff2 } } }, { { { 0xcc846fa3, 0x6172d35b, 0x14325b9d, 0x3f20a7b9, 0x1e45d54d, 0x5e8ccdaa, 0xde87273, 0xe1784756, 0x72847bcf, 0xa4a7eb6a, 0x6b0c6659, 0x8748b0a8 }, { 0x2fd2ea42, 0x4c0c0885, 0xcfce0f15, 0xfeba9aab, 0x100261f2, 0xb60c3fe0, 0x42498bd2, 0xe17f8e15, 0xf965deee, 0x4b4fbca2, 0x7d7db335, 0x1db9d2ae }, { 0x814b2194, 0xe31a3b2c, 0x92d94295, 0xb5b8cfd5, 0xfba66b38, 0x5ae194d5, 0xdc2946f1, 0x206b0b75, 0xf84049ba, 0x18b27016, 0xe4d3ecf0, 0x1255762f } }, { { 0xe5d7de53, 0x824fdc5, 0xb0e6a1d8, 0x50cabda3, 0xd03d9859, 0xfa7b9bee, 0x420f69c9, 0xd9f5a3c8, 0x93e3b1e0, 0x13bed237, 0xa2a0e032, 0x5d15d6c6 }, { 0xecc444d7, 0x260cf273, 0xe415e16b, 0x8c2bcbe8, 0x76cbe805, 0xa9876a3a, 0xf05287ae, 0x9135b2c2, 0x97c6bdf2, 0x541dd397, 0x7a988f14, 0x7ded238a }, { 0x9e32c193, 0xd22d19fc, 0x78281546, 0xa933cb53, 0x29498858, 0x41dff327, 0x623391e0, 0x97f80ef9, 0xbdce74b4, 0x6c9b66a6, 0xe779aee8, 0xd0dda821 } }, { { 0xdf8d20b2, 0xb3a9381f, 0xf5f204a0, 0x12936380, 0xe705b3d4, 0xe8a2ccd3, 0x5e8aafe6, 0x3cfef132, 0x8cc311ff, 0x62320a6e, 0x5586788d, 0xdbe97e67 }, { 0x1905f710, 0x86160efc, 0x83fc8417, 0x5b1c43f5, 0x830adcb8, 0xa77c5900, 0x18e77b94, 0xdd3f3442, 0xb1f7711d, 0xe7bb343d, 0xabdf2d1e, 0x6de85044 }, { 0xbc052ac2, 0x989640b, 0x258a4d1b, 0x4971f3d4, 0xc3c9de41, 0x2d7308be, 0xc8541af3, 0xdc219507, 0x2e72b728, 0xf5ce5bef, 0x9175078c, 0x9bfc5bfd } }, { { 0xbc3367db, 0xc924b2f9, 0x6ef2154c, 0xe661a505, 0xdf6a335a, 0xaec552f3, 0xbaeb9d78, 0x72c99e90, 0xa3684fa0, 0x3c221af1, 0xaacf1e2d, 0x8ccb6da6 }, { 0xd0f3ed81, 0x83355ea9, 0xba3efe23, 0xe55225e5, 0x16b2ee, 0x8f7b45da, 0x16b7a9c1, 0xf6acaa7b, 0x73a36160, 0xb531a9e5, 0xb8a7a21, 0x3364e4d3 }, { 0x6ee5673, 0x3485f57d, 0x9ef0cdfc, 0xc9591bb2, 0x747c058c, 0xcf10813e, 0x7481e134, 0x1a1d2e6f, 0xf92a6af4, 0x8a7cb99, 0x4f2a8964, 0x2fd27664 } }, { { 0x51c0d910, 0x1dbf8376, 0xdfc9d2d5, 0x46a1f318, 0x1750d19d, 0x58299928, 0x8e40b50e, 0xe502e2e1, 0xb02a00e, 0x54ce6791, 0xb4faafea, 0x702b60ab }, { 0x66a82494, 0x2cc594b2, 0x20d6bb9a, 0x6af75a41, 0xacce3118, 0x842254c9, 0x47ba0148, 0xdd8ff704, 0xe12b1296, 0xb8be5c5d, 0x8cc2ec57, 0x5770e209 }, { 0x618ce846, 0xb0818a14, 0x6fb31512, 0x21161296, 0x82388238, 0xb512471e, 0x6974c1f6, 0xd2170f39, 0x9ae5ee94, 0xa67147e8, 0x439d670f, 0xa4acaf } }, { { 0x1cabda76, 0x57412faa, 0xcfa9f8f4, 0x393bf78, 0x61e8e6b9, 0x98b9a60a, 0xdbef0612, 0xc88e4566, 0x597d3385, 0xd595712c, 0xd8bc72b7, 0x6a135865 }, { 0xddfb292b, 0x10a71978, 0x4e62ce28, 0xd1e147d7, 0xfa87391e, 0x9c1c953c, 0x9b553a0b, 0xe786567e, 0x5bd5d041, 0xd3ed92b4, 0x3358f958, 0xe511476d }, { 0x7735ff61, 0xb1fff2ab, 0x7bce94ec, 0xe5e88678, 0x92ddaf4, 0x337f1cbe, 0xeea93bc5, 0x54496009, 0xd72c60ee, 0x3323a0e2, 0x5bdd3a36, 0xcb25135f } }, { { 0x6221a3ca, 0x775462b9, 0xeed018ee, 0x2c7d86ff, 0x4d1823d2, 0xb0ed8b8d, 0x82618e0e, 0xbcd32e, 0x829c3ed1, 0x2441e74, 0x7aeb09de, 0x5b58bd31 }, { 0xfb418b03, 0xd2d793b9, 0xf90bec10, 0x8dc27ed2, 0x5ba0f126, 0x48b63dac, 0xdb9c4b06, 0x92a5d2cd, 0xcfd47daa, 0x47b5bafb, 0x2743ce9b, 0xae4cd1db }, { 0x298c46ea, 0xb2e9462d, 0x8dea0150, 0xb0d3e5d1, 0x921612a2, 0x4685234b, 0xb742fec1, 0xf258eec, 0x27c25dea, 0xb3affef9, 0xb5dc40c0, 0xa9fde7dd } }, { { 0x297513cd, 0x8611ba65, 0xa8cc7af7, 0x5a141503, 0x1fa83603, 0xe6216c5e, 0xc1303444, 0xf0c394b8, 0x38b8cd45, 0x6a9af524, 0x66b9b5b1, 0x22f02548 }, { 0x16581e2e, 0x79ec3bad, 0xd87fd560, 0x8f8a2eb4, 0x721e77c7, 0x7470696b, 0x2b19c128, 0x985114de, 0x351ccf20, 0x94866f7e, 0x9eb2b2fb, 0xfe494cf2 }, { 0x6375b56c, 0x1fc755d8, 0x22de19cf, 0xe487d644, 0x48e59091, 0xdf65ad48, 0x40012448, 0x44e901cb, 0x2ff15e9b, 0x29f5e6b0, 0xe2be9ccd, 0x5f2db85c } }, { { 0xb58a3181, 0x78f6202c, 0x9af03e6d, 0x72bd0cc2, 0x2f3b6615, 0x98cf44f4, 0xb9c4c8a7, 0x4191d2bf, 0x6356f8e7, 0x82677af8, 0x50e36686, 0xc8797f13 }, { 0x79004440, 0xbc3abd5f, 0x3b163f5c, 0x68354360, 0x7d91007b, 0x24727f34, 0xae2904f8, 0x77c14283, 0x2d7b5689, 0xddcf4d83, 0x136007b5, 0x4b1d6ef2 }, { 0x2c73cfaf, 0x257e67d9, 0xa4b97126, 0x81e62081, 0x96c48da7, 0x38877441, 0x94324679, 0xe3784542, 0x13560859, 0x9a96f532, 0x59301e2c, 0x5093f014 } }, { { 0x5a6d6e26, 0x87e64494, 0xd26c8251, 0x49b47f41, 0xecfbbb62, 0xdafa63f6, 0xf6d62a, 0x5ca29fcb, 0x15cda4ef, 0x860db8e4, 0xaf29c79b, 0xede624ec }, { 0xc6fddea8, 0xda7a1dc, 0x1a3def67, 0xf264b3ce, 0x2061bcba, 0x798cd3bd, 0xc44827dc, 0x8eb128bf, 0x62820f44, 0xa1de7f4c, 0x79ef3ea3, 0xd27babd }, { 0x3487dda1, 0x2286efe8, 0x525e49f5, 0xd2a64fc7, 0x38c21163, 0xb26911e0, 0x8507fb84, 0x51768633, 0x7aa406b, 0x87295c52, 0x9936837, 0x61561a59 } }, { { 0xb9daee73, 0x9fb8bc01, 0xaaef86f5, 0x6780d923, 0x3968f802, 0xaa5bdedc, 0x47dbe22, 0xe758e9e8, 0x863d1f21, 0x5b4153bc, 0x87df17b6, 0x6a95d288 }, { 0xca4d0c32, 0xc9e70f12, 0xd368a621, 0x85ea0d37, 0xbaf4df94, 0x95d83a61, 0xc0d8de8c, 0x5aa92fd2, 0x778b29e4, 0x49ea2258, 0x17044b5d, 0x8be6200f }, { 0xe0b1659d, 0xc375eb0f, 0x47be63e7, 0x941e6ffa, 0xaf4e6308, 0xf0af1a4, 0x981548d3, 0x72e4e7ea, 0x2be3ac2e, 0x36a39b81, 0x477d31e3, 0x339cf61b } }, { { 0x3cafed1, 0xcd53d966, 0xbac60389, 0x742c5cf3, 0x34e27a46, 0x33491c38, 0x3d688ffc, 0x6365d1cf, 0xe55c2005, 0x4a214e70, 0x40d23378, 0xf6a3e70f }, { 0x7b0e6aa9, 0x6ee16f11, 0x5592e319, 0xe9687a2c, 0xd8e0af95, 0x89f1e318, 0xc808c8f4, 0x4c99d4de, 0x5ece9e8b, 0x904fc842, 0xd9cdc183, 0x3ad31edb }, { 0xa7ab77f3, 0xaf5358d7, 0xd744562, 0x746de3ae, 0x6210c829, 0xf0fb4065, 0x4543cd05, 0xfd129742, 0xf5e8c6b4, 0xd21921f2, 0xaaff41f3, 0x84f1e179 } }, { { 0x4d1193ba, 0xb8d3c807, 0x8e1353bf, 0x50874c50, 0x2a1fee29, 0x6d07b5f, 0x29a7af7d, 0x58f50f33, 0x65e891ea, 0x70cf9808, 0x2502abb3, 0x2e46cbb8 }, { 0xf699bb6f, 0x84e2b0d5, 0x1ee2e71e, 0xc47b4060, 0xdafd57fb, 0xd9d6269f, 0x91c0b6fc, 0x827638f7, 0xa26cadf4, 0x2fca3e6d, 0x3befb3c1, 0x957bf9b5 }, { 0x79aef30f, 0xd84b6ba4, 0xb779a177, 0xec3becc3, 0xe5801949, 0x52827b84, 0x93704705, 0x12ac6f05, 0xc30ba63b, 0xd6d9dc36, 0xe3e3cc4b, 0x88bae225 } }, { { 0x453a55b8, 0x647bf094, 0x420e4da9, 0x19dc77ee, 0x5816a89f, 0xb9ef5b43, 0x87195633, 0x7ffdccd3, 0x5ed412fd, 0xd217726b, 0x3da01a7d, 0xd07eac88 }, { 0xce0cc1c2, 0xafb567ec, 0xd3ed862c, 0x407df39, 0x9e57e117, 0x29e411fb, 0xf41cba06, 0xd1316b47, 0x3dcacb34, 0xadbacb84, 0x76d868c0, 0x54c4bbef }, { 0x441c59c2, 0xb110c5db, 0x1bb80cf8, 0x880c9d08, 0xc1fe23e5, 0x93d77ccb, 0xb1dcc3e1, 0xfec9528b, 0x504da730, 0xafee366f, 0x479f6796, 0x57f51546 } }, { { 0xb57277d9, 0x6ed48fd, 0x1ba0b455, 0x8889baab, 0xfd622957, 0xeb47e5c4, 0x487aafb8, 0x2c19fdff, 0x939967ba, 0xdbec3ca4, 0xc68f087a, 0xfba19759 }, { 0x611e12d6, 0x441e329a, 0x897da4e7, 0x3be9fa1e, 0x80c75534, 0x43490418, 0x6709d95d, 0xd3071a57, 0x8391149b, 0xd7f540d5, 0x7829d4a9, 0xe443fdfc }, { 0x6d3d7358, 0x412a7d3, 0xa3b115b8, 0x9df2679f, 0x98b9b91b, 0x731c9b2a, 0x1f96d1be, 0x669eb994, 0x566845c1, 0x9bedfee6, 0x29482954, 0x9fe7aeb0 } } }, { { { 0xcd53b8ef, 0xba1a5c78, 0x33cc90b1, 0xa529db35, 0xb222f18a, 0xe87d2bc0, 0xe352cac0, 0x2afce164, 0xb7290048, 0xc7da4cd3, 0x720677f6, 0x5a71e3e4 }, { 0x2306ab3b, 0x8fc199d6, 0x92fc695f, 0x3a34e954, 0x5f868a2a, 0xfdec727c, 0xda05b245, 0xf7f9240f, 0xea02f6fd, 0x8c6d9548, 0x770c25b8, 0x8adc4238 }, { 0x6073e4a3, 0x236d7f4a, 0xf8c933b4, 0x82503a07, 0xd5156da0, 0xdb233027, 0xde7104f, 0xdc452b40, 0xcfb47aab, 0xccab7993, 0x69dec835, 0x70068a45 } }, { { 0x406a6efb, 0x2a029d04, 0x589e1bf5, 0xde00ed48, 0x827dc57e, 0x157ab2c9, 0x159e883f, 0xb69b7683, 0xe7a6419b, 0xe0bba28, 0xdb28b113, 0x73b38a6e }, { 0xb32c53e5, 0x6e88e98c, 0x4610f7f5, 0x1a0bd42d, 0x95dbda0b, 0x70818ca1, 0xfa29e381, 0xc6c3212b, 0x7a84e565, 0x7f4f8f78, 0x7ef35c27, 0xa790ce4e }, { 0xf0fd361a, 0x263918a0, 0x259d7781, 0x9590daee, 0x455308f8, 0x8c32d4a4, 0x3a62a66a, 0x683e75a8, 0x2d326367, 0x991c8e85, 0xbce54db, 0xbc6dae7c } }, { { 0xc970a05b, 0x41823733, 0x1c02c7ae, 0xfbda318a, 0x8a528403, 0xfcaea0fb, 0x66a3c24, 0x2109aa0b, 0xad85414b, 0xa736cdce, 0xeb0b39f5, 0xc38f9eb }, { 0xbdfd5e62, 0x8954b61b, 0x20d2ac91, 0x9c50cd2d, 0xade12c58, 0xae7db074, 0x547e2d1c, 0x28c43c1b, 0x9a6bc11, 0x77d8a62d, 0xf8dbc1e, 0x1729a318 }, { 0xaa054777, 0x9c95ae1a, 0x215ce3e, 0x39560163, 0x7dcd692a, 0x1293c4e3, 0x17e74710, 0x400f8e68, 0x9eec654e, 0xd6d88d46, 0x2ad198ac, 0x80bfb67b } }, { { 0x5542a34d, 0x30706864, 0x81d6080d, 0x59b88f63, 0xeb78ede4, 0xf50503e0, 0x4ffcd52c, 0xbe064f6b, 0x6d20f97c, 0xdbea2724, 0x1551b756, 0x255accf2 }, { 0x66963fe4, 0x9bb0a31e, 0x52323fb2, 0xfc064a7, 0x5708eb97, 0x18bd40c1, 0x8a9683b8, 0x1d6ad50b, 0x5583e87, 0x188f1dd0, 0x3e22dddf, 0xb767268d }, { 0x37945e62, 0xc1e38357, 0x9cd7c2ab, 0xc4967182, 0x9ebf1d93, 0x923f1f57, 0x308f773e, 0x70d2fc64, 0x2b22c80d, 0xb83f96d5, 0x11e8aff8, 0xd4d63976 } }, { { 0xf93e23a8, 0xf993ae42, 0x66dbdfcb, 0x4a0cc918, 0xb08374ab, 0x62c6d6e3, 0xe8513553, 0x187632ad, 0xcd2d6981, 0x27db4013, 0x779af7d5, 0x2527fa64 }, { 0x3244ddcc, 0xe34025b0, 0xa1e7c298, 0xd04eed3a, 0x7199e3dc, 0x8ffdaa5f, 0x3e021293, 0x5734cd7d, 0x470d3bb7, 0x817ff0d, 0x17be7715, 0x906efe1d }, { 0x3274adc3, 0x7ea5f04d, 0xa42cb976, 0xb406f0ba, 0xdfa57479, 0xfb1a80a5, 0xc6e0ebed, 0x716d0477, 0xa44395a6, 0x1c472745, 0xa049dc53, 0xe1994be6 } }, { { 0xd0ac1bb2, 0x5d3529f1, 0x8d567be7, 0x704bc54f, 0x87487d31, 0x7d622a6e, 0xc0dbf84, 0x865a7646, 0xcdbea5a, 0x3008ab31, 0xe641c428, 0x96c73690 }, { 0xb01c898e, 0xb4398bde, 0xf1dff22c, 0x84cb364e, 0xe3107d4c, 0x9ae94c63, 0x65aeac9e, 0x7e5c0620, 0x839c07e6, 0x2c894366, 0xbaf43480, 0xa1747825 }, { 0xf2f68367, 0x1dad21d9, 0x9fcd82e8, 0x26c51bd2, 0x37852a0a, 0x940d2b50, 0x56a17fd3, 0x42104e9, 0xad360c32, 0xe7747be1, 0xc2d38dbe, 0x3919677c } }, { { 0x3c61754d, 0xae2ec3a0, 0x2baff80d, 0xd78e63d5, 0x7002442d, 0x878de9b0, 0x939458ae, 0xbd01c3aa, 0x71afd68f, 0x4bbbabb, 0x4f6ee0ab, 0x18d1c063 }, { 0x12307e20, 0xe4d7d6d5, 0x98b40cc9, 0x278adb44, 0x9109b969, 0x666b9f6e, 0x791d49d0, 0x55ac2878, 0xf3dea84e, 0xbc94a4d0, 0xc537711, 0xaa060fea }, { 0x43446fda, 0xd0b211c6, 0x1d0ff80e, 0x8dd17964, 0x5e2e7811, 0x330e8cf4, 0xdb908975, 0x4f2e1a3e, 0x634280a6, 0xc55f6b2, 0xeddc1095, 0x2b3243be } }, { { 0x237d9392, 0x79830f8a, 0xd5881681, 0xe2e659b5, 0xacf46576, 0x69c72759, 0x7ab26305, 0xde6caf16, 0x80f2bbb3, 0xe6368bd2, 0x64093613, 0x906417a7 }, { 0x9f5dd4d3, 0x316dc32e, 0x9643cd39, 0xb957bbbe, 0xbb461c8a, 0xab2d048b, 0xe7a038a4, 0x61601750, 0x1936895, 0xc7a914cd, 0x398d527d, 0xca68922b }, { 0x703c4e70, 0xaff1e44e, 0x27de7587, 0xbb425fa3, 0x6707b7a, 0xd2b13453, 0x981ae7b8, 0x78c0abfa, 0x3783f87e, 0x474bd7f9, 0xc75e3524, 0xd41d78c5 } }, { { 0x48884e53, 0xdbcde638, 0x2b06572c, 0x63e435e7, 0xa7cc8c70, 0x50871355, 0xc8bd159c, 0x8a7df7f0, 0xdd5383d5, 0x684068e3, 0x47e8ef19, 0xddbb512 }, { 0x4c3ac89, 0xe954885a, 0xd58b274f, 0x2c5fb163, 0xcd338f3c, 0xc34e73d6, 0xdd1a752d, 0x282e62d8, 0xe1dfa9ab, 0xf8bfe5d2, 0xa733051, 0xb22bd2e7 }, { 0x3b2622b4, 0x91b9caf, 0xdf23db31, 0x8de6a056, 0xdf70ab6b, 0xeb688cd4, 0x98d6cc2a, 0xb1e4bd96, 0x3a64933, 0x97177b65, 0xb528b87c, 0x6501967a } }, { { 0x9e739a35, 0x10b34a68, 0x94c168a2, 0x1159e3ef, 0x25db396a, 0xf0159609, 0x20b57cbb, 0x8939b168, 0x97789385, 0xf84b90e7, 0x7cf091c8, 0x38a888ae }, { 0x1a59296f, 0x51e634bc, 0x9f9cfb84, 0xce289557, 0xf41ac6d6, 0xb2a3eed6, 0xa3f0c4a8, 0x58cbb7b1, 0xf032fe2a, 0xf6be35dc, 0xcecde10d, 0x2c662376 }, { 0xad5010c1, 0x79f83d9b, 0x39391320, 0x8ae9948e, 0x7d4cb33d, 0x20325e64, 0x6d3461b7, 0xd746954, 0xcd410344, 0xea29f41d, 0xd145a617, 0xea2bf3c } }, { { 0xf4e5afd9, 0xd7cce53c, 0x92950c81, 0x79e0ca39, 0x58f6ee53, 0x82100cb4, 0x781c46a0, 0x17315f27, 0xf3c634f6, 0x45ad362e, 0x9598715c, 0x3418b37c }, { 0x4a84e618, 0xb7f8b17f, 0xa45b75c3, 0xba843ff, 0xb33cfc0e, 0xd1d8aeb2, 0xf9fe17f6, 0x6452630, 0xa18cee72, 0xc011ff9f, 0xbe239ad3, 0xcf694938 }, { 0xd93f420e, 0x74882b1f, 0xfb14e89d, 0x565e74a2, 0xa144a3e2, 0xc44b6a9b, 0xd025e758, 0x64b7f472, 0xbb687229, 0xc6ff275b, 0x364dadd9, 0xe13b4b52 } }, { { 0xd5bf88e7, 0x71fa103c, 0x38e3250e, 0x8af1d39d, 0xd273231f, 0x12812ec4, 0x609e2395, 0x7dc42256, 0x741815e0, 0x89b5687c, 0x3744ac85, 0x81aa25ff }, { 0x247407d2, 0x33253bc1, 0x97acbc60, 0x38732af3, 0x205e5354, 0x61274724, 0xf0fc2622, 0x46b4c509, 0x2f409b5a, 0xc0b8482c, 0xf2f5ee3a, 0xaa560be4 }, { 0x8b9091c2, 0x1840fa8a, 0xc1e180e8, 0x8e70896b, 0x25e5dbcd, 0x378ab6b3, 0xba486946, 0x8999a65c, 0xc40bd943, 0x27a67a5c, 0x8289b967, 0x38564674 } }, { { 0x5f28a321, 0xfd0acfca, 0x48c120dd, 0x20257981, 0x29e0cd31, 0x38dd2948, 0xb34fbcb5, 0x436190d9, 0x427a11b4, 0xdc21d206, 0xcaec14a8, 0xfaec998e }, { 0x5208f700, 0x96822281, 0x44adf0ab, 0xe405664, 0x86685748, 0xb6b10ee0, 0x63acf287, 0xa6fecf0d, 0xcba9df1a, 0x8d506b7, 0x834dc8c3, 0xae4c0e5c }, { 0x4f26420d, 0xb5b0ba9a, 0xa311619, 0x47490341, 0x4f11717d, 0xe9513067, 0x13ff318e, 0xced63859, 0xba19f933, 0x8ab2745c, 0x74de187c, 0x8df432d6 } }, { { 0x11bbe98, 0x1aad3102, 0xba786bb7, 0x6fb822bc, 0x7f72223a, 0x8b1240fe, 0xc0c472fc, 0x63c03bda, 0x74abf23a, 0xd6c255a5, 0xef81f6b7, 0x2a8fb45a }, { 0x4c4cf3ca, 0xf2db01, 0x1085aa08, 0x96bb147d, 0xb023fc1d, 0xe7cc4258, 0xd9429afb, 0xd6ce125f, 0xf92259c7, 0x45986aa5, 0x276fbb8a, 0x1fb3919c }, { 0xdb963deb, 0x463124e6, 0x29e7cf72, 0xa4241a79, 0xddcf04ce, 0xca50190f, 0x9db73d43, 0x66c89c57, 0xbc98b5ca, 0x954a64b4, 0x7e2728dd, 0x84f26a80 } }, { { 0x2db6af07, 0x684138f1, 0xd0854dd2, 0x2ed9157, 0x450c0478, 0x2d0511aa, 0xf2a75dc5, 0x5651dbce, 0x42ad0c19, 0x7b6c0e5b, 0xf4dd582b, 0xeebc1449 }, { 0x4e830947, 0x7046080a, 0x44ccf2ae, 0x6be8e1d5, 0xe012c126, 0xd7a937a4, 0xcbd0d6c8, 0x5017d02e, 0x916b5f6f, 0x23368ca, 0x1554e5a9, 0x1f3fb92e }, { 0xf9ed9b5c, 0x81b5dc70, 0xd95f52ce, 0x9b93a0fc, 0xc21423a7, 0x1017195b, 0xa0f4ffc, 0xa340b5fc, 0xf6ba0f55, 0x79c58613, 0xcd46ec53, 0x2e3bd3a4 } } }, { { { 0xa8553aeb, 0x8edbf220, 0xa78d5385, 0x6988ac96, 0xca598665, 0xa6f25ed1, 0x86e9117f, 0x3bd14382, 0xaf23f623, 0xfa7cb5da, 0x3686c87f, 0x538c0044 }, { 0x7fe3a59e, 0x89c92af2, 0x47454653, 0x7420772a, 0x1ab2ae2d, 0xbba04c6c, 0x44e5d76d, 0x85739760, 0xcaf8feed, 0xf7ef1313, 0xa102a966, 0x7b9c68a }, { 0xa5a86425, 0x3a09d58d, 0x635e0963, 0xd1533771, 0x2deb2ad5, 0x9cce8eda, 0x29e28660, 0x837452ab, 0xff0f1826, 0x70e8d53a, 0xe1322787, 0x3e536d73 } }, { { 0xdc86c306, 0x72854002, 0x4571a410, 0x9090eab0, 0x1146bd6f, 0x8117101c, 0x75928019, 0x11a91028, 0x24fb67d6, 0x8f4cc704, 0xd77c6222, 0x6852fd62 }, { 0x9325ca6d, 0x476cc8ff, 0x2db3210a, 0x215f42ec, 0x868c3fb4, 0x8bea249c, 0xbb4f937e, 0xe80a2339, 0xfbf3323f, 0xa32078cf, 0x65101825, 0x30100ec6 }, { 0xf7d09c06, 0x911cce76, 0x80af08d9, 0x7c2b1e98, 0x36b5d6e3, 0xfd28582e, 0xe96dd73c, 0xac169ff, 0x4745ad8a, 0x121de20a, 0x3688bead, 0xcc133221 } }, { { 0xa42de860, 0x94efdc22, 0x1370c083, 0x25d75818, 0xafbbc667, 0xcf0a3db3, 0xbcee34b3, 0x5003fba4, 0xb064e223, 0xe3e33016, 0x2e2842cf, 0xe24f15e2 }, { 0x19e6e624, 0x4374a4f9, 0x7b5172f2, 0x4157d81d, 0xe40cb413, 0x64dbb98b, 0xa491cfd2, 0x7f11e233, 0xf2ee3198, 0xae293a17, 0x89cd3324, 0xa2c4386a }, { 0x58bc8215, 0x4b530736, 0x6da3acd8, 0xae30a25b, 0xea9ee03, 0xa870bb13, 0x856f4f64, 0x8ad87243, 0x62d3c8a5, 0xb7e7f6d0, 0xbc7e2e64, 0x268473a0 } }, { { 0x8e0d2a2, 0x520f59fa, 0xfcce1f23, 0x53ef33b6, 0x27d21326, 0xe5fb60c8, 0xc4e1fd76, 0xc0efa7a7, 0x89f52f8a, 0x13c3e55a, 0x78c8c5db, 0x46331da0 }, { 0x54fa3c07, 0xc97d128d, 0xe194e6ba, 0x486dcc7, 0x4ff4bd98, 0x6281c62a, 0x17d04044, 0x58269b38, 0xe7eef860, 0x39542f01, 0x7fd7931f, 0xf04b4faf }, { 0x7c06d21e, 0x9eb762e8, 0x4741f88a, 0x8c9c98b5, 0x6c87e199, 0x4b1078d0, 0xcf8698ee, 0x1bf99685, 0xc887c98c, 0xce36b8e0, 0x6f997746, 0xf2ca9285 } }, { { 0x146859e4, 0xa1279a90, 0xb08b5579, 0xf04945c1, 0xcc4c98ff, 0x7e898552, 0x4ffd89e0, 0x42ea5c8f, 0x37f30aa8, 0xb3f5b439, 0xdc033bb9, 0xb287a154 }, { 0x5ba07f9, 0x587e7b55, 0x10da1973, 0xc266796, 0x2907b992, 0x86718204, 0x4844bddc, 0x306c5ad7, 0x3b96692b, 0xe42e4baa, 0x2bf0d320, 0xd13945 }, { 0xa85c62eb, 0x13e317e6, 0x81e048ff, 0xfc00296d, 0x81e39b33, 0x7a728e41, 0x8c96eeba, 0xf467d6fa, 0xa7dcbafc, 0x3053d635, 0xaf9eadba, 0x824fd8f } }, { { 0x8551c3d1, 0xf54112d8, 0x96c860d6, 0x4eb8b6de, 0xf5020a36, 0x98cec610, 0x2949765f, 0x14fca1d3, 0x8836342, 0x7a77505a, 0x764ea4f6, 0xe7abbbe8 }, { 0xeed524ac, 0x818d572e, 0xc5fe7c4b, 0x29ff71b2, 0xdb0fd8, 0x26bed7ff, 0x152fcaf5, 0x7a00c1a0, 0x57700c49, 0xb26ae885, 0xec593879, 0x815cbbef }, { 0x17753594, 0xd6da289b, 0x9a715524, 0x1d2cbdb5, 0x37ac0644, 0xb4225e52, 0x9d88c63e, 0xb1f253fb, 0xd69ca2e6, 0xfe27a3f8, 0x9e370387, 0xc0e9ec73 } }, { { 0xc5a05c8a, 0x21c7df92, 0x4eec6497, 0x6aa0528e, 0x89050cd5, 0x88305f62, 0x4737fe6f, 0x8541724b, 0x7f7195b1, 0x4f7e9614, 0xa41f716, 0x4c3940ee }, { 0xd4d60d19, 0x1cec4b40, 0x5f8a052f, 0x70dbe801, 0x648f1c7a, 0xeeb3f735, 0x23bc2d2a, 0xb1e84f9e, 0xabb19321, 0x85666fda, 0xbc1aa64e, 0x6a33fbc }, { 0x64ac7288, 0x39fda632, 0xf502e15a, 0xc449e40a, 0x2a3ed9c8, 0xfa05ff40, 0x949a7a70, 0x4989b589, 0x112d4b14, 0x5c1a997e, 0xa0b7223, 0x1a4223cb } }, { { 0xb6158b44, 0xd330a84a, 0x5dd4ab49, 0x45d716c1, 0x175ee0e9, 0xb0a6a66f, 0x2f997abd, 0x1e4daef, 0x2ce9c731, 0xdbdcefbf, 0xb834af8, 0xc90f8301 }, { 0xa0fdc14, 0xb80cbffd, 0xad5dc417, 0x1e802c3e, 0x20fd427d, 0xd2b5a88, 0x4bd8c778, 0xe109d3d4, 0x62e7e94d, 0x64292be2, 0xd5a8ca8a, 0x2c84fc0b }, { 0xd3db55b8, 0xd7bcdd45, 0x6dd99c4, 0xe351e348, 0x85270f9d, 0x120ad83f, 0xb4721b2d, 0xf258c00a, 0x8c92531f, 0x1d57268f, 0xf34e212e, 0x5b98e725 } }, { { 0xd1be89fb, 0x719d2425, 0x32c2cfde, 0x634a45c9, 0x7e07a961, 0xeab89671, 0xaea63103, 0xe292621d, 0xe80202d0, 0x4f5abedb, 0x23bf784b, 0x2799e5ee }, { 0x6c104950, 0xc73a099e, 0xd3553f9b, 0xbd460277, 0x7d684b5c, 0x5861933c, 0xbaad7419, 0xc10bc41a, 0x4d8e6454, 0xe07117b, 0xa073ff, 0x212e1f97 }, { 0xa2a377a6, 0x7bc8adc3, 0x57f6ab0a, 0xe169664c, 0x7983a2b2, 0xcbcd9e64, 0xbe9e435a, 0x10632787, 0xe99c6ce1, 0xdfcde25c, 0x210896a, 0x858a6d8 } }, { { 0x7e472b0a, 0xd3ddde80, 0x6dacbc61, 0xe3a002c5, 0x72f4f2e6, 0xc7ed275c, 0xd39b2450, 0xddc566d, 0xb0f1b51a, 0xe4ba4dcf, 0xe343d2b5, 0x1c38ccba }, { 0xa5948850, 0xec6ce348, 0x60fa6f6c, 0x45392add, 0x60961cd6, 0x3f5e6028, 0xe5dffd86, 0xf1267b84, 0x43cf6e77, 0xd3eec32c, 0x8ae596d6, 0x88950803 }, { 0x2ffb53b6, 0x818fd854, 0xc9db2178, 0x9abcd991, 0xae6fb124, 0xc4d422a0, 0x6360dd2, 0xc967e7ab, 0x30da8dac, 0x6d306057, 0xb619c224, 0x910f5623 } }, { { 0x94638afa, 0x1d2790e4, 0xd3503087, 0x4e038b81, 0x1e007b1a, 0xf60a4ee4, 0xe14abead, 0xdfaecc4d, 0x8d0ed4dc, 0x7f53511, 0x18b7eb04, 0x9b009583 }, { 0xd36f20e5, 0x7cff3395, 0x2224895d, 0x6d9d452f, 0xcf8e5a, 0x46279ee4, 0x4a1afe9b, 0x3c96daf0, 0xa79ab2e0, 0x489bbf75, 0xc24c5d35, 0x1c987b6a }, { 0x4884a4f7, 0x7ccaf341, 0xce84289, 0xcc2c101a, 0x5542bc24, 0x1d2004c8, 0x912de0b4, 0xe9358c47, 0x249c0d6a, 0x519929aa, 0x611072ea, 0x4319de3 } }, { { 0x8818b91d, 0x9531008c, 0xdcc759aa, 0x6d89910b, 0x40695da8, 0x957075f4, 0xf9aaa273, 0x199b6b0b, 0x18895703, 0x894cf7df, 0xf5dda54a, 0x1c36e783 }, { 0x4a9ebe99, 0x9c666c04, 0xa4f35b9c, 0xa728255a, 0x82ce08ec, 0x7aa85263, 0x2bd36788, 0xae38039e, 0x639cca1, 0x2c820e4c, 0x65d87c69, 0xe7ce7301 }, { 0xcd19804b, 0x4a438f31, 0x63c7a404, 0x7d9b40e8, 0xeca08322, 0xd3233fc0, 0x2bd65355, 0x27163d7b, 0xc8504c0, 0xbc35dd22, 0x39e9cd4c, 0x83b4d7dd } }, { { 0xa2cd5965, 0xc42c3786, 0x6003872a, 0x8f3abdee, 0xee71080d, 0xb5a80bb7, 0xb8a10668, 0xecef318f, 0x56501091, 0x97456d9a, 0x24ddb5ec, 0x19205411 }, { 0xfa1efee7, 0x64c4249f, 0x3dcd448, 0x59e2cc61, 0xab7d52a6, 0x9f1c3cac, 0x83901540, 0x9e203500, 0x4f9b12b9, 0x4ca13d18, 0x2e7dfee5, 0x19c55130 }, { 0x62f2620d, 0x2772e508, 0x86a84e65, 0xaec42557, 0x225364db, 0x3760a55c, 0x57dd2aea, 0xb0af10a0, 0x4e785ded, 0xd38c71ce, 0xe5be0ff, 0xa80e6f44 } }, { { 0x6576d868, 0x5b04b8c4, 0xb1d38d6b, 0x9a846892, 0x6d62a950, 0x757c8486, 0x798110d4, 0x3c126b79, 0x5ccff4a2, 0x99e49b45, 0xf92c0026, 0x5e008f6e }, { 0xd1638197, 0x911db8d0, 0xdd0733a3, 0xc111b1dc, 0x35983164, 0x5928d5bc, 0x9de621c7, 0x5e576eb1, 0xeb8de081, 0xfc401b85, 0x8d6b4eef, 0x717fbd5 }, { 0xa12d5999, 0x1030599d, 0x8083d89e, 0xeafb7e6c, 0xd10aee11, 0x50cd106f, 0x66031c12, 0x810f7763, 0x600bb9c3, 0x1a080143, 0x3613a5df, 0xae371d30 } }, { { 0x9b89ad68, 0x3dd2b171, 0x228c1679, 0x434c9beb, 0x41501997, 0xc4dc712c, 0x676284da, 0xf18317f3, 0xc695aee, 0x8dce151, 0x30697768, 0x2b0f3d7c }, { 0x27cb0ac8, 0x4566c9e7, 0x3f4c8eb6, 0x43a7701b, 0x6da5bb27, 0xb440449f, 0xffbb896a, 0x981ddd4e, 0x746effa6, 0xe83c8e7a, 0x936ef5af, 0x398b8b44 }, { 0x231d579a, 0xd7434684, 0xb80bfa59, 0x9755837c, 0x209b7248, 0xfff4d396, 0xa7a18ed, 0x216e3eb9, 0x802e59c4, 0x478d05fb, 0xc51a5be0, 0x8b5a8240 } } }, { { { 0xa51fc871, 0x2d98a145, 0xf20f87b2, 0x4c835999, 0x9cae2b00, 0x8f4a2f47, 0xbfa10666, 0x83636f3, 0x5db9c18c, 0x9693de3b, 0x4692b3c8, 0x7d4efe82 }, { 0xa930e041, 0x4426db8, 0x5061a47b, 0x23f7502a, 0xae2e1397, 0x1b15a252, 0x478c71a3, 0x3591a4ae, 0xa23c59e4, 0xbddc03b3, 0xc5765452, 0xd32a32fc }, { 0xe7edaeac, 0x47ab37bf, 0x407977b9, 0xaabcb5a3, 0x3eb06efd, 0x3df8a737, 0x6b9aeba4, 0x4e9e880f, 0x65ea507, 0x6abcfecf, 0x967f6295, 0xb70509d1 } }, { { 0x503bf5ac, 0x2cecdae7, 0x9f297519, 0x7c30e5ff, 0x279d4496, 0x290a6c84, 0x31f6a4e1, 0xc47235bb, 0xd0d5857c, 0x6f6412f6, 0x8d26b4a9, 0x6ea5d556 }, { 0x5ec25cbd, 0x31c7d7ad, 0xbcbd0e17, 0x136a4f75, 0x97cd8161, 0xa81e571e, 0x8ec29b34, 0x43455a6d, 0xfa257412, 0x7301de6a, 0xf2bc0b25, 0x26776f94 }, { 0xfb002783, 0x5eeb4e73, 0xec7389cd, 0x2b6259b9, 0x3933e38c, 0x130e1bab, 0x34ac930f, 0x6942b572, 0xd651f35b, 0x5cd057b3, 0x5bddd19a, 0xa0a08a3f } }, { { 0x99c0beaf, 0x6f929b9e, 0x13cd6888, 0x5ad92bf, 0x9046db8a, 0xfcabaf38, 0x64007af6, 0x5730d452, 0xfe82eda4, 0xcf0abc75, 0x4a61d4a4, 0x1631f6a5 }, { 0xab984f8a, 0x41644f6c, 0xae827183, 0x8660ca64, 0x997e21d3, 0xe4faed62, 0xf341995d, 0xf46407ee, 0x82799ad4, 0x818b3dee, 0xc1cfefd4, 0xc2ef25f2 }, { 0x890077e1, 0x8eedfd7b, 0x532d8efd, 0xfa36c5cd, 0x8772eb83, 0x5a4e9cc6, 0x3fd8125a, 0xdfdd66db, 0x9612c398, 0x27bd74e8, 0x215e35c1, 0x616b5cf4 } }, { { 0xfa0c0aca, 0xcfc5a831, 0x54bdb0b0, 0xec1c09ea, 0xde854f45, 0x2bf39303, 0xfff2ed38, 0x1ffd53d8, 0x16fb6f45, 0xdfe7850c, 0xa67b41fc, 0xf5fc7580 }, { 0xd1f1fe85, 0x14faa459, 0x9e2dfb6b, 0xdbecf1a0, 0x85af9d97, 0x9fc2fe6a, 0x86ef6f7c, 0x91265f0f, 0x173bac68, 0x435fc121, 0x7a3492e6, 0xa7892343 }, { 0x410ae7d6, 0x27218b7, 0xe9655225, 0x5557b745, 0xf613dec8, 0x40ebcfd2, 0xb18b27a4, 0xddb050f0, 0x5ca30757, 0x19ea23e6, 0xc426f53f, 0x77c237ba } }, { { 0x1c7ae619, 0x520270b3, 0xf3d42113, 0xc92ee32d, 0x313406b9, 0xdf8a1ce6, 0xb4f7164b, 0x541d7ed6, 0xe59a628e, 0xbb49d705, 0x6c65774, 0xdc738ceb }, { 0x96d4c69e, 0x142d3693, 0xb75b2fae, 0xea31444b, 0x6d771793, 0x5881579d, 0x8a8fb643, 0x9d8889f0, 0xeb264b7f, 0xaf6e4897, 0x92634d3, 0x3ed289f2 }, { 0x3a70abb9, 0xb2d786bf, 0x2b2acf7d, 0x840d6744, 0x904c56b3, 0xf336b53f, 0x9aa7da9c, 0x94059e10, 0x9aa5c696, 0xdd0784dd, 0x370c6468, 0xa3f6940 } }, { { 0xae32874a, 0x241584d4, 0x1beb3314, 0x41401524, 0x6ba6f4e4, 0x1aad9cd1, 0xfe07695a, 0x9aad664a, 0x5e8b05b3, 0xffd3b7, 0xf8c3c126, 0x97ab9598 }, { 0x61c3320e, 0xd5a9e9c8, 0x875c5614, 0x95c34d32, 0xd7691c28, 0xcede5439, 0xa2b078d3, 0x8b1c714f, 0xdebb8e74, 0x7e5e49a, 0x65d24ce5, 0x4bf59b82 }, { 0x41c78fa7, 0xc52d680f, 0xaf049ee2, 0xc8fce2be, 0xf301adf2, 0x5f2b9ecf, 0xb54dd95b, 0x7f9a54c5, 0x506f10b5, 0x91824d58, 0xa6f79e23, 0x2acc6095 } }, { { 0x920f5ba4, 0x2cb67d5, 0xb53eec43, 0x32b56878, 0x43083434, 0x67f2b028, 0x34fb918b, 0xf7c9bd3c, 0x4da980b2, 0x6e29acb8, 0x309b42f7, 0x3e1f0e8 }, { 0x6fcaaa24, 0xcdab1df0, 0x376d7bc2, 0xa3c2809a, 0x70a21c83, 0xfea16309, 0x4f8efc70, 0x10567cbf, 0x757e3e40, 0x2ee9551a, 0x715e007e, 0x6c690a21 }, { 0xe6b9ba6c, 0x9b4a52f5, 0x6e8bfb04, 0x5c9d0a1b, 0x368384e5, 0x186ce2e2, 0xa6d7b5c5, 0xcf9e1841, 0x1125c52, 0x1820cb6a, 0x8b9b1dcd, 0x1e2d559d } }, { { 0x75c4b1ed, 0x45aa23b9, 0xe4ce211f, 0x9016be89, 0xa1ffbb53, 0x2edd4988, 0xf6d79d1, 0x3bf5ff6, 0x25b2f142, 0xfe5cdbc5, 0x69ad8830, 0x5d910530 }, { 0x9230d782, 0x50720644, 0x70ff6ad7, 0xdcb21e6, 0xa50a1362, 0xae1e4aaa, 0x50a68acb, 0x7f40f4d4, 0xa4e24bd9, 0xa0aef3aa, 0x84ce53f3, 0xcff80c0f }, { 0xd3c70383, 0xe5cc3126, 0x8849dc7f, 0xee951052, 0x40ae0223, 0x888ec4da, 0x558cb7e7, 0xdcfc2d7, 0x1a84bb41, 0x952da94, 0x224704a0, 0x9bb6f259 } }, { { 0xd6e7cb67, 0x6f0f2711, 0xdafb858d, 0x56b51c46, 0x58f9e27b, 0x316b07dd, 0x91bc079b, 0x9fa7b7cc, 0x78bebf34, 0xb974b4bb, 0xc521a092, 0xffc84209 }, { 0x2cff1b58, 0x79bc7a08, 0x2cda3b0b, 0x55e6e3d2, 0x669ab777, 0xa9abba13, 0xdb64e03a, 0x1a278069, 0x3e031ac7, 0xb00d6814, 0xd6e12915, 0x384763cc }, { 0x5a0a29d6, 0x42162fa1, 0xadc36945, 0x96e950de, 0x45d897df, 0x62a4ef5e, 0xa6747930, 0xf99f5f16, 0xc838ff58, 0x41ed5602, 0x300da829, 0x27a8fd25 } }, { { 0xa1ed8837, 0x430bb72d, 0xf7e9217c, 0xdb8c75cd, 0xaac49cd2, 0x6b35df59, 0xcf27e1b5, 0x310dd9af, 0xa5c15b7f, 0xbab79e18, 0xf0787926, 0x2cca5cb9 }, { 0xd9ffc032, 0x5b43a999, 0x7feb709e, 0x5f41d511, 0x96bcdac9, 0x37ed5e11, 0x5ac7ddff, 0xce003355, 0xe2daf3c2, 0x7fb5d8df, 0x4ec1dc36, 0x4e59dc11 }, { 0x31de258, 0xec73fc7f, 0x38e9cbdf, 0xe403d882, 0xdce8b63e, 0xc9ef812b, 0x23182158, 0xca0a990, 0xcf4d1183, 0xb9b6cfd9, 0xf929b0d, 0xc10a2283 } }, { { 0x8b49b63b, 0xba4164a8, 0x1b53aa9b, 0xccf398d2, 0xb14beb8b, 0x67454c0c, 0x7f54bb4d, 0x5950f0e1, 0x12fd6132, 0x5c8fa48, 0x4bf3bd32, 0x1e4a3595 }, { 0x97d06aeb, 0x27e0580b, 0x7fbc8ec2, 0x217fa7f2, 0x289fc5c1, 0x236dc697, 0x63930ae2, 0x25a89522, 0x4174f72f, 0xfff1986b, 0xa30f7b37, 0x402c4a6d }, { 0xa729ae5e, 0xd3176cd, 0x36c8ab96, 0xaa703574, 0xbe5c68b4, 0x2b76eb09, 0x138d504d, 0x6efe4b97, 0xe8b3fac4, 0xd3485b0, 0xd6c26aa7, 0xe9617ce } }, { { 0x23af466d, 0x81bad353, 0xd853cd19, 0x505450e0, 0x5abec148, 0x922550c, 0x40f8108a, 0x3ab0f238, 0x96645bfe, 0x83b7ea71, 0xede3fbca, 0x301f38f0 }, { 0xd0e1170f, 0xe17ac247, 0xd3acf3c1, 0x8cbca6ba, 0x8487697b, 0x13dfbd3b, 0xdfb4c9be, 0xd171c09, 0xf58458ea, 0x20e716e7, 0x677b5b06, 0xe1d2debe }, { 0x8060bfe8, 0x801d59d5, 0x915fe27b, 0xec8b427b, 0x9d70e862, 0xb06f64a5, 0x8eab3ec5, 0xd8bca993, 0x475fc529, 0xd381cac5, 0x8d823f96, 0xde7799be } }, { { 0x1d60ed72, 0x9c284c72, 0x4ce06e39, 0xc5d1e53b, 0x203145a7, 0x443968a0, 0x244bdaee, 0xfced73d4, 0xdf01da51, 0xcaa538e2, 0x4653a07e, 0xeaab2692 }, { 0xa1ee910c, 0x899cb124, 0xde5d291a, 0xc67695f3, 0xecdd0496, 0x8ad8cb7c, 0x8932bd, 0xd5fef8df, 0xc3c10dac, 0x50e7615c, 0x26cc6be7, 0x9e99bf83 }, { 0xc16a7357, 0x589c0082, 0x1aa7d32f, 0x883334f0, 0x9aaa4cb9, 0x87e67f5a, 0x9c0937c2, 0x129b3624, 0x7d6cd54d, 0x5c7865f2, 0x3db73b41, 0xc6a3bd90 } }, { { 0x3dfa769e, 0x8edaf4e2, 0xc6a71de9, 0xa3e16445, 0xd15b2c1e, 0xf216c375, 0xd1229c51, 0x984b1e30, 0xde068cc5, 0x62079210, 0x225531fb, 0xffa8cb3e }, { 0xc8c5a515, 0x3410fcbe, 0xfd09b732, 0x349eb5f3, 0x8bece564, 0xe8d24f29, 0x3ba2b13c, 0x283975d0, 0xaa355b95, 0xc831552a, 0x9554356d, 0x4d50cf }, { 0x9e36479, 0xcbd039bd, 0x6303255, 0x5bc2ca36, 0xe4759f6d, 0x5ad9877c, 0x856aecf3, 0xb9129cf8, 0xdc7fd837, 0xd9f4ca38, 0x70d6824e, 0x235c74e1 } }, { { 0xf7366da8, 0xf6d7e08f, 0xc334b9a, 0xdf80a148, 0x6f07b90, 0x3403e66, 0x2fbb3347, 0x81717bc5, 0xa41b0ec3, 0xd26e37af, 0x5d7a7f5b, 0xe5f99c71 }, { 0x517638c0, 0xcd4da540, 0x3d948a9c, 0xb9d408cc, 0xb66f4b5, 0xf1971bb9, 0x9b65f8a8, 0xc3dcc9b0, 0x307f2418, 0xd4feb3e6, 0x6dba7c16, 0xb8316d1 }, { 0xc0423d3f, 0xb1bd4af0, 0x977e2022, 0x9ef91e48, 0xc99b2a3b, 0x2c32c0f8, 0x1c2bcdde, 0x6626cb9a, 0x1513b400, 0xb0b95e65, 0x7c566539, 0x348e20ba } } }, { { { 0x81120772, 0x2013fbc4, 0xb74bafd1, 0x1206bc04, 0x63e2716c, 0x2cfa96bd, 0x3c16406d, 0x1d2be428, 0x3ab91440, 0xb2ecc3eb, 0x27524355, 0x64b8869d }, { 0xe5016562, 0xc803503c, 0xf65f48cc, 0x9c881dfc, 0x1a8d96b2, 0x809089c4, 0x714e1ed5, 0xa1db6e74, 0xd8646d7f, 0xabdff8ac, 0x94c66582, 0xd59cb824 }, { 0x94cfc59a, 0xacfc0d43, 0x636ac3ea, 0xda139284, 0x4d4854ec, 0x369e2378, 0x9c3492e5, 0x78874e9a, 0xe26a6ca9, 0xecf8787f, 0xe523675c, 0x5b8aa53 } }, { { 0xa930922e, 0xbd91a4bb, 0x54599969, 0x4bdc0ab8, 0xbb37170b, 0x7e7de4f0, 0x9f535826, 0xae2f67bc, 0x8bebf2d1, 0xd347fa03, 0x7e2d8948, 0xa0996f50 }, { 0x777a6aaa, 0x63232d0f, 0x2384d1c2, 0x16cb4495, 0x1dc76f1a, 0x49b1e73f, 0x3de9cf28, 0x2ba98bf1, 0xfd506189, 0x5f43ea1d, 0xac21ff0b, 0x7d52c631 }, { 0x3d7910d2, 0xa90dd4b2, 0x53355f1e, 0xdcd4355c, 0xe0e07555, 0x9cfb4968, 0xcfcc6f9e, 0x4ea2f66d, 0x9d8121ba, 0xe2a4cce7, 0xdd81e753, 0x71856384 } }, { { 0xe88ea55b, 0xc35d4ffc, 0x36975e51, 0x7ed24acf, 0x16c29bb1, 0xa557f366, 0x81ea03ef, 0x84a73c7, 0xe5e97dd5, 0x22123a57, 0x8d82a140, 0x166c9df5 }, { 0xc469565d, 0xbad9a829, 0x57005c76, 0x16adff52, 0xbddf1900, 0x620b1df0, 0x334cb23d, 0xb76d9434, 0xb050f0f3, 0x9153a078, 0xb5651c16, 0x43f24090 }, { 0x3eafffbf, 0x652bb35e, 0xf3bee051, 0x5a3101dd, 0x63ea1844, 0x3920cbf2, 0x24f71e23, 0x4278e82e, 0xfbe2679, 0x3ea3039c, 0x4a2d0eaf, 0xbcf2c99b } }, { { 0xa14ee9de, 0xa8dc9f87, 0x1aa7228c, 0x79a6f4c4, 0x93aca43c, 0xf4f7f95a, 0x11377a8f, 0x5d8260e4, 0xe2d1ae6e, 0xb559db7e, 0xd11b3232, 0xbb448b6c }, { 0x51e62c64, 0x16bebb67, 0x151a6799, 0xfdc1e70b, 0xc88fe645, 0xf75f7555, 0x7a382dff, 0xd66c17cb, 0xa9071d70, 0xdb640280, 0xb40529e9, 0x30c054b1 }, { 0x68366168, 0x24449f67, 0x74aea998, 0x616d708e, 0x22324f92, 0xedce759f, 0x2265cf24, 0x765bb580, 0x7689674, 0xdfe4f445, 0x7b6200e9, 0x1369e830 } }, { { 0x4e2fdd2c, 0x738c5291, 0x5d695734, 0x34ef164e, 0xad4ec56b, 0x92bc31f8, 0x6ba44c42, 0xa98996bc, 0xca0dc85e, 0x5b6bcb1c, 0x2f5d825b, 0xec090019 }, { 0xde8b050a, 0x4d46d079, 0xcd8e9901, 0x7d7eaa81, 0xc4e70a5f, 0xf9b0adee, 0x2ca0f9e4, 0xcc7f5cfc, 0xbc443dbe, 0x6cbc8fd3, 0x37d9dbe1, 0xc7df7576 }, { 0x930fddca, 0x8f0b3c9b, 0x70378988, 0xedf018f1, 0x522585e4, 0x3733e5c9, 0x2334fed3, 0xf76e764a, 0x13128b52, 0x49b5d4b2, 0x58796709, 0x1de36187 } }, { { 0x85057658, 0x68881fc3, 0x95c9766b, 0xe455398, 0x9bfb079d, 0xf6498393, 0xcd43c472, 0xcd9726f, 0x82155b2a, 0x5b8f96a9, 0xcb6a0dab, 0x9653b43a }, { 0xaac6d332, 0x6e87bb0d, 0x4aa861a8, 0xbc2b3d25, 0xc2b42234, 0xf4b164b6, 0x5dff75e4, 0xfb4b39a4, 0x4c5319c7, 0x6a522427, 0xa94b6b68, 0x3f1daad7 }, { 0x893984eb, 0xc37139e7, 0x4ee92bb8, 0x7ac54b51, 0x89183de8, 0xf917e55b, 0x36c111af, 0x70d18ae6, 0x72d87aa4, 0xb93fa050, 0x99706350, 0xa4d42516 } }, { { 0xa11b854c, 0x27d8bcc7, 0xadfeadb4, 0x39e1597a, 0x55282a14, 0x8ff90689, 0xeb609a1d, 0x9da1f7fe, 0xfc333f66, 0x1351c8f1, 0xb9e0ba47, 0x5e574551 }, { 0xeff3d1, 0x26540348, 0x1d8fb1c0, 0xffe84cb1, 0x64139fb, 0xba89d0ae, 0x33d902b8, 0x44391ef2, 0x3c885990, 0x389dc608, 0xefdecf6a, 0x1ce5da6b }, { 0xec531b03, 0xcda8443f, 0x4aa1f82, 0xea881f30, 0x5e859a39, 0xd67322a7, 0xa724232e, 0x405a4c0a, 0x3893a75a, 0x6b048a8a, 0xb76f00ff, 0x71c3953c } }, { { 0x4327c962, 0xdd5f4a92, 0x3c3b04a, 0xb08192b0, 0xae49566c, 0xd8ce09bd, 0x20b64570, 0x8c872d60, 0x61712078, 0xd92a4645, 0x56b857f8, 0xe57a96db }, { 0xf968ef15, 0x97ca395c, 0xf206f026, 0x75441d84, 0xbe56f09f, 0x72169174, 0x257fbad8, 0x203f01f1, 0xf1327bc1, 0x328666fa, 0xfd59369e, 0x59090424 }, { 0x23e5b677, 0xee55a7d0, 0x1e98a8a9, 0x59ce25ea, 0xeda99e30, 0xda1696a7, 0x90a32bb0, 0x75762227, 0x7fcfc444, 0xa0a485a3, 0xf09d6454, 0x8061e2c6 } }, { { 0xe290aee4, 0x23d78851, 0x1a826f6a, 0xe7179d69, 0x3665f07, 0x26cdb4a8, 0x17925ffd, 0x7243a5f4, 0x3fed0c6a, 0xe387225c, 0xfc3a6756, 0x48f94019 }, { 0xb8d82600, 0xe324468f, 0x4fbae95a, 0xab9812f8, 0xb4cce418, 0x107676ab, 0xba2f68df, 0x2df2049a, 0x8d2b2653, 0xa2361324, 0x6b2a12c, 0x9097785e }, { 0x617e80e6, 0x9cb47004, 0x61c04c90, 0x5185d595, 0x604d4e3b, 0x1f8c82c8, 0xc519972a, 0x1e66ea23, 0x3030a4c5, 0x3c1b1e7e, 0xa7533a0e, 0x44b510af } }, { { 0xd0077f15, 0x164d70d0, 0x9131bb1f, 0xb3dcd3ee, 0xb17dcdec, 0xcb13ba4b, 0x1ce93bc, 0x5bf57d7a, 0x6e5a5440, 0x338f8984, 0x82cefd94, 0xb336e30e }, { 0x943cc70a, 0xd5a8488b, 0x9af4bdc, 0x60c09482, 0xb41109a8, 0x7f3cece6, 0xfa4cfda9, 0x49eaf9ab, 0xa482add, 0xc9a0c952, 0x8f6feaa8, 0x3f933672 }, { 0xa769900, 0x841daa6, 0x82482ed1, 0x7633bc7, 0xd59fd4ee, 0x556bc9f2, 0x4ce16bf3, 0x2e2385f, 0x2cd98d89, 0xa02a5ce3, 0x8056aae1, 0xa7420235 } }, { { 0xbe1a3eec, 0x18318801, 0x8c91a239, 0x559e1706, 0xc0e014d9, 0x54633a42, 0xe6aff0a0, 0x99c3f4ef, 0x5bfb68ba, 0xb6443a88, 0x5fc4a0fb, 0x5b26252f }, { 0xd713e75f, 0xa8880065, 0xd7dad068, 0xc96e748d, 0x4de84daf, 0x460683d8, 0x47c9044c, 0x199e88d5, 0x6e7d119b, 0xe9e3a904, 0xe836e4db, 0x19aa6aa7 }, { 0x855f3ee7, 0x31d922d5, 0x9082ab7, 0xd03367ad, 0x902e5b65, 0x7e4d624, 0x64129cec, 0x9a9e8d45, 0xde2478c3, 0x1c73252d, 0x8141d8b, 0x47b6ff45 } }, { { 0xc5cb2828, 0x82e239b2, 0xfe49aa23, 0xe06822b8, 0x6ec6eb30, 0xdf36ab66, 0xabdee3c5, 0x4ab9b08c, 0x6fae3cf8, 0xf68cc07b, 0x350c9e4, 0x375a7a8f }, { 0x43a4b90a, 0xb4144b62, 0x6fbfe2f4, 0x7f16a64e, 0xef1d4d3f, 0x131f0d5b, 0xb9ee7f52, 0x60b7908e, 0xefb5326f, 0xdc2930ab, 0x2c1e3242, 0x4755efaa }, { 0x7704f07c, 0x7739389d, 0x640757a7, 0xb80a0aaf, 0x846ee68f, 0x6ef6f119, 0x4ad8d14d, 0xb5d528df, 0x2e2a19b7, 0x8e969e85, 0x160ebcb8, 0x14dc683 } }, { { 0x7d937c70, 0xdf34d5ca, 0xed4a314f, 0x6cc4a57c, 0xc48a182f, 0x95a50324, 0xfdca020c, 0xeef7a4ea, 0x79caefee, 0x32de609, 0x68863421, 0x10f715bf }, { 0x7ac47d47, 0x1891b69, 0x133118d, 0xd8743d8a, 0xf783e40e, 0x217767d6, 0xe94abec5, 0x87a69408, 0x412d3287, 0xa97cc9d2, 0x72a80686, 0xa3635769 }, { 0x770db242, 0x98551ec, 0x893a6e24, 0xff9eac74, 0x1014564, 0xf174d46, 0xacb01048, 0x66947852, 0x360c59a5, 0x90748717, 0x53f2ae40, 0x79d87e57 } }, { { 0xb5518312, 0x9ac296c4, 0x19653284, 0x11293d6b, 0xb39d7848, 0x6d5599e1, 0xaf58b1a2, 0x3a5e89dc, 0x60dba5b0, 0x2677522b, 0x24ed10d1, 0xfd7ac116 }, { 0xe16afa10, 0xdf01577d, 0x687cd730, 0xb6399724, 0x51b30527, 0xfb8a843, 0xe56da161, 0x38fc7a5e, 0xc67f2597, 0xf50b9a8d, 0x2a6e20ba, 0x6c50b748 }, { 0x780ead4c, 0x87af9b5b, 0xdca761cb, 0x5e9d9b24, 0xd60affce, 0x86199a97, 0x576d8d39, 0x6f50638b, 0x942fc93, 0x62d6f05b, 0xd2f402dc, 0x7e19e692 } }, { { 0x65782ef5, 0x9932bc36, 0xfc7f1baf, 0xa981016f, 0x41ebd179, 0xaed78b0b, 0xe2f9e358, 0xeafb2180, 0x71669ed, 0x400e71ef, 0xaff3df32, 0x53ef462f }, { 0x66a77d63, 0x7967417, 0x3157015a, 0xbd89e550, 0xefa7e2e6, 0xd8c5960f, 0x10b05250, 0x7b20c6c8, 0x14a2fd41, 0x950b954c, 0xdc808bb7, 0x15a96e7e }, { 0x6d7fce2a, 0xcf0c4ded, 0xa9711f06, 0x8daf7ef7, 0x869e8e99, 0x791c4e75, 0xaa577082, 0x3419c595, 0xd9569f56, 0x9c954702, 0x9a0fe643, 0xe994780d } } }, { { { 0x1e6b7cf9, 0xc897640c, 0xba954e19, 0x922a7341, 0xfac0f6ce, 0xe3ab274f, 0xc02134ff, 0x9bbba822, 0x52706b87, 0xd71ea6f8, 0x92f81415, 0x6edc63 }, { 0x4752ecb9, 0x31d5fe01, 0x7aa64e8, 0x2f925da8, 0x9ec4d7b0, 0x79930373, 0xedefd76e, 0x9535b5f6, 0x619caeda, 0x719e387b, 0x4a9ef188, 0x19120064 }, { 0x4be1f7ca, 0xf0ba8865, 0xac2af3f6, 0x43fe891f, 0xa6cc3c2, 0x9c391c8, 0xd44465eb, 0xaeb893f9, 0xdc75f0d3, 0x280b6386, 0x843efb4e, 0x5786fe3d } }, { { 0xd71c7829, 0xe7c35a0c, 0xc9025e0e, 0x621015bf, 0xe356c22c, 0x9c40bbdb, 0x2fa51bc7, 0xcc43eade, 0x56ed4850, 0x9e0ffa7d, 0xc7c96b65, 0xc6eed01d }, { 0x1b72d2a7, 0x7294cc09, 0x7fffd118, 0xbfd174f6, 0xa9045906, 0x7682933c, 0x84f75ff5, 0x91488831, 0xa59d7a62, 0xc3a55fd4, 0x45f18b0a, 0x16e4e2ad }, { 0xc03b31b7, 0x6596e0c6, 0x14c1bfc5, 0x3328c289, 0xa459036, 0x40667fcb, 0x87305928, 0x219b13f7, 0x8bce8fd3, 0x2e83ecce, 0x5acda037, 0xb775c77c } }, { { 0x19b24206, 0xf3a4617d, 0xc3056d56, 0x8f4b0899, 0x81b6160d, 0x97e0256b, 0xd2ba8840, 0x4ff4804d, 0x51d9ba7d, 0x2ed656bf, 0x619b0a7c, 0x51eae1d1 }, { 0x34c55016, 0x55cd9aa1, 0x3deb7a80, 0xa293bf59, 0x78d9dbb1, 0xf5a61c22, 0x842e8246, 0x48a1786b, 0xa038423d, 0x42efc29e, 0xda7d6043, 0x8b2934a4 }, { 0xc06b913, 0xfd554cb4, 0x595536bc, 0x8332f27, 0x7b73caa0, 0xbd4ee09c, 0xb896770c, 0x13f0854d, 0x2d46bfb6, 0x33c708d1, 0x2e44ab11, 0xd2dd5301 } }, { { 0x1738e776, 0x5c7517d5, 0x7e56dbeb, 0x1a300143, 0x4a2d6cf1, 0xd965cce8, 0x59caacc8, 0x96f6268a, 0x75ed682b, 0xc026fa3d, 0x64563fc0, 0x7143dd45 }, { 0x221102be, 0x6cca4ae5, 0x7dc51636, 0xdfa8e83d, 0x322e1366, 0x81a01902, 0xe899b220, 0xd920d2d0, 0xb70ff87a, 0x58c54217, 0x821150f2, 0xd4ce468b }, { 0x17bbe9f, 0x20191fd4, 0xd60422fe, 0x43c85ad0, 0x523425dd, 0x8d28bfa6, 0x3bbdbf5a, 0x4702c0bc, 0xfd25b5fb, 0x2aa374c9, 0xdc01e2d9, 0xcdf0aa77 } }, { { 0x4d73ff4b, 0x5fcd703f, 0xe291724e, 0x87c52fb2, 0xfe4862e1, 0x4302bb8a, 0xef75446e, 0x1534be3f, 0xd03563df, 0x656aa19d, 0xfb1ed059, 0x62477076 }, { 0x879c6cb, 0x5d66f624, 0xc862529, 0x69e0feb2, 0x74aa6d62, 0xb19662e8, 0x60d78f3e, 0xe4794613, 0x2d7fa986, 0xc1f9a1aa, 0x5d8a2c50, 0x954c4608 }, { 0xe0ca4944, 0x57333891, 0x56e5a432, 0xbde461d6, 0x693b28a1, 0xd1fc62c3, 0x89b35b7a, 0x2c843e80, 0xcb8a881d, 0x1d52e5e7, 0x4f201e2, 0x6bcd4985 } }, { { 0xe4cde5ff, 0x5561edd0, 0x218192b6, 0xd2f6538e, 0xb27387fd, 0xfe5e1029, 0x57e6956c, 0x98608798, 0x4cd0f13f, 0xaa232405, 0xcc4ed357, 0xc024410b }, { 0x12cf68e8, 0x291a3d51, 0x3ce1a388, 0x5f72d23c, 0x9330c2b4, 0x50208d1f, 0xdda0ec8f, 0xe86ed680, 0xcd35ecad, 0x1446ad4, 0x82968af8, 0xf74a3404 }, { 0x6bce25df, 0xab54ace8, 0xc39cb82a, 0xad7a502d, 0x3407bc6, 0xa6da6e6f, 0x78fb0527, 0xcd015eb1, 0x35970c9a, 0x2ccd5096, 0x3a27c766, 0xdd455bbe } }, { { 0x2380f20e, 0xfca28fad, 0x8df82f92, 0x66d39b03, 0x2f575304, 0x9563c7e6, 0x2d2d29fe, 0xba12e6cb, 0x80bc17f7, 0x6bd14ad5, 0x31b2c402, 0x416ec0c8 }, { 0xbfe4ce22, 0x2987561f, 0x73bfb114, 0xd2dc53e, 0x427d979b, 0xdca78b4b, 0x98c1f36b, 0xf4da7191, 0x158a81d7, 0xe45e5015, 0x14e9fe98, 0xee9b525f }, { 0x8e61ef5e, 0xb2796d04, 0x4e4ea4e0, 0x17eaec67, 0xb9981c57, 0x36280ae, 0xaa8ef3f6, 0xdfddcfb3, 0xab143bfb, 0x9d5c0f79, 0xa4f93a5d, 0x2e40ef63 } }, { { 0xb55fecc5, 0x60429b69, 0x127b4c94, 0x418cb3a4, 0xa37b227c, 0xd52b2690, 0x1a5548e5, 0x10b55726, 0x2536ddee, 0x68b158f1, 0xbce427b8, 0xa988c141 }, { 0xa4905756, 0x8b2769aa, 0x81a1565, 0x488e308d, 0x4edcecc2, 0xcef52bc1, 0x8e58836c, 0x6d37281b, 0x7cde10a7, 0x9f8376d2, 0x5ccd3404, 0xf5b8293b }, { 0x27a3d77c, 0x2ffb8aa9, 0x15b844b4, 0x676843ad, 0x426a241b, 0x101debad, 0xc6bf281b, 0xd25a621e, 0x79432ede, 0xf8f9a294, 0x4f7ed061, 0xd37df11c } }, { { 0x643e2e4, 0x9b3fb172, 0xb9d694c9, 0x7c50867b, 0x7ef8951, 0x8e0d691d, 0xd2a690e5, 0xdacebee6, 0xe45a2590, 0x7c11721f, 0xf1fad3ac, 0xdc3607ac }, { 0x9650bd5, 0x6cf83c31, 0x68a8f0ef, 0x4d77b0f8, 0x8c4cc563, 0x22ab9e61, 0x7c2a2c17, 0x68a914c4, 0x72c15fc, 0x7fac9210, 0x4e6fb296, 0xcda0dc1 }, { 0xdf37b6f6, 0x760835c7, 0xec68d104, 0x3d922f2b, 0xf4057c9b, 0xdad6f3c3, 0xdcdea2c5, 0x5377a346, 0x75e02c66, 0x1be619d1, 0x64d418ec, 0xadaf4fee } }, { { 0x30388953, 0x6a5ef463, 0xa88c13b5, 0x575b31b4, 0x30b317ad, 0xe7dba7d, 0x8b270a2a, 0xcb80972, 0x9d96f093, 0xc5173263, 0x839e391d, 0x9bbea04f }, { 0xab58efa1, 0x6dc489e5, 0x1065eeec, 0x1e6e054b, 0x219a8bca, 0x6126c4b8, 0x2f6f64ad, 0x2aa35ae2, 0xcabf754, 0xea3f063a, 0xf2676d4a, 0x7c97610d }, { 0xb14b6840, 0x7001f951, 0xceb9719a, 0x7600d987, 0x9820ca14, 0x560d9336, 0xfb9eb916, 0x8d1280a3, 0xbcacd9a2, 0xe094269d, 0xe9d2b210, 0x27fe743e } }, { { 0x2c557492, 0xaded2f42, 0x9f0ddae8, 0xd30ade3e, 0x97c31a27, 0x8b012d41, 0x381c1a3f, 0x35496eb, 0x91efc554, 0xde425ff7, 0x85771146, 0x69356ed6 }, { 0x2bf97031, 0x76fbb6b7, 0xcf4fc395, 0x53f29b5e, 0x24a8bc56, 0x504587ed, 0xde3ff35f, 0xc7e82cdc, 0xa5170d3b, 0xd1d9e477, 0xeeeb4aa9, 0x411a536 }, { 0x2ac63cf5, 0x3357d845, 0x8be520b1, 0x8b1e2e88, 0x6625fd4d, 0xef2ae0e8, 0x24f19f43, 0x6b2755cb, 0x6706be8f, 0xf5761f75, 0x68ccef1d, 0xe9a4ba07 } }, { { 0xc25d948f, 0xe81eab2e, 0x5c707e4b, 0xd3c74ea8, 0x8c52c9ca, 0xc0e295f0, 0x78b34bf, 0xf9115ab7, 0x3f1ddbc8, 0x9b5f255, 0xbacc5a20, 0x1c573710 }, { 0x87992884, 0x7ead79bb, 0x86035a18, 0xef76ed75, 0x6f84c6a1, 0x54f22761, 0xa4fade70, 0x4901e107, 0x2a8330df, 0x3ec0b801, 0x115ece8c, 0x46bedbac }, { 0xf45a57c4, 0x28c3297c, 0xf2181294, 0xc1ee0539, 0x625a7162, 0x67d72efe, 0x70a2f9e7, 0xb4282ea3, 0x470454b8, 0x664b504d, 0x87409eb8, 0x7516f110 } }, { { 0xfe0df077, 0xe514a122, 0xb9a3b3ed, 0xfd6d1c07, 0xcb7a98de, 0x5a5aa40a, 0xbe6d1951, 0xef5df82f, 0x2171a293, 0x46a7081f, 0xa98f5b0f, 0x228a8186 }, { 0xa2ad458d, 0x97a741f4, 0xed753cb9, 0xf4895ffe, 0xe47a5b11, 0x2419e2f1, 0xdbb69e0c, 0x9e4caf7, 0xf5ba2f07, 0xf2b07658, 0x2c2680e6, 0xbf0e40fa }, { 0xc0314694, 0x323147de, 0xf97a1503, 0x623b8e91, 0x6672e12a, 0x5b968c4d, 0xb21e2917, 0xab2f03b8, 0xd30314ad, 0x5aa53dbb, 0x6a3577f6, 0xce781688 } }, { { 0xc9bf5c6c, 0x182d470f, 0x8d17cfd5, 0x6df289db, 0x491cd263, 0xde7fe682, 0x1c31fff, 0xe4155d56, 0xd677a7a6, 0x8b4c5a89, 0x96a11b48, 0x92f123a1 }, { 0xd138aaba, 0x1fbe25de, 0xb751ab3f, 0xea12d2a2, 0xeb97d71f, 0x92ee0fa0, 0x3b316128, 0xa0ce5349, 0xf8961f46, 0xad99cc99, 0x48397ca9, 0x35fc818a }, { 0xb608dd8d, 0x1d1e6acc, 0xfca1d03a, 0xc707196, 0x7fa41542, 0x7789ae3f, 0xf48f4034, 0xa095bfe, 0xeec4a6d1, 0x909e7bf8, 0x6a13de01, 0x841ecb36 } }, { { 0x6956abf8, 0xb918dbbd, 0x3a09071a, 0x855ccdd0, 0xe9783ad6, 0x25154fd0, 0x42c37796, 0x172b9b4, 0xe4a5ad00, 0x7edb65f, 0x45abc26b, 0x7285acb }, { 0x6f0fcfe1, 0x7c3bd5ae, 0x6a13a3e2, 0xce7ae082, 0x7bed3673, 0x147fe140, 0x339ea39e, 0x89d9a50c, 0x1cac4f7a, 0x390eadf3, 0xbc81c6be, 0xec129b05 }, { 0x766765c4, 0xa27611c4, 0x120b4869, 0xa70e7224, 0x4dbc57d0, 0x21235941, 0x40f4187c, 0x5bcdc16b, 0x1337497d, 0xd7f8cecc, 0x7569f9df, 0x67c5e43b } } }, { { { 0x526474bd, 0x35c9eb91, 0xb6138d9e, 0xcb4f0b7f, 0xb8c6d39b, 0xbb2a430e, 0x8c10cfd8, 0xb7d1ed1d, 0x5f777130, 0x73b906f5, 0x86e45418, 0x4f920159 }, { 0x8ec79e08, 0x1a7b5e95, 0xc12e5348, 0x52eac993, 0x3bd19c24, 0x52b1ef91, 0xbd9f5b1e, 0x9392eb7f, 0xe5a0345f, 0xa93a32d3, 0x2d036c33, 0x9b539cda }, { 0xd1c2617d, 0xa677c270, 0x949a2de3, 0xa62b944c, 0x329e3af9, 0x27c32e07, 0xbc454140, 0xbdfea9fd, 0x4259dbc6, 0xbb8cf131, 0x52982911, 0x31cef100 } }, { { 0x9824221c, 0x68cfc3b9, 0xad8a5190, 0xc6ce8007, 0x3f12166b, 0xb1b67509, 0xbd762386, 0xde64aa7c, 0x4aa5b98c, 0xcf66d957, 0xee476065, 0x767ea27a }, { 0x31e557d2, 0x9647e869, 0x121fcaa6, 0x3fed52b8, 0x91cb6f74, 0x3be294e2, 0x440b1d86, 0x5e212c16, 0x1a8ddb07, 0xf28dac45, 0x5a3cafc8, 0xa49aa26 }, { 0x886504cf, 0xff87b02b, 0xf3c3e1ce, 0xee6f33bd, 0x9602f951, 0xdbc3d44f, 0x27f4a181, 0x63b34efb, 0xce23bb65, 0x468ac3fe, 0x4e94ab, 0xd9be7944 } }, { { 0x4506c2f6, 0xe47e8d5b, 0x939561a7, 0x71db04d3, 0x2b68c29c, 0xf90afb65, 0x68b3e53d, 0xe8220381, 0x8782615, 0x9d457228, 0xc1e5fcea, 0x68638505 }, { 0xe1a7756c, 0x2323b6b9, 0x2bffe24c, 0x292726df, 0xb3a1149a, 0x827ca846, 0x7f9e71a, 0x97b0438f, 0x1969106a, 0xbcb46d7d, 0x16b96648, 0xb37482ed }, { 0x4b843896, 0x3bfc98c, 0x691262a9, 0xc817da59, 0xafe7e75, 0xad9aeb9, 0xccfdb3f1, 0x791c4e1e, 0xcd15d45d, 0x836d9a94, 0xdff7781d, 0x1a771a2f } }, { { 0xa5646fdf, 0x3e177960, 0xf6e08d3f, 0xf3bbea33, 0xc2477e06, 0x48d42362, 0x5062d400, 0xcc71c320, 0x9b05e0ac, 0x9f0592f, 0x71efca30, 0x5042407 }, { 0xf0652d86, 0x450a1dda, 0xaf563383, 0x882be07a, 0x124937d5, 0x7ac90a4f, 0x8f51d81f, 0x1fe885d5, 0xb293125f, 0x19e693a7, 0xf57204d9, 0x9c651ffa }, { 0x4d23e99f, 0x4bbfa762, 0xf1d97fc3, 0x190995d6, 0x275b64e, 0xe240c625, 0x1ffa95ca, 0x339c0493, 0xe7f0a582, 0x9176bfaa, 0x4e9a124a, 0xf8f41655 } }, { { 0x67a0b998, 0x68b67aa7, 0x55b29149, 0xd912bcd7, 0xcaccb838, 0x30e41664, 0x2ca60fe4, 0xe80e9bdc, 0xb1707d31, 0x434562ad, 0x7791f56c, 0x2effeb54 }, { 0x97be3d7b, 0x63e70c98, 0xb4fd3cac, 0x52a69ab8, 0x63677f60, 0x8adedacb, 0x7fdea18, 0x17db197a, 0x1b170ef6, 0xacf8e902, 0x7f95f419, 0xb0c6be86 }, { 0xcfd4c857, 0x6c8ac31f, 0x1cb57c2f, 0x9fa87286, 0xe93591fc, 0xc022166d, 0x39242686, 0xc4ab82d8, 0x3a9b5d19, 0x1fb8b154, 0x68ad94b4, 0x312cc66a } }, { { 0xca1f5587, 0x760e604c, 0x33fbbd32, 0xb3d553f2, 0x1208d910, 0x993a0be6, 0x6e69d342, 0x3b8f059f, 0x4ff688bf, 0xda064bc6, 0x7d2bd8f4, 0xc9d85d5b }, { 0x5c4658fe, 0x497a30b4, 0xe99134f5, 0x51aac618, 0x1032f927, 0x3cb9bc64, 0x92cca470, 0xe5f291bc, 0xecb3a479, 0x5fad369b, 0xee2f741c, 0xfbbdc35f }, { 0x98e572ed, 0xdcc1f5fc, 0x42deab6f, 0x3513d9a6, 0xbd6799c8, 0x935c0abc, 0xbafff72d, 0x17a2c61b, 0x6d20257a, 0x2da25472, 0xdac694d9, 0x42b03929 } }, { { 0x21acbcb1, 0x2293408, 0x54b3e838, 0x301be38c, 0xc14c5ec4, 0xdd4bb0f1, 0x5a4512b9, 0xe500d107, 0xcac30b6c, 0x24f04675, 0xf9765e14, 0x358dd066 }, { 0x68725102, 0x6ed93b40, 0xa1e799e6, 0xb360def6, 0xf0588223, 0xb780c1a6, 0x28c04f6f, 0x184bf24a, 0x930e3342, 0xc1b94977, 0x7e6650a2, 0x87877893 }, { 0xc1a35fa5, 0xb5a8b18f, 0x1f6e8419, 0x1aa3e821, 0xde3a9ff8, 0xd36c5814, 0xe41999e0, 0xafd187fc, 0x58e786b5, 0xaef0e65d, 0xa1fba18a, 0x53f68aa1 } }, { { 0x9c683b2e, 0x823cc56a, 0xd2fb6b47, 0x88a2eb0b, 0xb97cf0ea, 0xa8d03d0d, 0x313b2e27, 0x2c8cabf6, 0xec5b007a, 0x595767d5, 0x7a74882, 0x67afd1a }, { 0x5a46af57, 0xac0c44fa, 0x3b78725d, 0x66f35a95, 0x3aa5f565, 0x5280cde4, 0x37fc94bc, 0x81dcd7b8, 0x724fdd83, 0x4c7a6ec7, 0x95fc95b0, 0xb0dbf185 }, { 0x75d619b6, 0x8c923834, 0xe10ddaec, 0xc97b8187, 0xcc5e4db5, 0xaba4b1d6, 0x637882bb, 0x31f0d4e6, 0x1307e923, 0x9b046baf, 0xae67fb58, 0x2fd4f5d6 } }, { { 0xdab14430, 0x13eaae6d, 0xb82023bb, 0x9a317709, 0x1c1a2565, 0xbd5ddbd3, 0x206b8a6c, 0x40e4a6f5, 0x330a51f3, 0xd4928eff, 0x97d085f3, 0x6dbf32b3 }, { 0x2862ed57, 0x6ae8c0c4, 0xede7b254, 0xdf2479c, 0x589a7e8e, 0x4674faa0, 0xf89fabcc, 0xe64d5878, 0x233bc6da, 0x1c4c3831, 0xd098e7c1, 0x4687dbf4 }, { 0x14244c27, 0x6fa1839e, 0xd4478d5f, 0xb5ba9a10, 0x9321e39a, 0x4de213bd, 0x959d5440, 0x6d1fe6bf, 0xd26b8a68, 0x28d93470, 0xe1933d6c, 0x9a4f6fe0 } }, { { 0x46d601a0, 0x58daceb5, 0x6728260b, 0x264f878, 0xb5ea2d62, 0x9d4133b8, 0x39f94bc4, 0xbd86767, 0x24718280, 0xb87fcb07, 0x1fe33b60, 0x2ccd39ee }, { 0xa76bfe6e, 0x99629188, 0xda2c543c, 0xc6cdc2cd, 0xedd89f0a, 0x836e6467, 0x6114745a, 0x1d1483b1, 0x4594bd61, 0xcdd8b11f, 0x7401c6d0, 0x3452ba08 }, { 0x9518c762, 0xa68836cf, 0xd275f28f, 0xa7869867, 0xaf3468e0, 0x5184e7da, 0xb2b0d1d0, 0x2882c198, 0x696ef5cf, 0x970a5ab0, 0xee723c7, 0x64d065ea } }, { { 0x5961df5a, 0xf70c06a, 0xe1059061, 0x3aa9889b, 0x4f854955, 0xf9ada40, 0xffe04610, 0xa27425e3, 0x4bf9790c, 0x18aab30f, 0x640d9ccf, 0x66b779c2 }, { 0xa44a93f2, 0x58a8c3ca, 0xd5e0b262, 0xae4d6d86, 0x74af56aa, 0x8a167257, 0x3616de3d, 0xf04abd9a, 0x14130815, 0xec6554af, 0x22f3d84a, 0xc84f4315 }, { 0x7ce167bc, 0x8e55f164, 0x1402e696, 0x2a4d09ae, 0x4aa6fc9d, 0xc7957db, 0x9018f58b, 0x60af42b8, 0x661d1ab5, 0xf19fe1d8, 0x5de6837d, 0xf326ea1 } }, { { 0x23ccb6f3, 0x43f6e0f, 0x985d20ba, 0x7306a4ba, 0x7477e205, 0x7f29c44a, 0xa08aa1be, 0x9780a271, 0x839ca953, 0x4d73d257, 0x49ac429d, 0x4a38a218 }, { 0xe24a9d07, 0xb32484c8, 0x4669b65c, 0xcd5950b9, 0x4c46bf7b, 0x84789b27, 0xbd351e74, 0x8df6803, 0x3118fc54, 0xecd3065e, 0x46cffb2f, 0x93b4797e }, { 0xf7a75d9c, 0x2210b14b, 0xded76dac, 0x8a73d850, 0x8cef4110, 0x811a1dd8, 0xa2a54c52, 0x26cc4476, 0xda3d2b77, 0xa267784d, 0xf2c0b72c, 0x99239110 } }, { { 0xfca1c470, 0x27c50888, 0x34caac5a, 0x9183ab8e, 0x93882c2f, 0xff71573b, 0x451cf8aa, 0x2b272985, 0x6b0da766, 0x5fc9f22f, 0x6c7e27b9, 0x63a78899 }, { 0x19e747a9, 0xd015759e, 0x7f9b9d1a, 0xf4bdf116, 0xb870a443, 0x652e3117, 0x9e20a4b5, 0xd2b38f70, 0x3c1aef7e, 0x8c5843f6, 0x5b16525, 0x4d92e30a }, { 0xa2a2f1ca, 0x366944ed, 0xfad3da5c, 0x2deb908c, 0x74e66231, 0x5ae50f16, 0xb5665d81, 0xe67e1888, 0xbe1b00ec, 0xa937dbdb, 0xfe8632f2, 0xb42b24a0 } }, { { 0xba6d6db3, 0x861ae453, 0x7f2acc61, 0xebb93471, 0x9e01ee86, 0x778a3b0a, 0xf4eaa761, 0x52e1aeef, 0xac293eba, 0x7498b3a9, 0x2fa7be06, 0x1c233491 }, { 0x9a1982fe, 0xcf354abe, 0x687be5be, 0xa290913, 0x2b50e03a, 0xfea3c632, 0x3dee9bd1, 0xd27cc432, 0x6300993b, 0x9d2d3c5d, 0x148848fb, 0x270ebd64 }, { 0xbbc2ea9b, 0xda6f0146, 0xd1ef763f, 0x25a48fbf, 0x644a9385, 0x82c7d23, 0x19f1c0e5, 0x468aeca9, 0x7923618e, 0x1d50ef10, 0x76c85571, 0xe291e42a } }, { { 0x3fdd0821, 0x63835c89, 0x9a6f8d75, 0xe00f81e2, 0xa5199d52, 0xe5eeec9c, 0x2e49c54b, 0x8139e56c, 0x8bfec435, 0x78afd1ea, 0xc48a68ef, 0xff418bc9 }, { 0xbefd963c, 0xb09a0c66, 0x50da92af, 0xa017fa38, 0x4d73aae8, 0x5b226238, 0xaad4e030, 0x7c3eaeca, 0x3762b0d6, 0x1f8ea330, 0x11aeb92a, 0xfc4770f1 }, { 0xdf776f60, 0x44486814, 0xc06f3894, 0x53ca7594, 0xc99a4cf4, 0xa8a7493d, 0x83e195a5, 0x6238d9ab, 0x3b77afe1, 0x16e5b0f9, 0xdaee0e89, 0x831ae918 } } }, { { { 0x560fe46, 0x78a0c7b6, 0xab2071d8, 0x8e65e299, 0xdae25e0e, 0x960dcbf3, 0xd5a65792, 0x14974e0c, 0x759e4131, 0x6db0abb5, 0xe3ca85c4, 0xf81214ca }, { 0xe11397c0, 0x17d4db7e, 0x61c2e28a, 0xfa5c1330, 0xc2dc20ae, 0x317f0df4, 0x5b61e7ec, 0xcb3ba01d, 0x1c4c84c1, 0x7d9f8686, 0xecb499be, 0xb00d6dfa }, { 0x50ed8ab9, 0x690e85eb, 0x90943128, 0x9cc7e937, 0x70030cc8, 0x62fdb59b, 0x7102d142, 0x53f76ece, 0x7597bf1d, 0x49673f2c, 0x72a2b802, 0x9057845d } }, { { 0x4ace12e7, 0x2b8b9462, 0xb01770eb, 0xcd39a436, 0xe7d813e3, 0xc813ea42, 0x5b9fd94b, 0x634535c0, 0x652b530e, 0x9ab90fe8, 0xb7c73eda, 0xc7cf982b }, { 0x41f4ac41, 0xef87c6af, 0x34602a9, 0xcb9794bb, 0x48acd46, 0xece7b200, 0xf7075c58, 0x8e7fd2a8, 0x334f536, 0xa10e737, 0x6bb6810f, 0x9642606d }, { 0xb6e93954, 0x501b2e2c, 0x3c047ec0, 0x4cc1cd9e, 0x71bc0fe, 0xe82014d, 0xb804e444, 0x64c06127, 0x972ea9fc, 0x18c44cbe, 0x8ed471f9, 0x4d421bed } }, { { 0x52b41b93, 0x6b13b474, 0x398074ef, 0x88df4096, 0x4a3f1268, 0xd899bb43, 0x97c9241f, 0x3cbc7f38, 0xb21b1915, 0x6640a191, 0x50a0068f, 0x7ff8f675 }, { 0x32215c05, 0x4792ca88, 0x2eaa8c36, 0xde3f477a, 0x5c57c119, 0xbbf1aaf3, 0xf1a6f7fe, 0xcef8221b, 0x3e05ce46, 0x15ed2652, 0xe604834, 0x536829bc }, { 0x49b7ae01, 0xd4d3cb5b, 0xad75fbfe, 0x4d1ff484, 0x7fb988e, 0xa3d145c5, 0x1f13f343, 0x86dbb911, 0x5ff2d6fc, 0xa5afc4f7, 0x49b436de, 0xb5a3c5a9 } }, { { 0x7b899ada, 0x91e8387d, 0xc4347720, 0xb8ff242d, 0x3fd4e909, 0xcfcac566, 0xbfdc1e1b, 0x746a1ddf, 0x4dd25c43, 0x6487c030, 0x97252049, 0xe0398ac3 }, { 0x5380e6f8, 0x67ef83e, 0xbb9d3f8e, 0x0e4c82, 0xaf464f4e, 0xaec0991b, 0x4348ccdb, 0x50cfeab0, 0x1d043ed7, 0xe001662, 0x1c9f9c2c, 0x8e423cbd }, { 0x7edb584d, 0x22b4487f, 0xd337d855, 0x2451893d, 0xe510c646, 0x1e87f0b8, 0xed5b3e21, 0x9e7142fe, 0xc0d6d95b, 0x9da57cab, 0xafb0097c, 0x9ad92242 } }, { { 0x5d26b0f5, 0x65265730, 0x7ba0730b, 0x8775ba95, 0x1d39d900, 0x9f3bdcb0, 0x65b31063, 0x39d4e2d, 0x84563533, 0x5a3f263b, 0xb5e9b597, 0xf9113331 }, { 0xccfc16db, 0xb4d49792, 0x530873fd, 0xbc289462, 0xeb3d82aa, 0xb3f743b3, 0xa58e9f6f, 0xdef6e24b, 0xa6a98dc3, 0xaef75e44, 0x1aadb024, 0x1be36e00 }, { 0xb8801481, 0x2f4dd03e, 0x7a307afd, 0x5c3852ef, 0x38dd2125, 0xf01600ca, 0xc6196523, 0xe9c81fdd, 0x4cd2010d, 0xeeac08b5, 0x5e9273e6, 0x794e6c42 } }, { { 0x3eacbee2, 0x29339048, 0xd6620830, 0xa5094609, 0x5dcedfae, 0xfa3e5616, 0xa07fd006, 0xe246dc39, 0x6702c762, 0xcc987588, 0xf554c639, 0x9d60ac5a }, { 0xf4dc9953, 0xefca8cc, 0x79be4c75, 0xfaa895ec, 0x51b4e5e9, 0xee6d12ea, 0xa29033ae, 0x816c71eb, 0x8e813395, 0x81e3ac03, 0xcbdddf91, 0x8b32d93d }, { 0x9bef29fe, 0xcf269a4d, 0xb5a964f, 0xddcba0cb, 0xaeed8eea, 0x82790868, 0xa4021f6e, 0x30b4be66, 0xa9ca8aa2, 0xee9161c1, 0x36ba8b24, 0xe5807a0f } }, { { 0x35682519, 0x82d55984, 0x9468dcc7, 0x8ea94bb3, 0xcfa61612, 0x2899a91f, 0x27567415, 0x7dc79d2b, 0x75af4d77, 0x3bf7ad4b, 0x15dde6b1, 0x18485fcc }, { 0x87ebe4e0, 0x3e5c0d4f, 0x1f2c814b, 0x46d4e539, 0x2d77478f, 0x640304e9, 0xbf39a1d9, 0xf0140316, 0x7784c04, 0x301819cb, 0x49c9645e, 0xc01f543b }, { 0xf379e911, 0xf2f8110e, 0x17d17177, 0xf50a98a9, 0xbcf058ec, 0x1479674, 0x9d0f2dd4, 0x55df227b, 0xdfab84f1, 0x5b0d7146, 0x5075eadd, 0x30c874fa } }, { { 0xc76eef4, 0xad672e3c, 0xeba6178f, 0xf76f3bfa, 0x4318bef, 0x8c5ffa6b, 0xf8465ac8, 0xb1633504, 0xf6618cce, 0x8cf1b032, 0x4ebf778e, 0xa99449d4 }, { 0xf0228987, 0xd17f16d2, 0xe3da1974, 0xa22bc040, 0xe1764187, 0x5a25cf71, 0xa2e22356, 0xa8d200c, 0xe10b860d, 0x49c084ac, 0xdccd3f8a, 0x214fe14d }, { 0x7de308ac, 0x4c9dfe4, 0xefa3e1d3, 0x4ea55492, 0x1f665625, 0x901a70bf, 0xf4b11dc4, 0xfac29fbd, 0x3cf829f3, 0x98529b72, 0x60fb96b9, 0xa11c3c22 } }, { { 0x14b01f6e, 0x2c7cd430, 0x17ad5da0, 0x511f39d6, 0xac58caf, 0x960f864e, 0x5a9ee55a, 0x9a18ed88, 0x4ee3911a, 0xff7fc6fa, 0xad0255c3, 0xc03db563 }, { 0x31c8f1de, 0xa199a90a, 0x21a45a92, 0x62059f58, 0xcea2025f, 0x210b03aa, 0xbfa80200, 0xdc376221, 0x42f6e1b7, 0x316aff9c, 0x1f1b34bb, 0x109db841 }, { 0x695bb1f0, 0x4516f3ef, 0x682a6e22, 0xd7f05baa, 0x2c1c81e5, 0x84ed4cd5, 0xb7adb9cd, 0xe1ab3266, 0x6f684039, 0xe00aeeaf, 0x8c9d9ff9, 0xe9fa0eea } }, { { 0x9d998b65, 0xee2c0ede, 0xbe5f94dc, 0x4a7d56a0, 0x32626d0d, 0x24c2fd48, 0x3263f305, 0x529c4642, 0xe621930f, 0xc228ef20, 0x85d0c09d, 0xee223a84 }, { 0x3782cc32, 0x4de79a07, 0xd638d964, 0xc0740556, 0x4aa14aae, 0x9c313db6, 0xf3f5d869, 0x5723f496, 0xe0953322, 0x29ba81a1, 0xea8a83c8, 0x26130df0 }, { 0xb0ea9f7b, 0x91f62294, 0x7b3bf9c9, 0xecfe2cc5, 0xea56f800, 0xaf575fae, 0xe2cbbc89, 0x6ee369d9, 0xe4ef5a83, 0x54535e59, 0x38358f72, 0xce3bc2b1 } }, { { 0x4cff1560, 0xcce55673, 0x9e728805, 0xbea9fe5c, 0x5c62efd7, 0x8b95a46b, 0x7015d56c, 0xc93b6e37, 0x760302fa, 0xc78d5e94, 0x822ac669, 0x16ddc2c3 }, { 0x4702e5bb, 0x65d18035, 0x3b906f17, 0x36cac8c0, 0x3f27fbf9, 0xce781644, 0x2aad3128, 0x75246770, 0x785f8cbe, 0xfb544f2a, 0x2a28055f, 0x37a33da4 }, { 0xf98d5b06, 0xc9e00460, 0x84f74728, 0x841d7175, 0xf6ee2392, 0x36963aa4, 0x5828393, 0x3437ad6a, 0xb991e90d, 0xf6671566, 0x7d09d4ea, 0xfb68c52c } }, { { 0x723e4d7f, 0x353f3a12, 0x3fb81345, 0x41e6146f, 0xe3332866, 0x46b61494, 0x8f7f4925, 0xe5c79664, 0xa310f0d8, 0x768253e6, 0x801e9522, 0x999eefa6 }, { 0x2ac3e668, 0xe8ecc299, 0x884ecc38, 0x3e88b91, 0x14e732dd, 0x84669983, 0x3843954b, 0x59607565, 0xf3637a4, 0xd998a100, 0x35645c21, 0xe02fac1f }, { 0xcfad9ca0, 0xaf6ce99, 0x7409146a, 0x1bc0d8f5, 0xf5d8c327, 0x91699539, 0xd3e1258f, 0xb3ec379a, 0xf09c2540, 0xf074b8fd, 0x5bbc072c, 0x5d108db1 } }, { { 0xc708bd50, 0x9afbab9f, 0x7ecad2d9, 0x974d26c9, 0x1ab9a7f0, 0x154b75a7, 0xa07521df, 0x856799c3, 0xb83db890, 0xf8daeb01, 0xd0a6bbbf, 0xd4eeb03f }, { 0x71d99a7b, 0xbcb65815, 0xa0d23a00, 0xb0370183, 0x6bf3587, 0xf7c5b85f, 0x50a98eef, 0xb28ca134, 0x727333d1, 0xeacba2a6, 0x99595cd4, 0x7d790448 }, { 0x7d58d24b, 0xf1248b21, 0xc959652a, 0x56c9b504, 0x8a1d3802, 0x50a5e8ea, 0xafafff4c, 0x837dfe35, 0xefd6fcfb, 0x4776cd50, 0x96aea3d9, 0x759c239c } }, { { 0x22c4bf60, 0xe796d192, 0x4de46c3c, 0xa0c5d918, 0x230518aa, 0x90b6b8d6, 0x84383ae6, 0x171f44d, 0xe7c5a5fa, 0xdb20346c, 0x9aa83d9e, 0x11fab915 }, { 0x2d41013e, 0xe853cd74, 0xa08061a4, 0x110d07d2, 0x3e98995, 0xec79d57, 0xcb6d9a9d, 0x752f61f, 0x430cda74, 0xe2dfe4dc, 0x7889bc4, 0x31934aa1 }, { 0x68d5134a, 0x443b02f4, 0xdf675e16, 0xaa664cc5, 0x8f2d127f, 0xbb4701d3, 0xf4153715, 0x52e2b672, 0x6d4c77ff, 0x552d5769, 0x82ce50d1, 0xa02b5296 } }, { { 0xd0d9e931, 0x775172a4, 0xd28ecb3f, 0x7128414, 0x9244c2d4, 0x9997997c, 0xcabed73, 0x894757ab, 0xbcc06939, 0xaa586647, 0x7ce0131d, 0x9f7781b8 }, { 0x3be6068d, 0xa9cfbf79, 0x3d275342, 0x320789fc, 0xda4f154b, 0xb7b68cfd, 0x89649ee, 0xbca39e60, 0x83a285ea, 0xfc4f6a7a, 0x33814154, 0xe640e319 }, { 0x93bfc050, 0x93d0e17f, 0xcdad98ea, 0x32a8e63, 0xfa8748d1, 0x104c2e54, 0x3cc31245, 0x5f31d082, 0xf84d60e7, 0x3447a5eb, 0x5456fff3, 0xfc059f33 } } }, { { { 0x6730ec45, 0xaaabfe49, 0x2ff76132, 0x239b7b3c, 0xea300282, 0x38314816, 0x42a68cb2, 0xab40cb76, 0x2045482a, 0x96f7f7be, 0x58d4b25e, 0xa5ca15cf }, { 0xcb67ed18, 0x1a70faaa, 0x29ee48c1, 0x38a5f3cb, 0x698c93bc, 0xc58b9fa4, 0xd2687898, 0x9b59f0f0, 0xc98a218b, 0xa8302055, 0x94de9db7, 0x89fc944f }, { 0xf1f2becd, 0xab283c8, 0x3fec54f2, 0x51a68405, 0x7940177, 0xb2847346, 0x41523149, 0xbf163f3b, 0x181088a2, 0x49c144ec, 0xbb43e0c9, 0x8a2e701a } }, { { 0x46d5d641, 0x9a6db98, 0xcf7d9da9, 0x32d27671, 0x2d97cf42, 0x9d20b3d5, 0x6cd3631c, 0x355427af, 0x68fce560, 0xb9585023, 0xc84d41f2, 0x8d62deb7 }, { 0x4efb113a, 0x3ee07846, 0x7bf6704f, 0xd189ad45, 0xa48805d9, 0xae2f6552, 0x6a7a8e6, 0x5d60bce1, 0x1cfa30b2, 0xe49576c8, 0x80ac2ffc, 0x216bc5e7 }, { 0x3ea14742, 0x548fd906, 0xbec777ad, 0xadda4230, 0x421716d4, 0x8a3dc000, 0xc68070c1, 0xf1249983, 0xb48c985b, 0x732fe8f2, 0x50742275, 0x3522d433 } }, { { 0x8f30be42, 0xd72aea10, 0xe1f01e72, 0x83de636f, 0xf0c66abd, 0xbc9c2971, 0x39e52083, 0x2b1d4755, 0xee569519, 0x73eb9504, 0x8059af6a, 0xe76c74f2 }, { 0x55276d73, 0xc0966423, 0x6c051680, 0x7deaf8a5, 0x1ac1979d, 0x176c53fb, 0x27d823b5, 0xa08236fe, 0xd9272e, 0xc6d70ffb, 0xfdeb7ef, 0x57e81918 }, { 0xcf74b421, 0x1776c696, 0x617520ab, 0x9234fee5, 0x8c0913e1, 0x9db6eca, 0x2769bfe6, 0xddf0c06d, 0xd22821e8, 0xb4cc118a, 0xc15a32aa, 0x6008e2af } }, { { 0x79eb0375, 0x68c24505, 0xbe503e1f, 0xc8910477, 0x75a38590, 0x271d8737, 0xfd9d92f, 0xd99322d6, 0x24f05ffa, 0xfd8e216a, 0x87100a09, 0xb379d47a }, { 0xb5fc6ace, 0x895d510c, 0x7f98dfef, 0x203425b, 0xf917d452, 0x920d49f8, 0x826e553e, 0xd742ae9e, 0xdae3c55f, 0xafa9dabe, 0x8c1c1ce1, 0xdde2627f }, { 0x8e2c1251, 0x9d4ab113, 0xc5caeea4, 0x1be3d8c3, 0xe7748b73, 0xbb6ef986, 0x39ddf072, 0x1512432d, 0x3243b7ba, 0x18f48c93, 0x92427789, 0x1531a5e1 } }, { { 0x6a22c083, 0x504855da, 0x8dda6dde, 0xf6dfdc0e, 0x53db9e0f, 0x235c368b, 0xe1400b7a, 0xf78f70ef, 0xdd2e7a62, 0xc50a4403, 0xb3d78532, 0x587000d }, { 0x7ff1baa0, 0xca800b01, 0x6b5b649f, 0x67b74622, 0xe2b9c85d, 0xf1bfcbe5, 0xeeeb0a80, 0xf1e572f1, 0xe282df75, 0xb61a620c, 0x7c17e356, 0x81e7d696 }, { 0x9205a026, 0x302dcd, 0x2e90eb32, 0xe5e1b3ed, 0x64fdb236, 0x27434788, 0xa4fa6f87, 0x8c4020b8, 0xec959f7, 0x113bc6a, 0xbb70f150, 0x6f4394bc } }, { { 0xf57cc05f, 0x62676141, 0x31e789d, 0x6636d89e, 0x678ab0ab, 0x650624cc, 0x3e3e220e, 0xfdc39ae3, 0x6e6caf2d, 0xb97513b6, 0xa0daf9c9, 0x5f7157e5 }, { 0x530adf0d, 0x665b573e, 0x53cdd5b5, 0x2bf83db9, 0x9993ed47, 0xaeaf1efa, 0xbd18ecc6, 0x7bcb8aef, 0x9b29489f, 0xbcbc2a6e, 0xbb3e8a90, 0xafb2f1f3 }, { 0xfd353b40, 0xa3d58f44, 0x99123e0a, 0x7c60d1f3, 0x9fc7ae76, 0x33b84dd6, 0x7d815bac, 0x3f12f0, 0x1560b7d7, 0xa8c1bbf2, 0x3aa9ee96, 0x5becc27b } }, { { 0x5bfaf52e, 0x7f59956b, 0xc9e3398a, 0xbb68fa44, 0x7d4c15f2, 0x5a83e1c9, 0xcfa454ef, 0x4b8b22bc, 0xfb9079dd, 0xfd1b73ee, 0x52b9c225, 0x916a85bf }, { 0x25f6ae9f, 0xa6c15d79, 0xcb6f033c, 0xdf5feddb, 0xfa7ef6bb, 0xb376ab0e, 0x41a04cfc, 0x304ab37c, 0x8dfd8c72, 0xb2dfd4f9, 0x9118494e, 0x623270b6 }, { 0x7dd04907, 0x90003905, 0x185266a3, 0x83859800, 0x2575a7c0, 0xaa5da8f8, 0x4fd304d1, 0x62ba1213, 0x21ed18a4, 0x6d6e383d, 0xe5517f0a, 0x356579e4 } }, { { 0x293b234d, 0xeb12e976, 0xd5d4e4fa, 0xcb4192, 0xd0e0682a, 0xf4eff730, 0x60fec2b8, 0x343d64fd, 0x7a153c64, 0xa7cf8699, 0x78c45add, 0xd5303b21 }, { 0xb1390df9, 0x2ee81ef8, 0x28f24ef1, 0x4f846bc, 0x1d02dbdf, 0x6ad90479, 0xbe4e2102, 0xc90b2704, 0x1ee5850e, 0xa1269e, 0x75d360b1, 0xf2412cba }, { 0xaeb60748, 0xb41dd10b, 0x1c90d1c3, 0x7a6bd77a, 0x48600157, 0x777f0984, 0x704bd9c2, 0xa60511de, 0x23913546, 0x3b629667, 0x1ea22996, 0x973fbed9 } }, { { 0x1965ec3b, 0x427152f6, 0x2463d76, 0xfb2b0f9e, 0x5601d61e, 0xd8ab01c4, 0x686bbf07, 0x17b96cef, 0xf4db93d3, 0x77cbee45, 0x876e232f, 0x34fd3094 }, { 0x224d1b90, 0xb626e13a, 0x6087a93c, 0x98f252c1, 0xfa834b2e, 0xe53a3db1, 0x296d5957, 0xda7566d4, 0xdc524174, 0x60c3f396, 0xe4701de4, 0x7ac30559 }, { 0x6a26e7c4, 0xa05f259e, 0x99106487, 0xb01a01d, 0xfd831666, 0x2f7a15a7, 0x800dfadb, 0xe5256f65, 0xad69b78, 0xa708c7f7, 0xcc9d99a9, 0x7d1875af } }, { { 0x968652b9, 0x14dd5688, 0xc5f88d19, 0x3ebd7b09, 0x2527d9b0, 0xab44bbd6, 0xae375292, 0xb0e537c7, 0x88524317, 0x3d1ea7a9, 0xfd0dbc3b, 0xbd41864e }, { 0xd105e7c6, 0x94d8dc1d, 0x67db51e3, 0x9ab623a9, 0xf0f073c9, 0x4a88be06, 0x11712141, 0x5ec7b2de, 0xf73c50a2, 0xf57439bb, 0x13b4cee3, 0x4a3ed3ef }, { 0x467ffc2b, 0x494852d, 0x75c606cd, 0x86b7dedf, 0xb2f8f27, 0xa7dc225b, 0x1a4a8797, 0xc2fcfa44, 0x6bd5b13, 0x4a1d68f8, 0x787364f7, 0x712dac87 } }, { { 0xc6d9fdf3, 0x94bcb09, 0x7a07d566, 0xa6d8e43e, 0x44732754, 0x9051cd63, 0xe0940601, 0x5c568e99, 0xe9aa22d7, 0xd8d1f841, 0x54f0b5a2, 0x9cc1745 }, { 0x94c3dc82, 0x946d69cb, 0x1b4a94b8, 0x5f4f47ec, 0xfcdb2bf1, 0x9e879461, 0xfbb89789, 0xe15cddb7, 0xbc86d570, 0xa3aa9fdc, 0x67551bdf, 0x4728962f }, { 0x12e41ac0, 0x65c3438a, 0x9ab1b879, 0xd240307c, 0x4987ce74, 0xaa96a78b, 0x7820b058, 0x82af5464, 0xec6756fc, 0x3c59d05c, 0xe1210d1d, 0x8d43b958 } }, { { 0x8c8cc8de, 0xf2e783c3, 0x53e0de4b, 0x40155f60, 0xf61a8cc0, 0x1cfcbb2a, 0xbed4caca, 0x4d4b7dea, 0x36b63768, 0xd88dea38, 0x50dd910b, 0x29590be4 }, { 0x6b8f491c, 0x3571ae28, 0x60a93a2, 0x962adac7, 0x5abf513a, 0xd77baa92, 0x1cf25e30, 0x677ced80, 0xcfad8508, 0xa0a1fcad, 0x8eec8738, 0x83d4caed }, { 0xf6adcfd4, 0x3aebac5b, 0x91298e31, 0x39446ae, 0x106cbab0, 0xf55cd531, 0xb0d2d415, 0xd60f7d07, 0x5d3db1af, 0x5dae63f3, 0x1b493704, 0xdbba13df } }, { { 0xf545ca56, 0x3ad39772, 0x435ae649, 0x5458d292, 0xb9ec27b1, 0xba17d94a, 0xa7825f42, 0x21b5fa9b, 0x4ea5c32c, 0xd157e604, 0x78ae67cf, 0x5984ba27 }, { 0x52d862c1, 0x25f38a4d, 0xf678f9d0, 0xab090784, 0x21b2f55, 0xc641e44b, 0x52a6d2d2, 0x2c4a67aa, 0xb728cc6d, 0xe2bcaf1d, 0xdf9cf00f, 0xa7c995bb }, { 0xe5e9ac2, 0xab29e698, 0x936f2817, 0x149ff1ab, 0xc1e73f78, 0xa2deb595, 0x8a94ef3, 0xcc96af04, 0xb08dfecf, 0x147aefef, 0x4cfdd7ec, 0xb3fe5431 } }, { { 0xb826e4d6, 0x8b08a863, 0x3a8cec38, 0xc76aaafd, 0xbb66fd69, 0xa87b8222, 0x35a2be3a, 0xa806b88, 0xe68b8a4a, 0x9a604366, 0x89f7436, 0xe5a443f }, { 0xa01a4282, 0xcb1b41b7, 0xfaca3649, 0xa99a2394, 0xbe2b7e60, 0xd4468642, 0xe26fb924, 0xcacae2e6, 0x5d919126, 0x8bd928d3, 0x39620e18, 0x542a56d2 }, { 0x80422c5d, 0x4e915ede, 0x82161530, 0xa5022ffa, 0x67428bb7, 0xcd9f832, 0xe7025e84, 0xe5e8b109, 0xcd142cdd, 0x39c95eb2, 0x77b600f1, 0xa773d237 } }, { { 0x5f0c7b5d, 0x7ae1b7ce, 0x9cb1872c, 0x232c416f, 0x248e1c38, 0x7e3fdc3a, 0xcea2a074, 0x52f8f616, 0xd3558c6, 0xbc8ef0c5, 0xb771b079, 0xe67439cb }, { 0xff871f88, 0x7f1a3a6b, 0x1c9ff0f4, 0xa7e6bbc3, 0xe3f5e94a, 0xa5f51574, 0xc8feaabd, 0xc0824d88, 0xb48dace9, 0x9c39c17e, 0x2f8d98f5, 0x3190e641 }, { 0xd2905a1f, 0xe76fbb98, 0x171b97e3, 0x22271baf, 0x23bdffc6, 0x22ace6a4, 0x973defe6, 0x6e1c4ee1, 0x81b22410, 0xc3bf3b69, 0x8c1745cd, 0xb2e82326 } } }, { { { 0x19f26d59, 0x8c56d33d, 0xbf9cc600, 0x2398a70, 0x7b1c6b72, 0x47457c99, 0x2351ada1, 0xeebfdeee, 0xcfd8fb83, 0xf312afb6, 0xca01d875, 0x7b09575b }, { 0xd18ce9f2, 0xa08ba8e7, 0x217552cb, 0xb1f8c2f3, 0xc0b45aad, 0x35a332a9, 0x2d007d1d, 0xf4b9394e, 0x87413be7, 0xdb45bfe6, 0xf3f864e6, 0xe1580ae5 }, { 0x8ef7503d, 0x8b03d0ee, 0x7aa300f8, 0xbce36fa4, 0x9b417012, 0x7a86cf7d, 0x21247690, 0x3435ec0a, 0x1a3234e5, 0x80f1d62f, 0x85d10df5, 0xcf16e734 } }, { { 0xcfbc1d10, 0xfc330872, 0xfc5aa3ef, 0x284ecb9e, 0xe0baa15f, 0x7c2fc674, 0xd284b2a5, 0xef2dfce4, 0xfba46f36, 0x216867bf, 0x27f631a, 0x81af1863 }, { 0x6e69b1d0, 0x154d920d, 0x40da3fb1, 0x6f6098c5, 0x5faaa72b, 0x43daccd7, 0x32ba1b5d, 0x169adce2, 0x525b3cb4, 0x8fd5e777, 0x160b1d4d, 0x3931a6f1 }, { 0x25fac947, 0xc3f151ae, 0x3de1f7cd, 0x60c26f2a, 0x41a952bd, 0xc9f54876, 0xc388c2d5, 0x3829539a, 0x353b5cf, 0x6dc4a51, 0xc4186f74, 0xba3d7b62 } }, { { 0x613a2b15, 0x98f37d9b, 0x5d9d0a13, 0x935edd09, 0xf53af90a, 0xe2044469, 0xa3059ed8, 0x833fa06f, 0x777403ca, 0x1bebd4aa, 0x2cb19446, 0x9dcefcbe }, { 0x6fb50cf9, 0x9afc1c2f, 0xa0c7024a, 0x992d8eb2, 0xf3b8e058, 0xbec1267c, 0xaed17567, 0x2c5fe4ad, 0x379b4a32, 0x997149b9, 0xb02d25db, 0x4412983a }, { 0xa914d98a, 0x8458967a, 0x5ad2a6c7, 0xe404a587, 0x41019354, 0x369385cd, 0xd8d3814b, 0x9b9a6b2a, 0x69caf73b, 0x377dbe0c, 0xe6c1d64b, 0x4ffe4835 } }, { { 0xa418be6b, 0x587f93ab, 0xf8c8b0f6, 0xe8a49169, 0xbceb3c1b, 0x5e8b84ab, 0xdd768e48, 0x46faafa3, 0x3dcf4b43, 0xb28f7ee, 0x516a5199, 0x9d67aaa6 }, { 0xa1cfd925, 0xe1b39c7d, 0x75a771b1, 0x34cbb310, 0x904b8d43, 0x530a7177, 0x5c8cf862, 0x21498b8, 0x519235db, 0x2f734893, 0x8793afdd, 0xd3a57815 }, { 0x202837c1, 0x841076ee, 0xea410d2e, 0x4687bff1, 0xe02fe9a5, 0x327fa6c7, 0x888fd25, 0xc833548f, 0x19cc3773, 0x43382a53, 0xba111a7c, 0xd5b10a1f } }, { { 0xb2892658, 0x48737fbe, 0x13f26b8f, 0x8367361b, 0x186490f2, 0x44ab7ff9, 0x8c14500c, 0xccd588f0, 0x17c8e20e, 0x1e1b7ae1, 0xa42bb8b2, 0x5b2eed0e }, { 0xe91c4cb4, 0xf3d81d06, 0x44217357, 0x2436ecfc, 0xfb9ffc1f, 0xf76222bf, 0x34770f66, 0x1b1d334b, 0x817ce84f, 0x1f050c0d, 0x7f4c56a9, 0xb25388f8 }, { 0xfe0ebe5e, 0xf632732d, 0xd9b9f03f, 0x192a469e, 0x47c9ee6b, 0xd5be5f79, 0x9b9e82e3, 0x56491647, 0x9ef1a2be, 0x149d5b68, 0x841b0e75, 0x3bec427a } }, { { 0x350f8323, 0x90c2b7a5, 0x2a54f4f2, 0x61ab3bd9, 0x7061e740, 0xf7581867, 0x5837441b, 0x39ee0fcb, 0x7c388a84, 0xc7322213, 0xb9ad4471, 0x2c251752 }, { 0x8612c44a, 0x74bbe732, 0x1de6f4bb, 0x8b0532e3, 0x225fe043, 0xd19de1b5, 0x699e0f3b, 0x1c12b4e9, 0x16f138ac, 0x5499f3a3, 0xec61ba72, 0x99053ce3 }, { 0x7f92b4fc, 0x14453321, 0xd378b8bd, 0x5c44de10, 0x2841e591, 0xc38acfc6, 0x135b80e5, 0xc0a2b101, 0x37999218, 0xc6000770, 0x33a1414c, 0xbe7d0346 } }, { { 0x71f42aa4, 0x5f5ffbc8, 0xd3d7ce21, 0x78c76963, 0x8fd3561e, 0x1ec1aa82, 0x54c26e93, 0x563ab787, 0xcdde0571, 0x3288e4bf, 0x8e4ce134, 0xca053ce2 }, { 0x6df33248, 0x64ae9ef3, 0xcb13899a, 0xacdaca3a, 0x59cc4555, 0x81b5023c, 0x9cb7151, 0x92b89f3c, 0xdd7dd50d, 0xbcb22bf8, 0xa1c17abf, 0x9caf9fb0 }, { 0x74a7868d, 0xbea6bfbd, 0xe9f00956, 0xbc893ec1, 0x366a4e57, 0x1f259bd1, 0x22ebd0a7, 0x2a6239ef, 0x436adedb, 0xa778932d, 0x45cbf882, 0x8eb2e769 } }, { { 0x2caa5dc3, 0xdf22c6d9, 0x4f65f905, 0x4df7ade9, 0x648921d9, 0x9f6d9c46, 0xa0321eff, 0x1fd74d7e, 0x437cbff6, 0xab6e9c29, 0xa69cdecd, 0x2f52d2a7 }, { 0x53856cc8, 0xd0dd4ace, 0xc4b1daff, 0xd8b9f221, 0xbb50c0e8, 0x1b89e8b7, 0x12666544, 0x4a14a2f6, 0xf18c8542, 0x1e677770, 0x6a6c319d, 0xfa340223 }, { 0x3a9fec20, 0xbb940842, 0xdc1a223c, 0x88001ec5, 0xda420ed6, 0xc769a486, 0x2f80d970, 0xe84c18ab, 0xad86651f, 0x8ac8bb9f, 0x703ae135, 0x6c8eba00 } }, { { 0x4424e1b2, 0xdb42fa27, 0xfef9bc2c, 0x699d66ac, 0x23af74ab, 0xbb345eaf, 0x41ff657d, 0x764a6e68, 0x735d27d, 0x5145efe4, 0x3a533191, 0x3b931142 }, { 0x2f2e54b9, 0x3e4c4fb, 0x3c0eed9f, 0x55198508, 0xde8175e1, 0xbd0eef23, 0x50b919d1, 0xaba45e18, 0xb2cde771, 0x3ca1992, 0x953c0cb2, 0x86268ad3 }, { 0xaa0ebd13, 0xd9ee8f18, 0xa5b3f25a, 0x7bab8f46, 0x845173bd, 0xb94e2a0b, 0x90ba32cb, 0x64de8f5, 0x2830eb12, 0x39f916d9, 0xf888c04a, 0x77ab9dca } }, { { 0x69e79ec, 0x320ae254, 0x13b7bd3f, 0xff54adeb, 0x5d73cb69, 0x6335352a, 0x23924a51, 0x23bc237f, 0xe7b49e7f, 0x79a87aa, 0x3dc75b0e, 0xa2768383 }, { 0x28356a96, 0x40198001, 0xf7eefd84, 0xcf3e3c07, 0xf0b3a3fd, 0x661b53d6, 0xa6705dd6, 0xf84f5b57, 0x26b9b2c9, 0x3bdca249, 0xa70c9692, 0x2c58f7d6 }, { 0xfd4d787a, 0x39104442, 0x35001add, 0xf52efcb, 0xd51d3405, 0xba13fe98, 0x3584baf7, 0x628706bd, 0x7685e7de, 0x4da29db7, 0xe9686961, 0x49554681 } }, { { 0x72b06354, 0xc9fad453, 0xb2450a7c, 0x71530fb5, 0x498eea16, 0xb4706519, 0xeedec985, 0x438bad47, 0x7ae5de56, 0xb1f2dbd5, 0x2b379b27, 0x284404e3 }, { 0xd7a43c16, 0xddb78956, 0x23970ca7, 0xff55086a, 0x17afe055, 0xccb4319e, 0x9953c100, 0xb4447dbb, 0xc50250e1, 0xa0c4fc98, 0x847a12cb, 0x40b7f071 }, { 0x7e6ef9eb, 0xecea73a9, 0x822c7a7f, 0x7c9a8dc1, 0x17b8a674, 0xa0efdb8, 0x439c6e79, 0xde8eea7f, 0xf5c44fe1, 0x72ade74e, 0x9b3d5bbb, 0xe193e06a } }, { { 0x49dd58ad, 0x674230e1, 0x83d2f365, 0xea95de7c, 0xac20bd77, 0x4aa5af6c, 0x983e808, 0x84fed807, 0x2e534be4, 0x4437fdd2, 0x443cdbb7, 0x9ca1180b }, { 0x6fb28657, 0x1787d143, 0xe03adbdb, 0xddbd674a, 0xb5d66d4, 0x3a7bdb1, 0xdb0f2c2c, 0x47c9043d, 0x5567aa6f, 0x95ea5470, 0x74e3d339, 0xa0d8e3dc }, { 0xcdcc27bb, 0xd4f17622, 0x7990b4ee, 0x47cdc7a6, 0x9dc1d7dc, 0x6273defd, 0xd2c9e2d, 0xd4eeb474, 0x43d97f5e, 0xab10820a, 0x9594e79f, 0xbfe0a305 } }, { { 0xd70dc22b, 0xd26a8e0b, 0x668986a3, 0xc6d4f43a, 0x7a05e74a, 0xae279052, 0x764d82dd, 0x3d7e9ad8, 0x73558baf, 0xbff80b4a, 0x9edf728c, 0x6267d0a6 }, { 0x175c4ac, 0xca7f7ef, 0xcb11fb4f, 0xcd79f8bd, 0x35c29577, 0x1b55c8a5, 0x1ab2bf52, 0x68352e3b, 0x6b7acb19, 0xc4d6cd53, 0x84d4ee25, 0xf4c52377 }, { 0x9d2818bf, 0x6bee1f6e, 0x1efedbe5, 0xfc8e1f86, 0x1ced28e5, 0xed81f146, 0xe9102557, 0x1983e945, 0x5c82e83b, 0x75360ab1, 0x4b6f9386, 0xa53f3ec6 } }, { { 0x395ea104, 0x60b7ccfa, 0x9cefa4db, 0xaba0bc60, 0xfa189eea, 0x6516f79f, 0x4e3c919a, 0x48abf2d5, 0xebb56670, 0xaee7dcb3, 0x11af28de, 0x4a639327 }, { 0x3f35f3a2, 0x8ce67744, 0x487a35db, 0x837d7c3f, 0x2995c363, 0xb32377b0, 0xeed5ccf4, 0xaf03d053, 0xed012d65, 0xf636a7a6, 0xcc7260ed, 0xd1707683 }, { 0x8167531c, 0xc8a980e9, 0x559adca6, 0xe95f45f7, 0x17c05a81, 0x2a49f9ae, 0xad3918e1, 0xbf64d94e, 0x9f61b190, 0x4bd2da85, 0x6bdf0fc8, 0x2d66f65c } }, { { 0x5445bbea, 0x72f6d9d3, 0xd5284232, 0x55b2e07e, 0xbc879a54, 0x1534b9b0, 0x1800f393, 0xbfe3a7e5, 0xbb5f1c21, 0x44ac698e, 0xa8179b35, 0xc8c3170d }, { 0x73bc1cbd, 0x52ee3167, 0x85ebb942, 0xaeb3217f, 0x6ed4107, 0xbeb67fb2, 0x8fb43b1e, 0x162867ad, 0x9586a94e, 0xc2ba6de5, 0x90ed9880, 0x5dbea46 }, { 0x2be048da, 0xd35699ff, 0x28c8c57, 0xf1052e17, 0xeec22255, 0x88adea13, 0x2edf70af, 0x712f94c4, 0x618e2b37, 0x53b07898, 0x7d0ba21a, 0x9261e3e0 } } }, { { { 0x821d2700, 0xb3ffc5fe, 0x5ee4c8ed, 0x633a914b, 0x7ac5eacb, 0xf16f95f7, 0x7b720086, 0x7cf36864, 0x8c782dfd, 0x8b9d24d3, 0xf21fefb, 0x51c81447 }, { 0xd2df268d, 0x94d378f0, 0x6d11af07, 0x6d71ff38, 0xa5823227, 0xf3832a2c, 0xf2dc24cb, 0xbe1f98c4, 0x4c34cc69, 0xfb276f0b, 0x70326f1f, 0xfe18385d }, { 0x6e866efb, 0x9b6735a8, 0x106f2aea, 0xae987023, 0x4bd2c77, 0x28025956, 0x41fd77f3, 0x85cb8879, 0xbda7bc5d, 0x1f02d22e, 0xd20e6954, 0xa37c25e } }, { { 0xc9da6668, 0x7444375b, 0x7e0454ea, 0x61125308, 0x8ebea41c, 0x96b0fac6, 0xf9acdd27, 0x3ea21f96, 0x5e94ba8a, 0xe79ed657, 0xc80073f2, 0xd5488f14 }, { 0xbe77839e, 0xa130e630, 0x58d86751, 0xfff5dfb3, 0xb820eafd, 0x98ecc703, 0x2174788a, 0x352b8a71, 0x9d5c0a5a, 0xcff52374, 0x339c8150, 0xb4d805c }, { 0xdfb0edd, 0x4171a419, 0xfc0ed58d, 0x104d3361, 0xf17a2155, 0x7de4c97e, 0xf33bb7d0, 0xdd089992, 0x51309b44, 0x9e088a45, 0x5b2231d3, 0x107a73b4 } }, { { 0x768150d2, 0x65399f96, 0xebafbc21, 0x61c5b84a, 0x70404d5e, 0x4605a6d, 0xc53f61d3, 0x4ab989c2, 0xc3afa07f, 0x2121276b, 0x3379d031, 0x77765b90 }, { 0x5fcfc8f, 0x90a0eb14, 0xbf21fe43, 0xe9919da7, 0x93e817b7, 0x87f488e5, 0x1534075b, 0xe15a5574, 0x716206f9, 0x70b3614b, 0xb1a38d3f, 0xfd41d048 }, { 0x71a2ff03, 0xee7a6576, 0x9374682c, 0x8d8167cd, 0x6fd2fcb5, 0xe60ece5b, 0xceca9dfa, 0x6b6f7d6c, 0x37b98c45, 0xd978e055, 0x67e441c, 0xa1273489 } }, { { 0xc43b1515, 0xc731aaba, 0x905c3982, 0x69ecdeb1, 0x577214da, 0xb73dec93, 0x13f08b23, 0xc7b6441e, 0x7666ab7d, 0xb3072c9b, 0xf0c3cb54, 0x29bb5475 }, { 0x3a9fcef3, 0x8a00520, 0xd082be1f, 0x7681f781, 0xd9f51aee, 0x95cda6d1, 0x6c5675e5, 0xeb76e496, 0x96b0558f, 0x4e0b3827, 0x736832de, 0x3f1cefd4 }, { 0x3088bf8, 0x91871e39, 0x6f151d22, 0x88dd7a8a, 0xbe373221, 0x45d7e21a, 0xd7a8b45d, 0x72467540, 0x65801159, 0x6240e8bf, 0xe7e51a6, 0x18d79f47 } }, { { 0x2c862950, 0xdb9026e3, 0xfa1244dd, 0x7b0f1acf, 0x5f5e3ec0, 0x230c7bae, 0x26b837ff, 0xe51f28f1, 0x32bbeabc, 0xd0efdb88, 0x35f6ac88, 0xf1358e9a }, { 0x5b117eda, 0x995bbd01, 0x5a616661, 0xcf75e339, 0x40a71fbd, 0xa519dcf9, 0x4c903b10, 0xf22535c, 0xba10a28e, 0xb5be94b5, 0x4b51847c, 0x69e6d678 }, { 0xfb49f8d3, 0x5f2e8f53, 0xdb667de5, 0x593d96e7, 0x3dfc15d, 0x7db6c3e7, 0xf4783201, 0x83a2663e, 0x1b22b5fe, 0x95e822e6, 0xfe9fb717, 0x20cf731c } }, { { 0xd4c069fc, 0xf26ea3a4, 0x58ceead9, 0x8e5845c9, 0xf70f5cee, 0x5c514aef, 0x542371aa, 0x9437bfc5, 0xad656a8e, 0x965f54cc, 0xc47a32b9, 0xe75223e7 }, { 0xc079b671, 0x234cf671, 0x73e761fc, 0xf6f1514c, 0xc64d8a8c, 0x32c653f7, 0x205a2161, 0x86110adc, 0x3c680471, 0xbbff3a0d, 0x775211e2, 0x53222e4c }, { 0x7cefab78, 0x1e770f95, 0xab9f5e60, 0x67be79cd, 0x407c36d6, 0xfc8f0a60, 0x368b3648, 0xab03cfc2, 0xe8f9f25d, 0xe0ab73d0, 0x6e2e0bfd, 0x3af63936 } }, { { 0xade8e72, 0x7dab885c, 0xe4277ef6, 0xcd7620e9, 0x11edbfba, 0x42b0dc11, 0xaed1093b, 0x506f8e1c, 0x20e7f297, 0xca2df6e3, 0xa75b761b, 0xb7e7cbd0 }, { 0x9723c0a6, 0x1b2d160a, 0x78326d56, 0xe9bd49fa, 0xb2137cc5, 0xc1c7e064, 0x8569c3dc, 0xbaa8130b, 0x85c973a7, 0xb577c0e2, 0x8f994edf, 0xd276df5e }, { 0xe6610b0e, 0xc930efa6, 0x62daeaa7, 0x8ca2b833, 0x8ca1c770, 0xf4e10cb6, 0xb5efae87, 0x9708dc3c, 0xc7de7d9a, 0xcec089d2, 0x24c6fba, 0xdaf659f0 } }, { { 0xc613a01b, 0x6cf9c9e7, 0xfccee255, 0x57d449a2, 0x3d8d7412, 0x65dbfb9a, 0x13a13134, 0xabf818a0, 0x2a1bd0bb, 0xd664c8cd, 0x611f435a, 0xd1f64bf3 }, { 0xa14d900e, 0xaf4f1f78, 0xa457ba8, 0x115e0934, 0x6a07df93, 0xe96719ba, 0x5dee4c6b, 0x1b2b2ef2, 0x4cbcacaa, 0x51be6383, 0xd3045087, 0x8365f4cd }, { 0x3e321489, 0x8034a3ef, 0xd1dbd7ed, 0xc3c2c3fc, 0xa340622d, 0x5be7dd47, 0x66e5ec54, 0xc0ce5302, 0xfe2681b9, 0x23f8a46e, 0xca9d219, 0x986749b3 } }, { { 0x64da7175, 0x52c89f6, 0xacd79254, 0xa2f9553, 0x3b28deee, 0x5436311f, 0x3eb6975c, 0x787f5aa6, 0x180c6551, 0xf83bd32e, 0x49f69354, 0xabaad417 }, { 0x6c33d55e, 0x52f71d72, 0x459f0593, 0x3a2f6e92, 0xdcf9885d, 0xa673a904, 0xb9e44de5, 0xcb2a45ca, 0x96a1473, 0x17fb2567, 0xc5aff39, 0x8087b2ab }, { 0xd5ec556, 0xad8b4460, 0x27c7d0aa, 0x1c8c3b3b, 0xc12b79a3, 0x450ef1e2, 0x37325f14, 0x4639f32d, 0xb6bd08c3, 0xe008dedf, 0x5a42c624, 0x484fa1b } }, { { 0xf65ba5c5, 0xbec63b3d, 0xeb5a0f06, 0x37093c9b, 0x6a95a7fb, 0x7e68b37c, 0x2a9b7fcc, 0x22e595a6, 0x3bb92708, 0x3fce437, 0xd6502deb, 0xdf5350d9 }, { 0x74044db9, 0x1488691b, 0x4f298922, 0x51a26cde, 0x37ed9c6a, 0xaf55403, 0x5df8d97c, 0x7556e107, 0x87aec30f, 0x15ab4659, 0xe0e0dfe, 0xf084b108 }, { 0xcfdd535e, 0xb748a271, 0xff78c128, 0x7b23aa5a, 0x551f324c, 0xf45c792e, 0xffcd07d8, 0xd8653707, 0x1946de0d, 0x7e3afa7b, 0x34ee9e41, 0x37c4e173 } }, { { 0xd6e8ad82, 0x80838d82, 0x49a37b83, 0xf397a887, 0x2adefbe7, 0x5f87303, 0x39e6d3e, 0xd7bfc25d, 0x687b0773, 0xeeab4ede, 0x18152c84, 0x36ceccbe }, { 0x255623dc, 0x204196a4, 0x2d2cd2d5, 0xd135bd23, 0x64c4e0eb, 0x2671ece1, 0xc0bc980f, 0x4ba15d32, 0xdd03c10b, 0x1c99c4d3, 0x52301774, 0x32e1736b }, { 0xeb9d6cdc, 0xb95c0f5d, 0xfcb843b7, 0x8585ef06, 0x17eae12, 0xaa2bfae2, 0xff6a3d0c, 0xbb61a099, 0x7b481986, 0xc23d7895, 0xca54fc75, 0xe8f24816 } }, { { 0x32467ef0, 0x49247a7e, 0xfedb1e84, 0xd0562284, 0xa1facbbe, 0x8406fe59, 0x3f7739ab, 0x837e069c, 0xa1b9eb9f, 0x30fd2f13, 0xbe8c584, 0xd1ac734 }, { 0x2386e3fa, 0xe6e7fc5d, 0x81621baa, 0x10cb0b69, 0xdfc2f9bb, 0x3dd25933, 0xa43dd880, 0x32e1ba24, 0xa3214a6f, 0xd4475767, 0x6b56f874, 0x7ca790c0 }, { 0xa6f19727, 0x50358be1, 0x8bba544b, 0x84b12440, 0xa2139efe, 0x23224f1d, 0xec066b68, 0xbcafb1aa, 0xe71a0e52, 0x72741f, 0xada72b3e, 0x7cc21493 } }, { { 0x905d97a3, 0x95e3999c, 0x3e1ec7b9, 0x1f101668, 0xcb27116a, 0xaddfe1c3, 0x1857679b, 0x477546cd, 0xa30774ed, 0x693f20b, 0x9f074e14, 0x71f1a677 }, { 0xf8fbda87, 0x2f631943, 0x42a0ec38, 0xbe7ed0bf, 0xccb7eed0, 0x565cbd9d, 0x18c38ea9, 0x928e6c49, 0x9fa19656, 0xde4bb188, 0x2d4b19aa, 0x265d80d9 }, { 0x990b12e7, 0xa28792c5, 0x4fda09b9, 0xd2304308, 0x5fb1ebb1, 0xaf12ee55, 0xc82c24f2, 0xc2daa13e, 0xfa2db96a, 0xe55b2abf, 0x6fad7647, 0xc8dbd64b } }, { { 0x10f9c9ba, 0x4c10b50c, 0x8ed1124d, 0x6e698829, 0x32d2e8c9, 0x96e604db, 0x2e452015, 0x9da60ba5, 0x247e6ca1, 0x773d8df2, 0x2de44a66, 0xa3e5a216 }, { 0x1f768d88, 0x453d5ba3, 0xcc38b26b, 0x2d995665, 0xfa311d15, 0xcc8584fe, 0x61a43437, 0x47653b8c, 0x9f20f053, 0xec3b5b33, 0xb55ffadc, 0xfb3c6383 }, { 0x75ca6bd1, 0xf983a3d, 0xeb696efa, 0xc630dee, 0x58895433, 0x514d53c4, 0xc052715, 0x13a18baf, 0xe7e0b7, 0xa5178403, 0xf7ba8335, 0x4ac23297 } }, { { 0x14b99b10, 0x8c6773ba, 0xa02a6212, 0x881ae7bf, 0xc381ac8b, 0x6f7308f1, 0x230f17c7, 0xf64dc949, 0xad239697, 0xb2d3784f, 0xe69650e1, 0x25a3bde3 }, { 0x75972962, 0x1918d976, 0x488a1c8, 0x2b474cee, 0xeb45f5f3, 0x13057e52, 0x4f764623, 0xddc70047, 0xa8fa0f0a, 0xf95ea130, 0x2c8343fc, 0x8fe5aaeb }, { 0xf09e053f, 0x76781fbb, 0x839660b4, 0xf2f3aca9, 0xc7f14a54, 0x1b11603, 0x8aecc136, 0x8dfa8506, 0x496402ae, 0xa5e982ec, 0xfbb9a089, 0x1c8391e2 } } }, { { { 0x155bcadc, 0x43ecaceb, 0xc28741e3, 0xf1a449ff, 0x7ddeb08e, 0x4482d7bf, 0xd0ef2ef3, 0x369a3147, 0x63be5353, 0xc0fb178c, 0xe3eacb6b, 0xd7fdf191 }, { 0xa610878c, 0x3651720b, 0x874bbb12, 0xe467b29a, 0x93f75ea1, 0xff898d28, 0xe4aa8b10, 0xa4520229, 0x4e3f3c54, 0x500402cb, 0x12e2af1c, 0x7e00f0ad }, { 0x9e33fc7e, 0x902616c0, 0x7c022a4, 0xcac54bb1, 0xca64bc43, 0xf39b268d, 0xf115025d, 0x24ebd310, 0xdd8b422c, 0x1f1f4930, 0xa3811189, 0x548d874a } }, { { 0xbe573390, 0xf9f9f352, 0x6308e666, 0x77503bb9, 0x8b0bafff, 0xf80990fa, 0x653e3f23, 0xb814f158, 0x171241fa, 0xc2e561b1, 0x8c1e98b3, 0xcfcea471 }, { 0x9e8b6154, 0x1d2cc803, 0x3945a5f3, 0x5d5f27e7, 0x9a4cef72, 0x4bb74f30, 0x1d6e4cf4, 0x535b372a, 0xc92eabba, 0xfd2b5788, 0x2c2c5900, 0x58edf940 }, { 0x1811b1f4, 0xa156529e, 0xda61b040, 0x80ad15a0, 0xae326a6d, 0x9b51095c, 0x202d30fb, 0xac459b42, 0x7b0c329a, 0xeae1669c, 0x4fc2ea17, 0xccb8957b } }, { { 0xdf6411c6, 0x7333979b, 0x2ceec348, 0xcd15d98d, 0x907a2bef, 0x531bcca6, 0x15301abb, 0xc6cf0a0b, 0x51be466, 0x83449b34, 0xbf9b495f, 0x416d19af }, { 0xb28f5e74, 0x4d0075d6, 0xe1fe574, 0xcabaeb93, 0x6f7e8ce6, 0xe9e8f857, 0xc0f4a50c, 0x28ead6c6, 0xd99c7cd, 0x125b8df5, 0xada426d9, 0xda9f26cd }, { 0x939377bb, 0x48292e80, 0x162722fd, 0xef87e8c, 0x45dec0c1, 0x1e3915db, 0x2822468e, 0xa0ab9f6c, 0xb47bf0d6, 0xaf312b7d, 0xe006d7fd, 0x79d2297f } }, { { 0x9fa1252a, 0xe54a59da, 0xd1c40790, 0xe7e282fc, 0xc1243095, 0x71d1f2f0, 0xb12eb2ea, 0xd87c3818, 0xb833d210, 0x3088a295, 0x3fee483c, 0xdfedb9e0 }, { 0x7c142d55, 0xbb505b8c, 0x4160ce9c, 0x90ea3a75, 0x15060254, 0x374458cb, 0xda79032c, 0x15735097, 0x1a1718fa, 0xc03ce9ba, 0x6a8905b2, 0xd993ba27 }, { 0x13146c8c, 0xde904838, 0xcf6724b0, 0x5fceb66b, 0xe401a44a, 0xc9bb280e, 0xaedee883, 0x8acff4e0, 0x5c40f0b5, 0x26ef8acf, 0x566c6ac5, 0xf45ff2ce } }, { { 0x414e0079, 0xc9d609e2, 0xa0b7e17d, 0x344ac94c, 0x52d25df7, 0x86b709ce, 0xd379dad9, 0xb058b182, 0xed08d72e, 0x5d80889b, 0x867a61c6, 0x20fc54e4 }, { 0xa772f952, 0xbe0a5119, 0x864ded98, 0xa3037f7, 0x2dfddf8f, 0xd83c9f8b, 0xc6008b4e, 0xaf1f3eb3, 0xfc8295c7, 0x359db19b, 0xfa785467, 0xfce6329a }, { 0x3a90b958, 0x4a6649f, 0x262e35cf, 0x4ab56131, 0x8736f4c7, 0xd78085a4, 0x288258ad, 0xeb3eae68, 0xa1cf9889, 0x74055056, 0x1ad3234a, 0x9915c894 } }, { { 0xd123058b, 0xb5f0d4, 0x715469a4, 0x7fb91c84, 0x4b7681af, 0xd2c1725b, 0xe2eb99cd, 0x80f0068e, 0xa70a9a5a, 0x65ab5ac3, 0x702eaf1e, 0x2e2f0e12 }, { 0x61bc5884, 0xb02acf8d, 0xedebed55, 0x941dc8ee, 0x442a3633, 0xad494b2c, 0x1b318017, 0x4b1e2ccd, 0x5630185d, 0x7d195065, 0xa78c8fae, 0xcb9125f4 }, { 0x719ad61e, 0xa63188dc, 0x1b689ba8, 0x7e259371, 0xfae044ab, 0xc8a7a283, 0x7c40b4e2, 0x1b6559a9, 0x3b3807e1, 0xf28b8791, 0x8720ec5d, 0x153059a7 } }, { { 0xcf244981, 0xcf6adac1, 0x90d70f49, 0x7764e6f3, 0x234ca1e6, 0xec9be24a, 0x9f46efbf, 0xae31f57, 0xb73bcf13, 0xec81353e, 0xecd74036, 0xb477e0fd }, { 0x518b3974, 0xa1dade91, 0x33902cc2, 0xce18c87, 0x4ef134a4, 0x8bf104dd, 0x50c3777d, 0xaea199e6, 0x1a3d5668, 0xdbdae1f9, 0x1807046a, 0x7906c682 }, { 0x807ff1c8, 0x5ef9a92d, 0xe0a6a0d6, 0x89cbd55d, 0x855e06c2, 0x28c107fe, 0xffccba5b, 0x65e71935, 0x5ddb7fc4, 0x576a5619, 0x5ec56c17, 0x63d08cc1 } }, { { 0xe59ceefb, 0x3a24595b, 0xde14d666, 0xcec40631, 0x124183e9, 0x2e38461c, 0xa89068f2, 0xa639595, 0x11d74311, 0x61781616, 0x48ba6bc5, 0xe5d578f4 }, { 0x56dd918f, 0xb603f093, 0x1844e3d9, 0xf0d53b4a, 0x17e2f62e, 0xf15ae40b, 0x44fcfba7, 0xa99e71e5, 0x4ceb9d30, 0x7c9bdc00, 0x6ded4fd9, 0x60431dde }, { 0x3b1cdf1f, 0xa1bb4125, 0x2518fa2b, 0x9a982ccd, 0x4ed9a567, 0xfe74415, 0x3c57852c, 0xe8d7a4fa, 0x7289ad68, 0x51048e4a, 0xec5ff956, 0xb6b08e49 } }, { { 0x3793d9bb, 0xd4bf0228, 0xaaa7bad3, 0x4ad3235e, 0xf70fc2a0, 0x26580eaf, 0xb7ebb9f1, 0x42d3c01d, 0xbaa6c664, 0x2e0461db, 0x834fa49f, 0xcc732e0e }, { 0xf3bf6069, 0xc6140b62, 0x40c1969d, 0xccc3d348, 0x18cde3d3, 0xc2050e0, 0x8ce72e8a, 0x631c75b9, 0xb4b01d56, 0x6474a29b, 0xcd10295a, 0xe2462acd }, { 0x3e8c2ec6, 0x569d5dee, 0xc4386124, 0x6fd218b8, 0x645985c5, 0x2b1b8c84, 0x9568332c, 0xaa6ae0d3, 0x85482402, 0x5feec9f5, 0x17332e45, 0x5dbfbd5f } }, { { 0x5ba6edbf, 0x251c796f, 0xae0966d7, 0x7ad487e1, 0x85c169cd, 0xca63f53c, 0x2cb1cda7, 0x3d074d70, 0x83500484, 0x11269e82, 0xc8a3495c, 0xdd4d7850 }, { 0x58b8094b, 0xbf4b9b1f, 0x7f282c0f, 0x9b6f56bb, 0xd2cfc2b6, 0x75daf6f9, 0x25597787, 0x35532afd, 0x1b4d772b, 0x9a26aaef, 0x494825a7, 0xd0550968 }, { 0x989d462d, 0x4b3096dd, 0x3f46486, 0x86f21ebf, 0x5fa644e4, 0xed6c4b92, 0xe6df789, 0x8fe40f25, 0x45fedd5d, 0xd0b98148, 0x1cfc4b15, 0xf6fe3a89 } }, { { 0xb20ad137, 0x19cf0975, 0xe0d38f01, 0x6dfe816c, 0xf0d7ed40, 0x5a2ba229, 0x85afaf8f, 0x62be3de0, 0x87dd0fc8, 0x855c729e, 0x2e96def0, 0xf4d6f8e7 }, { 0x847c64ca, 0x42115b5, 0x434d15da, 0x93ad16ed, 0xab9d6113, 0x92f5b69, 0x46a9fe02, 0x122d613d, 0xb39e9242, 0x9327fc92, 0xd6d3d8ec, 0x7cf3f3e9 }, { 0xfdcc2d07, 0x8b3ab4b0, 0x3effb002, 0x5ef968cb, 0x53f41053, 0x92f42f77, 0x64093dbc, 0x6bfbfbe3, 0x72dd3bd2, 0x3143d8d4, 0xdd56fc03, 0xe8f378e7 } }, { { 0x23d077ae, 0x6fcd3923, 0x73d6ab8b, 0x2a833a12, 0xafbbd015, 0x3111b5cb, 0xdffdea6c, 0x8acc9967, 0xbdf317b5, 0xfb09c994, 0x9e30aa37, 0x3c9df5b6 }, { 0x6f34ddf3, 0xfc34e9bb, 0xf7c9b822, 0x3f527629, 0xefaee15, 0x58adf568, 0x7a5bf4df, 0x42a0f7f, 0x137f3742, 0x5d833ee, 0x1d9e8774, 0xb9a09a62 }, { 0x7e91323a, 0xa3c26d27, 0xa35fc855, 0x4ff49905, 0x884ea211, 0x7982ed9f, 0xeb42fe60, 0x67df9573, 0x3cbe0b7c, 0x3ffef709, 0x299a08b3, 0x974fd536 } }, { { 0xa86f5e3f, 0xce2f625e, 0x2ce3adf1, 0x66b87842, 0x6d6f8386, 0xc980ee85, 0x14eca226, 0x88aab663, 0x6ac3d257, 0xf7fa12cd, 0xc2f9abb0, 0xf0ee8402 }, { 0x64661c90, 0xf76a355a, 0x139f44ba, 0xfc21b8b5, 0x6abca13, 0x35b15af6, 0x6f105682, 0xdf81cd28, 0xedf07d20, 0xcb8d9e0e, 0x94c1521c, 0x6062fda8 }, { 0x21eff3e2, 0xdcbb496e, 0xc2e34045, 0x9e2c356e, 0xec679323, 0x49d27d33, 0x5e2b54f4, 0x6dfd30fe, 0xb9f6bdf4, 0xac7c0eab, 0xbb9be8d5, 0x7add896f } }, { { 0xd89840d7, 0xf02d35f1, 0xead1cbde, 0x10d6e665, 0x67471105, 0x5845b999, 0x84457a4f, 0xe7392975, 0x81ccc106, 0xa6c87e99, 0x70ba9c76, 0x9542465c }, { 0x75da8cd5, 0x639f3fce, 0xb4fc2c70, 0x4edc8450, 0x80005d59, 0x95f49686, 0xcc93d0f8, 0x5363cd8c, 0x87130ee0, 0x3c21698b, 0xfb973739, 0xabe25240 }, { 0xaf13227c, 0xe73a6476, 0x73e98a8b, 0xd08aa351, 0x53418786, 0x3800cc8, 0x4cf276a7, 0xd6e5e6df, 0xaaee5826, 0x71b5c8e, 0x1dc9e0b7, 0xe28541ff } }, { { 0xdd4e3669, 0x5c8d010f, 0xdd12c05, 0x980145a7, 0x7f418b8d, 0x3c0f9411, 0xedb21de, 0xe0fe9bb2, 0x4301801b, 0x20d5837e, 0x43eabbe4, 0x1c413f7e }, { 0x3904f19, 0xd002fcb, 0x116f3dd9, 0x5c9896ac, 0xb0d8b20f, 0x3d4382e, 0x74d72a, 0x8cac2b03, 0x425149a9, 0x25a5f188, 0x9157a89, 0x91444aa2 }, { 0x623ab592, 0x78274861, 0xb59d883e, 0x65fcbf4, 0x88e470ac, 0x4e6d48a8, 0x7eb4766c, 0xe75da65, 0xf0c573f6, 0x82c35674, 0xfc738c87, 0x9be5498d } } }, { { { 0x5955016d, 0x924f6d36, 0xea834311, 0xb3ebbf45, 0xcb0d85c6, 0x49e5ad46, 0x453c0da, 0x469bdae8, 0xf3ff8701, 0x8f5522b6, 0x6e303845, 0x3a02167f }, { 0xdf83d16b, 0x2d36e553, 0xf216a768, 0xf4956748, 0x92e83d9f, 0xe9c2fa78, 0x4a0a21f4, 0x2b742e37, 0x9e50a47e, 0x3f2c5abe, 0xf54270bd, 0x43ef477e }, { 0x5ba97221, 0x2639c0fe, 0x9e249911, 0x26bb9dcb, 0x666715a, 0x94bb245a, 0xfcf1cb99, 0x4f40165d, 0x84f3c2e7, 0x81a93d7b, 0x1711c901, 0x4d0cccf2 } }, { { 0x37371478, 0x68355f62, 0xeda0f626, 0xd1eddb97, 0x556655eb, 0x63109bd4, 0x48192b2d, 0x93bf0d02, 0xf3b47b35, 0xd6ab5215, 0xf0525187, 0xfdf0fc68 }, { 0x31eb0831, 0x8c9b8fe0, 0x4f64375d, 0xc632253e, 0x281e0a5a, 0xfdf437d9, 0x214c735c, 0x63df5a72, 0x5daf5e4f, 0xa190c1c0, 0xd6567b86, 0x1da6b1c3 }, { 0x908f7b55, 0x2bab3f1f, 0x3d914e2c, 0x1c44e2c2, 0xe5e78bd5, 0x3d515527, 0x88ecefd3, 0x781ec9ea, 0x20acc187, 0x52ba4c31, 0x4bf32ab9, 0x6487b112 } }, { { 0xff6296aa, 0xc1dbcf4b, 0x61567dbf, 0xd4e15956, 0x1ec8d1f5, 0x4720f59b, 0x5ceaab02, 0xc1d5fca, 0x7c597e0c, 0x79c28072, 0x9992acf, 0xbab3d629 }, { 0x852b0cc9, 0x91b62d30, 0x3c70af10, 0xb9b18fbd, 0xa5f3d78e, 0x9fabe366, 0x661de8a3, 0xa63f73fd, 0xe3205603, 0x52c2b088, 0xde3efc60, 0x7e103a64 }, { 0x435cc8f0, 0x4daf0b7, 0x4e30ddb7, 0xc46857a4, 0x10605bb7, 0x46564178, 0x3bf42319, 0x40c9f5f9, 0xedca38b2, 0xc80d7805, 0x8cc4b62c, 0x82bf64a9 } }, { { 0x675aa669, 0x9d839705, 0x1cdb5f5e, 0xfe59e5f7, 0xf6cf9959, 0x77171e50, 0x56ebee80, 0x737fe56f, 0x74fa46bd, 0x4ea754bf, 0x3ccb7a57, 0xb6a22da0 }, { 0x9ab0f993, 0x41f73759, 0x63294b00, 0xd5ce4234, 0x515612f0, 0x62be699d, 0x5dafe044, 0xd2c7cccb, 0xe751a1d8, 0xdb19c5fe, 0x4063c27a, 0x746d6883 }, { 0xd1c40359, 0x52d25994, 0x862afa92, 0xfa5360e5, 0x4016d657, 0x19ef965d, 0x3a087762, 0xa2e6957d, 0x4aa7f884, 0x78644bee, 0xf1fa5dd2, 0xa4dee5e2 } }, { { 0xf3627b06, 0x99e986bb, 0xff900ed4, 0x4bf1b4cc, 0xe5f3b844, 0xf80281f4, 0xbd9abd7f, 0x1487e4c3, 0x8406ef65, 0x9ffdf49, 0x44f20391, 0xb21dca86 }, { 0x3c226d6e, 0x64dab58, 0x73cacf2c, 0xb0cc829e, 0x3ec253a, 0x9d8cfb8d, 0xba6f09cf, 0x89202ed2, 0x8c62d9af, 0x8346cd14, 0x409f70a5, 0x9ffcefbc }, { 0x39909382, 0x33edd98, 0x62c4b5e9, 0xc41572ed, 0xecafd649, 0x6ab3dd62, 0xb27c17e0, 0x7f2b5409, 0xf4128d1e, 0xfadc2a63, 0x3c14c092, 0xb226944b } }, { { 0x188db99a, 0x69800959, 0xaa5ca00e, 0x539f1aaf, 0x88ef3205, 0xb5725bac, 0x95b70465, 0x1527629e, 0x5e356e2e, 0xc6be4f28, 0xa434f6e6, 0xda651ff3 }, { 0x2616c256, 0x78c4a011, 0xcfef1855, 0xcd3f1f14, 0xa3d69449, 0x40ca1073, 0x6ae3861b, 0xe25ca4c6, 0xa38b05b1, 0x4cb23621, 0xa27c2590, 0xa2a391f }, { 0xdb73af6e, 0xcd9e176e, 0x81cc2391, 0xf745df9, 0xfbba609f, 0xf50c4b76, 0x64fc27fb, 0x88a69dea, 0x52ae7476, 0x8db67c51, 0x52d5cd1b, 0x2c141a1f } }, { { 0x44970a3e, 0x776a813e, 0xb2c37ef4, 0xda5dfc65, 0x8c439833, 0x252a0c0f, 0xe6e602d3, 0xbb6a098d, 0x5ee2d38, 0x8edcf68b, 0x4c4443ac, 0x3736b9ae }, { 0x3c4201ea, 0x7facfac1, 0x9f30110, 0x2e57718c, 0xbc6edc44, 0xd4ef501e, 0xbae8c133, 0x1baf97a0, 0x8ef54797, 0x91537970, 0xe68f7b19, 0xa3576d69 }, { 0x3f84b467, 0xc49e154a, 0xab53c339, 0x9d053a6e, 0xbede941c, 0x394b1836, 0xab76e82e, 0xdfde20b4, 0x9877c014, 0x61fca13a, 0x122e6c4b, 0xcb56ad25 } }, { { 0xf60e078f, 0xca08cb46, 0x32a7bbeb, 0x787c2d08, 0x8f5adf7f, 0xe89c37b5, 0xac447918, 0x4626e32c, 0x9c23d3c3, 0x25989d87, 0xe5f79099, 0x7a4de00d }, { 0x4bc4554, 0x6c1ee3e1, 0xce62884e, 0x6f22021d, 0x895e5d72, 0x7a40efd9, 0x807d7c90, 0x854430db, 0x1a8e4ee4, 0xcd4614db, 0xe89bf680, 0x79771e54 }, { 0x4f68a376, 0x8d4c305f, 0xcd493fa7, 0xd6c92bc3, 0xf032683a, 0x83aea84e, 0x59aa4b9c, 0xe1b3ae98, 0x491e8c55, 0x65e7ee17, 0xb2a4e198, 0x99bb73d8 } }, { { 0x8ab329ee, 0xc16bd03c, 0xdc064258, 0x349c97d3, 0x50f4625c, 0xa7d78ae0, 0x9959bb7e, 0x5f79c780, 0x17236ca, 0x35d44d58, 0x8627c02c, 0xd45e4d0f }, { 0x1a1ee805, 0xb8fe5833, 0xf0d63403, 0x6d3b527b, 0xaa6898ea, 0x3ede1bbe, 0x2cf2fa5e, 0xf5f5d458, 0x7f14e6f3, 0x5fb9cf0d, 0x4829cbfd, 0xa858243d }, { 0x727ff7b0, 0xd1ad471d, 0x6670a0c3, 0x17b2b5d3, 0x6e763907, 0x78147ec5, 0x19edc2f5, 0xf553f0cd, 0xbed52c01, 0xeb19b4c4, 0x8a4d488f, 0x560203ed } }, { { 0x9613e5fd, 0xe7c0fc23, 0xdb8ec48d, 0xb9268706, 0xf50f8c32, 0xabdefb54, 0xaddff861, 0x61f1a799, 0x93844838, 0x4f82352, 0x642781d0, 0x240667d1 }, { 0x4ebd0fa6, 0xc5360992, 0x1e44c5ae, 0xdf366b98, 0x1e5dfdb6, 0x25e428ac, 0x901233e9, 0x82ffcb9d, 0x9f01464d, 0x203eb697, 0x67deded0, 0x6b021d4b }, { 0x6e44203f, 0x5b61b251, 0x5082aa5a, 0x1a4bf77e, 0x4a2909de, 0xfbaf9bbf, 0xa1953ce4, 0x18bb6a8b, 0x14af4d7b, 0xa685876e, 0x405e357c, 0xa30c2cb1 } }, { { 0x1e9c4edd, 0x1aa2fc9c, 0x78429875, 0x2975a0e5, 0x610cfeb9, 0x7a1eca0c, 0xb42a5757, 0xda970491, 0x85422c63, 0x345b7c9c, 0x68a6b840, 0xe0835ae7 }, { 0xf65e3739, 0x1a2e9220, 0xaee97b2b, 0x522171f3, 0xd3feb2a3, 0x44d10249, 0xc3f91327, 0x11197599, 0x146d16a8, 0xe6d541f1, 0x87021640, 0xb289cb7e }, { 0x7d076ec8, 0xe4396e0c, 0x4c8c49ae, 0xfe37fbb0, 0x3fd92be4, 0x9bb63b8f, 0x4fbed37e, 0xa469ad21, 0x8697fc0e, 0xf6a6bf31, 0xad025ef9, 0x2cd0a9c9 } }, { { 0xb132f3e2, 0xebd32802, 0x7feb25b9, 0x59abf6a9, 0x4ea9df26, 0xa75d8cc7, 0x2cfe195a, 0xaa6af865, 0xac0582f8, 0xf8dd508, 0xf763880f, 0xe056e8fd }, { 0x2b3bf2e2, 0xd834b4e9, 0x5dbbedef, 0x785a0f89, 0xba36edf, 0x8e434bbc, 0xfb5f9717, 0x14a7a800, 0xfa766c0b, 0x18cbf59b, 0xf4bd1321, 0xf45f8a9b }, { 0x98fe7dc1, 0x905c0141, 0x1601dbd8, 0xa3da6363, 0x83a3be2f, 0xe5f6eb5d, 0x4b55f85f, 0x9e85644f, 0x3e21bcaa, 0x98de06a7, 0x314bee5b, 0x315a63ef } }, { { 0x5b8e3722, 0xfe26b56, 0xe6b33b98, 0xd725a2c2, 0xec943b73, 0xe915bd94, 0x4166832c, 0xc71fca74, 0x310ee920, 0x5dd9499f, 0xab6a8157, 0xd421e0fd }, { 0x1a9d7602, 0x1f067391, 0x5331a83a, 0x8b5f3f32, 0x2492314d, 0x74d7664d, 0xfd08e793, 0x866f14f4, 0xb2b02428, 0x33cdcf11, 0xe6390c59, 0x7dc5a6e2 }, { 0x3b92a7f0, 0xaa4c74bb, 0x6b413571, 0x43a4c588, 0xd51221f7, 0x7c851620, 0x1d37dea1, 0xb6730bea, 0xbc15a176, 0x40369b18, 0xf179ca1, 0xa69ef657 } }, { { 0x5508482, 0x11035090, 0xe4b194ad, 0xa3c9451b, 0xb5551295, 0xba84ac89, 0xb1e5dc63, 0xd1dca4a3, 0xf02d3623, 0x8a10d5a1, 0xd1ae2e2, 0x8ced751a }, { 0xc071c56b, 0x530d7b0a, 0x60b66384, 0x40866a89, 0x53c9d25b, 0x1120d2ea, 0x83ef2269, 0x1caeac9, 0xfe630a74, 0xeae6b1e6, 0x974e085a, 0x746331ea }, { 0x8634ec89, 0x18d831ef, 0xfea9bc5e, 0x16cc9913, 0x6e5fbfa2, 0xb39ae2fc, 0x49aef73a, 0xc33557e5, 0xcf0d606e, 0x771a430b, 0x6ec6c641, 0x102c317e } }, { { 0xd039ad53, 0xb9a0acba, 0xc7a2f03b, 0x41c5b424, 0x3f09d0e7, 0xe9c00889, 0x85aa80c, 0x5cab3048, 0x4ea0baa8, 0xffa666d9, 0x475a5424, 0x8d83515b }, { 0xa4a4500d, 0xaab6a443, 0xbbd01eaf, 0x6bf4bb71, 0xa55f8daf, 0x121c899d, 0x9cf6d15f, 0xd6d62fd0, 0xa5702876, 0x5dd57f11, 0x67d1686e, 0x207be6a9 }, { 0x7be5852, 0x19efe794, 0xc895378c, 0xff34716d, 0x834ac43b, 0xabf248d3, 0x18dff3a8, 0x502e4bac, 0x760307ee, 0x4c2ef68a, 0x2a0df8ea, 0x29cf771a } } }, { { { 0x210f88b8, 0xe3df7f7c, 0x58cef4cd, 0xeb1e471b, 0x38bacabf, 0x96df5bc4, 0xa08013bc, 0x9a4cc965, 0xd96f7f6f, 0xae276c76, 0xb5077e0d, 0xc1d1009a }, { 0x4b211e32, 0x907a2fd9, 0xbc0c032b, 0x3328f535, 0x983296eb, 0xcc478996, 0x893b78cc, 0x7a569747, 0xf4438b3e, 0xc4619bcd, 0xa1370dff, 0x7186edd9 }, { 0x571a0888, 0xde002474, 0x7ec88687, 0xdfa9f31c, 0x65a7cc3, 0x76d97f99, 0x7c5b3c9, 0x194b6410, 0xc5ee8543, 0x7bfdb39d, 0x5432b654, 0x2339eb64 } }, { { 0xc9b31749, 0xcd320210, 0x49cb6d28, 0xbccae019, 0x349bf347, 0x3b1103c2, 0xf7777a76, 0xf1a43c47, 0xe4499c36, 0xe1999408, 0x60a064b2, 0x891dc2f6 }, { 0xe77edf80, 0x185f0803, 0xd0554e8d, 0x35e9fc0a, 0xdc7409ad, 0x96fb7b42, 0xb20716d6, 0xa8098164, 0x9e739928, 0x77b507ef, 0x2c9bb8a7, 0x5caaedc7 }, { 0xfe8c63fa, 0xf468f098, 0xcfdb0628, 0xd7829547, 0xc6d7d1a8, 0xa27aac32, 0xa87c90e6, 0x59e48f13, 0x4988ca95, 0x1dc9ad87, 0x9eb9c8fc, 0xed2e2a84 } }, { { 0xcdb9e508, 0x8d8bbbb6, 0x768580ad, 0x32812b55, 0xe66bb2b9, 0x4a5391e0, 0xd6311c85, 0x2901c5f1, 0xe84bcc35, 0x8409605e, 0xd4f67bd5, 0x676d20ac }, { 0xf53566c6, 0xd469ad8c, 0x4486fad1, 0x100f33e8, 0xd9877e60, 0xf5d9d287, 0xb9bfc559, 0xab2da0c2, 0x649ce539, 0xbb8e1f60, 0xd53cc348, 0xa0c868f5 }, { 0xe90f406e, 0xb4c32d8c, 0xb80c18be, 0x75564745, 0x102fa7ef, 0xbb1197f8, 0xf4f97680, 0xb1a31428, 0x5012f68, 0x23b0182, 0x83c8f74a, 0x157cc7c1 } }, { { 0x9666f820, 0x67ce00b3, 0xdb48da3c, 0x7f603f6, 0x517cc76d, 0x90dc26cb, 0xd45bf497, 0x6fbe59de, 0xde426ac5, 0xadfaa11c, 0xa0ab8bfb, 0x59a73d3c }, { 0x63bd4711, 0xf21d54d4, 0xa3ad224a, 0xb30a5fca, 0xd3b57a3f, 0xd0158c7d, 0x76d02fce, 0x24341efa, 0xda0355c0, 0x9ef9680c, 0x6a30db30, 0xe64785d8 }, { 0x6e6c6d27, 0x4394f3c1, 0xacc8417, 0xb7404a4, 0x912f5c68, 0xe7965d27, 0xb1b98783, 0x64f41558, 0x9b3cdf44, 0x947d816f, 0x1bccecf, 0xf0ecf01d } }, { { 0x2f782eac, 0xa5c68acc, 0x68d6dca3, 0xdf1b0a68, 0xf6783d8f, 0x26673e75, 0x8adf7bf6, 0x4850baf5, 0x8fcf67b7, 0xa40ca1cb, 0xdc618e77, 0xb666e956 }, { 0x59599aa6, 0x8792d967, 0x95a64f77, 0xe6c77a, 0xb98282d4, 0x7f3969ba, 0x19c17067, 0x536d0eb9, 0x109ec9f0, 0xb70b6980, 0x30cabdf5, 0xd575b40c }, { 0xcb818e40, 0xe2f6ff8f, 0x4ba685a5, 0xa8e28c21, 0xc1e2583e, 0x8f329d93, 0xd9290c0, 0x5a8b158e, 0x17dae4f4, 0x76a909e4, 0x61fd83f5, 0xc973d8d2 } }, { { 0xfc10db09, 0x5bd12250, 0x36e3fb32, 0xa24df881, 0x1aafe98a, 0x3706b6ac, 0xcf328771, 0x5ccc7c4e, 0x2e28e9a9, 0x7a27c1f6, 0xe025fd6c, 0x4fdacde0 }, { 0xfba1a324, 0xde657f91, 0xdfe642db, 0x24ce01a3, 0x387c81af, 0x312ac5e3, 0x4968c9f5, 0xa1a4491f, 0x5d52c663, 0x4f00a3fe, 0x6d41b485, 0x953999cd }, { 0x1b06070e, 0xf95e0a36, 0xc90fafc9, 0x3267ece2, 0x98c26403, 0xd4483223, 0xd49d5f28, 0x584da1d3, 0x15155e65, 0xa03037ad, 0x6af6cd84, 0x803208c5 } }, { { 0x7c3d4b82, 0xb7edd671, 0xf9e6f455, 0x7df09a4, 0x32671542, 0x37fd8db6, 0xf9e67d1b, 0xeab6923f, 0x9ccf5734, 0xbf683a94, 0x388364c8, 0xba410402 }, { 0xa6101b07, 0x1b03794e, 0x5fb34a1c, 0x56011991, 0x103fb069, 0x9694bb4e, 0x44d0d44f, 0xae7207c3, 0x5e492671, 0x65642650, 0xcc415d1f, 0xe6b8e22b }, { 0xd2c209ff, 0x6f554461, 0x39a2eb30, 0x5781729e, 0x4b51ca54, 0x2a603cd6, 0xf3fa2ea1, 0x9477cbad, 0x5c455a51, 0xe2027218, 0xe0472767, 0x914f99ba } }, { { 0x86871b7a, 0xe67735fa, 0xb716ee77, 0xa885cd8, 0xab27a1f4, 0xb1ddcf81, 0xfacfb655, 0xd5a0c117, 0x2a0e60d9, 0x1b222aa2, 0x28b2a74a, 0x461b3e12 }, { 0x9abe912e, 0x11f83306, 0xac039e80, 0x6e9df637, 0xefc9d93e, 0x796a631a, 0xa6cb2911, 0x329d0d8f, 0x3dc1a987, 0xf93e3ddf, 0x8d92ff7c, 0x54446fdb }, { 0x439d463a, 0x61d089cc, 0x2f17cd20, 0x5a72449, 0x8e331ef9, 0x12711324, 0x41f9c4cb, 0x1d618c73, 0x61357892, 0x1f522fb2, 0x3a48b632, 0x50f53a28 } }, { { 0xaf8dc1ab, 0x6fada511, 0xa58d370f, 0xe4653c5, 0x1594b66a, 0x4ba5fefb, 0xc2d72354, 0xf7fc929, 0x0e53ea, 0x262ddaaa, 0x31413b91, 0x567f3105 }, { 0x4941fc7d, 0x1f28b0ab, 0x2a236a22, 0x956e4132, 0xdc0361aa, 0xcc04c798, 0x1b1f3d9d, 0x1c1a0a4f, 0xab133174, 0x1691ffdb, 0xfeb95972, 0x45d5b892 }, { 0xdafc211e, 0x9d54a649, 0x4f326d2d, 0xc13cd9e3, 0x2fe0e98a, 0xcfc30bee, 0xb05ec8c5, 0xf7b3fa86, 0x568403c0, 0xe288d09a, 0x8c03818f, 0xc769af23 } }, { { 0xe040a5a3, 0x5d5d7f43, 0x3c99893a, 0x873f6679, 0xad6a2c21, 0x4ebeeb22, 0xf32dff45, 0xe8a3c3ec, 0x80f399f6, 0xfdb8cc2a, 0x4c9590bb, 0xb19ae1c5 }, { 0x2d02de17, 0x8ae9f53c, 0x15b018e8, 0xb4bffc66, 0xa0981394, 0x2b384827, 0x740a581a, 0x5bd25730, 0x7b4b3532, 0x60d4f235, 0x2e7cd909, 0x9363afd7 }, { 0x8f5bba4f, 0x4d8cd39e, 0x162a1d01, 0x3f49f792, 0xa7d828be, 0xace8f86e, 0x936b6923, 0xbbe960dc, 0x1323c456, 0x3ed26f88, 0xc1e8ff8a, 0x41cd0025 } }, { { 0xd0310345, 0x24f93ac4, 0xfb864846, 0xf4d554c2, 0xfd2e453e, 0xdb871b83, 0x240c78d7, 0x21c469e6, 0x76b76481, 0x822e9f0e, 0xe7e72f28, 0x857fc09b }, { 0x537efb1, 0x5dc284e7, 0x84bdad7f, 0xe803ea1d, 0xc7e678bb, 0xa0bdbac, 0x74bb1e49, 0x7dc74953, 0x2e392958, 0x6244b59, 0xdd824461, 0x5e71b60e }, { 0x3d762fe5, 0x2aaaa399, 0xfe251e16, 0x39e3b348, 0x85d56055, 0xfd05760d, 0x9b266073, 0x402280a, 0xaefc02ec, 0xb69f3d83, 0x1ef412fa, 0xa95f08a } }, { { 0x4e0ffbb2, 0xfce733da, 0x25dfd9ee, 0xd9b5a440, 0xb102db36, 0x5d49181f, 0xecf9db41, 0x1cb6279c, 0x2a3d07d6, 0x7da27e19, 0xf873467f, 0x4778ffee }, { 0x7bca64d0, 0x9faa91a9, 0x28854f6e, 0x17d2c94f, 0x9e48572b, 0x67b37095, 0xea024253, 0x39dd272a, 0x51e327e0, 0x9822e066, 0xecf632ba, 0xad972ebd }, { 0x748f5b43, 0x24796905, 0xd41cb115, 0xce94886a, 0x77a5ae5, 0xd36f0369, 0xadd54cab, 0x3f067579, 0x5bfdbb21, 0x83940053, 0xba484f07, 0x4863ed7f } }, { { 0xa38df2bb, 0x877f8eda, 0xb670940d, 0x41b969ad, 0x27534733, 0x63393171, 0xf6015b8a, 0x6e97cd81, 0x21b88c82, 0x4f3f0882, 0xa0101b0b, 0xf5fb112e }, { 0x4d20d2d2, 0xa9d924e, 0xa0967a07, 0xa67fd8d7, 0x5a6bee13, 0x27e9dbbf, 0x17fd87b9, 0x489afa5d, 0x51ceb823, 0xa9cec484, 0x2f9eb240, 0xa2ad3735 }, { 0x3737c62b, 0x3ca7fad1, 0x25c06a56, 0x29d7c661, 0x96f917c, 0xe61840a, 0xc14bc931, 0xd6bc8253, 0x31cae735, 0x8c5c6cab, 0x8d131d26, 0xf79d549e } }, { { 0xda0595a, 0x43c8abc1, 0x3cc1f5f2, 0x2b715aa4, 0xb70a09b3, 0xc645fc62, 0xca0c465, 0x2ab9f073, 0x5a6e606f, 0xc29e18b8, 0x2073a18d, 0x34728e63 }, { 0xfbb96571, 0xe320d058, 0x2cc9273e, 0xc758249f, 0x5eda8dd5, 0xd7e5935b, 0x25ec0b65, 0xf3d25a31, 0xa0236dd0, 0x31f99e09, 0xed90317b, 0x1dbfaae3 }, { 0xa9aefdf2, 0xc7d34a93, 0x9a39b791, 0x9fc635ca, 0xd03aa568, 0x2fd39b3a, 0x6d19c752, 0x5d5b3fa5, 0x969b1fcb, 0xe50f5bef, 0xdaa2c5e3, 0xd9dd84e8 } }, { { 0xf1000c54, 0xcd87d18b, 0x8ebcb5a, 0xc8e9ba2a, 0x58e46fdf, 0x3acbba19, 0xb1e115c1, 0x4ac1b169, 0x47ed68de, 0x9ec22403, 0xaa54059f, 0x47fb79ca }, { 0xd956a436, 0xe04a0521, 0x44a21a20, 0x69258f10, 0x5570940a, 0x74a4088f, 0xe031c38c, 0xba767784, 0xf375872e, 0x1c4a0101, 0xa11fdee0, 0x3f624611 }, { 0xc4d1697, 0x1e416469, 0x163cd0ca, 0xb3f2744d, 0xfa39304c, 0xe3fe5ef7, 0x89612c52, 0xa2b88302, 0x86af2c98, 0x2dfccc52, 0x2e1a67fc, 0xbee4d892 } } }, { { { 0xc8b76476, 0xd00a5558, 0x1a9dcdb2, 0x95ce7332, 0x99181f32, 0xada8c940, 0xeeee4b26, 0x3e055337, 0xcfe0992f, 0x986f5481, 0x13c4c6d8, 0x8aebd9a3 }, { 0x8e3a1e3e, 0x58c59e4a, 0x288d50e6, 0x20dbda1a, 0xc2795209, 0x77a8711f, 0x929abf4f, 0x45f3d930, 0xeab179fa, 0x191fe14, 0x89d6b835, 0x3dc5d4d4 }, { 0x1bd93500, 0xcc82bd1b, 0x841b0dd4, 0x67717dca, 0x2d586f09, 0x3da90299, 0x4373600f, 0xb05d8e89, 0x51771dba, 0xe2865c48, 0xdac0fc7d, 0xb9f69baf } }, { { 0xe9996cbb, 0xda2fb587, 0x6d628c0e, 0xa2da5b6e, 0xdc70ad86, 0xda8d4f31, 0xe5d0dbec, 0x242a0756, 0x305350c1, 0xf0db7979, 0x5cd02945, 0x91c93e86 }, { 0x5e019330, 0x4555a876, 0x5af56d81, 0x8e810a29, 0x24fc13bc, 0xfd141c0e, 0x96a1571c, 0x5af78633, 0x2a486635, 0xfa46b4c8, 0x478b46a6, 0x54736257 }, { 0x41f85bcf, 0xa4abce8f, 0x434c71c8, 0xda6e7562, 0xbec2807a, 0x6a9fe451, 0x4ee84fef, 0x868aba53, 0x2f899fa6, 0x92c0ad1, 0xe44b2fad, 0xc64296a } }, { { 0x15b0cf94, 0x689952f8, 0xb93b2394, 0x4e4d89fb, 0xd0d4cf74, 0x39942267, 0x8a0c726b, 0xee59e460, 0xbdb7fbb7, 0xb9a6a8aa, 0xd54a3bb9, 0xd4b7e343 }, { 0x3b3ec602, 0x97b5022a, 0x48994ecf, 0x93f6b9a5, 0xaf31c2ed, 0x21399348, 0xff7a9686, 0x10fb3365, 0x1ed41766, 0xf99d2a86, 0x32041611, 0x42589485 }, { 0xfd56f465, 0x196c570, 0x74cc87b, 0x6dbe2b39, 0x346019b5, 0xe6480044, 0xff308236, 0x6c1d6003, 0x97d42376, 0x5c01a26c, 0x11937f23, 0xc145806 } }, { { 0x3fa83945, 0x58505ce, 0xb69aae06, 0xb9d6ffaa, 0x2a9502e3, 0xcdcb3c76, 0x5ab20d8c, 0x6ca40aae, 0xac072e31, 0x605fad7c, 0x8bb67f01, 0x308e6d59 }, { 0x20131e27, 0x6f3fc4d0, 0xd999eaf2, 0xf1628be6, 0xa5a067b6, 0x2ccba950, 0xedab4977, 0x9b397cdc, 0xb916fc10, 0xe53c6f0d, 0x79ae1267, 0x74520366 }, { 0x1db17394, 0xde9db13b, 0x792bc72, 0x1533b3c4, 0x555c76ea, 0xeb16669a, 0x934e12c4, 0x4cbbb1be, 0x92736e9b, 0x706903cc, 0x6fc93a49, 0x1040880f } }, { { 0x74ee31aa, 0xa42a1ad3, 0x5148da3, 0x48dffaaf, 0xdc9d3b5f, 0x70e211fb, 0xa8a8ac39, 0x97473771, 0x94229757, 0xb7574331, 0x27619541, 0xea15767c }, { 0xf1ad9d05, 0xcce8b7f0, 0xe693bd06, 0x2d203d0b, 0x82bb50e5, 0x591baddb, 0x6e114fe3, 0x14bd2af, 0x6e1b4113, 0x79816479, 0x3b7200ff, 0x2a6fa977 }, { 0xb644a8f, 0xfa5e11bd, 0x2ce9c93e, 0xec3d1ae5, 0x87102155, 0x6bc13dee, 0x3781e689, 0x6419fe15, 0x53f71715, 0xc9156de9, 0xc883682e, 0xf11d234c } }, { { 0xe8ab8039, 0x43b29c, 0xdcd6370a, 0xb693a953, 0x407d3755, 0x527da0f9, 0x78b9c7d3, 0x98a90a8, 0xd1007db9, 0xc1d87453, 0x9b668eed, 0xdd07dfc5 }, { 0x2d30f6d1, 0x5c74b1da, 0x549258b1, 0x5186d9b5, 0xedc2c917, 0x4ea6f562, 0x62d12ff8, 0xad4d78b5, 0xdcc2a88c, 0xcb53623d, 0x8d29337a, 0x3451a105 }, { 0x395fb6c2, 0xb4cd52b3, 0x757901c9, 0x37ff1f28, 0x731e3ea8, 0x7c0ce0c4, 0x72e425d, 0x923309b0, 0x3c9c85ae, 0xb36db2fd, 0x7464693c, 0x6dc580b7 } }, { { 0x72ccd846, 0xf5f16bad, 0x8a06a46f, 0xd134c29, 0xba83e7ba, 0x6dc1defe, 0x97cb3140, 0x44d67baa, 0xe057fd90, 0xb10487a7, 0x4d04a508, 0x7eef17ee }, { 0xbeb859f8, 0xdf886a1b, 0x9e82550e, 0x24d7c53a, 0x69e747f7, 0x8c2485a2, 0x2d3b5611, 0x7256a1a1, 0xa94d94c9, 0x4f1c591f, 0xa64ad3be, 0xe0074f11 }, { 0xe096344c, 0x1ef2b604, 0x4117087f, 0xf7f8730c, 0xc07beec3, 0xe87a601f, 0x3d82b5b5, 0x63a4df79, 0x694d768a, 0x5f542bd1, 0x43b895f7, 0x2180b222 } }, { { 0xd55e1e76, 0x60b1a08b, 0xc68e6471, 0x2a11f39d, 0x48e479a, 0x55999e22, 0x22933a4e, 0x9a6bbae4, 0x53b4345e, 0xd9f4a5e7, 0x89d663c9, 0xe9a9f97b }, { 0x4b50f696, 0xf4044b11, 0x622e9d26, 0x178e3b99, 0xd9ea511a, 0xd4b3f4c8, 0x48d366a5, 0xa3fbdcdd, 0x6585d9ed, 0x92959324, 0xcf3506b1, 0xd1f9e009 }, { 0x82f6d18f, 0x9dfc0165, 0xf76ddbf1, 0xd4828028, 0xa7df7d08, 0xa7788de5, 0x340168b4, 0xd0fb173e, 0x161c7a8d, 0x5bb12c6f, 0xc17269f3, 0x4dfd7f2b } }, { { 0xc9c99d92, 0x588c25f4, 0x8abd61c8, 0x3b7de865, 0x79ae47a1, 0xed4dd17, 0xc41742fe, 0x2343d31e, 0x15698575, 0xd5fa28f4, 0xb2e6283d, 0x5c7d1b5e }, { 0x31a71d0e, 0x21ab7b7, 0xc5eba023, 0x78c4cd99, 0x7d76a1e6, 0x14b4ca5a, 0x5df36c9d, 0x2768ae91, 0x1683f219, 0xfdee0119, 0xb640fbed, 0x61a10ff6 }, { 0xe59e7207, 0xc5f144f8, 0x6f364e81, 0xa95db431, 0xe8be8ad3, 0x7cbddd6b, 0x1da02c66, 0x85bcbdb0, 0xea779277, 0x81870c45, 0xc9a53cbb, 0xef6a7543 } }, { { 0x35cff873, 0x5577da06, 0x504e2331, 0x1782921e, 0xb70fa5ae, 0xf798336a, 0x26626045, 0xaac6f382, 0xdc6ad2d8, 0x7c75f24a, 0x924b3a13, 0xad0db1f }, { 0xe3c0248c, 0xf6b02442, 0xcfd3ea94, 0x6aacccf1, 0x61f1f7c, 0x93ece213, 0xed953920, 0xf959f343, 0x3b6a6a96, 0x906f3589, 0x6cf8b538, 0x51709472 }, { 0x1cc77042, 0x8960a659, 0x96fe09e1, 0xfcd018c1, 0x70e61009, 0x3e1d9387, 0xc38e218, 0x269f2f27, 0xfee6f573, 0x47561087, 0x837bfb28, 0x678a62f8 } }, { { 0x51385772, 0xf5092dd4, 0x8f984e97, 0xb4fa1baf, 0x60b941d1, 0xca45175f, 0x6e2990da, 0x1dfccb56, 0xb39b5c34, 0x4ff31958, 0xe4cd06a0, 0x46a77d55 }, { 0x44ec28, 0x260487b8, 0x8da1770e, 0xb10d120e, 0xb96450b2, 0x7bbd67cf, 0x9886b873, 0xba983ab8, 0x76c8fa26, 0x956b92f8, 0x7fbfbf36, 0xd8358197 }, { 0x7b8d4ada, 0xa5259bba, 0xda507221, 0xd96d9eaf, 0x360f21f5, 0xe6e3dbbd, 0x608886e5, 0xfd1a0af1, 0x34d193d, 0xb9986f43, 0xa5808a7a, 0x41350330 } }, { { 0x2b618f43, 0xa27f7ddb, 0xde553c4b, 0x82527e68, 0x85618f20, 0x4546ba4d, 0x485cac22, 0x3c1d1adc, 0x4b71bf3e, 0xd96d390e, 0x3ee9a365, 0x7eb67969 }, { 0x975397de, 0x82dcd355, 0xd64e17db, 0xcbc30a63, 0x157240cc, 0x4a062a98, 0xced86f10, 0xe3c106e1, 0xe81b0d55, 0xfcb22327, 0xc9e16bd7, 0x358427d0 }, { 0x3f2eb5b0, 0x9f289eb6, 0xe9db332a, 0x15678787, 0x68e543f2, 0x696f8b60, 0xa64a2b68, 0x8025baeb, 0xacfbd6c5, 0x374bb9cd, 0x23e5020b, 0x42555f54 } }, { { 0x258ff107, 0xf4d2d1eb, 0x2a071f42, 0x789a6dcc, 0x4b04b45, 0x80988786, 0xbb1d64d0, 0xfa1d9829, 0x1ff2eaa1, 0x5e988284, 0x68ec02d9, 0xf41b3ca8 }, { 0x4f3aea77, 0x70a21bc2, 0x6a832913, 0x2085abe9, 0x39f7bda9, 0x20b2b822, 0x5eeb485e, 0x7e6a6aa1, 0x2abcd06e, 0xb8dd46b5, 0xc00f4e11, 0xd1187999 }, { 0xb8833f37, 0x62ec0cba, 0x4def393d, 0x50602ace, 0x37daa7c1, 0xbd3dadc3, 0x51b744b3, 0x49550935, 0xaa0c00f2, 0xa554f819, 0xf825b884, 0x6bd803d8 } }, { { 0x3a613ca8, 0xb0840537, 0xd2054173, 0x2cf80e4, 0x6fae254, 0x3d774f27, 0x6b0c4aa0, 0xcd20a3b4, 0x62079a88, 0x1abe7a78, 0xc37edaff, 0x2cc952cd }, { 0x2db46ba6, 0x9b045b8b, 0x29d75385, 0xbfac8a50, 0xe88d0dc, 0xb03b6e88, 0x1ffe8c5, 0x835cc680, 0x4ffb9868, 0xcfc5c1b2, 0xcce31f98, 0x9ec8680d }, { 0x37322744, 0x1ab7aa38, 0x3b416e, 0x99cfb33c, 0xdcb20ac6, 0x7b051912, 0xe9046d47, 0x70dc3ec2, 0xca16edf6, 0xe87d23d5, 0x73d9233, 0xf5c40457 } }, { { 0xb52f67db, 0x2a832c8e, 0x18b8639c, 0x5636a988, 0x520f0e55, 0xbfd399ee, 0xf7e50c0d, 0x4b75f623, 0xb9cbde8b, 0x60b109e5, 0xd293c9e4, 0xd56b6525 }, { 0x76879666, 0x8db62e86, 0x9c29e236, 0x4055d73, 0x74efbcb7, 0x6fa63fb0, 0x23309e16, 0x4d3089a4, 0xe6d57fe, 0x80d31197, 0x9767d296, 0xe3750022 }, { 0x3524d5e1, 0x7276fd58, 0x3ece6990, 0x10df6ff3, 0x36e2649, 0x6314ff68, 0x6d955e7c, 0x92be34fb, 0x20529409, 0x32d2fa90, 0x5e85688a, 0x730b99b1 } } }, { { { 0xa569b13, 0xfa8ee3eb, 0x3072c4f8, 0xf8100c70, 0x96e62926, 0xc07d32ae, 0xf7c39f0c, 0x29e775f5, 0x8a4954b, 0x7cebcab0, 0x50a27caf, 0xcae3e2ea }, { 0x55b6cd7c, 0xecbcfe3f, 0x96ac13d3, 0x7045628b, 0x69550323, 0xc24d1f44, 0xad8f0d6d, 0xa1b0e7b0, 0xe2cffca4, 0x4c003002, 0x77e0abe0, 0x8077f3d9 }, { 0xc8752813, 0x457ff686, 0x33d6c24f, 0x18a4984f, 0x17d47bba, 0x22367e4f, 0x35fbb6d8, 0x5f41cad6, 0x60013f50, 0xf4a05bab, 0xd672267d, 0x28b4806c } }, { { 0xb51ae93, 0xb587269f, 0x143df32e, 0x91e3584d, 0xd2317101, 0xf1f9dae9, 0x5176af75, 0x7506c26d, 0xa03f8669, 0x3deb5ddf, 0x3653a458, 0xe67b0979 }, { 0x4d41ec14, 0xf0a4c44e, 0x83f32459, 0xdfdf09cd, 0xa6c1146, 0x31b372ad, 0xd33950be, 0xd4e82283, 0xdfae9e2, 0xb1e629c2, 0x29bcc2fc, 0xd066ab2c }, { 0x5dbdcce2, 0x7c91076f, 0xaea43552, 0xb47fbf99, 0x25090d53, 0xad8ce85d, 0xeff2a938, 0x8333f18b, 0x40cd2b8d, 0x3a32dbfd, 0x508367ee, 0x1732f1ff } }, { { 0xa98b6ff3, 0x2e16330b, 0x737fb93d, 0x262392fd, 0xdf35ac63, 0x9358cd65, 0x63de799d, 0x2a6e5c6a, 0x7885bfed, 0xefdabcd6, 0x9fece698, 0x424dc40f }, { 0xa8e57069, 0x5a2ce4d5, 0x443f2aad, 0x45c42fa5, 0xf06b5e88, 0x4afca6f0, 0x5ef5f08f, 0x16f7ae17, 0xf6c785c2, 0xbfa21957, 0xa075e392, 0x4590747d }, { 0x286d77ca, 0x916de3b6, 0x8487e505, 0x53a97fe5, 0xf238f58, 0x442236ba, 0x36ea3a8f, 0x8e85ef71, 0x22d81298, 0xf9bcca17, 0xb0a92339, 0x5f07f040 } }, { { 0xcc2797d3, 0xf6011122, 0x8189f7c0, 0x9b2efb7, 0x401e4db1, 0x161f1713, 0xbf449fe8, 0xd7fdf4e2, 0x29ea34d, 0x6e78255a, 0x2f850570, 0x15e608ab }, { 0x621442ca, 0x55a340ac, 0x6d3e399, 0x273864a6, 0x766df240, 0xb062da42, 0xd92e2811, 0x50f52de6, 0x8568a734, 0xf2cef5a3, 0x1ef91463, 0x5b761a03 }, { 0x44b9d93, 0x8bc63447, 0x16461fcb, 0x66da5c01, 0x8ae2ec8c, 0x56fbe6d9, 0xb7d61493, 0x11c03dc, 0x6bcafa77, 0x26862277, 0x9fb4846f, 0x7d5a2f96 } }, { { 0x2cdacd75, 0x915de2b0, 0x2d29aad0, 0x5c2eb30f, 0x834d30bf, 0x26f88e3d, 0x6510fa1, 0xe156068b, 0x157a9222, 0x28eb630b, 0x91fcea9c, 0xee216c4d }, { 0xfe665d0d, 0x8e2e2153, 0xcda64a98, 0x8979fb5c, 0x9c9182c5, 0x1e3ec713, 0x2203e658, 0x685ead2c, 0xd23e5b7b, 0xe6b9b7d2, 0xc02fd82d, 0x8f36b45b }, { 0x1d81760, 0x5ec52e53, 0xb4aeb4fb, 0x24c817f7, 0x60986e9e, 0x77301b86, 0xdbfb3756, 0x461fc9c3, 0x8e7e93be, 0xde9feb1e, 0xc5d1cd90, 0x5c0d6f29 } }, { { 0xfa736f09, 0xf8120298, 0x28ae53a9, 0x22e0d25e, 0x4cc17bad, 0x55967069, 0xa739d76c, 0x705c7c5e, 0xd1aeddc7, 0x183a5755, 0x678c5532, 0x34114f71 }, { 0x8e5d1b0c, 0x489d2117, 0xd7b94fb2, 0xe66f5a, 0x1ebcf29d, 0x5eca1a11, 0x1aad152a, 0x73a2cb0c, 0xd88d6162, 0xcda5347a, 0xb88195ea, 0x6a1598d5 }, { 0xb819f2e6, 0xf28cdc65, 0x979e9778, 0x92354d38, 0x84070ae0, 0x20aedf64, 0xa261b174, 0x3b286d2b, 0x25e34a3c, 0x2d5aff69, 0xac81cd56, 0x88b42eee } }, { { 0x2427a70e, 0xa569212d, 0x66b14a37, 0xf00fb9e2, 0xedb97bb3, 0xd6c908e0, 0x1fa4130d, 0x1d8682bc, 0x831b07dd, 0xa595eaad, 0xa60d5060, 0x836efd5d }, { 0x372f7ed2, 0xed271a27, 0xb9db9800, 0xb7e6a18a, 0xc0652c4d, 0xa3ea7771, 0xb144ba5a, 0xa316cb4e, 0x5dc71de1, 0xc770fc53, 0x95b0bb47, 0x30209a50 }, { 0x7cbd4584, 0xbd2819cc, 0x4f307fc2, 0x6541fda8, 0xd3b69902, 0x25ccfca7, 0x7c2933b5, 0xc5fbec2f, 0x5b7dd58e, 0x684c84e7, 0xf2418ec7, 0xe300829b } }, { { 0xbc44182a, 0xbbf3323e, 0x6b480549, 0x74344d33, 0xa9df68bf, 0xb700803a, 0xcc7ef98e, 0xfb01cb53, 0xe3adf712, 0x7aea3a6b, 0x22fd122e, 0x55bcc18e }, { 0xd9093c23, 0x294b500b, 0x39be94cd, 0xa2c78ae2, 0x95d9a3c6, 0x151fe19b, 0x7a47ca36, 0xc234123d, 0xae1130f1, 0xcb888b05, 0x9d57b676, 0xf5ccbf29 }, { 0x1e46e236, 0xe6bec88a, 0x8f8b388, 0xc4ae763f, 0x4dc9432d, 0x91def6ed, 0xcb9ab2e8, 0x6180b312, 0x8e109534, 0xf8a42784, 0x52c86571, 0x971247eb } }, { { 0xcca0d4c3, 0x9657c1ce, 0x68888d37, 0x12cf4a45, 0x4deacc7b, 0xdf8db1b3, 0x6b5f0063, 0x834fc31c, 0x51a3bac9, 0x69f09bb6, 0xc5eddb4b, 0xd6270c5c }, { 0xef3078b1, 0x17041ed6, 0xbb074753, 0x9b49126f, 0xf136362c, 0x6868005d, 0xb48edc3d, 0x2fe21fe0, 0xa2891f8, 0x56d75e01, 0x35d350a5, 0xc88f33c5 }, { 0x8cf70f4, 0xa849d5a0, 0x2b19a3ad, 0xe7df79db, 0x7514b5f8, 0x15ba4d60, 0x7f38e465, 0xa7b4ad3d, 0x2d28a58f, 0x91caa926, 0x55979f3, 0x9ed97891 } }, { { 0x146e789e, 0x5b6faffa, 0x3db0fedd, 0xb54c41d, 0x3e26a06e, 0x5c1956fa, 0x8ab41802, 0x3f012247, 0xff46cd24, 0xf8f4ab87, 0xb259189e, 0x1c432b93 }, { 0xf9fcf7cb, 0xc697fe0b, 0xece7bb74, 0x4b266579, 0x47e59010, 0x1df553fc, 0x22fd2358, 0xc902ebde, 0xc53a7709, 0x5d0d9713, 0x6bc8f73c, 0xa850873b }, { 0x95bba0b1, 0x8a53158a, 0xe9cce3d8, 0xca266d8f, 0x66817453, 0x98fc02d8, 0x8afc4be1, 0xa4fde3bd, 0xacfc22d1, 0x4c902428, 0x8225163, 0xa32062a9 } }, { { 0xdfb1434b, 0x7424b9d5, 0x6d42f0d9, 0xcb183a7c, 0x1184d91d, 0xfed26e12, 0xc7020ff7, 0xfe033223, 0x628a136d, 0x9b73f9b1, 0xc3ee43cc, 0x8fa04e7e }, { 0xb419986, 0xd19939c1, 0xf51e0dbc, 0xec406ea7, 0x88e76b5b, 0x7c0beff4, 0x8b8d9cd5, 0xa4e73116, 0xb8eed76f, 0xee4f9834, 0x8bf500a9, 0x6a09dc8f }, { 0xe7d685ea, 0x5fe098b6, 0x5056ca27, 0x1747e298, 0x575ea935, 0xf9e5e4e8, 0x7fb7f9bb, 0x4a1f9752, 0x9b61a8a5, 0xc37156b, 0x41074fc6, 0xe4110be6 } }, { { 0x75e871bf, 0xd59dfe88, 0xc6aacf0d, 0x8b34bcef, 0x9a7d4d4f, 0xd63a4994, 0x7eabcde0, 0xa67d7039, 0xc2f22c45, 0x727007e3, 0x53aad37f, 0xb943abf2 }, { 0x3c64255d, 0xbbbc2fd4, 0x29ba06c0, 0xd9696f4d, 0x71a7d1bd, 0xeeb4440d, 0xb61f17fd, 0x2a7b2774, 0x5deea17e, 0x69c7f49d, 0x2105ce5b, 0x6e02a5b }, { 0x5397ee01, 0xd72abaef, 0x2e7b3009, 0xe87e8a82, 0xc76b752a, 0xd24ab1f1, 0x88fea555, 0x9e374f8, 0x4c77e282, 0x1152e4f2, 0xb0a36aad, 0x5e789750 } }, { { 0x14d0d525, 0xc7cca0dc, 0x8c587bc, 0x2e8a3e0e, 0x41f566f5, 0x74c0e38a, 0xca874739, 0x12924aff, 0xff8fb7d4, 0xdf3f0dd3, 0x15f6a7f6, 0xf447f6b7 }, { 0x5e983e4d, 0x69ae8d43, 0x91471791, 0xe32baeb2, 0x778fdf0a, 0xeb68a075, 0x5e1e8058, 0xd65cb5c8, 0x56bb0a7d, 0xcffc9005, 0xcf836c66, 0x73863d40 }, { 0xa32a678, 0x873e08d, 0x84452386, 0xce595615, 0x7e8c00d3, 0x1e1c8894, 0x6bb846b1, 0xe6fdb5d0, 0x413bbab2, 0xe7580047, 0x48a7535e, 0x4269e628 } }, { { 0xd31683f0, 0x33a165a6, 0x53eced14, 0x24e503e5, 0x1bd4fdcf, 0xa076d684, 0x5d860641, 0x69150e53, 0x9f246f93, 0x22dacba0, 0x13d77332, 0x7bee81fc }, { 0x5c50cf1f, 0x2b381051, 0x37d091ff, 0x59f3a72f, 0x5ebad272, 0x90f8f82, 0x2c414f7a, 0x1edb8d4c, 0x7a107616, 0xc0fd70b, 0xd9123bfe, 0x36904820 }, { 0xaabbb89f, 0xc1643dd4, 0x8ce4a445, 0xaf0c942a, 0x7fbffd4b, 0x1c790831, 0xdc75785, 0xd68f09a3, 0x28dc7eab, 0x84a04f63, 0x42e98545, 0x889a55fb } }, { { 0xb27b690a, 0xd4191b78, 0x67250d85, 0x495edebe, 0xb6ba540a, 0x7176b92a, 0x99f28239, 0x5da6980c, 0x6748cc10, 0xafddfb00, 0x49a3592c, 0xe7311449 }, { 0xe41ea99d, 0x692019de, 0x889ba6a0, 0x93325f04, 0x198a14b, 0xe1236535, 0x75fa7d41, 0xdcc56f3, 0x726252fc, 0x240e124b, 0xf6db7a37, 0x18466e31 }, { 0x1848edf8, 0xd8aa5269, 0x596c51e0, 0xe258a0cd, 0xe6854cee, 0xfe522524, 0x46d47d61, 0x4fcd070b, 0xe111a3e0, 0x9a2be5b6, 0x73d3185d, 0x29d958c4 } } }, { { { 0x938d2ddd, 0xcb8ca42d, 0xac083385, 0x6621d1a, 0xc708c755, 0x7c6f2dd7, 0x1dacbbbc, 0xb4b5b662, 0x3a040727, 0xdedd1cf0, 0x1b52ae97, 0xe2c98cff }, { 0xb6406961, 0x5ddbf525, 0x79d8d6d9, 0xd1bcbea1, 0x47ba208e, 0x9461e08a, 0xa835aa3c, 0xc2e6deaa, 0x683a0d1a, 0x8bcb4d16, 0xd384b446, 0x3277d05 }, { 0xbaa035c2, 0x425be964, 0xc71bdb7e, 0x2a03e5b4, 0xf051bec4, 0x6c408e61, 0x54038af2, 0x14858acf, 0x72219208, 0xa59a91e6, 0xdd26667f, 0xda714be3 } }, { { 0x8f3bedae, 0xaa80ae93, 0x645d950a, 0x1281e779, 0x6aeb7ddd, 0xa6dadd08, 0x30d530d5, 0xe5fe0f88, 0xa13c5b4c, 0xae1403aa, 0x4e11cc4b, 0xdd0c43f3 }, { 0x65262612, 0xd3a1714e, 0x84d4fa55, 0xfbd077b5, 0xd313dbb5, 0xb78d64b2, 0x101c4435, 0x2c05db1d, 0x8ce24a7f, 0x270b0697, 0xd345df4d, 0x5328d5e0 }, { 0xd021b861, 0x2c72d87e, 0x224e8b39, 0x5bd7bfac, 0x51478d11, 0x5471395c, 0x373d0812, 0xf250b7b4, 0x4b5e691d, 0x7c71215, 0xb6b924c6, 0xb10fd2f2 } }, { { 0x6958cb88, 0x7bad0a54, 0x9a4be90b, 0x8099ff0b, 0x72f2cb79, 0x38ff934f, 0x9753cc09, 0xc80b4df4, 0xd2c8d8e4, 0xe1150482, 0xe633b5b, 0x3ad0e559 }, { 0x183a1cf9, 0xc1b282f, 0x8460cc02, 0x88848dba, 0x8ea45964, 0xcdc07245, 0x89e918a5, 0xcae0b5d3, 0x9701a52b, 0x5297fa4c, 0xa8957cbf, 0x97ed0013 }, { 0x9c03e28d, 0x8231304e, 0x20f2b8ea, 0xa5370585, 0x3f0e1b66, 0x282c4450, 0x211ddee6, 0xe6c651f0, 0x389c5ec1, 0x18512e3e, 0xa0ee09b9, 0x818d5e1a } }, { { 0x50518c68, 0x26ac8e0a, 0x2c6e451, 0x4b4a93ef, 0x30bd02f9, 0x9535788f, 0x8bf33f23, 0x289007ad, 0xb172d122, 0x611aca3, 0x1e8d27f9, 0xc0b20d23 }, { 0xca4b3a69, 0x88edecda, 0x776d1892, 0x58817cc1, 0x5942d78d, 0xe191293c, 0x12f8ac40, 0xb1196f1, 0xdd081a82, 0xa2a42866, 0xabe51767, 0x16990201 }, { 0x2c873fd4, 0xa6da4a21, 0x7d562d30, 0x427aa75a, 0xc75eee3a, 0x6d203bac, 0x2dd92fc8, 0x224241e2, 0xb066ccbe, 0x99fd3c13, 0x13a10923, 0x4362027e } }, { { 0x648bcccc, 0x692a8af, 0x4784dd5e, 0x2ab8516f, 0x5354caa5, 0xf1bbe925, 0xf7f87612, 0x4d622533, 0x7af2ea57, 0xc60055ba, 0x9426d5e1, 0x70b5b62a }, { 0x65b60a7b, 0xa8074ea5, 0xcba6bb3a, 0x5d815bd0, 0x60802cf8, 0x9e68cfac, 0x56f5a661, 0xcf021505, 0xd3b83945, 0xc52a5d13, 0x2492cdde, 0x8acccb5a }, { 0xce018a, 0xf1e39a44, 0x42f3efde, 0x23af843a, 0xc6aefe93, 0x5b853999, 0x4be9dd9e, 0x9ff41017, 0x76e035fd, 0x6f132839, 0xd3361174, 0xad262c86 } }, { { 0x64e8fa2a, 0xc2e7b690, 0x2aed06f5, 0xe5e9437c, 0x510db1dd, 0xee36b7fc, 0x5f700c0e, 0xaf4a1e94, 0xef93fae, 0x4bd214fc, 0x952ccc4, 0xc530a3d4 }, { 0xacb1ff3c, 0x856a5188, 0xd139dfae, 0xa80821b1, 0xddc3677b, 0x20727391, 0x97598d6b, 0xe3e8b76c, 0xfb41d83d, 0xe7ce711c, 0x9d64658a, 0x3200e19a }, { 0x6c8f1335, 0x8212d04f, 0xa04d5bb3, 0xdea3965, 0x4b21f323, 0x5254173, 0xcf87e500, 0x762fa37d, 0x1ee3e584, 0x4c47fa01, 0xcebd794c, 0x6528fd28 } }, { { 0xa65b07e8, 0x531e0ccd, 0x703cf255, 0x5b2987e8, 0x15daa0bd, 0x4eacba08, 0xcdb79be7, 0x738a689e, 0x560a0b66, 0x76119810, 0xd1cf2790, 0x7ed01984 }, { 0x5f1ac61e, 0x1931765b, 0x374cf454, 0x58f12289, 0x12b45219, 0xe25e764e, 0x51030db0, 0x3720bc5a, 0x2bd3ea28, 0xc540a892, 0x78647c42, 0x282c67c7 }, { 0x2c854738, 0xcb54c712, 0xd6bba480, 0xac28bb4, 0x48466894, 0xd4e98738, 0xf1bf882d, 0xa23a0364, 0x24baac45, 0xf9c350b8, 0xa6fb8485, 0xba09b31c } }, { { 0xeeba2a77, 0x2231a079, 0xc1d28d83, 0xb752bbb2, 0xc9c6f9f7, 0x6bfd15d2, 0x41584bc9, 0x62078d36, 0xed54882f, 0xea5318da, 0x5ad96b5b, 0x5b657b30 }, { 0x7ba9af, 0x8db3c3c, 0x269dd17a, 0x9c273ac7, 0x78cbbea9, 0x95094c4d, 0x645d5f71, 0x4b6a2fa3, 0x36de19fb, 0x95e94927, 0x859efeb9, 0xd02dc138 }, { 0xd0881434, 0x8a291fab, 0xf8831ea9, 0xf7a25ec8, 0xe8372395, 0xcc1bae1a, 0xe75d0003, 0x38ae256, 0xe84aa989, 0x85f4541e, 0xfecc6a50, 0xd95a961e } }, { { 0x5c5cf6a4, 0x5e86f7d1, 0x8a5c5ad3, 0xbcf83c78, 0x3777a977, 0x3f39b1a9, 0xef87f6d, 0x7e075288, 0x59e26f53, 0xafe46137, 0x6d064e04, 0xc988624b }, { 0x2670914a, 0x467fa63a, 0x59389bed, 0xc09bbcf3, 0xe1af390a, 0x81257a54, 0x7d58a396, 0x1c6a9e8e, 0x56fa0eba, 0x286df064, 0x1aaccae4, 0x8fa4a9a2 }, { 0xd426bfe2, 0x20c9943a, 0x4c856252, 0xe8a9352, 0xbacaf2b0, 0xbc67995a, 0x728fd945, 0xf58fb46a, 0xd22927e6, 0xb148dc4d, 0x116b1004, 0x623b06f2 } }, { { 0x8ebe3dcc, 0x6e9bda05, 0x93eff647, 0x51d0878b, 0xba5a58a1, 0xf628c409, 0x928f1e5e, 0x828a3dea, 0xc42219f5, 0x48cf2320, 0x39b8e6a3, 0x73f884e4 }, { 0x74a98d3d, 0xb3e922ba, 0x8fe83ce1, 0x1fc82133, 0x14ac0948, 0xdf65872c, 0x13c3f259, 0x43b077f1, 0xcdf70f84, 0xd198e20f, 0x5cd86c0c, 0x3fbe368c }, { 0x793f0fb2, 0x71b17ad8, 0xbd3f8f54, 0xedd55c76, 0xf615dee, 0x58f6f71b, 0x44b9ed3a, 0x208cf834, 0xe89a7a48, 0xa3b175c2, 0x801e0563, 0x228e7fa9 } }, { { 0xb77baa85, 0x4cc3ebb2, 0x79b25988, 0xfe537b3, 0x4d9ff968, 0x3d9862a1, 0x3242219f, 0x5e9c442f, 0xb639b09c, 0x38ee65f7, 0x3ced2b24, 0x37fb81c0 }, { 0x27e3b216, 0x526458d7, 0x5b962419, 0x48ac5bc9, 0xea8cbfa9, 0x6150969f, 0x834dfa77, 0xe288cbbf, 0x83b20e45, 0xb8826220, 0xce49fb4, 0x66675b61 }, { 0x2ed04c4, 0xc9e35c96, 0x9ea85bd3, 0x3fa7f2a5, 0xab3341f9, 0x7a1530fa, 0xb5ecebc5, 0x3c73c8d7, 0x4d6fb325, 0xa4d840bb, 0x4e6b7e61, 0x4059cd63 } }, { { 0xb8a50572, 0x2e585c97, 0x81b9d52f, 0x76fc996f, 0x5da664fb, 0x92017e28, 0x7e38a9b1, 0xb2de999f, 0x687a257a, 0xc68b4f23, 0x4f4ad085, 0xe43937cd }, { 0x18ff9dfd, 0x955021e, 0x6797cc4a, 0x282cde40, 0xad9cb768, 0xaab9419e, 0xf0a4148b, 0x9386e0b8, 0x27e88d80, 0xdffc4b16, 0xd73c20a2, 0x34fa18c7 }, { 0xb021a4c3, 0x5fa92fd6, 0xfb061ce2, 0x3efed075, 0xe7150d48, 0x2efc8ac7, 0x6b184c3b, 0x2288ec02, 0x4e4d090, 0xa0b06017, 0xae8f6db2, 0xe9916217 } }, { { 0xc0f946e4, 0x6d5a7d59, 0x73396804, 0x28ead038, 0xd0080e58, 0x39690bba, 0xa2675bec, 0x8dec0996, 0x48fa64c2, 0x8cd0ac80, 0x516ab912, 0x9569a08d }, { 0xcfa50e2f, 0x3b53fcfd, 0xc33ec6c4, 0xacb74a1b, 0xf0e6dd91, 0x8ba558ab, 0x2e40bc97, 0xd1bdc7e1, 0x7db49e24, 0x1926612d, 0x69a175f0, 0x30a1027b }, { 0x15fc2211, 0x55ce1dd1, 0xf40f9c0a, 0xcf49d93d, 0xfd44e646, 0x85b027a2, 0x84713c58, 0xb1a04924, 0xd4dbfcf1, 0x9b8aa6b0, 0xeab86122, 0xee89d12b } }, { { 0xe4cba822, 0x4c7ab744, 0xad6d9591, 0x7956b947, 0xe2ac09b6, 0x3441ed9, 0x655c2f67, 0x46ecfb97, 0x6742c5e5, 0x4754b0a4, 0xca4e9671, 0x721531d2 }, { 0xadefb6d6, 0xa6f0b88, 0xdcbb78f6, 0x12d5a589, 0x36c8ad0e, 0x364c2c5d, 0xf2483d5, 0x6159d8f6, 0x871e007b, 0xfacf89f3, 0x5ba535e5, 0x33f6f3be }, { 0x9f9738a0, 0x70913836, 0x37ac0415, 0x94102991, 0xf7e946, 0x545247f2, 0x7f3f2b6b, 0x766a819e, 0x3fb6f8e3, 0x50b7e5a5, 0x22092a6, 0xa5f22d2f } }, { { 0x1c9bcd67, 0xcd4d7608, 0x32c1d998, 0x39108aa6, 0x280a2e43, 0xd1ae7e7e, 0x403b5bed, 0x6b15315f, 0x1cac78a, 0x6fa4ad99, 0x91cbfa36, 0x3d92d328 }, { 0x4ad18546, 0x8a139949, 0xc9494c94, 0x67db5b8c, 0xd454ebba, 0xc838493, 0x19865cf2, 0x5a474806, 0x902357bd, 0x345cb75b, 0xd0f30880, 0x5f6bae46 }, { 0x4ddfcc32, 0xa7043230, 0x59c30c63, 0x49ea3a8a, 0xafc7420f, 0x8651e776, 0xb9bdcb28, 0x6fe0f9fe, 0x46373b3f, 0x6ef0e3fe, 0x5a8f1f27, 0xf49f7629 } } }, { { { 0xfce41f44, 0xca9eacfc, 0xa43a9db3, 0xb9cfe3d3, 0x358233a2, 0x14485c3e, 0x4763a001, 0x564f526d, 0x2dfe0961, 0x4ee9c460, 0xe178f0dd, 0x6ec7b4f1 }, { 0xba02e247, 0xaa835a97, 0xedc74e22, 0x4229be57, 0xa0662dce, 0xc5888e73, 0x59787021, 0x9653e84, 0xb32238eb, 0xd16e2e4f, 0xd2b1451a, 0x37c8cfd1 }, { 0xe923e162, 0x20fac70d, 0x2b9cc720, 0x71e28b7b, 0xc00a190f, 0xc9a9fb64, 0x53edf0aa, 0xae0cacf6, 0x5b895277, 0xf75d4299, 0x1f0fc0a4, 0x999b6b9c } }, { { 0x7239791a, 0xa7dea6c3, 0x18a2dc70, 0x81b36b97, 0xbe4aa8, 0xa6ea5ffe, 0xdd91bd58, 0x5b36793f, 0xeedf4911, 0x79f21569, 0x2dcf6492, 0xafce4ec9 }, { 0xb5cf180f, 0x6ffa961b, 0xad660f0c, 0x4014511d, 0x269314fb, 0x4bcfc04e, 0xafbfc09a, 0x84c6fa1e, 0x57fe57fa, 0x3e451537, 0xe68ef9c4, 0xb7362eb1 }, { 0x73dd2533, 0x67a488e7, 0xf6ec4ee1, 0xa6c92431, 0x8fa74e50, 0x4d1c360c, 0xfead007d, 0xfb350315, 0x930482f8, 0x8a5d9025, 0xabe7317a, 0x432c2c3f } }, { { 0x7e1f65a6, 0xb5d2f6aa, 0x316a6ee4, 0x296a6637, 0xbeba0b08, 0x15733611, 0xf01dd819, 0x733b8748, 0x6919e37e, 0x9b68c2f9, 0x236a180c, 0xfe69084f }, { 0xd0c7019a, 0xb9ab99be, 0xa128601d, 0x764855d4, 0xa85ac323, 0x484961c1, 0x5fd1d27, 0x4ac2a5b5, 0x3b0cf325, 0x58dbefc9, 0x3b01a6ea, 0xc6d95900 }, { 0xf6a8e3c8, 0xc4829080, 0x626cc564, 0xce444de1, 0x601c3f63, 0x9470bcec, 0xa1ceedbd, 0x9f3ecff0, 0x48e829c6, 0xca93967e, 0x3ffa2f78, 0xfd8d2b86 } }, { { 0x118386f0, 0xe42c0d9b, 0xb8a42cb4, 0xc3bbde6, 0xb11bc3ae, 0xea47029d, 0x8eff857e, 0xd4a6fe3b, 0x77a37247, 0x65ef1979, 0xc6ae454f, 0x2c579a1c }, { 0x9bbbec14, 0x75f1b839, 0xfed885c5, 0x8e9b4e23, 0x8456ae35, 0xed6f3ae5, 0xa8302d2c, 0x2f38dc85, 0xea2f7f5a, 0xa2168729, 0x165d78e5, 0xb533b5b9 }, { 0x47e6aa3d, 0x721a883d, 0xfc2e4e46, 0xbc333eca, 0x22c5860, 0x7608abf8, 0x54d7fec0, 0xcdcb0eaa, 0xc1bd4ba, 0xae1e10be, 0xbc659245, 0xcab6b9f8 } }, { { 0x448c6476, 0xf608837a, 0xfdd2172d, 0x9ce00380, 0x41af7f3c, 0xd9544f71, 0x16cf9c3f, 0x73f59811, 0x70661860, 0x7ccae93, 0x380dfc4e, 0xb0237e20 }, { 0x5aed8483, 0xdf6b01bb, 0xb210a461, 0xdc843a65, 0xf47b024f, 0x9d6ee616, 0xd5147208, 0x9c5266d3, 0x287ef477, 0x5121d961, 0xabac21d2, 0x52bcc8be }, { 0x7b32f961, 0x61e0d777, 0xab38d940, 0xe88dc25d, 0xc3a15dfa, 0xc09c4e0f, 0xd73cdb38, 0x4b14e50e, 0x5adf2774, 0x296a27d, 0xaa548fb, 0xc61fee81 } }, { { 0xa0204404, 0xefcc8746, 0xab21be80, 0x7b4c750c, 0xc65aaa87, 0xf918ab48, 0xf9d08e41, 0x7780e84c, 0x5278b237, 0x9febff10, 0xd9ca3211, 0xc1393c33 }, { 0xa22a0823, 0x6fca09d5, 0xdac7ef8e, 0x140f5ef9, 0xd448bdf2, 0x3eef82b9, 0xa2bfca51, 0x1f2e47c9, 0xfd723e76, 0xe0059d8f, 0x5670ca79, 0x1cd3a897 }, { 0xd2a679f2, 0x1c53e0c6, 0x62d0560e, 0x1a6d4072, 0xbb688eca, 0x8d026524, 0x124fc34e, 0x2fdd7cd4, 0x81c10a58, 0x1edb62e8, 0x30fc237d, 0x6d8e43e0 } }, { { 0xf2d467f, 0x5c55f758, 0xd3203fe0, 0xdb72850a, 0x26e105b5, 0xf0a62bd6, 0x952d7aef, 0xb5467124, 0x15a01a7d, 0xf4d7c4cf, 0xa51379ae, 0xeafe93a1 }, { 0x7e45c8d5, 0xea6d5597, 0xc26fcb90, 0x835db03, 0x2b9c7d71, 0x2361313c, 0xacc54831, 0x33a26965, 0x9d46beac, 0xa53ccb95, 0xac5386ce, 0xdaa063a9 }, { 0xa0e7d223, 0xa65a8bee, 0xaaf1fd50, 0x129a0b6d, 0x33acd480, 0x85b00930, 0x14e5cfd, 0x15533fd0, 0xa47dedaf, 0x649aacb4, 0x1b748ba0, 0x3a14c3d } }, { { 0x8a48863, 0x94815631, 0x37867b97, 0x1b03525d, 0x5ad6d353, 0xde4c4c68, 0x5b93a892, 0x420bb905, 0xad6c0032, 0x788a63d3, 0xbe70d9cd, 0x20b0e9bb }, { 0x1101ff4f, 0xf8c19067, 0xdb7bd0f2, 0xe2c44fb0, 0x7c905426, 0xfd711ac6, 0x12ccf32b, 0x27b12342, 0x2a7a59e, 0x781f7f34, 0xf214760f, 0x681835e4 }, { 0x192234d0, 0x696bfebc, 0x968bd20, 0xb1bd6a1b, 0x9e7db463, 0x56d8c54d, 0xafba727f, 0xcef3c873, 0x5ddbd362, 0x224f752, 0x6121ab80, 0xd8901221 } }, { { 0x76672909, 0x3c53fa7c, 0x2771306f, 0xb91432db, 0x675679f1, 0xde327e40, 0x1f2f7d5a, 0xdfad65d9, 0x426bd199, 0xb72ebde2, 0x580eb555, 0x69191b5a }, { 0x878df00b, 0xa4d5f145, 0x12ae9401, 0xddd278e5, 0xd4033c41, 0x7bf64641, 0x46ae083d, 0x3aced4b2, 0x702baa38, 0xe53887d1, 0x7b6b9331, 0xb255881a }, { 0x36b1133d, 0xe9965fc6, 0xfc97dd39, 0x17eef7e6, 0x51a4baaa, 0x39c5946d, 0x18e5603c, 0x79d55e56, 0xb1921770, 0xbb98cb9c, 0x6eacffb4, 0x2db7a5f5 } }, { { 0x6581817, 0xdfb89cd0, 0x8ddf5e5b, 0x300cf0d9, 0xb2478a41, 0x7c1b9e1d, 0xbe368a2e, 0x92019138, 0x1c0b3ab0, 0xd375685f, 0xffb66e2d, 0xb74c8fa7 }, { 0x1f7968d7, 0xbb2b167a, 0xa825c033, 0x614f53bc, 0xef21acb0, 0xc1b49d91, 0xfaad9497, 0x14d47c2e, 0xa1e52054, 0xc060fe86, 0xebecdcd4, 0x11237c3f }, { 0x7fe11742, 0x8bcc527c, 0x5c031be6, 0x6dc19d86, 0xfbccb63, 0x66c09cd0, 0xc3494634, 0x616065e2, 0x90148102, 0x5089d2ef, 0xd1737f1c, 0x6eb5bca7 } }, { { 0xde6ea64b, 0xf8a9aab4, 0xcd94ed8c, 0xc029cc6f, 0x165df931, 0x4df4707c, 0xd370a72b, 0x43830c2, 0x3551d388, 0x76bef0b2, 0x6f704123, 0x3337f320 }, { 0x2fecf70d, 0xfc89379c, 0x2c864f0e, 0x10d7242d, 0xf54258a3, 0xc25e2d77, 0x5718ec4a, 0x6c552a77, 0x32b54aa7, 0x92c4f3, 0xd1863a66, 0x75abced5 }, { 0x46feaea3, 0x7927f8ce, 0xdedfc32e, 0x142bc2b0, 0x742bad65, 0x67481c1f, 0x71e41539, 0xf1e32ac8, 0xcd34a9a1, 0x26b48dfb, 0x887f7909, 0x8907d9f1 } }, { { 0xfe6fae0a, 0x66a56963, 0xb557c23e, 0xbd606fe2, 0x24636f5a, 0xef27cbee, 0x223d76f4, 0x3daf772e, 0xde1e91e0, 0x2ffa4d64, 0xf8dca861, 0x9dbd9efe }, { 0xb09d970c, 0x1390a8f6, 0x17e1fa91, 0x43d02388, 0xb8fce66e, 0xe3a68d36, 0xe6a15165, 0x9dcca1c4, 0x18f4a696, 0x49ac46df, 0xff4d5862, 0x79449785 }, { 0xfdb097af, 0x5181edb, 0x5ce7ca48, 0x1ad7e590, 0x9732144a, 0xc2db6d62, 0x51d8cf7e, 0x3dfef55, 0x5ca12f86, 0x2e4fe454, 0xf6b3b37d, 0x80e978c8 } }, { { 0xde678a49, 0x8096905f, 0x631efe8d, 0xe9e1d83, 0x5a0e9453, 0x1d4120f6, 0x80726b76, 0x788c8474, 0x65c545f9, 0xa3edd00b, 0x59e5fe8d, 0x52ecfa24 }, { 0xcfd292b5, 0x5b300ab9, 0x692c0ba0, 0x4aef21df, 0xabb424e0, 0x8701de1, 0x20732a27, 0x81694a61, 0x486bc97b, 0x9feb8645, 0x15b77fc1, 0xfd2a06c0 }, { 0x55f2ca22, 0x34f8aacc, 0x9ee6b2bc, 0xb55c0df2, 0xe9e68b38, 0xf0b8a481, 0x1eca017b, 0x7f2c518a, 0x56b47cfd, 0xa5087896, 0x8e67f519, 0x7ec35493 } }, { { 0xa297edfa, 0x9acc2c06, 0x4e4140af, 0x5244982a, 0x9a3efb20, 0x641bb288, 0xbbb8fa43, 0xe8ca529, 0xe65e4010, 0xbad4a38, 0xf7ef9012, 0x37aa40e7 }, { 0x5b431300, 0x52f9fa49, 0x5aea2697, 0xdae0f787, 0x32695832, 0x4ebf7e84, 0xdcdfb6bc, 0x2aa3529a, 0xdeac6f61, 0xf3316a38, 0x9a30bf6e, 0xd1b49eee }, { 0x816a0277, 0x7e4ead34, 0x2c2c49c9, 0x7fa0d5f, 0x76472f4f, 0xb156fdde, 0x142fd7b, 0x6ade0f2b, 0x92e2dd04, 0x9e8d4ca7, 0xf83dd28f, 0xf06aba32 } }, { { 0xc4411802, 0x56db250d, 0x8b3418b7, 0x7505ee7, 0x73eb1ac5, 0xa529dac5, 0xd7f8c1ca, 0x557259b, 0xdfc16a0f, 0xe5f4b482, 0xd1a85d93, 0x6ab92f15 }, { 0x2ee1a6b4, 0x5d11c269, 0xea62be12, 0x84bda6f6, 0x6a24db06, 0x9936079d, 0xc64f3c97, 0x433ba82e, 0xde1c906b, 0x63a8c723, 0x988b1c3b, 0xeb1c025d }, { 0xc4f0fc24, 0x2a340e15, 0xa1e70cee, 0xf4fc9bda, 0x6ddce65c, 0xb06cfc2b, 0xe9136889, 0xd7acf578, 0x8cf9d022, 0x9678f1ea, 0xacb9a0c9, 0x26ac833d } } }, { { { 0x67a9fe07, 0xb933486d, 0xbc0807cb, 0xd41885b7, 0xd5dd98fd, 0x810a81c3, 0xd45c8e43, 0x23cb488a, 0xeb48569f, 0x280390a5, 0x418d5c01, 0xecfb81be }, { 0x71f12886, 0x8fd243d2, 0x9c3eb1ab, 0xb56bcc34, 0x1df4a52, 0x79023612, 0xf099caf9, 0xbf42cc00, 0xa87a1b1f, 0x60b6ab8d, 0xbb700cd9, 0x5fca68 }, { 0x134b4391, 0xfe640bc7, 0x9bb7c1b3, 0xef1314fa, 0xafdd0151, 0x13861213, 0x2d9613a6, 0x74366ae3, 0x4efceb8, 0xfa05a65a, 0xa64bbd6d, 0x884f1e93 } }, { { 0x74bea3fd, 0x22ef8ed7, 0xae31a35e, 0xcb503ce1, 0x107a79a3, 0x21e430c9, 0x1ffe9b8, 0x8c7f3b5f, 0xe28f6542, 0xac85672b, 0x4cbb9e74, 0x48165c73 }, { 0x996f591, 0x4e85e339, 0xb8fd3144, 0xdbd99105, 0xc0d7793c, 0xd3f8345d, 0x711a317e, 0x4da3a439, 0x175054b5, 0xd21beb9, 0xe4aec380, 0xe2e96653 }, { 0x33f90c82, 0xd468cac3, 0xc139478c, 0x74fda8eb, 0x73ff0ae8, 0x98ed3d14, 0xe69cc5ab, 0x14fb5970, 0x88e903d4, 0x9a2cf9ce, 0x9526e5f, 0x4e29de49 } }, { { 0xf908d929, 0x4c6cf680, 0x9a6f5411, 0xa2a1daf9, 0xbd11f1aa, 0xf074ee62, 0x6bf37118, 0x10a99427, 0x32e4e204, 0x7cd3adbd, 0x58d0da43, 0x7612e773 }, { 0x1a9538fe, 0x6e9787ee, 0x9bf90408, 0x5451a1d0, 0xb48af59, 0x93c5863c, 0x9e597494, 0xa3ad4f91, 0x1e04af36, 0x7ae983af, 0x1df889d5, 0x54fd2dfc }, { 0xb195398a, 0x775c313f, 0x94d24f5a, 0xccb6b524, 0x9cb6ecf2, 0xc5556b66, 0xbc65a8d4, 0xf3d2b297, 0xbf0527dd, 0xab627660, 0xe8c1fc56, 0x5be68b85 } }, { { 0x33cf3b32, 0xb21be941, 0xe8d94207, 0xd49f80c0, 0x15301161, 0x42db196, 0xa27b1252, 0x68bee91b, 0x6bdc8f5a, 0x80bfdb0b, 0xe2c870d3, 0x1e4f6da1 }, { 0xface035a, 0x280463d7, 0x90be077c, 0x51c445aa, 0x56057d2b, 0xdd71db16, 0xd890783, 0xb433faf6, 0x76eedf78, 0x3d2fbc99, 0xc08931de, 0x499eca5c }, { 0x5774b3c4, 0x11f8b661, 0xe5c4e33, 0x3cc00fae, 0xc2ee9c16, 0xd9cc7514, 0xf6d8f1b1, 0x4797efe1, 0xaa7cfc8b, 0x58a5e0cd, 0xdda37ddd, 0xfac3a98d } }, { { 0x3afff9e9, 0x68348cf3, 0x22a4134b, 0xc09bb28a, 0xfd62aea1, 0x1e524701, 0x34ce2f6a, 0xc126f2d5, 0x170fe064, 0x294cba83, 0x3750f7e, 0xbd43fc38 }, { 0x22a5736b, 0xaca4fcf6, 0xd02ebd5c, 0x2a261d4d, 0xc55389a3, 0x54387c48, 0x31fedfb9, 0x781aa60c, 0x37dcebee, 0x8555a9a8, 0xaad191dd, 0xdf9a54ce }, { 0x538c0905, 0x4ae12cee, 0x4a8b1943, 0x7fc489eb, 0xb08668e, 0xa6d3779c, 0xbb91addd, 0xbae8cc61, 0x5257bbdb, 0x69e3ca17, 0xc739271b, 0x60817a44 } }, { { 0x58eb4743, 0xec7fefa8, 0x96c8e9cc, 0xdaeba5ff, 0x8d06893c, 0xdf83596, 0xb0370fba, 0x4f391879, 0xffe312bc, 0xbc93e689, 0x66fa0d80, 0x1dcba331 }, { 0x2479a5c0, 0x2cf7110f, 0xa043f931, 0x5e19c20c, 0xa6038783, 0x444e00fe, 0x634f2808, 0x8b42d476, 0xcb4e4d42, 0x1e705b36, 0x3f694770, 0x4adcc1bf }, { 0xd6aede66, 0x5c350ef8, 0xcfdbb614, 0xfff2557e, 0x049ad6, 0x57a6227b, 0x69c183cb, 0xab938cf3, 0x35c4bb7c, 0x6a6346c6, 0x783293f4, 0x9bcdb41a } }, { { 0x59ea1ef7, 0x9daf71b, 0x4c292802, 0x255e3d28, 0xbcd16723, 0x90104c57, 0x42cd616c, 0xba4b6297, 0xcb9b900d, 0xf7a15a02, 0xbdb72e65, 0xfaaa23a5 }, { 0xd324e384, 0xc2256f1d, 0x70a58b35, 0xd95d044f, 0xab045d05, 0x9b30d0c3, 0x3a661a8d, 0x9e8e4665, 0xc1b5b88c, 0x1e5a0ae9, 0xa52a01ed, 0xcb0f4cf5 }, { 0x1aab432c, 0xffc2f4c8, 0x90eea9db, 0x79219839, 0x186d02d3, 0x401b5f88, 0xb64fb06, 0x47cbe112, 0xe2b5b30e, 0xbd93bc0, 0xe26cfad2, 0x82c866b2 } }, { { 0x4da64f99, 0xc4d1b1c0, 0x16872cc2, 0xfab0ca9, 0xf5301d2d, 0xb04b61dd, 0xfedea288, 0xdd3110c3, 0x4ab949c8, 0xe766a1f7, 0xd483de3c, 0xc47fd883 }, { 0x41d8229c, 0xcb97c1d0, 0x23c70cee, 0xf1bb9a3b, 0xc2277e84, 0x2f16d3df, 0xc4012a46, 0x1ebfccfb, 0xeac6d962, 0xbd98b6d0, 0xd6249231, 0x6aebf551 }, { 0x5db96c0e, 0x63ff3846, 0x2384f72, 0xd9962fd2, 0xd8365535, 0xd37d8d53, 0xa395819b, 0x2397e61, 0x9a0c1df8, 0xacf330a3, 0x46b00e86, 0x1df5324a } }, { { 0xd27f3fcd, 0xd494a3b5, 0x64f10966, 0xc957938e, 0xea6384fe, 0x4f9fffea, 0xff76feb4, 0x5ef848b7, 0x78a4b9b4, 0x92dd4f06, 0xc84b7746, 0xa62e0062 }, { 0xcf517ee1, 0x487889a8, 0x8fde79dd, 0x94084a6b, 0xe9115c45, 0x227127be, 0x5fe47676, 0x5febe56d, 0xc622797d, 0x2112767, 0x86f44cd1, 0xfcf8afe7 }, { 0x12bc47a2, 0xb8b7e2ec, 0x48dc13a6, 0x83fca723, 0x4e4c8388, 0x60b8af9a, 0xfaa359b4, 0x2883e522, 0x5050486d, 0xda5afc90, 0xc91ed9f5, 0x588a89eb } }, { { 0x86a839d7, 0x8dc933e7, 0x9661765e, 0x514e4e37, 0xd506920f, 0x8763ed15, 0xac0ca8e7, 0x7ea01304, 0xe4f6120, 0xa7870f0c, 0x1769b672, 0x372d434e }, { 0x78d5be8d, 0x70598235, 0x4a8afb3c, 0x267c393, 0xb3c5dc0c, 0xd2aa9e56, 0x3298d11, 0xcca2e0ca, 0x91dba4ad, 0xe3aca7b1, 0x351a7cd7, 0x902e9395 }, { 0x32229afc, 0xef41c69, 0x13c40f04, 0x46c10c8e, 0x1082e54d, 0xeb9a3cc3, 0x4c92e037, 0xc0ec674c, 0x507024a, 0x74559f29, 0xaa849075, 0x5a9d975c } }, { { 0xbcb2e6c9, 0xde3e0d7d, 0xd131c875, 0xf908f03c, 0x32729bb5, 0x2f39edc9, 0x916382cb, 0xe524b749, 0x8f3c7e11, 0xac562f5e, 0x5e51b151, 0x1904ff64 }, { 0xbd94f56e, 0xab65e2f0, 0x5ecda675, 0x822a2cea, 0x59c292bb, 0xdfb068ca, 0xb35f93f7, 0xb5a6ceda, 0xa90331bd, 0x1295387a, 0xe24c8a82, 0xf5a7b96e }, { 0x8631ae43, 0xf533961, 0x2883909a, 0x355b4f04, 0x194dc2ec, 0x1735f668, 0x18294594, 0x83beeb6b, 0x2ed93654, 0x3c83840a, 0xbcc35b24, 0xf3b7ca1f } }, { { 0x38a6cc5f, 0x965386a1, 0x67259afd, 0xa210ec8e, 0x623baa02, 0xd11218c6, 0xb142f541, 0x3b922075, 0xdd0e6592, 0xac2085f4, 0x473fbcf2, 0x0cfde1 }, { 0x90ba0f89, 0x9e89ec15, 0xa3ee90e9, 0xdd4a1c37, 0xb6cafe46, 0xde593554, 0x2e798c0b, 0xabb58e1, 0x34f10f38, 0xdf812799, 0x94b8a19e, 0xe44b0fc6 }, { 0xf7d59287, 0xa8abdc19, 0x53f77c2f, 0x8275dc7c, 0x8ee9a90, 0xead063e9, 0x68a2d57c, 0x95977447, 0x609d8638, 0x7b288a5a, 0x7064100c, 0x2647a136 } }, { { 0xd25b3b2d, 0x3a5907f7, 0xa596789e, 0xe2d9eb4a, 0x3c318acf, 0xcece3c34, 0xf800c96e, 0x86d9c2da, 0x27d01335, 0x52ac7f7a, 0x315442eb, 0x939625e2 }, { 0x3a6b7d08, 0xd08523a9, 0xc47130a6, 0xafa33fd7, 0xa6434656, 0x77c9dba8, 0x73f16daa, 0xce2ac96, 0x5dfb17f7, 0xe3bbd497, 0x4fe96ed9, 0x3d928aa5 }, { 0x5cfca915, 0xc352b66e, 0xeec4ddc5, 0x4310c829, 0xee6a96cb, 0xc55e416e, 0xa3d939b2, 0x6433d6d5, 0x6fc6d7c, 0xf9d99ed, 0xea726a53, 0x35e0e29e } }, { { 0x627f9c46, 0x78ea2849, 0xb8a0a5bf, 0x74011d28, 0xd8730b73, 0x9d989e3d, 0x93770df3, 0xd3c34956, 0x79adfac8, 0x70b0ef06, 0xff0df3e, 0x24b453d3 }, { 0xa2aff5b9, 0xef94401e, 0x5ca9dfce, 0x7447b317, 0x3f5af1ff, 0x675a99c3, 0xeb3edd5f, 0xc68ab9ba, 0xb02f818d, 0x4da9bcc0, 0xea3a950b, 0x4f135cd5 }, { 0x2f5df6c0, 0x69b72a1e, 0xd37850a5, 0xd4dd43bc, 0xb3453b8, 0x8c042a92, 0xe19260b7, 0x8e53fd64, 0x2d7decac, 0xb4819040, 0x891e3ec7, 0xbc9997c6 } }, { { 0x305823a5, 0x1682e658, 0xe77b630f, 0xcc9813ac, 0x54f41b80, 0x89c13fa4, 0x722c5f0d, 0xe767580, 0xd6c579bb, 0xb4f74039, 0x78581750, 0xaf65dfda }, { 0x515306ea, 0x9bda9191, 0x978bc170, 0x68fada69, 0x10933c2b, 0x59ba20b5, 0x3386a3bf, 0xf3a80bae, 0x3d19a7a3, 0xeccad582, 0x724fa26b, 0x5bf33ed5 }, { 0xe23cee40, 0x40942119, 0x6cc4256e, 0x7edd3458, 0xdd8dc3e9, 0x9439350d, 0xecf4ded1, 0x2b8786b2, 0x5c0eda5, 0xe10014da, 0xdf6e4d4, 0x2c97d12f } } }, { { { 0xf3dc53ba, 0xf1df3eb1, 0xd03ffd6c, 0xfb100c00, 0x55cba8fd, 0x423fef79, 0xff581b00, 0xb08d69d4, 0x88592ac0, 0x29456b2a, 0xd04455b8, 0x93d5a1e0 }, { 0x780cb483, 0x2e059387, 0x22980e24, 0x493d9ca8, 0xf4ad621f, 0xa7c9df4d, 0xfbe0185d, 0xb52f30ea, 0x14f5de69, 0x839daa35, 0x6a89ad8d, 0xd3f06dd8 }, { 0x81f350cb, 0x2fd1de03, 0xb0642c87, 0x625f7010, 0x35b9f6ea, 0x7f1fd830, 0xad0a0715, 0x718bdea, 0xffede0a7, 0xe936695c, 0x386891d3, 0x6d60832f } }, { { 0x9004eee8, 0xbacc8433, 0x6deea111, 0xc89de383, 0xd85cf1a9, 0x7573ea8d, 0xbb866188, 0xbfc1a977, 0xd4e236fc, 0x58de4c41, 0x1f138e4a, 0xf7be2fd }, { 0x33b34ce2, 0x17e200dd, 0x7f830bce, 0x6702c093, 0x34dc6ccf, 0x55f03c80, 0xd89367d3, 0xb6be4a4, 0xbf06f9e8, 0xf5e8561b, 0xf9acb42, 0x838d2384 }, { 0x9052bd9f, 0x5ee35c7f, 0xa289b115, 0x15fd43b7, 0x57d3608b, 0xdb3aa9ce, 0x22513f62, 0x27b68ec5, 0xf7dbadc0, 0xd757f880, 0x95f67f2c, 0xe6deec9f } }, { { 0x6d93a25b, 0xd8bc1a8f, 0xf298c9a4, 0x4d41b439, 0xd654db32, 0xb4ce168f, 0x761e7c54, 0xeab35172, 0x57f319eb, 0x5bc2cafe, 0xc1a27b62, 0x8182ddd6 }, { 0x66dcfcde, 0xf8d68616, 0x4c58fc94, 0x1548ead5, 0xda53735b, 0x3c2bf770, 0x8eaf0668, 0xe666fea9, 0xae555ecd, 0x69aad98d, 0x5e5d842a, 0x9a211bee }, { 0x5e513b9c, 0x549ec8c6, 0xbe82db3e, 0x9c26aab8, 0xb3f115bf, 0x485d243b, 0x84d836cc, 0x5f4dcf55, 0x295ba858, 0xb90af475, 0x24ec592a, 0x3c4a186f } }, { { 0x6107af9b, 0x4a479af7, 0x42c192ba, 0x8f470330, 0x9c7c799f, 0xc9027913, 0xe314e333, 0xca93c3a4, 0xd1e0f1e4, 0xe34922f7, 0xcaea9ecd, 0xddf8a8ad }, { 0x440421f5, 0x1ea394b3, 0x43ca7173, 0xce1cb698, 0x5e91422d, 0x62347e2e, 0xf3f6a702, 0x9c9b95a2, 0x34ec7984, 0xb9d1389d, 0xcf50d805, 0x66b7cde2 }, { 0xc630e545, 0xd79bd7b0, 0x3c0088b4, 0x1b96ee95, 0x76bcdf14, 0x4592627, 0x102ea730, 0x3abfa58a, 0x80d9241b, 0x96eea7b, 0xafce6444, 0xd74e9357 } }, { { 0x8cbb0d13, 0x3f92f367, 0x796e5b16, 0xa631118e, 0x93f13292, 0xe7115f0f, 0x3e9231f4, 0xfc14b803, 0x3a2ecae2, 0x32cab5ce, 0x8c15bca4, 0xe29fb7e4 }, { 0xee9555ee, 0xddf7f20f, 0x425510f9, 0x2731fdbf, 0x9858471b, 0x6d2fe38e, 0x6b0cc24d, 0xe7d10879, 0x25b25c77, 0x9f26ab8c, 0x6af50fb0, 0xce96c637 }, { 0xae69d41e, 0x6af6c1ce, 0x17d789bb, 0x3cd8ca3b, 0xde36c413, 0xdad4bd93, 0x4cd980ff, 0xe8b2a089, 0xb4c8d22f, 0x878fb9af, 0x6f1a9c60, 0xebc4096d } }, { { 0xd1c55085, 0x2c641953, 0x755c2b25, 0xd1b1790c, 0x3749a8fc, 0xa1c1bfe5, 0x4c21f17d, 0xb468f3e1, 0x40c77c7b, 0x18e0d23a, 0xf935e78, 0x674f1f2a }, { 0xe61c0602, 0x266e3f8e, 0xea9360f5, 0xee79c36a, 0x51a1ca79, 0xfbf816ff, 0xfa39f9c1, 0xf0f13c3f, 0xcb60f946, 0x975295d6, 0x33004bc9, 0x87fc4da1 }, { 0xb197e6a, 0x4bfec4bd, 0xf3ba3bef, 0x4ba515e4, 0x80aa3d27, 0xc2d7e32f, 0x9d2b4ef5, 0xfeab412c, 0x7fe8aad4, 0xcb1efbfa, 0xfa959319, 0x83161fbf } }, { { 0xf4cf1648, 0x64c335a3, 0xce1648d7, 0x1b8a4867, 0xaf819d16, 0x76a19c95, 0xa6ca491c, 0xb7957d94, 0xbe61a8ec, 0xee33c936, 0x2731e70e, 0x803b102e }, { 0xe9624ace, 0x635e4619, 0x9d1c94e, 0x6b401888, 0xfd9ecf58, 0x8dc61f90, 0xe4b5ecd, 0xbf281fb0, 0x6c4ff1d2, 0xe24ec1b5, 0xb5216d8b, 0x596d568d }, { 0xdc07ba6b, 0xbe846762, 0xa8ce9747, 0xa87ff83d, 0x82620b9c, 0xa7d01647, 0x68a4d55f, 0x35b5a704, 0xab3848ec, 0xfb1ac6dc, 0x40c6bba1, 0xa7390679 } }, { { 0x619d7412, 0x777b5c14, 0xd96b83a, 0xfde604c, 0xc2730151, 0xf923fd0b, 0x697bc7af, 0x684a26b5, 0xaa9b33de, 0x70520e6, 0xabd4d8ee, 0xec184b6c }, { 0x5f7e8b69, 0xa9427bfb, 0x1c959cdf, 0x4c1bd2ab, 0xd36d8063, 0x14180137, 0x1b9b8dc8, 0xd402f0c3, 0xc38d21b5, 0xec93d5d6, 0x3241ad42, 0xba54f3f4 }, { 0x10adb3e7, 0xea42f099, 0x1d929051, 0xa8ca351f, 0xec9896d8, 0x38dc804b, 0xa342fd9c, 0x6d9fef8c, 0x56921a79, 0x9c8a68fa, 0xef027bb3, 0x48aa3bf7 } }, { { 0xd6985f85, 0x186af19e, 0x29e6ef63, 0x36270542, 0x292d78de, 0x2e8ad4e2, 0x8805d6a9, 0x192b39f, 0x2288833a, 0x67646cda, 0x2c5f31c0, 0x47e79966 }, { 0x61cc3e01, 0xb4d3e4e5, 0xaf229b42, 0x67e0c750, 0x8b023dd9, 0x2fb9d8cb, 0x5e7cfdaa, 0x2671d764, 0xf0929a8a, 0x4984ecf3, 0xceff5014, 0x79b667d8 }, { 0x735abcd9, 0xeec2038a, 0x49abadd, 0xf0d2a8e9, 0x1c32ab8, 0xb3de387b, 0xb16ce0b7, 0x971d276c, 0x951fac82, 0x7a0e75ca, 0xda17fd41, 0xbc3b2e9f } }, { { 0xb0305d31, 0x6aa21392, 0xd3e18141, 0xcf074c23, 0xd2ab1ead, 0x362ddea, 0x1b080376, 0xffede7d8, 0xbfe0201, 0xc67b8874, 0x338ad492, 0x12cf519a }, { 0x18e7866b, 0xb1a42938, 0x4beca4ca, 0x778e7d9f, 0x863e901c, 0x3e8e5866, 0xc8fe1582, 0xa955255f, 0xec3d997d, 0xe2eddec4, 0x4d4e4286, 0x864df734 }, { 0x14a5ad11, 0xad8773a8, 0xd055ef84, 0x1758a42, 0xe807da90, 0xece7f9cd, 0x6206e070, 0x96ae877, 0x82543ff1, 0x941b23cb, 0x4ce00c06, 0xe0dd2f81 } }, { { 0x8598d0b2, 0x29495dab, 0x6807eee9, 0xb286b7ca, 0xfeb3a48b, 0x476206db, 0x2968724f, 0x1d36fc52, 0x6cb83191, 0x6461d5cc, 0x2ad7ba65, 0x0eddf8 }, { 0xf1693241, 0xd3b94cb1, 0xc89ca90, 0xfd6aa21d, 0xe0d4cbe8, 0xb470ee, 0x99c46fd7, 0x9c4de088, 0x9bf4eb7d, 0xb2318422, 0xdb08ee0e, 0x82c84985 }, { 0x9eed595a, 0xeaffa640, 0x4e2dc003, 0x70a3b7f2, 0xa9dd4e77, 0xb365cfe8, 0x8151e2fa, 0x91499ce5, 0xa9859051, 0xe6f1f8fb, 0x53d99b37, 0x34c4d797 } }, { { 0xcc6fb373, 0x97fe2db6, 0x1a745e47, 0x3fd5f45d, 0x8b9037e7, 0x3b010db8, 0x9beeb48d, 0x9f6be60e, 0xf9abf64d, 0xc8531980, 0x73dd874c, 0xd53fede2 }, { 0xabdd643c, 0xb67aaaf4, 0x7d9f2687, 0x34eea76e, 0xf91181ac, 0xce24cf07, 0xc49ce73c, 0xa655138, 0xda6fc249, 0xc990ff62, 0x64c6a030, 0x720409e7 }, { 0x3f1a8017, 0xde3ee839, 0x2403d4fc, 0x85bbc457, 0x16100227, 0xe0472f76, 0x71479730, 0x14e5a38a, 0x50ad8989, 0xfa128407, 0x6d370f6d, 0xc1a59f50 } }, { { 0x3b3f40f9, 0xb387d174, 0x717dd653, 0x3ffb6d56, 0x435bbc3d, 0xe0d70883, 0x3f9ca3fd, 0xbb8e814d, 0x5fa5b03e, 0xc5e1b489, 0xe41723ee, 0x979c9463 }, { 0x8b38292b, 0xf37cd85, 0xa48116eb, 0xebce946a, 0xfb5336db, 0xe9fae7b6, 0xc5bc0bf7, 0xa6f80a2d, 0xa7f4167f, 0xaddfb2a8, 0x84f74331, 0xfb221d38 }, { 0x18aff7a9, 0xd887180, 0x31844751, 0xb4c03841, 0x9660461, 0xdbb33b0e, 0x3b3825c6, 0xf1b49612, 0xd9fa799f, 0xd842ddb5, 0xfc37cf75, 0x6a5fb88b } }, { { 0x23769a23, 0x104064a1, 0x347f944e, 0xf50a30eb, 0x60b9732b, 0x9b7984a3, 0x43f041b0, 0xc91d296d, 0x3534a960, 0xba14a2ef, 0x51766d23, 0x70ad6f0 }, { 0x1f84ffa9, 0x862b51d5, 0xa8acd758, 0x85c358c9, 0x44bdb208, 0x82d6c17b, 0x6f0ee86a, 0x449cc68c, 0xab7a9748, 0xbf42cbde, 0xecec5d91, 0x6745bde3 }, { 0x280c5460, 0x66d366c2, 0xa1f397a7, 0x718c59a, 0xf8cb30a9, 0x5aac6e81, 0xd1b304f8, 0xa0b1181, 0x117c0e6, 0x319405f9, 0x6ede4f2a, 0x5510606b } }, { { 0x8b9c0f57, 0x1c5a8706, 0x278267c0, 0x259c0dc8, 0x696d951b, 0x68f579bf, 0x101e54a3, 0xb8b77ca8, 0x44e18d9b, 0xdd1c03c9, 0xb836f957, 0x825e6562 }, { 0xf2e7a2e2, 0xcb0a3268, 0xa7c24913, 0x72b33fe1, 0x8e52ea76, 0xe9ae9d8c, 0xe03b0823, 0x282746c0, 0x4525eb51, 0x119111f8, 0x3425fd8a, 0xdad72d50 }, { 0xbcec7fd4, 0x396bf9f5, 0x5a6dd5fe, 0xb36ca443, 0x7ba341d6, 0x5d9b6839, 0xf6bf5358, 0xe2ab2e10, 0xd9bcc803, 0x13055d41, 0xfa444bd2, 0x4a4b1f00 } } }, { { { 0xd740bc6f, 0x9676ca71, 0x3273f35f, 0x850896a2, 0xaff1079, 0x868576cd, 0xb87370d0, 0x43c477db, 0xe861f32c, 0x3e5d66c, 0x25384d8e, 0x7ad3c3b1 }, { 0x595e1320, 0x2645c583, 0x89e8446e, 0x6f1a1ee8, 0xcce6717e, 0x43e69040, 0x549408d5, 0x2c708eef, 0x2c16a840, 0x3d7880f7, 0x87c0258e, 0x6d901c6a }, { 0x1e3565f0, 0x5f099bb9, 0xfaad223e, 0xcc1ded3c, 0xce98b318, 0xb5e4902b, 0xa9c6e65, 0x2d1c39a0, 0x1c8d8815, 0xda1e8f07, 0x944eee0f, 0x9e9f74d2 } }, { { 0xa4658bfb, 0xcaeaae16, 0x502420cf, 0x8f0729e7, 0x18f6db8e, 0x3bfaa01e, 0xb6157c3d, 0x15eda0b1, 0xab458101, 0x6fe98913, 0xd2f16ca6, 0x90ffc8bf }, { 0xbf3a3f55, 0x9f9b6954, 0xd6352e70, 0xdd2287e1, 0xe9d534f1, 0xef81b74, 0xc6cf28ac, 0x4377db7, 0xcc9e3c6a, 0x14a396e2, 0x653115ed, 0xc214fd27 }, { 0x5dde8a05, 0xc606e4f, 0x74dcf02c, 0x57ebfb5, 0x6f376a99, 0xd61f102c, 0x9f366d53, 0xcc118d9e, 0x76765727, 0x43d4a6ee, 0xb5fcc883, 0x9adeb258 } }, { { 0x672f47f3, 0x523a6538, 0xc1b678c, 0x2a0c5a37, 0x866de11e, 0x64c0c796, 0xfada6b21, 0x5dd6182f, 0x2b5afb85, 0x7b585fb3, 0x787b0868, 0x155e3584 }, { 0x64c2ab80, 0x824a559f, 0xf323d73c, 0x9a28d32a, 0xc5431813, 0xdee0f58e, 0xecef3e4e, 0x177c2da, 0x79a1a3d4, 0x93548517, 0xa687dd93, 0xcd7c637a }, { 0xfae92915, 0xff4e5a85, 0xf9a642df, 0xde97dc56, 0x86640dcb, 0x1c7bb009, 0xa76df493, 0xe81087c0, 0xf257a171, 0xcf841835, 0x284bda2, 0xc189baec } }, { { 0x6e8a4762, 0xb1e599e5, 0x602c298f, 0x7875a7e7, 0xbceddcaa, 0x3cecedef, 0x1873c2f8, 0xf538abb, 0x2359197b, 0x12c47778, 0xdaec46c3, 0xe6ee67c4 }, { 0x1436fe6c, 0xc4c50202, 0x7145102e, 0xb70fb7e7, 0x844fb461, 0x6bebc31c, 0x78fddf46, 0x4c1fdb2e, 0x92f765c9, 0xbc28b14d, 0xb3d01bc1, 0xe83a99a9 }, { 0x1d5185aa, 0xf88c99c4, 0x688e1d7d, 0x90fc02eb, 0x8ac7972f, 0xd03c94f3, 0xb3ba41d0, 0xbf14cf74, 0xa2be240c, 0xc01cd3df, 0x53f67605, 0x8ddeebc8 } }, { { 0x28dced17, 0xf8af312c, 0xcb50293c, 0xde8b51df, 0x773981a4, 0x21a35856, 0x121d31a8, 0xbacd0245, 0x55343033, 0x92662e67, 0xd9a58657, 0x95a4df3e }, { 0x93d0e1ee, 0x5ad669bd, 0x3563a18, 0xd1683db, 0x7231c7d, 0xb6cd28df, 0x80ccffb4, 0x3c9b789e, 0x8c90ab75, 0x7ba19208, 0xe1255555, 0xadfa110d }, { 0xf56a7eef, 0xa113a7d9, 0xf265fcbf, 0x5f3f812e, 0x47407cf, 0xcedcb275, 0x8d2cf977, 0xcf90b896, 0xeca30315, 0xb24f21a5, 0x872231d3, 0x676fb4fe } }, { { 0x3d0d306e, 0xb59ba160, 0xa5783d2, 0x23babc09, 0x958598c9, 0xabf65274, 0x981721, 0x469e06b7, 0x84128b08, 0x2febd25c, 0x1a187cc9, 0x42bc83a9 }, { 0x8e2b0f79, 0x81a1d52c, 0x5be827e1, 0x77d774e2, 0x8903b62f, 0xd7f6a84c, 0xf0e5537a, 0xc7261912, 0x1c24cdd, 0xf6a473a8, 0x76971a53, 0xcd5c51a7 }, { 0xf8d9106c, 0xbb2c986d, 0xc90cac09, 0x92fd4cb6, 0xbefa3430, 0x55c38fed, 0xd5f21fb3, 0x5836a40a, 0x153b16dd, 0xd97a0fc3, 0x69501b39, 0x628bceca } }, { { 0x5fb761da, 0x32e2678f, 0xaf52c70, 0x94c3dd6d, 0xfd12ae46, 0x83897460, 0xcbe7f92, 0x5dc28665, 0x38275ea5, 0x66fb1fbd, 0xf9c74ed3, 0xdb482ce1 }, { 0x4290eb6c, 0xf4a729df, 0x9af13e8f, 0xcc4b7cba, 0xd2f60f18, 0x3a57999c, 0xfcdd2e36, 0x21f698b2, 0x14af3ea0, 0xa029f2ed, 0xadf40e6d, 0xba70ef28 }, { 0x62f540b8, 0xc21bf839, 0xa3a2b8b1, 0xa412743a, 0x9c96b531, 0x69482fe1, 0xa0d984cc, 0x6d385b1f, 0xe3f30193, 0xfe268e93, 0xcfd29a0a, 0x5be4e373 } }, { { 0xaae5c236, 0xf925816f, 0xf2e9a372, 0x464cd09, 0x820027ad, 0xb03d657f, 0x90c1c948, 0x9672b41, 0x8b6aa69, 0x9e0e7b8a, 0x279f8262, 0x27c0f5e2 }, { 0x74e8a5c4, 0xc007133b, 0x7b05358a, 0x4e1bf38, 0x7e76b6f, 0x2ecfee07, 0xf5dbfc5c, 0xd80c50ab, 0x68943361, 0x18eb6f76, 0x4cc332c8, 0xf6442bb1 }, { 0xd1c89f0f, 0x40726371, 0x357d260a, 0xe9530252, 0xb784cddc, 0xc5920263, 0x89ae3ca0, 0xc4117d3f, 0x94b112e9, 0xd7155962, 0xfa96eedf, 0x4b6e5170 } }, { { 0xbb2e6edc, 0x56a99eb5, 0xcab8dc04, 0xfb689626, 0xdab805c9, 0xb03c41a, 0xfc6ba05b, 0x138fcad6, 0x26e2fb1d, 0x6fb81dab, 0x4f043880, 0x95348e80 }, { 0x3ba4359a, 0x8c59f6f7, 0x7b4af6f1, 0x1906486d, 0xe08b63b4, 0xfc21c49a, 0xf7a658fe, 0x2e9e0208, 0x3d5617ad, 0x7dd44a6b, 0xba94235f, 0x52a408e1 }, { 0x3973dd42, 0x4317bb0c, 0x530ccb8e, 0x74d9a95, 0xed21ab80, 0x82f78c3e, 0xbb503649, 0xda034d41, 0x9610870b, 0x8ff9176a, 0xc82da4b2, 0x2e393d25 } }, { { 0x519fa252, 0xe4235c97, 0xa35f9f04, 0xd79d5867, 0x3304a935, 0x7bfa135f, 0x70dabb0e, 0x26999fc6, 0x7bf8ad6b, 0xc80a0507, 0x9f9a1063, 0xf93caa3 }, { 0x351d6d1c, 0x2f056aa4, 0x2933574c, 0x956105a6, 0x9108a841, 0xbad766e, 0x7c749562, 0x19de945d, 0x16d34109, 0xe2b76c57, 0x9474a2fc, 0x3634bd6d }, { 0x2e7efd12, 0x3b8a5dc7, 0x1c057a23, 0x92cfc1c, 0x45d43332, 0x9f947137, 0x57f206dc, 0x350dc72a, 0xa12e38e2, 0x63496b89, 0xce297822, 0x95082fd4 } }, { { 0x240aa0a5, 0x2438afa8, 0x376cf4b1, 0x3f7ab283, 0x1d51178d, 0x915731fe, 0x7f12ce9f, 0x48eda669, 0x41851825, 0xff4a0580, 0x5cd92ae1, 0xda5e0799 }, { 0xa4a28d8c, 0xbe17b4b4, 0x83eea35c, 0x617ea96d, 0x84d622fd, 0xac763233, 0xc34f01b9, 0xd34f8cfc, 0xd9f92d6d, 0x713ed140, 0x7e425f71, 0x64b36a9a }, { 0x81b3bb48, 0x6cf7eb09, 0x23bb4d5a, 0x201a16d, 0x77086946, 0xb99ca803, 0x3905ba23, 0x36d55042, 0x89a1a8c6, 0xf6439380, 0x6f7633b7, 0x238384a } }, { { 0xa91dcfda, 0x65351997, 0x58c90d61, 0x56d5e96c, 0xaf34d6d, 0x10c58c32, 0xdbfd5c8f, 0xe0203fa, 0xba2f8f10, 0x4f98cb33, 0xc18ed088, 0xded18855 }, { 0xebfef5bf, 0xfbb0dc30, 0x92eb9f78, 0x72cde325, 0x97a3b9ef, 0xada104f3, 0x8a9be6b7, 0xb278380c, 0xc10c37a1, 0xa7cc3598, 0x79b4903d, 0xf49bb8dc }, { 0x4bb61c02, 0xe34a9e6e, 0xac420495, 0xadf0847f, 0x5daef723, 0xbd555068, 0xee32a876, 0x9ae9f1d1, 0x981977e2, 0xa7b759b4, 0x959c891c, 0xda12c401 } }, { { 0xf2477d06, 0xee34d0a8, 0xf373fed6, 0xcad0e926, 0xcd8c6e5c, 0x460f540e, 0xdb2dac30, 0x83c88e66, 0xa968ffc8, 0xc5a24588, 0xaea796ba, 0x89f76f22 }, { 0xe9d42a36, 0x218506af, 0xc93e312a, 0x7210193, 0x4942bbb2, 0x9428fa7c, 0xd8bdc66, 0xac7bba6f, 0x5605ca3d, 0x8e610198, 0x9169b4c7, 0x4ab7505f }, { 0x3da27b5f, 0x1205cfb, 0x187f916b, 0x6b29e7bd, 0x63d7fb3c, 0xeb945c28, 0x99347d81, 0xf678e29, 0xb18facc7, 0x2fdc1c90, 0x949f7f51, 0xe8f7967d } }, { { 0x69e890d, 0xe3e3c97f, 0xff1b4fca, 0xc2a16e76, 0x9c7ddbdb, 0xbac5055, 0x9ce578fe, 0x5782da50, 0xf6b5ad85, 0x7f444a4c, 0xc02096f2, 0xde563d6d }, { 0xb9d865f2, 0x9dbe7225, 0xecd166f8, 0xd5724795, 0x9ee25205, 0xde3fa992, 0x6fa53a7e, 0x789fec25, 0x7ff4192b, 0xe16242ae, 0xcb4bffe9, 0xe0728ad }, { 0xcb46ab8f, 0x85beb65, 0x6de01da8, 0x78b148dc, 0x10084dc2, 0x7364e1ca, 0xfe455336, 0x2275387f, 0x263ef0b3, 0xcb3c5452, 0x8b372d06, 0x5df66ea0 } }, { { 0x5b334dff, 0x10e79845, 0xa8c0099c, 0xd2becac9, 0xebf7c805, 0xd4d4bbf5, 0x1ca10d6a, 0x3eb56faa, 0xbcec13bf, 0xa67982d0, 0x3e4c6566, 0xaf8c78d6 }, { 0xb009753f, 0x6a6c4f94, 0xc52fa1a8, 0xc29938b4, 0x6c8b47b3, 0xbff62420, 0xcaaf52a8, 0xb5bb4ced, 0x1c00b243, 0x50ca4145, 0x7862c67, 0x6f6784cf }, { 0xb94b050c, 0xc8128825, 0xe56147a2, 0x50e1b448, 0x5fd3f1d2, 0x16026ce9, 0x9125649c, 0x36ae5688, 0x1a0e6981, 0xe35964b8, 0x41520396, 0x16bf377b } } }, { { { 0x2e7d2e3e, 0xfb5e0c46, 0x5fe71de3, 0xbc31a242, 0xba1d49e5, 0x26eb63be, 0xd7bdf682, 0x10d0bf29, 0x97cd695a, 0x1a1d571c, 0xfbe5fe33, 0x12cc9e07 }, { 0xb47ac444, 0x7eadcf42, 0x35ed2a4, 0xdcd1a3a0, 0x2afa6b77, 0x2ac41de5, 0x92fb8bf9, 0x1726ae3a, 0x5cc4844a, 0x33d951c3, 0xa8c4d8f4, 0x510ef0bb }, { 0x77042681, 0xb45511c7, 0xa6ded59e, 0x4ed352b5, 0xa024848c, 0xa0208bb9, 0x7df72d0d, 0x9863b778, 0xd02c8b82, 0xfff08516, 0xe625114, 0xd126305d } }, { { 0xb7511007, 0x85147f98, 0x8443805c, 0x5bde04ff, 0x56d661f4, 0xaec9336c, 0x301cd7fa, 0x62b6bdf4, 0xfdc44e93, 0xcdc8bc59, 0x1021d56a, 0xaa6d1e25 }, { 0x27fa6756, 0xd8266adc, 0x5b33d820, 0x567f27b2, 0xdd4c68d1, 0x8e733961, 0x6632feb5, 0x9b30652, 0xd9c0a5a5, 0x367fe2da, 0x70185b46, 0x1d725608 }, { 0x1765c5ad, 0xde54c7ce, 0x7e925e87, 0x67a26adc, 0x99b84f32, 0x42168991, 0xa5269814, 0xb4508a20, 0x67d49038, 0x180f02a6, 0x89048792, 0xbb321073 } }, { { 0xcfc4a001, 0xea047cb0, 0xbadbc80f, 0x133d76ad, 0x82c2a006, 0x1a771db8, 0x4c1852c0, 0x4e508e8e, 0x86b96bc7, 0x9a8013a5, 0x633810bc, 0xcc17bf12 }, { 0xd50de4f6, 0xde549fa3, 0x6002276b, 0x2f7b7ebb, 0xb5d44bc2, 0x4529ab50, 0x8eaa276b, 0xad1cac45, 0xdfdfac45, 0x9d984023, 0x17ad9373, 0x54ad450c }, { 0x10758bdc, 0xc72f3839, 0xeb230037, 0xf34a412f, 0x284ef2fe, 0xdb3bb4d7, 0x3771e898, 0xc22c353c, 0xd88beaf4, 0xbcc5e5ce, 0xfc5a8a9, 0xa01fb1ff } }, { { 0x6d734961, 0x6310d2fe, 0x2c219680, 0xd784aceb, 0x991bf7d4, 0x6fa3f114, 0x578a1538, 0x596748c4, 0x5bcfe996, 0x9a1cd5a, 0xe8cd2e91, 0xf6b2a152 }, { 0x1b073325, 0x39257d8b, 0x537c5076, 0x1a72239f, 0x4decbd3, 0x6a67e19c, 0x85069358, 0x7552afa3, 0x6c538b4d, 0xd2562f45, 0xa94c870e, 0x79c923fd }, { 0x92bf6616, 0x325c7f1, 0xd03f56d4, 0xc1fbff78, 0x6cbd16bf, 0xc2485451, 0x1830f7a7, 0xf62af6, 0x49571440, 0x66d93c2c, 0x898c4317, 0xe0aeedd0 } }, { { 0x776c81d2, 0x4fa3f9f1, 0x76a89ec, 0x35ef7008, 0x4964eebe, 0x27cbc9b7, 0x84b6a254, 0xc432ef32, 0x566b3e18, 0xe62d73fd, 0x2752dfc6, 0xd1b04b0c }, { 0x7b4d839f, 0xb1f0fa11, 0xd4a4b299, 0x4c532b72, 0xc864ebfa, 0x49b4f449, 0xe6fdbd96, 0x188217e5, 0xcc80c47f, 0x654ffdbf, 0xc2bbae05, 0xe2bb2e0a }, { 0x179e2b4c, 0xd3ef912b, 0x8bd96031, 0x6c14a57, 0x379bab45, 0x27252d37, 0x40e55b3b, 0x56644767, 0x499170cd, 0xeedde81e, 0xea5a2dec, 0x60f80d16 } }, { { 0x491cf391, 0xa8eaca83, 0x5bc9a8fa, 0x652c07db, 0x1b152f01, 0xf9c6aa2f, 0x576178a8, 0xf62c2e76, 0x6781dffe, 0x14f8b1a4, 0x9e8ae50f, 0xdc6773e8 }, { 0x159d8206, 0x1bc533af, 0x3b5a9af9, 0x73d13a01, 0x98c62283, 0x76e5e36b, 0xe4cebeb8, 0xb8ddc75a, 0x892f929, 0x66cd8c47, 0x41f54e92, 0x65a5c313 }, { 0x3271eec7, 0x2d15f099, 0x67c3351f, 0x12a5bcd5, 0x8ca0b566, 0x461bdca0, 0x16269dbc, 0x13d1a8fd, 0xe9e67d37, 0xa9202ef, 0xb6c99d3c, 0xb43d3403 } }, { { 0xdc30998e, 0x9e92efe4, 0x8eedbf92, 0xcb5cef76, 0x7105df96, 0xeda7d733, 0x9fa1034c, 0xca2f0169, 0x54a43fff, 0x2cf1646, 0xd8436562, 0xa6a7ba07 }, { 0x7ddfaf74, 0xbf7e6e0c, 0x879e7042, 0x31ec8b0e, 0xac6f15a0, 0xbb2c1488, 0x9b2b05fb, 0x78c50580, 0x4d2cae94, 0x7d280c3c, 0x2ec852b7, 0x7c4a542f }, { 0x5d0e7af0, 0x5c7cd1bb, 0x6b4ac508, 0x28addc68, 0xccdd5e94, 0xf8c078c3, 0x54f55380, 0x3d14f320, 0xd24df852, 0x3acde111, 0x9a11d8f4, 0xa141911b } }, { { 0xeadfb90d, 0x8500f3d9, 0x70c192f2, 0xc641b949, 0x250e6cf1, 0x7d3a4107, 0x41080813, 0xf041a706, 0xc8078ff4, 0x3641ffaf, 0x7ff5472d, 0x493763f8 }, { 0x313d715b, 0xdd8f4aad, 0x9dd564da, 0x8be56a2c, 0xe482bc61, 0xdcb7577f, 0x8ff60246, 0xa80c7fef, 0x3b5b9d05, 0x574af246, 0x67e5c760, 0x46188f2 }, { 0x430933b0, 0xdc3059a1, 0x133c16ed, 0xc7f784ed, 0x91c96a93, 0x63d3c46b, 0x24084cd8, 0x6897e781, 0x3b820479, 0x409e913, 0x63b3e3b7, 0x49845159 } }, { { 0x91ce8472, 0xa71c4c71, 0x3086fb2e, 0x2a996b1, 0x218c9166, 0xa74c0707, 0xc1c44e75, 0xfa982b9d, 0x1207f4b1, 0xebd973ec, 0x48564888, 0x69531ae2 }, { 0xb2e6ad81, 0x91bda823, 0xc66b1692, 0xb10bad01, 0x3c0ac862, 0x702bbdf7, 0xd7e5ebf0, 0x3360f5c6, 0xc3227508, 0xdb3ea6a0, 0x7987524f, 0x2f9d2dae }, { 0xe16a110d, 0x27bc5704, 0x18473bd6, 0x80b0b876, 0xb0df7b4d, 0x95c03ed7, 0x6ac3100c, 0xf443fa4b, 0xca1fb068, 0x9c1d4cc7, 0xed44a3b3, 0xfec887cf } }, { { 0x1f0fb295, 0x4647eafb, 0xa5a9ff32, 0x9c1cd01c, 0x4f3bdfad, 0x42c2ed41, 0x7076b03, 0x4986ada2, 0xd71b0e4f, 0x55491fcc, 0xe909c080, 0x17f9d51b }, { 0x778a13ec, 0x24db56e1, 0xd1811b45, 0x3158130a, 0x6e46fb40, 0xbe5314e, 0xb4376785, 0xf7031ef3, 0xe6e58dfd, 0xe75e99d8, 0xc4ff04b6, 0x37a7cb75 }, { 0x2b5569bc, 0xe659d2fd, 0x62eeae66, 0x1f7ff2d0, 0x2e5c8e46, 0x46b7132b, 0x87e28fe1, 0x7f94d0a, 0x30f94417, 0x8295e1bf, 0x7ee402ea, 0x21dac905 } }, { { 0x6ba8d8e2, 0x159f7000, 0x77e94ab6, 0x7a74a048, 0x87ecaa2a, 0x37de1a8b, 0x729aa056, 0x6d9786c1, 0x60b0ed65, 0xe2288d3d, 0x352da146, 0x5ecdc04b }, { 0x1938595c, 0x61611fc8, 0x6958a7f2, 0xa4143478, 0x32fdebda, 0x6de09997, 0xfb68fe70, 0xd24bda24, 0xdee2b9c9, 0x97ca3d1c, 0xf9805500, 0x66671ebe }, { 0x7c4aa63a, 0xaf40cf24, 0xe2e1c27e, 0xcfb2110c, 0x22771327, 0x4ae48a33, 0xdce0d305, 0x92319280, 0xaebed7a0, 0x9e853f1d, 0x7eeff4f2, 0xa071a3e3 } }, { { 0x947a3426, 0xcb7dcb89, 0x453f0b6d, 0x15f522b2, 0x970abfc6, 0x3b74d19d, 0x2936a17b, 0xdc35cc5d, 0xce7b0580, 0xe6bf1b7c, 0xba4d0cca, 0xa38161e9 }, { 0x1ef84453, 0x6206d6e3, 0xf75c1b93, 0xd0ad51df, 0xa2b7b966, 0x4c6fda1a, 0xea2f587d, 0x994ca33f, 0xbf368efb, 0x8ee57e47, 0x974c0fbd, 0xa48bee91 }, { 0x75904a98, 0x5fbeb79a, 0x74cf7e7b, 0x155227b9, 0x2ca7bf4a, 0xe8b8c0cc, 0x3b94ba0, 0x9d6015cc, 0x81c347be, 0xbdaa357d, 0x25ed04e, 0x189a709d } }, { { 0xe0c59f14, 0x4c06458, 0x3e4905c8, 0xc187c83b, 0x21ab4cda, 0x97f18602, 0x827d124, 0x723070ac, 0xfb4daacd, 0xefbc1eb6, 0x6e601f1e, 0xb410b87 }, { 0x6c387732, 0xa01ef415, 0xcfe33301, 0xa4d35d23, 0x2afeda1f, 0x9c1e5942, 0x29fdc229, 0xa67ee2b3, 0x6c433117, 0xf18cda72, 0x1032b6fb, 0x2c1d425d }, { 0x930a4c46, 0xb4f8aa14, 0x33a45d65, 0x71732ae3, 0x3bb92d55, 0x816ccf23, 0xdae16295, 0xfbea9998, 0x20d3e5e6, 0x57a48dc8, 0xd3f6000f, 0x3adc3a30 } }, { { 0x1877cb7b, 0xf662ebc, 0xe22e6681, 0xc0368d65, 0x2de14d25, 0x71c8cca8, 0xf19defae, 0xe4223477, 0xc8b5fd7b, 0x3c103d94, 0xa34f1b13, 0x842b6109 }, { 0x15be6870, 0xc5c3b294, 0x9ed3fdf5, 0x1bbc63f, 0xf4e19fe3, 0x2d613ea4, 0x22dc50d1, 0x88f44178, 0xdd31170f, 0xfc640d6c, 0x381d9dec, 0xb69a753f }, { 0x1a830a4f, 0x985c910b, 0x4040c0f0, 0x5392788d, 0x36ad86cd, 0x35c797ca, 0x48f19051, 0x193bd1a, 0x1b09c7aa, 0x8eedcffa, 0xd06595d4, 0x4b31cfc5 } }, { { 0x6af13611, 0x2e78aee3, 0x775dceb6, 0x24f044be, 0x368265aa, 0xaa845ccc, 0x671a050b, 0xffc6f3bd, 0x2e8e6180, 0xf92a3fcb, 0x1e89dc61, 0xdf7dc8a4 }, { 0xbaa5fb00, 0xae67740f, 0x1c9ffa24, 0xc9cd4ce1, 0x48094272, 0xa4105fe0, 0xfcd41b02, 0x6f16ffdc, 0x91c55c71, 0x4975a7ee, 0x3493e6b7, 0x15f0cdaf }, { 0xf269ab31, 0x9d08b219, 0xb140425, 0x4b07ace4, 0xf54cad2b, 0xd0d9c5fd, 0xcaaa0eac, 0xf1b2b112, 0x659dd831, 0x3cc723f0, 0x116e8e75, 0x6b49218e } } }, { { { 0xbae8cc7a, 0xf5d7ef93, 0x49b7ceb3, 0xebb56d3b, 0x8d3d6819, 0x8db395d7, 0x924ac941, 0x64a9e4f8, 0xa997659e, 0xbbe590f, 0x7eec9be8, 0xf55fd44b }, { 0x919f0b37, 0xadb80bdd, 0xfe76bba, 0xe8dbd3b7, 0xd72b4e8c, 0x6f268d91, 0x99dad49f, 0xa4b277c1, 0x1f1b4615, 0x2a8c5945, 0x114857a8, 0xf52bfb5 }, { 0x969ed7a6, 0x167cbfa6, 0x5aabb726, 0xfccb7d6, 0x41fa5673, 0xe6ef9ac9, 0x564eb0ef, 0x294dbf2f, 0x7f96cbd7, 0xc66ea240, 0x27f3888, 0xaa9065f6 } }, { { 0xe725d66b, 0xdaf3b36a, 0x2498bc8c, 0xf8129f71, 0x91450e4c, 0x9f38f5e6, 0x62c57ec1, 0xcb8944aa, 0xd320dfc5, 0x2f06c4be, 0xedbd66dd, 0x5c17b5cf }, { 0xa0f41e87, 0xb5764541, 0xb59ab465, 0x2a232c82, 0x1d4dde82, 0x33e326a9, 0x23c379fb, 0xcb222765, 0xbeb175cb, 0x18262f8a, 0x18c270eb, 0x8dcd6de8 }, { 0xce08da1c, 0x55bbd266, 0xecb7982d, 0x4e57ee16, 0xcfecf08d, 0x6a4dd9f7, 0xafa2cf09, 0x99d942ef, 0xc9e3dfe6, 0x3ebafc92, 0x3435b733, 0x59493f0e } }, { { 0x29644d30, 0x3c9441a6, 0x97ac087f, 0x4c9061a5, 0x4d87b03d, 0xe53b1291, 0xde3ab3d3, 0xd42c4d02, 0xd2280731, 0xbe93ccf1, 0xe27c71de, 0x8212b22 }, { 0x480a8661, 0x8b9cd143, 0xbc9adc5, 0xa50ce832, 0x9880ee47, 0xa49b3b2d, 0x6332105b, 0xdcd8ad8b, 0x980f38b6, 0x8fa48aa4, 0xf6616747, 0x321f2de1 }, { 0xd290aba5, 0x46421839, 0x2e392762, 0xb16a99e5, 0xb9b40d0f, 0xbfbc8253, 0xeef5519f, 0x9d4dd9c9, 0x8152f9f0, 0xac58adbe, 0x96676dba, 0xa623a060 } }, { { 0x537e5394, 0x6dfc03bc, 0xa0f25bca, 0x5a5ff794, 0x790c3757, 0xa84c42aa, 0x4eeb0d00, 0xde169827, 0x35c2820a, 0xe61bc5b0, 0x4415d9a6, 0xfbb2e197 }, { 0x1414347, 0x621f5db6, 0x8a490acb, 0xb2091d3b, 0x77379e2c, 0x98b59db2, 0xc5909b28, 0x26b8ed17, 0xd31bef5a, 0x86d5c4bc, 0xfa7f3623, 0xebef266b }, { 0x99534967, 0x61ac273, 0x46dc5757, 0x5ddbeae1, 0xb4b01ebc, 0x322e9c9c, 0x5bb81a05, 0xe80e406d, 0xed022eb5, 0x2a3564ea, 0xd206c334, 0xaeaaadca } }, { { 0x2f581fd9, 0x4dc9acc5, 0xdc68c9e5, 0xa13756d4, 0x87387a5, 0xb6527172, 0xe9ec6a2d, 0x5b88fb93, 0xf154c8a8, 0xacccc183, 0x566da55, 0x7ece1cae }, { 0x553cd7fc, 0xc3df873d, 0x88b4eaf5, 0xabdad67c, 0x2608c07b, 0xab7ce1d3, 0x1a0c9992, 0xb5030b48, 0xee15855a, 0xcaf7329c, 0x2a494c81, 0x85519ef1 }, { 0x36244717, 0x2fddd0, 0x599c87c3, 0x9af53e8f, 0x988f14ea, 0x86784ad1, 0xfb105b8f, 0x5eb11a74, 0x486bf0e5, 0xd67af855, 0x5f74514a, 0x96d97075 } }, { { 0xf62c8232, 0xdb8d3ad3, 0xf2da70a6, 0x995841e2, 0xe0576cdc, 0x13a1010d, 0x8fb40186, 0x9a012d13, 0x5a2cb92c, 0x1361bd9e, 0x977ed542, 0xc38645ab }, { 0x9ef0b00e, 0x29cbcc58, 0xd32f986b, 0x68f7007e, 0xd9c3565a, 0x41606809, 0x2318881e, 0xbfa6c5fc, 0x90196211, 0x7534f253, 0xff796b5e, 0x9f4f1ba0 }, { 0xbfe79136, 0x548824ad, 0x6b2fd90, 0x7256ff6e, 0xb27b638d, 0xf963514e, 0xbc494302, 0xbfa16825, 0x69ceded6, 0xeef5eb58, 0x7d85be62, 0xe4f8b9c5 } }, { { 0x41691d07, 0x1ed42e47, 0x3e4263b4, 0x5e2c4860, 0xf0328691, 0xb52bb836, 0xcc563d39, 0xb76c4cfb, 0xd5e5cb9a, 0xb9c1e8f2, 0x4a0dc181, 0x65487e2b }, { 0x631274ac, 0xa19fd7bb, 0xe071d3f1, 0x1f41f011, 0x6e9709d2, 0x37fa6be2, 0x93bca3f, 0x37074b5c, 0xbf97055f, 0x3dcabf78, 0x954dfcea, 0x84ce960b }, { 0x40cb3f2c, 0xebd0e174, 0xd344fbb1, 0xef215047, 0x6932385c, 0xaa02bda6, 0x533d5265, 0x972d9daa, 0x49e508e0, 0x748fc314, 0xbd59c542, 0xea090311 } }, { { 0x46ba3170, 0xce1d3412, 0xedf73b7e, 0xd7ef02a, 0x456c2ded, 0x5071939d, 0x501ff656, 0x8b26a09a, 0x484eba59, 0xc955bfff, 0x6324fca4, 0x5e3e4cc }, { 0x3859db5b, 0xd8789a27, 0x70be2ade, 0xe30faecb, 0xe55f7249, 0x9f707c05, 0x489dcd90, 0xc4f6db85, 0x1d9137fb, 0x47d1da2a, 0x280aaa30, 0xffb701e5 }, { 0x693e77e, 0x3a086cf9, 0xf7644fc8, 0xda509e, 0x4c85ac71, 0x8e3dbf29, 0xf45f2475, 0x7ab0af66, 0xf563d64a, 0x820cd07b, 0x1158f68b, 0xb71f0462 } }, { { 0x4aa4059a, 0x37087f7c, 0xa753e37a, 0x8ea91dbe, 0xe82d2d37, 0x465540d8, 0x99d21b53, 0xe223e757, 0x27525e22, 0xcb88dc72, 0x59c347aa, 0x5a618b6 }, { 0x84fa0230, 0x419d84c5, 0x91edcbbc, 0x9ff3cab, 0xcb5020db, 0x46c6d52a, 0x75c022c5, 0x90b45ddc, 0xcaf695e9, 0x180a521d, 0x41fff735, 0x33cad2e8 }, { 0x7867945f, 0x4af40c26, 0x6c7fba15, 0xbe90d565, 0x16e1791c, 0x45cd0647, 0xaaab949e, 0xbf89bb93, 0x9ceca9e, 0x1834f623, 0x75db4557, 0x7ac30f0d } }, { { 0x93a7cd4a, 0x40446d1e, 0x15639470, 0xa11056c1, 0xd32b0780, 0x905f1ebd, 0x4b91374d, 0x256f25ef, 0x4ac54738, 0xca2014e3, 0xb4d8756b, 0x993fd1d7 }, { 0x2db9d4a, 0xcdf3d70e, 0x26b6b2ed, 0xa340b70e, 0x749d5849, 0x58443043, 0xf1381d72, 0xdddc948, 0x20060ef4, 0x17a364f3, 0x84151843, 0xa07291af }, { 0xa00de945, 0x7240b5c7, 0x3a152e37, 0x1056fef7, 0xdf542233, 0x76dfabc8, 0xaf3986b1, 0xbd06cadf, 0x5f55c75f, 0xdc1e234a, 0xf1a70287, 0x957df454 } }, { { 0x7ac2fc17, 0x4c9d83cb, 0x31d8e2c2, 0xcb286e53, 0xce04913f, 0x7653a9cc, 0x18cdd943, 0x8f43806e, 0x51fe89ef, 0x613d763c, 0x90264680, 0xc411f15a }, { 0x5fd33209, 0xc1b558cc, 0x58fc26e0, 0xae65910d, 0xe453ed78, 0xaac87a64, 0x2ed1e1d1, 0x77d4ae73, 0xac538ff4, 0xbfd05df6, 0x2f9ff487, 0xc3ca73bc }, { 0x180c4b01, 0x6f10d124, 0x69bf9c12, 0x7312f29f, 0x271067ed, 0x47790819, 0xd5893c2b, 0x10bb461a, 0xcddd4920, 0x764acc61, 0x73e988d8, 0x30cd581e } }, { { 0x57718385, 0x79cad662, 0xe987f316, 0x5585237d, 0xb083c74b, 0xaa6bb190, 0x4424195a, 0xd17967cf, 0x4b32a3bf, 0x5f586c90, 0xeca45dc5, 0xfe984bf3 }, { 0x17191a46, 0x2d3bc94f, 0xb0f647ec, 0xbc30dea1, 0x12e698bb, 0x212816b8, 0xbd028fa4, 0x25ab8d87, 0xc7f5feec, 0x2784c192, 0x73066da9, 0x318d35a8 }, { 0xee59b0f4, 0x3a5b5645, 0x679d358b, 0x38c9e97c, 0x93476a30, 0x6762ee99, 0x6a0cd7e6, 0xca1b461e, 0x415edcdb, 0xd824731e, 0x8b27f7e0, 0xefed4130 } }, { { 0xb9fdef1a, 0x4a7442e4, 0xc0146e82, 0xbebbe519, 0xf9e602e4, 0xede111e, 0xd746dbe8, 0x19b831f0, 0xd4b86ccc, 0x52099a60, 0xdb67b3bf, 0x10e98f89 }, { 0x1caea1c, 0xdc15369b, 0x5dc80344, 0x9bdb41, 0x2acc960a, 0xba8780f9, 0x14662313, 0x1b1a50af, 0x326e61a0, 0xba518996, 0xc6ab46cf, 0x3b6a8dfc }, { 0xb6ef922d, 0x7b58726b, 0x73d68e58, 0x5c422c64, 0x45fcb9b1, 0x9dd538b2, 0x8d840cff, 0x37e59f2, 0x8bd8c4da, 0x66d799ab, 0x1cc5d3cc, 0xbf192262 } }, { { 0xe9805209, 0x56b2215f, 0x9423861b, 0x69996ce8, 0x1c7bb5a2, 0xe129cfbc, 0x1f6559eb, 0xb7a58de2, 0xd75bbac9, 0xbb8cdf70, 0x3663e907, 0xbca53a }, { 0xda53d754, 0xb8445406, 0x495b7ae7, 0x3eba7713, 0x4ba17cb0, 0x1b8bf0e6, 0xb56d150a, 0xaf172c20, 0x46bea037, 0x63b8e5b9, 0x892895b1, 0xe85df121 }, { 0xf91dfad0, 0x9a0b208, 0x68888925, 0x2a99402a, 0xd2d631bb, 0x8ec3b6d1, 0xc04e0bff, 0x46996c84, 0xb467d778, 0xc53ec2d3, 0xbfae4756, 0x785ac8fb } }, { { 0x789bc2c1, 0x481baa80, 0xfac9ec44, 0xeeb15820, 0x7b9c440f, 0x6de17346, 0xeed2be88, 0x15c672b9, 0x7ff7749b, 0xd86020e1, 0xb9f9b69b, 0xa3b62182 }, { 0x65ff1293, 0x27b61bff, 0x8aa52cca, 0xd929f0a5, 0x98d919d0, 0x944284e0, 0x385e7903, 0x97abb7d2, 0xde790234, 0x4058234c, 0x7364ed01, 0x91147247 }, { 0xb5e72a1, 0x81d54ddc, 0xd0e1ee55, 0xd24a2bff, 0x5ad5c13c, 0x5f988a82, 0x522296a8, 0xe3da9950, 0x58b27088, 0x2f3a258d, 0x89350da, 0x18c9ff34 } } } };
mirage-crypto
2.0.2
ISC
https://github.com/mirage/mirage-crypto
git+https://github.com/mirage/mirage-crypto.git
h
mirage-crypto-2.0.2/ec/native/p384_tables_64.h
/* Pre-computed 64-bit multiples of the generator point G for the curve p384, used for speeding up its scalar multiplication in point_operations.h. Generated by ../../_build/default/ec/gen_tables/gen_tables.exe */ #ifndef ARCH_64BIT #error "Cannot use 64-bit tables on a 32-bit architecture" #endif static WORD generator_table[96][15][3][LIMBS] = { { { { 0x3dd0756649c0b528, 0x20e378e2a0d6ce38, 0x879c3afc541b4d6e, 0x6454868459a30eff, 0x812ff723614ede2b, 0x4d3aadc2299e1513 }, { 0x23043dad4b03a4fe, 0xa1bfa8bf7bb4a9ac, 0x8bade7562e83b050, 0xc6c3521968f4ffd9, 0xdd8002263969a840, 0x2b78abc25a15c5e9 }, { 0xffffffff00000001, 0x000000ffffffff, 0x00000000000001, 0000000000000000, 0000000000000000, 0000000000000000 } }, { { 0x1775f419171377ce, 0x8f8dcaccf02dd53f, 0x108eafd957721602, 0x2bfbb6c63049e16e, 0xc2aaeeb12630cb3a, 0x18e5fd62e82fa916 }, { 0xd9962e22eff819e0, 0x5acb8f8ef83f274, 0x6b7f49320aa3a6d6, 0xf5330ad438f6d02f, 0x1b0f5f11e8de0342, 0x49ef8462f3ea4828 }, { 0x46087b5a960749fc, 0x437f517ef7695358, 0x175bceac5d0760a1, 0x8d86a432d1e9ffb3, 0xbb00044c72d35081, 0x56f15784b42b8bd3 } }, { { 0x90061190cd3f87e4, 0x7498b874bb5a79f5, 0x527623b440e63552, 0xb013a039cc37dce6, 0x7514c4ede53eab90, 0xb54d7318c56c46e8 }, { 0x71af69f3ed39daf7, 0x6a3080fb0dc7e9a3, 0x71f545a8efd9f8ef, 0xbc0fdedb79e2a183, 0x5e2b5907a8a9ebb8, 0x22d141a70421ddd9 }, { 0x3a07faea0ed4c0c1, 0x33d41da3b06ca3b5, 0x5ebd15709b64463a, 0x6a2b12fbe62f6a2, 0x5f4c6dd6db8d656e, 0x1b85600cd22daaac } }, { { 0xd0810c257d43053e, 0x9205222b31fccf4d, 0x313eff1ad6891f70, 0x41ce635c639196b3, 0x8381a476288f9ff0, 0x7cdfc786d5794ef }, { 0x67ea350a61100a2d, 0x44436418f3a4677c, 0x763844aaf778bf39, 0xdf2f94ba627615fc, 0xbdacb42e770e5948, 0x463d1dc3674224ef }, { 0x58516b3a17b84458, 0x8119eae3341a79b4, 0x1ec85e22ad467b28, 0x8730a2ab1fe6c4bb, 0xb40ce16725be605c, 0x8a127fdbad15ca1f } }, { { 0xbaccc89c2fa621b1, 0xb42e2a56ab8e11e7, 0x4f92e5549c772f47, 0xf2ed6ffc42c1289c, 0x9f70ebae102d26f2, 0xcba70d16de0a7256 }, { 0x5a5be46330f2f421, 0x5d3a2b487073c5cd, 0xa1b79b6a5c9fc83c, 0x5d932b36c1baf0de, 0x9cd1e34a11650361, 0x35ebb6736be51642 }, { 0x340c60226b6b6a53, 0x897365d2d9af0c85, 0x5dd1178da2ede61, 0xf404544d5dbfc016, 0x5711dce8fd560ee4, 0x2248af1625ffeba } }, { { 0xc7a1f7d0d607168c, 0x5b428dce0773d34b, 0xf0446f765a9e7d06, 0xe801980c7c520736, 0xdda9194d32f7576b, 0xec5a0e3d4a985bb7 }, { 0xce8a3799db29a31d, 0x8e8c34ec0ebc4c34, 0xa7b23cb990394d2a, 0x6a52fc8a62560bc7, 0xf3a98244a88dbb77, 0xde8033caa7ef8698 }, { 0x8337a00875129a5c, 0x34ec10984d2d526d, 0xa4874cc9e8e281b4, 0x21d352c823e4c098, 0xf0f3299afa26652e, 0x70cd33b67451abbf } }, { { 0xad3b973090e0fd07, 0x59d49373f6f6c37d, 0x5ae827c37e1a9c5c, 0x426b59f944fe8bde, 0x38b5c7274c001c1, 0xbbe8356bc6f70a43 }, { 0xca4a8885146dfc5c, 0xebebe942a2b85365, 0xd9a14d6f2a1bc413, 0xaa55001fc843e9ca, 0xd3a66c4922bbce7b, 0x6952586c4d8f8f3c }, { 0x419e0342e1fdc405, 0x2d857a06d57c0802, 0x5b17b0370688eed7, 0x3f726217ca6bb2d2, 0xdf4731e66cc35c65, 0x34aefb81717bfbc5 } }, { { 0x6d74e8e69d58a106, 0xc02b5245e4b44554, 0xc314f9b314d677ed, 0xe6e9fdf784281f6c, 0xd8513cef411e744f, 0x32ca0a5c00464233 }, { 0x59749c04fa195866, 0x34af1d32772e5d6e, 0x2582835548dc4954, 0xa178fffd1eceded4, 0x96cffe1233666974, 0x5d9cd415969f4db4 }, { 0x25a535ddb1a806b1, 0x7729bdcf7f387bf4, 0xa4be022807e90e, 0x55a5895a6b18d5b3, 0xcdb27366312504cd, 0xf4b936b8c9399087 } }, { { 0xe0da4d6faa07ff30, 0x1f3d7d40e5f8266, 0x46682a7b59075c09, 0xb018242e0dcc35cc, 0x7076fbc6e5b34129, 0x47db6430bedebd04 }, { 0xf18f1d17739eab0d, 0x5e43e83c64003ecd, 0xe96b68ad17b303bf, 0x3ab953a25908600d, 0xfd9731f8975aaa92, 0x4c85a4ee7e7f7bce }, { 0x88c0f86f1b02ae8c, 0x87757ec475570f14, 0x3de88a573d9b4b2b, 0xd9feef1b5cbb82c8, 0x3cb78960e11e4575, 0xc4d3cb3425337c98 } }, { { 0x874f376cb10ff913, 0x1f784a07ed5273bd, 0xea9abd72d0d603e4, 0xc310b8df2961a0ae, 0xfbbd061f58517304, 0xf7dddf931235ded0 }, { 0x3fa74e99ae358ac7, 0x5229903e79bea66e, 0xf43772a71f3471e3, 0xf3703279526ba376, 0x551889c7738393bb, 0xc349ae26533597fe }, { 0x112e468ef238534a, 0x7c61f09ed2f6356a, 0x5baeb29a158f87fe, 0x88e55cf35add6a7, 0xf3e3b165a57d7fd9, 0x348f0a222c8b4fa6 } }, { { 0x195dbb5f07d3d080, 0x1d5aed010e77ed7a, 0xd9932eb4836339a4, 0x6e1f1a5b4142dcd1, 0x772e1081284c10e9, 0x19171e4e7f929724 }, { 0x2cf5f216ba14eeea, 0x12880010dc4d63b9, 0x41de18cde6a0ac13, 0xaa63a0ad232cf37f, 0xc0484c7e0cb9403d, 0xa3750c09fa9ce19e }, { 0x17b92a6bf30e6ce4, 0xdfcecf9a3896d1af, 0xf0714881c0cce54d, 0x5a31666749921e71, 0x38ab7ac4143545f1, 0x86884ece4a3ff556 } }, { { 0xce6081090fbb67b, 0x9ab4799014db04bf, 0xb22d63d9781812a2, 0xd4e24f24920fc18, 0x2dae40ffd5f99176, 0x6be1ff400ec7a6d7 }, { 0xfe1a383ac526cd03, 0x20efe98709e1f01d, 0x8f9f75ea64f085c3, 0x39021219fe7ae7e4, 0xb7aa2253b0638633, 0x55e5c90fcda9390c }, { 0xabfbeccef3414221, 0xf3367b858054e870, 0xa386fadfcbf0a821, 0x78643e690367980f, 0x90a07be8022477e1, 0xcb70c04148168bdb } }, { { 0x455266ee663097a9, 0x9c19530c2c11aecf, 0xbf84101497e11b53, 0x2d41b3d1d2545e3d, 0xbe3bfa7f9dbd6317, 0x65b5d1d31cce2037 }, { 0x4e84079a66f5ac7a, 0x284bd0827a29ff7d, 0x60c020d284bd8d34, 0x290f64ce7649460, 0x898452c80e70d7eb, 0x11c09e8570def7f9 }, { 0xff0ed92f3867b7cb, 0xfe835f476f1e8c54, 0x8f16af25d0612220, 0xfb76789dc39bace9, 0xb3a32d2cea2bfbd5, 0x2401847737821402 } }, { { 0x2644fa3cc1a249da, 0x2a4f94dda8763f93, 0x1d3d04e5a4795963, 0xf75d883f0a3c09a1, 0x8fd577991977b254, 0xc248a2cf079e9817 }, { 0xba1e7b84ff015d89, 0x87092a0bdd09901, 0x8519b31607af88ba, 0xd52732b531ef9d88, 0xce4ebe8be0c87634, 0x4914f90cf20aa1d7 }, { 0xe1509d8152ea2338, 0xaab0b5f9cc544725, 0x5d33ce781fd23f3c, 0xfd07c64fbbf950f9, 0x809683d8cb590e37, 0x91000306ff8f704c } }, { { 0x6e8fe61d1421ba3d, 0x71f69efa49041117, 0x14655fb7a27b8646, 0x1923320a4207ce86, 0x7009e76818e451b, 0x353a5ad79baabeb6 }, { 0xe1095ddbaa101ab3, 0x41cc1e064ee3ab40, 0xaa71ca12acff35f6, 0x4cb7dd8c69fb60cc, 0x490474b990ebdf5f, 0x7970c034d1731154 }, { 0x257b30f82e06411c, 0x9934f27495153d61, 0x6b043911fe4528ee, 0x81a3b37605b5de15, 0x13f2eeb4cac64f, 0x9ef18c0c02b3e572 } } }, { { { 0x2b5ed6e00b15ad, 0x2631077e618ff810, 0x9efd9f5bdb23f814, 0xbb6b4c83a5f59d35, 0xce0965e1ce33e46c, 0x8ae8708b2eb4f4ff }, { 0x9c088d7dc55ff2d9, 0xf7baab618649849c, 0x9f1a80d581b37633, 0x9e4ae4788e580be7, 0x8eb92fa2c137ae83, 0xf2b96a01e75163d6 }, { 0x8adb9ae9875df0b3, 0x7b288df89e8174c3, 0x252d4e3b458d756e, 0xc669c14e38d74dd0, 0x59ec7d143d29138, 0xe7da8f7d57d17c1a } }, { { 0xb46312405bb99c6b, 0x38b24b31dd1d9c39, 0x3e8acf64aa7b3e58, 0xe98769d3dee93358, 0x714d850edbe16a8b, 0x77f005a1c5eaf8c2 }, { 0xe9ad5ebc705e3ff8, 0x526a56343e35c761, 0x90f057c115ec1f07, 0x84a1559395e90beb, 0x9232eb20d3e871f8, 0x31a26917c30be810 }, { 0xfbb3aa5a83ef7535, 0x9a2d622e4de6267c, 0x241e1b0459e26672, 0x7a78e10b2019430e, 0x666ffd1d2544abe8, 0x95593e578a0ea03b } }, { { 0xab364bb9c388203e, 0xecc8d8b7edaaff37, 0xd9b03c6fe8ef0c24, 0x8c775b28f100ccf, 0xac6188200ffb41aa, 0x4555135b32d397be }, { 0xc85884616012201a, 0x37705244a2b26296, 0x98821dab03a71acf, 0xa1dee9c4d33ef254, 0xc38315264baa5579, 0x725013a67a92b198 }, { 0x8d99ea1f4dba5439, 0x19090128fcd8dea5, 0x714d2f4c6392efed, 0xb10f8896bba0cd44, 0x63e198f4c45dcf77, 0xc3de520f0c3ecd98 } }, { { 0x30a08974ab29e799, 0xaf1362f8cba3430d, 0x7bc51aa7d0b14d5, 0x2323b0877e23d228, 0x6f530f21addc977c, 0xb1670e57916f0034 }, { 0x550a77ab6e31e99a, 0x42259f0764c4d1f7, 0x66bb648782446254, 0x2b2273fdf5e65415, 0xc0cbd3c93f08e611, 0x3f747a7c4aebed0b }, { 0x671262b7e31b004c, 0x5e905c7424e71cc3, 0xbd6fb4e8ebc7611a, 0x3a580bcebb9e90c, 0x37ec1c614f96d0c0, 0x370c63c01d033b74 } }, { { 0x8e29c564dd76f303, 0x4a4c37e2552366b7, 0x339bc0f4e0fb2acd, 0xb883e0c6c3541fe0, 0xc51700cd9ef67d0b, 0x7163daf9c992a3ee }, { 0x6c626d552d677e71, 0xd676b81308d2d63c, 0xa44d1ddc39832fa9, 0xad8e79f995e4e3cc, 0xfd8209ccbb65d859, 0x953466ab5b2ebebb }, { 0x8d707ab949e46fdd, 0xd9d8a1d79d142e65, 0x7be4ce9a2624c5f, 0x2ec1188b832ed889, 0x64d6a408120b3755, 0x2ca988405743034c } }, { { 0xa7d14bc4976b637a, 0x2de20ec30c9ddaeb, 0xa47c8e4687e361c, 0x874a76c96861118a, 0x94b9dbc301cfad40, 0x4ef70dcc31117ade }, { 0xf6d000920df93321, 0x617e804758a8407c, 0x85d18704e1c6c4eb, 0xa21a686e80b25584, 0xa04417f9c3042a87, 0x4f94ed5a5453a0d7 }, { 0xf43be4f649c58d7f, 0x170ca27849a927c6, 0xa129c51667463666, 0x5a845bf931aa74f6, 0x728f372417e7e613, 0x12e946d9fae28755 } }, { { 0xba8ec8451dd7ea61, 0x1739c421847b5d23, 0x131a14844a628afb, 0x8d8bc99c33b72971, 0x8bb3197c7f03cdcc, 0x1a1e09efb8c742ee }, { 0x25f5c94b77968e6, 0xd81110b1c0fb2652, 0x4a3fa9223f767f93, 0xab3a7ec08dfa1bd8, 0xe882391a97f8d910, 0x284dc826a5b166b8 }, { 0x14a866797c69230b, 0xd3b7004583431ab2, 0x5cb596a03a7e5c28, 0x37b28ef5463c7b2a, 0x99bc27223592f8a2, 0xbe448e7f17dffcd0 } }, { { 0x3cf5096b518a467a, 0x8d770249d82b449d, 0x48dc4470e1102928, 0xfc8d4da32e94e8f9, 0x2945c66f6972253d, 0x43d675b7764155b0 }, { 0x3860ee256fcbb55, 0xe144cbf528440876, 0xc42ed02e790403c0, 0xa1ae80e2578c55cf, 0xb6edc4d502f69fa7, 0xdb52f8651ae2c098 }, { 0xc01d600cc74f60f, 0xee70cab46cefdf50, 0x71ba3319d9de0ab4, 0x847e8c1b94cc8441, 0x28783a4a0dffb136, 0xad48c494ed384da9 } }, { { 0x2c26ea9824b9015d, 0xb0f18d2621a76635, 0xb1348f7c59a95009, 0x94b228dae1111578, 0x6d734d32611860b6, 0x7adf45698f28e677 }, { 0xf7e151c2cb5e5cea, 0x199fe0151960143c, 0x2da20d87ff40af31, 0x34ca25dd311ece7b, 0x6c966e18a9875bb, 0x23a4a39c3bbe8e97 }, { 0x3df1f22da64221fe, 0x9365581078eb3f8, 0xf41215f4f0dc7946, 0x2af1cf558fea67bb, 0x9ea803191e80a11e, 0xbe4248907864db7d } }, { { 0x779840b4b04c923e, 0x79ad84bac29908f0, 0x7e9a67df934b139c, 0x32806f42f4a9d489, 0x35534b404e1a9bc0, 0x3970d78b957fd851 }, { 0x991fe8fb749e0f74, 0x8edb10487bd46cc3, 0x74642a9df0df0aff, 0xc5ab51fb26f39e6e, 0x44317e8b9103c368, 0xfe7125eccf0bb9c9 }, { 0xf7d1f5cdd530779f, 0x7713be377252a72c, 0xaaa9ee4ad06e0796, 0x7ba3ba8af8c4c97b, 0x2976af70a04429ec, 0x733e59b4bf78012a } }, { { 0xfb45c1b0ed1c32a9, 0x7f13f083f2e28db6, 0xd6c8f89023f35a58, 0xeae5a1380f63dbe4, 0x6e8721ee10fac7af, 0x2937b73422a377f8 }, { 0xac5a498e448f4baa, 0xe91a70965ca888af, 0x486dac0eb7f2efb1, 0x859512361b36268a, 0xcecd2c4b6854d261, 0x58142369feaa0bac }, { 0x47f9d40851d78378, 0x78b8e5ce465dbc11, 0xb8288f1e529f95e3, 0x4b5e09182b697803, 0xf3e78f319f1b112d, 0xc1ac6c1a97084408 } }, { { 0x1bb42cf4693c78c9, 0xb005c3bed572e7bf, 0x95bb74e843ec6024, 0x72f3e8c9d11dbcc5, 0x60dbf4705bdab33c, 0x4fe22772501a6b04 }, { 0x6770bd81cea546d7, 0xd99483fab577bc3c, 0x76ecf9003b905ed5, 0x77a5e497431bffa9, 0xf2d7e43ff6bbc5b9, 0x2feca451857aaa1e }, { 0xd896b610616864f, 0xf9c7fe18d34d6c85, 0xa0f8df3f20cdb0de, 0xb5a28b6138140659, 0x58a54588e189a451, 0xa068e57b692b2520 } }, { { 0x35f63a20d2842263, 0x412886bebdd94669, 0xa2d28ea9c6931df9, 0xb8f447bf9457a28a, 0xbc80ef374628f06b, 0x13e75be632d1b24c }, { 0x68e681090e82192a, 0x72aa21707532442, 0x4ccbd88632586e6d, 0x3d27e321a058ad64, 0xbf956203d1492416, 0x7a45f69c0b0e79d8 }, { 0xddeb9744f3e4d95, 0x128e7f06f67a659c, 0x8dd6c477f278f0aa, 0x3c1e84530c22fca, 0x108949d5a46eddb8, 0xb3446f1d6454cc03 } }, { { 0x1566b621f04c8831, 0x38e4d3274ec0a6d4, 0xbb9151be50e8d74c, 0x8ee9240abc0e9f9, 0x34cfaf48ecaaf2e0, 0x7f07df2402136bd0 }, { 0xdd31ffe79d6d859a, 0x42776f03c252b565, 0x73e969ead969fa08, 0x63b97b5d92e7a11e, 0xff34d42f0f4f0083, 0x81eb8c172bd553ae }, { 0x9d1b437a307507a4, 0xbc52f18b2b0f88f5, 0x895fc4120fef3dbb, 0xc767b58f12bb3f62, 0x88c64e1c5e8127f1, 0xcd46dde9e29999b8 } }, { { 0xfeafe8cb4c127da1, 0x19238cef911d02c, 0x7f20206264553898, 0xd7336952be06e54e, 0x5c44ee84653ea48b, 0x10e0f568186bd4ee }, { 0xea3d2d4eee3b1c91, 0x43a3eba6b2080775, 0xdd87dd5df13da549, 0x3ef80dab51a91c80, 0xe96d1dc2c6d9c4d, 0xd9f5fe16be83c248 }, { 0xcfc04300a173675d, 0x218e856677a1712f, 0x2a47a096720b62e5, 0x70b13f129d1b89e7, 0xb04e282dbfa066fb, 0x9b99daeeadf6cab9 } } }, { { { 0xab7dd6beb202c725, 0x2f011645d8977d4f, 0xc780260aae62f148, 0x872c6487000481bd, 0xd4ec2988c67dac7c, 0x19271701fb00a004 }, { 0xe1bf6398bd8cb2a1, 0xf5c3f2ec821f83f1, 0xffdbb287a3b3a7ac, 0x4d3c708bc5544363, 0x9fc8b2cf1a08fdd2, 0x77b5df9ce1dd7251 }, { 0x5c492759cb19b723, 0xcfccef49b6598b09, 0xc2ae166eb53bb487, 0x3ca72a602431a277, 0xd336b293fbdd06ab, 0xe81a556ae4d9fc96 } }, { { 0xdf4b609f1b7e8050, 0x48c61d2a26ce2fdf, 0xa5f78d95382481f4, 0x8a099c8a765e815, 0xeb544534b8824ca1, 0x43c1966cff2b5588 }, { 0x5025f8fbf1ee3269, 0xba027fcf70ce7790, 0x62ac90471d31f49b, 0x35cfc9505cccace8, 0x9e4d664cae6c89dc, 0x125f5ecec5528b73 }, { 0xd2c44f0c04b150dc, 0x21d62613cec4b986, 0x4488c141a8d894a1, 0x29c09ca8df340382, 0x20be00ffbba452af, 0x2e7c707bf8d80eb6 } }, { { 0x44b6bf614b65c082, 0xd737eaa3c77e25b5, 0xa8caf10d15fd71ad, 0x314971f0847fd1c1, 0x3d6d698afd3dedd4, 0xe4d419db67ff72ed }, { 0x2ce4fb78a3bff197, 0x158f18fc7469d889, 0x4ab3aafab8ba0717, 0xa02a9a9b2d8af09c, 0xf58b72d67c4b5318, 0x44a33b42cdb9ba43 }, { 0xff0c0a396de0a980, 0xcaeb49bf23e7e4fc, 0x4ad02dabd8e8087, 0x608de9b3cce50960, 0x42e6f4872dc8f50c, 0x4b3d5a1141d78ebc } }, { { 0xd878755a4f9a5a57, 0x1e66330aa81b2479, 0x4233130e6550fdb1, 0x430b64e502fb80f6, 0x8ba0ee25c58e4b35, 0x11f096fe58df1b65 }, { 0x2decc9f1adb076ba, 0x2bc164ac33b2bc6a, 0xce34398aa83b6a21, 0xb7faf71e3f096759, 0x755e0528055b8183, 0x4d6a535da4f0b201 }, { 0xe8665487c80a29e1, 0x71c9b9fef1c32519, 0xfbe83ea9bdf168aa, 0x7aa563449d586a01, 0x46574cd8263679ee, 0x2f5966333b601347 } }, { { 0x4887372159b362ba, 0xd8090c31ddac4175, 0x5204d0425a0189dd, 0xc3a9d578e3ed3d99, 0xf85f69467ae4802b, 0xca5c85afc2849973 }, { 0x46edf3a088d3c05d, 0x2fd24688afe3576c, 0x4c709e022b7e11bd, 0x6476a16a7ae65443, 0xb6f8a6c3c4995a8c, 0xc920df8a1c102fba }, { 0xe49a6b545f423cb6, 0x1a8801661c89e88, 0xbb5e9172f212604a, 0x39f27bb92a90e243, 0x9ec1bb82a450facc, 0x524aad8a295a468c } }, { { 0x4e318823fccffcb1, 0x735ea4bda0ce3ffc, 0x62b380fae7d89216, 0x12afe34a1f9574d4, 0xadb8fee51aaf6f31, 0xee798cdc4d3a1fea }, { 0xcc4fd021f060431e, 0x89689664d1cf6198, 0xcf2d7ad315a27334, 0x570d38f69ba5733, 0x60d5d3f269a476ae, 0x47c49483839bd2a8 }, { 0x81022567bd71034b, 0xcd80104b5d91a254, 0x78402871885dc8a5, 0x5666d53821bd2630, 0x5a4b1d6a661425e6, 0x278ed610261b1c7e } }, { { 0x837be1b6c324b920, 0x904943c552c5e765, 0x134b3a05668da511, 0x21257032dffe3e28, 0x99f62de6e5fc8a56, 0xdeac5f54ed869065 }, { 0xcd3766e269ea0a64, 0xdc3acf93090706a2, 0x7023e2edb8d07be0, 0xa1c25be7e59dd8ce, 0xb2519ab536fc529e, 0x41eff87412d1ad09 }, { 0x8e9aa1e918043965, 0xfe82f6c0e7dd81a2, 0x8d5306aa1587b6ce, 0x6e767f81f5c05e39, 0x336f9c0e55403744, 0x9ca6ee5c2582eef4 } }, { { 0xd544806da755152e, 0xd2313863c23bd0f7, 0xfaea8fbcce703eff, 0x988158af7e118931, 0x7c7b6b53f4ab5582, 0x1331b65003947c52 }, { 0xaadbdbff57fb603b, 0x78fb9ca87030a6de, 0x27ff8a50b20aa731, 0x273a54121dfb5a80, 0xb456f23f1b6a5f2e, 0xc67a08d1a26826a }, { 0xd40882402939612e, 0x2fbc53f5bc32ee50, 0x60dddaf277e9bb47, 0x7974ee7c6b1ef7ea, 0x25e48600e8b56fc, 0x1654aff9d8750e5a } }, { { 0xd8daf893f41457e, 0x1293ecbcad1cb63e, 0xe18660092930904d, 0x46845571b3a2990d, 0x951654599b723907, 0x7c9f1b29cc8d438e }, { 0x31f0fa8c09790cc6, 0x98898a51524da688, 0xe52633971a066186, 0x85e7097c250747ac, 0xccd291f68e25660f, 0x13eb71b5e69d2674 }, { 0x51e8017f3799d6, 0x5b8362a3af642bc3, 0xc22c3ea211111619, 0x5c1942110c692074, 0x3fc692e17b3dbe7f, 0x49b7ca5b7990d6e1 } }, { { 0xeec47ab7e5f087ae, 0x499dd84a0c5c8e03, 0x54e3fab5127ea4c5, 0xc9aaa34a85e9749e, 0xd333e8c8a7b5a614, 0xc8627bdd422433cc }, { 0x60aaff1dfa77a1da, 0xa2eaabb19e3ae686, 0x51fc23d72a0d755b, 0x40a038608efc7c0, 0x3601351941e4fbf9, 0x5a71c3524939351a }, { 0xefad91726539579, 0xe109f241de371f10, 0x25a5adb623941720, 0x4eea7a5fe5e04acc, 0xa47e3e322cc1a6e0, 0xf3e3e3434600f678 } }, { { 0xa8f1110be858fc27, 0x1f9195e0d574464f, 0x5c15ea2751c38c4, 0x72da71392e806e85, 0xe92dd10e52f03091, 0x4dadd2bb8cda8f21 }, { 0x4d676e0921cd7e91, 0xee042b2be3b5598e, 0x8c6d7941c2e6a73b, 0x401d6ced1ea17b98, 0x9ac3f1bbcf96571, 0x1e0d2306f7fdd74b }, { 0x67737bd9e5379c80, 0x70b578c8a4cb401b, 0xd4fa3b0dc08da6d9, 0x526b32db02eff1fb, 0x7aa572da4ade9b7d, 0x87b6f5faf4a32b4c } }, { { 0x3930a7fd911cd251, 0x44e43265f232ee32, 0xac65728dc49c5c97, 0x7bd7d674fb720674, 0x634007511bf0a822, 0xfb6d6358d61c1f4b }, { 0x4a159c95bab5c7ed, 0x1bee04359022349d, 0x3ab29eb789e5520c, 0xca0e6415d177fec9, 0xabe412e73fbe6f7f, 0x1894f1055220eb7c }, { 0x7173a89dbd6ccb9c, 0x705ee3ec9d514467, 0x5890ddaef77f6352, 0xfec161aa4039ccbb, 0x3900fb5f2ac800aa, 0x3c491441802d484 } }, { { 0x37bd93f3e0f6aa14, 0x484b8e3929d6c1df, 0x6a5cf222f3da396e, 0x64884932ffb799af, 0x701debf4188138b2, 0xded1eedac1c00300 }, { 0x9503d0e101973ef4, 0x0e8312bf2736e5, 0xb8f2938c64721c20, 0xa56373204e8a5f07, 0xdfff2750958d34c5, 0xf3bd3280969abdfd }, { 0xe176367a47d5295d, 0x1dea7e1edcd445b4, 0x672b5d0e79e947c6, 0x26b07c6001e060cd, 0xca8864f16bb2d2eb, 0x8c5304646decd466 } }, { { 0x148810cf3fd8f7a2, 0xa62c827aea3cf388, 0x6170da31376e0d70, 0xa8835eba7c12ab18, 0xd9b39bbbaa5e180a, 0x9cb6caf40779ec28 }, { 0xd724326f922dfba8, 0x759d8acac68521d2, 0x6077d1ed3d7e9b29, 0xadafc1a7dca648af, 0xa86ca80850420657, 0x7b845b51a9229c4c }, { 0x91e7ce20480421d, 0x9aabc6765eb10bf, 0xda1af0a56303110, 0x5f1b0ada6dade110, 0xa10b6d292c51eedb, 0x10c71db6af2531f2 } }, { { 0x89d44b1b6831fdf3, 0x1fb3e52e905a58f, 0x103cb83eea2371ef, 0xd2cbcde5dcd27a9b, 0x6c7adbb8629ea61c, 0xf3aed52ef96058a6 }, { 0x467e8f6f1cb06199, 0x72de875de993df69, 0x7583cdbf0e83cd9f, 0x43a41b1d1c4ba8e7, 0x11a438ae16e9daf1, 0x81d69e4ce6243cc7 }, { 0x3dabc782f5b8c9e6, 0xf6d8b321209c4dd9, 0x439a79d74c510238, 0x3453d6dd7a6f494c, 0xf72e5825909a79cf, 0x7dfe722e6bea73fe } } }, { { { 0xa8ae8baf56e5fdfa, 0xc29eead6afa4f939, 0xb9f55b55db0d64e8, 0x177d5d3cab649b92, 0x5227be25054fb3ba, 0xf75a5c409967a3d5 }, { 0x9e6b23534a056e7c, 0xeb3e010c1c7c3b8, 0xbc83401962a65cc0, 0x8a7fdf7970279cae, 0xb17e7ec0b16a288b, 0x734d5b548073d4d6 }, { 0x9f995efcff486fea, 0x854bc7369110b194, 0x15c2cee4a99f8b3d, 0xf82f66ebb9ad615e, 0x7f4c2ce02c36cca0, 0xfb8774cda0d1a8a2 } }, { { 0xe46ad4c894170115, 0xcfe06d01e935c834, 0x82f723cdee3c237a, 0x9275ced8fb7932cc, 0xb594a4e62e4bf731, 0x38b6e57bb88e69f7 }, { 0x66e8d830dcf4ce35, 0xad9e782203516fc3, 0xc85855a42677aef3, 0xbfca9305535e7e0d, 0x3128265679155e85, 0xa8a963afc8667cba }, { 0x21f550755ccae131, 0xae52a367474536f3, 0x6986aeccd18ff02f, 0xab0db3546a99bc5b, 0x78a346611a15a8a4, 0x2e85be991ec5b0e9 } }, { { 0x7014233b0d9af4cc, 0x3a9c91594cd355fd, 0xc3025cd12ba184bf, 0x31a8af30c5805b7e, 0x7cdae51214956d79, 0xd2cc4c189bcdbc5e }, { 0x5292f86ee4252d43, 0x8ccca7924fbc000a, 0xd3cfeb45589ac2f, 0x2a1fa3133e65c9ac, 0x953f5edc03f1a4e1, 0x38eb643011018731 }, { 0x8815ef00d0802dff, 0x8d35d1297325aaf6, 0xea03317de9116db0, 0x2fe62ac438dcf930, 0x4e560f27dae33bb, 0x74ac6e0cc6adfddc } }, { { 0xb0028271bdc0acad, 0x910ebf20e9f218d3, 0x3d01d7044da9535f, 0x1d7b8ae1a1791afd, 0x4a81b848c8e3d62a, 0x767e5c97d2fc084d }, { 0x7528a7c0986726a3, 0x95d68458857ed6aa, 0xc19418c128ab1481, 0x75256abfb4b0465f, 0xed38ffbb9b1742c1, 0xd58d339d46f4f9e2 }, { 0x3cdb7657c6a18f4f, 0x218ef53de0b401dd, 0x5e44856386b831c9, 0x2616b2951e280279, 0xf5ca15a2432afc87, 0x3e572b7ef81442fa } }, { { 0xeccc4e67a92a43c, 0xef36e946f61fa134, 0xdd9155bcb785562b, 0x7a1d5989cf8ea63c, 0x7b729cd45d54f140, 0x6caecf22caf5a1e9 }, { 0x603b2a7bde0486b0, 0x3f505eda5ae9b52c, 0x4946536c9b27766b, 0xb8e714e3a44ef9c4, 0x444fc77a7fc8c8ce, 0x2ced56d4add620a }, { 0xea00b079b6c284e5, 0x2e52691dc7eba1ca, 0xa57475c3408b6774, 0x30635a93adc63480, 0x816ab922c784f289, 0xb2ca9726d6b934ee } }, { { 0x30763403499b62df, 0x3e72e3f4c911259e, 0x6767475f859a7e4c, 0xba472d8c590eb2c4, 0x34a525a3cb62a0dc, 0xb6871b2750c8be01 }, { 0xdb6cf4ae75c84cc2, 0x4878e58cce0a9033, 0x69f9a91a0450a28c, 0x4db60a100ae37690, 0x17fb6c328d2d0a4c, 0x4157bfeb3e218074 }, { 0x805b91997898182f, 0x70d6d78075d2c645, 0x7e5bf91b0b329d61, 0xcec1c6a7141d117, 0x2e6cd1fb4574f971, 0xa37a28c20831cf4d } }, { { 0x8d5b80a16d75ae60, 0x588a8c899cf9008e, 0x1e6b009886b239f6, 0x15d4881c715ca5aa, 0xf07443648db3e529, 0x1604a66f9e2a681b }, { 0x52f53a2f6211b56b, 0x5a1fa0defd5cd0d3, 0x4e393226a1afbdbf, 0x77e84d39d4f322dc, 0x1a1d805f3cd9ba4e, 0xb6c339e8c27e250c }, { 0x54358561259b6ecc, 0x4011cfe0b6b405a5, 0x6714d4dabc371edc, 0x3fdcc8d089057698, 0x692d619798056605, 0x9b836599e2695561 } }, { { 0x3a9e9d33906f983c, 0x2d144aad98638e20, 0x8ea7bac0257997dd, 0xb5cc45531658e474, 0xd34b81bd324d634f, 0x535d503358dcbd4e }, { 0x12b46e12242e8cb5, 0xceb7d860b5352153, 0xd2f73a7c59046f46, 0x2d5c4c81548dcf40, 0xa3850c51b8359266, 0x87470b759dc52f9f }, { 0xade2ed68a1adcbc2, 0x1f04b17838ffb142, 0x6667d06910e35419, 0x567578a488bee9d3, 0xfd1c627af93b9d72, 0x452648766e42df5e } }, { { 0xe2afad2ed3155b13, 0x2173894fd2f34fc, 0xe8d7ca7d6c20cb9c, 0xbca37e6d50d8ca3a, 0xad8bdb0689ec1ba, 0x230e2a6ecc1836f0 }, { 0x3486d31e69be110f, 0xd11e8fac6b5ad0de, 0x1b16e103d809eab1, 0x6b9933407b02f91d, 0x1928192b0c5637ec, 0xce95046eda8e6204 }, { 0xb416f0106cebaf4f, 0xb9fdc273834c131a, 0x1b53b744fb1232fa, 0x3b93024a5f6f2407, 0x9973469d7085a3dd, 0x2b3f80e64f0e4a18 } }, { { 0x53e0c60174537d05, 0x3b743877e5ebc375, 0x6db8720936f057c7, 0xa656820faa1b9a51, 0x29aadb5343f7e34f, 0x845f5884226ec18a }, { 0x78ad7747b96cba02, 0x9dc2c552362a5bd7, 0x229dc2bdf630c912, 0x83692490b54b024a, 0xf3d06e422d0c8ead, 0x1183b0df0e979c4f }, { 0x4f433c44552bbcd4, 0x367d82e1cd3ec208, 0x53594b78a062c778, 0x5ea24e2df45b97fe, 0xad5b13839b2b45a6, 0xb735e1671c97da00 } }, { { 0xceb887efb156200, 0x7a5ca7175324cc0, 0xf84ff61af1e64141, 0xd1fd049401559746, 0x5e49210ecfd95659, 0xc2467eb07ce761fa }, { 0x73608570c620b92d, 0x55835d7a85adfbe6, 0x2428ae41c09d02cc, 0xc44e1bf401212071, 0x54fb2c594ccd835b, 0x5f6306c50afb9b55 }, { 0xa8fff7e88162f423, 0x423b964a342d804b, 0x8c0e17289648a08, 0x263e71d803c9ad90, 0xc08a15c3ca17dbbb, 0x8c729c668140ebcf } }, { { 0xef2de490e8207a85, 0xabc3ad9209897ba2, 0xa7864127efb34745, 0x2fcd6a3f9c931e9c, 0x301af1d985c130c3, 0x6490803e42409c0e }, { 0xaf4c0abbc77265a1, 0xf10dffa4213a2f96, 0x911fc98a7647268d, 0x84fe24b2be61074e, 0x4f624b4303fc99af, 0xa3fcca884ac19010 }, { 0xff07fb8962723d71, 0x6ed21072029ff786, 0xeda162fffe971abc, 0x6de16130c432d0a0, 0xcb20dd2c0f412ebf, 0xe5c6751f85a8003d } }, { { 0xff29fe62043a0f4a, 0x851d1a52504f27c0, 0x17257f6b94f20439, 0x56aa30a5831fd9fe, 0xaf94a88c4bdfadc7, 0xcc12402ae5e32ddf }, { 0x8118ad56bfd94924, 0xa84657681538e546, 0x7b237a73e8fe3cc4, 0xc1b11f8bd8cd501c, 0x4424e195a0cbf114, 0x7f293e645ea6dbd2 }, { 0xe1d4ea80ea0ee8fb, 0x250f890cfcfdf496, 0xf463608362acf5c5, 0x4fab3355fa358af0, 0x93b6d38a0c6c583, 0x79b095b3f248cf69 } }, { { 0x3bd3180b8d54c83, 0xbb85d4c15c4f412d, 0xb8f134a94eda5cb7, 0x28ad5fa18b375a0, 0x423d9a75495dfdfa, 0xb95e3a0fed481784 }, { 0xdd5212e79e82d697, 0x118bf91cda990f30, 0xa858f1e04b915232, 0x8196bd655ba391f1, 0xdd43b91ccad8f341, 0xca1d92849d9e8055 }, { 0x623995faa11300d8, 0xaeb512a6323e4ad6, 0x2b11b77e10e4b354, 0x5ba64eb0eb8314a1, 0xf838812388a88232, 0x9ed0e190f4739e9d } }, { { 0xcd3c269a26ca9983, 0xc303ec00dff816, 0x88df92bca1c86d5, 0x6969e02aa43be160, 0x5bcfd16110eb2c33, 0x1faff035a6c5d942 }, { 0xe3f7a42b63d0a287, 0x326386ab6ea62cc3, 0xa80207220d66512f, 0x105b87e1fad5bce9, 0xcf4711bbf35c76bd, 0x62ec5f1292a4decd }, { 0x10fea5768ca4eb94, 0x6c51075d2a776e84, 0xec8a390abe28b219, 0x5ce94e80a07d5873, 0x9b0e145b53e8ccb0, 0x18a1dcdd24c04d5 } } }, { { { 0x5d2b5f62104b88f7, 0x33b10c5428fc17cb, 0x8147fc4fa3d3ec6, 0xcf71c64e86bb376d, 0xb9ecc96b741958d6, 0x57e1f36feba9587c }, { 0x34cc2fdf5aecd364, 0x6e2afb75e9050ecc, 0xe49dc03aaf8278fa, 0xc621b3a84bf13c08, 0xf745457ef2f53a14, 0x595f2cb05c8577b0 }, { 0x7e3b8c524523b0d3, 0x51f572d3e17a78a6, 0xb068837fdc40a3b3, 0xc9cbadf2b7d690e, 0x65f8b8af6119a2a2, 0xd53662b1159b3933 } }, { { 0x5414dd65543d7d6f, 0xc9a8919fc2376039, 0x9cec7d2ab632affa, 0xdbac1e819b2c948f, 0xdb605b21415cbb10, 0xa5e95c80fec5204c }, { 0x63c1e2f38e2d56c4, 0xfd54c235fc2a7f40, 0x44aef465d204fc82, 0xf40cf2fb78abb161, 0x8e4eeb80647fdd1c, 0xc711a5b1840023f4 }, { 0x2ab00820a78ef3da, 0x63bb3673a1b6051e, 0x3933e6e036fa6c6e, 0x61a77454568afa18, 0x31e893de68b12227, 0x4bb508f28e2d92b3 } }, { { 0x7cdef3ffbd6e3c3, 0xf602bb61b45247bf, 0x62e8f0484fff9886, 0x16a13126900ea15a, 0x878f64f0f5f5f3c4, 0xdc8b5a9f600435c8 }, { 0xd43e2d6479b4c818, 0xbcc450211a684f1b, 0x99b7c65266fbd156, 0x2ac06217482f59f0, 0xc6b01209d50e7343, 0xcdd22ff9a7784bfe }, { 0xf103bf5cef44c41d, 0xa0047c46109daaa2, 0x3eff8e26bc979ad6, 0x6fbd9c33f9e9ff8b, 0x5659c9536e9c5af1, 0x6d0ec2a774c242ea } }, { { 0x41dde03b8ede0e85, 0x66c536fa18b1e48b, 0x416228e1eedb1e7a, 0x7d80822eaab4b5b8, 0x332f4a3f73fcc0f, 0xb93fa08a2271ea1d }, { 0x235df497d67b2d2c, 0xb75b27eca9ea53e4, 0xf2b7e344ba71cff4, 0x3866340298215f9f, 0x542a834a33cd3d88, 0x2df3a23dd21aa703 }, { 0xc07085076d665ab8, 0xb894d74f055f9513, 0xbda16f0d91a8439, 0xce860577b66b58ef, 0xe805e8b8bd73fe7e, 0x1644c8e8149647e0 } }, { { 0x4e5fc4158a15e79c, 0xadf3f8e2db8e38b5, 0x7aed16513f6f2152, 0x6e6f7cdefc5090aa, 0x9072044a0301c50e, 0xdbae6d1c1c3e96d }, { 0x57d932967d653f0c, 0x18f24faab2d583d7, 0x9cd7d31d5acc209c, 0xebafac61f7a23b5d, 0xa6732bf4af05fae8, 0x1210153d32a514c2 }, { 0xa70e66e53aeee705, 0x3e826617612a2bc8, 0x8b73db6e5cb3401d, 0x1a60a13bf0fdb6cc, 0x2531ed7b7fb8a5cc, 0x6afcdb00f60bf3c4 } }, { { 0xe6dc0a222c6e9fc5, 0xa172c86144c6f488, 0x1be7d28c9cc8d6ce, 0x4d85634feda41a54, 0x840fec15c2953a8f, 0xbaef9c80b7e764a5 }, { 0x12d8f9b7029be010, 0x6bc17e711f05a9e9, 0x4c187ec00f11a07a, 0xb351d54bb5dd8fef, 0x66f87b2f2c0b0348, 0x7ce66d80c856120b }, { 0x1746dea6bfc76eb2, 0xa5828dab48438080, 0x1795569462872690, 0xfcf31ccf28df189c, 0xe7a34f111851feac, 0x519340a442a41611 } }, { { 0x43e3bf99f59f2906, 0xf4dfdcb12d5db0ca, 0xa51158c6171d9ffc, 0x7242528ca49b77ed, 0x9faf2a1d5bde090e, 0x49b1fc0fbcb66d6 }, { 0xfd2cdf8a4d3b6ced, 0xb1e1c7d2f7270504, 0x7153b2de0a5573d3, 0x2193987480a7ec9e, 0x4af54a75efe6f4ad, 0xd86f2b467599f1b7 }, { 0xdff313b13fe733ec, 0x827274640c0eb456, 0xda2a9976750dea79, 0x7daccfac5dcf5181, 0x402e1c2e109601f0, 0xa1b80b8e162f8607 } }, { { 0x5d9eed016135d586, 0xc6d285b064c4ebfc, 0xd6093db6eb998ed4, 0xf9bc76594c118835, 0xe3bc48ae18165e2a, 0x590551a5a12bd2dd }, { 0xca59a3915bf64a52, 0xcad4311897d83e84, 0x6a559c9e04809c05, 0xff4b65baddc1ae9d, 0x70e5b95527e676d7, 0xea666a4c1d7f2f20 }, { 0x25bf7014528dd9e7, 0xb5e2df7757567267, 0xa029cc86e5be51e7, 0x8e3e200611848928, 0xf974f1d88ae5536c, 0xb3f1191d7e3805e7 } }, { { 0x8634d6a6d7a1f9fc, 0x866a323c64b63d59, 0x154e94949ca65f59, 0x1df9ed73b8837ec9, 0x7e807034cd39ab3d, 0x45faa8a4975bc79a }, { 0xb0decb974b191db4, 0x5527de6d0f0cdece, 0x9f54cdd478d517ab, 0xc42bc9e13efaeb5a, 0xb8a215082b3acf1c, 0x4df1d6d79db8d48c }, { 0x9d3354ffc1cf1c33, 0x6c2c8aceaefe643d, 0x8232ee1ccc66c925, 0xb85fcbf62420ad40, 0xbf70985797ffed57, 0xbe07edd98cac10b7 } }, { { 0xedd50dcfd265a878, 0xf498d7bb50e355a7, 0x3571a04df8ca87b, 0x739f05706b982b01, 0xbd3e2b95b84e7b2e, 0x8844222ebfb0ef7 }, { 0x7f5f698d436a6a44, 0x968c87404b589a96, 0x7edb83e64ed26a19, 0xadc19f419064e5d8, 0x192e79655f1397fb, 0x38a14c60e9bd8a9c }, { 0x59176612cae82749, 0x2f51c1aa13c92582, 0x65647a6ef1c52df8, 0xda970fe2a8ecb7f3, 0xfcfaf79c861c4513, 0xf96896ac95ed0c61 } }, { { 0x7de1a323f0092200, 0x846144ee8887c844, 0xcd6776663827cab6, 0x89c36382c893c1cd, 0xb5d23797e54f7c06, 0x689da21319e105ab }, { 0x1934bfe2099a7f47, 0x5fb5794f3e1d18a9, 0x6731fcce60884904, 0x695011bae2d658cc, 0x45f3a8da58482951, 0x1f9a0ca3fdfebd74 }, { 0x4d8398c6ba393305, 0x23d7947432ee73f6, 0x25bbf1a994918c0, 0xcba64f30b5d7065b, 0x4436eff0ef22762b, 0xde955298375324e2 } }, { { 0xbf427c4d029778bb, 0x5359ad52120b1a73, 0x9625fecfed24b512, 0xab25353ca8e31695, 0xf9bc6e02043bc138, 0x1984a1121ae02e42 }, { 0xd73475c086bde702, 0x196d4c1938afdc8d, 0xdea4a38a42dadcc2, 0xc8fc7995c0807a49, 0xf6474da8e6f7696e, 0xb3c469d433d73d3c }, { 0x677bcf31bff803d9, 0xc30d4897b677a92c, 0xf25d15f95c0f2507, 0x4d2475890de43e37, 0xf99164f3ffe13424, 0xc3173bd9ed070afd } }, { { 0x25197a97565eca7b, 0xab989fc691a8ce50, 0xddae9a51bda4e7df, 0x5105154fdadbddcd, 0xb929414311a555ca, 0xf321db6a38f0e144 }, { 0xa71bc2d8474cdd87, 0x1815261a2d3ce1e0, 0x435cc35daff2d702, 0x5b848a642de4168f, 0xde64efa6aad2d364, 0x450f3471ba738bbd }, { 0xb9e597b3b6f8279, 0xe81d3e02a4d80e3f, 0xfb1593bc45f239b1, 0x5ead8058529fb344, 0xf1e2fceae65491d7, 0x85fc21a1c4ba8719 } }, { { 0x64b66a91cfbde43, 0x931a8ce88b7df167, 0xa533c05495fb1639, 0xf88c556face9ad1f, 0xc96156c1a02e8eb, 0x474a6d1b0ccb3109 }, { 0x23112f53efe388cd, 0xb96107099cccbd8d, 0x458cbd9355c72d5d, 0x49e944337f5d3a43, 0xe4383594aa59720d, 0x3430b570dbd1e0fd }, { 0x277ead8d32962209, 0xad5057a958359f14, 0x8f78900e0957e708, 0xda38a4f1062c572e, 0x678092593d72187e, 0xc0cb0e708601da49 } }, { { 0xabcfbbf4bd11ee59, 0x2fc25f353585d97a, 0x226806e033c869df, 0x47c5dd2b62629288, 0xb7394f4d29f8954, 0x48b18daf46459ed8 }, { 0x273f69bf06fc275c, 0xd8b4a3ec36d341a5, 0x8006c313b2b89118, 0x24d996d2a7caf718, 0xf5cfaa2a33d2e61e, 0x4811c5cffa9b5a74 }, { 0x9dcd5d81d5284f1b, 0x9745875db92ee6fe, 0xf16e12730b2a9c69, 0x6f1812675a2802db, 0xb4d892dbe586e073, 0xfc19fb1dfd460649 } } }, { { { 0x38b9cfef1a3a4626, 0xe0667fb79056101c, 0x144dc231de27e89f, 0x9edae8c87c026258, 0xf09fcac71c8d22c1, 0xa341d8fdcd33edce }, { 0x88491581b9baaf30, 0x6439c9622d1ca27e, 0x45ba153d38af559a, 0x9e7bc1cd2f06931a, 0x78444fff0e20cddc, 0x4070291936e673ff }, { 0x3ee22cac6ed8c957, 0x2512d4507bb620f9, 0xd5d965d1449cf0ab, 0x8038f65796985b68, 0x367f9e0323f9fb1c, 0x17797704c3a31c7b } }, { { 0xd489fd8e2a541f6, 0x6f4b2e1fff621184, 0x51c92e5a532f8adc, 0x4d0ae2354c509dd6, 0xe8306de46af1c4eb, 0xcc3d1be65b1c872e }, { 0x6aed1cf6e8a13781, 0x8d8ab0993dcadf2b, 0x9cb2729915fccaf2, 0x304f1530be19e097, 0xbf8d689b17fdb6df, 0x1221bcf8583e3a2e }, { 0x86d30758f48b963, 0xf6a592bb5c58d8d1, 0xa36a288c76d90f76, 0x2565e948aeec4f9e, 0x9a71ff669df630a7, 0x6a3555771dedd7c1 } }, { { 0xc401a7dea9e458d4, 0x1575b75c3e42a664, 0x2a872e86d4103cf9, 0x3c4f0228a352e6de, 0xa859e1059ed09615, 0xcc40cb08f7d3a8ef }, { 0x1eeeb02ba25205d7, 0x216e0fd14e20e0d5, 0x9e495a9aaf1a047b, 0xb366ad9b3ef99a66, 0xe271081a01533273, 0xd197d0f4ee746933 }, { 0xd88f61c53a0aa978, 0x14569d18be39edc1, 0x2c11ffb019c9e282, 0xea7c7a152bca828e, 0x3f65cf13c34f9ecb, 0xc2d5fb3f29250a4e } }, { { 0xc565ec116e849cf2, 0x49b0a868f6fd4048, 0x40c40c32d56506d1, 0xf8e1445f912c94b6, 0x6fcaf7c650ea2eca, 0x52f94954b9f78b8e }, { 0x8c5a89f1ae751ea4, 0x1ff5c5a070695b4a, 0xae2e939a9fe24893, 0x1b91ca91fed6aaea, 0x506a82a70107483b, 0x4192bfeee9e1dd9d }, { 0x6c01f94850c77fff, 0xa0d092bcd14706f, 0xc031ca12ba3d3d87, 0x68963053e57cd862, 0xe35c5ecde98dfa4c, 0xb2cbbb40fd52c902 } }, { { 0x7e9add7502570ff4, 0x58e2b28ab8ad6ae8, 0x7dbfebfbd3825858, 0x5a8b5bef17eefc15, 0x5e7a36fddf549670, 0x469e89d0a3dba72c }, { 0xb73df5f2140f7e0, 0xe97669b892e167b6, 0x7f4aae71fe445097, 0xdd19cda2a472613b, 0x118bab28b1ac673d, 0xe7b2801f65029b9b }, { 0x36f06776f9422fae, 0x9f59b9b26969b776, 0xe573929db671a2b, 0xf13312480cf54c18, 0xec70be460e1cc6ec, 0xd134e739868e448 } }, { { 0xfcc17f0a8c34c092, 0x306b4475f9d1a6c5, 0x4f7c9deae6402934, 0xc9b6114701b75f77, 0x2f6a533502de8041, 0x561270e07bd0ccef }, { 0x385a1472f5b8de8e, 0xe5525fdf3cf7b155, 0x9eb29a2e8743a95c, 0x1630d99309fad916, 0x60f4071d6c505430, 0x38ce1ade81d4b1ec }, { 0xdd3869462b5df9e1, 0xb59b57ea54297c3f, 0x3bb81d11c9adf41, 0x55b9a510bb5558f2, 0x168863add7a06725, 0xd4ae24235f49c565 } }, { { 0xc6b393c038ec0289, 0x7da0aa2068d7682f, 0x4161c54aa7fb05f, 0xcc791689c2ff38d, 0xeffabc695a5686a2, 0xf333ac15adef8141 }, { 0xf1fd8473dfc47dc2, 0xee3bec37616e222a, 0x523c65dec79f2c10, 0x7e61737ef5794115, 0xcc21e54f8c919d9a, 0x60f03c647633abd6 }, { 0xa30720c23f2e6b0d, 0x5f6098f6eee1e257, 0x816cbe11a4aa1ac0, 0xd9d482ecc0107564, 0x74bc26a0009ddd22, 0x9722a9e5e74986d0 } }, { { 0x3b742f22def146f4, 0x6cebea099f64853a, 0x160467533f3ae3fc, 0xf2a094c2f9eeadb0, 0xb532bdc91e23ab1e, 0xcbe977e093f68fec }, { 0x23941b4b743a8ff6, 0x279a87d5715c5556, 0xef160b27df704514, 0xfc97eb4302f4af3a, 0x36300c6a2de81ac5, 0xa49d9f1b922fba6f }, { 0x5ffe61bee0811adf, 0xdcfebeaf56eba569, 0x4ae05c167e9962d1, 0x218e2b19e089752d, 0x9419675d82b592db, 0x58bb12e34ab41ed1 } }, { { 0xa3d82a20669edb26, 0xe0ee8027936a045a, 0x4287aef8818f7b91, 0xa6bb9f6d4b81239f, 0x3fd4dd64c4fe330a, 0x8a7bb33441bca87d }, { 0xcf30b83813a51a35, 0x1b49d56a2769eb0b, 0xbd62e0ba2099b027, 0x31b63b963e65ee2f, 0x49c4b2aa8301210d, 0xffe5af15f08c41e0 }, { 0x817d2cb8c1a50e22, 0x899883d9d8245310, 0x8b7e5f0f2155940f, 0x9f8860764c7b699f, 0x4fe5f3d0e2320f25, 0xe3c875cb1200f1ce } }, { { 0x77d095cc326cd471, 0xedfc6a6909a9d9ef, 0x2d4ba49699ed302e, 0x8a29d5527c8fb0ad, 0x71193fded9803c6, 0xa4611321b866fa22 }, { 0x292e8d31c00dc14b, 0x59ac7f6911d0d0bb, 0xa190d8b74a93a447, 0x533d9133ce7ad7ce, 0xc517562b29096df2, 0x5ed32af8b4b9530a }, { 0x52575b1ae1d1cedf, 0x7804afdef88e9ff2, 0x515c6baaa5a58784, 0x81ec6dcb2d5c5c77, 0x5cb049a33549aa7f, 0x21a0fb693c9bc832 } }, { { 0x88c4091b721bc041, 0x89d4ce4fb0cf470e, 0xa11bcfc63692c55f, 0x68d18e4b38787540, 0x6fdd8ab9d6b5d757, 0x4f0e8d52a33dd38f }, { 0xb18ae411770d3cb0, 0x4f1e1225045ccdea, 0x53013de3d9839140, 0xa48a8839006f9899, 0xc9e6772a4313d899, 0x6baaf3507ae445ba }, { 0x513583a2aac71b57, 0xfa43c2c093a011be, 0xa715d10e55af690, 0xf36917abc01383e, 0xc2a85362a4c1b181, 0x39e1ae540e676712 } }, { { 0x8c6274db536d8284, 0xe9d8db7b8b80ebc7, 0xb1ea97145a087ba, 0xa9e078b3cf1146b6, 0x52a37dc5ecc3ea19, 0x46fda71849713833 }, { 0x9e61ae5026ebc19b, 0x519610a4de9da3d8, 0x332efd4d13f6c355, 0x22370b10526b583c, 0x2c3076de38245e1a, 0xa6d2edfee7d084aa }, { 0xffa2c3cc3c1a07f9, 0x73b2105544d24c0d, 0x1f5858ad26132bde, 0x67020b7b3751ff5d, 0x2b715fcd1ad60463, 0x89272ff67a50232f } }, { { 0xa3c6a667842d9a32, 0xec991e50ca7291ad, 0xdd65dfd6e97d34d0, 0x466a48f502e49078, 0x75d30f57a758b714, 0x70bbe9c69ad55ed3 }, { 0x19ec40d0c862312f, 0xd15575f291245b56, 0xc6cd43beed79ad4d, 0x12531d9475a6b36e, 0x46f137b91dbe92fb, 0x77c12b14c527c773 }, { 0xe389a3598705df11, 0x1ef5f185236ff9e3, 0x66cc0bc17972027d, 0x782e718e14ba1471, 0xb29612483422695d, 0xcc06a29adb489304 } }, { { 0x5d29ae8045121c94, 0xb86aa8eed8043ffb, 0x5a04b31b785acd4b, 0xe29416496b48e170, 0xd7a8b56e204418a2, 0xf5806bdefeabdf57 }, { 0x1d492863e1bbfe15, 0xecbc13ac4306657b, 0xcd16d4e075775555, 0x1074cd3952277c51, 0xff984f796070de63, 0x1b6ee4035f306608 }, { 0xe403ab7b75948afb, 0x5e4dea28892acceb, 0x244021072c2d87e, 0xf980c2b78a5f0463, 0x23d4ed4a855a8ea0, 0x88b192d3d31583bd } }, { { 0xbc8d2ea17de24628, 0x89928f573e335e7b, 0xbb52b8d3b54c7bf, 0x6b9a40e35baf29e6, 0x4a4413d0a6f94700, 0x58ed5ccf9714b804 }, { 0x4c939dacdf165c71, 0xc45680773b6dfeaf, 0x2714b97664c6dec1, 0x9ff978a27a4710e3, 0x26bfb839b58dca35, 0x98b4060c6d2f4205 }, { 0x3e31f0c74d09fa03, 0xa63b4f097d3386b1, 0xa86b9248214ea25f, 0x113fa833a7fc7c1a, 0xd666640604574bbc, 0xac9ce3cae065d75c } } }, { { { 0x62310b92a5aa31eb, 0xaaec873a095fad44, 0xa39ad4ba9f098048, 0x139122da9c72553, 0xfcec4be4f4931291, 0xa973258feeef422b }, { 0x56afab8dce130e1d, 0x997cf48401571045, 0x9abd7205846788c9, 0x9c8de7904452e3c7, 0xc25479e2316d29f9, 0x74f5bf1eb1543cdc }, { 0x3e9105f1aeed8f0e, 0x963adfdf26ea0c82, 0x1a7f0aad4599773f, 0x1f4edc435926c36f, 0x8ed523f18f3a103c, 0xc5c6f29c286af2e5 } }, { { 0x8066615262639816, 0xb500aafc52c902ff, 0x6773939b9c9e6f0a, 0xbd99d93bab077f17, 0x5e2dbb6667e5bba, 0x86b5bf16657cef02 }, { 0x8e2f7a33c18624fd, 0x5e9efa53330f6f05, 0x523f27b128821cae, 0x7f9b9526eb1dc7e2, 0x5e8a90ba3bef3261, 0xe336b5cbbcb8380a }, { 0x1cdd2d88ff4fc0b4, 0xa0c476d0da94884d, 0xd26b0ca1f908a4f5, 0x22d63dce80735cfb, 0xef7ccc0b08970557, 0x1e0d8f04fbdea55f } }, { { 0xe9fb232a33d100f6, 0xcbd7d0a2c2f7c0c5, 0x3f43c8e77e08fcc8, 0xb6bf5b0819a305e, 0x6ac19cd7af102281, 0x5f0f8b2540044612 }, { 0x8670e9481a1dbed1, 0xf272355cef0b7929, 0xcde61f10c7c1d48b, 0xb32a9d86faa2e83e, 0x65829f7e19d3ee7a, 0xbcbf91bacda47368 }, { 0x861310ea1b9cad9e, 0xd2e7fc0e4d5a2af0, 0xc0723e49d04a4d07, 0x834281efaaf0789, 0x9875f5629d7f9d3e, 0x1a4dd5c05b0a5fc8 } }, { { 0xa3d767792954912d, 0xb4abbcf6dd1222ad, 0x2fe425ad177ed2dd, 0x8de7b15a7e7ca98d, 0xd02fc54a461bfac0, 0x63585663b6433244 }, { 0x65cb199a09111756, 0x4464b5f16e89731, 0x60f045f68ede6360, 0xb911f341424daf86, 0x2fb0d63e8ba94914, 0x2000f2bf2c85386b }, { 0xdc467b008146c519, 0x305776bf6032659b, 0x33f11eb7f0b61c4c, 0x8f3c4d014cd7ba37, 0x1f5e2edbf1e92bcc, 0xba795e23e189ccfc } }, { { 0xa6cfc4ff9d07ea4, 0xb7a2bbce16e49164, 0x58f4f4e71f4f20a7, 0x3d72109e3b262835, 0x82bf7f34091f6d6a, 0xaa058306930509b7 }, { 0x8dd0e868c81c4e75, 0xc48ebf8a6f6885de, 0x498cb98471fda46d, 0xe405bbff27cb4974, 0xd9aabd3953d2d9fc, 0xa3a7d545813a31b }, { 0x2fce9865fa01ddd8, 0x7b709ceac48b8ec0, 0xf88d094e271a5e30, 0x54d54e48bc47f33e, 0x8e17b4b910ce8065, 0x1a4caa4a04ca0875 } }, { { 0x95daf7f0ce5c979, 0xce4207e03dbe0df7, 0xff706b62ecb16ea0, 0xa1b90d970048e35b, 0x970bc9ff5a2b8a9f, 0xbdcb6d55d10de113 }, { 0x30533074bafae543, 0x8dd00196f6aa8e54, 0x3006da7097260d42, 0xfdae6e0eb43f92c3, 0x79a434483917af61, 0xfdee12b8728a1c1b }, { 0xbc93ba778de5f36c, 0x11f36be5601679e3, 0x6739999fadcc0360, 0x7bbd398d23b802bb, 0xc063145a83227620, 0x9e93231a25dcb293 } }, { { 0x38db55de9c0685e2, 0x3bc93b1ce906ec96, 0x4d05bf2e4efc2665, 0x333bcf08b19cd55c, 0x7a0757cef5c86cf1, 0xc848a1a37a49144c }, { 0xac488d5428d6342d, 0x3abe4a2bccb17f46, 0x74c3245e72ca3a6d, 0x97ce93eb869b406f, 0x8f5d4100d8946da1, 0x80a0b5aa0f6abbee }, { 0xde5b2d4082baf216, 0xc52a4016af5570f7, 0x3fa6e4a90d54c885, 0x4906f713e2aaa600, 0x2721b5a99ddb029d, 0x6e3aafb20956bad8 } }, { { 0x660d2decb3ecd292, 0x73a8802e8c4f3903, 0x5a02a16ddfd79e1e, 0x7cdb817300e39250, 0x562dcc1fe760e83f, 0x4d8197d35e180e2 }, { 0x2a60134f4e983bdc, 0xfed7e6a33b8a7235, 0x2bf0ab8075962c75, 0x6aba9f27dd875eb1, 0x8087775889a21398, 0x69b652a4e0c5dc10 }, { 0xf493fb17d313386d, 0xd374b39c39dfade0, 0x78a49c22ef8a891b, 0x14759fd311f35e64, 0xb4aebb803450dd5a, 0x47021671585bda3 } }, { { 0x4225313b6fd71448, 0xec10023cd27c0547, 0x100aef7c28b3c4aa, 0x97c4e297371512f1, 0xa1303c7f6f9b863, 0x79b705f146c888ae }, { 0x83626781fc05844e, 0xdd7cb623165213a9, 0x2d0a8a412e7a627d, 0x3cbe65202f71c033, 0xce88bf1e85fbba66, 0xe3da01d0951ba8c1 }, { 0x76c8f8d060d7f1bb, 0xfa97bb74b4016dd5, 0x1939b9088717ce74, 0x5a97be6679e9f49c, 0xce5a41d8550558ea, 0x14b6f8a5b64e8d70 } }, { { 0x9ac11bd594069e7e, 0xfba0512c7e3f6f0b, 0x88c1712648e9dfea, 0xf8e33f0817d03f6c, 0xadaf6127ed82494c, 0x5bb18ad6dda482e4 }, { 0xdc048314fc16b44a, 0xace06e4c2d2fc5e8, 0x39072f3e61ff8778, 0x7926bad5a2387fd8, 0xceb67c9b6b9a9271, 0x7f4b867bca80f582 }, { 0xb8d21d186dcd6ae3, 0x845c99bbb937453d, 0x8e0d664c414ca1db, 0xe07a44968c64165d, 0xa633c30f4edd41, 0x838973ed2c3ad333 } }, { { 0xdaffdeb0dd73fa57, 0x84df2af49c55d335, 0xa4071623a17e92d1, 0xba8e231dc50527b0, 0x66c130c42b0b9673, 0x8b35acf6f3d57719 }, { 0xfbe12436b86ed29c, 0x48796f1d6b7b18c3, 0x656224098821b991, 0x360dc4178e1f42ca, 0x9b8ee29c78d3cc4f, 0x85549d996d7246aa }, { 0x17de6274af245348, 0x52ce153473d2d8c5, 0x8984808bc035da2a, 0xd11143cd19677a93, 0xb88779c9ddd203d2, 0xc4465afbbb165616 } }, { { 0xb7502a1e57b411f2, 0x2b9db983d47b3e7a, 0x3bf0770250e676a0, 0x91dc457c5fb67c1, 0xf12fa14469b5b1bb, 0x67ac9fe2621b6f98 }, { 0x622f919e4d47d6e2, 0x9573b4924b2762e2, 0x53963fcafcbba451, 0xf2a8dadb29efb407, 0xae38735d84aa145b, 0x164de8bc55e7eccf }, { 0x44b98776c17b8195, 0x56f6b27b36e80480, 0x508ce5e50106cbd2, 0x1570a61ab3983a48, 0xbf54c040720ab108, 0x6441b065f8fe5fdc } }, { { 0xa9a25c4fa8a265b9, 0xffea7a0daa1adf80, 0x1969bcf78c4e86a1, 0x45f777a2a1afcad6, 0x19e21fedb027bde4, 0xdc5d4cb4391992de }, { 0xe086f7054c0942de, 0x56e5debfab1e72f5, 0x48ff936acf2704c3, 0xe4ac3c4bd562ad7b, 0xb4bc167655ccc2c4, 0xe1f6d166bccb2444 }, { 0xeff92d6184ff1baa, 0x6b02532835782ed8, 0x5c4f4bf8c0e04239, 0xe35e49399b518d55, 0x380e27045bb904d1, 0x88fb995cb348b973 } }, { { 0x1c3ba5f8063eddaa, 0x1ef3cd6f36553580, 0xc491b9080443434c, 0x71fcf11f28fd3464, 0x9a049d715f2bb1fb, 0x7bd2167eb0295337 }, { 0x6b32b893d277d288, 0x8591a425473a6fa, 0x2fa1e3e4d15eef0, 0x436adbdc8c3c3632, 0x675bef57ee92e39b, 0x7abd40c627801a4a }, { 0x36da0a5131321e91, 0x5de33951eeae0480, 0x1c292846bb24031d, 0xc53e642191b5dbd5, 0x2f0025ee6827b6dc, 0x8c3f6298aa2810e5 } }, { { 0xe3d4934de165549f, 0x78cc017b21ad1988, 0x29e288fe885b4c6b, 0xd81bb617d0c7baaa, 0x9f5b7536f8caad5, 0xec55047d01a20fd4 }, { 0x46e72b66878f2d43, 0xb0160a8165c30f0, 0x6d23d60adaffa26d, 0x9e6daba0dd829360, 0xc2d5f29fb005f133, 0x46e5cf298537e6d }, { 0x9cbd7e815667bf4a, 0x3baeb4b8d668d501, 0x64bcc67241b7c995, 0x5af860287be6878, 0x34dce23d08af8345, 0x90ac54576840b2d } } }, { { { 0xca8ade13bce1dce2, 0xcf1bf47ef4e4b487, 0x2d26283eb3415376, 0xd2db87c6cfee169e, 0x997406067e04b3f4, 0x2ead7308bf7acd57 }, { 0xf4aab929a877d8ec, 0x8fda614aeca4c5a7, 0x1a570cd0cdbb5a68, 0x80fc115271e11101, 0x9a89d9af2e05ff55, 0xc0ff2bfb2c153da9 }, { 0x992c206c1f8520b4, 0x32bf0655a3d7e136, 0xaa28f45b211fcf79, 0x6aa85c3922180578, 0xf165c0e5f2828dc6, 0x5c192fb1ac56bfd9 } }, { { 0x935be2a37f9798fb, 0x2cc856033deddc50, 0xb2fec9e0e445b130, 0xa740e31e3531af5c, 0xe775ee4570b0196b, 0xc18382e2e8188067 }, { 0xbedd6e57310709f9, 0x83730c8373bf7b28, 0x34e3ea9f4c1312fd, 0x98f6664564e5ab68, 0xbdb3828f59acbccd, 0xf26b0a8dc7be487b }, { 0x5ea68af307f281a4, 0x9ec4dc3486ef737b, 0xfde97d1ffac6ea12, 0xe5322c51a511d475, 0x4ec84361874a4f1d, 0x6b8b355352b4e2ae } }, { { 0xa39bc24da7181b5, 0x9513529137136ca0, 0x64686f5b013aef46, 0xeebd0aabd0ec56cd, 0x7838011018d6951c, 0x5cf9037646d75927 }, { 0x7c1339739ee64d29, 0x42b54b233179dfc7, 0x41923420b9ad6cd9, 0xf66562299c4e1cda, 0x4bd2137f61da1b36, 0xaba41f99abd0a45d }, { 0x32c8b0ce6729b11, 0xea11d252ea317b75, 0x715c739556e90713, 0x60f5281cc424d10b, 0xa55b7f699a647120, 0x39fcb1267d7bbeb7 } }, { { 0x5790fe1bfe5b8a74, 0xff403d4ce00bfca2, 0xb770c05bbbd319c8, 0x73a7cbc9ec5dcaba, 0x62cb3de3c17fa5ed, 0xed6fecd78832c313 }, { 0xb895d36985befa9a, 0x5f853adb067e85c6, 0x460b7ff053a7308a, 0x801f1c53c19b5c7f, 0x9c5385dd87176049, 0x97e98406ca18f6c1 }, { 0x1334aea30dcd07cb, 0x6c1b6d64679339d3, 0xa019f53c2973505f, 0xdeb694bc31091d08, 0x56f93e044b821235, 0x13f860b92aa3860e } }, { { 0x60a5d0af6d201cc, 0x84f8bdca94bfcc9d, 0x5b2c63a248bf6f4e, 0x61585fc1576e36c4, 0x5aa37c66b04e984a, 0x5579e7e3c78f0fb2 }, { 0xe7337bd26735a68d, 0xae8f75a5c63cc9aa, 0xc5cb5d62c399c4cf, 0x778783140ee53b45, 0x5436bbc496d0c74, 0x670fb1dfec8953d4 }, { 0x101f939818ab9949, 0xdedd990a877040de, 0x9406b483c83e5b72, 0xd4ac4b8a25a978d0, 0x7631ae61336f958e, 0xb67fabd8dd3bd41c } }, { { 0xbe65fff583fd013c, 0x24d7d7898f22933c, 0x6f1cf426137479d5, 0x1e21b18a7af8c91d, 0x6196ab65f90e98f4, 0x1fffa975cfc293e5 }, { 0xd5e8b77c3c85cb76, 0x69008e3c76674a21, 0xcb1c98fbbd6aba28, 0x77d4a70b9c6e7f8b, 0x642c797ba38024e3, 0xc05ba426d887af95 }, { 0xe47bbc037b73ed30, 0xbaadec63811bbd42, 0xc1617a10f03c8ba3, 0x2e7caa35628ace75, 0xdf01f3b2cefbf9ba, 0x592632791a737657 } }, { { 0xc2e52d44275bd65d, 0x5c6ba67cd57cdfb4, 0x327d1895d4ed7101, 0x8eb68c1ee67e2fa4, 0xc52a21d4ed694b49, 0xa2a0db9da5dacbbe }, { 0x77383e0adff1ea3f, 0x69b3dc1afce89891, 0x686cb98fdc39f939, 0xfc14a2bda6a401cf, 0xc17ae66833f7a00a, 0xe19ff835554e56ab }, { 0x890c4e3116c3e3b9, 0xe0d3ae2209c4e138, 0xff17e445b0ac4e0f, 0xe6dffc9ffd3f8924, 0x8bc2454513b8f29a, 0x4d98708665585cb3 } }, { { 0xf0802fe6454e9bf5, 0xa585b8eb5bfd1f2a, 0x6fbccd735c1615c4, 0x739dc47ace7eb23, 0x44130b72f52d7edf, 0x8594d064f61c8d71 }, { 0x7c3311162854abea, 0x7e0c2b48e645704f, 0x8b6f256f6b89c3b7, 0x6f92f09f66c03d1, 0xc166723df5ac1c24, 0x605c6897f5c7c4dd }, { 0xe8d71d5676de9f58, 0x3d4a9c9f76b3b752, 0x92f0a721a405fe30, 0x8aa218ac3ca2bc77, 0xf21f6e65006723, 0xba92b6a49e066cd3 } }, { { 0x44b0cbbc735e45cf, 0x5e24d186750bb263, 0x412219ca2482ee59, 0xb75d6817dd8fc0e8, 0xaf438417eb125b21, 0x48d32118f77b3dbc }, { 0xcdc749f8e7318ec4, 0x3935b948a70b5a7c, 0xfe7d3d65fbf6f5fc, 0x643f2645c7d0629b, 0x601c5976cfca0fef, 0x38d61283d3838968 }, { 0xec1e2a599bcb90c2, 0x895688415669580f, 0x414bff094218fe0b, 0xaafcff12627c01dc, 0x63edfa33930f3f52, 0x51ae4f4b770201 } }, { { 0x3e3ed0d6e8535f6b, 0x6ddc0468f5c834be, 0x5f168b1bc99cbad0, 0xcd32d07fe0316f02, 0x2f00e4d1441c5842, 0xb8eb861fc5888f6f }, { 0x508c11eb84f0fa95, 0x41f542a695447e09, 0xda6a4eb979536b10, 0x3750abb7b88c23da, 0x79fdc17c77bf2f8, 0xc766d0745ad96afb }, { 0x1b31b04292718aa9, 0xa84ae9691a951531, 0x8038b6280c65451f, 0xc277da9a5c66d558, 0xee77c20eed0cb494, 0xebf6db2dc8a2741b } }, { { 0xad608b1feede8347, 0x84b9c1020fb57808, 0xfd59eeec1b86f919, 0xda2f70093d7a482a, 0x97c5e5f223de111a, 0xcd62d4fa7e2bdf3 }, { 0xcbf9a05b058c6068, 0xa66c77ff5730e8ff, 0x58258eb8b86cb907, 0xe1f294e517446112, 0x80136d58538ac828, 0x2f68769216bdb337 }, { 0xb0380970a3e4b28d, 0x89b755159e805b20, 0x285c033144d29c3c, 0x2dc5fca92cfb1d92, 0xda74cb6d585e73fe, 0xbc2a0938f2b5b718 } }, { { 0x27bef200c77e769, 0xeb2290a109ba8b00, 0x9627764b7aa6a90e, 0x244922afcd54f31a, 0xb5d0b796b7eacb0e, 0x98cce0af2c87b1e0 }, { 0x553defbf074c5cc2, 0xce86904d31df0eaf, 0x84d82bec8958c9ba, 0xa72d55725b54bb74, 0xf7bc1cce8b65663f, 0xcc4d7a250a6db003 }, { 0x73037974cba63e13, 0x1659f09211921c27, 0xf94c4a514115191f, 0x9407baf07ae2421a, 0x3570075ac95a5d6f, 0x237447ecc55438fb } }, { { 0x5eb4f666fa546603, 0x780435c1b5212bc4, 0x8cf3d57fb2525c84, 0x5cf9dc20861144a, 0x11d0732bb75b17fe, 0x81ca95eff79ca422 }, { 0x7e7afc9fa6f6d045, 0xbfbf2331f169c02d, 0x169c5d5299d2a470, 0xa8979b43e70aa7c6, 0xda785078b10e9f6c, 0xb39b200f0a9f074b }, { 0x77714603541c8fd5, 0x559a01125628c690, 0x7216480b7c24b3db, 0x526855caf0d42bad, 0xc38f2090c1f708cd, 0x126803b91e8a6ead } }, { { 0x8d0ee7149cf7c00f, 0x17263570cdab23f9, 0x2d2e6cab7b2952bf, 0x5d6f6307ac0d73bd, 0xdc9d2382d8d67c00, 0xfb327336fec17098 }, { 0x528f59b28756ea0f, 0x7511037d6d451fa3, 0x50dabb62f65fdb28, 0x6099e5f45948038f, 0xc1b79d53f034065d, 0x60c330972d96a08e }, { 0x653ffbfeda5ddb81, 0x390064d9a7d6e03f, 0x8bd3ef0dc85cab44, 0x9f00d360619aac39, 0x4dcdc825ed0320b6, 0x784993b19e1ca09c } }, { { 0x131796a4005b7637, 0x5eeb1f9dd0f3a9da, 0x48f59a83d0d0c625, 0xa61ca10621df7ea, 0x7f1d7c04bd2adad0, 0xe9b9138205c67344 }, { 0x2e6278907b1810c8, 0xc01a3fd5145cbf27, 0xc617eb336da108f3, 0x656cea7245b4d457, 0x35991b237c0ee62d, 0xb1dddb1de1fba2ce }, { 0x2ec0e7bec126765e, 0x2e959876390a58b6, 0x4169c42954242e6f, 0xf8126c193bf4056, 0xbbc109090699c8b, 0x233236534259fadd } } }, { { { 0x1f41fc40c2e89c97, 0xc3bffb195bd41cdf, 0x936f1dd4366a13bf, 0x9534c01067c85817, 0x2d60c259041b49d3, 0x12c53a59c4029c7d }, { 0x4b899f6e0354677e, 0x867f490e5518a6a0, 0xbd0557989a74e7f7, 0x4d7cd07ee606ace0, 0x1d3533b433dc9138, 0x9f18953583a6bde9 }, { 0x77d80d1725f67291, 0xac52afd590f3163c, 0xe485ce59b124bb9b, 0xad04da78cd9b6c60, 0x8088a5c9807503d8, 0x534bbb8bdefbc8d7 } }, { { 0x9440419090c0298d, 0xa65934787a10714b, 0x2daa4312d8c018ee, 0x201510199b80bc29, 0x5e94f822afb1b3b2, 0xa10df45d3dd387ba }, { 0x86531375ce6f28dd, 0x52e3fa17565b8c7, 0xe881f40ac354b0c7, 0x8cd3ad1c3625d039, 0x9f93e797b1438f74, 0x4c8eae75e9eb76ec }, { 0x9bb0f37f0ee7a2be, 0xe9c9fd2e094fc460, 0x7633f6b8479b1362, 0xa1ec26d1c9caea8a, 0x2070de8bc1ce2632, 0x8f6c71727497c6e6 } }, { { 0x61f87412b495944, 0x3376f1fa5c32ce3c, 0x60792d7b4559213, 0xed8db5549c7c4c36, 0xe8b994aa3c22997f, 0x9afd9513befcc5c3 }, { 0x23141b7060cc938d, 0x7c4661f9a0891587, 0x26b2d1ad86f30433, 0x46aab7507547506c, 0x44fd12d8acf7c64c, 0xc768182378073752 }, { 0x7c416aee68056729, 0xdc4d562cde06f2cb, 0xd64d21dcd807044f, 0x96ffcce9d446ac36, 0xaf75b105495f187b, 0x1498a79649f67c55 } }, { { 0x589ea61732738a61, 0xc9e5adf96316d342, 0xb6d597b7d451331a, 0xa5eab96a464f4cbc, 0xde6ae1eb75cc0bef, 0xd5ea39108b325dee }, { 0xdc52da7efe05f824, 0x10894b581ada1341, 0x9198d96f1e14f646, 0xbda2905b0a728f6, 0x8e9b2355a6faa68f, 0x9b2842f915c6e19a }, { 0x8c44157f7b0f9250, 0xada10f00b89a74c9, 0xf8e0e9236f026c36, 0x36b8180ef7234dc9, 0x5f6b18f3a4e1fbc8, 0xa3f8b84e8e240a69 } }, { { 0xcd27b8b436e2ada4, 0xeafcdd8b9797f6b1, 0xa0b9cc5712acc045, 0xfc33725f9d407a41, 0xf62d322f9b537b2b, 0x1142a86f8f6c69f2 }, { 0xad0aec80a63fe2a2, 0x2f291be1d3b26b0c, 0x55d80d582be48903, 0xe17ced805cd9127e, 0xd44d800a49b18036, 0xd6de6af0ec522289 }, { 0x258882dac234366e, 0xef185e5cd5ff0049, 0xfe4b7f32c4357022, 0x5bc40d25fa049dbc, 0x66f6f54fa3b9acfb, 0x234d5d5928230a6c } }, { { 0x43df284b3bd0ca97, 0xe67a7851f0905cbd, 0xf82f0e2877c326ea, 0x521db3f7e5f5efcb, 0xe3f31da45b62132c, 0x23d919a0fa65b970 }, { 0xd2745c0aa8166a28, 0xace6095c93d93bd7, 0x335a656728bba986, 0xa76b57e02f986b98, 0xd96ed1a33f5b5291, 0x2525b5332d13362b }, { 0x1cbf19f9a2c03352, 0xfdab0f0dae8995f, 0xa8a7e2d8c9232ee9, 0xce809928e11bdaeb, 0x53314be051a82961, 0xb96cf29c9d5dff2f } }, { { 0x1e5ac97536901234, 0x8f4ac24585577383, 0x1f125baed7a04264, 0xebcc1dad99b7be40, 0x62435948faaee084, 0x799710bddec47dc7 }, { 0x8ddd7f53b0d5cf87, 0xa95af87ea61907d3, 0xd56d669b1f6ccc45, 0x65a68315d057758b, 0x1816cf7881f30aa4, 0x42100f23cb94f0b7 }, { 0x84228dc240f6b795, 0x80b25e30e7d3d44f, 0x537f8518d72000c5, 0x5fdf8c49cfdadfbc, 0x5435c0bbddf0ca47, 0xaed9883ff331787d } }, { { 0xe89148fedad50468, 0x7be28224d5e877a8, 0xf8a604c949444f4e, 0xfdedbff30d608e4e, 0xae451da70d813395, 0x725a4c4242664f56 }, { 0x2280bf779421f46d, 0x3e3b46d84f4a30f1, 0x78c4e839eca8fd7c, 0xd2c4b46dd79bb9e6, 0xfd2373a529aa0e6d, 0xec24b890257e50f3 }, { 0x656987c4b23a5274, 0xc3286a9c8e52c147, 0x6fca5ecd886aefce, 0xf7937c34a663d4c9, 0x7a996aef81ff7cee, 0xe8170b8512e2392f } }, { { 0xe1a7099d7792fd28, 0x46604b958b96cf27, 0x8a49a92a4db18d6b, 0x7913ad760b3565af, 0xbada43c0a1db2e21, 0xa5a2fae0eddc7e4e }, { 0x47f86ee108caee17, 0x82f9352dc26a6b5c, 0x3bbe768d10ab0d9e, 0x1c67e82020416230, 0xc7d0978cd72d7fad, 0xe86a44aa76dd70cf }, { 0x9b9909c7b72853b6, 0xd49905ea8753d690, 0xf7ba25b2e0302762, 0x1b842f45ceee4a52, 0x3d01e83b3671c610, 0xa805dc1e2b98b6c2 } }, { { 0x719f59da996f1f35, 0x530d21abbc513b41, 0xcbd58e3a18375c61, 0x63346a3b49f52465, 0xce3078249ca8168b, 0x2d11cde236ea89b0 }, { 0x7f5c16e193b8591d, 0xbc25f5f5315a3b20, 0x420744366e27979e, 0x4f4379146b73986b, 0xc6c0348722b615e3, 0x8336daedd7456d04 }, { 0xde2850a9ec243dd9, 0xc8677101ece39007, 0xbd458d5ff2331779, 0x2adea0d53003b422, 0xe47d9a518ebd14d, 0x7ad8be4f5d6d767d } }, { { 0xf36ceae3a699b7ef, 0x66a041a5f9540d63, 0x4a1a172e68ba0347, 0x4f0b04aa70576da6, 0x2ac6fa425f3520c1, 0x48826cb608a39e57 }, { 0x1fa3063e756ea2d0, 0xb3fb8cab6a80e7b9, 0x2368b2ae8b55a024, 0xb9f4b97c437504ed, 0x671fc19aa174a2f7, 0x2e18d6383b7455a6 }, { 0xb2d14c4549785670, 0x2b79ea6c3c7b7195, 0xf1201da7d2c824d4, 0x218edb2b30cd72e6, 0xb1a689ef91163d32, 0x6d2a648c12a223d5 } }, { { 0xe14f7f44efef479d, 0xc693bd9f770dde71, 0x842df668fbbbf089, 0xcd6f65aad6e7bdde, 0xc1eecac2e6a983f6, 0xcc1b7d455939ef79 }, { 0xa0be247bf9cf4451, 0x4bb5223605d1c36f, 0xa030a3a12da4caf2, 0x793eba84bd736db8, 0xfcb3f0ba0ee6fd30, 0xad26ea5d5e08d8ed }, { 0xbbca5945a0172270, 0x50418a5e44577626, 0x6d3e83a88f7d351f, 0x7fafe0699c863f68, 0xe516c47d7a768cc3, 0xd52b1efe97abee2b } }, { { 0x3a2b21ff8267c01c, 0x6979b0fe118d700, 0xcb2e06e0ccc0e055, 0x1514a41f21b435f3, 0xa0e2d4284acb94cd, 0x94cb1c83a8e2f84f }, { 0xcf56962cbc0bcfb, 0x22292b5093105518, 0x810b3608552e3adc, 0x41fdf259d33315d1, 0x93e358c8b6ae8b2, 0x91613dd435863197 }, { 0x14563ac6a37e8d6b, 0x7283515583c804bb, 0x5f4fda684243814c, 0x2dc4ea2a16b45693, 0x9a2a4d92a8bd3470, 0x6ff09d2c61c761a6 } }, { { 0xfd98f330f5c659ba, 0x7b05f561ebc1403f, 0x86acf7ac1935f853, 0x946c499c946d227f, 0x2b9524b801373d25, 0x144692b707228b6 }, { 0xfad6ee023c4adc1, 0x6e99f944b1c0da91, 0x8173fb5c6553fa3, 0x1bc294c074a3b6f9, 0xe1906d24301ad3d0, 0xb9644959854a366b }, { 0x43d1d3b0aaf36782, 0x51101cbf3534270e, 0xcc212540060cd7c8, 0x667d3f5be8f30695, 0xad0fd743a6365979, 0xe398a3766465aa1b } }, { { 0x67944e31c11f3695, 0xbac25966ff3cd730, 0xccb343f155ce4003, 0x598c0ba0bfec175e, 0x8e5d15b36e23595f, 0x93228be29b42d464 }, { 0x935ededc3ece60c4, 0x48243739fe5a88a6, 0x7483c6c0dfb72072, 0x16e160fb83295ebd, 0x8c49a5e8646cab84, 0x1c18c7a0644cd6b7 }, { 0x347b165ecb59ff0b, 0xbdaa9a8119a91fb2, 0xe9b5ea68bdd65f65, 0x3c087341fb5faffc, 0xb213b83db6a83b84, 0x8bf78958d769028f } } }, { { { 0xedb5aa6f6fcb5153, 0x5ee998f37fad976f, 0x2b3c8f5bc943c2c7, 0x57c026379890b605, 0xcf4d6babd12011b4, 0xcf6e515ccb21fb7e }, { 0x9114624588055964, 0x5b8d3b0b68580165, 0xd703ae1a2d90ad0f, 0xc73988b9590c367e, 0xc41b6c17f2d04cbc, 0xd96b468bb31443bc }, { 0x9354358e2b253ea2, 0x889105de23eab01b, 0x400f7adf5da7d3f7, 0x8112d4d4204b078, 0xde09a8f52a4f6789, 0x175d50eefc19cc92 } }, { { 0xfc90b37eefc40967, 0xe18a6020ab11b8b4, 0xc2efe19b9ca5a061, 0xa7febfbc138633b1, 0x7213007f95185a06, 0xcfc51275cb9b4da4 }, { 0x5497d1f3037db424, 0x4c02c44f7297135f, 0xf9220a5579bc6539, 0x3cc65b2615360b44, 0xdd978c0951b4b9d9, 0x8a4369b69399132f }, { 0x40678669bb4b363d, 0xc2b242207be6d93f, 0xd2f608f78ac3021, 0x97590d7e0693c5b, 0x843b09e07150350e, 0x3cdbcf3d6b3c62c3 } }, { { 0xfea5b8e1a5bdb0b1, 0xa5f3dc1bca621949, 0x9dfeb3514a3777cb, 0xfce41b1b0225b6c0, 0xef73202770c3cb5b, 0x268b4972f2ca2e70 }, { 0x24b39e1366475cf4, 0x8e19a9e0104812e, 0xe3b24627927a526a, 0xb628afc925f55b41, 0xe7ed9e57eaf1a869, 0xf8df8c258117703f }, { 0xff066e3b5a012177, 0xa83e573064a06a62, 0xcd75f064ce56a854, 0x5b81f10408019c17, 0x73618165b39deaab, 0xd91448dc4580e176 } }, { { 0x9b81778bfbfd5d98, 0xa814426b44f2f241, 0x5e203727225493c4, 0x35413b5fd53f5a4d, 0xdfb9ac19b29447c2, 0x3212f6b351b98c67 }, { 0xcb6bdaa79cb3ba60, 0x4a0c5de35647d79b, 0x591bd4e4cdd95721, 0xf54d32ee6940ec8f, 0x732fd35396555da1, 0x535a49d13637494e }, { 0x30cf4c6987e56cf4, 0x482b1e0abd21e51c, 0x32f9b7c41b519db4, 0xc8a273686fcc3eb6, 0xdc888dc926a575e2, 0xed4d9f2cbb1dfd35 } }, { { 0x6f0623f95c871797, 0x5039d9df6b670b76, 0x6ad72581688ca45c, 0x8a79cac7c817658d, 0x94aefce2fd0a8e8d, 0x257bb468782d8f37 }, { 0x1b0464931f7e408c, 0xf6b379586a7adf56, 0xb8df458c80827ca6, 0xacd436c69c7556d7, 0x8b5d30f18f81c0ed, 0xf633f1b3219caf55 }, { 0xc63ea32587c41ab4, 0x4e7342c4a880609a, 0xd8facf35c2851102, 0xa27e7f7efa660b66, 0x4885906bcc0e5d88, 0x7e0540c2cd60b7c9 } }, { { 0x3830acc3a463fe17, 0x2e7cba320a51b3da, 0xed23cbd820b801ff, 0xb5ed2d1ad36cddeb, 0x182364281d9c854, 0x8d50d4fceea0071a }, { 0x81249baf52a1a086, 0x8e1b280b96737357, 0xdb4cd9359267fdc5, 0xb628b4e7952e388d, 0x7f78535bb4c4565b, 0x1febdee091201386 }, { 0x42214d6105e7176, 0xec05459556cc9c95, 0x94ea6cd6ea74552f, 0x3f88767fe74e65b6, 0x40454af35da31b8c, 0xb080a5b8513bcd5c } }, { { 0xb409c4e8bd42a784, 0x3d224ceea0ce1785, 0x7043276733feab50, 0xd7886f91090bde52, 0x165daff5605f69e8, 0x3d3b370244be1d98 }, { 0x98de81e0a9794066, 0x29aa95f04c2e3dde, 0x2c8c250606a497a0, 0xf9b61c3b5b991d9c, 0x80e5cf868ee497c9, 0xc06c80e687a3224b }, { 0x4a897aaac5f798ba, 0x29538f5d73689db8, 0xd1592da85d2bced, 0x152a69170fa34507, 0x98e196738d98bb23, 0xe724c11d99f3a204 } }, { { 0x3b49560650222de5, 0x5535be56efbf98b6, 0xe16fae4ea397eb7e, 0x95768d536eabeb92, 0x21ae07430ce10906, 0x5378ec06cc1ac4b6 }, { 0x48d5ac6eea3dbd9e, 0x6cc485b02d7d1c04, 0xba8ea98e6c783ed6, 0x43722e7d20aca019, 0xa9cdf18a830afe6, 0xd78f67cd140bc720 }, { 0x456b562f1a0a7110, 0x5683287ac7da7742, 0x386f939a660a2707, 0xffeacfe25e694508, 0x223cffbf7816ff4b, 0x44160869c2fa7058 } }, { { 0xe1ebe138a29caab2, 0xe7bca14d65553267, 0xa46e2d1877daa37b, 0x9b7fc839763d9916, 0x39870e1e6c5f698d, 0x7130cb78a62bb638 }, { 0x6672548b4e640ef, 0xb080c877c590a41d, 0xf90182d9b6658ad7, 0xd15badb3ad838b80, 0x5a61c0a10e6c6710, 0x5b50922cbde507ff }, { 0xc01c8938d6990fe4, 0xb287dde5eac6aa7f, 0x4616a0ae3a71a5cb, 0x3174bba38d2ad2dd, 0x7bce9026d6bd288d, 0x5203bc33551afd30 } }, { { 0x5fc535ed72dd61f6, 0xf8fb0b2591a03293, 0x3b5aac93c1617ec8, 0x33dcee4b247c4252, 0x8ef77292524eaa53, 0x45b7774efa642a76 }, { 0x450e461bc38f13a7, 0x182a97d5f00391e8, 0x483ac1ab9424b1c8, 0xc5f5e291d90e623d, 0x52bffabf8a5b75f5, 0xfbfe4d6c0fab13a8 }, { 0x637d911b9143510d, 0xb93b0d8b0d32ed6a, 0x7345b3eeea33969d, 0x29d03f436e53d44d, 0x875e78e88ae11a83, 0x790728bf807fdfc1 } }, { { 0x74ce0b0727d58c1, 0x907e29f836e372bb, 0xf82446539e397f09, 0xd35abd82dc83d93f, 0x7b990c53d2738071, 0x66390cc52a923e10 }, { 0xaf52a3f7ca77411a, 0xa839bbf375966f68, 0x1b3143012cb8c902, 0xe33ee5a1772a67cd, 0x34d9043e8526496b, 0x4e75ee1b7396df61 }, { 0x5c839b706956faec, 0x907d3ef3b0a52f12, 0x734623d9e10e4f99, 0x924e67a691965009, 0x69699270eb990e76, 0x45e5b66beee73c68 } }, { { 0xca3d5c5abec3512, 0x955c79d77698ee28, 0xfbc3dba0e04bf704, 0xdbd73a05fd10ff50, 0x459210cb73dadd3f, 0xebc0097f46d19ab9 }, { 0xde6032f8f307e180, 0x34768e5ca5789cb9, 0xe22a6fdc455783b3, 0xe3b6eb02dcbc2a08, 0x8cab41e98e9fa137, 0x38608fe66fde308e }, { 0x72a2d3572b4fee43, 0xda136870b0359e3e, 0xa233bfeaf4d6b850, 0x2847fcd6e89c7db, 0x6f04dfc31e022ea0, 0x9d19c6fcdb1fce17 } }, { { 0x4218725192809a03, 0x50681dd8d3c8c741, 0x574f53459f932e0e, 0x6dcb8a8b09898dff, 0x4b198b561c40187b, 0xb608d799a7920510 }, { 0x4c777b4118ade40, 0xf68648e30608c364, 0x7edd063e1ba35e38, 0x7d813c26203a46ea, 0x1e45e9f8f4b543ed, 0xe3640ae59a2dc8fe }, { 0xf7853cf3901e0d12, 0xac11e88c88f14aa9, 0x6676205a8baf66b6, 0x122363ea39d19063, 0x48912422370db64e, 0xde6db47516b02d7a } }, { { 0x8a61c9eda9350999, 0x7e656461fa617939, 0xba98dd6baea1e5a5, 0x4136053213d91273, 0x56e13a20264f65f7, 0x2dd51710d2232848 }, { 0x948ede797cbccd3b, 0x8bd8b2c967c52de0, 0x93946d3047a0479, 0x852346b57d3ceeb2, 0x447708818d7ba387, 0x8d9c2df1dc91f7ca }, { 0xff4c7f5dd62d1ed5, 0xd3af72fc8b60ffce, 0x802dfc947a51db3, 0x1891a31610cacf56, 0xc00aff443b0a647a, 0xbb0f0cc8bcc4ffae } }, { { 0xe47d2cc0d2218772, 0x76678b9dc1b39229, 0x4c7f3eeaf2f7fcfc, 0x8555d2895875092b, 0x8d4007b0ac8820c0, 0x2f0ba736e2aa3281 }, { 0x184114a8291e3af, 0x73bd1a3483622fa6, 0x83d4bb11c96f5908, 0x5bb24c104f72ec83, 0xbbdd6b451ca69d48, 0x4938475e53fdbbba }, { 0x43ec3129873f3dc8, 0xb3b6214fda9b84de, 0x71b1dcc7c072ca17, 0xa5bef802dca01496, 0x7ff14678231cc923, 0x75c4a305b019ac91 } } }, { { { 0x3bc7b41998c6352e, 0x47343546f58bfe26, 0x9e533bc5bd004ea5, 0x4d559db19999c1a5, 0x7ad1f1ca1507f5af, 0xc09498adee8e08bf }, { 0xaab6be805eebfe07, 0x6ad2aea3d51d5321, 0xd154543fe6e13cba, 0xe82d19c90dacd4c1, 0x3da008764e5053b5, 0x302a2210171cf001 }, { 0x6cd7b29507dbb499, 0x50f99594a0fdd824, 0xd10473298b32fc01, 0xc3795e5f1849f422, 0x60d8c64558eeacb8, 0x14039914ba6ee6f8 } }, { { 0xd165bbc5bb95e6e0, 0x5680d5b57cc46117, 0xc596f7a3d1bb4b9d, 0xc197841fca9b8e19, 0x6ebe9a8b8bab116a, 0xfdd9dbb37adb85a9 }, { 0xc1554c3c81333479, 0x85d576db11e1da04, 0x7edd251769d2fbc2, 0x746fb21a7994abb8, 0xd5881d939f585d2b, 0x37d6f81dd0e5d035 }, { 0x6a3a6a63056a193e, 0x4f902e6800f00f81, 0x3113aa6e26b4426d, 0x77cb12e7b7483724, 0xa104ea26890a4bb7, 0xca916c4b22aced31 } }, { { 0x33199041fd5855c5, 0xd9fecf1baf649f41, 0x1f5106f505aba216, 0x6668ec981d479227, 0xf802fea6146e77fc, 0x1c1bfafee509f388 }, { 0x80e14f14b07ef993, 0x7e5ec18b16fcbac0, 0x7222e0a970419176, 0x67dff992f82d2c4, 0x9e67aca28d28e04c, 0xcb1d127553d18691 }, { 0x54e551073d4b262f, 0x55b0f350c97b734b, 0x1cdfce9d3864f9d6, 0xe0f0ea578b1a5c87, 0xcbe5cb3fb28b2180, 0x94e77b6c97af3cef } }, { { 0xa8b1ce3818dbd068, 0x89bcf24649756f9, 0xd7d8a3a5197ecee8, 0xc247bb660a9ec4c0, 0x709de3dd0cfd4894, 0xd7aad937f89c5ea6 }, { 0xa4a9f8fe4fcbb796, 0x61a044708c974bbe, 0xc623db9d99b34b96, 0x282e99a37eedb69f, 0xc0b65489f6e5c633, 0x672e32328fa0cb6d }, { 0x2ea77283b6285f7e, 0x1316252578a15e72, 0xe5c0e9d5eb1e5863, 0x4c68c926b1fd10ab, 0x9ce1bdfe4de035e6, 0xf3d6c98fbfde1044 } }, { { 0x9949cd6218662ff2, 0x4e61e21e08a8dccb, 0xccc2a26866a84c9d, 0x5a858a1578227bb4, 0x979cfb724de73826, 0xc287b35ff307a42f }, { 0x4750b8693ab342cc, 0x9c411fabdbbac768, 0xea8a48f2b800364d, 0x47bb6208c59b2fb2, 0xa3d36ae7fbcc882a, 0x25ea34f21a718b84 }, { 0xfe4041f2745898d5, 0xb07c3ed25dc7e035, 0x41f543f83fbe2c6c, 0x96b02f900aa16266, 0xd07c2fe0ba08d16d, 0xa54c4447d5788f8b } }, { { 0x7ca17d067ef2b0ee, 0x35a3cdfabab84dd1, 0x41aaff9e84f591df, 0xbe75a6c963616b7e, 0x9ce63ccc198bd439, 0x4d09c1f8b8b37969 }, { 0x1c0552413476b046, 0xc2cbfd530c933598, 0xf9ea93c01511dca8, 0x7ec97e53aa76d038, 0x53f30992884eab2f, 0xa3548dcdb2b2e80 }, { 0x754d1a09f8fcf8b1, 0xadfecd230b4895e5, 0xf5f99f84473194d5, 0x4dad929b2dfdd60f, 0x869af3d1fb4aba65, 0x4e5273dafcc0f61a } }, { { 0x45f01f04a6ca6b10, 0x96d76c6c45f5a36a, 0x119723b1d500ca15, 0xe169f3e92b849118, 0x605b107d499b8078, 0x841f9203c117e185 }, { 0x9ee1668b4ac81e8a, 0xd05cc5106d3b4e9a, 0x445f0374f9ec086e, 0xdf971d62b858e0a9, 0x4c8b3c998147681a, 0xafe2a6ac274ae013 }, { 0x3e2acfc37df08094, 0x446b86e2efc25964, 0xb538eb2f3427e7b3, 0xcfe126a22ce06625, 0x1b18be992c889917, 0xce9e0605207613f0 } }, { { 0x705972808ca54f2e, 0xca2ab3344658dbf0, 0x5a039e68619bb498, 0x7db2705782f29e80, 0xc6ad7521e38289b3, 0xecd90d9e726e7997 }, { 0xcc9b0ae9d45315e3, 0x4b59fae6d9169968, 0xa8365b5fb952dd1a, 0xd03fca81e731ce25, 0x188ff10e822f3d89, 0x487af38e9f8fa865 }, { 0xd8e4734cab4880f5, 0x96e2f2fae33c1a3c, 0x70f42a2c2bf1dfcf, 0x6f0531cfa31db66e, 0x20c080a9c5d944a0, 0x2090c7851a027fa0 } }, { { 0x89d19a54ab68b259, 0x463f5c5d4dab6f0b, 0x7fbf5b295ac7b2, 0x3f8a3264578ac06c, 0x68d7f8948de77c2a, 0xfc9ebb03295b862c }, { 0x3b558706dc1a67ad, 0x10622dea1fdcc535, 0x1bae0847be61f195, 0xcf96ed3627f3a1c7, 0x10bbe9184310f497, 0xb98e61fbdc382d62 }, { 0xb450f30c9b81135e, 0x6b6bda3de25ee1d4, 0x97e63e6f77fd3aa0, 0xe4d966d218d7a40c, 0x650515f6b23bde41, 0xc83af4357b8a8e1 } }, { { 0x8fde11f72ff2baa5, 0x586b730ad12ce67, 0x9b8c2f04a2c698a6, 0xbae202566af91427, 0xf697bf60f8d0b94e, 0x2e9a63a2d394d69c }, { 0xd0e2285c107a87f2, 0xa21a89f03916be8a, 0x7c3a4c313bab4067, 0x67eb3986f01d31d0, 0xec875cb8c201f4f6, 0xacbbb863fd5685a8 }, { 0x175b3a5173ac769, 0xa7c8d744f9c2caaa, 0xea6ba8596fa54f94, 0xf8c84a80f69b7841, 0xf92fcc5cf9763922, 0xcaf509dc32ab6445 } }, { { 0x74c823fed474c87f, 0x7083e097fa45befa, 0x91d14408d979dea7, 0x5f50648df716c439, 0x694a82988f2a2768, 0xccbeefa794dfc243 }, { 0xd5d4cd35b7d616bb, 0xdf074151b9b72fce, 0x486d225d0b4979ba, 0x580dab1d4b6ecdf7, 0x2a339f42faaf9ea4, 0xd539dd3a5e31069f }, { 0xad6e2e4ba46212ec, 0x6dcc17547a6acb3d, 0x934ea76ead21e7ab, 0xa187ad0137387da8, 0x3a4016b5e89f3906, 0xef79d0ec6edad3 } }, { { 0xdaf1fb987d298f07, 0xb982b2f48b3e48ef, 0x40068da76dfa6069, 0x9b582923f3c81ee1, 0xd7dd4b233b35e90, 0xcec516749b569ab }, { 0x26b46a217374cebb, 0x534bc31e0cbeaaa7, 0x45f5d28cf3440ad0, 0x92fea38d6a05d238, 0x92d41812c4038fb3, 0x8099627f70a28200 }, { 0xc551c0a4a0103320, 0x110cb4fcef21a458, 0x1c4af1d09d16cc8b, 0xd671d0fcc9e3f563, 0x5a2a1a33a4adf251, 0x35420c47ba91c42c } }, { { 0xe37603cd4427d9ff, 0xa917ac618551eae8, 0x18f7d14f570cef90, 0xd57202d77a5aa22a, 0xbd3359db8fef68ab, 0xee81ac615869b1b5 }, { 0x16a1c3e227c20b6c, 0x7db337234d87ab0e, 0xd5cf7adbdeff4d42, 0xe2b7e518f0dd2f59, 0x87a2d308f3117512, 0x5c8d7833eb6cd3cc }, { 0xaf6ca6eeb09161a4, 0x364842bf841d8d6e, 0x9c6a207f95d09bcd, 0x32ea0f137222d221, 0xc865c8b87a191347, 0xda1c43670de902d9 } }, { { 0x524deec058c89fd7, 0x931d4a2d42f53eb8, 0x91411c949bb424fd, 0xbc480fafb195ca1b, 0xed089ce6b3fe38e0, 0x35a4deb3f2aaf7f6 }, { 0xd771ed6f43337ab0, 0x320e23f36fa40982, 0xa4fe3aa3beaedd42, 0x40808000612f865b, 0x63a1319b433c17b1, 0xbfef56dde7b8bd6f }, { 0x1424a29807596b7f, 0x5cf4a3c9cab30cfc, 0xe1abe344a213b001, 0xfd4cca81f54712ef, 0x8994a7264073ffd, 0x5500df2b508e263e } }, { { 0x205a90814dbb0c1e, 0xd6ecd21ba0702660, 0x3cc2698209d316f, 0xd90b44238f9bac71, 0xd175118348eb8453, 0xdb5ac4bfe0ee867 }, { 0xaebee8f4efe85411, 0x93ce190ababa945b, 0x4ec67cf61daaac44, 0x9e5e466bc5717825, 0xca04e56a188e5668, 0x1b9d24824dd10db9 }, { 0xa135325f052cb9a1, 0xbae73c0eb358bf88, 0x5ab4ce73bada6244, 0x57fdf58af5a79e8a, 0xcdb24a8f7c1234b0, 0x77df74be3410f0ca } } }, { { { 0xcf4b2c9f45cbe9d4, 0x1ce43596d255b1f1, 0x2340c781912ac349, 0x147e279482fa4563, 0x3ac9dae0520216b1, 0xbd716eb6b2ca005b }, { 0x5f7308919dd9c1f8, 0xf7b18f2d4e18c228, 0xfcd4614cc9dc1456, 0xf4b2594a8b68a3e8, 0xb08d0b2180c97558, 0xd1f79a7c62cb8927 }, { 0xaf29f75aebeb9518, 0x5ad6e78ad6d7e8f4, 0x55760ce40a421871, 0xde98d0fd69e2910c, 0x4c2f1aa03764fc66, 0xc756405cdfad908b } }, { { 0xea049dddf7856797, 0xec518e0c281c2d28, 0xb3b8022b10dd6e78, 0xd534233413739f4f, 0xac4ed3da64464666, 0x5f76dae10d78c67c }, { 0x640569f53ffc9c09, 0xa249bce00bd2cff9, 0xab4d73b919e79d23, 0x1d4e857d773c0891, 0xbcd8b7a2b5171187, 0x40f9418f766dc50d }, { 0xfb03b6bd3ffc1942, 0x7f6e19c94884f0e4, 0x6f6b6d90043e7bf, 0x8b47116684636f62, 0x8fefd23795c36b64, 0xbf6eabb1566cfba4 } }, { { 0x49c3b12c4bcac33d, 0xdf70ac85298034e3, 0x147698e4be0646f5, 0x49f3f07e3db13c06, 0x4f3772901694d783, 0xdb11850d30bdc559 }, { 0x5ca59b047e079039, 0xf37cc22496943f11, 0x8371c91ec5d360f9, 0x42e1f9e49fd1dbbb, 0x657c17497a6130b0, 0x4ee35919484e0653 }, { 0xe63aa1afc2db5701, 0x88a2b3ddaead5cf5, 0xe9a032d9451184bf, 0x7cb8562ef938a632, 0xc76bbeeb443e10d, 0x5fa814be159cc46c } }, { { 0x8e2be79d4ab9699c, 0x1bd7428d5f6174b5, 0x7152ae5029a282e8, 0x488397ffa0c9af81, 0xc938bd9455ed4ad0, 0x8928f51a3ee56a53 }, { 0x7af990b191b15fbc, 0xf0ba7cee9b4137d6, 0x6e362230e1d59a5e, 0x8c663d225c5710f4, 0x2923d0cccdc0ab81, 0xb06bb68ed76da3c8 }, { 0xe9cad216ce40a10e, 0x9b5aa2b07f79d353, 0x99235153f81855b1, 0xc9373bfdce64b3b4, 0xf9c07f7e4bac2322, 0xe332fc708c684fb4 } }, { { 0x52f4f8ca39eedc4c, 0xffbfa8a95dc2024a, 0x6a7ebe47d5b02cc1, 0x83f7b5c0e26c33a0, 0x18d16c4e34c1d73a, 0x26b6e8bebe47f5e8 }, { 0xced8194ecaa05aa5, 0x97184e5703c2f2d0, 0x4bcde19c07e0e1b, 0x232f552613830bff, 0x336688206e06574c, 0x283a84c9ae22a64a }, { 0xe2494b7a2952aecd, 0x379ac12da7f6a448, 0x915ef142e43e5701, 0x776682cff57cbae9, 0x6a51cc575554de33, 0x5b54fb4f91b6d7bf } }, { { 0x8db1e3b7f9fc8352, 0x274aacc36b4ae211, 0xc963155d40ef7ea0, 0x4a55ba86d69e1809, 0x275010bed220b56, 0x4b8464519bd7fcae }, { 0x65b54ee00e81b98b, 0xe50f96e0a4da0319, 0xb23a249c26fe9a61, 0xc78fa09c54de59a9, 0x3869bdef20c0ab4b, 0x19caed9c4a996d8b }, { 0x904d4e0fdaa2523f, 0x9de6a2c5ceac5b2f, 0xbd39158ab7d0366c, 0xdcea925bc52c41b7, 0x24f5077c0c612a05, 0xb7ea00bb4d3d1bcd } }, { { 0x218f59f1b7b7ace8, 0xdc67b20be59eed29, 0xd31a5e658a31d646, 0x2f1ef3115f06cbe2, 0xfae4d72a824067ac, 0x1334f97950fe6ed5 }, { 0x81425352fad870c7, 0xea7c25dd54505edb, 0xba85525536388163, 0x9d910b52340d9cc5, 0xdca78946daf0deab, 0x18f66ec183ac5c0d }, { 0x6c5b6f0c1297fdba, 0xbaf46955d4d8d9fc, 0x1284ca533edd5e01, 0x4955c1baeb3ccf7b, 0x90c9a2090dc7f81f, 0xf4c0467c5486f7f8 } }, { { 0x395fb3349561e5de, 0xc22144f7ca7860b1, 0x575fa05b10dc5256, 0x5a48231aecf00237, 0xb5d04d2bbd1381ff, 0x45564f01559b6b17 }, { 0xac89bdcd2c0406ad, 0xd177a6e930ff172e, 0xb7bfb2b3615d1f6, 0xcacd7e866e66aedc, 0xa56511a33f46d7a, 0x839280bfbe6566bc }, { 0xcfeb47e098f40b3d, 0xe3d5bfa3d3382044, 0x2f111b32fcad9da7, 0xd6586420e8b0cd4c, 0x7b616fda2b7af7c6, 0xf91c46e377a333c0 } }, { { 0x1eea931ae1d602f7, 0x2aaed60abfa05c23, 0x2c4205a1e4c5f161, 0xbb21f2c3ec2f701e, 0xf50c71e636fee749, 0xc5b5f2456ab91e2 }, { 0x7bd484720ad9715e, 0x62bf51fca6af534d, 0xf04691b322df826b, 0xdc22985b5f4c21ad, 0xe87c9e56b07fd805, 0x8895f0df9cc420cb }, { 0x2e39cd8d74d88202, 0x12eff60616649273, 0x64479f6f153565ef, 0xa34d5a51fd54037d, 0x1e973c10a14ae313, 0x6daea6f787352c1 } }, { { 0xd1b95a1205f7adb8, 0x1100b7fcd039362e, 0xe4f1147bde771fad, 0x67f1e161be5e6613, 0x5666cdd4c4d0d60c, 0x5bd7d8d1db867ca6 }, { 0xa72bd3348b13fc2b, 0xa138eba4444f0aa5, 0xbb55a5a6ba829996, 0xe463b37979a8671e, 0xc1d9911ecd8f4c33, 0xef520b928ab10699 }, { 0x542705aae48110eb, 0xb4722a7542704d4c, 0x4386ff95ef8be431, 0x28bda4d9c6aa3b85, 0xa479816077bc4c50, 0x60f569125f785c1a } }, { { 0x28f64a5eb70e1bd9, 0xd37fcea1fcf56413, 0x8f62a457b3b3d912, 0xd62556fb31192ef6, 0xdbbc70fb34af5a2c, 0x7495b898b3f51205 }, { 0xbc04ea0803af1a0c, 0x8bfbcb0798430ca2, 0x32462b439a1247ec, 0x32f688dc516c69c, 0x24ae16da3e46cdc4, 0xe7f9a6d03b51910e }, { 0xda0910e97b1abf4f, 0x61d8423ee09abc10, 0xe2421f56881c5c1c, 0xad8c0e0e8ed9ecaa, 0x91fb0d1db9ac21b7, 0x83e55ce36d18d659 } }, { { 0x13bb6898003c5a4c, 0xb1df35f012a04691, 0x976d8486c254bd42, 0x1c6eb663c587e916, 0xf65dc54b1e11612c, 0x52ab92c9f729b7e }, { 0x9563c771eac6ea41, 0x2eeae845a5d9031a, 0x6a7c73300c95b574, 0x62050f8fe335523, 0xfc0d7c44ce8671b1, 0x59e82aba21b8b8cf }, { 0x54c4f2ed2cc271d7, 0x64cefa6221ebd26b, 0xa4f5e9c1f1591f1e, 0x31fe8aa6609f9649, 0xefd907def08eea81, 0x652b442bf1852409 } }, { { 0x7fa8431a0116d755, 0xe2b46ec2d4500268, 0xc26cedc24dbd80ae, 0x1e864dd49c81fa0e, 0xef26385e9a0637ac, 0xf1147d2ae3b37d20 }, { 0xbd3124d294822e4f, 0x3970431d7f845be4, 0xbbf9df1051a642c2, 0xe0feb24a1be9044e, 0x9ae3e07cca78a32c, 0xac06504e000c156b }, { 0x22b23590111b1880, 0xc359f39484d84868, 0x4553be55f1c471d2, 0xd7ad956ce21fab2c, 0x88ee58b4b339c29e, 0xa46523c1f7258075 } }, { { 0xedda6f2eb9abea5b, 0x5e745ba7a8a9e704, 0x17d343916983d2bf, 0x20b54b45c7926a4c, 0x1594faebf09cd1de, 0x75cd369c18ab344f }, { 0x3b5d96ef4e029b4e, 0x9ea104ccee4fce0e, 0x57caadc9a24de9e8, 0xbd65a297a53590ff, 0x749b55434eed67a1, 0xa59812becaf9b402 }, { 0x2d0d92e8ec538e8c, 0x2b169307c0cfd7af, 0x752ce6a86ea058ea, 0xe8977b7e9d74e7f6, 0x93c340ee36101de3, 0x96b78f8c459c23c7 } }, { { 0x8fc508b9f12d4225, 0xb971e9af9a498295, 0xf0872f409f5161fb, 0x9cf77741bf47beb2, 0x3c86b8618604f400, 0xd6a75528cf046fc6 }, { 0x192be4490eeaf7b7, 0x46ef450d04462ed, 0xf69fbd0fc4b48db, 0x596b822f6858031d, 0xa8bba572cf23cde9, 0x55062fedeb4d214e }, { 0x513819dc1a1bb5fc, 0x97dc5a1bcce71200, 0xad0a06c47e95140a, 0xb290c1188e6839c2, 0x59c40aaea01055e9, 0x2914d336e9eb6d38 } } }, { { { 0x8179ba6bda60f378, 0x6614b0f16dae1f3b, 0x7294cc739d94adaa, 0x2abca7f3b3029499, 0x7331b88460adb90d, 0x1bfd0dea373ce8b0 }, { 0x453b59f49eaba2e4, 0xaa6541168f768f93, 0xf2426ee80bfd8c1b, 0x6738a90cea285b55, 0xee7a6c26795e8701, 0xa6d28877f9f96391 }, { 0xb1565dfdb62044ed, 0xf3327dbac939b868, 0x346ec4bb55e87f5c, 0x807f2c30bd2bd117, 0x624b10907b277cc2, 0x70069802adc747b2 } }, { { 0x2093817262eea100, 0xdc0d0afb16424c7b, 0xc3ffb1ddb049fc0b, 0xd54061ba94c1016b, 0x71eef84195e1664c, 0x32fd07c78139bb60 }, { 0xc3252ccb85dfbddf, 0xf8683983eae8604b, 0x7d8ea3dcaeaba3ed, 0xd6919267b9c43084, 0xc595939f16048b57, 0xf9bfca26cb3508a1 }, { 0xd839a87626e6a249, 0xa8f7c0881974817d, 0x8f7c33f0dc021166, 0x73ed5e18de0f3749, 0x86feb8c899a5c9ac, 0xc15f9713e7434025 } }, { { 0x1903da8f9e4812e7, 0x648e86e702a6f06b, 0xfe9430f4032e6160, 0x92475365c4af948c, 0x691310b718c6e1d9, 0x8029815265ef5b51 }, { 0x75ed0ca650d96d44, 0xc285aa591639065b, 0xe7913020efff5990, 0x80a761a237fc9e36, 0x4d6eead0b61fc018, 0xe66fd5a93d9bb7bc }, { 0xfb72eab3f175d49e, 0x627ce37c31e9d83c, 0x704c15da4e404f2b, 0x1fede7c4318e8c63, 0xe8e69506d0c9338, 0x10c15089f6d8f4bf } }, { { 0xb937609d7d7f4060, 0x7f9f16d6b9f58fcd, 0xe2b3de30c7bcf2e7, 0xdae1c550534a4c7f, 0xd920f592f73bdffe, 0x21fdfbc70a5d72a7 }, { 0xf9d41811315d8ad, 0xe7c415592465958f, 0x448e2007ac0380a4, 0x14a7c85e012a6a78, 0xfd7bef6f64584e56, 0x238c8582f86e10e3 }, { 0xf0a1d1379da4289d, 0xf6390c48aeba07a, 0xcdc212c208ae129d, 0x58a745328f33543d, 0x9c63a3e99d494e02, 0xeccaa6088a7276b1 } }, { { 0x66cec397179cdb4b, 0x17be01e468b3948e, 0x2b14e814b9b49786, 0x7e978d189df941b6, 0xe773f5b4497da41f, 0x6f25d82247bfbae1 }, { 0xa35510eef6b8af85, 0x3c5cbcbca61e1fb0, 0x55a559303ea5e160, 0xd345eca6dc0fec1b, 0x9f6c192cf3df2f20, 0xdf5e99a370a8332 }, { 0xd38023a19104ae0a, 0xc7c74abfde4d1571, 0x6e09fd4703b2826d, 0x7618c3622ff287d0, 0xaee0ba945b26e2d, 0x5e7c543b25175421 } }, { { 0xd9a8eea031397276, 0x3d9dffb2de54e358, 0xdaa5cdae05fd2715, 0xfb43918a75ed4027, 0x39f2a564bae9a61a, 0x15dafc62316dcc78 }, { 0xe1a87620d3a04c56, 0x1469b338f3029eed, 0xdcd52d0eb3e654b9, 0xb534f399743335fd, 0x6c1566a3ada29bea, 0xe430cd107cc3ef4f }, { 0x4db42110fe2f5d97, 0x2919912b155569c0, 0x444e7e11018bf57d, 0xf1fecf5124e77e8f, 0x93f5d6bb4c722d47, 0x14ba1736e6607f4f } }, { { 0xec9f7c6553242b1, 0x4c65097bd800ae2b, 0x57d751a75caa2f0e, 0xd85e64f71707df27, 0x905cee4368522233, 0xdfac9f75a60f11c0 }, { 0xb8db81fc6d012230, 0xc40b1ac1b87606f6, 0x7c8e0594664c86c8, 0xe75d39e092a4a0f9, 0x66b08c88a28065e, 0xbe2b76f10d2fff2e }, { 0x7c6a63e294df234e, 0x5766355c683910b0, 0x9fcbcaa9bc8aafc0, 0x36bf912584261d3, 0x5ee73f67f45df2c6, 0xd4723a676d832212 } }, { { 0xa16c85ec747792fc, 0xb42f15f468a18b3e, 0xc1aa6d5c05d37d8, 0xe73be8fc60b2944a, 0xe8b199b209c00f6a, 0x2aa5a659dfa218c4 }, { 0xd403135d16d52890, 0x511b243a752cc0da, 0x6b72082009ef0dea, 0xc8e3030524de26ea, 0xb5c118b108d07180, 0xa3487a8749bd114d }, { 0x4ac0a4172414f356, 0x3fd1145c248a03f7, 0xc1fcd39e0c3a9bf3, 0xf8bb8b6e1f9f76e2, 0xad640c31b6c31648, 0x19b64c1f9ea4334d } }, { { 0xfa387f9edf51ede3, 0xb4acce460c2ca328, 0xddd56d7462a0ef81, 0x6f8fc96d3c6943b1, 0x71d38f40a11e53f, 0x45be39dd5494f97d }, { 0xaee3704421b15d7d, 0x91c60c4ae7a1e5fb, 0xa1ba2db3497d4be, 0xd184ab53f49612f4, 0x944167c00b1a1c3a, 0xe3a88a0f03c12b01 }, { 0x3b0eee9381b76be6, 0x9d927603047e46bd, 0x751e1866e816ecfb, 0x9f3a0edcbd8c1314, 0xdc227a719f7db673, 0xf16127de480650f4 } }, { { 0x65f7bee643b30ee4, 0x5963635edb991bf1, 0x2af122d251896ad4, 0xc12f049457337b19, 0x891c0140df7a4287, 0xe1657b22d2339e65 }, { 0xd7ae5138e9e7a88a, 0xfb05ad1e95b3f597, 0xf549b43b1be31292, 0xe752e1db78c3d7b2, 0xeb8ac5b89d88aad0, 0x6e17edae3a1fb73e }, { 0xb688f4d422428d8a, 0xe2ba351526980b01, 0x3d6af54afa9e3d66, 0xf7421d2a4add52c, 0x93550f74e101a059, 0xd013e468201c76f5 } }, { { 0xa491e7b3334dc994, 0x51691a14993a427d, 0xa2af2e67a5f39972, 0x4906a53077eaa9ca, 0xfb2c5adc299e3c12, 0x77e9c2ef1b347bcc }, { 0xbf428c1615e9da5a, 0x59a503c9a5034faf, 0x59a5781bcb55ea2d, 0x66b2981b343b5132, 0x6da897ac9e04f64c, 0xfdbdb950a8917349 }, { 0xc243c581bc46e911, 0xb9f4fc70a62fc704, 0xf3400696c3758bfe, 0xdbd003bcd1a05c68, 0xca84ebe7440417b1, 0xa0e9531191f806b9 } }, { { 0x540c95b1103b9f95, 0x1d8413c15705abfa, 0xe8c938278824c12a, 0x42ca51f8d5445e5f, 0x50e565b4f7b2489c, 0xff97117b129acaa5 }, { 0x5418e08d785562fe, 0x95ce7a956e13079b, 0x8ac422e9746f65d8, 0x64cca48dcc5b7f88, 0x4ce82839912a1529, 0x37052f96ef53dd5a }, { 0xf51529b0eace01c1, 0x5d3ee5953a3837e0, 0x319b2507085ad45c, 0x613242c180d60945, 0x9bb42a5c1bbc666f, 0x8fa8e01e51418d5f } }, { { 0xd9411e7cd631317d, 0xb38c16a2da9b943b, 0x2a9be077fc70c3c9, 0x87d9f4520895735f, 0x47c72e616ebb06f9, 0xeb8fdef69e07ff3c }, { 0xdb32e10d095386d, 0xe1258e3fa450407a, 0x7ec492695aadbe23, 0x111ef8b1bbd76e11, 0x38313fef93b1460f, 0x5fe71857922b8d8c }, { 0xac7e43382a28d891, 0xa07c1add5638d54b, 0xf4fbd1f6eda73c3e, 0x6851bfe8b258b5d0, 0x482fb407ad262b7f, 0x52fa3bd6d476b624 } }, { { 0xaa81a79dbf5808dc, 0x48edfdfb318db10, 0xaa6c07f52ae58d0a, 0x547685c2cb6a9664, 0xe01df20a254d9b11, 0x950c29ca3e88aacd }, { 0x6e6b9a66946f3eb3, 0xa1a03251353d7cc5, 0x506e084e15f04d50, 0xaa156717ae6ff3f, 0x3b1e56fe46725b9b, 0x925f5d7be0cc3ba3 }, { 0xf60b9dbd64e4658f, 0x42434480940d3bf5, 0xea09e83d05834247, 0x48ac20e2bbad8d63, 0x3379e140f4d23b31, 0x68cfe8f65988d559 } }, { { 0x235a68447e95ed75, 0xc7e415bb2f092771, 0xf035eaba72d02b55, 0x536dbd40d2136d9a, 0x1a0e2081fb264cac, 0x2c0d6653eff60955 }, { 0x13d8cbdd1cfb30c5, 0x99d6ff6cc738dfc8, 0x7b585cc701dc227b, 0x833d71ac74d72923, 0x43dc803827ea03f2, 0x318cb9ed20e2de59 }, { 0xf7fb9589b752f6a5, 0x17c2bd52f349f08b, 0x9b0040aa4f6c70c6, 0xc4ad99f4a29b3bd3, 0x6bcceaf92bf38e0a, 0xf79eb6e226657a9c } } }, { { { 0x7b50ad5ab083bcc1, 0xe146826292ba9916, 0x37e336c2b4644f0f, 0x3815ae89ccf63998, 0xc9ceca60b34c27ab, 0xd310540c3c6eb04b }, { 0x9221227bed4f60b6, 0xa058f8741e511bb4, 0x11a26c970339c27, 0xc5beaafa8d7d9b31, 0x51d4ff1f915967dc, 0xfb581daa7ce378f4 }, { 0xf7e43590b9ac9fda, 0xac61b08dcbbc1c35, 0xc33e7c602701913a, 0xf31d15bdc687b56c, 0xddfadc0acb552fa0, 0x419242a1b1d1df21 } }, { { 0x2f2496fc1fef68ba, 0x145841b0c8698805, 0x622235875b73f41b, 0x68f2cd47b474b16, 0xc8413595cd2fb126, 0xe9c629cb1920d398 }, { 0x87a01cfc3beb2327, 0x8cfc5143e51228af, 0x19e1262b1e7900f2, 0x80d0f1acd3337477, 0xebb2018e432ed4ce, 0x840dada16f8c104d }, { 0x186685ae70eac2c2, 0x170c86b06dee8024, 0x87f838d60d5ebdb5, 0xfa96b5ae5bd1c2b6, 0x46d109719dcd13ae, 0x8019052df15bf267 } }, { { 0x398bc90c88214eb0, 0x6d94e6e2c2aa96a, 0xd2278323c543acea, 0x3dfdb8927fd5555d, 0x5ace3613c5fc45f4, 0xb8850f7ae0b18843 }, { 0xf2c79d99e35eb350, 0xa7a1157b743b06b8, 0x85f77a59866b0ded, 0x3421223e14aca6bd, 0x802ca0745de90046, 0x1b27f4e14ad11ef5 }, { 0xa5ff13fd7ff23d3, 0x4f49c23e8db17608, 0x6853225c41bb2572, 0xcd18b0fb73f53642, 0x3b38d8deff6e1193, 0xafd7669b1e6eebd8 } }, { { 0xa7d1cc4a69518950, 0x4de3e0a85b11a288, 0xcd55d59f5d81e258, 0x53565644004092cd, 0x719b5a2813bda8a7, 0x2c4afdcf940583c5 }, { 0xbb4e5fe5cef119b8, 0xc943d8a295290d22, 0xc956a6533c5e019e, 0x4f472e3675d5a7af, 0xa6801758f1b7ab2a, 0xc77f1b4825b75f9 }, { 0x56795dc989061a6a, 0x64a20f143650041c, 0xfb88bfc9d3bf35b, 0xede1af5f4cc41c2d, 0xd7da460401094ce9, 0xf1d2f26d559f2e34 } }, { { 0xe7e978b48d076e08, 0x69cce1bba26f5b5, 0x52c70dadb28fc989, 0xe4cbac14900fff57, 0xc0eb717708b770a8, 0xfb4921ec1e1c0892 }, { 0x79bf242ff5485f48, 0xea12d27a53a9b421, 0xa8138e8ca6051cdb, 0x21995d7eb7404f28, 0xc628f26844b51cd6, 0x7265a7ffd24f42a6 }, { 0xea8a789c342e0ebe, 0xedbb6012c1da4756, 0xf6793f188774d300, 0xaaf583c2634e753d, 0x5b711963fc8e4163, 0x4ea0dc1e2b068a62 } }, { { 0x9bc0009bd188878c, 0xfdbe5f3f6befb7e7, 0xf4b5655ab824440c, 0xb1521283f50d64f0, 0x3e0225f467f0595e, 0x8086382e6a6e84ff }, { 0x87c8c4c0904445a7, 0x15df71386750fa45, 0xb74927c4f797328, 0x184cfcfb9c82bcfc, 0x8aea9a1f60c2f196, 0x954ba5666986eb12 }, { 0xf862c56816cf17cb, 0xef721e5ec3315458, 0x4aafae8ef93bcd99, 0x3b9713ef12dffb80, 0x5e3e34cde7691ef8, 0x68430e48233a9282 } }, { { 0xcf2e41c3db4bb5eb, 0xd1cbff07070bbb26, 0x71545deb3bb9bac9, 0x763d7bc577823f8c, 0x598caba00715187c, 0x9fe7f6242303b332 }, { 0x8ea9c7c4b1a71d01, 0xac0417cef65048c1, 0x947ee3b864c994e0, 0xc7388e703861777a, 0x4bf8cbacf299c072, 0xffe08049678a6099 }, { 0x53f455b9ff6b26c2, 0xafca88b9bf93294a, 0xed8be7ff905b6384, 0x831276a923b3cda4, 0x7692e5a63a849824, 0x3f0ba6e8e6d7fccc } }, { { 0x3e5e85d0477a7db4, 0x5b4f80f9bcc14c16, 0x8693a0a36611b924, 0x22757236b7d95c27, 0xb11a6907ff2904ab, 0x693939e8514cdf5 }, { 0x92a4870ee4279544, 0xc05a4cc20b84e939, 0xc264802398ec0e6d, 0x34a47ba0593b3dab, 0x9dbe052b31616990, 0x3b4a2b4cb662bde3 }, { 0x2a1c0cb5dfe4708b, 0xc9c6704688974925, 0x7354f333012a9c6f, 0x2631abc678b58fa4, 0x253ae608b42efc2b, 0xa0640e27c8bd7d5d } }, { { 0xb39a864f8f898ead, 0x83d297ea99f36c4c, 0x811a2c84756301cb, 0x1f74fc1367abefd, 0x8ec8a61aa9030732, 0x14f2a93773e21291 }, { 0x4ade3f03781be103, 0x2ba34eab2db25840, 0xf648b2d1cf4b4fff, 0x4efeec3ebbbe59cf, 0xef1e740864c68504, 0xa1a0c3b16efac3fe }, { 0x17d6c591b03131e4, 0x7eaf2376f87dad61, 0x2059d8efc594cbef, 0x301d4e90b794f869, 0x70df6e8e283f229f, 0x7e539e92627e2617 } }, { { 0xe499af3681274186, 0xa4aa83fb588e2a5e, 0x7d528d55a86d4473, 0x4304622eb8bca69f, 0x965ec23ea992de93, 0x1b08a4df5624035a }, { 0xe668fc9e71a2295, 0xaf5328d137c87667, 0x88c9822fca31af63, 0xa418d9952d0c50c9, 0xf5a81171b7bc0708, 0x8b15ef958423f430 }, { 0xe6253f731db40256, 0x1c3ced3edd00a21e, 0xa8b90f72609d664d, 0x07fd9a90a6b78b, 0x20a202b417342fd2, 0xc1b03be9dc1e831b } }, { { 0xdbad0cfb5a69409b, 0xf2ed57cd0471ecee, 0xb46032c37fb3009f, 0x9bf3ccc26b8628e6, 0x3934a2b63d4175a0, 0x41d026298d1c4b4e }, { 0xc17b9aba6ac8338d, 0xd7b5006f6329f3c, 0x24b7817f719eea02, 0xa32970c8b2cdfe20, 0xe2767575ede1df4b, 0xc1b6501b98c7d81b }, { 0x969688106e78f030, 0x496043de951ae55c, 0x3736ce82fc542549, 0xe384316963036664, 0x9333362f555d6b2a, 0x2174ed32cb1f7402 } }, { { 0x3540197317e7cb7c, 0x339a31443e78abab, 0x58f441e4bd3c036f, 0x1ba48df27cc13c24, 0x70b78a9489a26bc, 0x5fce2be062781ac2 }, { 0x9de488bd4d2b124b, 0xec2bda318092f7c0, 0x990a402dad2d664d, 0x6be23c28d2fda8ed, 0xc40bd894e79e5e4, 0x653080e48143b4e1 }, { 0x279a598361f1f478, 0x24f4ed0a6841d35e, 0x2ed7b260d7a3eb1a, 0x5626c0039b7ab0e6, 0xc46b0ad0d09c160c, 0xec9126b3af379647 } }, { { 0x15362f5064dbdf4, 0xfa42df46472d802e, 0x4890829b11ed1f51, 0xb2361036b5bbf7ad, 0x408b767fbcf67c74, 0x6cb3748f11b470a5 }, { 0xc19d66b0f8f225d, 0xecac950ba7d23f97, 0x245823202c2480f5, 0x2e73083f60a71dec, 0x9989d71f5ef6e11b, 0xb1ff98e0a47f6b7b }, { 0x113878d49f6ee1ff, 0x68ff95c21a980939, 0x6d1f254fb3f907fa, 0xd1e0295f968ffb1f, 0xe97a767fa9f6b67b, 0x3c2d94dea4fa4cde } }, { { 0xba4eb09d50f5d841, 0x6a8ab3d0d72a1089, 0x4bcdbf696582cda8, 0x3e697480635cdb60, 0xb3e177ea84366f07, 0x1890799b8a27098d }, { 0x2bdd5e2326fc3e56, 0x2c24688269d66ae8, 0x3c8f670a00e3ab1b, 0xdd6ea1a5f066ffc6, 0x42a0d4dab6b99a0a, 0x25c7c10d5d3140e5 }, { 0xa634c5625b38379f, 0xd77054c326d5b782, 0x82e75754c02e9fe, 0x2f9983c56c926e67, 0xba2f2bc489010675, 0xf8e673103f0062da } }, { { 0x5bc7827dc403bfde, 0xa747f17d89c453ac, 0xe7d010cacae95480, 0xa98373b5b7841ab1, 0x5ae7144001ee35cf, 0x67d68ac63a426760 }, { 0xbfdd2a8c04c0d731, 0x239c2b0746905ac7, 0xd93671e2e1994b3d, 0xcecb20eb97c0f514, 0xb98b83a834d6f99d, 0x40790cccd6e2fa57 }, { 0xa3e5fb2686ef24ed, 0x73c0ba30af3862a4, 0xb9d0718f6a0b2cff, 0xf443a44ee08fe565, 0x8b46a84a867c5bbf, 0x72ae5cec725e0cca } } }, { { { 0x4693a653cb0d5846, 0x20fd291f02fd7918, 0xad1240dec2f69181, 0xad612f58483cedfd, 0x89a842b25c608d49, 0x220081d7d1ce8f78 }, { 0x78527b941e5b852b, 0x117cc0f6b33beb42, 0x520eb9d0b7ac42cd, 0x735c9254deaa04a4, 0x19bdaa3c9a850f8, 0x5afa3c77288d2648 }, { 0x9cfbfb479ff9503, 0xc6d34099421889ba, 0xbd351cd6bb0e09df, 0xe051c6bfb66a5597, 0x8a29ab30b129291d, 0xc685d40f7e647a72 } }, { { 0x581463caccc5d955, 0x7307f3ea49bf10a8, 0x29bfd51513a892d, 0x4ea0de48969731af, 0xf985bbd33b991006, 0x887fa5be5fcf9b8b }, { 0xd6110b6fae68c771, 0x677fe40c21162590, 0x37dbbf8880d289f3, 0x40c07a0a0e613264, 0xd2ff1d080e6e9340, 0xbba7ecba8aa2288f }, { 0xebf075d76cc2f84d, 0xc7014471aa5cc44c, 0x6a2b77897ac42b27, 0x1894bd41952599a9, 0x494102849b119bfe, 0x9c22313ace2c7834 } }, { { 0x3356cd88443ea1a9, 0x407bae67991c6d69, 0xfce9239c8c268254, 0x1769f2eaa53f63d6, 0x64b8f4cec739874b, 0x6efd0f42d37d4b04 }, { 0x3cadb42dd08a9df5, 0x15c53bf61fd14ef5, 0x6c5d348a01a96595, 0xc08fcf96251e7b51, 0x1239872565201a58, 0xe072b96505d1a42e }, { 0x3c303156ca495c28, 0x216e02112939fac5, 0x364f8ff4e7dd9cd8, 0xaa3e5162abbfb070, 0x1d517350c4d1e438, 0x3a037e0438834cfe } }, { { 0xdd266650cbd5adf7, 0x4aaabb51b52562f, 0x1b4e503259777f94, 0x2e838c5d1cb9605a, 0xbe69a6967e3c0b66, 0x620cc72749b2f404 }, { 0x5cd5e21d696279d4, 0x9355d7a20433a4d9, 0x6c7346780c64fc81, 0x9ee6fee272469be8, 0xcc3221444cef1a08, 0x77d6384dbe86f17c }, { 0x5a4d630df29c28b7, 0x45e3684db53c046, 0x1c28b721a68055a7, 0x6776cae6b9985d9c, 0xb379b723b610f65d, 0xd1820fad53090280 } }, { { 0x47ce89817ec73f71, 0xf2b3254e93b18a8b, 0x665dd33b905721d1, 0xd7d0f7360a786ecf, 0xe3097db3fb86c43e, 0x3e4f2696d79b3ec }, { 0x43d2c1ae209b1e83, 0xd3be182895e8dcc4, 0xb25521363fc4d660, 0x9902864da12e8723, 0x4e80ca8d56678e84, 0xe3c77b2846b864a3 }, { 0xb12a3c3fadc9b81, 0x26c30401c1b9de17, 0x46ed39149c78f062, 0x9f9fd8419db2d0f8, 0x4024831a8b2379db, 0x8d358e46226d25cd } }, { { 0x9c69c471110dd10, 0xb47b903a689babd1, 0x5430e9a7b14ed87, 0xbd06f101762388da, 0xc62c3a31a3677b64, 0x8ea70cfdf114d40d }, { 0x4780aa266cf86c3f, 0x6b4c5bd15e714645, 0x91523ce5fdb3bd77, 0xdb4f53aeda783b10, 0x6cabc66249b9aba2, 0x113732fc4d53e6fb }, { 0xd4640b64afbb4fac, 0x7f2676797fad4fce, 0xd1bdbd6d8b6d9dab, 0x31104f1b6b22cbe6, 0xef2ef2418a974d59, 0x4d40623a1b393e31 } }, { { 0xddeb9307f71d0287, 0x7a8647019f1d8913, 0x54c4f6d6b655cc1f, 0x3699baa9a29c5af1, 0xaeb42e54350010c2, 0xbf9b0ba721227dc3 }, { 0xd9030189a06fb44b, 0x41a975a7d7786c3a, 0x4e8799d94b20d99a, 0xd78c39f3aaac1116, 0x3c929a6645871a23, 0x34859b0d84dbe8fe }, { 0x19395db1d1d90332, 0x68510eab24aa88d, 0x61ec9d442864e2b9, 0x37477a911db512c, 0xa1eb655b1ae1ef36, 0xf8806dc95da4e574 } }, { { 0x6656afa86357c483, 0x9dd7dea677b92f06, 0xf3316ac5d4e65bb7, 0xf130f4570fe1d344, 0x1211da3382db8d4e, 0x2f4fb78d36d0fc4e }, { 0x15f27348f682fc50, 0x26ae347682e7d1ba, 0xdd0bf7d64efaf82a, 0x17bff450bf08f62e, 0x1a412d0add3667d5, 0xfacbe375f3f48281 }, { 0x9e1fa84598c5a1c9, 0x89bae71c6c01d312, 0xe3413b9a57c8b807, 0x19931d79e15f5322, 0x6c7ce92e7206c84d, 0x7006aad332eaf24d } }, { { 0x8b0f403694f266e, 0x11cd47fc9f09efc0, 0x4402a0f8f1a845d9, 0xbb2df729063290a, 0xf31d569a117bbdf3, 0xbd3d330479d7c8dd }, { 0x70b0950b1d0b91db, 0x3a5db74738c7224d, 0xaa87259bc5078296, 0x8ba490d4858dddf8, 0x82989eed1422b4c1, 0x51c25d2a3799fd7b }, { 0x927fd4112b5dbfd4, 0x29d6594f2bef3ac0, 0x49e0dc9a930f27e9, 0xed5ab7628ef0ea61, 0x9519308c842e036d, 0x973112361ab5d6c1 } }, { { 0xe45d7c0d0adf9bc2, 0x6b360c1d9305fe52, 0x38dc4d44eb33768a, 0xd853665b4881ee07, 0x9dc8df8ae72f01d4, 0x684a644d4e7d59c8 }, { 0x4e8949c3d41ee68, 0xa666796f31fbf11f, 0xdfdfe5554d205658, 0xe73b274510fc1932, 0x1ccf3ca45432bdf7, 0xbfeeecd213df2f }, { 0xa15d4003984cfe22, 0xde5dc186fe02bff2, 0xf6558c2b89318a37, 0x66ab1c6894cfa7ed, 0x4413eaf5ce0f0d4, 0x8849b4460de37205 } }, { { 0xac9f1304a9b31437, 0x2afa094e91d6a39a, 0xac30ff0c5d827378, 0x7722cb9b88ea1b54, 0x5b2b244381d07a14, 0xde67417b8a647fb4 }, { 0xf9015196b3df3873, 0x5f904c64e95ab855, 0x17ae1b29065dc326, 0xbba43bd1857f5fa4, 0xa20dd213e8f8cc3d, 0xb753e2b14d570ad8 }, { 0x179a01cc45bcc367, 0x4b5ad8f57907c309, 0x619eb0106394cdbc, 0x99de6e23a3e2ccb8, 0x9882b3cb9a60640f, 0xb53295640039e665 } }, { { 0x5ddc65c859588929, 0x32b16a9ae1b5a369, 0x38c1b1fe70366b8a, 0x4399d41b33f34dc5, 0x67e11aba33933dab, 0x2105f9a5fbaa939a }, { 0xe0f9ac54e8b20f5, 0xe4b039c87fa2deb1, 0x44f25ba3f57eea4b, 0x86b842b2015bfbe6, 0x88bf1b56e8c50ad1, 0xa59eb5b56c859d35 }, { 0xa2c31f5d1fa9271d, 0x9d03d6c7004de449, 0x2a08f2bf1afb2296, 0x8e5e8f2fa6fa112e, 0x190a1e6e10989a1a, 0xfbfd43eca20033b7 } }, { { 0x4fe317616e0d9f64, 0xf2699121f6b7868, 0x184ed58178532dd, 0x612df962acbf8952, 0xa9d4539746c3a538, 0x5f1a12e44318f12b }, { 0xffaf596d60c3d51b, 0xfc54b4a04e7e9b77, 0x98d8963f50aed76b, 0x86778ac4d65f25bf, 0x5a04b4d9115c036e, 0x101a912b2b2677ff }, { 0xdaf2f040fe9a4fa5, 0xbca66839a3810e29, 0x552392846aafdc82, 0x623c3b74d468a82c, 0x59f2001df27afbf9, 0x55b7c6c54e409153 } }, { { 0x1df92b78063ca2d5, 0xf8998a1eca504306, 0x8721e315dcaf5866, 0x394860c1b6039779, 0x591b65d81feda03c, 0x8f7242d657ba68f }, { 0xc4aee70d97aea2a1, 0x1c0d314f54de696a, 0x277bd7e5cd2d02f3, 0xe956f3ee2b90e2b6, 0x59372d1b2a16c162, 0x698307642278a0d5 }, { 0xba68844686decf8e, 0xc590e5b1596459e3, 0x6a13e05fbf859354, 0x9ffa8636e9a545da, 0x695dc3fcc007be3c, 0x830411a096f20dec } }, { { 0xc67684f074cbb8c5, 0xfd2551fb8a0285b4, 0xce2fdbd86b47d54d, 0x254f10c8c8216256, 0x2c74f93bb63f827e, 0x18ad406f27118ec7 }, { 0xb65ce9695e1cce32, 0xda09bfaeeab1f98b, 0xb5ccbb08cc464d63, 0x37b02c4d1a56561b, 0xb02f7850bf7780b4, 0xba6fbf049e895a19 }, { 0x948f794c4465dd5e, 0x98ab8c7850ee87ec, 0x591858935b72daa8, 0xbc25f64a1dce32f0, 0xa3092927fee4d1a7, 0x74e125d8810434bd } } }, { { { 0xbea8990d8dbebaa7, 0x6244590d8cae0544, 0xbe1a89b1e658751e, 0xdf127a851cc48390, 0x8a9ae432068122b6, 0xf3ffcc1654d09269 }, { 0xdf1167c07c293d5e, 0xbed6a9f816b1d49c, 0x1f3ea62019a08fc5, 0x9b0bf1717fd220aa, 0x21ef91353a1cb8e, 0x9115dbda94a3b9d5 }, { 0x4f35684682802ce8, 0xc5dd6db5aa5d0a04, 0xa9536f0de5398ba3, 0x20605ca8c0c652da, 0x37d8e36a406a6420, 0x4a6eb1b18bbc08cd } }, { { 0xf89cbc37b18ec3bb, 0x79738a1b24a40c94, 0x44e3a576bd8996d3, 0xe24ad32b663af0f2, 0xc18cab21ebbbd0f5, 0x453bf618495fb0fc }, { 0x9798d8fd7b8c0a8c, 0xde457640bc84f663, 0xea345b57b26f597f, 0x10067a753dcbf704, 0x455c445b6a41b458, 0xc4a815ef39041886 }, { 0x514308fce403b35e, 0x221b2cc73289cae5, 0x1712bbb2c858cec8, 0x3384cedb56fec491, 0x71170ed489e97e70, 0x25eb478b50bc0dcf } }, { { 0xe7b6b6f778832330, 0x562b8437da05ae88, 0x608057ca9608c6d9, 0x43cfb255df968071, 0x3a07d7f56db30637, 0xf22ab422e412abf }, { 0x58b0753a79bcc1b9, 0x2f047540cd2d7bfe, 0xb43c2699f7d920bd, 0x5348c55ed40d2a52, 0xf48788621d06a4b8, 0xf6cd651a3ffde942 }, { 0x6191f4c5788c5b57, 0x9613682d899d3ee8, 0x446f49d543581fb2, 0xede4a6311e052093, 0xf95dde3bade085a0, 0x5d7e25c7365ba477 } }, { { 0xd878e6adb5b4fe1d, 0x1d92e157fb64669f, 0x77787c4dffb3d469, 0x86375252c0934d48, 0x8e4719f1eaf723da, 0x9344f92b6097a2c7 }, { 0xd7e50184f10a63df, 0x61fc1c772b22b8a7, 0x93c43a0e81d58268, 0x1dadfa3ce99ec1b4, 0xecc203fbb3e22fb7, 0x242d8a30ffd5a04f }, { 0x3983b328573658de, 0x45552e1e582748f2, 0x82bb72d3c8321d16, 0x6c9f0e19be18539a, 0xb8a4c314b09aa160, 0x32eb7b4ae2cc61a1 } }, { { 0xc08a2ac0fa0adae0, 0xb4aed594653d8677, 0x4f27ff0f5bc05cdc, 0x4f9c4b15b4d5bf13, 0xf7aee6dca6417589, 0x1165a82d5f0c1243 }, { 0x3d73352c107a838d, 0x430f0b527b508f47, 0x39f77cff03a78db4, 0xa3f068bad5eb9494, 0x67d9a40ff7391d93, 0xe8dd02c4b7f3624 }, { 0x6e09a950fd44fbbf, 0xa142d4f9c97447ae, 0x45655279032277c0, 0x183d85ac32e9e48a, 0xd33cfea6c275e908, 0xdd6908163a0ae7fe } }, { { 0x4cb43cb87a57a48, 0xe616acf9a81b9b15, 0x690a60af509b8805, 0x9a63e04ca7355d55, 0x8e2c716faf11e3fe, 0xb0b6166771b7a657 }, { 0x7f63d1bafa03c6a4, 0x40b5dabc5e2d2248, 0xe40269591a6b55ff, 0x4bf330209a59286b, 0x41a4c34375f4d8a, 0x4245dc8f6edbaf39 }, { 0x3176ec7cf51aabc1, 0x25310187d2555628, 0x70f490a2f4fa5c27, 0xca4f3f1d6624bf99, 0xb55874dc627de5a3, 0x195d2588aefa80af } }, { { 0x40034749c0a1b49b, 0xe4d80b9a4939864, 0x2371f05504e73efd, 0xc1d0aa8e830427d2, 0x2d49264eab0854d3, 0xa13b58ce6abc3fe2 }, { 0xfe589d99960cda43, 0xfbbb0546143e4ee7, 0x8df56455df14df93, 0x6d595e31ed71ae1, 0x665fc04818e88829, 0x86ebc00eff8c59b5 }, { 0x29b5d7e0af877ee7, 0x36183f52564fa178, 0x4ef5b55ce6dfc38e, 0xbf1df836a9819d58, 0x23cdb4d820440d47, 0xb1e4d1b13ed046ae } }, { { 0x23695866d2351386, 0x33815208fa34f704, 0xc560b1d7374ecda5, 0xdbdee7528ee3f2b4, 0x562a33305b79b674, 0x95679ecd9af9858a }, { 0xd37ce3d924561ac8, 0xc2fa25bf4da5af14, 0xd01e13cf7f439652, 0xc73f3ce346216540, 0x481f38a625dfb999, 0xc6a9e4f7ab67eb87 }, { 0xc045842a1980b713, 0x4d51007d30f8d8f9, 0x257af6b2977fc9c6, 0xf983e46c1b3f0851, 0x8ca5368bf34e5be2, 0xb32b313882eccbc2 } }, { { 0xb306569048e0f666, 0xdc5a371b991f5af3, 0x55a5ef22be04d2ee, 0x792d277546c4289c, 0xfcb004822c81754b, 0xb6883cd96c63ac77 }, { 0x44496e5af1f52bdd, 0x2359ccff58059dda, 0xe51d5b44f67e4ef2, 0x8f5733c0798af177, 0x9a62e9a8dfc88269, 0x57cb4b7a4d5b120d }, { 0x3771881f84418e9b, 0x834e7b1e8949ad52, 0x6a0e27df9384ea56, 0x6985375f66ef1028, 0x71cabe01496284f7, 0xba9f566c8a2a5029 } }, { { 0xdc093a326265094d, 0xe57b438917dd34eb, 0x4288a4bc2489d8ab, 0x4ad91525d7ed0072, 0xb956c6f198c9ea0b, 0x56b1a20a18ec150 }, { 0xa0bfa57b9ebb2a84, 0xb7a2c78167886ede, 0x83849f2e15db7d27, 0xe54c35518ecc5bc8, 0x153750c794640208, 0x6224c315f3000212 }, { 0xcc662b585f2ea101, 0xd6e8c2fd3dfb135d, 0xaaff2b1f6c5253ea, 0x2a2c63d41d9e21bd, 0x8f5232333a7b2092, 0x2f10453836313e2e } }, { { 0x944e8b22080e903d, 0x5a0ff61d1afe9ee9, 0xf77a7b6b38062618, 0xf4bf43c02683eb8d, 0x873eb7b3ddb674c0, 0xcc58ed7749b74232 }, { 0xdd738d746b1e27b7, 0x99510d430a2068d8, 0x952dab55c2a5ebbb, 0xeced831719a962e0, 0x7b112cc9ff5ee312, 0xb64970c4a0c28d77 }, { 0xc833d940e1ad93a1, 0xd98526d7f2a2131c, 0x79d2cc9cbf32d0d2, 0x1c6a2ec0abb4ca85, 0xe286c373fa11b948, 0xb3a6c476d3ca544 } }, { { 0xee68a35c2f9623a, 0xd422795016349704, 0x4a41e884f5420e8b, 0x9adc2df019cad9c8, 0x1e6cbd9ac822574, 0x1d246e7a35c48d11 }, { 0xde9aa44094360146, 0x440d477e7ec4fb4b, 0x4d5662253fedbc70, 0x5c0112fe55d12082, 0x52cd8933c7b70d6c, 0xe5797071a4bc346c }, { 0x2059c2fdaf4cd04b, 0x27e913eaf070f968, 0x51fd5ce8c7a5ff04, 0xecca08e84e595b8b, 0xdd30c30507ab3b50, 0x2cb834474b98bb52 } }, { { 0x9c9066b05424d549, 0xbe1d6f7c2b17205a, 0x9d78d38d63a408eb, 0xc83c7027bc77236b, 0x1397a8139c9339b5, 0xaca9b9f8cf913adc }, { 0x377722c43d8e8d54, 0xcac03bfa2e547345, 0x302b8ea11e555ea9, 0x7bb9f03e55efede1, 0x951fd6578ea405b7, 0x1834399df4d7055e }, { 0xbeac1cbeb365c403, 0x763b6e592b6f66ca, 0xf11b84b218056be, 0x1bacf72b1d95610e, 0xfcc614e4cb320313, 0x2b092616a96c7b03 } }, { { 0x48abf521a86ec0b4, 0xca9e2362b23951a8, 0xe3dfe369222d6276, 0x9d9a78e560032db6, 0x85afd36d7f575785, 0x6be622d42b0113c8 }, { 0x9259f4cf7f4f3e9a, 0x892ed2822e97b3a9, 0xa849476d22ca5321, 0xa70c9b3b96aa706a, 0xb1f0080440fdeb1d, 0x1c02e5e573949e6 }, { 0x5dba22c13b3f4dca, 0x2ffe565171b34564, 0x49564c2446a04216, 0xed6aee22e868f84c, 0x6d3eebc1066b3ab4, 0xbe544180b88056b8 } }, { { 0x6ca780c9ecf641a9, 0xfe417eb302e41d16, 0x8076807d64205876, 0xa4a4a3ec05addd5d, 0x6453f608ca8bfce1, 0x631e20405645af90 }, { 0xdf97160ac0d21f4e, 0x237537bd387a11be, 0xf1944f6ed86fa129, 0xfa352d07e23ef134, 0x616bc7e9f2bbc643, 0xd8076529959340bc }, { 0x1d999bb639c4e170, 0x2ffd21585f8c2c29, 0x3342bafd5ad2a82d, 0x6a5823e29f56a789, 0x45ad47dbb17716ca, 0x5a59a37aae9547eb } } }, { { { 0x20df5d7cd151489, 0xf193010157b5f370, 0xd43ead9349632ab1, 0xf6327193b391ce64, 0x1a964516f17649e0, 0xd8c8ae9ada4d7f9b }, { 0xf4380b53ddb6f136, 0x1bbc06eecee5fb7c, 0xabeeec51898450a4, 0x3ed5f92df5527969, 0x58642dcb26b37afb, 0x499bad6bf911484b }, { 0x20a6b9d685ed7e86, 0x1b35531f1c8ef502, 0x74e6d45ca6608a84, 0x3f1e2611a5ad8263, 0x153e01d318763723, 0xcf4284f6b863c7d8 } }, { { 0x5756c2778d958bfe, 0x471b150c2ac06b10, 0xc51d93fc7727a64e, 0xa36b759a0184677d, 0x8a24fb72b1b7a78c, 0xdc0bd58a8de2c468 }, { 0x8627c11d12053bc, 0xa89e32e922817ce8, 0xe046dbe94407cf1b, 0xad39f236857ed35e, 0x458d5f5da4f2892f, 0xc0cf9f9aadb81695 }, { 0xd34097178b19c76f, 0x9326dbd3b6dd96c2, 0xe46186ba59a501cf, 0xa4c5a6e69f0619a3, 0x11d6f84b0f04cecf, 0x89296804b3808a35 } }, { { 0xe6a985a1fdb471dd, 0xba67a05618c3cb57, 0x402cb4492719f5bd, 0x9b3f59818a785666, 0x5cabee2f96832a1b, 0x6822cd007d737cf3 }, { 0x121508b163466f82, 0x8ac18252012eea16, 0x70b8f82e0e02417f, 0x4015e6477da4dcef, 0xfa0641a999cc459e, 0x534abf63d99d6c1a }, { 0x88f8bbcdf3479fb3, 0xf62e712d12f8de39, 0x8d6b2395cc5e156a, 0x2968b66e23d0f9c0, 0x25842228476787cc, 0x899aec00ba2c342a } }, { { 0xcf095834aec9b670, 0x111ef4ff7d044386, 0xce18e15f842e05ab, 0x4234cfb2777acbe2, 0x7add46a253e41bce, 0x5df85eb00d83d1b7 }, { 0x38be48ec7107ca0, 0x37c724a5ad0a4780, 0x7bd98601459315a5, 0x9c511e6bc4e6228e, 0x889f3389ec9fd616, 0x859f42ef128bf18a }, { 0xd00fb4c9e0f5341c, 0x10154b163c560695, 0xef92e40aa707fa0e, 0xb99d4493558e8a58, 0x3d5f65c0f2ba839b, 0xdcc68bce47e56afb } }, { { 0x9dab6b5209d48c8, 0xc1774f040988e6f8, 0x296cc67f5d8881c5, 0xd9f07c4e66114546, 0x1b4943358fd5d10f, 0x409ef2a8ef4d231b }, { 0xdf5c02d64676a4c1, 0x4b25958ea89b4c85, 0x55279605c998e950, 0xf5d5c0f81dcf7240, 0x985dca35af70190d, 0xf4b4e1b1bad3cd35 }, { 0x33556fc479f8670, 0xa8160391ef55c1a3, 0x6b5c34b0bd32303b, 0x337923c5cbfc8dde, 0xd8f81f8e34480650, 0x8c594d4149f94e0 } }, { { 0xfa26aef0cd821db0, 0x4c8fead622bad707, 0x25bd1658904a86a7, 0x9ecf9e041256a019, 0x639138a0717b824b, 0xce9589cd5ae952ca }, { 0x16f8c5d46b841652, 0xb4721621a38f1c3b, 0x6b98f074bad0ebd2, 0xfc2c6f9c59e1f887, 0x9f166c7a3fada404, 0x1fedfec25d31b8f2 }, { 0x8209ce3f9121c31, 0x20aba7b23dfb91ff, 0x512ffb0ebfd345da, 0x653055a461b75526, 0xa19c8d7079c661e4, 0x22b20f84afba2162 } }, { { 0x7f0353e11bb0ad52, 0xb43ac88f17c12bf9, 0x1d4f0eaa088ec4dc, 0x405266b187d73711, 0x98d2583c22e42dec, 0x98f0506d929da8d1 }, { 0x1fe8054de57dcddf, 0xf8a1f9a599bd2568, 0xa8997bc2c2b8465f, 0x86247adf188f252, 0xb11be78f9bc197f, 0xda5cf0509e2e5a97 }, { 0x3f9a829134795164, 0x36196f810d7d0d04, 0x95346a137179ad4c, 0x34a47225d19de9c6, 0xa05c35a6cdf88fdf, 0x93c28e9b32e77349 } }, { { 0xbedaf2f3bb8bdb53, 0x9f059c14977db034, 0x1f0dba751e3b1646, 0x4f3af0ffc7ef92e3, 0xbf35afd41a3f789f, 0x28a166d01cde3b9f }, { 0x66d3d5c1a8e34a7b, 0x24a6aa38f5be730b, 0xa08e9ff70f4b428e, 0x6ad58110b0c20b25, 0xbb5f124db9239427, 0x6d9c624d7ad6b433 }, { 0xb915876353a6fa27, 0xc24de0d273e15882, 0x466c026b54617902, 0x9fa61a2a08b12b6a, 0x212e270840f40a4c, 0x65238eccb08b9bfa } }, { { 0x5cc4f2e797101022, 0x5decb70978031104, 0xbaac8cc32f5ed6b9, 0x9d53332d0a0bb61e, 0x1ceeb85197757b0d, 0xb410175b138d40ca }, { 0xf86192df66b48d0d, 0x66dbe6e804b7882b, 0x2e6c4c7bc45865ce, 0x4fe98e9360b47b63, 0x7d029a9379711688, 0x629d78061462f844 }, { 0x8e6787a391eb583a, 0x98eabbb39944f7a5, 0xb41aa6f4d84a09eb, 0x643dea829af414a6, 0x582ce85b1b24a3b, 0xeaf24674bb94afc6 } }, { { 0xf9b6f40f6bfce93, 0xb48f3158e1792e29, 0x6a0fbdc565037821, 0xdfb81bba4a92dfd7, 0xa617c89836b44813, 0x3b294c5db3fa6e17 }, { 0x78af43b5b2d5e792, 0x80c5c6c190503f3e, 0x2c8e5d30d79aef35, 0xfe0e13765cf5c78a, 0x1f0ee4f4d17b5150, 0xfe2d888829cbc785 }, { 0x4c9d573435663a68, 0xa6aa9fbb5fec7ef6, 0x9e6bef49198e1fde, 0x7aca521fecd879ae, 0xd4a40cffabcee294, 0x62a9f8b9535f1f27 } }, { { 0x14e41de0a502248c, 0xbd1dde9a11990ca5, 0x864350d44997c3eb, 0xd8514f6d6908d98e, 0xc39534586b852b76, 0x666a17287a4ad219 }, { 0xbf3469e74aa43a6f, 0xf96ef8e48266106e, 0xd0afa958c791e16d, 0xf2fb77bec7c81f0b, 0x854cf56c650f49de, 0x8fd155273764299c }, { 0x2ea14751adb52c56, 0x2e566ee665cfd2b0, 0xbbf02887937d2840, 0x8861ebfe7a6f6865, 0xa02e3088b3796fbe, 0x6b59e159ba6fce9e } }, { { 0xd92b7d68f000c736, 0x41553cbe1d0cc323, 0x8f6f06fa97f1281, 0xadddd20eda80ebc3, 0x8915371495b7d096, 0x8ab1a3d63cfd9f76 }, { 0x82c1781a045168db, 0x9ffb9ff1365d05a, 0xa6b5af1f523cbc7b, 0x51ddaf7720276d21, 0xd258285d08c25a7f, 0xa997d28f1e7a5b4d }, { 0x665a55379946d9e5, 0x7e6e4b029866a6ca, 0x6168dbce4f58ff12, 0x967c726657236a71, 0xbf6c36263c25be26, 0xd95c6b8087af8476 } }, { { 0x3edcb6d2914369b5, 0x8dcff4539036ff20, 0xb1bdf90240e6404b, 0x3dbf35090f0ebeca, 0x53786737b076de59, 0x5ef3a9574cd53ac5 }, { 0x3c7c0aa37f44d39b, 0x20c4a51b3c9daf6f, 0x1842bcdd995245bb, 0xb7e37339eb682ec3, 0xdd517da77b9801fa, 0x396bcbe1363d356f }, { 0x4ef5656b1ebbad38, 0x77b109a5f49f0a57, 0x1f4e024a7bde8a39, 0xc1df248f72a81a66, 0x90469cf53d186618, 0x71bdf957b371f26b } }, { { 0xf0ca26923e4c7af5, 0x6963ffd4c75e388f, 0x550c0fa330fb4286, 0x53814c27c22d7a6, 0xac69e042fa649311, 0x1f2a1021bde59fd8 }, { 0xc2a6ae6a6749d8b0, 0xb1b795fb3c41fa00, 0x1493143b4ff62b23, 0xe87815dcdfb29c02, 0xcd86728e50db74ae, 0x4c762372bdcbd957 }, { 0x5c18c98c47c0f73b, 0xd212b8f44ab4a48c, 0xb2943b560ffce080, 0x197cd53590f33b7f, 0x232a868d62f38be5, 0xd43c26dfcc86a530 } }, { { 0xbfbf8a5f50a93f7c, 0x8ffcf3ebfd993492, 0x16c22bb671ddcc76, 0x232526a49232bf20, 0x163f7d35a103846d, 0xa5fa6c4ab610a759 }, { 0x296ecdf34a5e1d01, 0xf85f13f10ee986c3, 0x722fda58af9fd960, 0x344bd119e6028a71, 0xa695cf823061a619, 0x6cbed662c2f4b7b3 }, { 0x3d1be275af83244f, 0xae5ed0148abb4669, 0x821a21d4b3907a82, 0x5eb1b53a5d63d25f, 0xa9d4aa3a036ca975, 0x7a9999b4d3681cb6 } } }, { { { 0x62e42dafa35d7eb8, 0xd88f27d17d840c2a, 0xbc0c3227bd23a5fa, 0x5e843132cc5f2f14, 0x4e82c68bf9279fba, 0x9bb25dae50144199 }, { 0xed7aefffb6933c55, 0x43236c9bae0086ef, 0x154191bce700abe5, 0xfaf4cc5938ff07f4, 0xcb450e1160682ecf, 0xa71b965ee334a24a }, { 0xb949dec3ba8dbfcf, 0x9ebcdc7173f1635a, 0xfd94c1339513e3c0, 0x76f4becd444feaf0, 0xa4a1fc1737c3b09, 0x66a0f9289b8eb856 } }, { { 0x84c2968a69cc5deb, 0xbe1abc3d673638d3, 0x15ba4f80fdd37f19, 0x12b5f8fe50e46a99, 0xf65e4a9379f8fc11, 0x91c15a2acf490a72 }, { 0xd6be2ae152801629, 0xb43e1002fe640fae, 0xbe778b2d0f123f2b, 0x9baba6ad4217d1e0, 0xcbeecf05786cfa5e, 0xe07b679afacd7bcf }, { 0x712962bc1d1b2482, 0x843deab9225cfc2e, 0x7b033ccf32ebf88d, 0xd88fe574a51abd11, 0xe7a1cc02346bb87f, 0xafb60a7f31cf0cd1 } }, { { 0x6e7a875892bc8c9a, 0xfe794817838a9934, 0x749a77bd3776798b, 0xb99cd48188c4ad9f, 0x6d512fab44179c78, 0xdb4ba4f6009c9a }, { 0xdfc58e342aff997c, 0xcf981f24b30747dc, 0xdb26ca78559aa141, 0x53b9f71c2a87772e, 0x751afe60fa5fab95, 0x2ff2858dedd4d4cd }, { 0x96246c177eb5e122, 0x528781ae184508e5, 0x19f8d257931009e7, 0xa5df2793534c48c, 0x815a81b52b8437b2, 0xd999189b30f378cf } }, { { 0x7b6b63a43dc7f472, 0xdbab47e5af00962a, 0xa8054f59d5073158, 0x5fb6dc39572cb74, 0x9f9256a004708534, 0x266e44fcc89a5f85 }, { 0xca9b1fb6a3d3f5be, 0xef2203209c4ef63c, 0xfaba27c223980954, 0xb11af45f84ffd713, 0x7ad91e69fd1afea8, 0x79b613fa9b4dcb37 }, { 0x3c72040a5caad8fb, 0xb02215e73d9745ca, 0x6155dc9c3aac81de, 0xf2b558f0afde2da1, 0x33e38ac5b57bdf3d, 0x529fa85fed152c55 } }, { { 0x9e4a19455c7f1594, 0xeb7f028831f7c71, 0x44995c457af202ea, 0x8df6ad7445b2d44d, 0xd50a36507da584d, 0x68da8a96525275e7 }, { 0x460aba418ff9e974, 0xd969fc6359a3bc83, 0x196ec12f831a3667, 0xf1ca48e387c321ea, 0x1a052de02f9d0261, 0xc432c6ee8434a566 }, { 0x1ed3c57f28d2bbf0, 0xa38fdeae3e463c0, 0xb37933934c506ec, 0x76691f40b1bcf744, 0x4f532781ed207ddc, 0x7adaa52641c2343a } }, { { 0x874af09edf951e8b, 0xa1e15e94a79132ea, 0xbaa08d21f435d83b, 0x998398723de2ada2, 0x7de422ad1439c378, 0xa0718ba62d3e7499 }, { 0x2a1969d874c9756, 0xde9bffdb978695f1, 0xa49c5d8978c2df78, 0x41f453e72007a02c, 0x665b34a8c609926b, 0x2a18db4d95fc904b }, { 0x6a3250a78f98e2d1, 0x81ea6b9bbe080730, 0xed1d1849e5259e6e, 0xf0f8b0af928b321f, 0x7ee92069dc180da8, 0xb8cebcbf9bec80af } }, { { 0x224514ffb111f981, 0x73cb65ac52418f90, 0xe300d9d935a0d8fb, 0x1d2ed5c21d0f9aa, 0x93cb20c66d71ca03, 0xc90a8cf0837189d0 }, { 0xa1050625336d2d3e, 0x9b792fac3880b573, 0x537fc70eba41aa4b, 0x2879fddb7c7fc306, 0x44edd0c257843371, 0xc6eb551f69981ba4 }, { 0x96252a70072dfcd, 0x59bb87cd8ed62a52, 0xdd9ab435f06d9bf8, 0x2c76030f5337e174, 0x60d6726f0784505d, 0xc44eab18b8c25d86 } }, { { 0x4cd70e5a7a9ad861, 0xca0ef5fb87f3617e, 0x10208befd507344e, 0x4e156b3b62628e45, 0x69d649d16bb003ab, 0x86d2c054fa7291e2 }, { 0x418645500d502eb0, 0xdcb3fa573eab950b, 0x13d460fee52ea68d, 0xb4f0c515d3842c28, 0xe096ddecad1b5f7d, 0xc9d16018cd3fdd22 }, { 0xffa42201a6718a13, 0xabe88d87db8db803, 0x3ae5b067fd8897e3, 0x160b7c3d7cf61ed1, 0x4ed98096612301b, 0xaaad2b5ce50e4688 } }, { { 0xe7e527147ac457b8, 0x5828a23265cf8ed4, 0xdc13c28295f96f60, 0xfe2aa94cbc6458a2, 0x4bc3fa6a48a7313c, 0x328fef52b90e0ff1 }, { 0xf1ba49435d3c25ae, 0x203a918ab2c4d2d5, 0xaf767a1d5261f041, 0xa3911eb61d62f255, 0x7fad514fd725f221, 0x4369471d357bdfa5 }, { 0x9e1e9481ba1b0661, 0xd28614d352c6f2f0, 0x48593d1c11c26a01, 0x351cf51717dadb92, 0x243724e750d2684b, 0x1d0c56e4b66a1f8c } }, { { 0xff796897174159f2, 0xfe9bbf168f89ae83, 0x68bfc1f3c71d1d54, 0x77519fbd109119e3, 0xb870b686947a5df, 0x6343e0a0ea2c7285 }, { 0x9099da39af0b281e, 0xbbb7f76dc59a1421, 0x2118ac9d43682928, 0x683f0fec38b9f136, 0xf0ffc7d52a7cd06e, 0x73ce7003b90f8398 }, { 0xf53b7f975eeecece, 0x6a8d31ed8618de2b, 0xc1fb940d9d3a8076, 0x194d513dc8b21461, 0xd1064d211d10323d, 0x702d6860b3a78375 } }, { { 0xb1427e7322d79ed7, 0xf7c59fdc3c87b626, 0x5214c77920748ed2, 0x58e96b50b103fd44, 0xf385f3192a43588d, 0x3b80934cc0139502 }, { 0xf94eb70567d2eb1e, 0x873ffef8413d6027, 0x4e3ff40ac43a848d, 0xa3bbd0763fa87c5d, 0x14b8680ba1cf6fe, 0xccf1b579c441a59d }, { 0x4c159700a7d2762b, 0x163dc87adacac6d, 0x5a46e563995cc91c, 0x4b3b13db24940e77, 0xef601df71696af12, 0x45ce049cda272833 } }, { { 0x416887be4be5d1b9, 0x711ed5eeb0b35a5b, 0x57677511fb7a6eca, 0x5534179e1a3c740a, 0x6f15f6c743e3f6b, 0xbede080f2e9eca26 }, { 0xe4197c0539a30e09, 0xfc377cd1d1bde64c, 0x2b6ac915521daa46, 0xdc8a7f1ef0617e11, 0x831c5804ede18b97, 0x445da586601aa317 }, { 0xb97202297f08c521, 0xa52008bcbbefbede, 0xbb903dde5582712f, 0x3b25153c5f60db0, 0x21768590368ca34b, 0x2d51d2808c11b28a } }, { { 0x5a66b309fb70db30, 0x9fa6b968898f77a2, 0x2bbfb76169b34602, 0x4f48a77b34ed97b2, 0x9c76add7efb75b7e, 0x97851e2953d0bca2 }, { 0x1f62be4e69e5627c, 0x67466d2aaa4a693, 0x7b9bc857f51b0e7c, 0xaf39dce1beda0d4c, 0x44cb762f8ab9d5d7, 0xafac07ae2d9c9082 }, { 0x276d47d1f856113b, 0xe3d10ef5aff8798a, 0x8a9bdb033aa9d438, 0xd18a4611b54baafc, 0x7aaea8c7e585eb74, 0xd0ceb6bf4ddc1991 } }, { { 0xa02f9202b47c21b6, 0x5956f5da2134790e, 0xb7aea7f7b17c8e3f, 0x2926cea10f3ebaa1, 0xbe5912682ee818d7, 0x81119cc8ece4c96a }, { 0x980ecdc3ea1707e0, 0x7621c46558bd0dfb, 0x6421c8017d325419, 0xd3ef062ae25ad66f, 0x19ae71df76e1e8c8, 0xd6103d5b9100c4ff }, { 0x4e3c6d49d24322a9, 0x3e9af4164fa2d97f, 0x8e231a5ad467670a, 0xc6d3c15bdc3d98b3, 0x1647a568db928854, 0xb38876a6e82c06ac } }, { { 0x5131ff9fe332e4d2, 0x6962e6f5f795852e, 0xe394408af00775fa, 0xecc127c31cf5a42f, 0x339b1e1c80a25da9, 0x57ecd7d976a9b099 }, { 0x398b21dbf3ff07c7, 0xeafdf5a289b156e7, 0x759bdbd285d5c822, 0x78f4abf97c31206b, 0x47795cdb0a2db59, 0x4b74728811d92fe2 }, { 0x335132c6f464a265, 0x499a3e25bc47d3aa, 0x4a227769033c96e3, 0xce9c31b339b2841c, 0xcd5e2e4dcc38104, 0x487b65ce93dea1c1 } } }, { { { 0x8f19a332f254dab6, 0xa4d894c89bffe9ce, 0xb7d7bb79283aefd4, 0x3c5441f7b9eb8dbd, 0xbdb521932fe811dc, 0xab001178fbc09ecd }, { 0x48efba80f1e0b5da, 0x1c7c1f0b8a14a5e, 0x7956ab221b247aa3, 0x5d71d3cf041cd706, 0xab8b0ff86c4b0328, 0xd724b5677c4a4f3d }, { 0x69152d02670799ef, 0xcd17900ebc531ce1, 0xa449a7e2ed6667a6, 0x6bcfe8781a4e2206, 0x2e8f0d080ef10fcc, 0x296271c1dfbc23b5 } }, { { 0xe4635cd1cedaf563, 0x3335aca93ac18bd, 0x52963bfc64ad3412, 0x506e1c4aad14fcf1, 0xe1afb200f1b682a4, 0x854b888a7416ec35 }, { 0xd0a65e4a54c5c361, 0xf3b96510d4249356, 0x6c779cc2a866f34a, 0x3198a9cb2aba5c5c, 0xee6fa3942f775f02, 0x778ea797ec6e9815 }, { 0x6d56ba754464f5c8, 0x6e584c56347ec587, 0x5d82bbb99264c408, 0x51ca90529e245680, 0x63376c7c29e4d09b, 0x2bd05bc51c9939d3 } }, { { 0x625b60e6f79f5a76, 0xc2faaae227f10d9b, 0x31a3ff384b59719c, 0x8393d2c382f427a, 0xc2bd397aea818cba, 0xbbbe91a910f4a88f }, { 0xec2fa11427515361, 0xb6f92595688979cc, 0x8e11429353c0f90d, 0x2874c3e87f0ea550, 0xe06ba1127346b4f1, 0x8566cbc4b47f8ba8 }, { 0x48bbb05e94130ff, 0x9fefea54d25962f, 0x5ec165b529e19913, 0x28f676dcb1484a37, 0x85c7fa489ababebe, 0xc2fdf469794e7bf4 } }, { { 0xfc4101e682c8d156, 0x160012e2f845c54, 0x6b0436182d3622ad, 0xab610d83585336c2, 0xf0c2c1e49c07bab0, 0x1c2d1706e31f93ab }, { 0xc3f69be7ce48da28, 0x7cce49985eefe92a, 0x4b9489897a7c4c00, 0xb2012ff2e617dbde, 0x58a700ed55d4ea81, 0xd3c9aae16d16e1be }, { 0x88c57bb0575f0777, 0xf995eb4ad21aa5b4, 0x5eb5c77778c11e53, 0x88bc84e1f3ccbca7, 0x6e01416ebe636d1b, 0xfd0382827f0eddb8 } }, { { 0x31c6e6cdead3c0e2, 0x6c05a2596052def9, 0x986d85e893a1df13, 0xd1f92b5ee455ff41, 0xfdafe08f0547f892, 0xa02553021d4c6a87 }, { 0x17b8fa8d53363288, 0x2d526d7e24e5f0d6, 0x394e992c11e7330f, 0x3925443375c1178d, 0x394f26985e87435a, 0xc1a2dc455a552a8e }, { 0xbe5f610469246aea, 0xb28d8915c0982170, 0x4bbffed8e0eead38, 0x41b96d03faf4b03b, 0xd5ad4128a8cdb0af, 0xb3e2a0e4fe9c2785 } }, { { 0x40e837cd69c872cc, 0x7b0f6b7ced991547, 0xe946324e6fedcd3d, 0xec57c33ad0ffed7, 0xe52058f2930cbb38, 0x7f9f4433bdfff18f }, { 0x7627ec22b754d997, 0x3abe63282a0490f3, 0x2f6a2a42f3592fa5, 0x3bf6bfb0eb519dd9, 0x56d79d804d02bf73, 0xff80a32e969a56e }, { 0xbe0f20d126c57ba5, 0x9a3edfb21b58c7d5, 0x4cc751cdfd6bc856, 0xa8f2108bc8c4f44, 0xe5b9c5e0a1b6ed35, 0xeafec2c1da145ca2 } }, { { 0xab856bb3e662cbe5, 0x3b7aa1aef52b4a8, 0x1a80fb80eee4f7ca, 0xda6518c107eec81b, 0x8e7cbf2f1af9f037, 0x732ea774be7e7308 }, { 0xb4df5ecf45ae55fe, 0x52b7a9108e736b30, 0x78f7d58604475bf4, 0xfd4950d76e05c067, 0xcd7786a46d4e76ec, 0x2886ced66d686267 }, { 0x3a878aacc92256b0, 0x2333375312cc41e8, 0xd92f1130c6edbd5e, 0xef98766698499d7e, 0xcb0b7943a131f2bf, 0x59645d3f1cabc82a } }, { { 0xdfa0da0e38345786, 0x32fde18a2adf402e, 0xaf50e01af5fb9e6b, 0xa921e5496df55f55, 0xb7c9f2618d00fcce, 0xf49e1010938fe286 }, { 0x6d0a5d778e478c71, 0x541776194f8e4f26, 0xf8dc1a9a81be67e4, 0x7e90be4713edd850, 0x9e4a3b9f2ccc753d, 0xb7d7bfac47b50b17 }, { 0x19dad4ca93dc77bb, 0x74d3455359d6364, 0x1e116af9d7527ec, 0x3a6addd45499a7ea, 0x8ac2c44fe06bb967, 0x67589ca11a20a01 } }, { { 0x7eb8e2c23764e4fa, 0xf34ca8c38d216c6a, 0x5e7ffcf1b62d7278, 0xaab3332a15332450, 0xe40835d242418fbd, 0xaca168b5b49ee263 }, { 0x1db8d5b49143f7bf, 0x83bc4c534cd5dcf4, 0x3adb73448fb26ce3, 0x358eea0f144f8d7a, 0x2a3bf452b46c5855, 0x6dcd06bfac0848f2 }, { 0x9e572fa32a143a00, 0xe8c3cc1cfad0ae20, 0x42425157e2f45b1d, 0x16bdf1db5355479f, 0x4915d2f9bf5ce843, 0xfdd123093ae1d22e } }, { { 0x5ee52429e1416350, 0xf372374530412c48, 0x68e441e7f14c9c53, 0x7c679400a2e6725, 0x2139cfac15a0f600, 0x4b5e9d05c410bc1b }, { 0x48030062031ce537, 0xc222f4227ea48649, 0xcaa7a92ce9f58d5d, 0x2d5efe0268b0751e, 0xe9bfce0c34d09051, 0xe8c81d41a0148d4d }, { 0xa31137a814ffe79b, 0xfea4cace9bed621c, 0xefb1ebcbbb5cd505, 0x1b76ee389fa38746, 0x3d4a98d3c51e6db, 0xc0d8a0efca153ec } }, { { 0xe5fd320fb0eba938, 0x796047c81209acf2, 0x9cd89eefeac82da0, 0xa4e385e525949e6e, 0x948e1d0baf2af31d, 0xf60c9ea6b562a4a8 }, { 0xac0cffeade0b0d73, 0x942d1fae582972aa, 0xfebc1f70de137522, 0xf7a01ebcbc790187, 0x8aa5254066cc395f, 0x4fac1194da350d49 }, { 0xc41e62dcf125d4e2, 0xe2f973291e91e285, 0x4340133cd93c9e95, 0x4646a0655eeeaa57, 0xabfdb73a97c553a, 0x12e6fe906dd68a15 } }, { { 0xcd1385770a50dcf1, 0x4a7232ca9a20195e, 0x7ba57b36467df1a, 0x6ddc6657db035d5, 0x6d27c91607f429dc, 0xfc191d5e662a253 }, { 0x67dfed95de783fc7, 0x1aea61ec543e4039, 0x9e42663255200410, 0x55f1a94cac3dcdd9, 0xec3be546368ed041, 0x9cb115f48e3a1d47 }, { 0x4d5f3b28fa61ec07, 0x7f4fb9379c627f5, 0x1be2dcd7966866dc, 0x5828b58f35b677a2, 0xaa79439fb55649c3, 0xc94b074db073884e } }, { { 0x3d4bd22c96330d94, 0x67ff537e40522b4, 0xbd60ab8189080f2d, 0xf1d9a73582aad705, 0x42f800aa36278f2b, 0xef9f56921d1b41c4 }, { 0x621c8f7f026a377b, 0xd946c456e0be4b, 0xc3362babc1d366e3, 0x7b6422efe52fec28, 0xfa8a0e36ce6bcc7, 0xabad5b5d59723b31 }, { 0xc2df31b96ec63e8, 0x258dd55cf52b3bef, 0x19e5ac1b5503f3c8, 0x4c09d528c9a61097, 0xeda6266971391c4, 0x6fdb35956afbc30a } }, { { 0x523b298bd7075bf, 0x8f8fe7e1613c2c92, 0x1fa18f3fbc2135e1, 0xf469125232b931b9, 0xa0524483f44bf8c9, 0x99c5f23dbe93818b }, { 0xcfe4bd2517565f6c, 0xf7ad7e1d05952c99, 0xbe62627c18d4a055, 0x4307a97de91d83eb, 0xddf9285c3ecf5ba4, 0xb9e633e60a6fa820 }, { 0xae3c2e4c200df16a, 0x5ae712c54885a207, 0x18a151b5758ac95c, 0x45a79273df2276a6, 0x203f8df55db8fa59, 0x10a888eefda6b3ec } }, { { 0x432611d3ebe56909, 0x21c7c5c5e10bc53c, 0x655c03fa8c798075, 0x91013ab3ea428e54, 0xee0c98a3a17daeeb, 0x71d2de5e19d686c7 }, { 0x9d45212b41088626, 0xb78353f42bba04c3, 0x67df2213217bbee8, 0x280d751652bc5ce6, 0xbe1ad4d8f410471d, 0xcd1117a2b2838251 }, { 0x3c36ccc81409076b, 0x92443a480b734ab9, 0x85c290def7401749, 0x1f335db6df2d5b2c, 0x46743609de17565a, 0x7b8849427eb77f09 } } }, { { { 0x41a111e82a529049, 0x20402b851636d1a, 0xb3c27933da7dfbc5, 0x11ebac168b2f939c, 0x7bdd385160402b08, 0x7fbb3ea06c98cd4f }, { 0xc8beea369684dc6a, 0xdd4060b3e3d41634, 0x657299e10805f1fe, 0x9054bd0c2d335718, 0xe312805113e35d9e, 0xd60b43ca9be5aeb9 }, { 0xfbf514551244b44c, 0x4b4404df97d92053, 0x88ed20ef6ebdf0be, 0xc29fbdca6b8e130a, 0xfa492a52934af3e, 0x1ea0453c817ceb76 } }, { { 0xb7230590843579c0, 0xcf0b97c661c37b40, 0x1a2f4d8c0a2673a0, 0x4c0aaa6591174c42, 0xf63e64aa1f13b418, 0xc9f16e5fa8338b82 }, { 0xe14aae6e005765e7, 0x960dc5c1c849a3ef, 0xaca82faa5a25620b, 0x13e1499d51a00493, 0x958a3f3397e2b335, 0xfda5580720e44dd4 }, { 0x33f447447b6c814b, 0x8ac71f85edb46e0f, 0xc73e88aceeb0dcc0, 0x73fac6c9e708c338, 0x47e32d6828e8d0a2, 0xbc625c1a94c24cb1 } }, { { 0x2a5036dbaeccbc2f, 0xa4cd41b99e335bd2, 0xe1bdf5e7f151654a, 0xc51540d8d2af0f96, 0x4440637ad271588d, 0x9756b0fc312b501c }, { 0x30f1478128e6a6a7, 0x48e608c871941bd3, 0x57d12fc15dcb883, 0xa97cc84c8810bbda, 0xb3c90424c9b01bbb, 0x20f8329a6549c3f2 }, { 0x6c25fc151b4ba2cb, 0xae81ec3b247d876f, 0x340fd05d7e6b54b3, 0xdbce7da048afdbe0, 0xb579502746ee54e4, 0x30f90b440f83a6a7 } }, { { 0xc881719f9515d79b, 0x8e8931b42ec97e01, 0xc239c72abc94e5c1, 0x867d9375cac1422f, 0xedf77274fd84b8ad, 0x25e644070fb66e2d }, { 0x998aa61677720a3a, 0x63513fa12de80ceb, 0x87c86aa679473465, 0x57815563f3139e6a, 0x70ccb156c59500d1, 0xcbd3eafab04eef8a }, { 0x3bd415d9c28bbb5, 0x91bcdd99d0b3c100, 0x899a2f6ba4921ba4, 0x8a4eeb4a6af40a25, 0xec32b30334392ef7, 0xabfc879ac061ae93 } }, { { 0xfeebb1e9e57b9ab1, 0xb2a76923913a1366, 0x10ee7f053e65a19, 0xd2d493c91dc23c43, 0x58354b2822110509, 0x8c07543c031bdfd8 }, { 0xe28f7c51519fdd1f, 0x16e6e159be9070c7, 0xda64730dd46c858a, 0x467cce63108254c7, 0x9255aeace94b277f, 0x430ec7a51942beff }, { 0x56a0e4aff37e9ef2, 0x96b0a20e50bffa88, 0x7fa531e16945dfb5, 0xf811a4c8cd352718, 0x51c931d34fdda794, 0x702aa874680d70b2 } }, { { 0x7f6d4a6bba9e217f, 0x63b8e3999982ea07, 0x364561c7b26c23c7, 0xc1533dd9cd05e717, 0xe5cba08abcf5895e, 0x720d81d9a0841746 }, { 0x9c660f588eed27e4, 0xa833db0d361a152b, 0x34be5810e40725d, 0xd3058c8846fff2a1, 0x41f12e4c8a390799, 0xcdb1bc481c76144c }, { 0xc6b007879eed7c3, 0xdbb625b6a4ce9900, 0xc849925fa4068f4e, 0xa2cc2920a754b893, 0xeddcbed1d1eb2ccc, 0xf84dc66e8c993e1c } }, { { 0x5fe7e1e41b73fec5, 0xd61887bf644c74da, 0xe6bad797c31fd5ac, 0x7bded363c2da9025, 0x5103cf9b5921a9b, 0x2115a31ccd76b5b6 }, { 0xe6a0d57a770e43fb, 0x14e5d410db4c7d41, 0xf7040e832d1ec080, 0x77fad3675bdf9058, 0xaaef655a373e9fcc, 0x2820644eacc96981 }, { 0xbc7014ceca5813f7, 0xd263b5ce3ba4feaf, 0xacc63a16bf8c1d52, 0xa8dd8aaa3a230ebb, 0xd737ea86a046b36f, 0x274912232ba5a513 } }, { { 0x95b1bac681dc13bc, 0x574e00d8285887ed, 0x932987e5deca1914, 0x1fba9cd537591d90, 0x6084023ee87efab1, 0xd2f2642bbf6a906c }, { 0xf1ba358dca8ea3d7, 0x2aeeb7db5e1cebb0, 0xf43dc62b3a973210, 0x52b13ba3dc15381f, 0x6ce7582b810e28d5, 0xc28ba66dec72c8e1 }, { 0x2b54b6788d517c0c, 0xf4f34dbeba37a4e8, 0x6611cbdf3f22483e, 0x7eb140084a4a9679, 0x5bd27b956c6015d3, 0x6da557c2d86b06cc } }, { { 0xe8aea242f0377948, 0x75b9a67ba2f66606, 0x918ea27039e69f32, 0xb6f42481718095b0, 0x814438274e530a8c, 0xe54b0a7f15b2706a }, { 0xc897cb5ca3a738a2, 0xe50d6d378636dc15, 0x5519058b441ee6f, 0xb0d71fdc19758fc5, 0xf85c4db95091a653, 0xe725fc834ba52fa8 }, { 0x6c643af7d311f0f0, 0xa389267973b2b97c, 0x58a6dc74216f1cb0, 0x2fe4252d3f7e5aa3, 0x7483182225ae186c, 0x4a48667ad7749e41 } }, { { 0x7256650b997a04cc, 0xa6c5404925338950, 0xf5f73334716b724d, 0x4f6f36ebb4e852a0, 0x4ee82fb6686884e1, 0x56e18f709e1b87b5 }, { 0x4efa4ae28d84003a, 0xe05c286e4dc41058, 0x9938cbed5ae6d048, 0x3ebd07809edcd61f, 0xc3ab006b1f75bf50, 0xb0a40935414d4afd }, { 0x774080ca8ebfad3c, 0xf41ff65dd74d42a8, 0xd9a622cd2f960795, 0x18a92d05a1c066f7, 0xdc5d11ca03eaee2c, 0xda34b8852df4463d } }, { { 0x8815b64a015b1b30, 0x1e91969789fd2f9f, 0x59170bcf03893757, 0x515e6acc3a284060, 0x27eb91d2e2d4f64a, 0x3b877d0e8730a9ef }, { 0x366dc92a80e4f283, 0xa44147303af80dab, 0xed24ab7f3748a981, 0x1fb07486d7d01a8c, 0x2d49f7dfe6fbb1b, 0x82c18ee2c3c3fab2 }, { 0x67c40aea8d4a255f, 0x7caee657e155af80, 0xa7860f0f17cf291c, 0xba9f77dacac435d0, 0x1772d9b1085c54db, 0x90d4c5fce1e93b22 } }, { { 0x32ec7e7277558f4, 0xa14180eb736051bf, 0xf115c4610361a176, 0xfd395a6e0f59f16c, 0xb3865dc3f8a3f308, 0x4c387db328f112e }, { 0x46be7d79c5ba13b0, 0x242f20b6870ab3b0, 0x340362910f1822d9, 0xf6fa9611d7008cd5, 0xc387a2e44245845f, 0xc82dbf700c6ed108 }, { 0x9fca3a9f87ffdd5b, 0x66423d2b343cf47a, 0x6898344d28a1d5a7, 0x903e86ccea386737, 0x9341482e2376a09c, 0x7adac0a0056a206e } }, { { 0x4390062c156c349d, 0xf7ee581e12e37164, 0x8c286e95f93d29fc, 0x4ada9b5919d40ee9, 0x8c4efdb20b9ac1d3, 0x5f8fb521f6f13d6e }, { 0x3c18111017be18a0, 0xbb1b85159c0ddef, 0xfe428a9d4d2b53ea, 0x970df2cedc84a933, 0x34fabb62b010dd5c, 0xbc355c906cc9eb12 }, { 0x14f86e11acbcdb1c, 0x479ef2b2e719ee32, 0xc0cf46ad53bcd7f4, 0xa75d900b20ab73be, 0x822bfb4fbdb9781, 0x592f2d7589bbd3f6 } }, { { 0x79238d5fde4a6b52, 0x7ca3a7e1823fd358, 0xfaf9652a5e06c4ae, 0x174411d6ad3e0c79, 0xcdd54ff693c2532f, 0x65eb1f2ef7d6a245 }, { 0x52459052a7875e4d, 0xd8d25d9686eec0db, 0xac8bfbfd30cc4302, 0x2c708d3c6a61ae01, 0x4ef571cfd6722db1, 0x89a1944ab7db9b47 }, { 0xf5f22ad8b67649a8, 0xefd4eda34a18c58a, 0x19b331868d82c3a3, 0x59c2d43e4c353712, 0xf26e05cb8b90f39a, 0x112d927f7980c9a8 } }, { { 0x9483c9b57232da85, 0xdcbff30fa5f4ada1, 0x8d339d79d9c283ea, 0x70f4c83fdbda86bd, 0xcbf8d0fae9c64693, 0xfd792e1b2e232be8 }, { 0x7ae56b07fca39d8d, 0xf3a1ba3c079cd5dc, 0x8447c7efd3e94f5c, 0x6ff189e654911d25, 0xfe884335bb6f51af, 0x7ca936aa03c2d5ea }, { 0x1d2ec8544fa9e478, 0xdd3f2a310a0a14eb, 0xbdc81710c3de97e3, 0xbedd8c593fa8c48e, 0xac20622b5271a84a, 0x79223b1b3ceea1cf } } }, { { { 0x316714d479df601a, 0x4327ed8ba14c22c, 0x4139169bee199886, 0x3898fa4fafb105a7, 0x57191c18d619e862, 0x67f3a0f3f712df66 }, { 0x3288fe21b68b3867, 0xd79a79d80f5abb9b, 0x1f3ff1106e34d64a, 0x27115452b7242519, 0x26a2b9aaf34658e4, 0x5b9a98f77e9123d }, { 0x1b4cd492583dd4bf, 0xceffe906c2b7c5ed, 0x2600836c5d88215e, 0x7e9ca0ded2822e39, 0x9f0a2f905f026469, 0xe2a51128b12234d3 } }, { { 0x4ff2b2502107051b, 0x8365e5aea173ab6b, 0x39be69a101ee2bfe, 0xc391f1b2c6114c48, 0x79f3497bbb2ff0bb, 0x465eca26012c32e0 }, { 0xbb04d271f03a6172, 0x6646704bc7c6393a, 0xd78da5da3ec5395, 0x4bb9ee5bba78903c, 0x872e5e2dddf6eab0, 0x94b739c7edb611b0 }, { 0xbeadac2a0c2f7290, 0xa56922c86a26d5da, 0x6429cddccbb0b00b, 0x8e7f625c3297f5b, 0x64c7033b6d45ea17, 0x880df58bbdf26f23 } }, { { 0x283325b5d6f06a04, 0xa0a53709d0222c2d, 0xe6ac73b4ed63dd00, 0xb8c67e8765ab87bc, 0x9b28bde5a37b2f3c, 0x5bd54c6c23c85b36 }, { 0x93d633dd26d6bf5d, 0xccf81d24646635f5, 0x817aed49a7cba11c, 0xccbe3e9d5e0e3353, 0x659287240e02ddf0, 0xd2e7e0b531bd4ce7 }, { 0x637edd52426adf70, 0x4308fa43450a457d, 0xc14e88f50b4c3d0, 0xff2d8f13bdb2f916, 0x9fb3371352d5955e, 0x3292cd71b68757a3 } }, { { 0xec970e07aa4b8b91, 0xa0a71fd6fd371521, 0xe8163a2d1722c918, 0xa42ba5b772decd0, 0x7eced9d3fb40a746, 0x1339ec88d83e1757 }, { 0xc00f4a78f188f622, 0x5d1270733dcf7655, 0x127ea8cfebbef0a, 0x48ac84a6d8c659b4, 0xb9922690ce9eb308, 0x7b77fa61d2273806 }, { 0x183f5c69b425815a, 0xe93391312d28b07f, 0xa95d372a25b2c39, 0x4899b303a935b8e5, 0x6bc4375279a3dc36, 0xd6bb151d22bbf50a } }, { { 0x52c44f90a1d2cf3c, 0x7f3b7f8193a6d4d3, 0x7851ceeeb92f7cd7, 0x805920a3ccaa987c, 0x417a0fa3144eec4f, 0xb41cdd6bf18809f4 }, { 0x52a2326af2eaa072, 0x34858f34eb30034, 0x4cffb249abbba7af, 0x294b0111c214567c, 0x8eafa00ccd146b0c, 0x3b9f789d73876184 }, { 0x4c1fd5d7b8ae79c, 0x1dadf5442ab28293, 0x786000caa926ab44, 0x1066d906a9df71cc, 0xd676efccb6120504, 0x7cf8ebf2627636de } }, { { 0xd00932bba963e23d, 0xb6730616f0986d08, 0x4614243ad46b29a5, 0x61b5462f29836da9, 0x9303ddb11c39bf4, 0x1db379bb521a4179 }, { 0x8eb2ec2eaa728e9a, 0x931406f4803616f5, 0xe91a0873eafc4c5f, 0x9fd54e4748bd370d, 0x119f1f774275645f, 0x26caf12decfeb8ab }, { 0x5ef8b09c09bc98f6, 0xef78d563810fb5c5, 0xcfa761587e35dbe2, 0x726011a658b81446, 0x39df2a1365c58771, 0x378989763845c80c } }, { { 0x4f7c65fb611ae043, 0x69754a7cf4b24ca5, 0x4cd90ce1a14ee4be, 0xec737a25c773f9e8, 0xdfd2c1de3e4b8197, 0x604e896ef76b7c79 }, { 0xc734b8ca7056fa7c, 0xf4bed3b6395f0535, 0x39322b9ff17f2e1c, 0xcc23c100eab0d1b8, 0xdfa1949b63b23f43, 0x323f82d2ed97602 }, { 0x5bcc3d0e0d48f062, 0x19e1e7df6564cee, 0x71f89e8b0ffbf7c3, 0xf2b86f05adce2e50, 0xa96ae978481dc18, 0x710674d501a97fe8 } }, { { 0x47b8226cf47e9444, 0xa6066e15459bc7a, 0xc3cfdcd5f50c7ab3, 0x9c344b0ee6020532, 0xb8f00a8a113b47e0, 0x7fb2bea8ddf76e30 }, { 0x78ddf4f954003066, 0x65e35455477719c1, 0x16ba087b5eb022e1, 0xbb153d8df8639255, 0x333d4736f167088c, 0x37af359b35d7fbd0 }, { 0x59d75c82be6b4a04, 0x81bf5b8076875c9c, 0x94853dadeced9747, 0x7f530444c6764425, 0x5feb2a0a4cf70126, 0xb9734c2ae0a64c47 } }, { { 0xa12f7c244a7f9809, 0x762d45f8fe5c8c77, 0xf81a29b85f5a5031, 0x1bf12ed7cd274703, 0x4f89fdd8df48abd5, 0xff7a6cf487ec13d1 }, { 0x4e55f9dbda2ffc22, 0x8b7572bfe19cc2d1, 0x5d6a0c997fc4cdf7, 0x3d78a433c3f63497, 0x4ffdfa11887f3d87, 0xd0916b78c8a5bee2 }, { 0x15142ca4ab97463c, 0xf3427d5b725a9933, 0x9bf4e26f740ad980, 0xce7329369361da16, 0xe6063e7852e1b827, 0xc82a152e65d1f0f1 } }, { { 0x2d57b36002945948, 0x275d60446c3f796, 0xb7a507a8ee405dfa, 0x76aa3bba6c121dc3, 0xffc96b9be1fd76ed, 0x1650069ec8d26dd8 }, { 0x5c4bb583d24c0af5, 0xdb42f5f65f07174c, 0xfe5a67dc0b83ddd5, 0x181cd3a726b937e9, 0x624a0f3d203a2493, 0xae155fd34b8cefa1 }, { 0xe7c3a792f59e61c1, 0xe44d8d0e7f7407dd, 0xdedae037a0ac9e18, 0xe4826226c2abb1cd, 0x6a53485f02355027, 0x48c692037a121a7b } }, { { 0xac003566a5b267e3, 0x2ad27359921e1231, 0xc38f85035340957b, 0xb1edd1414a5e74a5, 0xf4f52c145963856d, 0xca176f56cf5ec019 }, { 0xdc3764cb2c723a81, 0x7bc811a50d329c70, 0x64e9ecae2092c660, 0x2a1e7d4a5c6d90f8, 0x521549ee1544c304, 0xb7b149dd057a8e29 }, { 0x43103d7d965e2b85, 0x33324210fd23a2e5, 0x533eb3d59c1b7863, 0x6ff6480c0d245160, 0xe1ae2f8a54570b35, 0xdd43dbe4434c9aa4 } }, { { 0x8d995f1f19ee589d, 0x941d4c5d0bfea962, 0x6bf305ebe8118101, 0xedca4ab75623d1ed, 0xd9b04ce67ad6e282, 0x4eceb29ff9a13cd7 }, { 0x692ae015685609a1, 0x361ffc878b36904c, 0xf6db5f8298a4b43, 0x9565f1ff6758ff12, 0xc8a1e28d08c6af22, 0x769430b9c1c218bc }, { 0x618b5908240f263, 0x57279e960ca7d4b4, 0x6789951cf6534409, 0xc999f59f0c8a041a, 0xd4c3024590bcafa2, 0x9719290440450c6b } }, { { 0xe33efce2ef835a3f, 0xff4ea16d613b61e2, 0xb9bdcd07754dc9e3, 0x72064e475bb76156, 0x33420e59891e97ec, 0xd1dfd734917276cc }, { 0x437c25e4dc659829, 0xe8a2be4573f192f8, 0xfd272c6f8d065eca, 0x54872f0f9b829a89, 0xbac29ffa27bbb52b, 0x946b38cea6b97e58 }, { 0x14de201c5287e6d9, 0x74423776fd465135, 0x7a8faa0afe75aaf2, 0xf9211bd1097afada, 0x3aea76024265a8de, 0xa513b7f26f02d5d } }, { { 0xd8f2c87bae0b952, 0x11e8fdcd507c576a, 0x1c8e987c8793fd34, 0xf10bf6186003e848, 0x73cfa7d19df343ff, 0xab7081f329e2139c }, { 0xc5ee9caa3dd02bc, 0xb83821f7de6e4e6f, 0x704adc5fa28c853a, 0x2ffb17b8fcb514c, 0x31f2084a4a59d6ce, 0xf40ba8cec556518f }, { 0x6085382789387509, 0x1345d180ff4cdb6c, 0xf43b288986952cf3, 0x95667fd9a47c7beb, 0x8eff4b0d25cc0118, 0x751981b569479933 } }, { { 0xe58178355899b31f, 0xb6ee1b51ad420308, 0x36b33bdf9d1caf95, 0x324a6d4531cf2ead, 0x71a4aa0b36aeb959, 0x3d2ac0085d13dd66 }, { 0xc2e917c972d023e6, 0x5c8d92d1e66be84, 0xbd49da52c1215ec7, 0x5e255c909df2c9c2, 0xd860e09d6c02f690, 0xbd5ef77f009800c7 }, { 0x2d4bbe416347875d, 0x3a1ecf2aae8a5284, 0xae24bf6ae199e38d, 0xaf777df40fd4a3bf, 0x251b2430de4da26, 0x6fbb0eace6051ae1 } } }, { { { 0xd92f57933f630a24, 0x3a93741033de5b5a, 0xe62430f4d877aca2, 0xf640511f13e6bbdb, 0xeefdead9d29540c, 0x23a94ea370a605c9 }, { 0x6b2530ac447779bc, 0x476b71041d0639ed, 0xd185e5faff268b80, 0x700242c9527d6387, 0xc9324e8e2cabc43b, 0xbc1d42470a99f32f }, { 0xbe045d063f77feb7, 0x20bafcb3e1b219e2, 0x2a0d38ad047628e1, 0xcc930c1f733633b4, 0x3a463afebd8171c3, 0xa916401406995ded } }, { { 0x672354dab0308508, 0xc1b93cc37967c775, 0x500044f9cf88254e, 0xd7bdbb8b38e0ae7c, 0x5177ee8b3b9fe5ab, 0x1a104c8f782d9c31 }, { 0x5520fc7691364ea, 0xf17bad5e896c41d0, 0xecd68d2716e0ed23, 0xb08384fca0048f77, 0x100dee097c356e54, 0x6d6cdf2c80bcca34 }, { 0xb75bc156d1b43333, 0xd772ccf8d4895d27, 0xf1e7a4dc1a6587aa, 0x2f138a59a876e981, 0x5bee01ea7a7026c9, 0x79b28e38c424189c } }, { { 0xcd2ec601b0d87b29, 0xfad6b5e31ea4a489, 0xacaf3eb6c9c6c28f, 0x2b3ae6608fb03c31, 0xf8913a7dc9602e94, 0x915935ec0a751b49 }, { 0xca4f5b05fda4939b, 0x30ec17ba4c79592, 0xb8ff8a9db28bab4e, 0xc119aeff59776faa, 0xbfbc5485540ee58e, 0x344e0c6e507598bc }, { 0xf2ba6113f0848a18, 0xcefddbeb083ecc73, 0x2c6fdcb7a1a92455, 0x10af5b1181b63bf1, 0xb014ba44f78db7da, 0xb1a2ff2c0a93c24a } }, { { 0x50f804761cb48835, 0x30f08dc687de0095, 0x1fff34e21a9c8d89, 0x74e7d316aaccba1a, 0xf1d26f66aece8d58, 0xa1bd7d7796f0a41e }, { 0x4cbc11645372fa7d, 0xcb192fce75cd1e3, 0x7b45d6146f6ca463, 0xddacaf5074d09345, 0x4b2522e4117e15fb, 0x1f3c6002bc7d8323 }, { 0x461f18bd77db1036, 0xb80d3ecf74ff125e, 0x75ed6c7c2f58ca19, 0x6f0cfdd245ea6dcc, 0x9f0d463c432d9c40, 0x95065ebe2f969af } }, { { 0x5c702120c1379b18, 0x324c8418cd9e06e9, 0xb079dd349c674ba, 0xc30c178e7f8dc237, 0x8aa5719706ad77a5, 0xb4ce45b0c3783b39 }, { 0xa6aa18047fe44a6d, 0x5e47f3fda0d9f8d0, 0xd67f7800bbcc0b43, 0xf333d28009211023, 0x5cc360ed4cd7e174, 0x62564673cf7c4080 }, { 0x9b92871583c85b4, 0x99fbcc0dcbceb537, 0x65b599d7c92d8ac, 0x61ae102f37bc120e, 0xf9bba7d94ca68388, 0xcc6753b77e690cf7 } }, { { 0x17bd96477e03cc4d, 0x7357b4cada2e9cb2, 0xa6760d4fdc798ac2, 0x12c00e56b1dedaca, 0x32bd0070555aec6b, 0xb64c2dd74015892c }, { 0x74d584bb2f3515a, 0x1729761040523e9c, 0xfe953c3ea691adce, 0x4a86f8051eb87027, 0xc84cd5eed2f1c320, 0x4a2f6b82f9825c23 }, { 0x5adb012164fcb063, 0x2c36ae75bb736159, 0x9206b8d411d287b9, 0x2511959984690578, 0x80748dcfe26ad0fd, 0x29b1631a0d9023e4 } }, { { 0x59ff29322d0ce64f, 0xe7de47d79034b1c6, 0x359ec17e36da8e0b, 0xf54f9d1239f0f6d9, 0x7fcfdf134ae89db8, 0x2b772d6f53184a5a }, { 0xd56e2c8cf84cfae4, 0x623f86e35d256414, 0xd74ec156eed2f7af, 0x4c34672c59f8b48b, 0xa69cc63f2ff7f45b, 0xce79970ca09dca17 }, { 0xd311e773101aad75, 0xddea08186e3bc8a8, 0x94d8bc75073b2ac0, 0xf42d67287fdb8371, 0x4854dd4b32305428, 0x93a16ecb3c0d337f } }, { { 0xcaa9ddafd8bf2809, 0x5c1cca392cc14d1f, 0xc7ad80057e26216d, 0x6eebe9479b0df553, 0x9a58c9375f0c1362, 0x2bda23496466a30b }, { 0x47a7c5b84800f71c, 0xbcd7345f751a4a9c, 0x14a1032d3eaf8e52, 0x2533d5d9432fca57, 0x387b4ef94800c8ce, 0xba720d873426de06 }, { 0xfef1947244099dc3, 0xdcf0f8e34525dc29, 0xaaefc480986e8378, 0x36b615eca16dbbe8, 0x23d9554b66cf6f6c, 0x9d16f4fd4b737495 } }, { { 0x2cccda9a7d664d13, 0x4cadba319e9569b9, 0xea7f20d5de4b1f04, 0xc80f91f5c04666b6, 0x1c8cf66586f779f5, 0x784171df4db051de }, { 0x513e1a70fb06ab4d, 0xf1ec65aafe815629, 0x91243887ba2e207a, 0x62b05da2297582c3, 0x5447fc16d0049dba, 0x2b57baf79011a4eb }, { 0xbd9074f54c5eae27, 0xb3c3a0c3ce34ca08, 0x341e5c218986d6af, 0x1a4d5855d7051c86, 0x622bc20e4af3175f, 0x7c187a5148c9f5fc } }, { { 0x4484e26202ffb39a, 0x2b51d559e93f8ced, 0xf1966bf12da22997, 0x8d28f88472cea1df, 0x6cbc246d1d3a8d81, 0xf7beba5992dee7bf }, { 0x61024845eba3a5a9, 0xdbfc3f8ac71dfa0f, 0xeacf209ac4e6ed52, 0xe862e16dfc9ccfaa, 0x8f6bc4a68c51faf7, 0x916e7eb0e376327f }, { 0x5d28ad9732eda959, 0xfa2b134b6d1e0350, 0xe5b37da53c105b47, 0xe0ef4df19881532e, 0x959ca8dafcef0b3, 0xb9c214055abae086 } }, { { 0x1619309ee41cedc2, 0xa734a10a05764ae6, 0xad34e749569ce5e6, 0xeae4915f3fababb7, 0x43b4c5fe15ff383f, 0x92280943b0a0998d }, { 0xd4f24e24568637e9, 0x8a60a456541e90a3, 0xf7021c2ee7ae8b7b, 0x179d201c8149071a, 0xf64227b4fa09072, 0xc2f6259c5fd12f7e }, { 0x68b783b195845159, 0x2458eaca435b0e96, 0x3facbd01275329f9, 0xba21da67cb26e4db, 0x4eb045a48521768e, 0xf80f675115a58f37 } }, { { 0xb709bf2354155625, 0xdeb1c24186907d80, 0xef6dd4c0b5f06121, 0x54e9a5cb320e2632, 0x35f416e4991e5624, 0xd044999f03d77a62 }, { 0x769543ba722ee364, 0xd3b5e4e9576841ac, 0xaa368e3c81775fe7, 0xf7c0fdc776575668, 0x155c51415fc135e6, 0xddb80ccdfd4b33f0 }, { 0xa49931a11757c840, 0x69faad685d439cb7, 0xad63f55a2d0059ac, 0xa23e0efb0c19e764, 0x139d5e5bce55ceeb, 0x637401467c79fa5f } }, { { 0x74ec78f37f082455, 0x810aa90df158cc94, 0x3455c6f2493593a9, 0x80d0c23c9697b224, 0xb84f40d98a9b9fc9, 0xe5db0c989e1b4108 }, { 0xc5d812c829389e4f, 0x151f2f43a6eca005, 0xcbabdc69ba89d9ef, 0x81c6af34201e6eb4, 0x12b334e7712f79c1, 0x98ad7ec105aec19d }, { 0x9728263a3366e65, 0x33c5bb78d5efd289, 0xa7d001047c43632a, 0x9f32048f10731cd1, 0x6959a8a1b70bc7a1, 0xef84c0eda62bcbb3 } }, { { 0x9839d11f8a347e82, 0x9abcb29b3085547f, 0xe71ba047958c3614, 0x43ceb99352a874ba, 0xadfc5797a1fe0eea, 0xea1d100b0de4c1b7 }, { 0xdf14ae6838921025, 0xd11f5914ef388484, 0x792364c0d6aaae57, 0x4a1fd7fc1cf2a2c6, 0x434315d87835e2b7, 0x271efb422404a6c5 }, { 0x974355db716f896a, 0xa0e156c8895941e1, 0x40585a922d71e528, 0x73732b73edb45c30, 0x76f34a5d48904676, 0x2dc055e2398da2ed } }, { { 0x3c3a81313547d6c5, 0xd274264f5b9d7bef, 0xab9afdfbde4d2e6, 0xefc6c7f3faf20672, 0x8bbde9d83239cc1d, 0xe34546922358f429 }, { 0xfb2660b0d5bcfef8, 0x8d8962af84a9ee73, 0xdb1b8a3f0d47d7a6, 0xea58fddb3f75460c, 0x90e94ee43920b5be, 0xdd127dab36cd4f }, { 0x116461e3bcdd852d, 0x86979705cef1a0f9, 0xdd6d3f84e726dd95, 0x14c131e879aa22af, 0x78f86b46c114972f, 0xc965317755e6ebaa } } }, { { { 0x1b7c8daffef60b2c, 0x76a1821b2feba9d3, 0x628abe4a2d92f41e, 0xdd7c1543b1873427, 0x0f0fb985afee34, 0xd92063b54a6ba3dc }, { 0x8b20148248c4a69a, 0x7b9c650ee9ee9a7b, 0xa3bde7b3557397cf, 0xdaf98ce321dd5f6e, 0xf09595aa7daffb8a, 0x3bb24097c43427e7 }, { 0xb75efb44d8c9f74e, 0x2612a5b615f47df, 0xd6f104582e4157c7, 0x6202acbb16d3754f, 0xaa5af959d4aa0ed2, 0xaf850e995933860c } }, { { 0x2eb04c04088862cf, 0x3292683a1bfc7145, 0x96145f2c4bc62948, 0x6ecdfb904bde6f11, 0x74eecb1bd070d336, 0xa8090134b7a7076d }, { 0xf7e3ac6fd0cc86f6, 0x4d2d9eb9e9458d8d, 0x59349a3608e40b22, 0xcb9819c95e5df230, 0xde83aa90041d0dee, 0xa43cbf7b0962991b }, { 0xd5bac5a1178aa771, 0x83373c99fc0af80, 0xd3fa075394631ea0, 0xf42e85bbb6c9c2a0, 0xcae109e626c70e1d, 0x418a2a3b3580c435 } }, { { 0x9372ab3c0a9b4d1c, 0x268feeee4b84233d, 0x7aa32130bdfbe8cd, 0x266d8c470113ba50, 0xe78ed0bcbe65b9f6, 0xd472b12ce871fb7f }, { 0x3892e2fd6ebed866, 0xf01628a899ea82b3, 0xc22f25b94e6496f4, 0x56c095e7552d8d1a, 0x26c02bc3fc855c94, 0x3cc01000e1a2d82d }, { 0x32d41a77ca971ee9, 0x96a9d8e120c01aa1, 0xa19acd01443dae92, 0x8ca3abdf781266d, 0x670e03f496556ff1, 0xa93f822b385aa20a } }, { { 0xdfb7a3afb5de4753, 0xea5974e9bfba604a, 0x686503adc63a5a31, 0xaa2a11e4c5463449, 0xe3139e2a6d37c31e, 0x50edddb94fc6f728 }, { 0x73e4edb7795340a9, 0x24203d6036325f4d, 0x9facec6eed7fcaf3, 0x64c4df0c4315f7f3, 0x9637c3aa0aea075b, 0x91db99650d186a54 }, { 0xc4f9ca793a23300e, 0xa7ed8bd00c4bce89, 0xd967f9a0942405e7, 0x43d65a9003cd1f0c, 0x204e5831eb9581e9, 0xd29cb72e48cd6d17 } }, { { 0x3150927b8230957, 0xd5aa6097047022d6, 0xdbf6abe19c9904d0, 0x86916b2965ca07c0, 0xe91d609a78b379df, 0x64513211c99618f1 }, { 0x6e14956f2d70ee4b, 0xd73c3fba887d65ee, 0xef0734c425b86f61, 0x3010a9bb7fe36fc1, 0x2dbc6e8704ad98f5, 0x3c89556d6678190f }, { 0x57fee327b08032de, 0x194c3638308455f0, 0xb4f28d2e8ba73abb, 0x2905383fbcce35ed, 0xe3410100c7d296d2, 0xb299e97089f1a3e7 } }, { { 0x41d95f4ec079f066, 0x95660eee806aed20, 0xc9394fd2dfc713f5, 0xaad5fd46f9ccd4ba, 0x750a1cf70538c75a, 0xcf5d0dd009178ffa }, { 0xe9eb2485301ae9b, 0xa8df003586009bed, 0xe3aa6271d94e802b, 0x64a233fa3c891509, 0xfa5a3e040e138af0, 0xb577681dcb3201e0 }, { 0xfc5daa2593840b5, 0x9dd2678ea013340a, 0x4330791692c2b765, 0xa401028d63817bc6, 0x84ed99a6c1b8572d, 0x984958a1afe5f173 } }, { { 0xcf65a0eae0b9a3b5, 0xf55babc0c9c97690, 0x74e2ad9205c47de7, 0xb8e91d5ee5f9b061, 0x1b1eee53d7471eb2, 0xd6a05353d733dc7d }, { 0x6b2ee2a0f5db2abf, 0xa4280fb5af13917a, 0xa720f5d804798a59, 0x9b315f42118b086e, 0xa03a82a0078274f0, 0x730e993f10adfe7d }, { 0xba91f6ba9940279e, 0xc3720ee1eb87f69a, 0xf6a62ee467c7afe7, 0x6c3a6806beaf65d8, 0xcaacae794ff62020, 0xd36a19a70b5a5dd2 } }, { { 0xbd7822c8326c33a, 0x53bfed114d5c78c7, 0xd1ee2e492162b58b, 0x63e37d87acf9b022, 0x3fbcdc296f4d282e, 0xe44029e1840bd815 }, { 0x36f9f9cd9ed3c405, 0x40738a0e31ed24e7, 0x9363d8d3636f7bf, 0xf7727d865d52b8a3, 0xe7b134b76074a663, 0x5199984fe63146d }, { 0x135834fa9c13b775, 0x2cf80ff5f1bc212e, 0xd72b9866936a27f5, 0x2afb1a7d273c870c, 0x5d8fd80c3ffbd16d, 0xb9584c265bb3ad7a } }, { { 0x9fb39f6222071195, 0x28988bfaf4d5618b, 0x79e08ae92b4db930, 0x597b0a1ff4f0753e, 0x7a5288c2b5a03d0d, 0x33b33a86d3cca833 }, { 0x642e0971c338ae53, 0xb6d40b4b20c5e96c, 0xf9e75721f7e28094, 0x104bc487e2dfb3de, 0xa2042c1101e0cc95, 0xc04a0178d890faf0 }, { 0xf47dec22dd1029ff, 0x56675611efd61e31, 0xce0d04c35ba533ef, 0x134b696dc102aba5, 0x31ae68651095ff28, 0xa4f4d61302acc3c5 } }, { { 0xb8eed201dc52e852, 0x8bafa051656d204e, 0xcaf55589bf5fd60a, 0x8c802bde21269a38, 0x8e697570ab02a27f, 0x17be4c026c0190d }, { 0x72dd1be91bb31700, 0xf0bcea3fdbb1d119, 0x957084abeea40c74, 0x940684115b8a17f5, 0x326b68e9f8269dfd, 0x837d784ada369047 }, { 0x5e593434a6f10993, 0x259e0455d0bef743, 0x6f4fd85e8a1d2d1b, 0x88c215b27e73d986, 0x5bc95a367302cd66, 0x1eaa67e252a00f69 } }, { { 0x67291ff915de7701, 0xbe906765a917d4ea, 0x21a50c34e1ba18da, 0xe7f67ae270068927, 0x22f5db4c54e539d, 0x806fa67823cb3c73 }, { 0xfb25dc28f1d708c0, 0x3b897950cdd77a9a, 0xa0b62bdfbebb188f, 0xef574358b0aa06f2, 0xfac30ac20e8f9fe0, 0x5a8173ac2b711a75 }, { 0x96f2907fe4d55386, 0x8699a14eec966c90, 0x1690c7b79efc5ec8, 0x5d4518d193dd526a, 0x73509a2994a3c9e2, 0xa90a773e248298c2 } }, { { 0x76d7cdb10cc591e7, 0x506acb6d9fa6aeaf, 0xf0f74bae23a2b755, 0x384c71c7b2c2086, 0xfb8494875a9bb90d, 0x87f9275c7822a103 }, { 0xcf5b6114cb6e51, 0x1b3df847f8d18faa, 0x99d47368f9a06d44, 0x14ff8243fde661d7, 0xb1b9c5709fc5e334, 0x9eb271db11b0482 }, { 0xc742bdc00c2429f1, 0xd900d2ba518d10ef, 0xced063e0397761f9, 0x11e19b0baeb66843, 0x29c5aa066a7ecf76, 0x4fc6096d2026f777 } }, { { 0x45f3e7d2b23ab2d8, 0xb9d254329658bc2b, 0xc519f4c4b49a9eac, 0xce127a615026a7cb, 0x2cfea0816c6c39cf, 0x437541f052b01dae }, { 0xa8d17d609e59578e, 0xf1a3b9f898c873e6, 0x7abb14e65fec1a9c, 0x7ae9e9fe96d3700c, 0xc1619566cecee968, 0xa0fc7cd4bd8b2831 }, { 0x2bec408bbaa14c2e, 0x655cffbf1060e772, 0xa82d0e344544e358, 0x11e9e70f6d85f04e, 0xecfe1e03e266367a, 0x359fbdf8e7fe1599 } }, { { 0x9e44143de715e4ee, 0x6e062c8e0b8d4535, 0x4c8c938a3d5a4fd3, 0x53bdff51494538a5, 0x6dd478bb73d70fac, 0x23dec9343e360755 }, { 0x45a595445b6b9d23, 0x8591b0d18a099115, 0x8eb0de25055bd930, 0x69e837ab96b95de3, 0x7a2b61676b050d15, 0x910b9cd8bbff0438 }, { 0xcf4552f48cd478c, 0x6fcbd9b115a34578, 0x94e50a1fbfcf2b65, 0x608cef3da48f179a, 0xd549ee87da848091, 0x29f00560c22cc92d } }, { { 0xafc4ac2c49b935a2, 0x5ee5789e0c958c83, 0x791ab05ba70f0d9d, 0xdcc5ee92d85c4236, 0xf7d43147dc96be58, 0xa1b9dff563139a2d }, { 0x5c0f334f7896e46f, 0x7d3f51e58d73af0b, 0xfabc99cb21f4bab4, 0x49bb5abf4f0f6e0b, 0xf656f788c52cc299, 0x21f969c6529c16e1 }, { 0x2d53f869f9c4cbe3, 0x1329140faaa60571, 0x675f9c49f783cdf0, 0x1988e241c88e0876, 0x945a73d2ac7adf01, 0x89e50b50d0d6b755 } } }, { { { 0xb0d9109f8a0d04f, 0xb4ec506104f730ec, 0x2abcfb70dc3c01a2, 0x791caf801b4ec76d, 0xc0908a3b5d527450, 0x44c9c6a04be16699 }, { 0xf2db5d94046d9ef8, 0x63cc6e646e6fa416, 0x1c748d3440fa9d51, 0xe6273c8681496a03, 0x2726336ec57683d1, 0x7306975bb2cfb9a0 }, { 0x299734f650b63052, 0x55b53b8837f6fc82, 0x91c9dc58f1d3bd15, 0xc5990c67a4515193, 0x1c85756bb03d2ed2, 0xceb00ca333571b33 } }, { { 0x531498178f39bfd3, 0x4af601d39c9c49fe, 0x7fc44d96c919f710, 0x4bba780805cea670, 0x726d1e06e4565cd0, 0x3184c7684b08c1a7 }, { 0x39fbd598be442e78, 0xcabcd77b50486f8f, 0x7dfebbf93d8a4627, 0x16ef23a8fcac6b61, 0x65a3cb3733634b22, 0x9501575af389b81f }, { 0x865f4dd80af9372f, 0x8d7e7b5c5d303602, 0x350ad1f56ee469e1, 0xdf90ac9fbff58186, 0xc1e5f9175c865c01, 0x624b53fe5eaffac0 } }, { { 0x4fde591b446c9dc0, 0x375c6c04615a798a, 0x213bbac7987ef34e, 0x2f1a9341bbd43c42, 0x800b9ab7102441be, 0x3479efd002a0eb6d }, { 0xf6a431bb0ded02e2, 0xc090e93a8f87cd82, 0xc0de72419a3ad33a, 0x1db43f6c0b52eadd, 0xa1ca87eac6de9319, 0x98e5922271247021 }, { 0x5e3e14ddca04ab4b, 0x1374738c3c6033a6, 0xecef19f6c5345bfc, 0xf40bb33018fccc42, 0x89cfc64ac12d0b9d, 0x5e97ce16797958bc } }, { { 0x811902b0ad2a84b7, 0x825f2527f1075bfe, 0x6dd3212883a26dd9, 0xda6c8fab011080d, 0xd4c4c3c8f4d3cac9, 0xb38d6a4f15b181c3 }, { 0x4f2fa7e9fc876430, 0x20cd267ab4643e8c, 0x34024d8799278076, 0xd0a087916956a10a, 0x2aaec0e33d30afe2, 0xcec5fe54d4e499c }, { 0x5ddd785848734d56, 0x23f2e9a605ea531, 0x29e3e057e3bcaf01, 0x569b868a9d349a30, 0xfcc979e6208a3eba, 0x941f755f287c8fea } }, { { 0x678ad30e5871b7d9, 0xa66827bda167d0a, 0x2978b9acd42f13c8, 0x28c1223cbf1a2676, 0xadc6f2a540b138ff, 0xb5f0beeeefc0f809 }, { 0x1ac9d3c8787827ce, 0x7380fb8a56e1b135, 0x937f4888b69058aa, 0xca9bf430c4675bd1, 0xc88fac9adcc685b8, 0x90f9bee61c539f39 }, { 0x9539ca57578b9827, 0x5ff90854b6c9d267, 0xf8bbabc3ca0fd94f, 0x1252d916fa617b36, 0xfdce3728fa5bff35, 0xc4ddc5613ea70189 } }, { { 0xa1b3e48924941315, 0x5d28f65624f39d1f, 0x15d32e6b1469f919, 0x3f7a3fc75128f438, 0xf3b339075c72e4e0, 0xbdc228331b7b96d8 }, { 0xf1fe797947e1feb0, 0xb1b658a5aed4d920, 0x81852bd5f5a646a3, 0x498918b1ed7c084c, 0x6fa05b21c4236d91, 0xa6256b1059576813 }, { 0x19ce03e77a1b48c7, 0x2e4803c7ee8f7c71, 0xd49dc6a21ce72636, 0xcd0cb3ba71245451, 0x50fe8b5718360a24, 0xb2615c7a576a7df4 } }, { { 0x21e00c3dd7e6db04, 0xa9588ade7e5a4c96, 0x2904cb577e1145b2, 0x1e1afc80fd323c4b, 0xde0da2b9a6f7c8a9, 0x26e1236e659d8c6c }, { 0xa4190669b54718a3, 0x2656515763225cac, 0x301d5a4c8c65cf97, 0x328f6eaab10eced0, 0x973086e7aa1b6cd, 0xe74444ab93eb7bdd }, { 0xb197e8df92df3adc, 0xbdffc36b64e22d00, 0x5cee9ee180dc2b5c, 0xf333e2ebdf0ce2e7, 0x51e89c192804609, 0x34a9cdf29de6d3cb } }, { { 0x97c9854e4732d7ee, 0xcbfee967e2cd698a, 0x63fcf227d191f467, 0x51cb3957c250fcf0, 0xca59c30004c481b3, 0x839b821ec9f70dd2 }, { 0xdae2cb355adbbf7a, 0x86f82cc07310f934, 0xee79afc4d764b074, 0x68e64f061f1da60d, 0xa93c857a903cafde, 0x140b5717ddf3daa2 }, { 0x4979314e06790daf, 0x3ba4f471c09c09cb, 0xa19e862d190d06e1, 0xa841a77d11b1e2a3, 0xc62350a68710b7c7, 0x4a97bee3440a99cd } }, { { 0x4da4f9e653707bf3, 0xcf8e18461c3b8963, 0x1b62e7e12ebd027d, 0xa19cab685ad00db3, 0x895c149d6c012e9e, 0x26b4fc141deb3b60 }, { 0x22138df5716788f3, 0xd2737e6271a6e8a1, 0x6aff542939f9b6d8, 0x52c1fc38d1b8dda3, 0xbb76b374157495c1, 0x1bb55cfbd8ad385 }, { 0xc3d7b2f3ccf07019, 0x205d168767c43b2b, 0x5e42bab6bd410bd0, 0xd0635378bc6485aa, 0x35a581a16a0f02d6, 0x7a9aaaca74b4f756 } }, { { 0x618d3d414385de72, 0x38abe2f978a24293, 0xde51c5b7ca7c32a5, 0xb47d95aabe58f2a8, 0x727992d9767c4cee, 0x875d8c3688161bc9 }, { 0x766c0f8072969b78, 0x7fe42731cb4fc62f, 0x7382a8ea43237d6e, 0x678f6dc3eb3c18d, 0x16fe310a12667618, 0xa46d72ca45fd7f79 }, { 0x75ec7822e100e902, 0x536d4f751899a0b2, 0x289a64cff0dec1df, 0x6999ee1d08e5252e, 0xd851d1e048c1748d, 0xdc37be1c1bc26a19 } }, { { 0x308c422c73f84c94, 0x691065dfb574f0b3, 0xd7ea5631528f9df5, 0x60ca15aef1463e7a, 0x4ec2401b65aa4e94, 0x58c9775da6e34fa4 }, { 0xb99c630fbbb4defa, 0xedeb7ee5738b9596, 0xfc5f16621c34758f, 0x11db7a5cbba87585, 0xc737ae1cc878b82, 0xc0fda1a320bdf313 }, { 0xa89a70a991a41c13, 0xde81bb408e48253b, 0x3bdefa5c4f17da8b, 0x7f22eb132dc1ae7e, 0x95dc78240f5402f1, 0x7643b79234e9dbe1 } }, { { 0x62c041afc67b2569, 0x9f53c85f07aaf788, 0x8fadcc8324c5a09, 0xc6bba1c025eb8c4d, 0x8834228a981fa496, 0x94c75b7ff3b044a4 }, { 0x6e6729de0f601b42, 0x8065e5bc0aaa0f06, 0xf310887fa18a195b, 0xeb9b2d14a2dae23d, 0xffc6aa2af44e014c, 0xf7621f4cf1ffb971 }, { 0xe24ccbb0cbd160ac, 0x651f84050bdd2ceb, 0x57e8e8ec22af1997, 0xfb7e4c107c8591c5, 0xb96f1f4d997a65b4, 0xabeaf091e3f6b6f1 } }, { { 0x51c6b45c81e9f2c8, 0xe1f1dca8c25e2040, 0xbbe2f31ce3bc9e28, 0x384cad5656220463, 0x462dc11262ce649d, 0x17a5312a89342fc8 }, { 0x589d21923839bc2c, 0x853c79f257bc89b1, 0xdd77b52a975b045b, 0xc915a79bce6a3fd3, 0x44a044b25073dddc, 0x3eac4a42411fe934 }, { 0xa870977583e3c7c0, 0x28086f7911184b46, 0x6dcc481d0fc3b81c, 0x43dd6a499ff6c832, 0xcabdddf1c724f066, 0x9b1b69afbc72a5bb } }, { { 0x244b485b6a6c2b46, 0x3f7aa598303f0229, 0x50ba8c4c113512ea, 0xd3e5badad4831875, 0x884c161963661a6d, 0xa55a6453e1178d32 }, { 0x65ef0e62073e4127, 0xca9ad1cda3ec4966, 0x6a9209bd612a832f, 0xbed18e2a70c450ee, 0x61cd24673ba5b2aa, 0x8f14552757dabd20 }, { 0x39f0bd1a4eabe225, 0x62b33ac0d271a1d9, 0xfa4eec1fec01d2bb, 0xd543cee4e5267192, 0x48303b560403ea00, 0xe9d00d0a433e763a } }, { { 0x601d24beef6f220e, 0x6728c406fe92470f, 0x11f7caf282d85e09, 0x75f94870a7c30608, 0x304b46a5d40f1bf7, 0x3bb9b86eb9404603 }, { 0xd9c4360d1558e216, 0x82c5d95bb897361, 0x1afd87f37081f22e, 0x9becfcce98c063a4, 0x51019cfeb55cb6a2, 0xdb050c44e2654faa }, { 0x481b057519b2ff52, 0xcfefca62765c132d, 0x2776b6911481b53d, 0xf5820c44cd0ea280, 0x3962b990efc41787, 0x565322d238a7c621 } } }, { { { 0x10578f297b35d42e, 0xe2772b1d9cf75829, 0x5b6998090c23d7a9, 0xa752bb63923c953b, 0x6217b88f625de50a, 0xc73329fca4836361 }, { 0x2015c06df5a1a373, 0x7abca48ec462f58f, 0x53e8ed0dfa7614af, 0x362575224b7267ee, 0x6771d580f9ccbea7, 0x709fe440274ce0c4 }, { 0x735bba3c49b0d5b4, 0x7775898743eca55c, 0xabb06a3da8cd982c, 0xa84c44b6e9544fed, 0x6a1e6669fd0ce53d, 0xdabe6ddfe1ac0c7 } }, { { 0xe4546ed6309cf83b, 0x4c2c257c02e9f687, 0x686a3275404f19c6, 0xcc5f8a085adbfd90, 0x30965abfe5ab0e76, 0x9bb23b3e38d7569a }, { 0x55dfe6561d64c654, 0xbacba204a12cb128, 0x3b9b024540f14805, 0x2c72b50e49c35a54, 0x4321e72804e9e19c, 0x4dc8586c0e319817 }, { 0xcf8f2e13e74af1a1, 0xb8780bb7d24a6e70, 0xdfa6c92ca8e2a6fd, 0x89b816fbf1164076, 0x903a4ebed874f1a9, 0x6c488a0304ba7f89 } }, { { 0x1b9e7ef62f4754f4, 0x45e536e2cf91be36, 0xeb988cf305abfa6c, 0x1cc7ca25131991e4, 0x2172c4754fea5823, 0x49b16a15cf3f8f16 }, { 0x1794790bfaccd7c7, 0xe975f230ed0deb1e, 0xd3d7bb96d05793fe, 0xa0ae4617b9e7cea4, 0x4ed00035c09cc9f6, 0x793c42b09625e9de }, { 0x5515fe62021f5e2d, 0xe1aa4660aa89113, 0xb89d4d4bc76b3cba, 0x4a8c2239ad20450f, 0x318cc89e284bae3e, 0xe6eddf5cee8135c2 } }, { { 0x19d49dbdf25237b7, 0xe53122cf7de2e8db, 0xecfe06c73b3408ab, 0x443491a23d92ec3d, 0xbcd7666616eb602c, 0xdc86427048de7dbf }, { 0xc275f9bc0800cd70, 0x72313881a96b3f77, 0xcd693be0ba8960a2, 0x3549da8fcc1a3f0d, 0x2d09b8e207b6d9a5, 0xbfa9696f40b61305 }, { 0x5fe969827efbd4e, 0xcd466f02aaeb08d0, 0xc1b03d3aa2e2b393, 0x5dbc5a421dabb101, 0xbd74c45eb2a86afd, 0xdea5d9ce7fc1f95d } }, { { 0x6acc0cc6f0a5008e, 0x5aef5c665e7fcbd6, 0x16d51417999fd0f0, 0xa1065ee693b8ecd0, 0xc199e4fa0eb7258d, 0x3d54d4b7d59eac01 }, { 0x7083126e752f8c60, 0xec924043ee1d5367, 0xe2ac15d2c345d215, 0x23b311da627896d9, 0x6ab0f5dee48a4b9d, 0xcd500aaac9a7ccd7 }, { 0x14a227219d6d8cb1, 0xd65931a6b6aba153, 0x42ce9ea42f2ba8c7, 0xb937ce841a4a024d, 0x62783accbc7ad14a, 0x9a8d7bc3d2393999 } }, { { 0x6dfdf4be0229f1e7, 0x8117f26343659430, 0x9e2799deca453e5, 0x4422f0f5a41a44a9, 0x98d38b8833b65485, 0xda8c080edddd2fcc }, { 0xcff6ae43cc67a12e, 0x7b4927ae4e0576a9, 0x28fa536af59ab5b2, 0x2b896b0c9143d4f0, 0x8872c1b554640f78, 0x8f965eb686138466 }, { 0xd09758a952904f22, 0x2b88ceb0a36ff703, 0x10741c6b3a0d9fa, 0x62e216fa54dbbeac, 0x14046ff1c43cde40, 0xd996ca5742cfc5b8 } }, { { 0xc5cbed8f016d69a5, 0x1e798e9e482378d6, 0xee4b10800ba5580c, 0xf81b1749a8975472, 0x67bce0b8b0729844, 0x57b690c12381623e }, { 0xa835107d6e83ee9b, 0xb2794a307953cad9, 0xd6ecedc67434790c, 0xa8eb269151d7e012, 0x4120fd74f1fe33d7, 0x8fcd34c98f0bfb73 }, { 0xf06502f16daf672b, 0x331f122964d75a51, 0xff032d34f18b8bfc, 0x79fbf6784e6915d0, 0x498690f262497efb, 0xdbf3f0ecd0952809 } }, { { 0x6986760baa233a2, 0xe0a3d818ab5451c9, 0x4403d4cdcb73e16d, 0x8b8dbc7177e0ca17, 0x188f14092cdd5d98, 0x6147c56582abd9e }, { 0xe835aada3923f521, 0x8134cb444c75c316, 0x22a9dfe6af03c057, 0xc7c46ddaf23d2f60, 0xde0e89640c20f548, 0x4438d6172fbcbc0f }, { 0xb76672ffd1b33667, 0xc008042573c5bc64, 0x2295a201c842d56a, 0x668dbcab66091019, 0xb7d2fe1b31a5e3a3, 0x31b22d7ab0ffa877 } }, { { 0x7988cf402b7bace4, 0x756d813f4c3c3718, 0xeeea57791c711034, 0xf36efd46332eec2c, 0x2cf0e6f4e409aad2, 0x691a7192802387e3 }, { 0xb26719330fbb2dac, 0x9bacc2d4eb3ba11a, 0x2e72cbe6b38780e1, 0x4e4dbab3a5b9cd2d, 0xac8601941e7b34a3, 0x165e9da314e26824 }, { 0x5843a367561e08b8, 0x3be11932fb83f4b9, 0x8fa4e1f797f19215, 0x4cdcbeea9a0fd3f4, 0x729b5189577ceeb5, 0xc89aa78c6aafb3a1 } }, { { 0xf06be779324a2658, 0x82ca7fc0dfdffe37, 0xb0cb4a15dbd6fdf9, 0x708dfcd2e35e510d, 0x640b5898e2c4b518, 0x12dc78f07467eb4a }, { 0xb83fb654443258d3, 0xfbf799464af65e02, 0x6e5feda1e5a85a44, 0x3fb5d1098d71f828, 0xdb037ccba7496d5d, 0x46added6b451b923 }, { 0x5dec710f31c4d6d2, 0x8c4c60223a6d623e, 0xefe370fb002456d7, 0x809b846e83cf186e, 0xff0145ccc0331c0d, 0xb61728eeb1b4da53 } }, { { 0xa63e048c45d1c569, 0x58b29f039ec0d151, 0x6e2bb576c9420780, 0x951c5c74fc0e195d, 0xc7385307223df55c, 0x40f491a3da4b5aa1 }, { 0x248c2bc582ca0826, 0xbe5b757baf8e4654, 0x86811701a522a170, 0x88078c0ed7676721, 0x79782c2d4523b14a, 0x61d2f13d415535b3 }, { 0xd8cea9733bccfe13, 0xdf6daf01ea34ad13, 0x44bad425cc3e5ee4, 0x9237ef3e2613d200, 0x34d399b445734901, 0xd83e471dbfd85abe } }, { { 0xb9e3fbefba757407, 0xfdead8408b2dc154, 0xc43576a2b04e457f, 0x874687b563e7bfdd, 0x3de20751ce4217e1, 0xc12896da1fd2a868 }, { 0x9d5abcd9f35cae35, 0x27c21263ad03af2c, 0x96fea032f176ed08, 0xba8cfbba2eb4f405, 0xd07e84ff62a2e4f8, 0xfa582f4a72b3bcfa }, { 0xbfdacb391e07e518, 0xad55923bbb65420d, 0x84dffe6b059cc347, 0x64bb31a83e2086, 0xce4b0642d4ba204b, 0xbd44dac9415ccef9 } }, { { 0x3920b4dee99a7618, 0xa05595dc1d35e9c5, 0x7dc3f958308a5ef2, 0xe94011ea85da8f07, 0x9f44b473a25c3d35, 0xf1101371ca93f7d8 }, { 0x13733cb58273c6ed, 0xc6ba5293b4b4e51f, 0xf65d9b664bdc2099, 0x3e4c5981ef350b1b, 0x969661ff5c8a27eb, 0x654d5c2721cc2bf0 }, { 0xcc5916e12354929f, 0x9628c2d7bf72da1d, 0xc98568c2a3b3683a, 0x7b82f71b3834728, 0x8ad48336f7ac03c8, 0x3cf1d2d524b4a481 } }, { { 0x725a2cbbaed25cb6, 0xcafb7c45fd2b0fc3, 0xa42d14f6e6566f7, 0x8bbb6465b3e08feb, 0x84f262c5d0d531b9, 0x4d4bd896cf011463 }, { 0xb89296554fce97bd, 0x94d035c1835a9453, 0x4556ced7bbcdf6d6, 0xdfc03d8f36814f9a, 0xa6e724f3a33351df, 0xfa487088e92db0a4 }, { 0xde0857262d40b412, 0x2bcf45957e2f222f, 0xd9a26ae86cd8fe6, 0x2d1b28fe9b5c1f51, 0x8ad8b451fff20bbb, 0x77acbd9d3154f9f3 } }, { { 0x106a8b5d59e5c67f, 0xed894c900cc015b, 0x3c3fb2054d996e03, 0x34a0678ddcb7a256, 0xf1c2c2a133697304, 0xecdc4188181d64c }, { 0xb9c13769a994e53e, 0x5db15e0ba69903d, 0xebeee8736b23fc0f, 0xce876669ce2af530, 0x87bf9dda453c23c4, 0x5357f7b4261fc72c }, { 0xa3294ad004a7dbe4, 0x931bd5b083cf682, 0x5529d7a378ca989d, 0xeff368cb93292c4, 0xe93f3b45318a7b20, 0xf335c4c56ab51011 } } }, { { { 0x5dfe15b23467c714, 0x234feb1e67785a84, 0xfd1abb76ce5dd987, 0x3106d86fdb9d76a6, 0x2fa8ccc9f1457934, 0x210e398641209a9f }, { 0x5255f22136c034e9, 0x2fd11c568114f698, 0x2d013e747346e1d6, 0x524f58fbab978e3f, 0x9ff30c19bfdcb8f5, 0xa7bfb7c98df2828c }, { 0x8d7b01ba90223e76, 0x48a6452775f54e7, 0xe14d9b4ec10a4880, 0xddb188a5779e689b, 0xefee0d155dc855b4, 0xf3dab7d3d426be18 } }, { { 0xcceb38a87dc9fc52, 0xd5e81b475a01b0bd, 0x3ede5d6fe375e978, 0x4f4f33f4a61ee2eb, 0xf3d8864fe0542a8f, 0x6663e6eb232c0fe6 }, { 0xde176e1f8baeb105, 0xa51739f519c2d897, 0x5bf82de851d7faea, 0xff6789ae6a775ad6, 0xe7bd040f6842a321, 0x8c5dcdb50a8cfad8 }, { 0x60ddc525cced52d, 0xb6598fb4d340ff5d, 0xee4a758831a4794c, 0xb37ea55026d97502, 0x907d6060fb8616b4, 0x30ccf9f0de293c0f } }, { { 0x18562627e4bdd7c7, 0x43560bf79a635a8b, 0x6975a4462734801a, 0xdb47396ef10d7ef3, 0x528a1c9689b92519, 0x325b8ae8aead5dad }, { 0xa52fe3f1bee05e16, 0xef55daee1be65dbb, 0x6e3aba1982b009e5, 0x10089c59995fc681, 0xb9a1646556b0d81f, 0xfb81d68074a6247b }, { 0xc9e4e27aa6affd67, 0xfa270bbda692e7fa, 0x15fb503b261dab88, 0xc99fbb16a6a34a9b, 0x7f0e650b3e8061c1, 0x5e83cf0db7206595 } }, { { 0xa8d7ab07657bb412, 0x8c65c23648d0f579, 0xec43471466984b75, 0x7551af22bede4dcc, 0xb2fb85feac53fca3, 0x4cd96c2d1b8cf4af }, { 0xcb68ec0035e67b23, 0x652fc120e919317d, 0x1de628d16e6fbc1, 0x543b762f2f368f7a, 0xf85795f14488b44d, 0xda3da3b416240d35 }, { 0xa1fe66346e7a5a5c, 0x5c82d6d7be58df0a, 0x5c1f0ad10c8c4c15, 0x4986266a1b4d7747, 0x66b3c555e1f97146, 0x4df9973d4a9a60c4 } }, { { 0x3563dfda57f05d95, 0xbd0c7b14ff942cbf, 0x4e73ca0c46432d2, 0x7bf498159d04f99a, 0x59c81baad2e90f5b, 0x1ff6741c8bcae771 }, { 0xd0dbee318fcab9a, 0x4364a73fe71e1124, 0x9c7ddefdf312e1ac, 0x566105595758bd0f, 0xf071379a7b3c5c54, 0xaf84e998f80575e0 }, { 0x8be5c08d94c6f2bf, 0xa6eb6bd2e511ea98, 0xe5e866d6fd97f79d, 0xbe75637b66da1ef6, 0x284bab2471dc25dc, 0xc6ed5ba2e95979f2 } }, { { 0x85f9c85fd27d24f5, 0xfc5d0cfc947d6149, 0xcc9cda940a87bb4a, 0x8da75c5332f1752f, 0x4ca0d21d27e14b11, 0x12b9a876ee2bbd6c }, { 0x674129dcdb1f0096, 0xf3bbc2e65e687803, 0x93b7530494f4cdf3, 0xa0c0a2f85251daa7, 0x18778701fce94255, 0x1cd70efa1725bf43 }, { 0x216b3f3098ddc757, 0xe2b3e8ca9386af4a, 0xce71f8ac64772213, 0x9e2997a34170878e, 0x69cf737cd853e5c0, 0xab242b84b4deb16f } }, { { 0x426b338f5287fb15, 0x730d3d785be147d, 0xaf2b897ab03f8c84, 0x49994257f33e8d5d, 0x4e9b6a3b0570ae6e, 0x9575094b2b7ce2d4 }, { 0xddfc18824b9295c5, 0xd48e8122b4501c62, 0x4fec726116f529e5, 0x4df28e6e02e14500, 0x98818a5cb0f7f068, 0x5b63032f80c0cdc }, { 0x2b5ad0b64eec5cbc, 0x9a85e40f360c86c, 0x4fd482a94bb6d7ad, 0xafca24fffd37c699, 0x8ca661b271e8e857, 0x819528bc46dd2ce4 } }, { { 0xf1dca9f4fc16889d, 0xb803a074233531a, 0xf22f23ab1d6ab28b, 0xfc96cd8f929aa38d, 0x110472e2608abd6a, 0x39c996a4f358b575 }, { 0x8275df68e92fa4af, 0x4380acf2f62b994f, 0x510fc070eae3cfaf, 0xe6a0d5b97d2bcce8, 0x51b4e6803ec0c552, 0xcd0d6c48881c075e }, { 0x71080ecfc6150184, 0x2e3d4c468e1a401d, 0x35ce9644bf231aab, 0x8dd174a02f085b9d, 0xd685e5d91bb1dfc4, 0xf58fa5a254c43eed } }, { { 0x3a769124e79dad36, 0x18099a6659bc0ee6, 0x79a91054a82f5956, 0xfb9a7dc02f78fe3b, 0x5f094f257333a2f8, 0xbb48d6f95ad9901 }, { 0xd9214a1138987222, 0x6ce1d00922158b29, 0xb4dc9eeb5fb94a87, 0xd06a70582823a6ab, 0xb2cddcb0fdd7e833, 0x962ebae2ebfc5278 }, { 0xe7a1a0eaca1145c5, 0x49c8c1fe6c59eccb, 0xee119a9af2c53b11, 0x3d4b6dbea08b1cb8, 0x52ec6d3677ee1e7e, 0xbac5743dd6fc3337 } }, { { 0x59226a37aa5f9570, 0xc36133a4d8246571, 0xb82c932e4b751045, 0x1867ba3927dbc8c2, 0x8b2d63959c1fca0a, 0x1f5fbf4ecdaa5f4d }, { 0x1104144381e1cc70, 0xaeda595a18f2d1d9, 0x97ddb7095e26bb26, 0x6cf612d01927acaf, 0xfba532e84fc7e0d, 0xc7ce01f6b90e8030 }, { 0xb60bfb373475fbd1, 0xfbc4526284cc3157, 0x5047225e8281756c, 0x113c0540a4d8b2be, 0x19be728b7866e0d3, 0xe59616142aa69721 } }, { { 0x446fc578f5eb9e60, 0x191249c06c9d21b3, 0x22bc31adb7d70102, 0xcbd135e6fbe4a65c, 0x4d0fac6e1d8a15bd, 0x5c0add81e84a4a9e }, { 0xfa1f473a41b98c13, 0xcf1cb45470d77cc6, 0xbb9949991acdf2c6, 0x79294139800b5f73, 0xafc243cca4c8af5c, 0xe92efeb8df773ee4 }, { 0x87c16a4f7d854ef1, 0x560ac3fc0cbbb763, 0xa30c6e0032dc08ee, 0xe8a9c031f26aefc1, 0xbb4d8ff9c8a4dc18, 0x1e238af651c4480 } }, { { 0x469a02cb0e04e45e, 0xb7003530ce802c99, 0x492c864988f6a5f8, 0x374702cbe9131c9c, 0x57cfb6514ca88a0f, 0x8bd0bea6e270aeef }, { 0xdb630683452c8546, 0x380d29b8ee8f70c9, 0x65300ac867a004de, 0x42aff7343b005a24, 0x19265d7ddfc16e6a, 0xdf9afd96929f6916 }, { 0x7edb6264988df747, 0x8887d850b4fcef2d, 0x145cdd7d357dac34, 0xfedeb2ebdc2ba9f5, 0xb8410d385cf287e1, 0x1bc6ec79debdea7b } }, { { 0xd975142396e7d982, 0x4f6c4032f9777a18, 0x4b6bff289d970a49, 0xab4fc650b733ed73, 0x399b38ed696657e1, 0xb873f6d3aa3cb7ed }, { 0x9e1f9acbb65b2f38, 0x6745cb97b47d22c4, 0x40d8a44761044275, 0x1aa2a4ddcfe2adce, 0xc4bd2936202c9c0e, 0x39370973944baf30 }, { 0x49fa2dd3739fefcd, 0xb129c649a092a596, 0xbbb4e2054047d7b3, 0x415770196c5ce538, 0xf5318e6e54abbe44, 0x48e3a627aade7359 } }, { { 0x3883342f481a02d3, 0xd73c11384fdfe621, 0x1f33bfd2dc81facf, 0xfeee8aee8070d4d8, 0x48a6ee9a472dad13, 0xa425863821100915 }, { 0xcf2c620eafb882c8, 0xe7c97180112de2a7, 0x6e5a0fe7d31fa602, 0xf8311ba36a6a88fd, 0x8aa280ea8ac40e7, 0x3edcc8299d4fb955 }, { 0x82badab03cbf70f, 0x71da8d3a6cae1221, 0xe70829dfc56c0bf8, 0xc2cc62e087b4a8fa, 0x66136273a1e04cfd, 0xd42ce6f56c9ce978 } }, { { 0xa0d89e26b2536592, 0xabdd070f58c4b47d, 0x76a6ed31d96dd23, 0x61cc53a9e77b95a4, 0xf76ea476b615557c, 0xb5604c3f1ff53aa9 }, { 0xe39b5b4c084f0ffe, 0x66ab43d2db600791, 0xb2faa904e5832c88, 0x99e8b4c09109b352, 0xe46ca8bf0ff2c150, 0x1e05b16fbbb31ec9 }, { 0x4e951eefc787517f, 0x2c2012c8b95ac944, 0x13a517caa07121a0, 0x6eeaf1ee5277c3a7, 0xd9bece0eb981ed53, 0x2daa1319aaba49bb } } }, { { { 0x6895b57e31e4f3b, 0xe9d67c733a64278d, 0xe4c6a4e6fb928115, 0x9ef4a9635b4ea753, 0xacfa6705a1692cc0, 0x26c577b529567e5d }, { 0x46761bf39a165acc, 0x27e1d4f6793af50c, 0x8f07f38efe4285bb, 0x88b2312b57bcf5a0, 0x3c0676a2cd4d7741, 0xe87e1865c00f8813 }, { 0xc37c88e5f998a9cc, 0x3a072c8911ee1cda, 0xfbe9bff1c9848579, 0x954d1db0dd180778, 0x62297ef591217d05, 0xf982567154f4f481 } }, { { 0xa1da308a0698d4dc, 0xe2ec1f6bcaf8d0b4, 0xf2011bec40f146dd, 0xacca86d8e97f46dd, 0x7f1a7e69f4c4c0db, 0x9c601ca8a2947b32 }, { 0xc599da49afec8bec, 0x9d0c379af98081a2, 0x6c389d583c3cfd1, 0x1eee6caf47910089, 0x9fbb73b3e90111c6, 0xc3b45b411f87d2fc }, { 0x4eba0ce677c3002e, 0xcd07229762e90d1, 0xc7b8d0a58424e515, 0xe9dfb77ceca9a6f2, 0x3899c628a8154767, 0x5777f51f90e9f2be } }, { { 0xffe1ed0e0b483309, 0x9b8a7d56eceda71d, 0x103d409f189fe370, 0x26a015159eb84a71, 0xbabeffd7a09178be, 0x46acb63b6e9e21a }, { 0x41fc7721c2be844b, 0x9fb45946d4e7bab8, 0xcc29b269b151743a, 0x787db951dd5f90f6, 0x5fcab7f64b8e15e9, 0x1fbfb0b7b5ac3af1 }, { 0x1ae64fe3f61a3563, 0x1c1afb5c4c4156db, 0x6ad24d90470c9bd5, 0x23c99f49f85817d, 0xdd56c2fbd6c4afc5, 0xbbb0378ea5660866 } }, { { 0x50bf464d5065074c, 0x5b7515694a6d9c1d, 0x306d026fa5ad830a, 0xe35c8f60845a4cb4, 0x87b4560c74bf0a3, 0x8a4f12a7455bc097 }, { 0xe5e241cce1e0d961, 0xde8059cf872f6b1b, 0xd857dae95dd5c069, 0x8b2bf464bd7ae9b8, 0xe8e33b0afe8f5603, 0xa3b18d0e37479d21 }, { 0xd85819f27e3a3b24, 0x859a54416f7a333a, 0x3751e38da93c04e1, 0x551256e140648cd3, 0xdab2d1872533b30f, 0xfa5daec89e2ea8e8 } }, { { 0x974c275cb0b2c1a4, 0x28f8ad87d16e05ea, 0xb261112fea8547da, 0xf27f1737fdb998a3, 0x27fe67df1db74511, 0x3c9ae2c9834cfcb9 }, { 0xcefb0588eec6ba9b, 0xc73a186d929a3d2c, 0xa82060cea6bf7570, 0xabd665bc9922ee93, 0x8c2fb0d5bb0afc7e, 0x6b50912cf0dad11b }, { 0xf6432782879f6ea7, 0x9b431e25df510d75, 0x9273aba6a95f1a8c, 0x7569bb3f27ffea23, 0x14bd597dbf875d82, 0xe34c9675a12ebd55 } }, { { 0x6f848db49350ce6c, 0x134a446c647b45a4, 0x36d84fb8cc474296, 0x2a81e5e8f9ff2bd6, 0xce91aa36e6c572c, 0xb6e02724a53b6dc7 }, { 0x744cd9b14045ee34, 0x16a431d1f9a9c195, 0x9b86dcd2750109fd, 0x6026753286ee5e59, 0x3a090a73a988cba0, 0xb4438b8482fe67f3 }, { 0xbe0641497b5f3111, 0xca775ffc5a7ca3e2, 0x23cf752bf116c958, 0xcd5b73b3fe01e515, 0xd1dec6ba7f78d502, 0x30b65415ca8cf97 } }, { { 0x9a11af978248c42e, 0x1fdd398ab7768b6b, 0x1900f8681b7bfd0d, 0x7d69797df210be83, 0x662e773ae0d8ba49, 0x2bdc5c383ac05669 }, { 0xa63dae9c32c2966c, 0xad666e440f68ce15, 0x3b6b8db0a5f3afb5, 0xf11117a4f141a9ee, 0xfaaa1d34119cccd0, 0x19da61077f8305f0 }, { 0x6af450d8db52a6b0, 0x80101b3e940bf355, 0xe97d37e0646f834, 0xb694cf2176f27b0d, 0x8416c8bf10b1802, 0xe6892d9c013a29c4 } }, { { 0xca566d0bb31e4e08, 0x26d94b0e07055c12, 0x6a4ce1d9a17cb4c0, 0x3a03f21c65b9dc86, 0xe5249e2d2a53e5e9, 0xfebd9a01b7aa99fb }, { 0x171a527965bc8a23, 0x16be85a14e9c6cb0, 0x4889f1e289e99f73, 0x778badde53071391, 0x66860bd77bbe8120, 0x45238c560722624a }, { 0x7a8d83cb97098f18, 0xed72ae4933e8bee6, 0x5b88707d3c52b852, 0xf9db635f96730c33, 0x6e694ad0c7da4207, 0x6dbce2be5419deef } }, { { 0x7450fee17748e4b4, 0xd303def839eb0fe7, 0xd96db8cb40bdfc8f, 0x3505c9a3f6fee964, 0xf53df99913a04997, 0x5cfb39807a4f0e0c }, { 0x73ca157eb2b173c7, 0xb56eaf4edf332639, 0x2e67953185b6fed4, 0xf9b632830063ab9, 0xa413395f1ed5396e, 0xa44f352bb107bc1a }, { 0x5ec2e6253149c88d, 0x39378edad2760ca7, 0xdcfdf345931f4c78, 0xe2a04b2bb6c28f69, 0xa7562087fae0629f, 0xf587c58988477035 } }, { { 0x266e6a1ad59a7066, 0x5d334360f0983cd9, 0x92411729e7887d8d, 0x282962be6c5e0d80, 0xdd2a065ef07231a8, 0xb058de12c9235d14 }, { 0x80cd23f953028067, 0xfbacdca3ee758e13, 0xab143d7095d4c814, 0x5eb346c3a4c75c1c, 0xa7bcafc9787a6650, 0x29582b1c5f849970 }, { 0x6e76b0b910336e38, 0xd2a61a2185ee1492, 0xe08b5040151c1ee7, 0xcde99ae401d86602, 0x35bcf655c143a828, 0xd47672baf5c4394a } }, { { 0xaf7a43a5e662d932, 0xaadb35bb68efd106, 0xe8af68b59c992e1d, 0x7ad50512587bb754, 0xc2ac743cf8c43eaa, 0x6609ca70455f6afc }, { 0xe97e7e0c28d04f3d, 0x4cd9c50a024f300f, 0xbaf10e6274c53813, 0xb3b817e2c83dffc8, 0xa3cb2eda02880408, 0x627d31a1bb437524 }, { 0x8af84aa4dd75baa8, 0xb51545af75f3ae10, 0x1dec6c6d3e9f52c3, 0x3de5780b3c97af77, 0x44a680ec979ef01b, 0x2f66c46409f4dd00 } }, { { 0x4ccfdce80b80358a, 0xbe3a274789c5af5a, 0xabae0974fac7cc9d, 0x16c01280a17bf1f1, 0x8c4daa4f30e282dd, 0x388181356f81ee8c }, { 0xc167b13c66afac82, 0x850688d54eafec2b, 0x229b7d9d61ca332d, 0x371748d292f6cc29, 0x18e4daa42f632e29, 0x6cd95c44948d8b44 }, { 0xc72dcaa9e3f5d6d5, 0xbf58885e33c20b18, 0x5f68c2cfa4d5cb2d, 0xac46af6a4e34647e, 0x65b78ff16250a0d0, 0x488b89ad3f1d3b6b } }, { { 0x1b5b3dbfcad48686, 0x2e383eeb2a7b1b54, 0x78a063292984eb31, 0xa637d482deb5f27e, 0x76aade7b9e7297cd, 0x922a6aa08fd91839 }, { 0x3cc9339fcf89e51f, 0x507a1e08968a3588, 0x6910e58db44e00c9, 0xfda05d4ce27b519e, 0xf417edd87fea581a, 0x85c6e2acbb0bdf1e }, { 0xe938c25116f4dcc2, 0x8f723cab2f0b0daa, 0x51c5b2c3e7d3d257, 0x199bd580be4783d, 0xd764065ed07e9db8, 0xabdc202dd25970ba } }, { { 0xeb021d3d6aa7942c, 0x189d87ee001703ca, 0x4230ce0226c91d5, 0x25fffc4188e06bd1, 0x6d6d5eff0cf8831e, 0xadff2c524bd73eae }, { 0x84aca25051adc174, 0xd276d5ee926e65da, 0xe4462182f7a4bea1, 0xa09ac177ef7814c8, 0xaf10415ed15f29a1, 0xb79340627961a19c }, { 0x15f57f6699afa24a, 0xae73f5c30726922d, 0xc98948af148cd908, 0x9bd59baa83ff5116, 0x7921dc30cfafd1b6, 0x7eb7e5d77fed9931 } }, { { 0xa0be7087a739133b, 0x895cc0e3f608d8a, 0xd202edd144363e55, 0x1174f58aade50e8a, 0x5f78fae9b80e2f01, 0x9575a70031a9c02a }, { 0xb761aa76c74704f4, 0x45dd055e78bc2e60, 0xf1ee82be7336e131, 0x6a9603020cbc1db1, 0xc30fe283fe55f335, 0x6044558df7acb19 }, { 0xa37564137224f4e3, 0x6185f3a9845b768f, 0x610f542b250a022d, 0x331047e1646a91a, 0xb0e8057266a82114, 0xa097f389701a7666 } } }, { { { 0xb9db01f1c823651f, 0xc71fbd0c282e8281, 0xb7a592d69f683632, 0xf565ce194af95521, 0x49f672fe1cacc6b3, 0x5de2674f3609de3f }, { 0xae46197edc22e55, 0xdfb14488f99dfa04, 0x2123d2331255176e, 0x48f4545b6531d468, 0x4d94c5afc2a8994d, 0xdbd730f1cb81aea5 }, { 0xd3a407b041f02f3d, 0x252c4057f089803b, 0xf8c2c1ee609ed59d, 0xf96bad76989b30d0, 0x7d1076fffbcda2af, 0x636a9ddb57055b3a } }, { { 0x7ada8cfabb9bd327, 0x2119b98e0145ca1d, 0xe3588c4db9cc980e, 0x304c8a46a6e625ad, 0xcc8d4e8170e048d, 0xa9ffb34ef5ef82ce }, { 0xc631c92ae4d535fb, 0x128cf8becd84ff27, 0x20cdb75228f0af06, 0xb80ac1375008dd21, 0x7b383e5370a02bfe, 0x265c7bc91194beff }, { 0xed266f5ae9025cf8, 0xee1ea303204d5da8, 0xf7ff725dbad88d0f, 0x945b5a352d4347e7, 0x6c0b98433760bb65, 0xc33d4d8008d79356 } }, { { 0xaacab0313d873bc9, 0xeac4adb227f582e, 0x15524cf32127f989, 0x5d018848cd34b24f, 0x7913308fc57604e9, 0xf54c7d88bd38c5d7 }, { 0xb7d0e2fc820eaa15, 0x5663f46b483a2d9e, 0x7bfb155632f5b661, 0x9658bcc2aee5d4e7, 0x8554ddc3d32bb7af, 0xab027102f79d6a91 }, { 0xa9f9266b370d576e, 0x247c2f2a14ec50b8, 0xfe058562484d2a9b, 0x3b594dc2f1288293, 0x6cf87e7bf6b147bd, 0x4b661462b7bca9de } }, { { 0x2253e54823affed, 0x311807297fd7d586, 0x98779f2abcab4d27, 0x6990788ccf6f2cc3, 0x34ca600ff5afe21b, 0xa4bc9af92198e05f }, { 0xb712f5ade8d41fef, 0xffc5c89b13013877, 0xf8fe2e0a1373a5d3, 0x83afcecb82ddd9c6, 0xe676079285fd8bb1, 0xba9098373a36836c }, { 0xf190198ef2fb7032, 0xd3060654a54acad5, 0x2229d7b438ec81ce, 0x85b529f8011956dc, 0x648a067e525ccff6, 0xd5d7d8c5029c0e6b } }, { { 0xca5a79848da32c3f, 0x87efe1f0b695a5f0, 0x3f5d82d0e846094, 0x9c9a5303d421f2c2, 0x4e6d1d168aa1ea6f, 0xf4319f0819eacf7d }, { 0x6c61299f35274f4d, 0x67ced7f927287039, 0xc7dfaeb23136902d, 0x50fcc9fdf3b9c1d1, 0xed1155aec4eb94f2, 0x3f979cd6660bdae2 }, { 0x5f67d67f4f08a599, 0x31bc9f3a46bbf24e, 0xa053436aa888d8e7, 0x31bf64f5e77c7cb0, 0xf48bdf8b7f372246, 0x3870f20938f7a305 } }, { { 0x10757a406c05959b, 0x6fef1d656276bd5e, 0x3a19da08cf7d8416, 0x2e91287c7c00bcb6, 0x4ff485ba9b1afc39, 0xe9729204486e5c4c }, { 0xf7b8d7a02a85c419, 0x623bd53a4fc627da, 0x78a4f9d317b9579b, 0xe208bbc2e5dc0155, 0x3a812585805d0b3b, 0x4a7b7985dbdf56bf }, { 0x51a945b6e73b4e86, 0xaae8f4582cb77699, 0x4de4c879f455fb74, 0xdb4e50df59381bfe, 0x1fb03ceae830d10e, 0x837f35c4695cb2d4 } }, { { 0xc7ea65c2d6d72b63, 0xe326e7f75a610e98, 0x9a4c9df0b6df830d, 0x55d2208c39a0d3b2, 0x3dd575dfa9d3819b, 0xd571fc434c610255 }, { 0xf69edcb566c29b32, 0x3491f1850eb2df38, 0x2e564c81710a27ac, 0x397ef12673741c33, 0x61bf2d2d137f0bc4, 0xf8f9dddff9bd3e5 }, { 0xaef5669df4a37810, 0xca18ecfe7af6fd84, 0xd5452a45dccf2b75, 0x409d86480ea6ff1c, 0xf33cb28657fbee, 0x83f6184fbcb82d43 } }, { { 0x1cd11d1c310f78ce, 0x20a83d99f915373, 0xc4374c15080f0590, 0x1c7050765003e514, 0x59c6b231cff7687, 0x25e5fee336d02142 }, { 0xd4aa152439f05d4d, 0x331be08817260269, 0xfa401443ab3ef95c, 0xbb7a8263daf2e5ae, 0xccecf424adbbd518, 0x87d96f156354827 }, { 0xc851d8facdf32ba, 0x44e1d89221bad22c, 0x8a6454a64ade24cc, 0x62680a766809d469, 0xedaf0691bf6fc1cf, 0x839a629ac92d823b } }, { { 0xa889e62e37770239, 0xf3406e97b105f0e0, 0x981d958530a99a9f, 0x50e94898223a2720, 0x409042c809622963, 0x7349990e284b72c7 }, { 0x278cd52575bef8c9, 0xcaf8245a0d57d84, 0x5672ac407ff29bf3, 0x2fb3de53136b3b4a, 0xda3e25f451724602, 0xd5da4a79683a5042 }, { 0xd3cce8f7737c7257, 0xe7f7121b7ae87b86, 0xeb9883575eaa9884, 0xc03be8bba6c72694, 0xfcc4560aae9307e7, 0x21f3c9da31b5084b } }, { { 0xed903dda96355007, 0x66d1b6ac657ed5bd, 0xb0980cbcdf123b23, 0x1480161decf38818, 0x47a5152369512877, 0x9df47a2e1cd2f634 }, { 0x79aa1c9dcd36c9da, 0x4c7769f3e9694046, 0xd93bc26cf28ffd93, 0xf2670d6a94058089, 0x238b4b3436de3b7e, 0xc102f6f43925a09b }, { 0xfe035c60b37ac501, 0x1fc65ce5115943ff, 0x2afb85ddad07a601, 0x61de5bd982ada21, 0xe4c47260461790ac, 0xa0c2a397824d94f } }, { { 0xf11d3696ad880fa8, 0xe03f172138b1ad80, 0x92e655497118daa8, 0x8c654c3ce24c7fad, 0x1fa1dbdea1b25a8d, 0x23012c16ae00be30 }, { 0x582b0a824001af65, 0xe6570155e27b2308, 0xc77cf1925e6ceb0b, 0x459d3823e9f80bc3, 0x576ef9be8f2c6343, 0xb381d78863ded58e }, { 0x6ce19f997b92693d, 0x8efe747dcd878ae2, 0x2ddfa0e978042177, 0xd3e73a3485e079a0, 0x4f941b673dd8ae35, 0x78372275d38eba57 } }, { { 0xafce46bd64194340, 0xaa2776b011e296ea, 0x1c6a627d4af2873d, 0x900e6dbd407291f9, 0x56f0843ef59606d4, 0x88cbabde0cc7cde6 }, { 0xbc742863cf31b404, 0x7c5cb669ac0937af, 0xa39644c8de55d566, 0xd055b354480a93ca, 0xc5402f9b05f1eddc, 0x4ff82ffcfc632a73 }, { 0x90e2dd21d50a9f6f, 0xb81617c814f5381c, 0xf14bd4a16f865c90, 0x22bf33e0d97e6087, 0xc2a36a79589092c7, 0xf822148da83d66c5 } }, { { 0xccb3a88151108d77, 0x86ef54993966e0a7, 0x5215f11da64cc404, 0x5ce7dc8baea21e13, 0x4d8cb7a956be1125, 0xe9a9d2532de7073c }, { 0x29079c6bb1208274, 0x608410d4f5163ebe, 0x85d70f4b025d19e7, 0x1eb8c0266c98f58b, 0x51f5bb78571d8f62, 0xba3dca9f3cd36541 }, { 0x897fc90f446ec405, 0x1fad04e78d98abe5, 0x2ab31f4e937ff3a7, 0xc9bbcc2b3b175ba9, 0x9c34b1d2189d2b5e, 0xf6861859e55d369 } }, { { 0x902c45bdf705f2e3, 0x9a1fe56ea2d7726e, 0xfbad676656b810db, 0xf03c4f9b6ca38b43, 0x173b9e5408813f5f, 0x852b1455d230d364 }, { 0xec5e82c3f176b555, 0x42097c6699ccbd29, 0x16f7c3439fb19605, 0x35ca56c1b98b5ab7, 0x1f13c041444b8edc, 0x9af5626a37e1eb17 }, { 0xd24f45635b2dbed6, 0x6f7f60b1c5ff03a3, 0x9868494552270368, 0x1881002432c389c5, 0x915c78229d3a9cd2, 0xbdcbb2189271422d } }, { { 0x5d0550d755610332, 0x1813549d4c9be622, 0xc69a8ff1f46f5821, 0xbd067dc48e920666, 0x2b80045548e2b1d8, 0xf8ae9e6bcd55fc07 }, { 0xeaecb830bd12aecd, 0xef9425950af36bdd, 0xc216c3f85b9dad6e, 0x8ab9cfd4f673b8cf, 0xae50c67557186c9d, 0x4bae123e2f848869 }, { 0x7a3b0e74eb6c0977, 0xf1dda2b896de3e46, 0x10a6601b7e67003, 0x461399f6f21d7c25, 0xb556b149b944c9de, 0xeadea10920daa19d } } }, { { { 0x5bba02fb73828a10, 0xc88bc73b2f6f7caa, 0x53d37dce9e627897, 0x2592a5d3b16d499d, 0xd9ff131fdf991068, 0xc66fec376a846930 }, { 0xf124a1972e3e5635, 0x37a0201c746c17b0, 0x7d5470d0b53a8beb, 0x989203f4cdae4fcd, 0xeb17aa8672839174, 0x8ddde32906bc45ec }, { 0x5bf8567a1bcbbbb, 0x2ea8920a5f466cfc, 0x37c3b70215d76bbf, 0x8a8e0a185143f5ac, 0x6c48ac24056fa8f2, 0x363bc2a9cdb8c0ca } }, { { 0x75ab880c8fe0c78, 0x1432231e21f760e6, 0xb39417d9ab380866, 0x94d7589c23d03055, 0x7944f89b64c9e63d, 0xad8264c5d694bab2 }, { 0xa10a394323dabe46, 0xcff4ad89b245b525, 0x7414dc34f762c22f, 0x95fe3c771ebbc08e, 0x105416e7535f7925, 0x869fb8fe471e0f01 }, { 0x64491dacbcda0b7d, 0xdcfe09aa1a71d5d, 0x78b19582e94399fe, 0x7d6ccba3dce7eef0, 0x78623c9b370d2d4a, 0x9df14769d147343 } }, { { 0x2f65e740ac22811d, 0x3eed27f0c9b7c6d8, 0x291edddbcab59565, 0xade68bb910c9d5f4, 0x483f8eb42fda0ef8, 0xfe3cdbd331a3f7dc }, { 0xbbfb318602488002, 0xb24843ef15294c34, 0xe0174c2321c063c8, 0xb8cb0a32cb67be5b, 0x4f533fe4b83c0934, 0x728a45cb46790011 }, { 0xcc67a9ae283ca335, 0x8a255400a81bd300, 0x8ed75b64e4309064, 0x93f3ac8f920b675e, 0x906de13ec1185277, 0x91c195edbc8bdf17 } }, { { 0x573f7d82a61ced65, 0xdd4ead9b9af17caa, 0xe5fef6fc96586bb5, 0xc5589556322243f, 0x906db28bfe69458a, 0xd28a6ef435ca39f0 }, { 0xac293412203bb9b5, 0xa2ca996d8a6377a8, 0x8519ee749afb7c8f, 0x1294d60135da98af, 0x5972cdceb7fd7241, 0x722801ae8f22d572 }, { 0xa7b29466b0b38952, 0x53048fd538a95a30, 0x1f6c3d6ed29e9172, 0x53b1b087ff876589, 0x52a718941aa2bb49, 0xd21d8acbbdb3bf51 } }, { { 0xfaaf47af2f5653e7, 0x5be527b5607fb759, 0x7aff3e72c144802a, 0xfb4d315f4e95d276, 0x830ff02fcb03ff09, 0x8f2ef8aa48c50db7 }, { 0x859a461d8bdf2d0b, 0x5a1591a541bd1e1e, 0xab7a9e3f1c194430, 0x6bfa4bfb3d5ae39d, 0x791817d63d9fe2ca, 0x6ca26a5bffce61ed }, { 0x31e7b6e6402e92fd, 0xdaf60e068a086783, 0x29938d9b8ddd6ef3, 0x18086a7c1ee3d433, 0x8d69bbea1a9970a5, 0xd518ebca29882952 } }, { { 0x3754c44c42fdaa1c, 0xdd0a3bae60ea1c8f, 0x400d8086112c6cb4, 0xced534e4e7ac3cd0, 0x1843f1ecaadcc574, 0x4b318021061a8911 }, { 0xe423dc8e82fe54af, 0xc984ac40b94980a1, 0x19ae3583e1572bc1, 0xcf4d3ba9a29b82c6, 0x360d200ecd15202f, 0x532c6dc1528a14c0 }, { 0xbba65b634f7c9429, 0x785d544107f90227, 0xc77613756c3b84d8, 0xa178643e92101519, 0x67a776a44f7c2aa8, 0xf738e3b670afb53b } }, { { 0x182269fc215202f9, 0x1e2a53ae1cf8a5d0, 0x5e06522154641039, 0xabc1c4c71a4e00dc, 0x96ea2cba1562c2b7, 0x23ccf5de173e6ff8 }, { 0x52f04dbf11bc5e61, 0xf1f8bc2dc60d48de, 0x98dc62359072584e, 0xfdd7ab26923bda0c, 0xc94a18814a7c1f04, 0x78d3c126475affc0 }, { 0x883b030d9c92e2fd, 0x66afd1a2da332f1, 0xed2f616416248788, 0x744844d59f46e3a6, 0x8d8ba18d1bc4b64c, 0xc953582286bb94d5 } }, { { 0xc42bd74f269c25cb, 0x252fabb854d6afd0, 0x61c0318eec74c848, 0x69cb4244073b6858, 0xa26c25bfdce13376, 0x1de72bd24061c6a }, { 0x35870a056d8699c2, 0x6e898f25e4978cff, 0xed94ca12fc5e138b, 0x504918f5005b227, 0xeb5171b6ffc77f5b, 0x24ea6ef943e1fa38 }, { 0x3f56bd9d69d6d365, 0xe6ae5cba7ea0be6c, 0xfc1cddaa78a44bf7, 0x3cc906411468976e, 0xe460ef973aa4920, 0xc16f64dbe371a981 } }, { { 0x9d0aa5cc38435f5c, 0xf72352243afaa8c, 0xb5f7d8e2f5e1efd6, 0x72057814712b0a61, 0xc650c17d140d795f, 0x65d26b176709a9c0 }, { 0x699d94072d09e49f, 0x70477f0da2a1e184, 0x2301157b6eadad89, 0x464b4e65ec1121b3, 0x589a59bb00c0c57e, 0x7b7f421fd4fb1f9 }, { 0xd44b58e617d55b95, 0x1338a0e4fb311352, 0x1b0c5d2da3071045, 0xcdb4e7db05ab487a, 0x7648d9664ef7eabc, 0x54397b0e5eae1e39 } }, { { 0xbd8f141721a65534, 0xede7a887bc06f948, 0xc0bbc6a0255662d8, 0x59a48cfc23f65227, 0x62e76ae352321f5d, 0x8b4598890b66fada }, { 0x4df27c42aa291206, 0xfce2e53e608085b0, 0xdfb151ba507c73fe, 0x755eb49f038d99f0, 0xee27e52209752be1, 0x8fd3517f408be8ea }, { 0x3fd578eff1e3f3f4, 0xcb79476212889735, 0x1429740b7a538aff, 0x1c040facf76a1f7c, 0x3f30e66908d53048, 0x4fa037701b065865 } }, { { 0xdb2e8b397c4f6c2f, 0x98f5617198bcff9e, 0xe74cb7c048223a49, 0x508430c381e6682a, 0x67d940a362e58c, 0xb6c72212c85e7694 }, { 0xb68fe47b35ad3ab6, 0x4d44dc4fa2af86c2, 0xd8dd00ed2fa95122, 0x2e547fa9f15fc161, 0xbc35fd55966ca4fb, 0x9cccf0a0bd1472c0 }, { 0x2df727635161bffc, 0xda1a9054b9f2586f, 0x66a7fa4e3c48b85, 0xa54de199f29343b6, 0xf3bd1801be3ccb45, 0xe730b6c44620a63a } }, { { 0xe3c4ffa3aea9e388, 0x2b6310af4c91708a, 0x8ea64d8b68431b83, 0xff2673c1bbcb84c1, 0x7e2bc3c58866ee98, 0x119ff76e55f30283 }, { 0x8ed953de32edc8fe, 0x2fd235f074b7cb77, 0x3f2bb934fa94c549, 0xf7a7f9981a3eeb7f, 0x9cf224e3865fc56a, 0x42079cdcfc192ef1 }, { 0x6408f2e5e37fb46e, 0x41ffa95c8724b9e1, 0x99e4ca685116a6aa, 0x6a4a89f4ce777e3b, 0x32b1b96bbb24b6b5, 0xc4126d4e9da8449c } }, { { 0x9ad74a9861776f20, 0x4108759a815b8f7f, 0x3c463bc93fe87369, 0x7f1615603eb44b53, 0x56cf1273961e9296, 0x6c49eba060bdc2dc }, { 0xe2a3a8e16f92e38d, 0xb1e26afae23f5565, 0xa12b85516cbd34d8, 0x64c47ffe80e0474f, 0xef2f5ba4807af46b, 0x1f309942dee3240 }, { 0x7d9aec892dd9ae53, 0x68bb5155f8ea9731, 0x456d0b033de0451e, 0xb4c340a6659904b9, 0x69c39677c8c350e6, 0x24e9f995910db67f } }, { { 0x61a7c0ced889ccd8, 0x69a8cbbc614d178d, 0x312e0b0395cac8e9, 0xefe268210ad894aa, 0x113371c6f1401d61, 0xc635d4e8cd0ce9ff }, { 0xcda64cd5d239b439, 0x973d039ec08ae306, 0x572e8ad0db608aa9, 0x9fbcc5e8ae53e0cb, 0x3dc05fc22397cf67, 0xfd8ceb4e4e197f5c }, { 0x3263a81f7be35039, 0x6e4a57b552160deb, 0x4d0ed495bb76ac61, 0xb383377b8eb0af37, 0xdfdac470a573d11b, 0x45df1b54d068faad } }, { { 0xa76372e3ff1fbc2c, 0x987581fd0dffb964, 0x945c05d127bc6590, 0xcc826b3e5f950aee, 0x2968336706dd399a, 0xd1360650ecd22a46 }, { 0xc2e91f9854da4b62, 0x3212288001035b36, 0xfc9ea1f77b3458a9, 0xc880ef9ea00c7d16, 0x4b2d60af088889c9, 0x4edfe6e690db4139 }, { 0xd1c861519547de69, 0xe69def48d84f688, 0x909f067237b97db1, 0x55a1ff014446a03e, 0xab1933b6f7cec41e, 0x27c0c08ee03e1a88 } } }, { { { 0x858088b4e0663946, 0xeb6781d8a6217539, 0xc15fca677d104499, 0xa23371c1e360f7a1, 0xaca24b75c78960bd, 0xb6274b47cd39c17 }, { 0xa33ab55cefad5b10, 0x8f9dfa9c74199b5, 0xd6a535b7ac3db189, 0x1edd6d0a785c5e62, 0xdb4a0b850cb02214, 0x82dc2e2ad0634e66 }, { 0x24531fa9d7ced1cd, 0xff6261802f2767a8, 0x1eb71c8f3ae9114c, 0x370fc7335e8ba334, 0xb9d3919f4947515d, 0x13f91757aaefa986 } }, { { 0x11ab201c5c6f986c, 0x564a2eca1794e4d3, 0x2b6d515ba23ab3a8, 0x3b00b194dc683e1b, 0x23135ddff5ae13c6, 0xcbd5b682cbf9c3dc }, { 0x688b374179e07d8f, 0xf982fc575895a996, 0x73fb9225e819453d, 0xef3445ad726dcd57, 0x564253904e6fb6d8, 0x287cb511fed889df }, { 0x5bc4eaa325c2ce4d, 0xd1402ba64914c78, 0x40648da4d00ccd53, 0xa3d84920bf81f5d3, 0xa898d61c69df5522, 0xa9bd224380757fbb } }, { { 0x511813d972d2b1da, 0xa440e256cbcf8091, 0xf97d4020cbc0dabe, 0x32d7c2c7cc9ae11f, 0xd3f841efcc5bfeb8, 0x775d01749a81f997 }, { 0xe92902a99d1ea6ec, 0x9dfac27ead3685c, 0xfab88d202bcdfbe, 0xc60704e559a47c29, 0xcfcb83cdf0605005, 0x2b10ab38615b4a8 }, { 0x6425dc446b0f436b, 0x72d092e5621d2b53, 0x64e9f0542c65bd3b, 0x2e16569553180b25, 0x18f1c23cda37dbf2, 0x72241fbc3c2b37c3 } }, { { 0xa91c68e87fc3cf39, 0x58bde8e1cebe4201, 0x8364595da9836d0b, 0x5a20b673b9e81573, 0x61f1727d9c0a04d3, 0x4774c5d62f069752 }, { 0xdf403372d21d4ce3, 0x11d08dd7cf64191a, 0xb7b43355fe0ef7f0, 0x914a1a315fd5b10f, 0x60700f789442efc3, 0xedd3f0dabf95213 }, { 0x1ff52362d83db05b, 0x08ef137b501d90, 0xcf14e91a4cc9fadb, 0x4cbcae2d57ad4584, 0x33d429c34b864a6b, 0xc41295d5673ad15 } }, { { 0xf0a279b376b31216, 0x5eca4158ab495983, 0x4340cb22e55ded49, 0x85c8c60834947263, 0x329b259e50ce21b6, 0x87c817377d0b3aba }, { 0xdb9534f0619f17e4, 0xf5e5446cf7ba754f, 0x968f9abbd620a6c1, 0x8775c3c32f59e2d4, 0x4c2b08f9fe2f5d5a, 0x1b5c5e5e530c94d2 }, { 0x1b52ec22cde4c4e6, 0x1f47dbc9c440cfd7, 0x281afb3dfa5459a, 0x3254701c60d0ac5b, 0x28cef3f1b7a73d21, 0x2ae71056b0b5b748 } }, { { 0x458a7ceef73caacb, 0xb5ff1edbe028ac54, 0xd4d67e4f8b1876a8, 0x60d3bad57a56e058, 0xc8317f0a427961f8, 0x2dc4f7119d4da5f6 }, { 0x6ab7b29a3bd44d72, 0x5ea6f11221744dff, 0xb0ed1c1695a8fec8, 0xef66c9be90e3b409, 0x7440412271c67bb2, 0x47d2308059489469 }, { 0x5ee63167074b0f30, 0x88164658f86d8b20, 0x92827e4d71941031, 0xebc963423432146b, 0x810858e19d84bd73, 0xf764788b7e16ebb } }, { { 0xc4e81a3fbee06a7d, 0x5ab6521bac580d82, 0xc6c2d59b3d38fc9f, 0xe0543277c92c7dd4, 0x1a7ec8ef124c9e0a, 0x16e878530414d9d2 }, { 0xf1560fed393ffc03, 0x77cfaa8cb127d45a, 0xe5ad1e47ed50e3a3, 0x5db8c64eff8eba7b, 0x602076f2c1bf0733, 0x979e405c8072d24d }, { 0xc1c0c9568a34a90b, 0x87eb99806afc1039, 0x62a22d2b4b237806, 0x3fb61e2a101838d2, 0x755d16a0a7b8fc7f, 0xd940d86bbba78ab3 } }, { { 0x85a78f080c352dd6, 0x184262e6ad71ce56, 0xc5a155858356acca, 0x7038126f88962158, 0xb700aa577c6684a5, 0x7e27784b789f675a }, { 0x9454a5188668cbe, 0x184e4a5fdcdca898, 0x50005042d6d0e328, 0x652aae8f6b609fe7, 0x2d5efce09090b661, 0x6eeeb2271aa9ea29 }, { 0xfda114eb3bed1fee, 0xd4f3a746dd6dbd33, 0xfd729bb125c0e670, 0x2b8d145da57edd15, 0x5a6209f7bfcfe868, 0x5f483f98456942e1 } }, { { 0xfd2ba2a24469bc45, 0xe3953f3734d3e825, 0x4bc3dea432d96758, 0x41e4f643e26b323, 0xa5e8b1704c48ceaa, 0x90851c158fa5b2f7 }, { 0x7d36afe8cf70cfc8, 0x44e78e3a4e7fd773, 0xd274f82e2bcfa502, 0x27c18da0430124e3, 0xb4ca9267cc7e27cf, 0x2273d7aa37b7a192 }, { 0x90b145b833464053, 0x49764d382ea38eb2, 0xfd910ca21fa795a, 0xe5903ad3b747b59a, 0x37ce8ab5a00540b9, 0x965444c780be650c } }, { { 0xf454f3b35794618b, 0x8baf38a73d44dba2, 0xa21b9fbe49bf2aff, 0x74bd9f48dc3aa633, 0xaca20e24aa442fe3, 0x5e6895dbc125fab8 }, { 0x7c60320000a671b, 0x87ba84a0be692776, 0x7d801d37759e5145, 0x8da848b28f7289e0, 0x1d1922e565730a49, 0x561958c60e41f548 }, { 0x797d1d632aaa9795, 0x64653eb602b03868, 0x1767518e704b3984, 0x7fcd0eb856d10ba1, 0x36319bb042ddae2d, 0x7688ce028078252b } }, { { 0xa88394316968da06, 0x270182de304d395d, 0xb451311492a43c3b, 0x3d78499a3b641e08, 0x31ed3f11f4632281, 0x1823a3c5bded5661 }, { 0x885a8f50f5157c91, 0x43408b182abf0ff9, 0x5eaa4e5302499601, 0xa8c2b2393334ec31, 0x522880ba06859a0c, 0x5ed882c7033a7d9 }, { 0x32f328d271e390d6, 0x842a244a94f4929, 0xfbae8db1cba309dd, 0x98541ac6bf374f23, 0xcb0adcf8415d843c, 0x38d3c8f652e084b0 } }, { { 0xa0b3a4c326bd2dfc, 0x539014becf202cd6, 0xf23601191022e090, 0xe2eb1017f6a08053, 0x57e581ab1a20be27, 0x5d838c923a0cf5f9 }, { 0xa79201464607ec2c, 0xa6eb32a011166f5a, 0x15dc03c341d68309, 0x99079f17c8d7d14f, 0x88d3ff1a9c7c8e19, 0xd79e3ac8e1be65d7 }, { 0x8430fd8c747d5dc3, 0x9e80b8c3d34f18ca, 0xf2416a416d87c521, 0x8e29c1a8e7593662, 0xac7aa44c1d0dd560, 0x789a3be0ea8f5e9a } }, { { 0xd032f6ed87230424, 0xde9a34d36dd0ef41, 0x68a09fade628ea85, 0x31b19788442257b9, 0xb96801044e0638fc, 0x9d8b3656373fc997 }, { 0xbd2756395592a597, 0xfb186c3166584674, 0x42e0c891970e8b22, 0x3e8170f644aa2747, 0x8bc39273c6d53ae0, 0x334811502cb1df15 }, { 0x4b4cd2f62fbe8ea0, 0x3aded9fbffd7278e, 0x9ec4eac02ba23ee1, 0xf8560544ed4bb496, 0xc5db5dd87843b7a5, 0xa72b4b2a0b064220 } }, { { 0x2f36edf4c25829ac, 0x3e53ae98fbf75c1d, 0x20f002390c80ff35, 0x688240278cf620ea, 0xf0a7b0a37df67825, 0xd7f9cbb34b5626cd }, { 0xbff77addaea7d16c, 0x5db0c839cce33eac, 0x1b94c8b612b899b7, 0x8cbd2121c3e0fd61, 0x4bd43a8ab9c2fb44, 0x7762fbc75edbd10f }, { 0xd3b566dd00f84048, 0xe8084a10aeeb79a5, 0xa7a0e5955cb14841, 0x1e59e3fb7ff35bbb, 0x6fff7689645c9db5, 0xc06a00ff1834f4a5 } }, { { 0x89d018e28d4f98bb, 0x207917cd31512b3b, 0x7067bdd2e0d0a667, 0xd1a72fd5849ad058, 0xc66eb225d52dd29b, 0x1a7c3f55388087b1 }, { 0xfefe910deecf8a10, 0x3560ad26ece86d2c, 0x49a6d8e98754e18e, 0xa6f049d132515959, 0xd2dd03277b37334a, 0x480d10b68f1d95a0 }, { 0xe8c3597e1700f71a, 0x4c2a2a183e392ddf, 0x6fed39fbff274c0d, 0xf3b894ab220e12e8, 0xb143e73d973e6ca, 0x7d1cc4fb414b4ee9 } } }, { { { 0x66076678ae2a0a08, 0x566c5d9725c4dc8c, 0x4f947a767318184c, 0xdb42c53f596dae1, 0x21dc855b4a847ada, 0x252fcfa3b1557b39 }, { 0x2975f7fc9074c16, 0xda22bb0c6137c81e, 0x8e1d751f5ca52c91, 0x36ca533df610fcca, 0xaba8f02c81c6d124, 0xe92e736ed0d6ed5c }, { 0x900b21d9ff703c14, 0x34441fc93b3dfa19, 0xf26c6062d5b1977b, 0xe088a5d975194684, 0xe14e6f02a7827d61, 0xd663eca7c4fc4aad } }, { { 0xe7f1c1a24f7fa7c0, 0x292f89145d5e9d35, 0x596ff012ba812873, 0xbd8931bac3cf8982, 0x3c8d941a536bed20, 0x8fcccd73f9847983 }, { 0x4828e97f68e47807, 0x51f2b1d8c3e0f1, 0x769f234439c0c832, 0x38491f445ef453ad, 0xb0429638940d48fd, 0xdccecc14ddc44b73 }, { 0x541381d0f4b77d1a, 0x37771fe9515fc0f0, 0xf0efd28c5aee27f7, 0xad2ecc38950f0525, 0xff2b1e0b00b9b8f, 0xdca12936631dc074 } }, { { 0x304763b9600507fb, 0x3f65244ea165955f, 0x8984525703c53de2, 0x82b1449c3e8146bc, 0x5b6a6c0f7574a073, 0xf8b359cd34a779b2 }, { 0x25e7029bf62cbf5d, 0x98b869a8fb20dbf9, 0xd2bc0bcb35e285c4, 0x651b4057e009d399, 0x5541bdb09b2f941b, 0x2b6eabd8c0066cf }, { 0x80600c1a0ac4ea51, 0xe5d5e0197e3552f2, 0xad1309059583ded1, 0xc80c352e7ad6c01c, 0x35df9a2c3bc4c985, 0x71c320cd6114959f } }, { { 0x547432cad176a815, 0x54fd077150f8baca, 0x2841ff2109bb354, 0x2fd02fdb97cd2410, 0xb04dcccabe26259c, 0x89cdde2463264e67 }, { 0x182e735242bce9df, 0x323715d5e27eb64, 0x9406466c8309602e, 0x3e62e489905c78f4, 0x5db084832fc9c388, 0x99ab333ca5e8d4dd }, { 0x6505bcd78d8d37e2, 0x2f019cb6fdbc31ea, 0xda61e8ca8bf785ec, 0xf7c0ef83e7f125be, 0xfa2c26287fb7cf4b, 0x76146719937a4c46 } }, { { 0xcb5032876690a778, 0x1c0c5d9d233d4784, 0x12fd3ae8b176954e, 0xba5d8c4bc30d690, 0xeed7054f5f8f9e1e, 0x93ee6114eeb6209c }, { 0x7fbf72d60efed232, 0x4f33a6b93ca10e0c, 0x2c27219d9522fe60, 0x10644f633e6da459, 0x4aae09a7016be2d2, 0xde5daa9cf6d4db7b }, { 0x175365fb4f8c361b, 0xdc4317a576d372cb, 0xd6da9f3da7e1491a, 0x5fb712ba3eb5e701, 0xdaf723f7ed59d917, 0x505b3dffa32b0bc1 } }, { { 0x7cee67c4f958a6f1, 0xa1aafd788d23348e, 0xc81c92717c5d287e, 0x46dae4c2f7a581f, 0x693db2d6289c1371, 0xb78c28c45c4690cc }, { 0x6a2106a8a941bff1, 0x3db70b9da1337d73, 0x75227363255fe712, 0x6a7f1208b94724b3, 0x76fceef9ea68d611, 0x6c6049ea495fd47 }, { 0xdf31fc7a46a6f673, 0x5d5485092774b0e3, 0xe93f0afcb5277a02, 0x781bdd37ba993dd4, 0x49189b7ea98566db, 0x4c5207f20952e175 } }, { { 0xfba138a266f7e382, 0x815767461979d85d, 0xa89177ca9248ce4f, 0xd52e4892fad1b121, 0x9eb1dfc24c85ae2b, 0x323de61f508ae7d2 }, { 0xfc03f596f6df4187, 0x81bb7f9ebb4bf7fa, 0x75b64468b0051bc, 0x56f6e142697dc192, 0x742ad8a8e378f014, 0x57e5d5e5c6d83d0 }, { 0x1b463a671a12b6e5, 0xf57cc8fb462f7aab, 0xee10667bfaec211f, 0x6d242ea7044f819d, 0x6f41362e1f597e0, 0xc7812b0c538f5974 } }, { { 0xf1f7806b253a787a, 0x452d81d65aac3f88, 0x2cb4ad204f9b1428, 0xdefc2083ad715064, 0x3fb9df1c16e03cad, 0xbfa0d4df2b3126eb }, { 0x37723d2441114fdc, 0x2262509cc14d4aa4, 0x53b0d6e163147ec3, 0xd4a907b5dc99a67c, 0xaf86cc21869d6cf8, 0x91dd75661190c318 }, { 0x5dd716ad850acde6, 0x24399370f45fc95f, 0x6e88a0157fad5c5, 0x34057bbcce54d49f, 0xad40bbed43fe58ef, 0x983d4e49b84d98ec } }, { { 0xe66cdc649cc3639c, 0x44e122383002fd7c, 0xeec83420e46da558, 0x6e8817d470f61e7e, 0x8b70395a1dd6bed6, 0x4eef7c1c882d78f6 }, { 0x2f7f4115884b6d89, 0x1e0779e9f320ddd5, 0x95f2da89ee0d173, 0x3d365134cca8f0f0, 0xe7c38511ba031cba, 0xf24793713b23d737 }, { 0x7a3473a4ebc2d20a, 0x84634dab626d249b, 0x967b92ee9e07fe47, 0x9290dc848b5c4b01, 0xa387291d0149e78d, 0x265f4a6f50ce72a9 } }, { { 0x56926220f9a7e02a, 0x34e4e95f96eb90f6, 0x8cab962ea92e0b67, 0x7e816d62d974c211, 0xdaab77d8ef426495, 0xb679308dff0fd6d2 }, { 0xa00cf7c54536b465, 0xa52ac70340331460, 0x8f7efb657e645d6d, 0x4b9e0919baef962, 0x14d40c8fa69b413f, 0x5e2e54cfdd301d49 }, { 0x474da74a610416c1, 0xbc98cc048891a933, 0x7b5a03462a17695b, 0x953294fb1508f53b, 0xd7b07807fb384b88, 0x3854bd9d319d487c } }, { { 0xee416352298f7bc5, 0x46602c4d3763e997, 0x694613ae63b4a0e0, 0x77aa51d99b53258, 0x75688b82b8b0b93c, 0x3ef772a8a61fde2a }, { 0x96cedd15b03ecf94, 0xf8eacb0e6de4ddae, 0xedcb808c80e35b5e, 0xcd43b4a8148ecc1d, 0xcf28efd1f4c13683, 0xa97235e9141587e0 }, { 0x2c99fef2a6874ec9, 0x175c40fc027de4b1, 0xebdb35b1ee02515f, 0xf48feefc01de770e, 0xcc299632da2c481, 0xe8d4e9eb72f46da } }, { { 0x1b1cee61b101298a, 0x2585264b725c0854, 0x2a8e862d320cbd64, 0xc151efac87dc805b, 0x513075afdfd8ab43, 0x8c13fdf365d65ccb }, { 0xd3501f1c7f48567e, 0x72c115356fbe268e, 0xf0e24c4e60e3f2bc, 0xf1c8debd46049eb, 0xe416f72a657064e9, 0x587f8328aabbb89b }, { 0xa3fcb5501ab02825, 0x61ff628bb90d96fd, 0x496fc9416b9ef21f, 0xa8b383776df8280f, 0xdd449c180767bef, 0x8567835b56dec625 } }, { { 0xb164a215f8ba2c5d, 0x263e6db7f5284b9e, 0x6e8c1569c9dec299, 0x3c386fef9324c9b4, 0xf71df30e7591b0db, 0xc47b245dd1f4b02b }, { 0x46156e030357d188, 0x34ac2a45664c585b, 0x9ee76246c9cc0225, 0xbf3239db3c2e89eb, 0xf04c47f6a7745cfa, 0x34a9266f6b5b7ee5 }, { 0xe6387ee04e5bbdff, 0x2f64559c869a4cc7, 0x3ea9baf62e895f7, 0x552b1e66685355e2, 0xdbd51df71eac5379, 0x9c16d65f84f1446d } }, { { 0xb5ffcde53a9e2b30, 0x5e18730277d81489, 0xd03232e4814e438b, 0xfb1d94020e494075, 0xe81a682a3446ca7, 0x3c2c85ee6142d81f }, { 0x1bdf23ccee64574a, 0x4d3718f17e60e84, 0x66f670bf450c88fa, 0xb88b12b3e69aa779, 0x1751ce5f2efc7530, 0x45cc866844795b6d }, { 0x249d9e95f603caec, 0x759a76e94c6ec893, 0x938a0cca76ee358b, 0xb893981cabd4b4ba, 0xaf5c6128591311d6, 0x5ed500b4ab2c5fc1 } }, { { 0x6cf97d953fd23dd8, 0xebc90d655a6b3c1a, 0x69c6a974b1d4d7b5, 0xf3057fe39bee1b17, 0x1a8af4ab25051d31, 0x7664e455b7eb08ac }, { 0x2b989f2594804c16, 0x8ec1b85b324d2113, 0x847ee58517f44c36, 0x2199b0a87d275793, 0xb50dde30664ad25d, 0x64ea23f81ac95f4f }, { 0x4cff0b537f3e2404, 0xabb118466fd90bc1, 0x234e4ae102cd3f6, 0xffcb1f2991903f82, 0xdb580a9c8b34fc89, 0xc8d65e8a6750cf4 } } }, { { { 0xe243208460d4c7aa, 0xfe8727f490b0638e, 0x141bba31080a08ae, 0x8cad3768334c0e8a, 0xb72a085b73f3cb99, 0xffdba7be220cab0b }, { 0xff0c77ce7cad1506, 0xa2932a722cf29fa7, 0x5a13aa0736d57b96, 0xe071cbdc38f5598b, 0x21b1ce297d7159ca, 0xb66a712ab7725f53 }, { 0x61012949780222bb, 0xa56f7f9713b3eeea, 0x7c924d2d50fd4e11, 0x775efc24a39f53b1, 0xe6c85d67d77d2071, 0x6fd69bead795817a } }, { { 0xb14e535542f76e6d, 0x8b7fe913656d2242, 0xe9c5daff9829922e, 0x814f83b12d49cfcd, 0x33c9ab646a160495, 0x4e66404358ffdcc2 }, { 0xdf1b125c870fb427, 0xc33d41300fa2b9cd, 0x4a068e76f9563ac3, 0x9fd903087f2cc7f9, 0x7d47f4494024210, 0xa5529ddc44ceaeb8 }, { 0xc4283fd76d558227, 0xd49d940422e40d24, 0xdb21f97af1d8e35a, 0xe093c85979d6aa8f, 0xae503378aaa8735d, 0x85916d8ce323017c } }, { { 0xb23676451aade5a9, 0x171f01c92785eee7, 0x519081a2370bfd6f, 0x1b05eb1d36f2e204, 0x8b9718b42b71703b, 0x51e486fb71ef921c }, { 0x444f806504968c0a, 0x45cdf624aa9ba09e, 0x9f5a4d600fada76c, 0xa99fbb035dd8578e, 0xb7f39eb0e2f79f71, 0x8dc2e9aed9e449ab }, { 0x47f1396baa447a8e, 0x183c4095ed7e1212, 0x290e4e3e21d489d4, 0xad6ef9c9bccd5c1e, 0x7dcd7ea01bde8cd4, 0x9844fb32e8703ef4 } }, { { 0xffe20006f42e06e7, 0xf3752fd31138d96e, 0x431b51ff307b5c1c, 0x93f0babe3b9f7766, 0x6741d93b0be5d41b, 0xb6ddef06ca068d98 }, { 0xa5129c24d5740983, 0x93efd65f42df731b, 0x38b9815749844da7, 0xab8d9ed160f601f7, 0x64169027c8c7e8fe, 0x1c3162d520aa0f3d }, { 0x9f5cbbb4e1e6ed22, 0xbda29dc93f0ca7f6, 0x949e0f1aa0b4af37, 0x7b3f05103630cb18, 0x5d50023f14ed36b2, 0x69d84d0e09ef94fa } }, { { 0xfb64bf514222ad51, 0xe33de867981b451e, 0x810ebccfec0247b, 0xd770f80a3579e37d, 0xb87ac5e1940310d5, 0x1700209f5a64e662 }, { 0x21bb27dd889b4695, 0x248803926940c7d8, 0x56faefb85efd8d50, 0x22395c0c25c3c06c, 0x8783d561d03f3b1b, 0x4a10411b1c58c61a }, { 0xbbf0deda3b6d0d33, 0xf5a19f9686468900, 0x306e33694dda2575, 0x1868c5a061b9d3ba, 0xbd7767205067c664, 0x7ec22eeb30deeb2 } }, { { 0xe5deb039c47d09a, 0x39790b16b9f3fe7e, 0xc1f9fd48105c906, 0x4c5727eb9fce5012, 0x8c2213c37c35b393, 0xf3bb751d8b3e501e }, { 0xef3af4013e86eadc, 0xf2c12ef973061343, 0x953b81fe3e6d8d4c, 0x11830873261a6638, 0x819ead1b16a19958, 0xfe1d2a303f0fbbc6 }, { 0xc838e3f3cfb49f25, 0x632858a449285e25, 0xf2053076d036273c, 0xb76c0db27c4edbfb, 0xa8057c92deb10f1a, 0x6b9f477d02e5cd72 } }, { { 0x5ef4830ce9098e44, 0x19bdef15aaac4686, 0xb273defc578f7505, 0x76a61c341f60d729, 0x984f60221a576ad9, 0x3cff81b52a21a09a }, { 0xcdf777a8f86f7964, 0x29566f2721e6cc03, 0xaab222b18c305d71, 0xaa380898e4120cea, 0x9d1e6574c36314f6, 0x8a6296c24a564cb5 }, { 0x70fd5a35c1029820, 0x84b21782d7a334c4, 0xfad02e97ea396c1, 0xb1d66fbea65a0205, 0x4294abb374a424d2, 0x50eb712a488c9d80 } }, { { 0x9c7d7c3ce95aa828, 0xf785d5f5c88ea982, 0xeb77397f5c7fb79e, 0x3efd1360d99df617, 0xb735c7b20be224f7, 0xab7416b39175c670 }, { 0x7f9b81688f9183ec, 0xb65d12d681bbf9ee, 0xb5ca02d4e984e2c2, 0x87cb0dea88b8c304, 0x743f8efa6eb80e78, 0xcbfbb410c80fd960 }, { 0x5898933132ecdee6, 0x3b5c269a7fb2028, 0x1f930be54f9c3f36, 0x8e140039f5ec1fe6, 0x1c7894467c63fcd2, 0x6a1d1b6699973d40 } }, { { 0x595d354cff9ae559, 0x746ca16117848e, 0x5821d82952075eb5, 0xadff8bb079abebf, 0x9beb8f154de37400, 0x17b5166d6dc952fa }, { 0xbc00550405b7ee1a, 0xb97bfc34cd9029a5, 0xffdd02ea0023febf, 0xc0be92f9878f325a, 0x4a55059dcfd3fcd2, 0xbcef866456574440 }, { 0x921c0f72b7dc3910, 0x6510d6967a25b83e, 0xc52f27e95d940e02, 0xf4ee5f126209a48c, 0x44bf7f359b53e973, 0xac85e56e9033c0d3 } }, { { 0x94b8205399a20f10, 0x86667a6c6df74367, 0xfff6ce2341217a41, 0xaa64fca1f5df1d72, 0x49e41922e2c00f4b, 0x3721abcb15db0d25 }, { 0x81c495c4d0c3995, 0x3351d55a9908ad54, 0xdc42bdec4f28f0e4, 0x837e7d55a8bd8401, 0xfaaea81234eb1f62, 0x657be3a06303fd37 }, { 0x2709b5dc40c4c878, 0xb20986f323e07ccb, 0x96de00e6e40b7804, 0x89815a762a09965d, 0xd7d381e448a07a1e, 0xa26111d27789c55e } }, { { 0x3f19b65926f11a9c, 0xda021c03e7dc7dfb, 0x53cd8c41c0b636a, 0x1287003fd4730054, 0x5e3ddc3eb2a5a560, 0xda84570b942b0cb7 }, { 0x2b34c52b32004e0, 0xb7fd6d14881ebbb5, 0x591b7568a71d7745, 0x950c689a71958aa5, 0xba4faefd198c4275, 0xea37a19a29b13a92 }, { 0x92479301a0024b4c, 0xb16ff733ba5b08f8, 0xc247ebb7f765f40e, 0xfcd39bf40f2db856, 0xc73cfba2c0be409f, 0x305a9af406956fcd } }, { { 0x2ae66b4b5cccc0e0, 0x29a6726736268ac5, 0x27a7c87fae2696d0, 0x9b4bddf5af345d16, 0x65d4fa9b8996cdf6, 0x8c7a1f6b33f902c5 }, { 0x55d311440a56051c, 0x3d30778b5a897c0c, 0x63c98492f276ce0d, 0xa930bfbde5107e0e, 0x53c76cbe052acc6c, 0x7da803cc893535d1 }, { 0x8755b8884f077738, 0x9e3652796d0d90e, 0x693f515ff69e5b06, 0xfe16ccadcca852, 0x28ff2fead8028b71, 0xa6e9ed9c8a0cb0d0 } }, { { 0x1ff66460a9c9a4ff, 0x311e13ab92543632, 0x42faf245fa5a6495, 0x9b7b6915ffacbf5d, 0x4b13c2d629e1edaf, 0x8eee33b7fed58fc }, { 0x3b790b4961b2cf6f, 0x8d820eb4fb33825a, 0xaa537ebb2cbebc5b, 0x4ec3991be6691da7, 0xa1e7afb0d412e769, 0x43b2f3a9bb741ca0 }, { 0x601d56ab7f5538aa, 0xbec0ce2201e4b662, 0x725f679485a390d8, 0xf24e39d482b34c8a, 0x882056bcaf071abe, 0xddc86e8caa5d1cd3 } }, { { 0x9884cd106f6aca4d, 0x2a80c2aa39e24f23, 0x3d4ce741d879fde1, 0x78ed92360f4c352e, 0x122c843747a41c19, 0x3a9b94b17e03186b }, { 0x96c4dad4b8abc740, 0x12adedc28d452403, 0x57c603c7a9ae4716, 0x647cb9c178eeb3ff, 0x2e82142b7eede89b, 0x87d90e7da2769bf9 }, { 0x60b1c2c05eb7c227, 0x5041c1ac1311374e, 0x68056eb02c4cd442, 0x427667b9bd2a28db, 0x9024ab7cea4dd9d0, 0xf3c8086a6aebab2b } }, { { 0xc77165931804689c, 0x96eeadc93cb732d9, 0x7a3624d224296571, 0x20c675f061cbe6f, 0xfb3fc61579fd60e0, 0x24618aaec2eed64c }, { 0xbfbd4fb54b0ef90d, 0x91ea459f89fc4806, 0x6ff7f6019fc2f4a6, 0xceceea0117b0f1d4, 0x3c891b27a3568b80, 0x603a35a840db48a7 }, { 0x48a494937f03209a, 0x96d44ac2dd456195, 0x2dbfcb1a439a8cae, 0xb19859f028abcfb2, 0x38f8f7f02d294a53, 0xeb9be1c41bc3e33d } } }, { { { 0x9ad865b74a183d5, 0x9352b49d3a378d32, 0x8dbc65ed1857dba7, 0x803b33b3f63c2f6e, 0xeddbd49c5c514bd4, 0x996612f9e99df648 }, { 0xaebdb1f158eac66e, 0x5e7a0f157cd31a2d, 0xe39a7e0a1ac8186, 0xdcd4df7061e5b687, 0xc2ad969d06529005, 0x833c96c28042e969 }, { 0x21280830245f1fd4, 0x12548e4a0dc0d6a4, 0x5013b4dfc79ba6e7, 0x49b89336d37d93b6, 0x64f7632d8799e013, 0xc1c88156caae57f1 } }, { { 0x3a760a5763c30948, 0xf744690bdfa9c9b2, 0x8c61e48735e4338d, 0x4f777f821b6c1a6d, 0xa5d4746545c16015, 0x2e8ace4b5400cdb6 }, { 0x582944427870bf00, 0x381bbfc928c278f7, 0xf78211334b2b2ccb, 0xe9ed912ee2e9b528, 0xbc0d4a68ef5b7f3c, 0x4509121fde4b71e9 }, { 0x43282470a2555840, 0xdaf136dc8e41fa77, 0x46190a862f211c1d, 0x5e18a5445e299435, 0x34b41edcb7d9cf7a, 0x897a64fb10d39c5 } }, { { 0xe297e15cd22b677f, 0x402f7d771507a667, 0x25751aa9067e122b, 0xa0fd848153d30ac3, 0x6ffdff66b9376800, 0xc8ec24b619c0c492 }, { 0xb1fbbdaecf0bffe8, 0x86e17019002cf0ec, 0x433a7425c7a767b, 0xb84db8c70dafbbfd, 0x7551653e4afab8c, 0xb96b3e1b71658de4 }, { 0x60df6291e8101007, 0xc7660630fdc85d71, 0xecab7a7cd6d6a5b4, 0xf12d2281849f6fc0, 0x7d5ac395d70d405a, 0x39bba916c9882c07 } }, { { 0x9022a11ead4782ae, 0x8abaf64fc3efc1c6, 0x2b35076934a803f8, 0x198f0d2ecf0fc39d, 0xb63c5a37bc183024, 0xf91bdf90591d7c82 }, { 0x92bce7ecff0102aa, 0x19ca7faf8f7b4a0c, 0xe3f948fdd95520d, 0xa6945b2ed8aec8fe, 0xef3577ac0dfe7773, 0xfdbd25e23d074c44 }, { 0x9e6f5baadfaead6, 0x39a5148e9c40891e, 0x770920c890a402d7, 0x8efda5b06b11ad59, 0xa5e0373b12dbd162, 0xaac5683acc305c47 } }, { { 0x9422aeb3f05a0a35, 0x4a27bf765e6348f1, 0x90738176569f940c, 0xe7a29b547c9b8856, 0xbdf0c89260af53e, 0x71f074f2dbdf2af6 }, { 0xe7acdf6aa91f7e46, 0x3ef1b7b24aa9403b, 0x8df0a52481f0fd07, 0xdc5950e851589a85, 0xcce2b3b07fb4bce1, 0xb6824433e5551b8c }, { 0xf11993383d729689, 0xc320fb5ecff0ac69, 0xf0c9618bb6168e14, 0xdee03f6e0217593, 0xf57098158de977e2, 0xdf36330b8c68c239 } }, { { 0x654e4485fb647773, 0x3b0e270936444683, 0xb1058504794dbf00, 0x5890c1818c410ae2, 0x3f91b2f7d0f66dc5, 0x77ee6e1a4bf34223 }, { 0xdaefd5f7fc0b689e, 0x3ecadcdda3e0656e, 0xe464a882c500dfbe, 0x22e82762ae85c895, 0xe84e5452e5c8afd2, 0xd60a51462ee32f68 }, { 0xe8bb5e316070e2bb, 0x192e0016756712e9, 0xa5de4afcedfb00be, 0x726e6dc3b99ec6b2, 0xc09901d608d9ef98, 0xb62cc1190d4b9d32 } }, { { 0x81846c84333b9411, 0x39f4556bebef1704, 0xf557bca07088769a, 0x15cc60f2342dc188, 0x30318929beb2f6be, 0x8db6fe52151b30d9 }, { 0xc0acba186236cc68, 0x67acb02076ab146, 0xbe398b495e85f0b9, 0xa34edf68506074ae, 0xaab7d49ecff783ec, 0x86c1000116ec6737 }, { 0x9bb4f1a2feb74cde, 0x7bfebf7c4efeec43, 0xe44b6a2a8f1e311c, 0xb615f2b31a727e64, 0xa78a96993f8b7a15, 0x3bd737f0dba264fb } }, { { 0xaf2fc2663fd14ed1, 0xe0cda4e431466d48, 0x15c2eca083f386e4, 0xcc203dad8c5a32f8, 0xaeb1fea451934b57, 0x2a5d8e193957f411 }, { 0xacf25992ecffde7f, 0xe27a2d96b8b0443, 0xe2c1d20fb2f0bdd5, 0xe2a735422f3e1266, 0x5081d873fc99c739, 0x8609e21666e09a2e }, { 0xdafde317818f9b9b, 0x3af1dd31ec132c88, 0xcd5fc16cf9b15379, 0x1d6a3a38be8fd364, 0xf0221237ca6c659e, 0x96c482cba990aa69 } }, { { 0x2f1d640c389659c5, 0x750e38f7d2cd6455, 0xd11338f80f4a59f5, 0x9ef03263001674ec, 0x954c0da4a34a8d53, 0x447e9c1c0cdb53d4 }, { 0x74799fc92d5dd1a3, 0xea6053720314ea6f, 0x1baaa80864ddb0ac, 0x3299538a28380983, 0x2ff880479945a932, 0x3419eddc92a53e27 }, { 0xa230af56409942e2, 0xcc2ba67dbd8bcd70, 0xa87c446c3a72142b, 0xb2835327fa290f71, 0x46d37f6a055395e0, 0x4ac46c095f892ac4 } }, { { 0xa10aa2efdc3e9d14, 0xa628f1ca7839561e, 0xfc98a3fab544252d, 0xb88de2d3b47c5e1f, 0xd9fc673b99325b15, 0x67dc8282e063f436 }, { 0x244ffc6df8bb7f4, 0xad558dd22d0cf2f8, 0x411710e14ddc1eb3, 0x66552aba46f69482, 0xf648167504cef5eb, 0xdd90afce478578d4 }, { 0x9a098a17421eb2eb, 0xde198f8745322e53, 0x87b412619df83346, 0x152ccd3ef7156f27, 0xdc8fd87491d6a6dc, 0xf7d28d415e30df5 } }, { { 0xa99e3b2e42e05981, 0xacfcfbea81cea2f0, 0x461042e38c7da28f, 0xfb64a6673d187e3d, 0xc2481fb810c02508, 0x282913c72a1e4927 }, { 0x39e77ce1325aabe6, 0x6951c6f6547bfed1, 0xba917d89633726b7, 0xeb5cd445cf06a07e, 0xd74e25e967ae3d37, 0xc944e59ecfd6fb89 }, { 0x2cbf4e5f28a666ad, 0xba46566ef20ae4c6, 0x6da55ed8f639f547, 0x448f9e099a8c7352, 0x173541e64e523dcc, 0x21f9d25c6b8f9f3c } }, { { 0xf2e7995ce5f0cfd5, 0xfd5edb4aee9b05d4, 0xf08384375050d812, 0x9abc6c12602bf8ef, 0x8f9a5b9a38da491b, 0x7de23e40448d7588 }, { 0xfb21ecf7d52c849f, 0xf5ee45a286b67e6f, 0xf1f824d5b3db2ee9, 0x496486b4c223f44, 0x22ec08acd7435ac3, 0x5e8c1bc2ddebefeb }, { 0xb58cf65caa9b50d6, 0xe8b444a1f577a272, 0x2273480f8744a33, 0x24f8dcec437c0bce, 0x7d01cb8fb6b3eefe, 0xcf30ff07d617699 } }, { { 0xfd1f8fa0a8b254dd, 0x3769212f15961f2f, 0x62a37165d5deb3c4, 0x3f3546fb78856834, 0x3faf23b477922141, 0x5eaf73293bb463aa }, { 0x9295cb7d424ec53c, 0x7ee9b75e6e17b197, 0xc91e15f167d6f009, 0x931f8e016d0e3f29, 0x50a3de41d339edd1, 0x39c9f684fd9c6a75 }, { 0x7b6aa34c617bcbc7, 0x51d7a42fa916d1eb, 0x72541361a2cf0ef9, 0x64b573a0f61dc7cc, 0x1fd8ebe4c478b1ac, 0x2c8325dc5c9aa503 } }, { { 0x90de93d5b0c5130e, 0xa50e33ca46282730, 0x2c10a52fc0625ab6, 0x1c2063c81f254d84, 0xcdab90bc7e49c5dd, 0x152faab1bd166e0c }, { 0x3e97c3c7091e6478, 0x170898e35c285459, 0x4efe6004ac3ce549, 0x72dda07f56edefd6, 0x93b2df06ba186ce3, 0x79bc8f3af73a8179 }, { 0x79adde87113d7860, 0x32a128256494df35, 0x6c8af01173c78e91, 0x4fb072ad9fb4988e, 0x56c481f6e83d4c9, 0x5b135125d724aec6 } }, { { 0xe7abc31a4e40af79, 0x334cd1fec23018a7, 0x5ef3affe09c8d0d, 0x862fe16e1327e9be, 0xe46cdc9efdde5fa6, 0xd2628fbdf2079ddb }, { 0x6f199988cc33707f, 0x7985d7db1db99687, 0x83d945cb693775da, 0xdfe25d52f725ce95, 0x1b2af6fd366bd9d7, 0x839b1401b52561db }, { 0x3190847e27e70c9a, 0x8f1279f77177cea, 0xb2cbd53897b96718, 0x25734850958316a8, 0x582a58cb1c7ed310, 0x5b38914b06e0ebad } } }, { { { 0x2de7ac12b689a2e0, 0x2b712187ff6e330f, 0x63b49a19fa5f9d2, 0x487824e2645dc61, 0x66c6ae4683136361, 0xa1e50b0ae9dddd45 }, { 0x7c82e3bfa40c4861, 0x5d730dcf94c85be9, 0x63f1ef84085d9c00, 0xe57b0c7e9fc3c943, 0xf55f34dcd539a1ac, 0x2e81d1df8a2a7685 }, { 0x5e53db8c89d61082, 0x1b71c569805e34d5, 0x7aeb1dde2c86533b, 0xc691137d3021111c, 0x579a9e78b0f4c1b, 0x1b0a8115c0ae51ed } }, { { 0x75d50c2319f689a1, 0x9e27552062252731, 0xf24bec7c8cfde359, 0xc5fe8ced2e5c8218, 0xc2c45b03b1ee4bb4, 0xe5db9358c3d3f8d2 }, { 0x279f16fe346950e9, 0xb1693a69ce0191d1, 0x2ae6c3925b489bad, 0xfda01e6841f707db, 0x1b9d6583e0e63b67, 0xb9cc10410aec5406 }, { 0xc1d864ebd98a7841, 0x9a53b006e4909958, 0xb4b05fdb1f51dd5e, 0x6bde3269282f3703, 0x23839db4c3f56e52, 0x3276619749c42d70 } }, { { 0x963652e5021d2713, 0x10226476e30e9583, 0xd19d3e5ce909b0e2, 0x6157208c1ec195eb, 0x7778dc53ba665fc3, 0x1ef942a6dea0bd65 }, { 0x22f25238a16568c6, 0x971588de7749b7c, 0xcc2576f894345bb5, 0xf9ea5e26b1ce6805, 0xbf3f711c180bdb25, 0x3ea2d800eb546c47 }, { 0xd7ae2be54982f70b, 0x99b46efb4d8b6fcb, 0xf6b6f64c600e0a81, 0x8b42f01d6abd9a3e, 0x229e027a362cdaca, 0x799f5ac2803cfbc3 } }, { { 0x2ac28a8be8018faa, 0x3f993fb9777cd99f, 0x9bb60a4a9d13cef, 0xd7c39ac926198ee8, 0x1cfd67e7b83cf9d7, 0xae4d9a674075d974 }, { 0x2a0b1012157dfaf6, 0x8de8c3243839817, 0xaddd365acad1fd63, 0x173cbf09c02a874d, 0x38eb3552f688c81c, 0x6bc642880da62389 }, { 0x73d96809225a4c57, 0x262b69a2d7f3ff2b, 0x683cc16171daca34, 0x159c6f3dfb842ccd, 0x3101029867ba98a5, 0xcf23e23666c531c9 } }, { { 0xbdbe9e72fa621420, 0x7ee4a4caa165080b, 0xb8e2fa7cf337c7c8, 0xc456e7e80c458ed8, 0x4e98fe6ec6546452, 0x4cd0ab68e2ad1264 }, { 0xe18bc6bf0bb214d4, 0xe6b0567a3c9e4b89, 0x1764f0c139f16150, 0x6bf497929e50af04, 0x4d02e80dbd3bcd59, 0x5c8ab781c35ef26d }, { 0x2df5160b65a0e75e, 0xc90885fd71c77e08, 0xcdbfebf8f98841d7, 0x84172ebdde572809, 0xdbcd48f41b77f644, 0xba7dbbdac96c5451 } }, { { 0xb767fe898de8a2a4, 0x3fe0aebc5e194d19, 0xe979943b87dfadaa, 0x5117d554e8caa7b6, 0x8c7439a937983534, 0xd5d72ab8e0a4a314 }, { 0x7d6fce3bfa2b4efb, 0x99f15e86bd61cf68, 0x775aab6d74f979ed, 0x6a5f275f1d1a95b2, 0x6355396538107613, 0xa9824eada74a4aa3 }, { 0xd090e18e1e3f3bef, 0x6641718465e624, 0xd8c54d703d2df6ca, 0xee2b09d702b263bb, 0xd09c09835f157be0, 0xe9244334022dbe65 } }, { { 0xc8d13670f0991982, 0xfdef354faa57875, 0x96d2ab02bc68ea0a, 0xe38ab07225d5b9b7, 0x8411b81d705e696c, 0xf4455c9e318f0ea }, { 0xf7f03ea073b61d94, 0x14a5cf140da53edf, 0xb5eba34d48b0de2f, 0x18f7c6ea67cdfbac, 0xf41f9e7aa8f88881, 0xf1d653fadeaea24d }, { 0x165ebd8d223b253f, 0x63d81becc1436ffc, 0xc3cfd550161fb430, 0x65bc83abcd8109c3, 0xd0c5a6536c507aff, 0xad4033073addf5a6 } }, { { 0x59731f59150022ee, 0x6adc453bb078bb40, 0x679927bfd73a0807, 0x7a107baf667d7347, 0xc8334435ba0d079c, 0xbb4350dbf755b413 }, { 0xc00942c28fe1501c, 0x9cce8f062b41b967, 0x8a3ce47a5ebe9805, 0x7dda0735af07d9e7, 0x1c0695e06a493f0c, 0xf6fe942f9e2836e9 }, { 0x7c079fbb1e903e61, 0xff365f699d481c02, 0xaab400f8cf735d2c, 0xef8d534ef9d65635, 0x817ae60e40490f9e, 0x2c3f9aa46f4f9701 } }, { { 0xb1dcde45d6bfca4d, 0x440d74785903f0c5, 0x3f97b927321c798b, 0xbcd75cbf7428615a, 0x39430af3f1a67199, 0x9aa6822b03a6b37a }, { 0xda8a54c31157898a, 0xc6c18139c1c9c652, 0x9fb9993e5f9e8685, 0x6c6d785e714d67ef, 0x305df0832d30156b, 0xb5c60b27b286904b }, { 0x3618d7411e8bae2b, 0x872f188f832ede86, 0xaa5f5434f7409eb3, 0x4bdc4069bb9cfa15, 0x538dfb2dc0eb7ad8, 0x3c1912475710799c } }, { { 0x6b41e67468f077, 0x1a296f67678aa676, 0x591bcd44e8c5fa18, 0xf300e7df1dc72fd2, 0xe5e97c27388bbea9, 0x30e98d30887c2e30 }, { 0xd70c4429fbadf6cc, 0x1ec7cbaffa1eda40, 0x4e2c390ba6934a9b, 0xf5754df2f1288558, 0xf367758191bf8f3, 0x1e0652225195332 }, { 0xf5c5662ccaa77fc, 0x2907bfa3910caaeb, 0xc5703f5d29cb88ff, 0xc9e4848ed98e1136, 0xd6c37c227eb57cd5, 0xb1370e5565785669 } }, { { 0xce73cbeac1cdee50, 0x78a99444752a504c, 0x70ecf276118401a7, 0x5a425fc03e226d3b, 0x4aa2cae6ad7e7bf5, 0x426801264db12a6d }, { 0x878b94ab744e4b05, 0x972a7072d7ec91a1, 0x34b560041ef8b5d9, 0xa3b8c25d7c350266, 0x35930d1d9d9626db, 0x78cca142fe81a245 }, { 0x2bda033fae9edec3, 0x214d90d43d0401f1, 0x46fb70687b5c2cca, 0xaa1343ecf67a2267, 0xf16aafaf65db1576, 0x789701be16218bfa } }, { { 0x4cab9e75b189702e, 0x687c69cc3258c959, 0xefc97bde01a10108, 0xc6ddd4f1dec84416, 0x676166bd2f5b2336, 0x806f7e1670b7097 }, { 0xb6e5112b6dff8527, 0x9b61c57b81ebb48a, 0x94b8830ac6bb1fb0, 0x370cff21a99bf5ef, 0xdf152db299d7f0d8, 0x5052957c81165379 }, { 0x74d62864ae0c9c70, 0x9addd26b0151a9c6, 0xbeb099d581401798, 0x583f0ebad040ffbd, 0xcf1eb0cb318a42a4, 0x4dfc7225953aa07a } }, { { 0x7d4ead6b327d9bb3, 0xad61d0cca4790beb, 0x23e9a2523145c052, 0xdbe5b0aafb0699c3, 0x4bd72ab79cc9a7d5, 0xc0431f83e1f2a26c }, { 0xa740358e55911c90, 0xe8b75365600afdf7, 0xc27802de07df5531, 0x80dbe3fd53b969b5, 0xe3ae8eef9f7c4cf5, 0x7ae4f0aadd134674 }, { 0xd5ea22bbb0721bf9, 0x206cab88d8ae3f37, 0x38dcaa4ff4146112, 0xfa635330dec7217d, 0xd67105f050abd791, 0x61628e82a685ed9a } }, { { 0x9d4188282f161992, 0x6ed4cd786c4162ac, 0x6d7884648b5c4987, 0x5c616c7d5e278326, 0x3e71fc5de36d38b9, 0x5408f8059a408323 }, { 0x4cc772555e27c27a, 0xae11868ebac6e75c, 0x9d8518196ee1dd2d, 0xa2ff18b1d130e905, 0x534782f96f27e059, 0x160789d227c5d550 }, { 0xc215df667b802bba, 0xeaf878b5a7e5df4c, 0x4b88f286ce289313, 0x497f08c430fa4fcf, 0x92b835bc01c5929e, 0x9a7e8a757d8f8b45 } }, { { 0xd3446203134442b4, 0xbf084daf38ca30ec, 0x594db52922be7339, 0xb96c231396a011c0, 0xafc49112743b031b, 0x2b9c29bacfa237ab }, { 0x1bf10b0ef8744f68, 0xd511ea9c62f5b9f, 0x34aa21300d2ba44e, 0x5c7e30353b07449, 0xfb08b9fc00feb28a, 0xf0056c729ce1f386 }, { 0x397278d2eae6f99d, 0xfd8d0e92484b743b, 0x2ce0173873b61b37, 0x6cf120ec5ae41b29, 0x135a234a0f6caa73, 0xb8ad94744518dd } } }, { { { 0x88a68a06cb9be3a, 0x20a78cc25c976352, 0x1ee5c1317776fd29, 0x4aadb0100d6f0c1b, 0xc8666ed34f5327a9, 0x23dabedbee487220 }, { 0x8ab5df6a7ce32d1b, 0xf87cb7aed1988596, 0xede8766d0233f268, 0x7fc59aaf0a4c0d49, 0x333c682322f903b5, 0xf4c1bb6a763882e2 }, { 0x6a4708c7c5f5e095, 0x9315f0f3b38123ce, 0xa8a6b7cb88115299, 0x6840c0b1f2a4d55c, 0x11fa6fb44afb0bf3, 0xa9010efc1be85ba6 } }, { { 0x9196254b9919ebe3, 0x7b3e196dc515d765, 0x240668af76c1e8a0, 0x7576acc5502478, 0xc2879cc6e214dbc4, 0x4faea5e6be48d01a }, { 0x16075380f23fc2b8, 0x54517b1b140194a0, 0x1b72e9e9275602c9, 0xa84c81aaa5d71c57, 0x8bf4fb0062375467, 0xede15a3cbcf990fb }, { 0x4614e3d62c32753f, 0x8b7bf193648c7aeb, 0x61dffadb31d1a9a1, 0x9856db12d47858fa, 0xf7611d165261b0fd, 0x9631beb7b1c46dc5 } }, { { 0x18abf6e3b0ecd587, 0x9883c9b410fa5e83, 0xc84cab2087a52aca, 0xfe6ccb45a4dab9f8, 0x104c4fe2c873a94d, 0xc39a1da3f05a254e }, { 0xe8beb5ff7c0a9516, 0x9d755a1bc13186a7, 0x18556d716ef001e0, 0x2930b5f7dbfa291c, 0xcce6c6ec2239c8c4, 0x1d912ff5b51b542d }, { 0x6de23d6c1b09107e, 0x7c613d3353a6c03f, 0x6428ecf5b2700cb9, 0xeddca2962c2b61f7, 0xfc8f2a759938f8f3, 0x84473b4ef5f0a99c } }, { { 0x5249f0143f4dfa4c, 0x5fce1d3fff55491c, 0x7a32c1bd1fbb95be, 0x3ec45db6523efb00, 0x4d5bb423a26d23f4, 0x28f200671b52a09e }, { 0xf8cb16851f08b12, 0x89b583fa9cb88a3b, 0x4e71ad844d07fa9f, 0x3b18bad16a929fdc, 0x23bd577f64ce5478, 0xebd85bb99058a7fe }, { 0x1637af20d2ebe5e0, 0xccd28ced39ac6d4c, 0xffa20837e71ec8a8, 0xa34a4772b2ded17a, 0x3c41db18f875dead, 0x172200d369cc25f } }, { { 0xc6b2e9ac42819b43, 0xa65d42acf63b4503, 0xe05a9a3aa222f665, 0xdd99a262c086d024, 0xce2081fced91c13e, 0xa5c772fbb691585f }, { 0x4bdca7310dd368de, 0x8cc9add19618432, 0x1f410d38c776d01e, 0x9c982467ed45937, 0x5a9ebf5cdf2661fd, 0xa876285c425fd169 }, { 0xb561485f7d39f167, 0x1da74083856a3231, 0xbcab8ed921f4ffce, 0x1fb4e886c608e767, 0x23642f57c299a2ce, 0xc644a344a23e5573 } }, { { 0xd1756f6eb8bf4e20, 0x205d0c531d789395, 0x9140523245422a69, 0x22d3c2d6962c2310, 0xc13f4f1018ed0510, 0x5aebd80cf7c59f47 }, { 0xa0bbc1fbcc988c0e, 0xe0d6014002f0e8e, 0x53ed7f457ad3805b, 0x1c3550cac246a700, 0x7d8a593f2090bfcf, 0xa78d85971131b5d6 }, { 0xbf6a5ff2381d93ad, 0xc18dee9583635cb7, 0x164bede08da0b8ae, 0x56f88e349f17ef42, 0x32d32d63dd8b3016, 0xf0cda902dca7ebf5 } }, { { 0x296253728105fd83, 0xb79a5440bd698f6f, 0x70f40452182a527d, 0xdc057762b9c4dbc, 0x4e9037785bb7221c, 0xb8063f7cf5c0eead }, { 0xa9c84549e205d4cc, 0x651e7e35ff5ff4d7, 0x732d0dfc05d7c46a, 0x8185f702cd0a2541, 0x3f4fa0883d958618, 0x5267e6365ab68e8 }, { 0xdc63d5a93a7cbe02, 0x3befbc0df328a478, 0x90aa8083d80c329e, 0x39a75e791dc1c797, 0x8f9d281d410af4e6, 0xe3188e0bf9955650 } }, { { 0xaf7f16a3172fbb30, 0x6ab8936df522f0b5, 0xe1dce822102e21ed, 0xb3b4c9f121317f19, 0xd3cd12e95321ad4a, 0xb9351ae023980882 }, { 0x966b6052a0cca89a, 0xb3a24daf3b1832, 0x26b46b9ae9f228b4, 0x320327812806575b, 0x839e88b4b68b2abe, 0x5368214da8bd097b }, { 0xad271640db9db3da, 0x3b07e4235e527209, 0xe694f309af3539b4, 0xfdb1d4020d2506fc, 0xb37981749f5c5ab6, 0xebf5de39e0398492 } }, { { 0xdad295f42b225b52, 0x210152e3eacb0d48, 0x8233d359298e9840, 0x559e1522ff56d8dc, 0xeede7b10cdc37620, 0xb6d7bf657ab06d27 }, { 0x328351c3ad1fa022, 0xb8dcad446b8ea774, 0x93e5e59369d5d453, 0x25858102a3fb4f81, 0xcacdbb8f1e8f459e, 0xfc9df3c68453a8ec }, { 0x902612965effc5bb, 0xf3b915dd812d7aaa, 0x318fb883315c1be9, 0xea9a7cc89110b2ac, 0x98f06b0a871060ec, 0x8add2c3bd85d36d } }, { { 0x9807b952e4178970, 0xd1dd306782ed9d2f, 0xc54c651a8cd891cb, 0x78a86b5c031edfd0, 0x162190599a9da90e, 0x6dc055e1c2b5e37b }, { 0xb13cf5519656fc19, 0x75930e8c650999a5, 0x5fbe1d120d8b5fd0, 0x572200fea283960c, 0x2f4f538fca8c0f8e, 0x8ed5d2c992f81de8 }, { 0x35630aca321795cb, 0xc348695e15a2ac19, 0x3ceb1c9c5ef4bed2, 0x93c01a1720fe6630, 0xf186a5175ebb9b65, 0x6d2b2e1f8daf71ee } }, { { 0xe403865f45576ef0, 0x45403521c2f163f0, 0xc2a62a7a23f351ff, 0xaf5ed714a9b3973d, 0xfb919a3319f1069f, 0xc075754999f629bc }, { 0x7a3f445551f44524, 0x6c465d71bfb3eb05, 0x704d0ecc50769586, 0xc94208d1d079da88, 0x234bc01bf081c662, 0xcf9cef3cbb14b85 }, { 0xfd1734f7b820dbc, 0xe1cdf7c91177c5b1, 0xe30496af408aa1a6, 0xe2ef99dfb2d607be, 0xcfbcfcd4392eb5ab, 0xcb43caef3217dcea } }, { { 0xa834a406b3a603e5, 0x228ad77eadbeb0b1, 0xc7a126bb10c8291e, 0xccd43fa3eb61c6ed, 0xc2870d9d620d99c5, 0xd7af210d832360ad }, { 0xf1b1898fc4445a4e, 0xc3a96e12d3dfaf2, 0x6317249bb247a959, 0x1c64fc1de62f1cff, 0x4e09984eb33d0132, 0x48cc095ef5ec90a8 }, { 0xeb62955b4fb05a75, 0x762e4fc4b5295aa0, 0xc689bddc5b6cd84b, 0xcefac094a1c9fc18, 0xe9ae494f1fd92d80, 0x4e6f4db4d227f35b } }, { { 0xff28c65c1da9ac42, 0x48f74405bc5b24ef, 0xfa3c9145f75e4f20, 0x4f850a35c6fd1cc7, 0xa6c65933559cd0f9, 0xd250f621c66183f }, { 0x16e1cbcceaf417d0, 0xba7604e879a7e3ff, 0x4a1c8723bb8f0dfb, 0x67a0d4448085590a, 0xc9649e203ce46ffb, 0xf57637d6a9b7d258 }, { 0xfe9a815ac6272db7, 0x9606eea0cdbd9c97, 0x3b678bee262f5aa2, 0xf774c6b90832ca39, 0x171cb7eda9c1b3c4, 0xb15b0be95f402f47 } }, { { 0x3488f51dad6c7865, 0xd0cd1a9346c45b54, 0x85b84b03e38513e, 0x529a83cb73f59d40, 0x2bc659deb2c4d867, 0x17f415a4dc83c1eb }, { 0x220da031fb50306, 0xe076b59d998779b0, 0xf83bc6e4e668e976, 0x99f468e062a9fe25, 0x26651e801b9b9c66, 0x9c044e0c5e116ab0 }, { 0x4e44cf47ef4d23da, 0x24489e4db3759414, 0x6d0388e3719fda32, 0x5dc3c72d40a09d1c, 0xac5d9ba892feb16, 0xa490b9596c642db9 } }, { { 0xe629b9ae2c7833da, 0x9b9d809e4acdf4b6, 0x2a5e0cfc86951815, 0x154208940bc092c6, 0x625f17d566de8853, 0xbb511257b6f1b671 }, { 0xbf60a2866e51ab46, 0xdebf4a0428360f08, 0x41fc91e86ac72f13, 0x93625ff1bdb9d6b7, 0x602c3b74febea51d, 0x9c9cca254e80e980 }, { 0x515113ad490b5d3a, 0x93d5c8504f02db9b, 0x27befc246e6079cc, 0x29e105b8581cff2d, 0x3cde5fd7140c4673, 0xb48503beb19066f0 } } }, { { { 0x433dea9b1c6c0ab, 0x76ff87fa720e9912, 0x4c2cf16fc00b1bd7, 0xb4c1a61f0c12a85c, 0x5aec75971ec07f7d, 0x6d95d677ccd17fe4 }, { 0xad1334f604ab5f12, 0x1da87df2b47f0e95, 0xe26b73f1656156d0, 0xa1373db373cb5699, 0x8ffa4708ba2b483c, 0xe48b0998b6489a9a }, { 0x253bbbf2b9276f72, 0x1fb178ffb1092c14, 0x909abf592cbed4c8, 0x27e71332b0c5effd, 0x4ff8d12d8293bcf4, 0x10de038d664856e7 } }, { { 0xa0368f037d2835f0, 0x9b23a5c18c1b88b8, 0x95afb30a75ae3a74, 0x9d6facf12c547890, 0x867d03beebae8429, 0xdbcb43f48d4ec0c9 }, { 0x8f711559fed35c9a, 0xb1abdba47f648f67, 0x62ccc8a0faf464e5, 0x382dc443d569d241, 0x724ded3e798fe10f, 0xc5c4e7b1e540dd20 }, { 0x8293f756af52fff6, 0x3e6b1f5538669c73, 0xbb83025d5bc2eed4, 0x44edad7ac7883a50, 0x9afe977e127dee5c, 0xbd2e3c2e4812f5e6 } }, { { 0x6f7e13647e1907cc, 0x5727be9f6aa4d722, 0xc8a029aa339f9444, 0x5d6f5366c5897e53, 0x96e2c7b462a77ba, 0xf8c8601684bea78e }, { 0xd119b47dbee48bd7, 0x94934ea590c348e9, 0x6a7d5b28a597b068, 0xcddb480c3834c67f, 0xc08017286c6f2adc, 0xcfff34f3385302ce }, { 0x4176890d8c4aa1e6, 0x38cd7f762e7baf43, 0x8549193b3f8e6b15, 0x977c191250d8204d, 0xcbf45731a2616b86, 0x59d694436075e6bf } }, { { 0x9027de54938ca195, 0xbdd57d3ee972244, 0x1c8e9345dbcc92b9, 0xaa7c930611e25197, 0xd0e002169fd18c98, 0xd44e38569c36e0f5 }, { 0xa39b5e7422987610, 0xf99c0bca762c225a, 0x52ab28e829503510, 0x599873ea3628e69b, 0x40b8f13bff26570f, 0x12510fde2ba9ced }, { 0x29400e9db13a5ab1, 0x1a0d1497b1b069c, 0xd3648d090d74c292, 0x2b939720a686746d, 0xe3e84d3454dbdd1, 0x6d6bc4c64f9c7524 } }, { { 0x4a452dfd6e55adb5, 0x4a75f9eca1541869, 0x168982a505e45ef2, 0x15ebffc1c6c8a2f2, 0xb35c39b1b5c8bf5, 0xd8b722d37e18e1cb }, { 0x679b006737c7c498, 0xbc0c2fa70cf1873c, 0x4941a7cd0a608cce, 0xe314eea052267b4f, 0xa0cd88856d28ad0c, 0xa15ea754190d16af }, { 0xe3ee7fe324a6dea3, 0x73cf418ac98944eb, 0x4421977cd9f91c77, 0x60689fe51a59730b, 0x5f518963a8f192be, 0xcbccc9c7cd5e9b62 } }, { { 0x4562f3863ba2a507, 0x3a7659e15c5aabaf, 0xf073ca32d521009, 0x3f72993bcb0c7162, 0x843d05917c62c676, 0xcf619706cbfe87ab }, { 0x6e6d8fd49cca2cd4, 0xe818d643be928c01, 0x246764051b858d3a, 0x67d261954aa362b7, 0xcb818e6c6813745d, 0x1657cb9cc4a54887 }, { 0xd5da8034b398c60d, 0xd5281b59210160e9, 0x3dbf0e3b1524449f, 0x209a21c0d3c15925, 0x3ca9d1608e8b15a9, 0x83cbc728961990b2 } }, { { 0x62e70749b34754f7, 0xa13c333d7f3d0f0a, 0x2bdd32b6be5eed91, 0x6d7c3f86dd42d052, 0xd6344c9cedb1fde3, 0xda55a794d14dc1f3 }, { 0x330cf26cdd147008, 0xd857c0f96de7a7e4, 0xf171624f0f5378a4, 0x387ed57d98d1bed4, 0x1ec8ae6e17512f74, 0x5e43ff04674a7cb5 }, { 0x70715db25e584212, 0xeb4d389934292514, 0x2d95cd81b8c7475c, 0xce3b059cf8942b73, 0x77788721b898b8ec, 0x8def756705708b95 } }, { { 0x41227c17915e8d10, 0x90f196f8b5c2791e, 0x124d5cc8eafb4527, 0x1699b935b3b746ff, 0x23cc52645687b7c8, 0x27805a298bcf068b }, { 0x96f564466a0a6a35, 0x6af604704dcfdea2, 0x360826f0cf1dda70, 0xfca37f373b0bf37b, 0x9060ce6747844d88, 0xc510a5f8948ec037 }, { 0x54c7730ec3ced9f3, 0x4f977de184f11683, 0xa473af84a3b701dd, 0xfc006ef7c038e958, 0x6b2edbf737b9b5f9, 0x2b936429451f9cb3 } }, { { 0xf27622268756fd5d, 0x242433cab9a359e1, 0x729be15074d8076b, 0x9e7bdd8490749e62, 0x9fdc7a523d2ad164, 0xbcdd15d35c3bb8ea }, { 0xd9a971158a5f91f3, 0xd33375cb639dd4fd, 0x12ae7861fe5e6f9d, 0xe94de8d3d70b71c, 0x3d69ae6dbd3864af, 0x221d15df58c6761d }, { 0x3039b9a856a24e62, 0xbb0cba14f01c486e, 0x98fe02fdfbddc4dc, 0x89e23ec7f79a2915, 0x8abf9f612327d1e1, 0xa9a2826945b35578 } }, { { 0xdd31aea4c3f89dd7, 0xff8a98c2fdad2fc3, 0x1d9559b99bad2435, 0xe2c6f594bdf30429, 0xd341520274fec973, 0x1f2896c6535a7b2 }, { 0x9cdfca32e82456db, 0xa09d831605757b2, 0x2199172f38684a89, 0x11561bd23a2667c3, 0xff8beb23febf5422, 0x4c387e66f3b302bf }, { 0x26b1f2269280b332, 0xa6765c1682c2c3de, 0x1a2c106de180606a, 0x99bc8de3581253fa, 0x938bec1c2ea396ad, 0xeb28bcd14e76c42 } }, { { 0x23527ba82ef8bee0, 0x469727d68684d3a9, 0xabb90b66f09edc94, 0x2c77ef5042fe4fc2, 0xda68175c699a924a, 0x9104094aa1e54b2e }, { 0xb2f366890a323c4, 0x5d02f6b8789b7b8f, 0xe68f3e53e57b8890, 0x4a32f7a6d6a9edd7, 0xfebd799da36f940e, 0xbf15b8af47ef8d1e }, { 0x6107dd23a8275e71, 0xc312af9c38accea5, 0xbf5c6a1cb5c6bcd2, 0x396ba252b1ef2c65, 0x5bb5c824e4ab57da, 0x69b2ac23ae496b2e } }, { { 0x228405d86c843a17, 0x67263054a176584b, 0xd3fc45eb524b29db, 0x94b70dff8414a3bd, 0x8ee0c662111b13bb, 0x7f677cf5e245c5a6 }, { 0xa07b3ab1a1b4f8de, 0xf1676d302a8dfe95, 0x982fc43b01387325, 0x281a861d127cd9c3, 0x74d6738846401977, 0x667dcd93dd3cb5be }, { 0x47eca8929a68179b, 0x65dc18aa013c56c, 0x5ae9f12172f254b9, 0x74a295fe108d981e, 0x85923b590ab4176a, 0x9f82d9d7973e183e } }, { { 0x4a52dad746d83535, 0x959663015219e325, 0x537809a8828fd8e8, 0x1be3ad05c03adbe2, 0x6fd78b20ee390dee, 0x4650abc8db1e664a }, { 0xe1391972f2b8612c, 0xa63d102e3934e5bc, 0x74781a33a0c0117e, 0xec3ecfd6b7baaf4b, 0x798ccf4fb96ab6e2, 0xa8c2d0a76935b611 }, { 0xb8d5c9f87dbc7dfe, 0xe5213d0a43ebc016, 0xa582a5d8f3a47fc1, 0xac22758a6cc608b8, 0x6dc7ac819bc171a1, 0x8d32145287b1b71f } }, { { 0xdced9bae1935a8aa, 0xd1f9418a4fd78bce, 0x3a7022c1c2d4f4c1, 0x1f067690e8b8d929, 0x13685b532a8e5d35, 0xfebebd22f75f5730 }, { 0x2758345f1a0ae8af, 0x95fe6aca5623f1eb, 0x631809005a9e40bc, 0x1959b71d3680ef47, 0xb16d8ad0794f313d, 0x98b5738885983645 }, { 0xb56430ac3df1f5e1, 0xc215262ddad48287, 0xc1ac39f5f42d2ed8, 0xde771c173638428d, 0xaaeff0f3f60a9cda, 0x2f7ccb556aeb0983 } }, { { 0x118a1fcc15f2c3fe, 0x49f54ff495ed980a, 0xaaed67be42b220ac, 0xa4f218d87d36c108, 0xcf52d5709be6778f, 0x3220e6361faad4e5 }, { 0x6efc172f6e93a0a2, 0xb7d74e1ffb78e650, 0x6e1613af66e77583, 0x4d2975051658d4b1, 0x7e39efa549a0337b, 0xf74fb00d5134a4c9 }, { 0x452017441450ad09, 0xa8f9b9fac23aeb1f, 0xf23736077095314b, 0x7f460ac44095f51, 0xf89d3dfad138e265, 0x2beecb87fc0d8fc5 } } }, { { { 0xf8b2ac68b5aa352a, 0xc0dd9b55dc1019a8, 0xe88d701a5a1314f8, 0x92bc0f89c7bd5a87, 0x2ab876deaea8fb5e, 0xdfd9719bd5d2dfc7 }, { 0x8872f4f88fef97c5, 0xd248ec8e6000065f, 0x74826603e63c1588, 0x897fc2efc0f08cfa, 0xfa9b7d3a9d5592ff, 0x58528628532ef787 }, { 0xcebcf3f9b8301642, 0x98eddce8e77ff857, 0x1f51911b1b55afe, 0xd7ec866211b0655a, 0xc87d3a4fc654373f, 0x5c6ee823c93f5b0a } }, { { 0x95bf6511c371d35b, 0x3f44a6619de39c99, 0xf8384701fda63af2, 0xb577fdd192464635, 0xa05913fea1ba6630, 0x7f368ad63c4e6cd6 }, { 0x5b340cc8904f24d9, 0xaf1c5e3e90d68ac9, 0x58634c9807b75d3f, 0x48ca4ea79474f6cf, 0x52dd0b573ebeeaa1, 0x9bfdf97e2b63f9f }, { 0x2afaaa52e2784f75, 0x70bf5b8e9860d028, 0xbc8521460fe56a82, 0xb49ebc7eb6f48a72, 0x1e28ad39351df4f3, 0x7b0d108ac3f4ecd5 } }, { { 0x2807bec3fb0980c5, 0x21f6987f52c148c3, 0x6189124fa8670d57, 0x8298516ae76a6dbf, 0x7e1a52749ed380f, 0xfbc6dbbb556c0ba5 }, { 0xedd716345520674d, 0x850946174e837f9a, 0xa10340d233e5cc10, 0xf6b2ab93a4cc03f6, 0x174cc5e0de44a7d2, 0x4ff15d0204b79ed8 }, { 0x5d8ae41aacb21cc1, 0xa71ec54c98e29b5a, 0x167473ca7c73de74, 0x42135c7ec185158d, 0x4568b1b52786e383, 0x41fd7d25c06d0fbc } }, { { 0xfcd7c323a67eb3ca, 0x4f58e939ebe19c3c, 0xd58a0a507505121d, 0xfeb97933410d926c, 0x5a1869820cdc0a30, 0x6a2187dbc1342628 }, { 0xbc8e0edd699a1219, 0xa53f37ef34f58888, 0x2877a8bb77fd5f60, 0x4203ca1427ddbb50, 0x10e44048149f3bad, 0x3a3500325fc8b3f8 }, { 0xae612437d0698a9d, 0xcb8524d92ed69a3, 0x64fda24ed30b2245, 0xac63ac16082d8c5b, 0xd3ebe44620883eea, 0xb1d4b886ae85070c } }, { { 0x431be7cb4531c45c, 0xb34e99a49baef0e1, 0xfc54dd766b5b2e5e, 0xb304776e0467527a, 0xda536439f7ed51c8, 0xc2f3f42c591af65f }, { 0x5d112b6a5261fa7a, 0x2945559ae0866e35, 0x64a621f59de19b8d, 0x1a51f227b94f10a3, 0xb91fb4116a0ef1aa, 0x6cb6fc02febbafeb }, { 0xf82267da4d81fc17, 0x757b9861f609caf4, 0x6741c386827f0eeb, 0xf9ca82067d963372, 0xd23496e6545ceed1, 0x534588af72055296 } }, { { 0xae27cc393159bdac, 0x4752cadc6c162408, 0x27739e652117fafc, 0x72f37a024c6ec506, 0xcbe34f86fee21eb9, 0x2d091a3c72a7a35f }, { 0x5fce630de48f6533, 0x81b030b38a625b4b, 0x27c756345636b5c0, 0x4a5dfc656f06866, 0x8f1212939735bfc2, 0xbcac3cbc863c3e83 }, { 0x6876ba2e362452c, 0xee6dc491b55e7e94, 0xaf5f03ebd580da69, 0xd005d1267e9a5a33, 0x40ef5f5967d46bc4, 0xc73fb36cc2ad86f3 } }, { { 0x4f78dfa5b2a6d671, 0x32d67a5bc0cd550c, 0xcaba43ed231b17b9, 0xe7fd8f24a4042fd2, 0xc495d5e35b577622, 0x8ba6bd9f4dcc2270 }, { 0xcdceeb44461f0ba0, 0x85df8e85329a4bf9, 0x72191da9a0fa133b, 0xbe6c5a072ee8d884, 0xeeaa42f0f0670c8f, 0xffbcd8998cf2301 }, { 0x8fbd3eaf66563d6d, 0xc19398eb87fddcf2, 0xaf3e4e8d9c8de7b1, 0x13f6e8ad6263bd0b, 0xda8306f555088549, 0x743a2b3a24abdfb1 } }, { { 0x382ca91fb3255b08, 0xad8f28fc284278df, 0x13720214de6aa36b, 0xa84ccc1484bbbbdf, 0xd562fddc365f0f6, 0x3730dab2aaf171fd }, { 0xa8ffc9b278d4bcdf, 0x3bfbe74093efa8c4, 0x86b7da4b7dc55cc, 0x21419d5f6b4eae9c, 0xab5b1289bfc07de8, 0x8e20ff658d3c3a9c }, { 0x58e46db93b21f89f, 0x7da69c446dc72451, 0x87c6211613b02c71, 0xa53b970cd0e6ceaf, 0x196a95331f21ad11, 0x5b54c12d85f0831 } }, { { 0xee42d38f519ffb1, 0x761c57cbdebdec1b, 0x5374288e3652cd62, 0x7233fa8648d7de01, 0x13f650e36c6ef741, 0xa281780932d43a26 }, { 0xec579426a88e671a, 0x11230036d2462b72, 0xe6b6b3f2d2aeb5d4, 0xe2d1b4007cc44373, 0xba8d2fc44d18f1f1, 0x372872248fdefa70 }, { 0xf82c99d3dadbfb75, 0xff9b6f06d91b95c1, 0x3bc35745723e5d96, 0xddbd031b06ee375, 0xc291cdbc449a9e0e, 0x71d0453677124210 } }, { { 0x8ac82bc55e90c924, 0x44d172eb1ac8ef4b, 0x1f4dc4f851d2bf55, 0xb8ff7a9c43e5bad5, 0xf5a7b177cdfdec7c, 0x40558f1dd9f1653 }, { 0x25b821a5fc74fd56, 0x5857b414b1713dc7, 0xf078ca346a5807bd, 0x7cb13ee0c139aad6, 0x9c13b6f9fdf0b1d2, 0xc1704f6d443c65fc }, { 0xa02a04da08b8ac26, 0x742c81c9d7feb4ae, 0x16bed7634f36ceee, 0xb1ac15cc8e05d117, 0xcd028b5c75a43328, 0xc2d202824149a75d } }, { { 0xddd1b657f6800969, 0x7ab4c8d8b6f98f2e, 0x9f0ee459d0a9d93c, 0xecdeb1dc955a0af3, 0x9ef8e6bf01cab3e6, 0xcd6e0ea700308f95 }, { 0xbc204980651518af, 0x6255982022a74dab, 0x615b4a9fb85a2234, 0x113fbac34c63dbb4, 0xccd3edddbb6be6b2, 0x5f87add4fbebb4fd }, { 0x9cdf40c73abb118d, 0x625ef122fcbd6969, 0x127a6bb20d41490c, 0x42ac4c8953164d18, 0x986ff666e8b2b5d6, 0x26b48fa2b2f7eb79 } }, { { 0x747eef63ce388f3d, 0xc79ef80cef0e2cfe, 0xbf15a1a1dc285317, 0x811bfad0fe3c7105, 0x6daf6cc4023b999d, 0xde61c09232e30e7f }, { 0x255a9f9a30fecbea, 0x26ca0a174f980890, 0xe6a29eba23867ec9, 0x4b2565e89ee5d395, 0x3edead8d78ff4ab1, 0xe65745a5d0e2ef97 }, { 0x9990ba90291f99d9, 0x8e41c90daceb3b1e, 0x7ec15366591430e9, 0x77c10ef5afc1f45c, 0xa99e5323fa144164, 0xdb76a8d1bc05174a } }, { { 0x85e0ada8a99bff62, 0x8b2a8fcb10a86489, 0xa6700de151b9038e, 0xbbbecd9181a78f8d, 0x1c0b821584b1c567, 0x90da5d6a841755de }, { 0xff14d0ef169eb966, 0x57d9ec872ac76173, 0x4a7b8098767c96b0, 0xf2669095ee8d8e4b, 0xfbc766318ee6038c, 0x36738551a2a64053 }, { 0x6eb08d91cc19ff46, 0xc45174fc8e0b7728, 0x1d3b25335fd8f710, 0x37aa32fd3972f825, 0xee8055b50b3256a, 0x43d47efd884f3bd3 } }, { { 0xd7d1d79584737f7f, 0x4b342fa3c2f3a8e, 0x9d48136d6371cca5, 0x5a35d55b9d0f9b89, 0x1e1f0545175074f7, 0xca2123e3029b4150 }, { 0xbbd0b9e5de800045, 0x9c98fe81d61be82d, 0x6f676d9539017ba5, 0x6b6b9fed750554f5, 0x8fd33fb026db0fd7, 0xca35e1348bfe41ef }, { 0x63adbd2e1f6ca454, 0xf7601fb9e15e9c2b, 0x31444f5074f7e157, 0xd79d3b34bfa7c991, 0x4325680c56c107f6, 0xd3b8e9c3c5c588f5 } }, { { 0xd17ff72292c977c3, 0x91dd5b40c18c9dc6, 0x9a06e481feb018c7, 0x7e527c4d0a9d3faa, 0xb9016ddf67415b70, 0xe834b2d3f1d05b66 }, { 0x6490cf71f764100f, 0x2d694082688ba5d4, 0xe24c7344931f78a2, 0x5d4ae83e9a19dfdc, 0xe5bb9e0df904ce8a, 0x2f305117eceefc66 }, { 0x92769711c621f4c6, 0x9e44f8b30c5aab04, 0xa73227fde5bcbc04, 0xfdf2812aca9a6905, 0xabbeb12d23cac268, 0x17bd556e9ec3bfad } } }, { { { 0xef6c9b0e36efc7b, 0x9513f06e21b000f8, 0x2b9bfd7aee63c6b4, 0x9b5842c7352737ae, 0xaab749876ad7ae7, 0x8a5294b1c5255389 }, { 0xa0a9d03e32a4fa61, 0x8dea4c8fdc146e3b, 0x2116703516090842, 0x2470a78c25416693, 0x59756a6524a81570, 0xead24d1c52ef9952 }, { 0x43fb63302295b1d2, 0x625631897dbd92ae, 0xcfa6135c9015ecb0, 0xcdbab71f02665f05, 0x946a3381e234ccd5, 0x812486e6a001d219 } }, { { 0x5b901b397c322ded, 0x1a662180aa9c5bd1, 0x582fb5a0a3ce8222, 0x29942cc0cd9ab38c, 0x4103bb97a3d70344, 0xc8aa8a48e96b8377 }, { 0xc284ac97d5577678, 0x6da5c908c2e1341d, 0x5290732e5f125cfa, 0x5aae374dfce13fb1, 0x70895447a07b8915, 0x87fd080bf8fac6b3 }, { 0x5c36347fd327925c, 0xd3446252759357c, 0x737dde6d22a769ad, 0xc55848d7c1ed8d92, 0x4c191c3b64e18351, 0x4c40dff5e07fe8d8 } }, { { 0xb9ec4b9565dabc48, 0x2257e333cc6c436e, 0xa71bdb820e6aa6dd, 0x317033a5aaffc041, 0xa00f780e74e8e3a1, 0xfc1dcc944ae1066a }, { 0x9761fee97663c60c, 0x40a200bb32c66ea6, 0x60758ad7f4a00537, 0x69d26afd77debe3e, 0x71465b0f0a93d3f4, 0xbfababae50fde444 }, { 0x68b4e75676ced40e, 0x212fe4a5fbba669a, 0x5f8dd72ba7c5d1d9, 0xbeeda5adc4d44319, 0x586a5512bb2e5529, 0x1520001eca8cf165 } }, { { 0xdf2ac5d5ef0387b4, 0xa8ae53e05fadb76c, 0x9d5a7267fa003b10, 0xd788993295347e9f, 0x9284425f1c9fd89, 0xece35a97a7882524 }, { 0xb257537245a39acb, 0xcee0fe644ce451bf, 0x4bffdb5d5c19d71, 0x3a75f16109bb2446, 0x764ce08039cd65c5, 0x9ef2e488f92aa73c }, { 0x71cd64cb09c630bc, 0x979a50dcff4781f8, 0xa9e083693552dc57, 0xcca740b3f7a457bf, 0xfa41c3878f760ffa, 0x4ec7b98f306d08f0 } }, { { 0x65df7874328f45ea, 0x5077e5a32820f2c7, 0x2794c88324a0e6ea, 0xab1c419602411942, 0x7680d791b32275d8, 0xa303d1cdddbc4560 }, { 0xd7391b6007626abe, 0xe9d8b237f24560f3, 0xf16b117d97907f3d, 0xf35c3816cac2f2ef, 0xbef2b064381830a5, 0x9573757180c9335d }, { 0xe1154fd70540ea07, 0xf4ff2c5f911f3923, 0xa76ca9aeb17d69d9, 0x22002cb75e60c198, 0xab1430a33b0fa1d4, 0xa6074c2c9889e470 } }, { { 0xbf45f0af07e5eed7, 0x89f64994ca267cba, 0x1c7d1e4bf11f6438, 0x4fb46943dcbe39b3, 0xb5da872cf17bf04e, 0xa1424665c4857c08 }, { 0x706608a135cc3e4c, 0x79b59b48dcda78c1, 0xac4910b853b59682, 0x62aeb59d6e82696b, 0xe0cee86bb77af5ed, 0x51b31f6df7511045 }, { 0x9c9ffdd990229b88, 0xc7a8257d2f93d087, 0x7408db82afca1663, 0xb47ab45ddc0aa786, 0x66d10de643c60b97, 0xfdf2b57d8882c151 } }, { { 0xf6c53c8c7ad4e268, 0xc52e3bbadb932ef, 0x8bc9bffd3fe4c0cf, 0xb38e526ec8d88060, 0x9b7ebcf95f65bb78, 0x3be2e9982fa1af62 }, { 0x5d624394bf98d48c, 0xe04bf352317c428a, 0xa019c5662391fd26, 0x4f270ace651e88f4, 0x93c5184be513ecbf, 0x180f30a5a8ae445c }, { 0xaf2b98ac87611647, 0x2145ea6cff6c3d96, 0x6c8c0ecf201bd63d, 0x390d8fb75f47e1bd, 0x2b60d33eb77250b3, 0x21721710bc75ac04 } }, { { 0x347255092926a5d6, 0x5594c30f95c48b56, 0xe17c34fcc61c5ebe, 0xa560185456027ca8, 0x897d4b20df6c7a88, 0xff1ab1095bb77755 }, { 0x7631fcbbaa674f5, 0xe8098ab546dff793, 0x6bd31b3b397015ab, 0xac5dc40e049f3360, 0x7995692f7ad0e293, 0x9978d6f71429068a }, { 0x23be1bbf4b4ad8de, 0xbc67692f9196e6f2, 0xd64e48ddcc0e3331, 0x9de762c8d7130f7e, 0x598d9d30361c9efe, 0x69db83dccf9cf082 } }, { { 0xd52e46362a7dd982, 0x8eb4ca9b9fd15380, 0x5b10a0be925027ab, 0x1b04724599cca3f6, 0x9f0f0d6d2463d17, 0x1d82c5f38e7061e5 }, { 0xe561c67fe19d6691, 0x10fb0906ad22a795, 0x1b34f56398fb30d4, 0x1327b0d36fc436e0, 0x4b475ebae596da71, 0x7cc29efc546b951d }, { 0x61e4b9dd9619721b, 0x1d701f9777c535cc, 0xbbcecd87dc55f6a8, 0xcf79719284a01cd6, 0xebc9f1b46dd6d544, 0xa874e2d949de9f91 } }, { { 0xa6b3a8767bd29d7, 0x1b9d4b606e11874, 0x1e371befd33e910a, 0x721652d12b3164da, 0x18de4e5a44889f8e, 0xdc6454c7a932fb40 }, { 0xe76ae30a655c185e, 0xa56b92fceceaf7cc, 0x78535db7ba71535a, 0x4177b1a8dada02bf, 0x203ddb906792165d, 0x1681cef8e94828e5 }, { 0xdeec0afeacdc5302, 0x7b7dc47943e6478, 0x37d3309857fcafb3, 0xc68b6e96f25f621c, 0x150870f77bea0912, 0x2443a7179d923458 } }, { { 0xbe7dcbe5eb87de53, 0x60db9eb537a98b45, 0x9f256ee8b736cf47, 0x33142efa7c88b94a, 0xc7a1dcf39e7e11de, 0x33648098323ee81b }, { 0x57955129fc668e8d, 0xa3fe97d9e03cef1, 0xdecebeafa6ca5bac, 0xe0569252ea0359ea, 0x35d897755404d06a, 0x4a3969143ca8af6b }, { 0xe34f24d9e2aec3e6, 0xa5832441e628c420, 0xf1dd6d20898dd435, 0x84c328dd94c96ff3, 0x3477f930430ce108, 0x46d72e202e5aaf2b } }, { { 0x95b66933131e907, 0xfe4130b0fb788c69, 0x9fb4b4e02cadf7fe, 0xccb2b03e19f60b1e, 0x291497f54fa004e2, 0x246d684ccfd22a63 }, { 0x6263a982f784b2, 0x4f260f23596e6289, 0xa206e777705d8023, 0x7af78cf7478fab43, 0x91839e158c8a593, 0xf56bdb0c8bebf860 }, { 0x4c529778f8ce926, 0xbdeb760e0ba38ed7, 0x74bdefff4053069d, 0xc9697f43a7c9378f, 0xc73283a754c438f0, 0x220f5b803ea42c8 } }, { { 0xcd48c303f254adbc, 0xe5f74fb0189afe54, 0x99b750b97a3ba79f, 0x17819b0c83746437, 0x587bd89b5f512680, 0x7f8c01b079d7ed58 }, { 0xcf8e1049e74bfc88, 0x6bd89b6c3469429c, 0xdb604bcb5c85bccc, 0xeb9bbbd46b2efa4e, 0xbcba44506fe273f7, 0x4b28392e76aad885 }, { 0x5e8671b63757d11f, 0xac74ce50be77023a, 0x38b67e50f761e72b, 0xd3d1b08750ec86e2, 0xf95759aa8a7bec89, 0x9c9504a48eedbf3a } }, { { 0x2472af2cf704010, 0xd1b6ca05e39f8c51, 0xdb706cc2bc18e560, 0xf75f3e27d765ca31, 0x2ed825bba8d98ea6, 0xe233c93e6d6c6432 }, { 0xfbbdae44d7c8e668, 0xa5efce8d8700e57a, 0xe76f3207b0e7060e, 0xd0dfb2c0820db53c, 0xb354ce326c8217fc, 0x4bb6563210739e08 }, { 0xde5028626e494a70, 0x800f5d1d4cfdcdd6, 0x2541636d1d376dd2, 0xc23669424e299998, 0x16c664405b3feca1, 0x18ff81e5e1f8e7f5 } }, { { 0x1c48db9ef204df33, 0x6577114b603f9a4e, 0x991545c9eae22458, 0x58149a14a1f70951, 0xaa32f1f31a91da01, 0x9883719ac0063a87 }, { 0x5a7594d99817bf1c, 0xab5f07948eb45cab, 0x605626d46ebe95f6, 0x3cfe4d8405f68a94, 0x6356f8ef17332487, 0x6174829b05a6921b }, { 0x4bab6cafca40359e, 0x5626ab946ff2fc53, 0x7fd0ca07f248acbd, 0xcd10d7e3d5c7c45c, 0xc822c1d9eb29a30e, 0xdb0d1858836c35e4 } } }, { { { 0x9e632c989861cb7e, 0xb8db5acaaa6aa3fd, 0xf9a66a9d239e16bd, 0x605526e1de8dbe7e, 0xaaf6c12b1a184419, 0x48239e0f1dc0577b }, { 0x244587bc6dec73bd, 0x7bf37ed4cb06a887, 0xe1eed66ab073404a, 0x51ef3bcdcddc5bd, 0x5028e1c9dcc5f2e0, 0x2452b596b5836921 }, { 0x90024eb73bdd5ab3, 0xcef74e7f8a8a4632, 0xfd1c27dec3a80154, 0xd5c04b149fd40660, 0xe2c6d3d4ebf834f1, 0x94fd7abe913654f2 } }, { { 0xf28428652b4d80e2, 0x6abe3265c0308599, 0x98d91ea4c809dd6d, 0x19973653b724f5cc, 0xa8ef4e18c04ad48c, 0x6b18e0d3645569fe }, { 0xeca0f0e27bbd05be, 0x2fb0acb40f1c48a9, 0x7934f19f4da4d730, 0x7a6d5fd528b1bc24, 0xf96bc4a1fa358ead, 0x7056d8ff8e9d1a42 }, { 0xb17f5cc6d1f8d1a7, 0xd64492581aacf014, 0xbcb78f9c8b2a8028, 0x7f6deed50a00e12, 0x2cf2ecdf38dd1056, 0x55a8e3bbecf5c7e2 } }, { { 0x202bf6170dd7022a, 0xed87dcbab4a7b45f, 0x9e3cc856f96281b5, 0xb9157cfa18af8cd1, 0xc518b17e166023e2, 0x4191264d950c8da0 }, { 0xd60faa4e9902b07f, 0xdc4a8e80629db4fa, 0x3452cf1abf7e9c20, 0xcd8f5b03d863f5b, 0x38e041c844fc989b, 0xb48a594a45dd7bdd }, { 0xb8d6d8693db8a18f, 0x6dcbbdb8e71af50a, 0x19610ea96c70b79, 0xbf01e9b16c014900, 0xbdef99285ba24d7, 0x974978d29835a66d } }, { { 0x2b3030bf25aed513, 0x31eede8bbe5d486f, 0xaf5ab735ee2b27f7, 0xca6c37416b654c0, 0xbe4c6693e24d4402, 0xe1017edc36ff2f3f }, { 0x3a36ea96a05a1da0, 0x6a10df237b6c9020, 0x7dd2af0538088d5d, 0xccca1e72a7291c04, 0x6977d7d0a99001c2, 0x119cdb0de227d88f }, { 0xcfa2c1b8e5b23e07, 0xc2266896d71ba5bd, 0x614aefc931f7ef81, 0x9032a6310a295e37, 0xbc9bf8d04b805826, 0xe123076ed2cc1748 } }, { { 0x9d9798dde62869b0, 0xe637422969edda3c, 0x2f6bf3f7bd5cec67, 0x4301207f133148a4, 0x7cdc42c74ee01a2a, 0x62557303d21ea819 }, { 0x74031d9855764106, 0x4d786c7ebcae8766, 0x1ee8d9dbec62efa3, 0xf9a4840353ba644c, 0x59271400a6541d93, 0x3d93a0d19be91992 }, { 0x40c5c8363a3b01f4, 0x90a8aac390019be3, 0x8c44ab481bfec5, 0x3b8f5637cf18641c, 0x9939c3e5a567375b, 0xcc04029833a1909e } }, { { 0x9cf9a714d056fd53, 0x82e14ca56d34b0ce, 0xecfc924206442f3b, 0x9a0456bc2fb1dbab, 0x29e6d5c253c8f7fc, 0x6cf6815b62639f8 }, { 0x9c5877fba997664, 0x36ed6ac4056fa7c7, 0xc071d8c1d99245cb, 0xe4e4e47fbde06042, 0x116b5821e20cdab, 0xba72fd44b1ab00c5 }, { 0x6be88cb99d2edb72, 0xc0ceca759b0e8394, 0xb6ad5bd7f3b2fcc7, 0x2748a0559120871c, 0xadd89e3c3b01e4ee, 0xa7b8711b90c8fe34 } }, { { 0x7fdadc1d03e09982, 0xa30e7d9db0545176, 0x894f84e7665ffd6d, 0x2210be79459961f8, 0x4f06bfd45dc5a19a, 0xe698cbad5585016a }, { 0xb31e8bd17735f79f, 0xa76a94d27cb4ac43, 0xa94dc864ff3985ed, 0x3d9126190ea70bbf, 0xafc0b70deb24aa09, 0x75c1689c645167df }, { 0xb31aa98f42930f3e, 0x44a1af2092049bed, 0x7e91af85622d8e6f, 0xdc162d4f7a7cddbb, 0xedd74e93a493fe1, 0x87925d751e8e4daf } }, { { 0x285ac23a9433a305, 0x296ffe5e76fb8304, 0x9b76828c7d832f13, 0x3cd7b1aea21accc3, 0x2de55c1459ea540f, 0x826fc2a7553faae6 }, { 0x1a749749aa6feba8, 0x18cabcc589f67fc8, 0x793f0733555c8d17, 0x73508e876a93c136, 0x62600bfaf878cf3d, 0xe0ecc56a5a65fa04 }, { 0xd58e3ffa57e2a862, 0xb749617a451824df, 0x2b7fe5eb3ef2cc63, 0x54c932b6dcf183e9, 0xd5d23a92aa4caec2, 0xc4a2099417c92eb4 } }, { { 0xdaea3b5d5b11f3b1, 0x59c731601ac67ea1, 0xed0aab7e56549287, 0xa0510453912e0d92, 0x5c417696d6dd3c02, 0x3754283f3e02a61c }, { 0x1987e0de431850c4, 0xc90dfd23c009867b, 0x1ed7a399e43c52c1, 0x9ff1cd7961cdb4d7, 0xdef6936323be9824, 0xb86e83df407918a0 }, { 0x96f24bdba624b222, 0xa73d658509299cad, 0x183b27ffc3a88009, 0xd550c7e298a6553f, 0xa66a036fc302c249, 0x549db28e96cca30 } }, { { 0x465c0d6a3e878998, 0x9359c4b10e347e4b, 0x69a1978780604270, 0xe3fbfa121a3ebd3c, 0xb197b38897ec2381, 0x5b9289223aa6af90 }, { 0x536b8d1128381558, 0x92adcbf8c9edc680, 0xd5b96948e891edcc, 0x3e111734d5603dca, 0x28cd46d06c26ee2b, 0x1387e58c943b1b29 }, { 0x4d3980d8bc23f5dd, 0x857da5df460d3d8f, 0xfb6da52314029e82, 0x833abcdb69b2cc01, 0x1f8a0b4007481f98, 0x6a638d05ed19087c } }, { { 0xee770be1e391b4ee, 0x5408a91bced310da, 0xae935be8c31154ca, 0x9b55de850f2f13b, 0x43831843729ca804, 0xd5fd576a6fc962e6 }, { 0xe9cb653fafcbce1d, 0x2046aedea872e3a, 0xdd1b6dcfd9594501, 0xbdfdc827d6b318e3, 0x8b972077ace7cc2f, 0x1c920adf8f7cd921 }, { 0x83ad943383a9f679, 0x77fe6f0f79e44987, 0x793ad286a4f2ccf0, 0x4b6b4680216ef011, 0x33aad57d0ee23092, 0x781b68c2a5232283 } }, { { 0xae1049ac6598c838, 0xf6210fdd4ed66fd5, 0x67dd622d2ee9ebf3, 0x389a962e5ec22c51, 0xd4c6590cc330c6c9, 0x102289fea980cc5c }, { 0xe03eb02d6bac4580, 0x5a60286d2ef18661, 0x14e504887a418f80, 0xb05eef51f78a0320, 0x276611574e9a22b3, 0x515fff7daf698707 }, { 0x3dafa3ad12dfd90, 0xfe87144355cd06eb, 0x4e8bf167c2a82a44, 0xa1a60f107cfde936, 0xdf61eddbfe37903b, 0xb1d9636b5494bfa8 } }, { { 0xa7ca605c7607f05e, 0xc400615babd14c56, 0x51f1ff4a99fb8c33, 0x19071a59e256f51d, 0xe10686344e6d5a5e, 0x75f83de0c9dadce9 }, { 0xd6d68b1d6f89cfd0, 0xb1a35a01c980c75a, 0x601c9e0273b16e8a, 0xfdc0330d70f38e54, 0xd5002deb9f5ed0eb, 0x6420f538e434822a }, { 0x70b07fdf445b4a53, 0xfbc11808cd8a1ea6, 0x35e240d7400f9f5, 0x87587e2a8fab8233, 0x97e0c0a32015d4fa, 0xbdca030fe43fa193 } }, { { 0x3a29f24f3c0d9b4f, 0x44dfff298909b08f, 0x67ac4532dc0c7650, 0xd9ea313cf952fb2b, 0x5c3b37d0dbc3f1f, 0xfc6989ef70bb0e2e }, { 0xf1e949d820759781, 0xdceb93787ec74813, 0x23f5db2f96812b4, 0xae46ca495808b7d2, 0x2e2a64fbf1c61512, 0x3d75816f9ef1c2c }, { 0xa6d8efab262a4868, 0x18c7854a84b3a683, 0xcbdc0ebde2000ca, 0xe6bfbc2da04987dc, 0x604dc6e656c36422, 0x5f31c39b4789c47e } }, { { 0xbf68ec9b69edf217, 0xc63ba2d271b7c615, 0x5ff544db99c172d0, 0xe63abea3bf740cfc, 0xe57abcd45f1f3a9e, 0x5cd469151b9b70c1 }, { 0x20266df71468a1b4, 0x76020f4a359fb96c, 0x498034316e992cea, 0x9d478c8fe0c5e576, 0x466f92c8e37d9f10, 0xb0f1b4a30ead9bd0 }, { 0xab8ac17bad0362d2, 0x5c3f81238af7310c, 0x79c6fa6bfa0af3, 0x877ab385f53372e9, 0xfe5ad9be40535762, 0xa895aca08b01c31b } } }, { { { 0x191ea93d3a97c6d1, 0x6ad3c76c287045ad, 0xd0ae5080dfd3a526, 0xfc09a0037391254a, 0x73e4d66ed0f1374d, 0xfcd57af349ab11b7 }, { 0x38e77f5fc0e5589b, 0x46bcdb29ddc6b3e, 0xb9e86da42ab03593, 0x5dba99e693128eaf, 0x1fe630fe5dccb02b, 0xab32ec75923664d4 }, { 0x7308c2de613741cb, 0x9a426249a0d29467, 0x18f2eda29e6f8f06, 0x2518df1beb62c1f6, 0x83184e9ae2f5e0b4, 0x55abc7fd34945e38 } }, { { 0xe0b4dc12b87d3ca2, 0x7d3a043af312a059, 0xb6db605c09f6d7b3, 0x7c855e6ef1a21a22, 0x6962d123fba121af, 0x9fae3f3c811fb559 }, { 0x17dc894cd3ad4002, 0xd261d7de98c64c3b, 0xf12cefd398e38ac7, 0x103748c6476ca05f, 0xe326bdddfe661ca6, 0x9cb68c7d310639a2 }, { 0xca135fa8b639009e, 0xbdf115a2f48d814d, 0x9b5dc9771af55709, 0x9a9fecb2341e3ccc, 0xe6e0719180e76d20, 0xe80c13845b89c52 } }, { { 0x271e4bf144212d0c, 0xc3a314404030d4c9, 0x872d19996d1c5312, 0xe01f2da187ccad46, 0x6a1a2989c7e4e4b1, 0x64aa77ed48edc9c3 }, { 0xaef11111822a89e9, 0xf96245a0d4f6e564, 0xa60d620e3cb9c50a, 0x1d0eea9b37a3f944, 0x9d391f52aa4f8f58, 0xe376933a80cada33 }, { 0x7b2a9420d97ed07d, 0x3198991a66492bf5, 0x6b94e98472884218, 0xfc7c6d477f3fb1d6, 0x6685ad4f0786a80d, 0xea48046aea074efc } }, { { 0x429030eab36c7e75, 0x888dc4ec9d28384c, 0x68f0c61d5b14721e, 0xe655e9d266509f16, 0xefb10603819f028b, 0x68ddd2184609e2a8 }, { 0x5fae880da1d16923, 0x44c9a548ae1c1dc8, 0x9dde194c13b4f177, 0x44e7d56f1f86879f, 0x25631a77e8b3f9db, 0x8f0fe88d66b200c5 }, { 0xf6a242ec3b7e51c1, 0x7ef0af9baf292b6c, 0xb6b7ee644ad469e3, 0x317ff61f0dba2bfb, 0xc21f31a57b1c5c48, 0xa35e5ff3006bd260 } }, { { 0xa5d9d4769e7d47c1, 0xcdfd59c47eb6ac5, 0xd318bdd1ffae7697, 0x2296fbf3a28dfdce, 0x2882232f188faaaa, 0xd0ff8f3e918badc0 }, { 0x79410a90ee13ebc3, 0x3cb4645c3c9d5a7b, 0x4fb663ba24af4322, 0xdeb3df83958c089, 0x317341664b255be9, 0xc670a64be01637c3 }, { 0xfb6795b935b2cc71, 0xb44317e9fb7dc5f9, 0x20311b191e609e45, 0xf1bf2e3cdeff24b4, 0xd9c625be283dea9d, 0xbcb0771431f7bb9f } }, { { 0x9a9e50673935c866, 0xb11b3c937b3332c4, 0x6049918f99d3a0ce, 0x23be9c6ffeb82505, 0x1819d7f67bb412f5, 0xbf2e819210ce1c8f }, { 0x5eee01834b57237b, 0xd2a2c1d8e2dc00d4, 0x31025bbad0380f2d, 0x7853fa9e4c3bbbf5, 0xe29f60534900f5ec, 0x192e1d442b06aa3 }, { 0xdd0ac9cc13301e40, 0x140237bcaf12ec0c, 0xea63bf24ab0f70b6, 0xaa9b7bd4a5d50299, 0x12220f973027ad83, 0x2437c6b1a7f6d25b } }, { { 0xcba1af5d68fe2ac8, 0x763e286703adc67a, 0xdb8381d75123819a, 0x5b5a165469ff7d65, 0x63143cf7bb51dca1, 0x3154baf6761afe6d }, { 0xf33a8e56119a4ee0, 0x7bfc0275b026d2d9, 0x3080e29650b8d022, 0x2400403997e63c5c, 0xbfa6842fc456a1b4, 0xf3395d6da3a75863 }, { 0xf524f561b0bf79f0, 0x418ff28e11739820, 0x21b8b00a929c153f, 0x22d72d1bad0e750e, 0x62b45a18c6527342, 0x6876364a629d7e6c } }, { { 0x964089466db07df4, 0xf8b53ed79422fd9a, 0xf822d5841f1233d5, 0x7fdc1a6e1f43ae4, 0x6fe6573bebab2d85, 0xa9ec59053893768c }, { 0x47f0ff568dc7d853, 0xab2eb965fb1fc27c, 0x6972d14c29755e6e, 0xa62b1c4bbd786dd4, 0x7e77dbd1a4c519f3, 0xb95d856d4406ea6f }, { 0xdc64e515c0d822ed, 0x8c7c1b8ca1b15807, 0xfd9c12174cc6c9c0, 0x45e93d148697b51f, 0xae0f61acc233679f, 0x8fff044479461860 } }, { { 0x29d52282232fe282, 0xa909e6f2c2b3a05b, 0x4bcd6f5964080a05, 0xd29e3507837a28d7, 0x72c81e6fb06720b0, 0xb525d1ac54690137 }, { 0xe3a80a57a7ceed31, 0x26b83d5585c7b54d, 0xde1a1ec4e69ffeba, 0xbfe12d101b5647d1, 0x741a9bb219b8849b, 0xa39bd884866e449e }, { 0x38e0078ef0d0ddcb, 0xf83f964c0fdbadbd, 0xa0ed67c179c24ceb, 0x2f10f33eedd7efba, 0x7fb71fce99395daf, 0x3220394a38f73afd } }, { { 0xa76eba01cac39c48, 0x3d78c9be259c6fb7, 0x30cf806d02cde6e7, 0x714e029da05b57ef, 0xcfae0c4fb563bab2, 0x5aa9706530f47ad4 }, { 0x261b1795302ff1d6, 0x62564508810d895, 0xa27610638c4bf375, 0x672d612f11bc931d, 0x87ada4f9f3b4508b, 0x31bea3b1bd965d4e }, { 0x3a9e5b364e716520, 0xd8ad0ae34015ace5, 0x5f8d9275a146a4ca, 0xec162afaf8d988d3, 0x970f549c1a3afb3d, 0x856820ec1b0e2d6d } }, { { 0x449dfc7bf38ca561, 0x9e9a5e6d64ba2dcb, 0x74919644ed69bab4, 0x2539cfb28ffd00e4, 0x2e69a3c1a080d886, 0x469f50101219e5f9 }, { 0x91f060fba5e5384e, 0x4e76ddaf046f77a2, 0xf3ca600dabb5eac9, 0x3a1d424343f30fdd, 0x8d4280b3f3bada6c, 0x23ce1889ffda7481 }, { 0xb8cac97f59c0e8b0, 0xb1ae75253629f98e, 0x3b62fb284be1efea, 0x991db500941312aa, 0x1b5d693b5aff3ad1, 0x8d6356a862f6dafa } }, { { 0xbb49a4b860886deb, 0x893beca8f4e16911, 0xb4caafd5b734bc4d, 0x893905f75a44747c, 0x97a8343ea28662b7, 0x9db25e108b4b9766 }, { 0xd350f974ed3a8fda, 0x926b37c64f0c50a9, 0x9a061a0402fa710a, 0x690c8a6ca2543501, 0x8b6ff2b8abfa8fde, 0x33bc8997cfdc2c88 }, { 0x9cd593e9b75d850f, 0x794ba06326ccf1e6, 0xf2d251cdcca775bf, 0x7e60930a8e5692d4, 0xc0488e01a123a997, 0x9ab29d0d181f4d71 } }, { { 0xddc35a1e04aeb092, 0xe39bceeee3bf07a3, 0xb07685ff3156c3ab, 0x53dc79c2b5899c82, 0x5af754d3c6aee57f, 0x9d7f117c2db27989 }, { 0x53e5a847bcf8ea41, 0x1cdd38c6c679e987, 0x40d8d7a953dc6101, 0xa14de739ed2e75fa, 0xf1a588fb62a22e6f, 0x6cf2b44b7a107e94 }, { 0x9d6b5f8a933c8b55, 0xfe209a0fbaa93519, 0xcb55496a10836e97, 0x8cd6372c843d9a55, 0x4b44bca857699ec9, 0x3a825c6f384a6962 } }, { { 0x70d8401cf4a4a3bc, 0x6a3c2afe21ca755c, 0xfccc311975e0cc91, 0xd0251486b2566b8, 0xaa78fa6dd910acf2, 0x528c71f13db570b3 }, { 0x6cd5a7791afa343a, 0x9bd9ccc1e641dac5, 0xec66c3f4d3681532, 0x945abc7908a5f8b8, 0x52a7e9b290636df9, 0x31ece5a6bb84eb2 }, { 0xd3111fc1c0495d6e, 0x518b50e278fa2fe1, 0x6dbaad600aa0ec24, 0x652fc506794d951f, 0x68a5b71e66e62191, 0x48ef4e3616eac705 } }, { { 0x269877e586169d25, 0xc5f64dae87f3a947, 0x6852cc87d3df3a85, 0x33b5e12929bac9e2, 0x152405dddca1ab0d, 0xf73d073eb9a5a321 }, { 0xc9446b18f62a7eae, 0xf521dfa746e8ce6d, 0x6798417d3c48372, 0x19efd781eef6898d, 0x9db131fc907d276d, 0xaff6ca07782cd8f }, { 0xb09afe424930b2aa, 0xe0a14f3a0b101285, 0x366c7edec514e189, 0x456b396688b748a2, 0x2c03915ab87863e1, 0x5f0012d811291be7 } } }, { { { 0xa1846ef33408617, 0xffc263a5f501b609, 0x7cdd0a01c188827a, 0x8ee105ff55991f6f, 0x4738ea54e0d7f5fc, 0x8cf80796e7e0b3c3 }, { 0xb70d4f7bb75a73ea, 0x8ec1951d0a1d736a, 0xbf3b1b373b80d4c9, 0x96da922331a17813, 0xd28a962c46f8d0fb, 0xedbe91afb733a46b }, { 0x2cc881e50c53e67a, 0x2459e791e2afefba, 0x49954a5903e6d79b, 0x42804b9851b728d2, 0x8aef833b361f1f3b, 0x4dcd73c064f04b20 } }, { { 0x9e6b3c016429d9df, 0xe78042626d13a2e, 0x68cf1f3dde6e4614, 0x70c84909fab2d5ca, 0xed2cd2a9ddcb3058, 0x3c33adba9c7ce1b8 }, { 0x33f486ec75e07d86, 0x46f58914225ba003, 0xc419407b3c51e7fa, 0xd29fbe3ac759e739, 0x3642b96ce545e576, 0xf2743faf5cb4799f }, { 0x198a7c826047617e, 0x545ae0ef332c6cd2, 0x9ebcea9ec0aa9ba, 0x5c5c2a425cf52196, 0x14cafff8f2e713b8, 0x6e50fced218c7cd5 } }, { { 0x14cb0a5b7792752, 0x90733fa02d99a979, 0x90f403c120972318, 0x24b3290ff9d4dc9a, 0x6e342319a3c5ce6a, 0x3c738f0b30cded48 }, { 0x98a5f2690fa44410, 0x170b17e8e1d3a534, 0x5faae1fef4ee195e, 0xb2f6c5030a0bb1ff, 0xbef3fe911156312e, 0x35bce57c93b27761 }, { 0xca93df8a6cd64f3f, 0xa0d537eaa61429ac, 0xa23b3ebf8c67034c, 0x161a27c32c61d76d, 0x7da84c368e644b06, 0xa4be36fe1e8649bf } }, { { 0x7edd5a273afbe09e, 0x7ea5cb6d508656cf, 0xb81d9de2bf889f66, 0x2d4514053c1f37eb, 0xaff874ef9020d4e6, 0xbd88ab6170dee8b5 }, { 0xa0f39e284f6f98fe, 0xc162e5604757c82, 0xf880297f46e55dc9, 0x7d4d91b154f4fbcc, 0xfdbba307c50e8f83, 0xde7711950e72ddc2 }, { 0x9044384b98c9e204, 0x7521dde649e8cf8b, 0x8195192680b3ebde, 0x375377b02d777b46, 0x79630428f3f0739c, 0xd3261b51afe2167f } }, { { 0xb30a6e1035a62515, 0x55e7fca10ebfa618, 0x2177dc9850ec69e4, 0xcde65d90cbc8c32e, 0x7da074a7aa4c269d, 0x2ba149f2c0c8672e }, { 0x666b87b2db443f77, 0x5678ee05a89f1dc1, 0x11da9c68034158a0, 0x35c8a4b8bb6aa372, 0x9e192de4d7ae97a8, 0x53adc3b07ae844f3 }, { 0x414ec2a581b070d4, 0x8fb033de072e6cfa, 0xd57d8d4ff0f6cf55, 0x968770874c13e13a, 0xb5820a0b2bb6e7b1, 0xc5d708d84318a6e } }, { { 0x37a661bd86277b02, 0xb694a665de4d255e, 0x6de2cbafe79493ce, 0x7bd3d28639f762c8, 0x9f37380521b9e337, 0xe36351c433050fe9 }, { 0x59ebe6faa4c2ffd5, 0x34af7e86647d4aa7, 0x843a12d22ec46112, 0xc4cbfa4959b628dd, 0x6b5d409c0991f735, 0x920973e5f01a0167 }, { 0x6b1b1d1434698f61, 0x925f4526c432aa49, 0xd357dd6d20f99e75, 0xcf75bdcf5cb76b4, 0x9ac51f3b0c5bd93e, 0xd6d9909e28a95562 } }, { { 0x6d1e9330c73bdc3, 0x8819d794e235face, 0x86f69226e1b97bcd, 0x40c579174282a9df, 0xb1679e0a0198309d, 0xa5b8b082bc1225e3 }, { 0xddb6b06bb90aaa7c, 0xf78dbea93936cd36, 0xaa5c27f39cc37d60, 0xa1b839a4de5dd559, 0x953de600b7ab41ad, 0x378ed430440f45ff }, { 0x3fc7f0d00a8974d7, 0xe831a8ad308cb876, 0x100e0fd93ec4eac7, 0xe3b71e12016f8d40, 0x3a82320d242ff1f, 0xa9781694e7e66080 } }, { { 0xa89b70d903fd415e, 0xe72a3a33dd667ba8, 0x1ef1175ae80aa26c, 0x8087eb9b60d57a34, 0x79b6eef446ac415d, 0x72b35452f8bd1f89 }, { 0x94b11552e296c5f0, 0x1e0a0ed298787d52, 0xe7c4b734a202d90a, 0x4f638be83d8db8ea, 0x9307a028d3763ce7, 0x56d568898ab85677 }, { 0x1e336a019e02d901, 0xcfadc40fd2bbf920, 0x1b2cfe99c91cd02, 0xbbe9c1a0474c9730, 0x37d5fe2b603ae3d5, 0xa429082a01e1953f } }, { { 0xeb24118b4aa1f247, 0x381d3fab88c27a62, 0x2df347fbbf6948f8, 0xa4b1e76673329e1d, 0x782da4b2b217270a, 0x81029a9e8ed2e2a9 }, { 0x4a73c32657cbdc33, 0x3cad2961bbf248dc, 0x949b2586fc4661d7, 0xeab0d5a5c76cb820, 0xc91b9d654291f199, 0x4afcc9937c8c8182 }, { 0xf188eaaf0eea353f, 0x7631ec9c2dabb952, 0x40ab65dfb0c7c4e, 0x2d55180713d7f97f, 0x2bf8d5a646e4e563, 0x61242056b5b7d7ae } }, { { 0xf433bf250b265d92, 0x6ec56dbfac0522c6, 0xeea93a9b34d84ebe, 0xa432158816d5aa0e, 0x343e9c066014876c, 0xfc206055914d3318 }, { 0x265efa1b6d5f68b8, 0x85bf75f8cae0a559, 0x9c6af73082d7643a, 0x37db108c232b3b52, 0xd9413d59465231b8, 0xc4a282cf8297ff8b }, { 0x540bd233fe260dfa, 0x73094771dc18624b, 0x401f3dccf60555ce, 0x757fe80a846e11ab, 0xc9d38680ed0628ca, 0xae9541a319c6b9d2 } }, { { 0x52fc0ff3a8eaabee, 0xcf96ab476eabd0df, 0xa4c382b739458cfd, 0xa0d413496af819dd, 0xe758dd1bca070738, 0x21227b78a03bb675 }, { 0x811adeb13b53a4a6, 0x8bdfb725ccea93fd, 0x63634055be2f4952, 0x95c5498c690342b, 0x2f3c917b3e2a729, 0x9861aee6f95a6c6 }, { 0x67cb779e986622b7, 0xe199ed5e44a1fb39, 0x8bbb61e1af1f71eb, 0x6dee34ad9854966b, 0x368519f7969c0ab8, 0x23c9fb8b5f6e1230 } }, { { 0xa1ab68fc2c25d1fb, 0x957bb7a0a7d79aad, 0x99b765d8d0f6e3f4, 0x4446bdb970abea10, 0x85b838c54a8bdfb1, 0xff158af9aa995d54 }, { 0xdde22c7f3caab134, 0xa95dd04f3accd604, 0xedaa3fba08facea5, 0xec5f50934cb7e42d, 0x6e6c1267050fe257, 0x6f9726a333a644fd }, { 0x5687294873dfbafe, 0xdb1446c4596471f6, 0x931152fa85035558, 0x6e37f01b87dbe501, 0x6145d492d7ebd610, 0x9bf59f52fd5094d7 } }, { { 0xaf0896cc3ab1e91f, 0xf79eade6be1944a9, 0xda2ef6c7435cf6fe, 0x87edadaf7c791a9a, 0xda11b07fa3bcd516, 0xa84bbd422485fd3e }, { 0x42d17cbb99cdfdb3, 0xd0cd1e653a645e42, 0x900a40c02f08cd0b, 0xbe528c823f6719b4, 0x211bc4dfcd246b1e, 0x5ad20a70cfe9199b }, { 0xa88976e063a283f, 0x5b2614c000bf1f72, 0xf0a5ed930aed289b, 0x82ee268b4b4697ca, 0x6c6da036936f4c3f, 0x55ed1266ba8556e9 } }, { { 0x8b561a4373409dc3, 0xc8360fd2d52a69af, 0x2cd345bd4551c660, 0x922a7b64d827eca0, 0xc1429b0a44956f05, 0x39a45ade22b0f8ee }, { 0x40c718372a38875a, 0x77d44160e493fb46, 0xde94abe594167595, 0x3697ae36f1aa1d9, 0x13bd7de5632d4bca, 0x25a33d397ebb4927 }, { 0x6a8936a2eed0196e, 0x1fd1301d0833c4cc, 0x20b94219c24d27e8, 0x1cfd7abfa26031f5, 0xd97c86c4b6fc1eb8, 0x2508bd3983e55cf5 } }, { { 0x53aaf7d3c48e842f, 0x307d0bb18709c724, 0x72524161e7591999, 0x3f20a47f4ba0d605, 0xbece7db869e4c9b2, 0x929f268c698f2d10 }, { 0xd1ff3d7b8c57f78a, 0x8c8ee3240794252, 0xf7f9d02fc2a8b3af, 0x2e3312080995e6c, 0x3bbbbc1d4c22984d, 0xdbdd1c9d39ac55dc }, { 0x14dff5b6182daed5, 0x98761d96aa1986e1, 0xcced4f37586cde10, 0x35901510a2864487, 0xe4d94509a0038bf3, 0x8708fe64d1658bf6 } } }, { { { 0x66e8860a7531c3a3, 0xdbcc81467b61ef42, 0x4469edde9dabd551, 0xb1593d7b502496c7, 0x849e9f73f651df24, 0xc1803c501cf0daef }, { 0x28b30abfca0cfa24, 0xd1286ef61de1ed96, 0xb2bcdfd02e4375eb, 0x1eb28f9bb3cd24b3, 0x6a1bc2a89a1cb9cc, 0x692596e3923409d0 }, { 0x968110e1cc564c2e, 0xdb55df378ab5e6cb, 0xa9b0a0bb55f26d2d, 0x88a453ac5b7ef5c9, 0x78993c17ea361a65, 0x9d3a09dd777c8343 } }, { { 0x2635af4d391ccb5a, 0x283dc4f9ed3e3ca4, 0x46cdf5a22cb98728, 0xa5a91bfac7420d99, 0x480eaa63e945abb8, 0x4ab844f56fdceff6 }, { 0x20cd01c258a00f74, 0xca1e80f55535f3e5, 0x9285b528233389d5, 0xc4bd99b24b0e3944, 0x4df3a3b524beaa1a, 0xeeff573e3f6e1b3a }, { 0x8aee6cac9185aead, 0xbb683d049a53ea83, 0xdc4583f34251fe66, 0x9151053965084e2f, 0xda17979d1e79e3b4, 0x1e6c8b8ea63ea84c } }, { { 0xd9781e1c0d0f0fac, 0xf399e7c4ccfe885f, 0x6697b741996ef5b2, 0xb6e16a2b9e84c43c, 0xac298efef9ec898e, 0x17e7186c7ecf7ec8 }, { 0xd28566771b92d80, 0x34012dddbb0bc166, 0x9918269f82daf56, 0x3a0da8f7da81287c, 0x7abd213d7d4bbaff, 0x2b7bacc1ea4d07cb }, { 0xf64fc7280762f9ed, 0x1d9c87fbdca7585a, 0xe7ea6c958c58c466, 0x1774dd504a62c89d, 0xdd9201e4d6428f5, 0x9c5daafccb0674ec } }, { { 0x58d2d8f0a2a3b30c, 0x686a491f156a83d9, 0xf241b1ca52eceb89, 0x1473720b50c0c775, 0xdbd9f15a75dff19b, 0xa3be77df1badc6bf }, { 0x63cf021f76117f70, 0x7ffe84d358b6fb7e, 0x2d880cc5a17415ef, 0x6c1f2cc916acbbe, 0x53604e279f7ea5a7, 0x4866199fe221875 }, { 0x29533c0cf3719455, 0x4ecaae2ea7f6cce6, 0x792b24f378390f02, 0xcfa97afded1b221a, 0x8b678634b785601a, 0xf2edaeb49c9aef4f } }, { { 0x87ba295b0f3a8157, 0x56af5fe35fb86f05, 0xe34dae08939fa06, 0x89a1ea146a69859c, 0x62e2cf4aa7faa481, 0x5b2b4ee3fc774ef3 }, { 0x4bfdf6987b6dff5, 0xd557a924e563444f, 0x782c8ffef3cf6671, 0x1c29625396f31738, 0x9b757babb56f5dca, 0x80e1bc516a1b064e }, { 0xdcae07793fc989fe, 0x39a59b4634eb4197, 0xd97b2667fad77e2c, 0xd0483ec4825b2360, 0xde33574130e0fc59, 0x2ca68095a6587651 } }, { { 0x6386726fcf0190c4, 0x1e0bc60dade270f2, 0x6fef4df00c1b247a, 0x94e792036196b7b5, 0x20bb52a9823e2b39, 0x814c8c174bd0e7c7 }, { 0xc55b6a87298c4f3b, 0x490227a473204d4d, 0xfdb0e600ab5e48a5, 0x8dcb80f1ca4adc5a, 0x8fd7b9aced48ddf7, 0x68efc8e872a01aaa }, { 0x73198addae967848, 0x34ac718de91e5fab, 0x8ab955b752b9f2f3, 0x5c63d39f2fb79ae4, 0x81537ce207fefe5, 0x23fc6958454c5381 } }, { { 0x6485ba188c18374a, 0x9aa1f7a7e3b0ddc0, 0x3f336a4c60c0b317, 0x57525ce81c39cc0d, 0xeccef79f7b3b665f, 0x8127bba5484506f1 }, { 0x74f5c5056bb04de6, 0xe85d5bcb746a6189, 0xfaa4b830a7e3c76b, 0x1befd7dbe595689b, 0x562351aab72caf45, 0x9fefca8bccda6f2d }, { 0xbde985d957a371e3, 0x2a50e899165046c4, 0x9af3d39012b55ff1, 0xbde5b9ad882570e0, 0xdf0975380e472b85, 0xf6d715b6a45eab57 } }, { { 0xe0be6c1b4c129551, 0x1da81bc82a55ebf6, 0xf2a08ee767f013fb, 0x55d08d4553915b9d, 0x137d931d5d2088e3, 0xa7c99ddc72d49b5f }, { 0xb226af4a75a35fe3, 0x1197a2378b9417da, 0x83eb9f21530c1ecf, 0x7738f98c6dd3593b, 0x9a248ddbc791cb67, 0x5949953937278fc4 }, { 0x7864314dba910281, 0x1bed2e39dafb50c9, 0xe505baee7a20dc2, 0xb41a08d917f92d09, 0x78e8063a3bf45935, 0x3c250e6272ea36e5 } }, { { 0xe2af43b078e9ff9c, 0x15901c1175dde4e1, 0xf1456c4ae806a2e5, 0x4942c18c542062c1, 0xd37fb541636895e1, 0xb0950b10efdb5f56 }, { 0xe70b038a93e3ef9e, 0x7c0cd61d7df5b5a, 0x18143e6efab4e737, 0x73acdb823d3a26b0, 0x15fbad230ad4c30f, 0xf7e2eefa01301899 }, { 0x7eb9bf07d1051b35, 0x292509b2d64b2f47, 0x8d0251ac3b7cb4f7, 0xb3e6822775d35274, 0xf7ef871888186335, 0x64281e72248911d5 } }, { { 0x2043d3fa4fe1e8cf, 0x49fdbdf79181293e, 0xb0d4da99cb5c1324, 0x51942b5b66f0243a, 0x8429044bc4908e51, 0x7a6766128c560432 }, { 0xf0cbb013d8074be8, 0xd1cb1f430ca785f9, 0xf36e399f382b1950, 0x81b961c9e63bbd22, 0x192d9417434e2cef, 0x5b0c771c5c2b9a11 }, { 0x7f0cfdddee4f9793, 0xa8e3a9d1a1cb908b, 0xf937a3be10656006, 0xd069c607f0b357de, 0xec74e9fb8ec06591, 0x97f2ba5a5dfa4401 } }, { { 0xcbda8e9c5db2d288, 0xf8737ff76a8e96ee, 0xe4a3df956ab8bbac, 0xfe3a539d011090c, 0xdf7554a9375af01f, 0xdc618cc74f230349 }, { 0x627f00afc4537507, 0x5f1d24724e5a3abb, 0xd3c88e936cce9456, 0x3ecc89959e1b927d, 0x128bc5100fb6ff03, 0x7af722e385550e60 }, { 0x88e808573c21ec5, 0x67120d0fa6722fdb, 0xaf11e44cf23e3ead, 0xf91a23ba327551a4, 0x34fbad7824d05ed3, 0xe42881b5f0adc6ca } }, { { 0x9fc24d235ff3d00d, 0x7db1b6ad7b7d472d, 0xf49c1e9f0c37afc9, 0xe80b84faffbda038, 0xf692cf7e60b6380b, 0x7bb540d0157b2429 }, { 0x6ba17eb85e38ce19, 0xb55746ac6fc58ecb, 0x90d824b39b12e338, 0x50c457aa3f463cf1, 0x8814ec538ce99b53, 0xed7157e114422bcf }, { 0x2db390fea0c7b882, 0x3ff32ec3edcc9a87, 0x4387928340af6878, 0xb3ea0d6aeec7100e, 0x4e2121473ed7ab5d, 0x2be19f1df2bf05e1 } }, { { 0xb09632d4025d09de, 0x1d684f22ca00d947, 0xbe3d816331b0c783, 0xf9b636f7fa0021c5, 0xceae923614e3f8f8, 0xd13388d20037ae54 }, { 0x8cbdae1aa20b9410, 0x410365225ffbec5a, 0xa23df0ff96428b42, 0x342daece4d490590, 0x651224e0d3f10180, 0x2d74b25070b2e4d5 }, { 0x5d942d15902edac2, 0x1cabac64627eec4b, 0xa91635ed380101c6, 0xf6bf5bdc3399f111, 0xa30028dfdff2057d, 0x9dad7729d3bc3a09 } }, { { 0x50fb5d5a607fd3d8, 0xc83d37c23a2dfb81, 0x6e08cf6c74f35791, 0xb0dc8647867194a0, 0x6fbbfd36543e5fd6, 0x5392406b0ab26793 }, { 0xeaf9cc676514061f, 0x1c8d6621d4148404, 0x9fb195392e834638, 0xc5a4e4222adc1522, 0x37b17f0073071a12, 0x1b75bc72b56d5708 }, { 0xbd04548a74123471, 0xb1f6505b7a55c94c, 0x410c8f0797625506, 0xa9d06b2b4ec15f2d, 0xfca3aabc81cefa2e, 0xc24b322f15d07dc0 } }, { { 0x156f5045e75a095a, 0xdd821facf598c775, 0xc58555b6b41f7cb8, 0x2b5120a07916f30b, 0x2813926192ef7478, 0xa251e5530be816eb }, { 0x3c9dab4bcd7b1eb2, 0x55d733012c01bd59, 0x159e8d188f8e0af2, 0xa29aee7fcd0967f4, 0x9bcbc18557de5eb, 0xb83237af4fd5da74 }, { 0x10c5d72232ad0d04, 0x389f0a76ac644321, 0xb2c9bea9416b240c, 0xd4742b14dd317005, 0x3b10b33145ddeb01, 0x305906ba895bcadf } } }, { { { 0x21bad6a1fffe1842, 0xc8218a8ae090e045, 0x67d4cfcab1b896ce, 0xdd91982237fed4e1, 0x43bad383721843a4, 0xeea1df62d89a7473 }, { 0x13e629c952d90428, 0x51e854145feb9eef, 0xe5aff904a38a9dd8, 0xd3bccfab2ea05c80, 0x6369145b83ade066, 0xfd9c33413a15de50 }, { 0x3e1407a51bc1807d, 0xb69dbd789daaecd0, 0x4536a39d701036e8, 0x81ef42d560950afe, 0xfca3850a748adf80, 0x1a078d962fd68f9a } }, { { 0x3d9b7dcbf63ddaf5, 0x443b6e1eb2941ac5, 0x4d8622fd73b8edfd, 0x95cfb16e7c8ee5e2, 0xc8f9a6189388da1f, 0xc9e487a83de6d1a9 }, { 0x66a75a61bcf2e2ba, 0x63a246125f8c82e8, 0x3ed91423ccf308d8, 0xef2ecf85986975a9, 0xba735efd644aa5be, 0x3d49ce2cc5242a2f }, { 0x261ab417c4e99fbd, 0x838912a8e623e4be, 0x88b67b36e3157173, 0x8decc5f86d793657, 0x8eae380e72f27455, 0x8553edbdbdf60054 } }, { { 0x7430e73abeae7afc, 0x62269188a5b9f221, 0x75435f48e903f7b5, 0xd68cd48a91837307, 0xf0f8f2cc7ee55d0a, 0xb7d381d593da941e }, { 0xd768acef73ed0ee4, 0x572d47c31caa14df, 0x7bf298ac925a4ac5, 0x92b6e50c431cbcaf, 0x68ce8f77e883181b, 0xef5ebd1091715d5f }, { 0xc4235d5e70925c66, 0x204eee83a1f8f854, 0xe3b429f4797469f3, 0x42bca9d9f017a4c5, 0x6b698fe887b4cdc6, 0x186bdc1e7c7ba57a } }, { { 0xdcad2825bb08dfcb, 0xc97dbe36ae3db5f1, 0x7d0cc51dda981fd, 0xf46bb710c5337807, 0x12e3ac132322c012, 0xbf696b1540eb727b }, { 0x455e3ecf0d3eff0e, 0x100eb7ba94d03abd, 0xa13bb4df8296e796, 0xad8ba55259beb0e3, 0x118f0bad254e8dab, 0x432d59fa2474acb2 }, { 0x718275a07e0de25b, 0xccea90b8f8e6eae4, 0x9c018dffac82e3a0, 0x1da2774a2fd1649b, 0x1e12f1f0b0f41e90, 0x32988befc15d93e5 } }, { { 0x1649e6204da64e7c, 0x5abf4586c73aa927, 0x92b74ffaf958b1ba, 0xd04253e5742ba499, 0x84f2ffc3e079c98a, 0x832779dbd45e73bd }, { 0xca989419676c5f4a, 0x20a6950b6a6ddddf, 0xf83fc45769fe9911, 0x41a4881af0cca7c9, 0x71db998b25ef9c7a, 0x2f6c045caf8bd6c7 }, { 0xcad24fad65794f31, 0xd0200e837109f78, 0xad10c7ebfed28e2d, 0xe829f8250107350e, 0x4ef4609eb962120f, 0xc74b1ea56c2b22dc } }, { { 0xc6131f886c73fed8, 0x6e0352ad8c2819d1, 0x33f2c8d4955f47bd, 0xbfbc6b294bf5770e, 0x543ab16285a2e9f, 0x66aff0ed8460f8a9 }, { 0x268f4f567f1e03ff, 0xdbf840e1ed98310b, 0xf3d22616923783f1, 0x7128cc1d809af579, 0x61d9bf1951ec40fe, 0x3ab9a5684303afd2 }, { 0x5dce451ff87fd551, 0xfb481e253d57744c, 0x3ba4126a8623c3de, 0x2188a8d64d193138, 0xd9b7a868294fcf79, 0xf85d9d6b5563d7f4 } }, { { 0x98398e1dd0a40c2c, 0x2dc1730c155f15, 0xd73dc499eb468f09, 0x58dacab37d5e1caa, 0x663c77d9d226d9c4, 0xc445100bf4799c64 }, { 0x2d8df518117c0553, 0x96672277611b1f17, 0xee109ee897a78ea3, 0x7b7270cc3558aab8, 0xdd16bb1a2f3aa975, 0x4518e0e0555c6e7b }, { 0xe5d10f708fe24d03, 0xb2b4e186f6eb24bd, 0x2f28c565a2492bde, 0xf543efc0d7663f04, 0xabec338f5cc15782, 0x5bb8af3dbb2b04c5 } }, { { 0xd743d8a098210b29, 0xf1a3bd51548cba85, 0x7b5d7ba00b19667, 0x818b464d4d24d3da, 0xe7061e3ea9eb6758, 0xa2a50d51f52d405f }, { 0x54303322fc934a86, 0xaf2c5057160869cb, 0x2f8af699ffd80fc6, 0xfb5f4bddb2c8059d, 0x1f71139ef61183d8, 0x742cbc3cc5090c46 }, { 0x58508a2b9339b632, 0x422925a6954c72ec, 0xfd7f704e097bbdf4, 0x2be32b855da00435, 0xa9de206e5610e7b7, 0x6c38ed6cf0264f08 } }, { { 0xb91a1cb3805875ed, 0x4c7d304dc6c660fe, 0x4c1dae71e7c69009, 0x1c4f2b2e0b59f55a, 0x8fc077e407d57607, 0x1bbdeeeabf48a58e }, { 0x2acdd89506dedfbf, 0xf983c71df81b8e8, 0x83090e87b6177824, 0x8a071e27c20f049d, 0xadc28b58e611aa39, 0xa1dc5d6b833355f4 }, { 0x3911c74799f9f0d, 0x69dfd3c230592ec6, 0xa342f83231672f0c, 0x1ca809f6482f2879, 0x37cf3f875a7e271e, 0x15a9b9634a7ba3d3 } }, { { 0x192c4db999f04c54, 0x8fc0a0df0c8d04d4, 0x19fe8c0f987102ef, 0xe630970993ab59a9, 0xa85dd5660a87c8c9, 0x822d444eda7ade8a }, { 0xe8143be0e11b49a3, 0xce30381151257145, 0x4b33c2f34b410218, 0x2982ae412fb15a7f, 0xcd2a872c66580ab1, 0xfffec344b645deaa }, { 0xe7867d2cd894f1e3, 0x6f8d91fd5ee21a3, 0x3d2cca4d9217eac3, 0xe558188028fd6bb6, 0x957c164c7b2d01c4, 0x6bf7f87c9c5622d7 } }, { { 0xa7b510fccf53b671, 0xc27a082d6da39bf8, 0x476c6e100f43d4fa, 0x4ca744bc75345edd, 0xacc4c1aec539c0d0, 0xbaa640eadcba75a2 }, { 0x1a54e9cfacc12021, 0x442e68e7f579d6b0, 0x4e2c4ab565956ccb, 0x5bef0e644f68ba92, 0x5d2fd67bb5f26a6c, 0x990d686ed3e93f14 }, { 0x92fabf1105520252, 0xda8f5a9e84b91cec, 0xce383e8f4332e152, 0x79ec53886f83ad4c, 0xd2056085976ce7f2, 0x6151a382fbf494ac } }, { { 0x970cb0c3560b1e0f, 0xf7d2405f8d58f449, 0x5c048709fc28287f, 0xe7f17a99b62fce30, 0xb35ca1a459b985bd, 0xf8e91948b8bcd54f }, { 0x42c42e0efa471529, 0xb9cac9db79aea574, 0xb67b09fcd32269fb, 0xb606d17f6fb80cc, 0xe65c625e1b0d0bd, 0xd43f97b97c61000b }, { 0xdd36611ee981a048, 0xd1ab90c5c4907590, 0xa1171e035d3cd048, 0xf82cad4510c735c6, 0x51cb759a4a6c15c9, 0xa35956935d7e69e9 } }, { { 0xcb9b748608114b70, 0xbf4d4252dd45bdc2, 0x474adca2c1c626c9, 0x905e5f3714d59428, 0x45c94104c4d81bfb, 0xa467e4d82a310c3b }, { 0x3d4fcb71a80bdd2e, 0x756c20d7cb2dc8e1, 0x58bce53b23b4501d, 0xd1333ba46c2e7a58, 0xadcc0ea3b78ba109, 0x7d17b9a9b9f23ddd }, { 0xbef093e516c92487, 0xc49b1d5672a8bab5, 0xdfc1761c7c53894d, 0xa2df6f50059a1511, 0x9f2367d38c72b5d5, 0x36bc9b4e1cb1318a } }, { { 0xeb1205844f8686d6, 0x4f45f2d3ce7fbee4, 0x7eedef0212de9a23, 0xc3f896f6f8277495, 0xa802600c6bcf6fca, 0xb7869ebe022761dc }, { 0xa63e2a8c4451bf9, 0x2fd7cd17e55faeb7, 0x3ff9430a689359c7, 0x6aead1173e787796, 0x3223fc0cc119533e, 0xe0655ee53cd00222 }, { 0xa23a81748d0c267b, 0x5b3ec70592280b79, 0xb5613e0bc706d485, 0xa661c20d1e3e205f, 0xec257125c886398a, 0x3ea493ffc77d07f3 } }, { { 0xeaffd1e70edf7de4, 0x98bcda14dc3d825f, 0x1cae6241aec096f8, 0xed94a11e0f8d2b5c, 0xfd7f7ad34d509f55, 0xd0e4fa105718a3ed }, { 0x1b93721664337e64, 0x9613d06d6cd1503c, 0xb6f0fa82b2ecc0ed, 0x2af8776cc4c1db9, 0x5edc5ccdf32a2818, 0x613a6d5d13e4e255 }, { 0xc49963599d144b2a, 0x7c06573c437fb155, 0x1eecec66c2ef3358, 0x8a3106967c361808, 0x6c31372542dac9b, 0x17a8156a7e25f72a } } }, { { { 0x666d3aaf963f5402, 0xf98916cf040cecf8, 0xd21e4151e817266c, 0x8fa5d40df41890e, 0x862268c14cc68dd3, 0x3898cb45dc5436b4 }, { 0x3944bb536d5a40c3, 0x11763e7ae2740076, 0x49e4a8d6d33cf3d5, 0x2ce76eaef9a2eafb, 0xa5b40b0cf4f50c28, 0x78225a2e97b60585 }, { 0x692f6f75535461d8, 0x3c47381fad72c96b, 0xd53ad4f3593ab82d, 0x13a504bdb6b20f4c, 0x9411482127c30ca4, 0x49345ee34275fc9e } }, { { 0x6d2b989c1c38d3db, 0xc50faf736c421a92, 0xffa79bc3c1960635, 0xcfe685145ac6b430, 0xb132aeb82a7f3be0, 0x1cc719637b38a8b7 }, { 0x2c2a51823758a25b, 0x923d7db86f42f61, 0x39ae3bdebbf429a5, 0xff44ebf7a5bdbb90, 0xce154d835f83e78a, 0x261aa8b28385467e }, { 0xa9dad9d27acc5cfb, 0x2dca41f745ae9c11, 0x7d714267c15a1b70, 0xf6a789fd92f3fe7e, 0x3f9434ae0a453248, 0xa8796115e1bc7bcc } }, { { 0x42d63e1dacd5966e, 0x58cbb0e55c67d401, 0x43db77281787a23a, 0x50b60023c10efc28, 0x3b63a83c909946a9, 0x54b181396ef9564e }, { 0xb81e00f738726ebf, 0xc8c50c35f7689efa, 0xb8cff8063464b54f, 0x2463aeb1c537b069, 0xe673e99d9c593dd3, 0x18eb059a4d5fc812 }, { 0x6a2408dbc82f8045, 0x99e4951c76c8bfee, 0x82835ca9ed182997, 0x2b2486abf0bfb2c, 0x3af4563a54ca1fa2, 0x9223cd60b35ea256 } }, { { 0x8c271b12e222492f, 0x95e88483f0dc15c1, 0xc41fa7b14c117f20, 0xb28b9bf211c7c30b, 0xb483ce672e7f0c4c, 0xb2e6003e73be778d }, { 0x5b04436474e8aff6, 0x24afadb90143fab1, 0x556ab2a8900738b7, 0xe29d79900b8635e1, 0xba44a12502ddc1c4, 0x8487eda3cd37ee4d }, { 0x7af2118a983e3284, 0x2b87db3e7130ffaf, 0x7f5298387e021a42, 0x15749d8ac0be1f4b, 0x3f46b3b9b5d4562e, 0xec1435577d266e61 } }, { { 0x916c556723fb3dcf, 0x71765e30b7e6cfdc, 0x254542fa3694e867, 0xf369686f661b361d, 0x6501434f22da8cb7, 0xeb1806271fa6230b }, { 0xfbd613adc0161433, 0x89fd8242313deab7, 0xdb3f5edd2ea04f85, 0xfc43c11be2e94254, 0x3a45814d3045920a, 0x9443f890ed2bee5c }, { 0x5c6462fa98d4f77, 0x21d30edcccfbe8b6, 0xca730adc583b1aae, 0xf97804314bddbaef, 0x4fca0f8c346ea8e4, 0x35942b668992ea6 } }, { { 0xdde48928ec47df9f, 0x2ad500d59b78de41, 0x3e1eee32ec462e57, 0x24fdcd64f4f6ce32, 0xa6d9cb2e12127ea0, 0x2529c06c2e35c5be }, { 0xcca27877de93af9f, 0xb408a773cb83ab6a, 0x2ca870ffcffe8ae3, 0x2a4032d2a9d70f46, 0xe1768ec99eb7f636, 0x8d42c4899d26127a }, { 0x5d4ddd8b78a41e15, 0x375f86e461948159, 0xf4ed01031db9f9be, 0x3aa9c52458e7d6ea, 0x27987c9f30d15592, 0x443f1724833a4089 } }, { { 0x4a5bc305fd07447e, 0xde3f139f8d9c3293, 0x4880271b3bc4e4d9, 0x42b1ddf4fbe09968, 0x5b236539f19ad3ca, 0xa41cfac695bb3231 }, { 0x96a64059fe128852, 0x1e072427b248070c, 0xef759b230f713e08, 0x48fc3a00cbff0c65, 0x73f39daba46d9f63, 0x9df5569109cf018b }, { 0xc8cc84526167eebb, 0xb00581b62b602ce4, 0x374abed9d45bd877, 0x193295d6e7d41340, 0xd3314e35dcc4ddb0, 0x33f1c6b888692f88 } }, { { 0xdf2a9eb95520c63f, 0x650e90d7451f4b55, 0xac51804db7c27374, 0x9632f7c7e6a7247d, 0x7cf18474a72c978, 0x95917c56bdf4c5a1 }, { 0xd0209cea99252be7, 0x6a566459335af5a4, 0x2ac2a97f7e35a857, 0x38774411f5866396, 0x45fa9ac0cddec6df, 0x10ba2f85946df4f2 }, { 0x8429ef3b0f5a0e1f, 0x4844c024872e793, 0x2c08d0f8591a9f73, 0xab6acdb50d1031d4, 0x991cf68cd31ca8d2, 0xf2b8f81731aae38f } }, { { 0x112a38787f2778f2, 0x938b2cb14d2a961d, 0xf89efde0244eb966, 0x1480670e82d0f73b, 0x7b5349c3df0a808a, 0x621820c142de8a89 }, { 0xb9636be08f624623, 0x9836fcbfa0d931db, 0x74e62ea6d310d2f2, 0x1bd474a5e0b22c1, 0x2520a4001d3160ba, 0xb4ba1aab13f5a100 }, { 0x611d804ce79b536d, 0xe1acc3a94029dada, 0x369987ca729e5128, 0x8edc0062fe55340e, 0xb5c9b42841f244e8, 0x953839dd32282fe7 } }, { { 0x3e22ae53287ebfc6, 0x9f531e6b24c4abf8, 0xcd4dff15039ce8ad, 0x1c4083f064bab64c, 0xdea4f2228b069128, 0xa701c5570f86cefe }, { 0x3e296fc93903d023, 0x3b5cb4487b1544bd, 0xb0866a4722e98921, 0x475984e9ed9c08b5, 0x12e2ac69651c7e33, 0x15255ec9e0d85e8b }, { 0x65e519e09e9324ff, 0x91769c9ad91c2508, 0xcd07e5794dd269e9, 0xa2424b7afda7c07d, 0x8121396e7a149548, 0x162a0386bae60101 } }, { { 0x6c799c9b1a268065, 0xfb39253e7e2dbab3, 0xe3c9c3b16055c285, 0x671db2037de48c28, 0xa61480d1491a53be, 0x89bd14912d24ebf4 }, { 0xb0ef88ece6ee520, 0x85f0f590b0bf1bfd, 0x49ceae0b5fd3ce45, 0xfb10ff553df6e011, 0x7a7c95dc5f5084b4, 0xb754e69c6404caa5 }, { 0xa74d4b341eff6741, 0x1fb3b1bcba370a40, 0x8e2291c30c6eac34, 0xaf390341d7ae4039, 0x497835790b10c5d1, 0x31480ccdeba9df1c } }, { { 0xef30b2307e3695ce, 0x27dba69d505f0343, 0xfd4542614c3c420f, 0x4415b0bfdf10cbbc, 0xc143e3b26a939a16, 0x720b5f84ecb0eed5 }, { 0xce21262029d78304, 0xb5498ba399c11c59, 0x202fc27ff4de87ee, 0x21522d23d4a42b17, 0x2d3723217101a99c, 0xe664e0c950206d35 }, { 0x349e2f6267243731, 0xb624d65f907c64c1, 0xe1f45e50986ece07, 0x83bcd98fe3f5354a, 0x7104193e8bfc0a7c, 0x7f0bfb95a4570259 } }, { { 0x4f7fe06eb13e01e8, 0xe5fcfa5370209dcf, 0x888fe425b3ceddf9, 0xc65f6f46aae34ad, 0x66a602bd12768e26, 0x19d8584d6421d188 }, { 0x25478acf642175a1, 0x9959f4313dcf8ce9, 0x7c261d7a5f7914cf, 0xc524d34714a77ec3, 0x2737d5b7b08f66f2, 0xc123e45789f244f7 }, { 0x18ddc125d77aeffd, 0xc73d8f360f24b8c7, 0x53b847f3590f1451, 0x283d476e2ce569bc, 0xb0e010035cdf2426, 0x6bb9a91f8630d4b2 } }, { { 0x4d796600d3d7b1fa, 0x22a158b99f5da2fb, 0xaa42695add07f19e, 0x61debaf99904c481, 0x17ee3b111be123c4, 0xd8bf9d54b57b01c0 }, { 0x7d671650b4958c95, 0x86d82e95a09df5b8, 0x4872ed30866558f5, 0x7c7630c968573d8b, 0x3a9aa8020f6dd52a, 0xfb76b480791ea5f2 }, { 0x7aa5a37ac9d9ff43, 0xa053e86fb0d01bf7, 0x8f83fb55be32c73a, 0xebfd15154501a878, 0xd42dcff4169cb5fe, 0xf2ed38d200d683cf } }, { { 0x2cb16c123a86e287, 0xfc42b5d0e48e0a8e, 0xfa806b1a9ece6be8, 0xad182682922594a6, 0x72e99e663f56a990, 0x70f679a33e713e53 }, { 0xd228170d1c6d8991, 0x3a3d26de10c33077, 0x805b85a0fcce1d9b, 0x904145efc761982d, 0xe0d1b40c7fb7e9fe, 0xc44440e3a404ffe }, { 0x84e27e1eaeb17790, 0xdfa60266094bf975, 0xa6417eccaf9612bf, 0x820da5a65bfff1b, 0x32e3eb5c43e58dd5, 0x300b6da6df3751e8 } } }, { { { 0x8cdf66a1ed83c7b7, 0xd14a89724db2dfab, 0x2549267d6a643707, 0x98b8b0c0aa32ac20, 0x90e7fbb75674964c, 0x801f9fd611f9c677 }, { 0x24462f67a1f4b926, 0x64aa3c68cefb067f, 0x1f0c5999061d4784, 0xae7680d7929dade8, 0x859a486e01bd8ba9, 0x42ffd1cc315c3513 }, { 0xb6d6ee3e217e064f, 0xa2133e9fb1f18c94, 0xff8f55f10b1f5c26, 0xe96733e063efacfa, 0x29e0a306faf6dd9f, 0x46e1370659a2fd40 } }, { { 0xe17006990237a4ac, 0xaa1a5a8fe695aa77, 0xbd7fc6240f19fcf2, 0xc8e97b00fdc5009, 0x3740b1b5449ada5e, 0xa1a56a76b7d88b08 }, { 0xfa8b2b05309d5214, 0x31673f8f8ffb66e2, 0x4d223db050e130e8, 0x84cc94b107607c7f, 0xdfc490606be1bde7, 0xc7653699c701a25f }, { 0x552d32a66f3410e7, 0x8694eef3ff36b1a3, 0x6544804d57cc7945, 0xe5ef5363bbd9ef68, 0x10b3bc1472655f92, 0x3d996245cd671701 } }, { { 0x1498ba402a25f08e, 0x23df4a116591a7fa, 0x8ba2153d4a2e8c, 0xdab7738007aa36d1, 0xcd30a011379cf46a, 0x7deb7517950cfec5 }, { 0xc93565dbf359de57, 0x5b06a6ac8306f893, 0x30284cdadb7703dc, 0x8477782ec46e4c81, 0x666613a0d870b7c9, 0x8a30f6e832d74e3b }, { 0x171348c81c09d177, 0x3b143c5ba1574b94, 0xf73989a4f7117145, 0x735ccfa483b22b24, 0x48d3d8fdb92fa11a, 0x601e62b8668ca4f0 } }, { { 0xf3c957aa66ef9eed, 0x149bfcdd0a762190, 0xfbc3958c1dcf250b, 0x38aa0909410745bf, 0x2f04db317a00218b, 0x605d1208c5179c26 }, { 0x752b625c5c40aeda, 0xe96d5b1154792ad6, 0xaa06b1578735eeb4, 0xaf7a1a91e592ac00, 0xe836a1569b54dfa7, 0x965e72c7e7ad1d1 }, { 0xb6195e44d7d061d3, 0xa71327ee64898ff4, 0x980aed9845a8523d, 0x3b5329a145c91bcd, 0xbab6c3a491a195fd, 0x8ca9bc4324217114 } }, { { 0x80a9e72a5ee7cc41, 0xfd2941577fac6e51, 0x9e39a50728943e69, 0xfed07ff598be0eca, 0xe78a10e839284b6d, 0xf66cb57e5c467b39 }, { 0x4fd70a21db175337, 0x355bb63bf036b812, 0x599ddeac3e97bea0, 0x752bab08e031ef20, 0x45114197e015fa7d, 0x1a03bf1daf3ac2f3 }, { 0x4ef814b1b2385ee6, 0xdeec1ab0f7362760, 0xe3d8b077628767c4, 0x14c382d32dcb9f1c, 0x7162e7fd036472ae, 0xe968184097408504 } }, { { 0x373e67062125369a, 0xc23249e90143c3a4, 0x26602e8a2ade3d26, 0x63a336671717ef20, 0xd2fa31582637080, 0x388e2898f77540b4 }, { 0xa2f7e4275bcd4663, 0x9a92e9bab5cacc8d, 0xfbef849098b6ec54, 0xd416794ab33078bd, 0x346e5a7577e74b58, 0x477d417d92bad790 }, { 0x106972b8183468f7, 0x4d8b34d89e0155b0, 0x35e03b5811054b00, 0x6247cefd161ee7cb, 0x58ddecc75ba0f6aa, 0xce99a21d00aa4594 } }, { { 0x164e11d26d8e009a, 0x43bd77270f24515a, 0x31f142e67e579702, 0x68cbd45052995c8d, 0xb5d782847fd68d97, 0xd584697f345e0769 }, { 0xaa10bfc049c1534b, 0x1595099693a39e86, 0x736688d9e6229637, 0xef1303a794de90c4, 0x18ebf9aaa58fef58, 0x1261eb2f99d017ae }, { 0x9ae23fc396ede9fb, 0x2b9e48b495158d24, 0xa1a9cba506d2f97c, 0x2ee7c9737127dc10, 0x9ad79c2a8bf6fe9f, 0x63776908bf3322e8 } }, { { 0x35c338f88fb189a0, 0x220e39af3b254f25, 0x98fd4aff8aa75714, 0x9d979d75ad7a50e1, 0x1d61a88039c21222, 0xa5845a72caa869c7 }, { 0x935d554a2d96511c, 0xbff22b2b6cfac0e3, 0x948661c7b5a71d40, 0x440a2fdb0a2c8972, 0x64e087c2a58b5dcc, 0xdb169e677d4ca83f }, { 0xa792f165f51b4169, 0xe6cecce3a2328268, 0xf088f164602ce8cd, 0x44ead2cfe4be4b2c, 0x64153dfa8bc9c55c, 0x30a7e7817067d6c4 } }, { { 0xd085d6423cafac0d, 0x6af640b9258bb8cd, 0x9856b063613d8b2, 0xaf1e628980bfde58, 0x184ab41f7886393b, 0x732f1daab0a12ea }, { 0x8c9b97636e302477, 0x6b90bfb9858bdbe8, 0xa6da0e8f8247d3a3, 0x4cc5af934169473b, 0x6365ee8eb1241a67, 0x1dea4f588a556a53 }, { 0xe55e986499504510, 0x76755c76f33a9125, 0x4823883dc7b398b7, 0xd69d6a2dfa64fa9f, 0xa487990ecf47549, 0xa4a6a3d274f96f8 } }, { { 0xf3251793ced234f8, 0xb7bbb753d9cb54b5, 0x6405f487ded2678c, 0xb6b72b05fd53697f, 0x92fc2b3420c822b6, 0xba47e35aea216ffc }, { 0x4d4ebbbe7096109, 0xf9797979e41ebba1, 0x81a781edc173fef5, 0x3e6d8453aad08466, 0x42a18529c24958cd, 0x28e92b3752174344 }, { 0x17528a573b8eed9a, 0x6bc3273f25436287, 0x7bf52a197471f9da, 0xfac866153631a17, 0xb0e68ad9b3bdf830, 0xca7af85101a34e7e } }, { { 0x9c54e6bd0618fd1a, 0x4de77123aedaa054, 0x898c377f8bc1fa0e, 0x29f07f84f374ec88, 0x132746900a711a11, 0x2cb3a4bb5f6f7702 }, { 0x695bad60366a1639, 0xd6e077382f030ced, 0xd046281583bc671, 0x2d7ee2ca97a6c5e1, 0x481023f371b5b434, 0x521d41a981ad9935 }, { 0xc85efaf2f40f02d, 0x2b767ed8b9aed64, 0x9b8e3209409d7515, 0x2d02a17d506c6a48, 0xd4f15d2aca927bf8, 0x4ede95b6f436c27d } }, { { 0x8433daa6bb5daa6d, 0x6b117ffdcfcb0a66, 0xb120628058283868, 0x9e0ebc0f7e9fbf2c, 0x8d3532be54b7a70, 0xbddbc86cbee2eaa3 }, { 0xe24d495f244f8df1, 0x7754832fcc8bec7c, 0x45a87b77c561ab27, 0x193de9e3082547b2, 0x1a65e19ba4d520c3, 0x7361a6ffa8da5696 }, { 0xf9b321bf6685a096, 0xae759622845e0d91, 0xf02ad95bff1e8b1d, 0xd8a071e15387c66, 0x2680f51cfbbfc31e, 0x171a77b5d6196fc } }, { { 0x12bfe475c59d937c, 0xa15dceea33fd46c4, 0xd9bda0daf6b9e448, 0x17cb66eb6c8831b3, 0x8739a01891fb23a, 0x9fe3101ace41f6f7 }, { 0x90a4c0b556de9906, 0xd43cbca42b4f80b8, 0xd99e28e83f57af03, 0xe85891cfcc06db33, 0x9640fc810eafc78, 0xbb116195ae4cfc2e }, { 0xb379cd49d1b9a058, 0xfa27f716b4c226f5, 0x3bb0cffb12eaca2b, 0xa8bb1898ebcacc7, 0x35ba8e2f23c9ae33, 0xadf4c09c3a32c046 } }, { { 0x999f1ad062f9a1cb, 0xcf5a109b45b82fc4, 0x9efa644e4ba4f58, 0xb64c06cdeececfee, 0xc922a5e78b9b5659, 0xf4332497ef9e186 }, { 0x1676f38f4f4eaa17, 0xb53dcb195ec02cb6, 0xa08fa318af50862c, 0x5578b6e2ecd2f973, 0x781f9692d16761ad, 0x844e0a8bfce27bfc }, { 0xb1c90ec7487d2607, 0x39c2dbae3bd89d7d, 0x3ee48a00a0c5c566, 0x950d4d06952225a3, 0xf001354efbb6a1e3, 0x3cdda7e23ccbd572 } }, { { 0xa17bc62b4907035d, 0xf6f463e65061f324, 0x8378413861eb1ccc, 0xe0d996bfd6f3a797, 0x82b1f0f520263049, 0xc692efaffbbf714a }, { 0x498e2f422d646ecb, 0x5c277bf340488cf5, 0xcdf00428fe074647, 0xe68e03af85b95646, 0x27c770b5b8f39ff9, 0x7ac7d70c0151e8a7 }, { 0xb71bbf64600f6ee4, 0x3297bbd8eb5620b4, 0xc5ccdb4dfa6b2073, 0x781f08605ea06ba2, 0xf9c13458eba35c09, 0x66baef17b4442e43 } } }, { { { 0xdf60fe70c5633c6f, 0x727406c1c8dc8cb8, 0xc79df86c8575b25c, 0xbc8dc15e7a89c4e7, 0x94027037796cbd5b, 0xa3105ea3bed03699 }, { 0x9244c64fe90b9a0e, 0xcb8cb945b941b16a, 0x18dcbb4c00b5fec0, 0xfa82b916de00a81e, 0x4368d31cd160f456, 0xcbf12a1bc4018830 }, { 0x11a17941774919a2, 0xe6f9425ab3c2be0a, 0xb437cf6ca3ce8bec, 0x65362a835c1abfa3, 0x4bf5e14e639a2e27, 0x326be32b62ab1f87 } }, { { 0x7130409d70f8f302, 0x38ca94e2c5111fc5, 0x32d9bccf5d427b36, 0x35b341f95ac09f9b, 0x657dd932a657a82f, 0xb522723457cb559c }, { 0x69d595161e57b2a9, 0x86cb8b4bdf179235, 0x5141c901669362cd, 0xc766508cfc259f83, 0x2102b620225b0562, 0xd6ec71aea7b016f2 }, { 0xbc354d7b9fcb5c63, 0xcf7b20bf7179f5cc, 0x57c7e9d5c3c228e6, 0x3a2df873483b6d73, 0xdb527d0e355dd737, 0xa57ae31abe5713a5 } }, { { 0x6ff616bf1a8de994, 0x87cf10708ee276d9, 0x71155fab1bf615ed, 0x671b5bc068ba4a33, 0xd2613e836ab4fc45, 0x796290c69ebf0729 }, { 0x19ecff19f347e63e, 0xd5bbec8e496eec30, 0xe38a4d8ac03d29a2, 0x79cac6099cc5e3ee, 0x55e3966adcca23de, 0xaab5c3b9b487a428 }, { 0x933767dfaa886ad4, 0x9ea788896b3af6c2, 0x5c23970ab50949fb, 0x3547c9b29c6839cd, 0x7f863f4f1100bb52, 0x4fcb3372e7d045ec } }, { { 0xdf679366598d5539, 0x8ceda9913f6d8628, 0x872f3e3fafed00ce, 0x748784a3728df09e, 0x8427cf07d2e8d267, 0xfe48ce7294ef415 }, { 0x3028cd8d665517ae, 0x509b642037765841, 0x8371b2ed0954983b, 0x2c150c7468a08bf7, 0xed83656d0a443fb8, 0x35e67483bf25050f }, { 0xc95986ede6647c3a, 0x50c8d888245ee8d5, 0x5fe7672d84c865f6, 0xd5be73f79ec275e5, 0xa80f9bb89beab20e, 0xdd8a497e2c6a1374 } }, { { 0x7176767d3aacc162, 0xcae98845a163c3e9, 0xf960669d1b3668d9, 0x637697d54a7e6ab5, 0x654715d70448dd46, 0xbfc9251bfcf84991 }, { 0x6fe65b96b1009975, 0x54827a61c8ef0a51, 0xd75f52b1337c8bc2, 0xcfc9b271df763ecd, 0x7e8b2fc1b952c733, 0x1779e4139cf92b91 }, { 0xd1add540d4ffb3b, 0xb849c127c233ccfa, 0x361ae6b056e30f0e, 0xfecfc651221937b3, 0x880eeacd9519a0e3, 0xc324e5aa5e5983bc } }, { { 0x6b4c9d5d8c835cdc, 0x1ed475f934a35cdc, 0x9c07ba1e114700e9, 0x9470a842f498496a, 0xe97047010b4bca89, 0x672a6402f7b9885e }, { 0x567f23127fbca421, 0x10677b1dbca24c6a, 0x5c96726abe453b61, 0xd3548343ff455c73, 0x1ca78830d7d40cbd, 0x4e12e83c7443dcea }, { 0x5c9600094305b69, 0xcf00223f0bc93e37, 0x7ad7a81abbc514, 0x2a778a5933a96d46, 0x3c2e353f14dc98ae, 0xec57f4c60994d243 } }, { { 0x18a18cd378d04dfc, 0xf958221ebe95c33a, 0xe52ef9cbc1b6444a, 0xf6dbad5599233d4e, 0xbfa83939f7c1fa1c, 0x2034c657477e8fc3 }, { 0x4c1b935ec6788d9a, 0x895c3be783ab96b5, 0x844f2b4f95b252c, 0xe2deb34806f574aa, 0x3efe5a12e7230104, 0x19595a8eff157e43 }, { 0x33b2df9a9d148633, 0x8f2df365f6434c5f, 0x6d099d818e3396b3, 0x920ff71bb7e06a96, 0x5428c77a209f760a, 0x36621de4c8418856 } }, { { 0x1a937eefb8a88d08, 0xc5ab4ecb71c35c41, 0x55823c28eb164d74, 0xe7ae08dd8b6a16e8, 0x7fd9798f1d48833a, 0xfe17a9ee53e03d8b }, { 0xdd4c0b9a9bdba688, 0x5566883910cec228, 0x3200a7acb24b6f0d, 0xc3206838fb8621fe, 0x266a55005a4041f8, 0x668b957788375791 }, { 0xdbd42ea4262b4c64, 0xf69276d6c5bc81ff, 0x9a08f2ec9f9603bf, 0x28a3907d7a69606b, 0x7a96ab143309e830, 0x1b9a31110e17c604 } }, { { 0x4ca30bfec335c357, 0xef7efdf8773e082b, 0x9e28b9acaaf7fbee, 0x59f272e5b640ff16, 0xf0e06b1bed16c5d0, 0x9a4726b15a00c5dc }, { 0x2d995ce3585868da, 0x56167071aec9d8be, 0xeb984df609e7c648, 0x3c170412a8e0aa4d, 0x3aab56af3c70ba27, 0x28bf40fd9555aa12 }, { 0x18288870e1ec82ff, 0x731feed2236fff3f, 0x673e36e5b8b649ee, 0x58688b5b9a3442bc, 0x4533604b3b18a79f, 0x82e30e49b3d7cac8 } }, { { 0x89d218294665a741, 0x113dfd2d4ea5f796, 0x8cf7a2169e78bb19, 0x589c42a92db6c30e, 0x9d85b52189bbe01e, 0x319a8d9722ce0d60 }, { 0x58ebf7728decea0b, 0x6147d43dcf390472, 0x5de4c7b1e7b327e8, 0x4de2524265e478be, 0xaab79840dbd5f1f2, 0x5c750b167aaf1824 }, { 0x71de3ba6339e826b, 0xa67647b8778fc81a, 0x4a0106a73ee5f5fe, 0x161cf2794ed56e, 0xbafe5b836db967b9, 0x8380cc4c4d18947d } }, { { 0xcc0f01a14cdde29d, 0xd665eec0d7956de5, 0x1d38f576721947d4, 0x2d1f334ba8427915, 0xe23a645807afd960, 0x7ea70f181078869b }, { 0xb9ae490dfbce24df, 0xd99bc0f07a29cb35, 0x52187bea91b49a92, 0x3d791aa36b01789e, 0xd85b50c884b072a5, 0x4d6c1c48bb285551 }, { 0x1963e62ea94e67a, 0x3e58a7c95acc21bd, 0x43285f9e767c294a, 0x8de9d3a6b6c97900, 0x4ceff08739a2e41e, 0xd2e14b3aca2c0f59 } }, { { 0x17a9f25ab31fda57, 0x90fd2ee11a7338c9, 0x8ab1d3a2571197f9, 0xe09c1b66aa1b5a08, 0x89d1753de05522dc, 0x2b9a0e572ec9096 }, { 0xf41e7d18ca4890db, 0x1e495e2d3cd3b50a, 0xab4d63f31f8ff730, 0x6e2e632f518f2969, 0xa8026c7868b03d1d, 0x1b0815ac813436e }, { 0xd1f7e40d263748c0, 0x260d337102603fdc, 0x3fd3b3328aa76e1, 0x8af78ed1331bb947, 0x3917adf920416af3, 0x9012542fc13d588d } }, { { 0x9061446b6deeaafa, 0x8afc4ef7099b63be, 0x106701fba9bf8bbd, 0xc1ed76b628d21a55, 0xb0c5db1b1a14d1b7, 0xea96013f6c4b06d4 }, { 0x2fb1c4ca20f0f0b4, 0x150900eff53c16e4, 0x5f5d022681035ec4, 0x22ed72136f77e396, 0x7858050372ab03d3, 0x4805e913f2ad924b }, { 0xcd81b9e6139ae65d, 0xda3aa2cef99a46ea, 0x435410049eb23327, 0xa141334432d8c873, 0x21d250349cefed53, 0xfd25ff371c93b514 } }, { { 0x2401a10247e4805, 0x72204d97c61625f7, 0x8fa995421fca5e4a, 0x1863101d77089458, 0xb42db93448682341, 0xc599df9a85ff3168 }, { 0x98553744cca37885, 0x847ad168e3d02b40, 0x6aa2d7789f2f4bc1, 0x4746116082af9310, 0xba874c56a7d625e4, 0xcc0ecb77d7b68039 }, { 0x8cc97a00bb4840b7, 0xf1bd39ed6f4c7f20, 0xd47c498041e0ffd, 0xd73d8d3fe72edfe6, 0xa35334c0fbd3809, 0xfe4312239581bd5f } }, { { 0x8c011e27df1bc4b8, 0x7730ddd1c6b82417, 0x98f07c7a9d453ed4, 0x2785e942b3de7632, 0x4ee9c3e97022ab21, 0xeaa1560696ee5072 }, { 0x62702fb8c4a0eb0a, 0x11684554c76b3c35, 0x3b8706f42868b1b9, 0x173ee6d5998ceb1b, 0xabda1cf713f7e5e3, 0xfbff6620a2571519 }, { 0x46707baa45236df5, 0xf92a1134c523fc0b, 0x4f35b19ce7fcdad3, 0x20ca8c0ae66440e0, 0x2ba27e9beb79bc28, 0xac4e0ea4e045bbf } } }, { { { 0x7118676097382ca2, 0xb9c532632ecaffd4, 0xfd2458c18368138a, 0xfdf42d6a17847da6, 0x39b89a7e2d0ed28f, 0x179950bdf1df3e98 }, { 0x14b30780e66a59a8, 0x11cdfa6a00952b0d, 0x846b47bc9b914382, 0x43d0187ae69a16ab, 0x8ca2654c843e31dc, 0x876fdb863064670c }, { 0x117c038644005495, 0xc46b16594546b93b, 0xdd7aa8c357efefb5, 0xa6efe5e2eb406beb, 0x487af001cd99c135, 0x63234f68413d3885 } }, { { 0x4cb292afd14a1e49, 0x7519d050664df3ae, 0x7744b4c4c7aea7f0, 0xb192b45e29482b57, 0xf8f641b7d1f8648f, 0x56472c77558def73 }, { 0x9db2236027a3ba1f, 0xc0097aa467dcf42f, 0xd7223e8c68d87e12, 0xf436c4211bf549f, 0xa373db53501a264c, 0xf8a29083708ee3d1 }, { 0x2c8b149d1f5b24c4, 0x3703463e3e887439, 0x58e29074a22625f, 0x7d36270764c119cd, 0xb969f93ab7d88c30, 0x5d4b9372f87b30ef } }, { { 0xe8627bd19c3da753, 0x91576e713bfca179, 0xe74f0ada907a508a, 0x9702ffb2f8251b98, 0x85ec95d4d99c27cc, 0xa6d3ca79000f4ee2 }, { 0x6dc7cfb79f4f4bea, 0xbf25be8c665a31c6, 0x58fbc29a9218d9a0, 0x55e7dd49f11d98d4, 0x1f143942a96849a8, 0xbe043bf01643cb2e }, { 0x5f6b81d8aef1f681, 0xf8f414dfe6534f6d, 0xdd651946f6a0fdf1, 0x52537d31821077e5, 0xe2586f02336d7c74, 0x3b773294139efa92 } }, { { 0xaecdd7b573bcfd5d, 0x1da5366417e88cd2, 0xa18d54d3a7a9b61, 0x566393a0462243d6, 0x8e7196301c3cabe9, 0xdd513e54fd43715c }, { 0x6588e2e9ac21b62d, 0xc8d22e334ed6a7e5, 0x1096e89fb9bfe8c9, 0x940356fe5e00fa07, 0xab016b1833728390, 0xa492ca005fddfeeb }, { 0x560064e931d02a87, 0x138e16a4909c7102, 0xc772a9a834a9d03c, 0x25fd226ce7924ac2, 0xfcf8568dd1dba1f8, 0xe81a6fb3758a11bc } }, { { 0xb7b389a32e1ac7d5, 0x24ee81d04e1b739f, 0xbff2036977fb2556, 0x2374af2b35050a91, 0xfc9a593000d729f2, 0x4156e40e9526707f }, { 0x45bca0198082699c, 0x45730c632f31efb5, 0x7cebdd12e0349e95, 0xdccecb0a82b36c08, 0xa3897d2bb2818845, 0xdab1f15801f89f3d }, { 0x73ef5c0400ecce27, 0x3548446d3ee5778d, 0xfbdc3b1a58846710, 0x85845aaa7fe7b8b3, 0x939251a50f413e85, 0x371b003ead383bda } }, { { 0xccebe81618a2d9f6, 0xa9ee40b1baaccfc3, 0xd1c69d1701f744cc, 0x25241b3c36054e48, 0xcc7d81966487c5c1, 0xbd0a28076a6d7f47 }, { 0x1613397cd3a67e91, 0x5152a68505d67a7e, 0x700407e22c89c69e, 0x48078f3939e6f32d, 0x876ba8a30a78e5c6, 0x7bfc91451457786f }, { 0x8c2a904099567c51, 0xc338656724ec26ba, 0xfe293c99e2250ab8, 0x22768b3de9014c4c, 0x95f89368c17dd782, 0x37b59a1e097252be } }, { { 0x203d9eaa4a062c4, 0x4cef995e45e88d7e, 0x6b99a02e1d879a66, 0xaddb118dd5927b76, 0x39867b86490ce5a6, 0xef19cbb1151ad556 }, { 0xaaa8c318cfb109df, 0xabb8a8a91df944ac, 0x91d2fd215fb5abf6, 0x4a1bb39a737b4b6f, 0x6f4a82b1f8e41315, 0xfe9d56fc5972095 }, { 0xbc7a37c029708ff, 0xc1260e90e77b8540, 0x9dde9c9400640ad6, 0x235aaed4fa1e4e10, 0x894c69641941cc07, 0xf525266c583fa8fb } }, { { 0x64264bf72c8505f0, 0x5266699d4de9ebf3, 0x996cce1fbfd491e5, 0xcf31e0e23bb0b783, 0x4a4fb4329e15aae1, 0xa944ede9fc44a242 }, { 0xe264b7e11fb2721c, 0xccbc636cd4405be5, 0x75ca3a68f87424af, 0xd419c6794e698667, 0x69f26710d55c36ab, 0xd565be51edb2eb8d }, { 0x275c4344fb2f31a3, 0xb06546368e3fb3b2, 0xba9ddc292a7c655f, 0x24be9d7500569f01, 0x8a65f424c68728f1, 0xc59653ffeb5a65ba } }, { { 0xb40086d7f667d7de, 0x1947f03b69616746, 0x5120a45aa4427cf9, 0xf91768cb91f6f5ab, 0xb4f5e504ebd2e0f4, 0x439acc36ca9fe53f }, { 0xd2e0b67651605e45, 0x88ec9310958714fa, 0x6eef590caf8f9da6, 0xe7f044ba73be68be, 0x80467e4308ee57b0, 0x76b5fe72c3b8d9dc }, { 0xa7539d09e9fec3c5, 0xe19ea4b2009e2020, 0x10f9b6fdcaa0f649, 0x560fdf0a34094970, 0xdcfae7655319132b, 0xb8be0f64f2b58fb3 } }, { { 0xb06e1bfce7799d1a, 0x51fc125f5d496abb, 0x393db08853fd4142, 0xe48cf54000305302, 0x11a0a580b64b48dd, 0xa0c9946edc20dfa9 }, { 0x9792d81f1f6d3f3a, 0xd393bdc7d6ec5746, 0x6bdd26c968369e3c, 0x2753a46f3cb17d1, 0xa5dc2f74da28bbd3, 0xd4ee1d9354472f36 }, { 0x45ceb5d73546c4a9, 0x2a40d6a750056eb9, 0x8b897da8be0d2a8a, 0x4b0bff376ba462c1, 0x88f1c7612d90a751, 0xe81e21d58bbf4148 } }, { { 0xa13a28fa7ed57fb6, 0x3ca866623030c581, 0xb20b6bd56f801c8c, 0xa3c1bcf12c6ebe8f, 0x2e5aa896cdf3f9c1, 0x16326da0fff6ca16 }, { 0x4a7d9a4693375ea5, 0x7cfc2c44eadb520d, 0x291d6fe446102397, 0xa2cdf621a0a42d59, 0x9ee75b01f3642e4e, 0x339398cbfaab3876 }, { 0x46a9759b0aa9603d, 0xb12d9b64f503b9f7, 0x14ded8ac9dd56546, 0xd6fba648347db0fb, 0xe9ac876076e5f730, 0x2d04d8f59165711d } }, { { 0xdf0668f4457ee99, 0x93910be9b621aff5, 0x79b545e60d2cc8fc, 0x5539618f06f86972, 0xbd55da66555a36e4, 0x296096aa47c0bf89 }, { 0xf2721a42c164238c, 0x3e5752622cf23d05, 0x67e1f821e9b93f4c, 0x1c0ebf714494f1cf, 0x27c106cc254cf0a, 0x24f0d9ffa5a3bbf9 }, { 0xae62357fedf31c2e, 0x2b194505f06bfe7c, 0x1a464a472a465a37, 0x13cbfca66ab4558a, 0xee141d73dc8c47ea, 0xae8887905da07981 } }, { { 0xe3eb7db1fb0cf5f7, 0x8e82900a7072cd8e, 0x9f2035733aa8ee6a, 0xfce1c438a8f4499d, 0xefa7170ee2ffc1e6, 0x43b32fa188213e9d }, { 0xf972fda31c5aaaea, 0xe25998494a8f0b08, 0x24931a843e684fa1, 0x7565feac4419cd15, 0xbfcc9b0a0aa8cc5a, 0x9c9d6d872be7307d }, { 0x64805f9f4d9649b4, 0x38ebdb3909f70b24, 0xebae2e71ec19f8d, 0xc8729279eb66bfdf, 0x740b0f6fa92c5ea2, 0x27c879e326109621 } }, { { 0x13d92ceb0dd8a896, 0x617101da7eb729a4, 0xaa97b9feddbd6d82, 0x9bf863405355aeeb, 0xd88e5f526df347da, 0xce646113f473c582 }, { 0x6e36ffa73af1c782, 0xab4d385dbb8576e1, 0x347197668fd02209, 0x2a95bf9ba889d9bd, 0x6818b210eee22f76, 0xefc11c92c06ffcff }, { 0x9ea04efcf6018795, 0xf0fc4104ba81681f, 0xb298757103bf910, 0x6b05f354e850ee51, 0x3d1350ecd60fd9b9, 0x16896a0d1616518b } }, { { 0x1f8b6349a373503f, 0x7b7a2934f6b58f1c, 0x2cff65e0b28ea188, 0xcf9dbf349a745b05, 0x453e42c9efb7c384, 0x80b5e63b6b2ae2d }, { 0xb5be7afb220acade, 0xa96728eb59ec0e73, 0xf88b9939c926f9ee, 0x3ce4cd5e3e9e5c5c, 0x69bd32fe3f3a4d34, 0x9caf2a2d05e7ec6a }, { 0x9a3bc42ccc90f644, 0xf72d4001a94440e2, 0x86563bb1111ad4e5, 0xba96730b8db3d881, 0xe8c55c8238111041, 0xb9601a18803327ea } } }, { { { 0x23b575976d9ba263, 0xf9fa1c834a6c5c98, 0x861c4ff898768938, 0x391fa45e2b0a1f63, 0x99e34dde10018ffc, 0x924fda98589fd6b3 }, { 0x599ab1416866962e, 0xc7f218c21319c2a4, 0x49e22a891f59a3f9, 0x7e983463ca8eadcb, 0x8b1e21509b373ad5, 0xf122d8b6bfb6981d }, { 0xbe7d0b88703b5b42, 0xf544b8bea8b94e13, 0xa7a1c90375645e57, 0x970b6808cd2915e, 0x8409805392473dae, 0x71751afc3856d748 } }, { { 0x95b8af1afbb19d14, 0xa367baa301cccca8, 0xa0a68552ecf910aa, 0xf218314f797972e4, 0xcd02020b2231d940, 0x44e1be0878d1de84 }, { 0x9e4de3d45e22fe9f, 0x3c017edabee32984, 0x9862fa223477ccae, 0xbaffb04df150b2bf, 0xd10d5b17caf68a30, 0x1600153e05fb5d72 }, { 0xa1650a88f35ed09a, 0x912849a55ab239dd, 0x2377bf253ceb9f9a, 0xe437a47a8a367f66, 0x3b472f54086fffcf, 0x92e3d3ab7a03541c } }, { { 0xa7538e555ebf15ac, 0xe3d0d642806ca632, 0xf8c7ab9c4efd77ac, 0xce6e0ed2fa800dac, 0xd28efb59e8309090, 0x8689a77ab7c4a37d }, { 0xf7cd7cb13de863a8, 0xbdd9409c612dc261, 0xb5ec1b3ef18f204e, 0x3964385e0ece9e82, 0xd521a49afb8623e, 0x5b6b6e52ce5349bf }, { 0x185bd807cacbe53b, 0xfb8bbb699fc7c348, 0x8df030d593b1bfe9, 0x8468bcbfa24852ff, 0x617130f80b1707bc, 0xbc196f291d7ce18c } }, { { 0x65b29b674d5a6b77, 0x8c2337bc98b3e36, 0x6310bf6746e8664, 0xa747e656420c6912, 0x50992b749fe5b08d, 0x89b6e84e26d66c0 }, { 0x894d8ba131347de4, 0xc9d86c655211013a, 0x9703aa50941adb6b, 0x2e9dc80516e40ee9, 0x62aadb64c812c32d, 0x3583bfd903d1d5ae }, { 0xe27a87081c85832f, 0xfbf9491b0ecfd45d, 0x37f45a4d64d9f1b4, 0x5aca9bb58e4d12e0, 0x7f61dc8c2e528f44, 0x6fb57d368e3b4cdc } }, { { 0xe307c5f50eda48f6, 0x8c3a88f9df6d7847, 0xc918bd9d2810966d, 0x15aa30599ff2a20e, 0x489c896624dca1a8, 0x8495d9fdc1f221e6 }, { 0x457d6c4366529bf6, 0x3bce15c7f727ddf0, 0x3036090e4e004308, 0xfe4c634ac4cc522d, 0x2cb9165ccce35998, 0x1aa2010520409754 }, { 0x6da4589ba46fdec2, 0x392ff5b97326093a, 0xeaab243fd459b84c, 0x493c96aca6a87381, 0xc6261a982aade66f, 0x38b192f90f021f5b } }, { { 0x1be4c4b812dabd52, 0xae8c5adde0b00fe6, 0x16b32ef5c11f2bf3, 0x68d3777edf9b6f41, 0x9204189f6f93803b, 0x43b9a5eebee3ba8 }, { 0x32475e03b58b513c, 0xd9de2370c3b1c5c9, 0xcefa8a045fbce109, 0x1fdfd680546ea500, 0xbc299e679df0aa0f, 0xdb8e0df8e99cbf68 }, { 0xa384738fd2bedb59, 0x1d676c7b758c14fc, 0xa50ea479b32b3a49, 0xc1c5e4e6dd3821b, 0x2de1c4ce5481d3ba, 0x79eae23f20841801 } }, { { 0x309c2966794e375, 0x346368fcca51e8b5, 0xc527da49574b10ee, 0xff0ed71853e6af58, 0x5b751bdf20999bbb, 0x99e288cd6f1b1a5 }, { 0xc01a97dc2f85360, 0x234e74bac567d018, 0xada8998b27bd2d94, 0x26cb17808fe75162, 0x1ca1ca6e63920ad2, 0x5c44cebaeca2880c }, { 0x8da11600a7900873, 0xfa6111b031b6f6c, 0x32d0bce7f917ee88, 0x4270fc550b700ab7, 0xff84f05138d1ffe2, 0xe3e4f1b2af6c7fa8 } }, { { 0x1051dffaebc8916b, 0xc765f36b5363a243, 0x7beb9c0ddf5873e2, 0x84d133dad12b37a1, 0x994bb43fdc7fd7ee, 0x8f07e2f58bdf58e0 }, { 0x44a4fb9f7bc34bf2, 0xe81a545fd78bea8f, 0xcfd2ccc85e4a5f7f, 0x7d84f38c3b814cc, 0x28d64d36f31ff3d, 0x5de4ae7921870d60 }, { 0x2c276ae4a21c6174, 0xfeea9a692a3189f2, 0x966ff7200dfd1263, 0x6da0fa8534976621, 0x78b6e9018ef4f8a3, 0xa2b6826179f2cc59 } }, { { 0x3217da79ac0fc6f6, 0xd240d94e487a761f, 0xe654e46376c69cf7, 0x5a558daaf90e467e, 0x14fda4264e287f2b, 0x773d51c9736ff5a6 }, { 0xa49410cfcab3d169, 0xbf36a6c269d383ac, 0xcc542d3b54da1704, 0x24b8913d2c79d576, 0xfadd2eb15116aa97, 0x147379b74512e2a6 }, { 0xddee5d3867fc517f, 0x4adfae7284557d84, 0x528741c883f0af9c, 0x246b7055449c269b, 0x8446bff1ff5fbf3e, 0xe24734170235c825 } }, { { 0x73e9368adeb2a4e4, 0x6839fc39834750d8, 0xd68982085e2838e3, 0x73ae39317b777c29, 0xa65f564d436c1de7, 0x11aeae5c4c0a3687 }, { 0xedf4cfc756079b56, 0x52f4e400eb417769, 0xbc06de5430af6263, 0xe57d5b3d183e3a45, 0x83aec5e4118d52d4, 0x1c6723478b7309d }, { 0x8e5f024290b3f31e, 0x6b27be50fa0601c3, 0x20d7aa0d989376d5, 0x2bf464a143741d62, 0x146ccb5a387353ab, 0x72e4e1698f1437c } }, { { 0x7dc5eea0c02e0fbc, 0x4e3210f5e813c42d, 0x118dd91a46967236, 0x5ef1e4253a46d3be, 0x4ed11837a6420bef, 0x1a67e58636086e62 }, { 0x32edcdd692ca48aa, 0x9bf5cb97b24452de, 0xa8df9be9af246083, 0xa1e793bdbb514019, 0xf7786a1ddc8040c5, 0x1ef0102ad3c8c295 }, { 0xfda3b044151f3457, 0x836773978b0cbf19, 0xd607a051bebc11f1, 0x85cd3cbdd2fc5634, 0x5cfb465a1c7fb3a4, 0x4a705b3776783ae2 } }, { { 0x87655cba0c20d671, 0x7a0dafb8b3766cfa, 0xa860258ad986d58e, 0x8aa691152e165141, 0xd2cd17e78baa96d1, 0x3839427a030b64cd }, { 0x44eecc5f67a27b6d, 0xf9f46620bd27c14b, 0x3c89aeb692e19982, 0x30f1932c353823d0, 0x7e1b325685a8f044, 0x3603430b473a8ce2 }, { 0x1e5c87dd54c7752f, 0xca4b2cf678ae9e1f, 0xb527bdb10c005832, 0x2b35bac88c6ff6a5, 0x328dcf81cff3d5e1, 0x11d6fceb26f228a0 } }, { { 0x68d0be44105bd4d2, 0x1e96bf58e0e6d1ad, 0xe0af5ae0073df579, 0xc62148e8b2b2b6cf, 0x70a0825748528527, 0x800667dfdfe0e5a6 }, { 0x552f3ae7db44a539, 0x6559f1d8971e6344, 0xf493d682bc16d771, 0x6c19156eb2388c8d, 0xc6aff5b2244c49a, 0xfa86d2b5a9eeb4b5 }, { 0xfdd653c0a16f9a8e, 0x8fa7b87187de2b4, 0x3131b73920182583, 0xf31afa340ce7b3fe, 0xb4e787f0cd03d47d, 0x2f572b5317656c46 } }, { { 0xb4969f1624d3114b, 0x19543e4ec7282ecf, 0xa1a96eee9d1776f6, 0x1b6d0c0af897daf3, 0x57070b8f48a20fc0, 0x83cf08bbb03c586b }, { 0x5a59bdfffc21846d, 0x8dd0c8aa27f9580e, 0xe98f080048777699, 0xca71787c2fee194f, 0xb5ab36edf1f9b122, 0xc84efd2042616ac7 }, { 0xfbec25b7d507e7f6, 0xc6edeb987e24be90, 0xe3014ab6fe7dd8ed, 0xf3d1b301d80b3358, 0x6c00266a579e3ed6, 0xc89e787d36572f87 } }, { { 0x556c9308399f3b47, 0x981b46624f935acb, 0x16459b478fa417db, 0x1cbc7a17f6945e1d, 0xeef2a9043dee9b3e, 0xbeae29a094334412 }, { 0x8ed6ababae7860f8, 0x1d7a6c2310242866, 0xc72d19b12865ee35, 0x6222c99071ed9bbe, 0xa2e1def38cd0cae, 0x7eaab44306f19423 }, { 0x3e25d8f91a72b256, 0x6abb11f182a456a0, 0xae1ca63919897af2, 0x4c59655132a363e3, 0xdce9adb03e0acab4, 0xa580207709395af5 } } }, { { { 0x95006981be117516, 0xd72ce96c4c42c5ab, 0xfcc9c1a846c2768, 0x727fcad92b58dffb, 0xdce2dc05a01e44ec, 0xf2734151790e3e31 }, { 0xc19b9dab3e0f000d, 0x905de1098740524b, 0x339c35da412a32e2, 0xa3cd9e9f1a7f5743, 0x38ee932504707c13, 0x1dc706bb0c60585e }, { 0xcec89404249e3da3, 0xfd91a73ea61d063f, 0x436325051297b733, 0x687b8bbcddd99bc, 0xfe66b0d732fada3, 0xb06966a9ce79b089 } }, { { 0xc2cbcb15f5b05af9, 0xf662b35037b45c1f, 0xbd0255130269085, 0xf57de369549f9b4b, 0x8a684a6de9b5202c, 0xb0a38819a3756b2e }, { 0xdade48a02eb52385, 0x2d35d242f1117087, 0xca4ecd08d635ff7, 0xde7d0ed37c8f6ce4, 0x985b34db531c848b, 0x215ed2150fbe54f8 }, { 0xe018d6c0382346ad, 0xc36871a4562798e2, 0xe1b90f27c983af4c, 0xf069ec3f467e7d7d, 0x31f2ad668ab22dd9, 0x8690a79c15cb0089 } }, { { 0x8c1b07fa5a40a83a, 0x7f2ccce09e01bb08, 0x4e98e2d352e5a347, 0x60a2b3673792feb2, 0x852a8584d249dae3, 0x5dff3df690919727 }, { 0xfb9a26cb7ee8110, 0x9f07e6cb55291939, 0xe0e8a0d73db5adb8, 0x10c8843c0a95c33a, 0x9efb2167c6427a77, 0x1256c7c4f1c9183c }, { 0x787490f5e7c8da2c, 0xd5adde89d6d23fa6, 0x30c86bc88e8aeb84, 0xe4258d6c165c8e1f, 0x5e1d1ff18a5d3f87, 0x342afd95e0861ebb } }, { { 0x97e2072be51a670f, 0x34ace54fdf9949d0, 0x9a10a94757dee63f, 0xbca5dcaa45cc312f, 0xc1bd8ff523fe02fa, 0x28ba91590f8d53f2 }, { 0x95eb415864b3e428, 0xcbd1adb1f321b60e, 0xfb79e04ab00de3d4, 0x4e05c3f6a96a8fc1, 0x9c309deeed015655, 0xb786383912fe8e78 }, { 0x160306d71f2a87fc, 0x7a871cf40a825e69, 0xbd9423bcaaedf350, 0x6c23ef1ef9b0003c, 0x8078245fb26f5943, 0xaef43abbd7461d7b } }, { { 0xfbb575b7b76b964a, 0x5f4f0137ffa81f48, 0xf7c3a44f61bc5030, 0xab45141fad0fddc7, 0x8f8e57dbb928b052, 0x35ee6f840c3e7dac }, { 0x356a0129c011927d, 0x28a9d66b504cf00f, 0xf154a1839ee98a25, 0xbe6bae61814d6d34, 0x6b33e9338d4de854, 0xbea79f0b2eea81ab }, { 0x2a32778c78723377, 0xda9a9dcbe12983fb, 0x5c0ecb8c67b27200, 0x998ff60945383386, 0x19d9982a50739ff0, 0xa4377b42114f0482 } }, { { 0x5b1fe0f5bf27cc49, 0xe2ee4178a6dc3653, 0x2d5f222623bcf066, 0xf8c9c2a0a5181d9a, 0x8721043b87dc088, 0xf89aec38cb280e7a }, { 0xb14ecd0a147f3068, 0x72efb7cb348dd6bf, 0x74e4bf4308669297, 0x3677e38f29e7874b, 0xc3d7194c50406f32, 0xd1c945f8996983fb }, { 0x2f787d9513071ef8, 0xccbf0f5bf7b83f02, 0x246a1605e16f5424, 0x91040216219b350b, 0xc38e91ad511bc8e9, 0xb91f581caf83fa22 } }, { { 0xd418a01de9d80cb8, 0x4ea7c184a2ce4a34, 0xfcbf4df965089e96, 0x14218950403cd29, 0x9476d8d8c93714a8, 0xb9ab17af8740783b }, { 0x3829010820bb3c65, 0x2e5eca5fa4aba672, 0xc91a9dc71398475d, 0xf0b7ec689a4809da, 0x5338474874bb14ed, 0xb1c199b4d76f40cd }, { 0x62c375c9d4c1ab47, 0x26f2010ca7af749f, 0x6a0f7232aba06aa, 0xe60b3f9e8f68acf, 0x1b0df894dceb5184, 0x7c1bd48c50210a72 } }, { { 0x59152fe1f09e025c, 0xd6ed3630a472c0cb, 0xa2486ab4b72708ed, 0xe3436d7a1170b99c, 0x69e14add2a9b2c3, 0x2d86513890b407e6 }, { 0x9d28623de88931a9, 0xc973d14d4cbe46b0, 0xfe425122e4d18a1f, 0x704ad3f9a77df9bc, 0xffa5767862e86766, 0x662b1a6cb39fc23d }, { 0x4475ba258f773ac, 0xb7e2a00122544df1, 0xde5ce4e20de88982, 0x1711ce27a82e5cc5, 0xc3590710bb5d8c0, 0x67dc1ff87a824eb } }, { { 0x1b8a1a4a1f130c67, 0xb63dc76d01dff994, 0xb639f3659781e322, 0xa38f2bf59f9cef3c, 0x5e4acb08baab6c0c, 0x44825c59311da290 }, { 0xbed4a0c48e87468d, 0xcb8475dba945f6e6, 0x166caa9b3ef21b42, 0x6e343af8c1e693d0, 0xc54c7edd7938ae94, 0x6b5f13cf494c0e84 }, { 0xc4e8727e7a8afdd9, 0x98d2103a782d86e5, 0x94a1c78d0b2dbf9, 0x5a26e2254f36f255, 0x7ade511ad2e2363a, 0x3678e152da6e94a5 } }, { { 0xc3ae0db4a8612f77, 0xb0cb1e5408fab5e9, 0xe493b70f143cc145, 0xe80c0c8ecc6662b6, 0x525c221ae666023a, 0x49cc7f2291132e31 }, { 0xb54f1a2a9782bf18, 0xe845bbbf20e3224f, 0xe15cfac85d6284cd, 0xc3e70179d6cd9f60, 0xe2e14676b973e92c, 0xfc819a35b7a49e1d }, { 0xb5a2f6096c180fc7, 0x624b806969f2cf81, 0x68c8c21b931073d9, 0x3a981d1204dc11ee, 0x5b4afb3a632de32d, 0x5502407eeba5028e } }, { { 0x2d764d2095290796, 0x5355cc9dde383cd4, 0x3e09a4a5c1700c20, 0xd97f4fbfcd2f3d5f, 0xe75d67b0e4b380a2, 0xf89cab2b9117716f }, { 0xebbc43ec8abe68a0, 0xbd37582615be4710, 0x25fca07da4f05b38, 0x85b4917a76e94dc0, 0xa9c9126d66885b47, 0x535afccba26b2bdd }, { 0x1e9e64bb3d3e2ef6, 0x3f8a7b08c8d8ba6a, 0xa268aa61594bb998, 0xa229dc9c72a9ecd2, 0xb0898fc497bcd2dd, 0x4be9d6bacc6d3723 } }, { { 0x2e23b55a9b29546, 0xacfee4b6c5c99420, 0x875e67a75786b50d, 0x63c4500660e9601d, 0x94f4c754088c26ef, 0xfb1922d429732b52 }, { 0x4249cb6e81c51088, 0x9ebb5b57df13a965, 0xa117eb729916b86a, 0xbb888c79accc3a82, 0xb4d393c67b935c3, 0xbba8f05e51c7190d }, { 0xb2a90166451d13cc, 0xb8516cecfb805bce, 0xfdd38c98ef318fc0, 0x4601ff65b6a5412d, 0xbd0fa03706bbcf62, 0xef2ca321bd0f167 } }, { { 0x52f8ed1486df3fee, 0x67ca0c68381501dd, 0x1a050d3ba0c9f6e2, 0x19b3a892aa7ca529, 0x584e2ab054dd47b7, 0x115977c77ce0aca1 }, { 0x82a045a42d576987, 0xe65f54c301317559, 0x7e7e8b8fec76ff60, 0x100e046a5b055e78, 0xe521bd56e9288009, 0x320f422da7eb0b9f }, { 0xbb6d15e15fc423d1, 0x3450601664054c97, 0x5e7e353b83f580d0, 0x8c328a3cd374a80, 0xdb4c11b8b086759a, 0x53a81caed6a8a88f } }, { { 0x98021793ceb0d953, 0x98c13cb899355388, 0xca08ea67be4dc39d, 0xedbfc18deaa62b68, 0x2f8e49206b64c9b2, 0x26ec2948d61708a }, { 0x72cba1b6997c83af, 0x379776cb97b3dfbb, 0xe5fa90905011aa7c, 0x80812e071e309174, 0xf0aaf41ebc8470c0, 0xdd2ef2892e2f1958 }, { 0xfc1e2196966e33e3, 0x75abd3067aa9635d, 0x65de41fa14eed41b, 0x9bfbbc0e43cff7cf, 0x3244ef4c18cf15ac, 0x7a32c054946b2d9f } }, { { 0x6385c830241083fb, 0x58f0f594ef67e9cc, 0x7c872d8cfebf85ba, 0x577e72ab69b555a8, 0x2ec6f976cd3c860, 0xbe7311a231623f0c }, { 0xa9fff1cb6ee6c9c, 0xbf70ed13fa59a0c6, 0xa5d010046baeacfa, 0xd7c006aafada0a0e, 0x99d79baf4cdfd9ad, 0x23e588f283598cb2 }, { 0xdd224bda3e3d9228, 0xce43baa51de8687a, 0xa9df36aa0de1d7ac, 0x3054efb2feef5149, 0x41d33583fd9a1cd6, 0x493299ec55b6a31d } } }, { { { 0x7a5b03d457a6329a, 0xec896948ef5ab982, 0x931ebddd14fe4086, 0x19b5bef2f55397e2, 0xc19e7d1c747df2ba, 0x4716e8d802d7ce60 }, { 0x74314642f89c798, 0xb3c02e7f735639c3, 0x5f6f6ad0217999fd, 0xbfa86548abdbf234, 0xd849e1b21c217ff, 0x9e4d518fba4bdba0 }, { 0x441d8f2e7d65d08a, 0x506fe3087d2a2e5e, 0x3bec2d5e32f19dba, 0x365971227a9379f4, 0x327d096c77b45d61, 0xab43fb0309eb25a9 } }, { { 0xe2c84a6542fd49c9, 0x251965c7d6c78a9d, 0x79f2f7a202804229, 0x25a3e5fa6988ddbf, 0xf44ce176fb29fe96, 0x92a4d3defc476c78 }, { 0x7b69559cb71366a0, 0xff9b438019761c54, 0x426f8e727ca938c, 0x101390a62c31476b, 0xf6020e3d67636201, 0xfba393554a0628d7 }, { 0xd6ff4f87da3e8a1e, 0xa93a561b8ccf42d9, 0x8a1583d433f2110c, 0x7dfcd383eb247f5e, 0xc2817a85725721aa, 0x9e9c305303df7446 } }, { { 0x86c836a2841467b, 0x54c9c22d0699de17, 0x2211ad094d238d09, 0x41181a225f5441bb, 0xb919c9c6555c5ac2, 0x421ca36d96438e9c }, { 0x83daef44771b8bad, 0xeffd3a49554e86a4, 0x813aa7ff25e13d05, 0xcd74bcdc2c28ffa5, 0xf493bd33095a00fa, 0x81595d7fdd59a6a0 }, { 0x31b4545caa6a4c1c, 0x2f607f48110762e8, 0x82b45177b7a7eb2a, 0x980cfe1a3c20cca5, 0x1b20839bb0c5d809, 0xa8b3e52f7ccc6fe1 } }, { { 0x2e5de119ec29f186, 0x27d88861d21d97cb, 0x42b7bb3d34d21082, 0xabf943849ca1d95d, 0x68388ef39a458ae3, 0x23991d02cc1ff360 }, { 0xe1081ae221909916, 0x42d64bb99323f969, 0xca1515894efeb04c, 0xea5c54ed706c7d60, 0x55c9fda3fbab8ffc, 0x6dfb08741860b5e1 }, { 0xe6c842409c01c4f5, 0xe93d6685d4894d5f, 0x59372fd55ce1d184, 0xeb2a1f4a087ed37, 0x2db13aece16ca2ef, 0x22eb38348747e678 } }, { { 0x41c3df47f85c7d2d, 0x51c2944dd41f6266, 0x55f532367194a591, 0x526a7b05b63b6112, 0xa9cecb2feadd15ec, 0xcabc970366ea1f83 }, { 0xcf3c348a1debe8b7, 0x214d68dfe94d4c9e, 0xb752c26929ba0e53, 0x33356310033ee15c, 0x467657ea2adcfb28, 0xf7e8737d6c1552f7 }, { 0xcf4d8f944ff336c7, 0x9be437a9bb43cde9, 0x218ff0a402dcdddf, 0x187dc1fbdfd40673, 0x531f58d66be4bed6, 0xbcb29279c0e77650 } }, { { 0xfa5cdaec82f2ae2d, 0x6eedf5d78f189edd, 0xbf541b236868a708, 0x73cc7c476d3bd201, 0x265bd7b9201141c3, 0x64b7ddf86e1377e4 }, { 0xfef0e681a82c0869, 0x1f4cad0e8ab6ddf4, 0xf0bf9a4763005715, 0xc5b8a4d555bf724c, 0xb63eb43ba5b2900c, 0xc03d53cdd91a5f87 }, { 0x81b454607dd8e705, 0x335b43dadb4fa1d7, 0x3b01e9e52c8920b0, 0x807b6832b2e2c2a, 0x350f3f9a2359e5be, 0x61e045d7b9543012 } }, { { 0x815b78e4fe0b339, 0xba67f506cf880a81, 0xd6203ad3f711b08, 0x1b972d53062dc335, 0xf5cd2fbc3439d898, 0x1adb7863c6ab76cd }, { 0x6ac0b1154e42f58e, 0xefeb019ba01c65d4, 0xa1e72a774712035e, 0xffa091c110c5a299, 0x4d5ac21a9dcbaf5a, 0x6cdea6c7f9a03028 }, { 0xf6628ad5e5b6fb60, 0x1a93de2375c70182, 0x78ceb019293b2a2c, 0x475db96f2a8feef9, 0x462f6a57c2c74e0a, 0xaf0518d50a421b01 } }, { { 0xde99312b3298d3c4, 0x73a0a81c5f7dee4a, 0xa17b0ebd7331cbe4, 0x7106d8eedf76f636, 0xcc95e7065268553, 0xe2790063c4059f36 }, { 0x877d73c18989b824, 0x89dd7a2e2723dc60, 0x6d237b4834af42e2, 0x6f04e112d36c2fc6, 0xbd6608de9adf3432, 0xb5b6f456487d9086 }, { 0x29ffca0b1b6a9cd0, 0x8df48f7a4b4f5828, 0x37a8b0dfbde8401f, 0x99c1df5f1b2c8056, 0xb532f1e9ddc7ba6f, 0xdf25675702838aba } }, { { 0x599133b78c726e71, 0xb214ba35db00465, 0xbf02b10b9429af24, 0x31d1847bcfdf3248, 0xf3e9c2686789cce6, 0xd4464cb665ff847d }, { 0x5a86cdf4cd3c700c, 0x14a4b4908910764d, 0x712b83b26d4d157f, 0x986459db5802bb70, 0x36f51c98ce316de8, 0xe4717a73c0026e14 }, { 0x8fb7eb1db23fe1c4, 0x4762e6fdd10714c2, 0xeced12d2a238f3e8, 0x5e61864a4f01a236, 0x2a76086cbda659ec, 0x2d4fb78b05b91c80 } }, { { 0xc3882e5f17a693eb, 0x849033d7b39579cf, 0xbc401fc039d61b00, 0x348acd04b208bc93, 0x2c7b19f17b8a9d56, 0xfe1b37574e77d0a }, { 0x7b28f8778b63314, 0x3889c44233bef65b, 0x498c7f41bb42b0bb, 0x6bb61d22284dadfb, 0x5523b3640a8bdbc1, 0x9f8918b4aca9c18e }, { 0xd37c1f59fc07a3bd, 0x7e7354b01b17e9f6, 0xdeb5ddb4e07da4b5, 0x48908e22db24589a, 0xe7304c3cb3b6bdc3, 0xc480dddd212086d8 } }, { { 0xeac1ae09876bbf59, 0x29a1700f35d9f7af, 0xbec42bff21be2d0b, 0x3822fa89826d7136, 0xfd421b2440f78f15, 0x467ae226eea547b }, { 0x2f613a29dfbce39a, 0xf595ea415f3e093a, 0xbe6129093638a79d, 0x1f0fdb1279a2c25a, 0x2395dc0a0da786a7, 0x29417a0e4b6fc703 }, { 0xc4662f7bb2c18e4b, 0x4d329242a1d8838e, 0x6b407f6ea089f27d, 0x95ff4cebecbe389a, 0x4d29d9c1ef0831f6, 0xe470bf313db988fd } }, { { 0x8b73236508586103, 0xcd5e6b72a1e90514, 0x31f84e440744d9c9, 0xb8d7a5c550f8e61b, 0xc570c8e2df14ad64, 0x1ccb60fa56e73782 }, { 0xf70e16099de9c57, 0x6aa12e761adb932c, 0xc763813344d17889, 0xec2083c532fd512f, 0xf2d908c59b0c0286, 0x91878aa895470b79 }, { 0x37d07a31c1b64b44, 0x3350ef922a6b8c50, 0x375afd110a87e1cc, 0x12010c9300bd4702, 0x3f90a77e0d4f1b03, 0xd656baa5ac348844 } }, { { 0x971d3c389ec1eff7, 0x1f6c29d3ef399998, 0xdd81924cbe354dfd, 0xf321134a964bbae7, 0x3aeeb71d62ac4911, 0x3e4e4d4ca8760261 }, { 0x295c73c2f300c7c3, 0x14d07b4f9a4491c, 0x1f532ad012f89072, 0xf2ea96b542de0585, 0xfa3151f514896943, 0x739def60cddd7169 }, { 0xa035fa2d30be3d45, 0x9f14b948c88c3c5c, 0x6fe43695b6fb1e51, 0x620503c39fac7309, 0x6c90971bae32d646, 0xb84be41caf244618 } }, { { 0xeb83cfa24b56cc13, 0x790cd6940729eda3, 0xe5f6358faa5b1acd, 0xb4a155d567626336, 0x31a7baf3dffdeb78, 0x4983ab3d958861d2 }, { 0x8894a9712127b357, 0x24e11334d3d99b95, 0xc330f64a6d783c3c, 0xd3d870f4721483c3, 0xe81c28fdd3300d81, 0x5b192ad5b109f5da }, { 0x73217e9088ad7cc3, 0x443e81a1c992cb57, 0x344fd095758b183a, 0x336b09110196a2ad, 0xed890bdcc7e39a49, 0xf53bda9dfce91a17 } }, { { 0x20b7b0278b4a38ea, 0xf976a2c215a7ddbe, 0xba47915fc00debe4, 0xb03961588524349d, 0x99bbf7528ea9842a, 0x969fd6279b3908dd }, { 0x1321ece74df78981, 0x3a67b6e0782676c5, 0x531b719322a3326b, 0x17aca8355af66679, 0xff5450555e8636e2, 0xe4fda655cfa7247d }, { 0xa4eaf02fa56fa723, 0x6dfb4a4d2ce35856, 0x6e31f3b23c68fb93, 0x475ef917e3ffc870, 0x90358aa7048292eb, 0x9ab543cd659afcf9 } } }, { { { 0xf09194a50ef1a0aa, 0x654f9ea830540816, 0xdeb1d26c6c2290e2, 0x134533f2bd0cdc08, 0x2da4ddf0aec8a287, 0x60c0fffc7df65604 }, { 0x82cf30f1b89eac5e, 0xa1e8cae559649f7e, 0xc8aa408cdf616c94, 0x4ee5af88ea89046c, 0xb8f557e8e82839e0, 0x137ee44060d96f60 }, { 0xee9a5536673b5b2f, 0xd918731f41881a2e, 0xd1a8316c4eca5ca5, 0x27be279ae6263dde, 0x229d0c357512b70f, 0x82580f02644977b3 } }, { { 0x818898ca19247ed9, 0x1bcfebfdf2ef7323, 0x6a4fd93a3b54e072, 0xe9b0374da95f0bae, 0x552153db7232bc61, 0x3718cb7941ac7f67 }, { 0xb21c385fc6e9fc2d, 0xf7254ecc0d152546, 0xffbc5c1cf5495642, 0x7bf5f78082ee9da4, 0xabbbae3ac9953cc1, 0x6c07bd447226fb30 }, { 0xb4f34a03e11ca5e3, 0xbb1faee61acf150a, 0xadfa99ef4646a094, 0x89e308a875c16c89, 0xc8137cbe5733d958, 0x34acffefd2d167f } }, { { 0xa202fa1ddc19c6ce, 0x2aedd7ecbdfcc130, 0xb3e9c622ca96cd80, 0xc53fb32439f8b179, 0xfb8a9c41bec0c617, 0xbac675ecb958a5c2 }, { 0xf521237f73e0c83e, 0x71a86a30171ab6f4, 0xb169a0c1a11cb2e7, 0xf4243ebf3425bdd9, 0x93ba554d2484fd2, 0xd683cad79da3370a }, { 0x885b6964315c10bc, 0x73f4d2067913becf, 0x77c621de501da26c, 0x914a3434142a07fc, 0x11cacfd04af17dd1, 0x8834b4ee97a75954 } }, { { 0x9e0504e8eb614968, 0xed96b3b4ab90018e, 0xc712cb7c13b3ab99, 0x9e492c7c6382f774, 0xa84194e7fbc73ab7, 0xfc5ddeb3bcf26d85 }, { 0x1c59edc40499f98, 0x25463f4bf5a22441, 0x355eb1a36641610f, 0x9f1bc67ad1c9e57a, 0x98502af2cf1374a0, 0x81983d42e93767e8 }, { 0x3f02bcce4bd34398, 0xf877e2e0b73278ba, 0x7bc1e9d6b2ef6307, 0x5dbbe877b0d644b0, 0x5b7949e8d7bba478, 0x3fc5a1b5c0a03f8c } }, { { 0x1f10cc713f2db564, 0xf0e4abea143a6e5, 0xece05e412dec7294, 0x10e8fbad7fcf3c8c, 0x3f16e9c64ad2eab8, 0xb7c5f606c3b16b4a }, { 0x7c142037afb9ef58, 0x631cca97a63b31a1, 0xddd91dc519bca3dc, 0x57c8ee7a4e559219, 0x7b0e05d77bc3b98, 0xa1647fabcf9d0a77 }, { 0x5ca1ddcbbed9a744, 0x63a0c0307f912d25, 0xa51a3e5545433959, 0xefcb48bf566ec746, 0x121805f0e70dbf10, 0x391c58098298ad6a } }, { { 0xc8571e16ace31c8d, 0x167c490e203530c0, 0x82872e08d0a2fb88, 0x89ecd10af08b2592, 0xb62af7d794a01cde, 0x954381332fe3060 }, { 0xa78c87205dca5682, 0x2a9d055b9467097a, 0xb7a964b44ab48886, 0x3c548ecd26b4388a, 0xe7eabf441e80761e, 0x3c49cc25a3ba3524 }, { 0x5c714063b5b391a3, 0x4bf8b30afb5f04d6, 0x9c1d48e43699a122, 0x10ca75c703ec7612, 0xba78cb40c2c44329, 0x4b5ce800c5c30c20 } }, { { 0x5fc1cd71541dcc58, 0x9ad05e0c94fd1a18, 0xc526f5fc026fd5bd, 0x373349fcac8004f, 0xe4cfab0d7f7f53e7, 0x595069b7b23168e4 }, { 0xf8cb517f81c89280, 0x5b550e3a5f8b5319, 0x2f4b5949b474c068, 0x1c3c05612e2a45d1, 0x154221908ab6ac65, 0xcdbf8cd5f66bb8f4 }, { 0x88414ab65190cfc7, 0xf7de3e23ae168aa5, 0x3aa6e8f3abd810dc, 0xa8777908a6b4f3fd, 0x90cde6984ec708af, 0xf95b5a3fe732ec36 } }, { { 0x2c769f7d8b13eb55, 0xf276bcb988c89cd0, 0x9f4f79c2d1901860, 0x24f8e7a2e90ed55, 0x46a69100540e9f4, 0xaf9ecf3f079e28c4 }, { 0xf510f02585000d72, 0xcd418b4184f65b0c, 0x947bc8c44bbe5f0a, 0x2df95fffe081ac36, 0xb4c6edfb6df6bf40, 0xda7533fa1abf38ad }, { 0x6fe07383cda44806, 0xdb49dda9f5b66de4, 0x2a7d46f571c469a9, 0xb9068fe0b11fa5ae, 0xdfa409e5ad4cf51c, 0xb0812abf7c225997 } }, { { 0x3d7057b8ce7b64d9, 0xae9bc24a4df978fc, 0x3b13c9a659087ee6, 0xb0a56065b2e793bb, 0x8e6728dab9823334, 0x1e3c895508397ffb }, { 0x825252daccd19541, 0x1a412182093ca464, 0xe1099ea6b9e987e2, 0x367ac2e00efe3a4a, 0x924bd69e51a7ff81, 0x69a935a6592f8cd9 }, { 0xf80307de8846b190, 0x8bb26cef8df6bee2, 0xcf486186f3ea1145, 0x2a5e9f421a353c75, 0x1534e8027bd9f49b, 0x9a0d8f364d564fc } }, { { 0x599c6dff02b2dc84, 0x1a5fcac1d7e062d2, 0xf154f1301c679f56, 0x91cd4d03d59a808c, 0x80de49716222ade4, 0x582b3b0a191b0dc4 }, { 0x343326b7b6538b48, 0x790b2405ef462828, 0x4115a340dccb0a2a, 0xf8abd082bbf44a2a, 0xa06281c236942e76, 0xc5dff48263657c0d }, { 0x3df3ccd98108130d, 0x40c0c74b67f1047e, 0xa6dd412d0fbad91f, 0xa76b582ad9dc5f7c, 0x8b657b3e43d6d6d, 0x2c918cab8593b6ff } }, { { 0xba3e12e633e55750, 0xd4e96b11c18d75f, 0xcecbcf0da8a7f311, 0x690b39af91ee592f, 0x651ccb4a39be3a97, 0x2fe8451e60b2f9e5 }, { 0x746702c919f33d5f, 0xa46174046584d42, 0xfcf1a9f099639097, 0x9ef67a73b470593b, 0xb2b9850c128f6894, 0x6344ea6c11a17ace }, { 0xb9407f8c0f8c7918, 0xd2e6621cfee1819d, 0x4b12cc141fff0708, 0x87fb3f49f47e3744, 0x6c6a2043b237e450, 0x4e7b2a9f16298657 } }, { { 0x16c3ea5be56b4528, 0x79b2cf2aee2b4e50, 0xc7298984fdd0b920, 0xd003e170570cdb55, 0xcda0f5b092331f5a, 0xe0660f1d24cc93bf }, { 0x3c55e5718eb1dc29, 0x30e362689a367ad9, 0x9a8c18fdc1c360d7, 0x8ae2d98b2b94f9d5, 0xb55d3df5bbec4e1c, 0x403e6bd453a79318 }, { 0xe2fb42788d44534a, 0xfd5afa417e00290, 0x822ff969061f513c, 0xe005060f8165f33b, 0xa8fce64a312b345c, 0x6723c2c00840d004 } }, { { 0xa46661af8af3ae5d, 0xc1f8b13137628e09, 0x7a200f7c772c67f6, 0x39c16c4a5353d249, 0x5ad03d7b6d38dba4, 0xc4983e988d0bd35c }, { 0xe55130b6d72189aa, 0x6f17f50920483c9, 0x6036d803d726a6fd, 0x95e945bba09a704, 0x930463311b16f4f8, 0x3c68abc35d07bf3 }, { 0x2778fe5507b588af, 0x7f3993a17538f75a, 0x85cc2f55bca9c019, 0xdddcf3e6936d0a1e, 0x876ace8667e2bf80, 0x958339037d9ced27 } }, { { 0x125fd3edd0850f53, 0xccfd4c7689feefd8, 0x864f276ebe022aac, 0x74f0feb1389c0cc6, 0xa2e5ee422d21f870, 0x205766636177e81e }, { 0x20ff2e3c611ea6d, 0x11ee4f3c662adde4, 0x2245485b94020b7f, 0x824606e9a190c594, 0x32bde7ce62be153b, 0x5e9a54e201ecc34 }, { 0xdba71dee2a175527, 0xd1e1a19f65bae722, 0xad5f0a6c906a0f6b, 0xd27d1683f8774dc8, 0xd687144242caa8f1, 0x1462569155136f26 } }, { { 0x1335d5834746872c, 0xd862ebf3375f9a36, 0x45f7da821dde0954, 0x14f2d055f25e1242, 0x480393782a190fc8, 0xd18f650626ef41bc }, { 0x525842d9a6f0b592, 0x29dd74135f250b, 0xdaef0699fd74eef3, 0xadb8ef7cc8c57260, 0xe92dd4e287db8b98, 0x1bd52fa6afe28a83 }, { 0x26150298a95b9463, 0x658444f17274edfd, 0x985d878e863aee56, 0x39247878652513d2, 0x7d747bc90f82befd, 0x4c8422681d34efc3 } } }, { { { 0xe9af49a70a916bf1, 0xe994bcaba58cb5ab, 0x1556cf01a3bab147, 0x8e6e77eb91c206a0, 0xc58b92a16b2c084e, 0x39cc275f1f0958ce }, { 0x550f1691f263cb8b, 0x663c78ce9024b05d, 0xdf21dd8ddd4dc73, 0xe46b58d234f85d36, 0xeca640c69b0b9283, 0xe7c1464e293678d0 }, { 0x1931aba1c383dce1, 0x683a75975a25cbe7, 0xd8a4241e32cdf741, 0xde7629a85f1bab51, 0xf2323ca440fcf4eb, 0x91e9b1cbf0292d9e } }, { { 0xbf986b12189f8d74, 0xa26a84f0d00be3ab, 0x96572d03fd029eb4, 0xcb8a096ee64b8879, 0x796a56a4ae5f34, 0x2bace2577888a9bd }, { 0x5cc6e5418439beef, 0xdeda754974b8416f, 0x902ce17f8c680cdd, 0x3fec5eb9ed4437b9, 0xb8e0658d5cfafff, 0xec414b89fe684655 }, { 0x2b147602886f17a5, 0x8ad6cef6ad73274, 0x79892ca5c3acf822, 0x5adffe480e641096, 0x903163a2a83fedb5, 0x230b01282f935147 } }, { { 0x91d44c70b3cc574d, 0xe9c9d3a3a3c88657, 0x45b85f8e6c4bfdd3, 0x66fbcaaf9a09f235, 0xf647e16c508975ab, 0xe267477e4364598c }, { 0xb98c724d3f6e5baf, 0xf84f01014f577eaa, 0x92122182c6371a0e, 0x444c7b2027d348e3, 0x61ee7ddc5c811ae0, 0x63808ac7510ee630 }, { 0x208a883c51796e38, 0x498fe8a66eb07361, 0x70e29010fa58adb2, 0xbef0ac9346dd6313, 0xc1f2bb0baef2470f, 0x706aa657c8aca55c } }, { { 0x21092cab034ab8f2, 0x9d6bc44d101a53d6, 0xfbe786df7d9b94b1, 0x6cbf0942e93367ef, 0x5c37a10604e18a49, 0x995810fe7cb3699d }, { 0x84bd4f9a1d6bb5a5, 0x674f0a7c8c323e34, 0x3b587887dd7397dc, 0xeeaea62761f7ce7c, 0x22e4d4ffeffe268b, 0xbaefb2376ea71b44 }, { 0xce9d8e751fccedc4, 0x6af5ea5b6d077c8f, 0xb1f48c7dccb8a12d, 0x62e177bd3bc443ab, 0x46bcf8fe805bafb6, 0x615dc9deb917b980 } }, { { 0x515138f3eea8fb48, 0xbd353d7da1ae2b85, 0xc134d10e08bd1260, 0x2d4919dd7064531d, 0x6b87eb83725cf404, 0x90802147088c4f4a }, { 0x8e8c665807004a72, 0x2e215d5893632bbe, 0x7815b33701b2039a, 0x6a8d9f8fd746665, 0xecfba884bf5c5cc, 0xf84e53d9867367cd }, { 0x8c8f9146973e3443, 0x3ae54c0681b1dddf, 0x8e0835ab7bf91978, 0x2e58ea3ab2afd3cd, 0xa3e792ea48ac6af0, 0xeb0cd8b95cad909b } }, { { 0x1020eedcf3fb6392, 0xca96a1d807bcdc03, 0x54cc92e8db3f4715, 0xe60542270411ff6c, 0x121f46b7384f7d6f, 0x145e5811218b5f9b }, { 0xeea97c0795f6eeaa, 0xd202655fc3389388, 0x34f75645d2ce3b92, 0xc88af1ce93b94b74, 0xc0515723d12cdd86, 0x148fa08b353537fe }, { 0x64362bc858938b5b, 0xf22a408c64714c4f, 0xa33dc2a52503e825, 0xf4d334e2b3d01b82, 0x2bfed05240cf6002, 0xbcd37103d3cca29f } }, { { 0xf182be4bda70e287, 0x210004b2d04fe85b, 0x8be9a663ba4fd620, 0x798b47d5971dd725, 0x2384f9bc0307886a, 0x6dba4e4eb703d810 }, { 0xc6cb36e395995c52, 0x9c64bb90740173c0, 0xd7a69967553d9359, 0xff70d38865d5c192, 0x6802fd517ed7a083, 0x14722d4f511f65ea }, { 0x5d6b02de68534393, 0x701e9506c86cccec, 0x258fd9446aab5ae7, 0xbfd9a4c6d9c596db, 0x3201a17c88ef5ff9, 0xba43dc50ffa5558f } }, { { 0x2d00b329592e5617, 0x5bacfe687587b657, 0x459a67b9b29b3b6b, 0x254994270327c1ec, 0x3f04b497957d3cd4, 0x5fb149e66277de9d }, { 0x782ece949dfc6eb2, 0x81688fb313ef34, 0xad241d7280dfdc5c, 0x5d6fa1f2630a3ae, 0x40c7878e8eb18553, 0xa1857deb3b1a8281 }, { 0xc5d7c1565686e7de, 0xaf9b7b1afb724156, 0x547dbf7c6f60cf96, 0xf7caaef798ef121c, 0x2c892789589291fa, 0xe30f12475532207e } }, { { 0xdf64aaf70851e385, 0x2df1ddabf44c1241, 0x9fbfb6e443f32ff6, 0x8fe4c379524b2570, 0x32da04a2c259a1f9, 0xa82ba0e65918aef7 }, { 0x666438b6fbb46d76, 0xb4c7d33810ed8327, 0x8b30f740bbc64bb1, 0x8f4b77d31a4af471, 0x395a0dd57bc89d33, 0x7e585ddec688212e }, { 0x22f30d0136fea0d1, 0x68af688d89621580, 0x1f488560a03c4670, 0x1e8889d61c74b43f, 0x40a57227cbaab174, 0x17226faff2b3bdb1 } }, { { 0x87c1e6fd7eed590e, 0xc6b25ebb0ef233df, 0x86c32ddd9459fd81, 0xd1046c6e2c8f67b, 0x690c35a94dd16352, 0xcf5d43290e7a013b }, { 0x2a223820a2f75abe, 0xda3fb2e77d75cc00, 0x81b322fd4df7d8a6, 0xd467aba580f1398f, 0x493f10bd7bcedd87, 0x398c9661a1cdced3 }, { 0x200c2016bce9fcda, 0x477434611bf89170, 0xf7c537e107084c55, 0x6e8cf33254eca800, 0xa669e99303dcb9bc, 0x5c2ce928cd28e871 } }, { { 0x9a5cd2de8d743418, 0x998759582ce797c5, 0x6f4c5aa23e0902c0, 0xe03a6972a67e49e1, 0xbdff0e139eebfda7, 0x8bea6e49e6427315 }, { 0xcda21f8c91ed00a1, 0x9917197b926d53a2, 0x62681445ed513172, 0xdc294fc43b426cfe, 0xa05a99da6a3d2c06, 0xfe48ccb0c0c6fbf }, { 0xf9b2aa25ddaec8dd, 0x7cebacb6c036a2fb, 0x1bdf5c693886e502, 0x875048d7bba1cb6e, 0xa690e4c3bf1f3d9f, 0x40687cfa04301e8 } }, { { 0x3c2680901b652ec4, 0x4fe387f7bdac990a, 0xbbc0040280144053, 0xd8c0676afefd71bb, 0x92a5dd825912d56, 0xf556e0172c750f2f }, { 0xa4585da6e8f50221, 0x5d897612b8303d98, 0x3a7ebd3b494060e3, 0x79b70750339b56d1, 0xd40285aa9fae8153, 0x9a3d8d4b8aedf333 }, { 0x8e2c0070c6a7a7d5, 0x1672cc7b207c835c, 0x6fafda614c98ab1d, 0xed96641588a0967c, 0x827ef3ae03c80491, 0x479893b89f3b90ff } }, { { 0x4781f12636ceec25, 0xa91adcd2046a4e7b, 0x810de83173793b5e, 0x34071f2e720cef22, 0x72360bc6b88b6e9, 0x1650b920fbcb3dbb }, { 0xa2ead49fdd88c3dd, 0xdf97bcccf1e8d867, 0x1c1283fa834361fa, 0x627b7efeb6388b30, 0x40387fcffbaf9fd2, 0x4704ae80b8aed985 }, { 0x7f4e139b36b5f688, 0x3112b94192c78289, 0x16ca7ee00b5915a8, 0x573ec1e51b14a40a, 0xc8ac3f6a9bc91e24, 0x1470011159d601f6 } }, { { 0x684a1c68f321dc18, 0x21954bf98999fe8a, 0xd2ce2da75eb9e98e, 0x55dff66d9a3f807f, 0xd87ca1806c78c24f, 0x51bd2360a18a127e }, { 0x23459e2cba75399f, 0x12d29dcec0002e8a, 0xc48f1f5ee957a27f, 0x88fe50f58bec10f6, 0xa88dd2cbacd0d46f, 0x284f6c9e646e34f8 }, { 0xb88b6fc155ceab0d, 0xe35db7e28f61037f, 0x6fa642a304b4813c, 0x90825907fcf40f7a, 0x1a57b8827fa69c7a, 0x87daf341ab1258c1 } }, { { 0x96f154b4422a6c08, 0x6347a31b7f2efee3, 0xa336affadee9e30a, 0xc956e9a957a0e718, 0x13ad83ab617aca81, 0x4239044a176788df }, { 0xdf0073e249f6e8a3, 0x360c81787859be65, 0xd40688f23efdb299, 0x4c89787be4f5d0bf, 0x2619fbacd8596cd2, 0xd21654738bd76424 }, { 0xc96477632a39a108, 0x96a4102a70eab394, 0x240239d2a6f6ebc9, 0x7acf185b2121e779, 0xa612745fc694eda9, 0x508e8b59f56834b0 } } }, { { { 0xeed85e66c44fa240, 0xfbd2e30a3747d971, 0x3d5b62a64252dba, 0x169d6fc549068b2e, 0x2352d927aeb7eae9, 0x11c6dce5f6011b07 }, { 0x83d0ffb79b5be39c, 0x1690ff4d566eea19, 0xfb607c29ef08a7d5, 0x393614273121c598, 0xb184ded48a7acb2, 0x8f17bc65c90d9fc8 }, { 0xc7b0c5dc47a00c8a, 0xf3fe0e229e0e0bcd, 0xdaf4a65e869c51ed, 0x73f137ac762af5ac, 0x9cfbaf96b3f66b8c, 0xf67389e693972151 } }, { { 0xb9094f21628dfdf3, 0xffde3f8e4ee194cb, 0xc6036c61d4c79f8a, 0xce52fa33dc48d5b8, 0x832ff73e10297dd, 0x2aeb4a9ef91abdd3 }, { 0x7828176827172d69, 0xc823fea46194df93, 0x4fe6a45d37cc849e, 0x56d5a85655fbb8d4, 0xbc78ee81d6e07c2c, 0x6dde3a8689eaa2df }, { 0x4ad7ec3d3b47a6c8, 0x79dffb4f263184a7, 0xc94ae1ca4a47b860, 0x3c58741e62cd4907, 0x1a0b4b4515eb1f5c, 0x4de80f8d0a97e2bf } }, { { 0xfce2afd46c2be6ae, 0x9298f6e373806be2, 0xa366a52c2d526ddf, 0xf80a1a765fb2db39, 0x405f0c84ee8be15c, 0xee41565037b06c8e }, { 0xd9053f87e56a32c1, 0xbf64d4bcc2b24f0a, 0xc3de230c8f5be6ae, 0x756133d4b9c86612, 0x72c26cba8339340d, 0x6e45fb94b0eb7d86 }, { 0x661de02fe010bdeb, 0xf0f5bf048440036f, 0x2348912d4b190667, 0x65bc3ea70f3c5aa7, 0x9c70b74aaf2505c6, 0xf770ddc850823af9 } }, { { 0xac005a4d5057ec23, 0xe7b4768d1cc484ba, 0x22ecd59fe34c3e97, 0xa341aa9d2f221e2b, 0x183af0066c142a0, 0x5f1cc25f1e2cb5bb }, { 0x20ba8cac56fb779c, 0x887fce0660ae8e43, 0x1b9c5841f1930e4f, 0x87b5cc26b115769e, 0xaecc2a81225783e4, 0xab3d77ef61864118 }, { 0x226b5950864dc644, 0xd182d1250604b9b, 0x69b68df189ae6c0f, 0x2e6bde9cf9ffa905, 0x1228ddc0b856def7, 0xa7d5c5ee89d805ff } }, { { 0x3ea0892d41a9d64b, 0x8bd69ff23bc5e192, 0xeafeee2dbeb8cf8, 0xd2ecb461e2bb55d9, 0xa4adaa116ec98d54, 0x132ee29dc123138c }, { 0xa2075b90aa7e9fad, 0xe6554f02cc1c9c59, 0x92afa1c92d407fd, 0xf2549e8b1b9e3f29, 0x61d4aac24a8b12dc, 0xbab5d42c3592cdbc }, { 0x4a9ec3e9145f950c, 0x1ce547f2c855d71f, 0x7885d92a02576525, 0x9330f417ac0c44c0, 0x9061c8e170426b36, 0x9136923b49d6ba2b } }, { { 0x701b44852a52a8ae, 0x7de43d86327901bb, 0x955d3423eac8baef, 0x5097c4979fcb27e3, 0x9590e5533019e3b8, 0x59cf6966d09e6e85 }, { 0x948c3d18f5b854e0, 0xa4c6c3c1abcc857e, 0x7a20846251991daa, 0x46ef4eb2b8e2606c, 0xc24f6a36bba527b7, 0x18ba375b57ad4a03 }, { 0x55adfb4a500bdbe0, 0x25405f31ee9a38b5, 0xbbe171819711c6f0, 0x1170bbccdfea9366, 0x28a7570916dc900e, 0xbd9e68eac9f4e9e2 } }, { { 0x957560a080bdcfa2, 0x604c2e764b738e9c, 0x6be53c9d9d9e6979, 0xc0ac5e6bb74a3af9, 0xea3a54dd0ae09c2a, 0xc69e78f3bbe2c9f1 }, { 0xdb922b0db5cfbf1d, 0xf404e65f32730544, 0xec8898f951499a8c, 0xad1ed983cd255d3, 0x7dd04171b3c65db5, 0xa398ac7779cce385 }, { 0xa87dff12bac20ef1, 0xdce515e7b6900bd, 0x6f05ea4deaa7e930, 0x2d96e366d704bfc5, 0x59eea9cc8dc5e1a2, 0x1cf09789faf9a79f } }, { { 0xf1b0c89701453580, 0x22ea62ad8da5ff14, 0x19973f13f0ba2348, 0x948bf8210138c625, 0x74e048f431f31cc0, 0xec1b6a01b55e063b }, { 0xa5e8905b1548d0b1, 0xd4a458e466bc4e10, 0xc131001752372993, 0xbd2ea1e154f4de41, 0x2094611ace0ce63e, 0xc9c79da5dfe8e18e }, { 0x5b225b4a25fc8016, 0xc992036f25dcba1c, 0x25b2887125acb591, 0x287e35f24d7357cf, 0xdb13cf840a07d102, 0x2a646b8caf1378d4 } }, { { 0xa2b007401f182cba, 0xbd85805e412d4170, 0x5ac1a37ca0ed6238, 0xe6aeea4365e47b4e, 0x6905eb227b564760, 0x2a709bdc46c39595 }, { 0x7f52c3eee43f7d22, 0xf18363c760ebc547, 0xed538263cadbea4f, 0x7cb8b73e770967dd, 0xdc7517bca9aaf272, 0x6c7fb3dea05f2eb8 }, { 0x2c3ac7aef0661d5e, 0x8243b0e94bc78f5a, 0xd033bca57e21a562, 0x5ff567cc066d5251, 0x92752b62366b38a9, 0xcec3860866bb1832 } }, { { 0x67d78924884d00d3, 0x4bb814481b8556da, 0xc7855af66bc5ce14, 0xcb7a479b4e227ea4, 0x7bf09a1dcc04d639, 0x1748af82d084650f }, { 0x7b5d30c26dc98126, 0xac4c94de55ffd64d, 0x364c829b0c5b2cd7, 0xec0c234647d2e00f, 0xda03b7432b7e51b4, 0xf2699f0019d97ba1 }, { 0x9ba4a3d6f69165a0, 0x3d9bb358a2ab1bb2, 0x1b44968c6c5e2bae, 0x4001d1d8e3443349, 0xbb5ce20575afe8fc, 0x4a0fb162c29b917 } }, { { 0xe5416c60738da4c0, 0xc6f25dc3306157dd, 0x9dc52bcfdf68657b, 0x8d40047ba7f9f28c, 0xce29b2d5c1743b5c, 0xf6f73837ba6adbd }, { 0x890abc41b4c3dc75, 0xd989b0873ad36432, 0xc44cf969b4643ce5, 0x18951862d2ba66de, 0xec77df7821998bdf, 0x206a38afec7ec212 }, { 0xdadcfce6efe0339a, 0x5f912e27a08419aa, 0x1750d5be082a0e95, 0xc8f071ccf916577e, 0xb030bc8e62f1d6c2, 0x43098c9237b2a97b } }, { { 0xb84c0c51692f9443, 0xef2dcfc6cae8efc6, 0x3ffba0efdbc0dda5, 0x61b314dbfd864e5a, 0xa0253c4667590ef7, 0x85b7b4aa72339aaf }, { 0xef00031e11be59e6, 0x2fd6819fdf70a10c, 0x81a8e8da24f6671d, 0xdec8ff243a1422b4, 0x4b2d4ed8c90105b2, 0xd7a747b9f822ec91 }, { 0xfe1bfbb1be0ff863, 0x9abcbf0c66c6c8d9, 0xce79fa428a0bf9b3, 0x63e97bc0faf76f7a, 0x9c5ff1bbb91be56f, 0xb1225b7de8827911 } }, { { 0x1678f450080dcf99, 0xb11c4a651548624b, 0x91041d93254cb033, 0x16ffe67409f774ee, 0x69de559e9e78b422, 0x5ec0bc20c59a0fc9 }, { 0x9318d11b6aa03b65, 0xbd4b56904c365f7f, 0x98411110126f349e, 0xf8fa93c3b5967edd, 0x95a2d98e8f44b7fb, 0xe70a059ec1085cf2 }, { 0x1aef3812c9552fbe, 0xd681d9e5e06f0330, 0xb6c4c8831af20713, 0x96705d8abae2c409, 0x98dd3df95ec9c0d5, 0xfcd91b815ea51264 } }, { { 0x82987a66158d22cc, 0x564566fe935fcb1c, 0x3ec7ce824884cf7e, 0x8b55aacb7b2bf5ec, 0x81f9ea0d0e5a1d17, 0xe07b119457c13c02 }, { 0xfa3537c4c7b898ef, 0x9c5a0243343a1d45, 0x5092e746b94d8ab3, 0x676b8a66d0ce3000, 0x5eb3af9d61b5ee2c, 0xc2d24b612c297e0d }, { 0xf21c8a7e1f323520, 0x6a36422753e1404f, 0x40eedb53a85a02f5, 0xe1c880787301ef0a, 0x7eb6b2ecc118a1aa, 0x78a0e5a60a2b5430 } }, { { 0x3f69c96b297a4924, 0x3f6300b65f621c2b, 0x4fd7ac278d3292ca, 0xa018d4e6b0fcbb3e, 0x4ef965f5e93a3a1, 0x2e7ddb8de3a030b8 }, { 0xde3defcbb42d9fe8, 0xec768d639fb17770, 0xab210e42ed74a897, 0xc96b090fcf6aeb57, 0x739fcfe11743b8ba, 0x7f9df3eb24e57e3a }, { 0x5e55792ac101574f, 0xbd000917027f04b8, 0xe1c5c1d5154665b0, 0x9482c37e6a80957d, 0xd4e5933460ce388d, 0x2cdd8bfff6f26571 } } }, { { { 0x369e0f10b5194349, 0x848b848238c22505, 0x6c5b6c7cbd88fd8f, 0x13c7264e3b57b98f, 0xaac357dd8d523989, 0x8ce4dbac1d079d27 }, { 0xb80a8a95e4458f60, 0x5e5f3f34b125e459, 0x506d192469607812, 0x8d588095bac02dd4, 0x7dfc02233865159e, 0xb82b4ae0084db958 }, { 0xbba29c6f6e33820b, 0x3404041971f5cdb4, 0x356f7939b7ff349b, 0x7a4674a913b00357, 0xe688c97882dd997, 0x2ded6e6e012e6960 } }, { { 0x28dc3f8775520fda, 0xc42c272f7938e42b, 0x1e680b39d30eface, 0x1272681f31b51aa4, 0x3863f471a20cfc4c, 0x76aa9b0a74ccd3ab }, { 0x3854c1429e7912a2, 0x3a7a8cad67c00cda, 0xbdb26ff4bdacea6c, 0x573d060ebfc29668, 0xb670befef83e1a07, 0x2b5e5e367d95c544 }, { 0x23253a0c04c92c82, 0xf81fc6ee314405ae, 0xbda4ba62d4fc25ee, 0x923515a3736abff8, 0xe17b7d0beb048991, 0x397dec8d7e58be2a } }, { { 0x881f04b65fb56c45, 0x8b14c58d528f2bd4, 0x280eeb1639cd334b, 0x952d1eaf48517e3f, 0x5b138f1824005af6, 0x9495f5240dac2a27 }, { 0xd0870f61abd01265, 0x5e9b9ca7f040ecc1, 0xf51c6474ff869280, 0xcb685f6f419d272, 0x61b652bab9b06ec5, 0x24b50ff55e55db40 }, { 0xa8b59ea83f35d574, 0x359c76310d1f8ae4, 0x62cae06489a1449a, 0x3c7ac157b9bf3445, 0x4915019af0610fe4, 0x52136e82798f23ab } }, { { 0x199eaeb2d563468d, 0x4942b94b67587f46, 0x4513a19f05ad103d, 0x1a79e50e80d0b295, 0xf1c3af3ce2c6010c, 0x8d550905ad066ab4 }, { 0x360740653b02a314, 0xeff9daefb0f8de4c, 0x9523f1126389dc72, 0x9bdd449049d7631b, 0x483946e0cec29c3d, 0xb53348565430167f }, { 0xfc4fe4db939023fe, 0x366a7d42a51a91a4, 0x7727910908f349b4, 0x39754d1709d46262, 0x522fe27e2f67e8b8, 0xb305dc2069c7f42 } }, { { 0x4da1159c4cf9bf60, 0xdd826d9e151152f7, 0x4949c7dbb24ea969, 0xef4ed13ab3e06398, 0xe2c55e079bdbd8dc, 0x8691b8ae60576417 }, { 0xbf6f0cced9904717, 0xfd865851ba2ea458, 0xd2f9697870500d40, 0x6f98a27052d49c87, 0x9b7fc10a20a6d9cf, 0xb3434e34f4e2e256 }, { 0xe327a49b4ec757fc, 0xaf94591ae2536bb2, 0x8e620dc19a238e8a, 0x8742a475fd46e962, 0x4a3cb619d7ec03eb, 0x3f73a23fff0896ea } }, { { 0x268ddb0a09d546fa, 0x8b6115e1b9bcb0cd, 0xc3844462be7ec60b, 0x79ef2d0a68d9591e, 0x4e16c95dc69c10e4, 0x7f890602963d7845 }, { 0x8bc7568869d7b2e, 0x7f066365459f7797, 0x2fe9f0f536ad4dda, 0x4f9f64a0fffc32a3, 0x5f87f88f5b94a958, 0xc77af99e0b9fa7b9 }, { 0x6767d0b2e08fe67c, 0x8f3420eb3f0eec4b, 0x733ff14c87920ec1, 0xad954ab48c2cf5c4, 0x6c21352c9927b657, 0xba2bbf8c8ae321e6 } }, { { 0x81487f994ec85ca0, 0x448d2fea83310689, 0xa7750254dc7a4f8e, 0xd77eb1e81301c5b0, 0xf95368b2d93b480a, 0x11409943cbdbf9a4 }, { 0xf0357b8df5d1f5ef, 0x970ba9722164b0c0, 0xf1213730ac9e0c74, 0x51014e793a80b871, 0x70bf5e74071589df, 0x82c4af2854f06d73 }, { 0x64f06d5c407072c1, 0xcc3b8f1690e2afb5, 0x60678299c732fc08, 0xd1bc584e27a9b956, 0x310fe5db70f92bc0, 0x79fd5e42a4f6d7fa } }, { { 0x97aa12fd195bc2a4, 0x77a80991318cc2a4, 0x325f401447351968, 0xedb1e34a51af33b0, 0x7a0f14828142bdec, 0x98289ba2c6877c3d }, { 0xa4ecd68ee7539fd8, 0x65ed069c2410c8e1, 0xf6b7d477e07d114b, 0x66a775f54db7b280, 0x9d1a954eca5b0889, 0x22d4620559135ce8 }, { 0x4db15bd1fb5a982d, 0xf67ef404a2331c9c, 0x6ece4bbbf7936bc9, 0xc2955a6a8fd7145f, 0x3fc8c350df7e4ae0, 0x1084bad3d2f2b770 } }, { { 0xfce911ba3b15402e, 0x5aa534dca1029799, 0x5654d22bc4357102, 0xc18cd4f3da2994e6, 0x8a7745e56819e89, 0x70c9ec49dfd8affa }, { 0x4056e4fbbeb096c6, 0x30a1d1b1c342b21e, 0x62143e39aa3371d, 0xf5916c3f5167a993, 0xa337cf1119f18bf3, 0x68557f4a3fde2a8b }, { 0x197ee4cd51570ae4, 0x7758321beedb14b4, 0xb9d0c68630cafb5e, 0xc3b05bd3eb2b2416, 0x21fa2bce4854748f, 0x56a282356e3572f4 } }, { { 0x23f49ef86fba9f4d, 0x5d316c3159f98244, 0x3a3ef70dd9b430f5, 0xb97d6c00ed1240d9, 0x68f8d29622b03b5f, 0x77362dd6ad62ca2d }, { 0xfcfe038a1c1f13a5, 0x4130370c37080795, 0x338278a6e0ac4c4d, 0xfd66b1779f913cfc, 0x57e682565174df6f, 0xdd5cdf538231cfd5 }, { 0xa939dded53525f15, 0x84a175f2328fd7d4, 0x32e20746858752e0, 0xba9abaaa2d35c228, 0x2185608114325b5b, 0x1758df4df4835998 } }, { { 0x707b6081fa2d4ad8, 0xf827362c5a12fbe, 0x15531bf4476db6d7, 0x46ee4351562bb429, 0x7e0a9f547bb34d72, 0xc5818701e479b4a0 }, { 0x2d4f9533baec6b8a, 0xe06776a9815a08ca, 0xa0d8440f410e9bf6, 0x356512062b807b83, 0x398663a2f0776c0c, 0xb6686e8b9238a5c9 }, { 0x795e91d07a84b07e, 0x3b0180c7162d1baa, 0x6f09e5f499b81e23, 0x2d7baa84fa9913d2, 0x991254effd6a917, 0xb6429a4bc742971c } }, { { 0x473ad47cdbac1025, 0x25f758c707b6150a, 0x20e8c5ae69ca7854, 0x393a8bcf91820c41, 0xa993889a9f3a0333, 0xf800fecaa10f0ca8 }, { 0xd02d5cca1ad25eeb, 0xe04c8b64d722832e, 0x725edf7b742f0f3d, 0xf1e0f0f93c34dfb, 0xef0e3abce66e17af, 0xb61316108b39a196 }, { 0x6227e287f3ea8a30, 0xb65efb882cffab4b, 0xa481902a5985914c, 0x1de78bac88b300df, 0x68a50660db95056c, 0x431365eea634b95 } }, { { 0x72bf6369f51440ee, 0x8406b3172a6c02e6, 0xcdfe27dce14a5698, 0x83c91e8fc94cc857, 0xd679f9588d72045b, 0x8be329bebdf7ebb7 }, { 0xbb1ac541d2394588, 0x1274ff2b719b2568, 0x25177c163d10dae4, 0x23946d799a965fd4, 0xc94afc6f5b66648b, 0x3e8c11c1bd9e007d }, { 0x18093b3bb06f6c59, 0x120f982a5a44cb44, 0x6eb28f76b7565d3c, 0xe83d7e2ddee35a7, 0x268eb8dd92638b6a, 0x70da8994f9d31af1 } }, { { 0xd316e148f3a02618, 0x6458145f6358e34b, 0x99c2c4be708dd4e0, 0x4b78d12c0c9a8eaa, 0x97ac0de990b52e61, 0x84ef066ca21d3aef }, { 0x9b5f2457e6b2f163, 0x8cd7e3213295fc6f, 0x1db020eb9ccc0293, 0xbd43446ba59d3d52, 0x8f3077680481400d, 0x92c347b41f716941 }, { 0xd8816b14474c17bf, 0x66e5932cf8ed2390, 0xb5c656cfeb26d07a, 0x84402223c6b4a5a5, 0x2029f5c64bf328f7, 0x6f9a1259b9ff5e95 } }, { { 0xf9e78804d3303878, 0x52cbaa8f1b921229, 0xf9fde53f460e2059, 0x11193ab4df131e3b, 0x421aacb580b29df6, 0x13d39c348d303d2e }, { 0x46922fd3fa3cfbec, 0x2ea8c441fcb5e970, 0x38e7f4c76133c48d, 0xcaf59fb894fd5a3a, 0x48f1f06ce8bc8369, 0x80a24d56c3381323 }, { 0x8de6643af63b8db5, 0x602c870037233326, 0xbba193d999af8bf1, 0xce6d2875767154c7, 0x1df1a81874f993dd, 0x13a8bb70d774fb4e } } }, { { { 0x21b55de39836ab23, 0x49c541285f1bedff, 0xcffd228e7327e98c, 0xe0b7eb5f2129ec1d, 0xcebab3c4de946736, 0x5a62d2749f107dcb }, { 0xb7c06cb3991ea1b, 0x3def893fb12bf2ff, 0x7e63a95e8b8a5f03, 0x5e2a6b3833e1ded6, 0x96b276227c2a768f, 0xa80dc677484f3786 }, { 0x1a23fff64a893a79, 0xc2bb974e82be7e4a, 0x66d93ebf191f829b, 0xd623aa104e6d97a5, 0xc9c3f8c4801607dd, 0xcde8372a7c56974c } }, { { 0x35963a634439697d, 0xe62491052ed59408, 0x1dbdfb3f7500477a, 0x84688a649633f5c7, 0xbd3848ccb07dfd86, 0x2d97100c03386438 }, { 0x3aff6d777e3f2457, 0xe31ae55a1db47f36, 0x8460351aa066e426, 0x257604a0553380f2, 0x862b135ba504c695, 0x6718f337b3f50b2b }, { 0xeb137ee91a3fb02d, 0x9285c9a392039f9a, 0xbf6bb186485f7204, 0xf312ffe512a5b12e, 0x6ebb97e302cacf3f, 0x27f61513e0acc733 } }, { { 0x1d9da76b236455da, 0x864eeec5751d168, 0xd4a6aad86e5a2899, 0x560b063cbc43ebf5, 0x1dfabd03fae6c131, 0x71b70fdcc94f80d2 }, { 0x22f33c6c5af63bb7, 0x97418c6d5f6ad0c1, 0xcbc79f76b232d4c, 0x56599403314c3416, 0x1eb7e5cfd013cfb1, 0xd2a321852719fbba }, { 0x58b55656f9033a6f, 0x15d4c4d2cc3e1c66, 0xc637757d06758754, 0x9f33d5be030803aa, 0xfe01ca75aefaf944, 0x66a1e66c1c21c70d } }, { { 0xc049c387d6684723, 0xf52733446e0141ef, 0x401f739adbfbd97, 0xbb57548cafe31ed0, 0x16ce727d156cc3b3, 0xcae35120f924b3c }, { 0xb3d8eb44c172f619, 0xcc35692a573a933b, 0x18d51da78572ff21, 0x26d02b4862f679e7, 0x52d7e3e2a74ef367, 0xd8da79e1495177b4 }, { 0x99d71114a0395787, 0xd556c2737ee99502, 0xaabb527abb453283, 0x7f5799c2fcf0b116, 0xe46aefbb55c5e2ef, 0x5b974e5a61909bf1 } }, { { 0x84ed58070c1b7a55, 0xc038ec7d8a78c58f, 0x527f0303c739754, 0xe7b263a93a1828ee, 0x7cb3079bce682b81, 0xfed42761e7bb2230 }, { 0x4bdca13ba6d8f03f, 0xbb6f6eaba13bd6bf, 0x4f3d1377c8dc9ca0, 0xb76de4994bfe2f5b, 0x57b7ec60fb8ae0f2, 0x16f8adb338e9c3f9 }, { 0x63608b905f33b3dd, 0xbe20fd66e1dc72f6, 0x4edcc760c8b50d1b, 0x42d520f96a273307, 0x1ba99504dacb949, 0xab3e046888bd702d } }, { { 0x6d3b09b65674e304, 0xc4e6c1dcf5c782b7, 0xb693840bfc18bc6c, 0x5ec745fa82b19654, 0x88b331c2edf6a0c8, 0x387177ed79ab47a0 }, { 0xc55c70e4d42c4d69, 0xaa3ff9620a4d76ea, 0x74751d289faecf9a, 0x555a71dac31d9bbb, 0xd91478132bd67900, 0x2b4b45811a4c600d }, { 0xe9e6e15a4ce13625, 0xa346cbfe5b7bae45, 0x3f865e7cea40083a, 0x2a9896e8374ff731, 0x6de0cb1220e61521, 0x3d16370f42851344 } }, { { 0x93bb4dd2c49bbbe, 0x77c4fa31f38d1608, 0xacb418bfa0f33c60, 0xa8e3a93090a16890, 0x7ba75b3b9983cb67, 0x428103f217e983cf }, { 0x33fe92046c7496dd, 0x8a23079afe59b21d, 0xb12954140caa50c0, 0xee555a4ac7f0b649, 0xe17465a9db9ea04d, 0x767990db0d2c4cce }, { 0x9fa914b243aac11c, 0xa9c62147603a007d, 0xa53985c05a01ef2c, 0x2aab2e8280a089f4, 0xc4ac8af4d6958816, 0x3806ed89da3dc846 } }, { { 0x7587919737f3b423, 0x2250c81d67eeb6b3, 0x15d36aed8bab3aba, 0x576ea0d410e97493, 0x44f4efb72b3df7ac, 0xd77595039148def4 }, { 0x356a80256af53634, 0xf048e5e6ec00ac43, 0xce2bd51bfab5600c, 0x397ef930ac5954d9, 0x6ab6f854313e879f, 0x340dbe6afe771b2 }, { 0x94ecca9a494b091b, 0x739f3a6e2988eb6, 0x210e47de28b7778d, 0xca0171672d06243, 0xd7859f14d7a026d7, 0xd692ced749527dd } }, { { 0xf5da5b3ff4cf69ef, 0xc185e5af872cf672, 0x348dcccfa17fb83, 0x339d5777fe78c62c, 0xedc4c40452478e2f, 0x1424fb63a8eda1fd }, { 0xcc1da825432559c9, 0x246cf0cd28a101d3, 0x88a952fe30707500, 0x497a2e75fc4a95a4, 0x1ac9a5458fd8c843, 0xd83b6d6a36a9a775 }, { 0x1e58d0bbdc1b8a50, 0xc31c48ed7a095766, 0x60bcf1f1bc2ef651, 0xdae0c26987d45eee, 0x6cfcc51e0d050b0e, 0x6a3d9df3da3fd695 } }, { { 0x927f67e96574719d, 0x6fa05d414060dd, 0x53fc874f37722b9, 0x7b9564da4bf8d6f0, 0x2f406e9027d131b7, 0x3c238653aa382e6e }, { 0x64682024cbec43d, 0xf3d7792255205052, 0x48189041e1e4d971, 0x1cc0563c774c302a, 0xe7caea66c6d39f73, 0x3c9f57349214bca7 }, { 0xbd0b98a29aad2e12, 0x7f9ad7911200ae52, 0x9d3ee6ffdba527b3, 0x2d6ed9a1d484a701, 0x7f12fec8f3741daf, 0xf95f9c7fd4afaa0d } }, { { 0xa6933c7065513c82, 0xcb347c6b8cb1d76e, 0xdde6a8e75a557d21, 0xe684e26e53e96624, 0xd56182ffcfcb0cd5, 0xae08f57cb49de5e6 }, { 0x6b3b698151170c39, 0x3838daabe75268bc, 0xe15cebae04f7c2ba, 0xa38960fea5ad7aa4, 0xad731e91ae1fe53f, 0xe0f3b4a4c4609f3e }, { 0xddcb4da5aeb0d6b0, 0x59a78fe0ae15bfd8, 0x43c6ed70550f8bfd, 0xd34a781cc2d4dc14, 0xab53936d1270c057, 0x80e2653288096ab3 } }, { { 0xa4bca833282301dc, 0xd774db76c2b20999, 0x8f9883edef09ed79, 0x9ffacfaaf09e9a67, 0x5df3971f0557dd4, 0x81ed294be58001d3 }, { 0x24400c8080d12b03, 0x87361fb18b5cac05, 0xf25d519fba1f6a47, 0x56ff94ec129b53a1, 0x9c14e02d1a470e1a, 0x4f3bcfd60fa773e7 }, { 0xf00714f9e6558af, 0xa2030a0f059a20e9, 0xd4a543c4a27186c1, 0x4bbd9cba4c8418fb, 0x554ba2d48d8affa7, 0x4def6af7be308f9d } }, { { 0xee07d018709bd85b, 0x7d210c8807092a7b, 0xbe01f842d637c98, 0x9f1995a14527516d, 0x8fd957e194619d57, 0x8eaade93729ec126 }, { 0x44ee4f7a8d5a7089, 0x412bc42f058d3870, 0xdb959b64b26b6f35, 0x7fcc9099f87a7665, 0x6e01a1f5b2c94d65, 0x6ea36a307689de51 }, { 0xdb7bab322b785e75, 0x3326ad7395c8262b, 0x5597a6af768f57ea, 0x2e9e398cab850721, 0x484912d362911f73, 0xa06189e25adda948 } }, { { 0xc27e325dd0ca1133, 0xa29f0cb6d1bd689c, 0x7a378ca87b78355c, 0x7f2f8bc3cce6019d, 0xfa3ebe28573d3549, 0x631e55430288fe6f }, { 0xce20004a42618b47, 0xe7545ca3d747af28, 0xf2f702205c06a3ee, 0x55702c0e0fc97521, 0x585a04c900e8fbeb, 0x1d0b4e4bb8e6e49 }, { 0xdc1c6cc3051e44ba, 0xecd16eacd8288533, 0x41343762ac89c3d8, 0xd95c947076a8fae0, 0xb08ee9946ee43c38, 0x9d5eb3f19280a261 } }, { { 0xdebf3e2475a0f212, 0x9304ad2333036b25, 0x1596330c9659fe17, 0x6fef9f3e02a1029c, 0xc5ebf30182efdb97, 0xeb9b1accb87ecda5 }, { 0x622a5b7a8cba0f1a, 0xa90d1f70d61b8b2d, 0x1b01b54d74e4aed, 0x8e8c637c8ca5f6e1, 0x433a139dc9d6d78f, 0xd294ee1ef3281a2 }, { 0xf33809c41386c7e3, 0xcd3cea680342a6a0, 0xb77781095ed3797c, 0x232d63f185898b14, 0x5752cb6831e2ac1a, 0x7c53ceaab481570 } } }, { { { 0xfca11d11f9c14458, 0x9672fbd5257d7400, 0xea4596245ccbfe8, 0x28c7dd868aa98197, 0x84b2939bb2fd4063, 0x1c1296ae31164f7c }, { 0x90f1de5b8c9b0c9d, 0xf433288584e54cc4, 0x752e208e1e5c41ae, 0x5594c4b39a3f39f5, 0xa9e509d1c8b111b5, 0xe842208b6e5455e1 }, { 0x9099a33b33165f94, 0xc80036c26c4c0237, 0xd24f15828469f842, 0xd49e2ee2c9547573, 0x95f18926e303ee98, 0xe17ad31791199ee2 } }, { { 0x5561eb39ba5760fc, 0x9d490d16ea114b94, 0xba80b42ebb8e1051, 0xa402e974aea8f66e, 0x5e8f60627a9d4f51, 0x7282e96f764a5582 }, { 0x2205df40bccc1ab2, 0x246c5f3bc7bcae79, 0x3b07683092faedcc, 0x970bcbde28ffb729, 0x5b01c9e0aa6a2777, 0xefb9c50214337fa5 }, { 0x06508cd14fa53e, 0xf9b0ccd6501008ad, 0x801ee124679901f5, 0x5c90b9c0ced5dfd8, 0x103e60045303447c, 0x6c9dce34ac03a480 } }, { { 0x40a8838912ac1ab0, 0x5a1fb554fdb3401c, 0x53f211edef0249df, 0x6a843f880aedd8c3, 0xe3480ac710de73fa, 0x80949f55a087a02a }, { 0x7ce077e8b797936, 0xc5056d627f6cadc0, 0x32f831e2a326a55, 0x41521d1b1fbe502c, 0xb47558b6bfc6a4ff, 0xd4cb6aef6cf62bf8 }, { 0x4250621d0ff24b2a, 0x7dc61fc017943cf8, 0xc1caf1e9b30f1592, 0x7f19691708cd4f38, 0x9d46821e47455af1, 0x1fcad9af6acca8 } }, { { 0x2d52125a39f9ad2c, 0xdf01fc1b2435d9b1, 0x284eadbf20472139, 0x8cd415a720de6cc, 0xbac35462c307e446, 0xc065c3924f207b73 }, { 0x18fcda4f1ad98e64, 0x3fe619a4e42534d8, 0xe91998e0e74adc21, 0xaa69880e2ba4dd9d, 0xba35edf7195e4745, 0x9cc3e43e69f1da5a }, { 0xb2542e979ddc2f8b, 0xebd31e1f88b8a382, 0xee8ebd049c0d3c40, 0x3d5e58ed20d32ba9, 0x28176a94dc04aa92, 0xaa225b0589fd55a4 } }, { { 0xd17d6be317139b80, 0xf9224c9c6cfab9c4, 0x4e93adf5c7c4036e, 0x5f915a1dea92115, 0x32f0709f929d2537, 0x19c57b47c2f4b815 }, { 0xa73547d049b04dc7, 0x52cf6dfd8ac639e2, 0x8846b79e3df9e2bd, 0x1ca42bd22093a72, 0x3a962768ebe6f5b8, 0xb0a161ec06aab71f }, { 0x5dcc953d4fadbab2, 0xbcf54112c8cdc7e8, 0xa8d2479c61677fa8, 0x89c501f19a2d7a56, 0x8c29d52ccfaaa202, 0x26c587c28a7c0053 } }, { { 0x8e83c06030b07aa2, 0x7835729e946878d4, 0x9c4d8e11da6e7405, 0x972849ab1c385431, 0xd4e37405ebe3e802, 0x1717edbe53b47787 }, { 0xf7ef6e74b8cf2195, 0x31aadb1d40bfa430, 0xb394815852612991, 0x2b4e937b03708155, 0x7b5fde74d577c638, 0x95a2c8cf79cedba5 }, { 0x8458b6676720f3f7, 0x1f21e66f79b7a84d, 0x78aac9bb4783c25b, 0xc43289fb37388afb, 0x5ee36cb1334c8ffe, 0x456a8c2b3547360a } }, { { 0x73ba8f116e88c73, 0xd88e166624c63653, 0x6541a85afe28213f, 0x1df76fe326465841, 0x5bbc4a2902ccf261, 0xa7708fb646f6859d }, { 0x3f6f5436c2b57c89, 0xb6ba5cdc26a2dd18, 0x429f60c3020e8510, 0x55cc8863612690a1, 0x236429a5ca3b6996, 0xe65fe8abd829f684 }, { 0xdd66199fb0133d3c, 0x72597d77c21cc04e, 0x29fe7b0e68908c7c, 0x9212347140bba68b, 0xa0b296121280b5e3, 0xa4ccef09b5fc639d } }, { { 0x8e94a9e7b5f0829a, 0x74558ae8d7ba0f5b, 0x6b2b4ca38138b276, 0xea4d3a5ebde3e806, 0x58affe98f1d4788a, 0x9aeb62a21a10cf9 }, { 0xf700ea966210ccc2, 0xd016f70613a8c817, 0x474ec4287fd3ba4c, 0xc344a65a5494630d, 0x4772f157192e455c, 0x2bcafbf7b0f481cc }, { 0x52f1aab96f188447, 0xaeed0e95db277b0b, 0x9864c828ff6ff877, 0xa976b0aa2d133f44, 0x614145ee387a7b3c, 0x7436303d9fa751b3 } }, { { 0x3e42a5301993086b, 0x913ece8cd8eea38e, 0x416ad66fc9f4f2bf, 0xe28fff8b982f061c, 0x3aaa369a9366ca60, 0x2260f932d4122355 }, { 0xf5df7acd86725a06, 0xf98d2beccd14c4bd, 0x2cde94355926992d, 0xae35f366e7cefe6f, 0xb6f3b2ce450c5d82, 0x2224758d4b9bc15c }, { 0xb1f0abf806f9c780, 0xaebf0f7d0a1d97ef, 0xf98455d1c64f2964, 0xe9e915155ff34967, 0xf08a4a98f6dcf70b, 0x668584c2cb6948ac } }, { { 0x8ff663fe85304a5f, 0xe7b673075a05ebc1, 0x57d3f878a1b38de6, 0x3600f4f7df5c49c, 0x7aa7d4b4fa6b22f9, 0x517e2ef8209ff28e }, { 0x2251fd2aef2886ce, 0xc203888b1529f32e, 0x52e93d8eaa5c9990, 0xd3fc4eef1ffb03a6, 0x54b561dd8ab32aaf, 0xf4cbb001795eafe4 }, { 0xf2eb1bf1d5aa5815, 0x417d9359ebfada0c, 0x9f95a8d5d0b0e2c4, 0x3b3f524d2cd9a073, 0xdfe608ea0c8c7e14, 0x90a0920dde18c2a3 } }, { { 0x4090bf3cb19d8d8b, 0x620aab258b800403, 0xa7ad97e9b74bcd1a, 0xb434377184566c1c, 0x1595428cd35ec7c7, 0x9909809133e8c4c5 }, { 0x4a6cfd3e56b3e4d7, 0xacab72141b695e64, 0x7638a0abf431faf6, 0xc02632023195b1b0, 0x3aeb7c62c96ad530, 0xb19e25d03451fb73 }, { 0xe50e3f91b51cc0fa, 0x20d4c368fd8ecb95, 0x12455cff6f5513a5, 0xccb1d146c84e0444, 0x4398fd1a9d3fc9e7, 0xf35308734213f996 } }, { { 0xb23fa2d21efd2426, 0x24c27a06e0c0ac2e, 0xe354b3c3b33de56c, 0x945b807c11710c0c, 0x466217cba59b13f8, 0x001170e234c099 }, { 0xb36e8c695cb1d6ec, 0xebfea0041ae0499a, 0xbbc0935ae229821f, 0x5869aee0c112fc4e, 0x49729e1d80414fe5, 0xdfcc086a3d415490 }, { 0xd787c8070f9bcce4, 0xe38101c9bf78b356, 0x550ebe219e64ec3d, 0xc7b99719b27d8149, 0x16709281e55b5a84, 0x370bae03c52da155 } }, { { 0x345313699566c6e3, 0xca43184c1c083393, 0x7fa14335ccaf3416, 0xa1c586e493fc696d, 0x6306cd8bbfb69962, 0xcd4b2f0be8f26665 }, { 0x25f1a6c92b228e09, 0x5d4780b1cf7ca3d9, 0x9e8bd45764908397, 0xc9083892485b98c0, 0xbc14a6d2f34e804e, 0x96f381ed4c7b194c }, { 0x795f88cde83dd88c, 0xa10461cd410a2f9, 0xafde835ebe254507, 0x94164b129b581b31, 0x94e9128842c5d32a, 0x2eb72ef185e3d8ea } }, { { 0x4e880e72af2667d8, 0x420d2561cc3b0c4e, 0x590a753fdc4516b, 0x14435aeabb88ecf7, 0x6a8cbdeda1b22386, 0x68d8f72e4f00bfcf }, { 0x3c010831a07b9fab, 0xe5346cef1ede50ce, 0xaacf34d1706855bd, 0x9c8573fe115aa23e, 0xcc9930317c3fd7ee, 0xe7b32e55351159fe }, { 0x8d8813900e73ac60, 0x4a5b08b03ab73b3d, 0xa07288a9f07ed54, 0x6e7686a1df7cba65, 0x62b02ff19255b49e, 0x6ee8f762dc21eda3 } }, { { 0x275128a66f17fc9c, 0xe9eea8c7f6be4d87, 0x77460b7a4a90908, 0x2b80c07987254e4f, 0x5a493d820870bc7d, 0x8553966b4e3c6d04 }, { 0x6733325906539000, 0x1e79e83d56640dc6, 0xc9a2a3c4713dba9, 0x8a49ce2d9c24b3b7, 0xcae1a666edcf81ef, 0xb33aacfe096b2a44 }, { 0x17804a6646419132, 0xdadfd0d859ecd62b, 0xce932f44982df41c, 0x68564fda61b53c9b, 0xe2b8100b3c20d72f, 0x1b2bd1eade6df676 } } }, { { { 0x559118df398a9226, 0x26471f54347ee2ef, 0x8f7af3778ce404c9, 0x4cc5668e4f61b76a, 0x7eca35b16e602f67, 0xaf37d89e09e14ef4 }, { 0x32e7ac13a3cdf35d, 0x425642b0c94a4ab2, 0xa500217d49321f8b, 0x12f4c9ee27dceff5, 0xf15367cc5b1045d4, 0x2e52d10c2e795be2 }, { 0x1971414caf2d61fb, 0xe8e8ee59d0273067, 0x3f6a861d379c033a, 0x88775edf539460b8, 0xa7123fc0a56b91b5, 0xf25dfab61227652b } }, { { 0xc011b90f86d9ca09, 0x1f8f80107e443802, 0xd995c57a883cee4f, 0x96641eb2de04bf37, 0xf9ad3a279fa5dcb5, 0x92e7037abc10f11f }, { 0xea80ab5797f1ae77, 0xa663bc3ef46ecfa6, 0x48b76b6550e49d, 0xa9d9b8db5ed718a2, 0x53150fa7454316a, 0xab392da30f4f5c62 }, { 0xcd77c0981e84f9ed, 0x5888f6644134ebf0, 0xe78f5fbc82ad082f, 0x81152bee36a39361, 0xa5f22f8919227961, 0x5f9b803179194834 } }, { { 0x79a28e0bf057d731, 0xab4a81bf4b370940, 0x14ec753441ec8907, 0xc6764cc480369faf, 0x7d50e7c8d705480, 0xdc9db77e650f2739 }, { 0x21ceb28d236d4b2a, 0x24ed9dbe03537eaa, 0xbb87d93c10249511, 0xe78747d176b38e50, 0xc3ace72ce68a0c2e, 0xef5092ed4a273032 }, { 0xf001ac4dfd37ad79, 0x6a77dcbdc6e18291, 0xe29b98103813accc, 0x5d03f0e2926621d9, 0xa05a2333da9b7696, 0x6b497f407f70e582 } }, { { 0x767d85cc58eac44d, 0xf015406de43726b6, 0xc6e1ea5aed157453, 0x86e6a3f9118a16aa, 0x588b2a5735a81578, 0x7b9ea74929f74fc9 }, { 0xab973306ef870905, 0x959accce0dac14c4, 0x122201a57e007c74, 0x4136dd00781b32ec, 0x58bd291a28e7a5ac, 0xe3c4a12861fdc30f }, { 0x18061b81fc304de, 0x3509e3251ee8b542, 0x37d489009b14d493, 0xb5e7bbacbd03e62d, 0xd168317eecf6d7c9, 0xc0ec6d70c2016df } }, { { 0xa1c06905095abe20, 0xdf22c4ccd167bd2e, 0xfdc18aeff3ebaafb, 0xe029be3313e14b65, 0x694d2c842f11044c, 0xb19014988374a611 }, { 0x725d4ddbd46a0433, 0x5b48af5c6d7651d, 0x6a9fb37aa183238d, 0x85914a9abb85131c, 0xee44c9387e6c71f5, 0x23b88f24d4e814c }, { 0x905d9315f9d4c7b7, 0xf12b102fadbacdbb, 0xa5f35ed49ac74e1d, 0xb0b2bc6a0502487d, 0x9879d5f977dcc78, 0xb71ef1007394b3f9 } }, { { 0x8865b84f6c251814, 0xfbb702aa88144057, 0x5ece43f9a94ec547, 0x78a34ee570a9efe6, 0x1cb4574dd39b827b, 0x3f10372a3df3a92f }, { 0xed829082127722ba, 0x42fc65a9f0c3d173, 0xbf8cb1b100fde211, 0x3dd236dfb283d69a, 0x915e192fa8710e62, 0x3106c842241d8c1e }, { 0x2da0508f69983c1e, 0x3d24900e0bdcb018, 0x33f093805e9b4e91, 0xc474f73ff08efedd, 0x882fed3ca020940d, 0x3c1128fc5ef6ad82 } }, { { 0x51f03f24792ade7c, 0xf66d819671412748, 0x83d53e9708a50481, 0x90b7f76bc366992, 0x16737b8e73e3f28b, 0xce13b30fc280826c }, { 0x6a840f0430fd259c, 0xc5933f97f7f2d2b9, 0x66b763db498c987c, 0xb73d2d1ee74d8010, 0x784444946c41efeb, 0x8c613846cc9a117e }, { 0xc1a326c41f76a583, 0x2995c4f9a5333b34, 0xceeb41ec9e45f4e3, 0xc8b82bf6df64c6b8, 0xf4b92d8612c25e1c, 0xd5b49b2411dbd474 } }, { { 0x6c874b35c969462, 0x5f0f131a414481e1, 0xebbaf95efc76707d, 0xad9083e0b50ee550, 0x1e47937e83d82409, 0x25806ea16ac48af3 }, { 0x88887c3122fb74c4, 0xd9d68e67cedd2d16, 0xf9ef90c2a561160a, 0x2ec03c3dcb440f19, 0x2d833c8920dc604d, 0x1ad9f9366f50af2e }, { 0x459decefc4d4433f, 0x58e64b6695be417b, 0xc5a48f8a28e2df8f, 0xb4debd9f35701f58, 0x8955b6ac7a471b5a, 0xea7e189497f8d35a } }, { { 0x32dec04d492f34d7, 0x9bb8f5559d317566, 0xf36248609472162d, 0x48661a453fe55c29, 0xb235011f4260b03a, 0xa13df98a9872e1c1 }, { 0x496b0e3ca38f4de7, 0xe58c91d6c4ecfa6d, 0x3a5792287556df12, 0x522548152e28cca3, 0x7f2111d1229fb48, 0x7acc12057bf5c212 }, { 0x9cf29fc3cd74ec9d, 0xc65ddee034f3523, 0x882c8346deda7568, 0x2508e98cd4be0314, 0x40ab3148ce265aca, 0x2b1eab1c05122aa2 } }, { { 0x3348c69326e1ae43, 0x09cad86db7cc36, 0xe07d04ccc8e639bf, 0xf4a0cca7bbbaefda, 0xf62162e874d5239e, 0xa75f250cc3417bd9 }, { 0x66fdd2aacad181d2, 0x660679cef88b45a5, 0xa48804cb7986551d, 0xcf41b825331c0e13, 0x71362a1618bb6ba3, 0x66f4cc847c3e729e }, { 0x16a00aacde763a15, 0x42140abeccc8d3c5, 0x24f7f37d37856137, 0xb958ede5fa091c7, 0xaf329afe62ba9a60, 0xcb552cd980c9133c } }, { { 0x1baee3591dd15e6b, 0xb67e73e509d08248, 0x2c9b7e55f4bd8a9, 0x4cd7821821f3026a, 0x3787ab59393c21ef, 0xd9fa471017655408 }, { 0x49e133f817b1c4c2, 0xb10d88b375beb734, 0xc30ade85c6e6d012, 0x4f744710784a02df, 0x15e5f36690757eab, 0xad83ed8711dd8b2d }, { 0x9ec5383a84fe4058, 0xdb7bc77a8e0c7d69, 0x1e085703c4da2c8d, 0xa988fdf5912e350c, 0xa8af924f9cd15c3e, 0xa78b142ff0e7b18c } }, { { 0xb8133e0f874ab5eb, 0x8de78896883b2bfc, 0xbc7bc6b8959328d8, 0xd07be0609946e2b8, 0x826e6c4fd5a452e9, 0x45a6fd083e4fe37f }, { 0xef86420933f289b9, 0x23e493be87b59832, 0x9082c742f36979e5, 0xd254624fa69bf1d4, 0x13af474e4e5a9dc7, 0xf8847731c8c15785 }, { 0xc569bdf6bebce8cb, 0x12d179574f4dd4d6, 0x970c3bb44b4daa30, 0x7d143455d6e4a40b, 0x581dfb0d72632de1, 0x1a839588bbcdfa2e } }, { { 0xb739a8358b1c88cc, 0x7957fc2185c4575d, 0xd75ac8c732a6b77e, 0xb1356f64834c990a, 0xe20fd78afa8b8bd4, 0x80a0323bf6f7db7 }, { 0x6d1736946ac36d2d, 0x21caa1412d1f78a, 0xc806e0144b442f58, 0xe1d8a142cf2cb47b, 0x7882582c5cac5d5a, 0xf21955ce41262626 }, { 0xf76e5b9bc5a775f0, 0x9fd54b509e481be2, 0xe171910acd7d3207, 0xe08e2f4dbf119289, 0xafb3b584133ac23, 0x894f5669d220226 } }, { { 0x1f38d450ee943b0a, 0xece2eb9bd724148b, 0xb7aff56a132aec29, 0xf33db7d1ab261db9, 0x520954e6084ab241, 0xdcddfb6de6d4c292 }, { 0x8868052e73fbcfb5, 0x9c86a5fc64a879a9, 0xc2e6772a68a50042, 0xdc5900fa8bddaf5d, 0xee61c0a12b990a4c, 0x8bd882fded71c2ba }, { 0x4809266cdcbca1bb, 0x5a8c7ae4a36f22ab, 0xaaf41d6f9e050f65, 0x75381b2951687822, 0xbc1c4b3af421ffe5, 0xaa113e8bf1e3a119 } }, { { 0xdbf4011534424395, 0xb76e7559b0606b12, 0x76ce2b2ca50692a0, 0xaf46349c8bfbebba, 0x59cc96f53d042d3f, 0xaee9f1fa245e51e4 }, { 0x1326573467344f2e, 0xa31ecda55a64d869, 0x1f191bddc767e1db, 0xd27f4cdf11b32228, 0xcf7218ed8129e371, 0xb6549c45f402f07d }, { 0x8b264f00a2ccd370, 0xdd5e60fc7695d72b, 0xa065554152f227e6, 0xf5010114a11ca7e3, 0xeea331dd5ff6006b, 0xafe561c463847f0f } } }, { { { 0x271e5d7ad50ac9ec, 0x9edfab11aed36897, 0x8e0302462df7e434, 0xc531f162bb06cf6a, 0x6911710550021fb1, 0xa96426f0712bf33d }, { 0x9724af2f657381d9, 0x263ffc9dee01901e, 0xea253f358980d8a3, 0xa4feb44a3d913e7, 0x61cea9328e4dfabf, 0xab066028944ae77 }, { 0xfe4f40b05a60c336, 0x2b1fdeffc7322c6, 0xbc16069721e146f3, 0xfce065ee882653d5, 0xbefef8f5ab19c871, 0x6e66d081bc2c2a49 } }, { { 0x71331e4fe91131ee, 0x91f368cada712d6d, 0x3ecd4c4b49f6a3a2, 0x1a165ac56ff68ca, 0x18fd01ef2da125ad, 0x858e512e6b0eacfc }, { 0xd11126d7169a01c, 0xc4caf8374d080fa7, 0x66aaae603cf07a40, 0xb067dc0bddd3cea5, 0x78bc8b600792d0c8, 0xe88e3988827e597e }, { 0xeecf0c5ba29a9165, 0x6da13d1878d48490, 0xd476c0e9273529d8, 0xe6a4d9add685bd10, 0xd8bb73b4ca3aabe3, 0x641d3a1442074b68 } }, { { 0x4db4f925b8a27055, 0xe899acc64fc12fb6, 0x8c8867987f9f6965, 0x9ac314e3707682d1, 0xdbef14b2e4235de1, 0xbc5bf1106b2c26dc }, { 0x8df548b963af7d31, 0x8d02965b9ec3e660, 0x3446dff20fe3892e, 0xb3c18633e1dd9a33, 0xd01c999e0472c5ae, 0x9ca987f658e316f6 }, { 0x52304c9aab6fd796, 0x1260d2a8dc1a9f99, 0xb53e6261903b87d7, 0x18cdaa1d4005380d, 0x9b79843850bdbf8c, 0x95853c91cce51684 } }, { { 0xc49dea743859d547, 0xbcbcbbf637ad2117, 0xbc3527ef095ccc7b, 0xb0688653660da835, 0xd5173cb3ae459b55, 0x55ce17be270b87fd }, { 0xfe5e8cd2f3ccd214, 0xc4b928057ec9c0f0, 0x95909bd932b22d88, 0xfd043f527eb8b5fd, 0x5499a05da3d1d2ff, 0x25bc90eb453f4f4f }, { 0x419bfd8febf45edb, 0x8d32ae5dd4f4b338, 0x9dbf80a6942b9683, 0xa140c1ceb5f7d2a6, 0x5316b16c8d1498f5, 0xefce33cc2ab21356 } }, { { 0x3af19b9e93a14979, 0xe55016c8aca52a80, 0x103d228352cb04ce, 0x35b4477705db6e3a, 0x825e4e5e9f049541, 0x90ee839bd369fe56 }, { 0x97f5561e1dc3d704, 0xe5f35dfc210b6c10, 0x597145248648094e, 0xd34e475b44c9ab61, 0x8b416a5d66f758a0, 0x21f9d390b81cb852 }, { 0xa5ac46e49579c78b, 0xdefb98d7898d9027, 0xfa866ffbe4141bc6, 0x1103d7e7bd2a110f, 0xd283a37f0aadca14, 0x130b20e39ef71b78 } }, { { 0xab82a5ed7cb6b4fc, 0x502733ae9d4e0981, 0x5c6e5a9e8087e06d, 0x66a0310c18c4688a, 0x468b9bd20ac45f12, 0xd58bec04083c8a66 }, { 0xb579d2c39dd538b4, 0x82591b1e20adf38f, 0xdc4e2f6fb98ff5dc, 0xab9648a66d6a0776, 0xb815f4c6966e77bf, 0x9ee0001a4d544246 }, { 0x18a587a69fbdcfb4, 0x774a57f60c17ca8a, 0x20c193907f02ab75, 0x1f5af5338bbc324a, 0xda3f7c9449d44b22, 0x6dc1dba62748a290 } }, { { 0x486f43d19d8bbe26, 0x2178eff1233179c5, 0x6c5612fc76d60323, 0x4af89e6b15758daa, 0x6929fda742856e4f, 0x2e79a6a0f99d318d }, { 0xe1d7fde6a7ad8950, 0x13c8c21bf8853607, 0x9ff730b2b55a3801, 0x2d76e76772fba284, 0x655e99649af92223, 0xe7b1ff5e762ad035 }, { 0x69f0404ef7adb9dc, 0xd0d09bf1245057db, 0xb4ab8022e5a4cc6c, 0x22bee9fe7a62041d, 0xc7517e522a993ed2, 0x5a05c93e9bc3bc2d } }, { { 0x2439724b2dfaf2b1, 0x12724eefca99f702, 0xe6d252829c3934f, 0x59cd8cd556a7f904, 0x796252acd4d8758e, 0x2568cf4a258c5171 }, { 0xa367692af826f835, 0x234fa651d8bb03c, 0x65f499b1ba3c8315, 0x41080c8638f60bd4, 0x57d18040de327c1f, 0x8c576707a213e0d }, { 0x7ae933fc51efa545, 0xafd32a766f37cfdf, 0xeedfacbc7c3bf6bc, 0x61cfc2285dc8a2f4, 0x6c1e7ea9163e5242, 0x3747452afa554fa } }, { { 0x750231c125e39970, 0x1fe33c69fcdd2d26, 0x20281fe2fa9fef3d, 0x209f84ae50725b9c, 0xb188bb28b8254775, 0x13df92746fa30abe }, { 0x584500344cac2876, 0x9dcec21a7a27f8f2, 0x34567663dafa5ae1, 0xce1d9880210802b8, 0xe064639b3e98d293, 0x32baf6ec07e1f8d1 }, { 0x7e33237ca94f310c, 0x59b3ede5d5e2f809, 0x1337b9338ef454ed, 0x22ae977f45b4d0fe, 0xb04a9214d7a9156, 0xba5d4dcab6dc08c } }, { { 0xb13b512f006a0134, 0x9dbf5e68dec7e875, 0xbca48082401ac52a, 0x575f5f9c302aa4c9, 0x59a32bc7109330a1, 0x6ca9bae9af22a377 }, { 0x532f5a370c434946, 0x5825cba68b3efa55, 0xa74e09b6dcddc754, 0xe1375d21cb6f86ed, 0xcc32ec591ba99171, 0xb60dc3e0de3960d0 }, { 0x8b33db2d770cfc6f, 0x202976f52b96a974, 0x65895dec23e105ef, 0x46158f8358a02abf, 0x5e259a6accf8779e, 0x6d652f72952538a9 } }, { { 0x3bf162b454b7add3, 0x948e27abcf093501, 0xfabfb11e0df634bd, 0xdf3882b8871cd1df, 0x69be366a3d40ab3b, 0x72cc2853b039b8cd }, { 0x97d8d62d1d98342b, 0x8915c2e0e3f55cdc, 0x4b8e863a35e3e040, 0xebae7d224c313d86, 0x5551ea2d5fed4bb9, 0x529beb3fc6645fb2 }, { 0xf0442ea482767fec, 0x59550854dcff55b6, 0x8f35e0f7ab99fcec, 0x1bdcdcd6f0e2365c, 0x42bf872363efb82f, 0x1de8b1d2fd0c25e1 } }, { { 0x531588a5eb142bc3, 0xb2419e7e9e4a0597, 0xe2a91c0f2be9e6ee, 0xb679e2860fbfa7e8, 0x94d4918eee0b6cc8, 0xff91a1fe3a612680 }, { 0xe4587b2a237f0c70, 0x53fbefe3ebeab3db, 0xe8ba84bfa6f08a25, 0x96f12b18f9a932fc, 0x87dfe2ec2fbf7a66, 0x9e9edb2dd0aff3b7 }, { 0x4635657ddd6a5430, 0x8573cefec396c6f9, 0x8722178b6094e1f0, 0xca4d3ad4de89cad8, 0x3d36b935e436a2a5, 0x8fed1a5676f110c9 } }, { { 0xb8d31cdee82a9421, 0xb0ce26b5fc4cd742, 0x38d1144f266e4049, 0x19f9a0b5fa66794e, 0x4fed8c766948777d, 0xce597ed1d8708931 }, { 0xdf8d059783ca5990, 0x194c3c0c18ca31b6, 0xa3772f8620933b86, 0x2500d4fc2634a870, 0x7d668e36605f67d4, 0x35896d2ab239b261 }, { 0x3c20a980696c804e, 0x9160c2806eecaec6, 0xf788c9fb7a830554, 0x3ee3484179a0505d, 0x41bba7cedfa73075, 0xfc64f0eca6efc972 } }, { { 0xe9f6c6845e72bd9c, 0x68c2efe409b6cc92, 0xe8f3e098bf141c98, 0x77334bbf36ee7d81, 0xe4e28adedcf78bb9, 0x375368c86374e176 }, { 0x71f8c562b88782e8, 0xcc0c043887d514e4, 0xec5b32f0881fd7d8, 0xfcd155ee917e14f3, 0x6cc2ab1ca1e84734, 0xf5a685eba273a3b6 }, { 0x29fb0da0d5e9188e, 0x4e0b64e7211ba05b, 0xad2319cf009e3963, 0x14820c57ba126895, 0x6925bda186f9de8e, 0x6f8c803be4119707 } }, { { 0xd7e1625a97eb57a4, 0xf5c2d4a540298bdc, 0x36d7f4bb3deb8252, 0x48fe2274fb8c2c54, 0xd8ca64bdd0b749fb, 0x94c09a9f0ae1aa81 }, { 0x934636430a96ddb8, 0xec73e153f6d79448, 0xb6d339c2094f560a, 0xdbd9a039553ee677, 0x715a5e3b1a9e6679, 0x32f2bd42801fa430 }, { 0xf8e6dfe9f90f84d6, 0x8dc23f015550de30, 0xb2ca14a48e3e333b, 0x887a0fa29614a39c, 0x65955eeb4436e05d, 0x4deb338be7d401ee } } }, { { { 0x7d75545dca5fe2cc, 0x7bcb7454b836920c, 0xd98336c04b781dbc, 0x373b35e4f902c6b, 0xbc69dfd05b485eab, 0x7f807743051bf055 }, { 0xd44c08a11c1e80e2, 0xa8da1050902074f7, 0x2b44359c24e4c00d, 0x27cc0bff6f27860f, 0x737260c857832bfa, 0x6348b052197c7f8e }, { 0x4f6901f8e007c6a5, 0x3b79801ad91baae1, 0x39ab03fc07711484, 0x97628b1b7f0ecc96, 0xe90b4a9af1423cca, 0x46bee2e889a04ad3 } }, { { 0x4c61a230b5ed0d2, 0xab9591e8584c4a35, 0x2dab1ad4087b277f, 0xd753414b7030fc2e, 0x28f0afa5e776e41, 0xf4e9ed4c256faba4 }, { 0xdb89cb0b26156633, 0x45c8006d80790d24, 0x96179fce1970c038, 0x811594bdfeba5b0d, 0x73f4f770fd9a374d, 0x2d3af1b94ed05bc6 }, { 0xff5e9cb8e07aece9, 0x6c48ea09407f6098, 0xdc8de262a8342e57, 0x75dc7367792b5050, 0xd0d45044f71fa360, 0xeaa9e30293ac78f3 } }, { { 0xa07041e3799d1098, 0x1ccbb02401831068, 0xedfcf5b4c803f7a3, 0x154a719320462b60, 0xee7ca7b460cb0ee6, 0x27aeadba1721df20 }, { 0x4f4c20562fecae15, 0xc7c576b1c8015f99, 0xc9341ef364c87bda, 0xc303b2b20f9db3e, 0x3fba04bd197222be, 0xb02baebe43cde8f3 }, { 0xb6e6bcd8b3ea4ee5, 0x74ba6ff8e16db540, 0xe4b9b79b62d84bda, 0xeeb0bbdd2ac0e633, 0xc6df01a73ddf39e4, 0xa9b86736816a5f4d } }, { { 0x88c92e0466f9c46f, 0xc695a9c461c6fa9c, 0x814ab5eeb8884e9b, 0x175c5db82d70023a, 0xbf2bf13871064a91, 0x10e1ce6a5c8b4926 }, { 0x9defae91d6f884fc, 0xd86ae8ae9fc21fc6, 0x2f2f7a7b782f912f, 0x64461f37a2ee9cf6, 0xedbafdddf8c5282c, 0x9660b73e92a583c }, { 0x6d70b9d27a5b293e, 0x7a410c227904fc57, 0x67395e62f1ce9d2c, 0x827e6ceadb4c5671, 0x8c71d222474cdd27, 0x7068844f0d3b74b5 } }, { { 0x372cc417e61338f7, 0xf7b05ffb6a83115e, 0x4220ac5a48edcfda, 0x8afd90024a620ad6, 0xda74aebfae3f95e5, 0xc83083a58545bdd2 }, { 0x4fc846573bd985d2, 0xa1e65901e921e18f, 0x5077d4f4c23019cb, 0xd8d60a4b492d7db4, 0x6e13bb29756ec48d, 0xe255cfa69459c137 }, { 0x9a68caf5fb253fcb, 0x729211bebb4063af, 0x4ee7eb68b47b3c9c, 0xfb67ed3fb87c0a4f, 0x66694fcc678dd750, 0x8640ed56dc195181 } }, { { 0x1777689649c8053e, 0xc584dfb0592db172, 0x4d9fe7bbb9031620, 0xa87e39312aea062a, 0x7a5e236dc70fb701, 0xd685903462c2cd67 }, { 0x59dc56af677f6087, 0x6fa5479b008a9267, 0x311713681867dbf6, 0x8b656666446e1c3e, 0x3968aa3319932af2, 0x695e072c3b7c19c5 }, { 0x73a88cc035df9d20, 0xdced8151f2e51599, 0x140a02ee650a4d97, 0xf57bf29d7c83356b, 0x2ec58f7be906e642, 0x91b4ce19626d1835 } }, { { 0x714e2a8e3752a723, 0x78282ea1e5f85dc0, 0x465d2eeab4b4118c, 0x31e34b75534aeaf1, 0xa966be3a31214c57, 0x125332ddae31a766 }, { 0x4d2d4c32b610660a, 0xee5b2a89199c8b05, 0x1030a071acc90b44, 0x2db5150f7f893168, 0x8b7e3bdaf29bdd42, 0x347547c7a85411f6 }, { 0x1480083577481a60, 0xc8b615258f610a93, 0xbe93bf775da25c81, 0x7cd1369e0e9cdc39, 0x4618f8738f1b1f86, 0xc3e7f0b5edf455da } }, { { 0x6193dc3f17ac7282, 0xcfe63b502f5ee219, 0x448bca02ca14b9e8, 0x25f135dfe37ac8ca, 0x23e0b3430349798, 0x5ef83fe22574e71b }, { 0x93398c94c93ca6e8, 0xe36acfb8378527bc, 0x8dbed925c8bcf32, 0x1db87301de73dcc6, 0x79f2d6fa2ec2bfed, 0xc1b28b45a07010bf }, { 0x43d2aede2604e954, 0x5149fc50a257bf82, 0x9873fdb9887646f, 0x83c6cde9933be0e2, 0xbdf731491773f12b, 0xafa15e0e7ea2ec20 } }, { { 0xed59385972c7d0f1, 0x20f9f430dcb4c448, 0x498436be06757e45, 0x36660fab4d032f09, 0xe22a0bedba524d1e, 0xcc2e7e5a09024e70 }, { 0xfecbcdeb659ad222, 0x26c9e0cbd1bf1ad3, 0xb09b934f78d5ab28, 0x5842b408977f9e99, 0x1081275fd0c4bcc6, 0x3cc6fff63754c3a8 }, { 0x2e3fd2aa121ca471, 0x211298f084b28230, 0x3e31a3fec214cb38, 0xcc8e6c62b956a18e, 0x9ecf73763a612752, 0x1744a6141dd6c233 } }, { { 0x966c0f318e2d345e, 0xa2eb42e231521a4e, 0x80bb11447f8367d5, 0x702b2b4516e86eb2, 0xa941d23f9a123aa8, 0x9cb419667a1904f1 }, { 0x9207d19693983b17, 0x221dbe6d918caa94, 0x2aecd9de42882712, 0xfe0d3da8555228d9, 0xed7a3c724f434455, 0xa409bb02eedcaad7 }, { 0x40c1310f11ee00f0, 0xf64cfe531167b481, 0x433bd29e87b411f9, 0x1c90baa6a380dda4, 0xb13cf8722ff04f0b, 0x5b41a471e9aaa6c1 } }, { { 0xbac2fe75b45f8d7b, 0x34bb2a9bc4649e24, 0x63f3a0adfcf0097b, 0xd5bfaef007a6ce33, 0xe3ac641b55ada596, 0x4e8a457cc6a18fe9 }, { 0xb4cb828986f43fa5, 0xbbc97275c123f67f, 0x769613f709d0549e, 0x96f8477027078c1b, 0xb3290590a789dd0e, 0x78b316919d9ee5f4 }, { 0x79954e1a8a475120, 0xbb85bb1d4fecc9ed, 0x7367ee836ff0a02a, 0x13ffbc0c00b868a2, 0x16e94e59f79672fe, 0x614ca552ac742dab } }, { { 0x6a288407ff0a2eea, 0x31b8bfab9175755a, 0xb01ec2d0e1932ff, 0x55190798681c845e, 0x560950d0f18b3cf6, 0xb0c0235b00353d2d }, { 0x35d859e968e469c9, 0x2b5b6096eb69937e, 0x3a8801fc0d618d9e, 0xe3a528bb44336ad, 0x758a390228275487, 0xf2fb064a1dcc2121 }, { 0xab7b710076c4c67e, 0x4d325d5ef150e877, 0xce21a93cd100ebe3, 0x7af79e3d099efb73, 0xfc96f0ffd6abcfcf, 0xb4cc3d5d5452eb03 } }, { { 0x82ddb350a5265da8, 0x40cc755738ba6012, 0x8ac690059063ffe2, 0xab20177086b7859d, 0x57a84a428c77cba3, 0x1f24651d741daecf }, { 0x8dc03884db01d236, 0xb0cf3452386b629d, 0xa018fa9a0b528c93, 0xa09ff32e72510458, 0xce70f4a48e7fa41, 0x731c03e332531add }, { 0xbdeab1bce3eb330e, 0x203cd59c137b8c63, 0x5a5ff36e570bf6cb, 0x20d4b93a25d78a22, 0x876735b35d306da4, 0x80211bbbcabf6fc9 } }, { { 0xf165ca87f1332998, 0x27ab151c54960f6c, 0x8939acb4a50ffc94, 0x8873f109d350049d, 0x17eab9707ef465c7, 0x69b848206e653b31 }, { 0xd2632981cdea0b1a, 0xe059b4a6cf6ad088, 0xeea3e850470926f8, 0x15ac805c618b3eb3, 0xe2a9e269dacf4ab9, 0xdf53ffb0fd6f43f5 }, { 0xa58b75a6148b83bd, 0x6d65353c53d6f74e, 0x165147b40468f8fb, 0xfa8f3d878b3f2f4f, 0x7d7ac74a2e4cf871, 0xb7edb64987bb4b0a } }, { { 0x180ef02306149399, 0x6355afada911e054, 0xfa76ae57bf747f1c, 0xbfcff5067f66e164, 0xdfd63197e08172f1, 0xe57d837e10977e2e }, { 0xa5ac313608fdcac7, 0x136688b2bf71bcec, 0xf6dae16b0a14bd81, 0xd0d4efaa9f876287, 0xc5c2acd181b69a0a, 0xee43990cb9819024 }, { 0x64bbd0b844452241, 0x32061eb13aab7be5, 0xedca0f4c96ca23b7, 0xec84ad55de823865, 0x900ff3fde3b4bc69, 0xca6e5e8b6843a4cf } } }, { { { 0xf80c1a7d4caf30b8, 0x1babd268e341a09f, 0x2bd5e5a87477e01b, 0xbba20d6eded04a19, 0xc023e155cdf0edcb, 0xffbe9f1eb7540a93 }, { 0x902504f3ff71a299, 0xf64d2a5f833475d0, 0x8591901ab9b14d83, 0xb73f4788b9890d82, 0xdeba7fe9209fc553, 0xb678be9d33e77658 }, { 0xcc3d695c9a2da5a9, 0x2935d09efe3f0fbe, 0x1072f1e4fd6500b2, 0xaa2624d40ed349, 0x2391fbc5b2c6bca7, 0xdf7626f618654bbd } }, { { 0x250636a24b39f88f, 0x7122552c0083aded, 0xbcde738507bdbcf8, 0x19392ac89ee5457e, 0x4aa34b9671ad25eb, 0xa282a38cff829373 }, { 0x26f9e9bd9f1a83c8, 0x9c73d32555c5b9d4, 0xd370c4d088151819, 0x6874f5a166c96954, 0x5c4685b495a71998, 0x3afcc54172d7174 }, { 0x1e2b8d8a5f4c79fd, 0x2657271a4d7da30b, 0xbaa07b98218c3bc2, 0xa60fd65873a4a224, 0xb80aeb72c7de852f, 0x8e6a889144c3fa0 } }, { { 0x215900e6ad4b6966, 0x73184e654e12ca0c, 0x4615d7cd7b7123ec, 0xe81a5f11c0a20f35, 0xcb7c9e1922cdbce6, 0x3112fbf50eaf1474 }, { 0xe63a3239afa8845f, 0x1a127477987c63ed, 0xfd3f801dde8d329f, 0xe0321750a0516d84, 0x62e7c5f96922766e, 0x4c697bb9d86e6279 }, { 0x1688e0d846bfe373, 0xaf908e9beed4b8e1, 0xe3d94a1eae620c1b, 0xaa0b53dfa0274a82, 0x89b2231d5e8ffaea, 0x8e95c405bc257192 } }, { { 0xb2cef2e193038eea, 0x7a5e2aa1c806b474, 0x26902dc80da83149, 0x8e6abf631e39b1fb, 0xa110b0c2ba344ffa, 0x89e527c447bcccd6 }, { 0x239165e2dbf83330, 0x93b77ebb087234ac, 0x3757d69592e00680, 0x7f842ee9283e0441, 0x7874423de6f26c5f, 0x991a620f889a8cac }, { 0x28d1165c789b50e, 0x6fd364b10320d7aa, 0x569e4d9f224967bb, 0xa6d3f1fb1309cac1, 0x75062ec1950cd234, 0xfb76ec335e73d2ef } }, { { 0xcb39d565bec430f0, 0xe8345138007259cc, 0xea7b384ed67b9b9d, 0xaa747a578eec9c6e, 0x57d6b7dae42470b1, 0x2b29b98fc8878872 }, { 0x74effc332ff288c6, 0xf462544bca8c6e34, 0x9574f8e0de67c0f2, 0x1cdd8d410d84786, 0x9359d59017733bfb, 0x49b049caf171c4e1 }, { 0x6499d8b5e1fe587a, 0xef6ce90499c6312b, 0x77878c83b4aaa22e, 0xb694fc419f202fa1, 0x5b8233791e21eb5c, 0xbbaeada515003280 } }, { { 0x11a8bb3cce88fdda, 0xe26ab06ef65cbed6, 0x14ffea25e126f28f, 0x55eb286b4edf87f1, 0x144b4f7f72dbe93d, 0xf3560bad39d987ee }, { 0x5401444e985cc54, 0x7acb19c39271c314, 0xd6dec6df3af35359, 0xa1ea6fcb999be2e0, 0x7432e0927895bf72, 0xb3d55270fffe873f }, { 0xc46a13a7b8f9ec11, 0x64deb34cce2738e3, 0x63e4561b4a26bb5a, 0x6bcdcc2477b702e6, 0xef52ff2483ca43ee, 0xf752a16616b29c34 } }, { { 0x23bade8a9269d245, 0x5d0288b99f681f8, 0x5eb736ecb7dcfcb9, 0x13fb676cf8d9d838, 0xc0e2072781f5cf38, 0xeac44b1798708424 }, { 0x5d617852e2b7a96, 0xc0a123a276e1ca1d, 0xd3c7a0ed9d2fa3bf, 0x8e42ed3ae96efe94, 0xb3dd568e437ba21, 0x6439f9c4aa6c66c6 }, { 0xb15320bb64b3f31a, 0x31d32e7ad3bfd265, 0x77017c17decac6da, 0xa5c346a5bee67b1a, 0x66ded2c15e7b46a3, 0xb63cb4ae10341a24 } }, { { 0xdcfe996fd1bf5750, 0x1b6c142c4d41e8b7, 0x5645e69b6a1375c1, 0x3d64bc0de687bb6e, 0xa8c549017a11490d, 0x3e620112c06a9d40 }, { 0x48d91f18b3a0a26f, 0x67397babaa20868a, 0xe0689d8773210437, 0x1ccf9a6b30d1f7fa, 0x4bb221b87237272f, 0xf14ff3ae866379c8 }, { 0x925fd161a63b76a8, 0x21e18a30db629636, 0x194d59c82a045add, 0x296d527d442ec11b, 0xe4089de9251a93fa, 0xf58c79a2a3ff4fc8 } }, { { 0xa640080890fe0f0c, 0x2f7a92b4402869d9, 0xfc9b4cc6944d4946, 0x40d79999721f1c28, 0xcebfabaae229bb1, 0xd20108ef601822a1 }, { 0x8045ea565eeeb5be, 0x3c8f390cb24e14f3, 0xb3b423234c473782, 0xdc290ec1e881d0dc, 0xf8436a79179223c7, 0x76022f30bcafb4a6 }, { 0x9541fb88ac7769ca, 0x63f08ef59f0400a5, 0x9c9892f6f4293314, 0x6bfe4a9e36db5703, 0x56fe4ab722738991, 0x8401862785c8d552 } }, { { 0xd99ca3b1bf4b8092, 0x244c192b54a0270f, 0xea93db46d923bac4, 0x8e968dbfc263cbdf, 0x7f0c5cd21442e960, 0xd2848d0b569d4b6c }, { 0x8ee5a27957a36bd1, 0x2cc5a72cb923c815, 0x5693064135a1d8ee, 0xfa2c6bd87957bbf6, 0x9a5b123570fda9d3, 0xefdb263051bff98a }, { 0x74970fce5101e31f, 0xe62abeaaaa89e303, 0xaf4dd2df9f366d04, 0x47fc357225105332, 0x3699f759dcc077e1, 0x3a4b6b5c58732363 } }, { { 0x7a04b137a3ef9543, 0xe8e03bc677abf76c, 0xbf5463a2560d7f54, 0x5e95b3f10b95c1f0, 0x62a6819ac791ccec, 0x2d2e75aec5c54b3b }, { 0xb967f032d682ef06, 0x12289f04694b4657, 0x604b1093a9a7b6bc, 0x75b384b185e28aa1, 0x29139c36b3538ca3, 0x5de7ae574910af19 }, { 0x5d58a6f15977882f, 0x17d1d7c2e6b96f0f, 0xa97afceb6262929b, 0x3a07a689f1127f77, 0x53715ae1771a9b2e, 0xce1fa3bf0ec22eab } }, { { 0xca5057f3cd012362, 0x22013793facf213b, 0xe9a37be39a94c082, 0x23c33352019189a9, 0xf43545e5f1454828, 0xa598077538e1e1c7 }, { 0xa12ca365b08704db, 0x8c3f5c8c8a9eb67, 0x2d23accbbe4b6da7, 0x862a984139de693, 0x94d55d22eeaec54, 0x3364f72baeb917da }, { 0x674a09385558574c, 0x1bdf0631465e48d5, 0x7f073fa009c739b5, 0xc4632e8ff51a231d, 0x1d01e087771dd4f0, 0x9f40473f60e9a50f } }, { { 0xe7d08097820046ca, 0x79774d66ec981e52, 0xbaa4a7298d6b694a, 0x27a821f25c7a45bc, 0xd24353f7be488293, 0xff2e7531a42052de }, { 0x659a2ed5f551a0d6, 0xf8a95fccf26a8fb1, 0x3cfd0facbfb9ee87, 0x42029014b2764f7a, 0x51ea80383790075e, 0xbc83a152e58d21bc }, { 0x32a135b694acb927, 0xac6b07643ca16247, 0x5010a73ef202fb69, 0x5b9ccaeb26ed0022, 0xdd78d4023414dfb6, 0x623a0868b4be2d1b } }, { { 0x305c3fa53433075c, 0x17691118c9823f59, 0x514154ece08dd2de, 0xe6c637a1267224ee, 0xfa1239f068eea0ce, 0x87c7ddf76d183ec6 }, { 0x2bf509c6a52e7f91, 0xa794d135daa8e12e, 0x8c7893becf7e206a, 0x9cdeab7e0976fddb, 0xf42e629c350aaa16, 0x5faf1706ec38cd56 }, { 0xa83ed25d041b2ff6, 0x311f93e27f2652c5, 0xa4ccc2d2996ba43b, 0xc34d188c148b6b4, 0xc75e58879a167176, 0xaab96ea36c3fa8f6 } }, { { 0xb5299a328c3a299a, 0x44fe6f76fc8b1ede, 0xbdc6dea741e3a1fa, 0xf72b88dfef018056, 0xafc2f5c7287066b1, 0xcff9bee70d4046ad }, { 0x63e7254ec0b2407c, 0x3c30f861b3185555, 0xc4f09585a21c34fe, 0xee40375c9e51866, 0x65026ea110d55987, 0xd723f79cd77460a8 }, { 0xf7b550c29d5fd4b7, 0xb3b281b8e1fe9b10, 0xafb2138cef943360, 0x34e2824e9760dc56, 0x61f45c2b38e3a0dd, 0xe8cea2d47b4004c1 } } }, { { { 0x22697e899c117581, 0x87f4e700500f2575, 0xb1bab90a71e2ddda, 0xaa87a396baa2fb47, 0xa4bd9378b7b6e2d2, 0x87be4400915dad37 }, { 0x1d5281db7d430b91, 0x47f509f9196c1667, 0xf571d04b40273c37, 0x53864da519e09f68, 0xe4f9c9ba8829d6eb, 0xdb22f359cd7adfd0 }, { 0x32923dac6351e3d2, 0x7a42d3fcd74c7f2b, 0xde9eaff02d7eab4b, 0xfa58c77160113790, 0x6910c28f25797f04, 0x37fb8ad463b3c27a } }, { { 0x4a53e25760a6cba7, 0x8d534b81ebbe15b, 0x6947b96ff1670aba, 0xab4482fddb5980c1, 0xe8a6ebbb75c87f63, 0x6ea95a426698579d }, { 0x2ad480c23a46f6ba, 0x65a1feee50f718b5, 0x199fe764e99794cc, 0xef2bfc98f46d0785, 0x51335173cc17b8f1, 0x7ca1ff3f6299fd9c }, { 0x42f77655cb6d5f20, 0x1759bf431b49a03e, 0x18c6edaf8bed421f, 0xdc64586bfc7878c3, 0xdb921c4505b94a94, 0x5cacc2edc3e91abb } }, { { 0x5db168f610eb0100, 0x37654ce2b47053fe, 0x7f37a62a53f6f066, 0x26a1359328f897fb, 0xb260ce90df31e09c, 0xc4fc2bb1e68510c9 }, { 0x55ecec85d88a19ed, 0x220753a0d6de9b04, 0x4c55e3a53137d513, 0x555bc7f4a5aa81f4, 0xd4d168bd6031517d, 0x905ffddac5cd99f0 }, { 0x960c47a5d3255d38, 0x6a11abef8d1bf7e5, 0x58e3b2c0fcb8b657, 0xe3ca19e3fb1d73a3, 0xb6aaeb2a914822ff, 0x58d88afee43a35d9 } }, { { 0x7ae66eec2bb1ed7, 0x78423790fa951843, 0x8257e7a180765925, 0x384729f86d1e22f2, 0xb3bb57874d8bcc4c, 0xffa28ac29c047870 }, { 0x2c77712515f12ce7, 0xa0d161d9491c6a3, 0x448313aef31bf3d3, 0x8e5616615fa8d442, 0x773655029a247a9f, 0xc50c44352e5ac673 }, { 0x22598a39e89fbf8a, 0x6b28669746d2e283, 0x761d24ccebbe0444, 0x42a2056319bc6728, 0x4065112244fb741f, 0x73f468e6cfc3549f } }, { { 0xc4eb4519358e5e3c, 0xf022ab30bc208938, 0xb2aa833fb8c5f5cb, 0x815c7255c9aa72cc, 0x47271472150c1eb9, 0xa63aed6a3860a240 }, { 0xbbbdd781deed1a41, 0x989618aab34cb1f1, 0xa948e056feb1f67c, 0xa26906b23836b42e, 0x286748b514096324, 0x66404e4a75ab01b6 }, { 0x21e2be3b291fd687, 0xb4a2562e9ac3fcc7, 0xf605f906bac79853, 0xf60b91d2d67158f8, 0x1b213fa9c66d013d, 0x45c9614ee8febd93 } }, { { 0x49d8a11764b556c1, 0x833337b32b94b0af, 0xdc3bf4d76edc1817, 0x5df1f7d87090c892, 0x733d9b80a5e58b75, 0xf44f948caf530326 }, { 0x108655d46adbfac8, 0xa46b9a06a4b25171, 0x623f900138e5d2f8, 0xd2035f74265acdcd, 0xd68d507b91296fa7, 0x33eefc253591094b }, { 0x35b6c052c7c48ab, 0xe43436161ac04499, 0xb74cf99f4fa3efc8, 0x9b6441293406ee0, 0xc815a4a3bda95835, 0xa697a55b2c575446 } }, { { 0xb96c80f489fcaff, 0xe394d4601fe82b33, 0x2c6b58a92457912e, 0xdf217a685b57c523, 0x1bd50955ac28cc4a, 0x702c9399c34c2b3a }, { 0xd173987f5ea7f0eb, 0x59ec9aebfc9ab7f1, 0x45b397fe357e0a8f, 0x712974ca8990e51, 0x9f8426a44a8bb457, 0xdb4ca62376497220 }, { 0x53dd09e90c12b14e, 0x99e236054b70e527, 0xaaf7bf6339a168b7, 0x7044e1bafa107c1b, 0x1a8ccd2616f6cf8f, 0x516cf9f3e5d3626d } }, { { 0xf9b9c79ee62ca5b6, 0x4a15e704111938fe, 0x50939bffc674423a, 0xb8f9e32e6f0662d4, 0x31dfbcc16f7d945a, 0x324e50c39afa4097 }, { 0xd95f5b2aab4b6fd7, 0xe71f8a92b8b6457, 0x5984e5d9af147bd1, 0xea89029cfeb4e3b3, 0xba414b58f60dfbc6, 0xcb51df9270689160 }, { 0xcb09aa7594403362, 0xa1d09630baa7ae6f, 0x598e2c14429f0465, 0x80ad22af4c6d085f, 0xb6464331dd21743, 0x5d46a3c86c8650b2 } }, { { 0xdfdaff4e8f3fe6a8, 0xb4fa7281c501e68, 0x359e484e723dfbf0, 0x26cbc7e339a6ac62, 0x46045f94cfd3c712, 0x9f5c9b167d8b44aa }, { 0xd2d81aacc79f349d, 0x4288a634c6ce32dc, 0xf885d1bcd19dc011, 0x16af7985d4d25cd7, 0x2df9087736542f37, 0x8f0003f8477b1c25 }, { 0x6dc47bd0f79486e4, 0x38504af0a97a3356, 0x3b7e838aa7fd5415, 0x791aa9331f49d7ed, 0x2fdc560522dcabc5, 0x98931196408a8f28 } }, { { 0x39c186a47d72b59, 0xd547cc5dfe17cd31, 0x4d93c5da46889659, 0xe505b624b57858f2, 0x6351bcea56d92ad2, 0x9fdfc173fbeadaaf }, { 0xf0cfe17fc02115e2, 0x2e7374c51494ec69, 0xf943e7f47432f8ac, 0xeae2221adb979668, 0x45d4e1173b34714, 0x63911c40dbf797a1 }, { 0x43eca7e84dc1541d, 0x51c65d9c44de168, 0xbea2f4a7c30fb317, 0xeafdf7a75badfd76, 0x443acfa16cfc4796, 0x67188bf967557bff } }, { { 0xc068562725fc451c, 0x233e764054709ba3, 0x9f99cefd201e502, 0x72c9aa466632d55a, 0x7f0bec4aca3824d, 0x3e7829f740eb0392 }, { 0x125cceb5a36040fd, 0xe20a20d97ef9312e, 0x52bc44cdb84b72a2, 0xa71bbd809f3dfe72, 0x4fa060fb84890556, 0xabf24b5bb18be0a0 }, { 0x20f86a63b6851547, 0xf7b4a5c7b9ef175b, 0xd0265b5867d92f59, 0xf663015d2a1d00e2, 0x7f6fc5ca283f1e79, 0xfa746d1a48df99dc } }, { { 0xb6aa10c8ac958f00, 0xd50401a6af4c0452, 0xea83ee5cb1275d8a, 0xe0ea0545c308b8d9, 0x1637e55b334703d, 0xe0826fd3c16f0943 }, { 0x169c527be660643a, 0xaa2ca765add9fc81, 0xd7eb181408b931fd, 0x31b265a862feb1b8, 0x7dee95d4b54c0571, 0xf6dfaa67b840d7f }, { 0x76b58577c19e1afe, 0xa219532d5f3b7d54, 0x251e6e9e41a47ac8, 0x910f0e1e428364be, 0x1b1f3bdf5ed584a9, 0x6a21c44895225012 } }, { { 0x107cc47b06d901f4, 0x76e290a0a55e6be5, 0xbd8a8323f0cc7c74, 0x3d8e6eb8d5b2d35e, 0x5e4add9359ccc452, 0x5a97be6013656798 }, { 0x249b494d3fe11232, 0x32ce1c00bf192173, 0x7e3c76b4e5d3a5ee, 0x3d5fd1236098ed23, 0x1a94fd0072fc65fe, 0x50988bc29a9229eb }, { 0xafe4850b2eb1abb7, 0xc901b79f3fb4fe05, 0xfd1e6fa59d302afc, 0x1415991d630cb218, 0xe53878a75f506208, 0x583149c73cb30ccd } }, { { 0x34dbbabbf1843016, 0xe69ccc3efbc65208, 0xd8f90a9ef5bc1dc0, 0x5bb02ef46db657ec, 0x9842a1229757e05c, 0x32a660ae8d8723aa }, { 0xad6a0dad1e4ed15d, 0x7eac15ac65aca1ca, 0xcd0f636866619845, 0xe26d3dab434938fc, 0x73b6e054e17d665a, 0x14ca0a65b00bf795 }, { 0x22df0b9ef66cf95c, 0xe743d6ba60d3702e, 0x8dbbb3dfabc2a549, 0x7316194f19fd8876, 0x8699dd5ca81d5a0, 0xb3913a824502f7c4 } }, { { 0x8299cc4d577c3add, 0x98268f284bc1b635, 0x2e04072889c803ce, 0x1299556f34eae8f8, 0x6421b6c521b3f37d, 0xc9ebf25c6817800d }, { 0x14f85ca8c611142f, 0x8b4f985c6c541902, 0x8f609ede2b4f7045, 0x2694caad49e2559d, 0xe3912152843ed70c, 0xe6bb52cbe3ad56a1 }, { 0xbd02afe54a300509, 0xb3f966e2296ac739, 0xacd1810ddd1da2b4, 0x58cabcd5926cc8b3, 0x9a81876c51f440ec, 0x93a371793dcda97f } } }, { { { 0x9ffce1837fe31035, 0x794d91e77e1cd54b, 0x1d6da0b6443a4c2, 0x1d198a75b521fd21, 0xf52919365f1f07fe, 0x22effae5b9c5b9ec }, { 0x2eaeb7bbba29e6e, 0x373530a4a070844c, 0xa1bcf1400aec01f, 0xe0a8a6203be35a44, 0xc0e9bb3a487f73e9, 0x812e93ee026873ca }, { 0xb0c8100d399b6ab6, 0xf1455a4198aa1d32, 0xef46fe8d230430c, 0x4cf6f4aa083e2bc1, 0x234ee17770221eb5, 0x28b6c84d325170f7 } }, { { 0x5638957ac95b74d3, 0x8685c8ebfa202ea, 0x52e0c93ca9d5e6b3, 0x843e35d9e3901dfe, 0x99927809cab7ed29, 0xd8de7c56200dd718 }, { 0xa3482318aa4e95b8, 0x182ae1c77d3e02e7, 0x93f48d4bc8dc1954, 0xfb49c289c4efe22, 0x89d404097488420b, 0x69c326ccee37701c }, { 0x6d1031d28bbaf136, 0x75056287f30d7602, 0x6012cf10713d7a1, 0x9adc1b8aaaf97840, 0xca78088f99a2cce3, 0xb1b04082f205559 } }, { { 0x6ba35fcc2e236881, 0xb6cdf51fdd915217, 0x4f6ec88e6212d364, 0x84227c66753b161b, 0xdf476589dd00ef2d, 0x3215911d24906919 }, { 0xcbb84792d5d8b8e7, 0x2fcdedfe2abb1b9c, 0x3d8f9b1a47e6c39d, 0x2da8b078a85aec22, 0xbe0b623366c96294, 0x8094e9909a58e804 }, { 0x6a48804467a4db11, 0x698c9a57ea7df898, 0xd5a741aa8bbb4c0b, 0x3ca6a8a9e14f8901, 0xb3fc5d49a1a7ecee, 0xf5248dafdc1e9527 } }, { { 0x258623ed8ff22f09, 0x4a0189cf670c497c, 0xe38e3b4fc97823ee, 0x91051b98ebfd30b4, 0xc1899ddac5bd1d5d, 0x8484c5d83946d81f }, { 0x7f67f43f17ee0829, 0x9403c17c47490753, 0x1e410db9893358ec, 0x25e788ec9ececba, 0x360d076d82c97846, 0xf28ed3a587616ff3 }, { 0x72b3abd1b0268b34, 0xe14aaa9d16b507dd, 0xe71bee03088ef63c, 0xf1b6555104d0a5ed, 0x8e62ec4a26b51e28, 0xc2bcc78b610e596 } }, { { 0xeb1197998ade8768, 0xcb0f7937f390a85f, 0x73420cb3f39297f0, 0xa8562daba2c1932e, 0xa270066900f7d00f, 0x3f923ae9d9980d86 }, { 0x4697fb0c8540826a, 0x4be3cc170a90783, 0x1e1f93cdb13c6f7e, 0x5ef0c1867c7f2732, 0xde3b667436d26270, 0x9e0adb07f0a2bf25 }, { 0xb8ccc611155e5e55, 0x3ed3e5c96f5ee145, 0x8d162ecf4731f555, 0x6cd47f78c220af44, 0x90cb89f15f6820d8, 0x2838c71f56937017 } }, { { 0xf760f5380ca265ed, 0xd040ac9fde7fa0c, 0x6b619a54c1be854b, 0x463ac01b8a8256d6, 0xe3aec80a9822eac8, 0xc4043e5fcc26c1af }, { 0xcd3ff1bd292f0ff5, 0xa7b6a061144f9a4d, 0x371ccd50c52295ef, 0xd612f60bf51975b1, 0x9b11cab93e8d896e, 0xb29178085f55e4cf }, { 0xc35437a6641be9ca, 0x8d202e470910602d, 0x73cebb3a57b3b9ea, 0x75bc668775f553e9, 0x761e16b4168d71fc, 0x8d0fb2d69a1cb62a } }, { { 0x4f9ad643c3831452, 0xdd9d10c5e806b5aa, 0xe7507dba6a6244e3, 0x7e460efd42dc2ee, 0xe56ceae0546016d5, 0xdbec5a558bf49ab }, { 0x1ba8423720f92c9e, 0x26d3f628892cbe52, 0x1c959e5cac5a8014, 0x82c4bc03f5444aa, 0x67d2cd7a9c431ded, 0x7328f1d825de3c09 }, { 0xf178927ec98a0fe6, 0xde9b7a023f3ed9c5, 0xaf29ab937059344c, 0x6138a8bfa24ad490, 0xba4b6a50f810b10, 0xafb02acd291aba61 } }, { { 0x8538e4c40d6a62e0, 0x78b6c5d7a0d9c6e2, 0xf7ec3774ad83b697, 0x7151bf99c49b6b95, 0x638bb5a8481bae59, 0x10be19f83f0be1f6 }, { 0x84c8e72f6fa4e626, 0x6e6be32228d04171, 0xdf49ebcc5e3be111, 0x8eca452d70d02c80, 0x334dc9c50ccba734, 0x7623de62475984ef }, { 0x68587f064a47b12f, 0x3e348b84eea4b05a, 0x8d5efd3bd58f694f, 0xe16087747c0438a4, 0x25f2003ee962c63c, 0x6188c9547b106016 } }, { { 0x75c86bf440e73036, 0x57f9217b3187236c, 0x2b4ccba3a244e377, 0x1c6a2ded810cc9b8, 0xd9d44448324ad87a, 0x423185a96fbf9754 }, { 0xc0f5a4f87d1ecab5, 0xbd2597c2cf3f3ec3, 0xfe6c11ae52e06b7b, 0x4e0cc2988f00cd80, 0xff5fd97cc1295a85, 0xbccede6215de134d }, { 0xe036852de29a3844, 0xe5c14bb9bed67393, 0x906e4bbb1491b9ce, 0x5746f6d3d4888757, 0x4fcd6cbf76f6a7f0, 0xf528a45f30e1d0ea } }, { { 0x686a5f61b6c6fc4b, 0x259c38a2b1b65c1f, 0x5ba4492e50581a1f, 0xdf18d647d1bc6c52, 0xf0da97fcbd2444d8, 0x13cd65ecc9db8b1c }, { 0x60acbedd73bdba77, 0xff287f8423e232e5, 0xfdb0cc375c299f75, 0x11fb5f68f2b044ee, 0x5091ec29eab8b02e, 0xe14fee7f2d62aced }, { 0x6e9aa174f7c29bc3, 0x2a8acf6261e47a1a, 0x1817fb8fe23fc00e, 0x74b70af537b2c139, 0xf2f7216580cd54c9, 0x33ce1cd52edc47b2 } }, { { 0xe4261ae6558406f2, 0x7cee05313f91ba6a, 0x6ebc4e52e9ee927c, 0x539f6ee01a2699d3, 0x42aef1184437ed0, 0x7e9568b104e54e8d }, { 0x35e9c79488b4dfe5, 0x3cdfd9514b67b98e, 0x3f2e547882c7dbc2, 0xa579ee3e631a90a7, 0x4f823a189907ccb6, 0xd294491d9a7d57f2 }, { 0xda3b1c0f426ffd8a, 0xc40e2656691938a3, 0xb1f576901e53c346, 0xe1ffa6522137dbab, 0x8a52cb9e64b2bf24, 0x49af6f460696332c } }, { { 0xb1c5b182d2e6a76, 0xdef8206683ab47c3, 0xea7e7ceed0d49199, 0xbe7f2a408ee20d6a, 0x7c3956a27d245aec, 0x42c450558c003091 }, { 0xff528b31825bd4f0, 0x50221230bda7c468, 0x7bcf73aa4c4e3661, 0x5cf7408037315343, 0x3edaa7ca08ca0d7f, 0x17848b701aead3bf }, { 0xb30a5b77e8d74249, 0x8972c3c1d94ebf5f, 0xe766b489c7ef53c2, 0x18eb32a01e023ebc, 0xea05172023973aa7, 0x7fd2736e70ceee62 } }, { { 0x8f9776bff97a76f9, 0x8cd0ae51fb16e3e7, 0x39b24873e0b58b65, 0xa1b34d3c9ad3fec3, 0xc7efd5783de8f52, 0xaadefb22bc2ef644 }, { 0x9fcdb9c6c4da358f, 0xb29dd31711a530eb, 0x3cd99c280095c78a, 0xc1ce091b819ac719, 0xc7d874a542c18008, 0xca904ccfb05f0c5a }, { 0xde9c99f64c1689da, 0x49e2152a6505f2dd, 0x1524cfdb152e3f68, 0x871d1b10138a273e, 0xe5ce8eb121209a93, 0x6eb12f3adfa1e62c } }, { { 0xf2e9ba833b3c0d5, 0x330e114ada8a2d20, 0x7e13459544e93b31, 0x9899d0dc8f46fcea, 0x8d6a96de4c8d5e5c, 0xfefa1e51022761 }, { 0x3ca61d69103a16fe, 0xe92e900d434602d0, 0x90c141d3528de802, 0x1be0a16b7e57f80e, 0x7d97cac651d3078b, 0x2c786af656df1730 }, { 0xb0849cd14cfc93ea, 0x2c0af404570f6aec, 0x5d6a136aca37c0f2, 0x27cf7f86d63709cb, 0x2140b4aca3438d4e, 0xee62b2794749a43b } }, { { 0xc1c5afd619d7dbf0, 0xe0364e6d60d20008, 0xd98c4b4482a5c226, 0x51d52b1da4338c8e, 0xcfff20007989dba5, 0xcc7accb0a9e4e44b }, { 0xef5219e869d2e8e8, 0x91cb039d39846570, 0x98794dfec116aa2e, 0x466a54e1346d3b0b, 0x96f1b6098a3ccd94, 0x32573457fb706a97 }, { 0x719ac064d17d3f6f, 0x1e30075a9b170170, 0x60383151b25248b, 0xf0020bebee62d13d, 0x2eef8690880e6cad, 0x85613136f7262d46 } } }, { { { 0x62a7b6323ce09624, 0xc4544f90a07d3577, 0xe368f13ef40a53c9, 0x3c5421941b4542b4, 0xa68b31e0caba6d66, 0xdf5089ce00e8949c }, { 0x47a26ba208fc95e1, 0xe77bf015926cb243, 0xc15db023e6ec939e, 0xd8edec4fc1908802, 0x43da074b9e7d4fff, 0xb994c7012987c039 }, { 0x9005ffe03e009636, 0xd1b64becaeca940e, 0x548ac483aa8c3a2f, 0x752acda17e32bed7, 0x52e2991c8c3e9d78, 0xb8e0d37c1d3fb2af } }, { { 0x6559a5b0407bd875, 0x750fa20f5fa1a018, 0x39c591e947b629c3, 0x90283337c114ae4b, 0xdc517035dba0ab7d, 0xd5439f53415fc520 }, { 0xac598ea993909df4, 0x28531c98c853ca71, 0x7977c236caf4c27c, 0xb756e0a02569b2ff, 0x4f88f087aa18d3b7, 0x851255d06fa16223 }, { 0x744a90b3061ef0da, 0xba9aeac708dd1c75, 0xbecef4b66b48cfd1, 0xba8e92f2b0128b9f, 0x5f064ad33e1cacab, 0x7d197c90a969a59f } }, { { 0xf056e68e5a7906c9, 0x6d627abf061467a4, 0x3b8e4c4bdb355888, 0x59d8e17bbe97c55d, 0xcf06a76ac38dfc14, 0x877fc75ba1ca2e4a }, { 0x97a5d656fce752a7, 0x3b494c3925e5af0c, 0x47df49b29c6c0e03, 0xa64cdd91727c6b81, 0xb644e1ee1596f928, 0x894485f8cbaf9f21 }, { 0x6543b4341a4d05eb, 0x30cb62eedeb87552, 0x3b52834a77a8c782, 0x1b3a9c98d8d59767, 0xd7e485f05971d17d, 0x724dfa701e27b719 } }, { { 0x6aaeab58c90abe7e, 0x8059e332c2e5de3e, 0xf43c74aaeccf1989, 0xd5468f21e00ffe29, 0x2e6eeb231d36f336, 0x1105e2541c2f41d9 }, { 0x9cf3262670099b68, 0x664336e3437aeb13, 0x68cfe0392525178a, 0x4c370163417bb658, 0x95b245ab6501449a, 0x5740b93aec84de80 }, { 0x4b55c79c7d33e7fd, 0xe575f3620a0a1672, 0x5f47ea0ee6015d5b, 0x93444defa707eba5, 0xd6cdf3af1cdf0972, 0x7dde1b7e38fe0b61 } }, { { 0x27011467fb0da145, 0xb879eb89ff74ef34, 0xd76b1ba683008fe8, 0x1dad9623058141d6, 0x4ae579d1688eb3c7, 0x7e155f89eb165372 }, { 0xb073111148a21c86, 0x23f0234860e2d76b, 0xd8fa4d91ace79a74, 0x3f1ab11f3ff4bd, 0xa8a447ee7e624896, 0x3444b9f282b3e5d6 }, { 0x4d06c7c97f171a26, 0x13a9e999377b56e3, 0x2eddb3023104636, 0xfc422e7eee7d1b02, 0x266ce0576ed8f245, 0x53349521fdbd1b99 } }, { { 0x7a6859b18f1e3799, 0x4aa301d993c5ce2f, 0x8f0ee5ba7b5daee9, 0x52885af4a987d5fd, 0x465d42cf9a2810c2, 0x71efaecacd97005c }, { 0x31c90c33a84e6331, 0xe7f376fc50fc65c5, 0x45156d9c250c65e1, 0x38286445d205b68a, 0xafcb13135155ddb2, 0x852f3ed49317fa87 }, { 0xc118c78ff02e70e6, 0x4cf2aaa8b540e8e8, 0x6ac7cc1d88032a80, 0x9ca1f2f2c675b4a, 0x874ee4bceaa2226b, 0xc760c905314ea8fa } }, { { 0x40a8fc07f78a8e81, 0x46080d66d8fb4ac7, 0xe9414aef111dbff3, 0x4d18ac1f9fc3dc98, 0x7e3793002d1c3e6e, 0xf6c15df74511ad81 }, { 0xb3bdddb3f1dd0394, 0xb86a110090e14c66, 0x3dd20a198af69988, 0xec26bf2724ca4d3, 0xf5570a4a5d73c1ce, 0x68a0f94d0090207d }, { 0x62b6991ca95a49ac, 0x42edc830d9cc595a, 0xdd311e170bb77d46, 0x795060231c99e1ac, 0xf006fa25815753cd, 0xaf7b108ed9295c05 } }, { { 0xd0c911547f8b6590, 0x91b097de1abc7358, 0xce6c84820f8be56c, 0x280a065a104993db, 0xb5ffea4cc9a86791, 0x2c910d183cb9aa4b }, { 0x449cd0e4fa418573, 0xd25678c71594a56f, 0xe06920e049b86da7, 0x8e8dc1cc8f523062, 0xea1c3ca375f5571f, 0xdb26deacb0cbc56c }, { 0x69c1f5b0ab1f757, 0x6161f7a1c69c6633, 0x1105300315e735fd, 0xb3412c9086069a36, 0xd23b4f09cb6ea572, 0xa2d74bb41c829b8b } }, { { 0x4140b0a08f26b203, 0x673efe548a17001d, 0x89c446719e87ef6, 0x5d22346f1130ba60, 0xa701310e06a7eed3, 0x749fa6f7fb1c393 }, { 0xfb789c88818a0553, 0xcc4fe40d7880b5bb, 0x1e48531b92337c90, 0x3307a042b021ab76, 0x5c0c8a19c8117eff, 0x4fec16ae77bb8195 }, { 0x3e0f38dc3d995afb, 0xe749de0a91909a2c, 0x32a8935ba8db05f8, 0x6a03b926f444a7eb, 0xfb09f68714c08b5c, 0x4fb49572001bfb27 } }, { { 0xf04730f8ac8a35bd, 0x20230894ed7b3de6, 0xda0dc1ec4b4c75a4, 0x76172bd71e5db600, 0x757d8c1640e70dfd, 0xd0e9f8ac6aeb87f3 }, { 0xab171ead545ef5b3, 0xc1250da34edbbf2e, 0xb642d5e400293db8, 0x30bee16e316416bc, 0xf751dc8e3ef61e0d, 0xffdf7661f16c209e }, { 0x9d761db1f5688486, 0x4eeb5eb698b553ed, 0x48713287e78fed92, 0x4ec1d7c9036a37f8, 0x76611c9f62ed8761, 0xa21590ff522da622 } }, { { 0xeee600144396b2d7, 0x6e91ecb3769fcb69, 0x80e259c8750c35e5, 0x3588de0bd85926c2, 0x369277a48a235af5, 0x5fc4fb5754f06b1c }, { 0xe0e55eb2d8591eee, 0xa657a88f3d5b818e, 0x3037f7553cf194c6, 0x20db804c5366842a, 0xa556cf7c79b67cc, 0x5bf960d9efc004a6 }, { 0x53e98b39691c8205, 0x8f0c03ecdd732e17, 0xa1d7b3de1b51af0b, 0x616e8ee5a7ad324e, 0x4f78ef44ef5da945, 0x25b6325b57de3b46 } }, { { 0x2d437d272c34e752, 0x2e19506551fbf782, 0x869bf2d52715b27c, 0xe420b93c375b440c, 0x2d84c8bb49400865, 0x72320247557c8309 }, { 0xf0db6a7817e9965b, 0xd3ca8210ef921740, 0x2b3f2bbbee8e2726, 0x3fe6d50686d98270, 0x4a32efe86baa0145, 0x1439e3a8b69ee1c3 }, { 0x6a4334a16d09ba7f, 0x458a886374356bfa, 0xecdac71de806b25b, 0x8801d707f8ea0db4, 0xc5454fe4e10c40f, 0xedae0ae33e61b52 } }, { { 0x359c3fa67cf4ad16, 0x5c18ffa1026734dc, 0x14e73bb3895101bc, 0x1bfcc7b01ad79c3c, 0xcbc5440ca478553b, 0x7859d4ef5eeaabc8 }, { 0x6688e270b0af2487, 0xfb1855e46898ba9, 0x84b9e5b303bd7ad6, 0xd2e3158069805532, 0xf32c6a3d4c85ddbf, 0xa4071525a5ab47e3 }, { 0x1c10305390b4652b, 0x7ee936d72cec2833, 0xcb7a855b13279361, 0xbf1800200d4700ab, 0xdf13ab6c2a1b9047, 0xb9f1e6ca638b13e7 } }, { { 0x5eb2caad27b6efc6, 0xd43f685a8ae81daa, 0x3b5dcda9ab909898, 0x7dd196912fbaf4ef, 0x1e09d79424166b9a, 0xac97014e1074d0f8 }, { 0xb5243c400c2c1236, 0x9aa0f95cea43effd, 0x55bc4a21c93b5ea2, 0xe97bfed151bbc15a, 0x57549f0da1bc3e81, 0x1a7c3cf1387b3903 }, { 0xf30faaa57185b9eb, 0x4826e47deb328dcd, 0xfcddf370c5d7fa15, 0x4821a789e6b02090, 0x93cc2c4d3c872059, 0xfd1ca902b4ad75ce } }, { { 0x40f29e5ce7725f32, 0xa12a083808f18820, 0xbec6bf4850c328e2, 0x9b09ea8c44dac47a, 0xf8448da86e0660a2, 0x2bda26c98b1cd688 }, { 0x3fd685aebc5b909a, 0x599c567f7d7ee171, 0x5b540effc96faf4, 0xe3bb9f6c26f83cde, 0xed96920a560c1bea, 0x662d77abd00bdacd }, { 0xb6fae11a909fddc5, 0xdebd2d9b34a22d3, 0xbfae61f54a76b834, 0xbad811898f2ec8af, 0x5085593fc3b159e8, 0x7aa38c49919d3b09 } } }, { { { 0x7805c7d7ef660c9f, 0x84a9f7647b55f511, 0x686a0242b07cc09d, 0x585a162687bfd172, 0xc98cf358e225cb40, 0x5e389011f16b2de5 }, { 0x76d3d9f0f2fd3e99, 0x94f521811de252d6, 0xae2a4a14eb451afb, 0xedb57e3671d26fc7, 0x7e47e6a2ebc84a59, 0xca5a55e08029d274 }, { 0xebbda1ca795a269a, 0xb7e269e0528796f4, 0x4c584ae2743b367a, 0x573837c0809cfce6, 0x26ca65a08f0e6f65, 0xe692abbf93ac5be3 } }, { { 0x7e50d8e13b7f0561, 0xcfd831db2d2efd6d, 0x993f8be5bc647c8a, 0xa4f617e65786edaf, 0xcf305dc3d69be956, 0xc5332fed3ebdbb30 }, { 0x2d5ffcb3248b9a6, 0xf065989a437690ca, 0xeff6fd05348da6ba, 0x15902d9a3819e97, 0x5f197f2884ee9411, 0x99bf7925f47174 }, { 0xc3d0e0be6b10d552, 0x5c7eb219e6bb2064, 0x2c165b467e1a84c9, 0x270370b8f9cc87b, 0x28418d2a5f54e64f, 0xf2620bce4f4efb6b } }, { { 0x202d4652b006bdb9, 0xde67797b932f1a51, 0xd1d7ae3df1d64bf6, 0xfde78833d08df2a3, 0x2af8c5d0b16c3955, 0xcce38606ba50543e }, { 0x4913c69ab9ff799f, 0xa01029a4d8997865, 0x9a8df16c4253dc6, 0xd2202b02e7956f87, 0x673c7ef34c84e14a, 0x38ba0ee9dad30995 }, { 0xf43d7ec526e83a6e, 0xc91306f525aaf1d7, 0x8a2a9da07c91ff9a, 0x685a9010a802d0c9, 0xa4b8f11853629b99, 0x8cc735ab1adf6ffb } }, { { 0x98c26ee3a30505da, 0xba71c46cacbe8db9, 0xd8e9d855d6196386, 0x6b92d0a50c87e205, 0xcce4146ddecbac9f, 0xb07a7257876874ee }, { 0x1f4d281ad249e888, 0xc8bc69e2e23f9fe5, 0x35bba217fd669d7d, 0xbec9610690a78154, 0x7f912b5a95384bd7, 0x78b637eb701fbbaa }, { 0xa9485438a1774407, 0x5aed21916b55d812, 0x621798cb074dc79, 0x6b0dba9766078be3, 0xea718b97e603610d, 0x40cac0ce18e8b155 } }, { { 0x2a15c5dd158836c1, 0x16ca282e3ceb9827, 0xc2a1dbbccb010097, 0x453ae80ac98bf31d, 0x74b30aed4a7a16eb, 0x71150c2746544913 }, { 0x4d388247687b4ec, 0xcf81c94ce9628cbe, 0x69dd4df9907a2a9b, 0x7a6ac5a9186a1fec, 0x2320a52b7ff4066b, 0x34879497d190076c }, { 0x5185554e3c987e8d, 0x4acc61967be634ec, 0x9362d5210ea9afdc, 0x4b254009d0ee214a, 0xc067a17003663e99, 0x3f76f56ce20f1806 } }, { { 0x5c25f3005c1dd3a3, 0x9b671cc976956b64, 0x6ad833d3f2d2254d, 0x63f91c4dd763501a, 0x1f6f7cfb0d3722e0, 0xff573094e6f6b9be }, { 0x5bf7c9df2616ce58, 0x6865c181d69cad38, 0x256ede8688f4c591, 0x21be5dc243dd2da9, 0x893fe13548920826, 0xb6177d025d6250a7 }, { 0x501797a7525e2425, 0x748d3d5bce8a6dfc, 0x67e624e2b3ba0c7f, 0xa46ca0a272a151a, 0xc74470a033655782, 0x86d1c7812f0608a6 } }, { { 0x7d9efde41ca4b6c7, 0xebbdad4a1181a298, 0x5171c46ee49f39dc, 0x43068994db03833c, 0x3d869dd4d680c9dd, 0x6923772644de0145 }, { 0x12109fed4c65c212, 0xd5b9aa200c44d00b, 0xdb5757a041eca377, 0x5034e5b81e581b59, 0xeacac2d258612ce3, 0x17c419f5022c7aa2 }, { 0xc7598696c1991719, 0x5b5a95915c07a69c, 0x2177fd96c26dae61, 0x48380e18a2d63313, 0xf54a100fb4b04f89, 0x1769523e07a37708 } }, { { 0x64892f5d28e53af6, 0xf77fb1bc5079054d, 0xae057d47bf4e7b40, 0x569de4305db58975, 0x8cc18fe16e27b208, 0x808a4d9426c65202 }, { 0x25a362bfcdf860c4, 0x266517404524369e, 0x538c9a99b9e1f073, 0xa6076d12044962cf, 0x4f765c1abeb73375, 0x1b8a0290c1fa6b3a }, { 0xae94c051d5d631df, 0xec10660704ceafeb, 0x893fc35e819eae2b, 0xaf2920498e98dcfc, 0x5b415ce33e1a4595, 0xeaf924e1812d5da } }, { { 0xed532107e907075e, 0xe5ba89c3618ca0eb, 0xe74a53da7e8848f5, 0x1b572c683a13e18a, 0x752cf300a0e1942f, 0xf98f79ac2ba19278 }, { 0x966b4b54728ac504, 0x13abee7afc257bf8, 0xe077e63cacac2b77, 0x823e3add318d0b87, 0xb456dd172db52142, 0x3dbb59db65069193 }, { 0x7e94d45662a384b2, 0xdd8fa886767125ea, 0xa1dad06ecea34782, 0xb3c4cd3426df9005, 0x5d52de8e27eb894f, 0x97e49bde5d7e36f8 } }, { { 0x50c31747fc5b61c9, 0xd2a8524365088583, 0xec6c9b1824c8b3d2, 0xab7317807eddceaf, 0x201a51020988b4c, 0x4b05be1c9d21e4ad }, { 0xd5cfdb9d936f29e, 0x302b0e2073351e5, 0x72b5e856229e6ca3, 0x7a4e0e3aaf35a563, 0x5f49bf15398960ce, 0xd8e197a53a9a6c92 }, { 0x54065ed9e86fbd15, 0xb97f193c88a8dab, 0x4cf8e8f03fd466f3, 0x38fce26871c55d93, 0x7d2289b3c4e1af6b, 0x51a9cb73ddc8014c } }, { { 0xf0e07df26ed5ea4b, 0x7dfccc14f27b70c3, 0xde7af0d222b97991, 0x8760f547a7ddd7, 0x49f2c080408f21e1, 0x77c7bbc22e7102bc }, { 0xd320d8262a5e2bdc, 0xc242c0ce42fafcb3, 0x3c361470e4717c2e, 0x8f35bc8088751077, 0x5dd276efd6da5c2d, 0xbf77b95161dde518 }, { 0xa65d193cd988e6e, 0x57ae521c158d45b3, 0x8976f37fd1e98f8b, 0x8c75e7af4b2c64fc, 0x82e8da1be642b9b6, 0x78abe50447573dac } }, { { 0x68fd52efe1f079cd, 0x62c2243da9ebcf03, 0xa2cc5e41ec8f6691, 0x63b3c58fff0322d8, 0xf93a13d85685c31, 0xd23ec6c14ec15a56 }, { 0xe6ade45acee49ff8, 0xc92971d2f68c0c1a, 0xcfa7dada6f130414, 0x360e3cc7bd339c1, 0xece96991b2717830, 0xa62cdb0b6b464b5 }, { 0xbe8633fc7ad72a45, 0x4693685773cd18a6, 0x88f467d255339c9e, 0xe238fcc6889f349f, 0xd8a8dd58fff48f6e, 0x684487f8ca96bf35 } }, { { 0xd0249fa413cc774b, 0x3cfc8f2859f3a68c, 0xb1550ed0decb275c, 0xc85247e79ccd4319, 0x5a60efa2cab4e4a3, 0x97f6d4c50242b080 }, { 0xa7bedcc393f09d65, 0xb39ceae4432ad2a3, 0x922e02f33d1440f5, 0x38609b360fc0c64f, 0xe9a8b4dfc83f686d, 0x6e35a9a2c48c941b }, { 0x3e57f243fbeda47d, 0x5b4770a3aa7586a7, 0xe64fea3fe9918723, 0xa64f7a5d76b9fe0f, 0x923325f21de633ef, 0xe9225c2533b24505 } }, { { 0xb8b6e06fdbd35c4d, 0x215f590f096d1d8a, 0x97bbe19a79294513, 0x924e17e978978f1f, 0x7e546cc3160e0fd0, 0x3455836d74a1f739 }, { 0xfe5b893c63ed67a5, 0xd7bfc4d1b7c13ecf, 0x16762baebd06b624, 0xdb7d417c2bf6f8a0, 0x72f395983d4da667, 0x81b797e49f564353 }, { 0x13c3746e71e22430, 0xf61a58ba63bd017, 0xf7dbc6bb6cef7b35, 0xbd4966efc78aeef4, 0x23043d3af73f6221, 0x1710d7f8e66a9948 } }, { { 0x1cc548df1729e15a, 0x735dd59266842ba5, 0x1a0cbbf623efae7, 0x1057f3924a29f689, 0xee0c6b402774dd63, 0xa4133a553bac2be1 }, { 0x6a20688370af50e1, 0xe4e3e1ad7f0c5f1, 0x88b9011443835943, 0xe6698711899774a9, 0x56176e4a2c9c535a, 0x40c53249b0a59b23 }, { 0x690ae9991b24733f, 0xd9ae532809a86f3f, 0xef5234e5bf5985c8, 0x5a894760123d93be, 0xa0ceaf78b63f57ec, 0x1581f5740690078b } } }, { { { 0xe46288dc1b807644, 0x6e6596d18b77a7c6, 0xe4e314a004b0df4f, 0x470eb9aa10b63250, 0x60e6e42f2585f610, 0xdc29e5f3c8cd26c0 }, { 0x8a479c4f8ce11962, 0x95106a962542d9fe, 0x2fd0df2a019efe23, 0x8602b3f032830738, 0xa2177e19030fa076, 0xc960d1419a6d9d06 }, { 0xc5bf21eff96e74f2, 0xc3acc77ba2452703, 0x4453ba3fce93a72d, 0x42ac778ef806d3e7, 0x9d5f6151a2e8b06b, 0x62004b7d62e16323 } }, { { 0x7eb2f0ebba9a32ca, 0x6f44d12fb9a9b26c, 0xc832f3b12d4587d3, 0xd3ef688fa87ec1e4, 0xccb3918fdf1b4b38, 0x6259a82c3827c55d }, { 0xef7a9b114212ecb, 0xb31af56357de7cb3, 0x800e8e852f0c48ce, 0x8644ce772775c9a9, 0xa4dbfcb60728ba9e, 0x751dfae1ebd3d302 }, { 0xbe98d31acd879ccd, 0x397a71c968f739b, 0xbf874f2ff593a6a1, 0xea8b641a08962d65, 0xb9d6f7b2680a4146, 0xd151350d68488db6 } }, { { 0x93f48021636ab8b, 0x5adac34e380ce16d, 0x5969f8df68c7ada4, 0xd95003ec799f6af2, 0xf954388d74a0985e, 0x4634d89fb67e3e4e }, { 0xdd682ccd63dd2143, 0xc3e87135d0ce87df, 0x298e0204a1fc3c98, 0xb12065f7d0141089, 0xd5478e9874f2d276, 0x8bc2c896de0a9c6b }, { 0x8a494ed8d2b29e14, 0x32b0e29cb121627c, 0xdfa42b7dc983c1e1, 0xc47229c61201aebc, 0xef18fd3186ae6c0c, 0x764b775923b2c358 } }, { { 0x311f8bed6e35d6ba, 0xa5c33416979933b4, 0xeae87ff1f510e38, 0x22653626f7ecbab2, 0x319d095256409d8f, 0x451a5263ef03d798 }, { 0x1b92f25c1e7f4284, 0xaf22cdd84f36a404, 0x18dbd1c074220458, 0xbe211216b8d15de9, 0x55b42486ae0baade, 0x60b7407097f30f55 }, { 0x45e8d24b3d045d71, 0x2727af649a15c33, 0x977e83d5cbd2f3de, 0x2fc9be4793880fa9, 0x3423603a6ae00363, 0x72c9c6ba9aed95f2 } }, { { 0xd805fc6df1b58c73, 0x1b1b6dbdfb4847f, 0x257b7fdea58eea86, 0x344071c8a2256227, 0xc41a819772cd491, 0xf46e3af445204c1 }, { 0x73afe398cc0f7e76, 0x61cb3b963e961491, 0xb1cbe7e51955611f, 0x489a43bf34dc0c68, 0x9d9ed2d0078568ac, 0x98a93ca22e49dd33 }, { 0xd230fb6b7a0deba7, 0x2c88760505066657, 0x5e72c88221ac5f2d, 0xa1f6773ed876dfce, 0x5f639cb29dfaa107, 0x6dd3ef0890451383 } }, { { 0x4d6c63a9a6a6d713, 0x5b1ea4ae5bf43a03, 0xfdca85331d3cd4f0, 0x8e3cb0a7daa92091, 0x2c3768c66bbdedf3, 0xadd66c6276095bac }, { 0xd8c914d86c723757, 0xa241738600e4417c, 0x7a9d41cbf14aba14, 0x18da0e06349c02b6, 0xb3a7e350bec4ddf0, 0x9178f2f9d1d5c402 }, { 0x4b82c6658efa314d, 0xc52493e53cb7f049, 0xe90b7b6aca7dccfa, 0x8b62fc5c28a64208, 0xc013367371fe14bf, 0x35e1d7f17f94b91b } }, { { 0x40a533b6619560bf, 0xdbdfa7335088f68a, 0xba5b118c9f3a721, 0xe6b11c442240f752, 0x2185c74447d98df1, 0x3162be7a7c11159d }, { 0xa96526893b6984ae, 0x4bea91599bbc1102, 0xad55efe1c08b79d, 0xee26309bc955f9c2, 0xbbff1f56da4bfbad, 0x79d2a91ae70612fe }, { 0xc8e6fb269657816c, 0x8c48ad3f9b0bc0df, 0xe496b17dfc644975, 0xbf6287621e1d5bab, 0x53d75f276411df5d, 0x16028cd43302083 } }, { { 0xb141720226f900b, 0x2c77cad6f28e00a8, 0x879f66a48806181c, 0xe40def55aa04508, 0xe8cc2db8f6b8f8de, 0xb9c3abd72d33cac8 }, { 0xbf1145f4ac327e17, 0x99255a331cfded02, 0x9b7a57cd20448204, 0x1ce36dc400f93588, 0x17fd3bb089a5ddd5, 0x43f978e7a88b68cb }, { 0x1bf84459841e5e3b, 0xf5d9d3b0d6abeb76, 0x9ac812398373b5e7, 0x11d1fcbf815f8c35, 0x7cc64561e855a1ef, 0x7ab5ffb794520d52 } }, { { 0xd2b6d4702d54f081, 0x50ee71245fba892c, 0x8949d5f1b4cfb808, 0x3e19d9be2784563f, 0xe8f2999d588a30d9, 0xf0c215c920d0835f }, { 0xe3a9a09075ba4e3f, 0x4423aacae51982ba, 0xe3ca5a87dd705a2d, 0x3fc7f93915aa20b8, 0xf2f793ae6af47474, 0xaf1e9ab8e58a3ef6 }, { 0x27df4bcf70a75d3, 0xce5b84fba2461689, 0x6df3e29528e1a892, 0x6e5fb28db5da2009, 0x22ac19c5f11f3fe1, 0x96b785fca581cc3 } }, { { 0x67bbca752ccf149, 0x594897c0894f117f, 0xf72373d627ba23dc, 0xdd699a222a671c0e, 0x1f4cf1be7178c610, 0xd0def003e50a2685 }, { 0x851dfaf34e1d176d, 0x4d41f797b2f85d42, 0xfa792c685101590f, 0x1628b9621dd9fde1, 0x31549f217134068c, 0x98b63d3260e9daff }, { 0xf178c8475800a4e7, 0x3515eb5c946db599, 0x12368ad2fa10996d, 0x454fd0149f551866, 0xe7a65a7d7d9148ad, 0x2eb04842ace66a58 } }, { { 0x94e35d7a7c3b98a9, 0x1fd1e8353aa379f8, 0x248e057ee51538ba, 0xc4d9044ce9d526c, 0x326daf4567407d64, 0xa16f9192bd12a0e0 }, { 0xbdbc701cb6c8d29d, 0xfb597e35f46e7c5, 0x3aeb76fcc184f84c, 0x888f75419be7d543, 0xff412f148ae151aa, 0xc1159a6a49d3b1c5 }, { 0xb629e7fd91f334bb, 0x1adb8dc90ad76e26, 0x3bcd05ef456f7507, 0x2fe1c2fdb3200c3e, 0x1de30f4e58345ea0, 0x2937f8e8b9f44cac } }, { { 0x8e6ae19bc2d5f79f, 0x708e4c0be88caf13, 0x7c6b0ac5cff27284, 0x2022e95e7f053dbb, 0x538d1899c2ba18fb, 0xf059931544816c29 }, { 0x5a2cbb642c9be94a, 0x90986aa18075335b, 0xa219268379a915b3, 0xb3bf45678e27ada8, 0xac7c9229e65740bb, 0x95fae9de82fee622 }, { 0x36e6e0ba44801d61, 0x1b48cf2802a23814, 0x809f94cbea58d19f, 0xdb511754b5561484, 0xc698c27738a7e2a2, 0x88fa2bd437bcce8b } }, { { 0xe7cb2d753907abf9, 0x30447365bc94f12e, 0x839a2d37255a8428, 0x2d04fd5235bb5a0d, 0xe403237bfd07ac06, 0xc484959ce9ebcb33 }, { 0xf43d694ab683342f, 0x182b915647b18aa6, 0x3387699002bab1c8, 0x7c20afefd05b1a93, 0xba3b1e70a8373673, 0xd9b58e6e35ca5bb6 }, { 0x87d7f75df39d87c4, 0x9089f6f29caeeca1, 0x27c3d93bd218e1c9, 0x7f48f8de1cbaaba6, 0x6743b0446d806ab5, 0x85f0e47634c98ea1 } }, { { 0xf59a72e38517cb6c, 0x2c55af6244447b3b, 0x38e49f888fae7609, 0xa2c5352a9a6b91ac, 0xff88931361052194, 0x774d7a69ac731d }, { 0x504d95a5442c8106, 0xd2f03c7f6dec208b, 0x2c1ed5cd2ccae69, 0x7a715d5c4fcfb44f, 0x11ec1d3e184ddf6e, 0x585fc0718b90b1fb }, { 0x27b39a909adea7e2, 0x605b69db6c4ff436, 0x8e5f45fdc8cf5f76, 0x999e810787c5c738, 0x72cdb6afd1ce8d78, 0xf0eaf0d69be7e273 } }, { { 0x80b47fab54d2ca2d, 0xf7b55f9ce8d0e8c7, 0xdc0bc33cf6d60f1a, 0x8eccdf2420d0b17d, 0x541eb6240fea8750, 0xf36e59a7ade015be }, { 0xcb14d942e4ce66a4, 0x79a18ed0d2e9bf19, 0x53fe6b9720a658da, 0x4b240fcddac54cb3, 0xc00b6c7ce0b9fd8b, 0x25a129037e5f9811 }, { 0x1f2b5856eb725949, 0xf327d823f2fc5f0e, 0xe1fca77b70a9fa52, 0x2150b44b10a8db0b, 0x4a2d6168d822593d, 0x6154f0c8afc8fb77 } } }, { { { 0xaf241fc62123c8ce, 0xbd676f2ab7c43740, 0x476b651423b8cfb, 0xefc10f05aa3c2817, 0x89799deb0214a7f7, 0xcbf8a0ac1a89e5ca }, { 0xf41a528b3f3e604d, 0x969f51666fa83b02, 0xff04de61b9433f14, 0x30d5728e391cfea0, 0xc5ca3217550bc382, 0xe08dd2318155f20 }, { 0x3c2b8a68f68c390a, 0xc33f31013841abfc, 0x1a860ccdc228aef6, 0x1543d4d21c31f523, 0x6b57d4cdc3892ac8, 0xcace226018faedee } }, { { 0xe43ff6cd6759f91, 0x2fe2e1d64d5d3672, 0xe91595095e7798f8, 0x4b796846647458a, 0xa12eea704c6c989, 0xc8b8f8c2f532ffb2 }, { 0x7604e285c68885ce, 0x8592a9ce447ca505, 0x384fc5adcc1ff36a, 0x13c532135c4b7808, 0x9d01790d6557410e, 0xa49140aafb6fa828 }, { 0xd8b4286046bc7fac, 0x57c2c9f7b0f113b4, 0xcf7f998f21d8a6ce, 0xdef3e9bda45df614, 0x3789b43cbf0b73d0, 0xd518a422ebb05aa3 } }, { { 0x5653a5dd7332cb44, 0x71d4880e8a90d6bf, 0xd8bc1745f0e525a5, 0x96d2476681b47db8, 0x6d406308a91fec43, 0x289f531d1bb1c85f }, { 0x6dcf4948fe60a3d6, 0x922235204d4a9e0e, 0x4aa7376709e9b2ad, 0xaae9675cc9b61b1c, 0x290a6f607eef14ab, 0xb7ee750c548a7592 }, { 0xfe47cbdcca7748f5, 0x4afceb717de99acd, 0x2c99892b54babc01, 0x775c09e423bd6222, 0x7010bc728fdaa321, 0x3774e2b2928b7499 } }, { { 0x18710d9cc3af0bbb, 0xd8769f4b47138db, 0x32795c6f110aaa1, 0xc1a7c5630558cb95, 0xa26f9d443c937053, 0xd3bbcd21de7c712c }, { 0xd21ea6ea1032d375, 0x85bfc68f64098ba5, 0x6f821f2a71119721, 0x8ebb9bfca028113c, 0x96bd1b6e6c6d27f1, 0x15541826eb65c685 }, { 0xf660859a8d629828, 0x733810918e7c0178, 0x718a5f1c84dc0add, 0xb73f2e7db370dd4f, 0x47d85c5408486462, 0x754cd942d3d79d63 } }, { { 0x93a2cd7b86566517, 0x97f37a3663171596, 0xec0a38662cfa9ca8, 0xea7ea34c98287de8, 0x34742177479aed5a, 0xfcac7641312abddf }, { 0xad02b059511135c6, 0xfffcbecbc12480a5, 0xc4836db2e0f458c2, 0x271aac8feb8c63f6, 0xf36d59151ec8c019, 0xfb7069903425c3f6 }, { 0x6027b2304b435dc8, 0xe5adf410501958af, 0x7ca7e9f5aafbb806, 0xf22857b0b7b65b6f, 0xf53d449ecb8620a4, 0xe8d208d65ff78517 } }, { { 0x6053641261a2f87d, 0x379a934c363d800d, 0x28506e9a4cfdb4c2, 0x460019bf702fc7ef, 0x91cdce6b69aa10c0, 0xf13b8c9074f317b2 }, { 0xb1ee783d62e77e01, 0xc9daab70dbfe1219, 0x29c8eb72b6c70065, 0xfbc7bf452c36f399, 0x9b940757d2818cff, 0x6efb580506d530c0 }, { 0x1e12f8e59c9519d4, 0x433fb55ffb7eb31f, 0x717a9cda663754c6, 0x1beadf72d37feb6b, 0x6d43e5b1af174f1b, 0x5022f87e37ad6cf4 } }, { { 0x7824ef8fafd53949, 0x86306d06cb7506a3, 0x1d96f55f87bd9817, 0xd3f653cb17741fd0, 0xdd5cf041d8b165bc, 0xf0b32427f4d7c108 }, { 0xdbd87f40e19652fe, 0x8f07ce5210529428, 0x9e3c9ff93e2229f7, 0x752324a501f73ce7, 0x74b49c34618017d4, 0xc3dc8e8656fe72c1 }, { 0x1ff60ed6d0751091, 0x351d13eed54a6375, 0x197542c19d37087b, 0xa3fbe722244ae614, 0x440f46fe51e27595, 0xf0a5b409d29d52a0 } }, { { 0x7e295b50ec9a8ed, 0xe242248dfb4ad301, 0xdaedc488057d4e4a, 0x19ca538791329d24, 0x6e743e1b220ac979, 0xb5e5a4f171ca3e37 }, { 0xb933d5365bb5fb6a, 0xbb43e09c188bc16f, 0x8062ad3f08cccbb1, 0x759ab4d9a50615ff, 0xcb9cbba35da3f68a, 0x76c5a9cdb3ea0442 }, { 0xa20afcc6d8a3a7f0, 0x5e41ae4fef238089, 0xf03c84fd97a9fc9c, 0x47af44778d0ee59f, 0x9d1c166f7c43c564, 0x539c4a11605f1fa6 } }, { { 0xb66658f71e006da4, 0x9f79c4beb4ce5b10, 0x9ed5569e26165e51, 0x8d30eaef2870b6fa, 0x4408067ded2d6d49, 0x82d2f466bb46b53c }, { 0xa74817be85cd077c, 0x2be4c14d7de5f436, 0xd5549ac58e282514, 0xf4dac04ed5df1dcc, 0xf2c4979c10c588c2, 0xead37dd522c035f2 }, { 0xb549f5dc9800d90e, 0x11615965b4cbb096, 0x892c23b64da85099, 0xd3bb004f8d33fc4c, 0x839ea80b7256fc1c, 0xffdc00255aec8b98 } }, { { 0x400a9f60cbed80b2, 0x6260ddcdc56579dc, 0x27b89ed37e001805, 0x39c045541e99fd0d, 0x7407641a74fa1314, 0x8517941c5bf0c69d }, { 0xe41cd702128d8584, 0x6a75d2be2ddf789d, 0xd346de17bcdd1114, 0xf4bcf842a473a2af, 0xb74b80ec2dc62b46, 0xb29670bbd18d38e1 }, { 0xd16777edc5cb9a88, 0xc1a8fb555638aff3, 0x9bcd1c634235d9ee, 0x8b8792d2e7d40974, 0x4df0a4b5b9b2c3aa, 0xcc23eac3ae0e024e } }, { { 0xbedddcaeb91a929e, 0x8b22f447a5b31341, 0x7fa8215e0d7d2d1b, 0xe3156f1a68ac7405, 0x55ccd118b69e8df1, 0xaf50d0898cd4435c }, { 0x781dbe38ea82b73f, 0x55a96c7a45c3a572, 0x67d2462c7a067f14, 0x99cf89d50d15512a, 0xe6b727a0b433bc59, 0x26c39a1f5e37ebfc }, { 0x8e25439ed8eae1f8, 0x9b60c3bcd4ac83f7, 0x934e626822e4e8a8, 0xf458f0acd153ba3c, 0x23cc4c10f66e6d32, 0x033f8967d871bc } }, { { 0xf3b8ac72b195d71c, 0x372a4903176ee97b, 0x679fa641a3eb0f09, 0x70d24104668a44ae, 0x642998c4c9f4bf3, 0xdb2ffdc4e172fdd3 }, { 0x3c3b747d86a2aae8, 0x5ffcb202be20095f, 0x37150c8a3961d102, 0x81d6774435430af, 0x58686a1aa5dcc406, 0x8febb292025d156b }, { 0x17c7c1befa1e2259, 0x2144af5ebd7de582, 0x619fe5f644078827, 0x90a0a5d5ee2abbf4, 0xdf3b24a0231d307, 0x3a845226a6cebb9 } }, { { 0x285d3c54e1107764, 0x3405a44d9abc89b9, 0x23fa7ad9de846142, 0x98013af9e98c9613, 0xa0dc1a13a86da030, 0x1115a7f7d8c7e76c }, { 0xc872e756c42eae1d, 0x7a4eaa2e8b5e138a, 0x48331aaef06fcfab, 0xad53f2713e23c51, 0xb613020c684c41aa, 0x36f94dddc6304cad }, { 0x33dc43d5a44fd053, 0x750ba34e6e0932b8, 0xd381ec66b37cff4, 0x56a474270a52dde0, 0xa7d72912d3c5ac65, 0x2e0a7fce0c07804d } }, { { 0x96948dbc593baaa8, 0xd735667ef5cb5d30, 0x242b274163db0161, 0x534e554608de1653, 0x671e91fa274d51f0, 0xa821e7a6c2a83578 }, { 0xb845738f979f3a51, 0x473b396949eae5fa, 0x255388fe459e418f, 0xc2129200ca62bdba, 0x7bb90a144516304c, 0x4fa0c52a0ccb347e }, { 0x1b091a0d05050e79, 0x6d5ddb9ddc67b451, 0x7081fa4acb8c8ca7, 0x79e4924de8aaf5fc, 0xb2f92f87d8afd069, 0x2306137829ed7be8 } }, { { 0x4afb85cfda29cfc1, 0x6301109441084c99, 0x3b7e4eeb17a51423, 0x3aee7ea8ba8166a9, 0xde43aa7d0c18c680, 0xfdf516472f3a5c94 }, { 0xd250bc360eea86f1, 0xd8f49cf494ecb675, 0x44ef87aceb9b3944, 0x3e064455fa5e338b, 0x38bec8c1c8427759, 0xb6fc5dd581584ce6 }, { 0xe0ca644bf2a3a306, 0xdddefa011f9e04e8, 0x9e89bfff70f43874, 0xec7987a0aba505e0, 0xe9b627da9773890c, 0x37dfe900e654d763 } } }, { { { 0x2dc5827c429cf888, 0x36e73427f240c10f, 0x5d1686376bcdcaa6, 0x6e6ca53e68b3f2b3, 0xdfe8a871430e99a9, 0xe8acb7f0afae5485 }, { 0x51b962dfb3aa5711, 0xf66c7ee45ef6a001, 0x9c137b1134d394d0, 0x7a87fa21e9dafe92, 0x632855d579b623c8, 0x5ef0457a1cc44bd2 }, { 0xcf0ae5f6a5db33c4, 0x31b2429407c2666, 0x4c44c5da74a36f81, 0x7dc407e775ca73b5, 0x5d6c0bc410f9deec, 0xcea6aa5cd7aba6a0 } }, { { 0xadf4fb9c7bdfea5a, 0xf067165682bb56aa, 0x242f64a7594e4fe1, 0x1883f45f2d0b7c17, 0xcf5907758d5b07aa, 0x3c433854b179a706 }, { 0x67c5443dbc29c821, 0x92a5afb7471840cc, 0x3da4a89b4edae660, 0xb1574d15f357f3d2, 0x87ecc9e9c2b329f0, 0x38825d25fc0991ac }, { 0xb44e81e4f93245f, 0x73ca5559dd8e29c5, 0xcfe245c61af1f8a2, 0x84df8ec8dd27fcab, 0xe46709e93118cfd4, 0xdefd5ddbd4b62238 } }, { { 0xe5472553beb045f, 0x40c9c9982bf2ee99, 0x47fb9b847833a21f, 0x4f763c6dda1ce615, 0x98893066ed78b121, 0x417286fdaf0c8e02 }, { 0xd2194097226b047f, 0xd1a17535944817a0, 0xdc89eaef87cfa37f, 0x2674cd6de322f496, 0x7c61503ebb80b41b, 0x38f34a496fe431be }, { 0x984510707e60f09c, 0xadbd39818df6c6c4, 0xad50c8c41b46f170, 0x7f850b1b82254d1, 0x3bfc1e2a2c97ff34, 0x3e586ac3c4201170 } }, { { 0x207898b2a62379bd, 0xff0be769afc30b0, 0xf26b3dde299841d6, 0x49e77c55d87e6a3b, 0xcd6366f906d15d27, 0xb6dc0a3da8cdccd4 }, { 0xa803a8eac2f46ae, 0x64e15bbd8559480b, 0xc3ae76f56e2861ac, 0x81bb915d6b2f0ecf, 0x85d3eddba6880306, 0x3d785c4e1933abb5 }, { 0xb2b6de5d4fa2c558, 0xf5c2808c70967db0, 0xf88f054c1620e7dd, 0x970b24339c4f45ef, 0x80788ff1a2f7752b, 0xf2d1358998a87d38 } }, { { 0xaf4acb7b1d501d0, 0x5b4bf8d382ceb77b, 0x9fe4a6689b5de711, 0xa6ef971bb67a4639, 0xea4ebc0ff34a968d, 0x45dfbed55e869de7 }, { 0x121245ab59130756, 0x82ed1aba33ded6ca, 0xf8b5339741c12f64, 0xf1d395f399fe9963, 0x1730ddf36a7fea8c, 0x823b1cf9bcad3a1b }, { 0x90dd74aef5d813c1, 0x6d2856d7a4dbde5, 0x68037c1e5bb64330, 0xa4d0cbda9b226a53, 0x4b4f237882cadd00, 0x8633a9059f80af33 } }, { { 0x2556336ce2254380, 0xb12babea5024d3f6, 0x9e40a9a9629539f0, 0xe03eb890e0b24b08, 0xb412744f2ac1b935, 0xf7cd31b5eaa38622 }, { 0xaff5f94bd56273d8, 0x338054e2e0b506e0, 0xcb413841bda79ac6, 0x70e64e73a691da93, 0x4265524aa5ccbd21, 0x1de48c58322f8ef0 }, { 0xebbcfaa17232f482, 0x48b23171bce358b1, 0xd5f8adaa13e7a62e, 0xa21fe7866226e394, 0x64c99b3b9be68f45, 0x5efda162dc7f8f3f } }, { { 0x2d6e042864a5dc69, 0x5d7278c264be815d, 0xcedaad5c4193089c, 0x6bdf6c24f7d3965e, 0x6ec83690c141b4a3, 0x3c21b1f4e467f000 }, { 0x853c9c63ad091824, 0xf9ee1d7b74fafe5b, 0x320fa26a6bd88791, 0x4a8bc77402063369, 0x26ae2a889aae38d3, 0x3d49e382a76396e9 }, { 0x36120f79c60ebb27, 0x5387e83973ebff78, 0xe1095b5145ecc4c6, 0x7307e8076b8f061f, 0x1deb8465778796b3, 0x728b472f7e0337ea } }, { { 0x5213999760dacbf2, 0x1d09301ca30af0c8, 0xf6afcf8b7c92d66c, 0x9838853984956517, 0x68cce3a4e2e4d5d8, 0x9ff6c392cdc57708 }, { 0x85c23d7d04d9526c, 0xfedd15d57ae40a7, 0x6fb3a32150af9359, 0x216a6f29581b36ff, 0x95d0533708e9cff1, 0xd564ea36e3661b7f }, { 0x2adaf7d0d8c701c3, 0x8f68b113f0caff8e, 0x6b3fc83b956024b5, 0x8eabc5427ce5523b, 0x862a65a79ad69028, 0x17ad9834bd1d69b1 } }, { { 0xaf19b30757078d69, 0x9100eaa73244930, 0xbaa4425e1a3f2d5f, 0x5378072a71c41527, 0x1daba3caa701d70a, 0x62e24489552908c1 }, { 0xbebfc11af84ade5c, 0x6b184de8d1f0ed1d, 0x6838e0369102ebae, 0xd229d97273b8a64c, 0xa0672a9b4c62c01f, 0x9760ba78e0f07a4e }, { 0xe847f2124d5d0428, 0x1a94ce5edaf6536f, 0xc1aa666dc6815a56, 0x75bba0681c22ef3, 0xb7da10ec178fe60d, 0x58a88679fb49ba07 } }, { { 0xc3cf61103f8506fb, 0x170f5a882f761d53, 0x3d4c82b96f839331, 0x48b0fd260eefb13, 0x4a7d03813e7cc5c6, 0x8924efc2514f3f2c }, { 0xbd045c4f05ad9a74, 0xf6571f0f943c1259, 0xe81504819f03f50c, 0x6dc351fa0f34b280, 0x94b9647c202fe6d, 0x5513c4daa1f944d0 }, { 0x5e0d5aec4efdecd7, 0x349931fcb9a58770, 0xb61f3f0d2555e625, 0x1fbd41b934d955, 0xb8091101522c3c24, 0x44ce6fca6868012d } }, { { 0x2455afb201b01b6b, 0xffd67a9237e61ff6, 0xd26eb9c9fe823edf, 0x2dd281d44bd6b292, 0x2bc5aca087c87090, 0x8f47ed5a0027d051 }, { 0x89be068e2cf6cbc3, 0xe56ec4b42684a902, 0xf663685a89429351, 0x665b9ee851dfa8af, 0x167d620bee1dccd3, 0x65492bc3b3b4d8f2 }, { 0x4315db29bd11f868, 0xeb638e494b5bd351, 0x10894ea7cb0a97df, 0x684da517ddf33933, 0x470bc441de708da5, 0x673d21c6736109f5 } }, { { 0x417a162c2d459a4a, 0xaaa1984e638d33b8, 0xa71dc2950775e456, 0xbc6c296827c05cbe, 0x83af61113a8ad5ee, 0xc2635f449996165b }, { 0xd827eff32eed468c, 0x75c1856c70ddf9b9, 0x37a15a660c4d6f37, 0xc6dbf5f77a6d5092, 0x53b2d2232ea10896, 0x8f44bc5f744d88f5 }, { 0x1dc8e83ad7af761d, 0xd9b6d6886157ceef, 0xefe4dece87d3fce7, 0xdc50964c8761ea0b, 0xc11c775690e3165c, 0x3bc6dbaaadc29464 } }, { { 0xf362cb2eb7d824c6, 0x5ea801ddd3638265, 0x9b42b97e8a03eb2e, 0xfcfd4472328da440, 0x95019e3d8d3734af, 0x581fb571e1608245 }, { 0x1d80788861692307, 0x5066e1040d3baf66, 0x2a27411f23cb8df0, 0x7fc82a4f6082bc1e, 0xde47f6f6530bf4be, 0xba6ad382de25f2ad }, { 0xf3a57f06efcba387, 0x9b88e6bc0e51f4, 0x1c77e6e4886e07f, 0xdfb5bc21aa190198, 0xa9891cbd9b200451, 0x1007e6be22174c88 } }, { { 0x5810ca3c48c07e29, 0xbe16deed32f3b4a, 0xbb89a5bacce01f1a, 0x542abc462e6d08ac, 0xa9cc20a79cbb42ce, 0xc18491d6243983f4 }, { 0x504ed19cc2efdf66, 0xd7a494615e944e06, 0x368de41083ba30bb, 0x91f137df7452b546, 0x5e53302518354b8, 0xc416651350acb385 }, { 0xc5c2f1a48df7add8, 0x765515aba74ef96f, 0x37272817fd47373d, 0x53f8261c305a7adb, 0xdebd26ed63a11d07, 0x71876fa78907242 } }, { { 0x23e1a115c4b001ad, 0x1c44a1a13c089cd5, 0xb7575d2f0eea01b9, 0x9efd5436e1236cb7, 0xb5604ca019107c1a, 0x1db9a10f3e0d471b }, { 0x4cd2270e6e2b3ea0, 0xdd43f7146dd0fa89, 0xc3639495275be217, 0x67cb622969463814, 0x6463e6ce911c2283, 0xd8b29c2ebe04479a }, { 0x66a806c104bbd568, 0x32ec4422d00f13d4, 0xc62bafb6ed366a64, 0xb9866399406bf03, 0x5d9d41c92d38cd1e, 0x9b22548bc6243e43 } } }, { { { 0xa4ddb2b93fc26eee, 0xd8a2ea56818aa044, 0x3504099794743be6, 0x1c5ad3861f1ab7f8, 0x249c8c28a9d9ab7a, 0x734a3e5a9eccb415 }, { 0xb268fca06b2a56c0, 0x80c928a7defecbc5, 0x21d8dbe0cc02ef7c, 0xeae262b09e3d13e8, 0xa2e273406f9866bc, 0x20396aa8417c7d0f }, { 0x87c3778d7bebb1e1, 0x54abf4323dbfd0e3, 0x357a1470eaada2e7, 0x19a1bf6b2506a2b3, 0xad1a6e6004d5437c, 0xa7d63ee12b67110e } }, { { 0x2ef862ceafde1a1e, 0x2e2b60228a115eec, 0x10a60e5d827d01d, 0x9c0472bfdfc77df5, 0x7214095b21171589, 0xe6773402f26e91cd }, { 0xdb574ea0823ecba3, 0x370b62285f1dbdf7, 0x474e63bd396041ef, 0x36b80bdc058acb79, 0x7ab4776a91cd033d, 0xd346a8a6bd2daf80 }, { 0x6dcf7c4d0805a603, 0x2a8263892f136bd6, 0x1efdc1ce457578a2, 0xeea925635a673879, 0xbf4ab3a7ab9002fd, 0xedfcf2982a93fe0f } }, { { 0xc55233bfe483b270, 0x6b23682b1034b862, 0x9b64b694807235a6, 0x2b905dbb1575f7b3, 0x431e3af060fa5ec, 0xaab8076bf63141ba }, { 0x3bb65a92795f843a, 0xa4d50989db303025, 0x7a3abd4da2808564, 0xbe8f5ee4273233b4, 0x4e0ea32e6024fcfe, 0xf6f29d694c066a87 }, { 0x2eae669c5928a9c3, 0xb923f2f2b1ddd629, 0xb4dae5b87ae78809, 0x4c2d3728f70e554a, 0x98b772325e0df891, 0x18cb1e05948e905e } }, { { 0xcece047d09fb904f, 0x9cca06d78b246366, 0x1f6769b9c1c47ac6, 0x347dbd1d33a0072b, 0x36fa975726e3f9c9, 0x33f3e3cdb3791622 }, { 0x67a091a0aa09d77c, 0x46e4ce60264d05d, 0xb9cf888c2148f5de, 0x8e070536ca3247a, 0xc197a2603a296f69, 0xb3f920a91fde860f }, { 0x508c1da5b5e7136d, 0xf9621d16eba68f45, 0xf4cbe8ff7b306f17, 0xccfc6d59ccf916f4, 0xf4d2553aa30dfdb2, 0x27fb7c7e0c3be450 } }, { { 0xb1b29f3fc5cd55c6, 0xeaeda6130748fb48, 0xc479624cc36b7986, 0x709399d097dc2970, 0x356657832bfd0dcb, 0x8fd536f6b5b9903b }, { 0x4f224409dff97dfc, 0x9a59e2fb4d8ecc6, 0x4c102ccecf93b803, 0x31ca16c7879cd180, 0x1ec647342eae10f7, 0x1904eb24e5ef427e }, { 0x14019e3f99143ed2, 0x39c0fed3428fdbbc, 0xa888474257de7b61, 0xfa8fc07ed9721bd7, 0xaf88c8868f7ac951, 0x3cdde3dc20c95e48 } }, { { 0x39f9ca51c918f8b0, 0x1afe6d2e1044ba0c, 0x332e82a932da32ab, 0x431c1477180bfbb, 0x46fd9b216009dd3e, 0xf520db9cc2b520ea }, { 0xf9550aa2218c53d1, 0xecddf02a95c0ee60, 0xc612cd6d05a0c99a, 0x4434af8cdf572a99, 0xc4aad0358b3be934, 0x515b45de01afc1e4 }, { 0xe308f6c8f25dbddd, 0x14b8962c7a925528, 0x441b2cfd3211a802, 0x67cb443eed3fef15, 0x6ba88af38e397b1d, 0xd85019b6ca6d32fc } }, { { 0xa5c0f0858568cdf9, 0xb43788242d87c3ad, 0xfbcb5bc3cdd1cf62, 0xb225c8680b3fc64d, 0x73a772d3acd702cd, 0x25b875b0ffd9024 }, { 0xb32addc882a1373c, 0x852d87ce1edf2f75, 0xf3577a1f645e0334, 0x5824cc994db0ff39, 0x31ea441eb15f9015, 0x80e059f132d72422 }, { 0x43f95b87535192a7, 0x3d50ba4256e78ab, 0x60df4bf624473870, 0x33e974b683806173, 0xeff1831bf5623c3e, 0x363a54cd8763b5f1 } }, { { 0x9ff003bedbc58f3a, 0xb78e5fc81c2c7d44, 0x6574ccfae6e36a45, 0x87f97b8c903528c4, 0xc9102bc745ae3df, 0x8a91fd6c1e840fd8 }, { 0x41b7d11d94a82f9b, 0x3141fd81b437e0a4, 0x820d1e755612c63c, 0xf764cef155bad829, 0xc4d8b331c1ce5e59, 0x1e0aaabe0b8d72eb }, { 0x2b2152d5a32c58c9, 0xa72ee3f9859df7ef, 0xea6f2970a5f24ec4, 0x6c6b37e78b16d392, 0xfacdb89c345c8e76, 0xdb1ed824bddfc194 } }, { { 0x4c4bfa9ef393e192, 0x37bb5515971d9525, 0x13f01f5bc933d99, 0xa838194c68503e9e, 0x24a258f9b5348b91, 0xc7d8e80e7a689232 }, { 0x8fd4696599ddd1b6, 0x77a59e9334f7232d, 0xd70089af86a457b, 0xb21d7d016eacc667, 0xb084b6730cfabf49, 0x4eb7e00a5917f07d }, { 0x3a4942fc8a892483, 0x33a6e8b0fa9cff2d, 0x1a754af0e1abf15, 0x12d5c3a8b2e77dba, 0xa0245af383e540b, 0x9cf759e3f6ca13b6 } }, { { 0x111381c7f14f8da1, 0x7fdd2d97e3a2ceee, 0x6d3d37a4130845f0, 0xceec81c87aab5cac, 0xd751069efd53d8cf, 0x36b1e282cffbd6f4 }, { 0x22579da1365aa1a5, 0xc1a1d54dc371d90, 0xe61be3c2e6ec7fbf, 0xa9d9e3ea33d1bd5d, 0x2f94488a31202749, 0x23275b07834df767 }, { 0xa590b73b85cd420e, 0x601275cf72899be9, 0x1183e172670c64c4, 0x304cef45a51618a3, 0xc0cd02774e5dd030, 0x58f0868804fbf24f } }, { { 0x154b293d9605ec39, 0x6bf99bbc3b542b55, 0xe53b666eb096aca8, 0xa8ec66871834ec5e, 0xf47c9b3ae7224c08, 0xfb5552ba5bb8cd4f }, { 0x68b6f952b8418366, 0x12ca2401447b3fd3, 0x389ed59e5cebf1aa, 0xfb5e43f917735d2b, 0x2de0d436c0d2dff0, 0xedfb1b2c54b49125 }, { 0xdd7d9ec343a36b34, 0xc0874007e841883a, 0xe2f31ef7e6502846, 0x17220cc43333f10d, 0xe4fc03c6bae4e2db, 0x3e7489d7c45d2478 } }, { { 0x1039bf0bde42da06, 0xcbd7b803cbf51592, 0x2d4df9a86077f94a, 0x49c729a19f53544e, 0xdbaf37a406f0bad2, 0xaa225bf2e63589f4 }, { 0x454df6e06ad84442, 0x141ca19a02250b99, 0x81ff645d4d12ae60, 0xa31007c4fe25668d, 0xa6428e4ac7067cd1, 0x8513b2550f2665d4 }, { 0x39a2185eba31f83f, 0x935cd67cbc8b2500, 0x494f272061491284, 0x21c3e09560e96419, 0xeb7ebf7ba60ad6bb, 0x85514155f93b6bdd } }, { { 0xe54807a9f62552a4, 0x851037d25c82001b, 0x464007f2b545fa4e, 0x75bbc630b446787d, 0x12c2e01499cb0aca, 0xf47ee70d8cc2e0e8 }, { 0xa18e78a1f6a234d1, 0x94d737c24d1d5e16, 0xf6daceea3abe3170, 0x6c290b3b82bbea8e, 0xb2a28050ab8fc240, 0x71df38ae535d2176 }, { 0x145373c76ba04897, 0xa31d70eeaf0287a5, 0x5221aef44937bb38, 0x1192b6f24b305a06, 0x84b4ededbad6d041, 0x7f3a8d796a0273d4 } }, { { 0xa0565efb3e24785e, 0x947bbf9aaca34a44, 0x11493c5cb8609d90, 0x2539f527860512c8, 0x4e9ab831759ada76, 0x6501df58a47d25ad }, { 0x2be77ba6d494f1e3, 0x6f8789f576d55098, 0x8adf0c323b4e3d2b, 0xbc3c228208d476bf, 0xaa35392f2653dedf, 0xd7f02bc729fbde47 }, { 0x51028d3654a1fa2e, 0x516db8cda85f1d25, 0x800123ac8a1ece40, 0xbced7ec55f21d6c4, 0x6e6c4eba15a8139, 0xa4a67d6b475666b2 } }, { { 0x5ea5718b75acbe21, 0x14dd0f8d2285b905, 0x8a09f328492ac2cb, 0xb13b0dd611a2ed6c, 0x931fee85e3c435a8, 0xbe9fd7ee4f1b4f05 }, { 0x3591dab3fbffba0, 0x216d5606a625c63a, 0xee8024e2d0688e, 0x6f9169ae895b4e33, 0x7e7498866b7f9c69, 0x49893fc74505cbe8 }, { 0xc498bfa3a3ab133, 0x28139786d2b835a7, 0x546dce17c671b932, 0xc2031366b8b2cf87, 0x75b17e4a17178617, 0xe6226e5a22058e11 } } }, { { { 0xaff05a60233b368f, 0xaf02756af524aff3, 0x3b096ab37d3fa894, 0x8aabcef152e4faa2, 0xd2c1d8ac7622fba1, 0x61fb14c80430b761 }, { 0x9122e619d6a809d7, 0xd92e96cd8ff9d629, 0x2e7a623864b1d641, 0x8c286df0b18b4a93, 0x6801214764cf9b52, 0xcf1f05ec2ea523b8 }, { 0xc9fa145c98548d3, 0xd919dc4ec4a76798, 0xf033815e7fdafcf0, 0xe893300eb2129646, 0x59e2de46966d0617, 0x4f21109da0af3004 } }, { { 0xfad13a837438015f, 0xc719daa91fb5db66, 0xccd1cae8e55a5282, 0x2f0472b074ec1ec, 0xcc5097d1e632ba74, 0xd3d8ddf3082e75ae }, { 0x7a51344baf95ead, 0xa6e4714dbda83cba, 0x4d5bbbf9a25875ec, 0x40fbdd062be5fca9, 0x372d584a23b005be, 0xed57842058b48a43 }, { 0x3e6746d38347bdf1, 0x17fd651248c74e3a, 0x36eee2ac09c455b6, 0x85971a17d64efb4a, 0x2bf1b2f8993ddd12, 0x8174c50190eb05a8 } }, { { 0x58b976cbc28ff9d1, 0x89da484b3de56829, 0x1d236e49e7c6196a, 0x639ad7513d210337, 0x9b7321c6d644c364, 0x1dfed38b88281eb1 }, { 0x8966ba48fc42aef7, 0x4f961e757a7ae368, 0x62c14a3a85800965, 0x47fb94da641981ec, 0x5a3e3b9e6a28d875, 0xe4e465efed0e35c9 }, { 0xae58823f391ca849, 0x3c23f9eeab807292, 0xd5859a1c0ce9358b, 0x9f8b81e3c28c43bc, 0x70a9d683467ae01b, 0x591c551576ac8add } }, { { 0x6aa934c639f9c225, 0xbbc156aa17d31b9e, 0x7d06502209dd3020, 0x30cd27013ac643e1, 0xc8ffb59d9632e01, 0xe936f52fef925ef2 }, { 0x376c032b634362d6, 0xf2c9c53205514e16, 0x45b9af9b8caa7807, 0xbefbaa3687f4ca14, 0xa92b0b2d9a9c6e11, 0x60a18bfcb203d62 }, { 0x99f121fd506a75d0, 0x13f5da4e1f70397c, 0x8cf787a21805cd39, 0x1c240c0ede47ddd, 0x71f611d0123dca4b, 0xc7215c46d279dabf } }, { { 0x6479b526be364911, 0xba85081a6fabaabe, 0xe4ad37755d484210, 0xe2cf7051f11397df, 0xb16908f41c22d2c5, 0xd4d33c21059626c }, { 0x9330f689e29f87f0, 0xf6008379a40d42f3, 0x1085730bbf16e325, 0x2aaa55961e35a208, 0xb34628f87b1d417a, 0x29a2f72f049df147 }, { 0xe0f24dbc5402db52, 0x9238d379fff8a957, 0x7ff740480699089b, 0x50ffe4b69cc5b5e1, 0xe6f7cf38f1ce284f, 0x1e1c44bc366b3db3 } }, { { 0x119f72a51be44daf, 0x2d88070da4c4d053, 0xb93d1bdbb34fae0, 0x6a9624886b75f437, 0x926711ca90fa8724, 0xcf438cf27781da57 }, { 0x687e4ef467d02370, 0xf0771465c4e429a9, 0x3c712afb4fa9f81c, 0x3efcf65a6b92c856, 0x656206d90e5cd3f7, 0xf45d729d326b3999 }, { 0xe26c3de65d8d6de4, 0x285b6e90b00875bf, 0x4f427e0d866715ca, 0x7e2b85b56fc31f7b, 0xa601543bd6204638, 0xae66cec8d3d1856c } }, { { 0x74e8d84b9ec36701, 0xc362aeef485479b6, 0x14211e603a535ab, 0x8be2cb51a0624d7a, 0x7d26d3b84d72e78d, 0x876de6cc64116862 }, { 0x247837a0a95df8de, 0xe34a6079193a128b, 0x51a0cce5756eb8e5, 0x804aa02f5da60a00, 0x2b5f00fcd9028760, 0xbce1e4686360b38a }, { 0x3884cd6093f561f, 0xb3b68242bde8a1f1, 0x4f9737bbc292c44e, 0xcf38a8b99b975a4f, 0xa6cea38888623231, 0xa8ffaa8a6580614e } }, { { 0xd29193b40fb57128, 0x59580b6bc3807da5, 0xc11043a0f965cc98, 0xc0b0d6e277307238, 0xf4ea202bb0148d97, 0xfcdf0f33652671d7 }, { 0xcc8edc3401b82965, 0x23fee8d60ff42c9e, 0x8299275430dfcb25, 0x3962b0f3a2bb8088, 0x230baf4e21febebe, 0xe73a97f2a8bde5c9 }, { 0x9ed5988017ae6a3c, 0xcf036fa6b4ce2636, 0xb78e4aa4db6adad7, 0xec25a160c06b241b, 0x809279059d32965b, 0x561037c781c12569 } }, { { 0xe326433ce802cf56, 0x6ca7469645f86ff7, 0x61120717074ba918, 0x62f61b9825b3f6ba, 0xb86b3f7687193745, 0x914964223910dc9a }, { 0x8c0c410bedd9c2da, 0x66d6568e43e67d3e, 0xfc3ce55e6f815508, 0x7aba656f0e1a7505, 0x63d9c44b24aec837, 0xd851c7371628571 }, { 0x2ce7dc57237ef6b1, 0xae840c99a32556b0, 0xa1155b084fbae5b0, 0xc19071f39c3b783b, 0xedc56c72752e5805, 0x7576294a4d185dac } }, { { 0x8aa8bc44ea6de42f, 0xf9ddcd7b7279a979, 0x9ac8bafc7dce47fd, 0x6e279b29000678f7, 0x6a3200020dacc153, 0x89424da95d3f6675 }, { 0xd7595984c126a1f1, 0xa8da9f94fd9735d5, 0x36912ca1a1ea3969, 0x1bba1dc0cc0df575, 0xc19b48689d5a7269, 0x6a9d9f240cf01fef }, { 0xed65bb736b4d17c1, 0x24a7420f03203596, 0xa1a96a745586aff2, 0x7d87de443709b096, 0x37c8cea7ae3c584f, 0x98d6402bcb8f71c9 } }, { { 0x7d9359dc8ef6c8f2, 0x71b06d3f7ae1d58, 0x3af5fef235545485, 0xdccace912daf3fb, 0xe32bc9cd73670c0d, 0x7444e956598b201a }, { 0x323dbdf6b661d70c, 0xfa64d7417c3cd366, 0x82f79cf9f1f6522d, 0xdd85c65d8fbadd0f, 0x8fb1c9b062116a17, 0xb127d7f5047e372f }, { 0xfb48e3b77af0043, 0x1b3277286c15c53f, 0x1440f8a909cd3db2, 0x6624604e65f13b4, 0x55083e1e745d4fa0, 0x370c81ed2cb8bd00 } }, { { 0xee5f49cb52d28d6f, 0x185aa3188ad133cc, 0x3cfe5dbb7aab8e67, 0x714b673a1dbea158, 0xe943c213ec093431, 0x22ee19d8e8d9a448 }, { 0x41deb35b2000fc48, 0xeb76435ee9939f33, 0x378c525b35606b5d, 0x4acc4db9a390bbc4, 0xee79fcc1098de53c, 0xa89360a34dc56b3d }, { 0x1b4645d4527e21d9, 0xfb20a7ae00f6f996, 0x247989532c445de6, 0x3bee8a6222bab4fd, 0x72d78e3e178c8d90, 0x8dc0cef00f7bb656 } }, { { 0x20ac53738fcd20a9, 0xa4c600a17f62319d, 0x5045837daf933db3, 0x12c7b1a7c939792f, 0x16b9b33530ce7347, 0x331c85858a2aef43 }, { 0x6009252e46a695b1, 0x2815d45b27e8147f, 0xf492c87a71163ee4, 0x39f1db944ef76824, 0x3364adf80fe8a662, 0x6ca4d468e919d1fa }, { 0xfa8c8691fcef72b7, 0xdadb6ec3aef5f56, 0x984b8b3738f9c010, 0x9d72a4aa90a64aa3, 0x4a9a2bc664a13913, 0xabc23e51a88b9aea } }, { { 0xf6f648df80f38dee, 0x9150febe26d69956, 0x91c02bf8fc96b1e3, 0xf08b45c3212d1f02, 0xac942910c5581906, 0x5f925f2fc8ad7ff }, { 0xfb9773beab171dfa, 0xc30ece02eedbe370, 0x90ebe9c50a47f708, 0x53141e2a46cc379f, 0x809a55602b9c0b50, 0x49da3324854f6982 }, { 0x57ff17aadf3a7340, 0x9b0131ea26a3dcde, 0x77463f3a5c97e6a1, 0x4a4265532d1c1b9a, 0x222cc92ab38b2ba8, 0xbf1eb09408e8802f } }, { { 0xec9d2b691c03f9d3, 0xd6fbd8553f2128bc, 0x1b665f0f9e0801bb, 0x57a3a01de23283f2, 0xd06008c2e918f6ce, 0x8c36c3a0a40b6534 }, { 0x9ba65ec1b72a28fa, 0x1b32565c854dd37b, 0xa9bb9a5b40a57629, 0x7ad9bbbe6ba88ba7, 0xe4393cb4a41bc8c9, 0x1a5378c44062ac87 }, { 0x10109278e75f1f40, 0xed7f0fc68e24820a, 0xa1a7ef4daf277415, 0x335ac9317ef50705, 0xfbba8ed99de403fa, 0x2fb1d3c2aa5471a } } }, { { { 0x249a0e91509d5192, 0x93a782b38e91836e, 0xfd5c5c59323866bb, 0xc5906b20a434e6e7, 0xe96c69e2837ac91, 0x8d8da7a4dfe8ae94 }, { 0xe9d362203704e82, 0x42e5aa72fe72fb96, 0x647b8a2dfcec39cf, 0x51a476a90cf416ac, 0x72a82b56b43164d7, 0x6900001d214b810f }, { 0x209d8c32976d9ff2, 0x6475f51e0aee5fbf, 0x1273db06b74e0b57, 0xfa0c8ea043a67e93, 0x37b814e47a3d1d7c, 0x8bc23c1caff1aa6a } }, { { 0xb0ec7757e5306ffa, 0xb3f333d0c38c1511, 0x65eb669e53005973, 0x6787fd10887b1588, 0xfe8f5b93248ddef7, 0x45554904deee9588 }, { 0x28caa6c3e4f6c1c0, 0x7263a84769460f9d, 0x62c35fc1f7f7be64, 0xd6c261bfb911be88, 0x1c97c564449c1c5d, 0x585ff8b70b891e09 }, { 0xb67b05cd73b37f2b, 0xc13aac472a98a764, 0xfe0a60feaae255ce, 0x5f1643d813f7b188, 0xeae56e7f6e7c31a6, 0xf57499d352302cba } }, { { 0xb2602988244ec7d6, 0xa06fef1d154d3cce, 0x7557782f906f659d, 0x5be8bdb803fc9446, 0x236834999740a74f, 0x51ec61c30c228a48 }, { 0x90f7b2a825dc7116, 0x78a324bbe88c2b9, 0x615730a7213611a5, 0x7852a054bd7796aa, 0x1191ea8fc36eac24, 0xba07786e009239d0 }, { 0xb170092efd5fbd73, 0x8705c8272ed640b7, 0x840b4c6a25f67878, 0xe3adf0a17cdc4b0e, 0x5a93d7a366611c94, 0x574dad313d59372b } }, { { 0x37cc85ef1da5995, 0xb3c638ac755b1b85, 0xa2dd90f8af18cc33, 0x3ab209b0188f30a7, 0x906bff525476327d, 0xaea8d586b7259c44 }, { 0xf2b3ef9e8a1a5d4a, 0x6bd85ec0b7e8e964, 0xd47e262cab67f405, 0x5ae7967d0e64877a, 0x15abc539e4a59c6c, 0xc83d77ebf0f96bf7 }, { 0x6f56f55bc4e55f46, 0x3247f4e88151fe23, 0x825be38ab5fad147, 0x46f461b8d396405e, 0xd3e44739bbb07bf3, 0xaf51720a5ae1ce38 } }, { { 0xd0896a1084a604b8, 0x5f4a1309b0572d7, 0xb018466200922a4c, 0x39a6d7956b8332d1, 0xc6473d27783a0f83, 0x1bddde4125c324b2 }, { 0x4cb8e24ec87ff375, 0xac05b1256611bfd9, 0xd013ebd2e7289e76, 0xad647935a8ec0b2d, 0xb95ca1398ec006d6, 0xdead57c214639773 }, { 0xe315067910285554, 0xc7ffcd9c0a7debb4, 0xe79ea4399741bf88, 0xfe34055186a8b48, 0x2826cabc39a5e4a3, 0x97127bc65b97060a } }, { { 0x3cceaf2ffa283d64, 0xa1d0bbb4f2dbe96f, 0x285d5a2df4820a37, 0xb3e3bd9054c8ce9b, 0x7eaa19764badadf1, 0xf276cd3f8490592d }, { 0xb9faad00615197b5, 0x70dd285fe5b70df5, 0xf3d255d46c2468aa, 0x28e2a1868a7c4e, 0x3328363ca0ecf452, 0x72ab4c46abf5533a }, { 0x77d05290025ff326, 0x910f09dff9efb727, 0x20ba1feefe9f24ba, 0x4976e57798c2a6a1, 0xaad8cb1b45cc5424, 0xf7dbe8be6f88f8ad } }, { { 0xe36c7f22071cfe43, 0x3218331a675c906d, 0x7035cb1f448a066e, 0xbed8ee8d6aedc322, 0x3985903800185ad, 0x66155efade2e6978 }, { 0xdca36a4d3f1e90f5, 0x6e902bfab16ff930, 0xf61fbf82b37fcf27, 0x7613cc132d554e25, 0xae81265ea8c3ed5a, 0x83e6510e58fb053f }, { 0xd02e6199468a090f, 0x8dd3347e463580da, 0xbd3490a1a6e6d60d, 0xe430bf0dd22c1cb0, 0x38ae5a7138d9f66d, 0x535bf300a93ba9aa } }, { { 0xdce37b48578f2054, 0xff9cb5b3cd6e4ace, 0xc060a90b0b50a807, 0x8972855a16bd8203, 0x36e5243313f0afea, 0x487b2f80f49360b6 }, { 0x49360ff39cc80b4a, 0x4e4e5eea4d27334c, 0x100d67785cc65bd6, 0x73a38674778db48f, 0x4866af7be4ceb2be, 0x43d2897121b29d7d }, { 0xe33b00e1567e5098, 0x62b28612ddcbaa9e, 0x7dfc68f8be3aee82, 0x2c8429fe0fd2d381, 0xd05430455ffa3852, 0x664b8224134f204b } }, { { 0x1351ff4e3b72627a, 0x9b835b7d10733dfc, 0x597d38ea956b3139, 0x347069c936427a6d, 0x129a83708283bef8, 0x62dbdb92ec098b2e }, { 0x153974e57581adb, 0xec31fda7de915959, 0x2893dcf3475cbb7d, 0x4116d3c651b457ab, 0xd948c020913696ab, 0x5fbc645bc7380fba }, { 0xe3a7ab83187366b5, 0x74b670bb63cbd000, 0xd169b2831de81fff, 0x1f024abf707ba360, 0x95aa2b75a1845b34, 0xf666a4986077995b } }, { { 0x127a0d119110aa62, 0x8e250ec3e784b73b, 0x9e251e75e7a088b0, 0x8355bd443c6e0063, 0x7a17e617cefb8a96, 0xfc334a5c2b1aeacd }, { 0xe221f8c72c9923e8, 0xab22a1bafb17b915, 0x2870c81a2ef7d370, 0x9a3a6054dbfb2043, 0xa0478d7c76c8d363, 0x1c80d0b15c6d7819 }, { 0x73701cc232f29902, 0x908368eca4057cb4, 0xb0f4898acbae2e94, 0xaaf5c3df190273ea, 0x7ab3998d50fb8392, 0x83435bed3d04c592 } }, { { 0x8a5ab0b0bf3317c4, 0x77b450c9f6045d2, 0x265a535ed64dfa3c, 0xbe7698ad34b7b5dd, 0xd907e9f3211ce265, 0xb6169cf774ec59ae }, { 0x1c7ea53426251990, 0xf53d9403236c63e, 0x8af424c4c08b8129, 0x682a5ba98a56ff7d, 0x4df4cdc6c87d8f21, 0x7cdaee94017fab96 }, { 0xeae59b5c45be51a8, 0xb29b691097d1a02b, 0x186449605c75343f, 0x17dd323486940ea1, 0x7760e03e42ef9718, 0xa20583ecfa7ea4b4 } }, { { 0xc59871e99b2d144e, 0x595407084661d42b, 0x317aba2cfac42270, 0x5e86bae9e5fc3f77, 0x66c8ba316c509f77, 0x7859a1e8e7d9d401 }, { 0xb87b10a187274571, 0x7d4d712d3f2e41a3, 0xe9525618e2dac559, 0x7a108f1305b77e82, 0xab5371a45005040b, 0x71133068b67de633 }, { 0xb185ddc75a796263, 0xe25ebd3a32f8d723, 0x6ad71fca02e9ccd2, 0x990c65914994dd14, 0xbb8ec5d63e44f2fc, 0xba72e31028ed8e85 } }, { { 0x6d94920784a716ff, 0x1cf3a1d2167d516a, 0x533b2d82278881ac, 0x9e142bbbe5806a16, 0x735a3ecce7ec1f5f, 0x3e390666f7a46c34 }, { 0x5d118f9dffe799ae, 0xb33adb9aa6e45f1c, 0xfdbcc7749447707e, 0xb634d0acbc5e39b6, 0xdfc768af1f5e1afd, 0x2fc7fdbf17c61975 }, { 0x757c05f45c47dbd6, 0x64a2a00deb10b25b, 0xc1f73dcb303e9dfd, 0xff9897b110ca9b44, 0x8f58c1fb2b35630, 0xdafdcf49da908b70 } }, { { 0xb66d23aeaa752f52, 0x651131fdbc7f7afd, 0xa16b0a53ebd229b8, 0xc78accc82b544253, 0xf48e8000da1e1ad1, 0x1dfb77ac19dd13c7 }, { 0x2584c4576917298f, 0x996a9bc4da62ff3, 0x9e634cedbbc12222, 0x465250b39d349d34, 0x6b2815c26039ba51, 0x1475892ac54a576e }, { 0xe8bf226ad49280a7, 0x8ee52fcf4fc32517, 0x9427599e1702f8cf, 0x5cb417a12d2956c7, 0x23d187d37a6bd457, 0x871a6f8af3f47da8 } }, { { 0x8f36a08afe4b7090, 0x3c5bb79e30ec74f, 0x65c6ed4854d6e9c9, 0xe3b1f482a279d032, 0x50c674be0521d2e6, 0x62ab30473aca5792 }, { 0x29e18b59751aecd4, 0xf8e88fbc4bc4e756, 0xded4c089b6afe186, 0x10507363d60d9f5d, 0x5d602a1615e29c4, 0xcbf71bad9385c680 }, { 0x470d9403350a66e8, 0xe08137a4ede099f0, 0x890f5ec31634a662, 0x4958878464784266, 0x29bf3b433cf3442c, 0x63e338484d729e38 } } }, { { { 0xfee005330c21bb47, 0xdd2d16e61ab0ffe3, 0x82f4b24e10b08227, 0xbc9948202b85c69a, 0xb503c298b11a5fa6, 0xa0fd74f4320af99a }, { 0xf54b4aa565814445, 0x5a00991c57b52ad4, 0xd3501572d5252d5a, 0x68387a436c869fcd, 0x128a0bf153d0851c, 0x640e53695f305adc }, { 0xf1d2d63eae7a84c5, 0x2bc2edca18cbf7f, 0x6e48aa936c77ffbc, 0xa1fde7380b1e4aa6, 0xb728d931416c6598, 0x139bacfe733ecf84 } }, { { 0x308c41d806da554, 0xa12e54d08e146e4f, 0xe6b08e6c3fc3eb46, 0x493ef48f05242695, 0x5a04b324edb0193b, 0x6933b47dc72ca5cd }, { 0xaaf9678e50ca8084, 0xce26b22060ef8e4d, 0xbb5e843535cb5b30, 0x4a02563e8a3a3cdb, 0x648795b2a9d4cf35, 0x6e87bb11d677a07f }, { 0xcf43b5d36ce8233a, 0xa291d26fd35384, 0xdc9b796060ea8df0, 0x2f79ef3528b4d591, 0x507bf4fbfa2c932b, 0xec80ad01c67c0b22 } }, { { 0x1ef0af4a4c5198ce, 0xcb72de91f078d696, 0xe34610f570b5f437, 0x741ebbb5e2c83b35, 0xcdff68d1498e40bb, 0x8a4108c9e9dacd39 }, { 0x9c1a8116e5b670cd, 0x95defdd0c5cb326d, 0x25604d5cc06ee0d4, 0xcaaecda9896323f3, 0x2ec81bf63944d44c, 0xbf81e2944ab4c1ce }, { 0x39f2364fbd191c2a, 0x876f452e7cb931f4, 0x67766d7c128db523, 0xeb5e9d4090cfdf7, 0x55234480de47fd60, 0xcdc1a632aaccc6c8 } }, { { 0x30f0b260604f75aa, 0x44e837fb4177eb23, 0x9252228ef1f13160, 0x159a9a5761033a7b, 0xb9f87403dad40969, 0x4f3c8107f1aee26a }, { 0x8433695113e763da, 0x4ae42d72589349b0, 0x2bfdb14418a581fa, 0xc1e37ac5e8b9c6c7, 0x4d006f1c6930702d, 0x3188ac322405018a }, { 0xf2038d15af5c8479, 0x2158242cb49e5124, 0x3693f2bc63b694f3, 0x5e90bc197cc7f9d5, 0x42e9a92328921c9a, 0x1741cc0bf004ff47 } }, { { 0x5b68873edf6416d4, 0x8e16498c8bc05f1d, 0xc43a46103243456b, 0x4b8b97db36c7dbfd, 0x9d798da651b06c64, 0x25dd4c66c27ae371 }, { 0x5c3e1e9daccfe09b, 0x1a90df383933e82b, 0x67961440196100d2, 0xb814a2aa03a8d9ae, 0xc5a158e1bb28fe85, 0xabe4263c606fbc18 }, { 0xb461b4032d497860, 0x3e368a7a42653952, 0xcda0b6df313d246d, 0x102e01a8a2baf3a6, 0x216fd19453f713fc, 0x2f2fc81fbef53ed9 } }, { { 0xe603bcaa760eea2, 0x2f7695cb2670bfd3, 0xec9ca5fcb2d57e20, 0xce447d6c6f60e543, 0xe1b47638cd3d2634, 0xd23c1a50c4f972c6 }, { 0x4d703920264ee565, 0x7da3a3ce0cf0acd1, 0x6b17fe57d9b2f2c1, 0xc7fd879e346109c, 0x7e9baa883f3eff33, 0xb5c69a683dada63d }, { 0x24063c09ece52971, 0xe5a8adf349b22175, 0x6d23bf120e87535, 0xc6a6400e8eeabebf, 0x3afe9eff6d54eaba, 0x2e38e6af39a89439 } }, { { 0xf10f1881415badd7, 0xecd2b99d25763b39, 0x10a2f38cd79e9aea, 0xc9cbeef04c6604e4, 0x4ebf978794cc924c, 0x53cf125e3f619c27 }, { 0xdd34ea4197555516, 0xc8182af42efca5a0, 0x59a2b6e93c3d9b37, 0xfb30888405d0c40, 0x1c93f981484f9a97, 0x5d06f219f2d76120 }, { 0x9a37a01444cab292, 0x30959909359126df, 0x165228719732e558, 0x1a5e8516f2bf507c, 0xa40e118acf56c0d0, 0x58203728c48a3aef } }, { { 0x81105aaee39b438b, 0x400fc5c9740aa253, 0x428901b0e6bc4588, 0x5c0b89325390397d, 0xf0a7c0bbf2804fa5, 0x2a1393e141aad40c }, { 0xc27b14b74a297d54, 0xde3f394ed8e76f03, 0x3d63049d5428109c, 0x248b7f3e00b2cfa2, 0xcfbff722fd0d54ec, 0x356b7b444fa53d3f }, { 0x6edc82fa40a17224, 0x884aff89b3732df9, 0xa13528c5b6488b80, 0x43a10a7d48de9c31, 0x750da22364ef479f, 0x88a8e967b50f92fe } }, { { 0x797621f1885697a4, 0xccc03ac183c08c61, 0x9904a1d0f8d3879f, 0xc9318c045607a0ec, 0x1c82f6ed25c0adce, 0x831284b3e2d95537 }, { 0x436097533f09aa3, 0xa4203e9decadad8e, 0x68e6de4fc89b248b, 0xfe608921189cfc1d, 0x8d90de816fe09feb, 0x47ddb4e8d19b903f }, { 0x8740515b0e743b7d, 0xa84e50b1361c22be, 0x33313e3a32b5c951, 0x878daf67d4919738, 0x6d9920f62740204f, 0x920ecd69a39a6b76 } }, { { 0x2faea7a4285875b, 0x95119698ce9a651b, 0x50076a1a82ca5b7d, 0x5234ae72d25f0712, 0x9607f699a7d3bc50, 0xe4bc2f4ea3f98fa3 }, { 0x59fef42f7692e74a, 0xc9f1c38455793033, 0xc607be9266ccb4f9, 0xbd93db16249c3be1, 0x72b4608923e3e06e, 0xe7b44e38bfdf9211 }, { 0x68064fe744ed3200, 0xee25de3b95b22bb6, 0x5e85b692b2716746, 0xd1fad05dbba92ed1, 0x911e4f86f7ba9b26, 0x81c5cba154865129 } }, { { 0xc972e7abaed05904, 0x3ba4c4827ca4a30a, 0x2b30dbe4183af4fb, 0x1254926b1949e9ae, 0xaa7391414e7199c4, 0xdef5bcce5d54f430 }, { 0x8da3266b79f73bbb, 0x1e29f749ca30757, 0xbc22ba3ddf54b1b, 0xbe6ea0782f486b3c, 0xdf78d8cfa6222cf9, 0x9e0883b179d3c205 }, { 0xf63fd437de8d8465, 0xf9c2e93d9027102d, 0x5f72c54d9c0bcc80, 0x616c699fc900f751, 0x1a345911f80aadcf, 0x7717f26c158dd181 } }, { { 0xa35b4bfda52f72f9, 0xfa61d6f96317b8d4, 0xe638b3895976f6c3, 0xc62acb4838c44dcb, 0x4c1bb787ecdd273e, 0x987c46116be89f99 }, { 0xcc97dccd676c1593, 0x99a5a333bba54bfd, 0xf5ef8d7780ce06d4, 0x1744b67368800f79, 0xa951039599571ea4, 0xa71806e37ee2a8a0 }, { 0x1a8dcdfe4a981926, 0x64be6769fe103105, 0x98c379819731c1c, 0xfd9964497e42ec81, 0x3c77bdc08a67f12b, 0xf777a5542f1cd14c } }, { { 0xa8704610eed00ab0, 0x43438c4c62216beb, 0x811c5c62be4cd652, 0xdcb1da60f686378f, 0x99a1c228777e5698, 0xe29c4b948bfa08a0 }, { 0xcdbd77009af76733, 0x2bcc2eec748b6e0, 0x18820ec82e4711b6, 0xe2922023dae526e2, 0xc4cd5d8e0508e736, 0x90eefb4e1f4d2d52 }, { 0x4a061893f498e123, 0x58a944988e0839be, 0x30227675e28f2b4e, 0xb8322e1b04d99aa8, 0xe9bd9efd8ae7e950, 0xc43f79d54a322bfc } }, { { 0xd80d30d142437ad2, 0xa970f4108d09b4cc, 0xa88e32a7518e1525, 0x526b1a909fc41c39, 0x992b426d9b757a44, 0x894a07571d9cd47a }, { 0x5d018d29972c21b2, 0x668b89e447915bd9, 0x12fae496f77464c2, 0xf686278af9058ea7, 0x16d17d53c5758b85, 0xd409eba3f511918c }, { 0xac7118f13ca86381, 0xf8d642e06937ce20, 0xe2d78ccfc37b143b, 0x2acf0ecd5b42f37b, 0xa8d48f60baeadcce, 0x92f8707346f83098 } }, { { 0x45e2e34e1c5994a7, 0x8418f33d96030aa, 0x373a20236648c19f, 0x7f5ca98c2e8f6092, 0xfd81058b0790b795, 0x6f8f45f066260a52 }, { 0x93dc0cc84a39fc69, 0xb1e41559e5bba926, 0x2f7ed6e7acb31454, 0x422ee9dbbfda427, 0x78c189db2511807a, 0x74a12d4926ff454b }, { 0x4ea024318a6f1042, 0x85636c0dc390ff92, 0xee70a1da3c37b20b, 0x2dfd7ca70f08c57e, 0xb9fe3a8ec7ee1abc, 0x61339cc5c6932179 } } }, { { { 0x3fb38bc66b9291cf, 0x79c63f842eed91cf, 0x80623ed76c70eef1, 0xee3d8e3ef69a4b0f, 0xd28d5e42ddb2474a, 0x45f1c07ee1ea7f13 }, { 0xea0f864f52134a48, 0xb5786de57a90768e, 0xbf53852dd2e1edef, 0x30053bb405d1f10, 0x851d11a5cb79cc2e, 0xd29656c1a07fdace }, { 0x303e3a6540a44eb2, 0x2fa6f303043fb28b, 0xbefbb35c6d4ef41d, 0x5aa81e5829e069f6, 0x78401a59fe7e2443, 0xfc786d4dcff6f2f5 } }, { { 0x28579e778029946b, 0xce74e9ba4027470a, 0x4525fe16fdffa657, 0x4597cdd99589afda, 0xb832309a16e7fd55, 0xa1d1c1e898eb3c33 }, { 0xa1f2b12e14d8b642, 0x22362aca713c907, 0x1b3ba8702d1d7f55, 0x13abf3b9c6c76a63, 0x1455e810f6a49726, 0xa2a81df4b5144172 }, { 0x6e13ae0447af1f45, 0xbe9ce11d5796bd40, 0xbd7e6c31ce28c68, 0x6f55aac8a915a3df, 0xef57cc7e7982ee5b, 0xdef8e7dddfb488f4 } }, { { 0x46ab1f15488d1cc, 0x96889462758dd475, 0xdd28f953b9cb2e68, 0x5bdb43e5ae19e225, 0x4cb90e871fdff466, 0xa956c3a273b00b43 }, { 0x81ce07adfe197ca0, 0xa9d949e4602d67dc, 0x2e4ef32eda3eacc8, 0xf137fad203820683, 0xda1db1b552c72b6e, 0x27d3ce238d39a065 }, { 0x5e967426f740b3b9, 0x9d00bd81851d059e, 0xcfdfbf285f273cb3, 0x8bc3adf71718894d, 0x33a8a8ee90dadba6, 0x2a4eae565fb902fe } }, { { 0x356832b43c5b9a90, 0xc3b8523a5f02783c, 0xae15e0c0608bfb60, 0x49532fe64dae79d8, 0x7a28e4fec96112e4, 0x430e4caaf1400482 }, { 0x43764006f080d8d2, 0x7433021bc848497f, 0xd4ee7904bc96df2a, 0x34e3e78549c7879d, 0x76dd6f56195a50a6, 0xc4c7c1e29a07c53a }, { 0x8e19b21a93d73135, 0xa67f29c8b3bd93a3, 0xce259176816e22b4, 0x946a9bafa94d2ac5, 0xbd9049cec6f28f1a, 0x3356e5b6e6e0915e } }, { { 0x9c8ded3047889e49, 0xcad7b039a878e052, 0x57c46b7064da5287, 0x85111b706cc5cd27, 0xecf1c5f02c7532b9, 0x68fe922fc5e042b1 }, { 0xb16c811955f4d1ed, 0x57e6c124f434d698, 0x13f84a6881edfc48, 0xc942022b2c2ccbe3, 0xe6f3c0448f43343e, 0xb1afa43f901955d5 }, { 0xaefd05403c7e81cf, 0x24d6b9e761a9a38c, 0xca26d23c6aa9eecc, 0x823bb1335f26de50, 0x9d40daa10bcb0eb9, 0x749d0c6e7d0b7177 } }, { { 0xc7d30781c8b6dc81, 0xce45b0a8947aa573, 0xc09e7d72f1022b32, 0xde82a9a924b4f4a5, 0x4c493c8721fd0ec9, 0xaba3d08ba8ff5d6c }, { 0x2bfbcc471a94ab54, 0xf89b9d87cb99b859, 0xbc04ef0938ab015, 0xb2df743b44318327, 0x7139bf8d3f3ee791, 0xe7b93d6842ed0d07 }, { 0x8d3dc1813f5976bd, 0x640f6a7a219c0f8b, 0xbd4f185ef6b10017, 0xb0007bf81ab15690, 0xadb3b5e9df83f2ab, 0xf353c0067c1e596a } }, { { 0x1af4158b2042d37f, 0xbc4ba7b4fc2d7a8c, 0x18adb6139777d7b7, 0x3187f16eda999a97, 0x8e198a4465e55379, 0x7b2305dc1b1c249 }, { 0x65cba624b8a40d75, 0x64445ada416057d4, 0xef1aa7b60a6de2fa, 0x24c660a74f3f4be6, 0x5cc289be8e22b118, 0x7f7b58f9113f7b4 }, { 0x3bfe17560bd56009, 0x202d3dd777a8e14a, 0x99bc124388341d3f, 0x9e0d9659dcf6af5a, 0xe280ab002ad9d72a, 0xdaabb0b6d7fdb06e } }, { { 0x9282d116e8fdc99f, 0x7ee9a466ec967e0d, 0x572acd30b7da3dee, 0x3e4d991e03671a85, 0xd78b0abbcdb928d9, 0xfa995902dac94725 }, { 0xbb6507f171b2971c, 0xe64796c112b932cc, 0x86411897dfca8ed, 0x9de8e1718bdde010, 0x49d40d80d70e96af, 0xcdfbcf396501da5a }, { 0x54a3c559fc4b669e, 0xe00536be6225e045, 0x8f5f4ef8f4e5fc76, 0xec74b42c92a2a6f5, 0x54c32a52e8fd496b, 0xc4ba2fc8cde47c9e } }, { { 0x652ab705e0995ca, 0x418fa470919d6c5f, 0xf9b4180b396eb83d, 0xa164ad59eb25f8c0, 0xdcfa7da2f43b2a46, 0x51883b0768d76d53 }, { 0x76a9f819836a4309, 0xe02fd228bda0bde1, 0x79e7a5d538690d55, 0xf6a0590bb07a789f, 0x116151b1006c9612, 0x38472536200b850a }, { 0xf63920303d9db876, 0x73bf0b9cc1ddfe8, 0x8775cc092a2a2491, 0xde29286169392cd7, 0x185137f4bb6a35a4, 0xf698feefc12a0bcf } }, { { 0xf91f37b00d3f45ad, 0x6c54acdc27186319, 0xf8d537ad2080ac49, 0xc7f12e1424d56e99, 0x541015065aa868d7, 0x1a458c229a3b8bb9 }, { 0x4542d1cb50976543, 0x3f3e183a1f817d3c, 0x60069c14e3066cc6, 0x1959decc61fb8539, 0x323f0723ea13bcf, 0x95d9149bfb48eeba }, { 0x90d70174c7987d0f, 0x57a02ddc053c0e14, 0x4d1ae4026c64a155, 0xcd3019d67f8e377a, 0xbc93d9e722076a93, 0x2ff725e6d3fdb9a2 } }, { { 0xac081caacd7ce454, 0x8f036336339642c6, 0xcada3ab3abcba270, 0x7812de522500bb2, 0x8cb8eb6e91430720, 0x7bb395dbd8e5d2a7 }, { 0xefef71c2bbe6c8f6, 0x8448a1468235fb10, 0x36ff53285985db0a, 0xfc2cd33da1b9f972, 0x8f73d8367a6b654f, 0x9bf95e142adf8fe3 }, { 0xb84b93431b47787, 0x8ffe6d2754b4cec7, 0x18cf41a832b1fb2, 0x84d516676c6d1987, 0x7b29fc297e1d4e86, 0x74532553a8233fe3 } }, { { 0xd7203ecf1fcec361, 0x56ef3d441f2a4985, 0x20a2cd58be5cd845, 0xc82e61f835c8820b, 0xecb0560711d03029, 0x171c7650e4af7961 }, { 0xa5d0b6e7286b0057, 0x6d6fc54c6a73cbe0, 0xe9438fd6c6d39814, 0x37de4e98c012794c, 0xbfd9da133106521a, 0xb927d71ee39910b0 }, { 0x4aeba4a21f1cb14e, 0x2a5bddb18eaa70ee, 0xce2f2f68bc2a5ba6, 0xf171be6d1bfe8695, 0xe7de5b789e5f58cf, 0x646e900aa01e9cf3 } }, { { 0x197ebbace0ca7fa3, 0x91b0c63ddf8b0260, 0x56e73a1dcbd65269, 0x7d65d2ed27f45f0f, 0x9f25b51eff983c90, 0xd0c24cbd515191e1 }, { 0x2d3bb86bdd04e6eb, 0xdb37ecf108b7089a, 0xa2b35dc323b8c23f, 0x533f5c17eaf8a4e3, 0x30d77252faf71e8f, 0x99c71450a719faec }, { 0x4cbfb12e981ef1e1, 0x983a02001e465848, 0x725326ae033b37c9, 0xf39288305788a455, 0x87931373ae524f58, 0x1c682028def57f0c } }, { { 0x72d8f8fac2bd40a9, 0xc5188652865c678b, 0xfe62f110147c2a88, 0xce5f11b6ab1969ca, 0xd5d023b74d2db515, 0xf2ae33ad3850caa5 }, { 0x2f17e6ea6519b039, 0x925298f6ecd5a615, 0x2eb73c4b7e6fa07c, 0xc1141014136da01f, 0x7aeb1af395639e0e, 0xc1125ba55cb4540 }, { 0x6fd85050971b5059, 0x11a0fe9ab175a6e1, 0x8229f8fde427c004, 0xd6ea2e5807936558, 0x9b95e598af39b92c, 0xee6d044fb7026a65 } }, { { 0x7aea23936cb99fd1, 0x5c16e49ef80ccd6f, 0x531b8573d15696ac, 0xc8143a2de97f62e7, 0x87386fc65d45310e, 0x7f9805660518f8ce }, { 0xa981f6761a3671b4, 0xa5186aa2a2d99dc, 0x5fbf9a649d5b4132, 0xe36a674664f093ee, 0x3ab6e01a77203e04, 0x91888b8b179a5410 }, { 0x2c031c8df2372a4e, 0x9b5600c4d0f74cae, 0x371dce7ebf2b6702, 0x2c4eaf060e358a5b, 0x7d5899f86544ecbb, 0xbb6f1fdb445ea4fd } } }, { { { 0xfb73376c52d56753, 0x6a0cff75d356b995, 0x9e6dc85b826f47f1, 0x1d2324b049d9880, 0xe298d223cd363c1e, 0x86061c22accac5e }, { 0x94fe01ad3e8687ba, 0x201dbe45714468d3, 0x4bd380f8b22fbf22, 0x2dcb9128b64a23ca, 0x3ab0dac0bfb78529, 0x15a2ca227464889e }, { 0x7cc265c9aa6b606c, 0x5206dbd9cbaa3e1c, 0x55740cfb7d6aeb4e, 0x5e6d4956abebe318, 0xd1e43ca47c20e6e4, 0x97fd7857bfd5aae1 } }, { { 0xf95cb72096699f9, 0xbb8abb2a9a313c50, 0x30af71deeced8982, 0xcabe0f3dd6ebf3af, 0xa9948df229fbc45f, 0x76356e7b1b96cd2e }, { 0x8198d07e634e1398, 0xfc6c2f78183ed29c, 0xa0b71488cab15860, 0x4e5005634a50e5af, 0x370fc554ea4d1087, 0xe7c7ea2c85f7485c }, { 0x9a98bdce51faf197, 0x12ada0c2f7845a11, 0x15f01145ee06b3da, 0x3c713fed13a8e82f, 0xe9e9aebdfbd25a42, 0xdf0e01c7d58e5cf8 } }, { { 0x2cfba8896afefa7a, 0x11a59911a81f8c82, 0x5f6cafe2e64e2089, 0x802484734aa6fd44, 0x4fa6491be274e883, 0xd1f38a3f6e150c65 }, { 0x4c45290d47b97ae7, 0xaa81212b6ee0b1d3, 0x7139efdacf5575aa, 0xd96feba753982837, 0xc9f7bfcdbbba6c5, 0x30437221646043aa }, { 0xa2f61bce2871e8c0, 0x7a08068c46b557fc, 0xc66f2c7508c82b4f, 0xe1f3b7db14af4ab3, 0x7643ba3805316acb, 0xc84365755ef5d877 } }, { { 0x381fb4bd9852dac5, 0x4eae142bb0b08a84, 0xf846e45550a873bb, 0x52783d51dc5359ab, 0x14ee9a2dc5f3f0c6, 0xd4b77ebba605500 }, { 0x5e1dcdd4b8640106, 0xa0ee22052688ece, 0xd42be5ca6f132ba3, 0x574b67c9a7ce1551, 0x9c6bcf7f4f5e7fdd, 0x60666eb689c6f7ef }, { 0xff8e1c4d78fd3a9e, 0xdf1f9fc975b5d66c, 0x9d152d1b6a3fe617, 0x345662b06a9202c2, 0xc9c712d061b3f285, 0x7aea092d987146ac } }, { { 0xbda72c96727c1bf6, 0x3afeb2d1ed98fdd0, 0x647338797de374e4, 0xf22fd939070ce4e3, 0x5896128233c4d156, 0x46a27c7424bce423 }, { 0x5309cd53a20ad1e4, 0x4fa7bee0c785e511, 0xa283e8bff6acbc63, 0x39e38886b34c02ff, 0xec05331802153e1d, 0x61e21d395b6b7489 }, { 0xd48d7a3fe5c4934c, 0xbfeb860c35c63a24, 0x7794fedeafed6f8d, 0xca0507f6cd1e2300, 0x70870df30160798f, 0x6ce114965e72c179 } }, { { 0xe6ed04ba685472fd, 0x118f6f9f3055c789, 0x192bc02e3f85d9c3, 0x98790c198b75082a, 0x8a6a29acd19c93f6, 0xe7d6186b7fcb7221 }, { 0xf494eeaf4400f151, 0xfee38bf6bce5cf24, 0x4f87d5c38d3ce3f7, 0x1094d4db14342105, 0x8d559eec762147bd, 0x1a4bd229a280e246 }, { 0x6f72486a18b839dd, 0x7a6e8d5e044b017e, 0x1d6d3d4c275d794c, 0x554b9aee194fabfc, 0xb0fe4735c87d9209, 0x5331e84f989152ee } }, { { 0x92e32e97d8865572, 0xfbc77e8dc41f5646, 0xa262df8811907092, 0x1bbecd68c4ad9f25, 0x7c69aa2e0f5badd7, 0x583d17ee612d0d3f }, { 0xe00a876b99fd722d, 0x52a813497fa88528, 0x3cdb3a02a61b153d, 0xfbe13df2a0559b53, 0x39dc56044e8d5993, 0xf3ccfa4b67b7d5c9 }, { 0x83279d5b8052535d, 0xaab4a6227b6bce18, 0x9de3f303537b71bb, 0xec7569611e11f86a, 0xd8965f2408963336, 0x87a90eb6b5e7bc05 } }, { { 0xa5cfe02e854bff50, 0xe2621eee5ad0d212, 0xb5c4b225d976e211, 0xe87f9af511a401e8, 0x20c65fc6b7847f83, 0x80e722512b45d308 }, { 0x4c9736b82879daa0, 0xfedcc8efc964ee10, 0xc60361f4882e7292, 0x5c4a1c7014824afe, 0x940670ac35a652cd, 0xcbd62804971dfc40 }, { 0x9e45ec867ad37986, 0xc19db5c32f960f12, 0x67cde6573fc202fa, 0x94741e08109ebca9, 0xf4743d75a9cc8f13, 0x27352e84088f551c } }, { { 0x82b71c6945509be, 0xd2528d5198e9e8d3, 0xf2ea9f46a9fd6089, 0xcd1a0fa2910453e4, 0x2c53fca9b0eff514, 0x584a8c0c95fb422 }, { 0x2133c07d20ef561a, 0xfe75fde439eb6d95, 0x480b8f22904ed84c, 0xcf80a3cc84aef10e, 0xfd242700944e587a, 0x2eb3573765fe7c6d }, { 0xfc50803fb72b36ae, 0x847bbcfab1d9e2ec, 0xb87299d690cd4089, 0x4a6070562367df60, 0x7b91b3f327e52242, 0xf6aa127f3b3ec20f } }, { { 0xc1e4f7902da723b, 0x7a958714484c884f, 0xd1f61456fad037b, 0x5b4b7cfc93c580d6, 0x4dd0d0325b144dc, 0x868f04a72ddc9f2b }, { 0xd6f4f751590c5b45, 0x45e52bc828088560, 0x2f86262407ddbb3d, 0xb4e46a14432c6a4c, 0xe80194c114e7a785, 0x300747ad1e29d5d1 }, { 0x6f4126389b9f0815, 0xb6524b7cf787061f, 0x179b92d8fc02098d, 0x8f08ef3634328f6d, 0x1f112396deec5592, 0xec88a4988344107e } }, { { 0x28f657be8dd19318, 0x6fb95f30f37fb3ae, 0x39144cb6a3d083bc, 0xc6c666e9308e3588, 0x844fde825eb75703, 0xfa6c33084c12d480 }, { 0xe40c2859511d4e94, 0x62ac093fbea0baf0, 0xc86f6ea4c8caa256, 0x48a73dc86d3451af, 0x98fb71688a1f23be, 0x5f397eb6fe770ac8 }, { 0xec6db5bcd39c9a1c, 0xb947b8d77a7aacbe, 0xcc1459edfd46a453, 0x2ea972439402c0bf, 0x5aa89f61b3cc5efb, 0xe59acf5fe0632066 } }, { { 0xa4a5845a2674ed79, 0x71c1100be7b7a2ea, 0x428a372e2a3bf9f1, 0x6bd817dc06afdf2c, 0x4f3652570f1568bf, 0x15d08bc0798c2bf7 }, { 0xc7fdea19881de281, 0x822d6349c37003c, 0xd1d3648c47c196f7, 0xe9a2106ab910ed8, 0x807d138bd43af051, 0x2c030b4d9d47454b }, { 0x69e6ffe55512c2de, 0x3afbdde460c3e31f, 0xa76281b886a82b42, 0x52cb7ef87f5ec17c, 0x5601ff54e8c36be6, 0x41c467bd1d5cf9c3 } }, { { 0xd2119b050a40ed64, 0xedcf2b7a63ceb1dc, 0x293b927d9c66c464, 0x33667f4db1ea89e7, 0xfdae2e618a869178, 0xfc79c7ae4cabb044 }, { 0x511aad5eb2b246be, 0xf38620245ccf4cc3, 0xee92371dc0c385f5, 0x2aa55f66f5f700de, 0x1339d1e5d8821430, 0x6edd7826f21a0675 }, { 0xb9486dc674c8f6aa, 0x9bf6c2f2ac07270b, 0xfd7ab3761a44d47b, 0x14380f3c9b04c0c0, 0x69590cc2d2804a70, 0x7e739289b992fd8f } }, { { 0xb786fb39d5e5e27d, 0xecd59b69439466c1, 0xc315457d35303d65, 0xe32c72767480552e, 0xc8e36b1b407afb9b, 0x8425ecb764c5cce4 }, { 0x8423abc7caf3e8b4, 0xd3920524fec56e6e, 0x6b5f13fa36b7897a, 0xfcb7471611bb4b74, 0x2b3c907be4aeda53, 0x372b08d5533908e4 }, { 0x2fd0a393cc997bd7, 0x400fbba3a96b238d, 0x918bbd875a8ddf93, 0x3b4bca8f5503914, 0x3dac8e7b4b886e3e, 0x75379bd7a97cf7db } }, { { 0xb039f059f5d27b79, 0xb88f4e98f0b1f92c, 0xaf7d1283b6d9b722, 0x70c5c462df67b6cb, 0x7ce85950efea4546, 0xd9c27a80ab4a13fa }, { 0xdd294b783c4c3935, 0xbc60b9489a3a2a61, 0xcbbc8fa1e7c1c964, 0xbd5573ed5d4f1295, 0x2f0340590fce9119, 0x4b2b8ee279a5ff83 }, { 0xab33041385e3773c, 0xcc66502dc86c59ca, 0x3fdd72e3205078b6, 0x1d93aa14e0265cb, 0xbf9a4cfc187f6693, 0x84c7fff2bf52bfa9 } } }, { { { 0x6172d35bcc846fa3, 0x3f20a7b914325b9d, 0x5e8ccdaa1e45d54d, 0xe17847560de87273, 0xa4a7eb6a72847bcf, 0x8748b0a86b0c6659 }, { 0x4c0c08852fd2ea42, 0xfeba9aabcfce0f15, 0xb60c3fe0100261f2, 0xe17f8e1542498bd2, 0x4b4fbca2f965deee, 0x1db9d2ae7d7db335 }, { 0xe31a3b2c814b2194, 0xb5b8cfd592d94295, 0x5ae194d5fba66b38, 0x206b0b75dc2946f1, 0x18b27016f84049ba, 0x1255762fe4d3ecf0 } }, { { 0x824fdc5e5d7de53, 0x50cabda3b0e6a1d8, 0xfa7b9beed03d9859, 0xd9f5a3c8420f69c9, 0x13bed23793e3b1e0, 0x5d15d6c6a2a0e032 }, { 0x260cf273ecc444d7, 0x8c2bcbe8e415e16b, 0xa9876a3a76cbe805, 0x9135b2c2f05287ae, 0x541dd39797c6bdf2, 0x7ded238a7a988f14 }, { 0xd22d19fc9e32c193, 0xa933cb5378281546, 0x41dff32729498858, 0x97f80ef9623391e0, 0x6c9b66a6bdce74b4, 0xd0dda821e779aee8 } }, { { 0xb3a9381fdf8d20b2, 0x12936380f5f204a0, 0xe8a2ccd3e705b3d4, 0x3cfef1325e8aafe6, 0x62320a6e8cc311ff, 0xdbe97e675586788d }, { 0x86160efc1905f710, 0x5b1c43f583fc8417, 0xa77c5900830adcb8, 0xdd3f344218e77b94, 0xe7bb343db1f7711d, 0x6de85044abdf2d1e }, { 0x989640bbc052ac2, 0x4971f3d4258a4d1b, 0x2d7308bec3c9de41, 0xdc219507c8541af3, 0xf5ce5bef2e72b728, 0x9bfc5bfd9175078c } }, { { 0xc924b2f9bc3367db, 0xe661a5056ef2154c, 0xaec552f3df6a335a, 0x72c99e90baeb9d78, 0x3c221af1a3684fa0, 0x8ccb6da6aacf1e2d }, { 0x83355ea9d0f3ed81, 0xe55225e5ba3efe23, 0x8f7b45da0016b2ee, 0xf6acaa7b16b7a9c1, 0xb531a9e573a36160, 0x3364e4d30b8a7a21 }, { 0x3485f57d06ee5673, 0xc9591bb29ef0cdfc, 0xcf10813e747c058c, 0x1a1d2e6f7481e134, 0x8a7cb99f92a6af4, 0x2fd276644f2a8964 } }, { { 0x1dbf837651c0d910, 0x46a1f318dfc9d2d5, 0x582999281750d19d, 0xe502e2e18e40b50e, 0x54ce67910b02a00e, 0x702b60abb4faafea }, { 0x2cc594b266a82494, 0x6af75a4120d6bb9a, 0x842254c9acce3118, 0xdd8ff70447ba0148, 0xb8be5c5de12b1296, 0x5770e2098cc2ec57 }, { 0xb0818a14618ce846, 0x211612966fb31512, 0xb512471e82388238, 0xd2170f396974c1f6, 0xa67147e89ae5ee94, 0xa4acaf439d670f } }, { { 0x57412faa1cabda76, 0x393bf78cfa9f8f4, 0x98b9a60a61e8e6b9, 0xc88e4566dbef0612, 0xd595712c597d3385, 0x6a135865d8bc72b7 }, { 0x10a71978ddfb292b, 0xd1e147d74e62ce28, 0x9c1c953cfa87391e, 0xe786567e9b553a0b, 0xd3ed92b45bd5d041, 0xe511476d3358f958 }, { 0xb1fff2ab7735ff61, 0xe5e886787bce94ec, 0x337f1cbe092ddaf4, 0x54496009eea93bc5, 0x3323a0e2d72c60ee, 0xcb25135f5bdd3a36 } }, { { 0x775462b96221a3ca, 0x2c7d86ffeed018ee, 0xb0ed8b8d4d1823d2, 0xbcd32e82618e0e, 0x2441e74829c3ed1, 0x5b58bd317aeb09de }, { 0xd2d793b9fb418b03, 0x8dc27ed2f90bec10, 0x48b63dac5ba0f126, 0x92a5d2cddb9c4b06, 0x47b5bafbcfd47daa, 0xae4cd1db2743ce9b }, { 0xb2e9462d298c46ea, 0xb0d3e5d18dea0150, 0x4685234b921612a2, 0xf258eecb742fec1, 0xb3affef927c25dea, 0xa9fde7ddb5dc40c0 } }, { { 0x8611ba65297513cd, 0x5a141503a8cc7af7, 0xe6216c5e1fa83603, 0xf0c394b8c1303444, 0x6a9af52438b8cd45, 0x22f0254866b9b5b1 }, { 0x79ec3bad16581e2e, 0x8f8a2eb4d87fd560, 0x7470696b721e77c7, 0x985114de2b19c128, 0x94866f7e351ccf20, 0xfe494cf29eb2b2fb }, { 0x1fc755d86375b56c, 0xe487d64422de19cf, 0xdf65ad4848e59091, 0x44e901cb40012448, 0x29f5e6b02ff15e9b, 0x5f2db85ce2be9ccd } }, { { 0x78f6202cb58a3181, 0x72bd0cc29af03e6d, 0x98cf44f42f3b6615, 0x4191d2bfb9c4c8a7, 0x82677af86356f8e7, 0xc8797f1350e36686 }, { 0xbc3abd5f79004440, 0x683543603b163f5c, 0x24727f347d91007b, 0x77c14283ae2904f8, 0xddcf4d832d7b5689, 0x4b1d6ef2136007b5 }, { 0x257e67d92c73cfaf, 0x81e62081a4b97126, 0x3887744196c48da7, 0xe378454294324679, 0x9a96f53213560859, 0x5093f01459301e2c } }, { { 0x87e644945a6d6e26, 0x49b47f41d26c8251, 0xdafa63f6ecfbbb62, 0x5ca29fcb00f6d62a, 0x860db8e415cda4ef, 0xede624ecaf29c79b }, { 0xda7a1dcc6fddea8, 0xf264b3ce1a3def67, 0x798cd3bd2061bcba, 0x8eb128bfc44827dc, 0xa1de7f4c62820f44, 0xd27babd79ef3ea3 }, { 0x2286efe83487dda1, 0xd2a64fc7525e49f5, 0xb26911e038c21163, 0x517686338507fb84, 0x87295c5207aa406b, 0x61561a5909936837 } }, { { 0x9fb8bc01b9daee73, 0x6780d923aaef86f5, 0xaa5bdedc3968f802, 0xe758e9e8047dbe22, 0x5b4153bc863d1f21, 0x6a95d28887df17b6 }, { 0xc9e70f12ca4d0c32, 0x85ea0d37d368a621, 0x95d83a61baf4df94, 0x5aa92fd2c0d8de8c, 0x49ea2258778b29e4, 0x8be6200f17044b5d }, { 0xc375eb0fe0b1659d, 0x941e6ffa47be63e7, 0xf0af1a4af4e6308, 0x72e4e7ea981548d3, 0x36a39b812be3ac2e, 0x339cf61b477d31e3 } }, { { 0xcd53d96603cafed1, 0x742c5cf3bac60389, 0x33491c3834e27a46, 0x6365d1cf3d688ffc, 0x4a214e70e55c2005, 0xf6a3e70f40d23378 }, { 0x6ee16f117b0e6aa9, 0xe9687a2c5592e319, 0x89f1e318d8e0af95, 0x4c99d4dec808c8f4, 0x904fc8425ece9e8b, 0x3ad31edbd9cdc183 }, { 0xaf5358d7a7ab77f3, 0x746de3ae0d744562, 0xf0fb40656210c829, 0xfd1297424543cd05, 0xd21921f2f5e8c6b4, 0x84f1e179aaff41f3 } }, { { 0xb8d3c8074d1193ba, 0x50874c508e1353bf, 0x6d07b5f2a1fee29, 0x58f50f3329a7af7d, 0x70cf980865e891ea, 0x2e46cbb82502abb3 }, { 0x84e2b0d5f699bb6f, 0xc47b40601ee2e71e, 0xd9d6269fdafd57fb, 0x827638f791c0b6fc, 0x2fca3e6da26cadf4, 0x957bf9b53befb3c1 }, { 0xd84b6ba479aef30f, 0xec3becc3b779a177, 0x52827b84e5801949, 0x12ac6f0593704705, 0xd6d9dc36c30ba63b, 0x88bae225e3e3cc4b } }, { { 0x647bf094453a55b8, 0x19dc77ee420e4da9, 0xb9ef5b435816a89f, 0x7ffdccd387195633, 0xd217726b5ed412fd, 0xd07eac883da01a7d }, { 0xafb567ecce0cc1c2, 0x407df39d3ed862c, 0x29e411fb9e57e117, 0xd1316b47f41cba06, 0xadbacb843dcacb34, 0x54c4bbef76d868c0 }, { 0xb110c5db441c59c2, 0x880c9d081bb80cf8, 0x93d77ccbc1fe23e5, 0xfec9528bb1dcc3e1, 0xafee366f504da730, 0x57f51546479f6796 } }, { { 0x6ed48fdb57277d9, 0x8889baab1ba0b455, 0xeb47e5c4fd622957, 0x2c19fdff487aafb8, 0xdbec3ca4939967ba, 0xfba19759c68f087a }, { 0x441e329a611e12d6, 0x3be9fa1e897da4e7, 0x4349041880c75534, 0xd3071a576709d95d, 0xd7f540d58391149b, 0xe443fdfc7829d4a9 }, { 0x412a7d36d3d7358, 0x9df2679fa3b115b8, 0x731c9b2a98b9b91b, 0x669eb9941f96d1be, 0x9bedfee6566845c1, 0x9fe7aeb029482954 } } }, { { { 0xba1a5c78cd53b8ef, 0xa529db3533cc90b1, 0xe87d2bc0b222f18a, 0x2afce164e352cac0, 0xc7da4cd3b7290048, 0x5a71e3e4720677f6 }, { 0x8fc199d62306ab3b, 0x3a34e95492fc695f, 0xfdec727c5f868a2a, 0xf7f9240fda05b245, 0x8c6d9548ea02f6fd, 0x8adc4238770c25b8 }, { 0x236d7f4a6073e4a3, 0x82503a07f8c933b4, 0xdb233027d5156da0, 0xdc452b400de7104f, 0xccab7993cfb47aab, 0x70068a4569dec835 } }, { { 0x2a029d04406a6efb, 0xde00ed48589e1bf5, 0x157ab2c9827dc57e, 0xb69b7683159e883f, 0xe0bba28e7a6419b, 0x73b38a6edb28b113 }, { 0x6e88e98cb32c53e5, 0x1a0bd42d4610f7f5, 0x70818ca195dbda0b, 0xc6c3212bfa29e381, 0x7f4f8f787a84e565, 0xa790ce4e7ef35c27 }, { 0x263918a0f0fd361a, 0x9590daee259d7781, 0x8c32d4a4455308f8, 0x683e75a83a62a66a, 0x991c8e852d326367, 0xbc6dae7c0bce54db } }, { { 0x41823733c970a05b, 0xfbda318a1c02c7ae, 0xfcaea0fb8a528403, 0x2109aa0b066a3c24, 0xa736cdcead85414b, 0xc38f9ebeb0b39f5 }, { 0x8954b61bbdfd5e62, 0x9c50cd2d20d2ac91, 0xae7db074ade12c58, 0x28c43c1b547e2d1c, 0x77d8a62d09a6bc11, 0x1729a3180f8dbc1e }, { 0x9c95ae1aaa054777, 0x395601630215ce3e, 0x1293c4e37dcd692a, 0x400f8e6817e74710, 0xd6d88d469eec654e, 0x80bfb67b2ad198ac } }, { { 0x307068645542a34d, 0x59b88f6381d6080d, 0xf50503e0eb78ede4, 0xbe064f6b4ffcd52c, 0xdbea27246d20f97c, 0x255accf21551b756 }, { 0x9bb0a31e66963fe4, 0xfc064a752323fb2, 0x18bd40c15708eb97, 0x1d6ad50b8a9683b8, 0x188f1dd005583e87, 0xb767268d3e22dddf }, { 0xc1e3835737945e62, 0xc49671829cd7c2ab, 0x923f1f579ebf1d93, 0x70d2fc64308f773e, 0xb83f96d52b22c80d, 0xd4d6397611e8aff8 } }, { { 0xf993ae42f93e23a8, 0x4a0cc91866dbdfcb, 0x62c6d6e3b08374ab, 0x187632ade8513553, 0x27db4013cd2d6981, 0x2527fa64779af7d5 }, { 0xe34025b03244ddcc, 0xd04eed3aa1e7c298, 0x8ffdaa5f7199e3dc, 0x5734cd7d3e021293, 0x817ff0d470d3bb7, 0x906efe1d17be7715 }, { 0x7ea5f04d3274adc3, 0xb406f0baa42cb976, 0xfb1a80a5dfa57479, 0x716d0477c6e0ebed, 0x1c472745a44395a6, 0xe1994be6a049dc53 } }, { { 0x5d3529f1d0ac1bb2, 0x704bc54f8d567be7, 0x7d622a6e87487d31, 0x865a76460c0dbf84, 0x3008ab310cdbea5a, 0x96c73690e641c428 }, { 0xb4398bdeb01c898e, 0x84cb364ef1dff22c, 0x9ae94c63e3107d4c, 0x7e5c062065aeac9e, 0x2c894366839c07e6, 0xa1747825baf43480 }, { 0x1dad21d9f2f68367, 0x26c51bd29fcd82e8, 0x940d2b5037852a0a, 0x42104e956a17fd3, 0xe7747be1ad360c32, 0x3919677cc2d38dbe } }, { { 0xae2ec3a03c61754d, 0xd78e63d52baff80d, 0x878de9b07002442d, 0xbd01c3aa939458ae, 0x4bbbabb71afd68f, 0x18d1c0634f6ee0ab }, { 0xe4d7d6d512307e20, 0x278adb4498b40cc9, 0x666b9f6e9109b969, 0x55ac2878791d49d0, 0xbc94a4d0f3dea84e, 0xaa060fea0c537711 }, { 0xd0b211c643446fda, 0x8dd179641d0ff80e, 0x330e8cf45e2e7811, 0x4f2e1a3edb908975, 0xc55f6b2634280a6, 0x2b3243beeddc1095 } }, { { 0x79830f8a237d9392, 0xe2e659b5d5881681, 0x69c72759acf46576, 0xde6caf167ab26305, 0xe6368bd280f2bbb3, 0x906417a764093613 }, { 0x316dc32e9f5dd4d3, 0xb957bbbe9643cd39, 0xab2d048bbb461c8a, 0x61601750e7a038a4, 0xc7a914cd01936895, 0xca68922b398d527d }, { 0xaff1e44e703c4e70, 0xbb425fa327de7587, 0xd2b1345306707b7a, 0x78c0abfa981ae7b8, 0x474bd7f93783f87e, 0xd41d78c5c75e3524 } }, { { 0xdbcde63848884e53, 0x63e435e72b06572c, 0x50871355a7cc8c70, 0x8a7df7f0c8bd159c, 0x684068e3dd5383d5, 0xddbb51247e8ef19 }, { 0xe954885a04c3ac89, 0x2c5fb163d58b274f, 0xc34e73d6cd338f3c, 0x282e62d8dd1a752d, 0xf8bfe5d2e1dfa9ab, 0xb22bd2e70a733051 }, { 0x91b9caf3b2622b4, 0x8de6a056df23db31, 0xeb688cd4df70ab6b, 0xb1e4bd9698d6cc2a, 0x97177b6503a64933, 0x6501967ab528b87c } }, { { 0x10b34a689e739a35, 0x1159e3ef94c168a2, 0xf015960925db396a, 0x8939b16820b57cbb, 0xf84b90e797789385, 0x38a888ae7cf091c8 }, { 0x51e634bc1a59296f, 0xce2895579f9cfb84, 0xb2a3eed6f41ac6d6, 0x58cbb7b1a3f0c4a8, 0xf6be35dcf032fe2a, 0x2c662376cecde10d }, { 0x79f83d9bad5010c1, 0x8ae9948e39391320, 0x20325e647d4cb33d, 0xd7469546d3461b7, 0xea29f41dcd410344, 0xea2bf3cd145a617 } }, { { 0xd7cce53cf4e5afd9, 0x79e0ca3992950c81, 0x82100cb458f6ee53, 0x17315f27781c46a0, 0x45ad362ef3c634f6, 0x3418b37c9598715c }, { 0xb7f8b17f4a84e618, 0xba843ffa45b75c3, 0xd1d8aeb2b33cfc0e, 0x6452630f9fe17f6, 0xc011ff9fa18cee72, 0xcf694938be239ad3 }, { 0x74882b1fd93f420e, 0x565e74a2fb14e89d, 0xc44b6a9ba144a3e2, 0x64b7f472d025e758, 0xc6ff275bbb687229, 0xe13b4b52364dadd9 } }, { { 0x71fa103cd5bf88e7, 0x8af1d39d38e3250e, 0x12812ec4d273231f, 0x7dc42256609e2395, 0x89b5687c741815e0, 0x81aa25ff3744ac85 }, { 0x33253bc1247407d2, 0x38732af397acbc60, 0x61274724205e5354, 0x46b4c509f0fc2622, 0xc0b8482c2f409b5a, 0xaa560be4f2f5ee3a }, { 0x1840fa8a8b9091c2, 0x8e70896bc1e180e8, 0x378ab6b325e5dbcd, 0x8999a65cba486946, 0x27a67a5cc40bd943, 0x385646748289b967 } }, { { 0xfd0acfca5f28a321, 0x2025798148c120dd, 0x38dd294829e0cd31, 0x436190d9b34fbcb5, 0xdc21d206427a11b4, 0xfaec998ecaec14a8 }, { 0x968222815208f700, 0xe40566444adf0ab, 0xb6b10ee086685748, 0xa6fecf0d63acf287, 0x8d506b7cba9df1a, 0xae4c0e5c834dc8c3 }, { 0xb5b0ba9a4f26420d, 0x474903410a311619, 0xe95130674f11717d, 0xced6385913ff318e, 0x8ab2745cba19f933, 0x8df432d674de187c } }, { { 0x1aad3102011bbe98, 0x6fb822bcba786bb7, 0x8b1240fe7f72223a, 0x63c03bdac0c472fc, 0xd6c255a574abf23a, 0x2a8fb45aef81f6b7 }, { 0xf2db014c4cf3ca, 0x96bb147d1085aa08, 0xe7cc4258b023fc1d, 0xd6ce125fd9429afb, 0x45986aa5f92259c7, 0x1fb3919c276fbb8a }, { 0x463124e6db963deb, 0xa4241a7929e7cf72, 0xca50190fddcf04ce, 0x66c89c579db73d43, 0x954a64b4bc98b5ca, 0x84f26a807e2728dd } }, { { 0x684138f12db6af07, 0x2ed9157d0854dd2, 0x2d0511aa450c0478, 0x5651dbcef2a75dc5, 0x7b6c0e5b42ad0c19, 0xeebc1449f4dd582b }, { 0x7046080a4e830947, 0x6be8e1d544ccf2ae, 0xd7a937a4e012c126, 0x5017d02ecbd0d6c8, 0x23368ca916b5f6f, 0x1f3fb92e1554e5a9 }, { 0x81b5dc70f9ed9b5c, 0x9b93a0fcd95f52ce, 0x1017195bc21423a7, 0xa340b5fc0a0f4ffc, 0x79c58613f6ba0f55, 0x2e3bd3a4cd46ec53 } } }, { { { 0x8edbf220a8553aeb, 0x6988ac96a78d5385, 0xa6f25ed1ca598665, 0x3bd1438286e9117f, 0xfa7cb5daaf23f623, 0x538c00443686c87f }, { 0x89c92af27fe3a59e, 0x7420772a47454653, 0xbba04c6c1ab2ae2d, 0x8573976044e5d76d, 0xf7ef1313caf8feed, 0x7b9c68aa102a966 }, { 0x3a09d58da5a86425, 0xd1533771635e0963, 0x9cce8eda2deb2ad5, 0x837452ab29e28660, 0x70e8d53aff0f1826, 0x3e536d73e1322787 } }, { { 0x72854002dc86c306, 0x9090eab04571a410, 0x8117101c1146bd6f, 0x11a9102875928019, 0x8f4cc70424fb67d6, 0x6852fd62d77c6222 }, { 0x476cc8ff9325ca6d, 0x215f42ec2db3210a, 0x8bea249c868c3fb4, 0xe80a2339bb4f937e, 0xa32078cffbf3323f, 0x30100ec665101825 }, { 0x911cce76f7d09c06, 0x7c2b1e9880af08d9, 0xfd28582e36b5d6e3, 0xac169ffe96dd73c, 0x121de20a4745ad8a, 0xcc1332213688bead } }, { { 0x94efdc22a42de860, 0x25d758181370c083, 0xcf0a3db3afbbc667, 0x5003fba4bcee34b3, 0xe3e33016b064e223, 0xe24f15e22e2842cf }, { 0x4374a4f919e6e624, 0x4157d81d7b5172f2, 0x64dbb98be40cb413, 0x7f11e233a491cfd2, 0xae293a17f2ee3198, 0xa2c4386a89cd3324 }, { 0x4b53073658bc8215, 0xae30a25b6da3acd8, 0xa870bb130ea9ee03, 0x8ad87243856f4f64, 0xb7e7f6d062d3c8a5, 0x268473a0bc7e2e64 } }, { { 0x520f59fa08e0d2a2, 0x53ef33b6fcce1f23, 0xe5fb60c827d21326, 0xc0efa7a7c4e1fd76, 0x13c3e55a89f52f8a, 0x46331da078c8c5db }, { 0xc97d128d54fa3c07, 0x486dcc7e194e6ba, 0x6281c62a4ff4bd98, 0x58269b3817d04044, 0x39542f01e7eef860, 0xf04b4faf7fd7931f }, { 0x9eb762e87c06d21e, 0x8c9c98b54741f88a, 0x4b1078d06c87e199, 0x1bf99685cf8698ee, 0xce36b8e0c887c98c, 0xf2ca92856f997746 } }, { { 0xa1279a90146859e4, 0xf04945c1b08b5579, 0x7e898552cc4c98ff, 0x42ea5c8f4ffd89e0, 0xb3f5b43937f30aa8, 0xb287a154dc033bb9 }, { 0x587e7b5505ba07f9, 0xc26679610da1973, 0x867182042907b992, 0x306c5ad74844bddc, 0xe42e4baa3b96692b, 0xd139452bf0d320 }, { 0x13e317e6a85c62eb, 0xfc00296d81e048ff, 0x7a728e4181e39b33, 0xf467d6fa8c96eeba, 0x3053d635a7dcbafc, 0x824fd8faf9eadba } }, { { 0xf54112d88551c3d1, 0x4eb8b6de96c860d6, 0x98cec610f5020a36, 0x14fca1d32949765f, 0x7a77505a08836342, 0xe7abbbe8764ea4f6 }, { 0x818d572eeed524ac, 0x29ff71b2c5fe7c4b, 0x26bed7ff00db0fd8, 0x7a00c1a0152fcaf5, 0xb26ae88557700c49, 0x815cbbefec593879 }, { 0xd6da289b17753594, 0x1d2cbdb59a715524, 0xb4225e5237ac0644, 0xb1f253fb9d88c63e, 0xfe27a3f8d69ca2e6, 0xc0e9ec739e370387 } }, { { 0x21c7df92c5a05c8a, 0x6aa0528e4eec6497, 0x88305f6289050cd5, 0x8541724b4737fe6f, 0x4f7e96147f7195b1, 0x4c3940ee0a41f716 }, { 0x1cec4b40d4d60d19, 0x70dbe8015f8a052f, 0xeeb3f735648f1c7a, 0xb1e84f9e23bc2d2a, 0x85666fdaabb19321, 0x6a33fbcbc1aa64e }, { 0x39fda63264ac7288, 0xc449e40af502e15a, 0xfa05ff402a3ed9c8, 0x4989b589949a7a70, 0x5c1a997e112d4b14, 0x1a4223cb0a0b7223 } }, { { 0xd330a84ab6158b44, 0x45d716c15dd4ab49, 0xb0a6a66f175ee0e9, 0x1e4daef2f997abd, 0xdbdcefbf2ce9c731, 0xc90f83010b834af8 }, { 0xb80cbffd0a0fdc14, 0x1e802c3ead5dc417, 0xd2b5a8820fd427d, 0xe109d3d44bd8c778, 0x64292be262e7e94d, 0x2c84fc0bd5a8ca8a }, { 0xd7bcdd45d3db55b8, 0xe351e34806dd99c4, 0x120ad83f85270f9d, 0xf258c00ab4721b2d, 0x1d57268f8c92531f, 0x5b98e725f34e212e } }, { { 0x719d2425d1be89fb, 0x634a45c932c2cfde, 0xeab896717e07a961, 0xe292621daea63103, 0x4f5abedbe80202d0, 0x2799e5ee23bf784b }, { 0xc73a099e6c104950, 0xbd460277d3553f9b, 0x5861933c7d684b5c, 0xc10bc41abaad7419, 0xe07117b4d8e6454, 0x212e1f9700a073ff }, { 0x7bc8adc3a2a377a6, 0xe169664c57f6ab0a, 0xcbcd9e647983a2b2, 0x10632787be9e435a, 0xdfcde25ce99c6ce1, 0x858a6d80210896a } }, { { 0xd3ddde807e472b0a, 0xe3a002c56dacbc61, 0xc7ed275c72f4f2e6, 0xddc566dd39b2450, 0xe4ba4dcfb0f1b51a, 0x1c38ccbae343d2b5 }, { 0xec6ce348a5948850, 0x45392add60fa6f6c, 0x3f5e602860961cd6, 0xf1267b84e5dffd86, 0xd3eec32c43cf6e77, 0x889508038ae596d6 }, { 0x818fd8542ffb53b6, 0x9abcd991c9db2178, 0xc4d422a0ae6fb124, 0xc967e7ab06360dd2, 0x6d30605730da8dac, 0x910f5623b619c224 } }, { { 0x1d2790e494638afa, 0x4e038b81d3503087, 0xf60a4ee41e007b1a, 0xdfaecc4de14abead, 0x7f535118d0ed4dc, 0x9b00958318b7eb04 }, { 0x7cff3395d36f20e5, 0x6d9d452f2224895d, 0x46279ee400cf8e5a, 0x3c96daf04a1afe9b, 0x489bbf75a79ab2e0, 0x1c987b6ac24c5d35 }, { 0x7ccaf3414884a4f7, 0xcc2c101a0ce84289, 0x1d2004c85542bc24, 0xe9358c47912de0b4, 0x519929aa249c0d6a, 0x4319de3611072ea } }, { { 0x9531008c8818b91d, 0x6d89910bdcc759aa, 0x957075f440695da8, 0x199b6b0bf9aaa273, 0x894cf7df18895703, 0x1c36e783f5dda54a }, { 0x9c666c044a9ebe99, 0xa728255aa4f35b9c, 0x7aa8526382ce08ec, 0xae38039e2bd36788, 0x2c820e4c0639cca1, 0xe7ce730165d87c69 }, { 0x4a438f31cd19804b, 0x7d9b40e863c7a404, 0xd3233fc0eca08322, 0x27163d7b2bd65355, 0xbc35dd220c8504c0, 0x83b4d7dd39e9cd4c } }, { { 0xc42c3786a2cd5965, 0x8f3abdee6003872a, 0xb5a80bb7ee71080d, 0xecef318fb8a10668, 0x97456d9a56501091, 0x1920541124ddb5ec }, { 0x64c4249ffa1efee7, 0x59e2cc6103dcd448, 0x9f1c3cacab7d52a6, 0x9e20350083901540, 0x4ca13d184f9b12b9, 0x19c551302e7dfee5 }, { 0x2772e50862f2620d, 0xaec4255786a84e65, 0x3760a55c225364db, 0xb0af10a057dd2aea, 0xd38c71ce4e785ded, 0xa80e6f440e5be0ff } }, { { 0x5b04b8c46576d868, 0x9a846892b1d38d6b, 0x757c84866d62a950, 0x3c126b79798110d4, 0x99e49b455ccff4a2, 0x5e008f6ef92c0026 }, { 0x911db8d0d1638197, 0xc111b1dcdd0733a3, 0x5928d5bc35983164, 0x5e576eb19de621c7, 0xfc401b85eb8de081, 0x717fbd58d6b4eef }, { 0x1030599da12d5999, 0xeafb7e6c8083d89e, 0x50cd106fd10aee11, 0x810f776366031c12, 0x1a080143600bb9c3, 0xae371d303613a5df } }, { { 0x3dd2b1719b89ad68, 0x434c9beb228c1679, 0xc4dc712c41501997, 0xf18317f3676284da, 0x8dce1510c695aee, 0x2b0f3d7c30697768 }, { 0x4566c9e727cb0ac8, 0x43a7701b3f4c8eb6, 0xb440449f6da5bb27, 0x981ddd4effbb896a, 0xe83c8e7a746effa6, 0x398b8b44936ef5af }, { 0xd7434684231d579a, 0x9755837cb80bfa59, 0xfff4d396209b7248, 0x216e3eb90a7a18ed, 0x478d05fb802e59c4, 0x8b5a8240c51a5be0 } } }, { { { 0x2d98a145a51fc871, 0x4c835999f20f87b2, 0x8f4a2f479cae2b00, 0x83636f3bfa10666, 0x9693de3b5db9c18c, 0x7d4efe824692b3c8 }, { 0x4426db8a930e041, 0x23f7502a5061a47b, 0x1b15a252ae2e1397, 0x3591a4ae478c71a3, 0xbddc03b3a23c59e4, 0xd32a32fcc5765452 }, { 0x47ab37bfe7edaeac, 0xaabcb5a3407977b9, 0x3df8a7373eb06efd, 0x4e9e880f6b9aeba4, 0x6abcfecf065ea507, 0xb70509d1967f6295 } }, { { 0x2cecdae7503bf5ac, 0x7c30e5ff9f297519, 0x290a6c84279d4496, 0xc47235bb31f6a4e1, 0x6f6412f6d0d5857c, 0x6ea5d5568d26b4a9 }, { 0x31c7d7ad5ec25cbd, 0x136a4f75bcbd0e17, 0xa81e571e97cd8161, 0x43455a6d8ec29b34, 0x7301de6afa257412, 0x26776f94f2bc0b25 }, { 0x5eeb4e73fb002783, 0x2b6259b9ec7389cd, 0x130e1bab3933e38c, 0x6942b57234ac930f, 0x5cd057b3d651f35b, 0xa0a08a3f5bddd19a } }, { { 0x6f929b9e99c0beaf, 0x5ad92bf13cd6888, 0xfcabaf389046db8a, 0x5730d45264007af6, 0xcf0abc75fe82eda4, 0x1631f6a54a61d4a4 }, { 0x41644f6cab984f8a, 0x8660ca64ae827183, 0xe4faed62997e21d3, 0xf46407eef341995d, 0x818b3dee82799ad4, 0xc2ef25f2c1cfefd4 }, { 0x8eedfd7b890077e1, 0xfa36c5cd532d8efd, 0x5a4e9cc68772eb83, 0xdfdd66db3fd8125a, 0x27bd74e89612c398, 0x616b5cf4215e35c1 } }, { { 0xcfc5a831fa0c0aca, 0xec1c09ea54bdb0b0, 0x2bf39303de854f45, 0x1ffd53d8fff2ed38, 0xdfe7850c16fb6f45, 0xf5fc7580a67b41fc }, { 0x14faa459d1f1fe85, 0xdbecf1a09e2dfb6b, 0x9fc2fe6a85af9d97, 0x91265f0f86ef6f7c, 0x435fc121173bac68, 0xa78923437a3492e6 }, { 0x27218b7410ae7d6, 0x5557b745e9655225, 0x40ebcfd2f613dec8, 0xddb050f0b18b27a4, 0x19ea23e65ca30757, 0x77c237bac426f53f } }, { { 0x520270b31c7ae619, 0xc92ee32df3d42113, 0xdf8a1ce6313406b9, 0x541d7ed6b4f7164b, 0xbb49d705e59a628e, 0xdc738ceb06c65774 }, { 0x142d369396d4c69e, 0xea31444bb75b2fae, 0x5881579d6d771793, 0x9d8889f08a8fb643, 0xaf6e4897eb264b7f, 0x3ed289f2092634d3 }, { 0xb2d786bf3a70abb9, 0x840d67442b2acf7d, 0xf336b53f904c56b3, 0x94059e109aa7da9c, 0xdd0784dd9aa5c696, 0xa3f6940370c6468 } }, { { 0x241584d4ae32874a, 0x414015241beb3314, 0x1aad9cd16ba6f4e4, 0x9aad664afe07695a, 0xffd3b75e8b05b3, 0x97ab9598f8c3c126 }, { 0xd5a9e9c861c3320e, 0x95c34d32875c5614, 0xcede5439d7691c28, 0x8b1c714fa2b078d3, 0x7e5e49adebb8e74, 0x4bf59b8265d24ce5 }, { 0xc52d680f41c78fa7, 0xc8fce2beaf049ee2, 0x5f2b9ecff301adf2, 0x7f9a54c5b54dd95b, 0x91824d58506f10b5, 0x2acc6095a6f79e23 } }, { { 0x2cb67d5920f5ba4, 0x32b56878b53eec43, 0x67f2b02843083434, 0xf7c9bd3c34fb918b, 0x6e29acb84da980b2, 0x3e1f0e8309b42f7 }, { 0xcdab1df06fcaaa24, 0xa3c2809a376d7bc2, 0xfea1630970a21c83, 0x10567cbf4f8efc70, 0x2ee9551a757e3e40, 0x6c690a21715e007e }, { 0x9b4a52f5e6b9ba6c, 0x5c9d0a1b6e8bfb04, 0x186ce2e2368384e5, 0xcf9e1841a6d7b5c5, 0x1820cb6a01125c52, 0x1e2d559d8b9b1dcd } }, { { 0x45aa23b975c4b1ed, 0x9016be89e4ce211f, 0x2edd4988a1ffbb53, 0x3bf5ff60f6d79d1, 0xfe5cdbc525b2f142, 0x5d91053069ad8830 }, { 0x507206449230d782, 0xdcb21e670ff6ad7, 0xae1e4aaaa50a1362, 0x7f40f4d450a68acb, 0xa0aef3aaa4e24bd9, 0xcff80c0f84ce53f3 }, { 0xe5cc3126d3c70383, 0xee9510528849dc7f, 0x888ec4da40ae0223, 0xdcfc2d7558cb7e7, 0x952da941a84bb41, 0x9bb6f259224704a0 } }, { { 0x6f0f2711d6e7cb67, 0x56b51c46dafb858d, 0x316b07dd58f9e27b, 0x9fa7b7cc91bc079b, 0xb974b4bb78bebf34, 0xffc84209c521a092 }, { 0x79bc7a082cff1b58, 0x55e6e3d22cda3b0b, 0xa9abba13669ab777, 0x1a278069db64e03a, 0xb00d68143e031ac7, 0x384763ccd6e12915 }, { 0x42162fa15a0a29d6, 0x96e950deadc36945, 0x62a4ef5e45d897df, 0xf99f5f16a6747930, 0x41ed5602c838ff58, 0x27a8fd25300da829 } }, { { 0x430bb72da1ed8837, 0xdb8c75cdf7e9217c, 0x6b35df59aac49cd2, 0x310dd9afcf27e1b5, 0xbab79e18a5c15b7f, 0x2cca5cb9f0787926 }, { 0x5b43a999d9ffc032, 0x5f41d5117feb709e, 0x37ed5e1196bcdac9, 0xce0033555ac7ddff, 0x7fb5d8dfe2daf3c2, 0x4e59dc114ec1dc36 }, { 0xec73fc7f031de258, 0xe403d88238e9cbdf, 0xc9ef812bdce8b63e, 0xca0a99023182158, 0xb9b6cfd9cf4d1183, 0xc10a22830f929b0d } }, { { 0xba4164a88b49b63b, 0xccf398d21b53aa9b, 0x67454c0cb14beb8b, 0x5950f0e17f54bb4d, 0x5c8fa4812fd6132, 0x1e4a35954bf3bd32 }, { 0x27e0580b97d06aeb, 0x217fa7f27fbc8ec2, 0x236dc697289fc5c1, 0x25a8952263930ae2, 0xfff1986b4174f72f, 0x402c4a6da30f7b37 }, { 0xd3176cda729ae5e, 0xaa70357436c8ab96, 0x2b76eb09be5c68b4, 0x6efe4b97138d504d, 0xd3485b0e8b3fac4, 0xe9617ced6c26aa7 } }, { { 0x81bad35323af466d, 0x505450e0d853cd19, 0x922550c5abec148, 0x3ab0f23840f8108a, 0x83b7ea7196645bfe, 0x301f38f0ede3fbca }, { 0xe17ac247d0e1170f, 0x8cbca6bad3acf3c1, 0x13dfbd3b8487697b, 0xd171c09dfb4c9be, 0x20e716e7f58458ea, 0xe1d2debe677b5b06 }, { 0x801d59d58060bfe8, 0xec8b427b915fe27b, 0xb06f64a59d70e862, 0xd8bca9938eab3ec5, 0xd381cac5475fc529, 0xde7799be8d823f96 } }, { { 0x9c284c721d60ed72, 0xc5d1e53b4ce06e39, 0x443968a0203145a7, 0xfced73d4244bdaee, 0xcaa538e2df01da51, 0xeaab26924653a07e }, { 0x899cb124a1ee910c, 0xc67695f3de5d291a, 0x8ad8cb7cecdd0496, 0xd5fef8df008932bd, 0x50e7615cc3c10dac, 0x9e99bf8326cc6be7 }, { 0x589c0082c16a7357, 0x883334f01aa7d32f, 0x87e67f5a9aaa4cb9, 0x129b36249c0937c2, 0x5c7865f27d6cd54d, 0xc6a3bd903db73b41 } }, { { 0x8edaf4e23dfa769e, 0xa3e16445c6a71de9, 0xf216c375d15b2c1e, 0x984b1e30d1229c51, 0x62079210de068cc5, 0xffa8cb3e225531fb }, { 0x3410fcbec8c5a515, 0x349eb5f3fd09b732, 0xe8d24f298bece564, 0x283975d03ba2b13c, 0xc831552aaa355b95, 0x4d50cf9554356d }, { 0xcbd039bd09e36479, 0x5bc2ca3606303255, 0x5ad9877ce4759f6d, 0xb9129cf8856aecf3, 0xd9f4ca38dc7fd837, 0x235c74e170d6824e } }, { { 0xf6d7e08ff7366da8, 0xdf80a1480c334b9a, 0x3403e6606f07b90, 0x81717bc52fbb3347, 0xd26e37afa41b0ec3, 0xe5f99c715d7a7f5b }, { 0xcd4da540517638c0, 0xb9d408cc3d948a9c, 0xf1971bb90b66f4b5, 0xc3dcc9b09b65f8a8, 0xd4feb3e6307f2418, 0xb8316d16dba7c16 }, { 0xb1bd4af0c0423d3f, 0x9ef91e48977e2022, 0x2c32c0f8c99b2a3b, 0x6626cb9a1c2bcdde, 0xb0b95e651513b400, 0x348e20ba7c566539 } } }, { { { 0x2013fbc481120772, 0x1206bc04b74bafd1, 0x2cfa96bd63e2716c, 0x1d2be4283c16406d, 0xb2ecc3eb3ab91440, 0x64b8869d27524355 }, { 0xc803503ce5016562, 0x9c881dfcf65f48cc, 0x809089c41a8d96b2, 0xa1db6e74714e1ed5, 0xabdff8acd8646d7f, 0xd59cb82494c66582 }, { 0xacfc0d4394cfc59a, 0xda139284636ac3ea, 0x369e23784d4854ec, 0x78874e9a9c3492e5, 0xecf8787fe26a6ca9, 0x5b8aa53e523675c } }, { { 0xbd91a4bba930922e, 0x4bdc0ab854599969, 0x7e7de4f0bb37170b, 0xae2f67bc9f535826, 0xd347fa038bebf2d1, 0xa0996f507e2d8948 }, { 0x63232d0f777a6aaa, 0x16cb44952384d1c2, 0x49b1e73f1dc76f1a, 0x2ba98bf13de9cf28, 0x5f43ea1dfd506189, 0x7d52c631ac21ff0b }, { 0xa90dd4b23d7910d2, 0xdcd4355c53355f1e, 0x9cfb4968e0e07555, 0x4ea2f66dcfcc6f9e, 0xe2a4cce79d8121ba, 0x71856384dd81e753 } }, { { 0xc35d4ffce88ea55b, 0x7ed24acf36975e51, 0xa557f36616c29bb1, 0x84a73c781ea03ef, 0x22123a57e5e97dd5, 0x166c9df58d82a140 }, { 0xbad9a829c469565d, 0x16adff5257005c76, 0x620b1df0bddf1900, 0xb76d9434334cb23d, 0x9153a078b050f0f3, 0x43f24090b5651c16 }, { 0x652bb35e3eafffbf, 0x5a3101ddf3bee051, 0x3920cbf263ea1844, 0x4278e82e24f71e23, 0x3ea3039c0fbe2679, 0xbcf2c99b4a2d0eaf } }, { { 0xa8dc9f87a14ee9de, 0x79a6f4c41aa7228c, 0xf4f7f95a93aca43c, 0x5d8260e411377a8f, 0xb559db7ee2d1ae6e, 0xbb448b6cd11b3232 }, { 0x16bebb6751e62c64, 0xfdc1e70b151a6799, 0xf75f7555c88fe645, 0xd66c17cb7a382dff, 0xdb640280a9071d70, 0x30c054b1b40529e9 }, { 0x24449f6768366168, 0x616d708e74aea998, 0xedce759f22324f92, 0x765bb5802265cf24, 0xdfe4f44507689674, 0x1369e8307b6200e9 } }, { { 0x738c52914e2fdd2c, 0x34ef164e5d695734, 0x92bc31f8ad4ec56b, 0xa98996bc6ba44c42, 0x5b6bcb1cca0dc85e, 0xec0900192f5d825b }, { 0x4d46d079de8b050a, 0x7d7eaa81cd8e9901, 0xf9b0adeec4e70a5f, 0xcc7f5cfc2ca0f9e4, 0x6cbc8fd3bc443dbe, 0xc7df757637d9dbe1 }, { 0x8f0b3c9b930fddca, 0xedf018f170378988, 0x3733e5c9522585e4, 0xf76e764a2334fed3, 0x49b5d4b213128b52, 0x1de3618758796709 } }, { { 0x68881fc385057658, 0xe45539895c9766b, 0xf64983939bfb079d, 0xcd9726fcd43c472, 0x5b8f96a982155b2a, 0x9653b43acb6a0dab }, { 0x6e87bb0daac6d332, 0xbc2b3d254aa861a8, 0xf4b164b6c2b42234, 0xfb4b39a45dff75e4, 0x6a5224274c5319c7, 0x3f1daad7a94b6b68 }, { 0xc37139e7893984eb, 0x7ac54b514ee92bb8, 0xf917e55b89183de8, 0x70d18ae636c111af, 0xb93fa05072d87aa4, 0xa4d4251699706350 } }, { { 0x27d8bcc7a11b854c, 0x39e1597aadfeadb4, 0x8ff9068955282a14, 0x9da1f7feeb609a1d, 0x1351c8f1fc333f66, 0x5e574551b9e0ba47 }, { 0x2654034800eff3d1, 0xffe84cb11d8fb1c0, 0xba89d0ae064139fb, 0x44391ef233d902b8, 0x389dc6083c885990, 0x1ce5da6befdecf6a }, { 0xcda8443fec531b03, 0xea881f3004aa1f82, 0xd67322a75e859a39, 0x405a4c0aa724232e, 0x6b048a8a3893a75a, 0x71c3953cb76f00ff } }, { { 0xdd5f4a924327c962, 0xb08192b003c3b04a, 0xd8ce09bdae49566c, 0x8c872d6020b64570, 0xd92a464561712078, 0xe57a96db56b857f8 }, { 0x97ca395cf968ef15, 0x75441d84f206f026, 0x72169174be56f09f, 0x203f01f1257fbad8, 0x328666faf1327bc1, 0x59090424fd59369e }, { 0xee55a7d023e5b677, 0x59ce25ea1e98a8a9, 0xda1696a7eda99e30, 0x7576222790a32bb0, 0xa0a485a37fcfc444, 0x8061e2c6f09d6454 } }, { { 0x23d78851e290aee4, 0xe7179d691a826f6a, 0x26cdb4a803665f07, 0x7243a5f417925ffd, 0xe387225c3fed0c6a, 0x48f94019fc3a6756 }, { 0xe324468fb8d82600, 0xab9812f84fbae95a, 0x107676abb4cce418, 0x2df2049aba2f68df, 0xa23613248d2b2653, 0x9097785e06b2a12c }, { 0x9cb47004617e80e6, 0x5185d59561c04c90, 0x1f8c82c8604d4e3b, 0x1e66ea23c519972a, 0x3c1b1e7e3030a4c5, 0x44b510afa7533a0e } }, { { 0x164d70d0d0077f15, 0xb3dcd3ee9131bb1f, 0xcb13ba4bb17dcdec, 0x5bf57d7a01ce93bc, 0x338f89846e5a5440, 0xb336e30e82cefd94 }, { 0xd5a8488b943cc70a, 0x60c0948209af4bdc, 0x7f3cece6b41109a8, 0x49eaf9abfa4cfda9, 0xc9a0c9520a482add, 0x3f9336728f6feaa8 }, { 0x841daa60a769900, 0x7633bc782482ed1, 0x556bc9f2d59fd4ee, 0x2e2385f4ce16bf3, 0xa02a5ce32cd98d89, 0xa74202358056aae1 } }, { { 0x18318801be1a3eec, 0x559e17068c91a239, 0x54633a42c0e014d9, 0x99c3f4efe6aff0a0, 0xb6443a885bfb68ba, 0x5b26252f5fc4a0fb }, { 0xa8880065d713e75f, 0xc96e748dd7dad068, 0x460683d84de84daf, 0x199e88d547c9044c, 0xe9e3a9046e7d119b, 0x19aa6aa7e836e4db }, { 0x31d922d5855f3ee7, 0xd03367ad09082ab7, 0x7e4d624902e5b65, 0x9a9e8d4564129cec, 0x1c73252dde2478c3, 0x47b6ff4508141d8b } }, { { 0x82e239b2c5cb2828, 0xe06822b8fe49aa23, 0xdf36ab666ec6eb30, 0x4ab9b08cabdee3c5, 0xf68cc07b6fae3cf8, 0x375a7a8f0350c9e4 }, { 0xb4144b6243a4b90a, 0x7f16a64e6fbfe2f4, 0x131f0d5bef1d4d3f, 0x60b7908eb9ee7f52, 0xdc2930abefb5326f, 0x4755efaa2c1e3242 }, { 0x7739389d7704f07c, 0xb80a0aaf640757a7, 0x6ef6f119846ee68f, 0xb5d528df4ad8d14d, 0x8e969e852e2a19b7, 0x14dc683160ebcb8 } }, { { 0xdf34d5ca7d937c70, 0x6cc4a57ced4a314f, 0x95a50324c48a182f, 0xeef7a4eafdca020c, 0x32de60979caefee, 0x10f715bf68863421 }, { 0x1891b697ac47d47, 0xd8743d8a0133118d, 0x217767d6f783e40e, 0x87a69408e94abec5, 0xa97cc9d2412d3287, 0xa363576972a80686 }, { 0x98551ec770db242, 0xff9eac74893a6e24, 0xf174d4601014564, 0x66947852acb01048, 0x90748717360c59a5, 0x79d87e5753f2ae40 } }, { { 0x9ac296c4b5518312, 0x11293d6b19653284, 0x6d5599e1b39d7848, 0x3a5e89dcaf58b1a2, 0x2677522b60dba5b0, 0xfd7ac11624ed10d1 }, { 0xdf01577de16afa10, 0xb6399724687cd730, 0xfb8a84351b30527, 0x38fc7a5ee56da161, 0xf50b9a8dc67f2597, 0x6c50b7482a6e20ba }, { 0x87af9b5b780ead4c, 0x5e9d9b24dca761cb, 0x86199a97d60affce, 0x6f50638b576d8d39, 0x62d6f05b0942fc93, 0x7e19e692d2f402dc } }, { { 0x9932bc3665782ef5, 0xa981016ffc7f1baf, 0xaed78b0b41ebd179, 0xeafb2180e2f9e358, 0x400e71ef071669ed, 0x53ef462faff3df32 }, { 0x796741766a77d63, 0xbd89e5503157015a, 0xd8c5960fefa7e2e6, 0x7b20c6c810b05250, 0x950b954c14a2fd41, 0x15a96e7edc808bb7 }, { 0xcf0c4ded6d7fce2a, 0x8daf7ef7a9711f06, 0x791c4e75869e8e99, 0x3419c595aa577082, 0x9c954702d9569f56, 0xe994780d9a0fe643 } } }, { { { 0xc897640c1e6b7cf9, 0x922a7341ba954e19, 0xe3ab274ffac0f6ce, 0x9bbba822c02134ff, 0xd71ea6f852706b87, 0x6edc6392f81415 }, { 0x31d5fe014752ecb9, 0x2f925da807aa64e8, 0x799303739ec4d7b0, 0x9535b5f6edefd76e, 0x719e387b619caeda, 0x191200644a9ef188 }, { 0xf0ba88654be1f7ca, 0x43fe891fac2af3f6, 0x9c391c80a6cc3c2, 0xaeb893f9d44465eb, 0x280b6386dc75f0d3, 0x5786fe3d843efb4e } }, { { 0xe7c35a0cd71c7829, 0x621015bfc9025e0e, 0x9c40bbdbe356c22c, 0xcc43eade2fa51bc7, 0x9e0ffa7d56ed4850, 0xc6eed01dc7c96b65 }, { 0x7294cc091b72d2a7, 0xbfd174f67fffd118, 0x7682933ca9045906, 0x9148883184f75ff5, 0xc3a55fd4a59d7a62, 0x16e4e2ad45f18b0a }, { 0x6596e0c6c03b31b7, 0x3328c28914c1bfc5, 0x40667fcb0a459036, 0x219b13f787305928, 0x2e83ecce8bce8fd3, 0xb775c77c5acda037 } }, { { 0xf3a4617d19b24206, 0x8f4b0899c3056d56, 0x97e0256b81b6160d, 0x4ff4804dd2ba8840, 0x2ed656bf51d9ba7d, 0x51eae1d1619b0a7c }, { 0x55cd9aa134c55016, 0xa293bf593deb7a80, 0xf5a61c2278d9dbb1, 0x48a1786b842e8246, 0x42efc29ea038423d, 0x8b2934a4da7d6043 }, { 0xfd554cb40c06b913, 0x8332f27595536bc, 0xbd4ee09c7b73caa0, 0x13f0854db896770c, 0x33c708d12d46bfb6, 0xd2dd53012e44ab11 } }, { { 0x5c7517d51738e776, 0x1a3001437e56dbeb, 0xd965cce84a2d6cf1, 0x96f6268a59caacc8, 0xc026fa3d75ed682b, 0x7143dd4564563fc0 }, { 0x6cca4ae5221102be, 0xdfa8e83d7dc51636, 0x81a01902322e1366, 0xd920d2d0e899b220, 0x58c54217b70ff87a, 0xd4ce468b821150f2 }, { 0x20191fd4017bbe9f, 0x43c85ad0d60422fe, 0x8d28bfa6523425dd, 0x4702c0bc3bbdbf5a, 0x2aa374c9fd25b5fb, 0xcdf0aa77dc01e2d9 } }, { { 0x5fcd703f4d73ff4b, 0x87c52fb2e291724e, 0x4302bb8afe4862e1, 0x1534be3fef75446e, 0x656aa19dd03563df, 0x62477076fb1ed059 }, { 0x5d66f6240879c6cb, 0x69e0feb20c862529, 0xb19662e874aa6d62, 0xe479461360d78f3e, 0xc1f9a1aa2d7fa986, 0x954c46085d8a2c50 }, { 0x57333891e0ca4944, 0xbde461d656e5a432, 0xd1fc62c3693b28a1, 0x2c843e8089b35b7a, 0x1d52e5e7cb8a881d, 0x6bcd498504f201e2 } }, { { 0x5561edd0e4cde5ff, 0xd2f6538e218192b6, 0xfe5e1029b27387fd, 0x9860879857e6956c, 0xaa2324054cd0f13f, 0xc024410bcc4ed357 }, { 0x291a3d5112cf68e8, 0x5f72d23c3ce1a388, 0x50208d1f9330c2b4, 0xe86ed680dda0ec8f, 0x1446ad4cd35ecad, 0xf74a340482968af8 }, { 0xab54ace86bce25df, 0xad7a502dc39cb82a, 0xa6da6e6f03407bc6, 0xcd015eb178fb0527, 0x2ccd509635970c9a, 0xdd455bbe3a27c766 } }, { { 0xfca28fad2380f20e, 0x66d39b038df82f92, 0x9563c7e62f575304, 0xba12e6cb2d2d29fe, 0x6bd14ad580bc17f7, 0x416ec0c831b2c402 }, { 0x2987561fbfe4ce22, 0xd2dc53e73bfb114, 0xdca78b4b427d979b, 0xf4da719198c1f36b, 0xe45e5015158a81d7, 0xee9b525f14e9fe98 }, { 0xb2796d048e61ef5e, 0x17eaec674e4ea4e0, 0x36280aeb9981c57, 0xdfddcfb3aa8ef3f6, 0x9d5c0f79ab143bfb, 0x2e40ef63a4f93a5d } }, { { 0x60429b69b55fecc5, 0x418cb3a4127b4c94, 0xd52b2690a37b227c, 0x10b557261a5548e5, 0x68b158f12536ddee, 0xa988c141bce427b8 }, { 0x8b2769aaa4905756, 0x488e308d081a1565, 0xcef52bc14edcecc2, 0x6d37281b8e58836c, 0x9f8376d27cde10a7, 0xf5b8293b5ccd3404 }, { 0x2ffb8aa927a3d77c, 0x676843ad15b844b4, 0x101debad426a241b, 0xd25a621ec6bf281b, 0xf8f9a29479432ede, 0xd37df11c4f7ed061 } }, { { 0x9b3fb1720643e2e4, 0x7c50867bb9d694c9, 0x8e0d691d07ef8951, 0xdacebee6d2a690e5, 0x7c11721fe45a2590, 0xdc3607acf1fad3ac }, { 0x6cf83c3109650bd5, 0x4d77b0f868a8f0ef, 0x22ab9e618c4cc563, 0x68a914c47c2a2c17, 0x7fac9210072c15fc, 0xcda0dc14e6fb296 }, { 0x760835c7df37b6f6, 0x3d922f2bec68d104, 0xdad6f3c3f4057c9b, 0x5377a346dcdea2c5, 0x1be619d175e02c66, 0xadaf4fee64d418ec } }, { { 0x6a5ef46330388953, 0x575b31b4a88c13b5, 0xe7dba7d30b317ad, 0xcb809728b270a2a, 0xc51732639d96f093, 0x9bbea04f839e391d }, { 0x6dc489e5ab58efa1, 0x1e6e054b1065eeec, 0x6126c4b8219a8bca, 0x2aa35ae22f6f64ad, 0xea3f063a0cabf754, 0x7c97610df2676d4a }, { 0x7001f951b14b6840, 0x7600d987ceb9719a, 0x560d93369820ca14, 0x8d1280a3fb9eb916, 0xe094269dbcacd9a2, 0x27fe743ee9d2b210 } }, { { 0xaded2f422c557492, 0xd30ade3e9f0ddae8, 0x8b012d4197c31a27, 0x35496eb381c1a3f, 0xde425ff791efc554, 0x69356ed685771146 }, { 0x76fbb6b72bf97031, 0x53f29b5ecf4fc395, 0x504587ed24a8bc56, 0xc7e82cdcde3ff35f, 0xd1d9e477a5170d3b, 0x411a536eeeb4aa9 }, { 0x3357d8452ac63cf5, 0x8b1e2e888be520b1, 0xef2ae0e86625fd4d, 0x6b2755cb24f19f43, 0xf5761f756706be8f, 0xe9a4ba0768ccef1d } }, { { 0xe81eab2ec25d948f, 0xd3c74ea85c707e4b, 0xc0e295f08c52c9ca, 0xf9115ab7078b34bf, 0x9b5f2553f1ddbc8, 0x1c573710bacc5a20 }, { 0x7ead79bb87992884, 0xef76ed7586035a18, 0x54f227616f84c6a1, 0x4901e107a4fade70, 0x3ec0b8012a8330df, 0x46bedbac115ece8c }, { 0x28c3297cf45a57c4, 0xc1ee0539f2181294, 0x67d72efe625a7162, 0xb4282ea370a2f9e7, 0x664b504d470454b8, 0x7516f11087409eb8 } }, { { 0xe514a122fe0df077, 0xfd6d1c07b9a3b3ed, 0x5a5aa40acb7a98de, 0xef5df82fbe6d1951, 0x46a7081f2171a293, 0x228a8186a98f5b0f }, { 0x97a741f4a2ad458d, 0xf4895ffeed753cb9, 0x2419e2f1e47a5b11, 0x9e4caf7dbb69e0c, 0xf2b07658f5ba2f07, 0xbf0e40fa2c2680e6 }, { 0x323147dec0314694, 0x623b8e91f97a1503, 0x5b968c4d6672e12a, 0xab2f03b8b21e2917, 0x5aa53dbbd30314ad, 0xce7816886a3577f6 } }, { { 0x182d470fc9bf5c6c, 0x6df289db8d17cfd5, 0xde7fe682491cd263, 0xe4155d5601c31fff, 0x8b4c5a89d677a7a6, 0x92f123a196a11b48 }, { 0x1fbe25ded138aaba, 0xea12d2a2b751ab3f, 0x92ee0fa0eb97d71f, 0xa0ce53493b316128, 0xad99cc99f8961f46, 0x35fc818a48397ca9 }, { 0x1d1e6accb608dd8d, 0xc707196fca1d03a, 0x7789ae3f7fa41542, 0xa095bfef48f4034, 0x909e7bf8eec4a6d1, 0x841ecb366a13de01 } }, { { 0xb918dbbd6956abf8, 0x855ccdd03a09071a, 0x25154fd0e9783ad6, 0x172b9b442c37796, 0x7edb65fe4a5ad00, 0x7285acb45abc26b }, { 0x7c3bd5ae6f0fcfe1, 0xce7ae0826a13a3e2, 0x147fe1407bed3673, 0x89d9a50c339ea39e, 0x390eadf31cac4f7a, 0xec129b05bc81c6be }, { 0xa27611c4766765c4, 0xa70e7224120b4869, 0x212359414dbc57d0, 0x5bcdc16b40f4187c, 0xd7f8cecc1337497d, 0x67c5e43b7569f9df } } }, { { { 0x35c9eb91526474bd, 0xcb4f0b7fb6138d9e, 0xbb2a430eb8c6d39b, 0xb7d1ed1d8c10cfd8, 0x73b906f55f777130, 0x4f92015986e45418 }, { 0x1a7b5e958ec79e08, 0x52eac993c12e5348, 0x52b1ef913bd19c24, 0x9392eb7fbd9f5b1e, 0xa93a32d3e5a0345f, 0x9b539cda2d036c33 }, { 0xa677c270d1c2617d, 0xa62b944c949a2de3, 0x27c32e07329e3af9, 0xbdfea9fdbc454140, 0xbb8cf1314259dbc6, 0x31cef10052982911 } }, { { 0x68cfc3b99824221c, 0xc6ce8007ad8a5190, 0xb1b675093f12166b, 0xde64aa7cbd762386, 0xcf66d9574aa5b98c, 0x767ea27aee476065 }, { 0x9647e86931e557d2, 0x3fed52b8121fcaa6, 0x3be294e291cb6f74, 0x5e212c16440b1d86, 0xf28dac451a8ddb07, 0xa49aa265a3cafc8 }, { 0xff87b02b886504cf, 0xee6f33bdf3c3e1ce, 0xdbc3d44f9602f951, 0x63b34efb27f4a181, 0x468ac3fece23bb65, 0xd9be7944004e94ab } }, { { 0xe47e8d5b4506c2f6, 0x71db04d3939561a7, 0xf90afb652b68c29c, 0xe822038168b3e53d, 0x9d45722808782615, 0x68638505c1e5fcea }, { 0x2323b6b9e1a7756c, 0x292726df2bffe24c, 0x827ca846b3a1149a, 0x97b0438f07f9e71a, 0xbcb46d7d1969106a, 0xb37482ed16b96648 }, { 0x3bfc98c4b843896, 0xc817da59691262a9, 0xad9aeb90afe7e75, 0x791c4e1eccfdb3f1, 0x836d9a94cd15d45d, 0x1a771a2fdff7781d } }, { { 0x3e177960a5646fdf, 0xf3bbea33f6e08d3f, 0x48d42362c2477e06, 0xcc71c3205062d400, 0x9f0592f9b05e0ac, 0x504240771efca30 }, { 0x450a1ddaf0652d86, 0x882be07aaf563383, 0x7ac90a4f124937d5, 0x1fe885d58f51d81f, 0x19e693a7b293125f, 0x9c651ffaf57204d9 }, { 0x4bbfa7624d23e99f, 0x190995d6f1d97fc3, 0xe240c6250275b64e, 0x339c04931ffa95ca, 0x9176bfaae7f0a582, 0xf8f416554e9a124a } }, { { 0x68b67aa767a0b998, 0xd912bcd755b29149, 0x30e41664caccb838, 0xe80e9bdc2ca60fe4, 0x434562adb1707d31, 0x2effeb547791f56c }, { 0x63e70c9897be3d7b, 0x52a69ab8b4fd3cac, 0x8adedacb63677f60, 0x17db197a07fdea18, 0xacf8e9021b170ef6, 0xb0c6be867f95f419 }, { 0x6c8ac31fcfd4c857, 0x9fa872861cb57c2f, 0xc022166de93591fc, 0xc4ab82d839242686, 0x1fb8b1543a9b5d19, 0x312cc66a68ad94b4 } }, { { 0x760e604cca1f5587, 0xb3d553f233fbbd32, 0x993a0be61208d910, 0x3b8f059f6e69d342, 0xda064bc64ff688bf, 0xc9d85d5b7d2bd8f4 }, { 0x497a30b45c4658fe, 0x51aac618e99134f5, 0x3cb9bc641032f927, 0xe5f291bc92cca470, 0x5fad369becb3a479, 0xfbbdc35fee2f741c }, { 0xdcc1f5fc98e572ed, 0x3513d9a642deab6f, 0x935c0abcbd6799c8, 0x17a2c61bbafff72d, 0x2da254726d20257a, 0x42b03929dac694d9 } }, { { 0x229340821acbcb1, 0x301be38c54b3e838, 0xdd4bb0f1c14c5ec4, 0xe500d1075a4512b9, 0x24f04675cac30b6c, 0x358dd066f9765e14 }, { 0x6ed93b4068725102, 0xb360def6a1e799e6, 0xb780c1a6f0588223, 0x184bf24a28c04f6f, 0xc1b94977930e3342, 0x878778937e6650a2 }, { 0xb5a8b18fc1a35fa5, 0x1aa3e8211f6e8419, 0xd36c5814de3a9ff8, 0xafd187fce41999e0, 0xaef0e65d58e786b5, 0x53f68aa1a1fba18a } }, { { 0x823cc56a9c683b2e, 0x88a2eb0bd2fb6b47, 0xa8d03d0db97cf0ea, 0x2c8cabf6313b2e27, 0x595767d5ec5b007a, 0x67afd1a07a74882 }, { 0xac0c44fa5a46af57, 0x66f35a953b78725d, 0x5280cde43aa5f565, 0x81dcd7b837fc94bc, 0x4c7a6ec7724fdd83, 0xb0dbf18595fc95b0 }, { 0x8c92383475d619b6, 0xc97b8187e10ddaec, 0xaba4b1d6cc5e4db5, 0x31f0d4e6637882bb, 0x9b046baf1307e923, 0x2fd4f5d6ae67fb58 } }, { { 0x13eaae6ddab14430, 0x9a317709b82023bb, 0xbd5ddbd31c1a2565, 0x40e4a6f5206b8a6c, 0xd4928eff330a51f3, 0x6dbf32b397d085f3 }, { 0x6ae8c0c42862ed57, 0xdf2479cede7b254, 0x4674faa0589a7e8e, 0xe64d5878f89fabcc, 0x1c4c3831233bc6da, 0x4687dbf4d098e7c1 }, { 0x6fa1839e14244c27, 0xb5ba9a10d4478d5f, 0x4de213bd9321e39a, 0x6d1fe6bf959d5440, 0x28d93470d26b8a68, 0x9a4f6fe0e1933d6c } }, { { 0x58daceb546d601a0, 0x264f8786728260b, 0x9d4133b8b5ea2d62, 0xbd8676739f94bc4, 0xb87fcb0724718280, 0x2ccd39ee1fe33b60 }, { 0x99629188a76bfe6e, 0xc6cdc2cdda2c543c, 0x836e6467edd89f0a, 0x1d1483b16114745a, 0xcdd8b11f4594bd61, 0x3452ba087401c6d0 }, { 0xa68836cf9518c762, 0xa7869867d275f28f, 0x5184e7daaf3468e0, 0x2882c198b2b0d1d0, 0x970a5ab0696ef5cf, 0x64d065ea0ee723c7 } }, { { 0xf70c06a5961df5a, 0x3aa9889be1059061, 0xf9ada404f854955, 0xa27425e3ffe04610, 0x18aab30f4bf9790c, 0x66b779c2640d9ccf }, { 0x58a8c3caa44a93f2, 0xae4d6d86d5e0b262, 0x8a16725774af56aa, 0xf04abd9a3616de3d, 0xec6554af14130815, 0xc84f431522f3d84a }, { 0x8e55f1647ce167bc, 0x2a4d09ae1402e696, 0xc7957db4aa6fc9d, 0x60af42b89018f58b, 0xf19fe1d8661d1ab5, 0xf326ea15de6837d } }, { { 0x43f6e0f23ccb6f3, 0x7306a4ba985d20ba, 0x7f29c44a7477e205, 0x9780a271a08aa1be, 0x4d73d257839ca953, 0x4a38a21849ac429d }, { 0xb32484c8e24a9d07, 0xcd5950b94669b65c, 0x84789b274c46bf7b, 0x8df6803bd351e74, 0xecd3065e3118fc54, 0x93b4797e46cffb2f }, { 0x2210b14bf7a75d9c, 0x8a73d850ded76dac, 0x811a1dd88cef4110, 0x26cc4476a2a54c52, 0xa267784dda3d2b77, 0x99239110f2c0b72c } }, { { 0x27c50888fca1c470, 0x9183ab8e34caac5a, 0xff71573b93882c2f, 0x2b272985451cf8aa, 0x5fc9f22f6b0da766, 0x63a788996c7e27b9 }, { 0xd015759e19e747a9, 0xf4bdf1167f9b9d1a, 0x652e3117b870a443, 0xd2b38f709e20a4b5, 0x8c5843f63c1aef7e, 0x4d92e30a05b16525 }, { 0x366944eda2a2f1ca, 0x2deb908cfad3da5c, 0x5ae50f1674e66231, 0xe67e1888b5665d81, 0xa937dbdbbe1b00ec, 0xb42b24a0fe8632f2 } }, { { 0x861ae453ba6d6db3, 0xebb934717f2acc61, 0x778a3b0a9e01ee86, 0x52e1aeeff4eaa761, 0x7498b3a9ac293eba, 0x1c2334912fa7be06 }, { 0xcf354abe9a1982fe, 0xa290913687be5be, 0xfea3c6322b50e03a, 0xd27cc4323dee9bd1, 0x9d2d3c5d6300993b, 0x270ebd64148848fb }, { 0xda6f0146bbc2ea9b, 0x25a48fbfd1ef763f, 0x82c7d23644a9385, 0x468aeca919f1c0e5, 0x1d50ef107923618e, 0xe291e42a76c85571 } }, { { 0x63835c893fdd0821, 0xe00f81e29a6f8d75, 0xe5eeec9ca5199d52, 0x8139e56c2e49c54b, 0x78afd1ea8bfec435, 0xff418bc9c48a68ef }, { 0xb09a0c66befd963c, 0xa017fa3850da92af, 0x5b2262384d73aae8, 0x7c3eaecaaad4e030, 0x1f8ea3303762b0d6, 0xfc4770f111aeb92a }, { 0x44486814df776f60, 0x53ca7594c06f3894, 0xa8a7493dc99a4cf4, 0x6238d9ab83e195a5, 0x16e5b0f93b77afe1, 0x831ae918daee0e89 } } }, { { { 0x78a0c7b60560fe46, 0x8e65e299ab2071d8, 0x960dcbf3dae25e0e, 0x14974e0cd5a65792, 0x6db0abb5759e4131, 0xf81214cae3ca85c4 }, { 0x17d4db7ee11397c0, 0xfa5c133061c2e28a, 0x317f0df4c2dc20ae, 0xcb3ba01d5b61e7ec, 0x7d9f86861c4c84c1, 0xb00d6dfaecb499be }, { 0x690e85eb50ed8ab9, 0x9cc7e93790943128, 0x62fdb59b70030cc8, 0x53f76ece7102d142, 0x49673f2c7597bf1d, 0x9057845d72a2b802 } }, { { 0x2b8b94624ace12e7, 0xcd39a436b01770eb, 0xc813ea42e7d813e3, 0x634535c05b9fd94b, 0x9ab90fe8652b530e, 0xc7cf982bb7c73eda }, { 0xef87c6af41f4ac41, 0xcb9794bb034602a9, 0xece7b200048acd46, 0x8e7fd2a8f7075c58, 0xa10e7370334f536, 0x9642606d6bb6810f }, { 0x501b2e2cb6e93954, 0x4cc1cd9e3c047ec0, 0xe82014d071bc0fe, 0x64c06127b804e444, 0x18c44cbe972ea9fc, 0x4d421bed8ed471f9 } }, { { 0x6b13b47452b41b93, 0x88df4096398074ef, 0xd899bb434a3f1268, 0x3cbc7f3897c9241f, 0x6640a191b21b1915, 0x7ff8f67550a0068f }, { 0x4792ca8832215c05, 0xde3f477a2eaa8c36, 0xbbf1aaf35c57c119, 0xcef8221bf1a6f7fe, 0x15ed26523e05ce46, 0x536829bc0e604834 }, { 0xd4d3cb5b49b7ae01, 0x4d1ff484ad75fbfe, 0xa3d145c507fb988e, 0x86dbb9111f13f343, 0xa5afc4f75ff2d6fc, 0xb5a3c5a949b436de } }, { { 0x91e8387d7b899ada, 0xb8ff242dc4347720, 0xcfcac5663fd4e909, 0x746a1ddfbfdc1e1b, 0x6487c0304dd25c43, 0xe0398ac397252049 }, { 0x67ef83e5380e6f8, 0x0e4c82bb9d3f8e, 0xaec0991baf464f4e, 0x50cfeab04348ccdb, 0xe0016621d043ed7, 0x8e423cbd1c9f9c2c }, { 0x22b4487f7edb584d, 0x2451893dd337d855, 0x1e87f0b8e510c646, 0x9e7142feed5b3e21, 0x9da57cabc0d6d95b, 0x9ad92242afb0097c } }, { { 0x652657305d26b0f5, 0x8775ba957ba0730b, 0x9f3bdcb01d39d900, 0x39d4e2d65b31063, 0x5a3f263b84563533, 0xf9113331b5e9b597 }, { 0xb4d49792ccfc16db, 0xbc289462530873fd, 0xb3f743b3eb3d82aa, 0xdef6e24ba58e9f6f, 0xaef75e44a6a98dc3, 0x1be36e001aadb024 }, { 0x2f4dd03eb8801481, 0x5c3852ef7a307afd, 0xf01600ca38dd2125, 0xe9c81fddc6196523, 0xeeac08b54cd2010d, 0x794e6c425e9273e6 } }, { { 0x293390483eacbee2, 0xa5094609d6620830, 0xfa3e56165dcedfae, 0xe246dc39a07fd006, 0xcc9875886702c762, 0x9d60ac5af554c639 }, { 0xefca8ccf4dc9953, 0xfaa895ec79be4c75, 0xee6d12ea51b4e5e9, 0x816c71eba29033ae, 0x81e3ac038e813395, 0x8b32d93dcbdddf91 }, { 0xcf269a4d9bef29fe, 0xddcba0cb0b5a964f, 0x82790868aeed8eea, 0x30b4be66a4021f6e, 0xee9161c1a9ca8aa2, 0xe5807a0f36ba8b24 } }, { { 0x82d5598435682519, 0x8ea94bb39468dcc7, 0x2899a91fcfa61612, 0x7dc79d2b27567415, 0x3bf7ad4b75af4d77, 0x18485fcc15dde6b1 }, { 0x3e5c0d4f87ebe4e0, 0x46d4e5391f2c814b, 0x640304e92d77478f, 0xf0140316bf39a1d9, 0x301819cb07784c04, 0xc01f543b49c9645e }, { 0xf2f8110ef379e911, 0xf50a98a917d17177, 0x1479674bcf058ec, 0x55df227b9d0f2dd4, 0x5b0d7146dfab84f1, 0x30c874fa5075eadd } }, { { 0xad672e3c0c76eef4, 0xf76f3bfaeba6178f, 0x8c5ffa6b04318bef, 0xb1633504f8465ac8, 0x8cf1b032f6618cce, 0xa99449d44ebf778e }, { 0xd17f16d2f0228987, 0xa22bc040e3da1974, 0x5a25cf71e1764187, 0xa8d200ca2e22356, 0x49c084ace10b860d, 0x214fe14ddccd3f8a }, { 0x4c9dfe47de308ac, 0x4ea55492efa3e1d3, 0x901a70bf1f665625, 0xfac29fbdf4b11dc4, 0x98529b723cf829f3, 0xa11c3c2260fb96b9 } }, { { 0x2c7cd43014b01f6e, 0x511f39d617ad5da0, 0x960f864e0ac58caf, 0x9a18ed885a9ee55a, 0xff7fc6fa4ee3911a, 0xc03db563ad0255c3 }, { 0xa199a90a31c8f1de, 0x62059f5821a45a92, 0x210b03aacea2025f, 0xdc376221bfa80200, 0x316aff9c42f6e1b7, 0x109db8411f1b34bb }, { 0x4516f3ef695bb1f0, 0xd7f05baa682a6e22, 0x84ed4cd52c1c81e5, 0xe1ab3266b7adb9cd, 0xe00aeeaf6f684039, 0xe9fa0eea8c9d9ff9 } }, { { 0xee2c0ede9d998b65, 0x4a7d56a0be5f94dc, 0x24c2fd4832626d0d, 0x529c46423263f305, 0xc228ef20e621930f, 0xee223a8485d0c09d }, { 0x4de79a073782cc32, 0xc0740556d638d964, 0x9c313db64aa14aae, 0x5723f496f3f5d869, 0x29ba81a1e0953322, 0x26130df0ea8a83c8 }, { 0x91f62294b0ea9f7b, 0xecfe2cc57b3bf9c9, 0xaf575faeea56f800, 0x6ee369d9e2cbbc89, 0x54535e59e4ef5a83, 0xce3bc2b138358f72 } }, { { 0xcce556734cff1560, 0xbea9fe5c9e728805, 0x8b95a46b5c62efd7, 0xc93b6e377015d56c, 0xc78d5e94760302fa, 0x16ddc2c3822ac669 }, { 0x65d180354702e5bb, 0x36cac8c03b906f17, 0xce7816443f27fbf9, 0x752467702aad3128, 0xfb544f2a785f8cbe, 0x37a33da42a28055f }, { 0xc9e00460f98d5b06, 0x841d717584f74728, 0x36963aa4f6ee2392, 0x3437ad6a05828393, 0xf6671566b991e90d, 0xfb68c52c7d09d4ea } }, { { 0x353f3a12723e4d7f, 0x41e6146f3fb81345, 0x46b61494e3332866, 0xe5c796648f7f4925, 0x768253e6a310f0d8, 0x999eefa6801e9522 }, { 0xe8ecc2992ac3e668, 0x3e88b91884ecc38, 0x8466998314e732dd, 0x596075653843954b, 0xd998a1000f3637a4, 0xe02fac1f35645c21 }, { 0xaf6ce99cfad9ca0, 0x1bc0d8f57409146a, 0x91699539f5d8c327, 0xb3ec379ad3e1258f, 0xf074b8fdf09c2540, 0x5d108db15bbc072c } }, { { 0x9afbab9fc708bd50, 0x974d26c97ecad2d9, 0x154b75a71ab9a7f0, 0x856799c3a07521df, 0xf8daeb01b83db890, 0xd4eeb03fd0a6bbbf }, { 0xbcb6581571d99a7b, 0xb0370183a0d23a00, 0xf7c5b85f06bf3587, 0xb28ca13450a98eef, 0xeacba2a6727333d1, 0x7d79044899595cd4 }, { 0xf1248b217d58d24b, 0x56c9b504c959652a, 0x50a5e8ea8a1d3802, 0x837dfe35afafff4c, 0x4776cd50efd6fcfb, 0x759c239c96aea3d9 } }, { { 0xe796d19222c4bf60, 0xa0c5d9184de46c3c, 0x90b6b8d6230518aa, 0x171f44d84383ae6, 0xdb20346ce7c5a5fa, 0x11fab9159aa83d9e }, { 0xe853cd742d41013e, 0x110d07d2a08061a4, 0xec79d5703e98995, 0x752f61fcb6d9a9d, 0xe2dfe4dc430cda74, 0x31934aa107889bc4 }, { 0x443b02f468d5134a, 0xaa664cc5df675e16, 0xbb4701d38f2d127f, 0x52e2b672f4153715, 0x552d57696d4c77ff, 0xa02b529682ce50d1 } }, { { 0x775172a4d0d9e931, 0x7128414d28ecb3f, 0x9997997c9244c2d4, 0x894757ab0cabed73, 0xaa586647bcc06939, 0x9f7781b87ce0131d }, { 0xa9cfbf793be6068d, 0x320789fc3d275342, 0xb7b68cfdda4f154b, 0xbca39e60089649ee, 0xfc4f6a7a83a285ea, 0xe640e31933814154 }, { 0x93d0e17f93bfc050, 0x32a8e63cdad98ea, 0x104c2e54fa8748d1, 0x5f31d0823cc31245, 0x3447a5ebf84d60e7, 0xfc059f335456fff3 } } }, { { { 0xaaabfe496730ec45, 0x239b7b3c2ff76132, 0x38314816ea300282, 0xab40cb7642a68cb2, 0x96f7f7be2045482a, 0xa5ca15cf58d4b25e }, { 0x1a70faaacb67ed18, 0x38a5f3cb29ee48c1, 0xc58b9fa4698c93bc, 0x9b59f0f0d2687898, 0xa8302055c98a218b, 0x89fc944f94de9db7 }, { 0xab283c8f1f2becd, 0x51a684053fec54f2, 0xb284734607940177, 0xbf163f3b41523149, 0x49c144ec181088a2, 0x8a2e701abb43e0c9 } }, { { 0x9a6db9846d5d641, 0x32d27671cf7d9da9, 0x9d20b3d52d97cf42, 0x355427af6cd3631c, 0xb958502368fce560, 0x8d62deb7c84d41f2 }, { 0x3ee078464efb113a, 0xd189ad457bf6704f, 0xae2f6552a48805d9, 0x5d60bce106a7a8e6, 0xe49576c81cfa30b2, 0x216bc5e780ac2ffc }, { 0x548fd9063ea14742, 0xadda4230bec777ad, 0x8a3dc000421716d4, 0xf1249983c68070c1, 0x732fe8f2b48c985b, 0x3522d43350742275 } }, { { 0xd72aea108f30be42, 0x83de636fe1f01e72, 0xbc9c2971f0c66abd, 0x2b1d475539e52083, 0x73eb9504ee569519, 0xe76c74f28059af6a }, { 0xc096642355276d73, 0x7deaf8a56c051680, 0x176c53fb1ac1979d, 0xa08236fe27d823b5, 0xc6d70ffb00d9272e, 0x57e819180fdeb7ef }, { 0x1776c696cf74b421, 0x9234fee5617520ab, 0x9db6eca8c0913e1, 0xddf0c06d2769bfe6, 0xb4cc118ad22821e8, 0x6008e2afc15a32aa } }, { { 0x68c2450579eb0375, 0xc8910477be503e1f, 0x271d873775a38590, 0xd99322d60fd9d92f, 0xfd8e216a24f05ffa, 0xb379d47a87100a09 }, { 0x895d510cb5fc6ace, 0x203425b7f98dfef, 0x920d49f8f917d452, 0xd742ae9e826e553e, 0xafa9dabedae3c55f, 0xdde2627f8c1c1ce1 }, { 0x9d4ab1138e2c1251, 0x1be3d8c3c5caeea4, 0xbb6ef986e7748b73, 0x1512432d39ddf072, 0x18f48c933243b7ba, 0x1531a5e192427789 } }, { { 0x504855da6a22c083, 0xf6dfdc0e8dda6dde, 0x235c368b53db9e0f, 0xf78f70efe1400b7a, 0xc50a4403dd2e7a62, 0x587000db3d78532 }, { 0xca800b017ff1baa0, 0x67b746226b5b649f, 0xf1bfcbe5e2b9c85d, 0xf1e572f1eeeb0a80, 0xb61a620ce282df75, 0x81e7d6967c17e356 }, { 0x302dcd9205a026, 0xe5e1b3ed2e90eb32, 0x2743478864fdb236, 0x8c4020b8a4fa6f87, 0x113bc6a0ec959f7, 0x6f4394bcbb70f150 } }, { { 0x62676141f57cc05f, 0x6636d89e031e789d, 0x650624cc678ab0ab, 0xfdc39ae33e3e220e, 0xb97513b66e6caf2d, 0x5f7157e5a0daf9c9 }, { 0x665b573e530adf0d, 0x2bf83db953cdd5b5, 0xaeaf1efa9993ed47, 0x7bcb8aefbd18ecc6, 0xbcbc2a6e9b29489f, 0xafb2f1f3bb3e8a90 }, { 0xa3d58f44fd353b40, 0x7c60d1f399123e0a, 0x33b84dd69fc7ae76, 0x3f12f07d815bac, 0xa8c1bbf21560b7d7, 0x5becc27b3aa9ee96 } }, { { 0x7f59956b5bfaf52e, 0xbb68fa44c9e3398a, 0x5a83e1c97d4c15f2, 0x4b8b22bccfa454ef, 0xfd1b73eefb9079dd, 0x916a85bf52b9c225 }, { 0xa6c15d7925f6ae9f, 0xdf5feddbcb6f033c, 0xb376ab0efa7ef6bb, 0x304ab37c41a04cfc, 0xb2dfd4f98dfd8c72, 0x623270b69118494e }, { 0x900039057dd04907, 0x83859800185266a3, 0xaa5da8f82575a7c0, 0x62ba12134fd304d1, 0x6d6e383d21ed18a4, 0x356579e4e5517f0a } }, { { 0xeb12e976293b234d, 0xcb4192d5d4e4fa, 0xf4eff730d0e0682a, 0x343d64fd60fec2b8, 0xa7cf86997a153c64, 0xd5303b2178c45add }, { 0x2ee81ef8b1390df9, 0x4f846bc28f24ef1, 0x6ad904791d02dbdf, 0xc90b2704be4e2102, 0xa1269e1ee5850e, 0xf2412cba75d360b1 }, { 0xb41dd10baeb60748, 0x7a6bd77a1c90d1c3, 0x777f098448600157, 0xa60511de704bd9c2, 0x3b62966723913546, 0x973fbed91ea22996 } }, { { 0x427152f61965ec3b, 0xfb2b0f9e02463d76, 0xd8ab01c45601d61e, 0x17b96cef686bbf07, 0x77cbee45f4db93d3, 0x34fd3094876e232f }, { 0xb626e13a224d1b90, 0x98f252c16087a93c, 0xe53a3db1fa834b2e, 0xda7566d4296d5957, 0x60c3f396dc524174, 0x7ac30559e4701de4 }, { 0xa05f259e6a26e7c4, 0xb01a01d99106487, 0x2f7a15a7fd831666, 0xe5256f65800dfadb, 0xa708c7f70ad69b78, 0x7d1875afcc9d99a9 } }, { { 0x14dd5688968652b9, 0x3ebd7b09c5f88d19, 0xab44bbd62527d9b0, 0xb0e537c7ae375292, 0x3d1ea7a988524317, 0xbd41864efd0dbc3b }, { 0x94d8dc1dd105e7c6, 0x9ab623a967db51e3, 0x4a88be06f0f073c9, 0x5ec7b2de11712141, 0xf57439bbf73c50a2, 0x4a3ed3ef13b4cee3 }, { 0x494852d467ffc2b, 0x86b7dedf75c606cd, 0xa7dc225b0b2f8f27, 0xc2fcfa441a4a8797, 0x4a1d68f806bd5b13, 0x712dac87787364f7 } }, { { 0x94bcb09c6d9fdf3, 0xa6d8e43e7a07d566, 0x9051cd6344732754, 0x5c568e99e0940601, 0xd8d1f841e9aa22d7, 0x9cc174554f0b5a2 }, { 0x946d69cb94c3dc82, 0x5f4f47ec1b4a94b8, 0x9e879461fcdb2bf1, 0xe15cddb7fbb89789, 0xa3aa9fdcbc86d570, 0x4728962f67551bdf }, { 0x65c3438a12e41ac0, 0xd240307c9ab1b879, 0xaa96a78b4987ce74, 0x82af54647820b058, 0x3c59d05cec6756fc, 0x8d43b958e1210d1d } }, { { 0xf2e783c38c8cc8de, 0x40155f6053e0de4b, 0x1cfcbb2af61a8cc0, 0x4d4b7deabed4caca, 0xd88dea3836b63768, 0x29590be450dd910b }, { 0x3571ae286b8f491c, 0x962adac7060a93a2, 0xd77baa925abf513a, 0x677ced801cf25e30, 0xa0a1fcadcfad8508, 0x83d4caed8eec8738 }, { 0x3aebac5bf6adcfd4, 0x39446ae91298e31, 0xf55cd531106cbab0, 0xd60f7d07b0d2d415, 0x5dae63f35d3db1af, 0xdbba13df1b493704 } }, { { 0x3ad39772f545ca56, 0x5458d292435ae649, 0xba17d94ab9ec27b1, 0x21b5fa9ba7825f42, 0xd157e6044ea5c32c, 0x5984ba2778ae67cf }, { 0x25f38a4d52d862c1, 0xab090784f678f9d0, 0xc641e44b021b2f55, 0x2c4a67aa52a6d2d2, 0xe2bcaf1db728cc6d, 0xa7c995bbdf9cf00f }, { 0xab29e6980e5e9ac2, 0x149ff1ab936f2817, 0xa2deb595c1e73f78, 0xcc96af0408a94ef3, 0x147aefefb08dfecf, 0xb3fe54314cfdd7ec } }, { { 0x8b08a863b826e4d6, 0xc76aaafd3a8cec38, 0xa87b8222bb66fd69, 0xa806b8835a2be3a, 0x9a604366e68b8a4a, 0xe5a443f089f7436 }, { 0xcb1b41b7a01a4282, 0xa99a2394faca3649, 0xd4468642be2b7e60, 0xcacae2e6e26fb924, 0x8bd928d35d919126, 0x542a56d239620e18 }, { 0x4e915ede80422c5d, 0xa5022ffa82161530, 0xcd9f83267428bb7, 0xe5e8b109e7025e84, 0x39c95eb2cd142cdd, 0xa773d23777b600f1 } }, { { 0x7ae1b7ce5f0c7b5d, 0x232c416f9cb1872c, 0x7e3fdc3a248e1c38, 0x52f8f616cea2a074, 0xbc8ef0c50d3558c6, 0xe67439cbb771b079 }, { 0x7f1a3a6bff871f88, 0xa7e6bbc31c9ff0f4, 0xa5f51574e3f5e94a, 0xc0824d88c8feaabd, 0x9c39c17eb48dace9, 0x3190e6412f8d98f5 }, { 0xe76fbb98d2905a1f, 0x22271baf171b97e3, 0x22ace6a423bdffc6, 0x6e1c4ee1973defe6, 0xc3bf3b6981b22410, 0xb2e823268c1745cd } } }, { { { 0x8c56d33d19f26d59, 0x2398a70bf9cc600, 0x47457c997b1c6b72, 0xeebfdeee2351ada1, 0xf312afb6cfd8fb83, 0x7b09575bca01d875 }, { 0xa08ba8e7d18ce9f2, 0xb1f8c2f3217552cb, 0x35a332a9c0b45aad, 0xf4b9394e2d007d1d, 0xdb45bfe687413be7, 0xe1580ae5f3f864e6 }, { 0x8b03d0ee8ef7503d, 0xbce36fa47aa300f8, 0x7a86cf7d9b417012, 0x3435ec0a21247690, 0x80f1d62f1a3234e5, 0xcf16e73485d10df5 } }, { { 0xfc330872cfbc1d10, 0x284ecb9efc5aa3ef, 0x7c2fc674e0baa15f, 0xef2dfce4d284b2a5, 0x216867bffba46f36, 0x81af1863027f631a }, { 0x154d920d6e69b1d0, 0x6f6098c540da3fb1, 0x43daccd75faaa72b, 0x169adce232ba1b5d, 0x8fd5e777525b3cb4, 0x3931a6f1160b1d4d }, { 0xc3f151ae25fac947, 0x60c26f2a3de1f7cd, 0xc9f5487641a952bd, 0x3829539ac388c2d5, 0x6dc4a510353b5cf, 0xba3d7b62c4186f74 } }, { { 0x98f37d9b613a2b15, 0x935edd095d9d0a13, 0xe2044469f53af90a, 0x833fa06fa3059ed8, 0x1bebd4aa777403ca, 0x9dcefcbe2cb19446 }, { 0x9afc1c2f6fb50cf9, 0x992d8eb2a0c7024a, 0xbec1267cf3b8e058, 0x2c5fe4adaed17567, 0x997149b9379b4a32, 0x4412983ab02d25db }, { 0x8458967aa914d98a, 0xe404a5875ad2a6c7, 0x369385cd41019354, 0x9b9a6b2ad8d3814b, 0x377dbe0c69caf73b, 0x4ffe4835e6c1d64b } }, { { 0x587f93aba418be6b, 0xe8a49169f8c8b0f6, 0x5e8b84abbceb3c1b, 0x46faafa3dd768e48, 0xb28f7ee3dcf4b43, 0x9d67aaa6516a5199 }, { 0xe1b39c7da1cfd925, 0x34cbb31075a771b1, 0x530a7177904b8d43, 0x21498b85c8cf862, 0x2f734893519235db, 0xd3a578158793afdd }, { 0x841076ee202837c1, 0x4687bff1ea410d2e, 0x327fa6c7e02fe9a5, 0xc833548f0888fd25, 0x43382a5319cc3773, 0xd5b10a1fba111a7c } }, { { 0x48737fbeb2892658, 0x8367361b13f26b8f, 0x44ab7ff9186490f2, 0xccd588f08c14500c, 0x1e1b7ae117c8e20e, 0x5b2eed0ea42bb8b2 }, { 0xf3d81d06e91c4cb4, 0x2436ecfc44217357, 0xf76222bffb9ffc1f, 0x1b1d334b34770f66, 0x1f050c0d817ce84f, 0xb25388f87f4c56a9 }, { 0xf632732dfe0ebe5e, 0x192a469ed9b9f03f, 0xd5be5f7947c9ee6b, 0x564916479b9e82e3, 0x149d5b689ef1a2be, 0x3bec427a841b0e75 } }, { { 0x90c2b7a5350f8323, 0x61ab3bd92a54f4f2, 0xf75818677061e740, 0x39ee0fcb5837441b, 0xc73222137c388a84, 0x2c251752b9ad4471 }, { 0x74bbe7328612c44a, 0x8b0532e31de6f4bb, 0xd19de1b5225fe043, 0x1c12b4e9699e0f3b, 0x5499f3a316f138ac, 0x99053ce3ec61ba72 }, { 0x144533217f92b4fc, 0x5c44de10d378b8bd, 0xc38acfc62841e591, 0xc0a2b101135b80e5, 0xc600077037999218, 0xbe7d034633a1414c } }, { { 0x5f5ffbc871f42aa4, 0x78c76963d3d7ce21, 0x1ec1aa828fd3561e, 0x563ab78754c26e93, 0x3288e4bfcdde0571, 0xca053ce28e4ce134 }, { 0x64ae9ef36df33248, 0xacdaca3acb13899a, 0x81b5023c59cc4555, 0x92b89f3c09cb7151, 0xbcb22bf8dd7dd50d, 0x9caf9fb0a1c17abf }, { 0xbea6bfbd74a7868d, 0xbc893ec1e9f00956, 0x1f259bd1366a4e57, 0x2a6239ef22ebd0a7, 0xa778932d436adedb, 0x8eb2e76945cbf882 } }, { { 0xdf22c6d92caa5dc3, 0x4df7ade94f65f905, 0x9f6d9c46648921d9, 0x1fd74d7ea0321eff, 0xab6e9c29437cbff6, 0x2f52d2a7a69cdecd }, { 0xd0dd4ace53856cc8, 0xd8b9f221c4b1daff, 0x1b89e8b7bb50c0e8, 0x4a14a2f612666544, 0x1e677770f18c8542, 0xfa3402236a6c319d }, { 0xbb9408423a9fec20, 0x88001ec5dc1a223c, 0xc769a486da420ed6, 0xe84c18ab2f80d970, 0x8ac8bb9fad86651f, 0x6c8eba00703ae135 } }, { { 0xdb42fa274424e1b2, 0x699d66acfef9bc2c, 0xbb345eaf23af74ab, 0x764a6e6841ff657d, 0x5145efe40735d27d, 0x3b9311423a533191 }, { 0x3e4c4fb2f2e54b9, 0x551985083c0eed9f, 0xbd0eef23de8175e1, 0xaba45e1850b919d1, 0x3ca1992b2cde771, 0x86268ad3953c0cb2 }, { 0xd9ee8f18aa0ebd13, 0x7bab8f46a5b3f25a, 0xb94e2a0b845173bd, 0x64de8f590ba32cb, 0x39f916d92830eb12, 0x77ab9dcaf888c04a } }, { { 0x320ae254069e79ec, 0xff54adeb13b7bd3f, 0x6335352a5d73cb69, 0x23bc237f23924a51, 0x79a87aae7b49e7f, 0xa27683833dc75b0e }, { 0x4019800128356a96, 0xcf3e3c07f7eefd84, 0x661b53d6f0b3a3fd, 0xf84f5b57a6705dd6, 0x3bdca24926b9b2c9, 0x2c58f7d6a70c9692 }, { 0x39104442fd4d787a, 0xf52efcb35001add, 0xba13fe98d51d3405, 0x628706bd3584baf7, 0x4da29db77685e7de, 0x49554681e9686961 } }, { { 0xc9fad45372b06354, 0x71530fb5b2450a7c, 0xb4706519498eea16, 0x438bad47eedec985, 0xb1f2dbd57ae5de56, 0x284404e32b379b27 }, { 0xddb78956d7a43c16, 0xff55086a23970ca7, 0xccb4319e17afe055, 0xb4447dbb9953c100, 0xa0c4fc98c50250e1, 0x40b7f071847a12cb }, { 0xecea73a97e6ef9eb, 0x7c9a8dc1822c7a7f, 0xa0efdb817b8a674, 0xde8eea7f439c6e79, 0x72ade74ef5c44fe1, 0xe193e06a9b3d5bbb } }, { { 0x674230e149dd58ad, 0xea95de7c83d2f365, 0x4aa5af6cac20bd77, 0x84fed8070983e808, 0x4437fdd22e534be4, 0x9ca1180b443cdbb7 }, { 0x1787d1436fb28657, 0xddbd674ae03adbdb, 0x3a7bdb10b5d66d4, 0x47c9043ddb0f2c2c, 0x95ea54705567aa6f, 0xa0d8e3dc74e3d339 }, { 0xd4f17622cdcc27bb, 0x47cdc7a67990b4ee, 0x6273defd9dc1d7dc, 0xd4eeb4740d2c9e2d, 0xab10820a43d97f5e, 0xbfe0a3059594e79f } }, { { 0xd26a8e0bd70dc22b, 0xc6d4f43a668986a3, 0xae2790527a05e74a, 0x3d7e9ad8764d82dd, 0xbff80b4a73558baf, 0x6267d0a69edf728c }, { 0xca7f7ef0175c4ac, 0xcd79f8bdcb11fb4f, 0x1b55c8a535c29577, 0x68352e3b1ab2bf52, 0xc4d6cd536b7acb19, 0xf4c5237784d4ee25 }, { 0x6bee1f6e9d2818bf, 0xfc8e1f861efedbe5, 0xed81f1461ced28e5, 0x1983e945e9102557, 0x75360ab15c82e83b, 0xa53f3ec64b6f9386 } }, { { 0x60b7ccfa395ea104, 0xaba0bc609cefa4db, 0x6516f79ffa189eea, 0x48abf2d54e3c919a, 0xaee7dcb3ebb56670, 0x4a63932711af28de }, { 0x8ce677443f35f3a2, 0x837d7c3f487a35db, 0xb32377b02995c363, 0xaf03d053eed5ccf4, 0xf636a7a6ed012d65, 0xd1707683cc7260ed }, { 0xc8a980e98167531c, 0xe95f45f7559adca6, 0x2a49f9ae17c05a81, 0xbf64d94ead3918e1, 0x4bd2da859f61b190, 0x2d66f65c6bdf0fc8 } }, { { 0x72f6d9d35445bbea, 0x55b2e07ed5284232, 0x1534b9b0bc879a54, 0xbfe3a7e51800f393, 0x44ac698ebb5f1c21, 0xc8c3170da8179b35 }, { 0x52ee316773bc1cbd, 0xaeb3217f85ebb942, 0xbeb67fb206ed4107, 0x162867ad8fb43b1e, 0xc2ba6de59586a94e, 0x5dbea4690ed9880 }, { 0xd35699ff2be048da, 0xf1052e17028c8c57, 0x88adea13eec22255, 0x712f94c42edf70af, 0x53b07898618e2b37, 0x9261e3e07d0ba21a } } }, { { { 0xb3ffc5fe821d2700, 0x633a914b5ee4c8ed, 0xf16f95f77ac5eacb, 0x7cf368647b720086, 0x8b9d24d38c782dfd, 0x51c814470f21fefb }, { 0x94d378f0d2df268d, 0x6d71ff386d11af07, 0xf3832a2ca5823227, 0xbe1f98c4f2dc24cb, 0xfb276f0b4c34cc69, 0xfe18385d70326f1f }, { 0x9b6735a86e866efb, 0xae987023106f2aea, 0x2802595604bd2c77, 0x85cb887941fd77f3, 0x1f02d22ebda7bc5d, 0xa37c25ed20e6954 } }, { { 0x7444375bc9da6668, 0x611253087e0454ea, 0x96b0fac68ebea41c, 0x3ea21f96f9acdd27, 0xe79ed6575e94ba8a, 0xd5488f14c80073f2 }, { 0xa130e630be77839e, 0xfff5dfb358d86751, 0x98ecc703b820eafd, 0x352b8a712174788a, 0xcff523749d5c0a5a, 0xb4d805c339c8150 }, { 0x4171a4190dfb0edd, 0x104d3361fc0ed58d, 0x7de4c97ef17a2155, 0xdd089992f33bb7d0, 0x9e088a4551309b44, 0x107a73b45b2231d3 } }, { { 0x65399f96768150d2, 0x61c5b84aebafbc21, 0x4605a6d70404d5e, 0x4ab989c2c53f61d3, 0x2121276bc3afa07f, 0x77765b903379d031 }, { 0x90a0eb1405fcfc8f, 0xe9919da7bf21fe43, 0x87f488e593e817b7, 0xe15a55741534075b, 0x70b3614b716206f9, 0xfd41d048b1a38d3f }, { 0xee7a657671a2ff03, 0x8d8167cd9374682c, 0xe60ece5b6fd2fcb5, 0x6b6f7d6cceca9dfa, 0xd978e05537b98c45, 0xa1273489067e441c } }, { { 0xc731aabac43b1515, 0x69ecdeb1905c3982, 0xb73dec93577214da, 0xc7b6441e13f08b23, 0xb3072c9b7666ab7d, 0x29bb5475f0c3cb54 }, { 0x8a005203a9fcef3, 0x7681f781d082be1f, 0x95cda6d1d9f51aee, 0xeb76e4966c5675e5, 0x4e0b382796b0558f, 0x3f1cefd4736832de }, { 0x91871e3903088bf8, 0x88dd7a8a6f151d22, 0x45d7e21abe373221, 0x72467540d7a8b45d, 0x6240e8bf65801159, 0x18d79f470e7e51a6 } }, { { 0xdb9026e32c862950, 0x7b0f1acffa1244dd, 0x230c7bae5f5e3ec0, 0xe51f28f126b837ff, 0xd0efdb8832bbeabc, 0xf1358e9a35f6ac88 }, { 0x995bbd015b117eda, 0xcf75e3395a616661, 0xa519dcf940a71fbd, 0xf22535c4c903b10, 0xb5be94b5ba10a28e, 0x69e6d6784b51847c }, { 0x5f2e8f53fb49f8d3, 0x593d96e7db667de5, 0x7db6c3e703dfc15d, 0x83a2663ef4783201, 0x95e822e61b22b5fe, 0x20cf731cfe9fb717 } }, { { 0xf26ea3a4d4c069fc, 0x8e5845c958ceead9, 0x5c514aeff70f5cee, 0x9437bfc5542371aa, 0x965f54ccad656a8e, 0xe75223e7c47a32b9 }, { 0x234cf671c079b671, 0xf6f1514c73e761fc, 0x32c653f7c64d8a8c, 0x86110adc205a2161, 0xbbff3a0d3c680471, 0x53222e4c775211e2 }, { 0x1e770f957cefab78, 0x67be79cdab9f5e60, 0xfc8f0a60407c36d6, 0xab03cfc2368b3648, 0xe0ab73d0e8f9f25d, 0x3af639366e2e0bfd } }, { { 0x7dab885c0ade8e72, 0xcd7620e9e4277ef6, 0x42b0dc1111edbfba, 0x506f8e1caed1093b, 0xca2df6e320e7f297, 0xb7e7cbd0a75b761b }, { 0x1b2d160a9723c0a6, 0xe9bd49fa78326d56, 0xc1c7e064b2137cc5, 0xbaa8130b8569c3dc, 0xb577c0e285c973a7, 0xd276df5e8f994edf }, { 0xc930efa6e6610b0e, 0x8ca2b83362daeaa7, 0xf4e10cb68ca1c770, 0x9708dc3cb5efae87, 0xcec089d2c7de7d9a, 0xdaf659f0024c6fba } }, { { 0x6cf9c9e7c613a01b, 0x57d449a2fccee255, 0x65dbfb9a3d8d7412, 0xabf818a013a13134, 0xd664c8cd2a1bd0bb, 0xd1f64bf3611f435a }, { 0xaf4f1f78a14d900e, 0x115e09340a457ba8, 0xe96719ba6a07df93, 0x1b2b2ef25dee4c6b, 0x51be63834cbcacaa, 0x8365f4cdd3045087 }, { 0x8034a3ef3e321489, 0xc3c2c3fcd1dbd7ed, 0x5be7dd47a340622d, 0xc0ce530266e5ec54, 0x23f8a46efe2681b9, 0x986749b30ca9d219 } }, { { 0x52c89f664da7175, 0xa2f9553acd79254, 0x5436311f3b28deee, 0x787f5aa63eb6975c, 0xf83bd32e180c6551, 0xabaad41749f69354 }, { 0x52f71d726c33d55e, 0x3a2f6e92459f0593, 0xa673a904dcf9885d, 0xcb2a45cab9e44de5, 0x17fb2567096a1473, 0x8087b2ab0c5aff39 }, { 0xad8b44600d5ec556, 0x1c8c3b3b27c7d0aa, 0x450ef1e2c12b79a3, 0x4639f32d37325f14, 0xe008dedfb6bd08c3, 0x484fa1b5a42c624 } }, { { 0xbec63b3df65ba5c5, 0x37093c9beb5a0f06, 0x7e68b37c6a95a7fb, 0x22e595a62a9b7fcc, 0x3fce4373bb92708, 0xdf5350d9d6502deb }, { 0x1488691b74044db9, 0x51a26cde4f298922, 0xaf5540337ed9c6a, 0x7556e1075df8d97c, 0x15ab465987aec30f, 0xf084b1080e0e0dfe }, { 0xb748a271cfdd535e, 0x7b23aa5aff78c128, 0xf45c792e551f324c, 0xd8653707ffcd07d8, 0x7e3afa7b1946de0d, 0x37c4e17334ee9e41 } }, { { 0x80838d82d6e8ad82, 0xf397a88749a37b83, 0x5f873032adefbe7, 0xd7bfc25d039e6d3e, 0xeeab4ede687b0773, 0x36ceccbe18152c84 }, { 0x204196a4255623dc, 0xd135bd232d2cd2d5, 0x2671ece164c4e0eb, 0x4ba15d32c0bc980f, 0x1c99c4d3dd03c10b, 0x32e1736b52301774 }, { 0xb95c0f5deb9d6cdc, 0x8585ef06fcb843b7, 0xaa2bfae2017eae12, 0xbb61a099ff6a3d0c, 0xc23d78957b481986, 0xe8f24816ca54fc75 } }, { { 0x49247a7e32467ef0, 0xd0562284fedb1e84, 0x8406fe59a1facbbe, 0x837e069c3f7739ab, 0x30fd2f13a1b9eb9f, 0xd1ac7340be8c584 }, { 0xe6e7fc5d2386e3fa, 0x10cb0b6981621baa, 0x3dd25933dfc2f9bb, 0x32e1ba24a43dd880, 0xd4475767a3214a6f, 0x7ca790c06b56f874 }, { 0x50358be1a6f19727, 0x84b124408bba544b, 0x23224f1da2139efe, 0xbcafb1aaec066b68, 0x72741fe71a0e52, 0x7cc21493ada72b3e } }, { { 0x95e3999c905d97a3, 0x1f1016683e1ec7b9, 0xaddfe1c3cb27116a, 0x477546cd1857679b, 0x693f20ba30774ed, 0x71f1a6779f074e14 }, { 0x2f631943f8fbda87, 0xbe7ed0bf42a0ec38, 0x565cbd9dccb7eed0, 0x928e6c4918c38ea9, 0xde4bb1889fa19656, 0x265d80d92d4b19aa }, { 0xa28792c5990b12e7, 0xd23043084fda09b9, 0xaf12ee555fb1ebb1, 0xc2daa13ec82c24f2, 0xe55b2abffa2db96a, 0xc8dbd64b6fad7647 } }, { { 0x4c10b50c10f9c9ba, 0x6e6988298ed1124d, 0x96e604db32d2e8c9, 0x9da60ba52e452015, 0x773d8df2247e6ca1, 0xa3e5a2162de44a66 }, { 0x453d5ba31f768d88, 0x2d995665cc38b26b, 0xcc8584fefa311d15, 0x47653b8c61a43437, 0xec3b5b339f20f053, 0xfb3c6383b55ffadc }, { 0xf983a3d75ca6bd1, 0xc630deeeb696efa, 0x514d53c458895433, 0x13a18baf0c052715, 0xa517840300e7e0b7, 0x4ac23297f7ba8335 } }, { { 0x8c6773ba14b99b10, 0x881ae7bfa02a6212, 0x6f7308f1c381ac8b, 0xf64dc949230f17c7, 0xb2d3784fad239697, 0x25a3bde3e69650e1 }, { 0x1918d97675972962, 0x2b474cee0488a1c8, 0x13057e52eb45f5f3, 0xddc700474f764623, 0xf95ea130a8fa0f0a, 0x8fe5aaeb2c8343fc }, { 0x76781fbbf09e053f, 0xf2f3aca9839660b4, 0x1b11603c7f14a54, 0x8dfa85068aecc136, 0xa5e982ec496402ae, 0x1c8391e2fbb9a089 } } }, { { { 0x43ecaceb155bcadc, 0xf1a449ffc28741e3, 0x4482d7bf7ddeb08e, 0x369a3147d0ef2ef3, 0xc0fb178c63be5353, 0xd7fdf191e3eacb6b }, { 0x3651720ba610878c, 0xe467b29a874bbb12, 0xff898d2893f75ea1, 0xa4520229e4aa8b10, 0x500402cb4e3f3c54, 0x7e00f0ad12e2af1c }, { 0x902616c09e33fc7e, 0xcac54bb107c022a4, 0xf39b268dca64bc43, 0x24ebd310f115025d, 0x1f1f4930dd8b422c, 0x548d874aa3811189 } }, { { 0xf9f9f352be573390, 0x77503bb96308e666, 0xf80990fa8b0bafff, 0xb814f158653e3f23, 0xc2e561b1171241fa, 0xcfcea4718c1e98b3 }, { 0x1d2cc8039e8b6154, 0x5d5f27e73945a5f3, 0x4bb74f309a4cef72, 0x535b372a1d6e4cf4, 0xfd2b5788c92eabba, 0x58edf9402c2c5900 }, { 0xa156529e1811b1f4, 0x80ad15a0da61b040, 0x9b51095cae326a6d, 0xac459b42202d30fb, 0xeae1669c7b0c329a, 0xccb8957b4fc2ea17 } }, { { 0x7333979bdf6411c6, 0xcd15d98d2ceec348, 0x531bcca6907a2bef, 0xc6cf0a0b15301abb, 0x83449b34051be466, 0x416d19afbf9b495f }, { 0x4d0075d6b28f5e74, 0xcabaeb930e1fe574, 0xe9e8f8576f7e8ce6, 0x28ead6c6c0f4a50c, 0x125b8df50d99c7cd, 0xda9f26cdada426d9 }, { 0x48292e80939377bb, 0xef87e8c162722fd, 0x1e3915db45dec0c1, 0xa0ab9f6c2822468e, 0xaf312b7db47bf0d6, 0x79d2297fe006d7fd } }, { { 0xe54a59da9fa1252a, 0xe7e282fcd1c40790, 0x71d1f2f0c1243095, 0xd87c3818b12eb2ea, 0x3088a295b833d210, 0xdfedb9e03fee483c }, { 0xbb505b8c7c142d55, 0x90ea3a754160ce9c, 0x374458cb15060254, 0x15735097da79032c, 0xc03ce9ba1a1718fa, 0xd993ba276a8905b2 }, { 0xde90483813146c8c, 0x5fceb66bcf6724b0, 0xc9bb280ee401a44a, 0x8acff4e0aedee883, 0x26ef8acf5c40f0b5, 0xf45ff2ce566c6ac5 } }, { { 0xc9d609e2414e0079, 0x344ac94ca0b7e17d, 0x86b709ce52d25df7, 0xb058b182d379dad9, 0x5d80889bed08d72e, 0x20fc54e4867a61c6 }, { 0xbe0a5119a772f952, 0xa3037f7864ded98, 0xd83c9f8b2dfddf8f, 0xaf1f3eb3c6008b4e, 0x359db19bfc8295c7, 0xfce6329afa785467 }, { 0x4a6649f3a90b958, 0x4ab56131262e35cf, 0xd78085a48736f4c7, 0xeb3eae68288258ad, 0x74055056a1cf9889, 0x9915c8941ad3234a } }, { { 0xb5f0d4d123058b, 0x7fb91c84715469a4, 0xd2c1725b4b7681af, 0x80f0068ee2eb99cd, 0x65ab5ac3a70a9a5a, 0x2e2f0e12702eaf1e }, { 0xb02acf8d61bc5884, 0x941dc8eeedebed55, 0xad494b2c442a3633, 0x4b1e2ccd1b318017, 0x7d1950655630185d, 0xcb9125f4a78c8fae }, { 0xa63188dc719ad61e, 0x7e2593711b689ba8, 0xc8a7a283fae044ab, 0x1b6559a97c40b4e2, 0xf28b87913b3807e1, 0x153059a78720ec5d } }, { { 0xcf6adac1cf244981, 0x7764e6f390d70f49, 0xec9be24a234ca1e6, 0xae31f579f46efbf, 0xec81353eb73bcf13, 0xb477e0fdecd74036 }, { 0xa1dade91518b3974, 0xce18c8733902cc2, 0x8bf104dd4ef134a4, 0xaea199e650c3777d, 0xdbdae1f91a3d5668, 0x7906c6821807046a }, { 0x5ef9a92d807ff1c8, 0x89cbd55de0a6a0d6, 0x28c107fe855e06c2, 0x65e71935ffccba5b, 0x576a56195ddb7fc4, 0x63d08cc15ec56c17 } }, { { 0x3a24595be59ceefb, 0xcec40631de14d666, 0x2e38461c124183e9, 0xa639595a89068f2, 0x6178161611d74311, 0xe5d578f448ba6bc5 }, { 0xb603f09356dd918f, 0xf0d53b4a1844e3d9, 0xf15ae40b17e2f62e, 0xa99e71e544fcfba7, 0x7c9bdc004ceb9d30, 0x60431dde6ded4fd9 }, { 0xa1bb41253b1cdf1f, 0x9a982ccd2518fa2b, 0xfe744154ed9a567, 0xe8d7a4fa3c57852c, 0x51048e4a7289ad68, 0xb6b08e49ec5ff956 } }, { { 0xd4bf02283793d9bb, 0x4ad3235eaaa7bad3, 0x26580eaff70fc2a0, 0x42d3c01db7ebb9f1, 0x2e0461dbbaa6c664, 0xcc732e0e834fa49f }, { 0xc6140b62f3bf6069, 0xccc3d34840c1969d, 0xc2050e018cde3d3, 0x631c75b98ce72e8a, 0x6474a29bb4b01d56, 0xe2462acdcd10295a }, { 0x569d5dee3e8c2ec6, 0x6fd218b8c4386124, 0x2b1b8c84645985c5, 0xaa6ae0d39568332c, 0x5feec9f585482402, 0x5dbfbd5f17332e45 } }, { { 0x251c796f5ba6edbf, 0x7ad487e1ae0966d7, 0xca63f53c85c169cd, 0x3d074d702cb1cda7, 0x11269e8283500484, 0xdd4d7850c8a3495c }, { 0xbf4b9b1f58b8094b, 0x9b6f56bb7f282c0f, 0x75daf6f9d2cfc2b6, 0x35532afd25597787, 0x9a26aaef1b4d772b, 0xd0550968494825a7 }, { 0x4b3096dd989d462d, 0x86f21ebf03f46486, 0xed6c4b925fa644e4, 0x8fe40f250e6df789, 0xd0b9814845fedd5d, 0xf6fe3a891cfc4b15 } }, { { 0x19cf0975b20ad137, 0x6dfe816ce0d38f01, 0x5a2ba229f0d7ed40, 0x62be3de085afaf8f, 0x855c729e87dd0fc8, 0xf4d6f8e72e96def0 }, { 0x42115b5847c64ca, 0x93ad16ed434d15da, 0x92f5b69ab9d6113, 0x122d613d46a9fe02, 0x9327fc92b39e9242, 0x7cf3f3e9d6d3d8ec }, { 0x8b3ab4b0fdcc2d07, 0x5ef968cb3effb002, 0x92f42f7753f41053, 0x6bfbfbe364093dbc, 0x3143d8d472dd3bd2, 0xe8f378e7dd56fc03 } }, { { 0x6fcd392323d077ae, 0x2a833a1273d6ab8b, 0x3111b5cbafbbd015, 0x8acc9967dffdea6c, 0xfb09c994bdf317b5, 0x3c9df5b69e30aa37 }, { 0xfc34e9bb6f34ddf3, 0x3f527629f7c9b822, 0x58adf5680efaee15, 0x42a0f7f7a5bf4df, 0x5d833ee137f3742, 0xb9a09a621d9e8774 }, { 0xa3c26d277e91323a, 0x4ff49905a35fc855, 0x7982ed9f884ea211, 0x67df9573eb42fe60, 0x3ffef7093cbe0b7c, 0x974fd536299a08b3 } }, { { 0xce2f625ea86f5e3f, 0x66b878422ce3adf1, 0xc980ee856d6f8386, 0x88aab66314eca226, 0xf7fa12cd6ac3d257, 0xf0ee8402c2f9abb0 }, { 0xf76a355a64661c90, 0xfc21b8b5139f44ba, 0x35b15af606abca13, 0xdf81cd286f105682, 0xcb8d9e0eedf07d20, 0x6062fda894c1521c }, { 0xdcbb496e21eff3e2, 0x9e2c356ec2e34045, 0x49d27d33ec679323, 0x6dfd30fe5e2b54f4, 0xac7c0eabb9f6bdf4, 0x7add896fbb9be8d5 } }, { { 0xf02d35f1d89840d7, 0x10d6e665ead1cbde, 0x5845b99967471105, 0xe739297584457a4f, 0xa6c87e9981ccc106, 0x9542465c70ba9c76 }, { 0x639f3fce75da8cd5, 0x4edc8450b4fc2c70, 0x95f4968680005d59, 0x5363cd8ccc93d0f8, 0x3c21698b87130ee0, 0xabe25240fb973739 }, { 0xe73a6476af13227c, 0xd08aa35173e98a8b, 0x3800cc853418786, 0xd6e5e6df4cf276a7, 0x71b5c8eaaee5826, 0xe28541ff1dc9e0b7 } }, { { 0x5c8d010fdd4e3669, 0x980145a70dd12c05, 0x3c0f94117f418b8d, 0xe0fe9bb20edb21de, 0x20d5837e4301801b, 0x1c413f7e43eabbe4 }, { 0xd002fcb03904f19, 0x5c9896ac116f3dd9, 0x3d4382eb0d8b20f, 0x8cac2b030074d72a, 0x25a5f188425149a9, 0x91444aa209157a89 }, { 0x78274861623ab592, 0x65fcbf4b59d883e, 0x4e6d48a888e470ac, 0xe75da657eb4766c, 0x82c35674f0c573f6, 0x9be5498dfc738c87 } } }, { { { 0x924f6d365955016d, 0xb3ebbf45ea834311, 0x49e5ad46cb0d85c6, 0x469bdae80453c0da, 0x8f5522b6f3ff8701, 0x3a02167f6e303845 }, { 0x2d36e553df83d16b, 0xf4956748f216a768, 0xe9c2fa7892e83d9f, 0x2b742e374a0a21f4, 0x3f2c5abe9e50a47e, 0x43ef477ef54270bd }, { 0x2639c0fe5ba97221, 0x26bb9dcb9e249911, 0x94bb245a0666715a, 0x4f40165dfcf1cb99, 0x81a93d7b84f3c2e7, 0x4d0cccf21711c901 } }, { { 0x68355f6237371478, 0xd1eddb97eda0f626, 0x63109bd4556655eb, 0x93bf0d0248192b2d, 0xd6ab5215f3b47b35, 0xfdf0fc68f0525187 }, { 0x8c9b8fe031eb0831, 0xc632253e4f64375d, 0xfdf437d9281e0a5a, 0x63df5a72214c735c, 0xa190c1c05daf5e4f, 0x1da6b1c3d6567b86 }, { 0x2bab3f1f908f7b55, 0x1c44e2c23d914e2c, 0x3d515527e5e78bd5, 0x781ec9ea88ecefd3, 0x52ba4c3120acc187, 0x6487b1124bf32ab9 } }, { { 0xc1dbcf4bff6296aa, 0xd4e1595661567dbf, 0x4720f59b1ec8d1f5, 0xc1d5fca5ceaab02, 0x79c280727c597e0c, 0xbab3d62909992acf }, { 0x91b62d30852b0cc9, 0xb9b18fbd3c70af10, 0x9fabe366a5f3d78e, 0xa63f73fd661de8a3, 0x52c2b088e3205603, 0x7e103a64de3efc60 }, { 0x4daf0b7435cc8f0, 0xc46857a44e30ddb7, 0x4656417810605bb7, 0x40c9f5f93bf42319, 0xc80d7805edca38b2, 0x82bf64a98cc4b62c } }, { { 0x9d839705675aa669, 0xfe59e5f71cdb5f5e, 0x77171e50f6cf9959, 0x737fe56f56ebee80, 0x4ea754bf74fa46bd, 0xb6a22da03ccb7a57 }, { 0x41f737599ab0f993, 0xd5ce423463294b00, 0x62be699d515612f0, 0xd2c7cccb5dafe044, 0xdb19c5fee751a1d8, 0x746d68834063c27a }, { 0x52d25994d1c40359, 0xfa5360e5862afa92, 0x19ef965d4016d657, 0xa2e6957d3a087762, 0x78644bee4aa7f884, 0xa4dee5e2f1fa5dd2 } }, { { 0x99e986bbf3627b06, 0x4bf1b4ccff900ed4, 0xf80281f4e5f3b844, 0x1487e4c3bd9abd7f, 0x9ffdf498406ef65, 0xb21dca8644f20391 }, { 0x64dab583c226d6e, 0xb0cc829e73cacf2c, 0x9d8cfb8d03ec253a, 0x89202ed2ba6f09cf, 0x8346cd148c62d9af, 0x9ffcefbc409f70a5 }, { 0x33edd9839909382, 0xc41572ed62c4b5e9, 0x6ab3dd62ecafd649, 0x7f2b5409b27c17e0, 0xfadc2a63f4128d1e, 0xb226944b3c14c092 } }, { { 0x69800959188db99a, 0x539f1aafaa5ca00e, 0xb5725bac88ef3205, 0x1527629e95b70465, 0xc6be4f285e356e2e, 0xda651ff3a434f6e6 }, { 0x78c4a0112616c256, 0xcd3f1f14cfef1855, 0x40ca1073a3d69449, 0xe25ca4c66ae3861b, 0x4cb23621a38b05b1, 0xa2a391fa27c2590 }, { 0xcd9e176edb73af6e, 0xf745df981cc2391, 0xf50c4b76fbba609f, 0x88a69dea64fc27fb, 0x8db67c5152ae7476, 0x2c141a1f52d5cd1b } }, { { 0x776a813e44970a3e, 0xda5dfc65b2c37ef4, 0x252a0c0f8c439833, 0xbb6a098de6e602d3, 0x8edcf68b05ee2d38, 0x3736b9ae4c4443ac }, { 0x7facfac13c4201ea, 0x2e57718c09f30110, 0xd4ef501ebc6edc44, 0x1baf97a0bae8c133, 0x915379708ef54797, 0xa3576d69e68f7b19 }, { 0xc49e154a3f84b467, 0x9d053a6eab53c339, 0x394b1836bede941c, 0xdfde20b4ab76e82e, 0x61fca13a9877c014, 0xcb56ad25122e6c4b } }, { { 0xca08cb46f60e078f, 0x787c2d0832a7bbeb, 0xe89c37b58f5adf7f, 0x4626e32cac447918, 0x25989d879c23d3c3, 0x7a4de00de5f79099 }, { 0x6c1ee3e104bc4554, 0x6f22021dce62884e, 0x7a40efd9895e5d72, 0x854430db807d7c90, 0xcd4614db1a8e4ee4, 0x79771e54e89bf680 }, { 0x8d4c305f4f68a376, 0xd6c92bc3cd493fa7, 0x83aea84ef032683a, 0xe1b3ae9859aa4b9c, 0x65e7ee17491e8c55, 0x99bb73d8b2a4e198 } }, { { 0xc16bd03c8ab329ee, 0x349c97d3dc064258, 0xa7d78ae050f4625c, 0x5f79c7809959bb7e, 0x35d44d58017236ca, 0xd45e4d0f8627c02c }, { 0xb8fe58331a1ee805, 0x6d3b527bf0d63403, 0x3ede1bbeaa6898ea, 0xf5f5d4582cf2fa5e, 0x5fb9cf0d7f14e6f3, 0xa858243d4829cbfd }, { 0xd1ad471d727ff7b0, 0x17b2b5d36670a0c3, 0x78147ec56e763907, 0xf553f0cd19edc2f5, 0xeb19b4c4bed52c01, 0x560203ed8a4d488f } }, { { 0xe7c0fc239613e5fd, 0xb9268706db8ec48d, 0xabdefb54f50f8c32, 0x61f1a799addff861, 0x4f8235293844838, 0x240667d1642781d0 }, { 0xc53609924ebd0fa6, 0xdf366b981e44c5ae, 0x25e428ac1e5dfdb6, 0x82ffcb9d901233e9, 0x203eb6979f01464d, 0x6b021d4b67deded0 }, { 0x5b61b2516e44203f, 0x1a4bf77e5082aa5a, 0xfbaf9bbf4a2909de, 0x18bb6a8ba1953ce4, 0xa685876e14af4d7b, 0xa30c2cb1405e357c } }, { { 0x1aa2fc9c1e9c4edd, 0x2975a0e578429875, 0x7a1eca0c610cfeb9, 0xda970491b42a5757, 0x345b7c9c85422c63, 0xe0835ae768a6b840 }, { 0x1a2e9220f65e3739, 0x522171f3aee97b2b, 0x44d10249d3feb2a3, 0x11197599c3f91327, 0xe6d541f1146d16a8, 0xb289cb7e87021640 }, { 0xe4396e0c7d076ec8, 0xfe37fbb04c8c49ae, 0x9bb63b8f3fd92be4, 0xa469ad214fbed37e, 0xf6a6bf318697fc0e, 0x2cd0a9c9ad025ef9 } }, { { 0xebd32802b132f3e2, 0x59abf6a97feb25b9, 0xa75d8cc74ea9df26, 0xaa6af8652cfe195a, 0xf8dd508ac0582f8, 0xe056e8fdf763880f }, { 0xd834b4e92b3bf2e2, 0x785a0f895dbbedef, 0x8e434bbc0ba36edf, 0x14a7a800fb5f9717, 0x18cbf59bfa766c0b, 0xf45f8a9bf4bd1321 }, { 0x905c014198fe7dc1, 0xa3da63631601dbd8, 0xe5f6eb5d83a3be2f, 0x9e85644f4b55f85f, 0x98de06a73e21bcaa, 0x315a63ef314bee5b } }, { { 0xfe26b565b8e3722, 0xd725a2c2e6b33b98, 0xe915bd94ec943b73, 0xc71fca744166832c, 0x5dd9499f310ee920, 0xd421e0fdab6a8157 }, { 0x1f0673911a9d7602, 0x8b5f3f325331a83a, 0x74d7664d2492314d, 0x866f14f4fd08e793, 0x33cdcf11b2b02428, 0x7dc5a6e2e6390c59 }, { 0xaa4c74bb3b92a7f0, 0x43a4c5886b413571, 0x7c851620d51221f7, 0xb6730bea1d37dea1, 0x40369b18bc15a176, 0xa69ef6570f179ca1 } }, { { 0x1103509005508482, 0xa3c9451be4b194ad, 0xba84ac89b5551295, 0xd1dca4a3b1e5dc63, 0x8a10d5a1f02d3623, 0x8ced751a0d1ae2e2 }, { 0x530d7b0ac071c56b, 0x40866a8960b66384, 0x1120d2ea53c9d25b, 0x1caeac983ef2269, 0xeae6b1e6fe630a74, 0x746331ea974e085a }, { 0x18d831ef8634ec89, 0x16cc9913fea9bc5e, 0xb39ae2fc6e5fbfa2, 0xc33557e549aef73a, 0x771a430bcf0d606e, 0x102c317e6ec6c641 } }, { { 0xb9a0acbad039ad53, 0x41c5b424c7a2f03b, 0xe9c008893f09d0e7, 0x5cab3048085aa80c, 0xffa666d94ea0baa8, 0x8d83515b475a5424 }, { 0xaab6a443a4a4500d, 0x6bf4bb71bbd01eaf, 0x121c899da55f8daf, 0xd6d62fd09cf6d15f, 0x5dd57f11a5702876, 0x207be6a967d1686e }, { 0x19efe79407be5852, 0xff34716dc895378c, 0xabf248d3834ac43b, 0x502e4bac18dff3a8, 0x4c2ef68a760307ee, 0x29cf771a2a0df8ea } } }, { { { 0xe3df7f7c210f88b8, 0xeb1e471b58cef4cd, 0x96df5bc438bacabf, 0x9a4cc965a08013bc, 0xae276c76d96f7f6f, 0xc1d1009ab5077e0d }, { 0x907a2fd94b211e32, 0x3328f535bc0c032b, 0xcc478996983296eb, 0x7a569747893b78cc, 0xc4619bcdf4438b3e, 0x7186edd9a1370dff }, { 0xde002474571a0888, 0xdfa9f31c7ec88687, 0x76d97f99065a7cc3, 0x194b641007c5b3c9, 0x7bfdb39dc5ee8543, 0x2339eb645432b654 } }, { { 0xcd320210c9b31749, 0xbccae01949cb6d28, 0x3b1103c2349bf347, 0xf1a43c47f7777a76, 0xe1999408e4499c36, 0x891dc2f660a064b2 }, { 0x185f0803e77edf80, 0x35e9fc0ad0554e8d, 0x96fb7b42dc7409ad, 0xa8098164b20716d6, 0x77b507ef9e739928, 0x5caaedc72c9bb8a7 }, { 0xf468f098fe8c63fa, 0xd7829547cfdb0628, 0xa27aac32c6d7d1a8, 0x59e48f13a87c90e6, 0x1dc9ad874988ca95, 0xed2e2a849eb9c8fc } }, { { 0x8d8bbbb6cdb9e508, 0x32812b55768580ad, 0x4a5391e0e66bb2b9, 0x2901c5f1d6311c85, 0x8409605ee84bcc35, 0x676d20acd4f67bd5 }, { 0xd469ad8cf53566c6, 0x100f33e84486fad1, 0xf5d9d287d9877e60, 0xab2da0c2b9bfc559, 0xbb8e1f60649ce539, 0xa0c868f5d53cc348 }, { 0xb4c32d8ce90f406e, 0x75564745b80c18be, 0xbb1197f8102fa7ef, 0xb1a31428f4f97680, 0x23b018205012f68, 0x157cc7c183c8f74a } }, { { 0x67ce00b39666f820, 0x7f603f6db48da3c, 0x90dc26cb517cc76d, 0x6fbe59ded45bf497, 0xadfaa11cde426ac5, 0x59a73d3ca0ab8bfb }, { 0xf21d54d463bd4711, 0xb30a5fcaa3ad224a, 0xd0158c7dd3b57a3f, 0x24341efa76d02fce, 0x9ef9680cda0355c0, 0xe64785d86a30db30 }, { 0x4394f3c16e6c6d27, 0xb7404a40acc8417, 0xe7965d27912f5c68, 0x64f41558b1b98783, 0x947d816f9b3cdf44, 0xf0ecf01d01bccecf } }, { { 0xa5c68acc2f782eac, 0xdf1b0a6868d6dca3, 0x26673e75f6783d8f, 0x4850baf58adf7bf6, 0xa40ca1cb8fcf67b7, 0xb666e956dc618e77 }, { 0x8792d96759599aa6, 0xe6c77a95a64f77, 0x7f3969bab98282d4, 0x536d0eb919c17067, 0xb70b6980109ec9f0, 0xd575b40c30cabdf5 }, { 0xe2f6ff8fcb818e40, 0xa8e28c214ba685a5, 0x8f329d93c1e2583e, 0x5a8b158e0d9290c0, 0x76a909e417dae4f4, 0xc973d8d261fd83f5 } }, { { 0x5bd12250fc10db09, 0xa24df88136e3fb32, 0x3706b6ac1aafe98a, 0x5ccc7c4ecf328771, 0x7a27c1f62e28e9a9, 0x4fdacde0e025fd6c }, { 0xde657f91fba1a324, 0x24ce01a3dfe642db, 0x312ac5e3387c81af, 0xa1a4491f4968c9f5, 0x4f00a3fe5d52c663, 0x953999cd6d41b485 }, { 0xf95e0a361b06070e, 0x3267ece2c90fafc9, 0xd448322398c26403, 0x584da1d3d49d5f28, 0xa03037ad15155e65, 0x803208c56af6cd84 } }, { { 0xb7edd6717c3d4b82, 0x7df09a4f9e6f455, 0x37fd8db632671542, 0xeab6923ff9e67d1b, 0xbf683a949ccf5734, 0xba410402388364c8 }, { 0x1b03794ea6101b07, 0x560119915fb34a1c, 0x9694bb4e103fb069, 0xae7207c344d0d44f, 0x656426505e492671, 0xe6b8e22bcc415d1f }, { 0x6f554461d2c209ff, 0x5781729e39a2eb30, 0x2a603cd64b51ca54, 0x9477cbadf3fa2ea1, 0xe20272185c455a51, 0x914f99bae0472767 } }, { { 0xe67735fa86871b7a, 0xa885cd8b716ee77, 0xb1ddcf81ab27a1f4, 0xd5a0c117facfb655, 0x1b222aa22a0e60d9, 0x461b3e1228b2a74a }, { 0x11f833069abe912e, 0x6e9df637ac039e80, 0x796a631aefc9d93e, 0x329d0d8fa6cb2911, 0xf93e3ddf3dc1a987, 0x54446fdb8d92ff7c }, { 0x61d089cc439d463a, 0x5a724492f17cd20, 0x127113248e331ef9, 0x1d618c7341f9c4cb, 0x1f522fb261357892, 0x50f53a283a48b632 } }, { { 0x6fada511af8dc1ab, 0xe4653c5a58d370f, 0x4ba5fefb1594b66a, 0xf7fc929c2d72354, 0x262ddaaa000e53ea, 0x567f310531413b91 }, { 0x1f28b0ab4941fc7d, 0x956e41322a236a22, 0xcc04c798dc0361aa, 0x1c1a0a4f1b1f3d9d, 0x1691ffdbab133174, 0x45d5b892feb95972 }, { 0x9d54a649dafc211e, 0xc13cd9e34f326d2d, 0xcfc30bee2fe0e98a, 0xf7b3fa86b05ec8c5, 0xe288d09a568403c0, 0xc769af238c03818f } }, { { 0x5d5d7f43e040a5a3, 0x873f66793c99893a, 0x4ebeeb22ad6a2c21, 0xe8a3c3ecf32dff45, 0xfdb8cc2a80f399f6, 0xb19ae1c54c9590bb }, { 0x8ae9f53c2d02de17, 0xb4bffc6615b018e8, 0x2b384827a0981394, 0x5bd25730740a581a, 0x60d4f2357b4b3532, 0x9363afd72e7cd909 }, { 0x4d8cd39e8f5bba4f, 0x3f49f792162a1d01, 0xace8f86ea7d828be, 0xbbe960dc936b6923, 0x3ed26f881323c456, 0x41cd0025c1e8ff8a } }, { { 0x24f93ac4d0310345, 0xf4d554c2fb864846, 0xdb871b83fd2e453e, 0x21c469e6240c78d7, 0x822e9f0e76b76481, 0x857fc09be7e72f28 }, { 0x5dc284e70537efb1, 0xe803ea1d84bdad7f, 0xa0bdbacc7e678bb, 0x7dc7495374bb1e49, 0x6244b592e392958, 0x5e71b60edd824461 }, { 0x2aaaa3993d762fe5, 0x39e3b348fe251e16, 0xfd05760d85d56055, 0x402280a9b266073, 0xb69f3d83aefc02ec, 0xa95f08a1ef412fa } }, { { 0xfce733da4e0ffbb2, 0xd9b5a44025dfd9ee, 0x5d49181fb102db36, 0x1cb6279cecf9db41, 0x7da27e192a3d07d6, 0x4778ffeef873467f }, { 0x9faa91a97bca64d0, 0x17d2c94f28854f6e, 0x67b370959e48572b, 0x39dd272aea024253, 0x9822e06651e327e0, 0xad972ebdecf632ba }, { 0x24796905748f5b43, 0xce94886ad41cb115, 0xd36f0369077a5ae5, 0x3f067579add54cab, 0x839400535bfdbb21, 0x4863ed7fba484f07 } }, { { 0x877f8edaa38df2bb, 0x41b969adb670940d, 0x6339317127534733, 0x6e97cd81f6015b8a, 0x4f3f088221b88c82, 0xf5fb112ea0101b0b }, { 0xa9d924e4d20d2d2, 0xa67fd8d7a0967a07, 0x27e9dbbf5a6bee13, 0x489afa5d17fd87b9, 0xa9cec48451ceb823, 0xa2ad37352f9eb240 }, { 0x3ca7fad13737c62b, 0x29d7c66125c06a56, 0xe61840a096f917c, 0xd6bc8253c14bc931, 0x8c5c6cab31cae735, 0xf79d549e8d131d26 } }, { { 0x43c8abc10da0595a, 0x2b715aa43cc1f5f2, 0xc645fc62b70a09b3, 0x2ab9f0730ca0c465, 0xc29e18b85a6e606f, 0x34728e632073a18d }, { 0xe320d058fbb96571, 0xc758249f2cc9273e, 0xd7e5935b5eda8dd5, 0xf3d25a3125ec0b65, 0x31f99e09a0236dd0, 0x1dbfaae3ed90317b }, { 0xc7d34a93a9aefdf2, 0x9fc635ca9a39b791, 0x2fd39b3ad03aa568, 0x5d5b3fa56d19c752, 0xe50f5bef969b1fcb, 0xd9dd84e8daa2c5e3 } }, { { 0xcd87d18bf1000c54, 0xc8e9ba2a08ebcb5a, 0x3acbba1958e46fdf, 0x4ac1b169b1e115c1, 0x9ec2240347ed68de, 0x47fb79caaa54059f }, { 0xe04a0521d956a436, 0x69258f1044a21a20, 0x74a4088f5570940a, 0xba767784e031c38c, 0x1c4a0101f375872e, 0x3f624611a11fdee0 }, { 0x1e4164690c4d1697, 0xb3f2744d163cd0ca, 0xe3fe5ef7fa39304c, 0xa2b8830289612c52, 0x2dfccc5286af2c98, 0xbee4d8922e1a67fc } } }, { { { 0xd00a5558c8b76476, 0x95ce73321a9dcdb2, 0xada8c94099181f32, 0x3e055337eeee4b26, 0x986f5481cfe0992f, 0x8aebd9a313c4c6d8 }, { 0x58c59e4a8e3a1e3e, 0x20dbda1a288d50e6, 0x77a8711fc2795209, 0x45f3d930929abf4f, 0x191fe14eab179fa, 0x3dc5d4d489d6b835 }, { 0xcc82bd1b1bd93500, 0x67717dca841b0dd4, 0x3da902992d586f09, 0xb05d8e894373600f, 0xe2865c4851771dba, 0xb9f69bafdac0fc7d } }, { { 0xda2fb587e9996cbb, 0xa2da5b6e6d628c0e, 0xda8d4f31dc70ad86, 0x242a0756e5d0dbec, 0xf0db7979305350c1, 0x91c93e865cd02945 }, { 0x4555a8765e019330, 0x8e810a295af56d81, 0xfd141c0e24fc13bc, 0x5af7863396a1571c, 0xfa46b4c82a486635, 0x54736257478b46a6 }, { 0xa4abce8f41f85bcf, 0xda6e7562434c71c8, 0x6a9fe451bec2807a, 0x868aba534ee84fef, 0x92c0ad12f899fa6, 0xc64296ae44b2fad } }, { { 0x689952f815b0cf94, 0x4e4d89fbb93b2394, 0x39942267d0d4cf74, 0xee59e4608a0c726b, 0xb9a6a8aabdb7fbb7, 0xd4b7e343d54a3bb9 }, { 0x97b5022a3b3ec602, 0x93f6b9a548994ecf, 0x21399348af31c2ed, 0x10fb3365ff7a9686, 0xf99d2a861ed41766, 0x4258948532041611 }, { 0x196c570fd56f465, 0x6dbe2b39074cc87b, 0xe6480044346019b5, 0x6c1d6003ff308236, 0x5c01a26c97d42376, 0xc14580611937f23 } }, { { 0x58505ce3fa83945, 0xb9d6ffaab69aae06, 0xcdcb3c762a9502e3, 0x6ca40aae5ab20d8c, 0x605fad7cac072e31, 0x308e6d598bb67f01 }, { 0x6f3fc4d020131e27, 0xf1628be6d999eaf2, 0x2ccba950a5a067b6, 0x9b397cdcedab4977, 0xe53c6f0db916fc10, 0x7452036679ae1267 }, { 0xde9db13b1db17394, 0x1533b3c40792bc72, 0xeb16669a555c76ea, 0x4cbbb1be934e12c4, 0x706903cc92736e9b, 0x1040880f6fc93a49 } }, { { 0xa42a1ad374ee31aa, 0x48dffaaf05148da3, 0x70e211fbdc9d3b5f, 0x97473771a8a8ac39, 0xb757433194229757, 0xea15767c27619541 }, { 0xcce8b7f0f1ad9d05, 0x2d203d0be693bd06, 0x591baddb82bb50e5, 0x14bd2af6e114fe3, 0x798164796e1b4113, 0x2a6fa9773b7200ff }, { 0xfa5e11bd0b644a8f, 0xec3d1ae52ce9c93e, 0x6bc13dee87102155, 0x6419fe153781e689, 0xc9156de953f71715, 0xf11d234cc883682e } }, { { 0x43b29ce8ab8039, 0xb693a953dcd6370a, 0x527da0f9407d3755, 0x98a90a878b9c7d3, 0xc1d87453d1007db9, 0xdd07dfc59b668eed }, { 0x5c74b1da2d30f6d1, 0x5186d9b5549258b1, 0x4ea6f562edc2c917, 0xad4d78b562d12ff8, 0xcb53623ddcc2a88c, 0x3451a1058d29337a }, { 0xb4cd52b3395fb6c2, 0x37ff1f28757901c9, 0x7c0ce0c4731e3ea8, 0x923309b0072e425d, 0xb36db2fd3c9c85ae, 0x6dc580b77464693c } }, { { 0xf5f16bad72ccd846, 0xd134c298a06a46f, 0x6dc1defeba83e7ba, 0x44d67baa97cb3140, 0xb10487a7e057fd90, 0x7eef17ee4d04a508 }, { 0xdf886a1bbeb859f8, 0x24d7c53a9e82550e, 0x8c2485a269e747f7, 0x7256a1a12d3b5611, 0x4f1c591fa94d94c9, 0xe0074f11a64ad3be }, { 0x1ef2b604e096344c, 0xf7f8730c4117087f, 0xe87a601fc07beec3, 0x63a4df793d82b5b5, 0x5f542bd1694d768a, 0x2180b22243b895f7 } }, { { 0x60b1a08bd55e1e76, 0x2a11f39dc68e6471, 0x55999e22048e479a, 0x9a6bbae422933a4e, 0xd9f4a5e753b4345e, 0xe9a9f97b89d663c9 }, { 0xf4044b114b50f696, 0x178e3b99622e9d26, 0xd4b3f4c8d9ea511a, 0xa3fbdcdd48d366a5, 0x929593246585d9ed, 0xd1f9e009cf3506b1 }, { 0x9dfc016582f6d18f, 0xd4828028f76ddbf1, 0xa7788de5a7df7d08, 0xd0fb173e340168b4, 0x5bb12c6f161c7a8d, 0x4dfd7f2bc17269f3 } }, { { 0x588c25f4c9c99d92, 0x3b7de8658abd61c8, 0xed4dd1779ae47a1, 0x2343d31ec41742fe, 0xd5fa28f415698575, 0x5c7d1b5eb2e6283d }, { 0x21ab7b731a71d0e, 0x78c4cd99c5eba023, 0x14b4ca5a7d76a1e6, 0x2768ae915df36c9d, 0xfdee01191683f219, 0x61a10ff6b640fbed }, { 0xc5f144f8e59e7207, 0xa95db4316f364e81, 0x7cbddd6be8be8ad3, 0x85bcbdb01da02c66, 0x81870c45ea779277, 0xef6a7543c9a53cbb } }, { { 0x5577da0635cff873, 0x1782921e504e2331, 0xf798336ab70fa5ae, 0xaac6f38226626045, 0x7c75f24adc6ad2d8, 0xad0db1f924b3a13 }, { 0xf6b02442e3c0248c, 0x6aacccf1cfd3ea94, 0x93ece213061f1f7c, 0xf959f343ed953920, 0x906f35893b6a6a96, 0x517094726cf8b538 }, { 0x8960a6591cc77042, 0xfcd018c196fe09e1, 0x3e1d938770e61009, 0x269f2f270c38e218, 0x47561087fee6f573, 0x678a62f8837bfb28 } }, { { 0xf5092dd451385772, 0xb4fa1baf8f984e97, 0xca45175f60b941d1, 0x1dfccb566e2990da, 0x4ff31958b39b5c34, 0x46a77d55e4cd06a0 }, { 0x260487b80044ec28, 0xb10d120e8da1770e, 0x7bbd67cfb96450b2, 0xba983ab89886b873, 0x956b92f876c8fa26, 0xd83581977fbfbf36 }, { 0xa5259bba7b8d4ada, 0xd96d9eafda507221, 0xe6e3dbbd360f21f5, 0xfd1a0af1608886e5, 0xb9986f43034d193d, 0x41350330a5808a7a } }, { { 0xa27f7ddb2b618f43, 0x82527e68de553c4b, 0x4546ba4d85618f20, 0x3c1d1adc485cac22, 0xd96d390e4b71bf3e, 0x7eb679693ee9a365 }, { 0x82dcd355975397de, 0xcbc30a63d64e17db, 0x4a062a98157240cc, 0xe3c106e1ced86f10, 0xfcb22327e81b0d55, 0x358427d0c9e16bd7 }, { 0x9f289eb63f2eb5b0, 0x15678787e9db332a, 0x696f8b6068e543f2, 0x8025baeba64a2b68, 0x374bb9cdacfbd6c5, 0x42555f5423e5020b } }, { { 0xf4d2d1eb258ff107, 0x789a6dcc2a071f42, 0x8098878604b04b45, 0xfa1d9829bb1d64d0, 0x5e9882841ff2eaa1, 0xf41b3ca868ec02d9 }, { 0x70a21bc24f3aea77, 0x2085abe96a832913, 0x20b2b82239f7bda9, 0x7e6a6aa15eeb485e, 0xb8dd46b52abcd06e, 0xd1187999c00f4e11 }, { 0x62ec0cbab8833f37, 0x50602ace4def393d, 0xbd3dadc337daa7c1, 0x4955093551b744b3, 0xa554f819aa0c00f2, 0x6bd803d8f825b884 } }, { { 0xb08405373a613ca8, 0x2cf80e4d2054173, 0x3d774f2706fae254, 0xcd20a3b46b0c4aa0, 0x1abe7a7862079a88, 0x2cc952cdc37edaff }, { 0x9b045b8b2db46ba6, 0xbfac8a5029d75385, 0xb03b6e880e88d0dc, 0x835cc68001ffe8c5, 0xcfc5c1b24ffb9868, 0x9ec8680dcce31f98 }, { 0x1ab7aa3837322744, 0x99cfb33c003b416e, 0x7b051912dcb20ac6, 0x70dc3ec2e9046d47, 0xe87d23d5ca16edf6, 0xf5c40457073d9233 } }, { { 0x2a832c8eb52f67db, 0x5636a98818b8639c, 0xbfd399ee520f0e55, 0x4b75f623f7e50c0d, 0x60b109e5b9cbde8b, 0xd56b6525d293c9e4 }, { 0x8db62e8676879666, 0x4055d739c29e236, 0x6fa63fb074efbcb7, 0x4d3089a423309e16, 0x80d311970e6d57fe, 0xe37500229767d296 }, { 0x7276fd583524d5e1, 0x10df6ff33ece6990, 0x6314ff68036e2649, 0x92be34fb6d955e7c, 0x32d2fa9020529409, 0x730b99b15e85688a } } }, { { { 0xfa8ee3eb0a569b13, 0xf8100c703072c4f8, 0xc07d32ae96e62926, 0x29e775f5f7c39f0c, 0x7cebcab008a4954b, 0xcae3e2ea50a27caf }, { 0xecbcfe3f55b6cd7c, 0x7045628b96ac13d3, 0xc24d1f4469550323, 0xa1b0e7b0ad8f0d6d, 0x4c003002e2cffca4, 0x8077f3d977e0abe0 }, { 0x457ff686c8752813, 0x18a4984f33d6c24f, 0x22367e4f17d47bba, 0x5f41cad635fbb6d8, 0xf4a05bab60013f50, 0x28b4806cd672267d } }, { { 0xb587269f0b51ae93, 0x91e3584d143df32e, 0xf1f9dae9d2317101, 0x7506c26d5176af75, 0x3deb5ddfa03f8669, 0xe67b09793653a458 }, { 0xf0a4c44e4d41ec14, 0xdfdf09cd83f32459, 0x31b372ad0a6c1146, 0xd4e82283d33950be, 0xb1e629c20dfae9e2, 0xd066ab2c29bcc2fc }, { 0x7c91076f5dbdcce2, 0xb47fbf99aea43552, 0xad8ce85d25090d53, 0x8333f18beff2a938, 0x3a32dbfd40cd2b8d, 0x1732f1ff508367ee } }, { { 0x2e16330ba98b6ff3, 0x262392fd737fb93d, 0x9358cd65df35ac63, 0x2a6e5c6a63de799d, 0xefdabcd67885bfed, 0x424dc40f9fece698 }, { 0x5a2ce4d5a8e57069, 0x45c42fa5443f2aad, 0x4afca6f0f06b5e88, 0x16f7ae175ef5f08f, 0xbfa21957f6c785c2, 0x4590747da075e392 }, { 0x916de3b6286d77ca, 0x53a97fe58487e505, 0x442236ba0f238f58, 0x8e85ef7136ea3a8f, 0xf9bcca1722d81298, 0x5f07f040b0a92339 } }, { { 0xf6011122cc2797d3, 0x9b2efb78189f7c0, 0x161f1713401e4db1, 0xd7fdf4e2bf449fe8, 0x6e78255a029ea34d, 0x15e608ab2f850570 }, { 0x55a340ac621442ca, 0x273864a606d3e399, 0xb062da42766df240, 0x50f52de6d92e2811, 0xf2cef5a38568a734, 0x5b761a031ef91463 }, { 0x8bc63447044b9d93, 0x66da5c0116461fcb, 0x56fbe6d98ae2ec8c, 0x11c03dcb7d61493, 0x268622776bcafa77, 0x7d5a2f969fb4846f } }, { { 0x915de2b02cdacd75, 0x5c2eb30f2d29aad0, 0x26f88e3d834d30bf, 0xe156068b06510fa1, 0x28eb630b157a9222, 0xee216c4d91fcea9c }, { 0x8e2e2153fe665d0d, 0x8979fb5ccda64a98, 0x1e3ec7139c9182c5, 0x685ead2c2203e658, 0xe6b9b7d2d23e5b7b, 0x8f36b45bc02fd82d }, { 0x5ec52e5301d81760, 0x24c817f7b4aeb4fb, 0x77301b8660986e9e, 0x461fc9c3dbfb3756, 0xde9feb1e8e7e93be, 0x5c0d6f29c5d1cd90 } }, { { 0xf8120298fa736f09, 0x22e0d25e28ae53a9, 0x559670694cc17bad, 0x705c7c5ea739d76c, 0x183a5755d1aeddc7, 0x34114f71678c5532 }, { 0x489d21178e5d1b0c, 0xe66f5ad7b94fb2, 0x5eca1a111ebcf29d, 0x73a2cb0c1aad152a, 0xcda5347ad88d6162, 0x6a1598d5b88195ea }, { 0xf28cdc65b819f2e6, 0x92354d38979e9778, 0x20aedf6484070ae0, 0x3b286d2ba261b174, 0x2d5aff6925e34a3c, 0x88b42eeeac81cd56 } }, { { 0xa569212d2427a70e, 0xf00fb9e266b14a37, 0xd6c908e0edb97bb3, 0x1d8682bc1fa4130d, 0xa595eaad831b07dd, 0x836efd5da60d5060 }, { 0xed271a27372f7ed2, 0xb7e6a18ab9db9800, 0xa3ea7771c0652c4d, 0xa316cb4eb144ba5a, 0xc770fc535dc71de1, 0x30209a5095b0bb47 }, { 0xbd2819cc7cbd4584, 0x6541fda84f307fc2, 0x25ccfca7d3b69902, 0xc5fbec2f7c2933b5, 0x684c84e75b7dd58e, 0xe300829bf2418ec7 } }, { { 0xbbf3323ebc44182a, 0x74344d336b480549, 0xb700803aa9df68bf, 0xfb01cb53cc7ef98e, 0x7aea3a6be3adf712, 0x55bcc18e22fd122e }, { 0x294b500bd9093c23, 0xa2c78ae239be94cd, 0x151fe19b95d9a3c6, 0xc234123d7a47ca36, 0xcb888b05ae1130f1, 0xf5ccbf299d57b676 }, { 0xe6bec88a1e46e236, 0xc4ae763f08f8b388, 0x91def6ed4dc9432d, 0x6180b312cb9ab2e8, 0xf8a427848e109534, 0x971247eb52c86571 } }, { { 0x9657c1cecca0d4c3, 0x12cf4a4568888d37, 0xdf8db1b34deacc7b, 0x834fc31c6b5f0063, 0x69f09bb651a3bac9, 0xd6270c5cc5eddb4b }, { 0x17041ed6ef3078b1, 0x9b49126fbb074753, 0x6868005df136362c, 0x2fe21fe0b48edc3d, 0x56d75e010a2891f8, 0xc88f33c535d350a5 }, { 0xa849d5a008cf70f4, 0xe7df79db2b19a3ad, 0x15ba4d607514b5f8, 0xa7b4ad3d7f38e465, 0x91caa9262d28a58f, 0x9ed97891055979f3 } }, { { 0x5b6faffa146e789e, 0xb54c41d3db0fedd, 0x5c1956fa3e26a06e, 0x3f0122478ab41802, 0xf8f4ab87ff46cd24, 0x1c432b93b259189e }, { 0xc697fe0bf9fcf7cb, 0x4b266579ece7bb74, 0x1df553fc47e59010, 0xc902ebde22fd2358, 0x5d0d9713c53a7709, 0xa850873b6bc8f73c }, { 0x8a53158a95bba0b1, 0xca266d8fe9cce3d8, 0x98fc02d866817453, 0xa4fde3bd8afc4be1, 0x4c902428acfc22d1, 0xa32062a908225163 } }, { { 0x7424b9d5dfb1434b, 0xcb183a7c6d42f0d9, 0xfed26e121184d91d, 0xfe033223c7020ff7, 0x9b73f9b1628a136d, 0x8fa04e7ec3ee43cc }, { 0xd19939c10b419986, 0xec406ea7f51e0dbc, 0x7c0beff488e76b5b, 0xa4e731168b8d9cd5, 0xee4f9834b8eed76f, 0x6a09dc8f8bf500a9 }, { 0x5fe098b6e7d685ea, 0x1747e2985056ca27, 0xf9e5e4e8575ea935, 0x4a1f97527fb7f9bb, 0xc37156b9b61a8a5, 0xe4110be641074fc6 } }, { { 0xd59dfe8875e871bf, 0x8b34bcefc6aacf0d, 0xd63a49949a7d4d4f, 0xa67d70397eabcde0, 0x727007e3c2f22c45, 0xb943abf253aad37f }, { 0xbbbc2fd43c64255d, 0xd9696f4d29ba06c0, 0xeeb4440d71a7d1bd, 0x2a7b2774b61f17fd, 0x69c7f49d5deea17e, 0x6e02a5b2105ce5b }, { 0xd72abaef5397ee01, 0xe87e8a822e7b3009, 0xd24ab1f1c76b752a, 0x9e374f888fea555, 0x1152e4f24c77e282, 0x5e789750b0a36aad } }, { { 0xc7cca0dc14d0d525, 0x2e8a3e0e08c587bc, 0x74c0e38a41f566f5, 0x12924affca874739, 0xdf3f0dd3ff8fb7d4, 0xf447f6b715f6a7f6 }, { 0x69ae8d435e983e4d, 0xe32baeb291471791, 0xeb68a075778fdf0a, 0xd65cb5c85e1e8058, 0xcffc900556bb0a7d, 0x73863d40cf836c66 }, { 0x873e08d0a32a678, 0xce59561584452386, 0x1e1c88947e8c00d3, 0xe6fdb5d06bb846b1, 0xe7580047413bbab2, 0x4269e62848a7535e } }, { { 0x33a165a6d31683f0, 0x24e503e553eced14, 0xa076d6841bd4fdcf, 0x69150e535d860641, 0x22dacba09f246f93, 0x7bee81fc13d77332 }, { 0x2b3810515c50cf1f, 0x59f3a72f37d091ff, 0x90f8f825ebad272, 0x1edb8d4c2c414f7a, 0xc0fd70b7a107616, 0x36904820d9123bfe }, { 0xc1643dd4aabbb89f, 0xaf0c942a8ce4a445, 0x1c7908317fbffd4b, 0xd68f09a30dc75785, 0x84a04f6328dc7eab, 0x889a55fb42e98545 } }, { { 0xd4191b78b27b690a, 0x495edebe67250d85, 0x7176b92ab6ba540a, 0x5da6980c99f28239, 0xafddfb006748cc10, 0xe731144949a3592c }, { 0x692019dee41ea99d, 0x93325f04889ba6a0, 0xe12365350198a14b, 0xdcc56f375fa7d41, 0x240e124b726252fc, 0x18466e31f6db7a37 }, { 0xd8aa52691848edf8, 0xe258a0cd596c51e0, 0xfe522524e6854cee, 0x4fcd070b46d47d61, 0x9a2be5b6e111a3e0, 0x29d958c473d3185d } } }, { { { 0xcb8ca42d938d2ddd, 0x6621d1aac083385, 0x7c6f2dd7c708c755, 0xb4b5b6621dacbbbc, 0xdedd1cf03a040727, 0xe2c98cff1b52ae97 }, { 0x5ddbf525b6406961, 0xd1bcbea179d8d6d9, 0x9461e08a47ba208e, 0xc2e6deaaa835aa3c, 0x8bcb4d16683a0d1a, 0x3277d05d384b446 }, { 0x425be964baa035c2, 0x2a03e5b4c71bdb7e, 0x6c408e61f051bec4, 0x14858acf54038af2, 0xa59a91e672219208, 0xda714be3dd26667f } }, { { 0xaa80ae938f3bedae, 0x1281e779645d950a, 0xa6dadd086aeb7ddd, 0xe5fe0f8830d530d5, 0xae1403aaa13c5b4c, 0xdd0c43f34e11cc4b }, { 0xd3a1714e65262612, 0xfbd077b584d4fa55, 0xb78d64b2d313dbb5, 0x2c05db1d101c4435, 0x270b06978ce24a7f, 0x5328d5e0d345df4d }, { 0x2c72d87ed021b861, 0x5bd7bfac224e8b39, 0x5471395c51478d11, 0xf250b7b4373d0812, 0x7c712154b5e691d, 0xb10fd2f2b6b924c6 } }, { { 0x7bad0a546958cb88, 0x8099ff0b9a4be90b, 0x38ff934f72f2cb79, 0xc80b4df49753cc09, 0xe1150482d2c8d8e4, 0x3ad0e5590e633b5b }, { 0xc1b282f183a1cf9, 0x88848dba8460cc02, 0xcdc072458ea45964, 0xcae0b5d389e918a5, 0x5297fa4c9701a52b, 0x97ed0013a8957cbf }, { 0x8231304e9c03e28d, 0xa537058520f2b8ea, 0x282c44503f0e1b66, 0xe6c651f0211ddee6, 0x18512e3e389c5ec1, 0x818d5e1aa0ee09b9 } }, { { 0x26ac8e0a50518c68, 0x4b4a93ef02c6e451, 0x9535788f30bd02f9, 0x289007ad8bf33f23, 0x611aca3b172d122, 0xc0b20d231e8d27f9 }, { 0x88edecdaca4b3a69, 0x58817cc1776d1892, 0xe191293c5942d78d, 0xb1196f112f8ac40, 0xa2a42866dd081a82, 0x16990201abe51767 }, { 0xa6da4a212c873fd4, 0x427aa75a7d562d30, 0x6d203bacc75eee3a, 0x224241e22dd92fc8, 0x99fd3c13b066ccbe, 0x4362027e13a10923 } }, { { 0x692a8af648bcccc, 0x2ab8516f4784dd5e, 0xf1bbe9255354caa5, 0x4d622533f7f87612, 0xc60055ba7af2ea57, 0x70b5b62a9426d5e1 }, { 0xa8074ea565b60a7b, 0x5d815bd0cba6bb3a, 0x9e68cfac60802cf8, 0xcf02150556f5a661, 0xc52a5d13d3b83945, 0x8acccb5a2492cdde }, { 0xf1e39a4400ce018a, 0x23af843a42f3efde, 0x5b853999c6aefe93, 0x9ff410174be9dd9e, 0x6f13283976e035fd, 0xad262c86d3361174 } }, { { 0xc2e7b69064e8fa2a, 0xe5e9437c2aed06f5, 0xee36b7fc510db1dd, 0xaf4a1e945f700c0e, 0x4bd214fc0ef93fae, 0xc530a3d40952ccc4 }, { 0x856a5188acb1ff3c, 0xa80821b1d139dfae, 0x20727391ddc3677b, 0xe3e8b76c97598d6b, 0xe7ce711cfb41d83d, 0x3200e19a9d64658a }, { 0x8212d04f6c8f1335, 0xdea3965a04d5bb3, 0x52541734b21f323, 0x762fa37dcf87e500, 0x4c47fa011ee3e584, 0x6528fd28cebd794c } }, { { 0x531e0ccda65b07e8, 0x5b2987e8703cf255, 0x4eacba0815daa0bd, 0x738a689ecdb79be7, 0x76119810560a0b66, 0x7ed01984d1cf2790 }, { 0x1931765b5f1ac61e, 0x58f12289374cf454, 0xe25e764e12b45219, 0x3720bc5a51030db0, 0xc540a8922bd3ea28, 0x282c67c778647c42 }, { 0xcb54c7122c854738, 0xac28bb4d6bba480, 0xd4e9873848466894, 0xa23a0364f1bf882d, 0xf9c350b824baac45, 0xba09b31ca6fb8485 } }, { { 0x2231a079eeba2a77, 0xb752bbb2c1d28d83, 0x6bfd15d2c9c6f9f7, 0x62078d3641584bc9, 0xea5318daed54882f, 0x5b657b305ad96b5b }, { 0x8db3c3c007ba9af, 0x9c273ac7269dd17a, 0x95094c4d78cbbea9, 0x4b6a2fa3645d5f71, 0x95e9492736de19fb, 0xd02dc138859efeb9 }, { 0x8a291fabd0881434, 0xf7a25ec8f8831ea9, 0xcc1bae1ae8372395, 0x38ae256e75d0003, 0x85f4541ee84aa989, 0xd95a961efecc6a50 } }, { { 0x5e86f7d15c5cf6a4, 0xbcf83c788a5c5ad3, 0x3f39b1a93777a977, 0x7e0752880ef87f6d, 0xafe4613759e26f53, 0xc988624b6d064e04 }, { 0x467fa63a2670914a, 0xc09bbcf359389bed, 0x81257a54e1af390a, 0x1c6a9e8e7d58a396, 0x286df06456fa0eba, 0x8fa4a9a21aaccae4 }, { 0x20c9943ad426bfe2, 0xe8a93524c856252, 0xbc67995abacaf2b0, 0xf58fb46a728fd945, 0xb148dc4dd22927e6, 0x623b06f2116b1004 } }, { { 0x6e9bda058ebe3dcc, 0x51d0878b93eff647, 0xf628c409ba5a58a1, 0x828a3dea928f1e5e, 0x48cf2320c42219f5, 0x73f884e439b8e6a3 }, { 0xb3e922ba74a98d3d, 0x1fc821338fe83ce1, 0xdf65872c14ac0948, 0x43b077f113c3f259, 0xd198e20fcdf70f84, 0x3fbe368c5cd86c0c }, { 0x71b17ad8793f0fb2, 0xedd55c76bd3f8f54, 0x58f6f71b0f615dee, 0x208cf83444b9ed3a, 0xa3b175c2e89a7a48, 0x228e7fa9801e0563 } }, { { 0x4cc3ebb2b77baa85, 0xfe537b379b25988, 0x3d9862a14d9ff968, 0x5e9c442f3242219f, 0x38ee65f7b639b09c, 0x37fb81c03ced2b24 }, { 0x526458d727e3b216, 0x48ac5bc95b962419, 0x6150969fea8cbfa9, 0xe288cbbf834dfa77, 0xb882622083b20e45, 0x66675b610ce49fb4 }, { 0xc9e35c9602ed04c4, 0x3fa7f2a59ea85bd3, 0x7a1530faab3341f9, 0x3c73c8d7b5ecebc5, 0xa4d840bb4d6fb325, 0x4059cd634e6b7e61 } }, { { 0x2e585c97b8a50572, 0x76fc996f81b9d52f, 0x92017e285da664fb, 0xb2de999f7e38a9b1, 0xc68b4f23687a257a, 0xe43937cd4f4ad085 }, { 0x955021e18ff9dfd, 0x282cde406797cc4a, 0xaab9419ead9cb768, 0x9386e0b8f0a4148b, 0xdffc4b1627e88d80, 0x34fa18c7d73c20a2 }, { 0x5fa92fd6b021a4c3, 0x3efed075fb061ce2, 0x2efc8ac7e7150d48, 0x2288ec026b184c3b, 0xa0b0601704e4d090, 0xe9916217ae8f6db2 } }, { { 0x6d5a7d59c0f946e4, 0x28ead03873396804, 0x39690bbad0080e58, 0x8dec0996a2675bec, 0x8cd0ac8048fa64c2, 0x9569a08d516ab912 }, { 0x3b53fcfdcfa50e2f, 0xacb74a1bc33ec6c4, 0x8ba558abf0e6dd91, 0xd1bdc7e12e40bc97, 0x1926612d7db49e24, 0x30a1027b69a175f0 }, { 0x55ce1dd115fc2211, 0xcf49d93df40f9c0a, 0x85b027a2fd44e646, 0xb1a0492484713c58, 0x9b8aa6b0d4dbfcf1, 0xee89d12beab86122 } }, { { 0x4c7ab744e4cba822, 0x7956b947ad6d9591, 0x3441ed9e2ac09b6, 0x46ecfb97655c2f67, 0x4754b0a46742c5e5, 0x721531d2ca4e9671 }, { 0xa6f0b88adefb6d6, 0x12d5a589dcbb78f6, 0x364c2c5d36c8ad0e, 0x6159d8f60f2483d5, 0xfacf89f3871e007b, 0x33f6f3be5ba535e5 }, { 0x709138369f9738a0, 0x9410299137ac0415, 0x545247f200f7e946, 0x766a819e7f3f2b6b, 0x50b7e5a53fb6f8e3, 0xa5f22d2f022092a6 } }, { { 0xcd4d76081c9bcd67, 0x39108aa632c1d998, 0xd1ae7e7e280a2e43, 0x6b15315f403b5bed, 0x6fa4ad9901cac78a, 0x3d92d32891cbfa36 }, { 0x8a1399494ad18546, 0x67db5b8cc9494c94, 0xc838493d454ebba, 0x5a47480619865cf2, 0x345cb75b902357bd, 0x5f6bae46d0f30880 }, { 0xa70432304ddfcc32, 0x49ea3a8a59c30c63, 0x8651e776afc7420f, 0x6fe0f9feb9bdcb28, 0x6ef0e3fe46373b3f, 0xf49f76295a8f1f27 } } }, { { { 0xca9eacfcfce41f44, 0xb9cfe3d3a43a9db3, 0x14485c3e358233a2, 0x564f526d4763a001, 0x4ee9c4602dfe0961, 0x6ec7b4f1e178f0dd }, { 0xaa835a97ba02e247, 0x4229be57edc74e22, 0xc5888e73a0662dce, 0x9653e8459787021, 0xd16e2e4fb32238eb, 0x37c8cfd1d2b1451a }, { 0x20fac70de923e162, 0x71e28b7b2b9cc720, 0xc9a9fb64c00a190f, 0xae0cacf653edf0aa, 0xf75d42995b895277, 0x999b6b9c1f0fc0a4 } }, { { 0xa7dea6c37239791a, 0x81b36b9718a2dc70, 0xa6ea5ffe00be4aa8, 0x5b36793fdd91bd58, 0x79f21569eedf4911, 0xafce4ec92dcf6492 }, { 0x6ffa961bb5cf180f, 0x4014511dad660f0c, 0x4bcfc04e269314fb, 0x84c6fa1eafbfc09a, 0x3e45153757fe57fa, 0xb7362eb1e68ef9c4 }, { 0x67a488e773dd2533, 0xa6c92431f6ec4ee1, 0x4d1c360c8fa74e50, 0xfb350315fead007d, 0x8a5d9025930482f8, 0x432c2c3fabe7317a } }, { { 0xb5d2f6aa7e1f65a6, 0x296a6637316a6ee4, 0x15733611beba0b08, 0x733b8748f01dd819, 0x9b68c2f96919e37e, 0xfe69084f236a180c }, { 0xb9ab99bed0c7019a, 0x764855d4a128601d, 0x484961c1a85ac323, 0x4ac2a5b505fd1d27, 0x58dbefc93b0cf325, 0xc6d959003b01a6ea }, { 0xc4829080f6a8e3c8, 0xce444de1626cc564, 0x9470bcec601c3f63, 0x9f3ecff0a1ceedbd, 0xca93967e48e829c6, 0xfd8d2b863ffa2f78 } }, { { 0xe42c0d9b118386f0, 0xc3bbde6b8a42cb4, 0xea47029db11bc3ae, 0xd4a6fe3b8eff857e, 0x65ef197977a37247, 0x2c579a1cc6ae454f }, { 0x75f1b8399bbbec14, 0x8e9b4e23fed885c5, 0xed6f3ae58456ae35, 0x2f38dc85a8302d2c, 0xa2168729ea2f7f5a, 0xb533b5b9165d78e5 }, { 0x721a883d47e6aa3d, 0xbc333ecafc2e4e46, 0x7608abf8022c5860, 0xcdcb0eaa54d7fec0, 0xae1e10be0c1bd4ba, 0xcab6b9f8bc659245 } }, { { 0xf608837a448c6476, 0x9ce00380fdd2172d, 0xd9544f7141af7f3c, 0x73f5981116cf9c3f, 0x7ccae9370661860, 0xb0237e20380dfc4e }, { 0xdf6b01bb5aed8483, 0xdc843a65b210a461, 0x9d6ee616f47b024f, 0x9c5266d3d5147208, 0x5121d961287ef477, 0x52bcc8beabac21d2 }, { 0x61e0d7777b32f961, 0xe88dc25dab38d940, 0xc09c4e0fc3a15dfa, 0x4b14e50ed73cdb38, 0x296a27d5adf2774, 0xc61fee810aa548fb } }, { { 0xefcc8746a0204404, 0x7b4c750cab21be80, 0xf918ab48c65aaa87, 0x7780e84cf9d08e41, 0x9febff105278b237, 0xc1393c33d9ca3211 }, { 0x6fca09d5a22a0823, 0x140f5ef9dac7ef8e, 0x3eef82b9d448bdf2, 0x1f2e47c9a2bfca51, 0xe0059d8ffd723e76, 0x1cd3a8975670ca79 }, { 0x1c53e0c6d2a679f2, 0x1a6d407262d0560e, 0x8d026524bb688eca, 0x2fdd7cd4124fc34e, 0x1edb62e881c10a58, 0x6d8e43e030fc237d } }, { { 0x5c55f7580f2d467f, 0xdb72850ad3203fe0, 0xf0a62bd626e105b5, 0xb5467124952d7aef, 0xf4d7c4cf15a01a7d, 0xeafe93a1a51379ae }, { 0xea6d55977e45c8d5, 0x835db03c26fcb90, 0x2361313c2b9c7d71, 0x33a26965acc54831, 0xa53ccb959d46beac, 0xdaa063a9ac5386ce }, { 0xa65a8beea0e7d223, 0x129a0b6daaf1fd50, 0x85b0093033acd480, 0x15533fd0014e5cfd, 0x649aacb4a47dedaf, 0x3a14c3d1b748ba0 } }, { { 0x9481563108a48863, 0x1b03525d37867b97, 0xde4c4c685ad6d353, 0x420bb9055b93a892, 0x788a63d3ad6c0032, 0x20b0e9bbbe70d9cd }, { 0xf8c190671101ff4f, 0xe2c44fb0db7bd0f2, 0xfd711ac67c905426, 0x27b1234212ccf32b, 0x781f7f3402a7a59e, 0x681835e4f214760f }, { 0x696bfebc192234d0, 0xb1bd6a1b0968bd20, 0x56d8c54d9e7db463, 0xcef3c873afba727f, 0x224f7525ddbd362, 0xd89012216121ab80 } }, { { 0x3c53fa7c76672909, 0xb91432db2771306f, 0xde327e40675679f1, 0xdfad65d91f2f7d5a, 0xb72ebde2426bd199, 0x69191b5a580eb555 }, { 0xa4d5f145878df00b, 0xddd278e512ae9401, 0x7bf64641d4033c41, 0x3aced4b246ae083d, 0xe53887d1702baa38, 0xb255881a7b6b9331 }, { 0xe9965fc636b1133d, 0x17eef7e6fc97dd39, 0x39c5946d51a4baaa, 0x79d55e5618e5603c, 0xbb98cb9cb1921770, 0x2db7a5f56eacffb4 } }, { { 0xdfb89cd006581817, 0x300cf0d98ddf5e5b, 0x7c1b9e1db2478a41, 0x92019138be368a2e, 0xd375685f1c0b3ab0, 0xb74c8fa7ffb66e2d }, { 0xbb2b167a1f7968d7, 0x614f53bca825c033, 0xc1b49d91ef21acb0, 0x14d47c2efaad9497, 0xc060fe86a1e52054, 0x11237c3febecdcd4 }, { 0x8bcc527c7fe11742, 0x6dc19d865c031be6, 0x66c09cd00fbccb63, 0x616065e2c3494634, 0x5089d2ef90148102, 0x6eb5bca7d1737f1c } }, { { 0xf8a9aab4de6ea64b, 0xc029cc6fcd94ed8c, 0x4df4707c165df931, 0x43830c2d370a72b, 0x76bef0b23551d388, 0x3337f3206f704123 }, { 0xfc89379c2fecf70d, 0x10d7242d2c864f0e, 0xc25e2d77f54258a3, 0x6c552a775718ec4a, 0x92c4f332b54aa7, 0x75abced5d1863a66 }, { 0x7927f8ce46feaea3, 0x142bc2b0dedfc32e, 0x67481c1f742bad65, 0xf1e32ac871e41539, 0x26b48dfbcd34a9a1, 0x8907d9f1887f7909 } }, { { 0x66a56963fe6fae0a, 0xbd606fe2b557c23e, 0xef27cbee24636f5a, 0x3daf772e223d76f4, 0x2ffa4d64de1e91e0, 0x9dbd9efef8dca861 }, { 0x1390a8f6b09d970c, 0x43d0238817e1fa91, 0xe3a68d36b8fce66e, 0x9dcca1c4e6a15165, 0x49ac46df18f4a696, 0x79449785ff4d5862 }, { 0x5181edbfdb097af, 0x1ad7e5905ce7ca48, 0xc2db6d629732144a, 0x3dfef5551d8cf7e, 0x2e4fe4545ca12f86, 0x80e978c8f6b3b37d } }, { { 0x8096905fde678a49, 0xe9e1d83631efe8d, 0x1d4120f65a0e9453, 0x788c847480726b76, 0xa3edd00b65c545f9, 0x52ecfa2459e5fe8d }, { 0x5b300ab9cfd292b5, 0x4aef21df692c0ba0, 0x8701de1abb424e0, 0x81694a6120732a27, 0x9feb8645486bc97b, 0xfd2a06c015b77fc1 }, { 0x34f8aacc55f2ca22, 0xb55c0df29ee6b2bc, 0xf0b8a481e9e68b38, 0x7f2c518a1eca017b, 0xa508789656b47cfd, 0x7ec354938e67f519 } }, { { 0x9acc2c06a297edfa, 0x5244982a4e4140af, 0x641bb2889a3efb20, 0xe8ca529bbb8fa43, 0xbad4a38e65e4010, 0x37aa40e7f7ef9012 }, { 0x52f9fa495b431300, 0xdae0f7875aea2697, 0x4ebf7e8432695832, 0x2aa3529adcdfb6bc, 0xf3316a38deac6f61, 0xd1b49eee9a30bf6e }, { 0x7e4ead34816a0277, 0x7fa0d5f2c2c49c9, 0xb156fdde76472f4f, 0x6ade0f2b0142fd7b, 0x9e8d4ca792e2dd04, 0xf06aba32f83dd28f } }, { { 0x56db250dc4411802, 0x7505ee78b3418b7, 0xa529dac573eb1ac5, 0x557259bd7f8c1ca, 0xe5f4b482dfc16a0f, 0x6ab92f15d1a85d93 }, { 0x5d11c2692ee1a6b4, 0x84bda6f6ea62be12, 0x9936079d6a24db06, 0x433ba82ec64f3c97, 0x63a8c723de1c906b, 0xeb1c025d988b1c3b }, { 0x2a340e15c4f0fc24, 0xf4fc9bdaa1e70cee, 0xb06cfc2b6ddce65c, 0xd7acf578e9136889, 0x9678f1ea8cf9d022, 0x26ac833dacb9a0c9 } } }, { { { 0xb933486d67a9fe07, 0xd41885b7bc0807cb, 0x810a81c3d5dd98fd, 0x23cb488ad45c8e43, 0x280390a5eb48569f, 0xecfb81be418d5c01 }, { 0x8fd243d271f12886, 0xb56bcc349c3eb1ab, 0x7902361201df4a52, 0xbf42cc00f099caf9, 0x60b6ab8da87a1b1f, 0x5fca68bb700cd9 }, { 0xfe640bc7134b4391, 0xef1314fa9bb7c1b3, 0x13861213afdd0151, 0x74366ae32d9613a6, 0xfa05a65a04efceb8, 0x884f1e93a64bbd6d } }, { { 0x22ef8ed774bea3fd, 0xcb503ce1ae31a35e, 0x21e430c9107a79a3, 0x8c7f3b5f01ffe9b8, 0xac85672be28f6542, 0x48165c734cbb9e74 }, { 0x4e85e3390996f591, 0xdbd99105b8fd3144, 0xd3f8345dc0d7793c, 0x4da3a439711a317e, 0xd21beb9175054b5, 0xe2e96653e4aec380 }, { 0xd468cac333f90c82, 0x74fda8ebc139478c, 0x98ed3d1473ff0ae8, 0x14fb5970e69cc5ab, 0x9a2cf9ce88e903d4, 0x4e29de4909526e5f } }, { { 0x4c6cf680f908d929, 0xa2a1daf99a6f5411, 0xf074ee62bd11f1aa, 0x10a994276bf37118, 0x7cd3adbd32e4e204, 0x7612e77358d0da43 }, { 0x6e9787ee1a9538fe, 0x5451a1d09bf90408, 0x93c5863c0b48af59, 0xa3ad4f919e597494, 0x7ae983af1e04af36, 0x54fd2dfc1df889d5 }, { 0x775c313fb195398a, 0xccb6b52494d24f5a, 0xc5556b669cb6ecf2, 0xf3d2b297bc65a8d4, 0xab627660bf0527dd, 0x5be68b85e8c1fc56 } }, { { 0xb21be94133cf3b32, 0xd49f80c0e8d94207, 0x42db19615301161, 0x68bee91ba27b1252, 0x80bfdb0b6bdc8f5a, 0x1e4f6da1e2c870d3 }, { 0x280463d7face035a, 0x51c445aa90be077c, 0xdd71db1656057d2b, 0xb433faf60d890783, 0x3d2fbc9976eedf78, 0x499eca5cc08931de }, { 0x11f8b6615774b3c4, 0x3cc00fae0e5c4e33, 0xd9cc7514c2ee9c16, 0x4797efe1f6d8f1b1, 0x58a5e0cdaa7cfc8b, 0xfac3a98ddda37ddd } }, { { 0x68348cf33afff9e9, 0xc09bb28a22a4134b, 0x1e524701fd62aea1, 0xc126f2d534ce2f6a, 0x294cba83170fe064, 0xbd43fc3803750f7e }, { 0xaca4fcf622a5736b, 0x2a261d4dd02ebd5c, 0x54387c48c55389a3, 0x781aa60c31fedfb9, 0x8555a9a837dcebee, 0xdf9a54ceaad191dd }, { 0x4ae12cee538c0905, 0x7fc489eb4a8b1943, 0xa6d3779c0b08668e, 0xbae8cc61bb91addd, 0x69e3ca175257bbdb, 0x60817a44c739271b } }, { { 0xec7fefa858eb4743, 0xdaeba5ff96c8e9cc, 0xdf835968d06893c, 0x4f391879b0370fba, 0xbc93e689ffe312bc, 0x1dcba33166fa0d80 }, { 0x2cf7110f2479a5c0, 0x5e19c20ca043f931, 0x444e00fea6038783, 0x8b42d476634f2808, 0x1e705b36cb4e4d42, 0x4adcc1bf3f694770 }, { 0x5c350ef8d6aede66, 0xfff2557ecfdbb614, 0x57a6227b00049ad6, 0xab938cf369c183cb, 0x6a6346c635c4bb7c, 0x9bcdb41a783293f4 } }, { { 0x9daf71b59ea1ef7, 0x255e3d284c292802, 0x90104c57bcd16723, 0xba4b629742cd616c, 0xf7a15a02cb9b900d, 0xfaaa23a5bdb72e65 }, { 0xc2256f1dd324e384, 0xd95d044f70a58b35, 0x9b30d0c3ab045d05, 0x9e8e46653a661a8d, 0x1e5a0ae9c1b5b88c, 0xcb0f4cf5a52a01ed }, { 0xffc2f4c81aab432c, 0x7921983990eea9db, 0x401b5f88186d02d3, 0x47cbe1120b64fb06, 0xbd93bc0e2b5b30e, 0x82c866b2e26cfad2 } }, { { 0xc4d1b1c04da64f99, 0xfab0ca916872cc2, 0xb04b61ddf5301d2d, 0xdd3110c3fedea288, 0xe766a1f74ab949c8, 0xc47fd883d483de3c }, { 0xcb97c1d041d8229c, 0xf1bb9a3b23c70cee, 0x2f16d3dfc2277e84, 0x1ebfccfbc4012a46, 0xbd98b6d0eac6d962, 0x6aebf551d6249231 }, { 0x63ff38465db96c0e, 0xd9962fd202384f72, 0xd37d8d53d8365535, 0x2397e61a395819b, 0xacf330a39a0c1df8, 0x1df5324a46b00e86 } }, { { 0xd494a3b5d27f3fcd, 0xc957938e64f10966, 0x4f9fffeaea6384fe, 0x5ef848b7ff76feb4, 0x92dd4f0678a4b9b4, 0xa62e0062c84b7746 }, { 0x487889a8cf517ee1, 0x94084a6b8fde79dd, 0x227127bee9115c45, 0x5febe56d5fe47676, 0x2112767c622797d, 0xfcf8afe786f44cd1 }, { 0xb8b7e2ec12bc47a2, 0x83fca72348dc13a6, 0x60b8af9a4e4c8388, 0x2883e522faa359b4, 0xda5afc905050486d, 0x588a89ebc91ed9f5 } }, { { 0x8dc933e786a839d7, 0x514e4e379661765e, 0x8763ed15d506920f, 0x7ea01304ac0ca8e7, 0xa7870f0c0e4f6120, 0x372d434e1769b672 }, { 0x7059823578d5be8d, 0x267c3934a8afb3c, 0xd2aa9e56b3c5dc0c, 0xcca2e0ca03298d11, 0xe3aca7b191dba4ad, 0x902e9395351a7cd7 }, { 0xef41c6932229afc, 0x46c10c8e13c40f04, 0xeb9a3cc31082e54d, 0xc0ec674c4c92e037, 0x74559f290507024a, 0x5a9d975caa849075 } }, { { 0xde3e0d7dbcb2e6c9, 0xf908f03cd131c875, 0x2f39edc932729bb5, 0xe524b749916382cb, 0xac562f5e8f3c7e11, 0x1904ff645e51b151 }, { 0xab65e2f0bd94f56e, 0x822a2cea5ecda675, 0xdfb068ca59c292bb, 0xb5a6cedab35f93f7, 0x1295387aa90331bd, 0xf5a7b96ee24c8a82 }, { 0xf5339618631ae43, 0x355b4f042883909a, 0x1735f668194dc2ec, 0x83beeb6b18294594, 0x3c83840a2ed93654, 0xf3b7ca1fbcc35b24 } }, { { 0x965386a138a6cc5f, 0xa210ec8e67259afd, 0xd11218c6623baa02, 0x3b922075b142f541, 0xac2085f4dd0e6592, 0x0cfde1473fbcf2 }, { 0x9e89ec1590ba0f89, 0xdd4a1c37a3ee90e9, 0xde593554b6cafe46, 0xabb58e12e798c0b, 0xdf81279934f10f38, 0xe44b0fc694b8a19e }, { 0xa8abdc19f7d59287, 0x8275dc7c53f77c2f, 0xead063e908ee9a90, 0x9597744768a2d57c, 0x7b288a5a609d8638, 0x2647a1367064100c } }, { { 0x3a5907f7d25b3b2d, 0xe2d9eb4aa596789e, 0xcece3c343c318acf, 0x86d9c2daf800c96e, 0x52ac7f7a27d01335, 0x939625e2315442eb }, { 0xd08523a93a6b7d08, 0xafa33fd7c47130a6, 0x77c9dba8a6434656, 0xce2ac9673f16daa, 0xe3bbd4975dfb17f7, 0x3d928aa54fe96ed9 }, { 0xc352b66e5cfca915, 0x4310c829eec4ddc5, 0xc55e416eee6a96cb, 0x6433d6d5a3d939b2, 0xf9d99ed06fc6d7c, 0x35e0e29eea726a53 } }, { { 0x78ea2849627f9c46, 0x74011d28b8a0a5bf, 0x9d989e3dd8730b73, 0xd3c3495693770df3, 0x70b0ef0679adfac8, 0x24b453d30ff0df3e }, { 0xef94401ea2aff5b9, 0x7447b3175ca9dfce, 0x675a99c33f5af1ff, 0xc68ab9baeb3edd5f, 0x4da9bcc0b02f818d, 0x4f135cd5ea3a950b }, { 0x69b72a1e2f5df6c0, 0xd4dd43bcd37850a5, 0x8c042a920b3453b8, 0x8e53fd64e19260b7, 0xb48190402d7decac, 0xbc9997c6891e3ec7 } }, { { 0x1682e658305823a5, 0xcc9813ace77b630f, 0x89c13fa454f41b80, 0xe767580722c5f0d, 0xb4f74039d6c579bb, 0xaf65dfda78581750 }, { 0x9bda9191515306ea, 0x68fada69978bc170, 0x59ba20b510933c2b, 0xf3a80bae3386a3bf, 0xeccad5823d19a7a3, 0x5bf33ed5724fa26b }, { 0x40942119e23cee40, 0x7edd34586cc4256e, 0x9439350ddd8dc3e9, 0x2b8786b2ecf4ded1, 0xe10014da05c0eda5, 0x2c97d12f0df6e4d4 } } }, { { { 0xf1df3eb1f3dc53ba, 0xfb100c00d03ffd6c, 0x423fef7955cba8fd, 0xb08d69d4ff581b00, 0x29456b2a88592ac0, 0x93d5a1e0d04455b8 }, { 0x2e059387780cb483, 0x493d9ca822980e24, 0xa7c9df4df4ad621f, 0xb52f30eafbe0185d, 0x839daa3514f5de69, 0xd3f06dd86a89ad8d }, { 0x2fd1de0381f350cb, 0x625f7010b0642c87, 0x7f1fd83035b9f6ea, 0x718bdeaad0a0715, 0xe936695cffede0a7, 0x6d60832f386891d3 } }, { { 0xbacc84339004eee8, 0xc89de3836deea111, 0x7573ea8dd85cf1a9, 0xbfc1a977bb866188, 0x58de4c41d4e236fc, 0xf7be2fd1f138e4a }, { 0x17e200dd33b34ce2, 0x6702c0937f830bce, 0x55f03c8034dc6ccf, 0xb6be4a4d89367d3, 0xf5e8561bbf06f9e8, 0x838d23840f9acb42 }, { 0x5ee35c7f9052bd9f, 0x15fd43b7a289b115, 0xdb3aa9ce57d3608b, 0x27b68ec522513f62, 0xd757f880f7dbadc0, 0xe6deec9f95f67f2c } }, { { 0xd8bc1a8f6d93a25b, 0x4d41b439f298c9a4, 0xb4ce168fd654db32, 0xeab35172761e7c54, 0x5bc2cafe57f319eb, 0x8182ddd6c1a27b62 }, { 0xf8d6861666dcfcde, 0x1548ead54c58fc94, 0x3c2bf770da53735b, 0xe666fea98eaf0668, 0x69aad98dae555ecd, 0x9a211bee5e5d842a }, { 0x549ec8c65e513b9c, 0x9c26aab8be82db3e, 0x485d243bb3f115bf, 0x5f4dcf5584d836cc, 0xb90af475295ba858, 0x3c4a186f24ec592a } }, { { 0x4a479af76107af9b, 0x8f47033042c192ba, 0xc90279139c7c799f, 0xca93c3a4e314e333, 0xe34922f7d1e0f1e4, 0xddf8a8adcaea9ecd }, { 0x1ea394b3440421f5, 0xce1cb69843ca7173, 0x62347e2e5e91422d, 0x9c9b95a2f3f6a702, 0xb9d1389d34ec7984, 0x66b7cde2cf50d805 }, { 0xd79bd7b0c630e545, 0x1b96ee953c0088b4, 0x459262776bcdf14, 0x3abfa58a102ea730, 0x96eea7b80d9241b, 0xd74e9357afce6444 } }, { { 0x3f92f3678cbb0d13, 0xa631118e796e5b16, 0xe7115f0f93f13292, 0xfc14b8033e9231f4, 0x32cab5ce3a2ecae2, 0xe29fb7e48c15bca4 }, { 0xddf7f20fee9555ee, 0x2731fdbf425510f9, 0x6d2fe38e9858471b, 0xe7d108796b0cc24d, 0x9f26ab8c25b25c77, 0xce96c6376af50fb0 }, { 0x6af6c1ceae69d41e, 0x3cd8ca3b17d789bb, 0xdad4bd93de36c413, 0xe8b2a0894cd980ff, 0x878fb9afb4c8d22f, 0xebc4096d6f1a9c60 } }, { { 0x2c641953d1c55085, 0xd1b1790c755c2b25, 0xa1c1bfe53749a8fc, 0xb468f3e14c21f17d, 0x18e0d23a40c77c7b, 0x674f1f2a0f935e78 }, { 0x266e3f8ee61c0602, 0xee79c36aea9360f5, 0xfbf816ff51a1ca79, 0xf0f13c3ffa39f9c1, 0x975295d6cb60f946, 0x87fc4da133004bc9 }, { 0x4bfec4bd0b197e6a, 0x4ba515e4f3ba3bef, 0xc2d7e32f80aa3d27, 0xfeab412c9d2b4ef5, 0xcb1efbfa7fe8aad4, 0x83161fbffa959319 } }, { { 0x64c335a3f4cf1648, 0x1b8a4867ce1648d7, 0x76a19c95af819d16, 0xb7957d94a6ca491c, 0xee33c936be61a8ec, 0x803b102e2731e70e }, { 0x635e4619e9624ace, 0x6b40188809d1c94e, 0x8dc61f90fd9ecf58, 0xbf281fb00e4b5ecd, 0xe24ec1b56c4ff1d2, 0x596d568db5216d8b }, { 0xbe846762dc07ba6b, 0xa87ff83da8ce9747, 0xa7d0164782620b9c, 0x35b5a70468a4d55f, 0xfb1ac6dcab3848ec, 0xa739067940c6bba1 } }, { { 0x777b5c14619d7412, 0xfde604c0d96b83a, 0xf923fd0bc2730151, 0x684a26b5697bc7af, 0x70520e6aa9b33de, 0xec184b6cabd4d8ee }, { 0xa9427bfb5f7e8b69, 0x4c1bd2ab1c959cdf, 0x14180137d36d8063, 0xd402f0c31b9b8dc8, 0xec93d5d6c38d21b5, 0xba54f3f43241ad42 }, { 0xea42f09910adb3e7, 0xa8ca351f1d929051, 0x38dc804bec9896d8, 0x6d9fef8ca342fd9c, 0x9c8a68fa56921a79, 0x48aa3bf7ef027bb3 } }, { { 0x186af19ed6985f85, 0x3627054229e6ef63, 0x2e8ad4e2292d78de, 0x192b39f8805d6a9, 0x67646cda2288833a, 0x47e799662c5f31c0 }, { 0xb4d3e4e561cc3e01, 0x67e0c750af229b42, 0x2fb9d8cb8b023dd9, 0x2671d7645e7cfdaa, 0x4984ecf3f0929a8a, 0x79b667d8ceff5014 }, { 0xeec2038a735abcd9, 0xf0d2a8e9049abadd, 0xb3de387b01c32ab8, 0x971d276cb16ce0b7, 0x7a0e75ca951fac82, 0xbc3b2e9fda17fd41 } }, { { 0x6aa21392b0305d31, 0xcf074c23d3e18141, 0x362ddead2ab1ead, 0xffede7d81b080376, 0xc67b88740bfe0201, 0x12cf519a338ad492 }, { 0xb1a4293818e7866b, 0x778e7d9f4beca4ca, 0x3e8e5866863e901c, 0xa955255fc8fe1582, 0xe2eddec4ec3d997d, 0x864df7344d4e4286 }, { 0xad8773a814a5ad11, 0x1758a42d055ef84, 0xece7f9cde807da90, 0x96ae8776206e070, 0x941b23cb82543ff1, 0xe0dd2f814ce00c06 } }, { { 0x29495dab8598d0b2, 0xb286b7ca6807eee9, 0x476206dbfeb3a48b, 0x1d36fc522968724f, 0x6461d5cc6cb83191, 0x0eddf82ad7ba65 }, { 0xd3b94cb1f1693241, 0xfd6aa21d0c89ca90, 0xb470eee0d4cbe8, 0x9c4de08899c46fd7, 0xb23184229bf4eb7d, 0x82c84985db08ee0e }, { 0xeaffa6409eed595a, 0x70a3b7f24e2dc003, 0xb365cfe8a9dd4e77, 0x91499ce58151e2fa, 0xe6f1f8fba9859051, 0x34c4d79753d99b37 } }, { { 0x97fe2db6cc6fb373, 0x3fd5f45d1a745e47, 0x3b010db88b9037e7, 0x9f6be60e9beeb48d, 0xc8531980f9abf64d, 0xd53fede273dd874c }, { 0xb67aaaf4abdd643c, 0x34eea76e7d9f2687, 0xce24cf07f91181ac, 0xa655138c49ce73c, 0xc990ff62da6fc249, 0x720409e764c6a030 }, { 0xde3ee8393f1a8017, 0x85bbc4572403d4fc, 0xe0472f7616100227, 0x14e5a38a71479730, 0xfa12840750ad8989, 0xc1a59f506d370f6d } }, { { 0xb387d1743b3f40f9, 0x3ffb6d56717dd653, 0xe0d70883435bbc3d, 0xbb8e814d3f9ca3fd, 0xc5e1b4895fa5b03e, 0x979c9463e41723ee }, { 0xf37cd858b38292b, 0xebce946aa48116eb, 0xe9fae7b6fb5336db, 0xa6f80a2dc5bc0bf7, 0xaddfb2a8a7f4167f, 0xfb221d3884f74331 }, { 0xd88718018aff7a9, 0xb4c0384131844751, 0xdbb33b0e09660461, 0xf1b496123b3825c6, 0xd842ddb5d9fa799f, 0x6a5fb88bfc37cf75 } }, { { 0x104064a123769a23, 0xf50a30eb347f944e, 0x9b7984a360b9732b, 0xc91d296d43f041b0, 0xba14a2ef3534a960, 0x70ad6f051766d23 }, { 0x862b51d51f84ffa9, 0x85c358c9a8acd758, 0x82d6c17b44bdb208, 0x449cc68c6f0ee86a, 0xbf42cbdeab7a9748, 0x6745bde3ecec5d91 }, { 0x66d366c2280c5460, 0x718c59aa1f397a7, 0x5aac6e81f8cb30a9, 0xa0b1181d1b304f8, 0x319405f90117c0e6, 0x5510606b6ede4f2a } }, { { 0x1c5a87068b9c0f57, 0x259c0dc8278267c0, 0x68f579bf696d951b, 0xb8b77ca8101e54a3, 0xdd1c03c944e18d9b, 0x825e6562b836f957 }, { 0xcb0a3268f2e7a2e2, 0x72b33fe1a7c24913, 0xe9ae9d8c8e52ea76, 0x282746c0e03b0823, 0x119111f84525eb51, 0xdad72d503425fd8a }, { 0x396bf9f5bcec7fd4, 0xb36ca4435a6dd5fe, 0x5d9b68397ba341d6, 0xe2ab2e10f6bf5358, 0x13055d41d9bcc803, 0x4a4b1f00fa444bd2 } } }, { { { 0x9676ca71d740bc6f, 0x850896a23273f35f, 0x868576cd0aff1079, 0x43c477dbb87370d0, 0x3e5d66ce861f32c, 0x7ad3c3b125384d8e }, { 0x2645c583595e1320, 0x6f1a1ee889e8446e, 0x43e69040cce6717e, 0x2c708eef549408d5, 0x3d7880f72c16a840, 0x6d901c6a87c0258e }, { 0x5f099bb91e3565f0, 0xcc1ded3cfaad223e, 0xb5e4902bce98b318, 0x2d1c39a00a9c6e65, 0xda1e8f071c8d8815, 0x9e9f74d2944eee0f } }, { { 0xcaeaae16a4658bfb, 0x8f0729e7502420cf, 0x3bfaa01e18f6db8e, 0x15eda0b1b6157c3d, 0x6fe98913ab458101, 0x90ffc8bfd2f16ca6 }, { 0x9f9b6954bf3a3f55, 0xdd2287e1d6352e70, 0xef81b74e9d534f1, 0x4377db7c6cf28ac, 0x14a396e2cc9e3c6a, 0xc214fd27653115ed }, { 0xc606e4f5dde8a05, 0x57ebfb574dcf02c, 0xd61f102c6f376a99, 0xcc118d9e9f366d53, 0x43d4a6ee76765727, 0x9adeb258b5fcc883 } }, { { 0x523a6538672f47f3, 0x2a0c5a370c1b678c, 0x64c0c796866de11e, 0x5dd6182ffada6b21, 0x7b585fb32b5afb85, 0x155e3584787b0868 }, { 0x824a559f64c2ab80, 0x9a28d32af323d73c, 0xdee0f58ec5431813, 0x177c2daecef3e4e, 0x9354851779a1a3d4, 0xcd7c637aa687dd93 }, { 0xff4e5a85fae92915, 0xde97dc56f9a642df, 0x1c7bb00986640dcb, 0xe81087c0a76df493, 0xcf841835f257a171, 0xc189baec0284bda2 } }, { { 0xb1e599e56e8a4762, 0x7875a7e7602c298f, 0x3cecedefbceddcaa, 0xf538abb1873c2f8, 0x12c477782359197b, 0xe6ee67c4daec46c3 }, { 0xc4c502021436fe6c, 0xb70fb7e77145102e, 0x6bebc31c844fb461, 0x4c1fdb2e78fddf46, 0xbc28b14d92f765c9, 0xe83a99a9b3d01bc1 }, { 0xf88c99c41d5185aa, 0x90fc02eb688e1d7d, 0xd03c94f38ac7972f, 0xbf14cf74b3ba41d0, 0xc01cd3dfa2be240c, 0x8ddeebc853f67605 } }, { { 0xf8af312c28dced17, 0xde8b51dfcb50293c, 0x21a35856773981a4, 0xbacd0245121d31a8, 0x92662e6755343033, 0x95a4df3ed9a58657 }, { 0x5ad669bd93d0e1ee, 0xd1683db03563a18, 0xb6cd28df07231c7d, 0x3c9b789e80ccffb4, 0x7ba192088c90ab75, 0xadfa110de1255555 }, { 0xa113a7d9f56a7eef, 0x5f3f812ef265fcbf, 0xcedcb275047407cf, 0xcf90b8968d2cf977, 0xb24f21a5eca30315, 0x676fb4fe872231d3 } }, { { 0xb59ba1603d0d306e, 0x23babc090a5783d2, 0xabf65274958598c9, 0x469e06b700981721, 0x2febd25c84128b08, 0x42bc83a91a187cc9 }, { 0x81a1d52c8e2b0f79, 0x77d774e25be827e1, 0xd7f6a84c8903b62f, 0xc7261912f0e5537a, 0xf6a473a801c24cdd, 0xcd5c51a776971a53 }, { 0xbb2c986df8d9106c, 0x92fd4cb6c90cac09, 0x55c38fedbefa3430, 0x5836a40ad5f21fb3, 0xd97a0fc3153b16dd, 0x628bceca69501b39 } }, { { 0x32e2678f5fb761da, 0x94c3dd6d0af52c70, 0x83897460fd12ae46, 0x5dc286650cbe7f92, 0x66fb1fbd38275ea5, 0xdb482ce1f9c74ed3 }, { 0xf4a729df4290eb6c, 0xcc4b7cba9af13e8f, 0x3a57999cd2f60f18, 0x21f698b2fcdd2e36, 0xa029f2ed14af3ea0, 0xba70ef28adf40e6d }, { 0xc21bf83962f540b8, 0xa412743aa3a2b8b1, 0x69482fe19c96b531, 0x6d385b1fa0d984cc, 0xfe268e93e3f30193, 0x5be4e373cfd29a0a } }, { { 0xf925816faae5c236, 0x464cd09f2e9a372, 0xb03d657f820027ad, 0x9672b4190c1c948, 0x9e0e7b8a08b6aa69, 0x27c0f5e2279f8262 }, { 0xc007133b74e8a5c4, 0x4e1bf387b05358a, 0x2ecfee0707e76b6f, 0xd80c50abf5dbfc5c, 0x18eb6f7668943361, 0xf6442bb14cc332c8 }, { 0x40726371d1c89f0f, 0xe9530252357d260a, 0xc5920263b784cddc, 0xc4117d3f89ae3ca0, 0xd715596294b112e9, 0x4b6e5170fa96eedf } }, { { 0x56a99eb5bb2e6edc, 0xfb689626cab8dc04, 0xb03c41adab805c9, 0x138fcad6fc6ba05b, 0x6fb81dab26e2fb1d, 0x95348e804f043880 }, { 0x8c59f6f73ba4359a, 0x1906486d7b4af6f1, 0xfc21c49ae08b63b4, 0x2e9e0208f7a658fe, 0x7dd44a6b3d5617ad, 0x52a408e1ba94235f }, { 0x4317bb0c3973dd42, 0x74d9a95530ccb8e, 0x82f78c3eed21ab80, 0xda034d41bb503649, 0x8ff9176a9610870b, 0x2e393d25c82da4b2 } }, { { 0xe4235c97519fa252, 0xd79d5867a35f9f04, 0x7bfa135f3304a935, 0x26999fc670dabb0e, 0xc80a05077bf8ad6b, 0xf93caa39f9a1063 }, { 0x2f056aa4351d6d1c, 0x956105a62933574c, 0xbad766e9108a841, 0x19de945d7c749562, 0xe2b76c5716d34109, 0x3634bd6d9474a2fc }, { 0x3b8a5dc72e7efd12, 0x92cfc1c1c057a23, 0x9f94713745d43332, 0x350dc72a57f206dc, 0x63496b89a12e38e2, 0x95082fd4ce297822 } }, { { 0x2438afa8240aa0a5, 0x3f7ab283376cf4b1, 0x915731fe1d51178d, 0x48eda6697f12ce9f, 0xff4a058041851825, 0xda5e07995cd92ae1 }, { 0xbe17b4b4a4a28d8c, 0x617ea96d83eea35c, 0xac76323384d622fd, 0xd34f8cfcc34f01b9, 0x713ed140d9f92d6d, 0x64b36a9a7e425f71 }, { 0x6cf7eb0981b3bb48, 0x201a16d23bb4d5a, 0xb99ca80377086946, 0x36d550423905ba23, 0xf643938089a1a8c6, 0x238384a6f7633b7 } }, { { 0x65351997a91dcfda, 0x56d5e96c58c90d61, 0x10c58c320af34d6d, 0xe0203fadbfd5c8f, 0x4f98cb33ba2f8f10, 0xded18855c18ed088 }, { 0xfbb0dc30ebfef5bf, 0x72cde32592eb9f78, 0xada104f397a3b9ef, 0xb278380c8a9be6b7, 0xa7cc3598c10c37a1, 0xf49bb8dc79b4903d }, { 0xe34a9e6e4bb61c02, 0xadf0847fac420495, 0xbd5550685daef723, 0x9ae9f1d1ee32a876, 0xa7b759b4981977e2, 0xda12c401959c891c } }, { { 0xee34d0a8f2477d06, 0xcad0e926f373fed6, 0x460f540ecd8c6e5c, 0x83c88e66db2dac30, 0xc5a24588a968ffc8, 0x89f76f22aea796ba }, { 0x218506afe9d42a36, 0x7210193c93e312a, 0x9428fa7c4942bbb2, 0xac7bba6f0d8bdc66, 0x8e6101985605ca3d, 0x4ab7505f9169b4c7 }, { 0x1205cfb3da27b5f, 0x6b29e7bd187f916b, 0xeb945c2863d7fb3c, 0xf678e2999347d81, 0x2fdc1c90b18facc7, 0xe8f7967d949f7f51 } }, { { 0xe3e3c97f069e890d, 0xc2a16e76ff1b4fca, 0xbac50559c7ddbdb, 0x5782da509ce578fe, 0x7f444a4cf6b5ad85, 0xde563d6dc02096f2 }, { 0x9dbe7225b9d865f2, 0xd5724795ecd166f8, 0xde3fa9929ee25205, 0x789fec256fa53a7e, 0xe16242ae7ff4192b, 0xe0728adcb4bffe9 }, { 0x85beb65cb46ab8f, 0x78b148dc6de01da8, 0x7364e1ca10084dc2, 0x2275387ffe455336, 0xcb3c5452263ef0b3, 0x5df66ea08b372d06 } }, { { 0x10e798455b334dff, 0xd2becac9a8c0099c, 0xd4d4bbf5ebf7c805, 0x3eb56faa1ca10d6a, 0xa67982d0bcec13bf, 0xaf8c78d63e4c6566 }, { 0x6a6c4f94b009753f, 0xc29938b4c52fa1a8, 0xbff624206c8b47b3, 0xb5bb4cedcaaf52a8, 0x50ca41451c00b243, 0x6f6784cf07862c67 }, { 0xc8128825b94b050c, 0x50e1b448e56147a2, 0x16026ce95fd3f1d2, 0x36ae56889125649c, 0xe35964b81a0e6981, 0x16bf377b41520396 } } }, { { { 0xfb5e0c462e7d2e3e, 0xbc31a2425fe71de3, 0x26eb63beba1d49e5, 0x10d0bf29d7bdf682, 0x1a1d571c97cd695a, 0x12cc9e07fbe5fe33 }, { 0x7eadcf42b47ac444, 0xdcd1a3a0035ed2a4, 0x2ac41de52afa6b77, 0x1726ae3a92fb8bf9, 0x33d951c35cc4844a, 0x510ef0bba8c4d8f4 }, { 0xb45511c777042681, 0x4ed352b5a6ded59e, 0xa0208bb9a024848c, 0x9863b7787df72d0d, 0xfff08516d02c8b82, 0xd126305d0e625114 } }, { { 0x85147f98b7511007, 0x5bde04ff8443805c, 0xaec9336c56d661f4, 0x62b6bdf4301cd7fa, 0xcdc8bc59fdc44e93, 0xaa6d1e251021d56a }, { 0xd8266adc27fa6756, 0x567f27b25b33d820, 0x8e733961dd4c68d1, 0x9b306526632feb5, 0x367fe2dad9c0a5a5, 0x1d72560870185b46 }, { 0xde54c7ce1765c5ad, 0x67a26adc7e925e87, 0x4216899199b84f32, 0xb4508a20a5269814, 0x180f02a667d49038, 0xbb32107389048792 } }, { { 0xea047cb0cfc4a001, 0x133d76adbadbc80f, 0x1a771db882c2a006, 0x4e508e8e4c1852c0, 0x9a8013a586b96bc7, 0xcc17bf12633810bc }, { 0xde549fa3d50de4f6, 0x2f7b7ebb6002276b, 0x4529ab50b5d44bc2, 0xad1cac458eaa276b, 0x9d984023dfdfac45, 0x54ad450c17ad9373 }, { 0xc72f383910758bdc, 0xf34a412feb230037, 0xdb3bb4d7284ef2fe, 0xc22c353c3771e898, 0xbcc5e5ced88beaf4, 0xa01fb1ff0fc5a8a9 } }, { { 0x6310d2fe6d734961, 0xd784aceb2c219680, 0x6fa3f114991bf7d4, 0x596748c4578a1538, 0x9a1cd5a5bcfe996, 0xf6b2a152e8cd2e91 }, { 0x39257d8b1b073325, 0x1a72239f537c5076, 0x6a67e19c04decbd3, 0x7552afa385069358, 0xd2562f456c538b4d, 0x79c923fda94c870e }, { 0x325c7f192bf6616, 0xc1fbff78d03f56d4, 0xc24854516cbd16bf, 0xf62af61830f7a7, 0x66d93c2c49571440, 0xe0aeedd0898c4317 } }, { { 0x4fa3f9f1776c81d2, 0x35ef7008076a89ec, 0x27cbc9b74964eebe, 0xc432ef3284b6a254, 0xe62d73fd566b3e18, 0xd1b04b0c2752dfc6 }, { 0xb1f0fa117b4d839f, 0x4c532b72d4a4b299, 0x49b4f449c864ebfa, 0x188217e5e6fdbd96, 0x654ffdbfcc80c47f, 0xe2bb2e0ac2bbae05 }, { 0xd3ef912b179e2b4c, 0x6c14a578bd96031, 0x27252d37379bab45, 0x5664476740e55b3b, 0xeedde81e499170cd, 0x60f80d16ea5a2dec } }, { { 0xa8eaca83491cf391, 0x652c07db5bc9a8fa, 0xf9c6aa2f1b152f01, 0xf62c2e76576178a8, 0x14f8b1a46781dffe, 0xdc6773e89e8ae50f }, { 0x1bc533af159d8206, 0x73d13a013b5a9af9, 0x76e5e36b98c62283, 0xb8ddc75ae4cebeb8, 0x66cd8c470892f929, 0x65a5c31341f54e92 }, { 0x2d15f0993271eec7, 0x12a5bcd567c3351f, 0x461bdca08ca0b566, 0x13d1a8fd16269dbc, 0xa9202efe9e67d37, 0xb43d3403b6c99d3c } }, { { 0x9e92efe4dc30998e, 0xcb5cef768eedbf92, 0xeda7d7337105df96, 0xca2f01699fa1034c, 0x2cf164654a43fff, 0xa6a7ba07d8436562 }, { 0xbf7e6e0c7ddfaf74, 0x31ec8b0e879e7042, 0xbb2c1488ac6f15a0, 0x78c505809b2b05fb, 0x7d280c3c4d2cae94, 0x7c4a542f2ec852b7 }, { 0x5c7cd1bb5d0e7af0, 0x28addc686b4ac508, 0xf8c078c3ccdd5e94, 0x3d14f32054f55380, 0x3acde111d24df852, 0xa141911b9a11d8f4 } }, { { 0x8500f3d9eadfb90d, 0xc641b94970c192f2, 0x7d3a4107250e6cf1, 0xf041a70641080813, 0x3641ffafc8078ff4, 0x493763f87ff5472d }, { 0xdd8f4aad313d715b, 0x8be56a2c9dd564da, 0xdcb7577fe482bc61, 0xa80c7fef8ff60246, 0x574af2463b5b9d05, 0x46188f267e5c760 }, { 0xdc3059a1430933b0, 0xc7f784ed133c16ed, 0x63d3c46b91c96a93, 0x6897e78124084cd8, 0x409e9133b820479, 0x4984515963b3e3b7 } }, { { 0xa71c4c7191ce8472, 0x2a996b13086fb2e, 0xa74c0707218c9166, 0xfa982b9dc1c44e75, 0xebd973ec1207f4b1, 0x69531ae248564888 }, { 0x91bda823b2e6ad81, 0xb10bad01c66b1692, 0x702bbdf73c0ac862, 0x3360f5c6d7e5ebf0, 0xdb3ea6a0c3227508, 0x2f9d2dae7987524f }, { 0x27bc5704e16a110d, 0x80b0b87618473bd6, 0x95c03ed7b0df7b4d, 0xf443fa4b6ac3100c, 0x9c1d4cc7ca1fb068, 0xfec887cfed44a3b3 } }, { { 0x4647eafb1f0fb295, 0x9c1cd01ca5a9ff32, 0x42c2ed414f3bdfad, 0x4986ada207076b03, 0x55491fccd71b0e4f, 0x17f9d51be909c080 }, { 0x24db56e1778a13ec, 0x3158130ad1811b45, 0xbe5314e6e46fb40, 0xf7031ef3b4376785, 0xe75e99d8e6e58dfd, 0x37a7cb75c4ff04b6 }, { 0xe659d2fd2b5569bc, 0x1f7ff2d062eeae66, 0x46b7132b2e5c8e46, 0x7f94d0a87e28fe1, 0x8295e1bf30f94417, 0x21dac9057ee402ea } }, { { 0x159f70006ba8d8e2, 0x7a74a04877e94ab6, 0x37de1a8b87ecaa2a, 0x6d9786c1729aa056, 0xe2288d3d60b0ed65, 0x5ecdc04b352da146 }, { 0x61611fc81938595c, 0xa41434786958a7f2, 0x6de0999732fdebda, 0xd24bda24fb68fe70, 0x97ca3d1cdee2b9c9, 0x66671ebef9805500 }, { 0xaf40cf247c4aa63a, 0xcfb2110ce2e1c27e, 0x4ae48a3322771327, 0x92319280dce0d305, 0x9e853f1daebed7a0, 0xa071a3e37eeff4f2 } }, { { 0xcb7dcb89947a3426, 0x15f522b2453f0b6d, 0x3b74d19d970abfc6, 0xdc35cc5d2936a17b, 0xe6bf1b7cce7b0580, 0xa38161e9ba4d0cca }, { 0x6206d6e31ef84453, 0xd0ad51dff75c1b93, 0x4c6fda1aa2b7b966, 0x994ca33fea2f587d, 0x8ee57e47bf368efb, 0xa48bee91974c0fbd }, { 0x5fbeb79a75904a98, 0x155227b974cf7e7b, 0xe8b8c0cc2ca7bf4a, 0x9d6015cc03b94ba0, 0xbdaa357d81c347be, 0x189a709d025ed04e } }, { { 0x4c06458e0c59f14, 0xc187c83b3e4905c8, 0x97f1860221ab4cda, 0x723070ac0827d124, 0xefbc1eb6fb4daacd, 0xb410b876e601f1e }, { 0xa01ef4156c387732, 0xa4d35d23cfe33301, 0x9c1e59422afeda1f, 0xa67ee2b329fdc229, 0xf18cda726c433117, 0x2c1d425d1032b6fb }, { 0xb4f8aa14930a4c46, 0x71732ae333a45d65, 0x816ccf233bb92d55, 0xfbea9998dae16295, 0x57a48dc820d3e5e6, 0x3adc3a30d3f6000f } }, { { 0xf662ebc1877cb7b, 0xc0368d65e22e6681, 0x71c8cca82de14d25, 0xe4223477f19defae, 0x3c103d94c8b5fd7b, 0x842b6109a34f1b13 }, { 0xc5c3b29415be6870, 0x1bbc63f9ed3fdf5, 0x2d613ea4f4e19fe3, 0x88f4417822dc50d1, 0xfc640d6cdd31170f, 0xb69a753f381d9dec }, { 0x985c910b1a830a4f, 0x5392788d4040c0f0, 0x35c797ca36ad86cd, 0x193bd1a48f19051, 0x8eedcffa1b09c7aa, 0x4b31cfc5d06595d4 } }, { { 0x2e78aee36af13611, 0x24f044be775dceb6, 0xaa845ccc368265aa, 0xffc6f3bd671a050b, 0xf92a3fcb2e8e6180, 0xdf7dc8a41e89dc61 }, { 0xae67740fbaa5fb00, 0xc9cd4ce11c9ffa24, 0xa4105fe048094272, 0x6f16ffdcfcd41b02, 0x4975a7ee91c55c71, 0x15f0cdaf3493e6b7 }, { 0x9d08b219f269ab31, 0x4b07ace40b140425, 0xd0d9c5fdf54cad2b, 0xf1b2b112caaa0eac, 0x3cc723f0659dd831, 0x6b49218e116e8e75 } } }, { { { 0xf5d7ef93bae8cc7a, 0xebb56d3b49b7ceb3, 0x8db395d78d3d6819, 0x64a9e4f8924ac941, 0xbbe590fa997659e, 0xf55fd44b7eec9be8 }, { 0xadb80bdd919f0b37, 0xe8dbd3b70fe76bba, 0x6f268d91d72b4e8c, 0xa4b277c199dad49f, 0x2a8c59451f1b4615, 0xf52bfb5114857a8 }, { 0x167cbfa6969ed7a6, 0xfccb7d65aabb726, 0xe6ef9ac941fa5673, 0x294dbf2f564eb0ef, 0xc66ea2407f96cbd7, 0xaa9065f6027f3888 } }, { { 0xdaf3b36ae725d66b, 0xf8129f712498bc8c, 0x9f38f5e691450e4c, 0xcb8944aa62c57ec1, 0x2f06c4bed320dfc5, 0x5c17b5cfedbd66dd }, { 0xb5764541a0f41e87, 0x2a232c82b59ab465, 0x33e326a91d4dde82, 0xcb22276523c379fb, 0x18262f8abeb175cb, 0x8dcd6de818c270eb }, { 0x55bbd266ce08da1c, 0x4e57ee16ecb7982d, 0x6a4dd9f7cfecf08d, 0x99d942efafa2cf09, 0x3ebafc92c9e3dfe6, 0x59493f0e3435b733 } }, { { 0x3c9441a629644d30, 0x4c9061a597ac087f, 0xe53b12914d87b03d, 0xd42c4d02de3ab3d3, 0xbe93ccf1d2280731, 0x8212b22e27c71de }, { 0x8b9cd143480a8661, 0xa50ce8320bc9adc5, 0xa49b3b2d9880ee47, 0xdcd8ad8b6332105b, 0x8fa48aa4980f38b6, 0x321f2de1f6616747 }, { 0x46421839d290aba5, 0xb16a99e52e392762, 0xbfbc8253b9b40d0f, 0x9d4dd9c9eef5519f, 0xac58adbe8152f9f0, 0xa623a06096676dba } }, { { 0x6dfc03bc537e5394, 0x5a5ff794a0f25bca, 0xa84c42aa790c3757, 0xde1698274eeb0d00, 0xe61bc5b035c2820a, 0xfbb2e1974415d9a6 }, { 0x621f5db601414347, 0xb2091d3b8a490acb, 0x98b59db277379e2c, 0x26b8ed17c5909b28, 0x86d5c4bcd31bef5a, 0xebef266bfa7f3623 }, { 0x61ac27399534967, 0x5ddbeae146dc5757, 0x322e9c9cb4b01ebc, 0xe80e406d5bb81a05, 0x2a3564eaed022eb5, 0xaeaaadcad206c334 } }, { { 0x4dc9acc52f581fd9, 0xa13756d4dc68c9e5, 0xb6527172087387a5, 0x5b88fb93e9ec6a2d, 0xacccc183f154c8a8, 0x7ece1cae0566da55 }, { 0xc3df873d553cd7fc, 0xabdad67c88b4eaf5, 0xab7ce1d32608c07b, 0xb5030b481a0c9992, 0xcaf7329cee15855a, 0x85519ef12a494c81 }, { 0x2fddd036244717, 0x9af53e8f599c87c3, 0x86784ad1988f14ea, 0x5eb11a74fb105b8f, 0xd67af855486bf0e5, 0x96d970755f74514a } }, { { 0xdb8d3ad3f62c8232, 0x995841e2f2da70a6, 0x13a1010de0576cdc, 0x9a012d138fb40186, 0x1361bd9e5a2cb92c, 0xc38645ab977ed542 }, { 0x29cbcc589ef0b00e, 0x68f7007ed32f986b, 0x41606809d9c3565a, 0xbfa6c5fc2318881e, 0x7534f25390196211, 0x9f4f1ba0ff796b5e }, { 0x548824adbfe79136, 0x7256ff6e06b2fd90, 0xf963514eb27b638d, 0xbfa16825bc494302, 0xeef5eb5869ceded6, 0xe4f8b9c57d85be62 } }, { { 0x1ed42e4741691d07, 0x5e2c48603e4263b4, 0xb52bb836f0328691, 0xb76c4cfbcc563d39, 0xb9c1e8f2d5e5cb9a, 0x65487e2b4a0dc181 }, { 0xa19fd7bb631274ac, 0x1f41f011e071d3f1, 0x37fa6be26e9709d2, 0x37074b5c093bca3f, 0x3dcabf78bf97055f, 0x84ce960b954dfcea }, { 0xebd0e17440cb3f2c, 0xef215047d344fbb1, 0xaa02bda66932385c, 0x972d9daa533d5265, 0x748fc31449e508e0, 0xea090311bd59c542 } }, { { 0xce1d341246ba3170, 0xd7ef02aedf73b7e, 0x5071939d456c2ded, 0x8b26a09a501ff656, 0xc955bfff484eba59, 0x5e3e4cc6324fca4 }, { 0xd8789a273859db5b, 0xe30faecb70be2ade, 0x9f707c05e55f7249, 0xc4f6db85489dcd90, 0x47d1da2a1d9137fb, 0xffb701e5280aaa30 }, { 0x3a086cf90693e77e, 0xda509ef7644fc8, 0x8e3dbf294c85ac71, 0x7ab0af66f45f2475, 0x820cd07bf563d64a, 0xb71f04621158f68b } }, { { 0x37087f7c4aa4059a, 0x8ea91dbea753e37a, 0x465540d8e82d2d37, 0xe223e75799d21b53, 0xcb88dc7227525e22, 0x5a618b659c347aa }, { 0x419d84c584fa0230, 0x9ff3cab91edcbbc, 0x46c6d52acb5020db, 0x90b45ddc75c022c5, 0x180a521dcaf695e9, 0x33cad2e841fff735 }, { 0x4af40c267867945f, 0xbe90d5656c7fba15, 0x45cd064716e1791c, 0xbf89bb93aaab949e, 0x1834f62309ceca9e, 0x7ac30f0d75db4557 } }, { { 0x40446d1e93a7cd4a, 0xa11056c115639470, 0x905f1ebdd32b0780, 0x256f25ef4b91374d, 0xca2014e34ac54738, 0x993fd1d7b4d8756b }, { 0xcdf3d70e02db9d4a, 0xa340b70e26b6b2ed, 0x58443043749d5849, 0xdddc948f1381d72, 0x17a364f320060ef4, 0xa07291af84151843 }, { 0x7240b5c7a00de945, 0x1056fef73a152e37, 0x76dfabc8df542233, 0xbd06cadfaf3986b1, 0xdc1e234a5f55c75f, 0x957df454f1a70287 } }, { { 0x4c9d83cb7ac2fc17, 0xcb286e5331d8e2c2, 0x7653a9ccce04913f, 0x8f43806e18cdd943, 0x613d763c51fe89ef, 0xc411f15a90264680 }, { 0xc1b558cc5fd33209, 0xae65910d58fc26e0, 0xaac87a64e453ed78, 0x77d4ae732ed1e1d1, 0xbfd05df6ac538ff4, 0xc3ca73bc2f9ff487 }, { 0x6f10d124180c4b01, 0x7312f29f69bf9c12, 0x47790819271067ed, 0x10bb461ad5893c2b, 0x764acc61cddd4920, 0x30cd581e73e988d8 } }, { { 0x79cad66257718385, 0x5585237de987f316, 0xaa6bb190b083c74b, 0xd17967cf4424195a, 0x5f586c904b32a3bf, 0xfe984bf3eca45dc5 }, { 0x2d3bc94f17191a46, 0xbc30dea1b0f647ec, 0x212816b812e698bb, 0x25ab8d87bd028fa4, 0x2784c192c7f5feec, 0x318d35a873066da9 }, { 0x3a5b5645ee59b0f4, 0x38c9e97c679d358b, 0x6762ee9993476a30, 0xca1b461e6a0cd7e6, 0xd824731e415edcdb, 0xefed41308b27f7e0 } }, { { 0x4a7442e4b9fdef1a, 0xbebbe519c0146e82, 0xede111ef9e602e4, 0x19b831f0d746dbe8, 0x52099a60d4b86ccc, 0x10e98f89db67b3bf }, { 0xdc15369b01caea1c, 0x9bdb415dc80344, 0xba8780f92acc960a, 0x1b1a50af14662313, 0xba518996326e61a0, 0x3b6a8dfcc6ab46cf }, { 0x7b58726bb6ef922d, 0x5c422c6473d68e58, 0x9dd538b245fcb9b1, 0x37e59f28d840cff, 0x66d799ab8bd8c4da, 0xbf1922621cc5d3cc } }, { { 0x56b2215fe9805209, 0x69996ce89423861b, 0xe129cfbc1c7bb5a2, 0xb7a58de21f6559eb, 0xbb8cdf70d75bbac9, 0xbca53a3663e907 }, { 0xb8445406da53d754, 0x3eba7713495b7ae7, 0x1b8bf0e64ba17cb0, 0xaf172c20b56d150a, 0x63b8e5b946bea037, 0xe85df121892895b1 }, { 0x9a0b208f91dfad0, 0x2a99402a68888925, 0x8ec3b6d1d2d631bb, 0x46996c84c04e0bff, 0xc53ec2d3b467d778, 0x785ac8fbbfae4756 } }, { { 0x481baa80789bc2c1, 0xeeb15820fac9ec44, 0x6de173467b9c440f, 0x15c672b9eed2be88, 0xd86020e17ff7749b, 0xa3b62182b9f9b69b }, { 0x27b61bff65ff1293, 0xd929f0a58aa52cca, 0x944284e098d919d0, 0x97abb7d2385e7903, 0x4058234cde790234, 0x911472477364ed01 }, { 0x81d54ddc0b5e72a1, 0xd24a2bffd0e1ee55, 0x5f988a825ad5c13c, 0xe3da9950522296a8, 0x2f3a258d58b27088, 0x18c9ff34089350da } } } };
mirage-crypto
2.0.2
ISC
https://github.com/mirage/mirage-crypto
git+https://github.com/mirage/mirage-crypto.git
h
mirage-crypto-2.0.2/ec/native/p521_32.h
/* Autogenerated: '../fiat-crypto/src/ExtractionOCaml/word_by_word_montgomery' --static --use-value-barrier --inline-internal p521 32 '2^521 - 1' */ /* curve description: p521 */ /* machine_wordsize = 32 (from "32") */ /* requested operations: (all) */ /* m = 0x1ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff (from "2^521 - 1") */ /* */ /* NOTE: In addition to the bounds specified above each function, all */ /* functions synthesized for this Montgomery arithmetic require the */ /* input to be strictly less than the prime modulus (m), and also */ /* require the input to be in the unique saturated representation. */ /* All functions also ensure that these two properties are true of */ /* return values. */ /* */ /* Computed values: */ /* eval z = z[0] + (z[1] << 32) + (z[2] << 64) + (z[3] << 96) + (z[4] << 128) + (z[5] << 160) + (z[6] << 192) + (z[7] << 224) + (z[8] << 256) + (z[9] << 0x120) + (z[10] << 0x140) + (z[11] << 0x160) + (z[12] << 0x180) + (z[13] << 0x1a0) + (z[14] << 0x1c0) + (z[15] << 0x1e0) + (z[16] << 2^9) */ /* bytes_eval z = z[0] + (z[1] << 8) + (z[2] << 16) + (z[3] << 24) + (z[4] << 32) + (z[5] << 40) + (z[6] << 48) + (z[7] << 56) + (z[8] << 64) + (z[9] << 72) + (z[10] << 80) + (z[11] << 88) + (z[12] << 96) + (z[13] << 104) + (z[14] << 112) + (z[15] << 120) + (z[16] << 128) + (z[17] << 136) + (z[18] << 144) + (z[19] << 152) + (z[20] << 160) + (z[21] << 168) + (z[22] << 176) + (z[23] << 184) + (z[24] << 192) + (z[25] << 200) + (z[26] << 208) + (z[27] << 216) + (z[28] << 224) + (z[29] << 232) + (z[30] << 240) + (z[31] << 248) + (z[32] << 256) + (z[33] << 0x108) + (z[34] << 0x110) + (z[35] << 0x118) + (z[36] << 0x120) + (z[37] << 0x128) + (z[38] << 0x130) + (z[39] << 0x138) + (z[40] << 0x140) + (z[41] << 0x148) + (z[42] << 0x150) + (z[43] << 0x158) + (z[44] << 0x160) + (z[45] << 0x168) + (z[46] << 0x170) + (z[47] << 0x178) + (z[48] << 0x180) + (z[49] << 0x188) + (z[50] << 0x190) + (z[51] << 0x198) + (z[52] << 0x1a0) + (z[53] << 0x1a8) + (z[54] << 0x1b0) + (z[55] << 0x1b8) + (z[56] << 0x1c0) + (z[57] << 0x1c8) + (z[58] << 0x1d0) + (z[59] << 0x1d8) + (z[60] << 0x1e0) + (z[61] << 0x1e8) + (z[62] << 0x1f0) + (z[63] << 0x1f8) + (z[64] << 2^9) + (z[65] << 0x208) */ /* twos_complement_eval z = let x1 := z[0] + (z[1] << 32) + (z[2] << 64) + (z[3] << 96) + (z[4] << 128) + (z[5] << 160) + (z[6] << 192) + (z[7] << 224) + (z[8] << 256) + (z[9] << 0x120) + (z[10] << 0x140) + (z[11] << 0x160) + (z[12] << 0x180) + (z[13] << 0x1a0) + (z[14] << 0x1c0) + (z[15] << 0x1e0) + (z[16] << 2^9) in */ /* if x1 & (2^544-1) < 2^543 then x1 & (2^544-1) else (x1 & (2^544-1)) - 2^544 */ #include <stdint.h> typedef unsigned char fiat_p521_uint1; typedef signed char fiat_p521_int1; #if defined(__GNUC__) || defined(__clang__) # define FIAT_P521_FIAT_INLINE __inline__ #else # define FIAT_P521_FIAT_INLINE #endif /* The type fiat_p521_montgomery_domain_field_element is a field element in the Montgomery domain. */ /* Bounds: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff]] */ typedef uint32_t fiat_p521_montgomery_domain_field_element[17]; /* The type fiat_p521_non_montgomery_domain_field_element is a field element NOT in the Montgomery domain. */ /* Bounds: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff]] */ typedef uint32_t fiat_p521_non_montgomery_domain_field_element[17]; #if (-1 & 3) != 3 #error "This code only works on a two's complement system" #endif #if !defined(FIAT_P521_NO_ASM) && (defined(__GNUC__) || defined(__clang__)) static __inline__ uint32_t fiat_p521_value_barrier_u32(uint32_t a) { __asm__("" : "+r"(a) : /* no inputs */); return a; } #else # define fiat_p521_value_barrier_u32(x) (x) #endif /* * The function fiat_p521_addcarryx_u32 is an addition with carry. * * Postconditions: * out1 = (arg1 + arg2 + arg3) mod 2^32 * out2 = ⌊(arg1 + arg2 + arg3) / 2^32⌋ * * Input Bounds: * arg1: [0x0 ~> 0x1] * arg2: [0x0 ~> 0xffffffff] * arg3: [0x0 ~> 0xffffffff] * Output Bounds: * out1: [0x0 ~> 0xffffffff] * out2: [0x0 ~> 0x1] */ static FIAT_P521_FIAT_INLINE void fiat_p521_addcarryx_u32(uint32_t* out1, fiat_p521_uint1* out2, fiat_p521_uint1 arg1, uint32_t arg2, uint32_t arg3) { uint64_t x1; uint32_t x2; fiat_p521_uint1 x3; x1 = ((arg1 + (uint64_t)arg2) + arg3); x2 = (uint32_t)(x1 & UINT32_C(0xffffffff)); x3 = (fiat_p521_uint1)(x1 >> 32); *out1 = x2; *out2 = x3; } /* * The function fiat_p521_subborrowx_u32 is a subtraction with borrow. * * Postconditions: * out1 = (-arg1 + arg2 + -arg3) mod 2^32 * out2 = -⌊(-arg1 + arg2 + -arg3) / 2^32⌋ * * Input Bounds: * arg1: [0x0 ~> 0x1] * arg2: [0x0 ~> 0xffffffff] * arg3: [0x0 ~> 0xffffffff] * Output Bounds: * out1: [0x0 ~> 0xffffffff] * out2: [0x0 ~> 0x1] */ static FIAT_P521_FIAT_INLINE void fiat_p521_subborrowx_u32(uint32_t* out1, fiat_p521_uint1* out2, fiat_p521_uint1 arg1, uint32_t arg2, uint32_t arg3) { int64_t x1; fiat_p521_int1 x2; uint32_t x3; x1 = ((arg2 - (int64_t)arg1) - arg3); x2 = (fiat_p521_int1)(x1 >> 32); x3 = (uint32_t)(x1 & UINT32_C(0xffffffff)); *out1 = x3; *out2 = (fiat_p521_uint1)(0x0 - x2); } /* * The function fiat_p521_mulx_u32 is a multiplication, returning the full double-width result. * * Postconditions: * out1 = (arg1 * arg2) mod 2^32 * out2 = ⌊arg1 * arg2 / 2^32⌋ * * Input Bounds: * arg1: [0x0 ~> 0xffffffff] * arg2: [0x0 ~> 0xffffffff] * Output Bounds: * out1: [0x0 ~> 0xffffffff] * out2: [0x0 ~> 0xffffffff] */ static FIAT_P521_FIAT_INLINE void fiat_p521_mulx_u32(uint32_t* out1, uint32_t* out2, uint32_t arg1, uint32_t arg2) { uint64_t x1; uint32_t x2; uint32_t x3; x1 = ((uint64_t)arg1 * arg2); x2 = (uint32_t)(x1 & UINT32_C(0xffffffff)); x3 = (uint32_t)(x1 >> 32); *out1 = x2; *out2 = x3; } /* * The function fiat_p521_cmovznz_u32 is a single-word conditional move. * * Postconditions: * out1 = (if arg1 = 0 then arg2 else arg3) * * Input Bounds: * arg1: [0x0 ~> 0x1] * arg2: [0x0 ~> 0xffffffff] * arg3: [0x0 ~> 0xffffffff] * Output Bounds: * out1: [0x0 ~> 0xffffffff] */ static FIAT_P521_FIAT_INLINE void fiat_p521_cmovznz_u32(uint32_t* out1, fiat_p521_uint1 arg1, uint32_t arg2, uint32_t arg3) { fiat_p521_uint1 x1; uint32_t x2; uint32_t x3; x1 = (!(!arg1)); x2 = ((fiat_p521_int1)(0x0 - x1) & UINT32_C(0xffffffff)); x3 = ((fiat_p521_value_barrier_u32(x2) & arg3) | (fiat_p521_value_barrier_u32((~x2)) & arg2)); *out1 = x3; } /* * The function fiat_p521_mul multiplies two field elements in the Montgomery domain. * * Preconditions: * 0 ≤ eval arg1 < m * 0 ≤ eval arg2 < m * Postconditions: * eval (from_montgomery out1) mod m = (eval (from_montgomery arg1) * eval (from_montgomery arg2)) mod m * 0 ≤ eval out1 < m * */ static void fiat_p521_mul(fiat_p521_montgomery_domain_field_element out1, const fiat_p521_montgomery_domain_field_element arg1, const fiat_p521_montgomery_domain_field_element arg2) { uint32_t x1; uint32_t x2; uint32_t x3; uint32_t x4; uint32_t x5; uint32_t x6; uint32_t x7; uint32_t x8; uint32_t x9; uint32_t x10; uint32_t x11; uint32_t x12; uint32_t x13; uint32_t x14; uint32_t x15; uint32_t x16; uint32_t x17; uint32_t x18; uint32_t x19; uint32_t x20; uint32_t x21; uint32_t x22; uint32_t x23; uint32_t x24; uint32_t x25; uint32_t x26; uint32_t x27; uint32_t x28; uint32_t x29; uint32_t x30; uint32_t x31; uint32_t x32; uint32_t x33; uint32_t x34; uint32_t x35; uint32_t x36; uint32_t x37; uint32_t x38; uint32_t x39; uint32_t x40; uint32_t x41; uint32_t x42; uint32_t x43; uint32_t x44; uint32_t x45; uint32_t x46; uint32_t x47; uint32_t x48; uint32_t x49; uint32_t x50; uint32_t x51; uint32_t x52; fiat_p521_uint1 x53; uint32_t x54; fiat_p521_uint1 x55; uint32_t x56; fiat_p521_uint1 x57; uint32_t x58; fiat_p521_uint1 x59; uint32_t x60; fiat_p521_uint1 x61; uint32_t x62; fiat_p521_uint1 x63; uint32_t x64; fiat_p521_uint1 x65; uint32_t x66; fiat_p521_uint1 x67; uint32_t x68; fiat_p521_uint1 x69; uint32_t x70; fiat_p521_uint1 x71; uint32_t x72; fiat_p521_uint1 x73; uint32_t x74; fiat_p521_uint1 x75; uint32_t x76; fiat_p521_uint1 x77; uint32_t x78; fiat_p521_uint1 x79; uint32_t x80; fiat_p521_uint1 x81; uint32_t x82; fiat_p521_uint1 x83; uint32_t x84; uint32_t x85; uint32_t x86; uint32_t x87; uint32_t x88; uint32_t x89; uint32_t x90; uint32_t x91; uint32_t x92; uint32_t x93; uint32_t x94; uint32_t x95; uint32_t x96; uint32_t x97; uint32_t x98; uint32_t x99; uint32_t x100; uint32_t x101; uint32_t x102; uint32_t x103; uint32_t x104; uint32_t x105; uint32_t x106; uint32_t x107; uint32_t x108; uint32_t x109; uint32_t x110; uint32_t x111; uint32_t x112; uint32_t x113; uint32_t x114; uint32_t x115; uint32_t x116; uint32_t x117; uint32_t x118; uint32_t x119; fiat_p521_uint1 x120; uint32_t x121; fiat_p521_uint1 x122; uint32_t x123; fiat_p521_uint1 x124; uint32_t x125; fiat_p521_uint1 x126; uint32_t x127; fiat_p521_uint1 x128; uint32_t x129; fiat_p521_uint1 x130; uint32_t x131; fiat_p521_uint1 x132; uint32_t x133; fiat_p521_uint1 x134; uint32_t x135; fiat_p521_uint1 x136; uint32_t x137; fiat_p521_uint1 x138; uint32_t x139; fiat_p521_uint1 x140; uint32_t x141; fiat_p521_uint1 x142; uint32_t x143; fiat_p521_uint1 x144; uint32_t x145; fiat_p521_uint1 x146; uint32_t x147; fiat_p521_uint1 x148; uint32_t x149; fiat_p521_uint1 x150; uint32_t x151; uint32_t x152; fiat_p521_uint1 x153; uint32_t x154; fiat_p521_uint1 x155; uint32_t x156; fiat_p521_uint1 x157; uint32_t x158; fiat_p521_uint1 x159; uint32_t x160; fiat_p521_uint1 x161; uint32_t x162; fiat_p521_uint1 x163; uint32_t x164; fiat_p521_uint1 x165; uint32_t x166; fiat_p521_uint1 x167; uint32_t x168; fiat_p521_uint1 x169; uint32_t x170; fiat_p521_uint1 x171; uint32_t x172; fiat_p521_uint1 x173; uint32_t x174; fiat_p521_uint1 x175; uint32_t x176; fiat_p521_uint1 x177; uint32_t x178; fiat_p521_uint1 x179; uint32_t x180; fiat_p521_uint1 x181; uint32_t x182; fiat_p521_uint1 x183; uint32_t x184; fiat_p521_uint1 x185; uint32_t x186; fiat_p521_uint1 x187; uint32_t x188; uint32_t x189; uint32_t x190; uint32_t x191; uint32_t x192; uint32_t x193; uint32_t x194; uint32_t x195; uint32_t x196; uint32_t x197; uint32_t x198; uint32_t x199; uint32_t x200; uint32_t x201; uint32_t x202; uint32_t x203; uint32_t x204; uint32_t x205; uint32_t x206; uint32_t x207; uint32_t x208; uint32_t x209; uint32_t x210; uint32_t x211; uint32_t x212; uint32_t x213; uint32_t x214; uint32_t x215; uint32_t x216; uint32_t x217; uint32_t x218; uint32_t x219; uint32_t x220; uint32_t x221; uint32_t x222; fiat_p521_uint1 x223; uint32_t x224; fiat_p521_uint1 x225; uint32_t x226; fiat_p521_uint1 x227; uint32_t x228; fiat_p521_uint1 x229; uint32_t x230; fiat_p521_uint1 x231; uint32_t x232; fiat_p521_uint1 x233; uint32_t x234; fiat_p521_uint1 x235; uint32_t x236; fiat_p521_uint1 x237; uint32_t x238; fiat_p521_uint1 x239; uint32_t x240; fiat_p521_uint1 x241; uint32_t x242; fiat_p521_uint1 x243; uint32_t x244; fiat_p521_uint1 x245; uint32_t x246; fiat_p521_uint1 x247; uint32_t x248; fiat_p521_uint1 x249; uint32_t x250; fiat_p521_uint1 x251; uint32_t x252; fiat_p521_uint1 x253; uint32_t x254; uint32_t x255; fiat_p521_uint1 x256; uint32_t x257; fiat_p521_uint1 x258; uint32_t x259; fiat_p521_uint1 x260; uint32_t x261; fiat_p521_uint1 x262; uint32_t x263; fiat_p521_uint1 x264; uint32_t x265; fiat_p521_uint1 x266; uint32_t x267; fiat_p521_uint1 x268; uint32_t x269; fiat_p521_uint1 x270; uint32_t x271; fiat_p521_uint1 x272; uint32_t x273; fiat_p521_uint1 x274; uint32_t x275; fiat_p521_uint1 x276; uint32_t x277; fiat_p521_uint1 x278; uint32_t x279; fiat_p521_uint1 x280; uint32_t x281; fiat_p521_uint1 x282; uint32_t x283; fiat_p521_uint1 x284; uint32_t x285; fiat_p521_uint1 x286; uint32_t x287; fiat_p521_uint1 x288; uint32_t x289; fiat_p521_uint1 x290; uint32_t x291; uint32_t x292; uint32_t x293; uint32_t x294; uint32_t x295; uint32_t x296; uint32_t x297; uint32_t x298; uint32_t x299; uint32_t x300; uint32_t x301; uint32_t x302; uint32_t x303; uint32_t x304; uint32_t x305; uint32_t x306; uint32_t x307; uint32_t x308; uint32_t x309; uint32_t x310; uint32_t x311; uint32_t x312; uint32_t x313; uint32_t x314; uint32_t x315; uint32_t x316; uint32_t x317; uint32_t x318; uint32_t x319; uint32_t x320; uint32_t x321; uint32_t x322; uint32_t x323; uint32_t x324; uint32_t x325; fiat_p521_uint1 x326; uint32_t x327; fiat_p521_uint1 x328; uint32_t x329; fiat_p521_uint1 x330; uint32_t x331; fiat_p521_uint1 x332; uint32_t x333; fiat_p521_uint1 x334; uint32_t x335; fiat_p521_uint1 x336; uint32_t x337; fiat_p521_uint1 x338; uint32_t x339; fiat_p521_uint1 x340; uint32_t x341; fiat_p521_uint1 x342; uint32_t x343; fiat_p521_uint1 x344; uint32_t x345; fiat_p521_uint1 x346; uint32_t x347; fiat_p521_uint1 x348; uint32_t x349; fiat_p521_uint1 x350; uint32_t x351; fiat_p521_uint1 x352; uint32_t x353; fiat_p521_uint1 x354; uint32_t x355; fiat_p521_uint1 x356; uint32_t x357; uint32_t x358; fiat_p521_uint1 x359; uint32_t x360; fiat_p521_uint1 x361; uint32_t x362; fiat_p521_uint1 x363; uint32_t x364; fiat_p521_uint1 x365; uint32_t x366; fiat_p521_uint1 x367; uint32_t x368; fiat_p521_uint1 x369; uint32_t x370; fiat_p521_uint1 x371; uint32_t x372; fiat_p521_uint1 x373; uint32_t x374; fiat_p521_uint1 x375; uint32_t x376; fiat_p521_uint1 x377; uint32_t x378; fiat_p521_uint1 x379; uint32_t x380; fiat_p521_uint1 x381; uint32_t x382; fiat_p521_uint1 x383; uint32_t x384; fiat_p521_uint1 x385; uint32_t x386; fiat_p521_uint1 x387; uint32_t x388; fiat_p521_uint1 x389; uint32_t x390; fiat_p521_uint1 x391; uint32_t x392; fiat_p521_uint1 x393; uint32_t x394; uint32_t x395; uint32_t x396; uint32_t x397; uint32_t x398; uint32_t x399; uint32_t x400; uint32_t x401; uint32_t x402; uint32_t x403; uint32_t x404; uint32_t x405; uint32_t x406; uint32_t x407; uint32_t x408; uint32_t x409; uint32_t x410; uint32_t x411; uint32_t x412; uint32_t x413; uint32_t x414; uint32_t x415; uint32_t x416; uint32_t x417; uint32_t x418; uint32_t x419; uint32_t x420; uint32_t x421; uint32_t x422; uint32_t x423; uint32_t x424; uint32_t x425; uint32_t x426; uint32_t x427; uint32_t x428; uint32_t x429; fiat_p521_uint1 x430; uint32_t x431; fiat_p521_uint1 x432; uint32_t x433; fiat_p521_uint1 x434; uint32_t x435; fiat_p521_uint1 x436; uint32_t x437; fiat_p521_uint1 x438; uint32_t x439; fiat_p521_uint1 x440; uint32_t x441; fiat_p521_uint1 x442; uint32_t x443; fiat_p521_uint1 x444; uint32_t x445; fiat_p521_uint1 x446; uint32_t x447; fiat_p521_uint1 x448; uint32_t x449; fiat_p521_uint1 x450; uint32_t x451; fiat_p521_uint1 x452; uint32_t x453; fiat_p521_uint1 x454; uint32_t x455; fiat_p521_uint1 x456; uint32_t x457; fiat_p521_uint1 x458; uint32_t x459; fiat_p521_uint1 x460; uint32_t x461; uint32_t x462; fiat_p521_uint1 x463; uint32_t x464; fiat_p521_uint1 x465; uint32_t x466; fiat_p521_uint1 x467; uint32_t x468; fiat_p521_uint1 x469; uint32_t x470; fiat_p521_uint1 x471; uint32_t x472; fiat_p521_uint1 x473; uint32_t x474; fiat_p521_uint1 x475; uint32_t x476; fiat_p521_uint1 x477; uint32_t x478; fiat_p521_uint1 x479; uint32_t x480; fiat_p521_uint1 x481; uint32_t x482; fiat_p521_uint1 x483; uint32_t x484; fiat_p521_uint1 x485; uint32_t x486; fiat_p521_uint1 x487; uint32_t x488; fiat_p521_uint1 x489; uint32_t x490; fiat_p521_uint1 x491; uint32_t x492; fiat_p521_uint1 x493; uint32_t x494; fiat_p521_uint1 x495; uint32_t x496; fiat_p521_uint1 x497; uint32_t x498; uint32_t x499; uint32_t x500; uint32_t x501; uint32_t x502; uint32_t x503; uint32_t x504; uint32_t x505; uint32_t x506; uint32_t x507; uint32_t x508; uint32_t x509; uint32_t x510; uint32_t x511; uint32_t x512; uint32_t x513; uint32_t x514; uint32_t x515; uint32_t x516; uint32_t x517; uint32_t x518; uint32_t x519; uint32_t x520; uint32_t x521; uint32_t x522; uint32_t x523; uint32_t x524; uint32_t x525; uint32_t x526; uint32_t x527; uint32_t x528; uint32_t x529; uint32_t x530; uint32_t x531; uint32_t x532; fiat_p521_uint1 x533; uint32_t x534; fiat_p521_uint1 x535; uint32_t x536; fiat_p521_uint1 x537; uint32_t x538; fiat_p521_uint1 x539; uint32_t x540; fiat_p521_uint1 x541; uint32_t x542; fiat_p521_uint1 x543; uint32_t x544; fiat_p521_uint1 x545; uint32_t x546; fiat_p521_uint1 x547; uint32_t x548; fiat_p521_uint1 x549; uint32_t x550; fiat_p521_uint1 x551; uint32_t x552; fiat_p521_uint1 x553; uint32_t x554; fiat_p521_uint1 x555; uint32_t x556; fiat_p521_uint1 x557; uint32_t x558; fiat_p521_uint1 x559; uint32_t x560; fiat_p521_uint1 x561; uint32_t x562; fiat_p521_uint1 x563; uint32_t x564; uint32_t x565; fiat_p521_uint1 x566; uint32_t x567; fiat_p521_uint1 x568; uint32_t x569; fiat_p521_uint1 x570; uint32_t x571; fiat_p521_uint1 x572; uint32_t x573; fiat_p521_uint1 x574; uint32_t x575; fiat_p521_uint1 x576; uint32_t x577; fiat_p521_uint1 x578; uint32_t x579; fiat_p521_uint1 x580; uint32_t x581; fiat_p521_uint1 x582; uint32_t x583; fiat_p521_uint1 x584; uint32_t x585; fiat_p521_uint1 x586; uint32_t x587; fiat_p521_uint1 x588; uint32_t x589; fiat_p521_uint1 x590; uint32_t x591; fiat_p521_uint1 x592; uint32_t x593; fiat_p521_uint1 x594; uint32_t x595; fiat_p521_uint1 x596; uint32_t x597; fiat_p521_uint1 x598; uint32_t x599; fiat_p521_uint1 x600; uint32_t x601; uint32_t x602; uint32_t x603; uint32_t x604; uint32_t x605; uint32_t x606; uint32_t x607; uint32_t x608; uint32_t x609; uint32_t x610; uint32_t x611; uint32_t x612; uint32_t x613; uint32_t x614; uint32_t x615; uint32_t x616; uint32_t x617; uint32_t x618; uint32_t x619; uint32_t x620; uint32_t x621; uint32_t x622; uint32_t x623; uint32_t x624; uint32_t x625; uint32_t x626; uint32_t x627; uint32_t x628; uint32_t x629; uint32_t x630; uint32_t x631; uint32_t x632; uint32_t x633; uint32_t x634; uint32_t x635; uint32_t x636; fiat_p521_uint1 x637; uint32_t x638; fiat_p521_uint1 x639; uint32_t x640; fiat_p521_uint1 x641; uint32_t x642; fiat_p521_uint1 x643; uint32_t x644; fiat_p521_uint1 x645; uint32_t x646; fiat_p521_uint1 x647; uint32_t x648; fiat_p521_uint1 x649; uint32_t x650; fiat_p521_uint1 x651; uint32_t x652; fiat_p521_uint1 x653; uint32_t x654; fiat_p521_uint1 x655; uint32_t x656; fiat_p521_uint1 x657; uint32_t x658; fiat_p521_uint1 x659; uint32_t x660; fiat_p521_uint1 x661; uint32_t x662; fiat_p521_uint1 x663; uint32_t x664; fiat_p521_uint1 x665; uint32_t x666; fiat_p521_uint1 x667; uint32_t x668; uint32_t x669; fiat_p521_uint1 x670; uint32_t x671; fiat_p521_uint1 x672; uint32_t x673; fiat_p521_uint1 x674; uint32_t x675; fiat_p521_uint1 x676; uint32_t x677; fiat_p521_uint1 x678; uint32_t x679; fiat_p521_uint1 x680; uint32_t x681; fiat_p521_uint1 x682; uint32_t x683; fiat_p521_uint1 x684; uint32_t x685; fiat_p521_uint1 x686; uint32_t x687; fiat_p521_uint1 x688; uint32_t x689; fiat_p521_uint1 x690; uint32_t x691; fiat_p521_uint1 x692; uint32_t x693; fiat_p521_uint1 x694; uint32_t x695; fiat_p521_uint1 x696; uint32_t x697; fiat_p521_uint1 x698; uint32_t x699; fiat_p521_uint1 x700; uint32_t x701; fiat_p521_uint1 x702; uint32_t x703; fiat_p521_uint1 x704; uint32_t x705; uint32_t x706; uint32_t x707; uint32_t x708; uint32_t x709; uint32_t x710; uint32_t x711; uint32_t x712; uint32_t x713; uint32_t x714; uint32_t x715; uint32_t x716; uint32_t x717; uint32_t x718; uint32_t x719; uint32_t x720; uint32_t x721; uint32_t x722; uint32_t x723; uint32_t x724; uint32_t x725; uint32_t x726; uint32_t x727; uint32_t x728; uint32_t x729; uint32_t x730; uint32_t x731; uint32_t x732; uint32_t x733; uint32_t x734; uint32_t x735; uint32_t x736; uint32_t x737; uint32_t x738; uint32_t x739; fiat_p521_uint1 x740; uint32_t x741; fiat_p521_uint1 x742; uint32_t x743; fiat_p521_uint1 x744; uint32_t x745; fiat_p521_uint1 x746; uint32_t x747; fiat_p521_uint1 x748; uint32_t x749; fiat_p521_uint1 x750; uint32_t x751; fiat_p521_uint1 x752; uint32_t x753; fiat_p521_uint1 x754; uint32_t x755; fiat_p521_uint1 x756; uint32_t x757; fiat_p521_uint1 x758; uint32_t x759; fiat_p521_uint1 x760; uint32_t x761; fiat_p521_uint1 x762; uint32_t x763; fiat_p521_uint1 x764; uint32_t x765; fiat_p521_uint1 x766; uint32_t x767; fiat_p521_uint1 x768; uint32_t x769; fiat_p521_uint1 x770; uint32_t x771; uint32_t x772; fiat_p521_uint1 x773; uint32_t x774; fiat_p521_uint1 x775; uint32_t x776; fiat_p521_uint1 x777; uint32_t x778; fiat_p521_uint1 x779; uint32_t x780; fiat_p521_uint1 x781; uint32_t x782; fiat_p521_uint1 x783; uint32_t x784; fiat_p521_uint1 x785; uint32_t x786; fiat_p521_uint1 x787; uint32_t x788; fiat_p521_uint1 x789; uint32_t x790; fiat_p521_uint1 x791; uint32_t x792; fiat_p521_uint1 x793; uint32_t x794; fiat_p521_uint1 x795; uint32_t x796; fiat_p521_uint1 x797; uint32_t x798; fiat_p521_uint1 x799; uint32_t x800; fiat_p521_uint1 x801; uint32_t x802; fiat_p521_uint1 x803; uint32_t x804; fiat_p521_uint1 x805; uint32_t x806; fiat_p521_uint1 x807; uint32_t x808; uint32_t x809; uint32_t x810; uint32_t x811; uint32_t x812; uint32_t x813; uint32_t x814; uint32_t x815; uint32_t x816; uint32_t x817; uint32_t x818; uint32_t x819; uint32_t x820; uint32_t x821; uint32_t x822; uint32_t x823; uint32_t x824; uint32_t x825; uint32_t x826; uint32_t x827; uint32_t x828; uint32_t x829; uint32_t x830; uint32_t x831; uint32_t x832; uint32_t x833; uint32_t x834; uint32_t x835; uint32_t x836; uint32_t x837; uint32_t x838; uint32_t x839; uint32_t x840; uint32_t x841; uint32_t x842; uint32_t x843; fiat_p521_uint1 x844; uint32_t x845; fiat_p521_uint1 x846; uint32_t x847; fiat_p521_uint1 x848; uint32_t x849; fiat_p521_uint1 x850; uint32_t x851; fiat_p521_uint1 x852; uint32_t x853; fiat_p521_uint1 x854; uint32_t x855; fiat_p521_uint1 x856; uint32_t x857; fiat_p521_uint1 x858; uint32_t x859; fiat_p521_uint1 x860; uint32_t x861; fiat_p521_uint1 x862; uint32_t x863; fiat_p521_uint1 x864; uint32_t x865; fiat_p521_uint1 x866; uint32_t x867; fiat_p521_uint1 x868; uint32_t x869; fiat_p521_uint1 x870; uint32_t x871; fiat_p521_uint1 x872; uint32_t x873; fiat_p521_uint1 x874; uint32_t x875; uint32_t x876; fiat_p521_uint1 x877; uint32_t x878; fiat_p521_uint1 x879; uint32_t x880; fiat_p521_uint1 x881; uint32_t x882; fiat_p521_uint1 x883; uint32_t x884; fiat_p521_uint1 x885; uint32_t x886; fiat_p521_uint1 x887; uint32_t x888; fiat_p521_uint1 x889; uint32_t x890; fiat_p521_uint1 x891; uint32_t x892; fiat_p521_uint1 x893; uint32_t x894; fiat_p521_uint1 x895; uint32_t x896; fiat_p521_uint1 x897; uint32_t x898; fiat_p521_uint1 x899; uint32_t x900; fiat_p521_uint1 x901; uint32_t x902; fiat_p521_uint1 x903; uint32_t x904; fiat_p521_uint1 x905; uint32_t x906; fiat_p521_uint1 x907; uint32_t x908; fiat_p521_uint1 x909; uint32_t x910; fiat_p521_uint1 x911; uint32_t x912; uint32_t x913; uint32_t x914; uint32_t x915; uint32_t x916; uint32_t x917; uint32_t x918; uint32_t x919; uint32_t x920; uint32_t x921; uint32_t x922; uint32_t x923; uint32_t x924; uint32_t x925; uint32_t x926; uint32_t x927; uint32_t x928; uint32_t x929; uint32_t x930; uint32_t x931; uint32_t x932; uint32_t x933; uint32_t x934; uint32_t x935; uint32_t x936; uint32_t x937; uint32_t x938; uint32_t x939; uint32_t x940; uint32_t x941; uint32_t x942; uint32_t x943; uint32_t x944; uint32_t x945; uint32_t x946; fiat_p521_uint1 x947; uint32_t x948; fiat_p521_uint1 x949; uint32_t x950; fiat_p521_uint1 x951; uint32_t x952; fiat_p521_uint1 x953; uint32_t x954; fiat_p521_uint1 x955; uint32_t x956; fiat_p521_uint1 x957; uint32_t x958; fiat_p521_uint1 x959; uint32_t x960; fiat_p521_uint1 x961; uint32_t x962; fiat_p521_uint1 x963; uint32_t x964; fiat_p521_uint1 x965; uint32_t x966; fiat_p521_uint1 x967; uint32_t x968; fiat_p521_uint1 x969; uint32_t x970; fiat_p521_uint1 x971; uint32_t x972; fiat_p521_uint1 x973; uint32_t x974; fiat_p521_uint1 x975; uint32_t x976; fiat_p521_uint1 x977; uint32_t x978; uint32_t x979; fiat_p521_uint1 x980; uint32_t x981; fiat_p521_uint1 x982; uint32_t x983; fiat_p521_uint1 x984; uint32_t x985; fiat_p521_uint1 x986; uint32_t x987; fiat_p521_uint1 x988; uint32_t x989; fiat_p521_uint1 x990; uint32_t x991; fiat_p521_uint1 x992; uint32_t x993; fiat_p521_uint1 x994; uint32_t x995; fiat_p521_uint1 x996; uint32_t x997; fiat_p521_uint1 x998; uint32_t x999; fiat_p521_uint1 x1000; uint32_t x1001; fiat_p521_uint1 x1002; uint32_t x1003; fiat_p521_uint1 x1004; uint32_t x1005; fiat_p521_uint1 x1006; uint32_t x1007; fiat_p521_uint1 x1008; uint32_t x1009; fiat_p521_uint1 x1010; uint32_t x1011; fiat_p521_uint1 x1012; uint32_t x1013; fiat_p521_uint1 x1014; uint32_t x1015; uint32_t x1016; uint32_t x1017; uint32_t x1018; uint32_t x1019; uint32_t x1020; uint32_t x1021; uint32_t x1022; uint32_t x1023; uint32_t x1024; uint32_t x1025; uint32_t x1026; uint32_t x1027; uint32_t x1028; uint32_t x1029; uint32_t x1030; uint32_t x1031; uint32_t x1032; uint32_t x1033; uint32_t x1034; uint32_t x1035; uint32_t x1036; uint32_t x1037; uint32_t x1038; uint32_t x1039; uint32_t x1040; uint32_t x1041; uint32_t x1042; uint32_t x1043; uint32_t x1044; uint32_t x1045; uint32_t x1046; uint32_t x1047; uint32_t x1048; uint32_t x1049; uint32_t x1050; fiat_p521_uint1 x1051; uint32_t x1052; fiat_p521_uint1 x1053; uint32_t x1054; fiat_p521_uint1 x1055; uint32_t x1056; fiat_p521_uint1 x1057; uint32_t x1058; fiat_p521_uint1 x1059; uint32_t x1060; fiat_p521_uint1 x1061; uint32_t x1062; fiat_p521_uint1 x1063; uint32_t x1064; fiat_p521_uint1 x1065; uint32_t x1066; fiat_p521_uint1 x1067; uint32_t x1068; fiat_p521_uint1 x1069; uint32_t x1070; fiat_p521_uint1 x1071; uint32_t x1072; fiat_p521_uint1 x1073; uint32_t x1074; fiat_p521_uint1 x1075; uint32_t x1076; fiat_p521_uint1 x1077; uint32_t x1078; fiat_p521_uint1 x1079; uint32_t x1080; fiat_p521_uint1 x1081; uint32_t x1082; uint32_t x1083; fiat_p521_uint1 x1084; uint32_t x1085; fiat_p521_uint1 x1086; uint32_t x1087; fiat_p521_uint1 x1088; uint32_t x1089; fiat_p521_uint1 x1090; uint32_t x1091; fiat_p521_uint1 x1092; uint32_t x1093; fiat_p521_uint1 x1094; uint32_t x1095; fiat_p521_uint1 x1096; uint32_t x1097; fiat_p521_uint1 x1098; uint32_t x1099; fiat_p521_uint1 x1100; uint32_t x1101; fiat_p521_uint1 x1102; uint32_t x1103; fiat_p521_uint1 x1104; uint32_t x1105; fiat_p521_uint1 x1106; uint32_t x1107; fiat_p521_uint1 x1108; uint32_t x1109; fiat_p521_uint1 x1110; uint32_t x1111; fiat_p521_uint1 x1112; uint32_t x1113; fiat_p521_uint1 x1114; uint32_t x1115; fiat_p521_uint1 x1116; uint32_t x1117; fiat_p521_uint1 x1118; uint32_t x1119; uint32_t x1120; uint32_t x1121; uint32_t x1122; uint32_t x1123; uint32_t x1124; uint32_t x1125; uint32_t x1126; uint32_t x1127; uint32_t x1128; uint32_t x1129; uint32_t x1130; uint32_t x1131; uint32_t x1132; uint32_t x1133; uint32_t x1134; uint32_t x1135; uint32_t x1136; uint32_t x1137; uint32_t x1138; uint32_t x1139; uint32_t x1140; uint32_t x1141; uint32_t x1142; uint32_t x1143; uint32_t x1144; uint32_t x1145; uint32_t x1146; uint32_t x1147; uint32_t x1148; uint32_t x1149; uint32_t x1150; uint32_t x1151; uint32_t x1152; uint32_t x1153; fiat_p521_uint1 x1154; uint32_t x1155; fiat_p521_uint1 x1156; uint32_t x1157; fiat_p521_uint1 x1158; uint32_t x1159; fiat_p521_uint1 x1160; uint32_t x1161; fiat_p521_uint1 x1162; uint32_t x1163; fiat_p521_uint1 x1164; uint32_t x1165; fiat_p521_uint1 x1166; uint32_t x1167; fiat_p521_uint1 x1168; uint32_t x1169; fiat_p521_uint1 x1170; uint32_t x1171; fiat_p521_uint1 x1172; uint32_t x1173; fiat_p521_uint1 x1174; uint32_t x1175; fiat_p521_uint1 x1176; uint32_t x1177; fiat_p521_uint1 x1178; uint32_t x1179; fiat_p521_uint1 x1180; uint32_t x1181; fiat_p521_uint1 x1182; uint32_t x1183; fiat_p521_uint1 x1184; uint32_t x1185; uint32_t x1186; fiat_p521_uint1 x1187; uint32_t x1188; fiat_p521_uint1 x1189; uint32_t x1190; fiat_p521_uint1 x1191; uint32_t x1192; fiat_p521_uint1 x1193; uint32_t x1194; fiat_p521_uint1 x1195; uint32_t x1196; fiat_p521_uint1 x1197; uint32_t x1198; fiat_p521_uint1 x1199; uint32_t x1200; fiat_p521_uint1 x1201; uint32_t x1202; fiat_p521_uint1 x1203; uint32_t x1204; fiat_p521_uint1 x1205; uint32_t x1206; fiat_p521_uint1 x1207; uint32_t x1208; fiat_p521_uint1 x1209; uint32_t x1210; fiat_p521_uint1 x1211; uint32_t x1212; fiat_p521_uint1 x1213; uint32_t x1214; fiat_p521_uint1 x1215; uint32_t x1216; fiat_p521_uint1 x1217; uint32_t x1218; fiat_p521_uint1 x1219; uint32_t x1220; fiat_p521_uint1 x1221; uint32_t x1222; uint32_t x1223; uint32_t x1224; uint32_t x1225; uint32_t x1226; uint32_t x1227; uint32_t x1228; uint32_t x1229; uint32_t x1230; uint32_t x1231; uint32_t x1232; uint32_t x1233; uint32_t x1234; uint32_t x1235; uint32_t x1236; uint32_t x1237; uint32_t x1238; uint32_t x1239; uint32_t x1240; uint32_t x1241; uint32_t x1242; uint32_t x1243; uint32_t x1244; uint32_t x1245; uint32_t x1246; uint32_t x1247; uint32_t x1248; uint32_t x1249; uint32_t x1250; uint32_t x1251; uint32_t x1252; uint32_t x1253; uint32_t x1254; uint32_t x1255; uint32_t x1256; uint32_t x1257; fiat_p521_uint1 x1258; uint32_t x1259; fiat_p521_uint1 x1260; uint32_t x1261; fiat_p521_uint1 x1262; uint32_t x1263; fiat_p521_uint1 x1264; uint32_t x1265; fiat_p521_uint1 x1266; uint32_t x1267; fiat_p521_uint1 x1268; uint32_t x1269; fiat_p521_uint1 x1270; uint32_t x1271; fiat_p521_uint1 x1272; uint32_t x1273; fiat_p521_uint1 x1274; uint32_t x1275; fiat_p521_uint1 x1276; uint32_t x1277; fiat_p521_uint1 x1278; uint32_t x1279; fiat_p521_uint1 x1280; uint32_t x1281; fiat_p521_uint1 x1282; uint32_t x1283; fiat_p521_uint1 x1284; uint32_t x1285; fiat_p521_uint1 x1286; uint32_t x1287; fiat_p521_uint1 x1288; uint32_t x1289; uint32_t x1290; fiat_p521_uint1 x1291; uint32_t x1292; fiat_p521_uint1 x1293; uint32_t x1294; fiat_p521_uint1 x1295; uint32_t x1296; fiat_p521_uint1 x1297; uint32_t x1298; fiat_p521_uint1 x1299; uint32_t x1300; fiat_p521_uint1 x1301; uint32_t x1302; fiat_p521_uint1 x1303; uint32_t x1304; fiat_p521_uint1 x1305; uint32_t x1306; fiat_p521_uint1 x1307; uint32_t x1308; fiat_p521_uint1 x1309; uint32_t x1310; fiat_p521_uint1 x1311; uint32_t x1312; fiat_p521_uint1 x1313; uint32_t x1314; fiat_p521_uint1 x1315; uint32_t x1316; fiat_p521_uint1 x1317; uint32_t x1318; fiat_p521_uint1 x1319; uint32_t x1320; fiat_p521_uint1 x1321; uint32_t x1322; fiat_p521_uint1 x1323; uint32_t x1324; fiat_p521_uint1 x1325; uint32_t x1326; uint32_t x1327; uint32_t x1328; uint32_t x1329; uint32_t x1330; uint32_t x1331; uint32_t x1332; uint32_t x1333; uint32_t x1334; uint32_t x1335; uint32_t x1336; uint32_t x1337; uint32_t x1338; uint32_t x1339; uint32_t x1340; uint32_t x1341; uint32_t x1342; uint32_t x1343; uint32_t x1344; uint32_t x1345; uint32_t x1346; uint32_t x1347; uint32_t x1348; uint32_t x1349; uint32_t x1350; uint32_t x1351; uint32_t x1352; uint32_t x1353; uint32_t x1354; uint32_t x1355; uint32_t x1356; uint32_t x1357; uint32_t x1358; uint32_t x1359; uint32_t x1360; fiat_p521_uint1 x1361; uint32_t x1362; fiat_p521_uint1 x1363; uint32_t x1364; fiat_p521_uint1 x1365; uint32_t x1366; fiat_p521_uint1 x1367; uint32_t x1368; fiat_p521_uint1 x1369; uint32_t x1370; fiat_p521_uint1 x1371; uint32_t x1372; fiat_p521_uint1 x1373; uint32_t x1374; fiat_p521_uint1 x1375; uint32_t x1376; fiat_p521_uint1 x1377; uint32_t x1378; fiat_p521_uint1 x1379; uint32_t x1380; fiat_p521_uint1 x1381; uint32_t x1382; fiat_p521_uint1 x1383; uint32_t x1384; fiat_p521_uint1 x1385; uint32_t x1386; fiat_p521_uint1 x1387; uint32_t x1388; fiat_p521_uint1 x1389; uint32_t x1390; fiat_p521_uint1 x1391; uint32_t x1392; uint32_t x1393; fiat_p521_uint1 x1394; uint32_t x1395; fiat_p521_uint1 x1396; uint32_t x1397; fiat_p521_uint1 x1398; uint32_t x1399; fiat_p521_uint1 x1400; uint32_t x1401; fiat_p521_uint1 x1402; uint32_t x1403; fiat_p521_uint1 x1404; uint32_t x1405; fiat_p521_uint1 x1406; uint32_t x1407; fiat_p521_uint1 x1408; uint32_t x1409; fiat_p521_uint1 x1410; uint32_t x1411; fiat_p521_uint1 x1412; uint32_t x1413; fiat_p521_uint1 x1414; uint32_t x1415; fiat_p521_uint1 x1416; uint32_t x1417; fiat_p521_uint1 x1418; uint32_t x1419; fiat_p521_uint1 x1420; uint32_t x1421; fiat_p521_uint1 x1422; uint32_t x1423; fiat_p521_uint1 x1424; uint32_t x1425; fiat_p521_uint1 x1426; uint32_t x1427; fiat_p521_uint1 x1428; uint32_t x1429; uint32_t x1430; uint32_t x1431; uint32_t x1432; uint32_t x1433; uint32_t x1434; uint32_t x1435; uint32_t x1436; uint32_t x1437; uint32_t x1438; uint32_t x1439; uint32_t x1440; uint32_t x1441; uint32_t x1442; uint32_t x1443; uint32_t x1444; uint32_t x1445; uint32_t x1446; uint32_t x1447; uint32_t x1448; uint32_t x1449; uint32_t x1450; uint32_t x1451; uint32_t x1452; uint32_t x1453; uint32_t x1454; uint32_t x1455; uint32_t x1456; uint32_t x1457; uint32_t x1458; uint32_t x1459; uint32_t x1460; uint32_t x1461; uint32_t x1462; uint32_t x1463; uint32_t x1464; fiat_p521_uint1 x1465; uint32_t x1466; fiat_p521_uint1 x1467; uint32_t x1468; fiat_p521_uint1 x1469; uint32_t x1470; fiat_p521_uint1 x1471; uint32_t x1472; fiat_p521_uint1 x1473; uint32_t x1474; fiat_p521_uint1 x1475; uint32_t x1476; fiat_p521_uint1 x1477; uint32_t x1478; fiat_p521_uint1 x1479; uint32_t x1480; fiat_p521_uint1 x1481; uint32_t x1482; fiat_p521_uint1 x1483; uint32_t x1484; fiat_p521_uint1 x1485; uint32_t x1486; fiat_p521_uint1 x1487; uint32_t x1488; fiat_p521_uint1 x1489; uint32_t x1490; fiat_p521_uint1 x1491; uint32_t x1492; fiat_p521_uint1 x1493; uint32_t x1494; fiat_p521_uint1 x1495; uint32_t x1496; uint32_t x1497; fiat_p521_uint1 x1498; uint32_t x1499; fiat_p521_uint1 x1500; uint32_t x1501; fiat_p521_uint1 x1502; uint32_t x1503; fiat_p521_uint1 x1504; uint32_t x1505; fiat_p521_uint1 x1506; uint32_t x1507; fiat_p521_uint1 x1508; uint32_t x1509; fiat_p521_uint1 x1510; uint32_t x1511; fiat_p521_uint1 x1512; uint32_t x1513; fiat_p521_uint1 x1514; uint32_t x1515; fiat_p521_uint1 x1516; uint32_t x1517; fiat_p521_uint1 x1518; uint32_t x1519; fiat_p521_uint1 x1520; uint32_t x1521; fiat_p521_uint1 x1522; uint32_t x1523; fiat_p521_uint1 x1524; uint32_t x1525; fiat_p521_uint1 x1526; uint32_t x1527; fiat_p521_uint1 x1528; uint32_t x1529; fiat_p521_uint1 x1530; uint32_t x1531; fiat_p521_uint1 x1532; uint32_t x1533; uint32_t x1534; uint32_t x1535; uint32_t x1536; uint32_t x1537; uint32_t x1538; uint32_t x1539; uint32_t x1540; uint32_t x1541; uint32_t x1542; uint32_t x1543; uint32_t x1544; uint32_t x1545; uint32_t x1546; uint32_t x1547; uint32_t x1548; uint32_t x1549; uint32_t x1550; uint32_t x1551; uint32_t x1552; uint32_t x1553; uint32_t x1554; uint32_t x1555; uint32_t x1556; uint32_t x1557; uint32_t x1558; uint32_t x1559; uint32_t x1560; uint32_t x1561; uint32_t x1562; uint32_t x1563; uint32_t x1564; uint32_t x1565; uint32_t x1566; uint32_t x1567; fiat_p521_uint1 x1568; uint32_t x1569; fiat_p521_uint1 x1570; uint32_t x1571; fiat_p521_uint1 x1572; uint32_t x1573; fiat_p521_uint1 x1574; uint32_t x1575; fiat_p521_uint1 x1576; uint32_t x1577; fiat_p521_uint1 x1578; uint32_t x1579; fiat_p521_uint1 x1580; uint32_t x1581; fiat_p521_uint1 x1582; uint32_t x1583; fiat_p521_uint1 x1584; uint32_t x1585; fiat_p521_uint1 x1586; uint32_t x1587; fiat_p521_uint1 x1588; uint32_t x1589; fiat_p521_uint1 x1590; uint32_t x1591; fiat_p521_uint1 x1592; uint32_t x1593; fiat_p521_uint1 x1594; uint32_t x1595; fiat_p521_uint1 x1596; uint32_t x1597; fiat_p521_uint1 x1598; uint32_t x1599; uint32_t x1600; fiat_p521_uint1 x1601; uint32_t x1602; fiat_p521_uint1 x1603; uint32_t x1604; fiat_p521_uint1 x1605; uint32_t x1606; fiat_p521_uint1 x1607; uint32_t x1608; fiat_p521_uint1 x1609; uint32_t x1610; fiat_p521_uint1 x1611; uint32_t x1612; fiat_p521_uint1 x1613; uint32_t x1614; fiat_p521_uint1 x1615; uint32_t x1616; fiat_p521_uint1 x1617; uint32_t x1618; fiat_p521_uint1 x1619; uint32_t x1620; fiat_p521_uint1 x1621; uint32_t x1622; fiat_p521_uint1 x1623; uint32_t x1624; fiat_p521_uint1 x1625; uint32_t x1626; fiat_p521_uint1 x1627; uint32_t x1628; fiat_p521_uint1 x1629; uint32_t x1630; fiat_p521_uint1 x1631; uint32_t x1632; fiat_p521_uint1 x1633; uint32_t x1634; fiat_p521_uint1 x1635; uint32_t x1636; uint32_t x1637; uint32_t x1638; uint32_t x1639; uint32_t x1640; uint32_t x1641; uint32_t x1642; uint32_t x1643; uint32_t x1644; uint32_t x1645; uint32_t x1646; uint32_t x1647; uint32_t x1648; uint32_t x1649; uint32_t x1650; uint32_t x1651; uint32_t x1652; uint32_t x1653; uint32_t x1654; uint32_t x1655; uint32_t x1656; uint32_t x1657; uint32_t x1658; uint32_t x1659; uint32_t x1660; uint32_t x1661; uint32_t x1662; uint32_t x1663; uint32_t x1664; uint32_t x1665; uint32_t x1666; uint32_t x1667; uint32_t x1668; uint32_t x1669; uint32_t x1670; uint32_t x1671; fiat_p521_uint1 x1672; uint32_t x1673; fiat_p521_uint1 x1674; uint32_t x1675; fiat_p521_uint1 x1676; uint32_t x1677; fiat_p521_uint1 x1678; uint32_t x1679; fiat_p521_uint1 x1680; uint32_t x1681; fiat_p521_uint1 x1682; uint32_t x1683; fiat_p521_uint1 x1684; uint32_t x1685; fiat_p521_uint1 x1686; uint32_t x1687; fiat_p521_uint1 x1688; uint32_t x1689; fiat_p521_uint1 x1690; uint32_t x1691; fiat_p521_uint1 x1692; uint32_t x1693; fiat_p521_uint1 x1694; uint32_t x1695; fiat_p521_uint1 x1696; uint32_t x1697; fiat_p521_uint1 x1698; uint32_t x1699; fiat_p521_uint1 x1700; uint32_t x1701; fiat_p521_uint1 x1702; uint32_t x1703; uint32_t x1704; fiat_p521_uint1 x1705; uint32_t x1706; fiat_p521_uint1 x1707; uint32_t x1708; fiat_p521_uint1 x1709; uint32_t x1710; fiat_p521_uint1 x1711; uint32_t x1712; fiat_p521_uint1 x1713; uint32_t x1714; fiat_p521_uint1 x1715; uint32_t x1716; fiat_p521_uint1 x1717; uint32_t x1718; fiat_p521_uint1 x1719; uint32_t x1720; fiat_p521_uint1 x1721; uint32_t x1722; fiat_p521_uint1 x1723; uint32_t x1724; fiat_p521_uint1 x1725; uint32_t x1726; fiat_p521_uint1 x1727; uint32_t x1728; fiat_p521_uint1 x1729; uint32_t x1730; fiat_p521_uint1 x1731; uint32_t x1732; fiat_p521_uint1 x1733; uint32_t x1734; fiat_p521_uint1 x1735; uint32_t x1736; fiat_p521_uint1 x1737; uint32_t x1738; fiat_p521_uint1 x1739; uint32_t x1740; uint32_t x1741; uint32_t x1742; uint32_t x1743; uint32_t x1744; uint32_t x1745; uint32_t x1746; uint32_t x1747; uint32_t x1748; uint32_t x1749; uint32_t x1750; uint32_t x1751; uint32_t x1752; uint32_t x1753; uint32_t x1754; uint32_t x1755; uint32_t x1756; uint32_t x1757; uint32_t x1758; uint32_t x1759; uint32_t x1760; uint32_t x1761; uint32_t x1762; uint32_t x1763; uint32_t x1764; uint32_t x1765; uint32_t x1766; uint32_t x1767; uint32_t x1768; uint32_t x1769; uint32_t x1770; uint32_t x1771; uint32_t x1772; uint32_t x1773; uint32_t x1774; fiat_p521_uint1 x1775; uint32_t x1776; fiat_p521_uint1 x1777; uint32_t x1778; fiat_p521_uint1 x1779; uint32_t x1780; fiat_p521_uint1 x1781; uint32_t x1782; fiat_p521_uint1 x1783; uint32_t x1784; fiat_p521_uint1 x1785; uint32_t x1786; fiat_p521_uint1 x1787; uint32_t x1788; fiat_p521_uint1 x1789; uint32_t x1790; fiat_p521_uint1 x1791; uint32_t x1792; fiat_p521_uint1 x1793; uint32_t x1794; fiat_p521_uint1 x1795; uint32_t x1796; fiat_p521_uint1 x1797; uint32_t x1798; fiat_p521_uint1 x1799; uint32_t x1800; fiat_p521_uint1 x1801; uint32_t x1802; fiat_p521_uint1 x1803; uint32_t x1804; fiat_p521_uint1 x1805; uint32_t x1806; uint32_t x1807; fiat_p521_uint1 x1808; uint32_t x1809; fiat_p521_uint1 x1810; uint32_t x1811; fiat_p521_uint1 x1812; uint32_t x1813; fiat_p521_uint1 x1814; uint32_t x1815; fiat_p521_uint1 x1816; uint32_t x1817; fiat_p521_uint1 x1818; uint32_t x1819; fiat_p521_uint1 x1820; uint32_t x1821; fiat_p521_uint1 x1822; uint32_t x1823; fiat_p521_uint1 x1824; uint32_t x1825; fiat_p521_uint1 x1826; uint32_t x1827; fiat_p521_uint1 x1828; uint32_t x1829; fiat_p521_uint1 x1830; uint32_t x1831; fiat_p521_uint1 x1832; uint32_t x1833; fiat_p521_uint1 x1834; uint32_t x1835; fiat_p521_uint1 x1836; uint32_t x1837; fiat_p521_uint1 x1838; uint32_t x1839; fiat_p521_uint1 x1840; uint32_t x1841; fiat_p521_uint1 x1842; uint32_t x1843; uint32_t x1844; uint32_t x1845; uint32_t x1846; uint32_t x1847; uint32_t x1848; uint32_t x1849; uint32_t x1850; uint32_t x1851; uint32_t x1852; uint32_t x1853; uint32_t x1854; uint32_t x1855; uint32_t x1856; uint32_t x1857; uint32_t x1858; uint32_t x1859; uint32_t x1860; uint32_t x1861; uint32_t x1862; uint32_t x1863; uint32_t x1864; uint32_t x1865; uint32_t x1866; uint32_t x1867; uint32_t x1868; uint32_t x1869; uint32_t x1870; uint32_t x1871; uint32_t x1872; uint32_t x1873; uint32_t x1874; uint32_t x1875; uint32_t x1876; uint32_t x1877; uint32_t x1878; fiat_p521_uint1 x1879; uint32_t x1880; fiat_p521_uint1 x1881; uint32_t x1882; fiat_p521_uint1 x1883; uint32_t x1884; fiat_p521_uint1 x1885; uint32_t x1886; fiat_p521_uint1 x1887; uint32_t x1888; fiat_p521_uint1 x1889; uint32_t x1890; fiat_p521_uint1 x1891; uint32_t x1892; fiat_p521_uint1 x1893; uint32_t x1894; fiat_p521_uint1 x1895; uint32_t x1896; fiat_p521_uint1 x1897; uint32_t x1898; fiat_p521_uint1 x1899; uint32_t x1900; fiat_p521_uint1 x1901; uint32_t x1902; fiat_p521_uint1 x1903; uint32_t x1904; fiat_p521_uint1 x1905; uint32_t x1906; fiat_p521_uint1 x1907; uint32_t x1908; fiat_p521_uint1 x1909; uint32_t x1910; uint32_t x1911; fiat_p521_uint1 x1912; uint32_t x1913; fiat_p521_uint1 x1914; uint32_t x1915; fiat_p521_uint1 x1916; uint32_t x1917; fiat_p521_uint1 x1918; uint32_t x1919; fiat_p521_uint1 x1920; uint32_t x1921; fiat_p521_uint1 x1922; uint32_t x1923; fiat_p521_uint1 x1924; uint32_t x1925; fiat_p521_uint1 x1926; uint32_t x1927; fiat_p521_uint1 x1928; uint32_t x1929; fiat_p521_uint1 x1930; uint32_t x1931; fiat_p521_uint1 x1932; uint32_t x1933; fiat_p521_uint1 x1934; uint32_t x1935; fiat_p521_uint1 x1936; uint32_t x1937; fiat_p521_uint1 x1938; uint32_t x1939; fiat_p521_uint1 x1940; uint32_t x1941; fiat_p521_uint1 x1942; uint32_t x1943; fiat_p521_uint1 x1944; uint32_t x1945; fiat_p521_uint1 x1946; uint32_t x1947; uint32_t x1948; uint32_t x1949; uint32_t x1950; uint32_t x1951; uint32_t x1952; uint32_t x1953; uint32_t x1954; uint32_t x1955; uint32_t x1956; uint32_t x1957; uint32_t x1958; uint32_t x1959; uint32_t x1960; uint32_t x1961; uint32_t x1962; uint32_t x1963; uint32_t x1964; uint32_t x1965; uint32_t x1966; uint32_t x1967; uint32_t x1968; uint32_t x1969; uint32_t x1970; uint32_t x1971; uint32_t x1972; uint32_t x1973; uint32_t x1974; uint32_t x1975; uint32_t x1976; uint32_t x1977; uint32_t x1978; uint32_t x1979; uint32_t x1980; uint32_t x1981; fiat_p521_uint1 x1982; uint32_t x1983; fiat_p521_uint1 x1984; uint32_t x1985; fiat_p521_uint1 x1986; uint32_t x1987; fiat_p521_uint1 x1988; uint32_t x1989; fiat_p521_uint1 x1990; uint32_t x1991; fiat_p521_uint1 x1992; uint32_t x1993; fiat_p521_uint1 x1994; uint32_t x1995; fiat_p521_uint1 x1996; uint32_t x1997; fiat_p521_uint1 x1998; uint32_t x1999; fiat_p521_uint1 x2000; uint32_t x2001; fiat_p521_uint1 x2002; uint32_t x2003; fiat_p521_uint1 x2004; uint32_t x2005; fiat_p521_uint1 x2006; uint32_t x2007; fiat_p521_uint1 x2008; uint32_t x2009; fiat_p521_uint1 x2010; uint32_t x2011; fiat_p521_uint1 x2012; uint32_t x2013; uint32_t x2014; fiat_p521_uint1 x2015; uint32_t x2016; fiat_p521_uint1 x2017; uint32_t x2018; fiat_p521_uint1 x2019; uint32_t x2020; fiat_p521_uint1 x2021; uint32_t x2022; fiat_p521_uint1 x2023; uint32_t x2024; fiat_p521_uint1 x2025; uint32_t x2026; fiat_p521_uint1 x2027; uint32_t x2028; fiat_p521_uint1 x2029; uint32_t x2030; fiat_p521_uint1 x2031; uint32_t x2032; fiat_p521_uint1 x2033; uint32_t x2034; fiat_p521_uint1 x2035; uint32_t x2036; fiat_p521_uint1 x2037; uint32_t x2038; fiat_p521_uint1 x2039; uint32_t x2040; fiat_p521_uint1 x2041; uint32_t x2042; fiat_p521_uint1 x2043; uint32_t x2044; fiat_p521_uint1 x2045; uint32_t x2046; fiat_p521_uint1 x2047; uint32_t x2048; fiat_p521_uint1 x2049; uint32_t x2050; uint32_t x2051; uint32_t x2052; uint32_t x2053; uint32_t x2054; uint32_t x2055; uint32_t x2056; uint32_t x2057; uint32_t x2058; uint32_t x2059; uint32_t x2060; uint32_t x2061; uint32_t x2062; uint32_t x2063; uint32_t x2064; uint32_t x2065; uint32_t x2066; uint32_t x2067; uint32_t x2068; uint32_t x2069; uint32_t x2070; uint32_t x2071; uint32_t x2072; uint32_t x2073; uint32_t x2074; uint32_t x2075; uint32_t x2076; uint32_t x2077; uint32_t x2078; uint32_t x2079; uint32_t x2080; uint32_t x2081; uint32_t x2082; uint32_t x2083; uint32_t x2084; uint32_t x2085; fiat_p521_uint1 x2086; uint32_t x2087; fiat_p521_uint1 x2088; uint32_t x2089; fiat_p521_uint1 x2090; uint32_t x2091; fiat_p521_uint1 x2092; uint32_t x2093; fiat_p521_uint1 x2094; uint32_t x2095; fiat_p521_uint1 x2096; uint32_t x2097; fiat_p521_uint1 x2098; uint32_t x2099; fiat_p521_uint1 x2100; uint32_t x2101; fiat_p521_uint1 x2102; uint32_t x2103; fiat_p521_uint1 x2104; uint32_t x2105; fiat_p521_uint1 x2106; uint32_t x2107; fiat_p521_uint1 x2108; uint32_t x2109; fiat_p521_uint1 x2110; uint32_t x2111; fiat_p521_uint1 x2112; uint32_t x2113; fiat_p521_uint1 x2114; uint32_t x2115; fiat_p521_uint1 x2116; uint32_t x2117; uint32_t x2118; fiat_p521_uint1 x2119; uint32_t x2120; fiat_p521_uint1 x2121; uint32_t x2122; fiat_p521_uint1 x2123; uint32_t x2124; fiat_p521_uint1 x2125; uint32_t x2126; fiat_p521_uint1 x2127; uint32_t x2128; fiat_p521_uint1 x2129; uint32_t x2130; fiat_p521_uint1 x2131; uint32_t x2132; fiat_p521_uint1 x2133; uint32_t x2134; fiat_p521_uint1 x2135; uint32_t x2136; fiat_p521_uint1 x2137; uint32_t x2138; fiat_p521_uint1 x2139; uint32_t x2140; fiat_p521_uint1 x2141; uint32_t x2142; fiat_p521_uint1 x2143; uint32_t x2144; fiat_p521_uint1 x2145; uint32_t x2146; fiat_p521_uint1 x2147; uint32_t x2148; fiat_p521_uint1 x2149; uint32_t x2150; fiat_p521_uint1 x2151; uint32_t x2152; fiat_p521_uint1 x2153; uint32_t x2154; uint32_t x2155; uint32_t x2156; uint32_t x2157; uint32_t x2158; uint32_t x2159; uint32_t x2160; uint32_t x2161; uint32_t x2162; uint32_t x2163; uint32_t x2164; uint32_t x2165; uint32_t x2166; uint32_t x2167; uint32_t x2168; uint32_t x2169; uint32_t x2170; uint32_t x2171; uint32_t x2172; uint32_t x2173; uint32_t x2174; uint32_t x2175; uint32_t x2176; uint32_t x2177; uint32_t x2178; uint32_t x2179; uint32_t x2180; uint32_t x2181; uint32_t x2182; uint32_t x2183; uint32_t x2184; uint32_t x2185; uint32_t x2186; uint32_t x2187; uint32_t x2188; fiat_p521_uint1 x2189; uint32_t x2190; fiat_p521_uint1 x2191; uint32_t x2192; fiat_p521_uint1 x2193; uint32_t x2194; fiat_p521_uint1 x2195; uint32_t x2196; fiat_p521_uint1 x2197; uint32_t x2198; fiat_p521_uint1 x2199; uint32_t x2200; fiat_p521_uint1 x2201; uint32_t x2202; fiat_p521_uint1 x2203; uint32_t x2204; fiat_p521_uint1 x2205; uint32_t x2206; fiat_p521_uint1 x2207; uint32_t x2208; fiat_p521_uint1 x2209; uint32_t x2210; fiat_p521_uint1 x2211; uint32_t x2212; fiat_p521_uint1 x2213; uint32_t x2214; fiat_p521_uint1 x2215; uint32_t x2216; fiat_p521_uint1 x2217; uint32_t x2218; fiat_p521_uint1 x2219; uint32_t x2220; uint32_t x2221; fiat_p521_uint1 x2222; uint32_t x2223; fiat_p521_uint1 x2224; uint32_t x2225; fiat_p521_uint1 x2226; uint32_t x2227; fiat_p521_uint1 x2228; uint32_t x2229; fiat_p521_uint1 x2230; uint32_t x2231; fiat_p521_uint1 x2232; uint32_t x2233; fiat_p521_uint1 x2234; uint32_t x2235; fiat_p521_uint1 x2236; uint32_t x2237; fiat_p521_uint1 x2238; uint32_t x2239; fiat_p521_uint1 x2240; uint32_t x2241; fiat_p521_uint1 x2242; uint32_t x2243; fiat_p521_uint1 x2244; uint32_t x2245; fiat_p521_uint1 x2246; uint32_t x2247; fiat_p521_uint1 x2248; uint32_t x2249; fiat_p521_uint1 x2250; uint32_t x2251; fiat_p521_uint1 x2252; uint32_t x2253; fiat_p521_uint1 x2254; uint32_t x2255; fiat_p521_uint1 x2256; uint32_t x2257; uint32_t x2258; uint32_t x2259; uint32_t x2260; uint32_t x2261; uint32_t x2262; uint32_t x2263; uint32_t x2264; uint32_t x2265; uint32_t x2266; uint32_t x2267; uint32_t x2268; uint32_t x2269; uint32_t x2270; uint32_t x2271; uint32_t x2272; uint32_t x2273; uint32_t x2274; uint32_t x2275; uint32_t x2276; uint32_t x2277; uint32_t x2278; uint32_t x2279; uint32_t x2280; uint32_t x2281; uint32_t x2282; uint32_t x2283; uint32_t x2284; uint32_t x2285; uint32_t x2286; uint32_t x2287; uint32_t x2288; uint32_t x2289; uint32_t x2290; uint32_t x2291; uint32_t x2292; fiat_p521_uint1 x2293; uint32_t x2294; fiat_p521_uint1 x2295; uint32_t x2296; fiat_p521_uint1 x2297; uint32_t x2298; fiat_p521_uint1 x2299; uint32_t x2300; fiat_p521_uint1 x2301; uint32_t x2302; fiat_p521_uint1 x2303; uint32_t x2304; fiat_p521_uint1 x2305; uint32_t x2306; fiat_p521_uint1 x2307; uint32_t x2308; fiat_p521_uint1 x2309; uint32_t x2310; fiat_p521_uint1 x2311; uint32_t x2312; fiat_p521_uint1 x2313; uint32_t x2314; fiat_p521_uint1 x2315; uint32_t x2316; fiat_p521_uint1 x2317; uint32_t x2318; fiat_p521_uint1 x2319; uint32_t x2320; fiat_p521_uint1 x2321; uint32_t x2322; fiat_p521_uint1 x2323; uint32_t x2324; uint32_t x2325; fiat_p521_uint1 x2326; uint32_t x2327; fiat_p521_uint1 x2328; uint32_t x2329; fiat_p521_uint1 x2330; uint32_t x2331; fiat_p521_uint1 x2332; uint32_t x2333; fiat_p521_uint1 x2334; uint32_t x2335; fiat_p521_uint1 x2336; uint32_t x2337; fiat_p521_uint1 x2338; uint32_t x2339; fiat_p521_uint1 x2340; uint32_t x2341; fiat_p521_uint1 x2342; uint32_t x2343; fiat_p521_uint1 x2344; uint32_t x2345; fiat_p521_uint1 x2346; uint32_t x2347; fiat_p521_uint1 x2348; uint32_t x2349; fiat_p521_uint1 x2350; uint32_t x2351; fiat_p521_uint1 x2352; uint32_t x2353; fiat_p521_uint1 x2354; uint32_t x2355; fiat_p521_uint1 x2356; uint32_t x2357; fiat_p521_uint1 x2358; uint32_t x2359; fiat_p521_uint1 x2360; uint32_t x2361; uint32_t x2362; uint32_t x2363; uint32_t x2364; uint32_t x2365; uint32_t x2366; uint32_t x2367; uint32_t x2368; uint32_t x2369; uint32_t x2370; uint32_t x2371; uint32_t x2372; uint32_t x2373; uint32_t x2374; uint32_t x2375; uint32_t x2376; uint32_t x2377; uint32_t x2378; uint32_t x2379; uint32_t x2380; uint32_t x2381; uint32_t x2382; uint32_t x2383; uint32_t x2384; uint32_t x2385; uint32_t x2386; uint32_t x2387; uint32_t x2388; uint32_t x2389; uint32_t x2390; uint32_t x2391; uint32_t x2392; uint32_t x2393; uint32_t x2394; uint32_t x2395; fiat_p521_uint1 x2396; uint32_t x2397; fiat_p521_uint1 x2398; uint32_t x2399; fiat_p521_uint1 x2400; uint32_t x2401; fiat_p521_uint1 x2402; uint32_t x2403; fiat_p521_uint1 x2404; uint32_t x2405; fiat_p521_uint1 x2406; uint32_t x2407; fiat_p521_uint1 x2408; uint32_t x2409; fiat_p521_uint1 x2410; uint32_t x2411; fiat_p521_uint1 x2412; uint32_t x2413; fiat_p521_uint1 x2414; uint32_t x2415; fiat_p521_uint1 x2416; uint32_t x2417; fiat_p521_uint1 x2418; uint32_t x2419; fiat_p521_uint1 x2420; uint32_t x2421; fiat_p521_uint1 x2422; uint32_t x2423; fiat_p521_uint1 x2424; uint32_t x2425; fiat_p521_uint1 x2426; uint32_t x2427; uint32_t x2428; fiat_p521_uint1 x2429; uint32_t x2430; fiat_p521_uint1 x2431; uint32_t x2432; fiat_p521_uint1 x2433; uint32_t x2434; fiat_p521_uint1 x2435; uint32_t x2436; fiat_p521_uint1 x2437; uint32_t x2438; fiat_p521_uint1 x2439; uint32_t x2440; fiat_p521_uint1 x2441; uint32_t x2442; fiat_p521_uint1 x2443; uint32_t x2444; fiat_p521_uint1 x2445; uint32_t x2446; fiat_p521_uint1 x2447; uint32_t x2448; fiat_p521_uint1 x2449; uint32_t x2450; fiat_p521_uint1 x2451; uint32_t x2452; fiat_p521_uint1 x2453; uint32_t x2454; fiat_p521_uint1 x2455; uint32_t x2456; fiat_p521_uint1 x2457; uint32_t x2458; fiat_p521_uint1 x2459; uint32_t x2460; fiat_p521_uint1 x2461; uint32_t x2462; fiat_p521_uint1 x2463; uint32_t x2464; uint32_t x2465; uint32_t x2466; uint32_t x2467; uint32_t x2468; uint32_t x2469; uint32_t x2470; uint32_t x2471; uint32_t x2472; uint32_t x2473; uint32_t x2474; uint32_t x2475; uint32_t x2476; uint32_t x2477; uint32_t x2478; uint32_t x2479; uint32_t x2480; uint32_t x2481; uint32_t x2482; uint32_t x2483; uint32_t x2484; uint32_t x2485; uint32_t x2486; uint32_t x2487; uint32_t x2488; uint32_t x2489; uint32_t x2490; uint32_t x2491; uint32_t x2492; uint32_t x2493; uint32_t x2494; uint32_t x2495; uint32_t x2496; uint32_t x2497; uint32_t x2498; uint32_t x2499; fiat_p521_uint1 x2500; uint32_t x2501; fiat_p521_uint1 x2502; uint32_t x2503; fiat_p521_uint1 x2504; uint32_t x2505; fiat_p521_uint1 x2506; uint32_t x2507; fiat_p521_uint1 x2508; uint32_t x2509; fiat_p521_uint1 x2510; uint32_t x2511; fiat_p521_uint1 x2512; uint32_t x2513; fiat_p521_uint1 x2514; uint32_t x2515; fiat_p521_uint1 x2516; uint32_t x2517; fiat_p521_uint1 x2518; uint32_t x2519; fiat_p521_uint1 x2520; uint32_t x2521; fiat_p521_uint1 x2522; uint32_t x2523; fiat_p521_uint1 x2524; uint32_t x2525; fiat_p521_uint1 x2526; uint32_t x2527; fiat_p521_uint1 x2528; uint32_t x2529; fiat_p521_uint1 x2530; uint32_t x2531; uint32_t x2532; fiat_p521_uint1 x2533; uint32_t x2534; fiat_p521_uint1 x2535; uint32_t x2536; fiat_p521_uint1 x2537; uint32_t x2538; fiat_p521_uint1 x2539; uint32_t x2540; fiat_p521_uint1 x2541; uint32_t x2542; fiat_p521_uint1 x2543; uint32_t x2544; fiat_p521_uint1 x2545; uint32_t x2546; fiat_p521_uint1 x2547; uint32_t x2548; fiat_p521_uint1 x2549; uint32_t x2550; fiat_p521_uint1 x2551; uint32_t x2552; fiat_p521_uint1 x2553; uint32_t x2554; fiat_p521_uint1 x2555; uint32_t x2556; fiat_p521_uint1 x2557; uint32_t x2558; fiat_p521_uint1 x2559; uint32_t x2560; fiat_p521_uint1 x2561; uint32_t x2562; fiat_p521_uint1 x2563; uint32_t x2564; fiat_p521_uint1 x2565; uint32_t x2566; fiat_p521_uint1 x2567; uint32_t x2568; uint32_t x2569; uint32_t x2570; uint32_t x2571; uint32_t x2572; uint32_t x2573; uint32_t x2574; uint32_t x2575; uint32_t x2576; uint32_t x2577; uint32_t x2578; uint32_t x2579; uint32_t x2580; uint32_t x2581; uint32_t x2582; uint32_t x2583; uint32_t x2584; uint32_t x2585; uint32_t x2586; uint32_t x2587; uint32_t x2588; uint32_t x2589; uint32_t x2590; uint32_t x2591; uint32_t x2592; uint32_t x2593; uint32_t x2594; uint32_t x2595; uint32_t x2596; uint32_t x2597; uint32_t x2598; uint32_t x2599; uint32_t x2600; uint32_t x2601; uint32_t x2602; fiat_p521_uint1 x2603; uint32_t x2604; fiat_p521_uint1 x2605; uint32_t x2606; fiat_p521_uint1 x2607; uint32_t x2608; fiat_p521_uint1 x2609; uint32_t x2610; fiat_p521_uint1 x2611; uint32_t x2612; fiat_p521_uint1 x2613; uint32_t x2614; fiat_p521_uint1 x2615; uint32_t x2616; fiat_p521_uint1 x2617; uint32_t x2618; fiat_p521_uint1 x2619; uint32_t x2620; fiat_p521_uint1 x2621; uint32_t x2622; fiat_p521_uint1 x2623; uint32_t x2624; fiat_p521_uint1 x2625; uint32_t x2626; fiat_p521_uint1 x2627; uint32_t x2628; fiat_p521_uint1 x2629; uint32_t x2630; fiat_p521_uint1 x2631; uint32_t x2632; fiat_p521_uint1 x2633; uint32_t x2634; uint32_t x2635; fiat_p521_uint1 x2636; uint32_t x2637; fiat_p521_uint1 x2638; uint32_t x2639; fiat_p521_uint1 x2640; uint32_t x2641; fiat_p521_uint1 x2642; uint32_t x2643; fiat_p521_uint1 x2644; uint32_t x2645; fiat_p521_uint1 x2646; uint32_t x2647; fiat_p521_uint1 x2648; uint32_t x2649; fiat_p521_uint1 x2650; uint32_t x2651; fiat_p521_uint1 x2652; uint32_t x2653; fiat_p521_uint1 x2654; uint32_t x2655; fiat_p521_uint1 x2656; uint32_t x2657; fiat_p521_uint1 x2658; uint32_t x2659; fiat_p521_uint1 x2660; uint32_t x2661; fiat_p521_uint1 x2662; uint32_t x2663; fiat_p521_uint1 x2664; uint32_t x2665; fiat_p521_uint1 x2666; uint32_t x2667; fiat_p521_uint1 x2668; uint32_t x2669; fiat_p521_uint1 x2670; uint32_t x2671; uint32_t x2672; uint32_t x2673; uint32_t x2674; uint32_t x2675; uint32_t x2676; uint32_t x2677; uint32_t x2678; uint32_t x2679; uint32_t x2680; uint32_t x2681; uint32_t x2682; uint32_t x2683; uint32_t x2684; uint32_t x2685; uint32_t x2686; uint32_t x2687; uint32_t x2688; uint32_t x2689; uint32_t x2690; uint32_t x2691; uint32_t x2692; uint32_t x2693; uint32_t x2694; uint32_t x2695; uint32_t x2696; uint32_t x2697; uint32_t x2698; uint32_t x2699; uint32_t x2700; uint32_t x2701; uint32_t x2702; uint32_t x2703; uint32_t x2704; uint32_t x2705; uint32_t x2706; fiat_p521_uint1 x2707; uint32_t x2708; fiat_p521_uint1 x2709; uint32_t x2710; fiat_p521_uint1 x2711; uint32_t x2712; fiat_p521_uint1 x2713; uint32_t x2714; fiat_p521_uint1 x2715; uint32_t x2716; fiat_p521_uint1 x2717; uint32_t x2718; fiat_p521_uint1 x2719; uint32_t x2720; fiat_p521_uint1 x2721; uint32_t x2722; fiat_p521_uint1 x2723; uint32_t x2724; fiat_p521_uint1 x2725; uint32_t x2726; fiat_p521_uint1 x2727; uint32_t x2728; fiat_p521_uint1 x2729; uint32_t x2730; fiat_p521_uint1 x2731; uint32_t x2732; fiat_p521_uint1 x2733; uint32_t x2734; fiat_p521_uint1 x2735; uint32_t x2736; fiat_p521_uint1 x2737; uint32_t x2738; uint32_t x2739; fiat_p521_uint1 x2740; uint32_t x2741; fiat_p521_uint1 x2742; uint32_t x2743; fiat_p521_uint1 x2744; uint32_t x2745; fiat_p521_uint1 x2746; uint32_t x2747; fiat_p521_uint1 x2748; uint32_t x2749; fiat_p521_uint1 x2750; uint32_t x2751; fiat_p521_uint1 x2752; uint32_t x2753; fiat_p521_uint1 x2754; uint32_t x2755; fiat_p521_uint1 x2756; uint32_t x2757; fiat_p521_uint1 x2758; uint32_t x2759; fiat_p521_uint1 x2760; uint32_t x2761; fiat_p521_uint1 x2762; uint32_t x2763; fiat_p521_uint1 x2764; uint32_t x2765; fiat_p521_uint1 x2766; uint32_t x2767; fiat_p521_uint1 x2768; uint32_t x2769; fiat_p521_uint1 x2770; uint32_t x2771; fiat_p521_uint1 x2772; uint32_t x2773; fiat_p521_uint1 x2774; uint32_t x2775; uint32_t x2776; uint32_t x2777; uint32_t x2778; uint32_t x2779; uint32_t x2780; uint32_t x2781; uint32_t x2782; uint32_t x2783; uint32_t x2784; uint32_t x2785; uint32_t x2786; uint32_t x2787; uint32_t x2788; uint32_t x2789; uint32_t x2790; uint32_t x2791; uint32_t x2792; uint32_t x2793; uint32_t x2794; uint32_t x2795; uint32_t x2796; uint32_t x2797; uint32_t x2798; uint32_t x2799; uint32_t x2800; uint32_t x2801; uint32_t x2802; uint32_t x2803; uint32_t x2804; uint32_t x2805; uint32_t x2806; uint32_t x2807; uint32_t x2808; uint32_t x2809; fiat_p521_uint1 x2810; uint32_t x2811; fiat_p521_uint1 x2812; uint32_t x2813; fiat_p521_uint1 x2814; uint32_t x2815; fiat_p521_uint1 x2816; uint32_t x2817; fiat_p521_uint1 x2818; uint32_t x2819; fiat_p521_uint1 x2820; uint32_t x2821; fiat_p521_uint1 x2822; uint32_t x2823; fiat_p521_uint1 x2824; uint32_t x2825; fiat_p521_uint1 x2826; uint32_t x2827; fiat_p521_uint1 x2828; uint32_t x2829; fiat_p521_uint1 x2830; uint32_t x2831; fiat_p521_uint1 x2832; uint32_t x2833; fiat_p521_uint1 x2834; uint32_t x2835; fiat_p521_uint1 x2836; uint32_t x2837; fiat_p521_uint1 x2838; uint32_t x2839; fiat_p521_uint1 x2840; uint32_t x2841; uint32_t x2842; fiat_p521_uint1 x2843; uint32_t x2844; fiat_p521_uint1 x2845; uint32_t x2846; fiat_p521_uint1 x2847; uint32_t x2848; fiat_p521_uint1 x2849; uint32_t x2850; fiat_p521_uint1 x2851; uint32_t x2852; fiat_p521_uint1 x2853; uint32_t x2854; fiat_p521_uint1 x2855; uint32_t x2856; fiat_p521_uint1 x2857; uint32_t x2858; fiat_p521_uint1 x2859; uint32_t x2860; fiat_p521_uint1 x2861; uint32_t x2862; fiat_p521_uint1 x2863; uint32_t x2864; fiat_p521_uint1 x2865; uint32_t x2866; fiat_p521_uint1 x2867; uint32_t x2868; fiat_p521_uint1 x2869; uint32_t x2870; fiat_p521_uint1 x2871; uint32_t x2872; fiat_p521_uint1 x2873; uint32_t x2874; fiat_p521_uint1 x2875; uint32_t x2876; fiat_p521_uint1 x2877; uint32_t x2878; uint32_t x2879; uint32_t x2880; uint32_t x2881; uint32_t x2882; uint32_t x2883; uint32_t x2884; uint32_t x2885; uint32_t x2886; uint32_t x2887; uint32_t x2888; uint32_t x2889; uint32_t x2890; uint32_t x2891; uint32_t x2892; uint32_t x2893; uint32_t x2894; uint32_t x2895; uint32_t x2896; uint32_t x2897; uint32_t x2898; uint32_t x2899; uint32_t x2900; uint32_t x2901; uint32_t x2902; uint32_t x2903; uint32_t x2904; uint32_t x2905; uint32_t x2906; uint32_t x2907; uint32_t x2908; uint32_t x2909; uint32_t x2910; uint32_t x2911; uint32_t x2912; uint32_t x2913; fiat_p521_uint1 x2914; uint32_t x2915; fiat_p521_uint1 x2916; uint32_t x2917; fiat_p521_uint1 x2918; uint32_t x2919; fiat_p521_uint1 x2920; uint32_t x2921; fiat_p521_uint1 x2922; uint32_t x2923; fiat_p521_uint1 x2924; uint32_t x2925; fiat_p521_uint1 x2926; uint32_t x2927; fiat_p521_uint1 x2928; uint32_t x2929; fiat_p521_uint1 x2930; uint32_t x2931; fiat_p521_uint1 x2932; uint32_t x2933; fiat_p521_uint1 x2934; uint32_t x2935; fiat_p521_uint1 x2936; uint32_t x2937; fiat_p521_uint1 x2938; uint32_t x2939; fiat_p521_uint1 x2940; uint32_t x2941; fiat_p521_uint1 x2942; uint32_t x2943; fiat_p521_uint1 x2944; uint32_t x2945; uint32_t x2946; fiat_p521_uint1 x2947; uint32_t x2948; fiat_p521_uint1 x2949; uint32_t x2950; fiat_p521_uint1 x2951; uint32_t x2952; fiat_p521_uint1 x2953; uint32_t x2954; fiat_p521_uint1 x2955; uint32_t x2956; fiat_p521_uint1 x2957; uint32_t x2958; fiat_p521_uint1 x2959; uint32_t x2960; fiat_p521_uint1 x2961; uint32_t x2962; fiat_p521_uint1 x2963; uint32_t x2964; fiat_p521_uint1 x2965; uint32_t x2966; fiat_p521_uint1 x2967; uint32_t x2968; fiat_p521_uint1 x2969; uint32_t x2970; fiat_p521_uint1 x2971; uint32_t x2972; fiat_p521_uint1 x2973; uint32_t x2974; fiat_p521_uint1 x2975; uint32_t x2976; fiat_p521_uint1 x2977; uint32_t x2978; fiat_p521_uint1 x2979; uint32_t x2980; fiat_p521_uint1 x2981; uint32_t x2982; uint32_t x2983; uint32_t x2984; uint32_t x2985; uint32_t x2986; uint32_t x2987; uint32_t x2988; uint32_t x2989; uint32_t x2990; uint32_t x2991; uint32_t x2992; uint32_t x2993; uint32_t x2994; uint32_t x2995; uint32_t x2996; uint32_t x2997; uint32_t x2998; uint32_t x2999; uint32_t x3000; uint32_t x3001; uint32_t x3002; uint32_t x3003; uint32_t x3004; uint32_t x3005; uint32_t x3006; uint32_t x3007; uint32_t x3008; uint32_t x3009; uint32_t x3010; uint32_t x3011; uint32_t x3012; uint32_t x3013; uint32_t x3014; uint32_t x3015; uint32_t x3016; fiat_p521_uint1 x3017; uint32_t x3018; fiat_p521_uint1 x3019; uint32_t x3020; fiat_p521_uint1 x3021; uint32_t x3022; fiat_p521_uint1 x3023; uint32_t x3024; fiat_p521_uint1 x3025; uint32_t x3026; fiat_p521_uint1 x3027; uint32_t x3028; fiat_p521_uint1 x3029; uint32_t x3030; fiat_p521_uint1 x3031; uint32_t x3032; fiat_p521_uint1 x3033; uint32_t x3034; fiat_p521_uint1 x3035; uint32_t x3036; fiat_p521_uint1 x3037; uint32_t x3038; fiat_p521_uint1 x3039; uint32_t x3040; fiat_p521_uint1 x3041; uint32_t x3042; fiat_p521_uint1 x3043; uint32_t x3044; fiat_p521_uint1 x3045; uint32_t x3046; fiat_p521_uint1 x3047; uint32_t x3048; uint32_t x3049; fiat_p521_uint1 x3050; uint32_t x3051; fiat_p521_uint1 x3052; uint32_t x3053; fiat_p521_uint1 x3054; uint32_t x3055; fiat_p521_uint1 x3056; uint32_t x3057; fiat_p521_uint1 x3058; uint32_t x3059; fiat_p521_uint1 x3060; uint32_t x3061; fiat_p521_uint1 x3062; uint32_t x3063; fiat_p521_uint1 x3064; uint32_t x3065; fiat_p521_uint1 x3066; uint32_t x3067; fiat_p521_uint1 x3068; uint32_t x3069; fiat_p521_uint1 x3070; uint32_t x3071; fiat_p521_uint1 x3072; uint32_t x3073; fiat_p521_uint1 x3074; uint32_t x3075; fiat_p521_uint1 x3076; uint32_t x3077; fiat_p521_uint1 x3078; uint32_t x3079; fiat_p521_uint1 x3080; uint32_t x3081; fiat_p521_uint1 x3082; uint32_t x3083; fiat_p521_uint1 x3084; uint32_t x3085; uint32_t x3086; uint32_t x3087; uint32_t x3088; uint32_t x3089; uint32_t x3090; uint32_t x3091; uint32_t x3092; uint32_t x3093; uint32_t x3094; uint32_t x3095; uint32_t x3096; uint32_t x3097; uint32_t x3098; uint32_t x3099; uint32_t x3100; uint32_t x3101; uint32_t x3102; uint32_t x3103; uint32_t x3104; uint32_t x3105; uint32_t x3106; uint32_t x3107; uint32_t x3108; uint32_t x3109; uint32_t x3110; uint32_t x3111; uint32_t x3112; uint32_t x3113; uint32_t x3114; uint32_t x3115; uint32_t x3116; uint32_t x3117; uint32_t x3118; uint32_t x3119; uint32_t x3120; fiat_p521_uint1 x3121; uint32_t x3122; fiat_p521_uint1 x3123; uint32_t x3124; fiat_p521_uint1 x3125; uint32_t x3126; fiat_p521_uint1 x3127; uint32_t x3128; fiat_p521_uint1 x3129; uint32_t x3130; fiat_p521_uint1 x3131; uint32_t x3132; fiat_p521_uint1 x3133; uint32_t x3134; fiat_p521_uint1 x3135; uint32_t x3136; fiat_p521_uint1 x3137; uint32_t x3138; fiat_p521_uint1 x3139; uint32_t x3140; fiat_p521_uint1 x3141; uint32_t x3142; fiat_p521_uint1 x3143; uint32_t x3144; fiat_p521_uint1 x3145; uint32_t x3146; fiat_p521_uint1 x3147; uint32_t x3148; fiat_p521_uint1 x3149; uint32_t x3150; fiat_p521_uint1 x3151; uint32_t x3152; uint32_t x3153; fiat_p521_uint1 x3154; uint32_t x3155; fiat_p521_uint1 x3156; uint32_t x3157; fiat_p521_uint1 x3158; uint32_t x3159; fiat_p521_uint1 x3160; uint32_t x3161; fiat_p521_uint1 x3162; uint32_t x3163; fiat_p521_uint1 x3164; uint32_t x3165; fiat_p521_uint1 x3166; uint32_t x3167; fiat_p521_uint1 x3168; uint32_t x3169; fiat_p521_uint1 x3170; uint32_t x3171; fiat_p521_uint1 x3172; uint32_t x3173; fiat_p521_uint1 x3174; uint32_t x3175; fiat_p521_uint1 x3176; uint32_t x3177; fiat_p521_uint1 x3178; uint32_t x3179; fiat_p521_uint1 x3180; uint32_t x3181; fiat_p521_uint1 x3182; uint32_t x3183; fiat_p521_uint1 x3184; uint32_t x3185; fiat_p521_uint1 x3186; uint32_t x3187; fiat_p521_uint1 x3188; uint32_t x3189; uint32_t x3190; uint32_t x3191; uint32_t x3192; uint32_t x3193; uint32_t x3194; uint32_t x3195; uint32_t x3196; uint32_t x3197; uint32_t x3198; uint32_t x3199; uint32_t x3200; uint32_t x3201; uint32_t x3202; uint32_t x3203; uint32_t x3204; uint32_t x3205; uint32_t x3206; uint32_t x3207; uint32_t x3208; uint32_t x3209; uint32_t x3210; uint32_t x3211; uint32_t x3212; uint32_t x3213; uint32_t x3214; uint32_t x3215; uint32_t x3216; uint32_t x3217; uint32_t x3218; uint32_t x3219; uint32_t x3220; uint32_t x3221; uint32_t x3222; uint32_t x3223; fiat_p521_uint1 x3224; uint32_t x3225; fiat_p521_uint1 x3226; uint32_t x3227; fiat_p521_uint1 x3228; uint32_t x3229; fiat_p521_uint1 x3230; uint32_t x3231; fiat_p521_uint1 x3232; uint32_t x3233; fiat_p521_uint1 x3234; uint32_t x3235; fiat_p521_uint1 x3236; uint32_t x3237; fiat_p521_uint1 x3238; uint32_t x3239; fiat_p521_uint1 x3240; uint32_t x3241; fiat_p521_uint1 x3242; uint32_t x3243; fiat_p521_uint1 x3244; uint32_t x3245; fiat_p521_uint1 x3246; uint32_t x3247; fiat_p521_uint1 x3248; uint32_t x3249; fiat_p521_uint1 x3250; uint32_t x3251; fiat_p521_uint1 x3252; uint32_t x3253; fiat_p521_uint1 x3254; uint32_t x3255; uint32_t x3256; fiat_p521_uint1 x3257; uint32_t x3258; fiat_p521_uint1 x3259; uint32_t x3260; fiat_p521_uint1 x3261; uint32_t x3262; fiat_p521_uint1 x3263; uint32_t x3264; fiat_p521_uint1 x3265; uint32_t x3266; fiat_p521_uint1 x3267; uint32_t x3268; fiat_p521_uint1 x3269; uint32_t x3270; fiat_p521_uint1 x3271; uint32_t x3272; fiat_p521_uint1 x3273; uint32_t x3274; fiat_p521_uint1 x3275; uint32_t x3276; fiat_p521_uint1 x3277; uint32_t x3278; fiat_p521_uint1 x3279; uint32_t x3280; fiat_p521_uint1 x3281; uint32_t x3282; fiat_p521_uint1 x3283; uint32_t x3284; fiat_p521_uint1 x3285; uint32_t x3286; fiat_p521_uint1 x3287; uint32_t x3288; fiat_p521_uint1 x3289; uint32_t x3290; fiat_p521_uint1 x3291; uint32_t x3292; uint32_t x3293; uint32_t x3294; uint32_t x3295; uint32_t x3296; uint32_t x3297; uint32_t x3298; uint32_t x3299; uint32_t x3300; uint32_t x3301; uint32_t x3302; uint32_t x3303; uint32_t x3304; uint32_t x3305; uint32_t x3306; uint32_t x3307; uint32_t x3308; uint32_t x3309; uint32_t x3310; uint32_t x3311; uint32_t x3312; uint32_t x3313; uint32_t x3314; uint32_t x3315; uint32_t x3316; uint32_t x3317; uint32_t x3318; uint32_t x3319; uint32_t x3320; uint32_t x3321; uint32_t x3322; uint32_t x3323; uint32_t x3324; uint32_t x3325; uint32_t x3326; uint32_t x3327; fiat_p521_uint1 x3328; uint32_t x3329; fiat_p521_uint1 x3330; uint32_t x3331; fiat_p521_uint1 x3332; uint32_t x3333; fiat_p521_uint1 x3334; uint32_t x3335; fiat_p521_uint1 x3336; uint32_t x3337; fiat_p521_uint1 x3338; uint32_t x3339; fiat_p521_uint1 x3340; uint32_t x3341; fiat_p521_uint1 x3342; uint32_t x3343; fiat_p521_uint1 x3344; uint32_t x3345; fiat_p521_uint1 x3346; uint32_t x3347; fiat_p521_uint1 x3348; uint32_t x3349; fiat_p521_uint1 x3350; uint32_t x3351; fiat_p521_uint1 x3352; uint32_t x3353; fiat_p521_uint1 x3354; uint32_t x3355; fiat_p521_uint1 x3356; uint32_t x3357; fiat_p521_uint1 x3358; uint32_t x3359; uint32_t x3360; fiat_p521_uint1 x3361; uint32_t x3362; fiat_p521_uint1 x3363; uint32_t x3364; fiat_p521_uint1 x3365; uint32_t x3366; fiat_p521_uint1 x3367; uint32_t x3368; fiat_p521_uint1 x3369; uint32_t x3370; fiat_p521_uint1 x3371; uint32_t x3372; fiat_p521_uint1 x3373; uint32_t x3374; fiat_p521_uint1 x3375; uint32_t x3376; fiat_p521_uint1 x3377; uint32_t x3378; fiat_p521_uint1 x3379; uint32_t x3380; fiat_p521_uint1 x3381; uint32_t x3382; fiat_p521_uint1 x3383; uint32_t x3384; fiat_p521_uint1 x3385; uint32_t x3386; fiat_p521_uint1 x3387; uint32_t x3388; fiat_p521_uint1 x3389; uint32_t x3390; fiat_p521_uint1 x3391; uint32_t x3392; fiat_p521_uint1 x3393; uint32_t x3394; fiat_p521_uint1 x3395; uint32_t x3396; uint32_t x3397; uint32_t x3398; uint32_t x3399; uint32_t x3400; uint32_t x3401; uint32_t x3402; uint32_t x3403; uint32_t x3404; uint32_t x3405; uint32_t x3406; uint32_t x3407; uint32_t x3408; uint32_t x3409; uint32_t x3410; uint32_t x3411; uint32_t x3412; uint32_t x3413; uint32_t x3414; uint32_t x3415; uint32_t x3416; uint32_t x3417; uint32_t x3418; uint32_t x3419; uint32_t x3420; uint32_t x3421; uint32_t x3422; uint32_t x3423; uint32_t x3424; uint32_t x3425; uint32_t x3426; uint32_t x3427; uint32_t x3428; uint32_t x3429; uint32_t x3430; fiat_p521_uint1 x3431; uint32_t x3432; fiat_p521_uint1 x3433; uint32_t x3434; fiat_p521_uint1 x3435; uint32_t x3436; fiat_p521_uint1 x3437; uint32_t x3438; fiat_p521_uint1 x3439; uint32_t x3440; fiat_p521_uint1 x3441; uint32_t x3442; fiat_p521_uint1 x3443; uint32_t x3444; fiat_p521_uint1 x3445; uint32_t x3446; fiat_p521_uint1 x3447; uint32_t x3448; fiat_p521_uint1 x3449; uint32_t x3450; fiat_p521_uint1 x3451; uint32_t x3452; fiat_p521_uint1 x3453; uint32_t x3454; fiat_p521_uint1 x3455; uint32_t x3456; fiat_p521_uint1 x3457; uint32_t x3458; fiat_p521_uint1 x3459; uint32_t x3460; fiat_p521_uint1 x3461; uint32_t x3462; uint32_t x3463; fiat_p521_uint1 x3464; uint32_t x3465; fiat_p521_uint1 x3466; uint32_t x3467; fiat_p521_uint1 x3468; uint32_t x3469; fiat_p521_uint1 x3470; uint32_t x3471; fiat_p521_uint1 x3472; uint32_t x3473; fiat_p521_uint1 x3474; uint32_t x3475; fiat_p521_uint1 x3476; uint32_t x3477; fiat_p521_uint1 x3478; uint32_t x3479; fiat_p521_uint1 x3480; uint32_t x3481; fiat_p521_uint1 x3482; uint32_t x3483; fiat_p521_uint1 x3484; uint32_t x3485; fiat_p521_uint1 x3486; uint32_t x3487; fiat_p521_uint1 x3488; uint32_t x3489; fiat_p521_uint1 x3490; uint32_t x3491; fiat_p521_uint1 x3492; uint32_t x3493; fiat_p521_uint1 x3494; uint32_t x3495; fiat_p521_uint1 x3496; uint32_t x3497; fiat_p521_uint1 x3498; uint32_t x3499; uint32_t x3500; fiat_p521_uint1 x3501; uint32_t x3502; fiat_p521_uint1 x3503; uint32_t x3504; fiat_p521_uint1 x3505; uint32_t x3506; fiat_p521_uint1 x3507; uint32_t x3508; fiat_p521_uint1 x3509; uint32_t x3510; fiat_p521_uint1 x3511; uint32_t x3512; fiat_p521_uint1 x3513; uint32_t x3514; fiat_p521_uint1 x3515; uint32_t x3516; fiat_p521_uint1 x3517; uint32_t x3518; fiat_p521_uint1 x3519; uint32_t x3520; fiat_p521_uint1 x3521; uint32_t x3522; fiat_p521_uint1 x3523; uint32_t x3524; fiat_p521_uint1 x3525; uint32_t x3526; fiat_p521_uint1 x3527; uint32_t x3528; fiat_p521_uint1 x3529; uint32_t x3530; fiat_p521_uint1 x3531; uint32_t x3532; fiat_p521_uint1 x3533; uint32_t x3534; fiat_p521_uint1 x3535; uint32_t x3536; uint32_t x3537; uint32_t x3538; uint32_t x3539; uint32_t x3540; uint32_t x3541; uint32_t x3542; uint32_t x3543; uint32_t x3544; uint32_t x3545; uint32_t x3546; uint32_t x3547; uint32_t x3548; uint32_t x3549; uint32_t x3550; uint32_t x3551; uint32_t x3552; x1 = (arg1[1]); x2 = (arg1[2]); x3 = (arg1[3]); x4 = (arg1[4]); x5 = (arg1[5]); x6 = (arg1[6]); x7 = (arg1[7]); x8 = (arg1[8]); x9 = (arg1[9]); x10 = (arg1[10]); x11 = (arg1[11]); x12 = (arg1[12]); x13 = (arg1[13]); x14 = (arg1[14]); x15 = (arg1[15]); x16 = (arg1[16]); x17 = (arg1[0]); fiat_p521_mulx_u32(&x18, &x19, x17, (arg2[16])); fiat_p521_mulx_u32(&x20, &x21, x17, (arg2[15])); fiat_p521_mulx_u32(&x22, &x23, x17, (arg2[14])); fiat_p521_mulx_u32(&x24, &x25, x17, (arg2[13])); fiat_p521_mulx_u32(&x26, &x27, x17, (arg2[12])); fiat_p521_mulx_u32(&x28, &x29, x17, (arg2[11])); fiat_p521_mulx_u32(&x30, &x31, x17, (arg2[10])); fiat_p521_mulx_u32(&x32, &x33, x17, (arg2[9])); fiat_p521_mulx_u32(&x34, &x35, x17, (arg2[8])); fiat_p521_mulx_u32(&x36, &x37, x17, (arg2[7])); fiat_p521_mulx_u32(&x38, &x39, x17, (arg2[6])); fiat_p521_mulx_u32(&x40, &x41, x17, (arg2[5])); fiat_p521_mulx_u32(&x42, &x43, x17, (arg2[4])); fiat_p521_mulx_u32(&x44, &x45, x17, (arg2[3])); fiat_p521_mulx_u32(&x46, &x47, x17, (arg2[2])); fiat_p521_mulx_u32(&x48, &x49, x17, (arg2[1])); fiat_p521_mulx_u32(&x50, &x51, x17, (arg2[0])); fiat_p521_addcarryx_u32(&x52, &x53, 0x0, x51, x48); fiat_p521_addcarryx_u32(&x54, &x55, x53, x49, x46); fiat_p521_addcarryx_u32(&x56, &x57, x55, x47, x44); fiat_p521_addcarryx_u32(&x58, &x59, x57, x45, x42); fiat_p521_addcarryx_u32(&x60, &x61, x59, x43, x40); fiat_p521_addcarryx_u32(&x62, &x63, x61, x41, x38); fiat_p521_addcarryx_u32(&x64, &x65, x63, x39, x36); fiat_p521_addcarryx_u32(&x66, &x67, x65, x37, x34); fiat_p521_addcarryx_u32(&x68, &x69, x67, x35, x32); fiat_p521_addcarryx_u32(&x70, &x71, x69, x33, x30); fiat_p521_addcarryx_u32(&x72, &x73, x71, x31, x28); fiat_p521_addcarryx_u32(&x74, &x75, x73, x29, x26); fiat_p521_addcarryx_u32(&x76, &x77, x75, x27, x24); fiat_p521_addcarryx_u32(&x78, &x79, x77, x25, x22); fiat_p521_addcarryx_u32(&x80, &x81, x79, x23, x20); fiat_p521_addcarryx_u32(&x82, &x83, x81, x21, x18); x84 = (x83 + x19); fiat_p521_mulx_u32(&x85, &x86, x50, UINT16_C(0x1ff)); fiat_p521_mulx_u32(&x87, &x88, x50, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x89, &x90, x50, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x91, &x92, x50, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x93, &x94, x50, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x95, &x96, x50, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x97, &x98, x50, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x99, &x100, x50, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x101, &x102, x50, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x103, &x104, x50, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x105, &x106, x50, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x107, &x108, x50, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x109, &x110, x50, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x111, &x112, x50, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x113, &x114, x50, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x115, &x116, x50, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x117, &x118, x50, UINT32_C(0xffffffff)); fiat_p521_addcarryx_u32(&x119, &x120, 0x0, x118, x115); fiat_p521_addcarryx_u32(&x121, &x122, x120, x116, x113); fiat_p521_addcarryx_u32(&x123, &x124, x122, x114, x111); fiat_p521_addcarryx_u32(&x125, &x126, x124, x112, x109); fiat_p521_addcarryx_u32(&x127, &x128, x126, x110, x107); fiat_p521_addcarryx_u32(&x129, &x130, x128, x108, x105); fiat_p521_addcarryx_u32(&x131, &x132, x130, x106, x103); fiat_p521_addcarryx_u32(&x133, &x134, x132, x104, x101); fiat_p521_addcarryx_u32(&x135, &x136, x134, x102, x99); fiat_p521_addcarryx_u32(&x137, &x138, x136, x100, x97); fiat_p521_addcarryx_u32(&x139, &x140, x138, x98, x95); fiat_p521_addcarryx_u32(&x141, &x142, x140, x96, x93); fiat_p521_addcarryx_u32(&x143, &x144, x142, x94, x91); fiat_p521_addcarryx_u32(&x145, &x146, x144, x92, x89); fiat_p521_addcarryx_u32(&x147, &x148, x146, x90, x87); fiat_p521_addcarryx_u32(&x149, &x150, x148, x88, x85); x151 = (x150 + x86); fiat_p521_addcarryx_u32(&x152, &x153, 0x0, x50, x117); fiat_p521_addcarryx_u32(&x154, &x155, x153, x52, x119); fiat_p521_addcarryx_u32(&x156, &x157, x155, x54, x121); fiat_p521_addcarryx_u32(&x158, &x159, x157, x56, x123); fiat_p521_addcarryx_u32(&x160, &x161, x159, x58, x125); fiat_p521_addcarryx_u32(&x162, &x163, x161, x60, x127); fiat_p521_addcarryx_u32(&x164, &x165, x163, x62, x129); fiat_p521_addcarryx_u32(&x166, &x167, x165, x64, x131); fiat_p521_addcarryx_u32(&x168, &x169, x167, x66, x133); fiat_p521_addcarryx_u32(&x170, &x171, x169, x68, x135); fiat_p521_addcarryx_u32(&x172, &x173, x171, x70, x137); fiat_p521_addcarryx_u32(&x174, &x175, x173, x72, x139); fiat_p521_addcarryx_u32(&x176, &x177, x175, x74, x141); fiat_p521_addcarryx_u32(&x178, &x179, x177, x76, x143); fiat_p521_addcarryx_u32(&x180, &x181, x179, x78, x145); fiat_p521_addcarryx_u32(&x182, &x183, x181, x80, x147); fiat_p521_addcarryx_u32(&x184, &x185, x183, x82, x149); fiat_p521_addcarryx_u32(&x186, &x187, x185, x84, x151); fiat_p521_mulx_u32(&x188, &x189, x1, (arg2[16])); fiat_p521_mulx_u32(&x190, &x191, x1, (arg2[15])); fiat_p521_mulx_u32(&x192, &x193, x1, (arg2[14])); fiat_p521_mulx_u32(&x194, &x195, x1, (arg2[13])); fiat_p521_mulx_u32(&x196, &x197, x1, (arg2[12])); fiat_p521_mulx_u32(&x198, &x199, x1, (arg2[11])); fiat_p521_mulx_u32(&x200, &x201, x1, (arg2[10])); fiat_p521_mulx_u32(&x202, &x203, x1, (arg2[9])); fiat_p521_mulx_u32(&x204, &x205, x1, (arg2[8])); fiat_p521_mulx_u32(&x206, &x207, x1, (arg2[7])); fiat_p521_mulx_u32(&x208, &x209, x1, (arg2[6])); fiat_p521_mulx_u32(&x210, &x211, x1, (arg2[5])); fiat_p521_mulx_u32(&x212, &x213, x1, (arg2[4])); fiat_p521_mulx_u32(&x214, &x215, x1, (arg2[3])); fiat_p521_mulx_u32(&x216, &x217, x1, (arg2[2])); fiat_p521_mulx_u32(&x218, &x219, x1, (arg2[1])); fiat_p521_mulx_u32(&x220, &x221, x1, (arg2[0])); fiat_p521_addcarryx_u32(&x222, &x223, 0x0, x221, x218); fiat_p521_addcarryx_u32(&x224, &x225, x223, x219, x216); fiat_p521_addcarryx_u32(&x226, &x227, x225, x217, x214); fiat_p521_addcarryx_u32(&x228, &x229, x227, x215, x212); fiat_p521_addcarryx_u32(&x230, &x231, x229, x213, x210); fiat_p521_addcarryx_u32(&x232, &x233, x231, x211, x208); fiat_p521_addcarryx_u32(&x234, &x235, x233, x209, x206); fiat_p521_addcarryx_u32(&x236, &x237, x235, x207, x204); fiat_p521_addcarryx_u32(&x238, &x239, x237, x205, x202); fiat_p521_addcarryx_u32(&x240, &x241, x239, x203, x200); fiat_p521_addcarryx_u32(&x242, &x243, x241, x201, x198); fiat_p521_addcarryx_u32(&x244, &x245, x243, x199, x196); fiat_p521_addcarryx_u32(&x246, &x247, x245, x197, x194); fiat_p521_addcarryx_u32(&x248, &x249, x247, x195, x192); fiat_p521_addcarryx_u32(&x250, &x251, x249, x193, x190); fiat_p521_addcarryx_u32(&x252, &x253, x251, x191, x188); x254 = (x253 + x189); fiat_p521_addcarryx_u32(&x255, &x256, 0x0, x154, x220); fiat_p521_addcarryx_u32(&x257, &x258, x256, x156, x222); fiat_p521_addcarryx_u32(&x259, &x260, x258, x158, x224); fiat_p521_addcarryx_u32(&x261, &x262, x260, x160, x226); fiat_p521_addcarryx_u32(&x263, &x264, x262, x162, x228); fiat_p521_addcarryx_u32(&x265, &x266, x264, x164, x230); fiat_p521_addcarryx_u32(&x267, &x268, x266, x166, x232); fiat_p521_addcarryx_u32(&x269, &x270, x268, x168, x234); fiat_p521_addcarryx_u32(&x271, &x272, x270, x170, x236); fiat_p521_addcarryx_u32(&x273, &x274, x272, x172, x238); fiat_p521_addcarryx_u32(&x275, &x276, x274, x174, x240); fiat_p521_addcarryx_u32(&x277, &x278, x276, x176, x242); fiat_p521_addcarryx_u32(&x279, &x280, x278, x178, x244); fiat_p521_addcarryx_u32(&x281, &x282, x280, x180, x246); fiat_p521_addcarryx_u32(&x283, &x284, x282, x182, x248); fiat_p521_addcarryx_u32(&x285, &x286, x284, x184, x250); fiat_p521_addcarryx_u32(&x287, &x288, x286, x186, x252); fiat_p521_addcarryx_u32(&x289, &x290, x288, x187, x254); fiat_p521_mulx_u32(&x291, &x292, x255, UINT16_C(0x1ff)); fiat_p521_mulx_u32(&x293, &x294, x255, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x295, &x296, x255, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x297, &x298, x255, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x299, &x300, x255, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x301, &x302, x255, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x303, &x304, x255, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x305, &x306, x255, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x307, &x308, x255, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x309, &x310, x255, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x311, &x312, x255, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x313, &x314, x255, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x315, &x316, x255, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x317, &x318, x255, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x319, &x320, x255, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x321, &x322, x255, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x323, &x324, x255, UINT32_C(0xffffffff)); fiat_p521_addcarryx_u32(&x325, &x326, 0x0, x324, x321); fiat_p521_addcarryx_u32(&x327, &x328, x326, x322, x319); fiat_p521_addcarryx_u32(&x329, &x330, x328, x320, x317); fiat_p521_addcarryx_u32(&x331, &x332, x330, x318, x315); fiat_p521_addcarryx_u32(&x333, &x334, x332, x316, x313); fiat_p521_addcarryx_u32(&x335, &x336, x334, x314, x311); fiat_p521_addcarryx_u32(&x337, &x338, x336, x312, x309); fiat_p521_addcarryx_u32(&x339, &x340, x338, x310, x307); fiat_p521_addcarryx_u32(&x341, &x342, x340, x308, x305); fiat_p521_addcarryx_u32(&x343, &x344, x342, x306, x303); fiat_p521_addcarryx_u32(&x345, &x346, x344, x304, x301); fiat_p521_addcarryx_u32(&x347, &x348, x346, x302, x299); fiat_p521_addcarryx_u32(&x349, &x350, x348, x300, x297); fiat_p521_addcarryx_u32(&x351, &x352, x350, x298, x295); fiat_p521_addcarryx_u32(&x353, &x354, x352, x296, x293); fiat_p521_addcarryx_u32(&x355, &x356, x354, x294, x291); x357 = (x356 + x292); fiat_p521_addcarryx_u32(&x358, &x359, 0x0, x255, x323); fiat_p521_addcarryx_u32(&x360, &x361, x359, x257, x325); fiat_p521_addcarryx_u32(&x362, &x363, x361, x259, x327); fiat_p521_addcarryx_u32(&x364, &x365, x363, x261, x329); fiat_p521_addcarryx_u32(&x366, &x367, x365, x263, x331); fiat_p521_addcarryx_u32(&x368, &x369, x367, x265, x333); fiat_p521_addcarryx_u32(&x370, &x371, x369, x267, x335); fiat_p521_addcarryx_u32(&x372, &x373, x371, x269, x337); fiat_p521_addcarryx_u32(&x374, &x375, x373, x271, x339); fiat_p521_addcarryx_u32(&x376, &x377, x375, x273, x341); fiat_p521_addcarryx_u32(&x378, &x379, x377, x275, x343); fiat_p521_addcarryx_u32(&x380, &x381, x379, x277, x345); fiat_p521_addcarryx_u32(&x382, &x383, x381, x279, x347); fiat_p521_addcarryx_u32(&x384, &x385, x383, x281, x349); fiat_p521_addcarryx_u32(&x386, &x387, x385, x283, x351); fiat_p521_addcarryx_u32(&x388, &x389, x387, x285, x353); fiat_p521_addcarryx_u32(&x390, &x391, x389, x287, x355); fiat_p521_addcarryx_u32(&x392, &x393, x391, x289, x357); x394 = ((uint32_t)x393 + x290); fiat_p521_mulx_u32(&x395, &x396, x2, (arg2[16])); fiat_p521_mulx_u32(&x397, &x398, x2, (arg2[15])); fiat_p521_mulx_u32(&x399, &x400, x2, (arg2[14])); fiat_p521_mulx_u32(&x401, &x402, x2, (arg2[13])); fiat_p521_mulx_u32(&x403, &x404, x2, (arg2[12])); fiat_p521_mulx_u32(&x405, &x406, x2, (arg2[11])); fiat_p521_mulx_u32(&x407, &x408, x2, (arg2[10])); fiat_p521_mulx_u32(&x409, &x410, x2, (arg2[9])); fiat_p521_mulx_u32(&x411, &x412, x2, (arg2[8])); fiat_p521_mulx_u32(&x413, &x414, x2, (arg2[7])); fiat_p521_mulx_u32(&x415, &x416, x2, (arg2[6])); fiat_p521_mulx_u32(&x417, &x418, x2, (arg2[5])); fiat_p521_mulx_u32(&x419, &x420, x2, (arg2[4])); fiat_p521_mulx_u32(&x421, &x422, x2, (arg2[3])); fiat_p521_mulx_u32(&x423, &x424, x2, (arg2[2])); fiat_p521_mulx_u32(&x425, &x426, x2, (arg2[1])); fiat_p521_mulx_u32(&x427, &x428, x2, (arg2[0])); fiat_p521_addcarryx_u32(&x429, &x430, 0x0, x428, x425); fiat_p521_addcarryx_u32(&x431, &x432, x430, x426, x423); fiat_p521_addcarryx_u32(&x433, &x434, x432, x424, x421); fiat_p521_addcarryx_u32(&x435, &x436, x434, x422, x419); fiat_p521_addcarryx_u32(&x437, &x438, x436, x420, x417); fiat_p521_addcarryx_u32(&x439, &x440, x438, x418, x415); fiat_p521_addcarryx_u32(&x441, &x442, x440, x416, x413); fiat_p521_addcarryx_u32(&x443, &x444, x442, x414, x411); fiat_p521_addcarryx_u32(&x445, &x446, x444, x412, x409); fiat_p521_addcarryx_u32(&x447, &x448, x446, x410, x407); fiat_p521_addcarryx_u32(&x449, &x450, x448, x408, x405); fiat_p521_addcarryx_u32(&x451, &x452, x450, x406, x403); fiat_p521_addcarryx_u32(&x453, &x454, x452, x404, x401); fiat_p521_addcarryx_u32(&x455, &x456, x454, x402, x399); fiat_p521_addcarryx_u32(&x457, &x458, x456, x400, x397); fiat_p521_addcarryx_u32(&x459, &x460, x458, x398, x395); x461 = (x460 + x396); fiat_p521_addcarryx_u32(&x462, &x463, 0x0, x360, x427); fiat_p521_addcarryx_u32(&x464, &x465, x463, x362, x429); fiat_p521_addcarryx_u32(&x466, &x467, x465, x364, x431); fiat_p521_addcarryx_u32(&x468, &x469, x467, x366, x433); fiat_p521_addcarryx_u32(&x470, &x471, x469, x368, x435); fiat_p521_addcarryx_u32(&x472, &x473, x471, x370, x437); fiat_p521_addcarryx_u32(&x474, &x475, x473, x372, x439); fiat_p521_addcarryx_u32(&x476, &x477, x475, x374, x441); fiat_p521_addcarryx_u32(&x478, &x479, x477, x376, x443); fiat_p521_addcarryx_u32(&x480, &x481, x479, x378, x445); fiat_p521_addcarryx_u32(&x482, &x483, x481, x380, x447); fiat_p521_addcarryx_u32(&x484, &x485, x483, x382, x449); fiat_p521_addcarryx_u32(&x486, &x487, x485, x384, x451); fiat_p521_addcarryx_u32(&x488, &x489, x487, x386, x453); fiat_p521_addcarryx_u32(&x490, &x491, x489, x388, x455); fiat_p521_addcarryx_u32(&x492, &x493, x491, x390, x457); fiat_p521_addcarryx_u32(&x494, &x495, x493, x392, x459); fiat_p521_addcarryx_u32(&x496, &x497, x495, x394, x461); fiat_p521_mulx_u32(&x498, &x499, x462, UINT16_C(0x1ff)); fiat_p521_mulx_u32(&x500, &x501, x462, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x502, &x503, x462, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x504, &x505, x462, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x506, &x507, x462, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x508, &x509, x462, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x510, &x511, x462, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x512, &x513, x462, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x514, &x515, x462, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x516, &x517, x462, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x518, &x519, x462, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x520, &x521, x462, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x522, &x523, x462, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x524, &x525, x462, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x526, &x527, x462, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x528, &x529, x462, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x530, &x531, x462, UINT32_C(0xffffffff)); fiat_p521_addcarryx_u32(&x532, &x533, 0x0, x531, x528); fiat_p521_addcarryx_u32(&x534, &x535, x533, x529, x526); fiat_p521_addcarryx_u32(&x536, &x537, x535, x527, x524); fiat_p521_addcarryx_u32(&x538, &x539, x537, x525, x522); fiat_p521_addcarryx_u32(&x540, &x541, x539, x523, x520); fiat_p521_addcarryx_u32(&x542, &x543, x541, x521, x518); fiat_p521_addcarryx_u32(&x544, &x545, x543, x519, x516); fiat_p521_addcarryx_u32(&x546, &x547, x545, x517, x514); fiat_p521_addcarryx_u32(&x548, &x549, x547, x515, x512); fiat_p521_addcarryx_u32(&x550, &x551, x549, x513, x510); fiat_p521_addcarryx_u32(&x552, &x553, x551, x511, x508); fiat_p521_addcarryx_u32(&x554, &x555, x553, x509, x506); fiat_p521_addcarryx_u32(&x556, &x557, x555, x507, x504); fiat_p521_addcarryx_u32(&x558, &x559, x557, x505, x502); fiat_p521_addcarryx_u32(&x560, &x561, x559, x503, x500); fiat_p521_addcarryx_u32(&x562, &x563, x561, x501, x498); x564 = (x563 + x499); fiat_p521_addcarryx_u32(&x565, &x566, 0x0, x462, x530); fiat_p521_addcarryx_u32(&x567, &x568, x566, x464, x532); fiat_p521_addcarryx_u32(&x569, &x570, x568, x466, x534); fiat_p521_addcarryx_u32(&x571, &x572, x570, x468, x536); fiat_p521_addcarryx_u32(&x573, &x574, x572, x470, x538); fiat_p521_addcarryx_u32(&x575, &x576, x574, x472, x540); fiat_p521_addcarryx_u32(&x577, &x578, x576, x474, x542); fiat_p521_addcarryx_u32(&x579, &x580, x578, x476, x544); fiat_p521_addcarryx_u32(&x581, &x582, x580, x478, x546); fiat_p521_addcarryx_u32(&x583, &x584, x582, x480, x548); fiat_p521_addcarryx_u32(&x585, &x586, x584, x482, x550); fiat_p521_addcarryx_u32(&x587, &x588, x586, x484, x552); fiat_p521_addcarryx_u32(&x589, &x590, x588, x486, x554); fiat_p521_addcarryx_u32(&x591, &x592, x590, x488, x556); fiat_p521_addcarryx_u32(&x593, &x594, x592, x490, x558); fiat_p521_addcarryx_u32(&x595, &x596, x594, x492, x560); fiat_p521_addcarryx_u32(&x597, &x598, x596, x494, x562); fiat_p521_addcarryx_u32(&x599, &x600, x598, x496, x564); x601 = ((uint32_t)x600 + x497); fiat_p521_mulx_u32(&x602, &x603, x3, (arg2[16])); fiat_p521_mulx_u32(&x604, &x605, x3, (arg2[15])); fiat_p521_mulx_u32(&x606, &x607, x3, (arg2[14])); fiat_p521_mulx_u32(&x608, &x609, x3, (arg2[13])); fiat_p521_mulx_u32(&x610, &x611, x3, (arg2[12])); fiat_p521_mulx_u32(&x612, &x613, x3, (arg2[11])); fiat_p521_mulx_u32(&x614, &x615, x3, (arg2[10])); fiat_p521_mulx_u32(&x616, &x617, x3, (arg2[9])); fiat_p521_mulx_u32(&x618, &x619, x3, (arg2[8])); fiat_p521_mulx_u32(&x620, &x621, x3, (arg2[7])); fiat_p521_mulx_u32(&x622, &x623, x3, (arg2[6])); fiat_p521_mulx_u32(&x624, &x625, x3, (arg2[5])); fiat_p521_mulx_u32(&x626, &x627, x3, (arg2[4])); fiat_p521_mulx_u32(&x628, &x629, x3, (arg2[3])); fiat_p521_mulx_u32(&x630, &x631, x3, (arg2[2])); fiat_p521_mulx_u32(&x632, &x633, x3, (arg2[1])); fiat_p521_mulx_u32(&x634, &x635, x3, (arg2[0])); fiat_p521_addcarryx_u32(&x636, &x637, 0x0, x635, x632); fiat_p521_addcarryx_u32(&x638, &x639, x637, x633, x630); fiat_p521_addcarryx_u32(&x640, &x641, x639, x631, x628); fiat_p521_addcarryx_u32(&x642, &x643, x641, x629, x626); fiat_p521_addcarryx_u32(&x644, &x645, x643, x627, x624); fiat_p521_addcarryx_u32(&x646, &x647, x645, x625, x622); fiat_p521_addcarryx_u32(&x648, &x649, x647, x623, x620); fiat_p521_addcarryx_u32(&x650, &x651, x649, x621, x618); fiat_p521_addcarryx_u32(&x652, &x653, x651, x619, x616); fiat_p521_addcarryx_u32(&x654, &x655, x653, x617, x614); fiat_p521_addcarryx_u32(&x656, &x657, x655, x615, x612); fiat_p521_addcarryx_u32(&x658, &x659, x657, x613, x610); fiat_p521_addcarryx_u32(&x660, &x661, x659, x611, x608); fiat_p521_addcarryx_u32(&x662, &x663, x661, x609, x606); fiat_p521_addcarryx_u32(&x664, &x665, x663, x607, x604); fiat_p521_addcarryx_u32(&x666, &x667, x665, x605, x602); x668 = (x667 + x603); fiat_p521_addcarryx_u32(&x669, &x670, 0x0, x567, x634); fiat_p521_addcarryx_u32(&x671, &x672, x670, x569, x636); fiat_p521_addcarryx_u32(&x673, &x674, x672, x571, x638); fiat_p521_addcarryx_u32(&x675, &x676, x674, x573, x640); fiat_p521_addcarryx_u32(&x677, &x678, x676, x575, x642); fiat_p521_addcarryx_u32(&x679, &x680, x678, x577, x644); fiat_p521_addcarryx_u32(&x681, &x682, x680, x579, x646); fiat_p521_addcarryx_u32(&x683, &x684, x682, x581, x648); fiat_p521_addcarryx_u32(&x685, &x686, x684, x583, x650); fiat_p521_addcarryx_u32(&x687, &x688, x686, x585, x652); fiat_p521_addcarryx_u32(&x689, &x690, x688, x587, x654); fiat_p521_addcarryx_u32(&x691, &x692, x690, x589, x656); fiat_p521_addcarryx_u32(&x693, &x694, x692, x591, x658); fiat_p521_addcarryx_u32(&x695, &x696, x694, x593, x660); fiat_p521_addcarryx_u32(&x697, &x698, x696, x595, x662); fiat_p521_addcarryx_u32(&x699, &x700, x698, x597, x664); fiat_p521_addcarryx_u32(&x701, &x702, x700, x599, x666); fiat_p521_addcarryx_u32(&x703, &x704, x702, x601, x668); fiat_p521_mulx_u32(&x705, &x706, x669, UINT16_C(0x1ff)); fiat_p521_mulx_u32(&x707, &x708, x669, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x709, &x710, x669, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x711, &x712, x669, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x713, &x714, x669, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x715, &x716, x669, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x717, &x718, x669, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x719, &x720, x669, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x721, &x722, x669, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x723, &x724, x669, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x725, &x726, x669, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x727, &x728, x669, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x729, &x730, x669, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x731, &x732, x669, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x733, &x734, x669, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x735, &x736, x669, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x737, &x738, x669, UINT32_C(0xffffffff)); fiat_p521_addcarryx_u32(&x739, &x740, 0x0, x738, x735); fiat_p521_addcarryx_u32(&x741, &x742, x740, x736, x733); fiat_p521_addcarryx_u32(&x743, &x744, x742, x734, x731); fiat_p521_addcarryx_u32(&x745, &x746, x744, x732, x729); fiat_p521_addcarryx_u32(&x747, &x748, x746, x730, x727); fiat_p521_addcarryx_u32(&x749, &x750, x748, x728, x725); fiat_p521_addcarryx_u32(&x751, &x752, x750, x726, x723); fiat_p521_addcarryx_u32(&x753, &x754, x752, x724, x721); fiat_p521_addcarryx_u32(&x755, &x756, x754, x722, x719); fiat_p521_addcarryx_u32(&x757, &x758, x756, x720, x717); fiat_p521_addcarryx_u32(&x759, &x760, x758, x718, x715); fiat_p521_addcarryx_u32(&x761, &x762, x760, x716, x713); fiat_p521_addcarryx_u32(&x763, &x764, x762, x714, x711); fiat_p521_addcarryx_u32(&x765, &x766, x764, x712, x709); fiat_p521_addcarryx_u32(&x767, &x768, x766, x710, x707); fiat_p521_addcarryx_u32(&x769, &x770, x768, x708, x705); x771 = (x770 + x706); fiat_p521_addcarryx_u32(&x772, &x773, 0x0, x669, x737); fiat_p521_addcarryx_u32(&x774, &x775, x773, x671, x739); fiat_p521_addcarryx_u32(&x776, &x777, x775, x673, x741); fiat_p521_addcarryx_u32(&x778, &x779, x777, x675, x743); fiat_p521_addcarryx_u32(&x780, &x781, x779, x677, x745); fiat_p521_addcarryx_u32(&x782, &x783, x781, x679, x747); fiat_p521_addcarryx_u32(&x784, &x785, x783, x681, x749); fiat_p521_addcarryx_u32(&x786, &x787, x785, x683, x751); fiat_p521_addcarryx_u32(&x788, &x789, x787, x685, x753); fiat_p521_addcarryx_u32(&x790, &x791, x789, x687, x755); fiat_p521_addcarryx_u32(&x792, &x793, x791, x689, x757); fiat_p521_addcarryx_u32(&x794, &x795, x793, x691, x759); fiat_p521_addcarryx_u32(&x796, &x797, x795, x693, x761); fiat_p521_addcarryx_u32(&x798, &x799, x797, x695, x763); fiat_p521_addcarryx_u32(&x800, &x801, x799, x697, x765); fiat_p521_addcarryx_u32(&x802, &x803, x801, x699, x767); fiat_p521_addcarryx_u32(&x804, &x805, x803, x701, x769); fiat_p521_addcarryx_u32(&x806, &x807, x805, x703, x771); x808 = ((uint32_t)x807 + x704); fiat_p521_mulx_u32(&x809, &x810, x4, (arg2[16])); fiat_p521_mulx_u32(&x811, &x812, x4, (arg2[15])); fiat_p521_mulx_u32(&x813, &x814, x4, (arg2[14])); fiat_p521_mulx_u32(&x815, &x816, x4, (arg2[13])); fiat_p521_mulx_u32(&x817, &x818, x4, (arg2[12])); fiat_p521_mulx_u32(&x819, &x820, x4, (arg2[11])); fiat_p521_mulx_u32(&x821, &x822, x4, (arg2[10])); fiat_p521_mulx_u32(&x823, &x824, x4, (arg2[9])); fiat_p521_mulx_u32(&x825, &x826, x4, (arg2[8])); fiat_p521_mulx_u32(&x827, &x828, x4, (arg2[7])); fiat_p521_mulx_u32(&x829, &x830, x4, (arg2[6])); fiat_p521_mulx_u32(&x831, &x832, x4, (arg2[5])); fiat_p521_mulx_u32(&x833, &x834, x4, (arg2[4])); fiat_p521_mulx_u32(&x835, &x836, x4, (arg2[3])); fiat_p521_mulx_u32(&x837, &x838, x4, (arg2[2])); fiat_p521_mulx_u32(&x839, &x840, x4, (arg2[1])); fiat_p521_mulx_u32(&x841, &x842, x4, (arg2[0])); fiat_p521_addcarryx_u32(&x843, &x844, 0x0, x842, x839); fiat_p521_addcarryx_u32(&x845, &x846, x844, x840, x837); fiat_p521_addcarryx_u32(&x847, &x848, x846, x838, x835); fiat_p521_addcarryx_u32(&x849, &x850, x848, x836, x833); fiat_p521_addcarryx_u32(&x851, &x852, x850, x834, x831); fiat_p521_addcarryx_u32(&x853, &x854, x852, x832, x829); fiat_p521_addcarryx_u32(&x855, &x856, x854, x830, x827); fiat_p521_addcarryx_u32(&x857, &x858, x856, x828, x825); fiat_p521_addcarryx_u32(&x859, &x860, x858, x826, x823); fiat_p521_addcarryx_u32(&x861, &x862, x860, x824, x821); fiat_p521_addcarryx_u32(&x863, &x864, x862, x822, x819); fiat_p521_addcarryx_u32(&x865, &x866, x864, x820, x817); fiat_p521_addcarryx_u32(&x867, &x868, x866, x818, x815); fiat_p521_addcarryx_u32(&x869, &x870, x868, x816, x813); fiat_p521_addcarryx_u32(&x871, &x872, x870, x814, x811); fiat_p521_addcarryx_u32(&x873, &x874, x872, x812, x809); x875 = (x874 + x810); fiat_p521_addcarryx_u32(&x876, &x877, 0x0, x774, x841); fiat_p521_addcarryx_u32(&x878, &x879, x877, x776, x843); fiat_p521_addcarryx_u32(&x880, &x881, x879, x778, x845); fiat_p521_addcarryx_u32(&x882, &x883, x881, x780, x847); fiat_p521_addcarryx_u32(&x884, &x885, x883, x782, x849); fiat_p521_addcarryx_u32(&x886, &x887, x885, x784, x851); fiat_p521_addcarryx_u32(&x888, &x889, x887, x786, x853); fiat_p521_addcarryx_u32(&x890, &x891, x889, x788, x855); fiat_p521_addcarryx_u32(&x892, &x893, x891, x790, x857); fiat_p521_addcarryx_u32(&x894, &x895, x893, x792, x859); fiat_p521_addcarryx_u32(&x896, &x897, x895, x794, x861); fiat_p521_addcarryx_u32(&x898, &x899, x897, x796, x863); fiat_p521_addcarryx_u32(&x900, &x901, x899, x798, x865); fiat_p521_addcarryx_u32(&x902, &x903, x901, x800, x867); fiat_p521_addcarryx_u32(&x904, &x905, x903, x802, x869); fiat_p521_addcarryx_u32(&x906, &x907, x905, x804, x871); fiat_p521_addcarryx_u32(&x908, &x909, x907, x806, x873); fiat_p521_addcarryx_u32(&x910, &x911, x909, x808, x875); fiat_p521_mulx_u32(&x912, &x913, x876, UINT16_C(0x1ff)); fiat_p521_mulx_u32(&x914, &x915, x876, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x916, &x917, x876, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x918, &x919, x876, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x920, &x921, x876, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x922, &x923, x876, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x924, &x925, x876, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x926, &x927, x876, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x928, &x929, x876, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x930, &x931, x876, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x932, &x933, x876, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x934, &x935, x876, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x936, &x937, x876, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x938, &x939, x876, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x940, &x941, x876, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x942, &x943, x876, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x944, &x945, x876, UINT32_C(0xffffffff)); fiat_p521_addcarryx_u32(&x946, &x947, 0x0, x945, x942); fiat_p521_addcarryx_u32(&x948, &x949, x947, x943, x940); fiat_p521_addcarryx_u32(&x950, &x951, x949, x941, x938); fiat_p521_addcarryx_u32(&x952, &x953, x951, x939, x936); fiat_p521_addcarryx_u32(&x954, &x955, x953, x937, x934); fiat_p521_addcarryx_u32(&x956, &x957, x955, x935, x932); fiat_p521_addcarryx_u32(&x958, &x959, x957, x933, x930); fiat_p521_addcarryx_u32(&x960, &x961, x959, x931, x928); fiat_p521_addcarryx_u32(&x962, &x963, x961, x929, x926); fiat_p521_addcarryx_u32(&x964, &x965, x963, x927, x924); fiat_p521_addcarryx_u32(&x966, &x967, x965, x925, x922); fiat_p521_addcarryx_u32(&x968, &x969, x967, x923, x920); fiat_p521_addcarryx_u32(&x970, &x971, x969, x921, x918); fiat_p521_addcarryx_u32(&x972, &x973, x971, x919, x916); fiat_p521_addcarryx_u32(&x974, &x975, x973, x917, x914); fiat_p521_addcarryx_u32(&x976, &x977, x975, x915, x912); x978 = (x977 + x913); fiat_p521_addcarryx_u32(&x979, &x980, 0x0, x876, x944); fiat_p521_addcarryx_u32(&x981, &x982, x980, x878, x946); fiat_p521_addcarryx_u32(&x983, &x984, x982, x880, x948); fiat_p521_addcarryx_u32(&x985, &x986, x984, x882, x950); fiat_p521_addcarryx_u32(&x987, &x988, x986, x884, x952); fiat_p521_addcarryx_u32(&x989, &x990, x988, x886, x954); fiat_p521_addcarryx_u32(&x991, &x992, x990, x888, x956); fiat_p521_addcarryx_u32(&x993, &x994, x992, x890, x958); fiat_p521_addcarryx_u32(&x995, &x996, x994, x892, x960); fiat_p521_addcarryx_u32(&x997, &x998, x996, x894, x962); fiat_p521_addcarryx_u32(&x999, &x1000, x998, x896, x964); fiat_p521_addcarryx_u32(&x1001, &x1002, x1000, x898, x966); fiat_p521_addcarryx_u32(&x1003, &x1004, x1002, x900, x968); fiat_p521_addcarryx_u32(&x1005, &x1006, x1004, x902, x970); fiat_p521_addcarryx_u32(&x1007, &x1008, x1006, x904, x972); fiat_p521_addcarryx_u32(&x1009, &x1010, x1008, x906, x974); fiat_p521_addcarryx_u32(&x1011, &x1012, x1010, x908, x976); fiat_p521_addcarryx_u32(&x1013, &x1014, x1012, x910, x978); x1015 = ((uint32_t)x1014 + x911); fiat_p521_mulx_u32(&x1016, &x1017, x5, (arg2[16])); fiat_p521_mulx_u32(&x1018, &x1019, x5, (arg2[15])); fiat_p521_mulx_u32(&x1020, &x1021, x5, (arg2[14])); fiat_p521_mulx_u32(&x1022, &x1023, x5, (arg2[13])); fiat_p521_mulx_u32(&x1024, &x1025, x5, (arg2[12])); fiat_p521_mulx_u32(&x1026, &x1027, x5, (arg2[11])); fiat_p521_mulx_u32(&x1028, &x1029, x5, (arg2[10])); fiat_p521_mulx_u32(&x1030, &x1031, x5, (arg2[9])); fiat_p521_mulx_u32(&x1032, &x1033, x5, (arg2[8])); fiat_p521_mulx_u32(&x1034, &x1035, x5, (arg2[7])); fiat_p521_mulx_u32(&x1036, &x1037, x5, (arg2[6])); fiat_p521_mulx_u32(&x1038, &x1039, x5, (arg2[5])); fiat_p521_mulx_u32(&x1040, &x1041, x5, (arg2[4])); fiat_p521_mulx_u32(&x1042, &x1043, x5, (arg2[3])); fiat_p521_mulx_u32(&x1044, &x1045, x5, (arg2[2])); fiat_p521_mulx_u32(&x1046, &x1047, x5, (arg2[1])); fiat_p521_mulx_u32(&x1048, &x1049, x5, (arg2[0])); fiat_p521_addcarryx_u32(&x1050, &x1051, 0x0, x1049, x1046); fiat_p521_addcarryx_u32(&x1052, &x1053, x1051, x1047, x1044); fiat_p521_addcarryx_u32(&x1054, &x1055, x1053, x1045, x1042); fiat_p521_addcarryx_u32(&x1056, &x1057, x1055, x1043, x1040); fiat_p521_addcarryx_u32(&x1058, &x1059, x1057, x1041, x1038); fiat_p521_addcarryx_u32(&x1060, &x1061, x1059, x1039, x1036); fiat_p521_addcarryx_u32(&x1062, &x1063, x1061, x1037, x1034); fiat_p521_addcarryx_u32(&x1064, &x1065, x1063, x1035, x1032); fiat_p521_addcarryx_u32(&x1066, &x1067, x1065, x1033, x1030); fiat_p521_addcarryx_u32(&x1068, &x1069, x1067, x1031, x1028); fiat_p521_addcarryx_u32(&x1070, &x1071, x1069, x1029, x1026); fiat_p521_addcarryx_u32(&x1072, &x1073, x1071, x1027, x1024); fiat_p521_addcarryx_u32(&x1074, &x1075, x1073, x1025, x1022); fiat_p521_addcarryx_u32(&x1076, &x1077, x1075, x1023, x1020); fiat_p521_addcarryx_u32(&x1078, &x1079, x1077, x1021, x1018); fiat_p521_addcarryx_u32(&x1080, &x1081, x1079, x1019, x1016); x1082 = (x1081 + x1017); fiat_p521_addcarryx_u32(&x1083, &x1084, 0x0, x981, x1048); fiat_p521_addcarryx_u32(&x1085, &x1086, x1084, x983, x1050); fiat_p521_addcarryx_u32(&x1087, &x1088, x1086, x985, x1052); fiat_p521_addcarryx_u32(&x1089, &x1090, x1088, x987, x1054); fiat_p521_addcarryx_u32(&x1091, &x1092, x1090, x989, x1056); fiat_p521_addcarryx_u32(&x1093, &x1094, x1092, x991, x1058); fiat_p521_addcarryx_u32(&x1095, &x1096, x1094, x993, x1060); fiat_p521_addcarryx_u32(&x1097, &x1098, x1096, x995, x1062); fiat_p521_addcarryx_u32(&x1099, &x1100, x1098, x997, x1064); fiat_p521_addcarryx_u32(&x1101, &x1102, x1100, x999, x1066); fiat_p521_addcarryx_u32(&x1103, &x1104, x1102, x1001, x1068); fiat_p521_addcarryx_u32(&x1105, &x1106, x1104, x1003, x1070); fiat_p521_addcarryx_u32(&x1107, &x1108, x1106, x1005, x1072); fiat_p521_addcarryx_u32(&x1109, &x1110, x1108, x1007, x1074); fiat_p521_addcarryx_u32(&x1111, &x1112, x1110, x1009, x1076); fiat_p521_addcarryx_u32(&x1113, &x1114, x1112, x1011, x1078); fiat_p521_addcarryx_u32(&x1115, &x1116, x1114, x1013, x1080); fiat_p521_addcarryx_u32(&x1117, &x1118, x1116, x1015, x1082); fiat_p521_mulx_u32(&x1119, &x1120, x1083, UINT16_C(0x1ff)); fiat_p521_mulx_u32(&x1121, &x1122, x1083, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1123, &x1124, x1083, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1125, &x1126, x1083, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1127, &x1128, x1083, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1129, &x1130, x1083, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1131, &x1132, x1083, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1133, &x1134, x1083, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1135, &x1136, x1083, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1137, &x1138, x1083, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1139, &x1140, x1083, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1141, &x1142, x1083, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1143, &x1144, x1083, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1145, &x1146, x1083, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1147, &x1148, x1083, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1149, &x1150, x1083, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1151, &x1152, x1083, UINT32_C(0xffffffff)); fiat_p521_addcarryx_u32(&x1153, &x1154, 0x0, x1152, x1149); fiat_p521_addcarryx_u32(&x1155, &x1156, x1154, x1150, x1147); fiat_p521_addcarryx_u32(&x1157, &x1158, x1156, x1148, x1145); fiat_p521_addcarryx_u32(&x1159, &x1160, x1158, x1146, x1143); fiat_p521_addcarryx_u32(&x1161, &x1162, x1160, x1144, x1141); fiat_p521_addcarryx_u32(&x1163, &x1164, x1162, x1142, x1139); fiat_p521_addcarryx_u32(&x1165, &x1166, x1164, x1140, x1137); fiat_p521_addcarryx_u32(&x1167, &x1168, x1166, x1138, x1135); fiat_p521_addcarryx_u32(&x1169, &x1170, x1168, x1136, x1133); fiat_p521_addcarryx_u32(&x1171, &x1172, x1170, x1134, x1131); fiat_p521_addcarryx_u32(&x1173, &x1174, x1172, x1132, x1129); fiat_p521_addcarryx_u32(&x1175, &x1176, x1174, x1130, x1127); fiat_p521_addcarryx_u32(&x1177, &x1178, x1176, x1128, x1125); fiat_p521_addcarryx_u32(&x1179, &x1180, x1178, x1126, x1123); fiat_p521_addcarryx_u32(&x1181, &x1182, x1180, x1124, x1121); fiat_p521_addcarryx_u32(&x1183, &x1184, x1182, x1122, x1119); x1185 = (x1184 + x1120); fiat_p521_addcarryx_u32(&x1186, &x1187, 0x0, x1083, x1151); fiat_p521_addcarryx_u32(&x1188, &x1189, x1187, x1085, x1153); fiat_p521_addcarryx_u32(&x1190, &x1191, x1189, x1087, x1155); fiat_p521_addcarryx_u32(&x1192, &x1193, x1191, x1089, x1157); fiat_p521_addcarryx_u32(&x1194, &x1195, x1193, x1091, x1159); fiat_p521_addcarryx_u32(&x1196, &x1197, x1195, x1093, x1161); fiat_p521_addcarryx_u32(&x1198, &x1199, x1197, x1095, x1163); fiat_p521_addcarryx_u32(&x1200, &x1201, x1199, x1097, x1165); fiat_p521_addcarryx_u32(&x1202, &x1203, x1201, x1099, x1167); fiat_p521_addcarryx_u32(&x1204, &x1205, x1203, x1101, x1169); fiat_p521_addcarryx_u32(&x1206, &x1207, x1205, x1103, x1171); fiat_p521_addcarryx_u32(&x1208, &x1209, x1207, x1105, x1173); fiat_p521_addcarryx_u32(&x1210, &x1211, x1209, x1107, x1175); fiat_p521_addcarryx_u32(&x1212, &x1213, x1211, x1109, x1177); fiat_p521_addcarryx_u32(&x1214, &x1215, x1213, x1111, x1179); fiat_p521_addcarryx_u32(&x1216, &x1217, x1215, x1113, x1181); fiat_p521_addcarryx_u32(&x1218, &x1219, x1217, x1115, x1183); fiat_p521_addcarryx_u32(&x1220, &x1221, x1219, x1117, x1185); x1222 = ((uint32_t)x1221 + x1118); fiat_p521_mulx_u32(&x1223, &x1224, x6, (arg2[16])); fiat_p521_mulx_u32(&x1225, &x1226, x6, (arg2[15])); fiat_p521_mulx_u32(&x1227, &x1228, x6, (arg2[14])); fiat_p521_mulx_u32(&x1229, &x1230, x6, (arg2[13])); fiat_p521_mulx_u32(&x1231, &x1232, x6, (arg2[12])); fiat_p521_mulx_u32(&x1233, &x1234, x6, (arg2[11])); fiat_p521_mulx_u32(&x1235, &x1236, x6, (arg2[10])); fiat_p521_mulx_u32(&x1237, &x1238, x6, (arg2[9])); fiat_p521_mulx_u32(&x1239, &x1240, x6, (arg2[8])); fiat_p521_mulx_u32(&x1241, &x1242, x6, (arg2[7])); fiat_p521_mulx_u32(&x1243, &x1244, x6, (arg2[6])); fiat_p521_mulx_u32(&x1245, &x1246, x6, (arg2[5])); fiat_p521_mulx_u32(&x1247, &x1248, x6, (arg2[4])); fiat_p521_mulx_u32(&x1249, &x1250, x6, (arg2[3])); fiat_p521_mulx_u32(&x1251, &x1252, x6, (arg2[2])); fiat_p521_mulx_u32(&x1253, &x1254, x6, (arg2[1])); fiat_p521_mulx_u32(&x1255, &x1256, x6, (arg2[0])); fiat_p521_addcarryx_u32(&x1257, &x1258, 0x0, x1256, x1253); fiat_p521_addcarryx_u32(&x1259, &x1260, x1258, x1254, x1251); fiat_p521_addcarryx_u32(&x1261, &x1262, x1260, x1252, x1249); fiat_p521_addcarryx_u32(&x1263, &x1264, x1262, x1250, x1247); fiat_p521_addcarryx_u32(&x1265, &x1266, x1264, x1248, x1245); fiat_p521_addcarryx_u32(&x1267, &x1268, x1266, x1246, x1243); fiat_p521_addcarryx_u32(&x1269, &x1270, x1268, x1244, x1241); fiat_p521_addcarryx_u32(&x1271, &x1272, x1270, x1242, x1239); fiat_p521_addcarryx_u32(&x1273, &x1274, x1272, x1240, x1237); fiat_p521_addcarryx_u32(&x1275, &x1276, x1274, x1238, x1235); fiat_p521_addcarryx_u32(&x1277, &x1278, x1276, x1236, x1233); fiat_p521_addcarryx_u32(&x1279, &x1280, x1278, x1234, x1231); fiat_p521_addcarryx_u32(&x1281, &x1282, x1280, x1232, x1229); fiat_p521_addcarryx_u32(&x1283, &x1284, x1282, x1230, x1227); fiat_p521_addcarryx_u32(&x1285, &x1286, x1284, x1228, x1225); fiat_p521_addcarryx_u32(&x1287, &x1288, x1286, x1226, x1223); x1289 = (x1288 + x1224); fiat_p521_addcarryx_u32(&x1290, &x1291, 0x0, x1188, x1255); fiat_p521_addcarryx_u32(&x1292, &x1293, x1291, x1190, x1257); fiat_p521_addcarryx_u32(&x1294, &x1295, x1293, x1192, x1259); fiat_p521_addcarryx_u32(&x1296, &x1297, x1295, x1194, x1261); fiat_p521_addcarryx_u32(&x1298, &x1299, x1297, x1196, x1263); fiat_p521_addcarryx_u32(&x1300, &x1301, x1299, x1198, x1265); fiat_p521_addcarryx_u32(&x1302, &x1303, x1301, x1200, x1267); fiat_p521_addcarryx_u32(&x1304, &x1305, x1303, x1202, x1269); fiat_p521_addcarryx_u32(&x1306, &x1307, x1305, x1204, x1271); fiat_p521_addcarryx_u32(&x1308, &x1309, x1307, x1206, x1273); fiat_p521_addcarryx_u32(&x1310, &x1311, x1309, x1208, x1275); fiat_p521_addcarryx_u32(&x1312, &x1313, x1311, x1210, x1277); fiat_p521_addcarryx_u32(&x1314, &x1315, x1313, x1212, x1279); fiat_p521_addcarryx_u32(&x1316, &x1317, x1315, x1214, x1281); fiat_p521_addcarryx_u32(&x1318, &x1319, x1317, x1216, x1283); fiat_p521_addcarryx_u32(&x1320, &x1321, x1319, x1218, x1285); fiat_p521_addcarryx_u32(&x1322, &x1323, x1321, x1220, x1287); fiat_p521_addcarryx_u32(&x1324, &x1325, x1323, x1222, x1289); fiat_p521_mulx_u32(&x1326, &x1327, x1290, UINT16_C(0x1ff)); fiat_p521_mulx_u32(&x1328, &x1329, x1290, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1330, &x1331, x1290, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1332, &x1333, x1290, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1334, &x1335, x1290, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1336, &x1337, x1290, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1338, &x1339, x1290, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1340, &x1341, x1290, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1342, &x1343, x1290, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1344, &x1345, x1290, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1346, &x1347, x1290, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1348, &x1349, x1290, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1350, &x1351, x1290, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1352, &x1353, x1290, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1354, &x1355, x1290, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1356, &x1357, x1290, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1358, &x1359, x1290, UINT32_C(0xffffffff)); fiat_p521_addcarryx_u32(&x1360, &x1361, 0x0, x1359, x1356); fiat_p521_addcarryx_u32(&x1362, &x1363, x1361, x1357, x1354); fiat_p521_addcarryx_u32(&x1364, &x1365, x1363, x1355, x1352); fiat_p521_addcarryx_u32(&x1366, &x1367, x1365, x1353, x1350); fiat_p521_addcarryx_u32(&x1368, &x1369, x1367, x1351, x1348); fiat_p521_addcarryx_u32(&x1370, &x1371, x1369, x1349, x1346); fiat_p521_addcarryx_u32(&x1372, &x1373, x1371, x1347, x1344); fiat_p521_addcarryx_u32(&x1374, &x1375, x1373, x1345, x1342); fiat_p521_addcarryx_u32(&x1376, &x1377, x1375, x1343, x1340); fiat_p521_addcarryx_u32(&x1378, &x1379, x1377, x1341, x1338); fiat_p521_addcarryx_u32(&x1380, &x1381, x1379, x1339, x1336); fiat_p521_addcarryx_u32(&x1382, &x1383, x1381, x1337, x1334); fiat_p521_addcarryx_u32(&x1384, &x1385, x1383, x1335, x1332); fiat_p521_addcarryx_u32(&x1386, &x1387, x1385, x1333, x1330); fiat_p521_addcarryx_u32(&x1388, &x1389, x1387, x1331, x1328); fiat_p521_addcarryx_u32(&x1390, &x1391, x1389, x1329, x1326); x1392 = (x1391 + x1327); fiat_p521_addcarryx_u32(&x1393, &x1394, 0x0, x1290, x1358); fiat_p521_addcarryx_u32(&x1395, &x1396, x1394, x1292, x1360); fiat_p521_addcarryx_u32(&x1397, &x1398, x1396, x1294, x1362); fiat_p521_addcarryx_u32(&x1399, &x1400, x1398, x1296, x1364); fiat_p521_addcarryx_u32(&x1401, &x1402, x1400, x1298, x1366); fiat_p521_addcarryx_u32(&x1403, &x1404, x1402, x1300, x1368); fiat_p521_addcarryx_u32(&x1405, &x1406, x1404, x1302, x1370); fiat_p521_addcarryx_u32(&x1407, &x1408, x1406, x1304, x1372); fiat_p521_addcarryx_u32(&x1409, &x1410, x1408, x1306, x1374); fiat_p521_addcarryx_u32(&x1411, &x1412, x1410, x1308, x1376); fiat_p521_addcarryx_u32(&x1413, &x1414, x1412, x1310, x1378); fiat_p521_addcarryx_u32(&x1415, &x1416, x1414, x1312, x1380); fiat_p521_addcarryx_u32(&x1417, &x1418, x1416, x1314, x1382); fiat_p521_addcarryx_u32(&x1419, &x1420, x1418, x1316, x1384); fiat_p521_addcarryx_u32(&x1421, &x1422, x1420, x1318, x1386); fiat_p521_addcarryx_u32(&x1423, &x1424, x1422, x1320, x1388); fiat_p521_addcarryx_u32(&x1425, &x1426, x1424, x1322, x1390); fiat_p521_addcarryx_u32(&x1427, &x1428, x1426, x1324, x1392); x1429 = ((uint32_t)x1428 + x1325); fiat_p521_mulx_u32(&x1430, &x1431, x7, (arg2[16])); fiat_p521_mulx_u32(&x1432, &x1433, x7, (arg2[15])); fiat_p521_mulx_u32(&x1434, &x1435, x7, (arg2[14])); fiat_p521_mulx_u32(&x1436, &x1437, x7, (arg2[13])); fiat_p521_mulx_u32(&x1438, &x1439, x7, (arg2[12])); fiat_p521_mulx_u32(&x1440, &x1441, x7, (arg2[11])); fiat_p521_mulx_u32(&x1442, &x1443, x7, (arg2[10])); fiat_p521_mulx_u32(&x1444, &x1445, x7, (arg2[9])); fiat_p521_mulx_u32(&x1446, &x1447, x7, (arg2[8])); fiat_p521_mulx_u32(&x1448, &x1449, x7, (arg2[7])); fiat_p521_mulx_u32(&x1450, &x1451, x7, (arg2[6])); fiat_p521_mulx_u32(&x1452, &x1453, x7, (arg2[5])); fiat_p521_mulx_u32(&x1454, &x1455, x7, (arg2[4])); fiat_p521_mulx_u32(&x1456, &x1457, x7, (arg2[3])); fiat_p521_mulx_u32(&x1458, &x1459, x7, (arg2[2])); fiat_p521_mulx_u32(&x1460, &x1461, x7, (arg2[1])); fiat_p521_mulx_u32(&x1462, &x1463, x7, (arg2[0])); fiat_p521_addcarryx_u32(&x1464, &x1465, 0x0, x1463, x1460); fiat_p521_addcarryx_u32(&x1466, &x1467, x1465, x1461, x1458); fiat_p521_addcarryx_u32(&x1468, &x1469, x1467, x1459, x1456); fiat_p521_addcarryx_u32(&x1470, &x1471, x1469, x1457, x1454); fiat_p521_addcarryx_u32(&x1472, &x1473, x1471, x1455, x1452); fiat_p521_addcarryx_u32(&x1474, &x1475, x1473, x1453, x1450); fiat_p521_addcarryx_u32(&x1476, &x1477, x1475, x1451, x1448); fiat_p521_addcarryx_u32(&x1478, &x1479, x1477, x1449, x1446); fiat_p521_addcarryx_u32(&x1480, &x1481, x1479, x1447, x1444); fiat_p521_addcarryx_u32(&x1482, &x1483, x1481, x1445, x1442); fiat_p521_addcarryx_u32(&x1484, &x1485, x1483, x1443, x1440); fiat_p521_addcarryx_u32(&x1486, &x1487, x1485, x1441, x1438); fiat_p521_addcarryx_u32(&x1488, &x1489, x1487, x1439, x1436); fiat_p521_addcarryx_u32(&x1490, &x1491, x1489, x1437, x1434); fiat_p521_addcarryx_u32(&x1492, &x1493, x1491, x1435, x1432); fiat_p521_addcarryx_u32(&x1494, &x1495, x1493, x1433, x1430); x1496 = (x1495 + x1431); fiat_p521_addcarryx_u32(&x1497, &x1498, 0x0, x1395, x1462); fiat_p521_addcarryx_u32(&x1499, &x1500, x1498, x1397, x1464); fiat_p521_addcarryx_u32(&x1501, &x1502, x1500, x1399, x1466); fiat_p521_addcarryx_u32(&x1503, &x1504, x1502, x1401, x1468); fiat_p521_addcarryx_u32(&x1505, &x1506, x1504, x1403, x1470); fiat_p521_addcarryx_u32(&x1507, &x1508, x1506, x1405, x1472); fiat_p521_addcarryx_u32(&x1509, &x1510, x1508, x1407, x1474); fiat_p521_addcarryx_u32(&x1511, &x1512, x1510, x1409, x1476); fiat_p521_addcarryx_u32(&x1513, &x1514, x1512, x1411, x1478); fiat_p521_addcarryx_u32(&x1515, &x1516, x1514, x1413, x1480); fiat_p521_addcarryx_u32(&x1517, &x1518, x1516, x1415, x1482); fiat_p521_addcarryx_u32(&x1519, &x1520, x1518, x1417, x1484); fiat_p521_addcarryx_u32(&x1521, &x1522, x1520, x1419, x1486); fiat_p521_addcarryx_u32(&x1523, &x1524, x1522, x1421, x1488); fiat_p521_addcarryx_u32(&x1525, &x1526, x1524, x1423, x1490); fiat_p521_addcarryx_u32(&x1527, &x1528, x1526, x1425, x1492); fiat_p521_addcarryx_u32(&x1529, &x1530, x1528, x1427, x1494); fiat_p521_addcarryx_u32(&x1531, &x1532, x1530, x1429, x1496); fiat_p521_mulx_u32(&x1533, &x1534, x1497, UINT16_C(0x1ff)); fiat_p521_mulx_u32(&x1535, &x1536, x1497, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1537, &x1538, x1497, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1539, &x1540, x1497, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1541, &x1542, x1497, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1543, &x1544, x1497, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1545, &x1546, x1497, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1547, &x1548, x1497, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1549, &x1550, x1497, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1551, &x1552, x1497, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1553, &x1554, x1497, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1555, &x1556, x1497, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1557, &x1558, x1497, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1559, &x1560, x1497, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1561, &x1562, x1497, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1563, &x1564, x1497, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1565, &x1566, x1497, UINT32_C(0xffffffff)); fiat_p521_addcarryx_u32(&x1567, &x1568, 0x0, x1566, x1563); fiat_p521_addcarryx_u32(&x1569, &x1570, x1568, x1564, x1561); fiat_p521_addcarryx_u32(&x1571, &x1572, x1570, x1562, x1559); fiat_p521_addcarryx_u32(&x1573, &x1574, x1572, x1560, x1557); fiat_p521_addcarryx_u32(&x1575, &x1576, x1574, x1558, x1555); fiat_p521_addcarryx_u32(&x1577, &x1578, x1576, x1556, x1553); fiat_p521_addcarryx_u32(&x1579, &x1580, x1578, x1554, x1551); fiat_p521_addcarryx_u32(&x1581, &x1582, x1580, x1552, x1549); fiat_p521_addcarryx_u32(&x1583, &x1584, x1582, x1550, x1547); fiat_p521_addcarryx_u32(&x1585, &x1586, x1584, x1548, x1545); fiat_p521_addcarryx_u32(&x1587, &x1588, x1586, x1546, x1543); fiat_p521_addcarryx_u32(&x1589, &x1590, x1588, x1544, x1541); fiat_p521_addcarryx_u32(&x1591, &x1592, x1590, x1542, x1539); fiat_p521_addcarryx_u32(&x1593, &x1594, x1592, x1540, x1537); fiat_p521_addcarryx_u32(&x1595, &x1596, x1594, x1538, x1535); fiat_p521_addcarryx_u32(&x1597, &x1598, x1596, x1536, x1533); x1599 = (x1598 + x1534); fiat_p521_addcarryx_u32(&x1600, &x1601, 0x0, x1497, x1565); fiat_p521_addcarryx_u32(&x1602, &x1603, x1601, x1499, x1567); fiat_p521_addcarryx_u32(&x1604, &x1605, x1603, x1501, x1569); fiat_p521_addcarryx_u32(&x1606, &x1607, x1605, x1503, x1571); fiat_p521_addcarryx_u32(&x1608, &x1609, x1607, x1505, x1573); fiat_p521_addcarryx_u32(&x1610, &x1611, x1609, x1507, x1575); fiat_p521_addcarryx_u32(&x1612, &x1613, x1611, x1509, x1577); fiat_p521_addcarryx_u32(&x1614, &x1615, x1613, x1511, x1579); fiat_p521_addcarryx_u32(&x1616, &x1617, x1615, x1513, x1581); fiat_p521_addcarryx_u32(&x1618, &x1619, x1617, x1515, x1583); fiat_p521_addcarryx_u32(&x1620, &x1621, x1619, x1517, x1585); fiat_p521_addcarryx_u32(&x1622, &x1623, x1621, x1519, x1587); fiat_p521_addcarryx_u32(&x1624, &x1625, x1623, x1521, x1589); fiat_p521_addcarryx_u32(&x1626, &x1627, x1625, x1523, x1591); fiat_p521_addcarryx_u32(&x1628, &x1629, x1627, x1525, x1593); fiat_p521_addcarryx_u32(&x1630, &x1631, x1629, x1527, x1595); fiat_p521_addcarryx_u32(&x1632, &x1633, x1631, x1529, x1597); fiat_p521_addcarryx_u32(&x1634, &x1635, x1633, x1531, x1599); x1636 = ((uint32_t)x1635 + x1532); fiat_p521_mulx_u32(&x1637, &x1638, x8, (arg2[16])); fiat_p521_mulx_u32(&x1639, &x1640, x8, (arg2[15])); fiat_p521_mulx_u32(&x1641, &x1642, x8, (arg2[14])); fiat_p521_mulx_u32(&x1643, &x1644, x8, (arg2[13])); fiat_p521_mulx_u32(&x1645, &x1646, x8, (arg2[12])); fiat_p521_mulx_u32(&x1647, &x1648, x8, (arg2[11])); fiat_p521_mulx_u32(&x1649, &x1650, x8, (arg2[10])); fiat_p521_mulx_u32(&x1651, &x1652, x8, (arg2[9])); fiat_p521_mulx_u32(&x1653, &x1654, x8, (arg2[8])); fiat_p521_mulx_u32(&x1655, &x1656, x8, (arg2[7])); fiat_p521_mulx_u32(&x1657, &x1658, x8, (arg2[6])); fiat_p521_mulx_u32(&x1659, &x1660, x8, (arg2[5])); fiat_p521_mulx_u32(&x1661, &x1662, x8, (arg2[4])); fiat_p521_mulx_u32(&x1663, &x1664, x8, (arg2[3])); fiat_p521_mulx_u32(&x1665, &x1666, x8, (arg2[2])); fiat_p521_mulx_u32(&x1667, &x1668, x8, (arg2[1])); fiat_p521_mulx_u32(&x1669, &x1670, x8, (arg2[0])); fiat_p521_addcarryx_u32(&x1671, &x1672, 0x0, x1670, x1667); fiat_p521_addcarryx_u32(&x1673, &x1674, x1672, x1668, x1665); fiat_p521_addcarryx_u32(&x1675, &x1676, x1674, x1666, x1663); fiat_p521_addcarryx_u32(&x1677, &x1678, x1676, x1664, x1661); fiat_p521_addcarryx_u32(&x1679, &x1680, x1678, x1662, x1659); fiat_p521_addcarryx_u32(&x1681, &x1682, x1680, x1660, x1657); fiat_p521_addcarryx_u32(&x1683, &x1684, x1682, x1658, x1655); fiat_p521_addcarryx_u32(&x1685, &x1686, x1684, x1656, x1653); fiat_p521_addcarryx_u32(&x1687, &x1688, x1686, x1654, x1651); fiat_p521_addcarryx_u32(&x1689, &x1690, x1688, x1652, x1649); fiat_p521_addcarryx_u32(&x1691, &x1692, x1690, x1650, x1647); fiat_p521_addcarryx_u32(&x1693, &x1694, x1692, x1648, x1645); fiat_p521_addcarryx_u32(&x1695, &x1696, x1694, x1646, x1643); fiat_p521_addcarryx_u32(&x1697, &x1698, x1696, x1644, x1641); fiat_p521_addcarryx_u32(&x1699, &x1700, x1698, x1642, x1639); fiat_p521_addcarryx_u32(&x1701, &x1702, x1700, x1640, x1637); x1703 = (x1702 + x1638); fiat_p521_addcarryx_u32(&x1704, &x1705, 0x0, x1602, x1669); fiat_p521_addcarryx_u32(&x1706, &x1707, x1705, x1604, x1671); fiat_p521_addcarryx_u32(&x1708, &x1709, x1707, x1606, x1673); fiat_p521_addcarryx_u32(&x1710, &x1711, x1709, x1608, x1675); fiat_p521_addcarryx_u32(&x1712, &x1713, x1711, x1610, x1677); fiat_p521_addcarryx_u32(&x1714, &x1715, x1713, x1612, x1679); fiat_p521_addcarryx_u32(&x1716, &x1717, x1715, x1614, x1681); fiat_p521_addcarryx_u32(&x1718, &x1719, x1717, x1616, x1683); fiat_p521_addcarryx_u32(&x1720, &x1721, x1719, x1618, x1685); fiat_p521_addcarryx_u32(&x1722, &x1723, x1721, x1620, x1687); fiat_p521_addcarryx_u32(&x1724, &x1725, x1723, x1622, x1689); fiat_p521_addcarryx_u32(&x1726, &x1727, x1725, x1624, x1691); fiat_p521_addcarryx_u32(&x1728, &x1729, x1727, x1626, x1693); fiat_p521_addcarryx_u32(&x1730, &x1731, x1729, x1628, x1695); fiat_p521_addcarryx_u32(&x1732, &x1733, x1731, x1630, x1697); fiat_p521_addcarryx_u32(&x1734, &x1735, x1733, x1632, x1699); fiat_p521_addcarryx_u32(&x1736, &x1737, x1735, x1634, x1701); fiat_p521_addcarryx_u32(&x1738, &x1739, x1737, x1636, x1703); fiat_p521_mulx_u32(&x1740, &x1741, x1704, UINT16_C(0x1ff)); fiat_p521_mulx_u32(&x1742, &x1743, x1704, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1744, &x1745, x1704, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1746, &x1747, x1704, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1748, &x1749, x1704, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1750, &x1751, x1704, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1752, &x1753, x1704, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1754, &x1755, x1704, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1756, &x1757, x1704, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1758, &x1759, x1704, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1760, &x1761, x1704, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1762, &x1763, x1704, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1764, &x1765, x1704, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1766, &x1767, x1704, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1768, &x1769, x1704, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1770, &x1771, x1704, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1772, &x1773, x1704, UINT32_C(0xffffffff)); fiat_p521_addcarryx_u32(&x1774, &x1775, 0x0, x1773, x1770); fiat_p521_addcarryx_u32(&x1776, &x1777, x1775, x1771, x1768); fiat_p521_addcarryx_u32(&x1778, &x1779, x1777, x1769, x1766); fiat_p521_addcarryx_u32(&x1780, &x1781, x1779, x1767, x1764); fiat_p521_addcarryx_u32(&x1782, &x1783, x1781, x1765, x1762); fiat_p521_addcarryx_u32(&x1784, &x1785, x1783, x1763, x1760); fiat_p521_addcarryx_u32(&x1786, &x1787, x1785, x1761, x1758); fiat_p521_addcarryx_u32(&x1788, &x1789, x1787, x1759, x1756); fiat_p521_addcarryx_u32(&x1790, &x1791, x1789, x1757, x1754); fiat_p521_addcarryx_u32(&x1792, &x1793, x1791, x1755, x1752); fiat_p521_addcarryx_u32(&x1794, &x1795, x1793, x1753, x1750); fiat_p521_addcarryx_u32(&x1796, &x1797, x1795, x1751, x1748); fiat_p521_addcarryx_u32(&x1798, &x1799, x1797, x1749, x1746); fiat_p521_addcarryx_u32(&x1800, &x1801, x1799, x1747, x1744); fiat_p521_addcarryx_u32(&x1802, &x1803, x1801, x1745, x1742); fiat_p521_addcarryx_u32(&x1804, &x1805, x1803, x1743, x1740); x1806 = (x1805 + x1741); fiat_p521_addcarryx_u32(&x1807, &x1808, 0x0, x1704, x1772); fiat_p521_addcarryx_u32(&x1809, &x1810, x1808, x1706, x1774); fiat_p521_addcarryx_u32(&x1811, &x1812, x1810, x1708, x1776); fiat_p521_addcarryx_u32(&x1813, &x1814, x1812, x1710, x1778); fiat_p521_addcarryx_u32(&x1815, &x1816, x1814, x1712, x1780); fiat_p521_addcarryx_u32(&x1817, &x1818, x1816, x1714, x1782); fiat_p521_addcarryx_u32(&x1819, &x1820, x1818, x1716, x1784); fiat_p521_addcarryx_u32(&x1821, &x1822, x1820, x1718, x1786); fiat_p521_addcarryx_u32(&x1823, &x1824, x1822, x1720, x1788); fiat_p521_addcarryx_u32(&x1825, &x1826, x1824, x1722, x1790); fiat_p521_addcarryx_u32(&x1827, &x1828, x1826, x1724, x1792); fiat_p521_addcarryx_u32(&x1829, &x1830, x1828, x1726, x1794); fiat_p521_addcarryx_u32(&x1831, &x1832, x1830, x1728, x1796); fiat_p521_addcarryx_u32(&x1833, &x1834, x1832, x1730, x1798); fiat_p521_addcarryx_u32(&x1835, &x1836, x1834, x1732, x1800); fiat_p521_addcarryx_u32(&x1837, &x1838, x1836, x1734, x1802); fiat_p521_addcarryx_u32(&x1839, &x1840, x1838, x1736, x1804); fiat_p521_addcarryx_u32(&x1841, &x1842, x1840, x1738, x1806); x1843 = ((uint32_t)x1842 + x1739); fiat_p521_mulx_u32(&x1844, &x1845, x9, (arg2[16])); fiat_p521_mulx_u32(&x1846, &x1847, x9, (arg2[15])); fiat_p521_mulx_u32(&x1848, &x1849, x9, (arg2[14])); fiat_p521_mulx_u32(&x1850, &x1851, x9, (arg2[13])); fiat_p521_mulx_u32(&x1852, &x1853, x9, (arg2[12])); fiat_p521_mulx_u32(&x1854, &x1855, x9, (arg2[11])); fiat_p521_mulx_u32(&x1856, &x1857, x9, (arg2[10])); fiat_p521_mulx_u32(&x1858, &x1859, x9, (arg2[9])); fiat_p521_mulx_u32(&x1860, &x1861, x9, (arg2[8])); fiat_p521_mulx_u32(&x1862, &x1863, x9, (arg2[7])); fiat_p521_mulx_u32(&x1864, &x1865, x9, (arg2[6])); fiat_p521_mulx_u32(&x1866, &x1867, x9, (arg2[5])); fiat_p521_mulx_u32(&x1868, &x1869, x9, (arg2[4])); fiat_p521_mulx_u32(&x1870, &x1871, x9, (arg2[3])); fiat_p521_mulx_u32(&x1872, &x1873, x9, (arg2[2])); fiat_p521_mulx_u32(&x1874, &x1875, x9, (arg2[1])); fiat_p521_mulx_u32(&x1876, &x1877, x9, (arg2[0])); fiat_p521_addcarryx_u32(&x1878, &x1879, 0x0, x1877, x1874); fiat_p521_addcarryx_u32(&x1880, &x1881, x1879, x1875, x1872); fiat_p521_addcarryx_u32(&x1882, &x1883, x1881, x1873, x1870); fiat_p521_addcarryx_u32(&x1884, &x1885, x1883, x1871, x1868); fiat_p521_addcarryx_u32(&x1886, &x1887, x1885, x1869, x1866); fiat_p521_addcarryx_u32(&x1888, &x1889, x1887, x1867, x1864); fiat_p521_addcarryx_u32(&x1890, &x1891, x1889, x1865, x1862); fiat_p521_addcarryx_u32(&x1892, &x1893, x1891, x1863, x1860); fiat_p521_addcarryx_u32(&x1894, &x1895, x1893, x1861, x1858); fiat_p521_addcarryx_u32(&x1896, &x1897, x1895, x1859, x1856); fiat_p521_addcarryx_u32(&x1898, &x1899, x1897, x1857, x1854); fiat_p521_addcarryx_u32(&x1900, &x1901, x1899, x1855, x1852); fiat_p521_addcarryx_u32(&x1902, &x1903, x1901, x1853, x1850); fiat_p521_addcarryx_u32(&x1904, &x1905, x1903, x1851, x1848); fiat_p521_addcarryx_u32(&x1906, &x1907, x1905, x1849, x1846); fiat_p521_addcarryx_u32(&x1908, &x1909, x1907, x1847, x1844); x1910 = (x1909 + x1845); fiat_p521_addcarryx_u32(&x1911, &x1912, 0x0, x1809, x1876); fiat_p521_addcarryx_u32(&x1913, &x1914, x1912, x1811, x1878); fiat_p521_addcarryx_u32(&x1915, &x1916, x1914, x1813, x1880); fiat_p521_addcarryx_u32(&x1917, &x1918, x1916, x1815, x1882); fiat_p521_addcarryx_u32(&x1919, &x1920, x1918, x1817, x1884); fiat_p521_addcarryx_u32(&x1921, &x1922, x1920, x1819, x1886); fiat_p521_addcarryx_u32(&x1923, &x1924, x1922, x1821, x1888); fiat_p521_addcarryx_u32(&x1925, &x1926, x1924, x1823, x1890); fiat_p521_addcarryx_u32(&x1927, &x1928, x1926, x1825, x1892); fiat_p521_addcarryx_u32(&x1929, &x1930, x1928, x1827, x1894); fiat_p521_addcarryx_u32(&x1931, &x1932, x1930, x1829, x1896); fiat_p521_addcarryx_u32(&x1933, &x1934, x1932, x1831, x1898); fiat_p521_addcarryx_u32(&x1935, &x1936, x1934, x1833, x1900); fiat_p521_addcarryx_u32(&x1937, &x1938, x1936, x1835, x1902); fiat_p521_addcarryx_u32(&x1939, &x1940, x1938, x1837, x1904); fiat_p521_addcarryx_u32(&x1941, &x1942, x1940, x1839, x1906); fiat_p521_addcarryx_u32(&x1943, &x1944, x1942, x1841, x1908); fiat_p521_addcarryx_u32(&x1945, &x1946, x1944, x1843, x1910); fiat_p521_mulx_u32(&x1947, &x1948, x1911, UINT16_C(0x1ff)); fiat_p521_mulx_u32(&x1949, &x1950, x1911, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1951, &x1952, x1911, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1953, &x1954, x1911, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1955, &x1956, x1911, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1957, &x1958, x1911, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1959, &x1960, x1911, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1961, &x1962, x1911, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1963, &x1964, x1911, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1965, &x1966, x1911, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1967, &x1968, x1911, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1969, &x1970, x1911, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1971, &x1972, x1911, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1973, &x1974, x1911, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1975, &x1976, x1911, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1977, &x1978, x1911, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1979, &x1980, x1911, UINT32_C(0xffffffff)); fiat_p521_addcarryx_u32(&x1981, &x1982, 0x0, x1980, x1977); fiat_p521_addcarryx_u32(&x1983, &x1984, x1982, x1978, x1975); fiat_p521_addcarryx_u32(&x1985, &x1986, x1984, x1976, x1973); fiat_p521_addcarryx_u32(&x1987, &x1988, x1986, x1974, x1971); fiat_p521_addcarryx_u32(&x1989, &x1990, x1988, x1972, x1969); fiat_p521_addcarryx_u32(&x1991, &x1992, x1990, x1970, x1967); fiat_p521_addcarryx_u32(&x1993, &x1994, x1992, x1968, x1965); fiat_p521_addcarryx_u32(&x1995, &x1996, x1994, x1966, x1963); fiat_p521_addcarryx_u32(&x1997, &x1998, x1996, x1964, x1961); fiat_p521_addcarryx_u32(&x1999, &x2000, x1998, x1962, x1959); fiat_p521_addcarryx_u32(&x2001, &x2002, x2000, x1960, x1957); fiat_p521_addcarryx_u32(&x2003, &x2004, x2002, x1958, x1955); fiat_p521_addcarryx_u32(&x2005, &x2006, x2004, x1956, x1953); fiat_p521_addcarryx_u32(&x2007, &x2008, x2006, x1954, x1951); fiat_p521_addcarryx_u32(&x2009, &x2010, x2008, x1952, x1949); fiat_p521_addcarryx_u32(&x2011, &x2012, x2010, x1950, x1947); x2013 = (x2012 + x1948); fiat_p521_addcarryx_u32(&x2014, &x2015, 0x0, x1911, x1979); fiat_p521_addcarryx_u32(&x2016, &x2017, x2015, x1913, x1981); fiat_p521_addcarryx_u32(&x2018, &x2019, x2017, x1915, x1983); fiat_p521_addcarryx_u32(&x2020, &x2021, x2019, x1917, x1985); fiat_p521_addcarryx_u32(&x2022, &x2023, x2021, x1919, x1987); fiat_p521_addcarryx_u32(&x2024, &x2025, x2023, x1921, x1989); fiat_p521_addcarryx_u32(&x2026, &x2027, x2025, x1923, x1991); fiat_p521_addcarryx_u32(&x2028, &x2029, x2027, x1925, x1993); fiat_p521_addcarryx_u32(&x2030, &x2031, x2029, x1927, x1995); fiat_p521_addcarryx_u32(&x2032, &x2033, x2031, x1929, x1997); fiat_p521_addcarryx_u32(&x2034, &x2035, x2033, x1931, x1999); fiat_p521_addcarryx_u32(&x2036, &x2037, x2035, x1933, x2001); fiat_p521_addcarryx_u32(&x2038, &x2039, x2037, x1935, x2003); fiat_p521_addcarryx_u32(&x2040, &x2041, x2039, x1937, x2005); fiat_p521_addcarryx_u32(&x2042, &x2043, x2041, x1939, x2007); fiat_p521_addcarryx_u32(&x2044, &x2045, x2043, x1941, x2009); fiat_p521_addcarryx_u32(&x2046, &x2047, x2045, x1943, x2011); fiat_p521_addcarryx_u32(&x2048, &x2049, x2047, x1945, x2013); x2050 = ((uint32_t)x2049 + x1946); fiat_p521_mulx_u32(&x2051, &x2052, x10, (arg2[16])); fiat_p521_mulx_u32(&x2053, &x2054, x10, (arg2[15])); fiat_p521_mulx_u32(&x2055, &x2056, x10, (arg2[14])); fiat_p521_mulx_u32(&x2057, &x2058, x10, (arg2[13])); fiat_p521_mulx_u32(&x2059, &x2060, x10, (arg2[12])); fiat_p521_mulx_u32(&x2061, &x2062, x10, (arg2[11])); fiat_p521_mulx_u32(&x2063, &x2064, x10, (arg2[10])); fiat_p521_mulx_u32(&x2065, &x2066, x10, (arg2[9])); fiat_p521_mulx_u32(&x2067, &x2068, x10, (arg2[8])); fiat_p521_mulx_u32(&x2069, &x2070, x10, (arg2[7])); fiat_p521_mulx_u32(&x2071, &x2072, x10, (arg2[6])); fiat_p521_mulx_u32(&x2073, &x2074, x10, (arg2[5])); fiat_p521_mulx_u32(&x2075, &x2076, x10, (arg2[4])); fiat_p521_mulx_u32(&x2077, &x2078, x10, (arg2[3])); fiat_p521_mulx_u32(&x2079, &x2080, x10, (arg2[2])); fiat_p521_mulx_u32(&x2081, &x2082, x10, (arg2[1])); fiat_p521_mulx_u32(&x2083, &x2084, x10, (arg2[0])); fiat_p521_addcarryx_u32(&x2085, &x2086, 0x0, x2084, x2081); fiat_p521_addcarryx_u32(&x2087, &x2088, x2086, x2082, x2079); fiat_p521_addcarryx_u32(&x2089, &x2090, x2088, x2080, x2077); fiat_p521_addcarryx_u32(&x2091, &x2092, x2090, x2078, x2075); fiat_p521_addcarryx_u32(&x2093, &x2094, x2092, x2076, x2073); fiat_p521_addcarryx_u32(&x2095, &x2096, x2094, x2074, x2071); fiat_p521_addcarryx_u32(&x2097, &x2098, x2096, x2072, x2069); fiat_p521_addcarryx_u32(&x2099, &x2100, x2098, x2070, x2067); fiat_p521_addcarryx_u32(&x2101, &x2102, x2100, x2068, x2065); fiat_p521_addcarryx_u32(&x2103, &x2104, x2102, x2066, x2063); fiat_p521_addcarryx_u32(&x2105, &x2106, x2104, x2064, x2061); fiat_p521_addcarryx_u32(&x2107, &x2108, x2106, x2062, x2059); fiat_p521_addcarryx_u32(&x2109, &x2110, x2108, x2060, x2057); fiat_p521_addcarryx_u32(&x2111, &x2112, x2110, x2058, x2055); fiat_p521_addcarryx_u32(&x2113, &x2114, x2112, x2056, x2053); fiat_p521_addcarryx_u32(&x2115, &x2116, x2114, x2054, x2051); x2117 = (x2116 + x2052); fiat_p521_addcarryx_u32(&x2118, &x2119, 0x0, x2016, x2083); fiat_p521_addcarryx_u32(&x2120, &x2121, x2119, x2018, x2085); fiat_p521_addcarryx_u32(&x2122, &x2123, x2121, x2020, x2087); fiat_p521_addcarryx_u32(&x2124, &x2125, x2123, x2022, x2089); fiat_p521_addcarryx_u32(&x2126, &x2127, x2125, x2024, x2091); fiat_p521_addcarryx_u32(&x2128, &x2129, x2127, x2026, x2093); fiat_p521_addcarryx_u32(&x2130, &x2131, x2129, x2028, x2095); fiat_p521_addcarryx_u32(&x2132, &x2133, x2131, x2030, x2097); fiat_p521_addcarryx_u32(&x2134, &x2135, x2133, x2032, x2099); fiat_p521_addcarryx_u32(&x2136, &x2137, x2135, x2034, x2101); fiat_p521_addcarryx_u32(&x2138, &x2139, x2137, x2036, x2103); fiat_p521_addcarryx_u32(&x2140, &x2141, x2139, x2038, x2105); fiat_p521_addcarryx_u32(&x2142, &x2143, x2141, x2040, x2107); fiat_p521_addcarryx_u32(&x2144, &x2145, x2143, x2042, x2109); fiat_p521_addcarryx_u32(&x2146, &x2147, x2145, x2044, x2111); fiat_p521_addcarryx_u32(&x2148, &x2149, x2147, x2046, x2113); fiat_p521_addcarryx_u32(&x2150, &x2151, x2149, x2048, x2115); fiat_p521_addcarryx_u32(&x2152, &x2153, x2151, x2050, x2117); fiat_p521_mulx_u32(&x2154, &x2155, x2118, UINT16_C(0x1ff)); fiat_p521_mulx_u32(&x2156, &x2157, x2118, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2158, &x2159, x2118, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2160, &x2161, x2118, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2162, &x2163, x2118, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2164, &x2165, x2118, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2166, &x2167, x2118, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2168, &x2169, x2118, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2170, &x2171, x2118, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2172, &x2173, x2118, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2174, &x2175, x2118, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2176, &x2177, x2118, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2178, &x2179, x2118, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2180, &x2181, x2118, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2182, &x2183, x2118, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2184, &x2185, x2118, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2186, &x2187, x2118, UINT32_C(0xffffffff)); fiat_p521_addcarryx_u32(&x2188, &x2189, 0x0, x2187, x2184); fiat_p521_addcarryx_u32(&x2190, &x2191, x2189, x2185, x2182); fiat_p521_addcarryx_u32(&x2192, &x2193, x2191, x2183, x2180); fiat_p521_addcarryx_u32(&x2194, &x2195, x2193, x2181, x2178); fiat_p521_addcarryx_u32(&x2196, &x2197, x2195, x2179, x2176); fiat_p521_addcarryx_u32(&x2198, &x2199, x2197, x2177, x2174); fiat_p521_addcarryx_u32(&x2200, &x2201, x2199, x2175, x2172); fiat_p521_addcarryx_u32(&x2202, &x2203, x2201, x2173, x2170); fiat_p521_addcarryx_u32(&x2204, &x2205, x2203, x2171, x2168); fiat_p521_addcarryx_u32(&x2206, &x2207, x2205, x2169, x2166); fiat_p521_addcarryx_u32(&x2208, &x2209, x2207, x2167, x2164); fiat_p521_addcarryx_u32(&x2210, &x2211, x2209, x2165, x2162); fiat_p521_addcarryx_u32(&x2212, &x2213, x2211, x2163, x2160); fiat_p521_addcarryx_u32(&x2214, &x2215, x2213, x2161, x2158); fiat_p521_addcarryx_u32(&x2216, &x2217, x2215, x2159, x2156); fiat_p521_addcarryx_u32(&x2218, &x2219, x2217, x2157, x2154); x2220 = (x2219 + x2155); fiat_p521_addcarryx_u32(&x2221, &x2222, 0x0, x2118, x2186); fiat_p521_addcarryx_u32(&x2223, &x2224, x2222, x2120, x2188); fiat_p521_addcarryx_u32(&x2225, &x2226, x2224, x2122, x2190); fiat_p521_addcarryx_u32(&x2227, &x2228, x2226, x2124, x2192); fiat_p521_addcarryx_u32(&x2229, &x2230, x2228, x2126, x2194); fiat_p521_addcarryx_u32(&x2231, &x2232, x2230, x2128, x2196); fiat_p521_addcarryx_u32(&x2233, &x2234, x2232, x2130, x2198); fiat_p521_addcarryx_u32(&x2235, &x2236, x2234, x2132, x2200); fiat_p521_addcarryx_u32(&x2237, &x2238, x2236, x2134, x2202); fiat_p521_addcarryx_u32(&x2239, &x2240, x2238, x2136, x2204); fiat_p521_addcarryx_u32(&x2241, &x2242, x2240, x2138, x2206); fiat_p521_addcarryx_u32(&x2243, &x2244, x2242, x2140, x2208); fiat_p521_addcarryx_u32(&x2245, &x2246, x2244, x2142, x2210); fiat_p521_addcarryx_u32(&x2247, &x2248, x2246, x2144, x2212); fiat_p521_addcarryx_u32(&x2249, &x2250, x2248, x2146, x2214); fiat_p521_addcarryx_u32(&x2251, &x2252, x2250, x2148, x2216); fiat_p521_addcarryx_u32(&x2253, &x2254, x2252, x2150, x2218); fiat_p521_addcarryx_u32(&x2255, &x2256, x2254, x2152, x2220); x2257 = ((uint32_t)x2256 + x2153); fiat_p521_mulx_u32(&x2258, &x2259, x11, (arg2[16])); fiat_p521_mulx_u32(&x2260, &x2261, x11, (arg2[15])); fiat_p521_mulx_u32(&x2262, &x2263, x11, (arg2[14])); fiat_p521_mulx_u32(&x2264, &x2265, x11, (arg2[13])); fiat_p521_mulx_u32(&x2266, &x2267, x11, (arg2[12])); fiat_p521_mulx_u32(&x2268, &x2269, x11, (arg2[11])); fiat_p521_mulx_u32(&x2270, &x2271, x11, (arg2[10])); fiat_p521_mulx_u32(&x2272, &x2273, x11, (arg2[9])); fiat_p521_mulx_u32(&x2274, &x2275, x11, (arg2[8])); fiat_p521_mulx_u32(&x2276, &x2277, x11, (arg2[7])); fiat_p521_mulx_u32(&x2278, &x2279, x11, (arg2[6])); fiat_p521_mulx_u32(&x2280, &x2281, x11, (arg2[5])); fiat_p521_mulx_u32(&x2282, &x2283, x11, (arg2[4])); fiat_p521_mulx_u32(&x2284, &x2285, x11, (arg2[3])); fiat_p521_mulx_u32(&x2286, &x2287, x11, (arg2[2])); fiat_p521_mulx_u32(&x2288, &x2289, x11, (arg2[1])); fiat_p521_mulx_u32(&x2290, &x2291, x11, (arg2[0])); fiat_p521_addcarryx_u32(&x2292, &x2293, 0x0, x2291, x2288); fiat_p521_addcarryx_u32(&x2294, &x2295, x2293, x2289, x2286); fiat_p521_addcarryx_u32(&x2296, &x2297, x2295, x2287, x2284); fiat_p521_addcarryx_u32(&x2298, &x2299, x2297, x2285, x2282); fiat_p521_addcarryx_u32(&x2300, &x2301, x2299, x2283, x2280); fiat_p521_addcarryx_u32(&x2302, &x2303, x2301, x2281, x2278); fiat_p521_addcarryx_u32(&x2304, &x2305, x2303, x2279, x2276); fiat_p521_addcarryx_u32(&x2306, &x2307, x2305, x2277, x2274); fiat_p521_addcarryx_u32(&x2308, &x2309, x2307, x2275, x2272); fiat_p521_addcarryx_u32(&x2310, &x2311, x2309, x2273, x2270); fiat_p521_addcarryx_u32(&x2312, &x2313, x2311, x2271, x2268); fiat_p521_addcarryx_u32(&x2314, &x2315, x2313, x2269, x2266); fiat_p521_addcarryx_u32(&x2316, &x2317, x2315, x2267, x2264); fiat_p521_addcarryx_u32(&x2318, &x2319, x2317, x2265, x2262); fiat_p521_addcarryx_u32(&x2320, &x2321, x2319, x2263, x2260); fiat_p521_addcarryx_u32(&x2322, &x2323, x2321, x2261, x2258); x2324 = (x2323 + x2259); fiat_p521_addcarryx_u32(&x2325, &x2326, 0x0, x2223, x2290); fiat_p521_addcarryx_u32(&x2327, &x2328, x2326, x2225, x2292); fiat_p521_addcarryx_u32(&x2329, &x2330, x2328, x2227, x2294); fiat_p521_addcarryx_u32(&x2331, &x2332, x2330, x2229, x2296); fiat_p521_addcarryx_u32(&x2333, &x2334, x2332, x2231, x2298); fiat_p521_addcarryx_u32(&x2335, &x2336, x2334, x2233, x2300); fiat_p521_addcarryx_u32(&x2337, &x2338, x2336, x2235, x2302); fiat_p521_addcarryx_u32(&x2339, &x2340, x2338, x2237, x2304); fiat_p521_addcarryx_u32(&x2341, &x2342, x2340, x2239, x2306); fiat_p521_addcarryx_u32(&x2343, &x2344, x2342, x2241, x2308); fiat_p521_addcarryx_u32(&x2345, &x2346, x2344, x2243, x2310); fiat_p521_addcarryx_u32(&x2347, &x2348, x2346, x2245, x2312); fiat_p521_addcarryx_u32(&x2349, &x2350, x2348, x2247, x2314); fiat_p521_addcarryx_u32(&x2351, &x2352, x2350, x2249, x2316); fiat_p521_addcarryx_u32(&x2353, &x2354, x2352, x2251, x2318); fiat_p521_addcarryx_u32(&x2355, &x2356, x2354, x2253, x2320); fiat_p521_addcarryx_u32(&x2357, &x2358, x2356, x2255, x2322); fiat_p521_addcarryx_u32(&x2359, &x2360, x2358, x2257, x2324); fiat_p521_mulx_u32(&x2361, &x2362, x2325, UINT16_C(0x1ff)); fiat_p521_mulx_u32(&x2363, &x2364, x2325, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2365, &x2366, x2325, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2367, &x2368, x2325, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2369, &x2370, x2325, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2371, &x2372, x2325, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2373, &x2374, x2325, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2375, &x2376, x2325, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2377, &x2378, x2325, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2379, &x2380, x2325, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2381, &x2382, x2325, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2383, &x2384, x2325, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2385, &x2386, x2325, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2387, &x2388, x2325, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2389, &x2390, x2325, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2391, &x2392, x2325, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2393, &x2394, x2325, UINT32_C(0xffffffff)); fiat_p521_addcarryx_u32(&x2395, &x2396, 0x0, x2394, x2391); fiat_p521_addcarryx_u32(&x2397, &x2398, x2396, x2392, x2389); fiat_p521_addcarryx_u32(&x2399, &x2400, x2398, x2390, x2387); fiat_p521_addcarryx_u32(&x2401, &x2402, x2400, x2388, x2385); fiat_p521_addcarryx_u32(&x2403, &x2404, x2402, x2386, x2383); fiat_p521_addcarryx_u32(&x2405, &x2406, x2404, x2384, x2381); fiat_p521_addcarryx_u32(&x2407, &x2408, x2406, x2382, x2379); fiat_p521_addcarryx_u32(&x2409, &x2410, x2408, x2380, x2377); fiat_p521_addcarryx_u32(&x2411, &x2412, x2410, x2378, x2375); fiat_p521_addcarryx_u32(&x2413, &x2414, x2412, x2376, x2373); fiat_p521_addcarryx_u32(&x2415, &x2416, x2414, x2374, x2371); fiat_p521_addcarryx_u32(&x2417, &x2418, x2416, x2372, x2369); fiat_p521_addcarryx_u32(&x2419, &x2420, x2418, x2370, x2367); fiat_p521_addcarryx_u32(&x2421, &x2422, x2420, x2368, x2365); fiat_p521_addcarryx_u32(&x2423, &x2424, x2422, x2366, x2363); fiat_p521_addcarryx_u32(&x2425, &x2426, x2424, x2364, x2361); x2427 = (x2426 + x2362); fiat_p521_addcarryx_u32(&x2428, &x2429, 0x0, x2325, x2393); fiat_p521_addcarryx_u32(&x2430, &x2431, x2429, x2327, x2395); fiat_p521_addcarryx_u32(&x2432, &x2433, x2431, x2329, x2397); fiat_p521_addcarryx_u32(&x2434, &x2435, x2433, x2331, x2399); fiat_p521_addcarryx_u32(&x2436, &x2437, x2435, x2333, x2401); fiat_p521_addcarryx_u32(&x2438, &x2439, x2437, x2335, x2403); fiat_p521_addcarryx_u32(&x2440, &x2441, x2439, x2337, x2405); fiat_p521_addcarryx_u32(&x2442, &x2443, x2441, x2339, x2407); fiat_p521_addcarryx_u32(&x2444, &x2445, x2443, x2341, x2409); fiat_p521_addcarryx_u32(&x2446, &x2447, x2445, x2343, x2411); fiat_p521_addcarryx_u32(&x2448, &x2449, x2447, x2345, x2413); fiat_p521_addcarryx_u32(&x2450, &x2451, x2449, x2347, x2415); fiat_p521_addcarryx_u32(&x2452, &x2453, x2451, x2349, x2417); fiat_p521_addcarryx_u32(&x2454, &x2455, x2453, x2351, x2419); fiat_p521_addcarryx_u32(&x2456, &x2457, x2455, x2353, x2421); fiat_p521_addcarryx_u32(&x2458, &x2459, x2457, x2355, x2423); fiat_p521_addcarryx_u32(&x2460, &x2461, x2459, x2357, x2425); fiat_p521_addcarryx_u32(&x2462, &x2463, x2461, x2359, x2427); x2464 = ((uint32_t)x2463 + x2360); fiat_p521_mulx_u32(&x2465, &x2466, x12, (arg2[16])); fiat_p521_mulx_u32(&x2467, &x2468, x12, (arg2[15])); fiat_p521_mulx_u32(&x2469, &x2470, x12, (arg2[14])); fiat_p521_mulx_u32(&x2471, &x2472, x12, (arg2[13])); fiat_p521_mulx_u32(&x2473, &x2474, x12, (arg2[12])); fiat_p521_mulx_u32(&x2475, &x2476, x12, (arg2[11])); fiat_p521_mulx_u32(&x2477, &x2478, x12, (arg2[10])); fiat_p521_mulx_u32(&x2479, &x2480, x12, (arg2[9])); fiat_p521_mulx_u32(&x2481, &x2482, x12, (arg2[8])); fiat_p521_mulx_u32(&x2483, &x2484, x12, (arg2[7])); fiat_p521_mulx_u32(&x2485, &x2486, x12, (arg2[6])); fiat_p521_mulx_u32(&x2487, &x2488, x12, (arg2[5])); fiat_p521_mulx_u32(&x2489, &x2490, x12, (arg2[4])); fiat_p521_mulx_u32(&x2491, &x2492, x12, (arg2[3])); fiat_p521_mulx_u32(&x2493, &x2494, x12, (arg2[2])); fiat_p521_mulx_u32(&x2495, &x2496, x12, (arg2[1])); fiat_p521_mulx_u32(&x2497, &x2498, x12, (arg2[0])); fiat_p521_addcarryx_u32(&x2499, &x2500, 0x0, x2498, x2495); fiat_p521_addcarryx_u32(&x2501, &x2502, x2500, x2496, x2493); fiat_p521_addcarryx_u32(&x2503, &x2504, x2502, x2494, x2491); fiat_p521_addcarryx_u32(&x2505, &x2506, x2504, x2492, x2489); fiat_p521_addcarryx_u32(&x2507, &x2508, x2506, x2490, x2487); fiat_p521_addcarryx_u32(&x2509, &x2510, x2508, x2488, x2485); fiat_p521_addcarryx_u32(&x2511, &x2512, x2510, x2486, x2483); fiat_p521_addcarryx_u32(&x2513, &x2514, x2512, x2484, x2481); fiat_p521_addcarryx_u32(&x2515, &x2516, x2514, x2482, x2479); fiat_p521_addcarryx_u32(&x2517, &x2518, x2516, x2480, x2477); fiat_p521_addcarryx_u32(&x2519, &x2520, x2518, x2478, x2475); fiat_p521_addcarryx_u32(&x2521, &x2522, x2520, x2476, x2473); fiat_p521_addcarryx_u32(&x2523, &x2524, x2522, x2474, x2471); fiat_p521_addcarryx_u32(&x2525, &x2526, x2524, x2472, x2469); fiat_p521_addcarryx_u32(&x2527, &x2528, x2526, x2470, x2467); fiat_p521_addcarryx_u32(&x2529, &x2530, x2528, x2468, x2465); x2531 = (x2530 + x2466); fiat_p521_addcarryx_u32(&x2532, &x2533, 0x0, x2430, x2497); fiat_p521_addcarryx_u32(&x2534, &x2535, x2533, x2432, x2499); fiat_p521_addcarryx_u32(&x2536, &x2537, x2535, x2434, x2501); fiat_p521_addcarryx_u32(&x2538, &x2539, x2537, x2436, x2503); fiat_p521_addcarryx_u32(&x2540, &x2541, x2539, x2438, x2505); fiat_p521_addcarryx_u32(&x2542, &x2543, x2541, x2440, x2507); fiat_p521_addcarryx_u32(&x2544, &x2545, x2543, x2442, x2509); fiat_p521_addcarryx_u32(&x2546, &x2547, x2545, x2444, x2511); fiat_p521_addcarryx_u32(&x2548, &x2549, x2547, x2446, x2513); fiat_p521_addcarryx_u32(&x2550, &x2551, x2549, x2448, x2515); fiat_p521_addcarryx_u32(&x2552, &x2553, x2551, x2450, x2517); fiat_p521_addcarryx_u32(&x2554, &x2555, x2553, x2452, x2519); fiat_p521_addcarryx_u32(&x2556, &x2557, x2555, x2454, x2521); fiat_p521_addcarryx_u32(&x2558, &x2559, x2557, x2456, x2523); fiat_p521_addcarryx_u32(&x2560, &x2561, x2559, x2458, x2525); fiat_p521_addcarryx_u32(&x2562, &x2563, x2561, x2460, x2527); fiat_p521_addcarryx_u32(&x2564, &x2565, x2563, x2462, x2529); fiat_p521_addcarryx_u32(&x2566, &x2567, x2565, x2464, x2531); fiat_p521_mulx_u32(&x2568, &x2569, x2532, UINT16_C(0x1ff)); fiat_p521_mulx_u32(&x2570, &x2571, x2532, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2572, &x2573, x2532, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2574, &x2575, x2532, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2576, &x2577, x2532, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2578, &x2579, x2532, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2580, &x2581, x2532, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2582, &x2583, x2532, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2584, &x2585, x2532, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2586, &x2587, x2532, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2588, &x2589, x2532, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2590, &x2591, x2532, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2592, &x2593, x2532, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2594, &x2595, x2532, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2596, &x2597, x2532, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2598, &x2599, x2532, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2600, &x2601, x2532, UINT32_C(0xffffffff)); fiat_p521_addcarryx_u32(&x2602, &x2603, 0x0, x2601, x2598); fiat_p521_addcarryx_u32(&x2604, &x2605, x2603, x2599, x2596); fiat_p521_addcarryx_u32(&x2606, &x2607, x2605, x2597, x2594); fiat_p521_addcarryx_u32(&x2608, &x2609, x2607, x2595, x2592); fiat_p521_addcarryx_u32(&x2610, &x2611, x2609, x2593, x2590); fiat_p521_addcarryx_u32(&x2612, &x2613, x2611, x2591, x2588); fiat_p521_addcarryx_u32(&x2614, &x2615, x2613, x2589, x2586); fiat_p521_addcarryx_u32(&x2616, &x2617, x2615, x2587, x2584); fiat_p521_addcarryx_u32(&x2618, &x2619, x2617, x2585, x2582); fiat_p521_addcarryx_u32(&x2620, &x2621, x2619, x2583, x2580); fiat_p521_addcarryx_u32(&x2622, &x2623, x2621, x2581, x2578); fiat_p521_addcarryx_u32(&x2624, &x2625, x2623, x2579, x2576); fiat_p521_addcarryx_u32(&x2626, &x2627, x2625, x2577, x2574); fiat_p521_addcarryx_u32(&x2628, &x2629, x2627, x2575, x2572); fiat_p521_addcarryx_u32(&x2630, &x2631, x2629, x2573, x2570); fiat_p521_addcarryx_u32(&x2632, &x2633, x2631, x2571, x2568); x2634 = (x2633 + x2569); fiat_p521_addcarryx_u32(&x2635, &x2636, 0x0, x2532, x2600); fiat_p521_addcarryx_u32(&x2637, &x2638, x2636, x2534, x2602); fiat_p521_addcarryx_u32(&x2639, &x2640, x2638, x2536, x2604); fiat_p521_addcarryx_u32(&x2641, &x2642, x2640, x2538, x2606); fiat_p521_addcarryx_u32(&x2643, &x2644, x2642, x2540, x2608); fiat_p521_addcarryx_u32(&x2645, &x2646, x2644, x2542, x2610); fiat_p521_addcarryx_u32(&x2647, &x2648, x2646, x2544, x2612); fiat_p521_addcarryx_u32(&x2649, &x2650, x2648, x2546, x2614); fiat_p521_addcarryx_u32(&x2651, &x2652, x2650, x2548, x2616); fiat_p521_addcarryx_u32(&x2653, &x2654, x2652, x2550, x2618); fiat_p521_addcarryx_u32(&x2655, &x2656, x2654, x2552, x2620); fiat_p521_addcarryx_u32(&x2657, &x2658, x2656, x2554, x2622); fiat_p521_addcarryx_u32(&x2659, &x2660, x2658, x2556, x2624); fiat_p521_addcarryx_u32(&x2661, &x2662, x2660, x2558, x2626); fiat_p521_addcarryx_u32(&x2663, &x2664, x2662, x2560, x2628); fiat_p521_addcarryx_u32(&x2665, &x2666, x2664, x2562, x2630); fiat_p521_addcarryx_u32(&x2667, &x2668, x2666, x2564, x2632); fiat_p521_addcarryx_u32(&x2669, &x2670, x2668, x2566, x2634); x2671 = ((uint32_t)x2670 + x2567); fiat_p521_mulx_u32(&x2672, &x2673, x13, (arg2[16])); fiat_p521_mulx_u32(&x2674, &x2675, x13, (arg2[15])); fiat_p521_mulx_u32(&x2676, &x2677, x13, (arg2[14])); fiat_p521_mulx_u32(&x2678, &x2679, x13, (arg2[13])); fiat_p521_mulx_u32(&x2680, &x2681, x13, (arg2[12])); fiat_p521_mulx_u32(&x2682, &x2683, x13, (arg2[11])); fiat_p521_mulx_u32(&x2684, &x2685, x13, (arg2[10])); fiat_p521_mulx_u32(&x2686, &x2687, x13, (arg2[9])); fiat_p521_mulx_u32(&x2688, &x2689, x13, (arg2[8])); fiat_p521_mulx_u32(&x2690, &x2691, x13, (arg2[7])); fiat_p521_mulx_u32(&x2692, &x2693, x13, (arg2[6])); fiat_p521_mulx_u32(&x2694, &x2695, x13, (arg2[5])); fiat_p521_mulx_u32(&x2696, &x2697, x13, (arg2[4])); fiat_p521_mulx_u32(&x2698, &x2699, x13, (arg2[3])); fiat_p521_mulx_u32(&x2700, &x2701, x13, (arg2[2])); fiat_p521_mulx_u32(&x2702, &x2703, x13, (arg2[1])); fiat_p521_mulx_u32(&x2704, &x2705, x13, (arg2[0])); fiat_p521_addcarryx_u32(&x2706, &x2707, 0x0, x2705, x2702); fiat_p521_addcarryx_u32(&x2708, &x2709, x2707, x2703, x2700); fiat_p521_addcarryx_u32(&x2710, &x2711, x2709, x2701, x2698); fiat_p521_addcarryx_u32(&x2712, &x2713, x2711, x2699, x2696); fiat_p521_addcarryx_u32(&x2714, &x2715, x2713, x2697, x2694); fiat_p521_addcarryx_u32(&x2716, &x2717, x2715, x2695, x2692); fiat_p521_addcarryx_u32(&x2718, &x2719, x2717, x2693, x2690); fiat_p521_addcarryx_u32(&x2720, &x2721, x2719, x2691, x2688); fiat_p521_addcarryx_u32(&x2722, &x2723, x2721, x2689, x2686); fiat_p521_addcarryx_u32(&x2724, &x2725, x2723, x2687, x2684); fiat_p521_addcarryx_u32(&x2726, &x2727, x2725, x2685, x2682); fiat_p521_addcarryx_u32(&x2728, &x2729, x2727, x2683, x2680); fiat_p521_addcarryx_u32(&x2730, &x2731, x2729, x2681, x2678); fiat_p521_addcarryx_u32(&x2732, &x2733, x2731, x2679, x2676); fiat_p521_addcarryx_u32(&x2734, &x2735, x2733, x2677, x2674); fiat_p521_addcarryx_u32(&x2736, &x2737, x2735, x2675, x2672); x2738 = (x2737 + x2673); fiat_p521_addcarryx_u32(&x2739, &x2740, 0x0, x2637, x2704); fiat_p521_addcarryx_u32(&x2741, &x2742, x2740, x2639, x2706); fiat_p521_addcarryx_u32(&x2743, &x2744, x2742, x2641, x2708); fiat_p521_addcarryx_u32(&x2745, &x2746, x2744, x2643, x2710); fiat_p521_addcarryx_u32(&x2747, &x2748, x2746, x2645, x2712); fiat_p521_addcarryx_u32(&x2749, &x2750, x2748, x2647, x2714); fiat_p521_addcarryx_u32(&x2751, &x2752, x2750, x2649, x2716); fiat_p521_addcarryx_u32(&x2753, &x2754, x2752, x2651, x2718); fiat_p521_addcarryx_u32(&x2755, &x2756, x2754, x2653, x2720); fiat_p521_addcarryx_u32(&x2757, &x2758, x2756, x2655, x2722); fiat_p521_addcarryx_u32(&x2759, &x2760, x2758, x2657, x2724); fiat_p521_addcarryx_u32(&x2761, &x2762, x2760, x2659, x2726); fiat_p521_addcarryx_u32(&x2763, &x2764, x2762, x2661, x2728); fiat_p521_addcarryx_u32(&x2765, &x2766, x2764, x2663, x2730); fiat_p521_addcarryx_u32(&x2767, &x2768, x2766, x2665, x2732); fiat_p521_addcarryx_u32(&x2769, &x2770, x2768, x2667, x2734); fiat_p521_addcarryx_u32(&x2771, &x2772, x2770, x2669, x2736); fiat_p521_addcarryx_u32(&x2773, &x2774, x2772, x2671, x2738); fiat_p521_mulx_u32(&x2775, &x2776, x2739, UINT16_C(0x1ff)); fiat_p521_mulx_u32(&x2777, &x2778, x2739, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2779, &x2780, x2739, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2781, &x2782, x2739, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2783, &x2784, x2739, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2785, &x2786, x2739, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2787, &x2788, x2739, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2789, &x2790, x2739, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2791, &x2792, x2739, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2793, &x2794, x2739, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2795, &x2796, x2739, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2797, &x2798, x2739, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2799, &x2800, x2739, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2801, &x2802, x2739, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2803, &x2804, x2739, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2805, &x2806, x2739, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2807, &x2808, x2739, UINT32_C(0xffffffff)); fiat_p521_addcarryx_u32(&x2809, &x2810, 0x0, x2808, x2805); fiat_p521_addcarryx_u32(&x2811, &x2812, x2810, x2806, x2803); fiat_p521_addcarryx_u32(&x2813, &x2814, x2812, x2804, x2801); fiat_p521_addcarryx_u32(&x2815, &x2816, x2814, x2802, x2799); fiat_p521_addcarryx_u32(&x2817, &x2818, x2816, x2800, x2797); fiat_p521_addcarryx_u32(&x2819, &x2820, x2818, x2798, x2795); fiat_p521_addcarryx_u32(&x2821, &x2822, x2820, x2796, x2793); fiat_p521_addcarryx_u32(&x2823, &x2824, x2822, x2794, x2791); fiat_p521_addcarryx_u32(&x2825, &x2826, x2824, x2792, x2789); fiat_p521_addcarryx_u32(&x2827, &x2828, x2826, x2790, x2787); fiat_p521_addcarryx_u32(&x2829, &x2830, x2828, x2788, x2785); fiat_p521_addcarryx_u32(&x2831, &x2832, x2830, x2786, x2783); fiat_p521_addcarryx_u32(&x2833, &x2834, x2832, x2784, x2781); fiat_p521_addcarryx_u32(&x2835, &x2836, x2834, x2782, x2779); fiat_p521_addcarryx_u32(&x2837, &x2838, x2836, x2780, x2777); fiat_p521_addcarryx_u32(&x2839, &x2840, x2838, x2778, x2775); x2841 = (x2840 + x2776); fiat_p521_addcarryx_u32(&x2842, &x2843, 0x0, x2739, x2807); fiat_p521_addcarryx_u32(&x2844, &x2845, x2843, x2741, x2809); fiat_p521_addcarryx_u32(&x2846, &x2847, x2845, x2743, x2811); fiat_p521_addcarryx_u32(&x2848, &x2849, x2847, x2745, x2813); fiat_p521_addcarryx_u32(&x2850, &x2851, x2849, x2747, x2815); fiat_p521_addcarryx_u32(&x2852, &x2853, x2851, x2749, x2817); fiat_p521_addcarryx_u32(&x2854, &x2855, x2853, x2751, x2819); fiat_p521_addcarryx_u32(&x2856, &x2857, x2855, x2753, x2821); fiat_p521_addcarryx_u32(&x2858, &x2859, x2857, x2755, x2823); fiat_p521_addcarryx_u32(&x2860, &x2861, x2859, x2757, x2825); fiat_p521_addcarryx_u32(&x2862, &x2863, x2861, x2759, x2827); fiat_p521_addcarryx_u32(&x2864, &x2865, x2863, x2761, x2829); fiat_p521_addcarryx_u32(&x2866, &x2867, x2865, x2763, x2831); fiat_p521_addcarryx_u32(&x2868, &x2869, x2867, x2765, x2833); fiat_p521_addcarryx_u32(&x2870, &x2871, x2869, x2767, x2835); fiat_p521_addcarryx_u32(&x2872, &x2873, x2871, x2769, x2837); fiat_p521_addcarryx_u32(&x2874, &x2875, x2873, x2771, x2839); fiat_p521_addcarryx_u32(&x2876, &x2877, x2875, x2773, x2841); x2878 = ((uint32_t)x2877 + x2774); fiat_p521_mulx_u32(&x2879, &x2880, x14, (arg2[16])); fiat_p521_mulx_u32(&x2881, &x2882, x14, (arg2[15])); fiat_p521_mulx_u32(&x2883, &x2884, x14, (arg2[14])); fiat_p521_mulx_u32(&x2885, &x2886, x14, (arg2[13])); fiat_p521_mulx_u32(&x2887, &x2888, x14, (arg2[12])); fiat_p521_mulx_u32(&x2889, &x2890, x14, (arg2[11])); fiat_p521_mulx_u32(&x2891, &x2892, x14, (arg2[10])); fiat_p521_mulx_u32(&x2893, &x2894, x14, (arg2[9])); fiat_p521_mulx_u32(&x2895, &x2896, x14, (arg2[8])); fiat_p521_mulx_u32(&x2897, &x2898, x14, (arg2[7])); fiat_p521_mulx_u32(&x2899, &x2900, x14, (arg2[6])); fiat_p521_mulx_u32(&x2901, &x2902, x14, (arg2[5])); fiat_p521_mulx_u32(&x2903, &x2904, x14, (arg2[4])); fiat_p521_mulx_u32(&x2905, &x2906, x14, (arg2[3])); fiat_p521_mulx_u32(&x2907, &x2908, x14, (arg2[2])); fiat_p521_mulx_u32(&x2909, &x2910, x14, (arg2[1])); fiat_p521_mulx_u32(&x2911, &x2912, x14, (arg2[0])); fiat_p521_addcarryx_u32(&x2913, &x2914, 0x0, x2912, x2909); fiat_p521_addcarryx_u32(&x2915, &x2916, x2914, x2910, x2907); fiat_p521_addcarryx_u32(&x2917, &x2918, x2916, x2908, x2905); fiat_p521_addcarryx_u32(&x2919, &x2920, x2918, x2906, x2903); fiat_p521_addcarryx_u32(&x2921, &x2922, x2920, x2904, x2901); fiat_p521_addcarryx_u32(&x2923, &x2924, x2922, x2902, x2899); fiat_p521_addcarryx_u32(&x2925, &x2926, x2924, x2900, x2897); fiat_p521_addcarryx_u32(&x2927, &x2928, x2926, x2898, x2895); fiat_p521_addcarryx_u32(&x2929, &x2930, x2928, x2896, x2893); fiat_p521_addcarryx_u32(&x2931, &x2932, x2930, x2894, x2891); fiat_p521_addcarryx_u32(&x2933, &x2934, x2932, x2892, x2889); fiat_p521_addcarryx_u32(&x2935, &x2936, x2934, x2890, x2887); fiat_p521_addcarryx_u32(&x2937, &x2938, x2936, x2888, x2885); fiat_p521_addcarryx_u32(&x2939, &x2940, x2938, x2886, x2883); fiat_p521_addcarryx_u32(&x2941, &x2942, x2940, x2884, x2881); fiat_p521_addcarryx_u32(&x2943, &x2944, x2942, x2882, x2879); x2945 = (x2944 + x2880); fiat_p521_addcarryx_u32(&x2946, &x2947, 0x0, x2844, x2911); fiat_p521_addcarryx_u32(&x2948, &x2949, x2947, x2846, x2913); fiat_p521_addcarryx_u32(&x2950, &x2951, x2949, x2848, x2915); fiat_p521_addcarryx_u32(&x2952, &x2953, x2951, x2850, x2917); fiat_p521_addcarryx_u32(&x2954, &x2955, x2953, x2852, x2919); fiat_p521_addcarryx_u32(&x2956, &x2957, x2955, x2854, x2921); fiat_p521_addcarryx_u32(&x2958, &x2959, x2957, x2856, x2923); fiat_p521_addcarryx_u32(&x2960, &x2961, x2959, x2858, x2925); fiat_p521_addcarryx_u32(&x2962, &x2963, x2961, x2860, x2927); fiat_p521_addcarryx_u32(&x2964, &x2965, x2963, x2862, x2929); fiat_p521_addcarryx_u32(&x2966, &x2967, x2965, x2864, x2931); fiat_p521_addcarryx_u32(&x2968, &x2969, x2967, x2866, x2933); fiat_p521_addcarryx_u32(&x2970, &x2971, x2969, x2868, x2935); fiat_p521_addcarryx_u32(&x2972, &x2973, x2971, x2870, x2937); fiat_p521_addcarryx_u32(&x2974, &x2975, x2973, x2872, x2939); fiat_p521_addcarryx_u32(&x2976, &x2977, x2975, x2874, x2941); fiat_p521_addcarryx_u32(&x2978, &x2979, x2977, x2876, x2943); fiat_p521_addcarryx_u32(&x2980, &x2981, x2979, x2878, x2945); fiat_p521_mulx_u32(&x2982, &x2983, x2946, UINT16_C(0x1ff)); fiat_p521_mulx_u32(&x2984, &x2985, x2946, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2986, &x2987, x2946, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2988, &x2989, x2946, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2990, &x2991, x2946, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2992, &x2993, x2946, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2994, &x2995, x2946, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2996, &x2997, x2946, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2998, &x2999, x2946, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x3000, &x3001, x2946, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x3002, &x3003, x2946, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x3004, &x3005, x2946, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x3006, &x3007, x2946, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x3008, &x3009, x2946, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x3010, &x3011, x2946, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x3012, &x3013, x2946, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x3014, &x3015, x2946, UINT32_C(0xffffffff)); fiat_p521_addcarryx_u32(&x3016, &x3017, 0x0, x3015, x3012); fiat_p521_addcarryx_u32(&x3018, &x3019, x3017, x3013, x3010); fiat_p521_addcarryx_u32(&x3020, &x3021, x3019, x3011, x3008); fiat_p521_addcarryx_u32(&x3022, &x3023, x3021, x3009, x3006); fiat_p521_addcarryx_u32(&x3024, &x3025, x3023, x3007, x3004); fiat_p521_addcarryx_u32(&x3026, &x3027, x3025, x3005, x3002); fiat_p521_addcarryx_u32(&x3028, &x3029, x3027, x3003, x3000); fiat_p521_addcarryx_u32(&x3030, &x3031, x3029, x3001, x2998); fiat_p521_addcarryx_u32(&x3032, &x3033, x3031, x2999, x2996); fiat_p521_addcarryx_u32(&x3034, &x3035, x3033, x2997, x2994); fiat_p521_addcarryx_u32(&x3036, &x3037, x3035, x2995, x2992); fiat_p521_addcarryx_u32(&x3038, &x3039, x3037, x2993, x2990); fiat_p521_addcarryx_u32(&x3040, &x3041, x3039, x2991, x2988); fiat_p521_addcarryx_u32(&x3042, &x3043, x3041, x2989, x2986); fiat_p521_addcarryx_u32(&x3044, &x3045, x3043, x2987, x2984); fiat_p521_addcarryx_u32(&x3046, &x3047, x3045, x2985, x2982); x3048 = (x3047 + x2983); fiat_p521_addcarryx_u32(&x3049, &x3050, 0x0, x2946, x3014); fiat_p521_addcarryx_u32(&x3051, &x3052, x3050, x2948, x3016); fiat_p521_addcarryx_u32(&x3053, &x3054, x3052, x2950, x3018); fiat_p521_addcarryx_u32(&x3055, &x3056, x3054, x2952, x3020); fiat_p521_addcarryx_u32(&x3057, &x3058, x3056, x2954, x3022); fiat_p521_addcarryx_u32(&x3059, &x3060, x3058, x2956, x3024); fiat_p521_addcarryx_u32(&x3061, &x3062, x3060, x2958, x3026); fiat_p521_addcarryx_u32(&x3063, &x3064, x3062, x2960, x3028); fiat_p521_addcarryx_u32(&x3065, &x3066, x3064, x2962, x3030); fiat_p521_addcarryx_u32(&x3067, &x3068, x3066, x2964, x3032); fiat_p521_addcarryx_u32(&x3069, &x3070, x3068, x2966, x3034); fiat_p521_addcarryx_u32(&x3071, &x3072, x3070, x2968, x3036); fiat_p521_addcarryx_u32(&x3073, &x3074, x3072, x2970, x3038); fiat_p521_addcarryx_u32(&x3075, &x3076, x3074, x2972, x3040); fiat_p521_addcarryx_u32(&x3077, &x3078, x3076, x2974, x3042); fiat_p521_addcarryx_u32(&x3079, &x3080, x3078, x2976, x3044); fiat_p521_addcarryx_u32(&x3081, &x3082, x3080, x2978, x3046); fiat_p521_addcarryx_u32(&x3083, &x3084, x3082, x2980, x3048); x3085 = ((uint32_t)x3084 + x2981); fiat_p521_mulx_u32(&x3086, &x3087, x15, (arg2[16])); fiat_p521_mulx_u32(&x3088, &x3089, x15, (arg2[15])); fiat_p521_mulx_u32(&x3090, &x3091, x15, (arg2[14])); fiat_p521_mulx_u32(&x3092, &x3093, x15, (arg2[13])); fiat_p521_mulx_u32(&x3094, &x3095, x15, (arg2[12])); fiat_p521_mulx_u32(&x3096, &x3097, x15, (arg2[11])); fiat_p521_mulx_u32(&x3098, &x3099, x15, (arg2[10])); fiat_p521_mulx_u32(&x3100, &x3101, x15, (arg2[9])); fiat_p521_mulx_u32(&x3102, &x3103, x15, (arg2[8])); fiat_p521_mulx_u32(&x3104, &x3105, x15, (arg2[7])); fiat_p521_mulx_u32(&x3106, &x3107, x15, (arg2[6])); fiat_p521_mulx_u32(&x3108, &x3109, x15, (arg2[5])); fiat_p521_mulx_u32(&x3110, &x3111, x15, (arg2[4])); fiat_p521_mulx_u32(&x3112, &x3113, x15, (arg2[3])); fiat_p521_mulx_u32(&x3114, &x3115, x15, (arg2[2])); fiat_p521_mulx_u32(&x3116, &x3117, x15, (arg2[1])); fiat_p521_mulx_u32(&x3118, &x3119, x15, (arg2[0])); fiat_p521_addcarryx_u32(&x3120, &x3121, 0x0, x3119, x3116); fiat_p521_addcarryx_u32(&x3122, &x3123, x3121, x3117, x3114); fiat_p521_addcarryx_u32(&x3124, &x3125, x3123, x3115, x3112); fiat_p521_addcarryx_u32(&x3126, &x3127, x3125, x3113, x3110); fiat_p521_addcarryx_u32(&x3128, &x3129, x3127, x3111, x3108); fiat_p521_addcarryx_u32(&x3130, &x3131, x3129, x3109, x3106); fiat_p521_addcarryx_u32(&x3132, &x3133, x3131, x3107, x3104); fiat_p521_addcarryx_u32(&x3134, &x3135, x3133, x3105, x3102); fiat_p521_addcarryx_u32(&x3136, &x3137, x3135, x3103, x3100); fiat_p521_addcarryx_u32(&x3138, &x3139, x3137, x3101, x3098); fiat_p521_addcarryx_u32(&x3140, &x3141, x3139, x3099, x3096); fiat_p521_addcarryx_u32(&x3142, &x3143, x3141, x3097, x3094); fiat_p521_addcarryx_u32(&x3144, &x3145, x3143, x3095, x3092); fiat_p521_addcarryx_u32(&x3146, &x3147, x3145, x3093, x3090); fiat_p521_addcarryx_u32(&x3148, &x3149, x3147, x3091, x3088); fiat_p521_addcarryx_u32(&x3150, &x3151, x3149, x3089, x3086); x3152 = (x3151 + x3087); fiat_p521_addcarryx_u32(&x3153, &x3154, 0x0, x3051, x3118); fiat_p521_addcarryx_u32(&x3155, &x3156, x3154, x3053, x3120); fiat_p521_addcarryx_u32(&x3157, &x3158, x3156, x3055, x3122); fiat_p521_addcarryx_u32(&x3159, &x3160, x3158, x3057, x3124); fiat_p521_addcarryx_u32(&x3161, &x3162, x3160, x3059, x3126); fiat_p521_addcarryx_u32(&x3163, &x3164, x3162, x3061, x3128); fiat_p521_addcarryx_u32(&x3165, &x3166, x3164, x3063, x3130); fiat_p521_addcarryx_u32(&x3167, &x3168, x3166, x3065, x3132); fiat_p521_addcarryx_u32(&x3169, &x3170, x3168, x3067, x3134); fiat_p521_addcarryx_u32(&x3171, &x3172, x3170, x3069, x3136); fiat_p521_addcarryx_u32(&x3173, &x3174, x3172, x3071, x3138); fiat_p521_addcarryx_u32(&x3175, &x3176, x3174, x3073, x3140); fiat_p521_addcarryx_u32(&x3177, &x3178, x3176, x3075, x3142); fiat_p521_addcarryx_u32(&x3179, &x3180, x3178, x3077, x3144); fiat_p521_addcarryx_u32(&x3181, &x3182, x3180, x3079, x3146); fiat_p521_addcarryx_u32(&x3183, &x3184, x3182, x3081, x3148); fiat_p521_addcarryx_u32(&x3185, &x3186, x3184, x3083, x3150); fiat_p521_addcarryx_u32(&x3187, &x3188, x3186, x3085, x3152); fiat_p521_mulx_u32(&x3189, &x3190, x3153, UINT16_C(0x1ff)); fiat_p521_mulx_u32(&x3191, &x3192, x3153, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x3193, &x3194, x3153, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x3195, &x3196, x3153, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x3197, &x3198, x3153, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x3199, &x3200, x3153, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x3201, &x3202, x3153, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x3203, &x3204, x3153, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x3205, &x3206, x3153, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x3207, &x3208, x3153, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x3209, &x3210, x3153, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x3211, &x3212, x3153, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x3213, &x3214, x3153, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x3215, &x3216, x3153, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x3217, &x3218, x3153, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x3219, &x3220, x3153, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x3221, &x3222, x3153, UINT32_C(0xffffffff)); fiat_p521_addcarryx_u32(&x3223, &x3224, 0x0, x3222, x3219); fiat_p521_addcarryx_u32(&x3225, &x3226, x3224, x3220, x3217); fiat_p521_addcarryx_u32(&x3227, &x3228, x3226, x3218, x3215); fiat_p521_addcarryx_u32(&x3229, &x3230, x3228, x3216, x3213); fiat_p521_addcarryx_u32(&x3231, &x3232, x3230, x3214, x3211); fiat_p521_addcarryx_u32(&x3233, &x3234, x3232, x3212, x3209); fiat_p521_addcarryx_u32(&x3235, &x3236, x3234, x3210, x3207); fiat_p521_addcarryx_u32(&x3237, &x3238, x3236, x3208, x3205); fiat_p521_addcarryx_u32(&x3239, &x3240, x3238, x3206, x3203); fiat_p521_addcarryx_u32(&x3241, &x3242, x3240, x3204, x3201); fiat_p521_addcarryx_u32(&x3243, &x3244, x3242, x3202, x3199); fiat_p521_addcarryx_u32(&x3245, &x3246, x3244, x3200, x3197); fiat_p521_addcarryx_u32(&x3247, &x3248, x3246, x3198, x3195); fiat_p521_addcarryx_u32(&x3249, &x3250, x3248, x3196, x3193); fiat_p521_addcarryx_u32(&x3251, &x3252, x3250, x3194, x3191); fiat_p521_addcarryx_u32(&x3253, &x3254, x3252, x3192, x3189); x3255 = (x3254 + x3190); fiat_p521_addcarryx_u32(&x3256, &x3257, 0x0, x3153, x3221); fiat_p521_addcarryx_u32(&x3258, &x3259, x3257, x3155, x3223); fiat_p521_addcarryx_u32(&x3260, &x3261, x3259, x3157, x3225); fiat_p521_addcarryx_u32(&x3262, &x3263, x3261, x3159, x3227); fiat_p521_addcarryx_u32(&x3264, &x3265, x3263, x3161, x3229); fiat_p521_addcarryx_u32(&x3266, &x3267, x3265, x3163, x3231); fiat_p521_addcarryx_u32(&x3268, &x3269, x3267, x3165, x3233); fiat_p521_addcarryx_u32(&x3270, &x3271, x3269, x3167, x3235); fiat_p521_addcarryx_u32(&x3272, &x3273, x3271, x3169, x3237); fiat_p521_addcarryx_u32(&x3274, &x3275, x3273, x3171, x3239); fiat_p521_addcarryx_u32(&x3276, &x3277, x3275, x3173, x3241); fiat_p521_addcarryx_u32(&x3278, &x3279, x3277, x3175, x3243); fiat_p521_addcarryx_u32(&x3280, &x3281, x3279, x3177, x3245); fiat_p521_addcarryx_u32(&x3282, &x3283, x3281, x3179, x3247); fiat_p521_addcarryx_u32(&x3284, &x3285, x3283, x3181, x3249); fiat_p521_addcarryx_u32(&x3286, &x3287, x3285, x3183, x3251); fiat_p521_addcarryx_u32(&x3288, &x3289, x3287, x3185, x3253); fiat_p521_addcarryx_u32(&x3290, &x3291, x3289, x3187, x3255); x3292 = ((uint32_t)x3291 + x3188); fiat_p521_mulx_u32(&x3293, &x3294, x16, (arg2[16])); fiat_p521_mulx_u32(&x3295, &x3296, x16, (arg2[15])); fiat_p521_mulx_u32(&x3297, &x3298, x16, (arg2[14])); fiat_p521_mulx_u32(&x3299, &x3300, x16, (arg2[13])); fiat_p521_mulx_u32(&x3301, &x3302, x16, (arg2[12])); fiat_p521_mulx_u32(&x3303, &x3304, x16, (arg2[11])); fiat_p521_mulx_u32(&x3305, &x3306, x16, (arg2[10])); fiat_p521_mulx_u32(&x3307, &x3308, x16, (arg2[9])); fiat_p521_mulx_u32(&x3309, &x3310, x16, (arg2[8])); fiat_p521_mulx_u32(&x3311, &x3312, x16, (arg2[7])); fiat_p521_mulx_u32(&x3313, &x3314, x16, (arg2[6])); fiat_p521_mulx_u32(&x3315, &x3316, x16, (arg2[5])); fiat_p521_mulx_u32(&x3317, &x3318, x16, (arg2[4])); fiat_p521_mulx_u32(&x3319, &x3320, x16, (arg2[3])); fiat_p521_mulx_u32(&x3321, &x3322, x16, (arg2[2])); fiat_p521_mulx_u32(&x3323, &x3324, x16, (arg2[1])); fiat_p521_mulx_u32(&x3325, &x3326, x16, (arg2[0])); fiat_p521_addcarryx_u32(&x3327, &x3328, 0x0, x3326, x3323); fiat_p521_addcarryx_u32(&x3329, &x3330, x3328, x3324, x3321); fiat_p521_addcarryx_u32(&x3331, &x3332, x3330, x3322, x3319); fiat_p521_addcarryx_u32(&x3333, &x3334, x3332, x3320, x3317); fiat_p521_addcarryx_u32(&x3335, &x3336, x3334, x3318, x3315); fiat_p521_addcarryx_u32(&x3337, &x3338, x3336, x3316, x3313); fiat_p521_addcarryx_u32(&x3339, &x3340, x3338, x3314, x3311); fiat_p521_addcarryx_u32(&x3341, &x3342, x3340, x3312, x3309); fiat_p521_addcarryx_u32(&x3343, &x3344, x3342, x3310, x3307); fiat_p521_addcarryx_u32(&x3345, &x3346, x3344, x3308, x3305); fiat_p521_addcarryx_u32(&x3347, &x3348, x3346, x3306, x3303); fiat_p521_addcarryx_u32(&x3349, &x3350, x3348, x3304, x3301); fiat_p521_addcarryx_u32(&x3351, &x3352, x3350, x3302, x3299); fiat_p521_addcarryx_u32(&x3353, &x3354, x3352, x3300, x3297); fiat_p521_addcarryx_u32(&x3355, &x3356, x3354, x3298, x3295); fiat_p521_addcarryx_u32(&x3357, &x3358, x3356, x3296, x3293); x3359 = (x3358 + x3294); fiat_p521_addcarryx_u32(&x3360, &x3361, 0x0, x3258, x3325); fiat_p521_addcarryx_u32(&x3362, &x3363, x3361, x3260, x3327); fiat_p521_addcarryx_u32(&x3364, &x3365, x3363, x3262, x3329); fiat_p521_addcarryx_u32(&x3366, &x3367, x3365, x3264, x3331); fiat_p521_addcarryx_u32(&x3368, &x3369, x3367, x3266, x3333); fiat_p521_addcarryx_u32(&x3370, &x3371, x3369, x3268, x3335); fiat_p521_addcarryx_u32(&x3372, &x3373, x3371, x3270, x3337); fiat_p521_addcarryx_u32(&x3374, &x3375, x3373, x3272, x3339); fiat_p521_addcarryx_u32(&x3376, &x3377, x3375, x3274, x3341); fiat_p521_addcarryx_u32(&x3378, &x3379, x3377, x3276, x3343); fiat_p521_addcarryx_u32(&x3380, &x3381, x3379, x3278, x3345); fiat_p521_addcarryx_u32(&x3382, &x3383, x3381, x3280, x3347); fiat_p521_addcarryx_u32(&x3384, &x3385, x3383, x3282, x3349); fiat_p521_addcarryx_u32(&x3386, &x3387, x3385, x3284, x3351); fiat_p521_addcarryx_u32(&x3388, &x3389, x3387, x3286, x3353); fiat_p521_addcarryx_u32(&x3390, &x3391, x3389, x3288, x3355); fiat_p521_addcarryx_u32(&x3392, &x3393, x3391, x3290, x3357); fiat_p521_addcarryx_u32(&x3394, &x3395, x3393, x3292, x3359); fiat_p521_mulx_u32(&x3396, &x3397, x3360, UINT16_C(0x1ff)); fiat_p521_mulx_u32(&x3398, &x3399, x3360, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x3400, &x3401, x3360, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x3402, &x3403, x3360, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x3404, &x3405, x3360, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x3406, &x3407, x3360, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x3408, &x3409, x3360, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x3410, &x3411, x3360, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x3412, &x3413, x3360, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x3414, &x3415, x3360, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x3416, &x3417, x3360, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x3418, &x3419, x3360, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x3420, &x3421, x3360, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x3422, &x3423, x3360, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x3424, &x3425, x3360, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x3426, &x3427, x3360, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x3428, &x3429, x3360, UINT32_C(0xffffffff)); fiat_p521_addcarryx_u32(&x3430, &x3431, 0x0, x3429, x3426); fiat_p521_addcarryx_u32(&x3432, &x3433, x3431, x3427, x3424); fiat_p521_addcarryx_u32(&x3434, &x3435, x3433, x3425, x3422); fiat_p521_addcarryx_u32(&x3436, &x3437, x3435, x3423, x3420); fiat_p521_addcarryx_u32(&x3438, &x3439, x3437, x3421, x3418); fiat_p521_addcarryx_u32(&x3440, &x3441, x3439, x3419, x3416); fiat_p521_addcarryx_u32(&x3442, &x3443, x3441, x3417, x3414); fiat_p521_addcarryx_u32(&x3444, &x3445, x3443, x3415, x3412); fiat_p521_addcarryx_u32(&x3446, &x3447, x3445, x3413, x3410); fiat_p521_addcarryx_u32(&x3448, &x3449, x3447, x3411, x3408); fiat_p521_addcarryx_u32(&x3450, &x3451, x3449, x3409, x3406); fiat_p521_addcarryx_u32(&x3452, &x3453, x3451, x3407, x3404); fiat_p521_addcarryx_u32(&x3454, &x3455, x3453, x3405, x3402); fiat_p521_addcarryx_u32(&x3456, &x3457, x3455, x3403, x3400); fiat_p521_addcarryx_u32(&x3458, &x3459, x3457, x3401, x3398); fiat_p521_addcarryx_u32(&x3460, &x3461, x3459, x3399, x3396); x3462 = (x3461 + x3397); fiat_p521_addcarryx_u32(&x3463, &x3464, 0x0, x3360, x3428); fiat_p521_addcarryx_u32(&x3465, &x3466, x3464, x3362, x3430); fiat_p521_addcarryx_u32(&x3467, &x3468, x3466, x3364, x3432); fiat_p521_addcarryx_u32(&x3469, &x3470, x3468, x3366, x3434); fiat_p521_addcarryx_u32(&x3471, &x3472, x3470, x3368, x3436); fiat_p521_addcarryx_u32(&x3473, &x3474, x3472, x3370, x3438); fiat_p521_addcarryx_u32(&x3475, &x3476, x3474, x3372, x3440); fiat_p521_addcarryx_u32(&x3477, &x3478, x3476, x3374, x3442); fiat_p521_addcarryx_u32(&x3479, &x3480, x3478, x3376, x3444); fiat_p521_addcarryx_u32(&x3481, &x3482, x3480, x3378, x3446); fiat_p521_addcarryx_u32(&x3483, &x3484, x3482, x3380, x3448); fiat_p521_addcarryx_u32(&x3485, &x3486, x3484, x3382, x3450); fiat_p521_addcarryx_u32(&x3487, &x3488, x3486, x3384, x3452); fiat_p521_addcarryx_u32(&x3489, &x3490, x3488, x3386, x3454); fiat_p521_addcarryx_u32(&x3491, &x3492, x3490, x3388, x3456); fiat_p521_addcarryx_u32(&x3493, &x3494, x3492, x3390, x3458); fiat_p521_addcarryx_u32(&x3495, &x3496, x3494, x3392, x3460); fiat_p521_addcarryx_u32(&x3497, &x3498, x3496, x3394, x3462); x3499 = ((uint32_t)x3498 + x3395); fiat_p521_subborrowx_u32(&x3500, &x3501, 0x0, x3465, UINT32_C(0xffffffff)); fiat_p521_subborrowx_u32(&x3502, &x3503, x3501, x3467, UINT32_C(0xffffffff)); fiat_p521_subborrowx_u32(&x3504, &x3505, x3503, x3469, UINT32_C(0xffffffff)); fiat_p521_subborrowx_u32(&x3506, &x3507, x3505, x3471, UINT32_C(0xffffffff)); fiat_p521_subborrowx_u32(&x3508, &x3509, x3507, x3473, UINT32_C(0xffffffff)); fiat_p521_subborrowx_u32(&x3510, &x3511, x3509, x3475, UINT32_C(0xffffffff)); fiat_p521_subborrowx_u32(&x3512, &x3513, x3511, x3477, UINT32_C(0xffffffff)); fiat_p521_subborrowx_u32(&x3514, &x3515, x3513, x3479, UINT32_C(0xffffffff)); fiat_p521_subborrowx_u32(&x3516, &x3517, x3515, x3481, UINT32_C(0xffffffff)); fiat_p521_subborrowx_u32(&x3518, &x3519, x3517, x3483, UINT32_C(0xffffffff)); fiat_p521_subborrowx_u32(&x3520, &x3521, x3519, x3485, UINT32_C(0xffffffff)); fiat_p521_subborrowx_u32(&x3522, &x3523, x3521, x3487, UINT32_C(0xffffffff)); fiat_p521_subborrowx_u32(&x3524, &x3525, x3523, x3489, UINT32_C(0xffffffff)); fiat_p521_subborrowx_u32(&x3526, &x3527, x3525, x3491, UINT32_C(0xffffffff)); fiat_p521_subborrowx_u32(&x3528, &x3529, x3527, x3493, UINT32_C(0xffffffff)); fiat_p521_subborrowx_u32(&x3530, &x3531, x3529, x3495, UINT32_C(0xffffffff)); fiat_p521_subborrowx_u32(&x3532, &x3533, x3531, x3497, UINT16_C(0x1ff)); fiat_p521_subborrowx_u32(&x3534, &x3535, x3533, x3499, 0x0); fiat_p521_cmovznz_u32(&x3536, x3535, x3500, x3465); fiat_p521_cmovznz_u32(&x3537, x3535, x3502, x3467); fiat_p521_cmovznz_u32(&x3538, x3535, x3504, x3469); fiat_p521_cmovznz_u32(&x3539, x3535, x3506, x3471); fiat_p521_cmovznz_u32(&x3540, x3535, x3508, x3473); fiat_p521_cmovznz_u32(&x3541, x3535, x3510, x3475); fiat_p521_cmovznz_u32(&x3542, x3535, x3512, x3477); fiat_p521_cmovznz_u32(&x3543, x3535, x3514, x3479); fiat_p521_cmovznz_u32(&x3544, x3535, x3516, x3481); fiat_p521_cmovznz_u32(&x3545, x3535, x3518, x3483); fiat_p521_cmovznz_u32(&x3546, x3535, x3520, x3485); fiat_p521_cmovznz_u32(&x3547, x3535, x3522, x3487); fiat_p521_cmovznz_u32(&x3548, x3535, x3524, x3489); fiat_p521_cmovznz_u32(&x3549, x3535, x3526, x3491); fiat_p521_cmovznz_u32(&x3550, x3535, x3528, x3493); fiat_p521_cmovznz_u32(&x3551, x3535, x3530, x3495); fiat_p521_cmovznz_u32(&x3552, x3535, x3532, x3497); out1[0] = x3536; out1[1] = x3537; out1[2] = x3538; out1[3] = x3539; out1[4] = x3540; out1[5] = x3541; out1[6] = x3542; out1[7] = x3543; out1[8] = x3544; out1[9] = x3545; out1[10] = x3546; out1[11] = x3547; out1[12] = x3548; out1[13] = x3549; out1[14] = x3550; out1[15] = x3551; out1[16] = x3552; } /* * The function fiat_p521_square squares a field element in the Montgomery domain. * * Preconditions: * 0 ≤ eval arg1 < m * Postconditions: * eval (from_montgomery out1) mod m = (eval (from_montgomery arg1) * eval (from_montgomery arg1)) mod m * 0 ≤ eval out1 < m * */ static void fiat_p521_square(fiat_p521_montgomery_domain_field_element out1, const fiat_p521_montgomery_domain_field_element arg1) { uint32_t x1; uint32_t x2; uint32_t x3; uint32_t x4; uint32_t x5; uint32_t x6; uint32_t x7; uint32_t x8; uint32_t x9; uint32_t x10; uint32_t x11; uint32_t x12; uint32_t x13; uint32_t x14; uint32_t x15; uint32_t x16; uint32_t x17; uint32_t x18; uint32_t x19; uint32_t x20; uint32_t x21; uint32_t x22; uint32_t x23; uint32_t x24; uint32_t x25; uint32_t x26; uint32_t x27; uint32_t x28; uint32_t x29; uint32_t x30; uint32_t x31; uint32_t x32; uint32_t x33; uint32_t x34; uint32_t x35; uint32_t x36; uint32_t x37; uint32_t x38; uint32_t x39; uint32_t x40; uint32_t x41; uint32_t x42; uint32_t x43; uint32_t x44; uint32_t x45; uint32_t x46; uint32_t x47; uint32_t x48; uint32_t x49; uint32_t x50; uint32_t x51; uint32_t x52; fiat_p521_uint1 x53; uint32_t x54; fiat_p521_uint1 x55; uint32_t x56; fiat_p521_uint1 x57; uint32_t x58; fiat_p521_uint1 x59; uint32_t x60; fiat_p521_uint1 x61; uint32_t x62; fiat_p521_uint1 x63; uint32_t x64; fiat_p521_uint1 x65; uint32_t x66; fiat_p521_uint1 x67; uint32_t x68; fiat_p521_uint1 x69; uint32_t x70; fiat_p521_uint1 x71; uint32_t x72; fiat_p521_uint1 x73; uint32_t x74; fiat_p521_uint1 x75; uint32_t x76; fiat_p521_uint1 x77; uint32_t x78; fiat_p521_uint1 x79; uint32_t x80; fiat_p521_uint1 x81; uint32_t x82; fiat_p521_uint1 x83; uint32_t x84; uint32_t x85; uint32_t x86; uint32_t x87; uint32_t x88; uint32_t x89; uint32_t x90; uint32_t x91; uint32_t x92; uint32_t x93; uint32_t x94; uint32_t x95; uint32_t x96; uint32_t x97; uint32_t x98; uint32_t x99; uint32_t x100; uint32_t x101; uint32_t x102; uint32_t x103; uint32_t x104; uint32_t x105; uint32_t x106; uint32_t x107; uint32_t x108; uint32_t x109; uint32_t x110; uint32_t x111; uint32_t x112; uint32_t x113; uint32_t x114; uint32_t x115; uint32_t x116; uint32_t x117; uint32_t x118; uint32_t x119; fiat_p521_uint1 x120; uint32_t x121; fiat_p521_uint1 x122; uint32_t x123; fiat_p521_uint1 x124; uint32_t x125; fiat_p521_uint1 x126; uint32_t x127; fiat_p521_uint1 x128; uint32_t x129; fiat_p521_uint1 x130; uint32_t x131; fiat_p521_uint1 x132; uint32_t x133; fiat_p521_uint1 x134; uint32_t x135; fiat_p521_uint1 x136; uint32_t x137; fiat_p521_uint1 x138; uint32_t x139; fiat_p521_uint1 x140; uint32_t x141; fiat_p521_uint1 x142; uint32_t x143; fiat_p521_uint1 x144; uint32_t x145; fiat_p521_uint1 x146; uint32_t x147; fiat_p521_uint1 x148; uint32_t x149; fiat_p521_uint1 x150; uint32_t x151; uint32_t x152; fiat_p521_uint1 x153; uint32_t x154; fiat_p521_uint1 x155; uint32_t x156; fiat_p521_uint1 x157; uint32_t x158; fiat_p521_uint1 x159; uint32_t x160; fiat_p521_uint1 x161; uint32_t x162; fiat_p521_uint1 x163; uint32_t x164; fiat_p521_uint1 x165; uint32_t x166; fiat_p521_uint1 x167; uint32_t x168; fiat_p521_uint1 x169; uint32_t x170; fiat_p521_uint1 x171; uint32_t x172; fiat_p521_uint1 x173; uint32_t x174; fiat_p521_uint1 x175; uint32_t x176; fiat_p521_uint1 x177; uint32_t x178; fiat_p521_uint1 x179; uint32_t x180; fiat_p521_uint1 x181; uint32_t x182; fiat_p521_uint1 x183; uint32_t x184; fiat_p521_uint1 x185; uint32_t x186; fiat_p521_uint1 x187; uint32_t x188; uint32_t x189; uint32_t x190; uint32_t x191; uint32_t x192; uint32_t x193; uint32_t x194; uint32_t x195; uint32_t x196; uint32_t x197; uint32_t x198; uint32_t x199; uint32_t x200; uint32_t x201; uint32_t x202; uint32_t x203; uint32_t x204; uint32_t x205; uint32_t x206; uint32_t x207; uint32_t x208; uint32_t x209; uint32_t x210; uint32_t x211; uint32_t x212; uint32_t x213; uint32_t x214; uint32_t x215; uint32_t x216; uint32_t x217; uint32_t x218; uint32_t x219; uint32_t x220; uint32_t x221; uint32_t x222; fiat_p521_uint1 x223; uint32_t x224; fiat_p521_uint1 x225; uint32_t x226; fiat_p521_uint1 x227; uint32_t x228; fiat_p521_uint1 x229; uint32_t x230; fiat_p521_uint1 x231; uint32_t x232; fiat_p521_uint1 x233; uint32_t x234; fiat_p521_uint1 x235; uint32_t x236; fiat_p521_uint1 x237; uint32_t x238; fiat_p521_uint1 x239; uint32_t x240; fiat_p521_uint1 x241; uint32_t x242; fiat_p521_uint1 x243; uint32_t x244; fiat_p521_uint1 x245; uint32_t x246; fiat_p521_uint1 x247; uint32_t x248; fiat_p521_uint1 x249; uint32_t x250; fiat_p521_uint1 x251; uint32_t x252; fiat_p521_uint1 x253; uint32_t x254; uint32_t x255; fiat_p521_uint1 x256; uint32_t x257; fiat_p521_uint1 x258; uint32_t x259; fiat_p521_uint1 x260; uint32_t x261; fiat_p521_uint1 x262; uint32_t x263; fiat_p521_uint1 x264; uint32_t x265; fiat_p521_uint1 x266; uint32_t x267; fiat_p521_uint1 x268; uint32_t x269; fiat_p521_uint1 x270; uint32_t x271; fiat_p521_uint1 x272; uint32_t x273; fiat_p521_uint1 x274; uint32_t x275; fiat_p521_uint1 x276; uint32_t x277; fiat_p521_uint1 x278; uint32_t x279; fiat_p521_uint1 x280; uint32_t x281; fiat_p521_uint1 x282; uint32_t x283; fiat_p521_uint1 x284; uint32_t x285; fiat_p521_uint1 x286; uint32_t x287; fiat_p521_uint1 x288; uint32_t x289; fiat_p521_uint1 x290; uint32_t x291; uint32_t x292; uint32_t x293; uint32_t x294; uint32_t x295; uint32_t x296; uint32_t x297; uint32_t x298; uint32_t x299; uint32_t x300; uint32_t x301; uint32_t x302; uint32_t x303; uint32_t x304; uint32_t x305; uint32_t x306; uint32_t x307; uint32_t x308; uint32_t x309; uint32_t x310; uint32_t x311; uint32_t x312; uint32_t x313; uint32_t x314; uint32_t x315; uint32_t x316; uint32_t x317; uint32_t x318; uint32_t x319; uint32_t x320; uint32_t x321; uint32_t x322; uint32_t x323; uint32_t x324; uint32_t x325; fiat_p521_uint1 x326; uint32_t x327; fiat_p521_uint1 x328; uint32_t x329; fiat_p521_uint1 x330; uint32_t x331; fiat_p521_uint1 x332; uint32_t x333; fiat_p521_uint1 x334; uint32_t x335; fiat_p521_uint1 x336; uint32_t x337; fiat_p521_uint1 x338; uint32_t x339; fiat_p521_uint1 x340; uint32_t x341; fiat_p521_uint1 x342; uint32_t x343; fiat_p521_uint1 x344; uint32_t x345; fiat_p521_uint1 x346; uint32_t x347; fiat_p521_uint1 x348; uint32_t x349; fiat_p521_uint1 x350; uint32_t x351; fiat_p521_uint1 x352; uint32_t x353; fiat_p521_uint1 x354; uint32_t x355; fiat_p521_uint1 x356; uint32_t x357; uint32_t x358; fiat_p521_uint1 x359; uint32_t x360; fiat_p521_uint1 x361; uint32_t x362; fiat_p521_uint1 x363; uint32_t x364; fiat_p521_uint1 x365; uint32_t x366; fiat_p521_uint1 x367; uint32_t x368; fiat_p521_uint1 x369; uint32_t x370; fiat_p521_uint1 x371; uint32_t x372; fiat_p521_uint1 x373; uint32_t x374; fiat_p521_uint1 x375; uint32_t x376; fiat_p521_uint1 x377; uint32_t x378; fiat_p521_uint1 x379; uint32_t x380; fiat_p521_uint1 x381; uint32_t x382; fiat_p521_uint1 x383; uint32_t x384; fiat_p521_uint1 x385; uint32_t x386; fiat_p521_uint1 x387; uint32_t x388; fiat_p521_uint1 x389; uint32_t x390; fiat_p521_uint1 x391; uint32_t x392; fiat_p521_uint1 x393; uint32_t x394; uint32_t x395; uint32_t x396; uint32_t x397; uint32_t x398; uint32_t x399; uint32_t x400; uint32_t x401; uint32_t x402; uint32_t x403; uint32_t x404; uint32_t x405; uint32_t x406; uint32_t x407; uint32_t x408; uint32_t x409; uint32_t x410; uint32_t x411; uint32_t x412; uint32_t x413; uint32_t x414; uint32_t x415; uint32_t x416; uint32_t x417; uint32_t x418; uint32_t x419; uint32_t x420; uint32_t x421; uint32_t x422; uint32_t x423; uint32_t x424; uint32_t x425; uint32_t x426; uint32_t x427; uint32_t x428; uint32_t x429; fiat_p521_uint1 x430; uint32_t x431; fiat_p521_uint1 x432; uint32_t x433; fiat_p521_uint1 x434; uint32_t x435; fiat_p521_uint1 x436; uint32_t x437; fiat_p521_uint1 x438; uint32_t x439; fiat_p521_uint1 x440; uint32_t x441; fiat_p521_uint1 x442; uint32_t x443; fiat_p521_uint1 x444; uint32_t x445; fiat_p521_uint1 x446; uint32_t x447; fiat_p521_uint1 x448; uint32_t x449; fiat_p521_uint1 x450; uint32_t x451; fiat_p521_uint1 x452; uint32_t x453; fiat_p521_uint1 x454; uint32_t x455; fiat_p521_uint1 x456; uint32_t x457; fiat_p521_uint1 x458; uint32_t x459; fiat_p521_uint1 x460; uint32_t x461; uint32_t x462; fiat_p521_uint1 x463; uint32_t x464; fiat_p521_uint1 x465; uint32_t x466; fiat_p521_uint1 x467; uint32_t x468; fiat_p521_uint1 x469; uint32_t x470; fiat_p521_uint1 x471; uint32_t x472; fiat_p521_uint1 x473; uint32_t x474; fiat_p521_uint1 x475; uint32_t x476; fiat_p521_uint1 x477; uint32_t x478; fiat_p521_uint1 x479; uint32_t x480; fiat_p521_uint1 x481; uint32_t x482; fiat_p521_uint1 x483; uint32_t x484; fiat_p521_uint1 x485; uint32_t x486; fiat_p521_uint1 x487; uint32_t x488; fiat_p521_uint1 x489; uint32_t x490; fiat_p521_uint1 x491; uint32_t x492; fiat_p521_uint1 x493; uint32_t x494; fiat_p521_uint1 x495; uint32_t x496; fiat_p521_uint1 x497; uint32_t x498; uint32_t x499; uint32_t x500; uint32_t x501; uint32_t x502; uint32_t x503; uint32_t x504; uint32_t x505; uint32_t x506; uint32_t x507; uint32_t x508; uint32_t x509; uint32_t x510; uint32_t x511; uint32_t x512; uint32_t x513; uint32_t x514; uint32_t x515; uint32_t x516; uint32_t x517; uint32_t x518; uint32_t x519; uint32_t x520; uint32_t x521; uint32_t x522; uint32_t x523; uint32_t x524; uint32_t x525; uint32_t x526; uint32_t x527; uint32_t x528; uint32_t x529; uint32_t x530; uint32_t x531; uint32_t x532; fiat_p521_uint1 x533; uint32_t x534; fiat_p521_uint1 x535; uint32_t x536; fiat_p521_uint1 x537; uint32_t x538; fiat_p521_uint1 x539; uint32_t x540; fiat_p521_uint1 x541; uint32_t x542; fiat_p521_uint1 x543; uint32_t x544; fiat_p521_uint1 x545; uint32_t x546; fiat_p521_uint1 x547; uint32_t x548; fiat_p521_uint1 x549; uint32_t x550; fiat_p521_uint1 x551; uint32_t x552; fiat_p521_uint1 x553; uint32_t x554; fiat_p521_uint1 x555; uint32_t x556; fiat_p521_uint1 x557; uint32_t x558; fiat_p521_uint1 x559; uint32_t x560; fiat_p521_uint1 x561; uint32_t x562; fiat_p521_uint1 x563; uint32_t x564; uint32_t x565; fiat_p521_uint1 x566; uint32_t x567; fiat_p521_uint1 x568; uint32_t x569; fiat_p521_uint1 x570; uint32_t x571; fiat_p521_uint1 x572; uint32_t x573; fiat_p521_uint1 x574; uint32_t x575; fiat_p521_uint1 x576; uint32_t x577; fiat_p521_uint1 x578; uint32_t x579; fiat_p521_uint1 x580; uint32_t x581; fiat_p521_uint1 x582; uint32_t x583; fiat_p521_uint1 x584; uint32_t x585; fiat_p521_uint1 x586; uint32_t x587; fiat_p521_uint1 x588; uint32_t x589; fiat_p521_uint1 x590; uint32_t x591; fiat_p521_uint1 x592; uint32_t x593; fiat_p521_uint1 x594; uint32_t x595; fiat_p521_uint1 x596; uint32_t x597; fiat_p521_uint1 x598; uint32_t x599; fiat_p521_uint1 x600; uint32_t x601; uint32_t x602; uint32_t x603; uint32_t x604; uint32_t x605; uint32_t x606; uint32_t x607; uint32_t x608; uint32_t x609; uint32_t x610; uint32_t x611; uint32_t x612; uint32_t x613; uint32_t x614; uint32_t x615; uint32_t x616; uint32_t x617; uint32_t x618; uint32_t x619; uint32_t x620; uint32_t x621; uint32_t x622; uint32_t x623; uint32_t x624; uint32_t x625; uint32_t x626; uint32_t x627; uint32_t x628; uint32_t x629; uint32_t x630; uint32_t x631; uint32_t x632; uint32_t x633; uint32_t x634; uint32_t x635; uint32_t x636; fiat_p521_uint1 x637; uint32_t x638; fiat_p521_uint1 x639; uint32_t x640; fiat_p521_uint1 x641; uint32_t x642; fiat_p521_uint1 x643; uint32_t x644; fiat_p521_uint1 x645; uint32_t x646; fiat_p521_uint1 x647; uint32_t x648; fiat_p521_uint1 x649; uint32_t x650; fiat_p521_uint1 x651; uint32_t x652; fiat_p521_uint1 x653; uint32_t x654; fiat_p521_uint1 x655; uint32_t x656; fiat_p521_uint1 x657; uint32_t x658; fiat_p521_uint1 x659; uint32_t x660; fiat_p521_uint1 x661; uint32_t x662; fiat_p521_uint1 x663; uint32_t x664; fiat_p521_uint1 x665; uint32_t x666; fiat_p521_uint1 x667; uint32_t x668; uint32_t x669; fiat_p521_uint1 x670; uint32_t x671; fiat_p521_uint1 x672; uint32_t x673; fiat_p521_uint1 x674; uint32_t x675; fiat_p521_uint1 x676; uint32_t x677; fiat_p521_uint1 x678; uint32_t x679; fiat_p521_uint1 x680; uint32_t x681; fiat_p521_uint1 x682; uint32_t x683; fiat_p521_uint1 x684; uint32_t x685; fiat_p521_uint1 x686; uint32_t x687; fiat_p521_uint1 x688; uint32_t x689; fiat_p521_uint1 x690; uint32_t x691; fiat_p521_uint1 x692; uint32_t x693; fiat_p521_uint1 x694; uint32_t x695; fiat_p521_uint1 x696; uint32_t x697; fiat_p521_uint1 x698; uint32_t x699; fiat_p521_uint1 x700; uint32_t x701; fiat_p521_uint1 x702; uint32_t x703; fiat_p521_uint1 x704; uint32_t x705; uint32_t x706; uint32_t x707; uint32_t x708; uint32_t x709; uint32_t x710; uint32_t x711; uint32_t x712; uint32_t x713; uint32_t x714; uint32_t x715; uint32_t x716; uint32_t x717; uint32_t x718; uint32_t x719; uint32_t x720; uint32_t x721; uint32_t x722; uint32_t x723; uint32_t x724; uint32_t x725; uint32_t x726; uint32_t x727; uint32_t x728; uint32_t x729; uint32_t x730; uint32_t x731; uint32_t x732; uint32_t x733; uint32_t x734; uint32_t x735; uint32_t x736; uint32_t x737; uint32_t x738; uint32_t x739; fiat_p521_uint1 x740; uint32_t x741; fiat_p521_uint1 x742; uint32_t x743; fiat_p521_uint1 x744; uint32_t x745; fiat_p521_uint1 x746; uint32_t x747; fiat_p521_uint1 x748; uint32_t x749; fiat_p521_uint1 x750; uint32_t x751; fiat_p521_uint1 x752; uint32_t x753; fiat_p521_uint1 x754; uint32_t x755; fiat_p521_uint1 x756; uint32_t x757; fiat_p521_uint1 x758; uint32_t x759; fiat_p521_uint1 x760; uint32_t x761; fiat_p521_uint1 x762; uint32_t x763; fiat_p521_uint1 x764; uint32_t x765; fiat_p521_uint1 x766; uint32_t x767; fiat_p521_uint1 x768; uint32_t x769; fiat_p521_uint1 x770; uint32_t x771; uint32_t x772; fiat_p521_uint1 x773; uint32_t x774; fiat_p521_uint1 x775; uint32_t x776; fiat_p521_uint1 x777; uint32_t x778; fiat_p521_uint1 x779; uint32_t x780; fiat_p521_uint1 x781; uint32_t x782; fiat_p521_uint1 x783; uint32_t x784; fiat_p521_uint1 x785; uint32_t x786; fiat_p521_uint1 x787; uint32_t x788; fiat_p521_uint1 x789; uint32_t x790; fiat_p521_uint1 x791; uint32_t x792; fiat_p521_uint1 x793; uint32_t x794; fiat_p521_uint1 x795; uint32_t x796; fiat_p521_uint1 x797; uint32_t x798; fiat_p521_uint1 x799; uint32_t x800; fiat_p521_uint1 x801; uint32_t x802; fiat_p521_uint1 x803; uint32_t x804; fiat_p521_uint1 x805; uint32_t x806; fiat_p521_uint1 x807; uint32_t x808; uint32_t x809; uint32_t x810; uint32_t x811; uint32_t x812; uint32_t x813; uint32_t x814; uint32_t x815; uint32_t x816; uint32_t x817; uint32_t x818; uint32_t x819; uint32_t x820; uint32_t x821; uint32_t x822; uint32_t x823; uint32_t x824; uint32_t x825; uint32_t x826; uint32_t x827; uint32_t x828; uint32_t x829; uint32_t x830; uint32_t x831; uint32_t x832; uint32_t x833; uint32_t x834; uint32_t x835; uint32_t x836; uint32_t x837; uint32_t x838; uint32_t x839; uint32_t x840; uint32_t x841; uint32_t x842; uint32_t x843; fiat_p521_uint1 x844; uint32_t x845; fiat_p521_uint1 x846; uint32_t x847; fiat_p521_uint1 x848; uint32_t x849; fiat_p521_uint1 x850; uint32_t x851; fiat_p521_uint1 x852; uint32_t x853; fiat_p521_uint1 x854; uint32_t x855; fiat_p521_uint1 x856; uint32_t x857; fiat_p521_uint1 x858; uint32_t x859; fiat_p521_uint1 x860; uint32_t x861; fiat_p521_uint1 x862; uint32_t x863; fiat_p521_uint1 x864; uint32_t x865; fiat_p521_uint1 x866; uint32_t x867; fiat_p521_uint1 x868; uint32_t x869; fiat_p521_uint1 x870; uint32_t x871; fiat_p521_uint1 x872; uint32_t x873; fiat_p521_uint1 x874; uint32_t x875; uint32_t x876; fiat_p521_uint1 x877; uint32_t x878; fiat_p521_uint1 x879; uint32_t x880; fiat_p521_uint1 x881; uint32_t x882; fiat_p521_uint1 x883; uint32_t x884; fiat_p521_uint1 x885; uint32_t x886; fiat_p521_uint1 x887; uint32_t x888; fiat_p521_uint1 x889; uint32_t x890; fiat_p521_uint1 x891; uint32_t x892; fiat_p521_uint1 x893; uint32_t x894; fiat_p521_uint1 x895; uint32_t x896; fiat_p521_uint1 x897; uint32_t x898; fiat_p521_uint1 x899; uint32_t x900; fiat_p521_uint1 x901; uint32_t x902; fiat_p521_uint1 x903; uint32_t x904; fiat_p521_uint1 x905; uint32_t x906; fiat_p521_uint1 x907; uint32_t x908; fiat_p521_uint1 x909; uint32_t x910; fiat_p521_uint1 x911; uint32_t x912; uint32_t x913; uint32_t x914; uint32_t x915; uint32_t x916; uint32_t x917; uint32_t x918; uint32_t x919; uint32_t x920; uint32_t x921; uint32_t x922; uint32_t x923; uint32_t x924; uint32_t x925; uint32_t x926; uint32_t x927; uint32_t x928; uint32_t x929; uint32_t x930; uint32_t x931; uint32_t x932; uint32_t x933; uint32_t x934; uint32_t x935; uint32_t x936; uint32_t x937; uint32_t x938; uint32_t x939; uint32_t x940; uint32_t x941; uint32_t x942; uint32_t x943; uint32_t x944; uint32_t x945; uint32_t x946; fiat_p521_uint1 x947; uint32_t x948; fiat_p521_uint1 x949; uint32_t x950; fiat_p521_uint1 x951; uint32_t x952; fiat_p521_uint1 x953; uint32_t x954; fiat_p521_uint1 x955; uint32_t x956; fiat_p521_uint1 x957; uint32_t x958; fiat_p521_uint1 x959; uint32_t x960; fiat_p521_uint1 x961; uint32_t x962; fiat_p521_uint1 x963; uint32_t x964; fiat_p521_uint1 x965; uint32_t x966; fiat_p521_uint1 x967; uint32_t x968; fiat_p521_uint1 x969; uint32_t x970; fiat_p521_uint1 x971; uint32_t x972; fiat_p521_uint1 x973; uint32_t x974; fiat_p521_uint1 x975; uint32_t x976; fiat_p521_uint1 x977; uint32_t x978; uint32_t x979; fiat_p521_uint1 x980; uint32_t x981; fiat_p521_uint1 x982; uint32_t x983; fiat_p521_uint1 x984; uint32_t x985; fiat_p521_uint1 x986; uint32_t x987; fiat_p521_uint1 x988; uint32_t x989; fiat_p521_uint1 x990; uint32_t x991; fiat_p521_uint1 x992; uint32_t x993; fiat_p521_uint1 x994; uint32_t x995; fiat_p521_uint1 x996; uint32_t x997; fiat_p521_uint1 x998; uint32_t x999; fiat_p521_uint1 x1000; uint32_t x1001; fiat_p521_uint1 x1002; uint32_t x1003; fiat_p521_uint1 x1004; uint32_t x1005; fiat_p521_uint1 x1006; uint32_t x1007; fiat_p521_uint1 x1008; uint32_t x1009; fiat_p521_uint1 x1010; uint32_t x1011; fiat_p521_uint1 x1012; uint32_t x1013; fiat_p521_uint1 x1014; uint32_t x1015; uint32_t x1016; uint32_t x1017; uint32_t x1018; uint32_t x1019; uint32_t x1020; uint32_t x1021; uint32_t x1022; uint32_t x1023; uint32_t x1024; uint32_t x1025; uint32_t x1026; uint32_t x1027; uint32_t x1028; uint32_t x1029; uint32_t x1030; uint32_t x1031; uint32_t x1032; uint32_t x1033; uint32_t x1034; uint32_t x1035; uint32_t x1036; uint32_t x1037; uint32_t x1038; uint32_t x1039; uint32_t x1040; uint32_t x1041; uint32_t x1042; uint32_t x1043; uint32_t x1044; uint32_t x1045; uint32_t x1046; uint32_t x1047; uint32_t x1048; uint32_t x1049; uint32_t x1050; fiat_p521_uint1 x1051; uint32_t x1052; fiat_p521_uint1 x1053; uint32_t x1054; fiat_p521_uint1 x1055; uint32_t x1056; fiat_p521_uint1 x1057; uint32_t x1058; fiat_p521_uint1 x1059; uint32_t x1060; fiat_p521_uint1 x1061; uint32_t x1062; fiat_p521_uint1 x1063; uint32_t x1064; fiat_p521_uint1 x1065; uint32_t x1066; fiat_p521_uint1 x1067; uint32_t x1068; fiat_p521_uint1 x1069; uint32_t x1070; fiat_p521_uint1 x1071; uint32_t x1072; fiat_p521_uint1 x1073; uint32_t x1074; fiat_p521_uint1 x1075; uint32_t x1076; fiat_p521_uint1 x1077; uint32_t x1078; fiat_p521_uint1 x1079; uint32_t x1080; fiat_p521_uint1 x1081; uint32_t x1082; uint32_t x1083; fiat_p521_uint1 x1084; uint32_t x1085; fiat_p521_uint1 x1086; uint32_t x1087; fiat_p521_uint1 x1088; uint32_t x1089; fiat_p521_uint1 x1090; uint32_t x1091; fiat_p521_uint1 x1092; uint32_t x1093; fiat_p521_uint1 x1094; uint32_t x1095; fiat_p521_uint1 x1096; uint32_t x1097; fiat_p521_uint1 x1098; uint32_t x1099; fiat_p521_uint1 x1100; uint32_t x1101; fiat_p521_uint1 x1102; uint32_t x1103; fiat_p521_uint1 x1104; uint32_t x1105; fiat_p521_uint1 x1106; uint32_t x1107; fiat_p521_uint1 x1108; uint32_t x1109; fiat_p521_uint1 x1110; uint32_t x1111; fiat_p521_uint1 x1112; uint32_t x1113; fiat_p521_uint1 x1114; uint32_t x1115; fiat_p521_uint1 x1116; uint32_t x1117; fiat_p521_uint1 x1118; uint32_t x1119; uint32_t x1120; uint32_t x1121; uint32_t x1122; uint32_t x1123; uint32_t x1124; uint32_t x1125; uint32_t x1126; uint32_t x1127; uint32_t x1128; uint32_t x1129; uint32_t x1130; uint32_t x1131; uint32_t x1132; uint32_t x1133; uint32_t x1134; uint32_t x1135; uint32_t x1136; uint32_t x1137; uint32_t x1138; uint32_t x1139; uint32_t x1140; uint32_t x1141; uint32_t x1142; uint32_t x1143; uint32_t x1144; uint32_t x1145; uint32_t x1146; uint32_t x1147; uint32_t x1148; uint32_t x1149; uint32_t x1150; uint32_t x1151; uint32_t x1152; uint32_t x1153; fiat_p521_uint1 x1154; uint32_t x1155; fiat_p521_uint1 x1156; uint32_t x1157; fiat_p521_uint1 x1158; uint32_t x1159; fiat_p521_uint1 x1160; uint32_t x1161; fiat_p521_uint1 x1162; uint32_t x1163; fiat_p521_uint1 x1164; uint32_t x1165; fiat_p521_uint1 x1166; uint32_t x1167; fiat_p521_uint1 x1168; uint32_t x1169; fiat_p521_uint1 x1170; uint32_t x1171; fiat_p521_uint1 x1172; uint32_t x1173; fiat_p521_uint1 x1174; uint32_t x1175; fiat_p521_uint1 x1176; uint32_t x1177; fiat_p521_uint1 x1178; uint32_t x1179; fiat_p521_uint1 x1180; uint32_t x1181; fiat_p521_uint1 x1182; uint32_t x1183; fiat_p521_uint1 x1184; uint32_t x1185; uint32_t x1186; fiat_p521_uint1 x1187; uint32_t x1188; fiat_p521_uint1 x1189; uint32_t x1190; fiat_p521_uint1 x1191; uint32_t x1192; fiat_p521_uint1 x1193; uint32_t x1194; fiat_p521_uint1 x1195; uint32_t x1196; fiat_p521_uint1 x1197; uint32_t x1198; fiat_p521_uint1 x1199; uint32_t x1200; fiat_p521_uint1 x1201; uint32_t x1202; fiat_p521_uint1 x1203; uint32_t x1204; fiat_p521_uint1 x1205; uint32_t x1206; fiat_p521_uint1 x1207; uint32_t x1208; fiat_p521_uint1 x1209; uint32_t x1210; fiat_p521_uint1 x1211; uint32_t x1212; fiat_p521_uint1 x1213; uint32_t x1214; fiat_p521_uint1 x1215; uint32_t x1216; fiat_p521_uint1 x1217; uint32_t x1218; fiat_p521_uint1 x1219; uint32_t x1220; fiat_p521_uint1 x1221; uint32_t x1222; uint32_t x1223; uint32_t x1224; uint32_t x1225; uint32_t x1226; uint32_t x1227; uint32_t x1228; uint32_t x1229; uint32_t x1230; uint32_t x1231; uint32_t x1232; uint32_t x1233; uint32_t x1234; uint32_t x1235; uint32_t x1236; uint32_t x1237; uint32_t x1238; uint32_t x1239; uint32_t x1240; uint32_t x1241; uint32_t x1242; uint32_t x1243; uint32_t x1244; uint32_t x1245; uint32_t x1246; uint32_t x1247; uint32_t x1248; uint32_t x1249; uint32_t x1250; uint32_t x1251; uint32_t x1252; uint32_t x1253; uint32_t x1254; uint32_t x1255; uint32_t x1256; uint32_t x1257; fiat_p521_uint1 x1258; uint32_t x1259; fiat_p521_uint1 x1260; uint32_t x1261; fiat_p521_uint1 x1262; uint32_t x1263; fiat_p521_uint1 x1264; uint32_t x1265; fiat_p521_uint1 x1266; uint32_t x1267; fiat_p521_uint1 x1268; uint32_t x1269; fiat_p521_uint1 x1270; uint32_t x1271; fiat_p521_uint1 x1272; uint32_t x1273; fiat_p521_uint1 x1274; uint32_t x1275; fiat_p521_uint1 x1276; uint32_t x1277; fiat_p521_uint1 x1278; uint32_t x1279; fiat_p521_uint1 x1280; uint32_t x1281; fiat_p521_uint1 x1282; uint32_t x1283; fiat_p521_uint1 x1284; uint32_t x1285; fiat_p521_uint1 x1286; uint32_t x1287; fiat_p521_uint1 x1288; uint32_t x1289; uint32_t x1290; fiat_p521_uint1 x1291; uint32_t x1292; fiat_p521_uint1 x1293; uint32_t x1294; fiat_p521_uint1 x1295; uint32_t x1296; fiat_p521_uint1 x1297; uint32_t x1298; fiat_p521_uint1 x1299; uint32_t x1300; fiat_p521_uint1 x1301; uint32_t x1302; fiat_p521_uint1 x1303; uint32_t x1304; fiat_p521_uint1 x1305; uint32_t x1306; fiat_p521_uint1 x1307; uint32_t x1308; fiat_p521_uint1 x1309; uint32_t x1310; fiat_p521_uint1 x1311; uint32_t x1312; fiat_p521_uint1 x1313; uint32_t x1314; fiat_p521_uint1 x1315; uint32_t x1316; fiat_p521_uint1 x1317; uint32_t x1318; fiat_p521_uint1 x1319; uint32_t x1320; fiat_p521_uint1 x1321; uint32_t x1322; fiat_p521_uint1 x1323; uint32_t x1324; fiat_p521_uint1 x1325; uint32_t x1326; uint32_t x1327; uint32_t x1328; uint32_t x1329; uint32_t x1330; uint32_t x1331; uint32_t x1332; uint32_t x1333; uint32_t x1334; uint32_t x1335; uint32_t x1336; uint32_t x1337; uint32_t x1338; uint32_t x1339; uint32_t x1340; uint32_t x1341; uint32_t x1342; uint32_t x1343; uint32_t x1344; uint32_t x1345; uint32_t x1346; uint32_t x1347; uint32_t x1348; uint32_t x1349; uint32_t x1350; uint32_t x1351; uint32_t x1352; uint32_t x1353; uint32_t x1354; uint32_t x1355; uint32_t x1356; uint32_t x1357; uint32_t x1358; uint32_t x1359; uint32_t x1360; fiat_p521_uint1 x1361; uint32_t x1362; fiat_p521_uint1 x1363; uint32_t x1364; fiat_p521_uint1 x1365; uint32_t x1366; fiat_p521_uint1 x1367; uint32_t x1368; fiat_p521_uint1 x1369; uint32_t x1370; fiat_p521_uint1 x1371; uint32_t x1372; fiat_p521_uint1 x1373; uint32_t x1374; fiat_p521_uint1 x1375; uint32_t x1376; fiat_p521_uint1 x1377; uint32_t x1378; fiat_p521_uint1 x1379; uint32_t x1380; fiat_p521_uint1 x1381; uint32_t x1382; fiat_p521_uint1 x1383; uint32_t x1384; fiat_p521_uint1 x1385; uint32_t x1386; fiat_p521_uint1 x1387; uint32_t x1388; fiat_p521_uint1 x1389; uint32_t x1390; fiat_p521_uint1 x1391; uint32_t x1392; uint32_t x1393; fiat_p521_uint1 x1394; uint32_t x1395; fiat_p521_uint1 x1396; uint32_t x1397; fiat_p521_uint1 x1398; uint32_t x1399; fiat_p521_uint1 x1400; uint32_t x1401; fiat_p521_uint1 x1402; uint32_t x1403; fiat_p521_uint1 x1404; uint32_t x1405; fiat_p521_uint1 x1406; uint32_t x1407; fiat_p521_uint1 x1408; uint32_t x1409; fiat_p521_uint1 x1410; uint32_t x1411; fiat_p521_uint1 x1412; uint32_t x1413; fiat_p521_uint1 x1414; uint32_t x1415; fiat_p521_uint1 x1416; uint32_t x1417; fiat_p521_uint1 x1418; uint32_t x1419; fiat_p521_uint1 x1420; uint32_t x1421; fiat_p521_uint1 x1422; uint32_t x1423; fiat_p521_uint1 x1424; uint32_t x1425; fiat_p521_uint1 x1426; uint32_t x1427; fiat_p521_uint1 x1428; uint32_t x1429; uint32_t x1430; uint32_t x1431; uint32_t x1432; uint32_t x1433; uint32_t x1434; uint32_t x1435; uint32_t x1436; uint32_t x1437; uint32_t x1438; uint32_t x1439; uint32_t x1440; uint32_t x1441; uint32_t x1442; uint32_t x1443; uint32_t x1444; uint32_t x1445; uint32_t x1446; uint32_t x1447; uint32_t x1448; uint32_t x1449; uint32_t x1450; uint32_t x1451; uint32_t x1452; uint32_t x1453; uint32_t x1454; uint32_t x1455; uint32_t x1456; uint32_t x1457; uint32_t x1458; uint32_t x1459; uint32_t x1460; uint32_t x1461; uint32_t x1462; uint32_t x1463; uint32_t x1464; fiat_p521_uint1 x1465; uint32_t x1466; fiat_p521_uint1 x1467; uint32_t x1468; fiat_p521_uint1 x1469; uint32_t x1470; fiat_p521_uint1 x1471; uint32_t x1472; fiat_p521_uint1 x1473; uint32_t x1474; fiat_p521_uint1 x1475; uint32_t x1476; fiat_p521_uint1 x1477; uint32_t x1478; fiat_p521_uint1 x1479; uint32_t x1480; fiat_p521_uint1 x1481; uint32_t x1482; fiat_p521_uint1 x1483; uint32_t x1484; fiat_p521_uint1 x1485; uint32_t x1486; fiat_p521_uint1 x1487; uint32_t x1488; fiat_p521_uint1 x1489; uint32_t x1490; fiat_p521_uint1 x1491; uint32_t x1492; fiat_p521_uint1 x1493; uint32_t x1494; fiat_p521_uint1 x1495; uint32_t x1496; uint32_t x1497; fiat_p521_uint1 x1498; uint32_t x1499; fiat_p521_uint1 x1500; uint32_t x1501; fiat_p521_uint1 x1502; uint32_t x1503; fiat_p521_uint1 x1504; uint32_t x1505; fiat_p521_uint1 x1506; uint32_t x1507; fiat_p521_uint1 x1508; uint32_t x1509; fiat_p521_uint1 x1510; uint32_t x1511; fiat_p521_uint1 x1512; uint32_t x1513; fiat_p521_uint1 x1514; uint32_t x1515; fiat_p521_uint1 x1516; uint32_t x1517; fiat_p521_uint1 x1518; uint32_t x1519; fiat_p521_uint1 x1520; uint32_t x1521; fiat_p521_uint1 x1522; uint32_t x1523; fiat_p521_uint1 x1524; uint32_t x1525; fiat_p521_uint1 x1526; uint32_t x1527; fiat_p521_uint1 x1528; uint32_t x1529; fiat_p521_uint1 x1530; uint32_t x1531; fiat_p521_uint1 x1532; uint32_t x1533; uint32_t x1534; uint32_t x1535; uint32_t x1536; uint32_t x1537; uint32_t x1538; uint32_t x1539; uint32_t x1540; uint32_t x1541; uint32_t x1542; uint32_t x1543; uint32_t x1544; uint32_t x1545; uint32_t x1546; uint32_t x1547; uint32_t x1548; uint32_t x1549; uint32_t x1550; uint32_t x1551; uint32_t x1552; uint32_t x1553; uint32_t x1554; uint32_t x1555; uint32_t x1556; uint32_t x1557; uint32_t x1558; uint32_t x1559; uint32_t x1560; uint32_t x1561; uint32_t x1562; uint32_t x1563; uint32_t x1564; uint32_t x1565; uint32_t x1566; uint32_t x1567; fiat_p521_uint1 x1568; uint32_t x1569; fiat_p521_uint1 x1570; uint32_t x1571; fiat_p521_uint1 x1572; uint32_t x1573; fiat_p521_uint1 x1574; uint32_t x1575; fiat_p521_uint1 x1576; uint32_t x1577; fiat_p521_uint1 x1578; uint32_t x1579; fiat_p521_uint1 x1580; uint32_t x1581; fiat_p521_uint1 x1582; uint32_t x1583; fiat_p521_uint1 x1584; uint32_t x1585; fiat_p521_uint1 x1586; uint32_t x1587; fiat_p521_uint1 x1588; uint32_t x1589; fiat_p521_uint1 x1590; uint32_t x1591; fiat_p521_uint1 x1592; uint32_t x1593; fiat_p521_uint1 x1594; uint32_t x1595; fiat_p521_uint1 x1596; uint32_t x1597; fiat_p521_uint1 x1598; uint32_t x1599; uint32_t x1600; fiat_p521_uint1 x1601; uint32_t x1602; fiat_p521_uint1 x1603; uint32_t x1604; fiat_p521_uint1 x1605; uint32_t x1606; fiat_p521_uint1 x1607; uint32_t x1608; fiat_p521_uint1 x1609; uint32_t x1610; fiat_p521_uint1 x1611; uint32_t x1612; fiat_p521_uint1 x1613; uint32_t x1614; fiat_p521_uint1 x1615; uint32_t x1616; fiat_p521_uint1 x1617; uint32_t x1618; fiat_p521_uint1 x1619; uint32_t x1620; fiat_p521_uint1 x1621; uint32_t x1622; fiat_p521_uint1 x1623; uint32_t x1624; fiat_p521_uint1 x1625; uint32_t x1626; fiat_p521_uint1 x1627; uint32_t x1628; fiat_p521_uint1 x1629; uint32_t x1630; fiat_p521_uint1 x1631; uint32_t x1632; fiat_p521_uint1 x1633; uint32_t x1634; fiat_p521_uint1 x1635; uint32_t x1636; uint32_t x1637; uint32_t x1638; uint32_t x1639; uint32_t x1640; uint32_t x1641; uint32_t x1642; uint32_t x1643; uint32_t x1644; uint32_t x1645; uint32_t x1646; uint32_t x1647; uint32_t x1648; uint32_t x1649; uint32_t x1650; uint32_t x1651; uint32_t x1652; uint32_t x1653; uint32_t x1654; uint32_t x1655; uint32_t x1656; uint32_t x1657; uint32_t x1658; uint32_t x1659; uint32_t x1660; uint32_t x1661; uint32_t x1662; uint32_t x1663; uint32_t x1664; uint32_t x1665; uint32_t x1666; uint32_t x1667; uint32_t x1668; uint32_t x1669; uint32_t x1670; uint32_t x1671; fiat_p521_uint1 x1672; uint32_t x1673; fiat_p521_uint1 x1674; uint32_t x1675; fiat_p521_uint1 x1676; uint32_t x1677; fiat_p521_uint1 x1678; uint32_t x1679; fiat_p521_uint1 x1680; uint32_t x1681; fiat_p521_uint1 x1682; uint32_t x1683; fiat_p521_uint1 x1684; uint32_t x1685; fiat_p521_uint1 x1686; uint32_t x1687; fiat_p521_uint1 x1688; uint32_t x1689; fiat_p521_uint1 x1690; uint32_t x1691; fiat_p521_uint1 x1692; uint32_t x1693; fiat_p521_uint1 x1694; uint32_t x1695; fiat_p521_uint1 x1696; uint32_t x1697; fiat_p521_uint1 x1698; uint32_t x1699; fiat_p521_uint1 x1700; uint32_t x1701; fiat_p521_uint1 x1702; uint32_t x1703; uint32_t x1704; fiat_p521_uint1 x1705; uint32_t x1706; fiat_p521_uint1 x1707; uint32_t x1708; fiat_p521_uint1 x1709; uint32_t x1710; fiat_p521_uint1 x1711; uint32_t x1712; fiat_p521_uint1 x1713; uint32_t x1714; fiat_p521_uint1 x1715; uint32_t x1716; fiat_p521_uint1 x1717; uint32_t x1718; fiat_p521_uint1 x1719; uint32_t x1720; fiat_p521_uint1 x1721; uint32_t x1722; fiat_p521_uint1 x1723; uint32_t x1724; fiat_p521_uint1 x1725; uint32_t x1726; fiat_p521_uint1 x1727; uint32_t x1728; fiat_p521_uint1 x1729; uint32_t x1730; fiat_p521_uint1 x1731; uint32_t x1732; fiat_p521_uint1 x1733; uint32_t x1734; fiat_p521_uint1 x1735; uint32_t x1736; fiat_p521_uint1 x1737; uint32_t x1738; fiat_p521_uint1 x1739; uint32_t x1740; uint32_t x1741; uint32_t x1742; uint32_t x1743; uint32_t x1744; uint32_t x1745; uint32_t x1746; uint32_t x1747; uint32_t x1748; uint32_t x1749; uint32_t x1750; uint32_t x1751; uint32_t x1752; uint32_t x1753; uint32_t x1754; uint32_t x1755; uint32_t x1756; uint32_t x1757; uint32_t x1758; uint32_t x1759; uint32_t x1760; uint32_t x1761; uint32_t x1762; uint32_t x1763; uint32_t x1764; uint32_t x1765; uint32_t x1766; uint32_t x1767; uint32_t x1768; uint32_t x1769; uint32_t x1770; uint32_t x1771; uint32_t x1772; uint32_t x1773; uint32_t x1774; fiat_p521_uint1 x1775; uint32_t x1776; fiat_p521_uint1 x1777; uint32_t x1778; fiat_p521_uint1 x1779; uint32_t x1780; fiat_p521_uint1 x1781; uint32_t x1782; fiat_p521_uint1 x1783; uint32_t x1784; fiat_p521_uint1 x1785; uint32_t x1786; fiat_p521_uint1 x1787; uint32_t x1788; fiat_p521_uint1 x1789; uint32_t x1790; fiat_p521_uint1 x1791; uint32_t x1792; fiat_p521_uint1 x1793; uint32_t x1794; fiat_p521_uint1 x1795; uint32_t x1796; fiat_p521_uint1 x1797; uint32_t x1798; fiat_p521_uint1 x1799; uint32_t x1800; fiat_p521_uint1 x1801; uint32_t x1802; fiat_p521_uint1 x1803; uint32_t x1804; fiat_p521_uint1 x1805; uint32_t x1806; uint32_t x1807; fiat_p521_uint1 x1808; uint32_t x1809; fiat_p521_uint1 x1810; uint32_t x1811; fiat_p521_uint1 x1812; uint32_t x1813; fiat_p521_uint1 x1814; uint32_t x1815; fiat_p521_uint1 x1816; uint32_t x1817; fiat_p521_uint1 x1818; uint32_t x1819; fiat_p521_uint1 x1820; uint32_t x1821; fiat_p521_uint1 x1822; uint32_t x1823; fiat_p521_uint1 x1824; uint32_t x1825; fiat_p521_uint1 x1826; uint32_t x1827; fiat_p521_uint1 x1828; uint32_t x1829; fiat_p521_uint1 x1830; uint32_t x1831; fiat_p521_uint1 x1832; uint32_t x1833; fiat_p521_uint1 x1834; uint32_t x1835; fiat_p521_uint1 x1836; uint32_t x1837; fiat_p521_uint1 x1838; uint32_t x1839; fiat_p521_uint1 x1840; uint32_t x1841; fiat_p521_uint1 x1842; uint32_t x1843; uint32_t x1844; uint32_t x1845; uint32_t x1846; uint32_t x1847; uint32_t x1848; uint32_t x1849; uint32_t x1850; uint32_t x1851; uint32_t x1852; uint32_t x1853; uint32_t x1854; uint32_t x1855; uint32_t x1856; uint32_t x1857; uint32_t x1858; uint32_t x1859; uint32_t x1860; uint32_t x1861; uint32_t x1862; uint32_t x1863; uint32_t x1864; uint32_t x1865; uint32_t x1866; uint32_t x1867; uint32_t x1868; uint32_t x1869; uint32_t x1870; uint32_t x1871; uint32_t x1872; uint32_t x1873; uint32_t x1874; uint32_t x1875; uint32_t x1876; uint32_t x1877; uint32_t x1878; fiat_p521_uint1 x1879; uint32_t x1880; fiat_p521_uint1 x1881; uint32_t x1882; fiat_p521_uint1 x1883; uint32_t x1884; fiat_p521_uint1 x1885; uint32_t x1886; fiat_p521_uint1 x1887; uint32_t x1888; fiat_p521_uint1 x1889; uint32_t x1890; fiat_p521_uint1 x1891; uint32_t x1892; fiat_p521_uint1 x1893; uint32_t x1894; fiat_p521_uint1 x1895; uint32_t x1896; fiat_p521_uint1 x1897; uint32_t x1898; fiat_p521_uint1 x1899; uint32_t x1900; fiat_p521_uint1 x1901; uint32_t x1902; fiat_p521_uint1 x1903; uint32_t x1904; fiat_p521_uint1 x1905; uint32_t x1906; fiat_p521_uint1 x1907; uint32_t x1908; fiat_p521_uint1 x1909; uint32_t x1910; uint32_t x1911; fiat_p521_uint1 x1912; uint32_t x1913; fiat_p521_uint1 x1914; uint32_t x1915; fiat_p521_uint1 x1916; uint32_t x1917; fiat_p521_uint1 x1918; uint32_t x1919; fiat_p521_uint1 x1920; uint32_t x1921; fiat_p521_uint1 x1922; uint32_t x1923; fiat_p521_uint1 x1924; uint32_t x1925; fiat_p521_uint1 x1926; uint32_t x1927; fiat_p521_uint1 x1928; uint32_t x1929; fiat_p521_uint1 x1930; uint32_t x1931; fiat_p521_uint1 x1932; uint32_t x1933; fiat_p521_uint1 x1934; uint32_t x1935; fiat_p521_uint1 x1936; uint32_t x1937; fiat_p521_uint1 x1938; uint32_t x1939; fiat_p521_uint1 x1940; uint32_t x1941; fiat_p521_uint1 x1942; uint32_t x1943; fiat_p521_uint1 x1944; uint32_t x1945; fiat_p521_uint1 x1946; uint32_t x1947; uint32_t x1948; uint32_t x1949; uint32_t x1950; uint32_t x1951; uint32_t x1952; uint32_t x1953; uint32_t x1954; uint32_t x1955; uint32_t x1956; uint32_t x1957; uint32_t x1958; uint32_t x1959; uint32_t x1960; uint32_t x1961; uint32_t x1962; uint32_t x1963; uint32_t x1964; uint32_t x1965; uint32_t x1966; uint32_t x1967; uint32_t x1968; uint32_t x1969; uint32_t x1970; uint32_t x1971; uint32_t x1972; uint32_t x1973; uint32_t x1974; uint32_t x1975; uint32_t x1976; uint32_t x1977; uint32_t x1978; uint32_t x1979; uint32_t x1980; uint32_t x1981; fiat_p521_uint1 x1982; uint32_t x1983; fiat_p521_uint1 x1984; uint32_t x1985; fiat_p521_uint1 x1986; uint32_t x1987; fiat_p521_uint1 x1988; uint32_t x1989; fiat_p521_uint1 x1990; uint32_t x1991; fiat_p521_uint1 x1992; uint32_t x1993; fiat_p521_uint1 x1994; uint32_t x1995; fiat_p521_uint1 x1996; uint32_t x1997; fiat_p521_uint1 x1998; uint32_t x1999; fiat_p521_uint1 x2000; uint32_t x2001; fiat_p521_uint1 x2002; uint32_t x2003; fiat_p521_uint1 x2004; uint32_t x2005; fiat_p521_uint1 x2006; uint32_t x2007; fiat_p521_uint1 x2008; uint32_t x2009; fiat_p521_uint1 x2010; uint32_t x2011; fiat_p521_uint1 x2012; uint32_t x2013; uint32_t x2014; fiat_p521_uint1 x2015; uint32_t x2016; fiat_p521_uint1 x2017; uint32_t x2018; fiat_p521_uint1 x2019; uint32_t x2020; fiat_p521_uint1 x2021; uint32_t x2022; fiat_p521_uint1 x2023; uint32_t x2024; fiat_p521_uint1 x2025; uint32_t x2026; fiat_p521_uint1 x2027; uint32_t x2028; fiat_p521_uint1 x2029; uint32_t x2030; fiat_p521_uint1 x2031; uint32_t x2032; fiat_p521_uint1 x2033; uint32_t x2034; fiat_p521_uint1 x2035; uint32_t x2036; fiat_p521_uint1 x2037; uint32_t x2038; fiat_p521_uint1 x2039; uint32_t x2040; fiat_p521_uint1 x2041; uint32_t x2042; fiat_p521_uint1 x2043; uint32_t x2044; fiat_p521_uint1 x2045; uint32_t x2046; fiat_p521_uint1 x2047; uint32_t x2048; fiat_p521_uint1 x2049; uint32_t x2050; uint32_t x2051; uint32_t x2052; uint32_t x2053; uint32_t x2054; uint32_t x2055; uint32_t x2056; uint32_t x2057; uint32_t x2058; uint32_t x2059; uint32_t x2060; uint32_t x2061; uint32_t x2062; uint32_t x2063; uint32_t x2064; uint32_t x2065; uint32_t x2066; uint32_t x2067; uint32_t x2068; uint32_t x2069; uint32_t x2070; uint32_t x2071; uint32_t x2072; uint32_t x2073; uint32_t x2074; uint32_t x2075; uint32_t x2076; uint32_t x2077; uint32_t x2078; uint32_t x2079; uint32_t x2080; uint32_t x2081; uint32_t x2082; uint32_t x2083; uint32_t x2084; uint32_t x2085; fiat_p521_uint1 x2086; uint32_t x2087; fiat_p521_uint1 x2088; uint32_t x2089; fiat_p521_uint1 x2090; uint32_t x2091; fiat_p521_uint1 x2092; uint32_t x2093; fiat_p521_uint1 x2094; uint32_t x2095; fiat_p521_uint1 x2096; uint32_t x2097; fiat_p521_uint1 x2098; uint32_t x2099; fiat_p521_uint1 x2100; uint32_t x2101; fiat_p521_uint1 x2102; uint32_t x2103; fiat_p521_uint1 x2104; uint32_t x2105; fiat_p521_uint1 x2106; uint32_t x2107; fiat_p521_uint1 x2108; uint32_t x2109; fiat_p521_uint1 x2110; uint32_t x2111; fiat_p521_uint1 x2112; uint32_t x2113; fiat_p521_uint1 x2114; uint32_t x2115; fiat_p521_uint1 x2116; uint32_t x2117; uint32_t x2118; fiat_p521_uint1 x2119; uint32_t x2120; fiat_p521_uint1 x2121; uint32_t x2122; fiat_p521_uint1 x2123; uint32_t x2124; fiat_p521_uint1 x2125; uint32_t x2126; fiat_p521_uint1 x2127; uint32_t x2128; fiat_p521_uint1 x2129; uint32_t x2130; fiat_p521_uint1 x2131; uint32_t x2132; fiat_p521_uint1 x2133; uint32_t x2134; fiat_p521_uint1 x2135; uint32_t x2136; fiat_p521_uint1 x2137; uint32_t x2138; fiat_p521_uint1 x2139; uint32_t x2140; fiat_p521_uint1 x2141; uint32_t x2142; fiat_p521_uint1 x2143; uint32_t x2144; fiat_p521_uint1 x2145; uint32_t x2146; fiat_p521_uint1 x2147; uint32_t x2148; fiat_p521_uint1 x2149; uint32_t x2150; fiat_p521_uint1 x2151; uint32_t x2152; fiat_p521_uint1 x2153; uint32_t x2154; uint32_t x2155; uint32_t x2156; uint32_t x2157; uint32_t x2158; uint32_t x2159; uint32_t x2160; uint32_t x2161; uint32_t x2162; uint32_t x2163; uint32_t x2164; uint32_t x2165; uint32_t x2166; uint32_t x2167; uint32_t x2168; uint32_t x2169; uint32_t x2170; uint32_t x2171; uint32_t x2172; uint32_t x2173; uint32_t x2174; uint32_t x2175; uint32_t x2176; uint32_t x2177; uint32_t x2178; uint32_t x2179; uint32_t x2180; uint32_t x2181; uint32_t x2182; uint32_t x2183; uint32_t x2184; uint32_t x2185; uint32_t x2186; uint32_t x2187; uint32_t x2188; fiat_p521_uint1 x2189; uint32_t x2190; fiat_p521_uint1 x2191; uint32_t x2192; fiat_p521_uint1 x2193; uint32_t x2194; fiat_p521_uint1 x2195; uint32_t x2196; fiat_p521_uint1 x2197; uint32_t x2198; fiat_p521_uint1 x2199; uint32_t x2200; fiat_p521_uint1 x2201; uint32_t x2202; fiat_p521_uint1 x2203; uint32_t x2204; fiat_p521_uint1 x2205; uint32_t x2206; fiat_p521_uint1 x2207; uint32_t x2208; fiat_p521_uint1 x2209; uint32_t x2210; fiat_p521_uint1 x2211; uint32_t x2212; fiat_p521_uint1 x2213; uint32_t x2214; fiat_p521_uint1 x2215; uint32_t x2216; fiat_p521_uint1 x2217; uint32_t x2218; fiat_p521_uint1 x2219; uint32_t x2220; uint32_t x2221; fiat_p521_uint1 x2222; uint32_t x2223; fiat_p521_uint1 x2224; uint32_t x2225; fiat_p521_uint1 x2226; uint32_t x2227; fiat_p521_uint1 x2228; uint32_t x2229; fiat_p521_uint1 x2230; uint32_t x2231; fiat_p521_uint1 x2232; uint32_t x2233; fiat_p521_uint1 x2234; uint32_t x2235; fiat_p521_uint1 x2236; uint32_t x2237; fiat_p521_uint1 x2238; uint32_t x2239; fiat_p521_uint1 x2240; uint32_t x2241; fiat_p521_uint1 x2242; uint32_t x2243; fiat_p521_uint1 x2244; uint32_t x2245; fiat_p521_uint1 x2246; uint32_t x2247; fiat_p521_uint1 x2248; uint32_t x2249; fiat_p521_uint1 x2250; uint32_t x2251; fiat_p521_uint1 x2252; uint32_t x2253; fiat_p521_uint1 x2254; uint32_t x2255; fiat_p521_uint1 x2256; uint32_t x2257; uint32_t x2258; uint32_t x2259; uint32_t x2260; uint32_t x2261; uint32_t x2262; uint32_t x2263; uint32_t x2264; uint32_t x2265; uint32_t x2266; uint32_t x2267; uint32_t x2268; uint32_t x2269; uint32_t x2270; uint32_t x2271; uint32_t x2272; uint32_t x2273; uint32_t x2274; uint32_t x2275; uint32_t x2276; uint32_t x2277; uint32_t x2278; uint32_t x2279; uint32_t x2280; uint32_t x2281; uint32_t x2282; uint32_t x2283; uint32_t x2284; uint32_t x2285; uint32_t x2286; uint32_t x2287; uint32_t x2288; uint32_t x2289; uint32_t x2290; uint32_t x2291; uint32_t x2292; fiat_p521_uint1 x2293; uint32_t x2294; fiat_p521_uint1 x2295; uint32_t x2296; fiat_p521_uint1 x2297; uint32_t x2298; fiat_p521_uint1 x2299; uint32_t x2300; fiat_p521_uint1 x2301; uint32_t x2302; fiat_p521_uint1 x2303; uint32_t x2304; fiat_p521_uint1 x2305; uint32_t x2306; fiat_p521_uint1 x2307; uint32_t x2308; fiat_p521_uint1 x2309; uint32_t x2310; fiat_p521_uint1 x2311; uint32_t x2312; fiat_p521_uint1 x2313; uint32_t x2314; fiat_p521_uint1 x2315; uint32_t x2316; fiat_p521_uint1 x2317; uint32_t x2318; fiat_p521_uint1 x2319; uint32_t x2320; fiat_p521_uint1 x2321; uint32_t x2322; fiat_p521_uint1 x2323; uint32_t x2324; uint32_t x2325; fiat_p521_uint1 x2326; uint32_t x2327; fiat_p521_uint1 x2328; uint32_t x2329; fiat_p521_uint1 x2330; uint32_t x2331; fiat_p521_uint1 x2332; uint32_t x2333; fiat_p521_uint1 x2334; uint32_t x2335; fiat_p521_uint1 x2336; uint32_t x2337; fiat_p521_uint1 x2338; uint32_t x2339; fiat_p521_uint1 x2340; uint32_t x2341; fiat_p521_uint1 x2342; uint32_t x2343; fiat_p521_uint1 x2344; uint32_t x2345; fiat_p521_uint1 x2346; uint32_t x2347; fiat_p521_uint1 x2348; uint32_t x2349; fiat_p521_uint1 x2350; uint32_t x2351; fiat_p521_uint1 x2352; uint32_t x2353; fiat_p521_uint1 x2354; uint32_t x2355; fiat_p521_uint1 x2356; uint32_t x2357; fiat_p521_uint1 x2358; uint32_t x2359; fiat_p521_uint1 x2360; uint32_t x2361; uint32_t x2362; uint32_t x2363; uint32_t x2364; uint32_t x2365; uint32_t x2366; uint32_t x2367; uint32_t x2368; uint32_t x2369; uint32_t x2370; uint32_t x2371; uint32_t x2372; uint32_t x2373; uint32_t x2374; uint32_t x2375; uint32_t x2376; uint32_t x2377; uint32_t x2378; uint32_t x2379; uint32_t x2380; uint32_t x2381; uint32_t x2382; uint32_t x2383; uint32_t x2384; uint32_t x2385; uint32_t x2386; uint32_t x2387; uint32_t x2388; uint32_t x2389; uint32_t x2390; uint32_t x2391; uint32_t x2392; uint32_t x2393; uint32_t x2394; uint32_t x2395; fiat_p521_uint1 x2396; uint32_t x2397; fiat_p521_uint1 x2398; uint32_t x2399; fiat_p521_uint1 x2400; uint32_t x2401; fiat_p521_uint1 x2402; uint32_t x2403; fiat_p521_uint1 x2404; uint32_t x2405; fiat_p521_uint1 x2406; uint32_t x2407; fiat_p521_uint1 x2408; uint32_t x2409; fiat_p521_uint1 x2410; uint32_t x2411; fiat_p521_uint1 x2412; uint32_t x2413; fiat_p521_uint1 x2414; uint32_t x2415; fiat_p521_uint1 x2416; uint32_t x2417; fiat_p521_uint1 x2418; uint32_t x2419; fiat_p521_uint1 x2420; uint32_t x2421; fiat_p521_uint1 x2422; uint32_t x2423; fiat_p521_uint1 x2424; uint32_t x2425; fiat_p521_uint1 x2426; uint32_t x2427; uint32_t x2428; fiat_p521_uint1 x2429; uint32_t x2430; fiat_p521_uint1 x2431; uint32_t x2432; fiat_p521_uint1 x2433; uint32_t x2434; fiat_p521_uint1 x2435; uint32_t x2436; fiat_p521_uint1 x2437; uint32_t x2438; fiat_p521_uint1 x2439; uint32_t x2440; fiat_p521_uint1 x2441; uint32_t x2442; fiat_p521_uint1 x2443; uint32_t x2444; fiat_p521_uint1 x2445; uint32_t x2446; fiat_p521_uint1 x2447; uint32_t x2448; fiat_p521_uint1 x2449; uint32_t x2450; fiat_p521_uint1 x2451; uint32_t x2452; fiat_p521_uint1 x2453; uint32_t x2454; fiat_p521_uint1 x2455; uint32_t x2456; fiat_p521_uint1 x2457; uint32_t x2458; fiat_p521_uint1 x2459; uint32_t x2460; fiat_p521_uint1 x2461; uint32_t x2462; fiat_p521_uint1 x2463; uint32_t x2464; uint32_t x2465; uint32_t x2466; uint32_t x2467; uint32_t x2468; uint32_t x2469; uint32_t x2470; uint32_t x2471; uint32_t x2472; uint32_t x2473; uint32_t x2474; uint32_t x2475; uint32_t x2476; uint32_t x2477; uint32_t x2478; uint32_t x2479; uint32_t x2480; uint32_t x2481; uint32_t x2482; uint32_t x2483; uint32_t x2484; uint32_t x2485; uint32_t x2486; uint32_t x2487; uint32_t x2488; uint32_t x2489; uint32_t x2490; uint32_t x2491; uint32_t x2492; uint32_t x2493; uint32_t x2494; uint32_t x2495; uint32_t x2496; uint32_t x2497; uint32_t x2498; uint32_t x2499; fiat_p521_uint1 x2500; uint32_t x2501; fiat_p521_uint1 x2502; uint32_t x2503; fiat_p521_uint1 x2504; uint32_t x2505; fiat_p521_uint1 x2506; uint32_t x2507; fiat_p521_uint1 x2508; uint32_t x2509; fiat_p521_uint1 x2510; uint32_t x2511; fiat_p521_uint1 x2512; uint32_t x2513; fiat_p521_uint1 x2514; uint32_t x2515; fiat_p521_uint1 x2516; uint32_t x2517; fiat_p521_uint1 x2518; uint32_t x2519; fiat_p521_uint1 x2520; uint32_t x2521; fiat_p521_uint1 x2522; uint32_t x2523; fiat_p521_uint1 x2524; uint32_t x2525; fiat_p521_uint1 x2526; uint32_t x2527; fiat_p521_uint1 x2528; uint32_t x2529; fiat_p521_uint1 x2530; uint32_t x2531; uint32_t x2532; fiat_p521_uint1 x2533; uint32_t x2534; fiat_p521_uint1 x2535; uint32_t x2536; fiat_p521_uint1 x2537; uint32_t x2538; fiat_p521_uint1 x2539; uint32_t x2540; fiat_p521_uint1 x2541; uint32_t x2542; fiat_p521_uint1 x2543; uint32_t x2544; fiat_p521_uint1 x2545; uint32_t x2546; fiat_p521_uint1 x2547; uint32_t x2548; fiat_p521_uint1 x2549; uint32_t x2550; fiat_p521_uint1 x2551; uint32_t x2552; fiat_p521_uint1 x2553; uint32_t x2554; fiat_p521_uint1 x2555; uint32_t x2556; fiat_p521_uint1 x2557; uint32_t x2558; fiat_p521_uint1 x2559; uint32_t x2560; fiat_p521_uint1 x2561; uint32_t x2562; fiat_p521_uint1 x2563; uint32_t x2564; fiat_p521_uint1 x2565; uint32_t x2566; fiat_p521_uint1 x2567; uint32_t x2568; uint32_t x2569; uint32_t x2570; uint32_t x2571; uint32_t x2572; uint32_t x2573; uint32_t x2574; uint32_t x2575; uint32_t x2576; uint32_t x2577; uint32_t x2578; uint32_t x2579; uint32_t x2580; uint32_t x2581; uint32_t x2582; uint32_t x2583; uint32_t x2584; uint32_t x2585; uint32_t x2586; uint32_t x2587; uint32_t x2588; uint32_t x2589; uint32_t x2590; uint32_t x2591; uint32_t x2592; uint32_t x2593; uint32_t x2594; uint32_t x2595; uint32_t x2596; uint32_t x2597; uint32_t x2598; uint32_t x2599; uint32_t x2600; uint32_t x2601; uint32_t x2602; fiat_p521_uint1 x2603; uint32_t x2604; fiat_p521_uint1 x2605; uint32_t x2606; fiat_p521_uint1 x2607; uint32_t x2608; fiat_p521_uint1 x2609; uint32_t x2610; fiat_p521_uint1 x2611; uint32_t x2612; fiat_p521_uint1 x2613; uint32_t x2614; fiat_p521_uint1 x2615; uint32_t x2616; fiat_p521_uint1 x2617; uint32_t x2618; fiat_p521_uint1 x2619; uint32_t x2620; fiat_p521_uint1 x2621; uint32_t x2622; fiat_p521_uint1 x2623; uint32_t x2624; fiat_p521_uint1 x2625; uint32_t x2626; fiat_p521_uint1 x2627; uint32_t x2628; fiat_p521_uint1 x2629; uint32_t x2630; fiat_p521_uint1 x2631; uint32_t x2632; fiat_p521_uint1 x2633; uint32_t x2634; uint32_t x2635; fiat_p521_uint1 x2636; uint32_t x2637; fiat_p521_uint1 x2638; uint32_t x2639; fiat_p521_uint1 x2640; uint32_t x2641; fiat_p521_uint1 x2642; uint32_t x2643; fiat_p521_uint1 x2644; uint32_t x2645; fiat_p521_uint1 x2646; uint32_t x2647; fiat_p521_uint1 x2648; uint32_t x2649; fiat_p521_uint1 x2650; uint32_t x2651; fiat_p521_uint1 x2652; uint32_t x2653; fiat_p521_uint1 x2654; uint32_t x2655; fiat_p521_uint1 x2656; uint32_t x2657; fiat_p521_uint1 x2658; uint32_t x2659; fiat_p521_uint1 x2660; uint32_t x2661; fiat_p521_uint1 x2662; uint32_t x2663; fiat_p521_uint1 x2664; uint32_t x2665; fiat_p521_uint1 x2666; uint32_t x2667; fiat_p521_uint1 x2668; uint32_t x2669; fiat_p521_uint1 x2670; uint32_t x2671; uint32_t x2672; uint32_t x2673; uint32_t x2674; uint32_t x2675; uint32_t x2676; uint32_t x2677; uint32_t x2678; uint32_t x2679; uint32_t x2680; uint32_t x2681; uint32_t x2682; uint32_t x2683; uint32_t x2684; uint32_t x2685; uint32_t x2686; uint32_t x2687; uint32_t x2688; uint32_t x2689; uint32_t x2690; uint32_t x2691; uint32_t x2692; uint32_t x2693; uint32_t x2694; uint32_t x2695; uint32_t x2696; uint32_t x2697; uint32_t x2698; uint32_t x2699; uint32_t x2700; uint32_t x2701; uint32_t x2702; uint32_t x2703; uint32_t x2704; uint32_t x2705; uint32_t x2706; fiat_p521_uint1 x2707; uint32_t x2708; fiat_p521_uint1 x2709; uint32_t x2710; fiat_p521_uint1 x2711; uint32_t x2712; fiat_p521_uint1 x2713; uint32_t x2714; fiat_p521_uint1 x2715; uint32_t x2716; fiat_p521_uint1 x2717; uint32_t x2718; fiat_p521_uint1 x2719; uint32_t x2720; fiat_p521_uint1 x2721; uint32_t x2722; fiat_p521_uint1 x2723; uint32_t x2724; fiat_p521_uint1 x2725; uint32_t x2726; fiat_p521_uint1 x2727; uint32_t x2728; fiat_p521_uint1 x2729; uint32_t x2730; fiat_p521_uint1 x2731; uint32_t x2732; fiat_p521_uint1 x2733; uint32_t x2734; fiat_p521_uint1 x2735; uint32_t x2736; fiat_p521_uint1 x2737; uint32_t x2738; uint32_t x2739; fiat_p521_uint1 x2740; uint32_t x2741; fiat_p521_uint1 x2742; uint32_t x2743; fiat_p521_uint1 x2744; uint32_t x2745; fiat_p521_uint1 x2746; uint32_t x2747; fiat_p521_uint1 x2748; uint32_t x2749; fiat_p521_uint1 x2750; uint32_t x2751; fiat_p521_uint1 x2752; uint32_t x2753; fiat_p521_uint1 x2754; uint32_t x2755; fiat_p521_uint1 x2756; uint32_t x2757; fiat_p521_uint1 x2758; uint32_t x2759; fiat_p521_uint1 x2760; uint32_t x2761; fiat_p521_uint1 x2762; uint32_t x2763; fiat_p521_uint1 x2764; uint32_t x2765; fiat_p521_uint1 x2766; uint32_t x2767; fiat_p521_uint1 x2768; uint32_t x2769; fiat_p521_uint1 x2770; uint32_t x2771; fiat_p521_uint1 x2772; uint32_t x2773; fiat_p521_uint1 x2774; uint32_t x2775; uint32_t x2776; uint32_t x2777; uint32_t x2778; uint32_t x2779; uint32_t x2780; uint32_t x2781; uint32_t x2782; uint32_t x2783; uint32_t x2784; uint32_t x2785; uint32_t x2786; uint32_t x2787; uint32_t x2788; uint32_t x2789; uint32_t x2790; uint32_t x2791; uint32_t x2792; uint32_t x2793; uint32_t x2794; uint32_t x2795; uint32_t x2796; uint32_t x2797; uint32_t x2798; uint32_t x2799; uint32_t x2800; uint32_t x2801; uint32_t x2802; uint32_t x2803; uint32_t x2804; uint32_t x2805; uint32_t x2806; uint32_t x2807; uint32_t x2808; uint32_t x2809; fiat_p521_uint1 x2810; uint32_t x2811; fiat_p521_uint1 x2812; uint32_t x2813; fiat_p521_uint1 x2814; uint32_t x2815; fiat_p521_uint1 x2816; uint32_t x2817; fiat_p521_uint1 x2818; uint32_t x2819; fiat_p521_uint1 x2820; uint32_t x2821; fiat_p521_uint1 x2822; uint32_t x2823; fiat_p521_uint1 x2824; uint32_t x2825; fiat_p521_uint1 x2826; uint32_t x2827; fiat_p521_uint1 x2828; uint32_t x2829; fiat_p521_uint1 x2830; uint32_t x2831; fiat_p521_uint1 x2832; uint32_t x2833; fiat_p521_uint1 x2834; uint32_t x2835; fiat_p521_uint1 x2836; uint32_t x2837; fiat_p521_uint1 x2838; uint32_t x2839; fiat_p521_uint1 x2840; uint32_t x2841; uint32_t x2842; fiat_p521_uint1 x2843; uint32_t x2844; fiat_p521_uint1 x2845; uint32_t x2846; fiat_p521_uint1 x2847; uint32_t x2848; fiat_p521_uint1 x2849; uint32_t x2850; fiat_p521_uint1 x2851; uint32_t x2852; fiat_p521_uint1 x2853; uint32_t x2854; fiat_p521_uint1 x2855; uint32_t x2856; fiat_p521_uint1 x2857; uint32_t x2858; fiat_p521_uint1 x2859; uint32_t x2860; fiat_p521_uint1 x2861; uint32_t x2862; fiat_p521_uint1 x2863; uint32_t x2864; fiat_p521_uint1 x2865; uint32_t x2866; fiat_p521_uint1 x2867; uint32_t x2868; fiat_p521_uint1 x2869; uint32_t x2870; fiat_p521_uint1 x2871; uint32_t x2872; fiat_p521_uint1 x2873; uint32_t x2874; fiat_p521_uint1 x2875; uint32_t x2876; fiat_p521_uint1 x2877; uint32_t x2878; uint32_t x2879; uint32_t x2880; uint32_t x2881; uint32_t x2882; uint32_t x2883; uint32_t x2884; uint32_t x2885; uint32_t x2886; uint32_t x2887; uint32_t x2888; uint32_t x2889; uint32_t x2890; uint32_t x2891; uint32_t x2892; uint32_t x2893; uint32_t x2894; uint32_t x2895; uint32_t x2896; uint32_t x2897; uint32_t x2898; uint32_t x2899; uint32_t x2900; uint32_t x2901; uint32_t x2902; uint32_t x2903; uint32_t x2904; uint32_t x2905; uint32_t x2906; uint32_t x2907; uint32_t x2908; uint32_t x2909; uint32_t x2910; uint32_t x2911; uint32_t x2912; uint32_t x2913; fiat_p521_uint1 x2914; uint32_t x2915; fiat_p521_uint1 x2916; uint32_t x2917; fiat_p521_uint1 x2918; uint32_t x2919; fiat_p521_uint1 x2920; uint32_t x2921; fiat_p521_uint1 x2922; uint32_t x2923; fiat_p521_uint1 x2924; uint32_t x2925; fiat_p521_uint1 x2926; uint32_t x2927; fiat_p521_uint1 x2928; uint32_t x2929; fiat_p521_uint1 x2930; uint32_t x2931; fiat_p521_uint1 x2932; uint32_t x2933; fiat_p521_uint1 x2934; uint32_t x2935; fiat_p521_uint1 x2936; uint32_t x2937; fiat_p521_uint1 x2938; uint32_t x2939; fiat_p521_uint1 x2940; uint32_t x2941; fiat_p521_uint1 x2942; uint32_t x2943; fiat_p521_uint1 x2944; uint32_t x2945; uint32_t x2946; fiat_p521_uint1 x2947; uint32_t x2948; fiat_p521_uint1 x2949; uint32_t x2950; fiat_p521_uint1 x2951; uint32_t x2952; fiat_p521_uint1 x2953; uint32_t x2954; fiat_p521_uint1 x2955; uint32_t x2956; fiat_p521_uint1 x2957; uint32_t x2958; fiat_p521_uint1 x2959; uint32_t x2960; fiat_p521_uint1 x2961; uint32_t x2962; fiat_p521_uint1 x2963; uint32_t x2964; fiat_p521_uint1 x2965; uint32_t x2966; fiat_p521_uint1 x2967; uint32_t x2968; fiat_p521_uint1 x2969; uint32_t x2970; fiat_p521_uint1 x2971; uint32_t x2972; fiat_p521_uint1 x2973; uint32_t x2974; fiat_p521_uint1 x2975; uint32_t x2976; fiat_p521_uint1 x2977; uint32_t x2978; fiat_p521_uint1 x2979; uint32_t x2980; fiat_p521_uint1 x2981; uint32_t x2982; uint32_t x2983; uint32_t x2984; uint32_t x2985; uint32_t x2986; uint32_t x2987; uint32_t x2988; uint32_t x2989; uint32_t x2990; uint32_t x2991; uint32_t x2992; uint32_t x2993; uint32_t x2994; uint32_t x2995; uint32_t x2996; uint32_t x2997; uint32_t x2998; uint32_t x2999; uint32_t x3000; uint32_t x3001; uint32_t x3002; uint32_t x3003; uint32_t x3004; uint32_t x3005; uint32_t x3006; uint32_t x3007; uint32_t x3008; uint32_t x3009; uint32_t x3010; uint32_t x3011; uint32_t x3012; uint32_t x3013; uint32_t x3014; uint32_t x3015; uint32_t x3016; fiat_p521_uint1 x3017; uint32_t x3018; fiat_p521_uint1 x3019; uint32_t x3020; fiat_p521_uint1 x3021; uint32_t x3022; fiat_p521_uint1 x3023; uint32_t x3024; fiat_p521_uint1 x3025; uint32_t x3026; fiat_p521_uint1 x3027; uint32_t x3028; fiat_p521_uint1 x3029; uint32_t x3030; fiat_p521_uint1 x3031; uint32_t x3032; fiat_p521_uint1 x3033; uint32_t x3034; fiat_p521_uint1 x3035; uint32_t x3036; fiat_p521_uint1 x3037; uint32_t x3038; fiat_p521_uint1 x3039; uint32_t x3040; fiat_p521_uint1 x3041; uint32_t x3042; fiat_p521_uint1 x3043; uint32_t x3044; fiat_p521_uint1 x3045; uint32_t x3046; fiat_p521_uint1 x3047; uint32_t x3048; uint32_t x3049; fiat_p521_uint1 x3050; uint32_t x3051; fiat_p521_uint1 x3052; uint32_t x3053; fiat_p521_uint1 x3054; uint32_t x3055; fiat_p521_uint1 x3056; uint32_t x3057; fiat_p521_uint1 x3058; uint32_t x3059; fiat_p521_uint1 x3060; uint32_t x3061; fiat_p521_uint1 x3062; uint32_t x3063; fiat_p521_uint1 x3064; uint32_t x3065; fiat_p521_uint1 x3066; uint32_t x3067; fiat_p521_uint1 x3068; uint32_t x3069; fiat_p521_uint1 x3070; uint32_t x3071; fiat_p521_uint1 x3072; uint32_t x3073; fiat_p521_uint1 x3074; uint32_t x3075; fiat_p521_uint1 x3076; uint32_t x3077; fiat_p521_uint1 x3078; uint32_t x3079; fiat_p521_uint1 x3080; uint32_t x3081; fiat_p521_uint1 x3082; uint32_t x3083; fiat_p521_uint1 x3084; uint32_t x3085; uint32_t x3086; uint32_t x3087; uint32_t x3088; uint32_t x3089; uint32_t x3090; uint32_t x3091; uint32_t x3092; uint32_t x3093; uint32_t x3094; uint32_t x3095; uint32_t x3096; uint32_t x3097; uint32_t x3098; uint32_t x3099; uint32_t x3100; uint32_t x3101; uint32_t x3102; uint32_t x3103; uint32_t x3104; uint32_t x3105; uint32_t x3106; uint32_t x3107; uint32_t x3108; uint32_t x3109; uint32_t x3110; uint32_t x3111; uint32_t x3112; uint32_t x3113; uint32_t x3114; uint32_t x3115; uint32_t x3116; uint32_t x3117; uint32_t x3118; uint32_t x3119; uint32_t x3120; fiat_p521_uint1 x3121; uint32_t x3122; fiat_p521_uint1 x3123; uint32_t x3124; fiat_p521_uint1 x3125; uint32_t x3126; fiat_p521_uint1 x3127; uint32_t x3128; fiat_p521_uint1 x3129; uint32_t x3130; fiat_p521_uint1 x3131; uint32_t x3132; fiat_p521_uint1 x3133; uint32_t x3134; fiat_p521_uint1 x3135; uint32_t x3136; fiat_p521_uint1 x3137; uint32_t x3138; fiat_p521_uint1 x3139; uint32_t x3140; fiat_p521_uint1 x3141; uint32_t x3142; fiat_p521_uint1 x3143; uint32_t x3144; fiat_p521_uint1 x3145; uint32_t x3146; fiat_p521_uint1 x3147; uint32_t x3148; fiat_p521_uint1 x3149; uint32_t x3150; fiat_p521_uint1 x3151; uint32_t x3152; uint32_t x3153; fiat_p521_uint1 x3154; uint32_t x3155; fiat_p521_uint1 x3156; uint32_t x3157; fiat_p521_uint1 x3158; uint32_t x3159; fiat_p521_uint1 x3160; uint32_t x3161; fiat_p521_uint1 x3162; uint32_t x3163; fiat_p521_uint1 x3164; uint32_t x3165; fiat_p521_uint1 x3166; uint32_t x3167; fiat_p521_uint1 x3168; uint32_t x3169; fiat_p521_uint1 x3170; uint32_t x3171; fiat_p521_uint1 x3172; uint32_t x3173; fiat_p521_uint1 x3174; uint32_t x3175; fiat_p521_uint1 x3176; uint32_t x3177; fiat_p521_uint1 x3178; uint32_t x3179; fiat_p521_uint1 x3180; uint32_t x3181; fiat_p521_uint1 x3182; uint32_t x3183; fiat_p521_uint1 x3184; uint32_t x3185; fiat_p521_uint1 x3186; uint32_t x3187; fiat_p521_uint1 x3188; uint32_t x3189; uint32_t x3190; uint32_t x3191; uint32_t x3192; uint32_t x3193; uint32_t x3194; uint32_t x3195; uint32_t x3196; uint32_t x3197; uint32_t x3198; uint32_t x3199; uint32_t x3200; uint32_t x3201; uint32_t x3202; uint32_t x3203; uint32_t x3204; uint32_t x3205; uint32_t x3206; uint32_t x3207; uint32_t x3208; uint32_t x3209; uint32_t x3210; uint32_t x3211; uint32_t x3212; uint32_t x3213; uint32_t x3214; uint32_t x3215; uint32_t x3216; uint32_t x3217; uint32_t x3218; uint32_t x3219; uint32_t x3220; uint32_t x3221; uint32_t x3222; uint32_t x3223; fiat_p521_uint1 x3224; uint32_t x3225; fiat_p521_uint1 x3226; uint32_t x3227; fiat_p521_uint1 x3228; uint32_t x3229; fiat_p521_uint1 x3230; uint32_t x3231; fiat_p521_uint1 x3232; uint32_t x3233; fiat_p521_uint1 x3234; uint32_t x3235; fiat_p521_uint1 x3236; uint32_t x3237; fiat_p521_uint1 x3238; uint32_t x3239; fiat_p521_uint1 x3240; uint32_t x3241; fiat_p521_uint1 x3242; uint32_t x3243; fiat_p521_uint1 x3244; uint32_t x3245; fiat_p521_uint1 x3246; uint32_t x3247; fiat_p521_uint1 x3248; uint32_t x3249; fiat_p521_uint1 x3250; uint32_t x3251; fiat_p521_uint1 x3252; uint32_t x3253; fiat_p521_uint1 x3254; uint32_t x3255; uint32_t x3256; fiat_p521_uint1 x3257; uint32_t x3258; fiat_p521_uint1 x3259; uint32_t x3260; fiat_p521_uint1 x3261; uint32_t x3262; fiat_p521_uint1 x3263; uint32_t x3264; fiat_p521_uint1 x3265; uint32_t x3266; fiat_p521_uint1 x3267; uint32_t x3268; fiat_p521_uint1 x3269; uint32_t x3270; fiat_p521_uint1 x3271; uint32_t x3272; fiat_p521_uint1 x3273; uint32_t x3274; fiat_p521_uint1 x3275; uint32_t x3276; fiat_p521_uint1 x3277; uint32_t x3278; fiat_p521_uint1 x3279; uint32_t x3280; fiat_p521_uint1 x3281; uint32_t x3282; fiat_p521_uint1 x3283; uint32_t x3284; fiat_p521_uint1 x3285; uint32_t x3286; fiat_p521_uint1 x3287; uint32_t x3288; fiat_p521_uint1 x3289; uint32_t x3290; fiat_p521_uint1 x3291; uint32_t x3292; uint32_t x3293; uint32_t x3294; uint32_t x3295; uint32_t x3296; uint32_t x3297; uint32_t x3298; uint32_t x3299; uint32_t x3300; uint32_t x3301; uint32_t x3302; uint32_t x3303; uint32_t x3304; uint32_t x3305; uint32_t x3306; uint32_t x3307; uint32_t x3308; uint32_t x3309; uint32_t x3310; uint32_t x3311; uint32_t x3312; uint32_t x3313; uint32_t x3314; uint32_t x3315; uint32_t x3316; uint32_t x3317; uint32_t x3318; uint32_t x3319; uint32_t x3320; uint32_t x3321; uint32_t x3322; uint32_t x3323; uint32_t x3324; uint32_t x3325; uint32_t x3326; uint32_t x3327; fiat_p521_uint1 x3328; uint32_t x3329; fiat_p521_uint1 x3330; uint32_t x3331; fiat_p521_uint1 x3332; uint32_t x3333; fiat_p521_uint1 x3334; uint32_t x3335; fiat_p521_uint1 x3336; uint32_t x3337; fiat_p521_uint1 x3338; uint32_t x3339; fiat_p521_uint1 x3340; uint32_t x3341; fiat_p521_uint1 x3342; uint32_t x3343; fiat_p521_uint1 x3344; uint32_t x3345; fiat_p521_uint1 x3346; uint32_t x3347; fiat_p521_uint1 x3348; uint32_t x3349; fiat_p521_uint1 x3350; uint32_t x3351; fiat_p521_uint1 x3352; uint32_t x3353; fiat_p521_uint1 x3354; uint32_t x3355; fiat_p521_uint1 x3356; uint32_t x3357; fiat_p521_uint1 x3358; uint32_t x3359; uint32_t x3360; fiat_p521_uint1 x3361; uint32_t x3362; fiat_p521_uint1 x3363; uint32_t x3364; fiat_p521_uint1 x3365; uint32_t x3366; fiat_p521_uint1 x3367; uint32_t x3368; fiat_p521_uint1 x3369; uint32_t x3370; fiat_p521_uint1 x3371; uint32_t x3372; fiat_p521_uint1 x3373; uint32_t x3374; fiat_p521_uint1 x3375; uint32_t x3376; fiat_p521_uint1 x3377; uint32_t x3378; fiat_p521_uint1 x3379; uint32_t x3380; fiat_p521_uint1 x3381; uint32_t x3382; fiat_p521_uint1 x3383; uint32_t x3384; fiat_p521_uint1 x3385; uint32_t x3386; fiat_p521_uint1 x3387; uint32_t x3388; fiat_p521_uint1 x3389; uint32_t x3390; fiat_p521_uint1 x3391; uint32_t x3392; fiat_p521_uint1 x3393; uint32_t x3394; fiat_p521_uint1 x3395; uint32_t x3396; uint32_t x3397; uint32_t x3398; uint32_t x3399; uint32_t x3400; uint32_t x3401; uint32_t x3402; uint32_t x3403; uint32_t x3404; uint32_t x3405; uint32_t x3406; uint32_t x3407; uint32_t x3408; uint32_t x3409; uint32_t x3410; uint32_t x3411; uint32_t x3412; uint32_t x3413; uint32_t x3414; uint32_t x3415; uint32_t x3416; uint32_t x3417; uint32_t x3418; uint32_t x3419; uint32_t x3420; uint32_t x3421; uint32_t x3422; uint32_t x3423; uint32_t x3424; uint32_t x3425; uint32_t x3426; uint32_t x3427; uint32_t x3428; uint32_t x3429; uint32_t x3430; fiat_p521_uint1 x3431; uint32_t x3432; fiat_p521_uint1 x3433; uint32_t x3434; fiat_p521_uint1 x3435; uint32_t x3436; fiat_p521_uint1 x3437; uint32_t x3438; fiat_p521_uint1 x3439; uint32_t x3440; fiat_p521_uint1 x3441; uint32_t x3442; fiat_p521_uint1 x3443; uint32_t x3444; fiat_p521_uint1 x3445; uint32_t x3446; fiat_p521_uint1 x3447; uint32_t x3448; fiat_p521_uint1 x3449; uint32_t x3450; fiat_p521_uint1 x3451; uint32_t x3452; fiat_p521_uint1 x3453; uint32_t x3454; fiat_p521_uint1 x3455; uint32_t x3456; fiat_p521_uint1 x3457; uint32_t x3458; fiat_p521_uint1 x3459; uint32_t x3460; fiat_p521_uint1 x3461; uint32_t x3462; uint32_t x3463; fiat_p521_uint1 x3464; uint32_t x3465; fiat_p521_uint1 x3466; uint32_t x3467; fiat_p521_uint1 x3468; uint32_t x3469; fiat_p521_uint1 x3470; uint32_t x3471; fiat_p521_uint1 x3472; uint32_t x3473; fiat_p521_uint1 x3474; uint32_t x3475; fiat_p521_uint1 x3476; uint32_t x3477; fiat_p521_uint1 x3478; uint32_t x3479; fiat_p521_uint1 x3480; uint32_t x3481; fiat_p521_uint1 x3482; uint32_t x3483; fiat_p521_uint1 x3484; uint32_t x3485; fiat_p521_uint1 x3486; uint32_t x3487; fiat_p521_uint1 x3488; uint32_t x3489; fiat_p521_uint1 x3490; uint32_t x3491; fiat_p521_uint1 x3492; uint32_t x3493; fiat_p521_uint1 x3494; uint32_t x3495; fiat_p521_uint1 x3496; uint32_t x3497; fiat_p521_uint1 x3498; uint32_t x3499; uint32_t x3500; fiat_p521_uint1 x3501; uint32_t x3502; fiat_p521_uint1 x3503; uint32_t x3504; fiat_p521_uint1 x3505; uint32_t x3506; fiat_p521_uint1 x3507; uint32_t x3508; fiat_p521_uint1 x3509; uint32_t x3510; fiat_p521_uint1 x3511; uint32_t x3512; fiat_p521_uint1 x3513; uint32_t x3514; fiat_p521_uint1 x3515; uint32_t x3516; fiat_p521_uint1 x3517; uint32_t x3518; fiat_p521_uint1 x3519; uint32_t x3520; fiat_p521_uint1 x3521; uint32_t x3522; fiat_p521_uint1 x3523; uint32_t x3524; fiat_p521_uint1 x3525; uint32_t x3526; fiat_p521_uint1 x3527; uint32_t x3528; fiat_p521_uint1 x3529; uint32_t x3530; fiat_p521_uint1 x3531; uint32_t x3532; fiat_p521_uint1 x3533; uint32_t x3534; fiat_p521_uint1 x3535; uint32_t x3536; uint32_t x3537; uint32_t x3538; uint32_t x3539; uint32_t x3540; uint32_t x3541; uint32_t x3542; uint32_t x3543; uint32_t x3544; uint32_t x3545; uint32_t x3546; uint32_t x3547; uint32_t x3548; uint32_t x3549; uint32_t x3550; uint32_t x3551; uint32_t x3552; x1 = (arg1[1]); x2 = (arg1[2]); x3 = (arg1[3]); x4 = (arg1[4]); x5 = (arg1[5]); x6 = (arg1[6]); x7 = (arg1[7]); x8 = (arg1[8]); x9 = (arg1[9]); x10 = (arg1[10]); x11 = (arg1[11]); x12 = (arg1[12]); x13 = (arg1[13]); x14 = (arg1[14]); x15 = (arg1[15]); x16 = (arg1[16]); x17 = (arg1[0]); fiat_p521_mulx_u32(&x18, &x19, x17, (arg1[16])); fiat_p521_mulx_u32(&x20, &x21, x17, (arg1[15])); fiat_p521_mulx_u32(&x22, &x23, x17, (arg1[14])); fiat_p521_mulx_u32(&x24, &x25, x17, (arg1[13])); fiat_p521_mulx_u32(&x26, &x27, x17, (arg1[12])); fiat_p521_mulx_u32(&x28, &x29, x17, (arg1[11])); fiat_p521_mulx_u32(&x30, &x31, x17, (arg1[10])); fiat_p521_mulx_u32(&x32, &x33, x17, (arg1[9])); fiat_p521_mulx_u32(&x34, &x35, x17, (arg1[8])); fiat_p521_mulx_u32(&x36, &x37, x17, (arg1[7])); fiat_p521_mulx_u32(&x38, &x39, x17, (arg1[6])); fiat_p521_mulx_u32(&x40, &x41, x17, (arg1[5])); fiat_p521_mulx_u32(&x42, &x43, x17, (arg1[4])); fiat_p521_mulx_u32(&x44, &x45, x17, (arg1[3])); fiat_p521_mulx_u32(&x46, &x47, x17, (arg1[2])); fiat_p521_mulx_u32(&x48, &x49, x17, (arg1[1])); fiat_p521_mulx_u32(&x50, &x51, x17, (arg1[0])); fiat_p521_addcarryx_u32(&x52, &x53, 0x0, x51, x48); fiat_p521_addcarryx_u32(&x54, &x55, x53, x49, x46); fiat_p521_addcarryx_u32(&x56, &x57, x55, x47, x44); fiat_p521_addcarryx_u32(&x58, &x59, x57, x45, x42); fiat_p521_addcarryx_u32(&x60, &x61, x59, x43, x40); fiat_p521_addcarryx_u32(&x62, &x63, x61, x41, x38); fiat_p521_addcarryx_u32(&x64, &x65, x63, x39, x36); fiat_p521_addcarryx_u32(&x66, &x67, x65, x37, x34); fiat_p521_addcarryx_u32(&x68, &x69, x67, x35, x32); fiat_p521_addcarryx_u32(&x70, &x71, x69, x33, x30); fiat_p521_addcarryx_u32(&x72, &x73, x71, x31, x28); fiat_p521_addcarryx_u32(&x74, &x75, x73, x29, x26); fiat_p521_addcarryx_u32(&x76, &x77, x75, x27, x24); fiat_p521_addcarryx_u32(&x78, &x79, x77, x25, x22); fiat_p521_addcarryx_u32(&x80, &x81, x79, x23, x20); fiat_p521_addcarryx_u32(&x82, &x83, x81, x21, x18); x84 = (x83 + x19); fiat_p521_mulx_u32(&x85, &x86, x50, UINT16_C(0x1ff)); fiat_p521_mulx_u32(&x87, &x88, x50, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x89, &x90, x50, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x91, &x92, x50, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x93, &x94, x50, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x95, &x96, x50, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x97, &x98, x50, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x99, &x100, x50, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x101, &x102, x50, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x103, &x104, x50, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x105, &x106, x50, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x107, &x108, x50, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x109, &x110, x50, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x111, &x112, x50, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x113, &x114, x50, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x115, &x116, x50, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x117, &x118, x50, UINT32_C(0xffffffff)); fiat_p521_addcarryx_u32(&x119, &x120, 0x0, x118, x115); fiat_p521_addcarryx_u32(&x121, &x122, x120, x116, x113); fiat_p521_addcarryx_u32(&x123, &x124, x122, x114, x111); fiat_p521_addcarryx_u32(&x125, &x126, x124, x112, x109); fiat_p521_addcarryx_u32(&x127, &x128, x126, x110, x107); fiat_p521_addcarryx_u32(&x129, &x130, x128, x108, x105); fiat_p521_addcarryx_u32(&x131, &x132, x130, x106, x103); fiat_p521_addcarryx_u32(&x133, &x134, x132, x104, x101); fiat_p521_addcarryx_u32(&x135, &x136, x134, x102, x99); fiat_p521_addcarryx_u32(&x137, &x138, x136, x100, x97); fiat_p521_addcarryx_u32(&x139, &x140, x138, x98, x95); fiat_p521_addcarryx_u32(&x141, &x142, x140, x96, x93); fiat_p521_addcarryx_u32(&x143, &x144, x142, x94, x91); fiat_p521_addcarryx_u32(&x145, &x146, x144, x92, x89); fiat_p521_addcarryx_u32(&x147, &x148, x146, x90, x87); fiat_p521_addcarryx_u32(&x149, &x150, x148, x88, x85); x151 = (x150 + x86); fiat_p521_addcarryx_u32(&x152, &x153, 0x0, x50, x117); fiat_p521_addcarryx_u32(&x154, &x155, x153, x52, x119); fiat_p521_addcarryx_u32(&x156, &x157, x155, x54, x121); fiat_p521_addcarryx_u32(&x158, &x159, x157, x56, x123); fiat_p521_addcarryx_u32(&x160, &x161, x159, x58, x125); fiat_p521_addcarryx_u32(&x162, &x163, x161, x60, x127); fiat_p521_addcarryx_u32(&x164, &x165, x163, x62, x129); fiat_p521_addcarryx_u32(&x166, &x167, x165, x64, x131); fiat_p521_addcarryx_u32(&x168, &x169, x167, x66, x133); fiat_p521_addcarryx_u32(&x170, &x171, x169, x68, x135); fiat_p521_addcarryx_u32(&x172, &x173, x171, x70, x137); fiat_p521_addcarryx_u32(&x174, &x175, x173, x72, x139); fiat_p521_addcarryx_u32(&x176, &x177, x175, x74, x141); fiat_p521_addcarryx_u32(&x178, &x179, x177, x76, x143); fiat_p521_addcarryx_u32(&x180, &x181, x179, x78, x145); fiat_p521_addcarryx_u32(&x182, &x183, x181, x80, x147); fiat_p521_addcarryx_u32(&x184, &x185, x183, x82, x149); fiat_p521_addcarryx_u32(&x186, &x187, x185, x84, x151); fiat_p521_mulx_u32(&x188, &x189, x1, (arg1[16])); fiat_p521_mulx_u32(&x190, &x191, x1, (arg1[15])); fiat_p521_mulx_u32(&x192, &x193, x1, (arg1[14])); fiat_p521_mulx_u32(&x194, &x195, x1, (arg1[13])); fiat_p521_mulx_u32(&x196, &x197, x1, (arg1[12])); fiat_p521_mulx_u32(&x198, &x199, x1, (arg1[11])); fiat_p521_mulx_u32(&x200, &x201, x1, (arg1[10])); fiat_p521_mulx_u32(&x202, &x203, x1, (arg1[9])); fiat_p521_mulx_u32(&x204, &x205, x1, (arg1[8])); fiat_p521_mulx_u32(&x206, &x207, x1, (arg1[7])); fiat_p521_mulx_u32(&x208, &x209, x1, (arg1[6])); fiat_p521_mulx_u32(&x210, &x211, x1, (arg1[5])); fiat_p521_mulx_u32(&x212, &x213, x1, (arg1[4])); fiat_p521_mulx_u32(&x214, &x215, x1, (arg1[3])); fiat_p521_mulx_u32(&x216, &x217, x1, (arg1[2])); fiat_p521_mulx_u32(&x218, &x219, x1, (arg1[1])); fiat_p521_mulx_u32(&x220, &x221, x1, (arg1[0])); fiat_p521_addcarryx_u32(&x222, &x223, 0x0, x221, x218); fiat_p521_addcarryx_u32(&x224, &x225, x223, x219, x216); fiat_p521_addcarryx_u32(&x226, &x227, x225, x217, x214); fiat_p521_addcarryx_u32(&x228, &x229, x227, x215, x212); fiat_p521_addcarryx_u32(&x230, &x231, x229, x213, x210); fiat_p521_addcarryx_u32(&x232, &x233, x231, x211, x208); fiat_p521_addcarryx_u32(&x234, &x235, x233, x209, x206); fiat_p521_addcarryx_u32(&x236, &x237, x235, x207, x204); fiat_p521_addcarryx_u32(&x238, &x239, x237, x205, x202); fiat_p521_addcarryx_u32(&x240, &x241, x239, x203, x200); fiat_p521_addcarryx_u32(&x242, &x243, x241, x201, x198); fiat_p521_addcarryx_u32(&x244, &x245, x243, x199, x196); fiat_p521_addcarryx_u32(&x246, &x247, x245, x197, x194); fiat_p521_addcarryx_u32(&x248, &x249, x247, x195, x192); fiat_p521_addcarryx_u32(&x250, &x251, x249, x193, x190); fiat_p521_addcarryx_u32(&x252, &x253, x251, x191, x188); x254 = (x253 + x189); fiat_p521_addcarryx_u32(&x255, &x256, 0x0, x154, x220); fiat_p521_addcarryx_u32(&x257, &x258, x256, x156, x222); fiat_p521_addcarryx_u32(&x259, &x260, x258, x158, x224); fiat_p521_addcarryx_u32(&x261, &x262, x260, x160, x226); fiat_p521_addcarryx_u32(&x263, &x264, x262, x162, x228); fiat_p521_addcarryx_u32(&x265, &x266, x264, x164, x230); fiat_p521_addcarryx_u32(&x267, &x268, x266, x166, x232); fiat_p521_addcarryx_u32(&x269, &x270, x268, x168, x234); fiat_p521_addcarryx_u32(&x271, &x272, x270, x170, x236); fiat_p521_addcarryx_u32(&x273, &x274, x272, x172, x238); fiat_p521_addcarryx_u32(&x275, &x276, x274, x174, x240); fiat_p521_addcarryx_u32(&x277, &x278, x276, x176, x242); fiat_p521_addcarryx_u32(&x279, &x280, x278, x178, x244); fiat_p521_addcarryx_u32(&x281, &x282, x280, x180, x246); fiat_p521_addcarryx_u32(&x283, &x284, x282, x182, x248); fiat_p521_addcarryx_u32(&x285, &x286, x284, x184, x250); fiat_p521_addcarryx_u32(&x287, &x288, x286, x186, x252); fiat_p521_addcarryx_u32(&x289, &x290, x288, x187, x254); fiat_p521_mulx_u32(&x291, &x292, x255, UINT16_C(0x1ff)); fiat_p521_mulx_u32(&x293, &x294, x255, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x295, &x296, x255, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x297, &x298, x255, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x299, &x300, x255, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x301, &x302, x255, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x303, &x304, x255, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x305, &x306, x255, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x307, &x308, x255, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x309, &x310, x255, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x311, &x312, x255, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x313, &x314, x255, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x315, &x316, x255, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x317, &x318, x255, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x319, &x320, x255, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x321, &x322, x255, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x323, &x324, x255, UINT32_C(0xffffffff)); fiat_p521_addcarryx_u32(&x325, &x326, 0x0, x324, x321); fiat_p521_addcarryx_u32(&x327, &x328, x326, x322, x319); fiat_p521_addcarryx_u32(&x329, &x330, x328, x320, x317); fiat_p521_addcarryx_u32(&x331, &x332, x330, x318, x315); fiat_p521_addcarryx_u32(&x333, &x334, x332, x316, x313); fiat_p521_addcarryx_u32(&x335, &x336, x334, x314, x311); fiat_p521_addcarryx_u32(&x337, &x338, x336, x312, x309); fiat_p521_addcarryx_u32(&x339, &x340, x338, x310, x307); fiat_p521_addcarryx_u32(&x341, &x342, x340, x308, x305); fiat_p521_addcarryx_u32(&x343, &x344, x342, x306, x303); fiat_p521_addcarryx_u32(&x345, &x346, x344, x304, x301); fiat_p521_addcarryx_u32(&x347, &x348, x346, x302, x299); fiat_p521_addcarryx_u32(&x349, &x350, x348, x300, x297); fiat_p521_addcarryx_u32(&x351, &x352, x350, x298, x295); fiat_p521_addcarryx_u32(&x353, &x354, x352, x296, x293); fiat_p521_addcarryx_u32(&x355, &x356, x354, x294, x291); x357 = (x356 + x292); fiat_p521_addcarryx_u32(&x358, &x359, 0x0, x255, x323); fiat_p521_addcarryx_u32(&x360, &x361, x359, x257, x325); fiat_p521_addcarryx_u32(&x362, &x363, x361, x259, x327); fiat_p521_addcarryx_u32(&x364, &x365, x363, x261, x329); fiat_p521_addcarryx_u32(&x366, &x367, x365, x263, x331); fiat_p521_addcarryx_u32(&x368, &x369, x367, x265, x333); fiat_p521_addcarryx_u32(&x370, &x371, x369, x267, x335); fiat_p521_addcarryx_u32(&x372, &x373, x371, x269, x337); fiat_p521_addcarryx_u32(&x374, &x375, x373, x271, x339); fiat_p521_addcarryx_u32(&x376, &x377, x375, x273, x341); fiat_p521_addcarryx_u32(&x378, &x379, x377, x275, x343); fiat_p521_addcarryx_u32(&x380, &x381, x379, x277, x345); fiat_p521_addcarryx_u32(&x382, &x383, x381, x279, x347); fiat_p521_addcarryx_u32(&x384, &x385, x383, x281, x349); fiat_p521_addcarryx_u32(&x386, &x387, x385, x283, x351); fiat_p521_addcarryx_u32(&x388, &x389, x387, x285, x353); fiat_p521_addcarryx_u32(&x390, &x391, x389, x287, x355); fiat_p521_addcarryx_u32(&x392, &x393, x391, x289, x357); x394 = ((uint32_t)x393 + x290); fiat_p521_mulx_u32(&x395, &x396, x2, (arg1[16])); fiat_p521_mulx_u32(&x397, &x398, x2, (arg1[15])); fiat_p521_mulx_u32(&x399, &x400, x2, (arg1[14])); fiat_p521_mulx_u32(&x401, &x402, x2, (arg1[13])); fiat_p521_mulx_u32(&x403, &x404, x2, (arg1[12])); fiat_p521_mulx_u32(&x405, &x406, x2, (arg1[11])); fiat_p521_mulx_u32(&x407, &x408, x2, (arg1[10])); fiat_p521_mulx_u32(&x409, &x410, x2, (arg1[9])); fiat_p521_mulx_u32(&x411, &x412, x2, (arg1[8])); fiat_p521_mulx_u32(&x413, &x414, x2, (arg1[7])); fiat_p521_mulx_u32(&x415, &x416, x2, (arg1[6])); fiat_p521_mulx_u32(&x417, &x418, x2, (arg1[5])); fiat_p521_mulx_u32(&x419, &x420, x2, (arg1[4])); fiat_p521_mulx_u32(&x421, &x422, x2, (arg1[3])); fiat_p521_mulx_u32(&x423, &x424, x2, (arg1[2])); fiat_p521_mulx_u32(&x425, &x426, x2, (arg1[1])); fiat_p521_mulx_u32(&x427, &x428, x2, (arg1[0])); fiat_p521_addcarryx_u32(&x429, &x430, 0x0, x428, x425); fiat_p521_addcarryx_u32(&x431, &x432, x430, x426, x423); fiat_p521_addcarryx_u32(&x433, &x434, x432, x424, x421); fiat_p521_addcarryx_u32(&x435, &x436, x434, x422, x419); fiat_p521_addcarryx_u32(&x437, &x438, x436, x420, x417); fiat_p521_addcarryx_u32(&x439, &x440, x438, x418, x415); fiat_p521_addcarryx_u32(&x441, &x442, x440, x416, x413); fiat_p521_addcarryx_u32(&x443, &x444, x442, x414, x411); fiat_p521_addcarryx_u32(&x445, &x446, x444, x412, x409); fiat_p521_addcarryx_u32(&x447, &x448, x446, x410, x407); fiat_p521_addcarryx_u32(&x449, &x450, x448, x408, x405); fiat_p521_addcarryx_u32(&x451, &x452, x450, x406, x403); fiat_p521_addcarryx_u32(&x453, &x454, x452, x404, x401); fiat_p521_addcarryx_u32(&x455, &x456, x454, x402, x399); fiat_p521_addcarryx_u32(&x457, &x458, x456, x400, x397); fiat_p521_addcarryx_u32(&x459, &x460, x458, x398, x395); x461 = (x460 + x396); fiat_p521_addcarryx_u32(&x462, &x463, 0x0, x360, x427); fiat_p521_addcarryx_u32(&x464, &x465, x463, x362, x429); fiat_p521_addcarryx_u32(&x466, &x467, x465, x364, x431); fiat_p521_addcarryx_u32(&x468, &x469, x467, x366, x433); fiat_p521_addcarryx_u32(&x470, &x471, x469, x368, x435); fiat_p521_addcarryx_u32(&x472, &x473, x471, x370, x437); fiat_p521_addcarryx_u32(&x474, &x475, x473, x372, x439); fiat_p521_addcarryx_u32(&x476, &x477, x475, x374, x441); fiat_p521_addcarryx_u32(&x478, &x479, x477, x376, x443); fiat_p521_addcarryx_u32(&x480, &x481, x479, x378, x445); fiat_p521_addcarryx_u32(&x482, &x483, x481, x380, x447); fiat_p521_addcarryx_u32(&x484, &x485, x483, x382, x449); fiat_p521_addcarryx_u32(&x486, &x487, x485, x384, x451); fiat_p521_addcarryx_u32(&x488, &x489, x487, x386, x453); fiat_p521_addcarryx_u32(&x490, &x491, x489, x388, x455); fiat_p521_addcarryx_u32(&x492, &x493, x491, x390, x457); fiat_p521_addcarryx_u32(&x494, &x495, x493, x392, x459); fiat_p521_addcarryx_u32(&x496, &x497, x495, x394, x461); fiat_p521_mulx_u32(&x498, &x499, x462, UINT16_C(0x1ff)); fiat_p521_mulx_u32(&x500, &x501, x462, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x502, &x503, x462, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x504, &x505, x462, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x506, &x507, x462, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x508, &x509, x462, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x510, &x511, x462, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x512, &x513, x462, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x514, &x515, x462, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x516, &x517, x462, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x518, &x519, x462, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x520, &x521, x462, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x522, &x523, x462, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x524, &x525, x462, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x526, &x527, x462, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x528, &x529, x462, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x530, &x531, x462, UINT32_C(0xffffffff)); fiat_p521_addcarryx_u32(&x532, &x533, 0x0, x531, x528); fiat_p521_addcarryx_u32(&x534, &x535, x533, x529, x526); fiat_p521_addcarryx_u32(&x536, &x537, x535, x527, x524); fiat_p521_addcarryx_u32(&x538, &x539, x537, x525, x522); fiat_p521_addcarryx_u32(&x540, &x541, x539, x523, x520); fiat_p521_addcarryx_u32(&x542, &x543, x541, x521, x518); fiat_p521_addcarryx_u32(&x544, &x545, x543, x519, x516); fiat_p521_addcarryx_u32(&x546, &x547, x545, x517, x514); fiat_p521_addcarryx_u32(&x548, &x549, x547, x515, x512); fiat_p521_addcarryx_u32(&x550, &x551, x549, x513, x510); fiat_p521_addcarryx_u32(&x552, &x553, x551, x511, x508); fiat_p521_addcarryx_u32(&x554, &x555, x553, x509, x506); fiat_p521_addcarryx_u32(&x556, &x557, x555, x507, x504); fiat_p521_addcarryx_u32(&x558, &x559, x557, x505, x502); fiat_p521_addcarryx_u32(&x560, &x561, x559, x503, x500); fiat_p521_addcarryx_u32(&x562, &x563, x561, x501, x498); x564 = (x563 + x499); fiat_p521_addcarryx_u32(&x565, &x566, 0x0, x462, x530); fiat_p521_addcarryx_u32(&x567, &x568, x566, x464, x532); fiat_p521_addcarryx_u32(&x569, &x570, x568, x466, x534); fiat_p521_addcarryx_u32(&x571, &x572, x570, x468, x536); fiat_p521_addcarryx_u32(&x573, &x574, x572, x470, x538); fiat_p521_addcarryx_u32(&x575, &x576, x574, x472, x540); fiat_p521_addcarryx_u32(&x577, &x578, x576, x474, x542); fiat_p521_addcarryx_u32(&x579, &x580, x578, x476, x544); fiat_p521_addcarryx_u32(&x581, &x582, x580, x478, x546); fiat_p521_addcarryx_u32(&x583, &x584, x582, x480, x548); fiat_p521_addcarryx_u32(&x585, &x586, x584, x482, x550); fiat_p521_addcarryx_u32(&x587, &x588, x586, x484, x552); fiat_p521_addcarryx_u32(&x589, &x590, x588, x486, x554); fiat_p521_addcarryx_u32(&x591, &x592, x590, x488, x556); fiat_p521_addcarryx_u32(&x593, &x594, x592, x490, x558); fiat_p521_addcarryx_u32(&x595, &x596, x594, x492, x560); fiat_p521_addcarryx_u32(&x597, &x598, x596, x494, x562); fiat_p521_addcarryx_u32(&x599, &x600, x598, x496, x564); x601 = ((uint32_t)x600 + x497); fiat_p521_mulx_u32(&x602, &x603, x3, (arg1[16])); fiat_p521_mulx_u32(&x604, &x605, x3, (arg1[15])); fiat_p521_mulx_u32(&x606, &x607, x3, (arg1[14])); fiat_p521_mulx_u32(&x608, &x609, x3, (arg1[13])); fiat_p521_mulx_u32(&x610, &x611, x3, (arg1[12])); fiat_p521_mulx_u32(&x612, &x613, x3, (arg1[11])); fiat_p521_mulx_u32(&x614, &x615, x3, (arg1[10])); fiat_p521_mulx_u32(&x616, &x617, x3, (arg1[9])); fiat_p521_mulx_u32(&x618, &x619, x3, (arg1[8])); fiat_p521_mulx_u32(&x620, &x621, x3, (arg1[7])); fiat_p521_mulx_u32(&x622, &x623, x3, (arg1[6])); fiat_p521_mulx_u32(&x624, &x625, x3, (arg1[5])); fiat_p521_mulx_u32(&x626, &x627, x3, (arg1[4])); fiat_p521_mulx_u32(&x628, &x629, x3, (arg1[3])); fiat_p521_mulx_u32(&x630, &x631, x3, (arg1[2])); fiat_p521_mulx_u32(&x632, &x633, x3, (arg1[1])); fiat_p521_mulx_u32(&x634, &x635, x3, (arg1[0])); fiat_p521_addcarryx_u32(&x636, &x637, 0x0, x635, x632); fiat_p521_addcarryx_u32(&x638, &x639, x637, x633, x630); fiat_p521_addcarryx_u32(&x640, &x641, x639, x631, x628); fiat_p521_addcarryx_u32(&x642, &x643, x641, x629, x626); fiat_p521_addcarryx_u32(&x644, &x645, x643, x627, x624); fiat_p521_addcarryx_u32(&x646, &x647, x645, x625, x622); fiat_p521_addcarryx_u32(&x648, &x649, x647, x623, x620); fiat_p521_addcarryx_u32(&x650, &x651, x649, x621, x618); fiat_p521_addcarryx_u32(&x652, &x653, x651, x619, x616); fiat_p521_addcarryx_u32(&x654, &x655, x653, x617, x614); fiat_p521_addcarryx_u32(&x656, &x657, x655, x615, x612); fiat_p521_addcarryx_u32(&x658, &x659, x657, x613, x610); fiat_p521_addcarryx_u32(&x660, &x661, x659, x611, x608); fiat_p521_addcarryx_u32(&x662, &x663, x661, x609, x606); fiat_p521_addcarryx_u32(&x664, &x665, x663, x607, x604); fiat_p521_addcarryx_u32(&x666, &x667, x665, x605, x602); x668 = (x667 + x603); fiat_p521_addcarryx_u32(&x669, &x670, 0x0, x567, x634); fiat_p521_addcarryx_u32(&x671, &x672, x670, x569, x636); fiat_p521_addcarryx_u32(&x673, &x674, x672, x571, x638); fiat_p521_addcarryx_u32(&x675, &x676, x674, x573, x640); fiat_p521_addcarryx_u32(&x677, &x678, x676, x575, x642); fiat_p521_addcarryx_u32(&x679, &x680, x678, x577, x644); fiat_p521_addcarryx_u32(&x681, &x682, x680, x579, x646); fiat_p521_addcarryx_u32(&x683, &x684, x682, x581, x648); fiat_p521_addcarryx_u32(&x685, &x686, x684, x583, x650); fiat_p521_addcarryx_u32(&x687, &x688, x686, x585, x652); fiat_p521_addcarryx_u32(&x689, &x690, x688, x587, x654); fiat_p521_addcarryx_u32(&x691, &x692, x690, x589, x656); fiat_p521_addcarryx_u32(&x693, &x694, x692, x591, x658); fiat_p521_addcarryx_u32(&x695, &x696, x694, x593, x660); fiat_p521_addcarryx_u32(&x697, &x698, x696, x595, x662); fiat_p521_addcarryx_u32(&x699, &x700, x698, x597, x664); fiat_p521_addcarryx_u32(&x701, &x702, x700, x599, x666); fiat_p521_addcarryx_u32(&x703, &x704, x702, x601, x668); fiat_p521_mulx_u32(&x705, &x706, x669, UINT16_C(0x1ff)); fiat_p521_mulx_u32(&x707, &x708, x669, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x709, &x710, x669, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x711, &x712, x669, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x713, &x714, x669, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x715, &x716, x669, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x717, &x718, x669, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x719, &x720, x669, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x721, &x722, x669, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x723, &x724, x669, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x725, &x726, x669, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x727, &x728, x669, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x729, &x730, x669, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x731, &x732, x669, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x733, &x734, x669, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x735, &x736, x669, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x737, &x738, x669, UINT32_C(0xffffffff)); fiat_p521_addcarryx_u32(&x739, &x740, 0x0, x738, x735); fiat_p521_addcarryx_u32(&x741, &x742, x740, x736, x733); fiat_p521_addcarryx_u32(&x743, &x744, x742, x734, x731); fiat_p521_addcarryx_u32(&x745, &x746, x744, x732, x729); fiat_p521_addcarryx_u32(&x747, &x748, x746, x730, x727); fiat_p521_addcarryx_u32(&x749, &x750, x748, x728, x725); fiat_p521_addcarryx_u32(&x751, &x752, x750, x726, x723); fiat_p521_addcarryx_u32(&x753, &x754, x752, x724, x721); fiat_p521_addcarryx_u32(&x755, &x756, x754, x722, x719); fiat_p521_addcarryx_u32(&x757, &x758, x756, x720, x717); fiat_p521_addcarryx_u32(&x759, &x760, x758, x718, x715); fiat_p521_addcarryx_u32(&x761, &x762, x760, x716, x713); fiat_p521_addcarryx_u32(&x763, &x764, x762, x714, x711); fiat_p521_addcarryx_u32(&x765, &x766, x764, x712, x709); fiat_p521_addcarryx_u32(&x767, &x768, x766, x710, x707); fiat_p521_addcarryx_u32(&x769, &x770, x768, x708, x705); x771 = (x770 + x706); fiat_p521_addcarryx_u32(&x772, &x773, 0x0, x669, x737); fiat_p521_addcarryx_u32(&x774, &x775, x773, x671, x739); fiat_p521_addcarryx_u32(&x776, &x777, x775, x673, x741); fiat_p521_addcarryx_u32(&x778, &x779, x777, x675, x743); fiat_p521_addcarryx_u32(&x780, &x781, x779, x677, x745); fiat_p521_addcarryx_u32(&x782, &x783, x781, x679, x747); fiat_p521_addcarryx_u32(&x784, &x785, x783, x681, x749); fiat_p521_addcarryx_u32(&x786, &x787, x785, x683, x751); fiat_p521_addcarryx_u32(&x788, &x789, x787, x685, x753); fiat_p521_addcarryx_u32(&x790, &x791, x789, x687, x755); fiat_p521_addcarryx_u32(&x792, &x793, x791, x689, x757); fiat_p521_addcarryx_u32(&x794, &x795, x793, x691, x759); fiat_p521_addcarryx_u32(&x796, &x797, x795, x693, x761); fiat_p521_addcarryx_u32(&x798, &x799, x797, x695, x763); fiat_p521_addcarryx_u32(&x800, &x801, x799, x697, x765); fiat_p521_addcarryx_u32(&x802, &x803, x801, x699, x767); fiat_p521_addcarryx_u32(&x804, &x805, x803, x701, x769); fiat_p521_addcarryx_u32(&x806, &x807, x805, x703, x771); x808 = ((uint32_t)x807 + x704); fiat_p521_mulx_u32(&x809, &x810, x4, (arg1[16])); fiat_p521_mulx_u32(&x811, &x812, x4, (arg1[15])); fiat_p521_mulx_u32(&x813, &x814, x4, (arg1[14])); fiat_p521_mulx_u32(&x815, &x816, x4, (arg1[13])); fiat_p521_mulx_u32(&x817, &x818, x4, (arg1[12])); fiat_p521_mulx_u32(&x819, &x820, x4, (arg1[11])); fiat_p521_mulx_u32(&x821, &x822, x4, (arg1[10])); fiat_p521_mulx_u32(&x823, &x824, x4, (arg1[9])); fiat_p521_mulx_u32(&x825, &x826, x4, (arg1[8])); fiat_p521_mulx_u32(&x827, &x828, x4, (arg1[7])); fiat_p521_mulx_u32(&x829, &x830, x4, (arg1[6])); fiat_p521_mulx_u32(&x831, &x832, x4, (arg1[5])); fiat_p521_mulx_u32(&x833, &x834, x4, (arg1[4])); fiat_p521_mulx_u32(&x835, &x836, x4, (arg1[3])); fiat_p521_mulx_u32(&x837, &x838, x4, (arg1[2])); fiat_p521_mulx_u32(&x839, &x840, x4, (arg1[1])); fiat_p521_mulx_u32(&x841, &x842, x4, (arg1[0])); fiat_p521_addcarryx_u32(&x843, &x844, 0x0, x842, x839); fiat_p521_addcarryx_u32(&x845, &x846, x844, x840, x837); fiat_p521_addcarryx_u32(&x847, &x848, x846, x838, x835); fiat_p521_addcarryx_u32(&x849, &x850, x848, x836, x833); fiat_p521_addcarryx_u32(&x851, &x852, x850, x834, x831); fiat_p521_addcarryx_u32(&x853, &x854, x852, x832, x829); fiat_p521_addcarryx_u32(&x855, &x856, x854, x830, x827); fiat_p521_addcarryx_u32(&x857, &x858, x856, x828, x825); fiat_p521_addcarryx_u32(&x859, &x860, x858, x826, x823); fiat_p521_addcarryx_u32(&x861, &x862, x860, x824, x821); fiat_p521_addcarryx_u32(&x863, &x864, x862, x822, x819); fiat_p521_addcarryx_u32(&x865, &x866, x864, x820, x817); fiat_p521_addcarryx_u32(&x867, &x868, x866, x818, x815); fiat_p521_addcarryx_u32(&x869, &x870, x868, x816, x813); fiat_p521_addcarryx_u32(&x871, &x872, x870, x814, x811); fiat_p521_addcarryx_u32(&x873, &x874, x872, x812, x809); x875 = (x874 + x810); fiat_p521_addcarryx_u32(&x876, &x877, 0x0, x774, x841); fiat_p521_addcarryx_u32(&x878, &x879, x877, x776, x843); fiat_p521_addcarryx_u32(&x880, &x881, x879, x778, x845); fiat_p521_addcarryx_u32(&x882, &x883, x881, x780, x847); fiat_p521_addcarryx_u32(&x884, &x885, x883, x782, x849); fiat_p521_addcarryx_u32(&x886, &x887, x885, x784, x851); fiat_p521_addcarryx_u32(&x888, &x889, x887, x786, x853); fiat_p521_addcarryx_u32(&x890, &x891, x889, x788, x855); fiat_p521_addcarryx_u32(&x892, &x893, x891, x790, x857); fiat_p521_addcarryx_u32(&x894, &x895, x893, x792, x859); fiat_p521_addcarryx_u32(&x896, &x897, x895, x794, x861); fiat_p521_addcarryx_u32(&x898, &x899, x897, x796, x863); fiat_p521_addcarryx_u32(&x900, &x901, x899, x798, x865); fiat_p521_addcarryx_u32(&x902, &x903, x901, x800, x867); fiat_p521_addcarryx_u32(&x904, &x905, x903, x802, x869); fiat_p521_addcarryx_u32(&x906, &x907, x905, x804, x871); fiat_p521_addcarryx_u32(&x908, &x909, x907, x806, x873); fiat_p521_addcarryx_u32(&x910, &x911, x909, x808, x875); fiat_p521_mulx_u32(&x912, &x913, x876, UINT16_C(0x1ff)); fiat_p521_mulx_u32(&x914, &x915, x876, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x916, &x917, x876, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x918, &x919, x876, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x920, &x921, x876, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x922, &x923, x876, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x924, &x925, x876, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x926, &x927, x876, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x928, &x929, x876, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x930, &x931, x876, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x932, &x933, x876, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x934, &x935, x876, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x936, &x937, x876, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x938, &x939, x876, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x940, &x941, x876, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x942, &x943, x876, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x944, &x945, x876, UINT32_C(0xffffffff)); fiat_p521_addcarryx_u32(&x946, &x947, 0x0, x945, x942); fiat_p521_addcarryx_u32(&x948, &x949, x947, x943, x940); fiat_p521_addcarryx_u32(&x950, &x951, x949, x941, x938); fiat_p521_addcarryx_u32(&x952, &x953, x951, x939, x936); fiat_p521_addcarryx_u32(&x954, &x955, x953, x937, x934); fiat_p521_addcarryx_u32(&x956, &x957, x955, x935, x932); fiat_p521_addcarryx_u32(&x958, &x959, x957, x933, x930); fiat_p521_addcarryx_u32(&x960, &x961, x959, x931, x928); fiat_p521_addcarryx_u32(&x962, &x963, x961, x929, x926); fiat_p521_addcarryx_u32(&x964, &x965, x963, x927, x924); fiat_p521_addcarryx_u32(&x966, &x967, x965, x925, x922); fiat_p521_addcarryx_u32(&x968, &x969, x967, x923, x920); fiat_p521_addcarryx_u32(&x970, &x971, x969, x921, x918); fiat_p521_addcarryx_u32(&x972, &x973, x971, x919, x916); fiat_p521_addcarryx_u32(&x974, &x975, x973, x917, x914); fiat_p521_addcarryx_u32(&x976, &x977, x975, x915, x912); x978 = (x977 + x913); fiat_p521_addcarryx_u32(&x979, &x980, 0x0, x876, x944); fiat_p521_addcarryx_u32(&x981, &x982, x980, x878, x946); fiat_p521_addcarryx_u32(&x983, &x984, x982, x880, x948); fiat_p521_addcarryx_u32(&x985, &x986, x984, x882, x950); fiat_p521_addcarryx_u32(&x987, &x988, x986, x884, x952); fiat_p521_addcarryx_u32(&x989, &x990, x988, x886, x954); fiat_p521_addcarryx_u32(&x991, &x992, x990, x888, x956); fiat_p521_addcarryx_u32(&x993, &x994, x992, x890, x958); fiat_p521_addcarryx_u32(&x995, &x996, x994, x892, x960); fiat_p521_addcarryx_u32(&x997, &x998, x996, x894, x962); fiat_p521_addcarryx_u32(&x999, &x1000, x998, x896, x964); fiat_p521_addcarryx_u32(&x1001, &x1002, x1000, x898, x966); fiat_p521_addcarryx_u32(&x1003, &x1004, x1002, x900, x968); fiat_p521_addcarryx_u32(&x1005, &x1006, x1004, x902, x970); fiat_p521_addcarryx_u32(&x1007, &x1008, x1006, x904, x972); fiat_p521_addcarryx_u32(&x1009, &x1010, x1008, x906, x974); fiat_p521_addcarryx_u32(&x1011, &x1012, x1010, x908, x976); fiat_p521_addcarryx_u32(&x1013, &x1014, x1012, x910, x978); x1015 = ((uint32_t)x1014 + x911); fiat_p521_mulx_u32(&x1016, &x1017, x5, (arg1[16])); fiat_p521_mulx_u32(&x1018, &x1019, x5, (arg1[15])); fiat_p521_mulx_u32(&x1020, &x1021, x5, (arg1[14])); fiat_p521_mulx_u32(&x1022, &x1023, x5, (arg1[13])); fiat_p521_mulx_u32(&x1024, &x1025, x5, (arg1[12])); fiat_p521_mulx_u32(&x1026, &x1027, x5, (arg1[11])); fiat_p521_mulx_u32(&x1028, &x1029, x5, (arg1[10])); fiat_p521_mulx_u32(&x1030, &x1031, x5, (arg1[9])); fiat_p521_mulx_u32(&x1032, &x1033, x5, (arg1[8])); fiat_p521_mulx_u32(&x1034, &x1035, x5, (arg1[7])); fiat_p521_mulx_u32(&x1036, &x1037, x5, (arg1[6])); fiat_p521_mulx_u32(&x1038, &x1039, x5, (arg1[5])); fiat_p521_mulx_u32(&x1040, &x1041, x5, (arg1[4])); fiat_p521_mulx_u32(&x1042, &x1043, x5, (arg1[3])); fiat_p521_mulx_u32(&x1044, &x1045, x5, (arg1[2])); fiat_p521_mulx_u32(&x1046, &x1047, x5, (arg1[1])); fiat_p521_mulx_u32(&x1048, &x1049, x5, (arg1[0])); fiat_p521_addcarryx_u32(&x1050, &x1051, 0x0, x1049, x1046); fiat_p521_addcarryx_u32(&x1052, &x1053, x1051, x1047, x1044); fiat_p521_addcarryx_u32(&x1054, &x1055, x1053, x1045, x1042); fiat_p521_addcarryx_u32(&x1056, &x1057, x1055, x1043, x1040); fiat_p521_addcarryx_u32(&x1058, &x1059, x1057, x1041, x1038); fiat_p521_addcarryx_u32(&x1060, &x1061, x1059, x1039, x1036); fiat_p521_addcarryx_u32(&x1062, &x1063, x1061, x1037, x1034); fiat_p521_addcarryx_u32(&x1064, &x1065, x1063, x1035, x1032); fiat_p521_addcarryx_u32(&x1066, &x1067, x1065, x1033, x1030); fiat_p521_addcarryx_u32(&x1068, &x1069, x1067, x1031, x1028); fiat_p521_addcarryx_u32(&x1070, &x1071, x1069, x1029, x1026); fiat_p521_addcarryx_u32(&x1072, &x1073, x1071, x1027, x1024); fiat_p521_addcarryx_u32(&x1074, &x1075, x1073, x1025, x1022); fiat_p521_addcarryx_u32(&x1076, &x1077, x1075, x1023, x1020); fiat_p521_addcarryx_u32(&x1078, &x1079, x1077, x1021, x1018); fiat_p521_addcarryx_u32(&x1080, &x1081, x1079, x1019, x1016); x1082 = (x1081 + x1017); fiat_p521_addcarryx_u32(&x1083, &x1084, 0x0, x981, x1048); fiat_p521_addcarryx_u32(&x1085, &x1086, x1084, x983, x1050); fiat_p521_addcarryx_u32(&x1087, &x1088, x1086, x985, x1052); fiat_p521_addcarryx_u32(&x1089, &x1090, x1088, x987, x1054); fiat_p521_addcarryx_u32(&x1091, &x1092, x1090, x989, x1056); fiat_p521_addcarryx_u32(&x1093, &x1094, x1092, x991, x1058); fiat_p521_addcarryx_u32(&x1095, &x1096, x1094, x993, x1060); fiat_p521_addcarryx_u32(&x1097, &x1098, x1096, x995, x1062); fiat_p521_addcarryx_u32(&x1099, &x1100, x1098, x997, x1064); fiat_p521_addcarryx_u32(&x1101, &x1102, x1100, x999, x1066); fiat_p521_addcarryx_u32(&x1103, &x1104, x1102, x1001, x1068); fiat_p521_addcarryx_u32(&x1105, &x1106, x1104, x1003, x1070); fiat_p521_addcarryx_u32(&x1107, &x1108, x1106, x1005, x1072); fiat_p521_addcarryx_u32(&x1109, &x1110, x1108, x1007, x1074); fiat_p521_addcarryx_u32(&x1111, &x1112, x1110, x1009, x1076); fiat_p521_addcarryx_u32(&x1113, &x1114, x1112, x1011, x1078); fiat_p521_addcarryx_u32(&x1115, &x1116, x1114, x1013, x1080); fiat_p521_addcarryx_u32(&x1117, &x1118, x1116, x1015, x1082); fiat_p521_mulx_u32(&x1119, &x1120, x1083, UINT16_C(0x1ff)); fiat_p521_mulx_u32(&x1121, &x1122, x1083, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1123, &x1124, x1083, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1125, &x1126, x1083, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1127, &x1128, x1083, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1129, &x1130, x1083, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1131, &x1132, x1083, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1133, &x1134, x1083, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1135, &x1136, x1083, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1137, &x1138, x1083, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1139, &x1140, x1083, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1141, &x1142, x1083, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1143, &x1144, x1083, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1145, &x1146, x1083, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1147, &x1148, x1083, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1149, &x1150, x1083, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1151, &x1152, x1083, UINT32_C(0xffffffff)); fiat_p521_addcarryx_u32(&x1153, &x1154, 0x0, x1152, x1149); fiat_p521_addcarryx_u32(&x1155, &x1156, x1154, x1150, x1147); fiat_p521_addcarryx_u32(&x1157, &x1158, x1156, x1148, x1145); fiat_p521_addcarryx_u32(&x1159, &x1160, x1158, x1146, x1143); fiat_p521_addcarryx_u32(&x1161, &x1162, x1160, x1144, x1141); fiat_p521_addcarryx_u32(&x1163, &x1164, x1162, x1142, x1139); fiat_p521_addcarryx_u32(&x1165, &x1166, x1164, x1140, x1137); fiat_p521_addcarryx_u32(&x1167, &x1168, x1166, x1138, x1135); fiat_p521_addcarryx_u32(&x1169, &x1170, x1168, x1136, x1133); fiat_p521_addcarryx_u32(&x1171, &x1172, x1170, x1134, x1131); fiat_p521_addcarryx_u32(&x1173, &x1174, x1172, x1132, x1129); fiat_p521_addcarryx_u32(&x1175, &x1176, x1174, x1130, x1127); fiat_p521_addcarryx_u32(&x1177, &x1178, x1176, x1128, x1125); fiat_p521_addcarryx_u32(&x1179, &x1180, x1178, x1126, x1123); fiat_p521_addcarryx_u32(&x1181, &x1182, x1180, x1124, x1121); fiat_p521_addcarryx_u32(&x1183, &x1184, x1182, x1122, x1119); x1185 = (x1184 + x1120); fiat_p521_addcarryx_u32(&x1186, &x1187, 0x0, x1083, x1151); fiat_p521_addcarryx_u32(&x1188, &x1189, x1187, x1085, x1153); fiat_p521_addcarryx_u32(&x1190, &x1191, x1189, x1087, x1155); fiat_p521_addcarryx_u32(&x1192, &x1193, x1191, x1089, x1157); fiat_p521_addcarryx_u32(&x1194, &x1195, x1193, x1091, x1159); fiat_p521_addcarryx_u32(&x1196, &x1197, x1195, x1093, x1161); fiat_p521_addcarryx_u32(&x1198, &x1199, x1197, x1095, x1163); fiat_p521_addcarryx_u32(&x1200, &x1201, x1199, x1097, x1165); fiat_p521_addcarryx_u32(&x1202, &x1203, x1201, x1099, x1167); fiat_p521_addcarryx_u32(&x1204, &x1205, x1203, x1101, x1169); fiat_p521_addcarryx_u32(&x1206, &x1207, x1205, x1103, x1171); fiat_p521_addcarryx_u32(&x1208, &x1209, x1207, x1105, x1173); fiat_p521_addcarryx_u32(&x1210, &x1211, x1209, x1107, x1175); fiat_p521_addcarryx_u32(&x1212, &x1213, x1211, x1109, x1177); fiat_p521_addcarryx_u32(&x1214, &x1215, x1213, x1111, x1179); fiat_p521_addcarryx_u32(&x1216, &x1217, x1215, x1113, x1181); fiat_p521_addcarryx_u32(&x1218, &x1219, x1217, x1115, x1183); fiat_p521_addcarryx_u32(&x1220, &x1221, x1219, x1117, x1185); x1222 = ((uint32_t)x1221 + x1118); fiat_p521_mulx_u32(&x1223, &x1224, x6, (arg1[16])); fiat_p521_mulx_u32(&x1225, &x1226, x6, (arg1[15])); fiat_p521_mulx_u32(&x1227, &x1228, x6, (arg1[14])); fiat_p521_mulx_u32(&x1229, &x1230, x6, (arg1[13])); fiat_p521_mulx_u32(&x1231, &x1232, x6, (arg1[12])); fiat_p521_mulx_u32(&x1233, &x1234, x6, (arg1[11])); fiat_p521_mulx_u32(&x1235, &x1236, x6, (arg1[10])); fiat_p521_mulx_u32(&x1237, &x1238, x6, (arg1[9])); fiat_p521_mulx_u32(&x1239, &x1240, x6, (arg1[8])); fiat_p521_mulx_u32(&x1241, &x1242, x6, (arg1[7])); fiat_p521_mulx_u32(&x1243, &x1244, x6, (arg1[6])); fiat_p521_mulx_u32(&x1245, &x1246, x6, (arg1[5])); fiat_p521_mulx_u32(&x1247, &x1248, x6, (arg1[4])); fiat_p521_mulx_u32(&x1249, &x1250, x6, (arg1[3])); fiat_p521_mulx_u32(&x1251, &x1252, x6, (arg1[2])); fiat_p521_mulx_u32(&x1253, &x1254, x6, (arg1[1])); fiat_p521_mulx_u32(&x1255, &x1256, x6, (arg1[0])); fiat_p521_addcarryx_u32(&x1257, &x1258, 0x0, x1256, x1253); fiat_p521_addcarryx_u32(&x1259, &x1260, x1258, x1254, x1251); fiat_p521_addcarryx_u32(&x1261, &x1262, x1260, x1252, x1249); fiat_p521_addcarryx_u32(&x1263, &x1264, x1262, x1250, x1247); fiat_p521_addcarryx_u32(&x1265, &x1266, x1264, x1248, x1245); fiat_p521_addcarryx_u32(&x1267, &x1268, x1266, x1246, x1243); fiat_p521_addcarryx_u32(&x1269, &x1270, x1268, x1244, x1241); fiat_p521_addcarryx_u32(&x1271, &x1272, x1270, x1242, x1239); fiat_p521_addcarryx_u32(&x1273, &x1274, x1272, x1240, x1237); fiat_p521_addcarryx_u32(&x1275, &x1276, x1274, x1238, x1235); fiat_p521_addcarryx_u32(&x1277, &x1278, x1276, x1236, x1233); fiat_p521_addcarryx_u32(&x1279, &x1280, x1278, x1234, x1231); fiat_p521_addcarryx_u32(&x1281, &x1282, x1280, x1232, x1229); fiat_p521_addcarryx_u32(&x1283, &x1284, x1282, x1230, x1227); fiat_p521_addcarryx_u32(&x1285, &x1286, x1284, x1228, x1225); fiat_p521_addcarryx_u32(&x1287, &x1288, x1286, x1226, x1223); x1289 = (x1288 + x1224); fiat_p521_addcarryx_u32(&x1290, &x1291, 0x0, x1188, x1255); fiat_p521_addcarryx_u32(&x1292, &x1293, x1291, x1190, x1257); fiat_p521_addcarryx_u32(&x1294, &x1295, x1293, x1192, x1259); fiat_p521_addcarryx_u32(&x1296, &x1297, x1295, x1194, x1261); fiat_p521_addcarryx_u32(&x1298, &x1299, x1297, x1196, x1263); fiat_p521_addcarryx_u32(&x1300, &x1301, x1299, x1198, x1265); fiat_p521_addcarryx_u32(&x1302, &x1303, x1301, x1200, x1267); fiat_p521_addcarryx_u32(&x1304, &x1305, x1303, x1202, x1269); fiat_p521_addcarryx_u32(&x1306, &x1307, x1305, x1204, x1271); fiat_p521_addcarryx_u32(&x1308, &x1309, x1307, x1206, x1273); fiat_p521_addcarryx_u32(&x1310, &x1311, x1309, x1208, x1275); fiat_p521_addcarryx_u32(&x1312, &x1313, x1311, x1210, x1277); fiat_p521_addcarryx_u32(&x1314, &x1315, x1313, x1212, x1279); fiat_p521_addcarryx_u32(&x1316, &x1317, x1315, x1214, x1281); fiat_p521_addcarryx_u32(&x1318, &x1319, x1317, x1216, x1283); fiat_p521_addcarryx_u32(&x1320, &x1321, x1319, x1218, x1285); fiat_p521_addcarryx_u32(&x1322, &x1323, x1321, x1220, x1287); fiat_p521_addcarryx_u32(&x1324, &x1325, x1323, x1222, x1289); fiat_p521_mulx_u32(&x1326, &x1327, x1290, UINT16_C(0x1ff)); fiat_p521_mulx_u32(&x1328, &x1329, x1290, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1330, &x1331, x1290, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1332, &x1333, x1290, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1334, &x1335, x1290, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1336, &x1337, x1290, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1338, &x1339, x1290, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1340, &x1341, x1290, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1342, &x1343, x1290, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1344, &x1345, x1290, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1346, &x1347, x1290, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1348, &x1349, x1290, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1350, &x1351, x1290, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1352, &x1353, x1290, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1354, &x1355, x1290, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1356, &x1357, x1290, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1358, &x1359, x1290, UINT32_C(0xffffffff)); fiat_p521_addcarryx_u32(&x1360, &x1361, 0x0, x1359, x1356); fiat_p521_addcarryx_u32(&x1362, &x1363, x1361, x1357, x1354); fiat_p521_addcarryx_u32(&x1364, &x1365, x1363, x1355, x1352); fiat_p521_addcarryx_u32(&x1366, &x1367, x1365, x1353, x1350); fiat_p521_addcarryx_u32(&x1368, &x1369, x1367, x1351, x1348); fiat_p521_addcarryx_u32(&x1370, &x1371, x1369, x1349, x1346); fiat_p521_addcarryx_u32(&x1372, &x1373, x1371, x1347, x1344); fiat_p521_addcarryx_u32(&x1374, &x1375, x1373, x1345, x1342); fiat_p521_addcarryx_u32(&x1376, &x1377, x1375, x1343, x1340); fiat_p521_addcarryx_u32(&x1378, &x1379, x1377, x1341, x1338); fiat_p521_addcarryx_u32(&x1380, &x1381, x1379, x1339, x1336); fiat_p521_addcarryx_u32(&x1382, &x1383, x1381, x1337, x1334); fiat_p521_addcarryx_u32(&x1384, &x1385, x1383, x1335, x1332); fiat_p521_addcarryx_u32(&x1386, &x1387, x1385, x1333, x1330); fiat_p521_addcarryx_u32(&x1388, &x1389, x1387, x1331, x1328); fiat_p521_addcarryx_u32(&x1390, &x1391, x1389, x1329, x1326); x1392 = (x1391 + x1327); fiat_p521_addcarryx_u32(&x1393, &x1394, 0x0, x1290, x1358); fiat_p521_addcarryx_u32(&x1395, &x1396, x1394, x1292, x1360); fiat_p521_addcarryx_u32(&x1397, &x1398, x1396, x1294, x1362); fiat_p521_addcarryx_u32(&x1399, &x1400, x1398, x1296, x1364); fiat_p521_addcarryx_u32(&x1401, &x1402, x1400, x1298, x1366); fiat_p521_addcarryx_u32(&x1403, &x1404, x1402, x1300, x1368); fiat_p521_addcarryx_u32(&x1405, &x1406, x1404, x1302, x1370); fiat_p521_addcarryx_u32(&x1407, &x1408, x1406, x1304, x1372); fiat_p521_addcarryx_u32(&x1409, &x1410, x1408, x1306, x1374); fiat_p521_addcarryx_u32(&x1411, &x1412, x1410, x1308, x1376); fiat_p521_addcarryx_u32(&x1413, &x1414, x1412, x1310, x1378); fiat_p521_addcarryx_u32(&x1415, &x1416, x1414, x1312, x1380); fiat_p521_addcarryx_u32(&x1417, &x1418, x1416, x1314, x1382); fiat_p521_addcarryx_u32(&x1419, &x1420, x1418, x1316, x1384); fiat_p521_addcarryx_u32(&x1421, &x1422, x1420, x1318, x1386); fiat_p521_addcarryx_u32(&x1423, &x1424, x1422, x1320, x1388); fiat_p521_addcarryx_u32(&x1425, &x1426, x1424, x1322, x1390); fiat_p521_addcarryx_u32(&x1427, &x1428, x1426, x1324, x1392); x1429 = ((uint32_t)x1428 + x1325); fiat_p521_mulx_u32(&x1430, &x1431, x7, (arg1[16])); fiat_p521_mulx_u32(&x1432, &x1433, x7, (arg1[15])); fiat_p521_mulx_u32(&x1434, &x1435, x7, (arg1[14])); fiat_p521_mulx_u32(&x1436, &x1437, x7, (arg1[13])); fiat_p521_mulx_u32(&x1438, &x1439, x7, (arg1[12])); fiat_p521_mulx_u32(&x1440, &x1441, x7, (arg1[11])); fiat_p521_mulx_u32(&x1442, &x1443, x7, (arg1[10])); fiat_p521_mulx_u32(&x1444, &x1445, x7, (arg1[9])); fiat_p521_mulx_u32(&x1446, &x1447, x7, (arg1[8])); fiat_p521_mulx_u32(&x1448, &x1449, x7, (arg1[7])); fiat_p521_mulx_u32(&x1450, &x1451, x7, (arg1[6])); fiat_p521_mulx_u32(&x1452, &x1453, x7, (arg1[5])); fiat_p521_mulx_u32(&x1454, &x1455, x7, (arg1[4])); fiat_p521_mulx_u32(&x1456, &x1457, x7, (arg1[3])); fiat_p521_mulx_u32(&x1458, &x1459, x7, (arg1[2])); fiat_p521_mulx_u32(&x1460, &x1461, x7, (arg1[1])); fiat_p521_mulx_u32(&x1462, &x1463, x7, (arg1[0])); fiat_p521_addcarryx_u32(&x1464, &x1465, 0x0, x1463, x1460); fiat_p521_addcarryx_u32(&x1466, &x1467, x1465, x1461, x1458); fiat_p521_addcarryx_u32(&x1468, &x1469, x1467, x1459, x1456); fiat_p521_addcarryx_u32(&x1470, &x1471, x1469, x1457, x1454); fiat_p521_addcarryx_u32(&x1472, &x1473, x1471, x1455, x1452); fiat_p521_addcarryx_u32(&x1474, &x1475, x1473, x1453, x1450); fiat_p521_addcarryx_u32(&x1476, &x1477, x1475, x1451, x1448); fiat_p521_addcarryx_u32(&x1478, &x1479, x1477, x1449, x1446); fiat_p521_addcarryx_u32(&x1480, &x1481, x1479, x1447, x1444); fiat_p521_addcarryx_u32(&x1482, &x1483, x1481, x1445, x1442); fiat_p521_addcarryx_u32(&x1484, &x1485, x1483, x1443, x1440); fiat_p521_addcarryx_u32(&x1486, &x1487, x1485, x1441, x1438); fiat_p521_addcarryx_u32(&x1488, &x1489, x1487, x1439, x1436); fiat_p521_addcarryx_u32(&x1490, &x1491, x1489, x1437, x1434); fiat_p521_addcarryx_u32(&x1492, &x1493, x1491, x1435, x1432); fiat_p521_addcarryx_u32(&x1494, &x1495, x1493, x1433, x1430); x1496 = (x1495 + x1431); fiat_p521_addcarryx_u32(&x1497, &x1498, 0x0, x1395, x1462); fiat_p521_addcarryx_u32(&x1499, &x1500, x1498, x1397, x1464); fiat_p521_addcarryx_u32(&x1501, &x1502, x1500, x1399, x1466); fiat_p521_addcarryx_u32(&x1503, &x1504, x1502, x1401, x1468); fiat_p521_addcarryx_u32(&x1505, &x1506, x1504, x1403, x1470); fiat_p521_addcarryx_u32(&x1507, &x1508, x1506, x1405, x1472); fiat_p521_addcarryx_u32(&x1509, &x1510, x1508, x1407, x1474); fiat_p521_addcarryx_u32(&x1511, &x1512, x1510, x1409, x1476); fiat_p521_addcarryx_u32(&x1513, &x1514, x1512, x1411, x1478); fiat_p521_addcarryx_u32(&x1515, &x1516, x1514, x1413, x1480); fiat_p521_addcarryx_u32(&x1517, &x1518, x1516, x1415, x1482); fiat_p521_addcarryx_u32(&x1519, &x1520, x1518, x1417, x1484); fiat_p521_addcarryx_u32(&x1521, &x1522, x1520, x1419, x1486); fiat_p521_addcarryx_u32(&x1523, &x1524, x1522, x1421, x1488); fiat_p521_addcarryx_u32(&x1525, &x1526, x1524, x1423, x1490); fiat_p521_addcarryx_u32(&x1527, &x1528, x1526, x1425, x1492); fiat_p521_addcarryx_u32(&x1529, &x1530, x1528, x1427, x1494); fiat_p521_addcarryx_u32(&x1531, &x1532, x1530, x1429, x1496); fiat_p521_mulx_u32(&x1533, &x1534, x1497, UINT16_C(0x1ff)); fiat_p521_mulx_u32(&x1535, &x1536, x1497, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1537, &x1538, x1497, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1539, &x1540, x1497, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1541, &x1542, x1497, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1543, &x1544, x1497, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1545, &x1546, x1497, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1547, &x1548, x1497, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1549, &x1550, x1497, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1551, &x1552, x1497, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1553, &x1554, x1497, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1555, &x1556, x1497, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1557, &x1558, x1497, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1559, &x1560, x1497, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1561, &x1562, x1497, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1563, &x1564, x1497, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1565, &x1566, x1497, UINT32_C(0xffffffff)); fiat_p521_addcarryx_u32(&x1567, &x1568, 0x0, x1566, x1563); fiat_p521_addcarryx_u32(&x1569, &x1570, x1568, x1564, x1561); fiat_p521_addcarryx_u32(&x1571, &x1572, x1570, x1562, x1559); fiat_p521_addcarryx_u32(&x1573, &x1574, x1572, x1560, x1557); fiat_p521_addcarryx_u32(&x1575, &x1576, x1574, x1558, x1555); fiat_p521_addcarryx_u32(&x1577, &x1578, x1576, x1556, x1553); fiat_p521_addcarryx_u32(&x1579, &x1580, x1578, x1554, x1551); fiat_p521_addcarryx_u32(&x1581, &x1582, x1580, x1552, x1549); fiat_p521_addcarryx_u32(&x1583, &x1584, x1582, x1550, x1547); fiat_p521_addcarryx_u32(&x1585, &x1586, x1584, x1548, x1545); fiat_p521_addcarryx_u32(&x1587, &x1588, x1586, x1546, x1543); fiat_p521_addcarryx_u32(&x1589, &x1590, x1588, x1544, x1541); fiat_p521_addcarryx_u32(&x1591, &x1592, x1590, x1542, x1539); fiat_p521_addcarryx_u32(&x1593, &x1594, x1592, x1540, x1537); fiat_p521_addcarryx_u32(&x1595, &x1596, x1594, x1538, x1535); fiat_p521_addcarryx_u32(&x1597, &x1598, x1596, x1536, x1533); x1599 = (x1598 + x1534); fiat_p521_addcarryx_u32(&x1600, &x1601, 0x0, x1497, x1565); fiat_p521_addcarryx_u32(&x1602, &x1603, x1601, x1499, x1567); fiat_p521_addcarryx_u32(&x1604, &x1605, x1603, x1501, x1569); fiat_p521_addcarryx_u32(&x1606, &x1607, x1605, x1503, x1571); fiat_p521_addcarryx_u32(&x1608, &x1609, x1607, x1505, x1573); fiat_p521_addcarryx_u32(&x1610, &x1611, x1609, x1507, x1575); fiat_p521_addcarryx_u32(&x1612, &x1613, x1611, x1509, x1577); fiat_p521_addcarryx_u32(&x1614, &x1615, x1613, x1511, x1579); fiat_p521_addcarryx_u32(&x1616, &x1617, x1615, x1513, x1581); fiat_p521_addcarryx_u32(&x1618, &x1619, x1617, x1515, x1583); fiat_p521_addcarryx_u32(&x1620, &x1621, x1619, x1517, x1585); fiat_p521_addcarryx_u32(&x1622, &x1623, x1621, x1519, x1587); fiat_p521_addcarryx_u32(&x1624, &x1625, x1623, x1521, x1589); fiat_p521_addcarryx_u32(&x1626, &x1627, x1625, x1523, x1591); fiat_p521_addcarryx_u32(&x1628, &x1629, x1627, x1525, x1593); fiat_p521_addcarryx_u32(&x1630, &x1631, x1629, x1527, x1595); fiat_p521_addcarryx_u32(&x1632, &x1633, x1631, x1529, x1597); fiat_p521_addcarryx_u32(&x1634, &x1635, x1633, x1531, x1599); x1636 = ((uint32_t)x1635 + x1532); fiat_p521_mulx_u32(&x1637, &x1638, x8, (arg1[16])); fiat_p521_mulx_u32(&x1639, &x1640, x8, (arg1[15])); fiat_p521_mulx_u32(&x1641, &x1642, x8, (arg1[14])); fiat_p521_mulx_u32(&x1643, &x1644, x8, (arg1[13])); fiat_p521_mulx_u32(&x1645, &x1646, x8, (arg1[12])); fiat_p521_mulx_u32(&x1647, &x1648, x8, (arg1[11])); fiat_p521_mulx_u32(&x1649, &x1650, x8, (arg1[10])); fiat_p521_mulx_u32(&x1651, &x1652, x8, (arg1[9])); fiat_p521_mulx_u32(&x1653, &x1654, x8, (arg1[8])); fiat_p521_mulx_u32(&x1655, &x1656, x8, (arg1[7])); fiat_p521_mulx_u32(&x1657, &x1658, x8, (arg1[6])); fiat_p521_mulx_u32(&x1659, &x1660, x8, (arg1[5])); fiat_p521_mulx_u32(&x1661, &x1662, x8, (arg1[4])); fiat_p521_mulx_u32(&x1663, &x1664, x8, (arg1[3])); fiat_p521_mulx_u32(&x1665, &x1666, x8, (arg1[2])); fiat_p521_mulx_u32(&x1667, &x1668, x8, (arg1[1])); fiat_p521_mulx_u32(&x1669, &x1670, x8, (arg1[0])); fiat_p521_addcarryx_u32(&x1671, &x1672, 0x0, x1670, x1667); fiat_p521_addcarryx_u32(&x1673, &x1674, x1672, x1668, x1665); fiat_p521_addcarryx_u32(&x1675, &x1676, x1674, x1666, x1663); fiat_p521_addcarryx_u32(&x1677, &x1678, x1676, x1664, x1661); fiat_p521_addcarryx_u32(&x1679, &x1680, x1678, x1662, x1659); fiat_p521_addcarryx_u32(&x1681, &x1682, x1680, x1660, x1657); fiat_p521_addcarryx_u32(&x1683, &x1684, x1682, x1658, x1655); fiat_p521_addcarryx_u32(&x1685, &x1686, x1684, x1656, x1653); fiat_p521_addcarryx_u32(&x1687, &x1688, x1686, x1654, x1651); fiat_p521_addcarryx_u32(&x1689, &x1690, x1688, x1652, x1649); fiat_p521_addcarryx_u32(&x1691, &x1692, x1690, x1650, x1647); fiat_p521_addcarryx_u32(&x1693, &x1694, x1692, x1648, x1645); fiat_p521_addcarryx_u32(&x1695, &x1696, x1694, x1646, x1643); fiat_p521_addcarryx_u32(&x1697, &x1698, x1696, x1644, x1641); fiat_p521_addcarryx_u32(&x1699, &x1700, x1698, x1642, x1639); fiat_p521_addcarryx_u32(&x1701, &x1702, x1700, x1640, x1637); x1703 = (x1702 + x1638); fiat_p521_addcarryx_u32(&x1704, &x1705, 0x0, x1602, x1669); fiat_p521_addcarryx_u32(&x1706, &x1707, x1705, x1604, x1671); fiat_p521_addcarryx_u32(&x1708, &x1709, x1707, x1606, x1673); fiat_p521_addcarryx_u32(&x1710, &x1711, x1709, x1608, x1675); fiat_p521_addcarryx_u32(&x1712, &x1713, x1711, x1610, x1677); fiat_p521_addcarryx_u32(&x1714, &x1715, x1713, x1612, x1679); fiat_p521_addcarryx_u32(&x1716, &x1717, x1715, x1614, x1681); fiat_p521_addcarryx_u32(&x1718, &x1719, x1717, x1616, x1683); fiat_p521_addcarryx_u32(&x1720, &x1721, x1719, x1618, x1685); fiat_p521_addcarryx_u32(&x1722, &x1723, x1721, x1620, x1687); fiat_p521_addcarryx_u32(&x1724, &x1725, x1723, x1622, x1689); fiat_p521_addcarryx_u32(&x1726, &x1727, x1725, x1624, x1691); fiat_p521_addcarryx_u32(&x1728, &x1729, x1727, x1626, x1693); fiat_p521_addcarryx_u32(&x1730, &x1731, x1729, x1628, x1695); fiat_p521_addcarryx_u32(&x1732, &x1733, x1731, x1630, x1697); fiat_p521_addcarryx_u32(&x1734, &x1735, x1733, x1632, x1699); fiat_p521_addcarryx_u32(&x1736, &x1737, x1735, x1634, x1701); fiat_p521_addcarryx_u32(&x1738, &x1739, x1737, x1636, x1703); fiat_p521_mulx_u32(&x1740, &x1741, x1704, UINT16_C(0x1ff)); fiat_p521_mulx_u32(&x1742, &x1743, x1704, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1744, &x1745, x1704, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1746, &x1747, x1704, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1748, &x1749, x1704, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1750, &x1751, x1704, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1752, &x1753, x1704, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1754, &x1755, x1704, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1756, &x1757, x1704, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1758, &x1759, x1704, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1760, &x1761, x1704, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1762, &x1763, x1704, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1764, &x1765, x1704, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1766, &x1767, x1704, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1768, &x1769, x1704, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1770, &x1771, x1704, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1772, &x1773, x1704, UINT32_C(0xffffffff)); fiat_p521_addcarryx_u32(&x1774, &x1775, 0x0, x1773, x1770); fiat_p521_addcarryx_u32(&x1776, &x1777, x1775, x1771, x1768); fiat_p521_addcarryx_u32(&x1778, &x1779, x1777, x1769, x1766); fiat_p521_addcarryx_u32(&x1780, &x1781, x1779, x1767, x1764); fiat_p521_addcarryx_u32(&x1782, &x1783, x1781, x1765, x1762); fiat_p521_addcarryx_u32(&x1784, &x1785, x1783, x1763, x1760); fiat_p521_addcarryx_u32(&x1786, &x1787, x1785, x1761, x1758); fiat_p521_addcarryx_u32(&x1788, &x1789, x1787, x1759, x1756); fiat_p521_addcarryx_u32(&x1790, &x1791, x1789, x1757, x1754); fiat_p521_addcarryx_u32(&x1792, &x1793, x1791, x1755, x1752); fiat_p521_addcarryx_u32(&x1794, &x1795, x1793, x1753, x1750); fiat_p521_addcarryx_u32(&x1796, &x1797, x1795, x1751, x1748); fiat_p521_addcarryx_u32(&x1798, &x1799, x1797, x1749, x1746); fiat_p521_addcarryx_u32(&x1800, &x1801, x1799, x1747, x1744); fiat_p521_addcarryx_u32(&x1802, &x1803, x1801, x1745, x1742); fiat_p521_addcarryx_u32(&x1804, &x1805, x1803, x1743, x1740); x1806 = (x1805 + x1741); fiat_p521_addcarryx_u32(&x1807, &x1808, 0x0, x1704, x1772); fiat_p521_addcarryx_u32(&x1809, &x1810, x1808, x1706, x1774); fiat_p521_addcarryx_u32(&x1811, &x1812, x1810, x1708, x1776); fiat_p521_addcarryx_u32(&x1813, &x1814, x1812, x1710, x1778); fiat_p521_addcarryx_u32(&x1815, &x1816, x1814, x1712, x1780); fiat_p521_addcarryx_u32(&x1817, &x1818, x1816, x1714, x1782); fiat_p521_addcarryx_u32(&x1819, &x1820, x1818, x1716, x1784); fiat_p521_addcarryx_u32(&x1821, &x1822, x1820, x1718, x1786); fiat_p521_addcarryx_u32(&x1823, &x1824, x1822, x1720, x1788); fiat_p521_addcarryx_u32(&x1825, &x1826, x1824, x1722, x1790); fiat_p521_addcarryx_u32(&x1827, &x1828, x1826, x1724, x1792); fiat_p521_addcarryx_u32(&x1829, &x1830, x1828, x1726, x1794); fiat_p521_addcarryx_u32(&x1831, &x1832, x1830, x1728, x1796); fiat_p521_addcarryx_u32(&x1833, &x1834, x1832, x1730, x1798); fiat_p521_addcarryx_u32(&x1835, &x1836, x1834, x1732, x1800); fiat_p521_addcarryx_u32(&x1837, &x1838, x1836, x1734, x1802); fiat_p521_addcarryx_u32(&x1839, &x1840, x1838, x1736, x1804); fiat_p521_addcarryx_u32(&x1841, &x1842, x1840, x1738, x1806); x1843 = ((uint32_t)x1842 + x1739); fiat_p521_mulx_u32(&x1844, &x1845, x9, (arg1[16])); fiat_p521_mulx_u32(&x1846, &x1847, x9, (arg1[15])); fiat_p521_mulx_u32(&x1848, &x1849, x9, (arg1[14])); fiat_p521_mulx_u32(&x1850, &x1851, x9, (arg1[13])); fiat_p521_mulx_u32(&x1852, &x1853, x9, (arg1[12])); fiat_p521_mulx_u32(&x1854, &x1855, x9, (arg1[11])); fiat_p521_mulx_u32(&x1856, &x1857, x9, (arg1[10])); fiat_p521_mulx_u32(&x1858, &x1859, x9, (arg1[9])); fiat_p521_mulx_u32(&x1860, &x1861, x9, (arg1[8])); fiat_p521_mulx_u32(&x1862, &x1863, x9, (arg1[7])); fiat_p521_mulx_u32(&x1864, &x1865, x9, (arg1[6])); fiat_p521_mulx_u32(&x1866, &x1867, x9, (arg1[5])); fiat_p521_mulx_u32(&x1868, &x1869, x9, (arg1[4])); fiat_p521_mulx_u32(&x1870, &x1871, x9, (arg1[3])); fiat_p521_mulx_u32(&x1872, &x1873, x9, (arg1[2])); fiat_p521_mulx_u32(&x1874, &x1875, x9, (arg1[1])); fiat_p521_mulx_u32(&x1876, &x1877, x9, (arg1[0])); fiat_p521_addcarryx_u32(&x1878, &x1879, 0x0, x1877, x1874); fiat_p521_addcarryx_u32(&x1880, &x1881, x1879, x1875, x1872); fiat_p521_addcarryx_u32(&x1882, &x1883, x1881, x1873, x1870); fiat_p521_addcarryx_u32(&x1884, &x1885, x1883, x1871, x1868); fiat_p521_addcarryx_u32(&x1886, &x1887, x1885, x1869, x1866); fiat_p521_addcarryx_u32(&x1888, &x1889, x1887, x1867, x1864); fiat_p521_addcarryx_u32(&x1890, &x1891, x1889, x1865, x1862); fiat_p521_addcarryx_u32(&x1892, &x1893, x1891, x1863, x1860); fiat_p521_addcarryx_u32(&x1894, &x1895, x1893, x1861, x1858); fiat_p521_addcarryx_u32(&x1896, &x1897, x1895, x1859, x1856); fiat_p521_addcarryx_u32(&x1898, &x1899, x1897, x1857, x1854); fiat_p521_addcarryx_u32(&x1900, &x1901, x1899, x1855, x1852); fiat_p521_addcarryx_u32(&x1902, &x1903, x1901, x1853, x1850); fiat_p521_addcarryx_u32(&x1904, &x1905, x1903, x1851, x1848); fiat_p521_addcarryx_u32(&x1906, &x1907, x1905, x1849, x1846); fiat_p521_addcarryx_u32(&x1908, &x1909, x1907, x1847, x1844); x1910 = (x1909 + x1845); fiat_p521_addcarryx_u32(&x1911, &x1912, 0x0, x1809, x1876); fiat_p521_addcarryx_u32(&x1913, &x1914, x1912, x1811, x1878); fiat_p521_addcarryx_u32(&x1915, &x1916, x1914, x1813, x1880); fiat_p521_addcarryx_u32(&x1917, &x1918, x1916, x1815, x1882); fiat_p521_addcarryx_u32(&x1919, &x1920, x1918, x1817, x1884); fiat_p521_addcarryx_u32(&x1921, &x1922, x1920, x1819, x1886); fiat_p521_addcarryx_u32(&x1923, &x1924, x1922, x1821, x1888); fiat_p521_addcarryx_u32(&x1925, &x1926, x1924, x1823, x1890); fiat_p521_addcarryx_u32(&x1927, &x1928, x1926, x1825, x1892); fiat_p521_addcarryx_u32(&x1929, &x1930, x1928, x1827, x1894); fiat_p521_addcarryx_u32(&x1931, &x1932, x1930, x1829, x1896); fiat_p521_addcarryx_u32(&x1933, &x1934, x1932, x1831, x1898); fiat_p521_addcarryx_u32(&x1935, &x1936, x1934, x1833, x1900); fiat_p521_addcarryx_u32(&x1937, &x1938, x1936, x1835, x1902); fiat_p521_addcarryx_u32(&x1939, &x1940, x1938, x1837, x1904); fiat_p521_addcarryx_u32(&x1941, &x1942, x1940, x1839, x1906); fiat_p521_addcarryx_u32(&x1943, &x1944, x1942, x1841, x1908); fiat_p521_addcarryx_u32(&x1945, &x1946, x1944, x1843, x1910); fiat_p521_mulx_u32(&x1947, &x1948, x1911, UINT16_C(0x1ff)); fiat_p521_mulx_u32(&x1949, &x1950, x1911, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1951, &x1952, x1911, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1953, &x1954, x1911, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1955, &x1956, x1911, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1957, &x1958, x1911, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1959, &x1960, x1911, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1961, &x1962, x1911, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1963, &x1964, x1911, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1965, &x1966, x1911, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1967, &x1968, x1911, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1969, &x1970, x1911, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1971, &x1972, x1911, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1973, &x1974, x1911, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1975, &x1976, x1911, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1977, &x1978, x1911, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1979, &x1980, x1911, UINT32_C(0xffffffff)); fiat_p521_addcarryx_u32(&x1981, &x1982, 0x0, x1980, x1977); fiat_p521_addcarryx_u32(&x1983, &x1984, x1982, x1978, x1975); fiat_p521_addcarryx_u32(&x1985, &x1986, x1984, x1976, x1973); fiat_p521_addcarryx_u32(&x1987, &x1988, x1986, x1974, x1971); fiat_p521_addcarryx_u32(&x1989, &x1990, x1988, x1972, x1969); fiat_p521_addcarryx_u32(&x1991, &x1992, x1990, x1970, x1967); fiat_p521_addcarryx_u32(&x1993, &x1994, x1992, x1968, x1965); fiat_p521_addcarryx_u32(&x1995, &x1996, x1994, x1966, x1963); fiat_p521_addcarryx_u32(&x1997, &x1998, x1996, x1964, x1961); fiat_p521_addcarryx_u32(&x1999, &x2000, x1998, x1962, x1959); fiat_p521_addcarryx_u32(&x2001, &x2002, x2000, x1960, x1957); fiat_p521_addcarryx_u32(&x2003, &x2004, x2002, x1958, x1955); fiat_p521_addcarryx_u32(&x2005, &x2006, x2004, x1956, x1953); fiat_p521_addcarryx_u32(&x2007, &x2008, x2006, x1954, x1951); fiat_p521_addcarryx_u32(&x2009, &x2010, x2008, x1952, x1949); fiat_p521_addcarryx_u32(&x2011, &x2012, x2010, x1950, x1947); x2013 = (x2012 + x1948); fiat_p521_addcarryx_u32(&x2014, &x2015, 0x0, x1911, x1979); fiat_p521_addcarryx_u32(&x2016, &x2017, x2015, x1913, x1981); fiat_p521_addcarryx_u32(&x2018, &x2019, x2017, x1915, x1983); fiat_p521_addcarryx_u32(&x2020, &x2021, x2019, x1917, x1985); fiat_p521_addcarryx_u32(&x2022, &x2023, x2021, x1919, x1987); fiat_p521_addcarryx_u32(&x2024, &x2025, x2023, x1921, x1989); fiat_p521_addcarryx_u32(&x2026, &x2027, x2025, x1923, x1991); fiat_p521_addcarryx_u32(&x2028, &x2029, x2027, x1925, x1993); fiat_p521_addcarryx_u32(&x2030, &x2031, x2029, x1927, x1995); fiat_p521_addcarryx_u32(&x2032, &x2033, x2031, x1929, x1997); fiat_p521_addcarryx_u32(&x2034, &x2035, x2033, x1931, x1999); fiat_p521_addcarryx_u32(&x2036, &x2037, x2035, x1933, x2001); fiat_p521_addcarryx_u32(&x2038, &x2039, x2037, x1935, x2003); fiat_p521_addcarryx_u32(&x2040, &x2041, x2039, x1937, x2005); fiat_p521_addcarryx_u32(&x2042, &x2043, x2041, x1939, x2007); fiat_p521_addcarryx_u32(&x2044, &x2045, x2043, x1941, x2009); fiat_p521_addcarryx_u32(&x2046, &x2047, x2045, x1943, x2011); fiat_p521_addcarryx_u32(&x2048, &x2049, x2047, x1945, x2013); x2050 = ((uint32_t)x2049 + x1946); fiat_p521_mulx_u32(&x2051, &x2052, x10, (arg1[16])); fiat_p521_mulx_u32(&x2053, &x2054, x10, (arg1[15])); fiat_p521_mulx_u32(&x2055, &x2056, x10, (arg1[14])); fiat_p521_mulx_u32(&x2057, &x2058, x10, (arg1[13])); fiat_p521_mulx_u32(&x2059, &x2060, x10, (arg1[12])); fiat_p521_mulx_u32(&x2061, &x2062, x10, (arg1[11])); fiat_p521_mulx_u32(&x2063, &x2064, x10, (arg1[10])); fiat_p521_mulx_u32(&x2065, &x2066, x10, (arg1[9])); fiat_p521_mulx_u32(&x2067, &x2068, x10, (arg1[8])); fiat_p521_mulx_u32(&x2069, &x2070, x10, (arg1[7])); fiat_p521_mulx_u32(&x2071, &x2072, x10, (arg1[6])); fiat_p521_mulx_u32(&x2073, &x2074, x10, (arg1[5])); fiat_p521_mulx_u32(&x2075, &x2076, x10, (arg1[4])); fiat_p521_mulx_u32(&x2077, &x2078, x10, (arg1[3])); fiat_p521_mulx_u32(&x2079, &x2080, x10, (arg1[2])); fiat_p521_mulx_u32(&x2081, &x2082, x10, (arg1[1])); fiat_p521_mulx_u32(&x2083, &x2084, x10, (arg1[0])); fiat_p521_addcarryx_u32(&x2085, &x2086, 0x0, x2084, x2081); fiat_p521_addcarryx_u32(&x2087, &x2088, x2086, x2082, x2079); fiat_p521_addcarryx_u32(&x2089, &x2090, x2088, x2080, x2077); fiat_p521_addcarryx_u32(&x2091, &x2092, x2090, x2078, x2075); fiat_p521_addcarryx_u32(&x2093, &x2094, x2092, x2076, x2073); fiat_p521_addcarryx_u32(&x2095, &x2096, x2094, x2074, x2071); fiat_p521_addcarryx_u32(&x2097, &x2098, x2096, x2072, x2069); fiat_p521_addcarryx_u32(&x2099, &x2100, x2098, x2070, x2067); fiat_p521_addcarryx_u32(&x2101, &x2102, x2100, x2068, x2065); fiat_p521_addcarryx_u32(&x2103, &x2104, x2102, x2066, x2063); fiat_p521_addcarryx_u32(&x2105, &x2106, x2104, x2064, x2061); fiat_p521_addcarryx_u32(&x2107, &x2108, x2106, x2062, x2059); fiat_p521_addcarryx_u32(&x2109, &x2110, x2108, x2060, x2057); fiat_p521_addcarryx_u32(&x2111, &x2112, x2110, x2058, x2055); fiat_p521_addcarryx_u32(&x2113, &x2114, x2112, x2056, x2053); fiat_p521_addcarryx_u32(&x2115, &x2116, x2114, x2054, x2051); x2117 = (x2116 + x2052); fiat_p521_addcarryx_u32(&x2118, &x2119, 0x0, x2016, x2083); fiat_p521_addcarryx_u32(&x2120, &x2121, x2119, x2018, x2085); fiat_p521_addcarryx_u32(&x2122, &x2123, x2121, x2020, x2087); fiat_p521_addcarryx_u32(&x2124, &x2125, x2123, x2022, x2089); fiat_p521_addcarryx_u32(&x2126, &x2127, x2125, x2024, x2091); fiat_p521_addcarryx_u32(&x2128, &x2129, x2127, x2026, x2093); fiat_p521_addcarryx_u32(&x2130, &x2131, x2129, x2028, x2095); fiat_p521_addcarryx_u32(&x2132, &x2133, x2131, x2030, x2097); fiat_p521_addcarryx_u32(&x2134, &x2135, x2133, x2032, x2099); fiat_p521_addcarryx_u32(&x2136, &x2137, x2135, x2034, x2101); fiat_p521_addcarryx_u32(&x2138, &x2139, x2137, x2036, x2103); fiat_p521_addcarryx_u32(&x2140, &x2141, x2139, x2038, x2105); fiat_p521_addcarryx_u32(&x2142, &x2143, x2141, x2040, x2107); fiat_p521_addcarryx_u32(&x2144, &x2145, x2143, x2042, x2109); fiat_p521_addcarryx_u32(&x2146, &x2147, x2145, x2044, x2111); fiat_p521_addcarryx_u32(&x2148, &x2149, x2147, x2046, x2113); fiat_p521_addcarryx_u32(&x2150, &x2151, x2149, x2048, x2115); fiat_p521_addcarryx_u32(&x2152, &x2153, x2151, x2050, x2117); fiat_p521_mulx_u32(&x2154, &x2155, x2118, UINT16_C(0x1ff)); fiat_p521_mulx_u32(&x2156, &x2157, x2118, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2158, &x2159, x2118, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2160, &x2161, x2118, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2162, &x2163, x2118, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2164, &x2165, x2118, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2166, &x2167, x2118, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2168, &x2169, x2118, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2170, &x2171, x2118, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2172, &x2173, x2118, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2174, &x2175, x2118, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2176, &x2177, x2118, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2178, &x2179, x2118, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2180, &x2181, x2118, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2182, &x2183, x2118, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2184, &x2185, x2118, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2186, &x2187, x2118, UINT32_C(0xffffffff)); fiat_p521_addcarryx_u32(&x2188, &x2189, 0x0, x2187, x2184); fiat_p521_addcarryx_u32(&x2190, &x2191, x2189, x2185, x2182); fiat_p521_addcarryx_u32(&x2192, &x2193, x2191, x2183, x2180); fiat_p521_addcarryx_u32(&x2194, &x2195, x2193, x2181, x2178); fiat_p521_addcarryx_u32(&x2196, &x2197, x2195, x2179, x2176); fiat_p521_addcarryx_u32(&x2198, &x2199, x2197, x2177, x2174); fiat_p521_addcarryx_u32(&x2200, &x2201, x2199, x2175, x2172); fiat_p521_addcarryx_u32(&x2202, &x2203, x2201, x2173, x2170); fiat_p521_addcarryx_u32(&x2204, &x2205, x2203, x2171, x2168); fiat_p521_addcarryx_u32(&x2206, &x2207, x2205, x2169, x2166); fiat_p521_addcarryx_u32(&x2208, &x2209, x2207, x2167, x2164); fiat_p521_addcarryx_u32(&x2210, &x2211, x2209, x2165, x2162); fiat_p521_addcarryx_u32(&x2212, &x2213, x2211, x2163, x2160); fiat_p521_addcarryx_u32(&x2214, &x2215, x2213, x2161, x2158); fiat_p521_addcarryx_u32(&x2216, &x2217, x2215, x2159, x2156); fiat_p521_addcarryx_u32(&x2218, &x2219, x2217, x2157, x2154); x2220 = (x2219 + x2155); fiat_p521_addcarryx_u32(&x2221, &x2222, 0x0, x2118, x2186); fiat_p521_addcarryx_u32(&x2223, &x2224, x2222, x2120, x2188); fiat_p521_addcarryx_u32(&x2225, &x2226, x2224, x2122, x2190); fiat_p521_addcarryx_u32(&x2227, &x2228, x2226, x2124, x2192); fiat_p521_addcarryx_u32(&x2229, &x2230, x2228, x2126, x2194); fiat_p521_addcarryx_u32(&x2231, &x2232, x2230, x2128, x2196); fiat_p521_addcarryx_u32(&x2233, &x2234, x2232, x2130, x2198); fiat_p521_addcarryx_u32(&x2235, &x2236, x2234, x2132, x2200); fiat_p521_addcarryx_u32(&x2237, &x2238, x2236, x2134, x2202); fiat_p521_addcarryx_u32(&x2239, &x2240, x2238, x2136, x2204); fiat_p521_addcarryx_u32(&x2241, &x2242, x2240, x2138, x2206); fiat_p521_addcarryx_u32(&x2243, &x2244, x2242, x2140, x2208); fiat_p521_addcarryx_u32(&x2245, &x2246, x2244, x2142, x2210); fiat_p521_addcarryx_u32(&x2247, &x2248, x2246, x2144, x2212); fiat_p521_addcarryx_u32(&x2249, &x2250, x2248, x2146, x2214); fiat_p521_addcarryx_u32(&x2251, &x2252, x2250, x2148, x2216); fiat_p521_addcarryx_u32(&x2253, &x2254, x2252, x2150, x2218); fiat_p521_addcarryx_u32(&x2255, &x2256, x2254, x2152, x2220); x2257 = ((uint32_t)x2256 + x2153); fiat_p521_mulx_u32(&x2258, &x2259, x11, (arg1[16])); fiat_p521_mulx_u32(&x2260, &x2261, x11, (arg1[15])); fiat_p521_mulx_u32(&x2262, &x2263, x11, (arg1[14])); fiat_p521_mulx_u32(&x2264, &x2265, x11, (arg1[13])); fiat_p521_mulx_u32(&x2266, &x2267, x11, (arg1[12])); fiat_p521_mulx_u32(&x2268, &x2269, x11, (arg1[11])); fiat_p521_mulx_u32(&x2270, &x2271, x11, (arg1[10])); fiat_p521_mulx_u32(&x2272, &x2273, x11, (arg1[9])); fiat_p521_mulx_u32(&x2274, &x2275, x11, (arg1[8])); fiat_p521_mulx_u32(&x2276, &x2277, x11, (arg1[7])); fiat_p521_mulx_u32(&x2278, &x2279, x11, (arg1[6])); fiat_p521_mulx_u32(&x2280, &x2281, x11, (arg1[5])); fiat_p521_mulx_u32(&x2282, &x2283, x11, (arg1[4])); fiat_p521_mulx_u32(&x2284, &x2285, x11, (arg1[3])); fiat_p521_mulx_u32(&x2286, &x2287, x11, (arg1[2])); fiat_p521_mulx_u32(&x2288, &x2289, x11, (arg1[1])); fiat_p521_mulx_u32(&x2290, &x2291, x11, (arg1[0])); fiat_p521_addcarryx_u32(&x2292, &x2293, 0x0, x2291, x2288); fiat_p521_addcarryx_u32(&x2294, &x2295, x2293, x2289, x2286); fiat_p521_addcarryx_u32(&x2296, &x2297, x2295, x2287, x2284); fiat_p521_addcarryx_u32(&x2298, &x2299, x2297, x2285, x2282); fiat_p521_addcarryx_u32(&x2300, &x2301, x2299, x2283, x2280); fiat_p521_addcarryx_u32(&x2302, &x2303, x2301, x2281, x2278); fiat_p521_addcarryx_u32(&x2304, &x2305, x2303, x2279, x2276); fiat_p521_addcarryx_u32(&x2306, &x2307, x2305, x2277, x2274); fiat_p521_addcarryx_u32(&x2308, &x2309, x2307, x2275, x2272); fiat_p521_addcarryx_u32(&x2310, &x2311, x2309, x2273, x2270); fiat_p521_addcarryx_u32(&x2312, &x2313, x2311, x2271, x2268); fiat_p521_addcarryx_u32(&x2314, &x2315, x2313, x2269, x2266); fiat_p521_addcarryx_u32(&x2316, &x2317, x2315, x2267, x2264); fiat_p521_addcarryx_u32(&x2318, &x2319, x2317, x2265, x2262); fiat_p521_addcarryx_u32(&x2320, &x2321, x2319, x2263, x2260); fiat_p521_addcarryx_u32(&x2322, &x2323, x2321, x2261, x2258); x2324 = (x2323 + x2259); fiat_p521_addcarryx_u32(&x2325, &x2326, 0x0, x2223, x2290); fiat_p521_addcarryx_u32(&x2327, &x2328, x2326, x2225, x2292); fiat_p521_addcarryx_u32(&x2329, &x2330, x2328, x2227, x2294); fiat_p521_addcarryx_u32(&x2331, &x2332, x2330, x2229, x2296); fiat_p521_addcarryx_u32(&x2333, &x2334, x2332, x2231, x2298); fiat_p521_addcarryx_u32(&x2335, &x2336, x2334, x2233, x2300); fiat_p521_addcarryx_u32(&x2337, &x2338, x2336, x2235, x2302); fiat_p521_addcarryx_u32(&x2339, &x2340, x2338, x2237, x2304); fiat_p521_addcarryx_u32(&x2341, &x2342, x2340, x2239, x2306); fiat_p521_addcarryx_u32(&x2343, &x2344, x2342, x2241, x2308); fiat_p521_addcarryx_u32(&x2345, &x2346, x2344, x2243, x2310); fiat_p521_addcarryx_u32(&x2347, &x2348, x2346, x2245, x2312); fiat_p521_addcarryx_u32(&x2349, &x2350, x2348, x2247, x2314); fiat_p521_addcarryx_u32(&x2351, &x2352, x2350, x2249, x2316); fiat_p521_addcarryx_u32(&x2353, &x2354, x2352, x2251, x2318); fiat_p521_addcarryx_u32(&x2355, &x2356, x2354, x2253, x2320); fiat_p521_addcarryx_u32(&x2357, &x2358, x2356, x2255, x2322); fiat_p521_addcarryx_u32(&x2359, &x2360, x2358, x2257, x2324); fiat_p521_mulx_u32(&x2361, &x2362, x2325, UINT16_C(0x1ff)); fiat_p521_mulx_u32(&x2363, &x2364, x2325, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2365, &x2366, x2325, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2367, &x2368, x2325, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2369, &x2370, x2325, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2371, &x2372, x2325, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2373, &x2374, x2325, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2375, &x2376, x2325, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2377, &x2378, x2325, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2379, &x2380, x2325, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2381, &x2382, x2325, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2383, &x2384, x2325, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2385, &x2386, x2325, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2387, &x2388, x2325, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2389, &x2390, x2325, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2391, &x2392, x2325, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2393, &x2394, x2325, UINT32_C(0xffffffff)); fiat_p521_addcarryx_u32(&x2395, &x2396, 0x0, x2394, x2391); fiat_p521_addcarryx_u32(&x2397, &x2398, x2396, x2392, x2389); fiat_p521_addcarryx_u32(&x2399, &x2400, x2398, x2390, x2387); fiat_p521_addcarryx_u32(&x2401, &x2402, x2400, x2388, x2385); fiat_p521_addcarryx_u32(&x2403, &x2404, x2402, x2386, x2383); fiat_p521_addcarryx_u32(&x2405, &x2406, x2404, x2384, x2381); fiat_p521_addcarryx_u32(&x2407, &x2408, x2406, x2382, x2379); fiat_p521_addcarryx_u32(&x2409, &x2410, x2408, x2380, x2377); fiat_p521_addcarryx_u32(&x2411, &x2412, x2410, x2378, x2375); fiat_p521_addcarryx_u32(&x2413, &x2414, x2412, x2376, x2373); fiat_p521_addcarryx_u32(&x2415, &x2416, x2414, x2374, x2371); fiat_p521_addcarryx_u32(&x2417, &x2418, x2416, x2372, x2369); fiat_p521_addcarryx_u32(&x2419, &x2420, x2418, x2370, x2367); fiat_p521_addcarryx_u32(&x2421, &x2422, x2420, x2368, x2365); fiat_p521_addcarryx_u32(&x2423, &x2424, x2422, x2366, x2363); fiat_p521_addcarryx_u32(&x2425, &x2426, x2424, x2364, x2361); x2427 = (x2426 + x2362); fiat_p521_addcarryx_u32(&x2428, &x2429, 0x0, x2325, x2393); fiat_p521_addcarryx_u32(&x2430, &x2431, x2429, x2327, x2395); fiat_p521_addcarryx_u32(&x2432, &x2433, x2431, x2329, x2397); fiat_p521_addcarryx_u32(&x2434, &x2435, x2433, x2331, x2399); fiat_p521_addcarryx_u32(&x2436, &x2437, x2435, x2333, x2401); fiat_p521_addcarryx_u32(&x2438, &x2439, x2437, x2335, x2403); fiat_p521_addcarryx_u32(&x2440, &x2441, x2439, x2337, x2405); fiat_p521_addcarryx_u32(&x2442, &x2443, x2441, x2339, x2407); fiat_p521_addcarryx_u32(&x2444, &x2445, x2443, x2341, x2409); fiat_p521_addcarryx_u32(&x2446, &x2447, x2445, x2343, x2411); fiat_p521_addcarryx_u32(&x2448, &x2449, x2447, x2345, x2413); fiat_p521_addcarryx_u32(&x2450, &x2451, x2449, x2347, x2415); fiat_p521_addcarryx_u32(&x2452, &x2453, x2451, x2349, x2417); fiat_p521_addcarryx_u32(&x2454, &x2455, x2453, x2351, x2419); fiat_p521_addcarryx_u32(&x2456, &x2457, x2455, x2353, x2421); fiat_p521_addcarryx_u32(&x2458, &x2459, x2457, x2355, x2423); fiat_p521_addcarryx_u32(&x2460, &x2461, x2459, x2357, x2425); fiat_p521_addcarryx_u32(&x2462, &x2463, x2461, x2359, x2427); x2464 = ((uint32_t)x2463 + x2360); fiat_p521_mulx_u32(&x2465, &x2466, x12, (arg1[16])); fiat_p521_mulx_u32(&x2467, &x2468, x12, (arg1[15])); fiat_p521_mulx_u32(&x2469, &x2470, x12, (arg1[14])); fiat_p521_mulx_u32(&x2471, &x2472, x12, (arg1[13])); fiat_p521_mulx_u32(&x2473, &x2474, x12, (arg1[12])); fiat_p521_mulx_u32(&x2475, &x2476, x12, (arg1[11])); fiat_p521_mulx_u32(&x2477, &x2478, x12, (arg1[10])); fiat_p521_mulx_u32(&x2479, &x2480, x12, (arg1[9])); fiat_p521_mulx_u32(&x2481, &x2482, x12, (arg1[8])); fiat_p521_mulx_u32(&x2483, &x2484, x12, (arg1[7])); fiat_p521_mulx_u32(&x2485, &x2486, x12, (arg1[6])); fiat_p521_mulx_u32(&x2487, &x2488, x12, (arg1[5])); fiat_p521_mulx_u32(&x2489, &x2490, x12, (arg1[4])); fiat_p521_mulx_u32(&x2491, &x2492, x12, (arg1[3])); fiat_p521_mulx_u32(&x2493, &x2494, x12, (arg1[2])); fiat_p521_mulx_u32(&x2495, &x2496, x12, (arg1[1])); fiat_p521_mulx_u32(&x2497, &x2498, x12, (arg1[0])); fiat_p521_addcarryx_u32(&x2499, &x2500, 0x0, x2498, x2495); fiat_p521_addcarryx_u32(&x2501, &x2502, x2500, x2496, x2493); fiat_p521_addcarryx_u32(&x2503, &x2504, x2502, x2494, x2491); fiat_p521_addcarryx_u32(&x2505, &x2506, x2504, x2492, x2489); fiat_p521_addcarryx_u32(&x2507, &x2508, x2506, x2490, x2487); fiat_p521_addcarryx_u32(&x2509, &x2510, x2508, x2488, x2485); fiat_p521_addcarryx_u32(&x2511, &x2512, x2510, x2486, x2483); fiat_p521_addcarryx_u32(&x2513, &x2514, x2512, x2484, x2481); fiat_p521_addcarryx_u32(&x2515, &x2516, x2514, x2482, x2479); fiat_p521_addcarryx_u32(&x2517, &x2518, x2516, x2480, x2477); fiat_p521_addcarryx_u32(&x2519, &x2520, x2518, x2478, x2475); fiat_p521_addcarryx_u32(&x2521, &x2522, x2520, x2476, x2473); fiat_p521_addcarryx_u32(&x2523, &x2524, x2522, x2474, x2471); fiat_p521_addcarryx_u32(&x2525, &x2526, x2524, x2472, x2469); fiat_p521_addcarryx_u32(&x2527, &x2528, x2526, x2470, x2467); fiat_p521_addcarryx_u32(&x2529, &x2530, x2528, x2468, x2465); x2531 = (x2530 + x2466); fiat_p521_addcarryx_u32(&x2532, &x2533, 0x0, x2430, x2497); fiat_p521_addcarryx_u32(&x2534, &x2535, x2533, x2432, x2499); fiat_p521_addcarryx_u32(&x2536, &x2537, x2535, x2434, x2501); fiat_p521_addcarryx_u32(&x2538, &x2539, x2537, x2436, x2503); fiat_p521_addcarryx_u32(&x2540, &x2541, x2539, x2438, x2505); fiat_p521_addcarryx_u32(&x2542, &x2543, x2541, x2440, x2507); fiat_p521_addcarryx_u32(&x2544, &x2545, x2543, x2442, x2509); fiat_p521_addcarryx_u32(&x2546, &x2547, x2545, x2444, x2511); fiat_p521_addcarryx_u32(&x2548, &x2549, x2547, x2446, x2513); fiat_p521_addcarryx_u32(&x2550, &x2551, x2549, x2448, x2515); fiat_p521_addcarryx_u32(&x2552, &x2553, x2551, x2450, x2517); fiat_p521_addcarryx_u32(&x2554, &x2555, x2553, x2452, x2519); fiat_p521_addcarryx_u32(&x2556, &x2557, x2555, x2454, x2521); fiat_p521_addcarryx_u32(&x2558, &x2559, x2557, x2456, x2523); fiat_p521_addcarryx_u32(&x2560, &x2561, x2559, x2458, x2525); fiat_p521_addcarryx_u32(&x2562, &x2563, x2561, x2460, x2527); fiat_p521_addcarryx_u32(&x2564, &x2565, x2563, x2462, x2529); fiat_p521_addcarryx_u32(&x2566, &x2567, x2565, x2464, x2531); fiat_p521_mulx_u32(&x2568, &x2569, x2532, UINT16_C(0x1ff)); fiat_p521_mulx_u32(&x2570, &x2571, x2532, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2572, &x2573, x2532, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2574, &x2575, x2532, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2576, &x2577, x2532, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2578, &x2579, x2532, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2580, &x2581, x2532, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2582, &x2583, x2532, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2584, &x2585, x2532, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2586, &x2587, x2532, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2588, &x2589, x2532, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2590, &x2591, x2532, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2592, &x2593, x2532, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2594, &x2595, x2532, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2596, &x2597, x2532, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2598, &x2599, x2532, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2600, &x2601, x2532, UINT32_C(0xffffffff)); fiat_p521_addcarryx_u32(&x2602, &x2603, 0x0, x2601, x2598); fiat_p521_addcarryx_u32(&x2604, &x2605, x2603, x2599, x2596); fiat_p521_addcarryx_u32(&x2606, &x2607, x2605, x2597, x2594); fiat_p521_addcarryx_u32(&x2608, &x2609, x2607, x2595, x2592); fiat_p521_addcarryx_u32(&x2610, &x2611, x2609, x2593, x2590); fiat_p521_addcarryx_u32(&x2612, &x2613, x2611, x2591, x2588); fiat_p521_addcarryx_u32(&x2614, &x2615, x2613, x2589, x2586); fiat_p521_addcarryx_u32(&x2616, &x2617, x2615, x2587, x2584); fiat_p521_addcarryx_u32(&x2618, &x2619, x2617, x2585, x2582); fiat_p521_addcarryx_u32(&x2620, &x2621, x2619, x2583, x2580); fiat_p521_addcarryx_u32(&x2622, &x2623, x2621, x2581, x2578); fiat_p521_addcarryx_u32(&x2624, &x2625, x2623, x2579, x2576); fiat_p521_addcarryx_u32(&x2626, &x2627, x2625, x2577, x2574); fiat_p521_addcarryx_u32(&x2628, &x2629, x2627, x2575, x2572); fiat_p521_addcarryx_u32(&x2630, &x2631, x2629, x2573, x2570); fiat_p521_addcarryx_u32(&x2632, &x2633, x2631, x2571, x2568); x2634 = (x2633 + x2569); fiat_p521_addcarryx_u32(&x2635, &x2636, 0x0, x2532, x2600); fiat_p521_addcarryx_u32(&x2637, &x2638, x2636, x2534, x2602); fiat_p521_addcarryx_u32(&x2639, &x2640, x2638, x2536, x2604); fiat_p521_addcarryx_u32(&x2641, &x2642, x2640, x2538, x2606); fiat_p521_addcarryx_u32(&x2643, &x2644, x2642, x2540, x2608); fiat_p521_addcarryx_u32(&x2645, &x2646, x2644, x2542, x2610); fiat_p521_addcarryx_u32(&x2647, &x2648, x2646, x2544, x2612); fiat_p521_addcarryx_u32(&x2649, &x2650, x2648, x2546, x2614); fiat_p521_addcarryx_u32(&x2651, &x2652, x2650, x2548, x2616); fiat_p521_addcarryx_u32(&x2653, &x2654, x2652, x2550, x2618); fiat_p521_addcarryx_u32(&x2655, &x2656, x2654, x2552, x2620); fiat_p521_addcarryx_u32(&x2657, &x2658, x2656, x2554, x2622); fiat_p521_addcarryx_u32(&x2659, &x2660, x2658, x2556, x2624); fiat_p521_addcarryx_u32(&x2661, &x2662, x2660, x2558, x2626); fiat_p521_addcarryx_u32(&x2663, &x2664, x2662, x2560, x2628); fiat_p521_addcarryx_u32(&x2665, &x2666, x2664, x2562, x2630); fiat_p521_addcarryx_u32(&x2667, &x2668, x2666, x2564, x2632); fiat_p521_addcarryx_u32(&x2669, &x2670, x2668, x2566, x2634); x2671 = ((uint32_t)x2670 + x2567); fiat_p521_mulx_u32(&x2672, &x2673, x13, (arg1[16])); fiat_p521_mulx_u32(&x2674, &x2675, x13, (arg1[15])); fiat_p521_mulx_u32(&x2676, &x2677, x13, (arg1[14])); fiat_p521_mulx_u32(&x2678, &x2679, x13, (arg1[13])); fiat_p521_mulx_u32(&x2680, &x2681, x13, (arg1[12])); fiat_p521_mulx_u32(&x2682, &x2683, x13, (arg1[11])); fiat_p521_mulx_u32(&x2684, &x2685, x13, (arg1[10])); fiat_p521_mulx_u32(&x2686, &x2687, x13, (arg1[9])); fiat_p521_mulx_u32(&x2688, &x2689, x13, (arg1[8])); fiat_p521_mulx_u32(&x2690, &x2691, x13, (arg1[7])); fiat_p521_mulx_u32(&x2692, &x2693, x13, (arg1[6])); fiat_p521_mulx_u32(&x2694, &x2695, x13, (arg1[5])); fiat_p521_mulx_u32(&x2696, &x2697, x13, (arg1[4])); fiat_p521_mulx_u32(&x2698, &x2699, x13, (arg1[3])); fiat_p521_mulx_u32(&x2700, &x2701, x13, (arg1[2])); fiat_p521_mulx_u32(&x2702, &x2703, x13, (arg1[1])); fiat_p521_mulx_u32(&x2704, &x2705, x13, (arg1[0])); fiat_p521_addcarryx_u32(&x2706, &x2707, 0x0, x2705, x2702); fiat_p521_addcarryx_u32(&x2708, &x2709, x2707, x2703, x2700); fiat_p521_addcarryx_u32(&x2710, &x2711, x2709, x2701, x2698); fiat_p521_addcarryx_u32(&x2712, &x2713, x2711, x2699, x2696); fiat_p521_addcarryx_u32(&x2714, &x2715, x2713, x2697, x2694); fiat_p521_addcarryx_u32(&x2716, &x2717, x2715, x2695, x2692); fiat_p521_addcarryx_u32(&x2718, &x2719, x2717, x2693, x2690); fiat_p521_addcarryx_u32(&x2720, &x2721, x2719, x2691, x2688); fiat_p521_addcarryx_u32(&x2722, &x2723, x2721, x2689, x2686); fiat_p521_addcarryx_u32(&x2724, &x2725, x2723, x2687, x2684); fiat_p521_addcarryx_u32(&x2726, &x2727, x2725, x2685, x2682); fiat_p521_addcarryx_u32(&x2728, &x2729, x2727, x2683, x2680); fiat_p521_addcarryx_u32(&x2730, &x2731, x2729, x2681, x2678); fiat_p521_addcarryx_u32(&x2732, &x2733, x2731, x2679, x2676); fiat_p521_addcarryx_u32(&x2734, &x2735, x2733, x2677, x2674); fiat_p521_addcarryx_u32(&x2736, &x2737, x2735, x2675, x2672); x2738 = (x2737 + x2673); fiat_p521_addcarryx_u32(&x2739, &x2740, 0x0, x2637, x2704); fiat_p521_addcarryx_u32(&x2741, &x2742, x2740, x2639, x2706); fiat_p521_addcarryx_u32(&x2743, &x2744, x2742, x2641, x2708); fiat_p521_addcarryx_u32(&x2745, &x2746, x2744, x2643, x2710); fiat_p521_addcarryx_u32(&x2747, &x2748, x2746, x2645, x2712); fiat_p521_addcarryx_u32(&x2749, &x2750, x2748, x2647, x2714); fiat_p521_addcarryx_u32(&x2751, &x2752, x2750, x2649, x2716); fiat_p521_addcarryx_u32(&x2753, &x2754, x2752, x2651, x2718); fiat_p521_addcarryx_u32(&x2755, &x2756, x2754, x2653, x2720); fiat_p521_addcarryx_u32(&x2757, &x2758, x2756, x2655, x2722); fiat_p521_addcarryx_u32(&x2759, &x2760, x2758, x2657, x2724); fiat_p521_addcarryx_u32(&x2761, &x2762, x2760, x2659, x2726); fiat_p521_addcarryx_u32(&x2763, &x2764, x2762, x2661, x2728); fiat_p521_addcarryx_u32(&x2765, &x2766, x2764, x2663, x2730); fiat_p521_addcarryx_u32(&x2767, &x2768, x2766, x2665, x2732); fiat_p521_addcarryx_u32(&x2769, &x2770, x2768, x2667, x2734); fiat_p521_addcarryx_u32(&x2771, &x2772, x2770, x2669, x2736); fiat_p521_addcarryx_u32(&x2773, &x2774, x2772, x2671, x2738); fiat_p521_mulx_u32(&x2775, &x2776, x2739, UINT16_C(0x1ff)); fiat_p521_mulx_u32(&x2777, &x2778, x2739, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2779, &x2780, x2739, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2781, &x2782, x2739, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2783, &x2784, x2739, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2785, &x2786, x2739, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2787, &x2788, x2739, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2789, &x2790, x2739, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2791, &x2792, x2739, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2793, &x2794, x2739, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2795, &x2796, x2739, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2797, &x2798, x2739, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2799, &x2800, x2739, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2801, &x2802, x2739, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2803, &x2804, x2739, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2805, &x2806, x2739, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2807, &x2808, x2739, UINT32_C(0xffffffff)); fiat_p521_addcarryx_u32(&x2809, &x2810, 0x0, x2808, x2805); fiat_p521_addcarryx_u32(&x2811, &x2812, x2810, x2806, x2803); fiat_p521_addcarryx_u32(&x2813, &x2814, x2812, x2804, x2801); fiat_p521_addcarryx_u32(&x2815, &x2816, x2814, x2802, x2799); fiat_p521_addcarryx_u32(&x2817, &x2818, x2816, x2800, x2797); fiat_p521_addcarryx_u32(&x2819, &x2820, x2818, x2798, x2795); fiat_p521_addcarryx_u32(&x2821, &x2822, x2820, x2796, x2793); fiat_p521_addcarryx_u32(&x2823, &x2824, x2822, x2794, x2791); fiat_p521_addcarryx_u32(&x2825, &x2826, x2824, x2792, x2789); fiat_p521_addcarryx_u32(&x2827, &x2828, x2826, x2790, x2787); fiat_p521_addcarryx_u32(&x2829, &x2830, x2828, x2788, x2785); fiat_p521_addcarryx_u32(&x2831, &x2832, x2830, x2786, x2783); fiat_p521_addcarryx_u32(&x2833, &x2834, x2832, x2784, x2781); fiat_p521_addcarryx_u32(&x2835, &x2836, x2834, x2782, x2779); fiat_p521_addcarryx_u32(&x2837, &x2838, x2836, x2780, x2777); fiat_p521_addcarryx_u32(&x2839, &x2840, x2838, x2778, x2775); x2841 = (x2840 + x2776); fiat_p521_addcarryx_u32(&x2842, &x2843, 0x0, x2739, x2807); fiat_p521_addcarryx_u32(&x2844, &x2845, x2843, x2741, x2809); fiat_p521_addcarryx_u32(&x2846, &x2847, x2845, x2743, x2811); fiat_p521_addcarryx_u32(&x2848, &x2849, x2847, x2745, x2813); fiat_p521_addcarryx_u32(&x2850, &x2851, x2849, x2747, x2815); fiat_p521_addcarryx_u32(&x2852, &x2853, x2851, x2749, x2817); fiat_p521_addcarryx_u32(&x2854, &x2855, x2853, x2751, x2819); fiat_p521_addcarryx_u32(&x2856, &x2857, x2855, x2753, x2821); fiat_p521_addcarryx_u32(&x2858, &x2859, x2857, x2755, x2823); fiat_p521_addcarryx_u32(&x2860, &x2861, x2859, x2757, x2825); fiat_p521_addcarryx_u32(&x2862, &x2863, x2861, x2759, x2827); fiat_p521_addcarryx_u32(&x2864, &x2865, x2863, x2761, x2829); fiat_p521_addcarryx_u32(&x2866, &x2867, x2865, x2763, x2831); fiat_p521_addcarryx_u32(&x2868, &x2869, x2867, x2765, x2833); fiat_p521_addcarryx_u32(&x2870, &x2871, x2869, x2767, x2835); fiat_p521_addcarryx_u32(&x2872, &x2873, x2871, x2769, x2837); fiat_p521_addcarryx_u32(&x2874, &x2875, x2873, x2771, x2839); fiat_p521_addcarryx_u32(&x2876, &x2877, x2875, x2773, x2841); x2878 = ((uint32_t)x2877 + x2774); fiat_p521_mulx_u32(&x2879, &x2880, x14, (arg1[16])); fiat_p521_mulx_u32(&x2881, &x2882, x14, (arg1[15])); fiat_p521_mulx_u32(&x2883, &x2884, x14, (arg1[14])); fiat_p521_mulx_u32(&x2885, &x2886, x14, (arg1[13])); fiat_p521_mulx_u32(&x2887, &x2888, x14, (arg1[12])); fiat_p521_mulx_u32(&x2889, &x2890, x14, (arg1[11])); fiat_p521_mulx_u32(&x2891, &x2892, x14, (arg1[10])); fiat_p521_mulx_u32(&x2893, &x2894, x14, (arg1[9])); fiat_p521_mulx_u32(&x2895, &x2896, x14, (arg1[8])); fiat_p521_mulx_u32(&x2897, &x2898, x14, (arg1[7])); fiat_p521_mulx_u32(&x2899, &x2900, x14, (arg1[6])); fiat_p521_mulx_u32(&x2901, &x2902, x14, (arg1[5])); fiat_p521_mulx_u32(&x2903, &x2904, x14, (arg1[4])); fiat_p521_mulx_u32(&x2905, &x2906, x14, (arg1[3])); fiat_p521_mulx_u32(&x2907, &x2908, x14, (arg1[2])); fiat_p521_mulx_u32(&x2909, &x2910, x14, (arg1[1])); fiat_p521_mulx_u32(&x2911, &x2912, x14, (arg1[0])); fiat_p521_addcarryx_u32(&x2913, &x2914, 0x0, x2912, x2909); fiat_p521_addcarryx_u32(&x2915, &x2916, x2914, x2910, x2907); fiat_p521_addcarryx_u32(&x2917, &x2918, x2916, x2908, x2905); fiat_p521_addcarryx_u32(&x2919, &x2920, x2918, x2906, x2903); fiat_p521_addcarryx_u32(&x2921, &x2922, x2920, x2904, x2901); fiat_p521_addcarryx_u32(&x2923, &x2924, x2922, x2902, x2899); fiat_p521_addcarryx_u32(&x2925, &x2926, x2924, x2900, x2897); fiat_p521_addcarryx_u32(&x2927, &x2928, x2926, x2898, x2895); fiat_p521_addcarryx_u32(&x2929, &x2930, x2928, x2896, x2893); fiat_p521_addcarryx_u32(&x2931, &x2932, x2930, x2894, x2891); fiat_p521_addcarryx_u32(&x2933, &x2934, x2932, x2892, x2889); fiat_p521_addcarryx_u32(&x2935, &x2936, x2934, x2890, x2887); fiat_p521_addcarryx_u32(&x2937, &x2938, x2936, x2888, x2885); fiat_p521_addcarryx_u32(&x2939, &x2940, x2938, x2886, x2883); fiat_p521_addcarryx_u32(&x2941, &x2942, x2940, x2884, x2881); fiat_p521_addcarryx_u32(&x2943, &x2944, x2942, x2882, x2879); x2945 = (x2944 + x2880); fiat_p521_addcarryx_u32(&x2946, &x2947, 0x0, x2844, x2911); fiat_p521_addcarryx_u32(&x2948, &x2949, x2947, x2846, x2913); fiat_p521_addcarryx_u32(&x2950, &x2951, x2949, x2848, x2915); fiat_p521_addcarryx_u32(&x2952, &x2953, x2951, x2850, x2917); fiat_p521_addcarryx_u32(&x2954, &x2955, x2953, x2852, x2919); fiat_p521_addcarryx_u32(&x2956, &x2957, x2955, x2854, x2921); fiat_p521_addcarryx_u32(&x2958, &x2959, x2957, x2856, x2923); fiat_p521_addcarryx_u32(&x2960, &x2961, x2959, x2858, x2925); fiat_p521_addcarryx_u32(&x2962, &x2963, x2961, x2860, x2927); fiat_p521_addcarryx_u32(&x2964, &x2965, x2963, x2862, x2929); fiat_p521_addcarryx_u32(&x2966, &x2967, x2965, x2864, x2931); fiat_p521_addcarryx_u32(&x2968, &x2969, x2967, x2866, x2933); fiat_p521_addcarryx_u32(&x2970, &x2971, x2969, x2868, x2935); fiat_p521_addcarryx_u32(&x2972, &x2973, x2971, x2870, x2937); fiat_p521_addcarryx_u32(&x2974, &x2975, x2973, x2872, x2939); fiat_p521_addcarryx_u32(&x2976, &x2977, x2975, x2874, x2941); fiat_p521_addcarryx_u32(&x2978, &x2979, x2977, x2876, x2943); fiat_p521_addcarryx_u32(&x2980, &x2981, x2979, x2878, x2945); fiat_p521_mulx_u32(&x2982, &x2983, x2946, UINT16_C(0x1ff)); fiat_p521_mulx_u32(&x2984, &x2985, x2946, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2986, &x2987, x2946, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2988, &x2989, x2946, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2990, &x2991, x2946, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2992, &x2993, x2946, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2994, &x2995, x2946, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2996, &x2997, x2946, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2998, &x2999, x2946, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x3000, &x3001, x2946, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x3002, &x3003, x2946, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x3004, &x3005, x2946, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x3006, &x3007, x2946, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x3008, &x3009, x2946, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x3010, &x3011, x2946, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x3012, &x3013, x2946, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x3014, &x3015, x2946, UINT32_C(0xffffffff)); fiat_p521_addcarryx_u32(&x3016, &x3017, 0x0, x3015, x3012); fiat_p521_addcarryx_u32(&x3018, &x3019, x3017, x3013, x3010); fiat_p521_addcarryx_u32(&x3020, &x3021, x3019, x3011, x3008); fiat_p521_addcarryx_u32(&x3022, &x3023, x3021, x3009, x3006); fiat_p521_addcarryx_u32(&x3024, &x3025, x3023, x3007, x3004); fiat_p521_addcarryx_u32(&x3026, &x3027, x3025, x3005, x3002); fiat_p521_addcarryx_u32(&x3028, &x3029, x3027, x3003, x3000); fiat_p521_addcarryx_u32(&x3030, &x3031, x3029, x3001, x2998); fiat_p521_addcarryx_u32(&x3032, &x3033, x3031, x2999, x2996); fiat_p521_addcarryx_u32(&x3034, &x3035, x3033, x2997, x2994); fiat_p521_addcarryx_u32(&x3036, &x3037, x3035, x2995, x2992); fiat_p521_addcarryx_u32(&x3038, &x3039, x3037, x2993, x2990); fiat_p521_addcarryx_u32(&x3040, &x3041, x3039, x2991, x2988); fiat_p521_addcarryx_u32(&x3042, &x3043, x3041, x2989, x2986); fiat_p521_addcarryx_u32(&x3044, &x3045, x3043, x2987, x2984); fiat_p521_addcarryx_u32(&x3046, &x3047, x3045, x2985, x2982); x3048 = (x3047 + x2983); fiat_p521_addcarryx_u32(&x3049, &x3050, 0x0, x2946, x3014); fiat_p521_addcarryx_u32(&x3051, &x3052, x3050, x2948, x3016); fiat_p521_addcarryx_u32(&x3053, &x3054, x3052, x2950, x3018); fiat_p521_addcarryx_u32(&x3055, &x3056, x3054, x2952, x3020); fiat_p521_addcarryx_u32(&x3057, &x3058, x3056, x2954, x3022); fiat_p521_addcarryx_u32(&x3059, &x3060, x3058, x2956, x3024); fiat_p521_addcarryx_u32(&x3061, &x3062, x3060, x2958, x3026); fiat_p521_addcarryx_u32(&x3063, &x3064, x3062, x2960, x3028); fiat_p521_addcarryx_u32(&x3065, &x3066, x3064, x2962, x3030); fiat_p521_addcarryx_u32(&x3067, &x3068, x3066, x2964, x3032); fiat_p521_addcarryx_u32(&x3069, &x3070, x3068, x2966, x3034); fiat_p521_addcarryx_u32(&x3071, &x3072, x3070, x2968, x3036); fiat_p521_addcarryx_u32(&x3073, &x3074, x3072, x2970, x3038); fiat_p521_addcarryx_u32(&x3075, &x3076, x3074, x2972, x3040); fiat_p521_addcarryx_u32(&x3077, &x3078, x3076, x2974, x3042); fiat_p521_addcarryx_u32(&x3079, &x3080, x3078, x2976, x3044); fiat_p521_addcarryx_u32(&x3081, &x3082, x3080, x2978, x3046); fiat_p521_addcarryx_u32(&x3083, &x3084, x3082, x2980, x3048); x3085 = ((uint32_t)x3084 + x2981); fiat_p521_mulx_u32(&x3086, &x3087, x15, (arg1[16])); fiat_p521_mulx_u32(&x3088, &x3089, x15, (arg1[15])); fiat_p521_mulx_u32(&x3090, &x3091, x15, (arg1[14])); fiat_p521_mulx_u32(&x3092, &x3093, x15, (arg1[13])); fiat_p521_mulx_u32(&x3094, &x3095, x15, (arg1[12])); fiat_p521_mulx_u32(&x3096, &x3097, x15, (arg1[11])); fiat_p521_mulx_u32(&x3098, &x3099, x15, (arg1[10])); fiat_p521_mulx_u32(&x3100, &x3101, x15, (arg1[9])); fiat_p521_mulx_u32(&x3102, &x3103, x15, (arg1[8])); fiat_p521_mulx_u32(&x3104, &x3105, x15, (arg1[7])); fiat_p521_mulx_u32(&x3106, &x3107, x15, (arg1[6])); fiat_p521_mulx_u32(&x3108, &x3109, x15, (arg1[5])); fiat_p521_mulx_u32(&x3110, &x3111, x15, (arg1[4])); fiat_p521_mulx_u32(&x3112, &x3113, x15, (arg1[3])); fiat_p521_mulx_u32(&x3114, &x3115, x15, (arg1[2])); fiat_p521_mulx_u32(&x3116, &x3117, x15, (arg1[1])); fiat_p521_mulx_u32(&x3118, &x3119, x15, (arg1[0])); fiat_p521_addcarryx_u32(&x3120, &x3121, 0x0, x3119, x3116); fiat_p521_addcarryx_u32(&x3122, &x3123, x3121, x3117, x3114); fiat_p521_addcarryx_u32(&x3124, &x3125, x3123, x3115, x3112); fiat_p521_addcarryx_u32(&x3126, &x3127, x3125, x3113, x3110); fiat_p521_addcarryx_u32(&x3128, &x3129, x3127, x3111, x3108); fiat_p521_addcarryx_u32(&x3130, &x3131, x3129, x3109, x3106); fiat_p521_addcarryx_u32(&x3132, &x3133, x3131, x3107, x3104); fiat_p521_addcarryx_u32(&x3134, &x3135, x3133, x3105, x3102); fiat_p521_addcarryx_u32(&x3136, &x3137, x3135, x3103, x3100); fiat_p521_addcarryx_u32(&x3138, &x3139, x3137, x3101, x3098); fiat_p521_addcarryx_u32(&x3140, &x3141, x3139, x3099, x3096); fiat_p521_addcarryx_u32(&x3142, &x3143, x3141, x3097, x3094); fiat_p521_addcarryx_u32(&x3144, &x3145, x3143, x3095, x3092); fiat_p521_addcarryx_u32(&x3146, &x3147, x3145, x3093, x3090); fiat_p521_addcarryx_u32(&x3148, &x3149, x3147, x3091, x3088); fiat_p521_addcarryx_u32(&x3150, &x3151, x3149, x3089, x3086); x3152 = (x3151 + x3087); fiat_p521_addcarryx_u32(&x3153, &x3154, 0x0, x3051, x3118); fiat_p521_addcarryx_u32(&x3155, &x3156, x3154, x3053, x3120); fiat_p521_addcarryx_u32(&x3157, &x3158, x3156, x3055, x3122); fiat_p521_addcarryx_u32(&x3159, &x3160, x3158, x3057, x3124); fiat_p521_addcarryx_u32(&x3161, &x3162, x3160, x3059, x3126); fiat_p521_addcarryx_u32(&x3163, &x3164, x3162, x3061, x3128); fiat_p521_addcarryx_u32(&x3165, &x3166, x3164, x3063, x3130); fiat_p521_addcarryx_u32(&x3167, &x3168, x3166, x3065, x3132); fiat_p521_addcarryx_u32(&x3169, &x3170, x3168, x3067, x3134); fiat_p521_addcarryx_u32(&x3171, &x3172, x3170, x3069, x3136); fiat_p521_addcarryx_u32(&x3173, &x3174, x3172, x3071, x3138); fiat_p521_addcarryx_u32(&x3175, &x3176, x3174, x3073, x3140); fiat_p521_addcarryx_u32(&x3177, &x3178, x3176, x3075, x3142); fiat_p521_addcarryx_u32(&x3179, &x3180, x3178, x3077, x3144); fiat_p521_addcarryx_u32(&x3181, &x3182, x3180, x3079, x3146); fiat_p521_addcarryx_u32(&x3183, &x3184, x3182, x3081, x3148); fiat_p521_addcarryx_u32(&x3185, &x3186, x3184, x3083, x3150); fiat_p521_addcarryx_u32(&x3187, &x3188, x3186, x3085, x3152); fiat_p521_mulx_u32(&x3189, &x3190, x3153, UINT16_C(0x1ff)); fiat_p521_mulx_u32(&x3191, &x3192, x3153, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x3193, &x3194, x3153, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x3195, &x3196, x3153, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x3197, &x3198, x3153, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x3199, &x3200, x3153, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x3201, &x3202, x3153, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x3203, &x3204, x3153, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x3205, &x3206, x3153, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x3207, &x3208, x3153, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x3209, &x3210, x3153, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x3211, &x3212, x3153, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x3213, &x3214, x3153, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x3215, &x3216, x3153, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x3217, &x3218, x3153, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x3219, &x3220, x3153, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x3221, &x3222, x3153, UINT32_C(0xffffffff)); fiat_p521_addcarryx_u32(&x3223, &x3224, 0x0, x3222, x3219); fiat_p521_addcarryx_u32(&x3225, &x3226, x3224, x3220, x3217); fiat_p521_addcarryx_u32(&x3227, &x3228, x3226, x3218, x3215); fiat_p521_addcarryx_u32(&x3229, &x3230, x3228, x3216, x3213); fiat_p521_addcarryx_u32(&x3231, &x3232, x3230, x3214, x3211); fiat_p521_addcarryx_u32(&x3233, &x3234, x3232, x3212, x3209); fiat_p521_addcarryx_u32(&x3235, &x3236, x3234, x3210, x3207); fiat_p521_addcarryx_u32(&x3237, &x3238, x3236, x3208, x3205); fiat_p521_addcarryx_u32(&x3239, &x3240, x3238, x3206, x3203); fiat_p521_addcarryx_u32(&x3241, &x3242, x3240, x3204, x3201); fiat_p521_addcarryx_u32(&x3243, &x3244, x3242, x3202, x3199); fiat_p521_addcarryx_u32(&x3245, &x3246, x3244, x3200, x3197); fiat_p521_addcarryx_u32(&x3247, &x3248, x3246, x3198, x3195); fiat_p521_addcarryx_u32(&x3249, &x3250, x3248, x3196, x3193); fiat_p521_addcarryx_u32(&x3251, &x3252, x3250, x3194, x3191); fiat_p521_addcarryx_u32(&x3253, &x3254, x3252, x3192, x3189); x3255 = (x3254 + x3190); fiat_p521_addcarryx_u32(&x3256, &x3257, 0x0, x3153, x3221); fiat_p521_addcarryx_u32(&x3258, &x3259, x3257, x3155, x3223); fiat_p521_addcarryx_u32(&x3260, &x3261, x3259, x3157, x3225); fiat_p521_addcarryx_u32(&x3262, &x3263, x3261, x3159, x3227); fiat_p521_addcarryx_u32(&x3264, &x3265, x3263, x3161, x3229); fiat_p521_addcarryx_u32(&x3266, &x3267, x3265, x3163, x3231); fiat_p521_addcarryx_u32(&x3268, &x3269, x3267, x3165, x3233); fiat_p521_addcarryx_u32(&x3270, &x3271, x3269, x3167, x3235); fiat_p521_addcarryx_u32(&x3272, &x3273, x3271, x3169, x3237); fiat_p521_addcarryx_u32(&x3274, &x3275, x3273, x3171, x3239); fiat_p521_addcarryx_u32(&x3276, &x3277, x3275, x3173, x3241); fiat_p521_addcarryx_u32(&x3278, &x3279, x3277, x3175, x3243); fiat_p521_addcarryx_u32(&x3280, &x3281, x3279, x3177, x3245); fiat_p521_addcarryx_u32(&x3282, &x3283, x3281, x3179, x3247); fiat_p521_addcarryx_u32(&x3284, &x3285, x3283, x3181, x3249); fiat_p521_addcarryx_u32(&x3286, &x3287, x3285, x3183, x3251); fiat_p521_addcarryx_u32(&x3288, &x3289, x3287, x3185, x3253); fiat_p521_addcarryx_u32(&x3290, &x3291, x3289, x3187, x3255); x3292 = ((uint32_t)x3291 + x3188); fiat_p521_mulx_u32(&x3293, &x3294, x16, (arg1[16])); fiat_p521_mulx_u32(&x3295, &x3296, x16, (arg1[15])); fiat_p521_mulx_u32(&x3297, &x3298, x16, (arg1[14])); fiat_p521_mulx_u32(&x3299, &x3300, x16, (arg1[13])); fiat_p521_mulx_u32(&x3301, &x3302, x16, (arg1[12])); fiat_p521_mulx_u32(&x3303, &x3304, x16, (arg1[11])); fiat_p521_mulx_u32(&x3305, &x3306, x16, (arg1[10])); fiat_p521_mulx_u32(&x3307, &x3308, x16, (arg1[9])); fiat_p521_mulx_u32(&x3309, &x3310, x16, (arg1[8])); fiat_p521_mulx_u32(&x3311, &x3312, x16, (arg1[7])); fiat_p521_mulx_u32(&x3313, &x3314, x16, (arg1[6])); fiat_p521_mulx_u32(&x3315, &x3316, x16, (arg1[5])); fiat_p521_mulx_u32(&x3317, &x3318, x16, (arg1[4])); fiat_p521_mulx_u32(&x3319, &x3320, x16, (arg1[3])); fiat_p521_mulx_u32(&x3321, &x3322, x16, (arg1[2])); fiat_p521_mulx_u32(&x3323, &x3324, x16, (arg1[1])); fiat_p521_mulx_u32(&x3325, &x3326, x16, (arg1[0])); fiat_p521_addcarryx_u32(&x3327, &x3328, 0x0, x3326, x3323); fiat_p521_addcarryx_u32(&x3329, &x3330, x3328, x3324, x3321); fiat_p521_addcarryx_u32(&x3331, &x3332, x3330, x3322, x3319); fiat_p521_addcarryx_u32(&x3333, &x3334, x3332, x3320, x3317); fiat_p521_addcarryx_u32(&x3335, &x3336, x3334, x3318, x3315); fiat_p521_addcarryx_u32(&x3337, &x3338, x3336, x3316, x3313); fiat_p521_addcarryx_u32(&x3339, &x3340, x3338, x3314, x3311); fiat_p521_addcarryx_u32(&x3341, &x3342, x3340, x3312, x3309); fiat_p521_addcarryx_u32(&x3343, &x3344, x3342, x3310, x3307); fiat_p521_addcarryx_u32(&x3345, &x3346, x3344, x3308, x3305); fiat_p521_addcarryx_u32(&x3347, &x3348, x3346, x3306, x3303); fiat_p521_addcarryx_u32(&x3349, &x3350, x3348, x3304, x3301); fiat_p521_addcarryx_u32(&x3351, &x3352, x3350, x3302, x3299); fiat_p521_addcarryx_u32(&x3353, &x3354, x3352, x3300, x3297); fiat_p521_addcarryx_u32(&x3355, &x3356, x3354, x3298, x3295); fiat_p521_addcarryx_u32(&x3357, &x3358, x3356, x3296, x3293); x3359 = (x3358 + x3294); fiat_p521_addcarryx_u32(&x3360, &x3361, 0x0, x3258, x3325); fiat_p521_addcarryx_u32(&x3362, &x3363, x3361, x3260, x3327); fiat_p521_addcarryx_u32(&x3364, &x3365, x3363, x3262, x3329); fiat_p521_addcarryx_u32(&x3366, &x3367, x3365, x3264, x3331); fiat_p521_addcarryx_u32(&x3368, &x3369, x3367, x3266, x3333); fiat_p521_addcarryx_u32(&x3370, &x3371, x3369, x3268, x3335); fiat_p521_addcarryx_u32(&x3372, &x3373, x3371, x3270, x3337); fiat_p521_addcarryx_u32(&x3374, &x3375, x3373, x3272, x3339); fiat_p521_addcarryx_u32(&x3376, &x3377, x3375, x3274, x3341); fiat_p521_addcarryx_u32(&x3378, &x3379, x3377, x3276, x3343); fiat_p521_addcarryx_u32(&x3380, &x3381, x3379, x3278, x3345); fiat_p521_addcarryx_u32(&x3382, &x3383, x3381, x3280, x3347); fiat_p521_addcarryx_u32(&x3384, &x3385, x3383, x3282, x3349); fiat_p521_addcarryx_u32(&x3386, &x3387, x3385, x3284, x3351); fiat_p521_addcarryx_u32(&x3388, &x3389, x3387, x3286, x3353); fiat_p521_addcarryx_u32(&x3390, &x3391, x3389, x3288, x3355); fiat_p521_addcarryx_u32(&x3392, &x3393, x3391, x3290, x3357); fiat_p521_addcarryx_u32(&x3394, &x3395, x3393, x3292, x3359); fiat_p521_mulx_u32(&x3396, &x3397, x3360, UINT16_C(0x1ff)); fiat_p521_mulx_u32(&x3398, &x3399, x3360, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x3400, &x3401, x3360, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x3402, &x3403, x3360, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x3404, &x3405, x3360, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x3406, &x3407, x3360, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x3408, &x3409, x3360, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x3410, &x3411, x3360, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x3412, &x3413, x3360, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x3414, &x3415, x3360, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x3416, &x3417, x3360, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x3418, &x3419, x3360, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x3420, &x3421, x3360, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x3422, &x3423, x3360, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x3424, &x3425, x3360, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x3426, &x3427, x3360, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x3428, &x3429, x3360, UINT32_C(0xffffffff)); fiat_p521_addcarryx_u32(&x3430, &x3431, 0x0, x3429, x3426); fiat_p521_addcarryx_u32(&x3432, &x3433, x3431, x3427, x3424); fiat_p521_addcarryx_u32(&x3434, &x3435, x3433, x3425, x3422); fiat_p521_addcarryx_u32(&x3436, &x3437, x3435, x3423, x3420); fiat_p521_addcarryx_u32(&x3438, &x3439, x3437, x3421, x3418); fiat_p521_addcarryx_u32(&x3440, &x3441, x3439, x3419, x3416); fiat_p521_addcarryx_u32(&x3442, &x3443, x3441, x3417, x3414); fiat_p521_addcarryx_u32(&x3444, &x3445, x3443, x3415, x3412); fiat_p521_addcarryx_u32(&x3446, &x3447, x3445, x3413, x3410); fiat_p521_addcarryx_u32(&x3448, &x3449, x3447, x3411, x3408); fiat_p521_addcarryx_u32(&x3450, &x3451, x3449, x3409, x3406); fiat_p521_addcarryx_u32(&x3452, &x3453, x3451, x3407, x3404); fiat_p521_addcarryx_u32(&x3454, &x3455, x3453, x3405, x3402); fiat_p521_addcarryx_u32(&x3456, &x3457, x3455, x3403, x3400); fiat_p521_addcarryx_u32(&x3458, &x3459, x3457, x3401, x3398); fiat_p521_addcarryx_u32(&x3460, &x3461, x3459, x3399, x3396); x3462 = (x3461 + x3397); fiat_p521_addcarryx_u32(&x3463, &x3464, 0x0, x3360, x3428); fiat_p521_addcarryx_u32(&x3465, &x3466, x3464, x3362, x3430); fiat_p521_addcarryx_u32(&x3467, &x3468, x3466, x3364, x3432); fiat_p521_addcarryx_u32(&x3469, &x3470, x3468, x3366, x3434); fiat_p521_addcarryx_u32(&x3471, &x3472, x3470, x3368, x3436); fiat_p521_addcarryx_u32(&x3473, &x3474, x3472, x3370, x3438); fiat_p521_addcarryx_u32(&x3475, &x3476, x3474, x3372, x3440); fiat_p521_addcarryx_u32(&x3477, &x3478, x3476, x3374, x3442); fiat_p521_addcarryx_u32(&x3479, &x3480, x3478, x3376, x3444); fiat_p521_addcarryx_u32(&x3481, &x3482, x3480, x3378, x3446); fiat_p521_addcarryx_u32(&x3483, &x3484, x3482, x3380, x3448); fiat_p521_addcarryx_u32(&x3485, &x3486, x3484, x3382, x3450); fiat_p521_addcarryx_u32(&x3487, &x3488, x3486, x3384, x3452); fiat_p521_addcarryx_u32(&x3489, &x3490, x3488, x3386, x3454); fiat_p521_addcarryx_u32(&x3491, &x3492, x3490, x3388, x3456); fiat_p521_addcarryx_u32(&x3493, &x3494, x3492, x3390, x3458); fiat_p521_addcarryx_u32(&x3495, &x3496, x3494, x3392, x3460); fiat_p521_addcarryx_u32(&x3497, &x3498, x3496, x3394, x3462); x3499 = ((uint32_t)x3498 + x3395); fiat_p521_subborrowx_u32(&x3500, &x3501, 0x0, x3465, UINT32_C(0xffffffff)); fiat_p521_subborrowx_u32(&x3502, &x3503, x3501, x3467, UINT32_C(0xffffffff)); fiat_p521_subborrowx_u32(&x3504, &x3505, x3503, x3469, UINT32_C(0xffffffff)); fiat_p521_subborrowx_u32(&x3506, &x3507, x3505, x3471, UINT32_C(0xffffffff)); fiat_p521_subborrowx_u32(&x3508, &x3509, x3507, x3473, UINT32_C(0xffffffff)); fiat_p521_subborrowx_u32(&x3510, &x3511, x3509, x3475, UINT32_C(0xffffffff)); fiat_p521_subborrowx_u32(&x3512, &x3513, x3511, x3477, UINT32_C(0xffffffff)); fiat_p521_subborrowx_u32(&x3514, &x3515, x3513, x3479, UINT32_C(0xffffffff)); fiat_p521_subborrowx_u32(&x3516, &x3517, x3515, x3481, UINT32_C(0xffffffff)); fiat_p521_subborrowx_u32(&x3518, &x3519, x3517, x3483, UINT32_C(0xffffffff)); fiat_p521_subborrowx_u32(&x3520, &x3521, x3519, x3485, UINT32_C(0xffffffff)); fiat_p521_subborrowx_u32(&x3522, &x3523, x3521, x3487, UINT32_C(0xffffffff)); fiat_p521_subborrowx_u32(&x3524, &x3525, x3523, x3489, UINT32_C(0xffffffff)); fiat_p521_subborrowx_u32(&x3526, &x3527, x3525, x3491, UINT32_C(0xffffffff)); fiat_p521_subborrowx_u32(&x3528, &x3529, x3527, x3493, UINT32_C(0xffffffff)); fiat_p521_subborrowx_u32(&x3530, &x3531, x3529, x3495, UINT32_C(0xffffffff)); fiat_p521_subborrowx_u32(&x3532, &x3533, x3531, x3497, UINT16_C(0x1ff)); fiat_p521_subborrowx_u32(&x3534, &x3535, x3533, x3499, 0x0); fiat_p521_cmovznz_u32(&x3536, x3535, x3500, x3465); fiat_p521_cmovznz_u32(&x3537, x3535, x3502, x3467); fiat_p521_cmovznz_u32(&x3538, x3535, x3504, x3469); fiat_p521_cmovznz_u32(&x3539, x3535, x3506, x3471); fiat_p521_cmovznz_u32(&x3540, x3535, x3508, x3473); fiat_p521_cmovznz_u32(&x3541, x3535, x3510, x3475); fiat_p521_cmovznz_u32(&x3542, x3535, x3512, x3477); fiat_p521_cmovznz_u32(&x3543, x3535, x3514, x3479); fiat_p521_cmovznz_u32(&x3544, x3535, x3516, x3481); fiat_p521_cmovznz_u32(&x3545, x3535, x3518, x3483); fiat_p521_cmovznz_u32(&x3546, x3535, x3520, x3485); fiat_p521_cmovznz_u32(&x3547, x3535, x3522, x3487); fiat_p521_cmovznz_u32(&x3548, x3535, x3524, x3489); fiat_p521_cmovznz_u32(&x3549, x3535, x3526, x3491); fiat_p521_cmovznz_u32(&x3550, x3535, x3528, x3493); fiat_p521_cmovznz_u32(&x3551, x3535, x3530, x3495); fiat_p521_cmovznz_u32(&x3552, x3535, x3532, x3497); out1[0] = x3536; out1[1] = x3537; out1[2] = x3538; out1[3] = x3539; out1[4] = x3540; out1[5] = x3541; out1[6] = x3542; out1[7] = x3543; out1[8] = x3544; out1[9] = x3545; out1[10] = x3546; out1[11] = x3547; out1[12] = x3548; out1[13] = x3549; out1[14] = x3550; out1[15] = x3551; out1[16] = x3552; } /* * The function fiat_p521_add adds two field elements in the Montgomery domain. * * Preconditions: * 0 ≤ eval arg1 < m * 0 ≤ eval arg2 < m * Postconditions: * eval (from_montgomery out1) mod m = (eval (from_montgomery arg1) + eval (from_montgomery arg2)) mod m * 0 ≤ eval out1 < m * */ static void fiat_p521_add(fiat_p521_montgomery_domain_field_element out1, const fiat_p521_montgomery_domain_field_element arg1, const fiat_p521_montgomery_domain_field_element arg2) { uint32_t x1; fiat_p521_uint1 x2; uint32_t x3; fiat_p521_uint1 x4; uint32_t x5; fiat_p521_uint1 x6; uint32_t x7; fiat_p521_uint1 x8; uint32_t x9; fiat_p521_uint1 x10; uint32_t x11; fiat_p521_uint1 x12; uint32_t x13; fiat_p521_uint1 x14; uint32_t x15; fiat_p521_uint1 x16; uint32_t x17; fiat_p521_uint1 x18; uint32_t x19; fiat_p521_uint1 x20; uint32_t x21; fiat_p521_uint1 x22; uint32_t x23; fiat_p521_uint1 x24; uint32_t x25; fiat_p521_uint1 x26; uint32_t x27; fiat_p521_uint1 x28; uint32_t x29; fiat_p521_uint1 x30; uint32_t x31; fiat_p521_uint1 x32; uint32_t x33; fiat_p521_uint1 x34; uint32_t x35; fiat_p521_uint1 x36; uint32_t x37; fiat_p521_uint1 x38; uint32_t x39; fiat_p521_uint1 x40; uint32_t x41; fiat_p521_uint1 x42; uint32_t x43; fiat_p521_uint1 x44; uint32_t x45; fiat_p521_uint1 x46; uint32_t x47; fiat_p521_uint1 x48; uint32_t x49; fiat_p521_uint1 x50; uint32_t x51; fiat_p521_uint1 x52; uint32_t x53; fiat_p521_uint1 x54; uint32_t x55; fiat_p521_uint1 x56; uint32_t x57; fiat_p521_uint1 x58; uint32_t x59; fiat_p521_uint1 x60; uint32_t x61; fiat_p521_uint1 x62; uint32_t x63; fiat_p521_uint1 x64; uint32_t x65; fiat_p521_uint1 x66; uint32_t x67; fiat_p521_uint1 x68; uint32_t x69; fiat_p521_uint1 x70; uint32_t x71; uint32_t x72; uint32_t x73; uint32_t x74; uint32_t x75; uint32_t x76; uint32_t x77; uint32_t x78; uint32_t x79; uint32_t x80; uint32_t x81; uint32_t x82; uint32_t x83; uint32_t x84; uint32_t x85; uint32_t x86; uint32_t x87; fiat_p521_addcarryx_u32(&x1, &x2, 0x0, (arg1[0]), (arg2[0])); fiat_p521_addcarryx_u32(&x3, &x4, x2, (arg1[1]), (arg2[1])); fiat_p521_addcarryx_u32(&x5, &x6, x4, (arg1[2]), (arg2[2])); fiat_p521_addcarryx_u32(&x7, &x8, x6, (arg1[3]), (arg2[3])); fiat_p521_addcarryx_u32(&x9, &x10, x8, (arg1[4]), (arg2[4])); fiat_p521_addcarryx_u32(&x11, &x12, x10, (arg1[5]), (arg2[5])); fiat_p521_addcarryx_u32(&x13, &x14, x12, (arg1[6]), (arg2[6])); fiat_p521_addcarryx_u32(&x15, &x16, x14, (arg1[7]), (arg2[7])); fiat_p521_addcarryx_u32(&x17, &x18, x16, (arg1[8]), (arg2[8])); fiat_p521_addcarryx_u32(&x19, &x20, x18, (arg1[9]), (arg2[9])); fiat_p521_addcarryx_u32(&x21, &x22, x20, (arg1[10]), (arg2[10])); fiat_p521_addcarryx_u32(&x23, &x24, x22, (arg1[11]), (arg2[11])); fiat_p521_addcarryx_u32(&x25, &x26, x24, (arg1[12]), (arg2[12])); fiat_p521_addcarryx_u32(&x27, &x28, x26, (arg1[13]), (arg2[13])); fiat_p521_addcarryx_u32(&x29, &x30, x28, (arg1[14]), (arg2[14])); fiat_p521_addcarryx_u32(&x31, &x32, x30, (arg1[15]), (arg2[15])); fiat_p521_addcarryx_u32(&x33, &x34, x32, (arg1[16]), (arg2[16])); fiat_p521_subborrowx_u32(&x35, &x36, 0x0, x1, UINT32_C(0xffffffff)); fiat_p521_subborrowx_u32(&x37, &x38, x36, x3, UINT32_C(0xffffffff)); fiat_p521_subborrowx_u32(&x39, &x40, x38, x5, UINT32_C(0xffffffff)); fiat_p521_subborrowx_u32(&x41, &x42, x40, x7, UINT32_C(0xffffffff)); fiat_p521_subborrowx_u32(&x43, &x44, x42, x9, UINT32_C(0xffffffff)); fiat_p521_subborrowx_u32(&x45, &x46, x44, x11, UINT32_C(0xffffffff)); fiat_p521_subborrowx_u32(&x47, &x48, x46, x13, UINT32_C(0xffffffff)); fiat_p521_subborrowx_u32(&x49, &x50, x48, x15, UINT32_C(0xffffffff)); fiat_p521_subborrowx_u32(&x51, &x52, x50, x17, UINT32_C(0xffffffff)); fiat_p521_subborrowx_u32(&x53, &x54, x52, x19, UINT32_C(0xffffffff)); fiat_p521_subborrowx_u32(&x55, &x56, x54, x21, UINT32_C(0xffffffff)); fiat_p521_subborrowx_u32(&x57, &x58, x56, x23, UINT32_C(0xffffffff)); fiat_p521_subborrowx_u32(&x59, &x60, x58, x25, UINT32_C(0xffffffff)); fiat_p521_subborrowx_u32(&x61, &x62, x60, x27, UINT32_C(0xffffffff)); fiat_p521_subborrowx_u32(&x63, &x64, x62, x29, UINT32_C(0xffffffff)); fiat_p521_subborrowx_u32(&x65, &x66, x64, x31, UINT32_C(0xffffffff)); fiat_p521_subborrowx_u32(&x67, &x68, x66, x33, UINT16_C(0x1ff)); fiat_p521_subborrowx_u32(&x69, &x70, x68, x34, 0x0); fiat_p521_cmovznz_u32(&x71, x70, x35, x1); fiat_p521_cmovznz_u32(&x72, x70, x37, x3); fiat_p521_cmovznz_u32(&x73, x70, x39, x5); fiat_p521_cmovznz_u32(&x74, x70, x41, x7); fiat_p521_cmovznz_u32(&x75, x70, x43, x9); fiat_p521_cmovznz_u32(&x76, x70, x45, x11); fiat_p521_cmovznz_u32(&x77, x70, x47, x13); fiat_p521_cmovznz_u32(&x78, x70, x49, x15); fiat_p521_cmovznz_u32(&x79, x70, x51, x17); fiat_p521_cmovznz_u32(&x80, x70, x53, x19); fiat_p521_cmovznz_u32(&x81, x70, x55, x21); fiat_p521_cmovznz_u32(&x82, x70, x57, x23); fiat_p521_cmovznz_u32(&x83, x70, x59, x25); fiat_p521_cmovznz_u32(&x84, x70, x61, x27); fiat_p521_cmovznz_u32(&x85, x70, x63, x29); fiat_p521_cmovznz_u32(&x86, x70, x65, x31); fiat_p521_cmovznz_u32(&x87, x70, x67, x33); out1[0] = x71; out1[1] = x72; out1[2] = x73; out1[3] = x74; out1[4] = x75; out1[5] = x76; out1[6] = x77; out1[7] = x78; out1[8] = x79; out1[9] = x80; out1[10] = x81; out1[11] = x82; out1[12] = x83; out1[13] = x84; out1[14] = x85; out1[15] = x86; out1[16] = x87; } /* * The function fiat_p521_sub subtracts two field elements in the Montgomery domain. * * Preconditions: * 0 ≤ eval arg1 < m * 0 ≤ eval arg2 < m * Postconditions: * eval (from_montgomery out1) mod m = (eval (from_montgomery arg1) - eval (from_montgomery arg2)) mod m * 0 ≤ eval out1 < m * */ static void fiat_p521_sub(fiat_p521_montgomery_domain_field_element out1, const fiat_p521_montgomery_domain_field_element arg1, const fiat_p521_montgomery_domain_field_element arg2) { uint32_t x1; fiat_p521_uint1 x2; uint32_t x3; fiat_p521_uint1 x4; uint32_t x5; fiat_p521_uint1 x6; uint32_t x7; fiat_p521_uint1 x8; uint32_t x9; fiat_p521_uint1 x10; uint32_t x11; fiat_p521_uint1 x12; uint32_t x13; fiat_p521_uint1 x14; uint32_t x15; fiat_p521_uint1 x16; uint32_t x17; fiat_p521_uint1 x18; uint32_t x19; fiat_p521_uint1 x20; uint32_t x21; fiat_p521_uint1 x22; uint32_t x23; fiat_p521_uint1 x24; uint32_t x25; fiat_p521_uint1 x26; uint32_t x27; fiat_p521_uint1 x28; uint32_t x29; fiat_p521_uint1 x30; uint32_t x31; fiat_p521_uint1 x32; uint32_t x33; fiat_p521_uint1 x34; uint32_t x35; uint32_t x36; fiat_p521_uint1 x37; uint32_t x38; fiat_p521_uint1 x39; uint32_t x40; fiat_p521_uint1 x41; uint32_t x42; fiat_p521_uint1 x43; uint32_t x44; fiat_p521_uint1 x45; uint32_t x46; fiat_p521_uint1 x47; uint32_t x48; fiat_p521_uint1 x49; uint32_t x50; fiat_p521_uint1 x51; uint32_t x52; fiat_p521_uint1 x53; uint32_t x54; fiat_p521_uint1 x55; uint32_t x56; fiat_p521_uint1 x57; uint32_t x58; fiat_p521_uint1 x59; uint32_t x60; fiat_p521_uint1 x61; uint32_t x62; fiat_p521_uint1 x63; uint32_t x64; fiat_p521_uint1 x65; uint32_t x66; fiat_p521_uint1 x67; uint32_t x68; fiat_p521_uint1 x69; fiat_p521_subborrowx_u32(&x1, &x2, 0x0, (arg1[0]), (arg2[0])); fiat_p521_subborrowx_u32(&x3, &x4, x2, (arg1[1]), (arg2[1])); fiat_p521_subborrowx_u32(&x5, &x6, x4, (arg1[2]), (arg2[2])); fiat_p521_subborrowx_u32(&x7, &x8, x6, (arg1[3]), (arg2[3])); fiat_p521_subborrowx_u32(&x9, &x10, x8, (arg1[4]), (arg2[4])); fiat_p521_subborrowx_u32(&x11, &x12, x10, (arg1[5]), (arg2[5])); fiat_p521_subborrowx_u32(&x13, &x14, x12, (arg1[6]), (arg2[6])); fiat_p521_subborrowx_u32(&x15, &x16, x14, (arg1[7]), (arg2[7])); fiat_p521_subborrowx_u32(&x17, &x18, x16, (arg1[8]), (arg2[8])); fiat_p521_subborrowx_u32(&x19, &x20, x18, (arg1[9]), (arg2[9])); fiat_p521_subborrowx_u32(&x21, &x22, x20, (arg1[10]), (arg2[10])); fiat_p521_subborrowx_u32(&x23, &x24, x22, (arg1[11]), (arg2[11])); fiat_p521_subborrowx_u32(&x25, &x26, x24, (arg1[12]), (arg2[12])); fiat_p521_subborrowx_u32(&x27, &x28, x26, (arg1[13]), (arg2[13])); fiat_p521_subborrowx_u32(&x29, &x30, x28, (arg1[14]), (arg2[14])); fiat_p521_subborrowx_u32(&x31, &x32, x30, (arg1[15]), (arg2[15])); fiat_p521_subborrowx_u32(&x33, &x34, x32, (arg1[16]), (arg2[16])); fiat_p521_cmovznz_u32(&x35, x34, 0x0, UINT32_C(0xffffffff)); fiat_p521_addcarryx_u32(&x36, &x37, 0x0, x1, x35); fiat_p521_addcarryx_u32(&x38, &x39, x37, x3, x35); fiat_p521_addcarryx_u32(&x40, &x41, x39, x5, x35); fiat_p521_addcarryx_u32(&x42, &x43, x41, x7, x35); fiat_p521_addcarryx_u32(&x44, &x45, x43, x9, x35); fiat_p521_addcarryx_u32(&x46, &x47, x45, x11, x35); fiat_p521_addcarryx_u32(&x48, &x49, x47, x13, x35); fiat_p521_addcarryx_u32(&x50, &x51, x49, x15, x35); fiat_p521_addcarryx_u32(&x52, &x53, x51, x17, x35); fiat_p521_addcarryx_u32(&x54, &x55, x53, x19, x35); fiat_p521_addcarryx_u32(&x56, &x57, x55, x21, x35); fiat_p521_addcarryx_u32(&x58, &x59, x57, x23, x35); fiat_p521_addcarryx_u32(&x60, &x61, x59, x25, x35); fiat_p521_addcarryx_u32(&x62, &x63, x61, x27, x35); fiat_p521_addcarryx_u32(&x64, &x65, x63, x29, x35); fiat_p521_addcarryx_u32(&x66, &x67, x65, x31, x35); fiat_p521_addcarryx_u32(&x68, &x69, x67, x33, (x35 & UINT16_C(0x1ff))); out1[0] = x36; out1[1] = x38; out1[2] = x40; out1[3] = x42; out1[4] = x44; out1[5] = x46; out1[6] = x48; out1[7] = x50; out1[8] = x52; out1[9] = x54; out1[10] = x56; out1[11] = x58; out1[12] = x60; out1[13] = x62; out1[14] = x64; out1[15] = x66; out1[16] = x68; } /* * The function fiat_p521_opp negates a field element in the Montgomery domain. * * Preconditions: * 0 ≤ eval arg1 < m * Postconditions: * eval (from_montgomery out1) mod m = -eval (from_montgomery arg1) mod m * 0 ≤ eval out1 < m * */ static void fiat_p521_opp(fiat_p521_montgomery_domain_field_element out1, const fiat_p521_montgomery_domain_field_element arg1) { uint32_t x1; fiat_p521_uint1 x2; uint32_t x3; fiat_p521_uint1 x4; uint32_t x5; fiat_p521_uint1 x6; uint32_t x7; fiat_p521_uint1 x8; uint32_t x9; fiat_p521_uint1 x10; uint32_t x11; fiat_p521_uint1 x12; uint32_t x13; fiat_p521_uint1 x14; uint32_t x15; fiat_p521_uint1 x16; uint32_t x17; fiat_p521_uint1 x18; uint32_t x19; fiat_p521_uint1 x20; uint32_t x21; fiat_p521_uint1 x22; uint32_t x23; fiat_p521_uint1 x24; uint32_t x25; fiat_p521_uint1 x26; uint32_t x27; fiat_p521_uint1 x28; uint32_t x29; fiat_p521_uint1 x30; uint32_t x31; fiat_p521_uint1 x32; uint32_t x33; fiat_p521_uint1 x34; uint32_t x35; uint32_t x36; fiat_p521_uint1 x37; uint32_t x38; fiat_p521_uint1 x39; uint32_t x40; fiat_p521_uint1 x41; uint32_t x42; fiat_p521_uint1 x43; uint32_t x44; fiat_p521_uint1 x45; uint32_t x46; fiat_p521_uint1 x47; uint32_t x48; fiat_p521_uint1 x49; uint32_t x50; fiat_p521_uint1 x51; uint32_t x52; fiat_p521_uint1 x53; uint32_t x54; fiat_p521_uint1 x55; uint32_t x56; fiat_p521_uint1 x57; uint32_t x58; fiat_p521_uint1 x59; uint32_t x60; fiat_p521_uint1 x61; uint32_t x62; fiat_p521_uint1 x63; uint32_t x64; fiat_p521_uint1 x65; uint32_t x66; fiat_p521_uint1 x67; uint32_t x68; fiat_p521_uint1 x69; fiat_p521_subborrowx_u32(&x1, &x2, 0x0, 0x0, (arg1[0])); fiat_p521_subborrowx_u32(&x3, &x4, x2, 0x0, (arg1[1])); fiat_p521_subborrowx_u32(&x5, &x6, x4, 0x0, (arg1[2])); fiat_p521_subborrowx_u32(&x7, &x8, x6, 0x0, (arg1[3])); fiat_p521_subborrowx_u32(&x9, &x10, x8, 0x0, (arg1[4])); fiat_p521_subborrowx_u32(&x11, &x12, x10, 0x0, (arg1[5])); fiat_p521_subborrowx_u32(&x13, &x14, x12, 0x0, (arg1[6])); fiat_p521_subborrowx_u32(&x15, &x16, x14, 0x0, (arg1[7])); fiat_p521_subborrowx_u32(&x17, &x18, x16, 0x0, (arg1[8])); fiat_p521_subborrowx_u32(&x19, &x20, x18, 0x0, (arg1[9])); fiat_p521_subborrowx_u32(&x21, &x22, x20, 0x0, (arg1[10])); fiat_p521_subborrowx_u32(&x23, &x24, x22, 0x0, (arg1[11])); fiat_p521_subborrowx_u32(&x25, &x26, x24, 0x0, (arg1[12])); fiat_p521_subborrowx_u32(&x27, &x28, x26, 0x0, (arg1[13])); fiat_p521_subborrowx_u32(&x29, &x30, x28, 0x0, (arg1[14])); fiat_p521_subborrowx_u32(&x31, &x32, x30, 0x0, (arg1[15])); fiat_p521_subborrowx_u32(&x33, &x34, x32, 0x0, (arg1[16])); fiat_p521_cmovznz_u32(&x35, x34, 0x0, UINT32_C(0xffffffff)); fiat_p521_addcarryx_u32(&x36, &x37, 0x0, x1, x35); fiat_p521_addcarryx_u32(&x38, &x39, x37, x3, x35); fiat_p521_addcarryx_u32(&x40, &x41, x39, x5, x35); fiat_p521_addcarryx_u32(&x42, &x43, x41, x7, x35); fiat_p521_addcarryx_u32(&x44, &x45, x43, x9, x35); fiat_p521_addcarryx_u32(&x46, &x47, x45, x11, x35); fiat_p521_addcarryx_u32(&x48, &x49, x47, x13, x35); fiat_p521_addcarryx_u32(&x50, &x51, x49, x15, x35); fiat_p521_addcarryx_u32(&x52, &x53, x51, x17, x35); fiat_p521_addcarryx_u32(&x54, &x55, x53, x19, x35); fiat_p521_addcarryx_u32(&x56, &x57, x55, x21, x35); fiat_p521_addcarryx_u32(&x58, &x59, x57, x23, x35); fiat_p521_addcarryx_u32(&x60, &x61, x59, x25, x35); fiat_p521_addcarryx_u32(&x62, &x63, x61, x27, x35); fiat_p521_addcarryx_u32(&x64, &x65, x63, x29, x35); fiat_p521_addcarryx_u32(&x66, &x67, x65, x31, x35); fiat_p521_addcarryx_u32(&x68, &x69, x67, x33, (x35 & UINT16_C(0x1ff))); out1[0] = x36; out1[1] = x38; out1[2] = x40; out1[3] = x42; out1[4] = x44; out1[5] = x46; out1[6] = x48; out1[7] = x50; out1[8] = x52; out1[9] = x54; out1[10] = x56; out1[11] = x58; out1[12] = x60; out1[13] = x62; out1[14] = x64; out1[15] = x66; out1[16] = x68; } /* * The function fiat_p521_from_montgomery translates a field element out of the Montgomery domain. * * Preconditions: * 0 ≤ eval arg1 < m * Postconditions: * eval out1 mod m = (eval arg1 * ((2^32)⁻¹ mod m)^17) mod m * 0 ≤ eval out1 < m * */ static void fiat_p521_from_montgomery(fiat_p521_non_montgomery_domain_field_element out1, const fiat_p521_montgomery_domain_field_element arg1) { uint32_t x1; uint32_t x2; uint32_t x3; uint32_t x4; uint32_t x5; uint32_t x6; uint32_t x7; uint32_t x8; uint32_t x9; uint32_t x10; uint32_t x11; uint32_t x12; uint32_t x13; uint32_t x14; uint32_t x15; uint32_t x16; uint32_t x17; uint32_t x18; uint32_t x19; uint32_t x20; uint32_t x21; uint32_t x22; uint32_t x23; uint32_t x24; uint32_t x25; uint32_t x26; uint32_t x27; uint32_t x28; uint32_t x29; uint32_t x30; uint32_t x31; uint32_t x32; uint32_t x33; uint32_t x34; uint32_t x35; uint32_t x36; fiat_p521_uint1 x37; uint32_t x38; fiat_p521_uint1 x39; uint32_t x40; fiat_p521_uint1 x41; uint32_t x42; fiat_p521_uint1 x43; uint32_t x44; fiat_p521_uint1 x45; uint32_t x46; fiat_p521_uint1 x47; uint32_t x48; fiat_p521_uint1 x49; uint32_t x50; fiat_p521_uint1 x51; uint32_t x52; fiat_p521_uint1 x53; uint32_t x54; fiat_p521_uint1 x55; uint32_t x56; fiat_p521_uint1 x57; uint32_t x58; fiat_p521_uint1 x59; uint32_t x60; fiat_p521_uint1 x61; uint32_t x62; fiat_p521_uint1 x63; uint32_t x64; fiat_p521_uint1 x65; uint32_t x66; fiat_p521_uint1 x67; uint32_t x68; fiat_p521_uint1 x69; uint32_t x70; fiat_p521_uint1 x71; uint32_t x72; fiat_p521_uint1 x73; uint32_t x74; fiat_p521_uint1 x75; uint32_t x76; fiat_p521_uint1 x77; uint32_t x78; fiat_p521_uint1 x79; uint32_t x80; fiat_p521_uint1 x81; uint32_t x82; fiat_p521_uint1 x83; uint32_t x84; fiat_p521_uint1 x85; uint32_t x86; fiat_p521_uint1 x87; uint32_t x88; fiat_p521_uint1 x89; uint32_t x90; fiat_p521_uint1 x91; uint32_t x92; fiat_p521_uint1 x93; uint32_t x94; fiat_p521_uint1 x95; uint32_t x96; fiat_p521_uint1 x97; uint32_t x98; fiat_p521_uint1 x99; uint32_t x100; fiat_p521_uint1 x101; uint32_t x102; fiat_p521_uint1 x103; uint32_t x104; fiat_p521_uint1 x105; uint32_t x106; fiat_p521_uint1 x107; uint32_t x108; fiat_p521_uint1 x109; uint32_t x110; fiat_p521_uint1 x111; uint32_t x112; fiat_p521_uint1 x113; uint32_t x114; fiat_p521_uint1 x115; uint32_t x116; fiat_p521_uint1 x117; uint32_t x118; fiat_p521_uint1 x119; uint32_t x120; fiat_p521_uint1 x121; uint32_t x122; fiat_p521_uint1 x123; uint32_t x124; fiat_p521_uint1 x125; uint32_t x126; fiat_p521_uint1 x127; uint32_t x128; fiat_p521_uint1 x129; uint32_t x130; fiat_p521_uint1 x131; uint32_t x132; fiat_p521_uint1 x133; uint32_t x134; uint32_t x135; uint32_t x136; uint32_t x137; uint32_t x138; uint32_t x139; uint32_t x140; uint32_t x141; uint32_t x142; uint32_t x143; uint32_t x144; uint32_t x145; uint32_t x146; uint32_t x147; uint32_t x148; uint32_t x149; uint32_t x150; uint32_t x151; uint32_t x152; uint32_t x153; uint32_t x154; uint32_t x155; uint32_t x156; uint32_t x157; uint32_t x158; uint32_t x159; uint32_t x160; uint32_t x161; uint32_t x162; uint32_t x163; uint32_t x164; uint32_t x165; uint32_t x166; uint32_t x167; uint32_t x168; fiat_p521_uint1 x169; uint32_t x170; fiat_p521_uint1 x171; uint32_t x172; fiat_p521_uint1 x173; uint32_t x174; fiat_p521_uint1 x175; uint32_t x176; fiat_p521_uint1 x177; uint32_t x178; fiat_p521_uint1 x179; uint32_t x180; fiat_p521_uint1 x181; uint32_t x182; fiat_p521_uint1 x183; uint32_t x184; fiat_p521_uint1 x185; uint32_t x186; fiat_p521_uint1 x187; uint32_t x188; fiat_p521_uint1 x189; uint32_t x190; fiat_p521_uint1 x191; uint32_t x192; fiat_p521_uint1 x193; uint32_t x194; fiat_p521_uint1 x195; uint32_t x196; fiat_p521_uint1 x197; uint32_t x198; fiat_p521_uint1 x199; uint32_t x200; fiat_p521_uint1 x201; uint32_t x202; fiat_p521_uint1 x203; uint32_t x204; fiat_p521_uint1 x205; uint32_t x206; fiat_p521_uint1 x207; uint32_t x208; fiat_p521_uint1 x209; uint32_t x210; fiat_p521_uint1 x211; uint32_t x212; fiat_p521_uint1 x213; uint32_t x214; fiat_p521_uint1 x215; uint32_t x216; fiat_p521_uint1 x217; uint32_t x218; fiat_p521_uint1 x219; uint32_t x220; fiat_p521_uint1 x221; uint32_t x222; fiat_p521_uint1 x223; uint32_t x224; fiat_p521_uint1 x225; uint32_t x226; fiat_p521_uint1 x227; uint32_t x228; fiat_p521_uint1 x229; uint32_t x230; fiat_p521_uint1 x231; uint32_t x232; fiat_p521_uint1 x233; uint32_t x234; fiat_p521_uint1 x235; uint32_t x236; fiat_p521_uint1 x237; uint32_t x238; fiat_p521_uint1 x239; uint32_t x240; fiat_p521_uint1 x241; uint32_t x242; fiat_p521_uint1 x243; uint32_t x244; fiat_p521_uint1 x245; uint32_t x246; fiat_p521_uint1 x247; uint32_t x248; fiat_p521_uint1 x249; uint32_t x250; fiat_p521_uint1 x251; uint32_t x252; fiat_p521_uint1 x253; uint32_t x254; fiat_p521_uint1 x255; uint32_t x256; fiat_p521_uint1 x257; uint32_t x258; fiat_p521_uint1 x259; uint32_t x260; fiat_p521_uint1 x261; uint32_t x262; fiat_p521_uint1 x263; uint32_t x264; fiat_p521_uint1 x265; uint32_t x266; uint32_t x267; uint32_t x268; uint32_t x269; uint32_t x270; uint32_t x271; uint32_t x272; uint32_t x273; uint32_t x274; uint32_t x275; uint32_t x276; uint32_t x277; uint32_t x278; uint32_t x279; uint32_t x280; uint32_t x281; uint32_t x282; uint32_t x283; uint32_t x284; uint32_t x285; uint32_t x286; uint32_t x287; uint32_t x288; uint32_t x289; uint32_t x290; uint32_t x291; uint32_t x292; uint32_t x293; uint32_t x294; uint32_t x295; uint32_t x296; uint32_t x297; uint32_t x298; uint32_t x299; uint32_t x300; fiat_p521_uint1 x301; uint32_t x302; fiat_p521_uint1 x303; uint32_t x304; fiat_p521_uint1 x305; uint32_t x306; fiat_p521_uint1 x307; uint32_t x308; fiat_p521_uint1 x309; uint32_t x310; fiat_p521_uint1 x311; uint32_t x312; fiat_p521_uint1 x313; uint32_t x314; fiat_p521_uint1 x315; uint32_t x316; fiat_p521_uint1 x317; uint32_t x318; fiat_p521_uint1 x319; uint32_t x320; fiat_p521_uint1 x321; uint32_t x322; fiat_p521_uint1 x323; uint32_t x324; fiat_p521_uint1 x325; uint32_t x326; fiat_p521_uint1 x327; uint32_t x328; fiat_p521_uint1 x329; uint32_t x330; fiat_p521_uint1 x331; uint32_t x332; fiat_p521_uint1 x333; uint32_t x334; fiat_p521_uint1 x335; uint32_t x336; fiat_p521_uint1 x337; uint32_t x338; fiat_p521_uint1 x339; uint32_t x340; fiat_p521_uint1 x341; uint32_t x342; fiat_p521_uint1 x343; uint32_t x344; fiat_p521_uint1 x345; uint32_t x346; fiat_p521_uint1 x347; uint32_t x348; fiat_p521_uint1 x349; uint32_t x350; fiat_p521_uint1 x351; uint32_t x352; fiat_p521_uint1 x353; uint32_t x354; fiat_p521_uint1 x355; uint32_t x356; fiat_p521_uint1 x357; uint32_t x358; fiat_p521_uint1 x359; uint32_t x360; fiat_p521_uint1 x361; uint32_t x362; fiat_p521_uint1 x363; uint32_t x364; fiat_p521_uint1 x365; uint32_t x366; fiat_p521_uint1 x367; uint32_t x368; fiat_p521_uint1 x369; uint32_t x370; fiat_p521_uint1 x371; uint32_t x372; fiat_p521_uint1 x373; uint32_t x374; fiat_p521_uint1 x375; uint32_t x376; fiat_p521_uint1 x377; uint32_t x378; fiat_p521_uint1 x379; uint32_t x380; fiat_p521_uint1 x381; uint32_t x382; fiat_p521_uint1 x383; uint32_t x384; fiat_p521_uint1 x385; uint32_t x386; fiat_p521_uint1 x387; uint32_t x388; fiat_p521_uint1 x389; uint32_t x390; fiat_p521_uint1 x391; uint32_t x392; fiat_p521_uint1 x393; uint32_t x394; fiat_p521_uint1 x395; uint32_t x396; fiat_p521_uint1 x397; uint32_t x398; uint32_t x399; uint32_t x400; uint32_t x401; uint32_t x402; uint32_t x403; uint32_t x404; uint32_t x405; uint32_t x406; uint32_t x407; uint32_t x408; uint32_t x409; uint32_t x410; uint32_t x411; uint32_t x412; uint32_t x413; uint32_t x414; uint32_t x415; uint32_t x416; uint32_t x417; uint32_t x418; uint32_t x419; uint32_t x420; uint32_t x421; uint32_t x422; uint32_t x423; uint32_t x424; uint32_t x425; uint32_t x426; uint32_t x427; uint32_t x428; uint32_t x429; uint32_t x430; uint32_t x431; uint32_t x432; fiat_p521_uint1 x433; uint32_t x434; fiat_p521_uint1 x435; uint32_t x436; fiat_p521_uint1 x437; uint32_t x438; fiat_p521_uint1 x439; uint32_t x440; fiat_p521_uint1 x441; uint32_t x442; fiat_p521_uint1 x443; uint32_t x444; fiat_p521_uint1 x445; uint32_t x446; fiat_p521_uint1 x447; uint32_t x448; fiat_p521_uint1 x449; uint32_t x450; fiat_p521_uint1 x451; uint32_t x452; fiat_p521_uint1 x453; uint32_t x454; fiat_p521_uint1 x455; uint32_t x456; fiat_p521_uint1 x457; uint32_t x458; fiat_p521_uint1 x459; uint32_t x460; fiat_p521_uint1 x461; uint32_t x462; fiat_p521_uint1 x463; uint32_t x464; fiat_p521_uint1 x465; uint32_t x466; fiat_p521_uint1 x467; uint32_t x468; fiat_p521_uint1 x469; uint32_t x470; fiat_p521_uint1 x471; uint32_t x472; fiat_p521_uint1 x473; uint32_t x474; fiat_p521_uint1 x475; uint32_t x476; fiat_p521_uint1 x477; uint32_t x478; fiat_p521_uint1 x479; uint32_t x480; fiat_p521_uint1 x481; uint32_t x482; fiat_p521_uint1 x483; uint32_t x484; fiat_p521_uint1 x485; uint32_t x486; fiat_p521_uint1 x487; uint32_t x488; fiat_p521_uint1 x489; uint32_t x490; fiat_p521_uint1 x491; uint32_t x492; fiat_p521_uint1 x493; uint32_t x494; fiat_p521_uint1 x495; uint32_t x496; fiat_p521_uint1 x497; uint32_t x498; fiat_p521_uint1 x499; uint32_t x500; fiat_p521_uint1 x501; uint32_t x502; fiat_p521_uint1 x503; uint32_t x504; fiat_p521_uint1 x505; uint32_t x506; fiat_p521_uint1 x507; uint32_t x508; fiat_p521_uint1 x509; uint32_t x510; fiat_p521_uint1 x511; uint32_t x512; fiat_p521_uint1 x513; uint32_t x514; fiat_p521_uint1 x515; uint32_t x516; fiat_p521_uint1 x517; uint32_t x518; fiat_p521_uint1 x519; uint32_t x520; fiat_p521_uint1 x521; uint32_t x522; fiat_p521_uint1 x523; uint32_t x524; fiat_p521_uint1 x525; uint32_t x526; fiat_p521_uint1 x527; uint32_t x528; fiat_p521_uint1 x529; uint32_t x530; uint32_t x531; uint32_t x532; uint32_t x533; uint32_t x534; uint32_t x535; uint32_t x536; uint32_t x537; uint32_t x538; uint32_t x539; uint32_t x540; uint32_t x541; uint32_t x542; uint32_t x543; uint32_t x544; uint32_t x545; uint32_t x546; uint32_t x547; uint32_t x548; uint32_t x549; uint32_t x550; uint32_t x551; uint32_t x552; uint32_t x553; uint32_t x554; uint32_t x555; uint32_t x556; uint32_t x557; uint32_t x558; uint32_t x559; uint32_t x560; uint32_t x561; uint32_t x562; uint32_t x563; uint32_t x564; fiat_p521_uint1 x565; uint32_t x566; fiat_p521_uint1 x567; uint32_t x568; fiat_p521_uint1 x569; uint32_t x570; fiat_p521_uint1 x571; uint32_t x572; fiat_p521_uint1 x573; uint32_t x574; fiat_p521_uint1 x575; uint32_t x576; fiat_p521_uint1 x577; uint32_t x578; fiat_p521_uint1 x579; uint32_t x580; fiat_p521_uint1 x581; uint32_t x582; fiat_p521_uint1 x583; uint32_t x584; fiat_p521_uint1 x585; uint32_t x586; fiat_p521_uint1 x587; uint32_t x588; fiat_p521_uint1 x589; uint32_t x590; fiat_p521_uint1 x591; uint32_t x592; fiat_p521_uint1 x593; uint32_t x594; fiat_p521_uint1 x595; uint32_t x596; fiat_p521_uint1 x597; uint32_t x598; fiat_p521_uint1 x599; uint32_t x600; fiat_p521_uint1 x601; uint32_t x602; fiat_p521_uint1 x603; uint32_t x604; fiat_p521_uint1 x605; uint32_t x606; fiat_p521_uint1 x607; uint32_t x608; fiat_p521_uint1 x609; uint32_t x610; fiat_p521_uint1 x611; uint32_t x612; fiat_p521_uint1 x613; uint32_t x614; fiat_p521_uint1 x615; uint32_t x616; fiat_p521_uint1 x617; uint32_t x618; fiat_p521_uint1 x619; uint32_t x620; fiat_p521_uint1 x621; uint32_t x622; fiat_p521_uint1 x623; uint32_t x624; fiat_p521_uint1 x625; uint32_t x626; fiat_p521_uint1 x627; uint32_t x628; fiat_p521_uint1 x629; uint32_t x630; fiat_p521_uint1 x631; uint32_t x632; fiat_p521_uint1 x633; uint32_t x634; fiat_p521_uint1 x635; uint32_t x636; fiat_p521_uint1 x637; uint32_t x638; fiat_p521_uint1 x639; uint32_t x640; fiat_p521_uint1 x641; uint32_t x642; fiat_p521_uint1 x643; uint32_t x644; fiat_p521_uint1 x645; uint32_t x646; fiat_p521_uint1 x647; uint32_t x648; fiat_p521_uint1 x649; uint32_t x650; fiat_p521_uint1 x651; uint32_t x652; fiat_p521_uint1 x653; uint32_t x654; fiat_p521_uint1 x655; uint32_t x656; fiat_p521_uint1 x657; uint32_t x658; fiat_p521_uint1 x659; uint32_t x660; fiat_p521_uint1 x661; uint32_t x662; uint32_t x663; uint32_t x664; uint32_t x665; uint32_t x666; uint32_t x667; uint32_t x668; uint32_t x669; uint32_t x670; uint32_t x671; uint32_t x672; uint32_t x673; uint32_t x674; uint32_t x675; uint32_t x676; uint32_t x677; uint32_t x678; uint32_t x679; uint32_t x680; uint32_t x681; uint32_t x682; uint32_t x683; uint32_t x684; uint32_t x685; uint32_t x686; uint32_t x687; uint32_t x688; uint32_t x689; uint32_t x690; uint32_t x691; uint32_t x692; uint32_t x693; uint32_t x694; uint32_t x695; uint32_t x696; fiat_p521_uint1 x697; uint32_t x698; fiat_p521_uint1 x699; uint32_t x700; fiat_p521_uint1 x701; uint32_t x702; fiat_p521_uint1 x703; uint32_t x704; fiat_p521_uint1 x705; uint32_t x706; fiat_p521_uint1 x707; uint32_t x708; fiat_p521_uint1 x709; uint32_t x710; fiat_p521_uint1 x711; uint32_t x712; fiat_p521_uint1 x713; uint32_t x714; fiat_p521_uint1 x715; uint32_t x716; fiat_p521_uint1 x717; uint32_t x718; fiat_p521_uint1 x719; uint32_t x720; fiat_p521_uint1 x721; uint32_t x722; fiat_p521_uint1 x723; uint32_t x724; fiat_p521_uint1 x725; uint32_t x726; fiat_p521_uint1 x727; uint32_t x728; fiat_p521_uint1 x729; uint32_t x730; fiat_p521_uint1 x731; uint32_t x732; fiat_p521_uint1 x733; uint32_t x734; fiat_p521_uint1 x735; uint32_t x736; fiat_p521_uint1 x737; uint32_t x738; fiat_p521_uint1 x739; uint32_t x740; fiat_p521_uint1 x741; uint32_t x742; fiat_p521_uint1 x743; uint32_t x744; fiat_p521_uint1 x745; uint32_t x746; fiat_p521_uint1 x747; uint32_t x748; fiat_p521_uint1 x749; uint32_t x750; fiat_p521_uint1 x751; uint32_t x752; fiat_p521_uint1 x753; uint32_t x754; fiat_p521_uint1 x755; uint32_t x756; fiat_p521_uint1 x757; uint32_t x758; fiat_p521_uint1 x759; uint32_t x760; fiat_p521_uint1 x761; uint32_t x762; fiat_p521_uint1 x763; uint32_t x764; fiat_p521_uint1 x765; uint32_t x766; fiat_p521_uint1 x767; uint32_t x768; fiat_p521_uint1 x769; uint32_t x770; fiat_p521_uint1 x771; uint32_t x772; fiat_p521_uint1 x773; uint32_t x774; fiat_p521_uint1 x775; uint32_t x776; fiat_p521_uint1 x777; uint32_t x778; fiat_p521_uint1 x779; uint32_t x780; fiat_p521_uint1 x781; uint32_t x782; fiat_p521_uint1 x783; uint32_t x784; fiat_p521_uint1 x785; uint32_t x786; fiat_p521_uint1 x787; uint32_t x788; fiat_p521_uint1 x789; uint32_t x790; fiat_p521_uint1 x791; uint32_t x792; fiat_p521_uint1 x793; uint32_t x794; uint32_t x795; uint32_t x796; uint32_t x797; uint32_t x798; uint32_t x799; uint32_t x800; uint32_t x801; uint32_t x802; uint32_t x803; uint32_t x804; uint32_t x805; uint32_t x806; uint32_t x807; uint32_t x808; uint32_t x809; uint32_t x810; uint32_t x811; uint32_t x812; uint32_t x813; uint32_t x814; uint32_t x815; uint32_t x816; uint32_t x817; uint32_t x818; uint32_t x819; uint32_t x820; uint32_t x821; uint32_t x822; uint32_t x823; uint32_t x824; uint32_t x825; uint32_t x826; uint32_t x827; uint32_t x828; fiat_p521_uint1 x829; uint32_t x830; fiat_p521_uint1 x831; uint32_t x832; fiat_p521_uint1 x833; uint32_t x834; fiat_p521_uint1 x835; uint32_t x836; fiat_p521_uint1 x837; uint32_t x838; fiat_p521_uint1 x839; uint32_t x840; fiat_p521_uint1 x841; uint32_t x842; fiat_p521_uint1 x843; uint32_t x844; fiat_p521_uint1 x845; uint32_t x846; fiat_p521_uint1 x847; uint32_t x848; fiat_p521_uint1 x849; uint32_t x850; fiat_p521_uint1 x851; uint32_t x852; fiat_p521_uint1 x853; uint32_t x854; fiat_p521_uint1 x855; uint32_t x856; fiat_p521_uint1 x857; uint32_t x858; fiat_p521_uint1 x859; uint32_t x860; fiat_p521_uint1 x861; uint32_t x862; fiat_p521_uint1 x863; uint32_t x864; fiat_p521_uint1 x865; uint32_t x866; fiat_p521_uint1 x867; uint32_t x868; fiat_p521_uint1 x869; uint32_t x870; fiat_p521_uint1 x871; uint32_t x872; fiat_p521_uint1 x873; uint32_t x874; fiat_p521_uint1 x875; uint32_t x876; fiat_p521_uint1 x877; uint32_t x878; fiat_p521_uint1 x879; uint32_t x880; fiat_p521_uint1 x881; uint32_t x882; fiat_p521_uint1 x883; uint32_t x884; fiat_p521_uint1 x885; uint32_t x886; fiat_p521_uint1 x887; uint32_t x888; fiat_p521_uint1 x889; uint32_t x890; fiat_p521_uint1 x891; uint32_t x892; fiat_p521_uint1 x893; uint32_t x894; fiat_p521_uint1 x895; uint32_t x896; fiat_p521_uint1 x897; uint32_t x898; fiat_p521_uint1 x899; uint32_t x900; fiat_p521_uint1 x901; uint32_t x902; fiat_p521_uint1 x903; uint32_t x904; fiat_p521_uint1 x905; uint32_t x906; fiat_p521_uint1 x907; uint32_t x908; fiat_p521_uint1 x909; uint32_t x910; fiat_p521_uint1 x911; uint32_t x912; fiat_p521_uint1 x913; uint32_t x914; fiat_p521_uint1 x915; uint32_t x916; fiat_p521_uint1 x917; uint32_t x918; fiat_p521_uint1 x919; uint32_t x920; fiat_p521_uint1 x921; uint32_t x922; fiat_p521_uint1 x923; uint32_t x924; fiat_p521_uint1 x925; uint32_t x926; uint32_t x927; uint32_t x928; uint32_t x929; uint32_t x930; uint32_t x931; uint32_t x932; uint32_t x933; uint32_t x934; uint32_t x935; uint32_t x936; uint32_t x937; uint32_t x938; uint32_t x939; uint32_t x940; uint32_t x941; uint32_t x942; uint32_t x943; uint32_t x944; uint32_t x945; uint32_t x946; uint32_t x947; uint32_t x948; uint32_t x949; uint32_t x950; uint32_t x951; uint32_t x952; uint32_t x953; uint32_t x954; uint32_t x955; uint32_t x956; uint32_t x957; uint32_t x958; uint32_t x959; uint32_t x960; fiat_p521_uint1 x961; uint32_t x962; fiat_p521_uint1 x963; uint32_t x964; fiat_p521_uint1 x965; uint32_t x966; fiat_p521_uint1 x967; uint32_t x968; fiat_p521_uint1 x969; uint32_t x970; fiat_p521_uint1 x971; uint32_t x972; fiat_p521_uint1 x973; uint32_t x974; fiat_p521_uint1 x975; uint32_t x976; fiat_p521_uint1 x977; uint32_t x978; fiat_p521_uint1 x979; uint32_t x980; fiat_p521_uint1 x981; uint32_t x982; fiat_p521_uint1 x983; uint32_t x984; fiat_p521_uint1 x985; uint32_t x986; fiat_p521_uint1 x987; uint32_t x988; fiat_p521_uint1 x989; uint32_t x990; fiat_p521_uint1 x991; uint32_t x992; fiat_p521_uint1 x993; uint32_t x994; fiat_p521_uint1 x995; uint32_t x996; fiat_p521_uint1 x997; uint32_t x998; fiat_p521_uint1 x999; uint32_t x1000; fiat_p521_uint1 x1001; uint32_t x1002; fiat_p521_uint1 x1003; uint32_t x1004; fiat_p521_uint1 x1005; uint32_t x1006; fiat_p521_uint1 x1007; uint32_t x1008; fiat_p521_uint1 x1009; uint32_t x1010; fiat_p521_uint1 x1011; uint32_t x1012; fiat_p521_uint1 x1013; uint32_t x1014; fiat_p521_uint1 x1015; uint32_t x1016; fiat_p521_uint1 x1017; uint32_t x1018; fiat_p521_uint1 x1019; uint32_t x1020; fiat_p521_uint1 x1021; uint32_t x1022; fiat_p521_uint1 x1023; uint32_t x1024; fiat_p521_uint1 x1025; uint32_t x1026; fiat_p521_uint1 x1027; uint32_t x1028; fiat_p521_uint1 x1029; uint32_t x1030; fiat_p521_uint1 x1031; uint32_t x1032; fiat_p521_uint1 x1033; uint32_t x1034; fiat_p521_uint1 x1035; uint32_t x1036; fiat_p521_uint1 x1037; uint32_t x1038; fiat_p521_uint1 x1039; uint32_t x1040; fiat_p521_uint1 x1041; uint32_t x1042; fiat_p521_uint1 x1043; uint32_t x1044; fiat_p521_uint1 x1045; uint32_t x1046; fiat_p521_uint1 x1047; uint32_t x1048; fiat_p521_uint1 x1049; uint32_t x1050; fiat_p521_uint1 x1051; uint32_t x1052; fiat_p521_uint1 x1053; uint32_t x1054; fiat_p521_uint1 x1055; uint32_t x1056; fiat_p521_uint1 x1057; uint32_t x1058; uint32_t x1059; uint32_t x1060; uint32_t x1061; uint32_t x1062; uint32_t x1063; uint32_t x1064; uint32_t x1065; uint32_t x1066; uint32_t x1067; uint32_t x1068; uint32_t x1069; uint32_t x1070; uint32_t x1071; uint32_t x1072; uint32_t x1073; uint32_t x1074; uint32_t x1075; uint32_t x1076; uint32_t x1077; uint32_t x1078; uint32_t x1079; uint32_t x1080; uint32_t x1081; uint32_t x1082; uint32_t x1083; uint32_t x1084; uint32_t x1085; uint32_t x1086; uint32_t x1087; uint32_t x1088; uint32_t x1089; uint32_t x1090; uint32_t x1091; uint32_t x1092; fiat_p521_uint1 x1093; uint32_t x1094; fiat_p521_uint1 x1095; uint32_t x1096; fiat_p521_uint1 x1097; uint32_t x1098; fiat_p521_uint1 x1099; uint32_t x1100; fiat_p521_uint1 x1101; uint32_t x1102; fiat_p521_uint1 x1103; uint32_t x1104; fiat_p521_uint1 x1105; uint32_t x1106; fiat_p521_uint1 x1107; uint32_t x1108; fiat_p521_uint1 x1109; uint32_t x1110; fiat_p521_uint1 x1111; uint32_t x1112; fiat_p521_uint1 x1113; uint32_t x1114; fiat_p521_uint1 x1115; uint32_t x1116; fiat_p521_uint1 x1117; uint32_t x1118; fiat_p521_uint1 x1119; uint32_t x1120; fiat_p521_uint1 x1121; uint32_t x1122; fiat_p521_uint1 x1123; uint32_t x1124; fiat_p521_uint1 x1125; uint32_t x1126; fiat_p521_uint1 x1127; uint32_t x1128; fiat_p521_uint1 x1129; uint32_t x1130; fiat_p521_uint1 x1131; uint32_t x1132; fiat_p521_uint1 x1133; uint32_t x1134; fiat_p521_uint1 x1135; uint32_t x1136; fiat_p521_uint1 x1137; uint32_t x1138; fiat_p521_uint1 x1139; uint32_t x1140; fiat_p521_uint1 x1141; uint32_t x1142; fiat_p521_uint1 x1143; uint32_t x1144; fiat_p521_uint1 x1145; uint32_t x1146; fiat_p521_uint1 x1147; uint32_t x1148; fiat_p521_uint1 x1149; uint32_t x1150; fiat_p521_uint1 x1151; uint32_t x1152; fiat_p521_uint1 x1153; uint32_t x1154; fiat_p521_uint1 x1155; uint32_t x1156; fiat_p521_uint1 x1157; uint32_t x1158; fiat_p521_uint1 x1159; uint32_t x1160; fiat_p521_uint1 x1161; uint32_t x1162; fiat_p521_uint1 x1163; uint32_t x1164; fiat_p521_uint1 x1165; uint32_t x1166; fiat_p521_uint1 x1167; uint32_t x1168; fiat_p521_uint1 x1169; uint32_t x1170; fiat_p521_uint1 x1171; uint32_t x1172; fiat_p521_uint1 x1173; uint32_t x1174; fiat_p521_uint1 x1175; uint32_t x1176; fiat_p521_uint1 x1177; uint32_t x1178; fiat_p521_uint1 x1179; uint32_t x1180; fiat_p521_uint1 x1181; uint32_t x1182; fiat_p521_uint1 x1183; uint32_t x1184; fiat_p521_uint1 x1185; uint32_t x1186; fiat_p521_uint1 x1187; uint32_t x1188; fiat_p521_uint1 x1189; uint32_t x1190; uint32_t x1191; uint32_t x1192; uint32_t x1193; uint32_t x1194; uint32_t x1195; uint32_t x1196; uint32_t x1197; uint32_t x1198; uint32_t x1199; uint32_t x1200; uint32_t x1201; uint32_t x1202; uint32_t x1203; uint32_t x1204; uint32_t x1205; uint32_t x1206; uint32_t x1207; uint32_t x1208; uint32_t x1209; uint32_t x1210; uint32_t x1211; uint32_t x1212; uint32_t x1213; uint32_t x1214; uint32_t x1215; uint32_t x1216; uint32_t x1217; uint32_t x1218; uint32_t x1219; uint32_t x1220; uint32_t x1221; uint32_t x1222; uint32_t x1223; uint32_t x1224; fiat_p521_uint1 x1225; uint32_t x1226; fiat_p521_uint1 x1227; uint32_t x1228; fiat_p521_uint1 x1229; uint32_t x1230; fiat_p521_uint1 x1231; uint32_t x1232; fiat_p521_uint1 x1233; uint32_t x1234; fiat_p521_uint1 x1235; uint32_t x1236; fiat_p521_uint1 x1237; uint32_t x1238; fiat_p521_uint1 x1239; uint32_t x1240; fiat_p521_uint1 x1241; uint32_t x1242; fiat_p521_uint1 x1243; uint32_t x1244; fiat_p521_uint1 x1245; uint32_t x1246; fiat_p521_uint1 x1247; uint32_t x1248; fiat_p521_uint1 x1249; uint32_t x1250; fiat_p521_uint1 x1251; uint32_t x1252; fiat_p521_uint1 x1253; uint32_t x1254; fiat_p521_uint1 x1255; uint32_t x1256; fiat_p521_uint1 x1257; uint32_t x1258; fiat_p521_uint1 x1259; uint32_t x1260; fiat_p521_uint1 x1261; uint32_t x1262; fiat_p521_uint1 x1263; uint32_t x1264; fiat_p521_uint1 x1265; uint32_t x1266; fiat_p521_uint1 x1267; uint32_t x1268; fiat_p521_uint1 x1269; uint32_t x1270; fiat_p521_uint1 x1271; uint32_t x1272; fiat_p521_uint1 x1273; uint32_t x1274; fiat_p521_uint1 x1275; uint32_t x1276; fiat_p521_uint1 x1277; uint32_t x1278; fiat_p521_uint1 x1279; uint32_t x1280; fiat_p521_uint1 x1281; uint32_t x1282; fiat_p521_uint1 x1283; uint32_t x1284; fiat_p521_uint1 x1285; uint32_t x1286; fiat_p521_uint1 x1287; uint32_t x1288; fiat_p521_uint1 x1289; uint32_t x1290; fiat_p521_uint1 x1291; uint32_t x1292; fiat_p521_uint1 x1293; uint32_t x1294; fiat_p521_uint1 x1295; uint32_t x1296; fiat_p521_uint1 x1297; uint32_t x1298; fiat_p521_uint1 x1299; uint32_t x1300; fiat_p521_uint1 x1301; uint32_t x1302; fiat_p521_uint1 x1303; uint32_t x1304; fiat_p521_uint1 x1305; uint32_t x1306; fiat_p521_uint1 x1307; uint32_t x1308; fiat_p521_uint1 x1309; uint32_t x1310; fiat_p521_uint1 x1311; uint32_t x1312; fiat_p521_uint1 x1313; uint32_t x1314; fiat_p521_uint1 x1315; uint32_t x1316; fiat_p521_uint1 x1317; uint32_t x1318; fiat_p521_uint1 x1319; uint32_t x1320; fiat_p521_uint1 x1321; uint32_t x1322; uint32_t x1323; uint32_t x1324; uint32_t x1325; uint32_t x1326; uint32_t x1327; uint32_t x1328; uint32_t x1329; uint32_t x1330; uint32_t x1331; uint32_t x1332; uint32_t x1333; uint32_t x1334; uint32_t x1335; uint32_t x1336; uint32_t x1337; uint32_t x1338; uint32_t x1339; uint32_t x1340; uint32_t x1341; uint32_t x1342; uint32_t x1343; uint32_t x1344; uint32_t x1345; uint32_t x1346; uint32_t x1347; uint32_t x1348; uint32_t x1349; uint32_t x1350; uint32_t x1351; uint32_t x1352; uint32_t x1353; uint32_t x1354; uint32_t x1355; uint32_t x1356; fiat_p521_uint1 x1357; uint32_t x1358; fiat_p521_uint1 x1359; uint32_t x1360; fiat_p521_uint1 x1361; uint32_t x1362; fiat_p521_uint1 x1363; uint32_t x1364; fiat_p521_uint1 x1365; uint32_t x1366; fiat_p521_uint1 x1367; uint32_t x1368; fiat_p521_uint1 x1369; uint32_t x1370; fiat_p521_uint1 x1371; uint32_t x1372; fiat_p521_uint1 x1373; uint32_t x1374; fiat_p521_uint1 x1375; uint32_t x1376; fiat_p521_uint1 x1377; uint32_t x1378; fiat_p521_uint1 x1379; uint32_t x1380; fiat_p521_uint1 x1381; uint32_t x1382; fiat_p521_uint1 x1383; uint32_t x1384; fiat_p521_uint1 x1385; uint32_t x1386; fiat_p521_uint1 x1387; uint32_t x1388; fiat_p521_uint1 x1389; uint32_t x1390; fiat_p521_uint1 x1391; uint32_t x1392; fiat_p521_uint1 x1393; uint32_t x1394; fiat_p521_uint1 x1395; uint32_t x1396; fiat_p521_uint1 x1397; uint32_t x1398; fiat_p521_uint1 x1399; uint32_t x1400; fiat_p521_uint1 x1401; uint32_t x1402; fiat_p521_uint1 x1403; uint32_t x1404; fiat_p521_uint1 x1405; uint32_t x1406; fiat_p521_uint1 x1407; uint32_t x1408; fiat_p521_uint1 x1409; uint32_t x1410; fiat_p521_uint1 x1411; uint32_t x1412; fiat_p521_uint1 x1413; uint32_t x1414; fiat_p521_uint1 x1415; uint32_t x1416; fiat_p521_uint1 x1417; uint32_t x1418; fiat_p521_uint1 x1419; uint32_t x1420; fiat_p521_uint1 x1421; uint32_t x1422; fiat_p521_uint1 x1423; uint32_t x1424; fiat_p521_uint1 x1425; uint32_t x1426; fiat_p521_uint1 x1427; uint32_t x1428; fiat_p521_uint1 x1429; uint32_t x1430; fiat_p521_uint1 x1431; uint32_t x1432; fiat_p521_uint1 x1433; uint32_t x1434; fiat_p521_uint1 x1435; uint32_t x1436; fiat_p521_uint1 x1437; uint32_t x1438; fiat_p521_uint1 x1439; uint32_t x1440; fiat_p521_uint1 x1441; uint32_t x1442; fiat_p521_uint1 x1443; uint32_t x1444; fiat_p521_uint1 x1445; uint32_t x1446; fiat_p521_uint1 x1447; uint32_t x1448; fiat_p521_uint1 x1449; uint32_t x1450; fiat_p521_uint1 x1451; uint32_t x1452; fiat_p521_uint1 x1453; uint32_t x1454; uint32_t x1455; uint32_t x1456; uint32_t x1457; uint32_t x1458; uint32_t x1459; uint32_t x1460; uint32_t x1461; uint32_t x1462; uint32_t x1463; uint32_t x1464; uint32_t x1465; uint32_t x1466; uint32_t x1467; uint32_t x1468; uint32_t x1469; uint32_t x1470; uint32_t x1471; uint32_t x1472; uint32_t x1473; uint32_t x1474; uint32_t x1475; uint32_t x1476; uint32_t x1477; uint32_t x1478; uint32_t x1479; uint32_t x1480; uint32_t x1481; uint32_t x1482; uint32_t x1483; uint32_t x1484; uint32_t x1485; uint32_t x1486; uint32_t x1487; uint32_t x1488; fiat_p521_uint1 x1489; uint32_t x1490; fiat_p521_uint1 x1491; uint32_t x1492; fiat_p521_uint1 x1493; uint32_t x1494; fiat_p521_uint1 x1495; uint32_t x1496; fiat_p521_uint1 x1497; uint32_t x1498; fiat_p521_uint1 x1499; uint32_t x1500; fiat_p521_uint1 x1501; uint32_t x1502; fiat_p521_uint1 x1503; uint32_t x1504; fiat_p521_uint1 x1505; uint32_t x1506; fiat_p521_uint1 x1507; uint32_t x1508; fiat_p521_uint1 x1509; uint32_t x1510; fiat_p521_uint1 x1511; uint32_t x1512; fiat_p521_uint1 x1513; uint32_t x1514; fiat_p521_uint1 x1515; uint32_t x1516; fiat_p521_uint1 x1517; uint32_t x1518; fiat_p521_uint1 x1519; uint32_t x1520; fiat_p521_uint1 x1521; uint32_t x1522; fiat_p521_uint1 x1523; uint32_t x1524; fiat_p521_uint1 x1525; uint32_t x1526; fiat_p521_uint1 x1527; uint32_t x1528; fiat_p521_uint1 x1529; uint32_t x1530; fiat_p521_uint1 x1531; uint32_t x1532; fiat_p521_uint1 x1533; uint32_t x1534; fiat_p521_uint1 x1535; uint32_t x1536; fiat_p521_uint1 x1537; uint32_t x1538; fiat_p521_uint1 x1539; uint32_t x1540; fiat_p521_uint1 x1541; uint32_t x1542; fiat_p521_uint1 x1543; uint32_t x1544; fiat_p521_uint1 x1545; uint32_t x1546; fiat_p521_uint1 x1547; uint32_t x1548; fiat_p521_uint1 x1549; uint32_t x1550; fiat_p521_uint1 x1551; uint32_t x1552; fiat_p521_uint1 x1553; uint32_t x1554; fiat_p521_uint1 x1555; uint32_t x1556; fiat_p521_uint1 x1557; uint32_t x1558; fiat_p521_uint1 x1559; uint32_t x1560; fiat_p521_uint1 x1561; uint32_t x1562; fiat_p521_uint1 x1563; uint32_t x1564; fiat_p521_uint1 x1565; uint32_t x1566; fiat_p521_uint1 x1567; uint32_t x1568; fiat_p521_uint1 x1569; uint32_t x1570; fiat_p521_uint1 x1571; uint32_t x1572; fiat_p521_uint1 x1573; uint32_t x1574; fiat_p521_uint1 x1575; uint32_t x1576; fiat_p521_uint1 x1577; uint32_t x1578; fiat_p521_uint1 x1579; uint32_t x1580; fiat_p521_uint1 x1581; uint32_t x1582; fiat_p521_uint1 x1583; uint32_t x1584; fiat_p521_uint1 x1585; uint32_t x1586; uint32_t x1587; uint32_t x1588; uint32_t x1589; uint32_t x1590; uint32_t x1591; uint32_t x1592; uint32_t x1593; uint32_t x1594; uint32_t x1595; uint32_t x1596; uint32_t x1597; uint32_t x1598; uint32_t x1599; uint32_t x1600; uint32_t x1601; uint32_t x1602; uint32_t x1603; uint32_t x1604; uint32_t x1605; uint32_t x1606; uint32_t x1607; uint32_t x1608; uint32_t x1609; uint32_t x1610; uint32_t x1611; uint32_t x1612; uint32_t x1613; uint32_t x1614; uint32_t x1615; uint32_t x1616; uint32_t x1617; uint32_t x1618; uint32_t x1619; uint32_t x1620; fiat_p521_uint1 x1621; uint32_t x1622; fiat_p521_uint1 x1623; uint32_t x1624; fiat_p521_uint1 x1625; uint32_t x1626; fiat_p521_uint1 x1627; uint32_t x1628; fiat_p521_uint1 x1629; uint32_t x1630; fiat_p521_uint1 x1631; uint32_t x1632; fiat_p521_uint1 x1633; uint32_t x1634; fiat_p521_uint1 x1635; uint32_t x1636; fiat_p521_uint1 x1637; uint32_t x1638; fiat_p521_uint1 x1639; uint32_t x1640; fiat_p521_uint1 x1641; uint32_t x1642; fiat_p521_uint1 x1643; uint32_t x1644; fiat_p521_uint1 x1645; uint32_t x1646; fiat_p521_uint1 x1647; uint32_t x1648; fiat_p521_uint1 x1649; uint32_t x1650; fiat_p521_uint1 x1651; uint32_t x1652; fiat_p521_uint1 x1653; uint32_t x1654; fiat_p521_uint1 x1655; uint32_t x1656; fiat_p521_uint1 x1657; uint32_t x1658; fiat_p521_uint1 x1659; uint32_t x1660; fiat_p521_uint1 x1661; uint32_t x1662; fiat_p521_uint1 x1663; uint32_t x1664; fiat_p521_uint1 x1665; uint32_t x1666; fiat_p521_uint1 x1667; uint32_t x1668; fiat_p521_uint1 x1669; uint32_t x1670; fiat_p521_uint1 x1671; uint32_t x1672; fiat_p521_uint1 x1673; uint32_t x1674; fiat_p521_uint1 x1675; uint32_t x1676; fiat_p521_uint1 x1677; uint32_t x1678; fiat_p521_uint1 x1679; uint32_t x1680; fiat_p521_uint1 x1681; uint32_t x1682; fiat_p521_uint1 x1683; uint32_t x1684; fiat_p521_uint1 x1685; uint32_t x1686; fiat_p521_uint1 x1687; uint32_t x1688; fiat_p521_uint1 x1689; uint32_t x1690; fiat_p521_uint1 x1691; uint32_t x1692; fiat_p521_uint1 x1693; uint32_t x1694; fiat_p521_uint1 x1695; uint32_t x1696; fiat_p521_uint1 x1697; uint32_t x1698; fiat_p521_uint1 x1699; uint32_t x1700; fiat_p521_uint1 x1701; uint32_t x1702; fiat_p521_uint1 x1703; uint32_t x1704; fiat_p521_uint1 x1705; uint32_t x1706; fiat_p521_uint1 x1707; uint32_t x1708; fiat_p521_uint1 x1709; uint32_t x1710; fiat_p521_uint1 x1711; uint32_t x1712; fiat_p521_uint1 x1713; uint32_t x1714; fiat_p521_uint1 x1715; uint32_t x1716; fiat_p521_uint1 x1717; uint32_t x1718; uint32_t x1719; uint32_t x1720; uint32_t x1721; uint32_t x1722; uint32_t x1723; uint32_t x1724; uint32_t x1725; uint32_t x1726; uint32_t x1727; uint32_t x1728; uint32_t x1729; uint32_t x1730; uint32_t x1731; uint32_t x1732; uint32_t x1733; uint32_t x1734; uint32_t x1735; uint32_t x1736; uint32_t x1737; uint32_t x1738; uint32_t x1739; uint32_t x1740; uint32_t x1741; uint32_t x1742; uint32_t x1743; uint32_t x1744; uint32_t x1745; uint32_t x1746; uint32_t x1747; uint32_t x1748; uint32_t x1749; uint32_t x1750; uint32_t x1751; uint32_t x1752; fiat_p521_uint1 x1753; uint32_t x1754; fiat_p521_uint1 x1755; uint32_t x1756; fiat_p521_uint1 x1757; uint32_t x1758; fiat_p521_uint1 x1759; uint32_t x1760; fiat_p521_uint1 x1761; uint32_t x1762; fiat_p521_uint1 x1763; uint32_t x1764; fiat_p521_uint1 x1765; uint32_t x1766; fiat_p521_uint1 x1767; uint32_t x1768; fiat_p521_uint1 x1769; uint32_t x1770; fiat_p521_uint1 x1771; uint32_t x1772; fiat_p521_uint1 x1773; uint32_t x1774; fiat_p521_uint1 x1775; uint32_t x1776; fiat_p521_uint1 x1777; uint32_t x1778; fiat_p521_uint1 x1779; uint32_t x1780; fiat_p521_uint1 x1781; uint32_t x1782; fiat_p521_uint1 x1783; uint32_t x1784; fiat_p521_uint1 x1785; uint32_t x1786; fiat_p521_uint1 x1787; uint32_t x1788; fiat_p521_uint1 x1789; uint32_t x1790; fiat_p521_uint1 x1791; uint32_t x1792; fiat_p521_uint1 x1793; uint32_t x1794; fiat_p521_uint1 x1795; uint32_t x1796; fiat_p521_uint1 x1797; uint32_t x1798; fiat_p521_uint1 x1799; uint32_t x1800; fiat_p521_uint1 x1801; uint32_t x1802; fiat_p521_uint1 x1803; uint32_t x1804; fiat_p521_uint1 x1805; uint32_t x1806; fiat_p521_uint1 x1807; uint32_t x1808; fiat_p521_uint1 x1809; uint32_t x1810; fiat_p521_uint1 x1811; uint32_t x1812; fiat_p521_uint1 x1813; uint32_t x1814; fiat_p521_uint1 x1815; uint32_t x1816; fiat_p521_uint1 x1817; uint32_t x1818; fiat_p521_uint1 x1819; uint32_t x1820; fiat_p521_uint1 x1821; uint32_t x1822; fiat_p521_uint1 x1823; uint32_t x1824; fiat_p521_uint1 x1825; uint32_t x1826; fiat_p521_uint1 x1827; uint32_t x1828; fiat_p521_uint1 x1829; uint32_t x1830; fiat_p521_uint1 x1831; uint32_t x1832; fiat_p521_uint1 x1833; uint32_t x1834; fiat_p521_uint1 x1835; uint32_t x1836; fiat_p521_uint1 x1837; uint32_t x1838; fiat_p521_uint1 x1839; uint32_t x1840; fiat_p521_uint1 x1841; uint32_t x1842; fiat_p521_uint1 x1843; uint32_t x1844; fiat_p521_uint1 x1845; uint32_t x1846; fiat_p521_uint1 x1847; uint32_t x1848; fiat_p521_uint1 x1849; uint32_t x1850; uint32_t x1851; uint32_t x1852; uint32_t x1853; uint32_t x1854; uint32_t x1855; uint32_t x1856; uint32_t x1857; uint32_t x1858; uint32_t x1859; uint32_t x1860; uint32_t x1861; uint32_t x1862; uint32_t x1863; uint32_t x1864; uint32_t x1865; uint32_t x1866; uint32_t x1867; uint32_t x1868; uint32_t x1869; uint32_t x1870; uint32_t x1871; uint32_t x1872; uint32_t x1873; uint32_t x1874; uint32_t x1875; uint32_t x1876; uint32_t x1877; uint32_t x1878; uint32_t x1879; uint32_t x1880; uint32_t x1881; uint32_t x1882; uint32_t x1883; uint32_t x1884; fiat_p521_uint1 x1885; uint32_t x1886; fiat_p521_uint1 x1887; uint32_t x1888; fiat_p521_uint1 x1889; uint32_t x1890; fiat_p521_uint1 x1891; uint32_t x1892; fiat_p521_uint1 x1893; uint32_t x1894; fiat_p521_uint1 x1895; uint32_t x1896; fiat_p521_uint1 x1897; uint32_t x1898; fiat_p521_uint1 x1899; uint32_t x1900; fiat_p521_uint1 x1901; uint32_t x1902; fiat_p521_uint1 x1903; uint32_t x1904; fiat_p521_uint1 x1905; uint32_t x1906; fiat_p521_uint1 x1907; uint32_t x1908; fiat_p521_uint1 x1909; uint32_t x1910; fiat_p521_uint1 x1911; uint32_t x1912; fiat_p521_uint1 x1913; uint32_t x1914; fiat_p521_uint1 x1915; uint32_t x1916; fiat_p521_uint1 x1917; uint32_t x1918; fiat_p521_uint1 x1919; uint32_t x1920; fiat_p521_uint1 x1921; uint32_t x1922; fiat_p521_uint1 x1923; uint32_t x1924; fiat_p521_uint1 x1925; uint32_t x1926; fiat_p521_uint1 x1927; uint32_t x1928; fiat_p521_uint1 x1929; uint32_t x1930; fiat_p521_uint1 x1931; uint32_t x1932; fiat_p521_uint1 x1933; uint32_t x1934; fiat_p521_uint1 x1935; uint32_t x1936; fiat_p521_uint1 x1937; uint32_t x1938; fiat_p521_uint1 x1939; uint32_t x1940; fiat_p521_uint1 x1941; uint32_t x1942; fiat_p521_uint1 x1943; uint32_t x1944; fiat_p521_uint1 x1945; uint32_t x1946; fiat_p521_uint1 x1947; uint32_t x1948; fiat_p521_uint1 x1949; uint32_t x1950; fiat_p521_uint1 x1951; uint32_t x1952; fiat_p521_uint1 x1953; uint32_t x1954; fiat_p521_uint1 x1955; uint32_t x1956; fiat_p521_uint1 x1957; uint32_t x1958; fiat_p521_uint1 x1959; uint32_t x1960; fiat_p521_uint1 x1961; uint32_t x1962; fiat_p521_uint1 x1963; uint32_t x1964; fiat_p521_uint1 x1965; uint32_t x1966; fiat_p521_uint1 x1967; uint32_t x1968; fiat_p521_uint1 x1969; uint32_t x1970; fiat_p521_uint1 x1971; uint32_t x1972; fiat_p521_uint1 x1973; uint32_t x1974; fiat_p521_uint1 x1975; uint32_t x1976; fiat_p521_uint1 x1977; uint32_t x1978; fiat_p521_uint1 x1979; uint32_t x1980; fiat_p521_uint1 x1981; uint32_t x1982; uint32_t x1983; uint32_t x1984; uint32_t x1985; uint32_t x1986; uint32_t x1987; uint32_t x1988; uint32_t x1989; uint32_t x1990; uint32_t x1991; uint32_t x1992; uint32_t x1993; uint32_t x1994; uint32_t x1995; uint32_t x1996; uint32_t x1997; uint32_t x1998; uint32_t x1999; uint32_t x2000; uint32_t x2001; uint32_t x2002; uint32_t x2003; uint32_t x2004; uint32_t x2005; uint32_t x2006; uint32_t x2007; uint32_t x2008; uint32_t x2009; uint32_t x2010; uint32_t x2011; uint32_t x2012; uint32_t x2013; uint32_t x2014; uint32_t x2015; uint32_t x2016; fiat_p521_uint1 x2017; uint32_t x2018; fiat_p521_uint1 x2019; uint32_t x2020; fiat_p521_uint1 x2021; uint32_t x2022; fiat_p521_uint1 x2023; uint32_t x2024; fiat_p521_uint1 x2025; uint32_t x2026; fiat_p521_uint1 x2027; uint32_t x2028; fiat_p521_uint1 x2029; uint32_t x2030; fiat_p521_uint1 x2031; uint32_t x2032; fiat_p521_uint1 x2033; uint32_t x2034; fiat_p521_uint1 x2035; uint32_t x2036; fiat_p521_uint1 x2037; uint32_t x2038; fiat_p521_uint1 x2039; uint32_t x2040; fiat_p521_uint1 x2041; uint32_t x2042; fiat_p521_uint1 x2043; uint32_t x2044; fiat_p521_uint1 x2045; uint32_t x2046; fiat_p521_uint1 x2047; uint32_t x2048; fiat_p521_uint1 x2049; uint32_t x2050; fiat_p521_uint1 x2051; uint32_t x2052; fiat_p521_uint1 x2053; uint32_t x2054; fiat_p521_uint1 x2055; uint32_t x2056; fiat_p521_uint1 x2057; uint32_t x2058; fiat_p521_uint1 x2059; uint32_t x2060; fiat_p521_uint1 x2061; uint32_t x2062; fiat_p521_uint1 x2063; uint32_t x2064; fiat_p521_uint1 x2065; uint32_t x2066; fiat_p521_uint1 x2067; uint32_t x2068; fiat_p521_uint1 x2069; uint32_t x2070; fiat_p521_uint1 x2071; uint32_t x2072; fiat_p521_uint1 x2073; uint32_t x2074; fiat_p521_uint1 x2075; uint32_t x2076; fiat_p521_uint1 x2077; uint32_t x2078; fiat_p521_uint1 x2079; uint32_t x2080; fiat_p521_uint1 x2081; uint32_t x2082; fiat_p521_uint1 x2083; uint32_t x2084; fiat_p521_uint1 x2085; uint32_t x2086; fiat_p521_uint1 x2087; uint32_t x2088; fiat_p521_uint1 x2089; uint32_t x2090; fiat_p521_uint1 x2091; uint32_t x2092; fiat_p521_uint1 x2093; uint32_t x2094; fiat_p521_uint1 x2095; uint32_t x2096; fiat_p521_uint1 x2097; uint32_t x2098; fiat_p521_uint1 x2099; uint32_t x2100; fiat_p521_uint1 x2101; uint32_t x2102; fiat_p521_uint1 x2103; uint32_t x2104; fiat_p521_uint1 x2105; uint32_t x2106; fiat_p521_uint1 x2107; uint32_t x2108; fiat_p521_uint1 x2109; uint32_t x2110; fiat_p521_uint1 x2111; uint32_t x2112; fiat_p521_uint1 x2113; uint32_t x2114; uint32_t x2115; uint32_t x2116; uint32_t x2117; uint32_t x2118; uint32_t x2119; uint32_t x2120; uint32_t x2121; uint32_t x2122; uint32_t x2123; uint32_t x2124; uint32_t x2125; uint32_t x2126; uint32_t x2127; uint32_t x2128; uint32_t x2129; uint32_t x2130; uint32_t x2131; uint32_t x2132; uint32_t x2133; uint32_t x2134; uint32_t x2135; uint32_t x2136; uint32_t x2137; uint32_t x2138; uint32_t x2139; uint32_t x2140; uint32_t x2141; uint32_t x2142; uint32_t x2143; uint32_t x2144; uint32_t x2145; uint32_t x2146; uint32_t x2147; uint32_t x2148; fiat_p521_uint1 x2149; uint32_t x2150; fiat_p521_uint1 x2151; uint32_t x2152; fiat_p521_uint1 x2153; uint32_t x2154; fiat_p521_uint1 x2155; uint32_t x2156; fiat_p521_uint1 x2157; uint32_t x2158; fiat_p521_uint1 x2159; uint32_t x2160; fiat_p521_uint1 x2161; uint32_t x2162; fiat_p521_uint1 x2163; uint32_t x2164; fiat_p521_uint1 x2165; uint32_t x2166; fiat_p521_uint1 x2167; uint32_t x2168; fiat_p521_uint1 x2169; uint32_t x2170; fiat_p521_uint1 x2171; uint32_t x2172; fiat_p521_uint1 x2173; uint32_t x2174; fiat_p521_uint1 x2175; uint32_t x2176; fiat_p521_uint1 x2177; uint32_t x2178; fiat_p521_uint1 x2179; uint32_t x2180; fiat_p521_uint1 x2181; uint32_t x2182; fiat_p521_uint1 x2183; uint32_t x2184; fiat_p521_uint1 x2185; uint32_t x2186; fiat_p521_uint1 x2187; uint32_t x2188; fiat_p521_uint1 x2189; uint32_t x2190; fiat_p521_uint1 x2191; uint32_t x2192; fiat_p521_uint1 x2193; uint32_t x2194; fiat_p521_uint1 x2195; uint32_t x2196; fiat_p521_uint1 x2197; uint32_t x2198; fiat_p521_uint1 x2199; uint32_t x2200; fiat_p521_uint1 x2201; uint32_t x2202; fiat_p521_uint1 x2203; uint32_t x2204; fiat_p521_uint1 x2205; uint32_t x2206; fiat_p521_uint1 x2207; uint32_t x2208; fiat_p521_uint1 x2209; uint32_t x2210; fiat_p521_uint1 x2211; uint32_t x2212; fiat_p521_uint1 x2213; uint32_t x2214; uint32_t x2215; fiat_p521_uint1 x2216; uint32_t x2217; fiat_p521_uint1 x2218; uint32_t x2219; fiat_p521_uint1 x2220; uint32_t x2221; fiat_p521_uint1 x2222; uint32_t x2223; fiat_p521_uint1 x2224; uint32_t x2225; fiat_p521_uint1 x2226; uint32_t x2227; fiat_p521_uint1 x2228; uint32_t x2229; fiat_p521_uint1 x2230; uint32_t x2231; fiat_p521_uint1 x2232; uint32_t x2233; fiat_p521_uint1 x2234; uint32_t x2235; fiat_p521_uint1 x2236; uint32_t x2237; fiat_p521_uint1 x2238; uint32_t x2239; fiat_p521_uint1 x2240; uint32_t x2241; fiat_p521_uint1 x2242; uint32_t x2243; fiat_p521_uint1 x2244; uint32_t x2245; fiat_p521_uint1 x2246; uint32_t x2247; fiat_p521_uint1 x2248; uint32_t x2249; fiat_p521_uint1 x2250; uint32_t x2251; uint32_t x2252; uint32_t x2253; uint32_t x2254; uint32_t x2255; uint32_t x2256; uint32_t x2257; uint32_t x2258; uint32_t x2259; uint32_t x2260; uint32_t x2261; uint32_t x2262; uint32_t x2263; uint32_t x2264; uint32_t x2265; uint32_t x2266; uint32_t x2267; x1 = (arg1[0]); fiat_p521_mulx_u32(&x2, &x3, x1, UINT16_C(0x1ff)); fiat_p521_mulx_u32(&x4, &x5, x1, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x6, &x7, x1, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x8, &x9, x1, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x10, &x11, x1, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x12, &x13, x1, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x14, &x15, x1, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x16, &x17, x1, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x18, &x19, x1, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x20, &x21, x1, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x22, &x23, x1, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x24, &x25, x1, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x26, &x27, x1, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x28, &x29, x1, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x30, &x31, x1, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x32, &x33, x1, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x34, &x35, x1, UINT32_C(0xffffffff)); fiat_p521_addcarryx_u32(&x36, &x37, 0x0, x35, x32); fiat_p521_addcarryx_u32(&x38, &x39, x37, x33, x30); fiat_p521_addcarryx_u32(&x40, &x41, x39, x31, x28); fiat_p521_addcarryx_u32(&x42, &x43, x41, x29, x26); fiat_p521_addcarryx_u32(&x44, &x45, x43, x27, x24); fiat_p521_addcarryx_u32(&x46, &x47, x45, x25, x22); fiat_p521_addcarryx_u32(&x48, &x49, x47, x23, x20); fiat_p521_addcarryx_u32(&x50, &x51, x49, x21, x18); fiat_p521_addcarryx_u32(&x52, &x53, x51, x19, x16); fiat_p521_addcarryx_u32(&x54, &x55, x53, x17, x14); fiat_p521_addcarryx_u32(&x56, &x57, x55, x15, x12); fiat_p521_addcarryx_u32(&x58, &x59, x57, x13, x10); fiat_p521_addcarryx_u32(&x60, &x61, x59, x11, x8); fiat_p521_addcarryx_u32(&x62, &x63, x61, x9, x6); fiat_p521_addcarryx_u32(&x64, &x65, x63, x7, x4); fiat_p521_addcarryx_u32(&x66, &x67, x65, x5, x2); fiat_p521_addcarryx_u32(&x68, &x69, 0x0, x1, x34); fiat_p521_addcarryx_u32(&x70, &x71, x69, 0x0, x36); fiat_p521_addcarryx_u32(&x72, &x73, x71, 0x0, x38); fiat_p521_addcarryx_u32(&x74, &x75, x73, 0x0, x40); fiat_p521_addcarryx_u32(&x76, &x77, x75, 0x0, x42); fiat_p521_addcarryx_u32(&x78, &x79, x77, 0x0, x44); fiat_p521_addcarryx_u32(&x80, &x81, x79, 0x0, x46); fiat_p521_addcarryx_u32(&x82, &x83, x81, 0x0, x48); fiat_p521_addcarryx_u32(&x84, &x85, x83, 0x0, x50); fiat_p521_addcarryx_u32(&x86, &x87, x85, 0x0, x52); fiat_p521_addcarryx_u32(&x88, &x89, x87, 0x0, x54); fiat_p521_addcarryx_u32(&x90, &x91, x89, 0x0, x56); fiat_p521_addcarryx_u32(&x92, &x93, x91, 0x0, x58); fiat_p521_addcarryx_u32(&x94, &x95, x93, 0x0, x60); fiat_p521_addcarryx_u32(&x96, &x97, x95, 0x0, x62); fiat_p521_addcarryx_u32(&x98, &x99, x97, 0x0, x64); fiat_p521_addcarryx_u32(&x100, &x101, x99, 0x0, x66); fiat_p521_addcarryx_u32(&x102, &x103, 0x0, x70, (arg1[1])); fiat_p521_addcarryx_u32(&x104, &x105, x103, x72, 0x0); fiat_p521_addcarryx_u32(&x106, &x107, x105, x74, 0x0); fiat_p521_addcarryx_u32(&x108, &x109, x107, x76, 0x0); fiat_p521_addcarryx_u32(&x110, &x111, x109, x78, 0x0); fiat_p521_addcarryx_u32(&x112, &x113, x111, x80, 0x0); fiat_p521_addcarryx_u32(&x114, &x115, x113, x82, 0x0); fiat_p521_addcarryx_u32(&x116, &x117, x115, x84, 0x0); fiat_p521_addcarryx_u32(&x118, &x119, x117, x86, 0x0); fiat_p521_addcarryx_u32(&x120, &x121, x119, x88, 0x0); fiat_p521_addcarryx_u32(&x122, &x123, x121, x90, 0x0); fiat_p521_addcarryx_u32(&x124, &x125, x123, x92, 0x0); fiat_p521_addcarryx_u32(&x126, &x127, x125, x94, 0x0); fiat_p521_addcarryx_u32(&x128, &x129, x127, x96, 0x0); fiat_p521_addcarryx_u32(&x130, &x131, x129, x98, 0x0); fiat_p521_addcarryx_u32(&x132, &x133, x131, x100, 0x0); fiat_p521_mulx_u32(&x134, &x135, x102, UINT16_C(0x1ff)); fiat_p521_mulx_u32(&x136, &x137, x102, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x138, &x139, x102, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x140, &x141, x102, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x142, &x143, x102, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x144, &x145, x102, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x146, &x147, x102, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x148, &x149, x102, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x150, &x151, x102, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x152, &x153, x102, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x154, &x155, x102, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x156, &x157, x102, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x158, &x159, x102, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x160, &x161, x102, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x162, &x163, x102, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x164, &x165, x102, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x166, &x167, x102, UINT32_C(0xffffffff)); fiat_p521_addcarryx_u32(&x168, &x169, 0x0, x167, x164); fiat_p521_addcarryx_u32(&x170, &x171, x169, x165, x162); fiat_p521_addcarryx_u32(&x172, &x173, x171, x163, x160); fiat_p521_addcarryx_u32(&x174, &x175, x173, x161, x158); fiat_p521_addcarryx_u32(&x176, &x177, x175, x159, x156); fiat_p521_addcarryx_u32(&x178, &x179, x177, x157, x154); fiat_p521_addcarryx_u32(&x180, &x181, x179, x155, x152); fiat_p521_addcarryx_u32(&x182, &x183, x181, x153, x150); fiat_p521_addcarryx_u32(&x184, &x185, x183, x151, x148); fiat_p521_addcarryx_u32(&x186, &x187, x185, x149, x146); fiat_p521_addcarryx_u32(&x188, &x189, x187, x147, x144); fiat_p521_addcarryx_u32(&x190, &x191, x189, x145, x142); fiat_p521_addcarryx_u32(&x192, &x193, x191, x143, x140); fiat_p521_addcarryx_u32(&x194, &x195, x193, x141, x138); fiat_p521_addcarryx_u32(&x196, &x197, x195, x139, x136); fiat_p521_addcarryx_u32(&x198, &x199, x197, x137, x134); fiat_p521_addcarryx_u32(&x200, &x201, 0x0, x102, x166); fiat_p521_addcarryx_u32(&x202, &x203, x201, x104, x168); fiat_p521_addcarryx_u32(&x204, &x205, x203, x106, x170); fiat_p521_addcarryx_u32(&x206, &x207, x205, x108, x172); fiat_p521_addcarryx_u32(&x208, &x209, x207, x110, x174); fiat_p521_addcarryx_u32(&x210, &x211, x209, x112, x176); fiat_p521_addcarryx_u32(&x212, &x213, x211, x114, x178); fiat_p521_addcarryx_u32(&x214, &x215, x213, x116, x180); fiat_p521_addcarryx_u32(&x216, &x217, x215, x118, x182); fiat_p521_addcarryx_u32(&x218, &x219, x217, x120, x184); fiat_p521_addcarryx_u32(&x220, &x221, x219, x122, x186); fiat_p521_addcarryx_u32(&x222, &x223, x221, x124, x188); fiat_p521_addcarryx_u32(&x224, &x225, x223, x126, x190); fiat_p521_addcarryx_u32(&x226, &x227, x225, x128, x192); fiat_p521_addcarryx_u32(&x228, &x229, x227, x130, x194); fiat_p521_addcarryx_u32(&x230, &x231, x229, x132, x196); fiat_p521_addcarryx_u32(&x232, &x233, x231, (x133 + (x101 + (x67 + x3))), x198); fiat_p521_addcarryx_u32(&x234, &x235, 0x0, x202, (arg1[2])); fiat_p521_addcarryx_u32(&x236, &x237, x235, x204, 0x0); fiat_p521_addcarryx_u32(&x238, &x239, x237, x206, 0x0); fiat_p521_addcarryx_u32(&x240, &x241, x239, x208, 0x0); fiat_p521_addcarryx_u32(&x242, &x243, x241, x210, 0x0); fiat_p521_addcarryx_u32(&x244, &x245, x243, x212, 0x0); fiat_p521_addcarryx_u32(&x246, &x247, x245, x214, 0x0); fiat_p521_addcarryx_u32(&x248, &x249, x247, x216, 0x0); fiat_p521_addcarryx_u32(&x250, &x251, x249, x218, 0x0); fiat_p521_addcarryx_u32(&x252, &x253, x251, x220, 0x0); fiat_p521_addcarryx_u32(&x254, &x255, x253, x222, 0x0); fiat_p521_addcarryx_u32(&x256, &x257, x255, x224, 0x0); fiat_p521_addcarryx_u32(&x258, &x259, x257, x226, 0x0); fiat_p521_addcarryx_u32(&x260, &x261, x259, x228, 0x0); fiat_p521_addcarryx_u32(&x262, &x263, x261, x230, 0x0); fiat_p521_addcarryx_u32(&x264, &x265, x263, x232, 0x0); fiat_p521_mulx_u32(&x266, &x267, x234, UINT16_C(0x1ff)); fiat_p521_mulx_u32(&x268, &x269, x234, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x270, &x271, x234, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x272, &x273, x234, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x274, &x275, x234, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x276, &x277, x234, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x278, &x279, x234, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x280, &x281, x234, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x282, &x283, x234, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x284, &x285, x234, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x286, &x287, x234, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x288, &x289, x234, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x290, &x291, x234, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x292, &x293, x234, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x294, &x295, x234, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x296, &x297, x234, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x298, &x299, x234, UINT32_C(0xffffffff)); fiat_p521_addcarryx_u32(&x300, &x301, 0x0, x299, x296); fiat_p521_addcarryx_u32(&x302, &x303, x301, x297, x294); fiat_p521_addcarryx_u32(&x304, &x305, x303, x295, x292); fiat_p521_addcarryx_u32(&x306, &x307, x305, x293, x290); fiat_p521_addcarryx_u32(&x308, &x309, x307, x291, x288); fiat_p521_addcarryx_u32(&x310, &x311, x309, x289, x286); fiat_p521_addcarryx_u32(&x312, &x313, x311, x287, x284); fiat_p521_addcarryx_u32(&x314, &x315, x313, x285, x282); fiat_p521_addcarryx_u32(&x316, &x317, x315, x283, x280); fiat_p521_addcarryx_u32(&x318, &x319, x317, x281, x278); fiat_p521_addcarryx_u32(&x320, &x321, x319, x279, x276); fiat_p521_addcarryx_u32(&x322, &x323, x321, x277, x274); fiat_p521_addcarryx_u32(&x324, &x325, x323, x275, x272); fiat_p521_addcarryx_u32(&x326, &x327, x325, x273, x270); fiat_p521_addcarryx_u32(&x328, &x329, x327, x271, x268); fiat_p521_addcarryx_u32(&x330, &x331, x329, x269, x266); fiat_p521_addcarryx_u32(&x332, &x333, 0x0, x234, x298); fiat_p521_addcarryx_u32(&x334, &x335, x333, x236, x300); fiat_p521_addcarryx_u32(&x336, &x337, x335, x238, x302); fiat_p521_addcarryx_u32(&x338, &x339, x337, x240, x304); fiat_p521_addcarryx_u32(&x340, &x341, x339, x242, x306); fiat_p521_addcarryx_u32(&x342, &x343, x341, x244, x308); fiat_p521_addcarryx_u32(&x344, &x345, x343, x246, x310); fiat_p521_addcarryx_u32(&x346, &x347, x345, x248, x312); fiat_p521_addcarryx_u32(&x348, &x349, x347, x250, x314); fiat_p521_addcarryx_u32(&x350, &x351, x349, x252, x316); fiat_p521_addcarryx_u32(&x352, &x353, x351, x254, x318); fiat_p521_addcarryx_u32(&x354, &x355, x353, x256, x320); fiat_p521_addcarryx_u32(&x356, &x357, x355, x258, x322); fiat_p521_addcarryx_u32(&x358, &x359, x357, x260, x324); fiat_p521_addcarryx_u32(&x360, &x361, x359, x262, x326); fiat_p521_addcarryx_u32(&x362, &x363, x361, x264, x328); fiat_p521_addcarryx_u32(&x364, &x365, x363, (x265 + (x233 + (x199 + x135))), x330); fiat_p521_addcarryx_u32(&x366, &x367, 0x0, x334, (arg1[3])); fiat_p521_addcarryx_u32(&x368, &x369, x367, x336, 0x0); fiat_p521_addcarryx_u32(&x370, &x371, x369, x338, 0x0); fiat_p521_addcarryx_u32(&x372, &x373, x371, x340, 0x0); fiat_p521_addcarryx_u32(&x374, &x375, x373, x342, 0x0); fiat_p521_addcarryx_u32(&x376, &x377, x375, x344, 0x0); fiat_p521_addcarryx_u32(&x378, &x379, x377, x346, 0x0); fiat_p521_addcarryx_u32(&x380, &x381, x379, x348, 0x0); fiat_p521_addcarryx_u32(&x382, &x383, x381, x350, 0x0); fiat_p521_addcarryx_u32(&x384, &x385, x383, x352, 0x0); fiat_p521_addcarryx_u32(&x386, &x387, x385, x354, 0x0); fiat_p521_addcarryx_u32(&x388, &x389, x387, x356, 0x0); fiat_p521_addcarryx_u32(&x390, &x391, x389, x358, 0x0); fiat_p521_addcarryx_u32(&x392, &x393, x391, x360, 0x0); fiat_p521_addcarryx_u32(&x394, &x395, x393, x362, 0x0); fiat_p521_addcarryx_u32(&x396, &x397, x395, x364, 0x0); fiat_p521_mulx_u32(&x398, &x399, x366, UINT16_C(0x1ff)); fiat_p521_mulx_u32(&x400, &x401, x366, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x402, &x403, x366, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x404, &x405, x366, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x406, &x407, x366, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x408, &x409, x366, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x410, &x411, x366, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x412, &x413, x366, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x414, &x415, x366, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x416, &x417, x366, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x418, &x419, x366, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x420, &x421, x366, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x422, &x423, x366, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x424, &x425, x366, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x426, &x427, x366, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x428, &x429, x366, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x430, &x431, x366, UINT32_C(0xffffffff)); fiat_p521_addcarryx_u32(&x432, &x433, 0x0, x431, x428); fiat_p521_addcarryx_u32(&x434, &x435, x433, x429, x426); fiat_p521_addcarryx_u32(&x436, &x437, x435, x427, x424); fiat_p521_addcarryx_u32(&x438, &x439, x437, x425, x422); fiat_p521_addcarryx_u32(&x440, &x441, x439, x423, x420); fiat_p521_addcarryx_u32(&x442, &x443, x441, x421, x418); fiat_p521_addcarryx_u32(&x444, &x445, x443, x419, x416); fiat_p521_addcarryx_u32(&x446, &x447, x445, x417, x414); fiat_p521_addcarryx_u32(&x448, &x449, x447, x415, x412); fiat_p521_addcarryx_u32(&x450, &x451, x449, x413, x410); fiat_p521_addcarryx_u32(&x452, &x453, x451, x411, x408); fiat_p521_addcarryx_u32(&x454, &x455, x453, x409, x406); fiat_p521_addcarryx_u32(&x456, &x457, x455, x407, x404); fiat_p521_addcarryx_u32(&x458, &x459, x457, x405, x402); fiat_p521_addcarryx_u32(&x460, &x461, x459, x403, x400); fiat_p521_addcarryx_u32(&x462, &x463, x461, x401, x398); fiat_p521_addcarryx_u32(&x464, &x465, 0x0, x366, x430); fiat_p521_addcarryx_u32(&x466, &x467, x465, x368, x432); fiat_p521_addcarryx_u32(&x468, &x469, x467, x370, x434); fiat_p521_addcarryx_u32(&x470, &x471, x469, x372, x436); fiat_p521_addcarryx_u32(&x472, &x473, x471, x374, x438); fiat_p521_addcarryx_u32(&x474, &x475, x473, x376, x440); fiat_p521_addcarryx_u32(&x476, &x477, x475, x378, x442); fiat_p521_addcarryx_u32(&x478, &x479, x477, x380, x444); fiat_p521_addcarryx_u32(&x480, &x481, x479, x382, x446); fiat_p521_addcarryx_u32(&x482, &x483, x481, x384, x448); fiat_p521_addcarryx_u32(&x484, &x485, x483, x386, x450); fiat_p521_addcarryx_u32(&x486, &x487, x485, x388, x452); fiat_p521_addcarryx_u32(&x488, &x489, x487, x390, x454); fiat_p521_addcarryx_u32(&x490, &x491, x489, x392, x456); fiat_p521_addcarryx_u32(&x492, &x493, x491, x394, x458); fiat_p521_addcarryx_u32(&x494, &x495, x493, x396, x460); fiat_p521_addcarryx_u32(&x496, &x497, x495, (x397 + (x365 + (x331 + x267))), x462); fiat_p521_addcarryx_u32(&x498, &x499, 0x0, x466, (arg1[4])); fiat_p521_addcarryx_u32(&x500, &x501, x499, x468, 0x0); fiat_p521_addcarryx_u32(&x502, &x503, x501, x470, 0x0); fiat_p521_addcarryx_u32(&x504, &x505, x503, x472, 0x0); fiat_p521_addcarryx_u32(&x506, &x507, x505, x474, 0x0); fiat_p521_addcarryx_u32(&x508, &x509, x507, x476, 0x0); fiat_p521_addcarryx_u32(&x510, &x511, x509, x478, 0x0); fiat_p521_addcarryx_u32(&x512, &x513, x511, x480, 0x0); fiat_p521_addcarryx_u32(&x514, &x515, x513, x482, 0x0); fiat_p521_addcarryx_u32(&x516, &x517, x515, x484, 0x0); fiat_p521_addcarryx_u32(&x518, &x519, x517, x486, 0x0); fiat_p521_addcarryx_u32(&x520, &x521, x519, x488, 0x0); fiat_p521_addcarryx_u32(&x522, &x523, x521, x490, 0x0); fiat_p521_addcarryx_u32(&x524, &x525, x523, x492, 0x0); fiat_p521_addcarryx_u32(&x526, &x527, x525, x494, 0x0); fiat_p521_addcarryx_u32(&x528, &x529, x527, x496, 0x0); fiat_p521_mulx_u32(&x530, &x531, x498, UINT16_C(0x1ff)); fiat_p521_mulx_u32(&x532, &x533, x498, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x534, &x535, x498, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x536, &x537, x498, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x538, &x539, x498, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x540, &x541, x498, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x542, &x543, x498, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x544, &x545, x498, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x546, &x547, x498, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x548, &x549, x498, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x550, &x551, x498, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x552, &x553, x498, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x554, &x555, x498, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x556, &x557, x498, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x558, &x559, x498, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x560, &x561, x498, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x562, &x563, x498, UINT32_C(0xffffffff)); fiat_p521_addcarryx_u32(&x564, &x565, 0x0, x563, x560); fiat_p521_addcarryx_u32(&x566, &x567, x565, x561, x558); fiat_p521_addcarryx_u32(&x568, &x569, x567, x559, x556); fiat_p521_addcarryx_u32(&x570, &x571, x569, x557, x554); fiat_p521_addcarryx_u32(&x572, &x573, x571, x555, x552); fiat_p521_addcarryx_u32(&x574, &x575, x573, x553, x550); fiat_p521_addcarryx_u32(&x576, &x577, x575, x551, x548); fiat_p521_addcarryx_u32(&x578, &x579, x577, x549, x546); fiat_p521_addcarryx_u32(&x580, &x581, x579, x547, x544); fiat_p521_addcarryx_u32(&x582, &x583, x581, x545, x542); fiat_p521_addcarryx_u32(&x584, &x585, x583, x543, x540); fiat_p521_addcarryx_u32(&x586, &x587, x585, x541, x538); fiat_p521_addcarryx_u32(&x588, &x589, x587, x539, x536); fiat_p521_addcarryx_u32(&x590, &x591, x589, x537, x534); fiat_p521_addcarryx_u32(&x592, &x593, x591, x535, x532); fiat_p521_addcarryx_u32(&x594, &x595, x593, x533, x530); fiat_p521_addcarryx_u32(&x596, &x597, 0x0, x498, x562); fiat_p521_addcarryx_u32(&x598, &x599, x597, x500, x564); fiat_p521_addcarryx_u32(&x600, &x601, x599, x502, x566); fiat_p521_addcarryx_u32(&x602, &x603, x601, x504, x568); fiat_p521_addcarryx_u32(&x604, &x605, x603, x506, x570); fiat_p521_addcarryx_u32(&x606, &x607, x605, x508, x572); fiat_p521_addcarryx_u32(&x608, &x609, x607, x510, x574); fiat_p521_addcarryx_u32(&x610, &x611, x609, x512, x576); fiat_p521_addcarryx_u32(&x612, &x613, x611, x514, x578); fiat_p521_addcarryx_u32(&x614, &x615, x613, x516, x580); fiat_p521_addcarryx_u32(&x616, &x617, x615, x518, x582); fiat_p521_addcarryx_u32(&x618, &x619, x617, x520, x584); fiat_p521_addcarryx_u32(&x620, &x621, x619, x522, x586); fiat_p521_addcarryx_u32(&x622, &x623, x621, x524, x588); fiat_p521_addcarryx_u32(&x624, &x625, x623, x526, x590); fiat_p521_addcarryx_u32(&x626, &x627, x625, x528, x592); fiat_p521_addcarryx_u32(&x628, &x629, x627, (x529 + (x497 + (x463 + x399))), x594); fiat_p521_addcarryx_u32(&x630, &x631, 0x0, x598, (arg1[5])); fiat_p521_addcarryx_u32(&x632, &x633, x631, x600, 0x0); fiat_p521_addcarryx_u32(&x634, &x635, x633, x602, 0x0); fiat_p521_addcarryx_u32(&x636, &x637, x635, x604, 0x0); fiat_p521_addcarryx_u32(&x638, &x639, x637, x606, 0x0); fiat_p521_addcarryx_u32(&x640, &x641, x639, x608, 0x0); fiat_p521_addcarryx_u32(&x642, &x643, x641, x610, 0x0); fiat_p521_addcarryx_u32(&x644, &x645, x643, x612, 0x0); fiat_p521_addcarryx_u32(&x646, &x647, x645, x614, 0x0); fiat_p521_addcarryx_u32(&x648, &x649, x647, x616, 0x0); fiat_p521_addcarryx_u32(&x650, &x651, x649, x618, 0x0); fiat_p521_addcarryx_u32(&x652, &x653, x651, x620, 0x0); fiat_p521_addcarryx_u32(&x654, &x655, x653, x622, 0x0); fiat_p521_addcarryx_u32(&x656, &x657, x655, x624, 0x0); fiat_p521_addcarryx_u32(&x658, &x659, x657, x626, 0x0); fiat_p521_addcarryx_u32(&x660, &x661, x659, x628, 0x0); fiat_p521_mulx_u32(&x662, &x663, x630, UINT16_C(0x1ff)); fiat_p521_mulx_u32(&x664, &x665, x630, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x666, &x667, x630, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x668, &x669, x630, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x670, &x671, x630, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x672, &x673, x630, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x674, &x675, x630, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x676, &x677, x630, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x678, &x679, x630, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x680, &x681, x630, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x682, &x683, x630, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x684, &x685, x630, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x686, &x687, x630, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x688, &x689, x630, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x690, &x691, x630, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x692, &x693, x630, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x694, &x695, x630, UINT32_C(0xffffffff)); fiat_p521_addcarryx_u32(&x696, &x697, 0x0, x695, x692); fiat_p521_addcarryx_u32(&x698, &x699, x697, x693, x690); fiat_p521_addcarryx_u32(&x700, &x701, x699, x691, x688); fiat_p521_addcarryx_u32(&x702, &x703, x701, x689, x686); fiat_p521_addcarryx_u32(&x704, &x705, x703, x687, x684); fiat_p521_addcarryx_u32(&x706, &x707, x705, x685, x682); fiat_p521_addcarryx_u32(&x708, &x709, x707, x683, x680); fiat_p521_addcarryx_u32(&x710, &x711, x709, x681, x678); fiat_p521_addcarryx_u32(&x712, &x713, x711, x679, x676); fiat_p521_addcarryx_u32(&x714, &x715, x713, x677, x674); fiat_p521_addcarryx_u32(&x716, &x717, x715, x675, x672); fiat_p521_addcarryx_u32(&x718, &x719, x717, x673, x670); fiat_p521_addcarryx_u32(&x720, &x721, x719, x671, x668); fiat_p521_addcarryx_u32(&x722, &x723, x721, x669, x666); fiat_p521_addcarryx_u32(&x724, &x725, x723, x667, x664); fiat_p521_addcarryx_u32(&x726, &x727, x725, x665, x662); fiat_p521_addcarryx_u32(&x728, &x729, 0x0, x630, x694); fiat_p521_addcarryx_u32(&x730, &x731, x729, x632, x696); fiat_p521_addcarryx_u32(&x732, &x733, x731, x634, x698); fiat_p521_addcarryx_u32(&x734, &x735, x733, x636, x700); fiat_p521_addcarryx_u32(&x736, &x737, x735, x638, x702); fiat_p521_addcarryx_u32(&x738, &x739, x737, x640, x704); fiat_p521_addcarryx_u32(&x740, &x741, x739, x642, x706); fiat_p521_addcarryx_u32(&x742, &x743, x741, x644, x708); fiat_p521_addcarryx_u32(&x744, &x745, x743, x646, x710); fiat_p521_addcarryx_u32(&x746, &x747, x745, x648, x712); fiat_p521_addcarryx_u32(&x748, &x749, x747, x650, x714); fiat_p521_addcarryx_u32(&x750, &x751, x749, x652, x716); fiat_p521_addcarryx_u32(&x752, &x753, x751, x654, x718); fiat_p521_addcarryx_u32(&x754, &x755, x753, x656, x720); fiat_p521_addcarryx_u32(&x756, &x757, x755, x658, x722); fiat_p521_addcarryx_u32(&x758, &x759, x757, x660, x724); fiat_p521_addcarryx_u32(&x760, &x761, x759, (x661 + (x629 + (x595 + x531))), x726); fiat_p521_addcarryx_u32(&x762, &x763, 0x0, x730, (arg1[6])); fiat_p521_addcarryx_u32(&x764, &x765, x763, x732, 0x0); fiat_p521_addcarryx_u32(&x766, &x767, x765, x734, 0x0); fiat_p521_addcarryx_u32(&x768, &x769, x767, x736, 0x0); fiat_p521_addcarryx_u32(&x770, &x771, x769, x738, 0x0); fiat_p521_addcarryx_u32(&x772, &x773, x771, x740, 0x0); fiat_p521_addcarryx_u32(&x774, &x775, x773, x742, 0x0); fiat_p521_addcarryx_u32(&x776, &x777, x775, x744, 0x0); fiat_p521_addcarryx_u32(&x778, &x779, x777, x746, 0x0); fiat_p521_addcarryx_u32(&x780, &x781, x779, x748, 0x0); fiat_p521_addcarryx_u32(&x782, &x783, x781, x750, 0x0); fiat_p521_addcarryx_u32(&x784, &x785, x783, x752, 0x0); fiat_p521_addcarryx_u32(&x786, &x787, x785, x754, 0x0); fiat_p521_addcarryx_u32(&x788, &x789, x787, x756, 0x0); fiat_p521_addcarryx_u32(&x790, &x791, x789, x758, 0x0); fiat_p521_addcarryx_u32(&x792, &x793, x791, x760, 0x0); fiat_p521_mulx_u32(&x794, &x795, x762, UINT16_C(0x1ff)); fiat_p521_mulx_u32(&x796, &x797, x762, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x798, &x799, x762, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x800, &x801, x762, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x802, &x803, x762, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x804, &x805, x762, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x806, &x807, x762, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x808, &x809, x762, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x810, &x811, x762, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x812, &x813, x762, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x814, &x815, x762, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x816, &x817, x762, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x818, &x819, x762, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x820, &x821, x762, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x822, &x823, x762, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x824, &x825, x762, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x826, &x827, x762, UINT32_C(0xffffffff)); fiat_p521_addcarryx_u32(&x828, &x829, 0x0, x827, x824); fiat_p521_addcarryx_u32(&x830, &x831, x829, x825, x822); fiat_p521_addcarryx_u32(&x832, &x833, x831, x823, x820); fiat_p521_addcarryx_u32(&x834, &x835, x833, x821, x818); fiat_p521_addcarryx_u32(&x836, &x837, x835, x819, x816); fiat_p521_addcarryx_u32(&x838, &x839, x837, x817, x814); fiat_p521_addcarryx_u32(&x840, &x841, x839, x815, x812); fiat_p521_addcarryx_u32(&x842, &x843, x841, x813, x810); fiat_p521_addcarryx_u32(&x844, &x845, x843, x811, x808); fiat_p521_addcarryx_u32(&x846, &x847, x845, x809, x806); fiat_p521_addcarryx_u32(&x848, &x849, x847, x807, x804); fiat_p521_addcarryx_u32(&x850, &x851, x849, x805, x802); fiat_p521_addcarryx_u32(&x852, &x853, x851, x803, x800); fiat_p521_addcarryx_u32(&x854, &x855, x853, x801, x798); fiat_p521_addcarryx_u32(&x856, &x857, x855, x799, x796); fiat_p521_addcarryx_u32(&x858, &x859, x857, x797, x794); fiat_p521_addcarryx_u32(&x860, &x861, 0x0, x762, x826); fiat_p521_addcarryx_u32(&x862, &x863, x861, x764, x828); fiat_p521_addcarryx_u32(&x864, &x865, x863, x766, x830); fiat_p521_addcarryx_u32(&x866, &x867, x865, x768, x832); fiat_p521_addcarryx_u32(&x868, &x869, x867, x770, x834); fiat_p521_addcarryx_u32(&x870, &x871, x869, x772, x836); fiat_p521_addcarryx_u32(&x872, &x873, x871, x774, x838); fiat_p521_addcarryx_u32(&x874, &x875, x873, x776, x840); fiat_p521_addcarryx_u32(&x876, &x877, x875, x778, x842); fiat_p521_addcarryx_u32(&x878, &x879, x877, x780, x844); fiat_p521_addcarryx_u32(&x880, &x881, x879, x782, x846); fiat_p521_addcarryx_u32(&x882, &x883, x881, x784, x848); fiat_p521_addcarryx_u32(&x884, &x885, x883, x786, x850); fiat_p521_addcarryx_u32(&x886, &x887, x885, x788, x852); fiat_p521_addcarryx_u32(&x888, &x889, x887, x790, x854); fiat_p521_addcarryx_u32(&x890, &x891, x889, x792, x856); fiat_p521_addcarryx_u32(&x892, &x893, x891, (x793 + (x761 + (x727 + x663))), x858); fiat_p521_addcarryx_u32(&x894, &x895, 0x0, x862, (arg1[7])); fiat_p521_addcarryx_u32(&x896, &x897, x895, x864, 0x0); fiat_p521_addcarryx_u32(&x898, &x899, x897, x866, 0x0); fiat_p521_addcarryx_u32(&x900, &x901, x899, x868, 0x0); fiat_p521_addcarryx_u32(&x902, &x903, x901, x870, 0x0); fiat_p521_addcarryx_u32(&x904, &x905, x903, x872, 0x0); fiat_p521_addcarryx_u32(&x906, &x907, x905, x874, 0x0); fiat_p521_addcarryx_u32(&x908, &x909, x907, x876, 0x0); fiat_p521_addcarryx_u32(&x910, &x911, x909, x878, 0x0); fiat_p521_addcarryx_u32(&x912, &x913, x911, x880, 0x0); fiat_p521_addcarryx_u32(&x914, &x915, x913, x882, 0x0); fiat_p521_addcarryx_u32(&x916, &x917, x915, x884, 0x0); fiat_p521_addcarryx_u32(&x918, &x919, x917, x886, 0x0); fiat_p521_addcarryx_u32(&x920, &x921, x919, x888, 0x0); fiat_p521_addcarryx_u32(&x922, &x923, x921, x890, 0x0); fiat_p521_addcarryx_u32(&x924, &x925, x923, x892, 0x0); fiat_p521_mulx_u32(&x926, &x927, x894, UINT16_C(0x1ff)); fiat_p521_mulx_u32(&x928, &x929, x894, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x930, &x931, x894, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x932, &x933, x894, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x934, &x935, x894, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x936, &x937, x894, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x938, &x939, x894, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x940, &x941, x894, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x942, &x943, x894, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x944, &x945, x894, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x946, &x947, x894, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x948, &x949, x894, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x950, &x951, x894, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x952, &x953, x894, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x954, &x955, x894, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x956, &x957, x894, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x958, &x959, x894, UINT32_C(0xffffffff)); fiat_p521_addcarryx_u32(&x960, &x961, 0x0, x959, x956); fiat_p521_addcarryx_u32(&x962, &x963, x961, x957, x954); fiat_p521_addcarryx_u32(&x964, &x965, x963, x955, x952); fiat_p521_addcarryx_u32(&x966, &x967, x965, x953, x950); fiat_p521_addcarryx_u32(&x968, &x969, x967, x951, x948); fiat_p521_addcarryx_u32(&x970, &x971, x969, x949, x946); fiat_p521_addcarryx_u32(&x972, &x973, x971, x947, x944); fiat_p521_addcarryx_u32(&x974, &x975, x973, x945, x942); fiat_p521_addcarryx_u32(&x976, &x977, x975, x943, x940); fiat_p521_addcarryx_u32(&x978, &x979, x977, x941, x938); fiat_p521_addcarryx_u32(&x980, &x981, x979, x939, x936); fiat_p521_addcarryx_u32(&x982, &x983, x981, x937, x934); fiat_p521_addcarryx_u32(&x984, &x985, x983, x935, x932); fiat_p521_addcarryx_u32(&x986, &x987, x985, x933, x930); fiat_p521_addcarryx_u32(&x988, &x989, x987, x931, x928); fiat_p521_addcarryx_u32(&x990, &x991, x989, x929, x926); fiat_p521_addcarryx_u32(&x992, &x993, 0x0, x894, x958); fiat_p521_addcarryx_u32(&x994, &x995, x993, x896, x960); fiat_p521_addcarryx_u32(&x996, &x997, x995, x898, x962); fiat_p521_addcarryx_u32(&x998, &x999, x997, x900, x964); fiat_p521_addcarryx_u32(&x1000, &x1001, x999, x902, x966); fiat_p521_addcarryx_u32(&x1002, &x1003, x1001, x904, x968); fiat_p521_addcarryx_u32(&x1004, &x1005, x1003, x906, x970); fiat_p521_addcarryx_u32(&x1006, &x1007, x1005, x908, x972); fiat_p521_addcarryx_u32(&x1008, &x1009, x1007, x910, x974); fiat_p521_addcarryx_u32(&x1010, &x1011, x1009, x912, x976); fiat_p521_addcarryx_u32(&x1012, &x1013, x1011, x914, x978); fiat_p521_addcarryx_u32(&x1014, &x1015, x1013, x916, x980); fiat_p521_addcarryx_u32(&x1016, &x1017, x1015, x918, x982); fiat_p521_addcarryx_u32(&x1018, &x1019, x1017, x920, x984); fiat_p521_addcarryx_u32(&x1020, &x1021, x1019, x922, x986); fiat_p521_addcarryx_u32(&x1022, &x1023, x1021, x924, x988); fiat_p521_addcarryx_u32(&x1024, &x1025, x1023, (x925 + (x893 + (x859 + x795))), x990); fiat_p521_addcarryx_u32(&x1026, &x1027, 0x0, x994, (arg1[8])); fiat_p521_addcarryx_u32(&x1028, &x1029, x1027, x996, 0x0); fiat_p521_addcarryx_u32(&x1030, &x1031, x1029, x998, 0x0); fiat_p521_addcarryx_u32(&x1032, &x1033, x1031, x1000, 0x0); fiat_p521_addcarryx_u32(&x1034, &x1035, x1033, x1002, 0x0); fiat_p521_addcarryx_u32(&x1036, &x1037, x1035, x1004, 0x0); fiat_p521_addcarryx_u32(&x1038, &x1039, x1037, x1006, 0x0); fiat_p521_addcarryx_u32(&x1040, &x1041, x1039, x1008, 0x0); fiat_p521_addcarryx_u32(&x1042, &x1043, x1041, x1010, 0x0); fiat_p521_addcarryx_u32(&x1044, &x1045, x1043, x1012, 0x0); fiat_p521_addcarryx_u32(&x1046, &x1047, x1045, x1014, 0x0); fiat_p521_addcarryx_u32(&x1048, &x1049, x1047, x1016, 0x0); fiat_p521_addcarryx_u32(&x1050, &x1051, x1049, x1018, 0x0); fiat_p521_addcarryx_u32(&x1052, &x1053, x1051, x1020, 0x0); fiat_p521_addcarryx_u32(&x1054, &x1055, x1053, x1022, 0x0); fiat_p521_addcarryx_u32(&x1056, &x1057, x1055, x1024, 0x0); fiat_p521_mulx_u32(&x1058, &x1059, x1026, UINT16_C(0x1ff)); fiat_p521_mulx_u32(&x1060, &x1061, x1026, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1062, &x1063, x1026, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1064, &x1065, x1026, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1066, &x1067, x1026, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1068, &x1069, x1026, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1070, &x1071, x1026, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1072, &x1073, x1026, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1074, &x1075, x1026, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1076, &x1077, x1026, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1078, &x1079, x1026, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1080, &x1081, x1026, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1082, &x1083, x1026, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1084, &x1085, x1026, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1086, &x1087, x1026, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1088, &x1089, x1026, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1090, &x1091, x1026, UINT32_C(0xffffffff)); fiat_p521_addcarryx_u32(&x1092, &x1093, 0x0, x1091, x1088); fiat_p521_addcarryx_u32(&x1094, &x1095, x1093, x1089, x1086); fiat_p521_addcarryx_u32(&x1096, &x1097, x1095, x1087, x1084); fiat_p521_addcarryx_u32(&x1098, &x1099, x1097, x1085, x1082); fiat_p521_addcarryx_u32(&x1100, &x1101, x1099, x1083, x1080); fiat_p521_addcarryx_u32(&x1102, &x1103, x1101, x1081, x1078); fiat_p521_addcarryx_u32(&x1104, &x1105, x1103, x1079, x1076); fiat_p521_addcarryx_u32(&x1106, &x1107, x1105, x1077, x1074); fiat_p521_addcarryx_u32(&x1108, &x1109, x1107, x1075, x1072); fiat_p521_addcarryx_u32(&x1110, &x1111, x1109, x1073, x1070); fiat_p521_addcarryx_u32(&x1112, &x1113, x1111, x1071, x1068); fiat_p521_addcarryx_u32(&x1114, &x1115, x1113, x1069, x1066); fiat_p521_addcarryx_u32(&x1116, &x1117, x1115, x1067, x1064); fiat_p521_addcarryx_u32(&x1118, &x1119, x1117, x1065, x1062); fiat_p521_addcarryx_u32(&x1120, &x1121, x1119, x1063, x1060); fiat_p521_addcarryx_u32(&x1122, &x1123, x1121, x1061, x1058); fiat_p521_addcarryx_u32(&x1124, &x1125, 0x0, x1026, x1090); fiat_p521_addcarryx_u32(&x1126, &x1127, x1125, x1028, x1092); fiat_p521_addcarryx_u32(&x1128, &x1129, x1127, x1030, x1094); fiat_p521_addcarryx_u32(&x1130, &x1131, x1129, x1032, x1096); fiat_p521_addcarryx_u32(&x1132, &x1133, x1131, x1034, x1098); fiat_p521_addcarryx_u32(&x1134, &x1135, x1133, x1036, x1100); fiat_p521_addcarryx_u32(&x1136, &x1137, x1135, x1038, x1102); fiat_p521_addcarryx_u32(&x1138, &x1139, x1137, x1040, x1104); fiat_p521_addcarryx_u32(&x1140, &x1141, x1139, x1042, x1106); fiat_p521_addcarryx_u32(&x1142, &x1143, x1141, x1044, x1108); fiat_p521_addcarryx_u32(&x1144, &x1145, x1143, x1046, x1110); fiat_p521_addcarryx_u32(&x1146, &x1147, x1145, x1048, x1112); fiat_p521_addcarryx_u32(&x1148, &x1149, x1147, x1050, x1114); fiat_p521_addcarryx_u32(&x1150, &x1151, x1149, x1052, x1116); fiat_p521_addcarryx_u32(&x1152, &x1153, x1151, x1054, x1118); fiat_p521_addcarryx_u32(&x1154, &x1155, x1153, x1056, x1120); fiat_p521_addcarryx_u32(&x1156, &x1157, x1155, (x1057 + (x1025 + (x991 + x927))), x1122); fiat_p521_addcarryx_u32(&x1158, &x1159, 0x0, x1126, (arg1[9])); fiat_p521_addcarryx_u32(&x1160, &x1161, x1159, x1128, 0x0); fiat_p521_addcarryx_u32(&x1162, &x1163, x1161, x1130, 0x0); fiat_p521_addcarryx_u32(&x1164, &x1165, x1163, x1132, 0x0); fiat_p521_addcarryx_u32(&x1166, &x1167, x1165, x1134, 0x0); fiat_p521_addcarryx_u32(&x1168, &x1169, x1167, x1136, 0x0); fiat_p521_addcarryx_u32(&x1170, &x1171, x1169, x1138, 0x0); fiat_p521_addcarryx_u32(&x1172, &x1173, x1171, x1140, 0x0); fiat_p521_addcarryx_u32(&x1174, &x1175, x1173, x1142, 0x0); fiat_p521_addcarryx_u32(&x1176, &x1177, x1175, x1144, 0x0); fiat_p521_addcarryx_u32(&x1178, &x1179, x1177, x1146, 0x0); fiat_p521_addcarryx_u32(&x1180, &x1181, x1179, x1148, 0x0); fiat_p521_addcarryx_u32(&x1182, &x1183, x1181, x1150, 0x0); fiat_p521_addcarryx_u32(&x1184, &x1185, x1183, x1152, 0x0); fiat_p521_addcarryx_u32(&x1186, &x1187, x1185, x1154, 0x0); fiat_p521_addcarryx_u32(&x1188, &x1189, x1187, x1156, 0x0); fiat_p521_mulx_u32(&x1190, &x1191, x1158, UINT16_C(0x1ff)); fiat_p521_mulx_u32(&x1192, &x1193, x1158, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1194, &x1195, x1158, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1196, &x1197, x1158, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1198, &x1199, x1158, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1200, &x1201, x1158, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1202, &x1203, x1158, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1204, &x1205, x1158, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1206, &x1207, x1158, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1208, &x1209, x1158, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1210, &x1211, x1158, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1212, &x1213, x1158, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1214, &x1215, x1158, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1216, &x1217, x1158, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1218, &x1219, x1158, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1220, &x1221, x1158, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1222, &x1223, x1158, UINT32_C(0xffffffff)); fiat_p521_addcarryx_u32(&x1224, &x1225, 0x0, x1223, x1220); fiat_p521_addcarryx_u32(&x1226, &x1227, x1225, x1221, x1218); fiat_p521_addcarryx_u32(&x1228, &x1229, x1227, x1219, x1216); fiat_p521_addcarryx_u32(&x1230, &x1231, x1229, x1217, x1214); fiat_p521_addcarryx_u32(&x1232, &x1233, x1231, x1215, x1212); fiat_p521_addcarryx_u32(&x1234, &x1235, x1233, x1213, x1210); fiat_p521_addcarryx_u32(&x1236, &x1237, x1235, x1211, x1208); fiat_p521_addcarryx_u32(&x1238, &x1239, x1237, x1209, x1206); fiat_p521_addcarryx_u32(&x1240, &x1241, x1239, x1207, x1204); fiat_p521_addcarryx_u32(&x1242, &x1243, x1241, x1205, x1202); fiat_p521_addcarryx_u32(&x1244, &x1245, x1243, x1203, x1200); fiat_p521_addcarryx_u32(&x1246, &x1247, x1245, x1201, x1198); fiat_p521_addcarryx_u32(&x1248, &x1249, x1247, x1199, x1196); fiat_p521_addcarryx_u32(&x1250, &x1251, x1249, x1197, x1194); fiat_p521_addcarryx_u32(&x1252, &x1253, x1251, x1195, x1192); fiat_p521_addcarryx_u32(&x1254, &x1255, x1253, x1193, x1190); fiat_p521_addcarryx_u32(&x1256, &x1257, 0x0, x1158, x1222); fiat_p521_addcarryx_u32(&x1258, &x1259, x1257, x1160, x1224); fiat_p521_addcarryx_u32(&x1260, &x1261, x1259, x1162, x1226); fiat_p521_addcarryx_u32(&x1262, &x1263, x1261, x1164, x1228); fiat_p521_addcarryx_u32(&x1264, &x1265, x1263, x1166, x1230); fiat_p521_addcarryx_u32(&x1266, &x1267, x1265, x1168, x1232); fiat_p521_addcarryx_u32(&x1268, &x1269, x1267, x1170, x1234); fiat_p521_addcarryx_u32(&x1270, &x1271, x1269, x1172, x1236); fiat_p521_addcarryx_u32(&x1272, &x1273, x1271, x1174, x1238); fiat_p521_addcarryx_u32(&x1274, &x1275, x1273, x1176, x1240); fiat_p521_addcarryx_u32(&x1276, &x1277, x1275, x1178, x1242); fiat_p521_addcarryx_u32(&x1278, &x1279, x1277, x1180, x1244); fiat_p521_addcarryx_u32(&x1280, &x1281, x1279, x1182, x1246); fiat_p521_addcarryx_u32(&x1282, &x1283, x1281, x1184, x1248); fiat_p521_addcarryx_u32(&x1284, &x1285, x1283, x1186, x1250); fiat_p521_addcarryx_u32(&x1286, &x1287, x1285, x1188, x1252); fiat_p521_addcarryx_u32(&x1288, &x1289, x1287, (x1189 + (x1157 + (x1123 + x1059))), x1254); fiat_p521_addcarryx_u32(&x1290, &x1291, 0x0, x1258, (arg1[10])); fiat_p521_addcarryx_u32(&x1292, &x1293, x1291, x1260, 0x0); fiat_p521_addcarryx_u32(&x1294, &x1295, x1293, x1262, 0x0); fiat_p521_addcarryx_u32(&x1296, &x1297, x1295, x1264, 0x0); fiat_p521_addcarryx_u32(&x1298, &x1299, x1297, x1266, 0x0); fiat_p521_addcarryx_u32(&x1300, &x1301, x1299, x1268, 0x0); fiat_p521_addcarryx_u32(&x1302, &x1303, x1301, x1270, 0x0); fiat_p521_addcarryx_u32(&x1304, &x1305, x1303, x1272, 0x0); fiat_p521_addcarryx_u32(&x1306, &x1307, x1305, x1274, 0x0); fiat_p521_addcarryx_u32(&x1308, &x1309, x1307, x1276, 0x0); fiat_p521_addcarryx_u32(&x1310, &x1311, x1309, x1278, 0x0); fiat_p521_addcarryx_u32(&x1312, &x1313, x1311, x1280, 0x0); fiat_p521_addcarryx_u32(&x1314, &x1315, x1313, x1282, 0x0); fiat_p521_addcarryx_u32(&x1316, &x1317, x1315, x1284, 0x0); fiat_p521_addcarryx_u32(&x1318, &x1319, x1317, x1286, 0x0); fiat_p521_addcarryx_u32(&x1320, &x1321, x1319, x1288, 0x0); fiat_p521_mulx_u32(&x1322, &x1323, x1290, UINT16_C(0x1ff)); fiat_p521_mulx_u32(&x1324, &x1325, x1290, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1326, &x1327, x1290, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1328, &x1329, x1290, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1330, &x1331, x1290, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1332, &x1333, x1290, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1334, &x1335, x1290, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1336, &x1337, x1290, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1338, &x1339, x1290, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1340, &x1341, x1290, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1342, &x1343, x1290, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1344, &x1345, x1290, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1346, &x1347, x1290, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1348, &x1349, x1290, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1350, &x1351, x1290, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1352, &x1353, x1290, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1354, &x1355, x1290, UINT32_C(0xffffffff)); fiat_p521_addcarryx_u32(&x1356, &x1357, 0x0, x1355, x1352); fiat_p521_addcarryx_u32(&x1358, &x1359, x1357, x1353, x1350); fiat_p521_addcarryx_u32(&x1360, &x1361, x1359, x1351, x1348); fiat_p521_addcarryx_u32(&x1362, &x1363, x1361, x1349, x1346); fiat_p521_addcarryx_u32(&x1364, &x1365, x1363, x1347, x1344); fiat_p521_addcarryx_u32(&x1366, &x1367, x1365, x1345, x1342); fiat_p521_addcarryx_u32(&x1368, &x1369, x1367, x1343, x1340); fiat_p521_addcarryx_u32(&x1370, &x1371, x1369, x1341, x1338); fiat_p521_addcarryx_u32(&x1372, &x1373, x1371, x1339, x1336); fiat_p521_addcarryx_u32(&x1374, &x1375, x1373, x1337, x1334); fiat_p521_addcarryx_u32(&x1376, &x1377, x1375, x1335, x1332); fiat_p521_addcarryx_u32(&x1378, &x1379, x1377, x1333, x1330); fiat_p521_addcarryx_u32(&x1380, &x1381, x1379, x1331, x1328); fiat_p521_addcarryx_u32(&x1382, &x1383, x1381, x1329, x1326); fiat_p521_addcarryx_u32(&x1384, &x1385, x1383, x1327, x1324); fiat_p521_addcarryx_u32(&x1386, &x1387, x1385, x1325, x1322); fiat_p521_addcarryx_u32(&x1388, &x1389, 0x0, x1290, x1354); fiat_p521_addcarryx_u32(&x1390, &x1391, x1389, x1292, x1356); fiat_p521_addcarryx_u32(&x1392, &x1393, x1391, x1294, x1358); fiat_p521_addcarryx_u32(&x1394, &x1395, x1393, x1296, x1360); fiat_p521_addcarryx_u32(&x1396, &x1397, x1395, x1298, x1362); fiat_p521_addcarryx_u32(&x1398, &x1399, x1397, x1300, x1364); fiat_p521_addcarryx_u32(&x1400, &x1401, x1399, x1302, x1366); fiat_p521_addcarryx_u32(&x1402, &x1403, x1401, x1304, x1368); fiat_p521_addcarryx_u32(&x1404, &x1405, x1403, x1306, x1370); fiat_p521_addcarryx_u32(&x1406, &x1407, x1405, x1308, x1372); fiat_p521_addcarryx_u32(&x1408, &x1409, x1407, x1310, x1374); fiat_p521_addcarryx_u32(&x1410, &x1411, x1409, x1312, x1376); fiat_p521_addcarryx_u32(&x1412, &x1413, x1411, x1314, x1378); fiat_p521_addcarryx_u32(&x1414, &x1415, x1413, x1316, x1380); fiat_p521_addcarryx_u32(&x1416, &x1417, x1415, x1318, x1382); fiat_p521_addcarryx_u32(&x1418, &x1419, x1417, x1320, x1384); fiat_p521_addcarryx_u32(&x1420, &x1421, x1419, (x1321 + (x1289 + (x1255 + x1191))), x1386); fiat_p521_addcarryx_u32(&x1422, &x1423, 0x0, x1390, (arg1[11])); fiat_p521_addcarryx_u32(&x1424, &x1425, x1423, x1392, 0x0); fiat_p521_addcarryx_u32(&x1426, &x1427, x1425, x1394, 0x0); fiat_p521_addcarryx_u32(&x1428, &x1429, x1427, x1396, 0x0); fiat_p521_addcarryx_u32(&x1430, &x1431, x1429, x1398, 0x0); fiat_p521_addcarryx_u32(&x1432, &x1433, x1431, x1400, 0x0); fiat_p521_addcarryx_u32(&x1434, &x1435, x1433, x1402, 0x0); fiat_p521_addcarryx_u32(&x1436, &x1437, x1435, x1404, 0x0); fiat_p521_addcarryx_u32(&x1438, &x1439, x1437, x1406, 0x0); fiat_p521_addcarryx_u32(&x1440, &x1441, x1439, x1408, 0x0); fiat_p521_addcarryx_u32(&x1442, &x1443, x1441, x1410, 0x0); fiat_p521_addcarryx_u32(&x1444, &x1445, x1443, x1412, 0x0); fiat_p521_addcarryx_u32(&x1446, &x1447, x1445, x1414, 0x0); fiat_p521_addcarryx_u32(&x1448, &x1449, x1447, x1416, 0x0); fiat_p521_addcarryx_u32(&x1450, &x1451, x1449, x1418, 0x0); fiat_p521_addcarryx_u32(&x1452, &x1453, x1451, x1420, 0x0); fiat_p521_mulx_u32(&x1454, &x1455, x1422, UINT16_C(0x1ff)); fiat_p521_mulx_u32(&x1456, &x1457, x1422, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1458, &x1459, x1422, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1460, &x1461, x1422, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1462, &x1463, x1422, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1464, &x1465, x1422, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1466, &x1467, x1422, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1468, &x1469, x1422, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1470, &x1471, x1422, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1472, &x1473, x1422, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1474, &x1475, x1422, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1476, &x1477, x1422, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1478, &x1479, x1422, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1480, &x1481, x1422, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1482, &x1483, x1422, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1484, &x1485, x1422, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1486, &x1487, x1422, UINT32_C(0xffffffff)); fiat_p521_addcarryx_u32(&x1488, &x1489, 0x0, x1487, x1484); fiat_p521_addcarryx_u32(&x1490, &x1491, x1489, x1485, x1482); fiat_p521_addcarryx_u32(&x1492, &x1493, x1491, x1483, x1480); fiat_p521_addcarryx_u32(&x1494, &x1495, x1493, x1481, x1478); fiat_p521_addcarryx_u32(&x1496, &x1497, x1495, x1479, x1476); fiat_p521_addcarryx_u32(&x1498, &x1499, x1497, x1477, x1474); fiat_p521_addcarryx_u32(&x1500, &x1501, x1499, x1475, x1472); fiat_p521_addcarryx_u32(&x1502, &x1503, x1501, x1473, x1470); fiat_p521_addcarryx_u32(&x1504, &x1505, x1503, x1471, x1468); fiat_p521_addcarryx_u32(&x1506, &x1507, x1505, x1469, x1466); fiat_p521_addcarryx_u32(&x1508, &x1509, x1507, x1467, x1464); fiat_p521_addcarryx_u32(&x1510, &x1511, x1509, x1465, x1462); fiat_p521_addcarryx_u32(&x1512, &x1513, x1511, x1463, x1460); fiat_p521_addcarryx_u32(&x1514, &x1515, x1513, x1461, x1458); fiat_p521_addcarryx_u32(&x1516, &x1517, x1515, x1459, x1456); fiat_p521_addcarryx_u32(&x1518, &x1519, x1517, x1457, x1454); fiat_p521_addcarryx_u32(&x1520, &x1521, 0x0, x1422, x1486); fiat_p521_addcarryx_u32(&x1522, &x1523, x1521, x1424, x1488); fiat_p521_addcarryx_u32(&x1524, &x1525, x1523, x1426, x1490); fiat_p521_addcarryx_u32(&x1526, &x1527, x1525, x1428, x1492); fiat_p521_addcarryx_u32(&x1528, &x1529, x1527, x1430, x1494); fiat_p521_addcarryx_u32(&x1530, &x1531, x1529, x1432, x1496); fiat_p521_addcarryx_u32(&x1532, &x1533, x1531, x1434, x1498); fiat_p521_addcarryx_u32(&x1534, &x1535, x1533, x1436, x1500); fiat_p521_addcarryx_u32(&x1536, &x1537, x1535, x1438, x1502); fiat_p521_addcarryx_u32(&x1538, &x1539, x1537, x1440, x1504); fiat_p521_addcarryx_u32(&x1540, &x1541, x1539, x1442, x1506); fiat_p521_addcarryx_u32(&x1542, &x1543, x1541, x1444, x1508); fiat_p521_addcarryx_u32(&x1544, &x1545, x1543, x1446, x1510); fiat_p521_addcarryx_u32(&x1546, &x1547, x1545, x1448, x1512); fiat_p521_addcarryx_u32(&x1548, &x1549, x1547, x1450, x1514); fiat_p521_addcarryx_u32(&x1550, &x1551, x1549, x1452, x1516); fiat_p521_addcarryx_u32(&x1552, &x1553, x1551, (x1453 + (x1421 + (x1387 + x1323))), x1518); fiat_p521_addcarryx_u32(&x1554, &x1555, 0x0, x1522, (arg1[12])); fiat_p521_addcarryx_u32(&x1556, &x1557, x1555, x1524, 0x0); fiat_p521_addcarryx_u32(&x1558, &x1559, x1557, x1526, 0x0); fiat_p521_addcarryx_u32(&x1560, &x1561, x1559, x1528, 0x0); fiat_p521_addcarryx_u32(&x1562, &x1563, x1561, x1530, 0x0); fiat_p521_addcarryx_u32(&x1564, &x1565, x1563, x1532, 0x0); fiat_p521_addcarryx_u32(&x1566, &x1567, x1565, x1534, 0x0); fiat_p521_addcarryx_u32(&x1568, &x1569, x1567, x1536, 0x0); fiat_p521_addcarryx_u32(&x1570, &x1571, x1569, x1538, 0x0); fiat_p521_addcarryx_u32(&x1572, &x1573, x1571, x1540, 0x0); fiat_p521_addcarryx_u32(&x1574, &x1575, x1573, x1542, 0x0); fiat_p521_addcarryx_u32(&x1576, &x1577, x1575, x1544, 0x0); fiat_p521_addcarryx_u32(&x1578, &x1579, x1577, x1546, 0x0); fiat_p521_addcarryx_u32(&x1580, &x1581, x1579, x1548, 0x0); fiat_p521_addcarryx_u32(&x1582, &x1583, x1581, x1550, 0x0); fiat_p521_addcarryx_u32(&x1584, &x1585, x1583, x1552, 0x0); fiat_p521_mulx_u32(&x1586, &x1587, x1554, UINT16_C(0x1ff)); fiat_p521_mulx_u32(&x1588, &x1589, x1554, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1590, &x1591, x1554, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1592, &x1593, x1554, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1594, &x1595, x1554, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1596, &x1597, x1554, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1598, &x1599, x1554, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1600, &x1601, x1554, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1602, &x1603, x1554, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1604, &x1605, x1554, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1606, &x1607, x1554, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1608, &x1609, x1554, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1610, &x1611, x1554, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1612, &x1613, x1554, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1614, &x1615, x1554, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1616, &x1617, x1554, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1618, &x1619, x1554, UINT32_C(0xffffffff)); fiat_p521_addcarryx_u32(&x1620, &x1621, 0x0, x1619, x1616); fiat_p521_addcarryx_u32(&x1622, &x1623, x1621, x1617, x1614); fiat_p521_addcarryx_u32(&x1624, &x1625, x1623, x1615, x1612); fiat_p521_addcarryx_u32(&x1626, &x1627, x1625, x1613, x1610); fiat_p521_addcarryx_u32(&x1628, &x1629, x1627, x1611, x1608); fiat_p521_addcarryx_u32(&x1630, &x1631, x1629, x1609, x1606); fiat_p521_addcarryx_u32(&x1632, &x1633, x1631, x1607, x1604); fiat_p521_addcarryx_u32(&x1634, &x1635, x1633, x1605, x1602); fiat_p521_addcarryx_u32(&x1636, &x1637, x1635, x1603, x1600); fiat_p521_addcarryx_u32(&x1638, &x1639, x1637, x1601, x1598); fiat_p521_addcarryx_u32(&x1640, &x1641, x1639, x1599, x1596); fiat_p521_addcarryx_u32(&x1642, &x1643, x1641, x1597, x1594); fiat_p521_addcarryx_u32(&x1644, &x1645, x1643, x1595, x1592); fiat_p521_addcarryx_u32(&x1646, &x1647, x1645, x1593, x1590); fiat_p521_addcarryx_u32(&x1648, &x1649, x1647, x1591, x1588); fiat_p521_addcarryx_u32(&x1650, &x1651, x1649, x1589, x1586); fiat_p521_addcarryx_u32(&x1652, &x1653, 0x0, x1554, x1618); fiat_p521_addcarryx_u32(&x1654, &x1655, x1653, x1556, x1620); fiat_p521_addcarryx_u32(&x1656, &x1657, x1655, x1558, x1622); fiat_p521_addcarryx_u32(&x1658, &x1659, x1657, x1560, x1624); fiat_p521_addcarryx_u32(&x1660, &x1661, x1659, x1562, x1626); fiat_p521_addcarryx_u32(&x1662, &x1663, x1661, x1564, x1628); fiat_p521_addcarryx_u32(&x1664, &x1665, x1663, x1566, x1630); fiat_p521_addcarryx_u32(&x1666, &x1667, x1665, x1568, x1632); fiat_p521_addcarryx_u32(&x1668, &x1669, x1667, x1570, x1634); fiat_p521_addcarryx_u32(&x1670, &x1671, x1669, x1572, x1636); fiat_p521_addcarryx_u32(&x1672, &x1673, x1671, x1574, x1638); fiat_p521_addcarryx_u32(&x1674, &x1675, x1673, x1576, x1640); fiat_p521_addcarryx_u32(&x1676, &x1677, x1675, x1578, x1642); fiat_p521_addcarryx_u32(&x1678, &x1679, x1677, x1580, x1644); fiat_p521_addcarryx_u32(&x1680, &x1681, x1679, x1582, x1646); fiat_p521_addcarryx_u32(&x1682, &x1683, x1681, x1584, x1648); fiat_p521_addcarryx_u32(&x1684, &x1685, x1683, (x1585 + (x1553 + (x1519 + x1455))), x1650); fiat_p521_addcarryx_u32(&x1686, &x1687, 0x0, x1654, (arg1[13])); fiat_p521_addcarryx_u32(&x1688, &x1689, x1687, x1656, 0x0); fiat_p521_addcarryx_u32(&x1690, &x1691, x1689, x1658, 0x0); fiat_p521_addcarryx_u32(&x1692, &x1693, x1691, x1660, 0x0); fiat_p521_addcarryx_u32(&x1694, &x1695, x1693, x1662, 0x0); fiat_p521_addcarryx_u32(&x1696, &x1697, x1695, x1664, 0x0); fiat_p521_addcarryx_u32(&x1698, &x1699, x1697, x1666, 0x0); fiat_p521_addcarryx_u32(&x1700, &x1701, x1699, x1668, 0x0); fiat_p521_addcarryx_u32(&x1702, &x1703, x1701, x1670, 0x0); fiat_p521_addcarryx_u32(&x1704, &x1705, x1703, x1672, 0x0); fiat_p521_addcarryx_u32(&x1706, &x1707, x1705, x1674, 0x0); fiat_p521_addcarryx_u32(&x1708, &x1709, x1707, x1676, 0x0); fiat_p521_addcarryx_u32(&x1710, &x1711, x1709, x1678, 0x0); fiat_p521_addcarryx_u32(&x1712, &x1713, x1711, x1680, 0x0); fiat_p521_addcarryx_u32(&x1714, &x1715, x1713, x1682, 0x0); fiat_p521_addcarryx_u32(&x1716, &x1717, x1715, x1684, 0x0); fiat_p521_mulx_u32(&x1718, &x1719, x1686, UINT16_C(0x1ff)); fiat_p521_mulx_u32(&x1720, &x1721, x1686, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1722, &x1723, x1686, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1724, &x1725, x1686, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1726, &x1727, x1686, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1728, &x1729, x1686, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1730, &x1731, x1686, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1732, &x1733, x1686, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1734, &x1735, x1686, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1736, &x1737, x1686, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1738, &x1739, x1686, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1740, &x1741, x1686, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1742, &x1743, x1686, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1744, &x1745, x1686, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1746, &x1747, x1686, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1748, &x1749, x1686, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1750, &x1751, x1686, UINT32_C(0xffffffff)); fiat_p521_addcarryx_u32(&x1752, &x1753, 0x0, x1751, x1748); fiat_p521_addcarryx_u32(&x1754, &x1755, x1753, x1749, x1746); fiat_p521_addcarryx_u32(&x1756, &x1757, x1755, x1747, x1744); fiat_p521_addcarryx_u32(&x1758, &x1759, x1757, x1745, x1742); fiat_p521_addcarryx_u32(&x1760, &x1761, x1759, x1743, x1740); fiat_p521_addcarryx_u32(&x1762, &x1763, x1761, x1741, x1738); fiat_p521_addcarryx_u32(&x1764, &x1765, x1763, x1739, x1736); fiat_p521_addcarryx_u32(&x1766, &x1767, x1765, x1737, x1734); fiat_p521_addcarryx_u32(&x1768, &x1769, x1767, x1735, x1732); fiat_p521_addcarryx_u32(&x1770, &x1771, x1769, x1733, x1730); fiat_p521_addcarryx_u32(&x1772, &x1773, x1771, x1731, x1728); fiat_p521_addcarryx_u32(&x1774, &x1775, x1773, x1729, x1726); fiat_p521_addcarryx_u32(&x1776, &x1777, x1775, x1727, x1724); fiat_p521_addcarryx_u32(&x1778, &x1779, x1777, x1725, x1722); fiat_p521_addcarryx_u32(&x1780, &x1781, x1779, x1723, x1720); fiat_p521_addcarryx_u32(&x1782, &x1783, x1781, x1721, x1718); fiat_p521_addcarryx_u32(&x1784, &x1785, 0x0, x1686, x1750); fiat_p521_addcarryx_u32(&x1786, &x1787, x1785, x1688, x1752); fiat_p521_addcarryx_u32(&x1788, &x1789, x1787, x1690, x1754); fiat_p521_addcarryx_u32(&x1790, &x1791, x1789, x1692, x1756); fiat_p521_addcarryx_u32(&x1792, &x1793, x1791, x1694, x1758); fiat_p521_addcarryx_u32(&x1794, &x1795, x1793, x1696, x1760); fiat_p521_addcarryx_u32(&x1796, &x1797, x1795, x1698, x1762); fiat_p521_addcarryx_u32(&x1798, &x1799, x1797, x1700, x1764); fiat_p521_addcarryx_u32(&x1800, &x1801, x1799, x1702, x1766); fiat_p521_addcarryx_u32(&x1802, &x1803, x1801, x1704, x1768); fiat_p521_addcarryx_u32(&x1804, &x1805, x1803, x1706, x1770); fiat_p521_addcarryx_u32(&x1806, &x1807, x1805, x1708, x1772); fiat_p521_addcarryx_u32(&x1808, &x1809, x1807, x1710, x1774); fiat_p521_addcarryx_u32(&x1810, &x1811, x1809, x1712, x1776); fiat_p521_addcarryx_u32(&x1812, &x1813, x1811, x1714, x1778); fiat_p521_addcarryx_u32(&x1814, &x1815, x1813, x1716, x1780); fiat_p521_addcarryx_u32(&x1816, &x1817, x1815, (x1717 + (x1685 + (x1651 + x1587))), x1782); fiat_p521_addcarryx_u32(&x1818, &x1819, 0x0, x1786, (arg1[14])); fiat_p521_addcarryx_u32(&x1820, &x1821, x1819, x1788, 0x0); fiat_p521_addcarryx_u32(&x1822, &x1823, x1821, x1790, 0x0); fiat_p521_addcarryx_u32(&x1824, &x1825, x1823, x1792, 0x0); fiat_p521_addcarryx_u32(&x1826, &x1827, x1825, x1794, 0x0); fiat_p521_addcarryx_u32(&x1828, &x1829, x1827, x1796, 0x0); fiat_p521_addcarryx_u32(&x1830, &x1831, x1829, x1798, 0x0); fiat_p521_addcarryx_u32(&x1832, &x1833, x1831, x1800, 0x0); fiat_p521_addcarryx_u32(&x1834, &x1835, x1833, x1802, 0x0); fiat_p521_addcarryx_u32(&x1836, &x1837, x1835, x1804, 0x0); fiat_p521_addcarryx_u32(&x1838, &x1839, x1837, x1806, 0x0); fiat_p521_addcarryx_u32(&x1840, &x1841, x1839, x1808, 0x0); fiat_p521_addcarryx_u32(&x1842, &x1843, x1841, x1810, 0x0); fiat_p521_addcarryx_u32(&x1844, &x1845, x1843, x1812, 0x0); fiat_p521_addcarryx_u32(&x1846, &x1847, x1845, x1814, 0x0); fiat_p521_addcarryx_u32(&x1848, &x1849, x1847, x1816, 0x0); fiat_p521_mulx_u32(&x1850, &x1851, x1818, UINT16_C(0x1ff)); fiat_p521_mulx_u32(&x1852, &x1853, x1818, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1854, &x1855, x1818, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1856, &x1857, x1818, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1858, &x1859, x1818, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1860, &x1861, x1818, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1862, &x1863, x1818, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1864, &x1865, x1818, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1866, &x1867, x1818, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1868, &x1869, x1818, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1870, &x1871, x1818, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1872, &x1873, x1818, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1874, &x1875, x1818, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1876, &x1877, x1818, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1878, &x1879, x1818, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1880, &x1881, x1818, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1882, &x1883, x1818, UINT32_C(0xffffffff)); fiat_p521_addcarryx_u32(&x1884, &x1885, 0x0, x1883, x1880); fiat_p521_addcarryx_u32(&x1886, &x1887, x1885, x1881, x1878); fiat_p521_addcarryx_u32(&x1888, &x1889, x1887, x1879, x1876); fiat_p521_addcarryx_u32(&x1890, &x1891, x1889, x1877, x1874); fiat_p521_addcarryx_u32(&x1892, &x1893, x1891, x1875, x1872); fiat_p521_addcarryx_u32(&x1894, &x1895, x1893, x1873, x1870); fiat_p521_addcarryx_u32(&x1896, &x1897, x1895, x1871, x1868); fiat_p521_addcarryx_u32(&x1898, &x1899, x1897, x1869, x1866); fiat_p521_addcarryx_u32(&x1900, &x1901, x1899, x1867, x1864); fiat_p521_addcarryx_u32(&x1902, &x1903, x1901, x1865, x1862); fiat_p521_addcarryx_u32(&x1904, &x1905, x1903, x1863, x1860); fiat_p521_addcarryx_u32(&x1906, &x1907, x1905, x1861, x1858); fiat_p521_addcarryx_u32(&x1908, &x1909, x1907, x1859, x1856); fiat_p521_addcarryx_u32(&x1910, &x1911, x1909, x1857, x1854); fiat_p521_addcarryx_u32(&x1912, &x1913, x1911, x1855, x1852); fiat_p521_addcarryx_u32(&x1914, &x1915, x1913, x1853, x1850); fiat_p521_addcarryx_u32(&x1916, &x1917, 0x0, x1818, x1882); fiat_p521_addcarryx_u32(&x1918, &x1919, x1917, x1820, x1884); fiat_p521_addcarryx_u32(&x1920, &x1921, x1919, x1822, x1886); fiat_p521_addcarryx_u32(&x1922, &x1923, x1921, x1824, x1888); fiat_p521_addcarryx_u32(&x1924, &x1925, x1923, x1826, x1890); fiat_p521_addcarryx_u32(&x1926, &x1927, x1925, x1828, x1892); fiat_p521_addcarryx_u32(&x1928, &x1929, x1927, x1830, x1894); fiat_p521_addcarryx_u32(&x1930, &x1931, x1929, x1832, x1896); fiat_p521_addcarryx_u32(&x1932, &x1933, x1931, x1834, x1898); fiat_p521_addcarryx_u32(&x1934, &x1935, x1933, x1836, x1900); fiat_p521_addcarryx_u32(&x1936, &x1937, x1935, x1838, x1902); fiat_p521_addcarryx_u32(&x1938, &x1939, x1937, x1840, x1904); fiat_p521_addcarryx_u32(&x1940, &x1941, x1939, x1842, x1906); fiat_p521_addcarryx_u32(&x1942, &x1943, x1941, x1844, x1908); fiat_p521_addcarryx_u32(&x1944, &x1945, x1943, x1846, x1910); fiat_p521_addcarryx_u32(&x1946, &x1947, x1945, x1848, x1912); fiat_p521_addcarryx_u32(&x1948, &x1949, x1947, (x1849 + (x1817 + (x1783 + x1719))), x1914); fiat_p521_addcarryx_u32(&x1950, &x1951, 0x0, x1918, (arg1[15])); fiat_p521_addcarryx_u32(&x1952, &x1953, x1951, x1920, 0x0); fiat_p521_addcarryx_u32(&x1954, &x1955, x1953, x1922, 0x0); fiat_p521_addcarryx_u32(&x1956, &x1957, x1955, x1924, 0x0); fiat_p521_addcarryx_u32(&x1958, &x1959, x1957, x1926, 0x0); fiat_p521_addcarryx_u32(&x1960, &x1961, x1959, x1928, 0x0); fiat_p521_addcarryx_u32(&x1962, &x1963, x1961, x1930, 0x0); fiat_p521_addcarryx_u32(&x1964, &x1965, x1963, x1932, 0x0); fiat_p521_addcarryx_u32(&x1966, &x1967, x1965, x1934, 0x0); fiat_p521_addcarryx_u32(&x1968, &x1969, x1967, x1936, 0x0); fiat_p521_addcarryx_u32(&x1970, &x1971, x1969, x1938, 0x0); fiat_p521_addcarryx_u32(&x1972, &x1973, x1971, x1940, 0x0); fiat_p521_addcarryx_u32(&x1974, &x1975, x1973, x1942, 0x0); fiat_p521_addcarryx_u32(&x1976, &x1977, x1975, x1944, 0x0); fiat_p521_addcarryx_u32(&x1978, &x1979, x1977, x1946, 0x0); fiat_p521_addcarryx_u32(&x1980, &x1981, x1979, x1948, 0x0); fiat_p521_mulx_u32(&x1982, &x1983, x1950, UINT16_C(0x1ff)); fiat_p521_mulx_u32(&x1984, &x1985, x1950, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1986, &x1987, x1950, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1988, &x1989, x1950, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1990, &x1991, x1950, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1992, &x1993, x1950, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1994, &x1995, x1950, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1996, &x1997, x1950, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1998, &x1999, x1950, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2000, &x2001, x1950, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2002, &x2003, x1950, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2004, &x2005, x1950, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2006, &x2007, x1950, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2008, &x2009, x1950, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2010, &x2011, x1950, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2012, &x2013, x1950, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2014, &x2015, x1950, UINT32_C(0xffffffff)); fiat_p521_addcarryx_u32(&x2016, &x2017, 0x0, x2015, x2012); fiat_p521_addcarryx_u32(&x2018, &x2019, x2017, x2013, x2010); fiat_p521_addcarryx_u32(&x2020, &x2021, x2019, x2011, x2008); fiat_p521_addcarryx_u32(&x2022, &x2023, x2021, x2009, x2006); fiat_p521_addcarryx_u32(&x2024, &x2025, x2023, x2007, x2004); fiat_p521_addcarryx_u32(&x2026, &x2027, x2025, x2005, x2002); fiat_p521_addcarryx_u32(&x2028, &x2029, x2027, x2003, x2000); fiat_p521_addcarryx_u32(&x2030, &x2031, x2029, x2001, x1998); fiat_p521_addcarryx_u32(&x2032, &x2033, x2031, x1999, x1996); fiat_p521_addcarryx_u32(&x2034, &x2035, x2033, x1997, x1994); fiat_p521_addcarryx_u32(&x2036, &x2037, x2035, x1995, x1992); fiat_p521_addcarryx_u32(&x2038, &x2039, x2037, x1993, x1990); fiat_p521_addcarryx_u32(&x2040, &x2041, x2039, x1991, x1988); fiat_p521_addcarryx_u32(&x2042, &x2043, x2041, x1989, x1986); fiat_p521_addcarryx_u32(&x2044, &x2045, x2043, x1987, x1984); fiat_p521_addcarryx_u32(&x2046, &x2047, x2045, x1985, x1982); fiat_p521_addcarryx_u32(&x2048, &x2049, 0x0, x1950, x2014); fiat_p521_addcarryx_u32(&x2050, &x2051, x2049, x1952, x2016); fiat_p521_addcarryx_u32(&x2052, &x2053, x2051, x1954, x2018); fiat_p521_addcarryx_u32(&x2054, &x2055, x2053, x1956, x2020); fiat_p521_addcarryx_u32(&x2056, &x2057, x2055, x1958, x2022); fiat_p521_addcarryx_u32(&x2058, &x2059, x2057, x1960, x2024); fiat_p521_addcarryx_u32(&x2060, &x2061, x2059, x1962, x2026); fiat_p521_addcarryx_u32(&x2062, &x2063, x2061, x1964, x2028); fiat_p521_addcarryx_u32(&x2064, &x2065, x2063, x1966, x2030); fiat_p521_addcarryx_u32(&x2066, &x2067, x2065, x1968, x2032); fiat_p521_addcarryx_u32(&x2068, &x2069, x2067, x1970, x2034); fiat_p521_addcarryx_u32(&x2070, &x2071, x2069, x1972, x2036); fiat_p521_addcarryx_u32(&x2072, &x2073, x2071, x1974, x2038); fiat_p521_addcarryx_u32(&x2074, &x2075, x2073, x1976, x2040); fiat_p521_addcarryx_u32(&x2076, &x2077, x2075, x1978, x2042); fiat_p521_addcarryx_u32(&x2078, &x2079, x2077, x1980, x2044); fiat_p521_addcarryx_u32(&x2080, &x2081, x2079, (x1981 + (x1949 + (x1915 + x1851))), x2046); fiat_p521_addcarryx_u32(&x2082, &x2083, 0x0, x2050, (arg1[16])); fiat_p521_addcarryx_u32(&x2084, &x2085, x2083, x2052, 0x0); fiat_p521_addcarryx_u32(&x2086, &x2087, x2085, x2054, 0x0); fiat_p521_addcarryx_u32(&x2088, &x2089, x2087, x2056, 0x0); fiat_p521_addcarryx_u32(&x2090, &x2091, x2089, x2058, 0x0); fiat_p521_addcarryx_u32(&x2092, &x2093, x2091, x2060, 0x0); fiat_p521_addcarryx_u32(&x2094, &x2095, x2093, x2062, 0x0); fiat_p521_addcarryx_u32(&x2096, &x2097, x2095, x2064, 0x0); fiat_p521_addcarryx_u32(&x2098, &x2099, x2097, x2066, 0x0); fiat_p521_addcarryx_u32(&x2100, &x2101, x2099, x2068, 0x0); fiat_p521_addcarryx_u32(&x2102, &x2103, x2101, x2070, 0x0); fiat_p521_addcarryx_u32(&x2104, &x2105, x2103, x2072, 0x0); fiat_p521_addcarryx_u32(&x2106, &x2107, x2105, x2074, 0x0); fiat_p521_addcarryx_u32(&x2108, &x2109, x2107, x2076, 0x0); fiat_p521_addcarryx_u32(&x2110, &x2111, x2109, x2078, 0x0); fiat_p521_addcarryx_u32(&x2112, &x2113, x2111, x2080, 0x0); fiat_p521_mulx_u32(&x2114, &x2115, x2082, UINT16_C(0x1ff)); fiat_p521_mulx_u32(&x2116, &x2117, x2082, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2118, &x2119, x2082, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2120, &x2121, x2082, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2122, &x2123, x2082, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2124, &x2125, x2082, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2126, &x2127, x2082, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2128, &x2129, x2082, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2130, &x2131, x2082, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2132, &x2133, x2082, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2134, &x2135, x2082, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2136, &x2137, x2082, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2138, &x2139, x2082, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2140, &x2141, x2082, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2142, &x2143, x2082, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2144, &x2145, x2082, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2146, &x2147, x2082, UINT32_C(0xffffffff)); fiat_p521_addcarryx_u32(&x2148, &x2149, 0x0, x2147, x2144); fiat_p521_addcarryx_u32(&x2150, &x2151, x2149, x2145, x2142); fiat_p521_addcarryx_u32(&x2152, &x2153, x2151, x2143, x2140); fiat_p521_addcarryx_u32(&x2154, &x2155, x2153, x2141, x2138); fiat_p521_addcarryx_u32(&x2156, &x2157, x2155, x2139, x2136); fiat_p521_addcarryx_u32(&x2158, &x2159, x2157, x2137, x2134); fiat_p521_addcarryx_u32(&x2160, &x2161, x2159, x2135, x2132); fiat_p521_addcarryx_u32(&x2162, &x2163, x2161, x2133, x2130); fiat_p521_addcarryx_u32(&x2164, &x2165, x2163, x2131, x2128); fiat_p521_addcarryx_u32(&x2166, &x2167, x2165, x2129, x2126); fiat_p521_addcarryx_u32(&x2168, &x2169, x2167, x2127, x2124); fiat_p521_addcarryx_u32(&x2170, &x2171, x2169, x2125, x2122); fiat_p521_addcarryx_u32(&x2172, &x2173, x2171, x2123, x2120); fiat_p521_addcarryx_u32(&x2174, &x2175, x2173, x2121, x2118); fiat_p521_addcarryx_u32(&x2176, &x2177, x2175, x2119, x2116); fiat_p521_addcarryx_u32(&x2178, &x2179, x2177, x2117, x2114); fiat_p521_addcarryx_u32(&x2180, &x2181, 0x0, x2082, x2146); fiat_p521_addcarryx_u32(&x2182, &x2183, x2181, x2084, x2148); fiat_p521_addcarryx_u32(&x2184, &x2185, x2183, x2086, x2150); fiat_p521_addcarryx_u32(&x2186, &x2187, x2185, x2088, x2152); fiat_p521_addcarryx_u32(&x2188, &x2189, x2187, x2090, x2154); fiat_p521_addcarryx_u32(&x2190, &x2191, x2189, x2092, x2156); fiat_p521_addcarryx_u32(&x2192, &x2193, x2191, x2094, x2158); fiat_p521_addcarryx_u32(&x2194, &x2195, x2193, x2096, x2160); fiat_p521_addcarryx_u32(&x2196, &x2197, x2195, x2098, x2162); fiat_p521_addcarryx_u32(&x2198, &x2199, x2197, x2100, x2164); fiat_p521_addcarryx_u32(&x2200, &x2201, x2199, x2102, x2166); fiat_p521_addcarryx_u32(&x2202, &x2203, x2201, x2104, x2168); fiat_p521_addcarryx_u32(&x2204, &x2205, x2203, x2106, x2170); fiat_p521_addcarryx_u32(&x2206, &x2207, x2205, x2108, x2172); fiat_p521_addcarryx_u32(&x2208, &x2209, x2207, x2110, x2174); fiat_p521_addcarryx_u32(&x2210, &x2211, x2209, x2112, x2176); fiat_p521_addcarryx_u32(&x2212, &x2213, x2211, (x2113 + (x2081 + (x2047 + x1983))), x2178); x2214 = (x2213 + (x2179 + x2115)); fiat_p521_subborrowx_u32(&x2215, &x2216, 0x0, x2182, UINT32_C(0xffffffff)); fiat_p521_subborrowx_u32(&x2217, &x2218, x2216, x2184, UINT32_C(0xffffffff)); fiat_p521_subborrowx_u32(&x2219, &x2220, x2218, x2186, UINT32_C(0xffffffff)); fiat_p521_subborrowx_u32(&x2221, &x2222, x2220, x2188, UINT32_C(0xffffffff)); fiat_p521_subborrowx_u32(&x2223, &x2224, x2222, x2190, UINT32_C(0xffffffff)); fiat_p521_subborrowx_u32(&x2225, &x2226, x2224, x2192, UINT32_C(0xffffffff)); fiat_p521_subborrowx_u32(&x2227, &x2228, x2226, x2194, UINT32_C(0xffffffff)); fiat_p521_subborrowx_u32(&x2229, &x2230, x2228, x2196, UINT32_C(0xffffffff)); fiat_p521_subborrowx_u32(&x2231, &x2232, x2230, x2198, UINT32_C(0xffffffff)); fiat_p521_subborrowx_u32(&x2233, &x2234, x2232, x2200, UINT32_C(0xffffffff)); fiat_p521_subborrowx_u32(&x2235, &x2236, x2234, x2202, UINT32_C(0xffffffff)); fiat_p521_subborrowx_u32(&x2237, &x2238, x2236, x2204, UINT32_C(0xffffffff)); fiat_p521_subborrowx_u32(&x2239, &x2240, x2238, x2206, UINT32_C(0xffffffff)); fiat_p521_subborrowx_u32(&x2241, &x2242, x2240, x2208, UINT32_C(0xffffffff)); fiat_p521_subborrowx_u32(&x2243, &x2244, x2242, x2210, UINT32_C(0xffffffff)); fiat_p521_subborrowx_u32(&x2245, &x2246, x2244, x2212, UINT32_C(0xffffffff)); fiat_p521_subborrowx_u32(&x2247, &x2248, x2246, x2214, UINT16_C(0x1ff)); fiat_p521_subborrowx_u32(&x2249, &x2250, x2248, 0x0, 0x0); fiat_p521_cmovznz_u32(&x2251, x2250, x2215, x2182); fiat_p521_cmovznz_u32(&x2252, x2250, x2217, x2184); fiat_p521_cmovznz_u32(&x2253, x2250, x2219, x2186); fiat_p521_cmovznz_u32(&x2254, x2250, x2221, x2188); fiat_p521_cmovznz_u32(&x2255, x2250, x2223, x2190); fiat_p521_cmovznz_u32(&x2256, x2250, x2225, x2192); fiat_p521_cmovznz_u32(&x2257, x2250, x2227, x2194); fiat_p521_cmovznz_u32(&x2258, x2250, x2229, x2196); fiat_p521_cmovznz_u32(&x2259, x2250, x2231, x2198); fiat_p521_cmovznz_u32(&x2260, x2250, x2233, x2200); fiat_p521_cmovznz_u32(&x2261, x2250, x2235, x2202); fiat_p521_cmovznz_u32(&x2262, x2250, x2237, x2204); fiat_p521_cmovznz_u32(&x2263, x2250, x2239, x2206); fiat_p521_cmovznz_u32(&x2264, x2250, x2241, x2208); fiat_p521_cmovznz_u32(&x2265, x2250, x2243, x2210); fiat_p521_cmovznz_u32(&x2266, x2250, x2245, x2212); fiat_p521_cmovznz_u32(&x2267, x2250, x2247, x2214); out1[0] = x2251; out1[1] = x2252; out1[2] = x2253; out1[3] = x2254; out1[4] = x2255; out1[5] = x2256; out1[6] = x2257; out1[7] = x2258; out1[8] = x2259; out1[9] = x2260; out1[10] = x2261; out1[11] = x2262; out1[12] = x2263; out1[13] = x2264; out1[14] = x2265; out1[15] = x2266; out1[16] = x2267; } /* * The function fiat_p521_to_montgomery translates a field element into the Montgomery domain. * * Preconditions: * 0 ≤ eval arg1 < m * Postconditions: * eval (from_montgomery out1) mod m = eval arg1 mod m * 0 ≤ eval out1 < m * */ static void fiat_p521_to_montgomery(fiat_p521_montgomery_domain_field_element out1, const fiat_p521_non_montgomery_domain_field_element arg1) { uint32_t x1; uint32_t x2; uint32_t x3; uint32_t x4; uint32_t x5; fiat_p521_uint1 x6; uint32_t x7; uint32_t x8; uint32_t x9; uint32_t x10; uint32_t x11; uint32_t x12; uint32_t x13; uint32_t x14; uint32_t x15; uint32_t x16; uint32_t x17; uint32_t x18; uint32_t x19; uint32_t x20; uint32_t x21; uint32_t x22; uint32_t x23; uint32_t x24; uint32_t x25; uint32_t x26; uint32_t x27; uint32_t x28; uint32_t x29; uint32_t x30; uint32_t x31; uint32_t x32; uint32_t x33; uint32_t x34; uint32_t x35; uint32_t x36; uint32_t x37; uint32_t x38; uint32_t x39; uint32_t x40; uint32_t x41; fiat_p521_uint1 x42; uint32_t x43; fiat_p521_uint1 x44; uint32_t x45; fiat_p521_uint1 x46; uint32_t x47; fiat_p521_uint1 x48; uint32_t x49; fiat_p521_uint1 x50; uint32_t x51; fiat_p521_uint1 x52; uint32_t x53; fiat_p521_uint1 x54; uint32_t x55; fiat_p521_uint1 x56; uint32_t x57; fiat_p521_uint1 x58; uint32_t x59; fiat_p521_uint1 x60; uint32_t x61; fiat_p521_uint1 x62; uint32_t x63; fiat_p521_uint1 x64; uint32_t x65; fiat_p521_uint1 x66; uint32_t x67; fiat_p521_uint1 x68; uint32_t x69; fiat_p521_uint1 x70; uint32_t x71; fiat_p521_uint1 x72; uint32_t x73; fiat_p521_uint1 x74; uint32_t x75; fiat_p521_uint1 x76; uint32_t x77; fiat_p521_uint1 x78; uint32_t x79; fiat_p521_uint1 x80; uint32_t x81; fiat_p521_uint1 x82; uint32_t x83; fiat_p521_uint1 x84; uint32_t x85; fiat_p521_uint1 x86; uint32_t x87; fiat_p521_uint1 x88; uint32_t x89; fiat_p521_uint1 x90; uint32_t x91; fiat_p521_uint1 x92; uint32_t x93; fiat_p521_uint1 x94; uint32_t x95; fiat_p521_uint1 x96; uint32_t x97; fiat_p521_uint1 x98; uint32_t x99; fiat_p521_uint1 x100; uint32_t x101; fiat_p521_uint1 x102; uint32_t x103; fiat_p521_uint1 x104; uint32_t x105; fiat_p521_uint1 x106; uint32_t x107; uint32_t x108; uint32_t x109; fiat_p521_uint1 x110; uint32_t x111; fiat_p521_uint1 x112; uint32_t x113; fiat_p521_uint1 x114; uint32_t x115; fiat_p521_uint1 x116; uint32_t x117; fiat_p521_uint1 x118; uint32_t x119; fiat_p521_uint1 x120; uint32_t x121; fiat_p521_uint1 x122; uint32_t x123; fiat_p521_uint1 x124; uint32_t x125; fiat_p521_uint1 x126; uint32_t x127; fiat_p521_uint1 x128; uint32_t x129; fiat_p521_uint1 x130; uint32_t x131; fiat_p521_uint1 x132; uint32_t x133; fiat_p521_uint1 x134; uint32_t x135; fiat_p521_uint1 x136; uint32_t x137; fiat_p521_uint1 x138; uint32_t x139; uint32_t x140; uint32_t x141; uint32_t x142; uint32_t x143; uint32_t x144; uint32_t x145; uint32_t x146; uint32_t x147; uint32_t x148; uint32_t x149; uint32_t x150; uint32_t x151; uint32_t x152; uint32_t x153; uint32_t x154; uint32_t x155; uint32_t x156; uint32_t x157; uint32_t x158; uint32_t x159; uint32_t x160; uint32_t x161; uint32_t x162; uint32_t x163; uint32_t x164; uint32_t x165; uint32_t x166; uint32_t x167; uint32_t x168; uint32_t x169; uint32_t x170; uint32_t x171; uint32_t x172; uint32_t x173; fiat_p521_uint1 x174; uint32_t x175; fiat_p521_uint1 x176; uint32_t x177; fiat_p521_uint1 x178; uint32_t x179; fiat_p521_uint1 x180; uint32_t x181; fiat_p521_uint1 x182; uint32_t x183; fiat_p521_uint1 x184; uint32_t x185; fiat_p521_uint1 x186; uint32_t x187; fiat_p521_uint1 x188; uint32_t x189; fiat_p521_uint1 x190; uint32_t x191; fiat_p521_uint1 x192; uint32_t x193; fiat_p521_uint1 x194; uint32_t x195; fiat_p521_uint1 x196; uint32_t x197; fiat_p521_uint1 x198; uint32_t x199; fiat_p521_uint1 x200; uint32_t x201; fiat_p521_uint1 x202; uint32_t x203; fiat_p521_uint1 x204; uint32_t x205; fiat_p521_uint1 x206; uint32_t x207; fiat_p521_uint1 x208; uint32_t x209; fiat_p521_uint1 x210; uint32_t x211; fiat_p521_uint1 x212; uint32_t x213; fiat_p521_uint1 x214; uint32_t x215; fiat_p521_uint1 x216; uint32_t x217; fiat_p521_uint1 x218; uint32_t x219; fiat_p521_uint1 x220; uint32_t x221; fiat_p521_uint1 x222; uint32_t x223; fiat_p521_uint1 x224; uint32_t x225; fiat_p521_uint1 x226; uint32_t x227; fiat_p521_uint1 x228; uint32_t x229; fiat_p521_uint1 x230; uint32_t x231; fiat_p521_uint1 x232; uint32_t x233; fiat_p521_uint1 x234; uint32_t x235; fiat_p521_uint1 x236; uint32_t x237; fiat_p521_uint1 x238; uint32_t x239; uint32_t x240; uint32_t x241; fiat_p521_uint1 x242; uint32_t x243; fiat_p521_uint1 x244; uint32_t x245; fiat_p521_uint1 x246; uint32_t x247; fiat_p521_uint1 x248; uint32_t x249; fiat_p521_uint1 x250; uint32_t x251; fiat_p521_uint1 x252; uint32_t x253; fiat_p521_uint1 x254; uint32_t x255; fiat_p521_uint1 x256; uint32_t x257; fiat_p521_uint1 x258; uint32_t x259; fiat_p521_uint1 x260; uint32_t x261; fiat_p521_uint1 x262; uint32_t x263; fiat_p521_uint1 x264; uint32_t x265; fiat_p521_uint1 x266; uint32_t x267; fiat_p521_uint1 x268; uint32_t x269; fiat_p521_uint1 x270; uint32_t x271; uint32_t x272; uint32_t x273; uint32_t x274; uint32_t x275; uint32_t x276; uint32_t x277; uint32_t x278; uint32_t x279; uint32_t x280; uint32_t x281; uint32_t x282; uint32_t x283; uint32_t x284; uint32_t x285; uint32_t x286; uint32_t x287; uint32_t x288; uint32_t x289; uint32_t x290; uint32_t x291; uint32_t x292; uint32_t x293; uint32_t x294; uint32_t x295; uint32_t x296; uint32_t x297; uint32_t x298; uint32_t x299; uint32_t x300; uint32_t x301; uint32_t x302; uint32_t x303; uint32_t x304; uint32_t x305; fiat_p521_uint1 x306; uint32_t x307; fiat_p521_uint1 x308; uint32_t x309; fiat_p521_uint1 x310; uint32_t x311; fiat_p521_uint1 x312; uint32_t x313; fiat_p521_uint1 x314; uint32_t x315; fiat_p521_uint1 x316; uint32_t x317; fiat_p521_uint1 x318; uint32_t x319; fiat_p521_uint1 x320; uint32_t x321; fiat_p521_uint1 x322; uint32_t x323; fiat_p521_uint1 x324; uint32_t x325; fiat_p521_uint1 x326; uint32_t x327; fiat_p521_uint1 x328; uint32_t x329; fiat_p521_uint1 x330; uint32_t x331; fiat_p521_uint1 x332; uint32_t x333; fiat_p521_uint1 x334; uint32_t x335; fiat_p521_uint1 x336; uint32_t x337; fiat_p521_uint1 x338; uint32_t x339; fiat_p521_uint1 x340; uint32_t x341; fiat_p521_uint1 x342; uint32_t x343; fiat_p521_uint1 x344; uint32_t x345; fiat_p521_uint1 x346; uint32_t x347; fiat_p521_uint1 x348; uint32_t x349; fiat_p521_uint1 x350; uint32_t x351; fiat_p521_uint1 x352; uint32_t x353; fiat_p521_uint1 x354; uint32_t x355; fiat_p521_uint1 x356; uint32_t x357; fiat_p521_uint1 x358; uint32_t x359; fiat_p521_uint1 x360; uint32_t x361; fiat_p521_uint1 x362; uint32_t x363; fiat_p521_uint1 x364; uint32_t x365; fiat_p521_uint1 x366; uint32_t x367; fiat_p521_uint1 x368; uint32_t x369; fiat_p521_uint1 x370; uint32_t x371; uint32_t x372; uint32_t x373; fiat_p521_uint1 x374; uint32_t x375; fiat_p521_uint1 x376; uint32_t x377; fiat_p521_uint1 x378; uint32_t x379; fiat_p521_uint1 x380; uint32_t x381; fiat_p521_uint1 x382; uint32_t x383; fiat_p521_uint1 x384; uint32_t x385; fiat_p521_uint1 x386; uint32_t x387; fiat_p521_uint1 x388; uint32_t x389; fiat_p521_uint1 x390; uint32_t x391; fiat_p521_uint1 x392; uint32_t x393; fiat_p521_uint1 x394; uint32_t x395; fiat_p521_uint1 x396; uint32_t x397; fiat_p521_uint1 x398; uint32_t x399; fiat_p521_uint1 x400; uint32_t x401; fiat_p521_uint1 x402; uint32_t x403; uint32_t x404; uint32_t x405; uint32_t x406; uint32_t x407; uint32_t x408; uint32_t x409; uint32_t x410; uint32_t x411; uint32_t x412; uint32_t x413; uint32_t x414; uint32_t x415; uint32_t x416; uint32_t x417; uint32_t x418; uint32_t x419; uint32_t x420; uint32_t x421; uint32_t x422; uint32_t x423; uint32_t x424; uint32_t x425; uint32_t x426; uint32_t x427; uint32_t x428; uint32_t x429; uint32_t x430; uint32_t x431; uint32_t x432; uint32_t x433; uint32_t x434; uint32_t x435; uint32_t x436; uint32_t x437; fiat_p521_uint1 x438; uint32_t x439; fiat_p521_uint1 x440; uint32_t x441; fiat_p521_uint1 x442; uint32_t x443; fiat_p521_uint1 x444; uint32_t x445; fiat_p521_uint1 x446; uint32_t x447; fiat_p521_uint1 x448; uint32_t x449; fiat_p521_uint1 x450; uint32_t x451; fiat_p521_uint1 x452; uint32_t x453; fiat_p521_uint1 x454; uint32_t x455; fiat_p521_uint1 x456; uint32_t x457; fiat_p521_uint1 x458; uint32_t x459; fiat_p521_uint1 x460; uint32_t x461; fiat_p521_uint1 x462; uint32_t x463; fiat_p521_uint1 x464; uint32_t x465; fiat_p521_uint1 x466; uint32_t x467; fiat_p521_uint1 x468; uint32_t x469; fiat_p521_uint1 x470; uint32_t x471; fiat_p521_uint1 x472; uint32_t x473; fiat_p521_uint1 x474; uint32_t x475; fiat_p521_uint1 x476; uint32_t x477; fiat_p521_uint1 x478; uint32_t x479; fiat_p521_uint1 x480; uint32_t x481; fiat_p521_uint1 x482; uint32_t x483; fiat_p521_uint1 x484; uint32_t x485; fiat_p521_uint1 x486; uint32_t x487; fiat_p521_uint1 x488; uint32_t x489; fiat_p521_uint1 x490; uint32_t x491; fiat_p521_uint1 x492; uint32_t x493; fiat_p521_uint1 x494; uint32_t x495; fiat_p521_uint1 x496; uint32_t x497; fiat_p521_uint1 x498; uint32_t x499; fiat_p521_uint1 x500; uint32_t x501; fiat_p521_uint1 x502; uint32_t x503; uint32_t x504; uint32_t x505; fiat_p521_uint1 x506; uint32_t x507; fiat_p521_uint1 x508; uint32_t x509; fiat_p521_uint1 x510; uint32_t x511; fiat_p521_uint1 x512; uint32_t x513; fiat_p521_uint1 x514; uint32_t x515; fiat_p521_uint1 x516; uint32_t x517; fiat_p521_uint1 x518; uint32_t x519; fiat_p521_uint1 x520; uint32_t x521; fiat_p521_uint1 x522; uint32_t x523; fiat_p521_uint1 x524; uint32_t x525; fiat_p521_uint1 x526; uint32_t x527; fiat_p521_uint1 x528; uint32_t x529; fiat_p521_uint1 x530; uint32_t x531; fiat_p521_uint1 x532; uint32_t x533; fiat_p521_uint1 x534; uint32_t x535; uint32_t x536; uint32_t x537; uint32_t x538; uint32_t x539; uint32_t x540; uint32_t x541; uint32_t x542; uint32_t x543; uint32_t x544; uint32_t x545; uint32_t x546; uint32_t x547; uint32_t x548; uint32_t x549; uint32_t x550; uint32_t x551; uint32_t x552; uint32_t x553; uint32_t x554; uint32_t x555; uint32_t x556; uint32_t x557; uint32_t x558; uint32_t x559; uint32_t x560; uint32_t x561; uint32_t x562; uint32_t x563; uint32_t x564; uint32_t x565; uint32_t x566; uint32_t x567; uint32_t x568; uint32_t x569; fiat_p521_uint1 x570; uint32_t x571; fiat_p521_uint1 x572; uint32_t x573; fiat_p521_uint1 x574; uint32_t x575; fiat_p521_uint1 x576; uint32_t x577; fiat_p521_uint1 x578; uint32_t x579; fiat_p521_uint1 x580; uint32_t x581; fiat_p521_uint1 x582; uint32_t x583; fiat_p521_uint1 x584; uint32_t x585; fiat_p521_uint1 x586; uint32_t x587; fiat_p521_uint1 x588; uint32_t x589; fiat_p521_uint1 x590; uint32_t x591; fiat_p521_uint1 x592; uint32_t x593; fiat_p521_uint1 x594; uint32_t x595; fiat_p521_uint1 x596; uint32_t x597; fiat_p521_uint1 x598; uint32_t x599; fiat_p521_uint1 x600; uint32_t x601; fiat_p521_uint1 x602; uint32_t x603; fiat_p521_uint1 x604; uint32_t x605; fiat_p521_uint1 x606; uint32_t x607; fiat_p521_uint1 x608; uint32_t x609; fiat_p521_uint1 x610; uint32_t x611; fiat_p521_uint1 x612; uint32_t x613; fiat_p521_uint1 x614; uint32_t x615; fiat_p521_uint1 x616; uint32_t x617; fiat_p521_uint1 x618; uint32_t x619; fiat_p521_uint1 x620; uint32_t x621; fiat_p521_uint1 x622; uint32_t x623; fiat_p521_uint1 x624; uint32_t x625; fiat_p521_uint1 x626; uint32_t x627; fiat_p521_uint1 x628; uint32_t x629; fiat_p521_uint1 x630; uint32_t x631; fiat_p521_uint1 x632; uint32_t x633; fiat_p521_uint1 x634; uint32_t x635; uint32_t x636; uint32_t x637; fiat_p521_uint1 x638; uint32_t x639; fiat_p521_uint1 x640; uint32_t x641; fiat_p521_uint1 x642; uint32_t x643; fiat_p521_uint1 x644; uint32_t x645; fiat_p521_uint1 x646; uint32_t x647; fiat_p521_uint1 x648; uint32_t x649; fiat_p521_uint1 x650; uint32_t x651; fiat_p521_uint1 x652; uint32_t x653; fiat_p521_uint1 x654; uint32_t x655; fiat_p521_uint1 x656; uint32_t x657; fiat_p521_uint1 x658; uint32_t x659; fiat_p521_uint1 x660; uint32_t x661; fiat_p521_uint1 x662; uint32_t x663; fiat_p521_uint1 x664; uint32_t x665; fiat_p521_uint1 x666; uint32_t x667; uint32_t x668; uint32_t x669; uint32_t x670; uint32_t x671; uint32_t x672; uint32_t x673; uint32_t x674; uint32_t x675; uint32_t x676; uint32_t x677; uint32_t x678; uint32_t x679; uint32_t x680; uint32_t x681; uint32_t x682; uint32_t x683; uint32_t x684; uint32_t x685; uint32_t x686; uint32_t x687; uint32_t x688; uint32_t x689; uint32_t x690; uint32_t x691; uint32_t x692; uint32_t x693; uint32_t x694; uint32_t x695; uint32_t x696; uint32_t x697; uint32_t x698; uint32_t x699; uint32_t x700; uint32_t x701; fiat_p521_uint1 x702; uint32_t x703; fiat_p521_uint1 x704; uint32_t x705; fiat_p521_uint1 x706; uint32_t x707; fiat_p521_uint1 x708; uint32_t x709; fiat_p521_uint1 x710; uint32_t x711; fiat_p521_uint1 x712; uint32_t x713; fiat_p521_uint1 x714; uint32_t x715; fiat_p521_uint1 x716; uint32_t x717; fiat_p521_uint1 x718; uint32_t x719; fiat_p521_uint1 x720; uint32_t x721; fiat_p521_uint1 x722; uint32_t x723; fiat_p521_uint1 x724; uint32_t x725; fiat_p521_uint1 x726; uint32_t x727; fiat_p521_uint1 x728; uint32_t x729; fiat_p521_uint1 x730; uint32_t x731; fiat_p521_uint1 x732; uint32_t x733; fiat_p521_uint1 x734; uint32_t x735; fiat_p521_uint1 x736; uint32_t x737; fiat_p521_uint1 x738; uint32_t x739; fiat_p521_uint1 x740; uint32_t x741; fiat_p521_uint1 x742; uint32_t x743; fiat_p521_uint1 x744; uint32_t x745; fiat_p521_uint1 x746; uint32_t x747; fiat_p521_uint1 x748; uint32_t x749; fiat_p521_uint1 x750; uint32_t x751; fiat_p521_uint1 x752; uint32_t x753; fiat_p521_uint1 x754; uint32_t x755; fiat_p521_uint1 x756; uint32_t x757; fiat_p521_uint1 x758; uint32_t x759; fiat_p521_uint1 x760; uint32_t x761; fiat_p521_uint1 x762; uint32_t x763; fiat_p521_uint1 x764; uint32_t x765; fiat_p521_uint1 x766; uint32_t x767; uint32_t x768; uint32_t x769; fiat_p521_uint1 x770; uint32_t x771; fiat_p521_uint1 x772; uint32_t x773; fiat_p521_uint1 x774; uint32_t x775; fiat_p521_uint1 x776; uint32_t x777; fiat_p521_uint1 x778; uint32_t x779; fiat_p521_uint1 x780; uint32_t x781; fiat_p521_uint1 x782; uint32_t x783; fiat_p521_uint1 x784; uint32_t x785; fiat_p521_uint1 x786; uint32_t x787; fiat_p521_uint1 x788; uint32_t x789; fiat_p521_uint1 x790; uint32_t x791; fiat_p521_uint1 x792; uint32_t x793; fiat_p521_uint1 x794; uint32_t x795; fiat_p521_uint1 x796; uint32_t x797; fiat_p521_uint1 x798; uint32_t x799; uint32_t x800; uint32_t x801; uint32_t x802; uint32_t x803; uint32_t x804; uint32_t x805; uint32_t x806; uint32_t x807; uint32_t x808; uint32_t x809; uint32_t x810; uint32_t x811; uint32_t x812; uint32_t x813; uint32_t x814; uint32_t x815; uint32_t x816; uint32_t x817; uint32_t x818; uint32_t x819; uint32_t x820; uint32_t x821; uint32_t x822; uint32_t x823; uint32_t x824; uint32_t x825; uint32_t x826; uint32_t x827; uint32_t x828; uint32_t x829; uint32_t x830; uint32_t x831; uint32_t x832; uint32_t x833; fiat_p521_uint1 x834; uint32_t x835; fiat_p521_uint1 x836; uint32_t x837; fiat_p521_uint1 x838; uint32_t x839; fiat_p521_uint1 x840; uint32_t x841; fiat_p521_uint1 x842; uint32_t x843; fiat_p521_uint1 x844; uint32_t x845; fiat_p521_uint1 x846; uint32_t x847; fiat_p521_uint1 x848; uint32_t x849; fiat_p521_uint1 x850; uint32_t x851; fiat_p521_uint1 x852; uint32_t x853; fiat_p521_uint1 x854; uint32_t x855; fiat_p521_uint1 x856; uint32_t x857; fiat_p521_uint1 x858; uint32_t x859; fiat_p521_uint1 x860; uint32_t x861; fiat_p521_uint1 x862; uint32_t x863; fiat_p521_uint1 x864; uint32_t x865; fiat_p521_uint1 x866; uint32_t x867; fiat_p521_uint1 x868; uint32_t x869; fiat_p521_uint1 x870; uint32_t x871; fiat_p521_uint1 x872; uint32_t x873; fiat_p521_uint1 x874; uint32_t x875; fiat_p521_uint1 x876; uint32_t x877; fiat_p521_uint1 x878; uint32_t x879; fiat_p521_uint1 x880; uint32_t x881; fiat_p521_uint1 x882; uint32_t x883; fiat_p521_uint1 x884; uint32_t x885; fiat_p521_uint1 x886; uint32_t x887; fiat_p521_uint1 x888; uint32_t x889; fiat_p521_uint1 x890; uint32_t x891; fiat_p521_uint1 x892; uint32_t x893; fiat_p521_uint1 x894; uint32_t x895; fiat_p521_uint1 x896; uint32_t x897; fiat_p521_uint1 x898; uint32_t x899; uint32_t x900; uint32_t x901; fiat_p521_uint1 x902; uint32_t x903; fiat_p521_uint1 x904; uint32_t x905; fiat_p521_uint1 x906; uint32_t x907; fiat_p521_uint1 x908; uint32_t x909; fiat_p521_uint1 x910; uint32_t x911; fiat_p521_uint1 x912; uint32_t x913; fiat_p521_uint1 x914; uint32_t x915; fiat_p521_uint1 x916; uint32_t x917; fiat_p521_uint1 x918; uint32_t x919; fiat_p521_uint1 x920; uint32_t x921; fiat_p521_uint1 x922; uint32_t x923; fiat_p521_uint1 x924; uint32_t x925; fiat_p521_uint1 x926; uint32_t x927; fiat_p521_uint1 x928; uint32_t x929; fiat_p521_uint1 x930; uint32_t x931; uint32_t x932; uint32_t x933; uint32_t x934; uint32_t x935; uint32_t x936; uint32_t x937; uint32_t x938; uint32_t x939; uint32_t x940; uint32_t x941; uint32_t x942; uint32_t x943; uint32_t x944; uint32_t x945; uint32_t x946; uint32_t x947; uint32_t x948; uint32_t x949; uint32_t x950; uint32_t x951; uint32_t x952; uint32_t x953; uint32_t x954; uint32_t x955; uint32_t x956; uint32_t x957; uint32_t x958; uint32_t x959; uint32_t x960; uint32_t x961; uint32_t x962; uint32_t x963; uint32_t x964; uint32_t x965; fiat_p521_uint1 x966; uint32_t x967; fiat_p521_uint1 x968; uint32_t x969; fiat_p521_uint1 x970; uint32_t x971; fiat_p521_uint1 x972; uint32_t x973; fiat_p521_uint1 x974; uint32_t x975; fiat_p521_uint1 x976; uint32_t x977; fiat_p521_uint1 x978; uint32_t x979; fiat_p521_uint1 x980; uint32_t x981; fiat_p521_uint1 x982; uint32_t x983; fiat_p521_uint1 x984; uint32_t x985; fiat_p521_uint1 x986; uint32_t x987; fiat_p521_uint1 x988; uint32_t x989; fiat_p521_uint1 x990; uint32_t x991; fiat_p521_uint1 x992; uint32_t x993; fiat_p521_uint1 x994; uint32_t x995; fiat_p521_uint1 x996; uint32_t x997; fiat_p521_uint1 x998; uint32_t x999; fiat_p521_uint1 x1000; uint32_t x1001; fiat_p521_uint1 x1002; uint32_t x1003; fiat_p521_uint1 x1004; uint32_t x1005; fiat_p521_uint1 x1006; uint32_t x1007; fiat_p521_uint1 x1008; uint32_t x1009; fiat_p521_uint1 x1010; uint32_t x1011; fiat_p521_uint1 x1012; uint32_t x1013; fiat_p521_uint1 x1014; uint32_t x1015; fiat_p521_uint1 x1016; uint32_t x1017; fiat_p521_uint1 x1018; uint32_t x1019; fiat_p521_uint1 x1020; uint32_t x1021; fiat_p521_uint1 x1022; uint32_t x1023; fiat_p521_uint1 x1024; uint32_t x1025; fiat_p521_uint1 x1026; uint32_t x1027; fiat_p521_uint1 x1028; uint32_t x1029; fiat_p521_uint1 x1030; uint32_t x1031; uint32_t x1032; uint32_t x1033; fiat_p521_uint1 x1034; uint32_t x1035; fiat_p521_uint1 x1036; uint32_t x1037; fiat_p521_uint1 x1038; uint32_t x1039; fiat_p521_uint1 x1040; uint32_t x1041; fiat_p521_uint1 x1042; uint32_t x1043; fiat_p521_uint1 x1044; uint32_t x1045; fiat_p521_uint1 x1046; uint32_t x1047; fiat_p521_uint1 x1048; uint32_t x1049; fiat_p521_uint1 x1050; uint32_t x1051; fiat_p521_uint1 x1052; uint32_t x1053; fiat_p521_uint1 x1054; uint32_t x1055; fiat_p521_uint1 x1056; uint32_t x1057; fiat_p521_uint1 x1058; uint32_t x1059; fiat_p521_uint1 x1060; uint32_t x1061; fiat_p521_uint1 x1062; uint32_t x1063; uint32_t x1064; uint32_t x1065; uint32_t x1066; uint32_t x1067; uint32_t x1068; uint32_t x1069; uint32_t x1070; uint32_t x1071; uint32_t x1072; uint32_t x1073; uint32_t x1074; uint32_t x1075; uint32_t x1076; uint32_t x1077; uint32_t x1078; uint32_t x1079; uint32_t x1080; uint32_t x1081; uint32_t x1082; uint32_t x1083; uint32_t x1084; uint32_t x1085; uint32_t x1086; uint32_t x1087; uint32_t x1088; uint32_t x1089; uint32_t x1090; uint32_t x1091; uint32_t x1092; uint32_t x1093; uint32_t x1094; uint32_t x1095; uint32_t x1096; uint32_t x1097; fiat_p521_uint1 x1098; uint32_t x1099; fiat_p521_uint1 x1100; uint32_t x1101; fiat_p521_uint1 x1102; uint32_t x1103; fiat_p521_uint1 x1104; uint32_t x1105; fiat_p521_uint1 x1106; uint32_t x1107; fiat_p521_uint1 x1108; uint32_t x1109; fiat_p521_uint1 x1110; uint32_t x1111; fiat_p521_uint1 x1112; uint32_t x1113; fiat_p521_uint1 x1114; uint32_t x1115; fiat_p521_uint1 x1116; uint32_t x1117; fiat_p521_uint1 x1118; uint32_t x1119; fiat_p521_uint1 x1120; uint32_t x1121; fiat_p521_uint1 x1122; uint32_t x1123; fiat_p521_uint1 x1124; uint32_t x1125; fiat_p521_uint1 x1126; uint32_t x1127; fiat_p521_uint1 x1128; uint32_t x1129; fiat_p521_uint1 x1130; uint32_t x1131; fiat_p521_uint1 x1132; uint32_t x1133; fiat_p521_uint1 x1134; uint32_t x1135; fiat_p521_uint1 x1136; uint32_t x1137; fiat_p521_uint1 x1138; uint32_t x1139; fiat_p521_uint1 x1140; uint32_t x1141; fiat_p521_uint1 x1142; uint32_t x1143; fiat_p521_uint1 x1144; uint32_t x1145; fiat_p521_uint1 x1146; uint32_t x1147; fiat_p521_uint1 x1148; uint32_t x1149; fiat_p521_uint1 x1150; uint32_t x1151; fiat_p521_uint1 x1152; uint32_t x1153; fiat_p521_uint1 x1154; uint32_t x1155; fiat_p521_uint1 x1156; uint32_t x1157; fiat_p521_uint1 x1158; uint32_t x1159; fiat_p521_uint1 x1160; uint32_t x1161; fiat_p521_uint1 x1162; uint32_t x1163; uint32_t x1164; uint32_t x1165; fiat_p521_uint1 x1166; uint32_t x1167; fiat_p521_uint1 x1168; uint32_t x1169; fiat_p521_uint1 x1170; uint32_t x1171; fiat_p521_uint1 x1172; uint32_t x1173; fiat_p521_uint1 x1174; uint32_t x1175; fiat_p521_uint1 x1176; uint32_t x1177; fiat_p521_uint1 x1178; uint32_t x1179; fiat_p521_uint1 x1180; uint32_t x1181; fiat_p521_uint1 x1182; uint32_t x1183; fiat_p521_uint1 x1184; uint32_t x1185; fiat_p521_uint1 x1186; uint32_t x1187; fiat_p521_uint1 x1188; uint32_t x1189; fiat_p521_uint1 x1190; uint32_t x1191; fiat_p521_uint1 x1192; uint32_t x1193; fiat_p521_uint1 x1194; uint32_t x1195; uint32_t x1196; uint32_t x1197; uint32_t x1198; uint32_t x1199; uint32_t x1200; uint32_t x1201; uint32_t x1202; uint32_t x1203; uint32_t x1204; uint32_t x1205; uint32_t x1206; uint32_t x1207; uint32_t x1208; uint32_t x1209; uint32_t x1210; uint32_t x1211; uint32_t x1212; uint32_t x1213; uint32_t x1214; uint32_t x1215; uint32_t x1216; uint32_t x1217; uint32_t x1218; uint32_t x1219; uint32_t x1220; uint32_t x1221; uint32_t x1222; uint32_t x1223; uint32_t x1224; uint32_t x1225; uint32_t x1226; uint32_t x1227; uint32_t x1228; uint32_t x1229; fiat_p521_uint1 x1230; uint32_t x1231; fiat_p521_uint1 x1232; uint32_t x1233; fiat_p521_uint1 x1234; uint32_t x1235; fiat_p521_uint1 x1236; uint32_t x1237; fiat_p521_uint1 x1238; uint32_t x1239; fiat_p521_uint1 x1240; uint32_t x1241; fiat_p521_uint1 x1242; uint32_t x1243; fiat_p521_uint1 x1244; uint32_t x1245; fiat_p521_uint1 x1246; uint32_t x1247; fiat_p521_uint1 x1248; uint32_t x1249; fiat_p521_uint1 x1250; uint32_t x1251; fiat_p521_uint1 x1252; uint32_t x1253; fiat_p521_uint1 x1254; uint32_t x1255; fiat_p521_uint1 x1256; uint32_t x1257; fiat_p521_uint1 x1258; uint32_t x1259; fiat_p521_uint1 x1260; uint32_t x1261; fiat_p521_uint1 x1262; uint32_t x1263; fiat_p521_uint1 x1264; uint32_t x1265; fiat_p521_uint1 x1266; uint32_t x1267; fiat_p521_uint1 x1268; uint32_t x1269; fiat_p521_uint1 x1270; uint32_t x1271; fiat_p521_uint1 x1272; uint32_t x1273; fiat_p521_uint1 x1274; uint32_t x1275; fiat_p521_uint1 x1276; uint32_t x1277; fiat_p521_uint1 x1278; uint32_t x1279; fiat_p521_uint1 x1280; uint32_t x1281; fiat_p521_uint1 x1282; uint32_t x1283; fiat_p521_uint1 x1284; uint32_t x1285; fiat_p521_uint1 x1286; uint32_t x1287; fiat_p521_uint1 x1288; uint32_t x1289; fiat_p521_uint1 x1290; uint32_t x1291; fiat_p521_uint1 x1292; uint32_t x1293; fiat_p521_uint1 x1294; uint32_t x1295; uint32_t x1296; uint32_t x1297; fiat_p521_uint1 x1298; uint32_t x1299; fiat_p521_uint1 x1300; uint32_t x1301; fiat_p521_uint1 x1302; uint32_t x1303; fiat_p521_uint1 x1304; uint32_t x1305; fiat_p521_uint1 x1306; uint32_t x1307; fiat_p521_uint1 x1308; uint32_t x1309; fiat_p521_uint1 x1310; uint32_t x1311; fiat_p521_uint1 x1312; uint32_t x1313; fiat_p521_uint1 x1314; uint32_t x1315; fiat_p521_uint1 x1316; uint32_t x1317; fiat_p521_uint1 x1318; uint32_t x1319; fiat_p521_uint1 x1320; uint32_t x1321; fiat_p521_uint1 x1322; uint32_t x1323; fiat_p521_uint1 x1324; uint32_t x1325; fiat_p521_uint1 x1326; uint32_t x1327; uint32_t x1328; uint32_t x1329; uint32_t x1330; uint32_t x1331; uint32_t x1332; uint32_t x1333; uint32_t x1334; uint32_t x1335; uint32_t x1336; uint32_t x1337; uint32_t x1338; uint32_t x1339; uint32_t x1340; uint32_t x1341; uint32_t x1342; uint32_t x1343; uint32_t x1344; uint32_t x1345; uint32_t x1346; uint32_t x1347; uint32_t x1348; uint32_t x1349; uint32_t x1350; uint32_t x1351; uint32_t x1352; uint32_t x1353; uint32_t x1354; uint32_t x1355; uint32_t x1356; uint32_t x1357; uint32_t x1358; uint32_t x1359; uint32_t x1360; uint32_t x1361; fiat_p521_uint1 x1362; uint32_t x1363; fiat_p521_uint1 x1364; uint32_t x1365; fiat_p521_uint1 x1366; uint32_t x1367; fiat_p521_uint1 x1368; uint32_t x1369; fiat_p521_uint1 x1370; uint32_t x1371; fiat_p521_uint1 x1372; uint32_t x1373; fiat_p521_uint1 x1374; uint32_t x1375; fiat_p521_uint1 x1376; uint32_t x1377; fiat_p521_uint1 x1378; uint32_t x1379; fiat_p521_uint1 x1380; uint32_t x1381; fiat_p521_uint1 x1382; uint32_t x1383; fiat_p521_uint1 x1384; uint32_t x1385; fiat_p521_uint1 x1386; uint32_t x1387; fiat_p521_uint1 x1388; uint32_t x1389; fiat_p521_uint1 x1390; uint32_t x1391; fiat_p521_uint1 x1392; uint32_t x1393; fiat_p521_uint1 x1394; uint32_t x1395; fiat_p521_uint1 x1396; uint32_t x1397; fiat_p521_uint1 x1398; uint32_t x1399; fiat_p521_uint1 x1400; uint32_t x1401; fiat_p521_uint1 x1402; uint32_t x1403; fiat_p521_uint1 x1404; uint32_t x1405; fiat_p521_uint1 x1406; uint32_t x1407; fiat_p521_uint1 x1408; uint32_t x1409; fiat_p521_uint1 x1410; uint32_t x1411; fiat_p521_uint1 x1412; uint32_t x1413; fiat_p521_uint1 x1414; uint32_t x1415; fiat_p521_uint1 x1416; uint32_t x1417; fiat_p521_uint1 x1418; uint32_t x1419; fiat_p521_uint1 x1420; uint32_t x1421; fiat_p521_uint1 x1422; uint32_t x1423; fiat_p521_uint1 x1424; uint32_t x1425; fiat_p521_uint1 x1426; uint32_t x1427; uint32_t x1428; uint32_t x1429; fiat_p521_uint1 x1430; uint32_t x1431; fiat_p521_uint1 x1432; uint32_t x1433; fiat_p521_uint1 x1434; uint32_t x1435; fiat_p521_uint1 x1436; uint32_t x1437; fiat_p521_uint1 x1438; uint32_t x1439; fiat_p521_uint1 x1440; uint32_t x1441; fiat_p521_uint1 x1442; uint32_t x1443; fiat_p521_uint1 x1444; uint32_t x1445; fiat_p521_uint1 x1446; uint32_t x1447; fiat_p521_uint1 x1448; uint32_t x1449; fiat_p521_uint1 x1450; uint32_t x1451; fiat_p521_uint1 x1452; uint32_t x1453; fiat_p521_uint1 x1454; uint32_t x1455; fiat_p521_uint1 x1456; uint32_t x1457; fiat_p521_uint1 x1458; uint32_t x1459; uint32_t x1460; uint32_t x1461; uint32_t x1462; uint32_t x1463; uint32_t x1464; uint32_t x1465; uint32_t x1466; uint32_t x1467; uint32_t x1468; uint32_t x1469; uint32_t x1470; uint32_t x1471; uint32_t x1472; uint32_t x1473; uint32_t x1474; uint32_t x1475; uint32_t x1476; uint32_t x1477; uint32_t x1478; uint32_t x1479; uint32_t x1480; uint32_t x1481; uint32_t x1482; uint32_t x1483; uint32_t x1484; uint32_t x1485; uint32_t x1486; uint32_t x1487; uint32_t x1488; uint32_t x1489; uint32_t x1490; uint32_t x1491; uint32_t x1492; uint32_t x1493; fiat_p521_uint1 x1494; uint32_t x1495; fiat_p521_uint1 x1496; uint32_t x1497; fiat_p521_uint1 x1498; uint32_t x1499; fiat_p521_uint1 x1500; uint32_t x1501; fiat_p521_uint1 x1502; uint32_t x1503; fiat_p521_uint1 x1504; uint32_t x1505; fiat_p521_uint1 x1506; uint32_t x1507; fiat_p521_uint1 x1508; uint32_t x1509; fiat_p521_uint1 x1510; uint32_t x1511; fiat_p521_uint1 x1512; uint32_t x1513; fiat_p521_uint1 x1514; uint32_t x1515; fiat_p521_uint1 x1516; uint32_t x1517; fiat_p521_uint1 x1518; uint32_t x1519; fiat_p521_uint1 x1520; uint32_t x1521; fiat_p521_uint1 x1522; uint32_t x1523; fiat_p521_uint1 x1524; uint32_t x1525; fiat_p521_uint1 x1526; uint32_t x1527; fiat_p521_uint1 x1528; uint32_t x1529; fiat_p521_uint1 x1530; uint32_t x1531; fiat_p521_uint1 x1532; uint32_t x1533; fiat_p521_uint1 x1534; uint32_t x1535; fiat_p521_uint1 x1536; uint32_t x1537; fiat_p521_uint1 x1538; uint32_t x1539; fiat_p521_uint1 x1540; uint32_t x1541; fiat_p521_uint1 x1542; uint32_t x1543; fiat_p521_uint1 x1544; uint32_t x1545; fiat_p521_uint1 x1546; uint32_t x1547; fiat_p521_uint1 x1548; uint32_t x1549; fiat_p521_uint1 x1550; uint32_t x1551; fiat_p521_uint1 x1552; uint32_t x1553; fiat_p521_uint1 x1554; uint32_t x1555; fiat_p521_uint1 x1556; uint32_t x1557; fiat_p521_uint1 x1558; uint32_t x1559; uint32_t x1560; uint32_t x1561; fiat_p521_uint1 x1562; uint32_t x1563; fiat_p521_uint1 x1564; uint32_t x1565; fiat_p521_uint1 x1566; uint32_t x1567; fiat_p521_uint1 x1568; uint32_t x1569; fiat_p521_uint1 x1570; uint32_t x1571; fiat_p521_uint1 x1572; uint32_t x1573; fiat_p521_uint1 x1574; uint32_t x1575; fiat_p521_uint1 x1576; uint32_t x1577; fiat_p521_uint1 x1578; uint32_t x1579; fiat_p521_uint1 x1580; uint32_t x1581; fiat_p521_uint1 x1582; uint32_t x1583; fiat_p521_uint1 x1584; uint32_t x1585; fiat_p521_uint1 x1586; uint32_t x1587; fiat_p521_uint1 x1588; uint32_t x1589; fiat_p521_uint1 x1590; uint32_t x1591; uint32_t x1592; uint32_t x1593; uint32_t x1594; uint32_t x1595; uint32_t x1596; uint32_t x1597; uint32_t x1598; uint32_t x1599; uint32_t x1600; uint32_t x1601; uint32_t x1602; uint32_t x1603; uint32_t x1604; uint32_t x1605; uint32_t x1606; uint32_t x1607; uint32_t x1608; uint32_t x1609; uint32_t x1610; uint32_t x1611; uint32_t x1612; uint32_t x1613; uint32_t x1614; uint32_t x1615; uint32_t x1616; uint32_t x1617; uint32_t x1618; uint32_t x1619; uint32_t x1620; uint32_t x1621; uint32_t x1622; uint32_t x1623; uint32_t x1624; uint32_t x1625; fiat_p521_uint1 x1626; uint32_t x1627; fiat_p521_uint1 x1628; uint32_t x1629; fiat_p521_uint1 x1630; uint32_t x1631; fiat_p521_uint1 x1632; uint32_t x1633; fiat_p521_uint1 x1634; uint32_t x1635; fiat_p521_uint1 x1636; uint32_t x1637; fiat_p521_uint1 x1638; uint32_t x1639; fiat_p521_uint1 x1640; uint32_t x1641; fiat_p521_uint1 x1642; uint32_t x1643; fiat_p521_uint1 x1644; uint32_t x1645; fiat_p521_uint1 x1646; uint32_t x1647; fiat_p521_uint1 x1648; uint32_t x1649; fiat_p521_uint1 x1650; uint32_t x1651; fiat_p521_uint1 x1652; uint32_t x1653; fiat_p521_uint1 x1654; uint32_t x1655; fiat_p521_uint1 x1656; uint32_t x1657; fiat_p521_uint1 x1658; uint32_t x1659; fiat_p521_uint1 x1660; uint32_t x1661; fiat_p521_uint1 x1662; uint32_t x1663; fiat_p521_uint1 x1664; uint32_t x1665; fiat_p521_uint1 x1666; uint32_t x1667; fiat_p521_uint1 x1668; uint32_t x1669; fiat_p521_uint1 x1670; uint32_t x1671; fiat_p521_uint1 x1672; uint32_t x1673; fiat_p521_uint1 x1674; uint32_t x1675; fiat_p521_uint1 x1676; uint32_t x1677; fiat_p521_uint1 x1678; uint32_t x1679; fiat_p521_uint1 x1680; uint32_t x1681; fiat_p521_uint1 x1682; uint32_t x1683; fiat_p521_uint1 x1684; uint32_t x1685; fiat_p521_uint1 x1686; uint32_t x1687; fiat_p521_uint1 x1688; uint32_t x1689; fiat_p521_uint1 x1690; uint32_t x1691; uint32_t x1692; uint32_t x1693; fiat_p521_uint1 x1694; uint32_t x1695; fiat_p521_uint1 x1696; uint32_t x1697; fiat_p521_uint1 x1698; uint32_t x1699; fiat_p521_uint1 x1700; uint32_t x1701; fiat_p521_uint1 x1702; uint32_t x1703; fiat_p521_uint1 x1704; uint32_t x1705; fiat_p521_uint1 x1706; uint32_t x1707; fiat_p521_uint1 x1708; uint32_t x1709; fiat_p521_uint1 x1710; uint32_t x1711; fiat_p521_uint1 x1712; uint32_t x1713; fiat_p521_uint1 x1714; uint32_t x1715; fiat_p521_uint1 x1716; uint32_t x1717; fiat_p521_uint1 x1718; uint32_t x1719; fiat_p521_uint1 x1720; uint32_t x1721; fiat_p521_uint1 x1722; uint32_t x1723; uint32_t x1724; uint32_t x1725; uint32_t x1726; uint32_t x1727; uint32_t x1728; uint32_t x1729; uint32_t x1730; uint32_t x1731; uint32_t x1732; uint32_t x1733; uint32_t x1734; uint32_t x1735; uint32_t x1736; uint32_t x1737; uint32_t x1738; uint32_t x1739; uint32_t x1740; uint32_t x1741; uint32_t x1742; uint32_t x1743; uint32_t x1744; uint32_t x1745; uint32_t x1746; uint32_t x1747; uint32_t x1748; uint32_t x1749; uint32_t x1750; uint32_t x1751; uint32_t x1752; uint32_t x1753; uint32_t x1754; uint32_t x1755; uint32_t x1756; uint32_t x1757; fiat_p521_uint1 x1758; uint32_t x1759; fiat_p521_uint1 x1760; uint32_t x1761; fiat_p521_uint1 x1762; uint32_t x1763; fiat_p521_uint1 x1764; uint32_t x1765; fiat_p521_uint1 x1766; uint32_t x1767; fiat_p521_uint1 x1768; uint32_t x1769; fiat_p521_uint1 x1770; uint32_t x1771; fiat_p521_uint1 x1772; uint32_t x1773; fiat_p521_uint1 x1774; uint32_t x1775; fiat_p521_uint1 x1776; uint32_t x1777; fiat_p521_uint1 x1778; uint32_t x1779; fiat_p521_uint1 x1780; uint32_t x1781; fiat_p521_uint1 x1782; uint32_t x1783; fiat_p521_uint1 x1784; uint32_t x1785; fiat_p521_uint1 x1786; uint32_t x1787; fiat_p521_uint1 x1788; uint32_t x1789; fiat_p521_uint1 x1790; uint32_t x1791; fiat_p521_uint1 x1792; uint32_t x1793; fiat_p521_uint1 x1794; uint32_t x1795; fiat_p521_uint1 x1796; uint32_t x1797; fiat_p521_uint1 x1798; uint32_t x1799; fiat_p521_uint1 x1800; uint32_t x1801; fiat_p521_uint1 x1802; uint32_t x1803; fiat_p521_uint1 x1804; uint32_t x1805; fiat_p521_uint1 x1806; uint32_t x1807; fiat_p521_uint1 x1808; uint32_t x1809; fiat_p521_uint1 x1810; uint32_t x1811; fiat_p521_uint1 x1812; uint32_t x1813; fiat_p521_uint1 x1814; uint32_t x1815; fiat_p521_uint1 x1816; uint32_t x1817; fiat_p521_uint1 x1818; uint32_t x1819; fiat_p521_uint1 x1820; uint32_t x1821; fiat_p521_uint1 x1822; uint32_t x1823; uint32_t x1824; uint32_t x1825; fiat_p521_uint1 x1826; uint32_t x1827; fiat_p521_uint1 x1828; uint32_t x1829; fiat_p521_uint1 x1830; uint32_t x1831; fiat_p521_uint1 x1832; uint32_t x1833; fiat_p521_uint1 x1834; uint32_t x1835; fiat_p521_uint1 x1836; uint32_t x1837; fiat_p521_uint1 x1838; uint32_t x1839; fiat_p521_uint1 x1840; uint32_t x1841; fiat_p521_uint1 x1842; uint32_t x1843; fiat_p521_uint1 x1844; uint32_t x1845; fiat_p521_uint1 x1846; uint32_t x1847; fiat_p521_uint1 x1848; uint32_t x1849; fiat_p521_uint1 x1850; uint32_t x1851; fiat_p521_uint1 x1852; uint32_t x1853; fiat_p521_uint1 x1854; uint32_t x1855; uint32_t x1856; uint32_t x1857; uint32_t x1858; uint32_t x1859; uint32_t x1860; uint32_t x1861; uint32_t x1862; uint32_t x1863; uint32_t x1864; uint32_t x1865; uint32_t x1866; uint32_t x1867; uint32_t x1868; uint32_t x1869; uint32_t x1870; uint32_t x1871; uint32_t x1872; uint32_t x1873; uint32_t x1874; uint32_t x1875; uint32_t x1876; uint32_t x1877; uint32_t x1878; uint32_t x1879; uint32_t x1880; uint32_t x1881; uint32_t x1882; uint32_t x1883; uint32_t x1884; uint32_t x1885; uint32_t x1886; uint32_t x1887; uint32_t x1888; uint32_t x1889; fiat_p521_uint1 x1890; uint32_t x1891; fiat_p521_uint1 x1892; uint32_t x1893; fiat_p521_uint1 x1894; uint32_t x1895; fiat_p521_uint1 x1896; uint32_t x1897; fiat_p521_uint1 x1898; uint32_t x1899; fiat_p521_uint1 x1900; uint32_t x1901; fiat_p521_uint1 x1902; uint32_t x1903; fiat_p521_uint1 x1904; uint32_t x1905; fiat_p521_uint1 x1906; uint32_t x1907; fiat_p521_uint1 x1908; uint32_t x1909; fiat_p521_uint1 x1910; uint32_t x1911; fiat_p521_uint1 x1912; uint32_t x1913; fiat_p521_uint1 x1914; uint32_t x1915; fiat_p521_uint1 x1916; uint32_t x1917; fiat_p521_uint1 x1918; uint32_t x1919; fiat_p521_uint1 x1920; uint32_t x1921; fiat_p521_uint1 x1922; uint32_t x1923; fiat_p521_uint1 x1924; uint32_t x1925; fiat_p521_uint1 x1926; uint32_t x1927; fiat_p521_uint1 x1928; uint32_t x1929; fiat_p521_uint1 x1930; uint32_t x1931; fiat_p521_uint1 x1932; uint32_t x1933; fiat_p521_uint1 x1934; uint32_t x1935; fiat_p521_uint1 x1936; uint32_t x1937; fiat_p521_uint1 x1938; uint32_t x1939; fiat_p521_uint1 x1940; uint32_t x1941; fiat_p521_uint1 x1942; uint32_t x1943; fiat_p521_uint1 x1944; uint32_t x1945; fiat_p521_uint1 x1946; uint32_t x1947; fiat_p521_uint1 x1948; uint32_t x1949; fiat_p521_uint1 x1950; uint32_t x1951; fiat_p521_uint1 x1952; uint32_t x1953; fiat_p521_uint1 x1954; uint32_t x1955; uint32_t x1956; uint32_t x1957; fiat_p521_uint1 x1958; uint32_t x1959; fiat_p521_uint1 x1960; uint32_t x1961; fiat_p521_uint1 x1962; uint32_t x1963; fiat_p521_uint1 x1964; uint32_t x1965; fiat_p521_uint1 x1966; uint32_t x1967; fiat_p521_uint1 x1968; uint32_t x1969; fiat_p521_uint1 x1970; uint32_t x1971; fiat_p521_uint1 x1972; uint32_t x1973; fiat_p521_uint1 x1974; uint32_t x1975; fiat_p521_uint1 x1976; uint32_t x1977; fiat_p521_uint1 x1978; uint32_t x1979; fiat_p521_uint1 x1980; uint32_t x1981; fiat_p521_uint1 x1982; uint32_t x1983; fiat_p521_uint1 x1984; uint32_t x1985; fiat_p521_uint1 x1986; uint32_t x1987; uint32_t x1988; uint32_t x1989; uint32_t x1990; uint32_t x1991; uint32_t x1992; uint32_t x1993; uint32_t x1994; uint32_t x1995; uint32_t x1996; uint32_t x1997; uint32_t x1998; uint32_t x1999; uint32_t x2000; uint32_t x2001; uint32_t x2002; uint32_t x2003; uint32_t x2004; uint32_t x2005; uint32_t x2006; uint32_t x2007; uint32_t x2008; uint32_t x2009; uint32_t x2010; uint32_t x2011; uint32_t x2012; uint32_t x2013; uint32_t x2014; uint32_t x2015; uint32_t x2016; uint32_t x2017; uint32_t x2018; uint32_t x2019; uint32_t x2020; uint32_t x2021; fiat_p521_uint1 x2022; uint32_t x2023; fiat_p521_uint1 x2024; uint32_t x2025; fiat_p521_uint1 x2026; uint32_t x2027; fiat_p521_uint1 x2028; uint32_t x2029; fiat_p521_uint1 x2030; uint32_t x2031; fiat_p521_uint1 x2032; uint32_t x2033; fiat_p521_uint1 x2034; uint32_t x2035; fiat_p521_uint1 x2036; uint32_t x2037; fiat_p521_uint1 x2038; uint32_t x2039; fiat_p521_uint1 x2040; uint32_t x2041; fiat_p521_uint1 x2042; uint32_t x2043; fiat_p521_uint1 x2044; uint32_t x2045; fiat_p521_uint1 x2046; uint32_t x2047; fiat_p521_uint1 x2048; uint32_t x2049; fiat_p521_uint1 x2050; uint32_t x2051; fiat_p521_uint1 x2052; uint32_t x2053; fiat_p521_uint1 x2054; uint32_t x2055; fiat_p521_uint1 x2056; uint32_t x2057; fiat_p521_uint1 x2058; uint32_t x2059; fiat_p521_uint1 x2060; uint32_t x2061; fiat_p521_uint1 x2062; uint32_t x2063; fiat_p521_uint1 x2064; uint32_t x2065; fiat_p521_uint1 x2066; uint32_t x2067; fiat_p521_uint1 x2068; uint32_t x2069; fiat_p521_uint1 x2070; uint32_t x2071; fiat_p521_uint1 x2072; uint32_t x2073; fiat_p521_uint1 x2074; uint32_t x2075; fiat_p521_uint1 x2076; uint32_t x2077; fiat_p521_uint1 x2078; uint32_t x2079; fiat_p521_uint1 x2080; uint32_t x2081; fiat_p521_uint1 x2082; uint32_t x2083; fiat_p521_uint1 x2084; uint32_t x2085; fiat_p521_uint1 x2086; uint32_t x2087; uint32_t x2088; fiat_p521_uint1 x2089; uint32_t x2090; fiat_p521_uint1 x2091; uint32_t x2092; fiat_p521_uint1 x2093; uint32_t x2094; fiat_p521_uint1 x2095; uint32_t x2096; fiat_p521_uint1 x2097; uint32_t x2098; fiat_p521_uint1 x2099; uint32_t x2100; fiat_p521_uint1 x2101; uint32_t x2102; fiat_p521_uint1 x2103; uint32_t x2104; fiat_p521_uint1 x2105; uint32_t x2106; fiat_p521_uint1 x2107; uint32_t x2108; fiat_p521_uint1 x2109; uint32_t x2110; fiat_p521_uint1 x2111; uint32_t x2112; fiat_p521_uint1 x2113; uint32_t x2114; fiat_p521_uint1 x2115; uint32_t x2116; fiat_p521_uint1 x2117; uint32_t x2118; fiat_p521_uint1 x2119; uint32_t x2120; fiat_p521_uint1 x2121; uint32_t x2122; fiat_p521_uint1 x2123; uint32_t x2124; uint32_t x2125; uint32_t x2126; uint32_t x2127; uint32_t x2128; uint32_t x2129; uint32_t x2130; uint32_t x2131; uint32_t x2132; uint32_t x2133; uint32_t x2134; uint32_t x2135; uint32_t x2136; uint32_t x2137; uint32_t x2138; uint32_t x2139; uint32_t x2140; fiat_p521_mulx_u32(&x1, &x2, (arg1[0]), UINT16_C(0x4000)); fiat_p521_mulx_u32(&x3, &x4, (arg1[1]), UINT16_C(0x4000)); fiat_p521_addcarryx_u32(&x5, &x6, 0x0, x2, x3); fiat_p521_mulx_u32(&x7, &x8, x1, UINT16_C(0x1ff)); fiat_p521_mulx_u32(&x9, &x10, x1, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x11, &x12, x1, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x13, &x14, x1, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x15, &x16, x1, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x17, &x18, x1, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x19, &x20, x1, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x21, &x22, x1, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x23, &x24, x1, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x25, &x26, x1, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x27, &x28, x1, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x29, &x30, x1, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x31, &x32, x1, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x33, &x34, x1, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x35, &x36, x1, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x37, &x38, x1, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x39, &x40, x1, UINT32_C(0xffffffff)); fiat_p521_addcarryx_u32(&x41, &x42, 0x0, x40, x37); fiat_p521_addcarryx_u32(&x43, &x44, x42, x38, x35); fiat_p521_addcarryx_u32(&x45, &x46, x44, x36, x33); fiat_p521_addcarryx_u32(&x47, &x48, x46, x34, x31); fiat_p521_addcarryx_u32(&x49, &x50, x48, x32, x29); fiat_p521_addcarryx_u32(&x51, &x52, x50, x30, x27); fiat_p521_addcarryx_u32(&x53, &x54, x52, x28, x25); fiat_p521_addcarryx_u32(&x55, &x56, x54, x26, x23); fiat_p521_addcarryx_u32(&x57, &x58, x56, x24, x21); fiat_p521_addcarryx_u32(&x59, &x60, x58, x22, x19); fiat_p521_addcarryx_u32(&x61, &x62, x60, x20, x17); fiat_p521_addcarryx_u32(&x63, &x64, x62, x18, x15); fiat_p521_addcarryx_u32(&x65, &x66, x64, x16, x13); fiat_p521_addcarryx_u32(&x67, &x68, x66, x14, x11); fiat_p521_addcarryx_u32(&x69, &x70, x68, x12, x9); fiat_p521_addcarryx_u32(&x71, &x72, x70, x10, x7); fiat_p521_addcarryx_u32(&x73, &x74, 0x0, x1, x39); fiat_p521_addcarryx_u32(&x75, &x76, x74, x5, x41); fiat_p521_addcarryx_u32(&x77, &x78, x76, (x6 + x4), x43); fiat_p521_addcarryx_u32(&x79, &x80, x78, 0x0, x45); fiat_p521_addcarryx_u32(&x81, &x82, x80, 0x0, x47); fiat_p521_addcarryx_u32(&x83, &x84, x82, 0x0, x49); fiat_p521_addcarryx_u32(&x85, &x86, x84, 0x0, x51); fiat_p521_addcarryx_u32(&x87, &x88, x86, 0x0, x53); fiat_p521_addcarryx_u32(&x89, &x90, x88, 0x0, x55); fiat_p521_addcarryx_u32(&x91, &x92, x90, 0x0, x57); fiat_p521_addcarryx_u32(&x93, &x94, x92, 0x0, x59); fiat_p521_addcarryx_u32(&x95, &x96, x94, 0x0, x61); fiat_p521_addcarryx_u32(&x97, &x98, x96, 0x0, x63); fiat_p521_addcarryx_u32(&x99, &x100, x98, 0x0, x65); fiat_p521_addcarryx_u32(&x101, &x102, x100, 0x0, x67); fiat_p521_addcarryx_u32(&x103, &x104, x102, 0x0, x69); fiat_p521_addcarryx_u32(&x105, &x106, x104, 0x0, x71); fiat_p521_mulx_u32(&x107, &x108, (arg1[2]), UINT16_C(0x4000)); fiat_p521_addcarryx_u32(&x109, &x110, 0x0, x77, x107); fiat_p521_addcarryx_u32(&x111, &x112, x110, x79, x108); fiat_p521_addcarryx_u32(&x113, &x114, x112, x81, 0x0); fiat_p521_addcarryx_u32(&x115, &x116, x114, x83, 0x0); fiat_p521_addcarryx_u32(&x117, &x118, x116, x85, 0x0); fiat_p521_addcarryx_u32(&x119, &x120, x118, x87, 0x0); fiat_p521_addcarryx_u32(&x121, &x122, x120, x89, 0x0); fiat_p521_addcarryx_u32(&x123, &x124, x122, x91, 0x0); fiat_p521_addcarryx_u32(&x125, &x126, x124, x93, 0x0); fiat_p521_addcarryx_u32(&x127, &x128, x126, x95, 0x0); fiat_p521_addcarryx_u32(&x129, &x130, x128, x97, 0x0); fiat_p521_addcarryx_u32(&x131, &x132, x130, x99, 0x0); fiat_p521_addcarryx_u32(&x133, &x134, x132, x101, 0x0); fiat_p521_addcarryx_u32(&x135, &x136, x134, x103, 0x0); fiat_p521_addcarryx_u32(&x137, &x138, x136, x105, 0x0); fiat_p521_mulx_u32(&x139, &x140, x75, UINT16_C(0x1ff)); fiat_p521_mulx_u32(&x141, &x142, x75, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x143, &x144, x75, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x145, &x146, x75, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x147, &x148, x75, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x149, &x150, x75, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x151, &x152, x75, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x153, &x154, x75, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x155, &x156, x75, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x157, &x158, x75, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x159, &x160, x75, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x161, &x162, x75, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x163, &x164, x75, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x165, &x166, x75, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x167, &x168, x75, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x169, &x170, x75, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x171, &x172, x75, UINT32_C(0xffffffff)); fiat_p521_addcarryx_u32(&x173, &x174, 0x0, x172, x169); fiat_p521_addcarryx_u32(&x175, &x176, x174, x170, x167); fiat_p521_addcarryx_u32(&x177, &x178, x176, x168, x165); fiat_p521_addcarryx_u32(&x179, &x180, x178, x166, x163); fiat_p521_addcarryx_u32(&x181, &x182, x180, x164, x161); fiat_p521_addcarryx_u32(&x183, &x184, x182, x162, x159); fiat_p521_addcarryx_u32(&x185, &x186, x184, x160, x157); fiat_p521_addcarryx_u32(&x187, &x188, x186, x158, x155); fiat_p521_addcarryx_u32(&x189, &x190, x188, x156, x153); fiat_p521_addcarryx_u32(&x191, &x192, x190, x154, x151); fiat_p521_addcarryx_u32(&x193, &x194, x192, x152, x149); fiat_p521_addcarryx_u32(&x195, &x196, x194, x150, x147); fiat_p521_addcarryx_u32(&x197, &x198, x196, x148, x145); fiat_p521_addcarryx_u32(&x199, &x200, x198, x146, x143); fiat_p521_addcarryx_u32(&x201, &x202, x200, x144, x141); fiat_p521_addcarryx_u32(&x203, &x204, x202, x142, x139); fiat_p521_addcarryx_u32(&x205, &x206, 0x0, x75, x171); fiat_p521_addcarryx_u32(&x207, &x208, x206, x109, x173); fiat_p521_addcarryx_u32(&x209, &x210, x208, x111, x175); fiat_p521_addcarryx_u32(&x211, &x212, x210, x113, x177); fiat_p521_addcarryx_u32(&x213, &x214, x212, x115, x179); fiat_p521_addcarryx_u32(&x215, &x216, x214, x117, x181); fiat_p521_addcarryx_u32(&x217, &x218, x216, x119, x183); fiat_p521_addcarryx_u32(&x219, &x220, x218, x121, x185); fiat_p521_addcarryx_u32(&x221, &x222, x220, x123, x187); fiat_p521_addcarryx_u32(&x223, &x224, x222, x125, x189); fiat_p521_addcarryx_u32(&x225, &x226, x224, x127, x191); fiat_p521_addcarryx_u32(&x227, &x228, x226, x129, x193); fiat_p521_addcarryx_u32(&x229, &x230, x228, x131, x195); fiat_p521_addcarryx_u32(&x231, &x232, x230, x133, x197); fiat_p521_addcarryx_u32(&x233, &x234, x232, x135, x199); fiat_p521_addcarryx_u32(&x235, &x236, x234, x137, x201); fiat_p521_addcarryx_u32(&x237, &x238, x236, (x138 + (x106 + (x72 + x8))), x203); fiat_p521_mulx_u32(&x239, &x240, (arg1[3]), UINT16_C(0x4000)); fiat_p521_addcarryx_u32(&x241, &x242, 0x0, x209, x239); fiat_p521_addcarryx_u32(&x243, &x244, x242, x211, x240); fiat_p521_addcarryx_u32(&x245, &x246, x244, x213, 0x0); fiat_p521_addcarryx_u32(&x247, &x248, x246, x215, 0x0); fiat_p521_addcarryx_u32(&x249, &x250, x248, x217, 0x0); fiat_p521_addcarryx_u32(&x251, &x252, x250, x219, 0x0); fiat_p521_addcarryx_u32(&x253, &x254, x252, x221, 0x0); fiat_p521_addcarryx_u32(&x255, &x256, x254, x223, 0x0); fiat_p521_addcarryx_u32(&x257, &x258, x256, x225, 0x0); fiat_p521_addcarryx_u32(&x259, &x260, x258, x227, 0x0); fiat_p521_addcarryx_u32(&x261, &x262, x260, x229, 0x0); fiat_p521_addcarryx_u32(&x263, &x264, x262, x231, 0x0); fiat_p521_addcarryx_u32(&x265, &x266, x264, x233, 0x0); fiat_p521_addcarryx_u32(&x267, &x268, x266, x235, 0x0); fiat_p521_addcarryx_u32(&x269, &x270, x268, x237, 0x0); fiat_p521_mulx_u32(&x271, &x272, x207, UINT16_C(0x1ff)); fiat_p521_mulx_u32(&x273, &x274, x207, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x275, &x276, x207, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x277, &x278, x207, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x279, &x280, x207, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x281, &x282, x207, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x283, &x284, x207, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x285, &x286, x207, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x287, &x288, x207, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x289, &x290, x207, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x291, &x292, x207, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x293, &x294, x207, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x295, &x296, x207, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x297, &x298, x207, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x299, &x300, x207, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x301, &x302, x207, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x303, &x304, x207, UINT32_C(0xffffffff)); fiat_p521_addcarryx_u32(&x305, &x306, 0x0, x304, x301); fiat_p521_addcarryx_u32(&x307, &x308, x306, x302, x299); fiat_p521_addcarryx_u32(&x309, &x310, x308, x300, x297); fiat_p521_addcarryx_u32(&x311, &x312, x310, x298, x295); fiat_p521_addcarryx_u32(&x313, &x314, x312, x296, x293); fiat_p521_addcarryx_u32(&x315, &x316, x314, x294, x291); fiat_p521_addcarryx_u32(&x317, &x318, x316, x292, x289); fiat_p521_addcarryx_u32(&x319, &x320, x318, x290, x287); fiat_p521_addcarryx_u32(&x321, &x322, x320, x288, x285); fiat_p521_addcarryx_u32(&x323, &x324, x322, x286, x283); fiat_p521_addcarryx_u32(&x325, &x326, x324, x284, x281); fiat_p521_addcarryx_u32(&x327, &x328, x326, x282, x279); fiat_p521_addcarryx_u32(&x329, &x330, x328, x280, x277); fiat_p521_addcarryx_u32(&x331, &x332, x330, x278, x275); fiat_p521_addcarryx_u32(&x333, &x334, x332, x276, x273); fiat_p521_addcarryx_u32(&x335, &x336, x334, x274, x271); fiat_p521_addcarryx_u32(&x337, &x338, 0x0, x207, x303); fiat_p521_addcarryx_u32(&x339, &x340, x338, x241, x305); fiat_p521_addcarryx_u32(&x341, &x342, x340, x243, x307); fiat_p521_addcarryx_u32(&x343, &x344, x342, x245, x309); fiat_p521_addcarryx_u32(&x345, &x346, x344, x247, x311); fiat_p521_addcarryx_u32(&x347, &x348, x346, x249, x313); fiat_p521_addcarryx_u32(&x349, &x350, x348, x251, x315); fiat_p521_addcarryx_u32(&x351, &x352, x350, x253, x317); fiat_p521_addcarryx_u32(&x353, &x354, x352, x255, x319); fiat_p521_addcarryx_u32(&x355, &x356, x354, x257, x321); fiat_p521_addcarryx_u32(&x357, &x358, x356, x259, x323); fiat_p521_addcarryx_u32(&x359, &x360, x358, x261, x325); fiat_p521_addcarryx_u32(&x361, &x362, x360, x263, x327); fiat_p521_addcarryx_u32(&x363, &x364, x362, x265, x329); fiat_p521_addcarryx_u32(&x365, &x366, x364, x267, x331); fiat_p521_addcarryx_u32(&x367, &x368, x366, x269, x333); fiat_p521_addcarryx_u32(&x369, &x370, x368, (x270 + (x238 + (x204 + x140))), x335); fiat_p521_mulx_u32(&x371, &x372, (arg1[4]), UINT16_C(0x4000)); fiat_p521_addcarryx_u32(&x373, &x374, 0x0, x341, x371); fiat_p521_addcarryx_u32(&x375, &x376, x374, x343, x372); fiat_p521_addcarryx_u32(&x377, &x378, x376, x345, 0x0); fiat_p521_addcarryx_u32(&x379, &x380, x378, x347, 0x0); fiat_p521_addcarryx_u32(&x381, &x382, x380, x349, 0x0); fiat_p521_addcarryx_u32(&x383, &x384, x382, x351, 0x0); fiat_p521_addcarryx_u32(&x385, &x386, x384, x353, 0x0); fiat_p521_addcarryx_u32(&x387, &x388, x386, x355, 0x0); fiat_p521_addcarryx_u32(&x389, &x390, x388, x357, 0x0); fiat_p521_addcarryx_u32(&x391, &x392, x390, x359, 0x0); fiat_p521_addcarryx_u32(&x393, &x394, x392, x361, 0x0); fiat_p521_addcarryx_u32(&x395, &x396, x394, x363, 0x0); fiat_p521_addcarryx_u32(&x397, &x398, x396, x365, 0x0); fiat_p521_addcarryx_u32(&x399, &x400, x398, x367, 0x0); fiat_p521_addcarryx_u32(&x401, &x402, x400, x369, 0x0); fiat_p521_mulx_u32(&x403, &x404, x339, UINT16_C(0x1ff)); fiat_p521_mulx_u32(&x405, &x406, x339, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x407, &x408, x339, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x409, &x410, x339, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x411, &x412, x339, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x413, &x414, x339, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x415, &x416, x339, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x417, &x418, x339, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x419, &x420, x339, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x421, &x422, x339, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x423, &x424, x339, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x425, &x426, x339, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x427, &x428, x339, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x429, &x430, x339, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x431, &x432, x339, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x433, &x434, x339, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x435, &x436, x339, UINT32_C(0xffffffff)); fiat_p521_addcarryx_u32(&x437, &x438, 0x0, x436, x433); fiat_p521_addcarryx_u32(&x439, &x440, x438, x434, x431); fiat_p521_addcarryx_u32(&x441, &x442, x440, x432, x429); fiat_p521_addcarryx_u32(&x443, &x444, x442, x430, x427); fiat_p521_addcarryx_u32(&x445, &x446, x444, x428, x425); fiat_p521_addcarryx_u32(&x447, &x448, x446, x426, x423); fiat_p521_addcarryx_u32(&x449, &x450, x448, x424, x421); fiat_p521_addcarryx_u32(&x451, &x452, x450, x422, x419); fiat_p521_addcarryx_u32(&x453, &x454, x452, x420, x417); fiat_p521_addcarryx_u32(&x455, &x456, x454, x418, x415); fiat_p521_addcarryx_u32(&x457, &x458, x456, x416, x413); fiat_p521_addcarryx_u32(&x459, &x460, x458, x414, x411); fiat_p521_addcarryx_u32(&x461, &x462, x460, x412, x409); fiat_p521_addcarryx_u32(&x463, &x464, x462, x410, x407); fiat_p521_addcarryx_u32(&x465, &x466, x464, x408, x405); fiat_p521_addcarryx_u32(&x467, &x468, x466, x406, x403); fiat_p521_addcarryx_u32(&x469, &x470, 0x0, x339, x435); fiat_p521_addcarryx_u32(&x471, &x472, x470, x373, x437); fiat_p521_addcarryx_u32(&x473, &x474, x472, x375, x439); fiat_p521_addcarryx_u32(&x475, &x476, x474, x377, x441); fiat_p521_addcarryx_u32(&x477, &x478, x476, x379, x443); fiat_p521_addcarryx_u32(&x479, &x480, x478, x381, x445); fiat_p521_addcarryx_u32(&x481, &x482, x480, x383, x447); fiat_p521_addcarryx_u32(&x483, &x484, x482, x385, x449); fiat_p521_addcarryx_u32(&x485, &x486, x484, x387, x451); fiat_p521_addcarryx_u32(&x487, &x488, x486, x389, x453); fiat_p521_addcarryx_u32(&x489, &x490, x488, x391, x455); fiat_p521_addcarryx_u32(&x491, &x492, x490, x393, x457); fiat_p521_addcarryx_u32(&x493, &x494, x492, x395, x459); fiat_p521_addcarryx_u32(&x495, &x496, x494, x397, x461); fiat_p521_addcarryx_u32(&x497, &x498, x496, x399, x463); fiat_p521_addcarryx_u32(&x499, &x500, x498, x401, x465); fiat_p521_addcarryx_u32(&x501, &x502, x500, (x402 + (x370 + (x336 + x272))), x467); fiat_p521_mulx_u32(&x503, &x504, (arg1[5]), UINT16_C(0x4000)); fiat_p521_addcarryx_u32(&x505, &x506, 0x0, x473, x503); fiat_p521_addcarryx_u32(&x507, &x508, x506, x475, x504); fiat_p521_addcarryx_u32(&x509, &x510, x508, x477, 0x0); fiat_p521_addcarryx_u32(&x511, &x512, x510, x479, 0x0); fiat_p521_addcarryx_u32(&x513, &x514, x512, x481, 0x0); fiat_p521_addcarryx_u32(&x515, &x516, x514, x483, 0x0); fiat_p521_addcarryx_u32(&x517, &x518, x516, x485, 0x0); fiat_p521_addcarryx_u32(&x519, &x520, x518, x487, 0x0); fiat_p521_addcarryx_u32(&x521, &x522, x520, x489, 0x0); fiat_p521_addcarryx_u32(&x523, &x524, x522, x491, 0x0); fiat_p521_addcarryx_u32(&x525, &x526, x524, x493, 0x0); fiat_p521_addcarryx_u32(&x527, &x528, x526, x495, 0x0); fiat_p521_addcarryx_u32(&x529, &x530, x528, x497, 0x0); fiat_p521_addcarryx_u32(&x531, &x532, x530, x499, 0x0); fiat_p521_addcarryx_u32(&x533, &x534, x532, x501, 0x0); fiat_p521_mulx_u32(&x535, &x536, x471, UINT16_C(0x1ff)); fiat_p521_mulx_u32(&x537, &x538, x471, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x539, &x540, x471, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x541, &x542, x471, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x543, &x544, x471, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x545, &x546, x471, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x547, &x548, x471, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x549, &x550, x471, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x551, &x552, x471, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x553, &x554, x471, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x555, &x556, x471, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x557, &x558, x471, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x559, &x560, x471, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x561, &x562, x471, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x563, &x564, x471, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x565, &x566, x471, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x567, &x568, x471, UINT32_C(0xffffffff)); fiat_p521_addcarryx_u32(&x569, &x570, 0x0, x568, x565); fiat_p521_addcarryx_u32(&x571, &x572, x570, x566, x563); fiat_p521_addcarryx_u32(&x573, &x574, x572, x564, x561); fiat_p521_addcarryx_u32(&x575, &x576, x574, x562, x559); fiat_p521_addcarryx_u32(&x577, &x578, x576, x560, x557); fiat_p521_addcarryx_u32(&x579, &x580, x578, x558, x555); fiat_p521_addcarryx_u32(&x581, &x582, x580, x556, x553); fiat_p521_addcarryx_u32(&x583, &x584, x582, x554, x551); fiat_p521_addcarryx_u32(&x585, &x586, x584, x552, x549); fiat_p521_addcarryx_u32(&x587, &x588, x586, x550, x547); fiat_p521_addcarryx_u32(&x589, &x590, x588, x548, x545); fiat_p521_addcarryx_u32(&x591, &x592, x590, x546, x543); fiat_p521_addcarryx_u32(&x593, &x594, x592, x544, x541); fiat_p521_addcarryx_u32(&x595, &x596, x594, x542, x539); fiat_p521_addcarryx_u32(&x597, &x598, x596, x540, x537); fiat_p521_addcarryx_u32(&x599, &x600, x598, x538, x535); fiat_p521_addcarryx_u32(&x601, &x602, 0x0, x471, x567); fiat_p521_addcarryx_u32(&x603, &x604, x602, x505, x569); fiat_p521_addcarryx_u32(&x605, &x606, x604, x507, x571); fiat_p521_addcarryx_u32(&x607, &x608, x606, x509, x573); fiat_p521_addcarryx_u32(&x609, &x610, x608, x511, x575); fiat_p521_addcarryx_u32(&x611, &x612, x610, x513, x577); fiat_p521_addcarryx_u32(&x613, &x614, x612, x515, x579); fiat_p521_addcarryx_u32(&x615, &x616, x614, x517, x581); fiat_p521_addcarryx_u32(&x617, &x618, x616, x519, x583); fiat_p521_addcarryx_u32(&x619, &x620, x618, x521, x585); fiat_p521_addcarryx_u32(&x621, &x622, x620, x523, x587); fiat_p521_addcarryx_u32(&x623, &x624, x622, x525, x589); fiat_p521_addcarryx_u32(&x625, &x626, x624, x527, x591); fiat_p521_addcarryx_u32(&x627, &x628, x626, x529, x593); fiat_p521_addcarryx_u32(&x629, &x630, x628, x531, x595); fiat_p521_addcarryx_u32(&x631, &x632, x630, x533, x597); fiat_p521_addcarryx_u32(&x633, &x634, x632, (x534 + (x502 + (x468 + x404))), x599); fiat_p521_mulx_u32(&x635, &x636, (arg1[6]), UINT16_C(0x4000)); fiat_p521_addcarryx_u32(&x637, &x638, 0x0, x605, x635); fiat_p521_addcarryx_u32(&x639, &x640, x638, x607, x636); fiat_p521_addcarryx_u32(&x641, &x642, x640, x609, 0x0); fiat_p521_addcarryx_u32(&x643, &x644, x642, x611, 0x0); fiat_p521_addcarryx_u32(&x645, &x646, x644, x613, 0x0); fiat_p521_addcarryx_u32(&x647, &x648, x646, x615, 0x0); fiat_p521_addcarryx_u32(&x649, &x650, x648, x617, 0x0); fiat_p521_addcarryx_u32(&x651, &x652, x650, x619, 0x0); fiat_p521_addcarryx_u32(&x653, &x654, x652, x621, 0x0); fiat_p521_addcarryx_u32(&x655, &x656, x654, x623, 0x0); fiat_p521_addcarryx_u32(&x657, &x658, x656, x625, 0x0); fiat_p521_addcarryx_u32(&x659, &x660, x658, x627, 0x0); fiat_p521_addcarryx_u32(&x661, &x662, x660, x629, 0x0); fiat_p521_addcarryx_u32(&x663, &x664, x662, x631, 0x0); fiat_p521_addcarryx_u32(&x665, &x666, x664, x633, 0x0); fiat_p521_mulx_u32(&x667, &x668, x603, UINT16_C(0x1ff)); fiat_p521_mulx_u32(&x669, &x670, x603, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x671, &x672, x603, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x673, &x674, x603, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x675, &x676, x603, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x677, &x678, x603, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x679, &x680, x603, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x681, &x682, x603, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x683, &x684, x603, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x685, &x686, x603, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x687, &x688, x603, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x689, &x690, x603, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x691, &x692, x603, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x693, &x694, x603, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x695, &x696, x603, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x697, &x698, x603, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x699, &x700, x603, UINT32_C(0xffffffff)); fiat_p521_addcarryx_u32(&x701, &x702, 0x0, x700, x697); fiat_p521_addcarryx_u32(&x703, &x704, x702, x698, x695); fiat_p521_addcarryx_u32(&x705, &x706, x704, x696, x693); fiat_p521_addcarryx_u32(&x707, &x708, x706, x694, x691); fiat_p521_addcarryx_u32(&x709, &x710, x708, x692, x689); fiat_p521_addcarryx_u32(&x711, &x712, x710, x690, x687); fiat_p521_addcarryx_u32(&x713, &x714, x712, x688, x685); fiat_p521_addcarryx_u32(&x715, &x716, x714, x686, x683); fiat_p521_addcarryx_u32(&x717, &x718, x716, x684, x681); fiat_p521_addcarryx_u32(&x719, &x720, x718, x682, x679); fiat_p521_addcarryx_u32(&x721, &x722, x720, x680, x677); fiat_p521_addcarryx_u32(&x723, &x724, x722, x678, x675); fiat_p521_addcarryx_u32(&x725, &x726, x724, x676, x673); fiat_p521_addcarryx_u32(&x727, &x728, x726, x674, x671); fiat_p521_addcarryx_u32(&x729, &x730, x728, x672, x669); fiat_p521_addcarryx_u32(&x731, &x732, x730, x670, x667); fiat_p521_addcarryx_u32(&x733, &x734, 0x0, x603, x699); fiat_p521_addcarryx_u32(&x735, &x736, x734, x637, x701); fiat_p521_addcarryx_u32(&x737, &x738, x736, x639, x703); fiat_p521_addcarryx_u32(&x739, &x740, x738, x641, x705); fiat_p521_addcarryx_u32(&x741, &x742, x740, x643, x707); fiat_p521_addcarryx_u32(&x743, &x744, x742, x645, x709); fiat_p521_addcarryx_u32(&x745, &x746, x744, x647, x711); fiat_p521_addcarryx_u32(&x747, &x748, x746, x649, x713); fiat_p521_addcarryx_u32(&x749, &x750, x748, x651, x715); fiat_p521_addcarryx_u32(&x751, &x752, x750, x653, x717); fiat_p521_addcarryx_u32(&x753, &x754, x752, x655, x719); fiat_p521_addcarryx_u32(&x755, &x756, x754, x657, x721); fiat_p521_addcarryx_u32(&x757, &x758, x756, x659, x723); fiat_p521_addcarryx_u32(&x759, &x760, x758, x661, x725); fiat_p521_addcarryx_u32(&x761, &x762, x760, x663, x727); fiat_p521_addcarryx_u32(&x763, &x764, x762, x665, x729); fiat_p521_addcarryx_u32(&x765, &x766, x764, (x666 + (x634 + (x600 + x536))), x731); fiat_p521_mulx_u32(&x767, &x768, (arg1[7]), UINT16_C(0x4000)); fiat_p521_addcarryx_u32(&x769, &x770, 0x0, x737, x767); fiat_p521_addcarryx_u32(&x771, &x772, x770, x739, x768); fiat_p521_addcarryx_u32(&x773, &x774, x772, x741, 0x0); fiat_p521_addcarryx_u32(&x775, &x776, x774, x743, 0x0); fiat_p521_addcarryx_u32(&x777, &x778, x776, x745, 0x0); fiat_p521_addcarryx_u32(&x779, &x780, x778, x747, 0x0); fiat_p521_addcarryx_u32(&x781, &x782, x780, x749, 0x0); fiat_p521_addcarryx_u32(&x783, &x784, x782, x751, 0x0); fiat_p521_addcarryx_u32(&x785, &x786, x784, x753, 0x0); fiat_p521_addcarryx_u32(&x787, &x788, x786, x755, 0x0); fiat_p521_addcarryx_u32(&x789, &x790, x788, x757, 0x0); fiat_p521_addcarryx_u32(&x791, &x792, x790, x759, 0x0); fiat_p521_addcarryx_u32(&x793, &x794, x792, x761, 0x0); fiat_p521_addcarryx_u32(&x795, &x796, x794, x763, 0x0); fiat_p521_addcarryx_u32(&x797, &x798, x796, x765, 0x0); fiat_p521_mulx_u32(&x799, &x800, x735, UINT16_C(0x1ff)); fiat_p521_mulx_u32(&x801, &x802, x735, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x803, &x804, x735, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x805, &x806, x735, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x807, &x808, x735, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x809, &x810, x735, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x811, &x812, x735, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x813, &x814, x735, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x815, &x816, x735, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x817, &x818, x735, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x819, &x820, x735, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x821, &x822, x735, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x823, &x824, x735, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x825, &x826, x735, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x827, &x828, x735, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x829, &x830, x735, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x831, &x832, x735, UINT32_C(0xffffffff)); fiat_p521_addcarryx_u32(&x833, &x834, 0x0, x832, x829); fiat_p521_addcarryx_u32(&x835, &x836, x834, x830, x827); fiat_p521_addcarryx_u32(&x837, &x838, x836, x828, x825); fiat_p521_addcarryx_u32(&x839, &x840, x838, x826, x823); fiat_p521_addcarryx_u32(&x841, &x842, x840, x824, x821); fiat_p521_addcarryx_u32(&x843, &x844, x842, x822, x819); fiat_p521_addcarryx_u32(&x845, &x846, x844, x820, x817); fiat_p521_addcarryx_u32(&x847, &x848, x846, x818, x815); fiat_p521_addcarryx_u32(&x849, &x850, x848, x816, x813); fiat_p521_addcarryx_u32(&x851, &x852, x850, x814, x811); fiat_p521_addcarryx_u32(&x853, &x854, x852, x812, x809); fiat_p521_addcarryx_u32(&x855, &x856, x854, x810, x807); fiat_p521_addcarryx_u32(&x857, &x858, x856, x808, x805); fiat_p521_addcarryx_u32(&x859, &x860, x858, x806, x803); fiat_p521_addcarryx_u32(&x861, &x862, x860, x804, x801); fiat_p521_addcarryx_u32(&x863, &x864, x862, x802, x799); fiat_p521_addcarryx_u32(&x865, &x866, 0x0, x735, x831); fiat_p521_addcarryx_u32(&x867, &x868, x866, x769, x833); fiat_p521_addcarryx_u32(&x869, &x870, x868, x771, x835); fiat_p521_addcarryx_u32(&x871, &x872, x870, x773, x837); fiat_p521_addcarryx_u32(&x873, &x874, x872, x775, x839); fiat_p521_addcarryx_u32(&x875, &x876, x874, x777, x841); fiat_p521_addcarryx_u32(&x877, &x878, x876, x779, x843); fiat_p521_addcarryx_u32(&x879, &x880, x878, x781, x845); fiat_p521_addcarryx_u32(&x881, &x882, x880, x783, x847); fiat_p521_addcarryx_u32(&x883, &x884, x882, x785, x849); fiat_p521_addcarryx_u32(&x885, &x886, x884, x787, x851); fiat_p521_addcarryx_u32(&x887, &x888, x886, x789, x853); fiat_p521_addcarryx_u32(&x889, &x890, x888, x791, x855); fiat_p521_addcarryx_u32(&x891, &x892, x890, x793, x857); fiat_p521_addcarryx_u32(&x893, &x894, x892, x795, x859); fiat_p521_addcarryx_u32(&x895, &x896, x894, x797, x861); fiat_p521_addcarryx_u32(&x897, &x898, x896, (x798 + (x766 + (x732 + x668))), x863); fiat_p521_mulx_u32(&x899, &x900, (arg1[8]), UINT16_C(0x4000)); fiat_p521_addcarryx_u32(&x901, &x902, 0x0, x869, x899); fiat_p521_addcarryx_u32(&x903, &x904, x902, x871, x900); fiat_p521_addcarryx_u32(&x905, &x906, x904, x873, 0x0); fiat_p521_addcarryx_u32(&x907, &x908, x906, x875, 0x0); fiat_p521_addcarryx_u32(&x909, &x910, x908, x877, 0x0); fiat_p521_addcarryx_u32(&x911, &x912, x910, x879, 0x0); fiat_p521_addcarryx_u32(&x913, &x914, x912, x881, 0x0); fiat_p521_addcarryx_u32(&x915, &x916, x914, x883, 0x0); fiat_p521_addcarryx_u32(&x917, &x918, x916, x885, 0x0); fiat_p521_addcarryx_u32(&x919, &x920, x918, x887, 0x0); fiat_p521_addcarryx_u32(&x921, &x922, x920, x889, 0x0); fiat_p521_addcarryx_u32(&x923, &x924, x922, x891, 0x0); fiat_p521_addcarryx_u32(&x925, &x926, x924, x893, 0x0); fiat_p521_addcarryx_u32(&x927, &x928, x926, x895, 0x0); fiat_p521_addcarryx_u32(&x929, &x930, x928, x897, 0x0); fiat_p521_mulx_u32(&x931, &x932, x867, UINT16_C(0x1ff)); fiat_p521_mulx_u32(&x933, &x934, x867, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x935, &x936, x867, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x937, &x938, x867, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x939, &x940, x867, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x941, &x942, x867, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x943, &x944, x867, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x945, &x946, x867, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x947, &x948, x867, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x949, &x950, x867, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x951, &x952, x867, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x953, &x954, x867, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x955, &x956, x867, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x957, &x958, x867, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x959, &x960, x867, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x961, &x962, x867, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x963, &x964, x867, UINT32_C(0xffffffff)); fiat_p521_addcarryx_u32(&x965, &x966, 0x0, x964, x961); fiat_p521_addcarryx_u32(&x967, &x968, x966, x962, x959); fiat_p521_addcarryx_u32(&x969, &x970, x968, x960, x957); fiat_p521_addcarryx_u32(&x971, &x972, x970, x958, x955); fiat_p521_addcarryx_u32(&x973, &x974, x972, x956, x953); fiat_p521_addcarryx_u32(&x975, &x976, x974, x954, x951); fiat_p521_addcarryx_u32(&x977, &x978, x976, x952, x949); fiat_p521_addcarryx_u32(&x979, &x980, x978, x950, x947); fiat_p521_addcarryx_u32(&x981, &x982, x980, x948, x945); fiat_p521_addcarryx_u32(&x983, &x984, x982, x946, x943); fiat_p521_addcarryx_u32(&x985, &x986, x984, x944, x941); fiat_p521_addcarryx_u32(&x987, &x988, x986, x942, x939); fiat_p521_addcarryx_u32(&x989, &x990, x988, x940, x937); fiat_p521_addcarryx_u32(&x991, &x992, x990, x938, x935); fiat_p521_addcarryx_u32(&x993, &x994, x992, x936, x933); fiat_p521_addcarryx_u32(&x995, &x996, x994, x934, x931); fiat_p521_addcarryx_u32(&x997, &x998, 0x0, x867, x963); fiat_p521_addcarryx_u32(&x999, &x1000, x998, x901, x965); fiat_p521_addcarryx_u32(&x1001, &x1002, x1000, x903, x967); fiat_p521_addcarryx_u32(&x1003, &x1004, x1002, x905, x969); fiat_p521_addcarryx_u32(&x1005, &x1006, x1004, x907, x971); fiat_p521_addcarryx_u32(&x1007, &x1008, x1006, x909, x973); fiat_p521_addcarryx_u32(&x1009, &x1010, x1008, x911, x975); fiat_p521_addcarryx_u32(&x1011, &x1012, x1010, x913, x977); fiat_p521_addcarryx_u32(&x1013, &x1014, x1012, x915, x979); fiat_p521_addcarryx_u32(&x1015, &x1016, x1014, x917, x981); fiat_p521_addcarryx_u32(&x1017, &x1018, x1016, x919, x983); fiat_p521_addcarryx_u32(&x1019, &x1020, x1018, x921, x985); fiat_p521_addcarryx_u32(&x1021, &x1022, x1020, x923, x987); fiat_p521_addcarryx_u32(&x1023, &x1024, x1022, x925, x989); fiat_p521_addcarryx_u32(&x1025, &x1026, x1024, x927, x991); fiat_p521_addcarryx_u32(&x1027, &x1028, x1026, x929, x993); fiat_p521_addcarryx_u32(&x1029, &x1030, x1028, (x930 + (x898 + (x864 + x800))), x995); fiat_p521_mulx_u32(&x1031, &x1032, (arg1[9]), UINT16_C(0x4000)); fiat_p521_addcarryx_u32(&x1033, &x1034, 0x0, x1001, x1031); fiat_p521_addcarryx_u32(&x1035, &x1036, x1034, x1003, x1032); fiat_p521_addcarryx_u32(&x1037, &x1038, x1036, x1005, 0x0); fiat_p521_addcarryx_u32(&x1039, &x1040, x1038, x1007, 0x0); fiat_p521_addcarryx_u32(&x1041, &x1042, x1040, x1009, 0x0); fiat_p521_addcarryx_u32(&x1043, &x1044, x1042, x1011, 0x0); fiat_p521_addcarryx_u32(&x1045, &x1046, x1044, x1013, 0x0); fiat_p521_addcarryx_u32(&x1047, &x1048, x1046, x1015, 0x0); fiat_p521_addcarryx_u32(&x1049, &x1050, x1048, x1017, 0x0); fiat_p521_addcarryx_u32(&x1051, &x1052, x1050, x1019, 0x0); fiat_p521_addcarryx_u32(&x1053, &x1054, x1052, x1021, 0x0); fiat_p521_addcarryx_u32(&x1055, &x1056, x1054, x1023, 0x0); fiat_p521_addcarryx_u32(&x1057, &x1058, x1056, x1025, 0x0); fiat_p521_addcarryx_u32(&x1059, &x1060, x1058, x1027, 0x0); fiat_p521_addcarryx_u32(&x1061, &x1062, x1060, x1029, 0x0); fiat_p521_mulx_u32(&x1063, &x1064, x999, UINT16_C(0x1ff)); fiat_p521_mulx_u32(&x1065, &x1066, x999, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1067, &x1068, x999, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1069, &x1070, x999, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1071, &x1072, x999, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1073, &x1074, x999, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1075, &x1076, x999, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1077, &x1078, x999, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1079, &x1080, x999, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1081, &x1082, x999, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1083, &x1084, x999, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1085, &x1086, x999, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1087, &x1088, x999, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1089, &x1090, x999, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1091, &x1092, x999, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1093, &x1094, x999, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1095, &x1096, x999, UINT32_C(0xffffffff)); fiat_p521_addcarryx_u32(&x1097, &x1098, 0x0, x1096, x1093); fiat_p521_addcarryx_u32(&x1099, &x1100, x1098, x1094, x1091); fiat_p521_addcarryx_u32(&x1101, &x1102, x1100, x1092, x1089); fiat_p521_addcarryx_u32(&x1103, &x1104, x1102, x1090, x1087); fiat_p521_addcarryx_u32(&x1105, &x1106, x1104, x1088, x1085); fiat_p521_addcarryx_u32(&x1107, &x1108, x1106, x1086, x1083); fiat_p521_addcarryx_u32(&x1109, &x1110, x1108, x1084, x1081); fiat_p521_addcarryx_u32(&x1111, &x1112, x1110, x1082, x1079); fiat_p521_addcarryx_u32(&x1113, &x1114, x1112, x1080, x1077); fiat_p521_addcarryx_u32(&x1115, &x1116, x1114, x1078, x1075); fiat_p521_addcarryx_u32(&x1117, &x1118, x1116, x1076, x1073); fiat_p521_addcarryx_u32(&x1119, &x1120, x1118, x1074, x1071); fiat_p521_addcarryx_u32(&x1121, &x1122, x1120, x1072, x1069); fiat_p521_addcarryx_u32(&x1123, &x1124, x1122, x1070, x1067); fiat_p521_addcarryx_u32(&x1125, &x1126, x1124, x1068, x1065); fiat_p521_addcarryx_u32(&x1127, &x1128, x1126, x1066, x1063); fiat_p521_addcarryx_u32(&x1129, &x1130, 0x0, x999, x1095); fiat_p521_addcarryx_u32(&x1131, &x1132, x1130, x1033, x1097); fiat_p521_addcarryx_u32(&x1133, &x1134, x1132, x1035, x1099); fiat_p521_addcarryx_u32(&x1135, &x1136, x1134, x1037, x1101); fiat_p521_addcarryx_u32(&x1137, &x1138, x1136, x1039, x1103); fiat_p521_addcarryx_u32(&x1139, &x1140, x1138, x1041, x1105); fiat_p521_addcarryx_u32(&x1141, &x1142, x1140, x1043, x1107); fiat_p521_addcarryx_u32(&x1143, &x1144, x1142, x1045, x1109); fiat_p521_addcarryx_u32(&x1145, &x1146, x1144, x1047, x1111); fiat_p521_addcarryx_u32(&x1147, &x1148, x1146, x1049, x1113); fiat_p521_addcarryx_u32(&x1149, &x1150, x1148, x1051, x1115); fiat_p521_addcarryx_u32(&x1151, &x1152, x1150, x1053, x1117); fiat_p521_addcarryx_u32(&x1153, &x1154, x1152, x1055, x1119); fiat_p521_addcarryx_u32(&x1155, &x1156, x1154, x1057, x1121); fiat_p521_addcarryx_u32(&x1157, &x1158, x1156, x1059, x1123); fiat_p521_addcarryx_u32(&x1159, &x1160, x1158, x1061, x1125); fiat_p521_addcarryx_u32(&x1161, &x1162, x1160, (x1062 + (x1030 + (x996 + x932))), x1127); fiat_p521_mulx_u32(&x1163, &x1164, (arg1[10]), UINT16_C(0x4000)); fiat_p521_addcarryx_u32(&x1165, &x1166, 0x0, x1133, x1163); fiat_p521_addcarryx_u32(&x1167, &x1168, x1166, x1135, x1164); fiat_p521_addcarryx_u32(&x1169, &x1170, x1168, x1137, 0x0); fiat_p521_addcarryx_u32(&x1171, &x1172, x1170, x1139, 0x0); fiat_p521_addcarryx_u32(&x1173, &x1174, x1172, x1141, 0x0); fiat_p521_addcarryx_u32(&x1175, &x1176, x1174, x1143, 0x0); fiat_p521_addcarryx_u32(&x1177, &x1178, x1176, x1145, 0x0); fiat_p521_addcarryx_u32(&x1179, &x1180, x1178, x1147, 0x0); fiat_p521_addcarryx_u32(&x1181, &x1182, x1180, x1149, 0x0); fiat_p521_addcarryx_u32(&x1183, &x1184, x1182, x1151, 0x0); fiat_p521_addcarryx_u32(&x1185, &x1186, x1184, x1153, 0x0); fiat_p521_addcarryx_u32(&x1187, &x1188, x1186, x1155, 0x0); fiat_p521_addcarryx_u32(&x1189, &x1190, x1188, x1157, 0x0); fiat_p521_addcarryx_u32(&x1191, &x1192, x1190, x1159, 0x0); fiat_p521_addcarryx_u32(&x1193, &x1194, x1192, x1161, 0x0); fiat_p521_mulx_u32(&x1195, &x1196, x1131, UINT16_C(0x1ff)); fiat_p521_mulx_u32(&x1197, &x1198, x1131, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1199, &x1200, x1131, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1201, &x1202, x1131, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1203, &x1204, x1131, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1205, &x1206, x1131, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1207, &x1208, x1131, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1209, &x1210, x1131, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1211, &x1212, x1131, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1213, &x1214, x1131, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1215, &x1216, x1131, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1217, &x1218, x1131, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1219, &x1220, x1131, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1221, &x1222, x1131, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1223, &x1224, x1131, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1225, &x1226, x1131, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1227, &x1228, x1131, UINT32_C(0xffffffff)); fiat_p521_addcarryx_u32(&x1229, &x1230, 0x0, x1228, x1225); fiat_p521_addcarryx_u32(&x1231, &x1232, x1230, x1226, x1223); fiat_p521_addcarryx_u32(&x1233, &x1234, x1232, x1224, x1221); fiat_p521_addcarryx_u32(&x1235, &x1236, x1234, x1222, x1219); fiat_p521_addcarryx_u32(&x1237, &x1238, x1236, x1220, x1217); fiat_p521_addcarryx_u32(&x1239, &x1240, x1238, x1218, x1215); fiat_p521_addcarryx_u32(&x1241, &x1242, x1240, x1216, x1213); fiat_p521_addcarryx_u32(&x1243, &x1244, x1242, x1214, x1211); fiat_p521_addcarryx_u32(&x1245, &x1246, x1244, x1212, x1209); fiat_p521_addcarryx_u32(&x1247, &x1248, x1246, x1210, x1207); fiat_p521_addcarryx_u32(&x1249, &x1250, x1248, x1208, x1205); fiat_p521_addcarryx_u32(&x1251, &x1252, x1250, x1206, x1203); fiat_p521_addcarryx_u32(&x1253, &x1254, x1252, x1204, x1201); fiat_p521_addcarryx_u32(&x1255, &x1256, x1254, x1202, x1199); fiat_p521_addcarryx_u32(&x1257, &x1258, x1256, x1200, x1197); fiat_p521_addcarryx_u32(&x1259, &x1260, x1258, x1198, x1195); fiat_p521_addcarryx_u32(&x1261, &x1262, 0x0, x1131, x1227); fiat_p521_addcarryx_u32(&x1263, &x1264, x1262, x1165, x1229); fiat_p521_addcarryx_u32(&x1265, &x1266, x1264, x1167, x1231); fiat_p521_addcarryx_u32(&x1267, &x1268, x1266, x1169, x1233); fiat_p521_addcarryx_u32(&x1269, &x1270, x1268, x1171, x1235); fiat_p521_addcarryx_u32(&x1271, &x1272, x1270, x1173, x1237); fiat_p521_addcarryx_u32(&x1273, &x1274, x1272, x1175, x1239); fiat_p521_addcarryx_u32(&x1275, &x1276, x1274, x1177, x1241); fiat_p521_addcarryx_u32(&x1277, &x1278, x1276, x1179, x1243); fiat_p521_addcarryx_u32(&x1279, &x1280, x1278, x1181, x1245); fiat_p521_addcarryx_u32(&x1281, &x1282, x1280, x1183, x1247); fiat_p521_addcarryx_u32(&x1283, &x1284, x1282, x1185, x1249); fiat_p521_addcarryx_u32(&x1285, &x1286, x1284, x1187, x1251); fiat_p521_addcarryx_u32(&x1287, &x1288, x1286, x1189, x1253); fiat_p521_addcarryx_u32(&x1289, &x1290, x1288, x1191, x1255); fiat_p521_addcarryx_u32(&x1291, &x1292, x1290, x1193, x1257); fiat_p521_addcarryx_u32(&x1293, &x1294, x1292, (x1194 + (x1162 + (x1128 + x1064))), x1259); fiat_p521_mulx_u32(&x1295, &x1296, (arg1[11]), UINT16_C(0x4000)); fiat_p521_addcarryx_u32(&x1297, &x1298, 0x0, x1265, x1295); fiat_p521_addcarryx_u32(&x1299, &x1300, x1298, x1267, x1296); fiat_p521_addcarryx_u32(&x1301, &x1302, x1300, x1269, 0x0); fiat_p521_addcarryx_u32(&x1303, &x1304, x1302, x1271, 0x0); fiat_p521_addcarryx_u32(&x1305, &x1306, x1304, x1273, 0x0); fiat_p521_addcarryx_u32(&x1307, &x1308, x1306, x1275, 0x0); fiat_p521_addcarryx_u32(&x1309, &x1310, x1308, x1277, 0x0); fiat_p521_addcarryx_u32(&x1311, &x1312, x1310, x1279, 0x0); fiat_p521_addcarryx_u32(&x1313, &x1314, x1312, x1281, 0x0); fiat_p521_addcarryx_u32(&x1315, &x1316, x1314, x1283, 0x0); fiat_p521_addcarryx_u32(&x1317, &x1318, x1316, x1285, 0x0); fiat_p521_addcarryx_u32(&x1319, &x1320, x1318, x1287, 0x0); fiat_p521_addcarryx_u32(&x1321, &x1322, x1320, x1289, 0x0); fiat_p521_addcarryx_u32(&x1323, &x1324, x1322, x1291, 0x0); fiat_p521_addcarryx_u32(&x1325, &x1326, x1324, x1293, 0x0); fiat_p521_mulx_u32(&x1327, &x1328, x1263, UINT16_C(0x1ff)); fiat_p521_mulx_u32(&x1329, &x1330, x1263, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1331, &x1332, x1263, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1333, &x1334, x1263, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1335, &x1336, x1263, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1337, &x1338, x1263, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1339, &x1340, x1263, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1341, &x1342, x1263, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1343, &x1344, x1263, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1345, &x1346, x1263, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1347, &x1348, x1263, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1349, &x1350, x1263, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1351, &x1352, x1263, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1353, &x1354, x1263, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1355, &x1356, x1263, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1357, &x1358, x1263, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1359, &x1360, x1263, UINT32_C(0xffffffff)); fiat_p521_addcarryx_u32(&x1361, &x1362, 0x0, x1360, x1357); fiat_p521_addcarryx_u32(&x1363, &x1364, x1362, x1358, x1355); fiat_p521_addcarryx_u32(&x1365, &x1366, x1364, x1356, x1353); fiat_p521_addcarryx_u32(&x1367, &x1368, x1366, x1354, x1351); fiat_p521_addcarryx_u32(&x1369, &x1370, x1368, x1352, x1349); fiat_p521_addcarryx_u32(&x1371, &x1372, x1370, x1350, x1347); fiat_p521_addcarryx_u32(&x1373, &x1374, x1372, x1348, x1345); fiat_p521_addcarryx_u32(&x1375, &x1376, x1374, x1346, x1343); fiat_p521_addcarryx_u32(&x1377, &x1378, x1376, x1344, x1341); fiat_p521_addcarryx_u32(&x1379, &x1380, x1378, x1342, x1339); fiat_p521_addcarryx_u32(&x1381, &x1382, x1380, x1340, x1337); fiat_p521_addcarryx_u32(&x1383, &x1384, x1382, x1338, x1335); fiat_p521_addcarryx_u32(&x1385, &x1386, x1384, x1336, x1333); fiat_p521_addcarryx_u32(&x1387, &x1388, x1386, x1334, x1331); fiat_p521_addcarryx_u32(&x1389, &x1390, x1388, x1332, x1329); fiat_p521_addcarryx_u32(&x1391, &x1392, x1390, x1330, x1327); fiat_p521_addcarryx_u32(&x1393, &x1394, 0x0, x1263, x1359); fiat_p521_addcarryx_u32(&x1395, &x1396, x1394, x1297, x1361); fiat_p521_addcarryx_u32(&x1397, &x1398, x1396, x1299, x1363); fiat_p521_addcarryx_u32(&x1399, &x1400, x1398, x1301, x1365); fiat_p521_addcarryx_u32(&x1401, &x1402, x1400, x1303, x1367); fiat_p521_addcarryx_u32(&x1403, &x1404, x1402, x1305, x1369); fiat_p521_addcarryx_u32(&x1405, &x1406, x1404, x1307, x1371); fiat_p521_addcarryx_u32(&x1407, &x1408, x1406, x1309, x1373); fiat_p521_addcarryx_u32(&x1409, &x1410, x1408, x1311, x1375); fiat_p521_addcarryx_u32(&x1411, &x1412, x1410, x1313, x1377); fiat_p521_addcarryx_u32(&x1413, &x1414, x1412, x1315, x1379); fiat_p521_addcarryx_u32(&x1415, &x1416, x1414, x1317, x1381); fiat_p521_addcarryx_u32(&x1417, &x1418, x1416, x1319, x1383); fiat_p521_addcarryx_u32(&x1419, &x1420, x1418, x1321, x1385); fiat_p521_addcarryx_u32(&x1421, &x1422, x1420, x1323, x1387); fiat_p521_addcarryx_u32(&x1423, &x1424, x1422, x1325, x1389); fiat_p521_addcarryx_u32(&x1425, &x1426, x1424, (x1326 + (x1294 + (x1260 + x1196))), x1391); fiat_p521_mulx_u32(&x1427, &x1428, (arg1[12]), UINT16_C(0x4000)); fiat_p521_addcarryx_u32(&x1429, &x1430, 0x0, x1397, x1427); fiat_p521_addcarryx_u32(&x1431, &x1432, x1430, x1399, x1428); fiat_p521_addcarryx_u32(&x1433, &x1434, x1432, x1401, 0x0); fiat_p521_addcarryx_u32(&x1435, &x1436, x1434, x1403, 0x0); fiat_p521_addcarryx_u32(&x1437, &x1438, x1436, x1405, 0x0); fiat_p521_addcarryx_u32(&x1439, &x1440, x1438, x1407, 0x0); fiat_p521_addcarryx_u32(&x1441, &x1442, x1440, x1409, 0x0); fiat_p521_addcarryx_u32(&x1443, &x1444, x1442, x1411, 0x0); fiat_p521_addcarryx_u32(&x1445, &x1446, x1444, x1413, 0x0); fiat_p521_addcarryx_u32(&x1447, &x1448, x1446, x1415, 0x0); fiat_p521_addcarryx_u32(&x1449, &x1450, x1448, x1417, 0x0); fiat_p521_addcarryx_u32(&x1451, &x1452, x1450, x1419, 0x0); fiat_p521_addcarryx_u32(&x1453, &x1454, x1452, x1421, 0x0); fiat_p521_addcarryx_u32(&x1455, &x1456, x1454, x1423, 0x0); fiat_p521_addcarryx_u32(&x1457, &x1458, x1456, x1425, 0x0); fiat_p521_mulx_u32(&x1459, &x1460, x1395, UINT16_C(0x1ff)); fiat_p521_mulx_u32(&x1461, &x1462, x1395, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1463, &x1464, x1395, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1465, &x1466, x1395, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1467, &x1468, x1395, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1469, &x1470, x1395, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1471, &x1472, x1395, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1473, &x1474, x1395, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1475, &x1476, x1395, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1477, &x1478, x1395, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1479, &x1480, x1395, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1481, &x1482, x1395, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1483, &x1484, x1395, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1485, &x1486, x1395, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1487, &x1488, x1395, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1489, &x1490, x1395, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1491, &x1492, x1395, UINT32_C(0xffffffff)); fiat_p521_addcarryx_u32(&x1493, &x1494, 0x0, x1492, x1489); fiat_p521_addcarryx_u32(&x1495, &x1496, x1494, x1490, x1487); fiat_p521_addcarryx_u32(&x1497, &x1498, x1496, x1488, x1485); fiat_p521_addcarryx_u32(&x1499, &x1500, x1498, x1486, x1483); fiat_p521_addcarryx_u32(&x1501, &x1502, x1500, x1484, x1481); fiat_p521_addcarryx_u32(&x1503, &x1504, x1502, x1482, x1479); fiat_p521_addcarryx_u32(&x1505, &x1506, x1504, x1480, x1477); fiat_p521_addcarryx_u32(&x1507, &x1508, x1506, x1478, x1475); fiat_p521_addcarryx_u32(&x1509, &x1510, x1508, x1476, x1473); fiat_p521_addcarryx_u32(&x1511, &x1512, x1510, x1474, x1471); fiat_p521_addcarryx_u32(&x1513, &x1514, x1512, x1472, x1469); fiat_p521_addcarryx_u32(&x1515, &x1516, x1514, x1470, x1467); fiat_p521_addcarryx_u32(&x1517, &x1518, x1516, x1468, x1465); fiat_p521_addcarryx_u32(&x1519, &x1520, x1518, x1466, x1463); fiat_p521_addcarryx_u32(&x1521, &x1522, x1520, x1464, x1461); fiat_p521_addcarryx_u32(&x1523, &x1524, x1522, x1462, x1459); fiat_p521_addcarryx_u32(&x1525, &x1526, 0x0, x1395, x1491); fiat_p521_addcarryx_u32(&x1527, &x1528, x1526, x1429, x1493); fiat_p521_addcarryx_u32(&x1529, &x1530, x1528, x1431, x1495); fiat_p521_addcarryx_u32(&x1531, &x1532, x1530, x1433, x1497); fiat_p521_addcarryx_u32(&x1533, &x1534, x1532, x1435, x1499); fiat_p521_addcarryx_u32(&x1535, &x1536, x1534, x1437, x1501); fiat_p521_addcarryx_u32(&x1537, &x1538, x1536, x1439, x1503); fiat_p521_addcarryx_u32(&x1539, &x1540, x1538, x1441, x1505); fiat_p521_addcarryx_u32(&x1541, &x1542, x1540, x1443, x1507); fiat_p521_addcarryx_u32(&x1543, &x1544, x1542, x1445, x1509); fiat_p521_addcarryx_u32(&x1545, &x1546, x1544, x1447, x1511); fiat_p521_addcarryx_u32(&x1547, &x1548, x1546, x1449, x1513); fiat_p521_addcarryx_u32(&x1549, &x1550, x1548, x1451, x1515); fiat_p521_addcarryx_u32(&x1551, &x1552, x1550, x1453, x1517); fiat_p521_addcarryx_u32(&x1553, &x1554, x1552, x1455, x1519); fiat_p521_addcarryx_u32(&x1555, &x1556, x1554, x1457, x1521); fiat_p521_addcarryx_u32(&x1557, &x1558, x1556, (x1458 + (x1426 + (x1392 + x1328))), x1523); fiat_p521_mulx_u32(&x1559, &x1560, (arg1[13]), UINT16_C(0x4000)); fiat_p521_addcarryx_u32(&x1561, &x1562, 0x0, x1529, x1559); fiat_p521_addcarryx_u32(&x1563, &x1564, x1562, x1531, x1560); fiat_p521_addcarryx_u32(&x1565, &x1566, x1564, x1533, 0x0); fiat_p521_addcarryx_u32(&x1567, &x1568, x1566, x1535, 0x0); fiat_p521_addcarryx_u32(&x1569, &x1570, x1568, x1537, 0x0); fiat_p521_addcarryx_u32(&x1571, &x1572, x1570, x1539, 0x0); fiat_p521_addcarryx_u32(&x1573, &x1574, x1572, x1541, 0x0); fiat_p521_addcarryx_u32(&x1575, &x1576, x1574, x1543, 0x0); fiat_p521_addcarryx_u32(&x1577, &x1578, x1576, x1545, 0x0); fiat_p521_addcarryx_u32(&x1579, &x1580, x1578, x1547, 0x0); fiat_p521_addcarryx_u32(&x1581, &x1582, x1580, x1549, 0x0); fiat_p521_addcarryx_u32(&x1583, &x1584, x1582, x1551, 0x0); fiat_p521_addcarryx_u32(&x1585, &x1586, x1584, x1553, 0x0); fiat_p521_addcarryx_u32(&x1587, &x1588, x1586, x1555, 0x0); fiat_p521_addcarryx_u32(&x1589, &x1590, x1588, x1557, 0x0); fiat_p521_mulx_u32(&x1591, &x1592, x1527, UINT16_C(0x1ff)); fiat_p521_mulx_u32(&x1593, &x1594, x1527, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1595, &x1596, x1527, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1597, &x1598, x1527, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1599, &x1600, x1527, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1601, &x1602, x1527, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1603, &x1604, x1527, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1605, &x1606, x1527, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1607, &x1608, x1527, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1609, &x1610, x1527, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1611, &x1612, x1527, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1613, &x1614, x1527, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1615, &x1616, x1527, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1617, &x1618, x1527, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1619, &x1620, x1527, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1621, &x1622, x1527, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1623, &x1624, x1527, UINT32_C(0xffffffff)); fiat_p521_addcarryx_u32(&x1625, &x1626, 0x0, x1624, x1621); fiat_p521_addcarryx_u32(&x1627, &x1628, x1626, x1622, x1619); fiat_p521_addcarryx_u32(&x1629, &x1630, x1628, x1620, x1617); fiat_p521_addcarryx_u32(&x1631, &x1632, x1630, x1618, x1615); fiat_p521_addcarryx_u32(&x1633, &x1634, x1632, x1616, x1613); fiat_p521_addcarryx_u32(&x1635, &x1636, x1634, x1614, x1611); fiat_p521_addcarryx_u32(&x1637, &x1638, x1636, x1612, x1609); fiat_p521_addcarryx_u32(&x1639, &x1640, x1638, x1610, x1607); fiat_p521_addcarryx_u32(&x1641, &x1642, x1640, x1608, x1605); fiat_p521_addcarryx_u32(&x1643, &x1644, x1642, x1606, x1603); fiat_p521_addcarryx_u32(&x1645, &x1646, x1644, x1604, x1601); fiat_p521_addcarryx_u32(&x1647, &x1648, x1646, x1602, x1599); fiat_p521_addcarryx_u32(&x1649, &x1650, x1648, x1600, x1597); fiat_p521_addcarryx_u32(&x1651, &x1652, x1650, x1598, x1595); fiat_p521_addcarryx_u32(&x1653, &x1654, x1652, x1596, x1593); fiat_p521_addcarryx_u32(&x1655, &x1656, x1654, x1594, x1591); fiat_p521_addcarryx_u32(&x1657, &x1658, 0x0, x1527, x1623); fiat_p521_addcarryx_u32(&x1659, &x1660, x1658, x1561, x1625); fiat_p521_addcarryx_u32(&x1661, &x1662, x1660, x1563, x1627); fiat_p521_addcarryx_u32(&x1663, &x1664, x1662, x1565, x1629); fiat_p521_addcarryx_u32(&x1665, &x1666, x1664, x1567, x1631); fiat_p521_addcarryx_u32(&x1667, &x1668, x1666, x1569, x1633); fiat_p521_addcarryx_u32(&x1669, &x1670, x1668, x1571, x1635); fiat_p521_addcarryx_u32(&x1671, &x1672, x1670, x1573, x1637); fiat_p521_addcarryx_u32(&x1673, &x1674, x1672, x1575, x1639); fiat_p521_addcarryx_u32(&x1675, &x1676, x1674, x1577, x1641); fiat_p521_addcarryx_u32(&x1677, &x1678, x1676, x1579, x1643); fiat_p521_addcarryx_u32(&x1679, &x1680, x1678, x1581, x1645); fiat_p521_addcarryx_u32(&x1681, &x1682, x1680, x1583, x1647); fiat_p521_addcarryx_u32(&x1683, &x1684, x1682, x1585, x1649); fiat_p521_addcarryx_u32(&x1685, &x1686, x1684, x1587, x1651); fiat_p521_addcarryx_u32(&x1687, &x1688, x1686, x1589, x1653); fiat_p521_addcarryx_u32(&x1689, &x1690, x1688, (x1590 + (x1558 + (x1524 + x1460))), x1655); fiat_p521_mulx_u32(&x1691, &x1692, (arg1[14]), UINT16_C(0x4000)); fiat_p521_addcarryx_u32(&x1693, &x1694, 0x0, x1661, x1691); fiat_p521_addcarryx_u32(&x1695, &x1696, x1694, x1663, x1692); fiat_p521_addcarryx_u32(&x1697, &x1698, x1696, x1665, 0x0); fiat_p521_addcarryx_u32(&x1699, &x1700, x1698, x1667, 0x0); fiat_p521_addcarryx_u32(&x1701, &x1702, x1700, x1669, 0x0); fiat_p521_addcarryx_u32(&x1703, &x1704, x1702, x1671, 0x0); fiat_p521_addcarryx_u32(&x1705, &x1706, x1704, x1673, 0x0); fiat_p521_addcarryx_u32(&x1707, &x1708, x1706, x1675, 0x0); fiat_p521_addcarryx_u32(&x1709, &x1710, x1708, x1677, 0x0); fiat_p521_addcarryx_u32(&x1711, &x1712, x1710, x1679, 0x0); fiat_p521_addcarryx_u32(&x1713, &x1714, x1712, x1681, 0x0); fiat_p521_addcarryx_u32(&x1715, &x1716, x1714, x1683, 0x0); fiat_p521_addcarryx_u32(&x1717, &x1718, x1716, x1685, 0x0); fiat_p521_addcarryx_u32(&x1719, &x1720, x1718, x1687, 0x0); fiat_p521_addcarryx_u32(&x1721, &x1722, x1720, x1689, 0x0); fiat_p521_mulx_u32(&x1723, &x1724, x1659, UINT16_C(0x1ff)); fiat_p521_mulx_u32(&x1725, &x1726, x1659, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1727, &x1728, x1659, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1729, &x1730, x1659, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1731, &x1732, x1659, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1733, &x1734, x1659, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1735, &x1736, x1659, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1737, &x1738, x1659, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1739, &x1740, x1659, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1741, &x1742, x1659, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1743, &x1744, x1659, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1745, &x1746, x1659, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1747, &x1748, x1659, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1749, &x1750, x1659, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1751, &x1752, x1659, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1753, &x1754, x1659, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1755, &x1756, x1659, UINT32_C(0xffffffff)); fiat_p521_addcarryx_u32(&x1757, &x1758, 0x0, x1756, x1753); fiat_p521_addcarryx_u32(&x1759, &x1760, x1758, x1754, x1751); fiat_p521_addcarryx_u32(&x1761, &x1762, x1760, x1752, x1749); fiat_p521_addcarryx_u32(&x1763, &x1764, x1762, x1750, x1747); fiat_p521_addcarryx_u32(&x1765, &x1766, x1764, x1748, x1745); fiat_p521_addcarryx_u32(&x1767, &x1768, x1766, x1746, x1743); fiat_p521_addcarryx_u32(&x1769, &x1770, x1768, x1744, x1741); fiat_p521_addcarryx_u32(&x1771, &x1772, x1770, x1742, x1739); fiat_p521_addcarryx_u32(&x1773, &x1774, x1772, x1740, x1737); fiat_p521_addcarryx_u32(&x1775, &x1776, x1774, x1738, x1735); fiat_p521_addcarryx_u32(&x1777, &x1778, x1776, x1736, x1733); fiat_p521_addcarryx_u32(&x1779, &x1780, x1778, x1734, x1731); fiat_p521_addcarryx_u32(&x1781, &x1782, x1780, x1732, x1729); fiat_p521_addcarryx_u32(&x1783, &x1784, x1782, x1730, x1727); fiat_p521_addcarryx_u32(&x1785, &x1786, x1784, x1728, x1725); fiat_p521_addcarryx_u32(&x1787, &x1788, x1786, x1726, x1723); fiat_p521_addcarryx_u32(&x1789, &x1790, 0x0, x1659, x1755); fiat_p521_addcarryx_u32(&x1791, &x1792, x1790, x1693, x1757); fiat_p521_addcarryx_u32(&x1793, &x1794, x1792, x1695, x1759); fiat_p521_addcarryx_u32(&x1795, &x1796, x1794, x1697, x1761); fiat_p521_addcarryx_u32(&x1797, &x1798, x1796, x1699, x1763); fiat_p521_addcarryx_u32(&x1799, &x1800, x1798, x1701, x1765); fiat_p521_addcarryx_u32(&x1801, &x1802, x1800, x1703, x1767); fiat_p521_addcarryx_u32(&x1803, &x1804, x1802, x1705, x1769); fiat_p521_addcarryx_u32(&x1805, &x1806, x1804, x1707, x1771); fiat_p521_addcarryx_u32(&x1807, &x1808, x1806, x1709, x1773); fiat_p521_addcarryx_u32(&x1809, &x1810, x1808, x1711, x1775); fiat_p521_addcarryx_u32(&x1811, &x1812, x1810, x1713, x1777); fiat_p521_addcarryx_u32(&x1813, &x1814, x1812, x1715, x1779); fiat_p521_addcarryx_u32(&x1815, &x1816, x1814, x1717, x1781); fiat_p521_addcarryx_u32(&x1817, &x1818, x1816, x1719, x1783); fiat_p521_addcarryx_u32(&x1819, &x1820, x1818, x1721, x1785); fiat_p521_addcarryx_u32(&x1821, &x1822, x1820, (x1722 + (x1690 + (x1656 + x1592))), x1787); fiat_p521_mulx_u32(&x1823, &x1824, (arg1[15]), UINT16_C(0x4000)); fiat_p521_addcarryx_u32(&x1825, &x1826, 0x0, x1793, x1823); fiat_p521_addcarryx_u32(&x1827, &x1828, x1826, x1795, x1824); fiat_p521_addcarryx_u32(&x1829, &x1830, x1828, x1797, 0x0); fiat_p521_addcarryx_u32(&x1831, &x1832, x1830, x1799, 0x0); fiat_p521_addcarryx_u32(&x1833, &x1834, x1832, x1801, 0x0); fiat_p521_addcarryx_u32(&x1835, &x1836, x1834, x1803, 0x0); fiat_p521_addcarryx_u32(&x1837, &x1838, x1836, x1805, 0x0); fiat_p521_addcarryx_u32(&x1839, &x1840, x1838, x1807, 0x0); fiat_p521_addcarryx_u32(&x1841, &x1842, x1840, x1809, 0x0); fiat_p521_addcarryx_u32(&x1843, &x1844, x1842, x1811, 0x0); fiat_p521_addcarryx_u32(&x1845, &x1846, x1844, x1813, 0x0); fiat_p521_addcarryx_u32(&x1847, &x1848, x1846, x1815, 0x0); fiat_p521_addcarryx_u32(&x1849, &x1850, x1848, x1817, 0x0); fiat_p521_addcarryx_u32(&x1851, &x1852, x1850, x1819, 0x0); fiat_p521_addcarryx_u32(&x1853, &x1854, x1852, x1821, 0x0); fiat_p521_mulx_u32(&x1855, &x1856, x1791, UINT16_C(0x1ff)); fiat_p521_mulx_u32(&x1857, &x1858, x1791, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1859, &x1860, x1791, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1861, &x1862, x1791, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1863, &x1864, x1791, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1865, &x1866, x1791, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1867, &x1868, x1791, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1869, &x1870, x1791, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1871, &x1872, x1791, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1873, &x1874, x1791, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1875, &x1876, x1791, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1877, &x1878, x1791, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1879, &x1880, x1791, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1881, &x1882, x1791, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1883, &x1884, x1791, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1885, &x1886, x1791, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1887, &x1888, x1791, UINT32_C(0xffffffff)); fiat_p521_addcarryx_u32(&x1889, &x1890, 0x0, x1888, x1885); fiat_p521_addcarryx_u32(&x1891, &x1892, x1890, x1886, x1883); fiat_p521_addcarryx_u32(&x1893, &x1894, x1892, x1884, x1881); fiat_p521_addcarryx_u32(&x1895, &x1896, x1894, x1882, x1879); fiat_p521_addcarryx_u32(&x1897, &x1898, x1896, x1880, x1877); fiat_p521_addcarryx_u32(&x1899, &x1900, x1898, x1878, x1875); fiat_p521_addcarryx_u32(&x1901, &x1902, x1900, x1876, x1873); fiat_p521_addcarryx_u32(&x1903, &x1904, x1902, x1874, x1871); fiat_p521_addcarryx_u32(&x1905, &x1906, x1904, x1872, x1869); fiat_p521_addcarryx_u32(&x1907, &x1908, x1906, x1870, x1867); fiat_p521_addcarryx_u32(&x1909, &x1910, x1908, x1868, x1865); fiat_p521_addcarryx_u32(&x1911, &x1912, x1910, x1866, x1863); fiat_p521_addcarryx_u32(&x1913, &x1914, x1912, x1864, x1861); fiat_p521_addcarryx_u32(&x1915, &x1916, x1914, x1862, x1859); fiat_p521_addcarryx_u32(&x1917, &x1918, x1916, x1860, x1857); fiat_p521_addcarryx_u32(&x1919, &x1920, x1918, x1858, x1855); fiat_p521_addcarryx_u32(&x1921, &x1922, 0x0, x1791, x1887); fiat_p521_addcarryx_u32(&x1923, &x1924, x1922, x1825, x1889); fiat_p521_addcarryx_u32(&x1925, &x1926, x1924, x1827, x1891); fiat_p521_addcarryx_u32(&x1927, &x1928, x1926, x1829, x1893); fiat_p521_addcarryx_u32(&x1929, &x1930, x1928, x1831, x1895); fiat_p521_addcarryx_u32(&x1931, &x1932, x1930, x1833, x1897); fiat_p521_addcarryx_u32(&x1933, &x1934, x1932, x1835, x1899); fiat_p521_addcarryx_u32(&x1935, &x1936, x1934, x1837, x1901); fiat_p521_addcarryx_u32(&x1937, &x1938, x1936, x1839, x1903); fiat_p521_addcarryx_u32(&x1939, &x1940, x1938, x1841, x1905); fiat_p521_addcarryx_u32(&x1941, &x1942, x1940, x1843, x1907); fiat_p521_addcarryx_u32(&x1943, &x1944, x1942, x1845, x1909); fiat_p521_addcarryx_u32(&x1945, &x1946, x1944, x1847, x1911); fiat_p521_addcarryx_u32(&x1947, &x1948, x1946, x1849, x1913); fiat_p521_addcarryx_u32(&x1949, &x1950, x1948, x1851, x1915); fiat_p521_addcarryx_u32(&x1951, &x1952, x1950, x1853, x1917); fiat_p521_addcarryx_u32(&x1953, &x1954, x1952, (x1854 + (x1822 + (x1788 + x1724))), x1919); fiat_p521_mulx_u32(&x1955, &x1956, (arg1[16]), UINT16_C(0x4000)); fiat_p521_addcarryx_u32(&x1957, &x1958, 0x0, x1925, x1955); fiat_p521_addcarryx_u32(&x1959, &x1960, x1958, x1927, x1956); fiat_p521_addcarryx_u32(&x1961, &x1962, x1960, x1929, 0x0); fiat_p521_addcarryx_u32(&x1963, &x1964, x1962, x1931, 0x0); fiat_p521_addcarryx_u32(&x1965, &x1966, x1964, x1933, 0x0); fiat_p521_addcarryx_u32(&x1967, &x1968, x1966, x1935, 0x0); fiat_p521_addcarryx_u32(&x1969, &x1970, x1968, x1937, 0x0); fiat_p521_addcarryx_u32(&x1971, &x1972, x1970, x1939, 0x0); fiat_p521_addcarryx_u32(&x1973, &x1974, x1972, x1941, 0x0); fiat_p521_addcarryx_u32(&x1975, &x1976, x1974, x1943, 0x0); fiat_p521_addcarryx_u32(&x1977, &x1978, x1976, x1945, 0x0); fiat_p521_addcarryx_u32(&x1979, &x1980, x1978, x1947, 0x0); fiat_p521_addcarryx_u32(&x1981, &x1982, x1980, x1949, 0x0); fiat_p521_addcarryx_u32(&x1983, &x1984, x1982, x1951, 0x0); fiat_p521_addcarryx_u32(&x1985, &x1986, x1984, x1953, 0x0); fiat_p521_mulx_u32(&x1987, &x1988, x1923, UINT16_C(0x1ff)); fiat_p521_mulx_u32(&x1989, &x1990, x1923, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1991, &x1992, x1923, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1993, &x1994, x1923, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1995, &x1996, x1923, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1997, &x1998, x1923, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x1999, &x2000, x1923, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2001, &x2002, x1923, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2003, &x2004, x1923, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2005, &x2006, x1923, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2007, &x2008, x1923, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2009, &x2010, x1923, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2011, &x2012, x1923, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2013, &x2014, x1923, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2015, &x2016, x1923, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2017, &x2018, x1923, UINT32_C(0xffffffff)); fiat_p521_mulx_u32(&x2019, &x2020, x1923, UINT32_C(0xffffffff)); fiat_p521_addcarryx_u32(&x2021, &x2022, 0x0, x2020, x2017); fiat_p521_addcarryx_u32(&x2023, &x2024, x2022, x2018, x2015); fiat_p521_addcarryx_u32(&x2025, &x2026, x2024, x2016, x2013); fiat_p521_addcarryx_u32(&x2027, &x2028, x2026, x2014, x2011); fiat_p521_addcarryx_u32(&x2029, &x2030, x2028, x2012, x2009); fiat_p521_addcarryx_u32(&x2031, &x2032, x2030, x2010, x2007); fiat_p521_addcarryx_u32(&x2033, &x2034, x2032, x2008, x2005); fiat_p521_addcarryx_u32(&x2035, &x2036, x2034, x2006, x2003); fiat_p521_addcarryx_u32(&x2037, &x2038, x2036, x2004, x2001); fiat_p521_addcarryx_u32(&x2039, &x2040, x2038, x2002, x1999); fiat_p521_addcarryx_u32(&x2041, &x2042, x2040, x2000, x1997); fiat_p521_addcarryx_u32(&x2043, &x2044, x2042, x1998, x1995); fiat_p521_addcarryx_u32(&x2045, &x2046, x2044, x1996, x1993); fiat_p521_addcarryx_u32(&x2047, &x2048, x2046, x1994, x1991); fiat_p521_addcarryx_u32(&x2049, &x2050, x2048, x1992, x1989); fiat_p521_addcarryx_u32(&x2051, &x2052, x2050, x1990, x1987); fiat_p521_addcarryx_u32(&x2053, &x2054, 0x0, x1923, x2019); fiat_p521_addcarryx_u32(&x2055, &x2056, x2054, x1957, x2021); fiat_p521_addcarryx_u32(&x2057, &x2058, x2056, x1959, x2023); fiat_p521_addcarryx_u32(&x2059, &x2060, x2058, x1961, x2025); fiat_p521_addcarryx_u32(&x2061, &x2062, x2060, x1963, x2027); fiat_p521_addcarryx_u32(&x2063, &x2064, x2062, x1965, x2029); fiat_p521_addcarryx_u32(&x2065, &x2066, x2064, x1967, x2031); fiat_p521_addcarryx_u32(&x2067, &x2068, x2066, x1969, x2033); fiat_p521_addcarryx_u32(&x2069, &x2070, x2068, x1971, x2035); fiat_p521_addcarryx_u32(&x2071, &x2072, x2070, x1973, x2037); fiat_p521_addcarryx_u32(&x2073, &x2074, x2072, x1975, x2039); fiat_p521_addcarryx_u32(&x2075, &x2076, x2074, x1977, x2041); fiat_p521_addcarryx_u32(&x2077, &x2078, x2076, x1979, x2043); fiat_p521_addcarryx_u32(&x2079, &x2080, x2078, x1981, x2045); fiat_p521_addcarryx_u32(&x2081, &x2082, x2080, x1983, x2047); fiat_p521_addcarryx_u32(&x2083, &x2084, x2082, x1985, x2049); fiat_p521_addcarryx_u32(&x2085, &x2086, x2084, (x1986 + (x1954 + (x1920 + x1856))), x2051); x2087 = (x2086 + (x2052 + x1988)); fiat_p521_subborrowx_u32(&x2088, &x2089, 0x0, x2055, UINT32_C(0xffffffff)); fiat_p521_subborrowx_u32(&x2090, &x2091, x2089, x2057, UINT32_C(0xffffffff)); fiat_p521_subborrowx_u32(&x2092, &x2093, x2091, x2059, UINT32_C(0xffffffff)); fiat_p521_subborrowx_u32(&x2094, &x2095, x2093, x2061, UINT32_C(0xffffffff)); fiat_p521_subborrowx_u32(&x2096, &x2097, x2095, x2063, UINT32_C(0xffffffff)); fiat_p521_subborrowx_u32(&x2098, &x2099, x2097, x2065, UINT32_C(0xffffffff)); fiat_p521_subborrowx_u32(&x2100, &x2101, x2099, x2067, UINT32_C(0xffffffff)); fiat_p521_subborrowx_u32(&x2102, &x2103, x2101, x2069, UINT32_C(0xffffffff)); fiat_p521_subborrowx_u32(&x2104, &x2105, x2103, x2071, UINT32_C(0xffffffff)); fiat_p521_subborrowx_u32(&x2106, &x2107, x2105, x2073, UINT32_C(0xffffffff)); fiat_p521_subborrowx_u32(&x2108, &x2109, x2107, x2075, UINT32_C(0xffffffff)); fiat_p521_subborrowx_u32(&x2110, &x2111, x2109, x2077, UINT32_C(0xffffffff)); fiat_p521_subborrowx_u32(&x2112, &x2113, x2111, x2079, UINT32_C(0xffffffff)); fiat_p521_subborrowx_u32(&x2114, &x2115, x2113, x2081, UINT32_C(0xffffffff)); fiat_p521_subborrowx_u32(&x2116, &x2117, x2115, x2083, UINT32_C(0xffffffff)); fiat_p521_subborrowx_u32(&x2118, &x2119, x2117, x2085, UINT32_C(0xffffffff)); fiat_p521_subborrowx_u32(&x2120, &x2121, x2119, x2087, UINT16_C(0x1ff)); fiat_p521_subborrowx_u32(&x2122, &x2123, x2121, 0x0, 0x0); fiat_p521_cmovznz_u32(&x2124, x2123, x2088, x2055); fiat_p521_cmovznz_u32(&x2125, x2123, x2090, x2057); fiat_p521_cmovznz_u32(&x2126, x2123, x2092, x2059); fiat_p521_cmovznz_u32(&x2127, x2123, x2094, x2061); fiat_p521_cmovznz_u32(&x2128, x2123, x2096, x2063); fiat_p521_cmovznz_u32(&x2129, x2123, x2098, x2065); fiat_p521_cmovznz_u32(&x2130, x2123, x2100, x2067); fiat_p521_cmovznz_u32(&x2131, x2123, x2102, x2069); fiat_p521_cmovznz_u32(&x2132, x2123, x2104, x2071); fiat_p521_cmovznz_u32(&x2133, x2123, x2106, x2073); fiat_p521_cmovznz_u32(&x2134, x2123, x2108, x2075); fiat_p521_cmovznz_u32(&x2135, x2123, x2110, x2077); fiat_p521_cmovznz_u32(&x2136, x2123, x2112, x2079); fiat_p521_cmovznz_u32(&x2137, x2123, x2114, x2081); fiat_p521_cmovznz_u32(&x2138, x2123, x2116, x2083); fiat_p521_cmovznz_u32(&x2139, x2123, x2118, x2085); fiat_p521_cmovznz_u32(&x2140, x2123, x2120, x2087); out1[0] = x2124; out1[1] = x2125; out1[2] = x2126; out1[3] = x2127; out1[4] = x2128; out1[5] = x2129; out1[6] = x2130; out1[7] = x2131; out1[8] = x2132; out1[9] = x2133; out1[10] = x2134; out1[11] = x2135; out1[12] = x2136; out1[13] = x2137; out1[14] = x2138; out1[15] = x2139; out1[16] = x2140; } /* * The function fiat_p521_nonzero outputs a single non-zero word if the input is non-zero and zero otherwise. * * Preconditions: * 0 ≤ eval arg1 < m * Postconditions: * out1 = 0 ↔ eval (from_montgomery arg1) mod m = 0 * * Input Bounds: * arg1: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff]] * Output Bounds: * out1: [0x0 ~> 0xffffffff] */ static void fiat_p521_nonzero(uint32_t* out1, const uint32_t arg1[17]) { uint32_t x1; x1 = ((arg1[0]) | ((arg1[1]) | ((arg1[2]) | ((arg1[3]) | ((arg1[4]) | ((arg1[5]) | ((arg1[6]) | ((arg1[7]) | ((arg1[8]) | ((arg1[9]) | ((arg1[10]) | ((arg1[11]) | ((arg1[12]) | ((arg1[13]) | ((arg1[14]) | ((arg1[15]) | (arg1[16]))))))))))))))))); *out1 = x1; } /* * The function fiat_p521_selectznz is a multi-limb conditional select. * * Postconditions: * out1 = (if arg1 = 0 then arg2 else arg3) * * Input Bounds: * arg1: [0x0 ~> 0x1] * arg2: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff]] * arg3: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff]] * Output Bounds: * out1: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff]] */ static void fiat_p521_selectznz(uint32_t out1[17], fiat_p521_uint1 arg1, const uint32_t arg2[17], const uint32_t arg3[17]) { uint32_t x1; uint32_t x2; uint32_t x3; uint32_t x4; uint32_t x5; uint32_t x6; uint32_t x7; uint32_t x8; uint32_t x9; uint32_t x10; uint32_t x11; uint32_t x12; uint32_t x13; uint32_t x14; uint32_t x15; uint32_t x16; uint32_t x17; fiat_p521_cmovznz_u32(&x1, arg1, (arg2[0]), (arg3[0])); fiat_p521_cmovznz_u32(&x2, arg1, (arg2[1]), (arg3[1])); fiat_p521_cmovznz_u32(&x3, arg1, (arg2[2]), (arg3[2])); fiat_p521_cmovznz_u32(&x4, arg1, (arg2[3]), (arg3[3])); fiat_p521_cmovznz_u32(&x5, arg1, (arg2[4]), (arg3[4])); fiat_p521_cmovznz_u32(&x6, arg1, (arg2[5]), (arg3[5])); fiat_p521_cmovznz_u32(&x7, arg1, (arg2[6]), (arg3[6])); fiat_p521_cmovznz_u32(&x8, arg1, (arg2[7]), (arg3[7])); fiat_p521_cmovznz_u32(&x9, arg1, (arg2[8]), (arg3[8])); fiat_p521_cmovznz_u32(&x10, arg1, (arg2[9]), (arg3[9])); fiat_p521_cmovznz_u32(&x11, arg1, (arg2[10]), (arg3[10])); fiat_p521_cmovznz_u32(&x12, arg1, (arg2[11]), (arg3[11])); fiat_p521_cmovznz_u32(&x13, arg1, (arg2[12]), (arg3[12])); fiat_p521_cmovznz_u32(&x14, arg1, (arg2[13]), (arg3[13])); fiat_p521_cmovznz_u32(&x15, arg1, (arg2[14]), (arg3[14])); fiat_p521_cmovznz_u32(&x16, arg1, (arg2[15]), (arg3[15])); fiat_p521_cmovznz_u32(&x17, arg1, (arg2[16]), (arg3[16])); out1[0] = x1; out1[1] = x2; out1[2] = x3; out1[3] = x4; out1[4] = x5; out1[5] = x6; out1[6] = x7; out1[7] = x8; out1[8] = x9; out1[9] = x10; out1[10] = x11; out1[11] = x12; out1[12] = x13; out1[13] = x14; out1[14] = x15; out1[15] = x16; out1[16] = x17; } /* * The function fiat_p521_to_bytes serializes a field element NOT in the Montgomery domain to bytes in little-endian order. * * Preconditions: * 0 ≤ eval arg1 < m * Postconditions: * out1 = map (λ x, ⌊((eval arg1 mod m) mod 2^(8 * (x + 1))) / 2^(8 * x)⌋) [0..65] * * Input Bounds: * arg1: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0x1ff]] * Output Bounds: * out1: [[0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0x1]] */ static void fiat_p521_to_bytes(uint8_t out1[66], const uint32_t arg1[17]) { uint32_t x1; uint32_t x2; uint32_t x3; uint32_t x4; uint32_t x5; uint32_t x6; uint32_t x7; uint32_t x8; uint32_t x9; uint32_t x10; uint32_t x11; uint32_t x12; uint32_t x13; uint32_t x14; uint32_t x15; uint32_t x16; uint32_t x17; uint8_t x18; uint32_t x19; uint8_t x20; uint32_t x21; uint8_t x22; uint8_t x23; uint8_t x24; uint32_t x25; uint8_t x26; uint32_t x27; uint8_t x28; uint8_t x29; uint8_t x30; uint32_t x31; uint8_t x32; uint32_t x33; uint8_t x34; uint8_t x35; uint8_t x36; uint32_t x37; uint8_t x38; uint32_t x39; uint8_t x40; uint8_t x41; uint8_t x42; uint32_t x43; uint8_t x44; uint32_t x45; uint8_t x46; uint8_t x47; uint8_t x48; uint32_t x49; uint8_t x50; uint32_t x51; uint8_t x52; uint8_t x53; uint8_t x54; uint32_t x55; uint8_t x56; uint32_t x57; uint8_t x58; uint8_t x59; uint8_t x60; uint32_t x61; uint8_t x62; uint32_t x63; uint8_t x64; uint8_t x65; uint8_t x66; uint32_t x67; uint8_t x68; uint32_t x69; uint8_t x70; uint8_t x71; uint8_t x72; uint32_t x73; uint8_t x74; uint32_t x75; uint8_t x76; uint8_t x77; uint8_t x78; uint32_t x79; uint8_t x80; uint32_t x81; uint8_t x82; uint8_t x83; uint8_t x84; uint32_t x85; uint8_t x86; uint32_t x87; uint8_t x88; uint8_t x89; uint8_t x90; uint32_t x91; uint8_t x92; uint32_t x93; uint8_t x94; uint8_t x95; uint8_t x96; uint32_t x97; uint8_t x98; uint32_t x99; uint8_t x100; uint8_t x101; uint8_t x102; uint32_t x103; uint8_t x104; uint32_t x105; uint8_t x106; uint8_t x107; uint8_t x108; uint32_t x109; uint8_t x110; uint32_t x111; uint8_t x112; uint8_t x113; uint8_t x114; fiat_p521_uint1 x115; x1 = (arg1[16]); x2 = (arg1[15]); x3 = (arg1[14]); x4 = (arg1[13]); x5 = (arg1[12]); x6 = (arg1[11]); x7 = (arg1[10]); x8 = (arg1[9]); x9 = (arg1[8]); x10 = (arg1[7]); x11 = (arg1[6]); x12 = (arg1[5]); x13 = (arg1[4]); x14 = (arg1[3]); x15 = (arg1[2]); x16 = (arg1[1]); x17 = (arg1[0]); x18 = (uint8_t)(x17 & UINT8_C(0xff)); x19 = (x17 >> 8); x20 = (uint8_t)(x19 & UINT8_C(0xff)); x21 = (x19 >> 8); x22 = (uint8_t)(x21 & UINT8_C(0xff)); x23 = (uint8_t)(x21 >> 8); x24 = (uint8_t)(x16 & UINT8_C(0xff)); x25 = (x16 >> 8); x26 = (uint8_t)(x25 & UINT8_C(0xff)); x27 = (x25 >> 8); x28 = (uint8_t)(x27 & UINT8_C(0xff)); x29 = (uint8_t)(x27 >> 8); x30 = (uint8_t)(x15 & UINT8_C(0xff)); x31 = (x15 >> 8); x32 = (uint8_t)(x31 & UINT8_C(0xff)); x33 = (x31 >> 8); x34 = (uint8_t)(x33 & UINT8_C(0xff)); x35 = (uint8_t)(x33 >> 8); x36 = (uint8_t)(x14 & UINT8_C(0xff)); x37 = (x14 >> 8); x38 = (uint8_t)(x37 & UINT8_C(0xff)); x39 = (x37 >> 8); x40 = (uint8_t)(x39 & UINT8_C(0xff)); x41 = (uint8_t)(x39 >> 8); x42 = (uint8_t)(x13 & UINT8_C(0xff)); x43 = (x13 >> 8); x44 = (uint8_t)(x43 & UINT8_C(0xff)); x45 = (x43 >> 8); x46 = (uint8_t)(x45 & UINT8_C(0xff)); x47 = (uint8_t)(x45 >> 8); x48 = (uint8_t)(x12 & UINT8_C(0xff)); x49 = (x12 >> 8); x50 = (uint8_t)(x49 & UINT8_C(0xff)); x51 = (x49 >> 8); x52 = (uint8_t)(x51 & UINT8_C(0xff)); x53 = (uint8_t)(x51 >> 8); x54 = (uint8_t)(x11 & UINT8_C(0xff)); x55 = (x11 >> 8); x56 = (uint8_t)(x55 & UINT8_C(0xff)); x57 = (x55 >> 8); x58 = (uint8_t)(x57 & UINT8_C(0xff)); x59 = (uint8_t)(x57 >> 8); x60 = (uint8_t)(x10 & UINT8_C(0xff)); x61 = (x10 >> 8); x62 = (uint8_t)(x61 & UINT8_C(0xff)); x63 = (x61 >> 8); x64 = (uint8_t)(x63 & UINT8_C(0xff)); x65 = (uint8_t)(x63 >> 8); x66 = (uint8_t)(x9 & UINT8_C(0xff)); x67 = (x9 >> 8); x68 = (uint8_t)(x67 & UINT8_C(0xff)); x69 = (x67 >> 8); x70 = (uint8_t)(x69 & UINT8_C(0xff)); x71 = (uint8_t)(x69 >> 8); x72 = (uint8_t)(x8 & UINT8_C(0xff)); x73 = (x8 >> 8); x74 = (uint8_t)(x73 & UINT8_C(0xff)); x75 = (x73 >> 8); x76 = (uint8_t)(x75 & UINT8_C(0xff)); x77 = (uint8_t)(x75 >> 8); x78 = (uint8_t)(x7 & UINT8_C(0xff)); x79 = (x7 >> 8); x80 = (uint8_t)(x79 & UINT8_C(0xff)); x81 = (x79 >> 8); x82 = (uint8_t)(x81 & UINT8_C(0xff)); x83 = (uint8_t)(x81 >> 8); x84 = (uint8_t)(x6 & UINT8_C(0xff)); x85 = (x6 >> 8); x86 = (uint8_t)(x85 & UINT8_C(0xff)); x87 = (x85 >> 8); x88 = (uint8_t)(x87 & UINT8_C(0xff)); x89 = (uint8_t)(x87 >> 8); x90 = (uint8_t)(x5 & UINT8_C(0xff)); x91 = (x5 >> 8); x92 = (uint8_t)(x91 & UINT8_C(0xff)); x93 = (x91 >> 8); x94 = (uint8_t)(x93 & UINT8_C(0xff)); x95 = (uint8_t)(x93 >> 8); x96 = (uint8_t)(x4 & UINT8_C(0xff)); x97 = (x4 >> 8); x98 = (uint8_t)(x97 & UINT8_C(0xff)); x99 = (x97 >> 8); x100 = (uint8_t)(x99 & UINT8_C(0xff)); x101 = (uint8_t)(x99 >> 8); x102 = (uint8_t)(x3 & UINT8_C(0xff)); x103 = (x3 >> 8); x104 = (uint8_t)(x103 & UINT8_C(0xff)); x105 = (x103 >> 8); x106 = (uint8_t)(x105 & UINT8_C(0xff)); x107 = (uint8_t)(x105 >> 8); x108 = (uint8_t)(x2 & UINT8_C(0xff)); x109 = (x2 >> 8); x110 = (uint8_t)(x109 & UINT8_C(0xff)); x111 = (x109 >> 8); x112 = (uint8_t)(x111 & UINT8_C(0xff)); x113 = (uint8_t)(x111 >> 8); x114 = (uint8_t)(x1 & UINT8_C(0xff)); x115 = (fiat_p521_uint1)(x1 >> 8); out1[0] = x18; out1[1] = x20; out1[2] = x22; out1[3] = x23; out1[4] = x24; out1[5] = x26; out1[6] = x28; out1[7] = x29; out1[8] = x30; out1[9] = x32; out1[10] = x34; out1[11] = x35; out1[12] = x36; out1[13] = x38; out1[14] = x40; out1[15] = x41; out1[16] = x42; out1[17] = x44; out1[18] = x46; out1[19] = x47; out1[20] = x48; out1[21] = x50; out1[22] = x52; out1[23] = x53; out1[24] = x54; out1[25] = x56; out1[26] = x58; out1[27] = x59; out1[28] = x60; out1[29] = x62; out1[30] = x64; out1[31] = x65; out1[32] = x66; out1[33] = x68; out1[34] = x70; out1[35] = x71; out1[36] = x72; out1[37] = x74; out1[38] = x76; out1[39] = x77; out1[40] = x78; out1[41] = x80; out1[42] = x82; out1[43] = x83; out1[44] = x84; out1[45] = x86; out1[46] = x88; out1[47] = x89; out1[48] = x90; out1[49] = x92; out1[50] = x94; out1[51] = x95; out1[52] = x96; out1[53] = x98; out1[54] = x100; out1[55] = x101; out1[56] = x102; out1[57] = x104; out1[58] = x106; out1[59] = x107; out1[60] = x108; out1[61] = x110; out1[62] = x112; out1[63] = x113; out1[64] = x114; out1[65] = x115; } /* * The function fiat_p521_from_bytes deserializes a field element NOT in the Montgomery domain from bytes in little-endian order. * * Preconditions: * 0 ≤ bytes_eval arg1 < m * Postconditions: * eval out1 mod m = bytes_eval arg1 mod m * 0 ≤ eval out1 < m * * Input Bounds: * arg1: [[0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0x1]] * Output Bounds: * out1: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0x1ff]] */ static void fiat_p521_from_bytes(uint32_t out1[17], const uint8_t arg1[66]) { uint32_t x1; uint8_t x2; uint32_t x3; uint32_t x4; uint32_t x5; uint8_t x6; uint32_t x7; uint32_t x8; uint32_t x9; uint8_t x10; uint32_t x11; uint32_t x12; uint32_t x13; uint8_t x14; uint32_t x15; uint32_t x16; uint32_t x17; uint8_t x18; uint32_t x19; uint32_t x20; uint32_t x21; uint8_t x22; uint32_t x23; uint32_t x24; uint32_t x25; uint8_t x26; uint32_t x27; uint32_t x28; uint32_t x29; uint8_t x30; uint32_t x31; uint32_t x32; uint32_t x33; uint8_t x34; uint32_t x35; uint32_t x36; uint32_t x37; uint8_t x38; uint32_t x39; uint32_t x40; uint32_t x41; uint8_t x42; uint32_t x43; uint32_t x44; uint32_t x45; uint8_t x46; uint32_t x47; uint32_t x48; uint32_t x49; uint8_t x50; uint32_t x51; uint32_t x52; uint32_t x53; uint8_t x54; uint32_t x55; uint32_t x56; uint32_t x57; uint8_t x58; uint32_t x59; uint32_t x60; uint32_t x61; uint8_t x62; uint32_t x63; uint32_t x64; uint32_t x65; uint8_t x66; uint32_t x67; uint32_t x68; uint32_t x69; uint32_t x70; uint32_t x71; uint32_t x72; uint32_t x73; uint32_t x74; uint32_t x75; uint32_t x76; uint32_t x77; uint32_t x78; uint32_t x79; uint32_t x80; uint32_t x81; uint32_t x82; uint32_t x83; uint32_t x84; uint32_t x85; uint32_t x86; uint32_t x87; uint32_t x88; uint32_t x89; uint32_t x90; uint32_t x91; uint32_t x92; uint32_t x93; uint32_t x94; uint32_t x95; uint32_t x96; uint32_t x97; uint32_t x98; uint32_t x99; uint32_t x100; uint32_t x101; uint32_t x102; uint32_t x103; uint32_t x104; uint32_t x105; uint32_t x106; uint32_t x107; uint32_t x108; uint32_t x109; uint32_t x110; uint32_t x111; uint32_t x112; uint32_t x113; uint32_t x114; uint32_t x115; x1 = ((uint32_t)(fiat_p521_uint1)(arg1[65]) << 8); x2 = (arg1[64]); x3 = ((uint32_t)(arg1[63]) << 24); x4 = ((uint32_t)(arg1[62]) << 16); x5 = ((uint32_t)(arg1[61]) << 8); x6 = (arg1[60]); x7 = ((uint32_t)(arg1[59]) << 24); x8 = ((uint32_t)(arg1[58]) << 16); x9 = ((uint32_t)(arg1[57]) << 8); x10 = (arg1[56]); x11 = ((uint32_t)(arg1[55]) << 24); x12 = ((uint32_t)(arg1[54]) << 16); x13 = ((uint32_t)(arg1[53]) << 8); x14 = (arg1[52]); x15 = ((uint32_t)(arg1[51]) << 24); x16 = ((uint32_t)(arg1[50]) << 16); x17 = ((uint32_t)(arg1[49]) << 8); x18 = (arg1[48]); x19 = ((uint32_t)(arg1[47]) << 24); x20 = ((uint32_t)(arg1[46]) << 16); x21 = ((uint32_t)(arg1[45]) << 8); x22 = (arg1[44]); x23 = ((uint32_t)(arg1[43]) << 24); x24 = ((uint32_t)(arg1[42]) << 16); x25 = ((uint32_t)(arg1[41]) << 8); x26 = (arg1[40]); x27 = ((uint32_t)(arg1[39]) << 24); x28 = ((uint32_t)(arg1[38]) << 16); x29 = ((uint32_t)(arg1[37]) << 8); x30 = (arg1[36]); x31 = ((uint32_t)(arg1[35]) << 24); x32 = ((uint32_t)(arg1[34]) << 16); x33 = ((uint32_t)(arg1[33]) << 8); x34 = (arg1[32]); x35 = ((uint32_t)(arg1[31]) << 24); x36 = ((uint32_t)(arg1[30]) << 16); x37 = ((uint32_t)(arg1[29]) << 8); x38 = (arg1[28]); x39 = ((uint32_t)(arg1[27]) << 24); x40 = ((uint32_t)(arg1[26]) << 16); x41 = ((uint32_t)(arg1[25]) << 8); x42 = (arg1[24]); x43 = ((uint32_t)(arg1[23]) << 24); x44 = ((uint32_t)(arg1[22]) << 16); x45 = ((uint32_t)(arg1[21]) << 8); x46 = (arg1[20]); x47 = ((uint32_t)(arg1[19]) << 24); x48 = ((uint32_t)(arg1[18]) << 16); x49 = ((uint32_t)(arg1[17]) << 8); x50 = (arg1[16]); x51 = ((uint32_t)(arg1[15]) << 24); x52 = ((uint32_t)(arg1[14]) << 16); x53 = ((uint32_t)(arg1[13]) << 8); x54 = (arg1[12]); x55 = ((uint32_t)(arg1[11]) << 24); x56 = ((uint32_t)(arg1[10]) << 16); x57 = ((uint32_t)(arg1[9]) << 8); x58 = (arg1[8]); x59 = ((uint32_t)(arg1[7]) << 24); x60 = ((uint32_t)(arg1[6]) << 16); x61 = ((uint32_t)(arg1[5]) << 8); x62 = (arg1[4]); x63 = ((uint32_t)(arg1[3]) << 24); x64 = ((uint32_t)(arg1[2]) << 16); x65 = ((uint32_t)(arg1[1]) << 8); x66 = (arg1[0]); x67 = (x65 + (uint32_t)x66); x68 = (x64 + x67); x69 = (x63 + x68); x70 = (x61 + (uint32_t)x62); x71 = (x60 + x70); x72 = (x59 + x71); x73 = (x57 + (uint32_t)x58); x74 = (x56 + x73); x75 = (x55 + x74); x76 = (x53 + (uint32_t)x54); x77 = (x52 + x76); x78 = (x51 + x77); x79 = (x49 + (uint32_t)x50); x80 = (x48 + x79); x81 = (x47 + x80); x82 = (x45 + (uint32_t)x46); x83 = (x44 + x82); x84 = (x43 + x83); x85 = (x41 + (uint32_t)x42); x86 = (x40 + x85); x87 = (x39 + x86); x88 = (x37 + (uint32_t)x38); x89 = (x36 + x88); x90 = (x35 + x89); x91 = (x33 + (uint32_t)x34); x92 = (x32 + x91); x93 = (x31 + x92); x94 = (x29 + (uint32_t)x30); x95 = (x28 + x94); x96 = (x27 + x95); x97 = (x25 + (uint32_t)x26); x98 = (x24 + x97); x99 = (x23 + x98); x100 = (x21 + (uint32_t)x22); x101 = (x20 + x100); x102 = (x19 + x101); x103 = (x17 + (uint32_t)x18); x104 = (x16 + x103); x105 = (x15 + x104); x106 = (x13 + (uint32_t)x14); x107 = (x12 + x106); x108 = (x11 + x107); x109 = (x9 + (uint32_t)x10); x110 = (x8 + x109); x111 = (x7 + x110); x112 = (x5 + (uint32_t)x6); x113 = (x4 + x112); x114 = (x3 + x113); x115 = (x1 + (uint32_t)x2); out1[0] = x69; out1[1] = x72; out1[2] = x75; out1[3] = x78; out1[4] = x81; out1[5] = x84; out1[6] = x87; out1[7] = x90; out1[8] = x93; out1[9] = x96; out1[10] = x99; out1[11] = x102; out1[12] = x105; out1[13] = x108; out1[14] = x111; out1[15] = x114; out1[16] = x115; } /* * The function fiat_p521_set_one returns the field element one in the Montgomery domain. * * Postconditions: * eval (from_montgomery out1) mod m = 1 mod m * 0 ≤ eval out1 < m * */ static void fiat_p521_set_one(fiat_p521_montgomery_domain_field_element out1) { out1[0] = UINT32_C(0x800000); out1[1] = 0x0; out1[2] = 0x0; out1[3] = 0x0; out1[4] = 0x0; out1[5] = 0x0; out1[6] = 0x0; out1[7] = 0x0; out1[8] = 0x0; out1[9] = 0x0; out1[10] = 0x0; out1[11] = 0x0; out1[12] = 0x0; out1[13] = 0x0; out1[14] = 0x0; out1[15] = 0x0; out1[16] = 0x0; } /* * The function fiat_p521_msat returns the saturated representation of the prime modulus. * * Postconditions: * twos_complement_eval out1 = m * 0 ≤ eval out1 < m * * Output Bounds: * out1: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff]] */ static void fiat_p521_msat(uint32_t out1[18]) { out1[0] = UINT32_C(0xffffffff); out1[1] = UINT32_C(0xffffffff); out1[2] = UINT32_C(0xffffffff); out1[3] = UINT32_C(0xffffffff); out1[4] = UINT32_C(0xffffffff); out1[5] = UINT32_C(0xffffffff); out1[6] = UINT32_C(0xffffffff); out1[7] = UINT32_C(0xffffffff); out1[8] = UINT32_C(0xffffffff); out1[9] = UINT32_C(0xffffffff); out1[10] = UINT32_C(0xffffffff); out1[11] = UINT32_C(0xffffffff); out1[12] = UINT32_C(0xffffffff); out1[13] = UINT32_C(0xffffffff); out1[14] = UINT32_C(0xffffffff); out1[15] = UINT32_C(0xffffffff); out1[16] = UINT16_C(0x1ff); out1[17] = 0x0; } /* * The function fiat_p521_divstep_precomp returns the precomputed value for Bernstein-Yang-inversion (in montgomery form). * * Postconditions: * eval (from_montgomery out1) = ⌊(m - 1) / 2⌋^(if ⌊log2 m⌋ + 1 < 46 then ⌊(49 * (⌊log2 m⌋ + 1) + 80) / 17⌋ else ⌊(49 * (⌊log2 m⌋ + 1) + 57) / 17⌋) * 0 ≤ eval out1 < m * * Output Bounds: * out1: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff]] */ static void fiat_p521_divstep_precomp(uint32_t out1[17]) { out1[0] = 0x0; out1[1] = 0x0; out1[2] = UINT32_C(0x20000); out1[3] = 0x0; out1[4] = 0x0; out1[5] = 0x0; out1[6] = 0x0; out1[7] = 0x0; out1[8] = 0x0; out1[9] = 0x0; out1[10] = 0x0; out1[11] = 0x0; out1[12] = 0x0; out1[13] = 0x0; out1[14] = 0x0; out1[15] = 0x0; out1[16] = 0x0; } /* * The function fiat_p521_divstep computes a divstep. * * Preconditions: * 0 ≤ eval arg4 < m * 0 ≤ eval arg5 < m * Postconditions: * out1 = (if 0 < arg1 ∧ (twos_complement_eval arg3) is odd then 1 - arg1 else 1 + arg1) * twos_complement_eval out2 = (if 0 < arg1 ∧ (twos_complement_eval arg3) is odd then twos_complement_eval arg3 else twos_complement_eval arg2) * twos_complement_eval out3 = (if 0 < arg1 ∧ (twos_complement_eval arg3) is odd then ⌊(twos_complement_eval arg3 - twos_complement_eval arg2) / 2⌋ else ⌊(twos_complement_eval arg3 + (twos_complement_eval arg3 mod 2) * twos_complement_eval arg2) / 2⌋) * eval (from_montgomery out4) mod m = (if 0 < arg1 ∧ (twos_complement_eval arg3) is odd then (2 * eval (from_montgomery arg5)) mod m else (2 * eval (from_montgomery arg4)) mod m) * eval (from_montgomery out5) mod m = (if 0 < arg1 ∧ (twos_complement_eval arg3) is odd then (eval (from_montgomery arg4) - eval (from_montgomery arg4)) mod m else (eval (from_montgomery arg5) + (twos_complement_eval arg3 mod 2) * eval (from_montgomery arg4)) mod m) * 0 ≤ eval out5 < m * 0 ≤ eval out5 < m * 0 ≤ eval out2 < m * 0 ≤ eval out3 < m * * Input Bounds: * arg1: [0x0 ~> 0xffffffff] * arg2: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff]] * arg3: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff]] * arg4: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff]] * arg5: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff]] * Output Bounds: * out1: [0x0 ~> 0xffffffff] * out2: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff]] * out3: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff]] * out4: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff]] * out5: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff]] */ static void fiat_p521_divstep(uint32_t* out1, uint32_t out2[18], uint32_t out3[18], uint32_t out4[17], uint32_t out5[17], uint32_t arg1, const uint32_t arg2[18], const uint32_t arg3[18], const uint32_t arg4[17], const uint32_t arg5[17]) { uint32_t x1; fiat_p521_uint1 x2; fiat_p521_uint1 x3; uint32_t x4; fiat_p521_uint1 x5; uint32_t x6; uint32_t x7; uint32_t x8; uint32_t x9; uint32_t x10; uint32_t x11; uint32_t x12; uint32_t x13; uint32_t x14; uint32_t x15; uint32_t x16; uint32_t x17; uint32_t x18; uint32_t x19; uint32_t x20; uint32_t x21; uint32_t x22; uint32_t x23; uint32_t x24; uint32_t x25; fiat_p521_uint1 x26; uint32_t x27; fiat_p521_uint1 x28; uint32_t x29; fiat_p521_uint1 x30; uint32_t x31; fiat_p521_uint1 x32; uint32_t x33; fiat_p521_uint1 x34; uint32_t x35; fiat_p521_uint1 x36; uint32_t x37; fiat_p521_uint1 x38; uint32_t x39; fiat_p521_uint1 x40; uint32_t x41; fiat_p521_uint1 x42; uint32_t x43; fiat_p521_uint1 x44; uint32_t x45; fiat_p521_uint1 x46; uint32_t x47; fiat_p521_uint1 x48; uint32_t x49; fiat_p521_uint1 x50; uint32_t x51; fiat_p521_uint1 x52; uint32_t x53; fiat_p521_uint1 x54; uint32_t x55; fiat_p521_uint1 x56; uint32_t x57; fiat_p521_uint1 x58; uint32_t x59; fiat_p521_uint1 x60; uint32_t x61; uint32_t x62; uint32_t x63; uint32_t x64; uint32_t x65; uint32_t x66; uint32_t x67; uint32_t x68; uint32_t x69; uint32_t x70; uint32_t x71; uint32_t x72; uint32_t x73; uint32_t x74; uint32_t x75; uint32_t x76; uint32_t x77; uint32_t x78; uint32_t x79; uint32_t x80; uint32_t x81; uint32_t x82; uint32_t x83; uint32_t x84; uint32_t x85; uint32_t x86; uint32_t x87; uint32_t x88; uint32_t x89; uint32_t x90; uint32_t x91; uint32_t x92; uint32_t x93; uint32_t x94; uint32_t x95; uint32_t x96; fiat_p521_uint1 x97; uint32_t x98; fiat_p521_uint1 x99; uint32_t x100; fiat_p521_uint1 x101; uint32_t x102; fiat_p521_uint1 x103; uint32_t x104; fiat_p521_uint1 x105; uint32_t x106; fiat_p521_uint1 x107; uint32_t x108; fiat_p521_uint1 x109; uint32_t x110; fiat_p521_uint1 x111; uint32_t x112; fiat_p521_uint1 x113; uint32_t x114; fiat_p521_uint1 x115; uint32_t x116; fiat_p521_uint1 x117; uint32_t x118; fiat_p521_uint1 x119; uint32_t x120; fiat_p521_uint1 x121; uint32_t x122; fiat_p521_uint1 x123; uint32_t x124; fiat_p521_uint1 x125; uint32_t x126; fiat_p521_uint1 x127; uint32_t x128; fiat_p521_uint1 x129; uint32_t x130; fiat_p521_uint1 x131; uint32_t x132; fiat_p521_uint1 x133; uint32_t x134; fiat_p521_uint1 x135; uint32_t x136; fiat_p521_uint1 x137; uint32_t x138; fiat_p521_uint1 x139; uint32_t x140; fiat_p521_uint1 x141; uint32_t x142; fiat_p521_uint1 x143; uint32_t x144; fiat_p521_uint1 x145; uint32_t x146; fiat_p521_uint1 x147; uint32_t x148; fiat_p521_uint1 x149; uint32_t x150; fiat_p521_uint1 x151; uint32_t x152; fiat_p521_uint1 x153; uint32_t x154; fiat_p521_uint1 x155; uint32_t x156; fiat_p521_uint1 x157; uint32_t x158; fiat_p521_uint1 x159; uint32_t x160; fiat_p521_uint1 x161; uint32_t x162; fiat_p521_uint1 x163; uint32_t x164; fiat_p521_uint1 x165; uint32_t x166; uint32_t x167; uint32_t x168; uint32_t x169; uint32_t x170; uint32_t x171; uint32_t x172; uint32_t x173; uint32_t x174; uint32_t x175; uint32_t x176; uint32_t x177; uint32_t x178; uint32_t x179; uint32_t x180; uint32_t x181; uint32_t x182; uint32_t x183; fiat_p521_uint1 x184; uint32_t x185; fiat_p521_uint1 x186; uint32_t x187; fiat_p521_uint1 x188; uint32_t x189; fiat_p521_uint1 x190; uint32_t x191; fiat_p521_uint1 x192; uint32_t x193; fiat_p521_uint1 x194; uint32_t x195; fiat_p521_uint1 x196; uint32_t x197; fiat_p521_uint1 x198; uint32_t x199; fiat_p521_uint1 x200; uint32_t x201; fiat_p521_uint1 x202; uint32_t x203; fiat_p521_uint1 x204; uint32_t x205; fiat_p521_uint1 x206; uint32_t x207; fiat_p521_uint1 x208; uint32_t x209; fiat_p521_uint1 x210; uint32_t x211; fiat_p521_uint1 x212; uint32_t x213; fiat_p521_uint1 x214; uint32_t x215; fiat_p521_uint1 x216; uint32_t x217; uint32_t x218; fiat_p521_uint1 x219; uint32_t x220; fiat_p521_uint1 x221; uint32_t x222; fiat_p521_uint1 x223; uint32_t x224; fiat_p521_uint1 x225; uint32_t x226; fiat_p521_uint1 x227; uint32_t x228; fiat_p521_uint1 x229; uint32_t x230; fiat_p521_uint1 x231; uint32_t x232; fiat_p521_uint1 x233; uint32_t x234; fiat_p521_uint1 x235; uint32_t x236; fiat_p521_uint1 x237; uint32_t x238; fiat_p521_uint1 x239; uint32_t x240; fiat_p521_uint1 x241; uint32_t x242; fiat_p521_uint1 x243; uint32_t x244; fiat_p521_uint1 x245; uint32_t x246; fiat_p521_uint1 x247; uint32_t x248; fiat_p521_uint1 x249; uint32_t x250; fiat_p521_uint1 x251; uint32_t x252; uint32_t x253; uint32_t x254; uint32_t x255; uint32_t x256; uint32_t x257; uint32_t x258; uint32_t x259; uint32_t x260; uint32_t x261; uint32_t x262; uint32_t x263; uint32_t x264; uint32_t x265; uint32_t x266; uint32_t x267; uint32_t x268; fiat_p521_uint1 x269; uint32_t x270; uint32_t x271; uint32_t x272; uint32_t x273; uint32_t x274; uint32_t x275; uint32_t x276; uint32_t x277; uint32_t x278; uint32_t x279; uint32_t x280; uint32_t x281; uint32_t x282; uint32_t x283; uint32_t x284; uint32_t x285; uint32_t x286; uint32_t x287; uint32_t x288; fiat_p521_uint1 x289; uint32_t x290; fiat_p521_uint1 x291; uint32_t x292; fiat_p521_uint1 x293; uint32_t x294; fiat_p521_uint1 x295; uint32_t x296; fiat_p521_uint1 x297; uint32_t x298; fiat_p521_uint1 x299; uint32_t x300; fiat_p521_uint1 x301; uint32_t x302; fiat_p521_uint1 x303; uint32_t x304; fiat_p521_uint1 x305; uint32_t x306; fiat_p521_uint1 x307; uint32_t x308; fiat_p521_uint1 x309; uint32_t x310; fiat_p521_uint1 x311; uint32_t x312; fiat_p521_uint1 x313; uint32_t x314; fiat_p521_uint1 x315; uint32_t x316; fiat_p521_uint1 x317; uint32_t x318; fiat_p521_uint1 x319; uint32_t x320; fiat_p521_uint1 x321; uint32_t x322; fiat_p521_uint1 x323; uint32_t x324; uint32_t x325; uint32_t x326; uint32_t x327; uint32_t x328; uint32_t x329; uint32_t x330; uint32_t x331; uint32_t x332; uint32_t x333; uint32_t x334; uint32_t x335; uint32_t x336; uint32_t x337; uint32_t x338; uint32_t x339; uint32_t x340; uint32_t x341; fiat_p521_uint1 x342; uint32_t x343; fiat_p521_uint1 x344; uint32_t x345; fiat_p521_uint1 x346; uint32_t x347; fiat_p521_uint1 x348; uint32_t x349; fiat_p521_uint1 x350; uint32_t x351; fiat_p521_uint1 x352; uint32_t x353; fiat_p521_uint1 x354; uint32_t x355; fiat_p521_uint1 x356; uint32_t x357; fiat_p521_uint1 x358; uint32_t x359; fiat_p521_uint1 x360; uint32_t x361; fiat_p521_uint1 x362; uint32_t x363; fiat_p521_uint1 x364; uint32_t x365; fiat_p521_uint1 x366; uint32_t x367; fiat_p521_uint1 x368; uint32_t x369; fiat_p521_uint1 x370; uint32_t x371; fiat_p521_uint1 x372; uint32_t x373; fiat_p521_uint1 x374; uint32_t x375; fiat_p521_uint1 x376; uint32_t x377; fiat_p521_uint1 x378; uint32_t x379; fiat_p521_uint1 x380; uint32_t x381; fiat_p521_uint1 x382; uint32_t x383; fiat_p521_uint1 x384; uint32_t x385; fiat_p521_uint1 x386; uint32_t x387; fiat_p521_uint1 x388; uint32_t x389; fiat_p521_uint1 x390; uint32_t x391; fiat_p521_uint1 x392; uint32_t x393; fiat_p521_uint1 x394; uint32_t x395; fiat_p521_uint1 x396; uint32_t x397; fiat_p521_uint1 x398; uint32_t x399; fiat_p521_uint1 x400; uint32_t x401; fiat_p521_uint1 x402; uint32_t x403; fiat_p521_uint1 x404; uint32_t x405; fiat_p521_uint1 x406; uint32_t x407; fiat_p521_uint1 x408; uint32_t x409; fiat_p521_uint1 x410; uint32_t x411; fiat_p521_uint1 x412; uint32_t x413; uint32_t x414; uint32_t x415; uint32_t x416; uint32_t x417; uint32_t x418; uint32_t x419; uint32_t x420; uint32_t x421; uint32_t x422; uint32_t x423; uint32_t x424; uint32_t x425; uint32_t x426; uint32_t x427; uint32_t x428; uint32_t x429; uint32_t x430; uint32_t x431; uint32_t x432; uint32_t x433; uint32_t x434; uint32_t x435; uint32_t x436; uint32_t x437; uint32_t x438; uint32_t x439; uint32_t x440; uint32_t x441; uint32_t x442; uint32_t x443; uint32_t x444; uint32_t x445; uint32_t x446; uint32_t x447; uint32_t x448; uint32_t x449; uint32_t x450; uint32_t x451; uint32_t x452; uint32_t x453; uint32_t x454; uint32_t x455; uint32_t x456; uint32_t x457; uint32_t x458; uint32_t x459; uint32_t x460; uint32_t x461; uint32_t x462; uint32_t x463; uint32_t x464; fiat_p521_addcarryx_u32(&x1, &x2, 0x0, (~arg1), 0x1); x3 = (fiat_p521_uint1)((fiat_p521_uint1)(x1 >> 31) & (fiat_p521_uint1)((arg3[0]) & 0x1)); fiat_p521_addcarryx_u32(&x4, &x5, 0x0, (~arg1), 0x1); fiat_p521_cmovznz_u32(&x6, x3, arg1, x4); fiat_p521_cmovznz_u32(&x7, x3, (arg2[0]), (arg3[0])); fiat_p521_cmovznz_u32(&x8, x3, (arg2[1]), (arg3[1])); fiat_p521_cmovznz_u32(&x9, x3, (arg2[2]), (arg3[2])); fiat_p521_cmovznz_u32(&x10, x3, (arg2[3]), (arg3[3])); fiat_p521_cmovznz_u32(&x11, x3, (arg2[4]), (arg3[4])); fiat_p521_cmovznz_u32(&x12, x3, (arg2[5]), (arg3[5])); fiat_p521_cmovznz_u32(&x13, x3, (arg2[6]), (arg3[6])); fiat_p521_cmovznz_u32(&x14, x3, (arg2[7]), (arg3[7])); fiat_p521_cmovznz_u32(&x15, x3, (arg2[8]), (arg3[8])); fiat_p521_cmovznz_u32(&x16, x3, (arg2[9]), (arg3[9])); fiat_p521_cmovznz_u32(&x17, x3, (arg2[10]), (arg3[10])); fiat_p521_cmovznz_u32(&x18, x3, (arg2[11]), (arg3[11])); fiat_p521_cmovznz_u32(&x19, x3, (arg2[12]), (arg3[12])); fiat_p521_cmovznz_u32(&x20, x3, (arg2[13]), (arg3[13])); fiat_p521_cmovznz_u32(&x21, x3, (arg2[14]), (arg3[14])); fiat_p521_cmovznz_u32(&x22, x3, (arg2[15]), (arg3[15])); fiat_p521_cmovznz_u32(&x23, x3, (arg2[16]), (arg3[16])); fiat_p521_cmovznz_u32(&x24, x3, (arg2[17]), (arg3[17])); fiat_p521_addcarryx_u32(&x25, &x26, 0x0, 0x1, (~(arg2[0]))); fiat_p521_addcarryx_u32(&x27, &x28, x26, 0x0, (~(arg2[1]))); fiat_p521_addcarryx_u32(&x29, &x30, x28, 0x0, (~(arg2[2]))); fiat_p521_addcarryx_u32(&x31, &x32, x30, 0x0, (~(arg2[3]))); fiat_p521_addcarryx_u32(&x33, &x34, x32, 0x0, (~(arg2[4]))); fiat_p521_addcarryx_u32(&x35, &x36, x34, 0x0, (~(arg2[5]))); fiat_p521_addcarryx_u32(&x37, &x38, x36, 0x0, (~(arg2[6]))); fiat_p521_addcarryx_u32(&x39, &x40, x38, 0x0, (~(arg2[7]))); fiat_p521_addcarryx_u32(&x41, &x42, x40, 0x0, (~(arg2[8]))); fiat_p521_addcarryx_u32(&x43, &x44, x42, 0x0, (~(arg2[9]))); fiat_p521_addcarryx_u32(&x45, &x46, x44, 0x0, (~(arg2[10]))); fiat_p521_addcarryx_u32(&x47, &x48, x46, 0x0, (~(arg2[11]))); fiat_p521_addcarryx_u32(&x49, &x50, x48, 0x0, (~(arg2[12]))); fiat_p521_addcarryx_u32(&x51, &x52, x50, 0x0, (~(arg2[13]))); fiat_p521_addcarryx_u32(&x53, &x54, x52, 0x0, (~(arg2[14]))); fiat_p521_addcarryx_u32(&x55, &x56, x54, 0x0, (~(arg2[15]))); fiat_p521_addcarryx_u32(&x57, &x58, x56, 0x0, (~(arg2[16]))); fiat_p521_addcarryx_u32(&x59, &x60, x58, 0x0, (~(arg2[17]))); fiat_p521_cmovznz_u32(&x61, x3, (arg3[0]), x25); fiat_p521_cmovznz_u32(&x62, x3, (arg3[1]), x27); fiat_p521_cmovznz_u32(&x63, x3, (arg3[2]), x29); fiat_p521_cmovznz_u32(&x64, x3, (arg3[3]), x31); fiat_p521_cmovznz_u32(&x65, x3, (arg3[4]), x33); fiat_p521_cmovznz_u32(&x66, x3, (arg3[5]), x35); fiat_p521_cmovznz_u32(&x67, x3, (arg3[6]), x37); fiat_p521_cmovznz_u32(&x68, x3, (arg3[7]), x39); fiat_p521_cmovznz_u32(&x69, x3, (arg3[8]), x41); fiat_p521_cmovznz_u32(&x70, x3, (arg3[9]), x43); fiat_p521_cmovznz_u32(&x71, x3, (arg3[10]), x45); fiat_p521_cmovznz_u32(&x72, x3, (arg3[11]), x47); fiat_p521_cmovznz_u32(&x73, x3, (arg3[12]), x49); fiat_p521_cmovznz_u32(&x74, x3, (arg3[13]), x51); fiat_p521_cmovznz_u32(&x75, x3, (arg3[14]), x53); fiat_p521_cmovznz_u32(&x76, x3, (arg3[15]), x55); fiat_p521_cmovznz_u32(&x77, x3, (arg3[16]), x57); fiat_p521_cmovznz_u32(&x78, x3, (arg3[17]), x59); fiat_p521_cmovznz_u32(&x79, x3, (arg4[0]), (arg5[0])); fiat_p521_cmovznz_u32(&x80, x3, (arg4[1]), (arg5[1])); fiat_p521_cmovznz_u32(&x81, x3, (arg4[2]), (arg5[2])); fiat_p521_cmovznz_u32(&x82, x3, (arg4[3]), (arg5[3])); fiat_p521_cmovznz_u32(&x83, x3, (arg4[4]), (arg5[4])); fiat_p521_cmovznz_u32(&x84, x3, (arg4[5]), (arg5[5])); fiat_p521_cmovznz_u32(&x85, x3, (arg4[6]), (arg5[6])); fiat_p521_cmovznz_u32(&x86, x3, (arg4[7]), (arg5[7])); fiat_p521_cmovznz_u32(&x87, x3, (arg4[8]), (arg5[8])); fiat_p521_cmovznz_u32(&x88, x3, (arg4[9]), (arg5[9])); fiat_p521_cmovznz_u32(&x89, x3, (arg4[10]), (arg5[10])); fiat_p521_cmovznz_u32(&x90, x3, (arg4[11]), (arg5[11])); fiat_p521_cmovznz_u32(&x91, x3, (arg4[12]), (arg5[12])); fiat_p521_cmovznz_u32(&x92, x3, (arg4[13]), (arg5[13])); fiat_p521_cmovznz_u32(&x93, x3, (arg4[14]), (arg5[14])); fiat_p521_cmovznz_u32(&x94, x3, (arg4[15]), (arg5[15])); fiat_p521_cmovznz_u32(&x95, x3, (arg4[16]), (arg5[16])); fiat_p521_addcarryx_u32(&x96, &x97, 0x0, x79, x79); fiat_p521_addcarryx_u32(&x98, &x99, x97, x80, x80); fiat_p521_addcarryx_u32(&x100, &x101, x99, x81, x81); fiat_p521_addcarryx_u32(&x102, &x103, x101, x82, x82); fiat_p521_addcarryx_u32(&x104, &x105, x103, x83, x83); fiat_p521_addcarryx_u32(&x106, &x107, x105, x84, x84); fiat_p521_addcarryx_u32(&x108, &x109, x107, x85, x85); fiat_p521_addcarryx_u32(&x110, &x111, x109, x86, x86); fiat_p521_addcarryx_u32(&x112, &x113, x111, x87, x87); fiat_p521_addcarryx_u32(&x114, &x115, x113, x88, x88); fiat_p521_addcarryx_u32(&x116, &x117, x115, x89, x89); fiat_p521_addcarryx_u32(&x118, &x119, x117, x90, x90); fiat_p521_addcarryx_u32(&x120, &x121, x119, x91, x91); fiat_p521_addcarryx_u32(&x122, &x123, x121, x92, x92); fiat_p521_addcarryx_u32(&x124, &x125, x123, x93, x93); fiat_p521_addcarryx_u32(&x126, &x127, x125, x94, x94); fiat_p521_addcarryx_u32(&x128, &x129, x127, x95, x95); fiat_p521_subborrowx_u32(&x130, &x131, 0x0, x96, UINT32_C(0xffffffff)); fiat_p521_subborrowx_u32(&x132, &x133, x131, x98, UINT32_C(0xffffffff)); fiat_p521_subborrowx_u32(&x134, &x135, x133, x100, UINT32_C(0xffffffff)); fiat_p521_subborrowx_u32(&x136, &x137, x135, x102, UINT32_C(0xffffffff)); fiat_p521_subborrowx_u32(&x138, &x139, x137, x104, UINT32_C(0xffffffff)); fiat_p521_subborrowx_u32(&x140, &x141, x139, x106, UINT32_C(0xffffffff)); fiat_p521_subborrowx_u32(&x142, &x143, x141, x108, UINT32_C(0xffffffff)); fiat_p521_subborrowx_u32(&x144, &x145, x143, x110, UINT32_C(0xffffffff)); fiat_p521_subborrowx_u32(&x146, &x147, x145, x112, UINT32_C(0xffffffff)); fiat_p521_subborrowx_u32(&x148, &x149, x147, x114, UINT32_C(0xffffffff)); fiat_p521_subborrowx_u32(&x150, &x151, x149, x116, UINT32_C(0xffffffff)); fiat_p521_subborrowx_u32(&x152, &x153, x151, x118, UINT32_C(0xffffffff)); fiat_p521_subborrowx_u32(&x154, &x155, x153, x120, UINT32_C(0xffffffff)); fiat_p521_subborrowx_u32(&x156, &x157, x155, x122, UINT32_C(0xffffffff)); fiat_p521_subborrowx_u32(&x158, &x159, x157, x124, UINT32_C(0xffffffff)); fiat_p521_subborrowx_u32(&x160, &x161, x159, x126, UINT32_C(0xffffffff)); fiat_p521_subborrowx_u32(&x162, &x163, x161, x128, UINT16_C(0x1ff)); fiat_p521_subborrowx_u32(&x164, &x165, x163, x129, 0x0); x166 = (arg4[16]); x167 = (arg4[15]); x168 = (arg4[14]); x169 = (arg4[13]); x170 = (arg4[12]); x171 = (arg4[11]); x172 = (arg4[10]); x173 = (arg4[9]); x174 = (arg4[8]); x175 = (arg4[7]); x176 = (arg4[6]); x177 = (arg4[5]); x178 = (arg4[4]); x179 = (arg4[3]); x180 = (arg4[2]); x181 = (arg4[1]); x182 = (arg4[0]); fiat_p521_subborrowx_u32(&x183, &x184, 0x0, 0x0, x182); fiat_p521_subborrowx_u32(&x185, &x186, x184, 0x0, x181); fiat_p521_subborrowx_u32(&x187, &x188, x186, 0x0, x180); fiat_p521_subborrowx_u32(&x189, &x190, x188, 0x0, x179); fiat_p521_subborrowx_u32(&x191, &x192, x190, 0x0, x178); fiat_p521_subborrowx_u32(&x193, &x194, x192, 0x0, x177); fiat_p521_subborrowx_u32(&x195, &x196, x194, 0x0, x176); fiat_p521_subborrowx_u32(&x197, &x198, x196, 0x0, x175); fiat_p521_subborrowx_u32(&x199, &x200, x198, 0x0, x174); fiat_p521_subborrowx_u32(&x201, &x202, x200, 0x0, x173); fiat_p521_subborrowx_u32(&x203, &x204, x202, 0x0, x172); fiat_p521_subborrowx_u32(&x205, &x206, x204, 0x0, x171); fiat_p521_subborrowx_u32(&x207, &x208, x206, 0x0, x170); fiat_p521_subborrowx_u32(&x209, &x210, x208, 0x0, x169); fiat_p521_subborrowx_u32(&x211, &x212, x210, 0x0, x168); fiat_p521_subborrowx_u32(&x213, &x214, x212, 0x0, x167); fiat_p521_subborrowx_u32(&x215, &x216, x214, 0x0, x166); fiat_p521_cmovznz_u32(&x217, x216, 0x0, UINT32_C(0xffffffff)); fiat_p521_addcarryx_u32(&x218, &x219, 0x0, x183, x217); fiat_p521_addcarryx_u32(&x220, &x221, x219, x185, x217); fiat_p521_addcarryx_u32(&x222, &x223, x221, x187, x217); fiat_p521_addcarryx_u32(&x224, &x225, x223, x189, x217); fiat_p521_addcarryx_u32(&x226, &x227, x225, x191, x217); fiat_p521_addcarryx_u32(&x228, &x229, x227, x193, x217); fiat_p521_addcarryx_u32(&x230, &x231, x229, x195, x217); fiat_p521_addcarryx_u32(&x232, &x233, x231, x197, x217); fiat_p521_addcarryx_u32(&x234, &x235, x233, x199, x217); fiat_p521_addcarryx_u32(&x236, &x237, x235, x201, x217); fiat_p521_addcarryx_u32(&x238, &x239, x237, x203, x217); fiat_p521_addcarryx_u32(&x240, &x241, x239, x205, x217); fiat_p521_addcarryx_u32(&x242, &x243, x241, x207, x217); fiat_p521_addcarryx_u32(&x244, &x245, x243, x209, x217); fiat_p521_addcarryx_u32(&x246, &x247, x245, x211, x217); fiat_p521_addcarryx_u32(&x248, &x249, x247, x213, x217); fiat_p521_addcarryx_u32(&x250, &x251, x249, x215, (x217 & UINT16_C(0x1ff))); fiat_p521_cmovznz_u32(&x252, x3, (arg5[0]), x218); fiat_p521_cmovznz_u32(&x253, x3, (arg5[1]), x220); fiat_p521_cmovznz_u32(&x254, x3, (arg5[2]), x222); fiat_p521_cmovznz_u32(&x255, x3, (arg5[3]), x224); fiat_p521_cmovznz_u32(&x256, x3, (arg5[4]), x226); fiat_p521_cmovznz_u32(&x257, x3, (arg5[5]), x228); fiat_p521_cmovznz_u32(&x258, x3, (arg5[6]), x230); fiat_p521_cmovznz_u32(&x259, x3, (arg5[7]), x232); fiat_p521_cmovznz_u32(&x260, x3, (arg5[8]), x234); fiat_p521_cmovznz_u32(&x261, x3, (arg5[9]), x236); fiat_p521_cmovznz_u32(&x262, x3, (arg5[10]), x238); fiat_p521_cmovznz_u32(&x263, x3, (arg5[11]), x240); fiat_p521_cmovznz_u32(&x264, x3, (arg5[12]), x242); fiat_p521_cmovznz_u32(&x265, x3, (arg5[13]), x244); fiat_p521_cmovznz_u32(&x266, x3, (arg5[14]), x246); fiat_p521_cmovznz_u32(&x267, x3, (arg5[15]), x248); fiat_p521_cmovznz_u32(&x268, x3, (arg5[16]), x250); x269 = (fiat_p521_uint1)(x61 & 0x1); fiat_p521_cmovznz_u32(&x270, x269, 0x0, x7); fiat_p521_cmovznz_u32(&x271, x269, 0x0, x8); fiat_p521_cmovznz_u32(&x272, x269, 0x0, x9); fiat_p521_cmovznz_u32(&x273, x269, 0x0, x10); fiat_p521_cmovznz_u32(&x274, x269, 0x0, x11); fiat_p521_cmovznz_u32(&x275, x269, 0x0, x12); fiat_p521_cmovznz_u32(&x276, x269, 0x0, x13); fiat_p521_cmovznz_u32(&x277, x269, 0x0, x14); fiat_p521_cmovznz_u32(&x278, x269, 0x0, x15); fiat_p521_cmovznz_u32(&x279, x269, 0x0, x16); fiat_p521_cmovznz_u32(&x280, x269, 0x0, x17); fiat_p521_cmovznz_u32(&x281, x269, 0x0, x18); fiat_p521_cmovznz_u32(&x282, x269, 0x0, x19); fiat_p521_cmovznz_u32(&x283, x269, 0x0, x20); fiat_p521_cmovznz_u32(&x284, x269, 0x0, x21); fiat_p521_cmovznz_u32(&x285, x269, 0x0, x22); fiat_p521_cmovznz_u32(&x286, x269, 0x0, x23); fiat_p521_cmovznz_u32(&x287, x269, 0x0, x24); fiat_p521_addcarryx_u32(&x288, &x289, 0x0, x61, x270); fiat_p521_addcarryx_u32(&x290, &x291, x289, x62, x271); fiat_p521_addcarryx_u32(&x292, &x293, x291, x63, x272); fiat_p521_addcarryx_u32(&x294, &x295, x293, x64, x273); fiat_p521_addcarryx_u32(&x296, &x297, x295, x65, x274); fiat_p521_addcarryx_u32(&x298, &x299, x297, x66, x275); fiat_p521_addcarryx_u32(&x300, &x301, x299, x67, x276); fiat_p521_addcarryx_u32(&x302, &x303, x301, x68, x277); fiat_p521_addcarryx_u32(&x304, &x305, x303, x69, x278); fiat_p521_addcarryx_u32(&x306, &x307, x305, x70, x279); fiat_p521_addcarryx_u32(&x308, &x309, x307, x71, x280); fiat_p521_addcarryx_u32(&x310, &x311, x309, x72, x281); fiat_p521_addcarryx_u32(&x312, &x313, x311, x73, x282); fiat_p521_addcarryx_u32(&x314, &x315, x313, x74, x283); fiat_p521_addcarryx_u32(&x316, &x317, x315, x75, x284); fiat_p521_addcarryx_u32(&x318, &x319, x317, x76, x285); fiat_p521_addcarryx_u32(&x320, &x321, x319, x77, x286); fiat_p521_addcarryx_u32(&x322, &x323, x321, x78, x287); fiat_p521_cmovznz_u32(&x324, x269, 0x0, x79); fiat_p521_cmovznz_u32(&x325, x269, 0x0, x80); fiat_p521_cmovznz_u32(&x326, x269, 0x0, x81); fiat_p521_cmovznz_u32(&x327, x269, 0x0, x82); fiat_p521_cmovznz_u32(&x328, x269, 0x0, x83); fiat_p521_cmovznz_u32(&x329, x269, 0x0, x84); fiat_p521_cmovznz_u32(&x330, x269, 0x0, x85); fiat_p521_cmovznz_u32(&x331, x269, 0x0, x86); fiat_p521_cmovznz_u32(&x332, x269, 0x0, x87); fiat_p521_cmovznz_u32(&x333, x269, 0x0, x88); fiat_p521_cmovznz_u32(&x334, x269, 0x0, x89); fiat_p521_cmovznz_u32(&x335, x269, 0x0, x90); fiat_p521_cmovznz_u32(&x336, x269, 0x0, x91); fiat_p521_cmovznz_u32(&x337, x269, 0x0, x92); fiat_p521_cmovznz_u32(&x338, x269, 0x0, x93); fiat_p521_cmovznz_u32(&x339, x269, 0x0, x94); fiat_p521_cmovznz_u32(&x340, x269, 0x0, x95); fiat_p521_addcarryx_u32(&x341, &x342, 0x0, x252, x324); fiat_p521_addcarryx_u32(&x343, &x344, x342, x253, x325); fiat_p521_addcarryx_u32(&x345, &x346, x344, x254, x326); fiat_p521_addcarryx_u32(&x347, &x348, x346, x255, x327); fiat_p521_addcarryx_u32(&x349, &x350, x348, x256, x328); fiat_p521_addcarryx_u32(&x351, &x352, x350, x257, x329); fiat_p521_addcarryx_u32(&x353, &x354, x352, x258, x330); fiat_p521_addcarryx_u32(&x355, &x356, x354, x259, x331); fiat_p521_addcarryx_u32(&x357, &x358, x356, x260, x332); fiat_p521_addcarryx_u32(&x359, &x360, x358, x261, x333); fiat_p521_addcarryx_u32(&x361, &x362, x360, x262, x334); fiat_p521_addcarryx_u32(&x363, &x364, x362, x263, x335); fiat_p521_addcarryx_u32(&x365, &x366, x364, x264, x336); fiat_p521_addcarryx_u32(&x367, &x368, x366, x265, x337); fiat_p521_addcarryx_u32(&x369, &x370, x368, x266, x338); fiat_p521_addcarryx_u32(&x371, &x372, x370, x267, x339); fiat_p521_addcarryx_u32(&x373, &x374, x372, x268, x340); fiat_p521_subborrowx_u32(&x375, &x376, 0x0, x341, UINT32_C(0xffffffff)); fiat_p521_subborrowx_u32(&x377, &x378, x376, x343, UINT32_C(0xffffffff)); fiat_p521_subborrowx_u32(&x379, &x380, x378, x345, UINT32_C(0xffffffff)); fiat_p521_subborrowx_u32(&x381, &x382, x380, x347, UINT32_C(0xffffffff)); fiat_p521_subborrowx_u32(&x383, &x384, x382, x349, UINT32_C(0xffffffff)); fiat_p521_subborrowx_u32(&x385, &x386, x384, x351, UINT32_C(0xffffffff)); fiat_p521_subborrowx_u32(&x387, &x388, x386, x353, UINT32_C(0xffffffff)); fiat_p521_subborrowx_u32(&x389, &x390, x388, x355, UINT32_C(0xffffffff)); fiat_p521_subborrowx_u32(&x391, &x392, x390, x357, UINT32_C(0xffffffff)); fiat_p521_subborrowx_u32(&x393, &x394, x392, x359, UINT32_C(0xffffffff)); fiat_p521_subborrowx_u32(&x395, &x396, x394, x361, UINT32_C(0xffffffff)); fiat_p521_subborrowx_u32(&x397, &x398, x396, x363, UINT32_C(0xffffffff)); fiat_p521_subborrowx_u32(&x399, &x400, x398, x365, UINT32_C(0xffffffff)); fiat_p521_subborrowx_u32(&x401, &x402, x400, x367, UINT32_C(0xffffffff)); fiat_p521_subborrowx_u32(&x403, &x404, x402, x369, UINT32_C(0xffffffff)); fiat_p521_subborrowx_u32(&x405, &x406, x404, x371, UINT32_C(0xffffffff)); fiat_p521_subborrowx_u32(&x407, &x408, x406, x373, UINT16_C(0x1ff)); fiat_p521_subborrowx_u32(&x409, &x410, x408, x374, 0x0); fiat_p521_addcarryx_u32(&x411, &x412, 0x0, x6, 0x1); x413 = ((x288 >> 1) | ((x290 << 31) & UINT32_C(0xffffffff))); x414 = ((x290 >> 1) | ((x292 << 31) & UINT32_C(0xffffffff))); x415 = ((x292 >> 1) | ((x294 << 31) & UINT32_C(0xffffffff))); x416 = ((x294 >> 1) | ((x296 << 31) & UINT32_C(0xffffffff))); x417 = ((x296 >> 1) | ((x298 << 31) & UINT32_C(0xffffffff))); x418 = ((x298 >> 1) | ((x300 << 31) & UINT32_C(0xffffffff))); x419 = ((x300 >> 1) | ((x302 << 31) & UINT32_C(0xffffffff))); x420 = ((x302 >> 1) | ((x304 << 31) & UINT32_C(0xffffffff))); x421 = ((x304 >> 1) | ((x306 << 31) & UINT32_C(0xffffffff))); x422 = ((x306 >> 1) | ((x308 << 31) & UINT32_C(0xffffffff))); x423 = ((x308 >> 1) | ((x310 << 31) & UINT32_C(0xffffffff))); x424 = ((x310 >> 1) | ((x312 << 31) & UINT32_C(0xffffffff))); x425 = ((x312 >> 1) | ((x314 << 31) & UINT32_C(0xffffffff))); x426 = ((x314 >> 1) | ((x316 << 31) & UINT32_C(0xffffffff))); x427 = ((x316 >> 1) | ((x318 << 31) & UINT32_C(0xffffffff))); x428 = ((x318 >> 1) | ((x320 << 31) & UINT32_C(0xffffffff))); x429 = ((x320 >> 1) | ((x322 << 31) & UINT32_C(0xffffffff))); x430 = ((x322 & UINT32_C(0x80000000)) | (x322 >> 1)); fiat_p521_cmovznz_u32(&x431, x165, x130, x96); fiat_p521_cmovznz_u32(&x432, x165, x132, x98); fiat_p521_cmovznz_u32(&x433, x165, x134, x100); fiat_p521_cmovznz_u32(&x434, x165, x136, x102); fiat_p521_cmovznz_u32(&x435, x165, x138, x104); fiat_p521_cmovznz_u32(&x436, x165, x140, x106); fiat_p521_cmovznz_u32(&x437, x165, x142, x108); fiat_p521_cmovznz_u32(&x438, x165, x144, x110); fiat_p521_cmovznz_u32(&x439, x165, x146, x112); fiat_p521_cmovznz_u32(&x440, x165, x148, x114); fiat_p521_cmovznz_u32(&x441, x165, x150, x116); fiat_p521_cmovznz_u32(&x442, x165, x152, x118); fiat_p521_cmovznz_u32(&x443, x165, x154, x120); fiat_p521_cmovznz_u32(&x444, x165, x156, x122); fiat_p521_cmovznz_u32(&x445, x165, x158, x124); fiat_p521_cmovznz_u32(&x446, x165, x160, x126); fiat_p521_cmovznz_u32(&x447, x165, x162, x128); fiat_p521_cmovznz_u32(&x448, x410, x375, x341); fiat_p521_cmovznz_u32(&x449, x410, x377, x343); fiat_p521_cmovznz_u32(&x450, x410, x379, x345); fiat_p521_cmovznz_u32(&x451, x410, x381, x347); fiat_p521_cmovznz_u32(&x452, x410, x383, x349); fiat_p521_cmovznz_u32(&x453, x410, x385, x351); fiat_p521_cmovznz_u32(&x454, x410, x387, x353); fiat_p521_cmovznz_u32(&x455, x410, x389, x355); fiat_p521_cmovznz_u32(&x456, x410, x391, x357); fiat_p521_cmovznz_u32(&x457, x410, x393, x359); fiat_p521_cmovznz_u32(&x458, x410, x395, x361); fiat_p521_cmovznz_u32(&x459, x410, x397, x363); fiat_p521_cmovznz_u32(&x460, x410, x399, x365); fiat_p521_cmovznz_u32(&x461, x410, x401, x367); fiat_p521_cmovznz_u32(&x462, x410, x403, x369); fiat_p521_cmovznz_u32(&x463, x410, x405, x371); fiat_p521_cmovznz_u32(&x464, x410, x407, x373); *out1 = x411; out2[0] = x7; out2[1] = x8; out2[2] = x9; out2[3] = x10; out2[4] = x11; out2[5] = x12; out2[6] = x13; out2[7] = x14; out2[8] = x15; out2[9] = x16; out2[10] = x17; out2[11] = x18; out2[12] = x19; out2[13] = x20; out2[14] = x21; out2[15] = x22; out2[16] = x23; out2[17] = x24; out3[0] = x413; out3[1] = x414; out3[2] = x415; out3[3] = x416; out3[4] = x417; out3[5] = x418; out3[6] = x419; out3[7] = x420; out3[8] = x421; out3[9] = x422; out3[10] = x423; out3[11] = x424; out3[12] = x425; out3[13] = x426; out3[14] = x427; out3[15] = x428; out3[16] = x429; out3[17] = x430; out4[0] = x431; out4[1] = x432; out4[2] = x433; out4[3] = x434; out4[4] = x435; out4[5] = x436; out4[6] = x437; out4[7] = x438; out4[8] = x439; out4[9] = x440; out4[10] = x441; out4[11] = x442; out4[12] = x443; out4[13] = x444; out4[14] = x445; out4[15] = x446; out4[16] = x447; out5[0] = x448; out5[1] = x449; out5[2] = x450; out5[3] = x451; out5[4] = x452; out5[5] = x453; out5[6] = x454; out5[7] = x455; out5[8] = x456; out5[9] = x457; out5[10] = x458; out5[11] = x459; out5[12] = x460; out5[13] = x461; out5[14] = x462; out5[15] = x463; out5[16] = x464; }
mirage-crypto
2.0.2
ISC
https://github.com/mirage/mirage-crypto
git+https://github.com/mirage/mirage-crypto.git
h
mirage-crypto-2.0.2/ec/native/p521_64.h
/* Autogenerated: '../fiat-crypto/src/ExtractionOCaml/word_by_word_montgomery' --static --use-value-barrier --inline-internal p521 64 '2^521 - 1' */ /* curve description: p521 */ /* machine_wordsize = 64 (from "64") */ /* requested operations: (all) */ /* m = 0x1ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff (from "2^521 - 1") */ /* */ /* NOTE: In addition to the bounds specified above each function, all */ /* functions synthesized for this Montgomery arithmetic require the */ /* input to be strictly less than the prime modulus (m), and also */ /* require the input to be in the unique saturated representation. */ /* All functions also ensure that these two properties are true of */ /* return values. */ /* */ /* Computed values: */ /* eval z = z[0] + (z[1] << 64) + (z[2] << 128) + (z[3] << 192) + (z[4] << 256) + (z[5] << 0x140) + (z[6] << 0x180) + (z[7] << 0x1c0) + (z[8] << 2^9) */ /* bytes_eval z = z[0] + (z[1] << 8) + (z[2] << 16) + (z[3] << 24) + (z[4] << 32) + (z[5] << 40) + (z[6] << 48) + (z[7] << 56) + (z[8] << 64) + (z[9] << 72) + (z[10] << 80) + (z[11] << 88) + (z[12] << 96) + (z[13] << 104) + (z[14] << 112) + (z[15] << 120) + (z[16] << 128) + (z[17] << 136) + (z[18] << 144) + (z[19] << 152) + (z[20] << 160) + (z[21] << 168) + (z[22] << 176) + (z[23] << 184) + (z[24] << 192) + (z[25] << 200) + (z[26] << 208) + (z[27] << 216) + (z[28] << 224) + (z[29] << 232) + (z[30] << 240) + (z[31] << 248) + (z[32] << 256) + (z[33] << 0x108) + (z[34] << 0x110) + (z[35] << 0x118) + (z[36] << 0x120) + (z[37] << 0x128) + (z[38] << 0x130) + (z[39] << 0x138) + (z[40] << 0x140) + (z[41] << 0x148) + (z[42] << 0x150) + (z[43] << 0x158) + (z[44] << 0x160) + (z[45] << 0x168) + (z[46] << 0x170) + (z[47] << 0x178) + (z[48] << 0x180) + (z[49] << 0x188) + (z[50] << 0x190) + (z[51] << 0x198) + (z[52] << 0x1a0) + (z[53] << 0x1a8) + (z[54] << 0x1b0) + (z[55] << 0x1b8) + (z[56] << 0x1c0) + (z[57] << 0x1c8) + (z[58] << 0x1d0) + (z[59] << 0x1d8) + (z[60] << 0x1e0) + (z[61] << 0x1e8) + (z[62] << 0x1f0) + (z[63] << 0x1f8) + (z[64] << 2^9) + (z[65] << 0x208) */ /* twos_complement_eval z = let x1 := z[0] + (z[1] << 64) + (z[2] << 128) + (z[3] << 192) + (z[4] << 256) + (z[5] << 0x140) + (z[6] << 0x180) + (z[7] << 0x1c0) + (z[8] << 2^9) in */ /* if x1 & (2^576-1) < 2^575 then x1 & (2^576-1) else (x1 & (2^576-1)) - 2^576 */ #include <stdint.h> typedef unsigned char fiat_p521_uint1; typedef signed char fiat_p521_int1; #if defined(__GNUC__) || defined(__clang__) # define FIAT_P521_FIAT_EXTENSION __extension__ # define FIAT_P521_FIAT_INLINE __inline__ #else # define FIAT_P521_FIAT_EXTENSION # define FIAT_P521_FIAT_INLINE #endif FIAT_P521_FIAT_EXTENSION typedef signed __int128 fiat_p521_int128; FIAT_P521_FIAT_EXTENSION typedef unsigned __int128 fiat_p521_uint128; /* The type fiat_p521_montgomery_domain_field_element is a field element in the Montgomery domain. */ /* Bounds: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]] */ typedef uint64_t fiat_p521_montgomery_domain_field_element[9]; /* The type fiat_p521_non_montgomery_domain_field_element is a field element NOT in the Montgomery domain. */ /* Bounds: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]] */ typedef uint64_t fiat_p521_non_montgomery_domain_field_element[9]; #if (-1 & 3) != 3 #error "This code only works on a two's complement system" #endif #if !defined(FIAT_P521_NO_ASM) && (defined(__GNUC__) || defined(__clang__)) static __inline__ uint64_t fiat_p521_value_barrier_u64(uint64_t a) { __asm__("" : "+r"(a) : /* no inputs */); return a; } #else # define fiat_p521_value_barrier_u64(x) (x) #endif /* * The function fiat_p521_addcarryx_u64 is an addition with carry. * * Postconditions: * out1 = (arg1 + arg2 + arg3) mod 2^64 * out2 = ⌊(arg1 + arg2 + arg3) / 2^64⌋ * * Input Bounds: * arg1: [0x0 ~> 0x1] * arg2: [0x0 ~> 0xffffffffffffffff] * arg3: [0x0 ~> 0xffffffffffffffff] * Output Bounds: * out1: [0x0 ~> 0xffffffffffffffff] * out2: [0x0 ~> 0x1] */ static FIAT_P521_FIAT_INLINE void fiat_p521_addcarryx_u64(uint64_t* out1, fiat_p521_uint1* out2, fiat_p521_uint1 arg1, uint64_t arg2, uint64_t arg3) { fiat_p521_uint128 x1; uint64_t x2; fiat_p521_uint1 x3; x1 = ((arg1 + (fiat_p521_uint128)arg2) + arg3); x2 = (uint64_t)(x1 & UINT64_C(0xffffffffffffffff)); x3 = (fiat_p521_uint1)(x1 >> 64); *out1 = x2; *out2 = x3; } /* * The function fiat_p521_subborrowx_u64 is a subtraction with borrow. * * Postconditions: * out1 = (-arg1 + arg2 + -arg3) mod 2^64 * out2 = -⌊(-arg1 + arg2 + -arg3) / 2^64⌋ * * Input Bounds: * arg1: [0x0 ~> 0x1] * arg2: [0x0 ~> 0xffffffffffffffff] * arg3: [0x0 ~> 0xffffffffffffffff] * Output Bounds: * out1: [0x0 ~> 0xffffffffffffffff] * out2: [0x0 ~> 0x1] */ static FIAT_P521_FIAT_INLINE void fiat_p521_subborrowx_u64(uint64_t* out1, fiat_p521_uint1* out2, fiat_p521_uint1 arg1, uint64_t arg2, uint64_t arg3) { fiat_p521_int128 x1; fiat_p521_int1 x2; uint64_t x3; x1 = ((arg2 - (fiat_p521_int128)arg1) - arg3); x2 = (fiat_p521_int1)(x1 >> 64); x3 = (uint64_t)(x1 & UINT64_C(0xffffffffffffffff)); *out1 = x3; *out2 = (fiat_p521_uint1)(0x0 - x2); } /* * The function fiat_p521_mulx_u64 is a multiplication, returning the full double-width result. * * Postconditions: * out1 = (arg1 * arg2) mod 2^64 * out2 = ⌊arg1 * arg2 / 2^64⌋ * * Input Bounds: * arg1: [0x0 ~> 0xffffffffffffffff] * arg2: [0x0 ~> 0xffffffffffffffff] * Output Bounds: * out1: [0x0 ~> 0xffffffffffffffff] * out2: [0x0 ~> 0xffffffffffffffff] */ static FIAT_P521_FIAT_INLINE void fiat_p521_mulx_u64(uint64_t* out1, uint64_t* out2, uint64_t arg1, uint64_t arg2) { fiat_p521_uint128 x1; uint64_t x2; uint64_t x3; x1 = ((fiat_p521_uint128)arg1 * arg2); x2 = (uint64_t)(x1 & UINT64_C(0xffffffffffffffff)); x3 = (uint64_t)(x1 >> 64); *out1 = x2; *out2 = x3; } /* * The function fiat_p521_cmovznz_u64 is a single-word conditional move. * * Postconditions: * out1 = (if arg1 = 0 then arg2 else arg3) * * Input Bounds: * arg1: [0x0 ~> 0x1] * arg2: [0x0 ~> 0xffffffffffffffff] * arg3: [0x0 ~> 0xffffffffffffffff] * Output Bounds: * out1: [0x0 ~> 0xffffffffffffffff] */ static FIAT_P521_FIAT_INLINE void fiat_p521_cmovznz_u64(uint64_t* out1, fiat_p521_uint1 arg1, uint64_t arg2, uint64_t arg3) { fiat_p521_uint1 x1; uint64_t x2; uint64_t x3; x1 = (!(!arg1)); x2 = ((fiat_p521_int1)(0x0 - x1) & UINT64_C(0xffffffffffffffff)); x3 = ((fiat_p521_value_barrier_u64(x2) & arg3) | (fiat_p521_value_barrier_u64((~x2)) & arg2)); *out1 = x3; } /* * The function fiat_p521_mul multiplies two field elements in the Montgomery domain. * * Preconditions: * 0 ≤ eval arg1 < m * 0 ≤ eval arg2 < m * Postconditions: * eval (from_montgomery out1) mod m = (eval (from_montgomery arg1) * eval (from_montgomery arg2)) mod m * 0 ≤ eval out1 < m * */ static void fiat_p521_mul(fiat_p521_montgomery_domain_field_element out1, const fiat_p521_montgomery_domain_field_element arg1, const fiat_p521_montgomery_domain_field_element arg2) { uint64_t x1; uint64_t x2; uint64_t x3; uint64_t x4; uint64_t x5; uint64_t x6; uint64_t x7; uint64_t x8; uint64_t x9; uint64_t x10; uint64_t x11; uint64_t x12; uint64_t x13; uint64_t x14; uint64_t x15; uint64_t x16; uint64_t x17; uint64_t x18; uint64_t x19; uint64_t x20; uint64_t x21; uint64_t x22; uint64_t x23; uint64_t x24; uint64_t x25; uint64_t x26; uint64_t x27; uint64_t x28; fiat_p521_uint1 x29; uint64_t x30; fiat_p521_uint1 x31; uint64_t x32; fiat_p521_uint1 x33; uint64_t x34; fiat_p521_uint1 x35; uint64_t x36; fiat_p521_uint1 x37; uint64_t x38; fiat_p521_uint1 x39; uint64_t x40; fiat_p521_uint1 x41; uint64_t x42; fiat_p521_uint1 x43; uint64_t x44; uint64_t x45; uint64_t x46; uint64_t x47; uint64_t x48; uint64_t x49; uint64_t x50; uint64_t x51; uint64_t x52; uint64_t x53; uint64_t x54; uint64_t x55; uint64_t x56; uint64_t x57; uint64_t x58; uint64_t x59; uint64_t x60; uint64_t x61; uint64_t x62; uint64_t x63; fiat_p521_uint1 x64; uint64_t x65; fiat_p521_uint1 x66; uint64_t x67; fiat_p521_uint1 x68; uint64_t x69; fiat_p521_uint1 x70; uint64_t x71; fiat_p521_uint1 x72; uint64_t x73; fiat_p521_uint1 x74; uint64_t x75; fiat_p521_uint1 x76; uint64_t x77; fiat_p521_uint1 x78; uint64_t x79; uint64_t x80; fiat_p521_uint1 x81; uint64_t x82; fiat_p521_uint1 x83; uint64_t x84; fiat_p521_uint1 x85; uint64_t x86; fiat_p521_uint1 x87; uint64_t x88; fiat_p521_uint1 x89; uint64_t x90; fiat_p521_uint1 x91; uint64_t x92; fiat_p521_uint1 x93; uint64_t x94; fiat_p521_uint1 x95; uint64_t x96; fiat_p521_uint1 x97; uint64_t x98; fiat_p521_uint1 x99; uint64_t x100; uint64_t x101; uint64_t x102; uint64_t x103; uint64_t x104; uint64_t x105; uint64_t x106; uint64_t x107; uint64_t x108; uint64_t x109; uint64_t x110; uint64_t x111; uint64_t x112; uint64_t x113; uint64_t x114; uint64_t x115; uint64_t x116; uint64_t x117; uint64_t x118; fiat_p521_uint1 x119; uint64_t x120; fiat_p521_uint1 x121; uint64_t x122; fiat_p521_uint1 x123; uint64_t x124; fiat_p521_uint1 x125; uint64_t x126; fiat_p521_uint1 x127; uint64_t x128; fiat_p521_uint1 x129; uint64_t x130; fiat_p521_uint1 x131; uint64_t x132; fiat_p521_uint1 x133; uint64_t x134; uint64_t x135; fiat_p521_uint1 x136; uint64_t x137; fiat_p521_uint1 x138; uint64_t x139; fiat_p521_uint1 x140; uint64_t x141; fiat_p521_uint1 x142; uint64_t x143; fiat_p521_uint1 x144; uint64_t x145; fiat_p521_uint1 x146; uint64_t x147; fiat_p521_uint1 x148; uint64_t x149; fiat_p521_uint1 x150; uint64_t x151; fiat_p521_uint1 x152; uint64_t x153; fiat_p521_uint1 x154; uint64_t x155; uint64_t x156; uint64_t x157; uint64_t x158; uint64_t x159; uint64_t x160; uint64_t x161; uint64_t x162; uint64_t x163; uint64_t x164; uint64_t x165; uint64_t x166; uint64_t x167; uint64_t x168; uint64_t x169; uint64_t x170; uint64_t x171; uint64_t x172; uint64_t x173; fiat_p521_uint1 x174; uint64_t x175; fiat_p521_uint1 x176; uint64_t x177; fiat_p521_uint1 x178; uint64_t x179; fiat_p521_uint1 x180; uint64_t x181; fiat_p521_uint1 x182; uint64_t x183; fiat_p521_uint1 x184; uint64_t x185; fiat_p521_uint1 x186; uint64_t x187; fiat_p521_uint1 x188; uint64_t x189; uint64_t x190; fiat_p521_uint1 x191; uint64_t x192; fiat_p521_uint1 x193; uint64_t x194; fiat_p521_uint1 x195; uint64_t x196; fiat_p521_uint1 x197; uint64_t x198; fiat_p521_uint1 x199; uint64_t x200; fiat_p521_uint1 x201; uint64_t x202; fiat_p521_uint1 x203; uint64_t x204; fiat_p521_uint1 x205; uint64_t x206; fiat_p521_uint1 x207; uint64_t x208; fiat_p521_uint1 x209; uint64_t x210; uint64_t x211; uint64_t x212; uint64_t x213; uint64_t x214; uint64_t x215; uint64_t x216; uint64_t x217; uint64_t x218; uint64_t x219; uint64_t x220; uint64_t x221; uint64_t x222; uint64_t x223; uint64_t x224; uint64_t x225; uint64_t x226; uint64_t x227; uint64_t x228; uint64_t x229; fiat_p521_uint1 x230; uint64_t x231; fiat_p521_uint1 x232; uint64_t x233; fiat_p521_uint1 x234; uint64_t x235; fiat_p521_uint1 x236; uint64_t x237; fiat_p521_uint1 x238; uint64_t x239; fiat_p521_uint1 x240; uint64_t x241; fiat_p521_uint1 x242; uint64_t x243; fiat_p521_uint1 x244; uint64_t x245; uint64_t x246; fiat_p521_uint1 x247; uint64_t x248; fiat_p521_uint1 x249; uint64_t x250; fiat_p521_uint1 x251; uint64_t x252; fiat_p521_uint1 x253; uint64_t x254; fiat_p521_uint1 x255; uint64_t x256; fiat_p521_uint1 x257; uint64_t x258; fiat_p521_uint1 x259; uint64_t x260; fiat_p521_uint1 x261; uint64_t x262; fiat_p521_uint1 x263; uint64_t x264; fiat_p521_uint1 x265; uint64_t x266; uint64_t x267; uint64_t x268; uint64_t x269; uint64_t x270; uint64_t x271; uint64_t x272; uint64_t x273; uint64_t x274; uint64_t x275; uint64_t x276; uint64_t x277; uint64_t x278; uint64_t x279; uint64_t x280; uint64_t x281; uint64_t x282; uint64_t x283; uint64_t x284; fiat_p521_uint1 x285; uint64_t x286; fiat_p521_uint1 x287; uint64_t x288; fiat_p521_uint1 x289; uint64_t x290; fiat_p521_uint1 x291; uint64_t x292; fiat_p521_uint1 x293; uint64_t x294; fiat_p521_uint1 x295; uint64_t x296; fiat_p521_uint1 x297; uint64_t x298; fiat_p521_uint1 x299; uint64_t x300; uint64_t x301; fiat_p521_uint1 x302; uint64_t x303; fiat_p521_uint1 x304; uint64_t x305; fiat_p521_uint1 x306; uint64_t x307; fiat_p521_uint1 x308; uint64_t x309; fiat_p521_uint1 x310; uint64_t x311; fiat_p521_uint1 x312; uint64_t x313; fiat_p521_uint1 x314; uint64_t x315; fiat_p521_uint1 x316; uint64_t x317; fiat_p521_uint1 x318; uint64_t x319; fiat_p521_uint1 x320; uint64_t x321; uint64_t x322; uint64_t x323; uint64_t x324; uint64_t x325; uint64_t x326; uint64_t x327; uint64_t x328; uint64_t x329; uint64_t x330; uint64_t x331; uint64_t x332; uint64_t x333; uint64_t x334; uint64_t x335; uint64_t x336; uint64_t x337; uint64_t x338; uint64_t x339; uint64_t x340; fiat_p521_uint1 x341; uint64_t x342; fiat_p521_uint1 x343; uint64_t x344; fiat_p521_uint1 x345; uint64_t x346; fiat_p521_uint1 x347; uint64_t x348; fiat_p521_uint1 x349; uint64_t x350; fiat_p521_uint1 x351; uint64_t x352; fiat_p521_uint1 x353; uint64_t x354; fiat_p521_uint1 x355; uint64_t x356; uint64_t x357; fiat_p521_uint1 x358; uint64_t x359; fiat_p521_uint1 x360; uint64_t x361; fiat_p521_uint1 x362; uint64_t x363; fiat_p521_uint1 x364; uint64_t x365; fiat_p521_uint1 x366; uint64_t x367; fiat_p521_uint1 x368; uint64_t x369; fiat_p521_uint1 x370; uint64_t x371; fiat_p521_uint1 x372; uint64_t x373; fiat_p521_uint1 x374; uint64_t x375; fiat_p521_uint1 x376; uint64_t x377; uint64_t x378; uint64_t x379; uint64_t x380; uint64_t x381; uint64_t x382; uint64_t x383; uint64_t x384; uint64_t x385; uint64_t x386; uint64_t x387; uint64_t x388; uint64_t x389; uint64_t x390; uint64_t x391; uint64_t x392; uint64_t x393; uint64_t x394; uint64_t x395; fiat_p521_uint1 x396; uint64_t x397; fiat_p521_uint1 x398; uint64_t x399; fiat_p521_uint1 x400; uint64_t x401; fiat_p521_uint1 x402; uint64_t x403; fiat_p521_uint1 x404; uint64_t x405; fiat_p521_uint1 x406; uint64_t x407; fiat_p521_uint1 x408; uint64_t x409; fiat_p521_uint1 x410; uint64_t x411; uint64_t x412; fiat_p521_uint1 x413; uint64_t x414; fiat_p521_uint1 x415; uint64_t x416; fiat_p521_uint1 x417; uint64_t x418; fiat_p521_uint1 x419; uint64_t x420; fiat_p521_uint1 x421; uint64_t x422; fiat_p521_uint1 x423; uint64_t x424; fiat_p521_uint1 x425; uint64_t x426; fiat_p521_uint1 x427; uint64_t x428; fiat_p521_uint1 x429; uint64_t x430; fiat_p521_uint1 x431; uint64_t x432; uint64_t x433; uint64_t x434; uint64_t x435; uint64_t x436; uint64_t x437; uint64_t x438; uint64_t x439; uint64_t x440; uint64_t x441; uint64_t x442; uint64_t x443; uint64_t x444; uint64_t x445; uint64_t x446; uint64_t x447; uint64_t x448; uint64_t x449; uint64_t x450; uint64_t x451; fiat_p521_uint1 x452; uint64_t x453; fiat_p521_uint1 x454; uint64_t x455; fiat_p521_uint1 x456; uint64_t x457; fiat_p521_uint1 x458; uint64_t x459; fiat_p521_uint1 x460; uint64_t x461; fiat_p521_uint1 x462; uint64_t x463; fiat_p521_uint1 x464; uint64_t x465; fiat_p521_uint1 x466; uint64_t x467; uint64_t x468; fiat_p521_uint1 x469; uint64_t x470; fiat_p521_uint1 x471; uint64_t x472; fiat_p521_uint1 x473; uint64_t x474; fiat_p521_uint1 x475; uint64_t x476; fiat_p521_uint1 x477; uint64_t x478; fiat_p521_uint1 x479; uint64_t x480; fiat_p521_uint1 x481; uint64_t x482; fiat_p521_uint1 x483; uint64_t x484; fiat_p521_uint1 x485; uint64_t x486; fiat_p521_uint1 x487; uint64_t x488; uint64_t x489; uint64_t x490; uint64_t x491; uint64_t x492; uint64_t x493; uint64_t x494; uint64_t x495; uint64_t x496; uint64_t x497; uint64_t x498; uint64_t x499; uint64_t x500; uint64_t x501; uint64_t x502; uint64_t x503; uint64_t x504; uint64_t x505; uint64_t x506; fiat_p521_uint1 x507; uint64_t x508; fiat_p521_uint1 x509; uint64_t x510; fiat_p521_uint1 x511; uint64_t x512; fiat_p521_uint1 x513; uint64_t x514; fiat_p521_uint1 x515; uint64_t x516; fiat_p521_uint1 x517; uint64_t x518; fiat_p521_uint1 x519; uint64_t x520; fiat_p521_uint1 x521; uint64_t x522; uint64_t x523; fiat_p521_uint1 x524; uint64_t x525; fiat_p521_uint1 x526; uint64_t x527; fiat_p521_uint1 x528; uint64_t x529; fiat_p521_uint1 x530; uint64_t x531; fiat_p521_uint1 x532; uint64_t x533; fiat_p521_uint1 x534; uint64_t x535; fiat_p521_uint1 x536; uint64_t x537; fiat_p521_uint1 x538; uint64_t x539; fiat_p521_uint1 x540; uint64_t x541; fiat_p521_uint1 x542; uint64_t x543; uint64_t x544; uint64_t x545; uint64_t x546; uint64_t x547; uint64_t x548; uint64_t x549; uint64_t x550; uint64_t x551; uint64_t x552; uint64_t x553; uint64_t x554; uint64_t x555; uint64_t x556; uint64_t x557; uint64_t x558; uint64_t x559; uint64_t x560; uint64_t x561; uint64_t x562; fiat_p521_uint1 x563; uint64_t x564; fiat_p521_uint1 x565; uint64_t x566; fiat_p521_uint1 x567; uint64_t x568; fiat_p521_uint1 x569; uint64_t x570; fiat_p521_uint1 x571; uint64_t x572; fiat_p521_uint1 x573; uint64_t x574; fiat_p521_uint1 x575; uint64_t x576; fiat_p521_uint1 x577; uint64_t x578; uint64_t x579; fiat_p521_uint1 x580; uint64_t x581; fiat_p521_uint1 x582; uint64_t x583; fiat_p521_uint1 x584; uint64_t x585; fiat_p521_uint1 x586; uint64_t x587; fiat_p521_uint1 x588; uint64_t x589; fiat_p521_uint1 x590; uint64_t x591; fiat_p521_uint1 x592; uint64_t x593; fiat_p521_uint1 x594; uint64_t x595; fiat_p521_uint1 x596; uint64_t x597; fiat_p521_uint1 x598; uint64_t x599; uint64_t x600; uint64_t x601; uint64_t x602; uint64_t x603; uint64_t x604; uint64_t x605; uint64_t x606; uint64_t x607; uint64_t x608; uint64_t x609; uint64_t x610; uint64_t x611; uint64_t x612; uint64_t x613; uint64_t x614; uint64_t x615; uint64_t x616; uint64_t x617; fiat_p521_uint1 x618; uint64_t x619; fiat_p521_uint1 x620; uint64_t x621; fiat_p521_uint1 x622; uint64_t x623; fiat_p521_uint1 x624; uint64_t x625; fiat_p521_uint1 x626; uint64_t x627; fiat_p521_uint1 x628; uint64_t x629; fiat_p521_uint1 x630; uint64_t x631; fiat_p521_uint1 x632; uint64_t x633; uint64_t x634; fiat_p521_uint1 x635; uint64_t x636; fiat_p521_uint1 x637; uint64_t x638; fiat_p521_uint1 x639; uint64_t x640; fiat_p521_uint1 x641; uint64_t x642; fiat_p521_uint1 x643; uint64_t x644; fiat_p521_uint1 x645; uint64_t x646; fiat_p521_uint1 x647; uint64_t x648; fiat_p521_uint1 x649; uint64_t x650; fiat_p521_uint1 x651; uint64_t x652; fiat_p521_uint1 x653; uint64_t x654; uint64_t x655; uint64_t x656; uint64_t x657; uint64_t x658; uint64_t x659; uint64_t x660; uint64_t x661; uint64_t x662; uint64_t x663; uint64_t x664; uint64_t x665; uint64_t x666; uint64_t x667; uint64_t x668; uint64_t x669; uint64_t x670; uint64_t x671; uint64_t x672; uint64_t x673; fiat_p521_uint1 x674; uint64_t x675; fiat_p521_uint1 x676; uint64_t x677; fiat_p521_uint1 x678; uint64_t x679; fiat_p521_uint1 x680; uint64_t x681; fiat_p521_uint1 x682; uint64_t x683; fiat_p521_uint1 x684; uint64_t x685; fiat_p521_uint1 x686; uint64_t x687; fiat_p521_uint1 x688; uint64_t x689; uint64_t x690; fiat_p521_uint1 x691; uint64_t x692; fiat_p521_uint1 x693; uint64_t x694; fiat_p521_uint1 x695; uint64_t x696; fiat_p521_uint1 x697; uint64_t x698; fiat_p521_uint1 x699; uint64_t x700; fiat_p521_uint1 x701; uint64_t x702; fiat_p521_uint1 x703; uint64_t x704; fiat_p521_uint1 x705; uint64_t x706; fiat_p521_uint1 x707; uint64_t x708; fiat_p521_uint1 x709; uint64_t x710; uint64_t x711; uint64_t x712; uint64_t x713; uint64_t x714; uint64_t x715; uint64_t x716; uint64_t x717; uint64_t x718; uint64_t x719; uint64_t x720; uint64_t x721; uint64_t x722; uint64_t x723; uint64_t x724; uint64_t x725; uint64_t x726; uint64_t x727; uint64_t x728; fiat_p521_uint1 x729; uint64_t x730; fiat_p521_uint1 x731; uint64_t x732; fiat_p521_uint1 x733; uint64_t x734; fiat_p521_uint1 x735; uint64_t x736; fiat_p521_uint1 x737; uint64_t x738; fiat_p521_uint1 x739; uint64_t x740; fiat_p521_uint1 x741; uint64_t x742; fiat_p521_uint1 x743; uint64_t x744; uint64_t x745; fiat_p521_uint1 x746; uint64_t x747; fiat_p521_uint1 x748; uint64_t x749; fiat_p521_uint1 x750; uint64_t x751; fiat_p521_uint1 x752; uint64_t x753; fiat_p521_uint1 x754; uint64_t x755; fiat_p521_uint1 x756; uint64_t x757; fiat_p521_uint1 x758; uint64_t x759; fiat_p521_uint1 x760; uint64_t x761; fiat_p521_uint1 x762; uint64_t x763; fiat_p521_uint1 x764; uint64_t x765; uint64_t x766; uint64_t x767; uint64_t x768; uint64_t x769; uint64_t x770; uint64_t x771; uint64_t x772; uint64_t x773; uint64_t x774; uint64_t x775; uint64_t x776; uint64_t x777; uint64_t x778; uint64_t x779; uint64_t x780; uint64_t x781; uint64_t x782; uint64_t x783; uint64_t x784; fiat_p521_uint1 x785; uint64_t x786; fiat_p521_uint1 x787; uint64_t x788; fiat_p521_uint1 x789; uint64_t x790; fiat_p521_uint1 x791; uint64_t x792; fiat_p521_uint1 x793; uint64_t x794; fiat_p521_uint1 x795; uint64_t x796; fiat_p521_uint1 x797; uint64_t x798; fiat_p521_uint1 x799; uint64_t x800; uint64_t x801; fiat_p521_uint1 x802; uint64_t x803; fiat_p521_uint1 x804; uint64_t x805; fiat_p521_uint1 x806; uint64_t x807; fiat_p521_uint1 x808; uint64_t x809; fiat_p521_uint1 x810; uint64_t x811; fiat_p521_uint1 x812; uint64_t x813; fiat_p521_uint1 x814; uint64_t x815; fiat_p521_uint1 x816; uint64_t x817; fiat_p521_uint1 x818; uint64_t x819; fiat_p521_uint1 x820; uint64_t x821; uint64_t x822; uint64_t x823; uint64_t x824; uint64_t x825; uint64_t x826; uint64_t x827; uint64_t x828; uint64_t x829; uint64_t x830; uint64_t x831; uint64_t x832; uint64_t x833; uint64_t x834; uint64_t x835; uint64_t x836; uint64_t x837; uint64_t x838; uint64_t x839; fiat_p521_uint1 x840; uint64_t x841; fiat_p521_uint1 x842; uint64_t x843; fiat_p521_uint1 x844; uint64_t x845; fiat_p521_uint1 x846; uint64_t x847; fiat_p521_uint1 x848; uint64_t x849; fiat_p521_uint1 x850; uint64_t x851; fiat_p521_uint1 x852; uint64_t x853; fiat_p521_uint1 x854; uint64_t x855; uint64_t x856; fiat_p521_uint1 x857; uint64_t x858; fiat_p521_uint1 x859; uint64_t x860; fiat_p521_uint1 x861; uint64_t x862; fiat_p521_uint1 x863; uint64_t x864; fiat_p521_uint1 x865; uint64_t x866; fiat_p521_uint1 x867; uint64_t x868; fiat_p521_uint1 x869; uint64_t x870; fiat_p521_uint1 x871; uint64_t x872; fiat_p521_uint1 x873; uint64_t x874; fiat_p521_uint1 x875; uint64_t x876; uint64_t x877; uint64_t x878; uint64_t x879; uint64_t x880; uint64_t x881; uint64_t x882; uint64_t x883; uint64_t x884; uint64_t x885; uint64_t x886; uint64_t x887; uint64_t x888; uint64_t x889; uint64_t x890; uint64_t x891; uint64_t x892; uint64_t x893; uint64_t x894; uint64_t x895; fiat_p521_uint1 x896; uint64_t x897; fiat_p521_uint1 x898; uint64_t x899; fiat_p521_uint1 x900; uint64_t x901; fiat_p521_uint1 x902; uint64_t x903; fiat_p521_uint1 x904; uint64_t x905; fiat_p521_uint1 x906; uint64_t x907; fiat_p521_uint1 x908; uint64_t x909; fiat_p521_uint1 x910; uint64_t x911; uint64_t x912; fiat_p521_uint1 x913; uint64_t x914; fiat_p521_uint1 x915; uint64_t x916; fiat_p521_uint1 x917; uint64_t x918; fiat_p521_uint1 x919; uint64_t x920; fiat_p521_uint1 x921; uint64_t x922; fiat_p521_uint1 x923; uint64_t x924; fiat_p521_uint1 x925; uint64_t x926; fiat_p521_uint1 x927; uint64_t x928; fiat_p521_uint1 x929; uint64_t x930; fiat_p521_uint1 x931; uint64_t x932; uint64_t x933; uint64_t x934; uint64_t x935; uint64_t x936; uint64_t x937; uint64_t x938; uint64_t x939; uint64_t x940; uint64_t x941; uint64_t x942; uint64_t x943; uint64_t x944; uint64_t x945; uint64_t x946; uint64_t x947; uint64_t x948; uint64_t x949; uint64_t x950; fiat_p521_uint1 x951; uint64_t x952; fiat_p521_uint1 x953; uint64_t x954; fiat_p521_uint1 x955; uint64_t x956; fiat_p521_uint1 x957; uint64_t x958; fiat_p521_uint1 x959; uint64_t x960; fiat_p521_uint1 x961; uint64_t x962; fiat_p521_uint1 x963; uint64_t x964; fiat_p521_uint1 x965; uint64_t x966; uint64_t x967; fiat_p521_uint1 x968; uint64_t x969; fiat_p521_uint1 x970; uint64_t x971; fiat_p521_uint1 x972; uint64_t x973; fiat_p521_uint1 x974; uint64_t x975; fiat_p521_uint1 x976; uint64_t x977; fiat_p521_uint1 x978; uint64_t x979; fiat_p521_uint1 x980; uint64_t x981; fiat_p521_uint1 x982; uint64_t x983; fiat_p521_uint1 x984; uint64_t x985; fiat_p521_uint1 x986; uint64_t x987; uint64_t x988; fiat_p521_uint1 x989; uint64_t x990; fiat_p521_uint1 x991; uint64_t x992; fiat_p521_uint1 x993; uint64_t x994; fiat_p521_uint1 x995; uint64_t x996; fiat_p521_uint1 x997; uint64_t x998; fiat_p521_uint1 x999; uint64_t x1000; fiat_p521_uint1 x1001; uint64_t x1002; fiat_p521_uint1 x1003; uint64_t x1004; fiat_p521_uint1 x1005; uint64_t x1006; fiat_p521_uint1 x1007; uint64_t x1008; uint64_t x1009; uint64_t x1010; uint64_t x1011; uint64_t x1012; uint64_t x1013; uint64_t x1014; uint64_t x1015; uint64_t x1016; x1 = (arg1[1]); x2 = (arg1[2]); x3 = (arg1[3]); x4 = (arg1[4]); x5 = (arg1[5]); x6 = (arg1[6]); x7 = (arg1[7]); x8 = (arg1[8]); x9 = (arg1[0]); fiat_p521_mulx_u64(&x10, &x11, x9, (arg2[8])); fiat_p521_mulx_u64(&x12, &x13, x9, (arg2[7])); fiat_p521_mulx_u64(&x14, &x15, x9, (arg2[6])); fiat_p521_mulx_u64(&x16, &x17, x9, (arg2[5])); fiat_p521_mulx_u64(&x18, &x19, x9, (arg2[4])); fiat_p521_mulx_u64(&x20, &x21, x9, (arg2[3])); fiat_p521_mulx_u64(&x22, &x23, x9, (arg2[2])); fiat_p521_mulx_u64(&x24, &x25, x9, (arg2[1])); fiat_p521_mulx_u64(&x26, &x27, x9, (arg2[0])); fiat_p521_addcarryx_u64(&x28, &x29, 0x0, x27, x24); fiat_p521_addcarryx_u64(&x30, &x31, x29, x25, x22); fiat_p521_addcarryx_u64(&x32, &x33, x31, x23, x20); fiat_p521_addcarryx_u64(&x34, &x35, x33, x21, x18); fiat_p521_addcarryx_u64(&x36, &x37, x35, x19, x16); fiat_p521_addcarryx_u64(&x38, &x39, x37, x17, x14); fiat_p521_addcarryx_u64(&x40, &x41, x39, x15, x12); fiat_p521_addcarryx_u64(&x42, &x43, x41, x13, x10); x44 = (x43 + x11); fiat_p521_mulx_u64(&x45, &x46, x26, UINT16_C(0x1ff)); fiat_p521_mulx_u64(&x47, &x48, x26, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x49, &x50, x26, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x51, &x52, x26, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x53, &x54, x26, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x55, &x56, x26, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x57, &x58, x26, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x59, &x60, x26, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x61, &x62, x26, UINT64_C(0xffffffffffffffff)); fiat_p521_addcarryx_u64(&x63, &x64, 0x0, x62, x59); fiat_p521_addcarryx_u64(&x65, &x66, x64, x60, x57); fiat_p521_addcarryx_u64(&x67, &x68, x66, x58, x55); fiat_p521_addcarryx_u64(&x69, &x70, x68, x56, x53); fiat_p521_addcarryx_u64(&x71, &x72, x70, x54, x51); fiat_p521_addcarryx_u64(&x73, &x74, x72, x52, x49); fiat_p521_addcarryx_u64(&x75, &x76, x74, x50, x47); fiat_p521_addcarryx_u64(&x77, &x78, x76, x48, x45); x79 = (x78 + x46); fiat_p521_addcarryx_u64(&x80, &x81, 0x0, x26, x61); fiat_p521_addcarryx_u64(&x82, &x83, x81, x28, x63); fiat_p521_addcarryx_u64(&x84, &x85, x83, x30, x65); fiat_p521_addcarryx_u64(&x86, &x87, x85, x32, x67); fiat_p521_addcarryx_u64(&x88, &x89, x87, x34, x69); fiat_p521_addcarryx_u64(&x90, &x91, x89, x36, x71); fiat_p521_addcarryx_u64(&x92, &x93, x91, x38, x73); fiat_p521_addcarryx_u64(&x94, &x95, x93, x40, x75); fiat_p521_addcarryx_u64(&x96, &x97, x95, x42, x77); fiat_p521_addcarryx_u64(&x98, &x99, x97, x44, x79); fiat_p521_mulx_u64(&x100, &x101, x1, (arg2[8])); fiat_p521_mulx_u64(&x102, &x103, x1, (arg2[7])); fiat_p521_mulx_u64(&x104, &x105, x1, (arg2[6])); fiat_p521_mulx_u64(&x106, &x107, x1, (arg2[5])); fiat_p521_mulx_u64(&x108, &x109, x1, (arg2[4])); fiat_p521_mulx_u64(&x110, &x111, x1, (arg2[3])); fiat_p521_mulx_u64(&x112, &x113, x1, (arg2[2])); fiat_p521_mulx_u64(&x114, &x115, x1, (arg2[1])); fiat_p521_mulx_u64(&x116, &x117, x1, (arg2[0])); fiat_p521_addcarryx_u64(&x118, &x119, 0x0, x117, x114); fiat_p521_addcarryx_u64(&x120, &x121, x119, x115, x112); fiat_p521_addcarryx_u64(&x122, &x123, x121, x113, x110); fiat_p521_addcarryx_u64(&x124, &x125, x123, x111, x108); fiat_p521_addcarryx_u64(&x126, &x127, x125, x109, x106); fiat_p521_addcarryx_u64(&x128, &x129, x127, x107, x104); fiat_p521_addcarryx_u64(&x130, &x131, x129, x105, x102); fiat_p521_addcarryx_u64(&x132, &x133, x131, x103, x100); x134 = (x133 + x101); fiat_p521_addcarryx_u64(&x135, &x136, 0x0, x82, x116); fiat_p521_addcarryx_u64(&x137, &x138, x136, x84, x118); fiat_p521_addcarryx_u64(&x139, &x140, x138, x86, x120); fiat_p521_addcarryx_u64(&x141, &x142, x140, x88, x122); fiat_p521_addcarryx_u64(&x143, &x144, x142, x90, x124); fiat_p521_addcarryx_u64(&x145, &x146, x144, x92, x126); fiat_p521_addcarryx_u64(&x147, &x148, x146, x94, x128); fiat_p521_addcarryx_u64(&x149, &x150, x148, x96, x130); fiat_p521_addcarryx_u64(&x151, &x152, x150, x98, x132); fiat_p521_addcarryx_u64(&x153, &x154, x152, x99, x134); fiat_p521_mulx_u64(&x155, &x156, x135, UINT16_C(0x1ff)); fiat_p521_mulx_u64(&x157, &x158, x135, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x159, &x160, x135, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x161, &x162, x135, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x163, &x164, x135, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x165, &x166, x135, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x167, &x168, x135, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x169, &x170, x135, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x171, &x172, x135, UINT64_C(0xffffffffffffffff)); fiat_p521_addcarryx_u64(&x173, &x174, 0x0, x172, x169); fiat_p521_addcarryx_u64(&x175, &x176, x174, x170, x167); fiat_p521_addcarryx_u64(&x177, &x178, x176, x168, x165); fiat_p521_addcarryx_u64(&x179, &x180, x178, x166, x163); fiat_p521_addcarryx_u64(&x181, &x182, x180, x164, x161); fiat_p521_addcarryx_u64(&x183, &x184, x182, x162, x159); fiat_p521_addcarryx_u64(&x185, &x186, x184, x160, x157); fiat_p521_addcarryx_u64(&x187, &x188, x186, x158, x155); x189 = (x188 + x156); fiat_p521_addcarryx_u64(&x190, &x191, 0x0, x135, x171); fiat_p521_addcarryx_u64(&x192, &x193, x191, x137, x173); fiat_p521_addcarryx_u64(&x194, &x195, x193, x139, x175); fiat_p521_addcarryx_u64(&x196, &x197, x195, x141, x177); fiat_p521_addcarryx_u64(&x198, &x199, x197, x143, x179); fiat_p521_addcarryx_u64(&x200, &x201, x199, x145, x181); fiat_p521_addcarryx_u64(&x202, &x203, x201, x147, x183); fiat_p521_addcarryx_u64(&x204, &x205, x203, x149, x185); fiat_p521_addcarryx_u64(&x206, &x207, x205, x151, x187); fiat_p521_addcarryx_u64(&x208, &x209, x207, x153, x189); x210 = ((uint64_t)x209 + x154); fiat_p521_mulx_u64(&x211, &x212, x2, (arg2[8])); fiat_p521_mulx_u64(&x213, &x214, x2, (arg2[7])); fiat_p521_mulx_u64(&x215, &x216, x2, (arg2[6])); fiat_p521_mulx_u64(&x217, &x218, x2, (arg2[5])); fiat_p521_mulx_u64(&x219, &x220, x2, (arg2[4])); fiat_p521_mulx_u64(&x221, &x222, x2, (arg2[3])); fiat_p521_mulx_u64(&x223, &x224, x2, (arg2[2])); fiat_p521_mulx_u64(&x225, &x226, x2, (arg2[1])); fiat_p521_mulx_u64(&x227, &x228, x2, (arg2[0])); fiat_p521_addcarryx_u64(&x229, &x230, 0x0, x228, x225); fiat_p521_addcarryx_u64(&x231, &x232, x230, x226, x223); fiat_p521_addcarryx_u64(&x233, &x234, x232, x224, x221); fiat_p521_addcarryx_u64(&x235, &x236, x234, x222, x219); fiat_p521_addcarryx_u64(&x237, &x238, x236, x220, x217); fiat_p521_addcarryx_u64(&x239, &x240, x238, x218, x215); fiat_p521_addcarryx_u64(&x241, &x242, x240, x216, x213); fiat_p521_addcarryx_u64(&x243, &x244, x242, x214, x211); x245 = (x244 + x212); fiat_p521_addcarryx_u64(&x246, &x247, 0x0, x192, x227); fiat_p521_addcarryx_u64(&x248, &x249, x247, x194, x229); fiat_p521_addcarryx_u64(&x250, &x251, x249, x196, x231); fiat_p521_addcarryx_u64(&x252, &x253, x251, x198, x233); fiat_p521_addcarryx_u64(&x254, &x255, x253, x200, x235); fiat_p521_addcarryx_u64(&x256, &x257, x255, x202, x237); fiat_p521_addcarryx_u64(&x258, &x259, x257, x204, x239); fiat_p521_addcarryx_u64(&x260, &x261, x259, x206, x241); fiat_p521_addcarryx_u64(&x262, &x263, x261, x208, x243); fiat_p521_addcarryx_u64(&x264, &x265, x263, x210, x245); fiat_p521_mulx_u64(&x266, &x267, x246, UINT16_C(0x1ff)); fiat_p521_mulx_u64(&x268, &x269, x246, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x270, &x271, x246, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x272, &x273, x246, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x274, &x275, x246, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x276, &x277, x246, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x278, &x279, x246, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x280, &x281, x246, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x282, &x283, x246, UINT64_C(0xffffffffffffffff)); fiat_p521_addcarryx_u64(&x284, &x285, 0x0, x283, x280); fiat_p521_addcarryx_u64(&x286, &x287, x285, x281, x278); fiat_p521_addcarryx_u64(&x288, &x289, x287, x279, x276); fiat_p521_addcarryx_u64(&x290, &x291, x289, x277, x274); fiat_p521_addcarryx_u64(&x292, &x293, x291, x275, x272); fiat_p521_addcarryx_u64(&x294, &x295, x293, x273, x270); fiat_p521_addcarryx_u64(&x296, &x297, x295, x271, x268); fiat_p521_addcarryx_u64(&x298, &x299, x297, x269, x266); x300 = (x299 + x267); fiat_p521_addcarryx_u64(&x301, &x302, 0x0, x246, x282); fiat_p521_addcarryx_u64(&x303, &x304, x302, x248, x284); fiat_p521_addcarryx_u64(&x305, &x306, x304, x250, x286); fiat_p521_addcarryx_u64(&x307, &x308, x306, x252, x288); fiat_p521_addcarryx_u64(&x309, &x310, x308, x254, x290); fiat_p521_addcarryx_u64(&x311, &x312, x310, x256, x292); fiat_p521_addcarryx_u64(&x313, &x314, x312, x258, x294); fiat_p521_addcarryx_u64(&x315, &x316, x314, x260, x296); fiat_p521_addcarryx_u64(&x317, &x318, x316, x262, x298); fiat_p521_addcarryx_u64(&x319, &x320, x318, x264, x300); x321 = ((uint64_t)x320 + x265); fiat_p521_mulx_u64(&x322, &x323, x3, (arg2[8])); fiat_p521_mulx_u64(&x324, &x325, x3, (arg2[7])); fiat_p521_mulx_u64(&x326, &x327, x3, (arg2[6])); fiat_p521_mulx_u64(&x328, &x329, x3, (arg2[5])); fiat_p521_mulx_u64(&x330, &x331, x3, (arg2[4])); fiat_p521_mulx_u64(&x332, &x333, x3, (arg2[3])); fiat_p521_mulx_u64(&x334, &x335, x3, (arg2[2])); fiat_p521_mulx_u64(&x336, &x337, x3, (arg2[1])); fiat_p521_mulx_u64(&x338, &x339, x3, (arg2[0])); fiat_p521_addcarryx_u64(&x340, &x341, 0x0, x339, x336); fiat_p521_addcarryx_u64(&x342, &x343, x341, x337, x334); fiat_p521_addcarryx_u64(&x344, &x345, x343, x335, x332); fiat_p521_addcarryx_u64(&x346, &x347, x345, x333, x330); fiat_p521_addcarryx_u64(&x348, &x349, x347, x331, x328); fiat_p521_addcarryx_u64(&x350, &x351, x349, x329, x326); fiat_p521_addcarryx_u64(&x352, &x353, x351, x327, x324); fiat_p521_addcarryx_u64(&x354, &x355, x353, x325, x322); x356 = (x355 + x323); fiat_p521_addcarryx_u64(&x357, &x358, 0x0, x303, x338); fiat_p521_addcarryx_u64(&x359, &x360, x358, x305, x340); fiat_p521_addcarryx_u64(&x361, &x362, x360, x307, x342); fiat_p521_addcarryx_u64(&x363, &x364, x362, x309, x344); fiat_p521_addcarryx_u64(&x365, &x366, x364, x311, x346); fiat_p521_addcarryx_u64(&x367, &x368, x366, x313, x348); fiat_p521_addcarryx_u64(&x369, &x370, x368, x315, x350); fiat_p521_addcarryx_u64(&x371, &x372, x370, x317, x352); fiat_p521_addcarryx_u64(&x373, &x374, x372, x319, x354); fiat_p521_addcarryx_u64(&x375, &x376, x374, x321, x356); fiat_p521_mulx_u64(&x377, &x378, x357, UINT16_C(0x1ff)); fiat_p521_mulx_u64(&x379, &x380, x357, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x381, &x382, x357, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x383, &x384, x357, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x385, &x386, x357, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x387, &x388, x357, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x389, &x390, x357, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x391, &x392, x357, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x393, &x394, x357, UINT64_C(0xffffffffffffffff)); fiat_p521_addcarryx_u64(&x395, &x396, 0x0, x394, x391); fiat_p521_addcarryx_u64(&x397, &x398, x396, x392, x389); fiat_p521_addcarryx_u64(&x399, &x400, x398, x390, x387); fiat_p521_addcarryx_u64(&x401, &x402, x400, x388, x385); fiat_p521_addcarryx_u64(&x403, &x404, x402, x386, x383); fiat_p521_addcarryx_u64(&x405, &x406, x404, x384, x381); fiat_p521_addcarryx_u64(&x407, &x408, x406, x382, x379); fiat_p521_addcarryx_u64(&x409, &x410, x408, x380, x377); x411 = (x410 + x378); fiat_p521_addcarryx_u64(&x412, &x413, 0x0, x357, x393); fiat_p521_addcarryx_u64(&x414, &x415, x413, x359, x395); fiat_p521_addcarryx_u64(&x416, &x417, x415, x361, x397); fiat_p521_addcarryx_u64(&x418, &x419, x417, x363, x399); fiat_p521_addcarryx_u64(&x420, &x421, x419, x365, x401); fiat_p521_addcarryx_u64(&x422, &x423, x421, x367, x403); fiat_p521_addcarryx_u64(&x424, &x425, x423, x369, x405); fiat_p521_addcarryx_u64(&x426, &x427, x425, x371, x407); fiat_p521_addcarryx_u64(&x428, &x429, x427, x373, x409); fiat_p521_addcarryx_u64(&x430, &x431, x429, x375, x411); x432 = ((uint64_t)x431 + x376); fiat_p521_mulx_u64(&x433, &x434, x4, (arg2[8])); fiat_p521_mulx_u64(&x435, &x436, x4, (arg2[7])); fiat_p521_mulx_u64(&x437, &x438, x4, (arg2[6])); fiat_p521_mulx_u64(&x439, &x440, x4, (arg2[5])); fiat_p521_mulx_u64(&x441, &x442, x4, (arg2[4])); fiat_p521_mulx_u64(&x443, &x444, x4, (arg2[3])); fiat_p521_mulx_u64(&x445, &x446, x4, (arg2[2])); fiat_p521_mulx_u64(&x447, &x448, x4, (arg2[1])); fiat_p521_mulx_u64(&x449, &x450, x4, (arg2[0])); fiat_p521_addcarryx_u64(&x451, &x452, 0x0, x450, x447); fiat_p521_addcarryx_u64(&x453, &x454, x452, x448, x445); fiat_p521_addcarryx_u64(&x455, &x456, x454, x446, x443); fiat_p521_addcarryx_u64(&x457, &x458, x456, x444, x441); fiat_p521_addcarryx_u64(&x459, &x460, x458, x442, x439); fiat_p521_addcarryx_u64(&x461, &x462, x460, x440, x437); fiat_p521_addcarryx_u64(&x463, &x464, x462, x438, x435); fiat_p521_addcarryx_u64(&x465, &x466, x464, x436, x433); x467 = (x466 + x434); fiat_p521_addcarryx_u64(&x468, &x469, 0x0, x414, x449); fiat_p521_addcarryx_u64(&x470, &x471, x469, x416, x451); fiat_p521_addcarryx_u64(&x472, &x473, x471, x418, x453); fiat_p521_addcarryx_u64(&x474, &x475, x473, x420, x455); fiat_p521_addcarryx_u64(&x476, &x477, x475, x422, x457); fiat_p521_addcarryx_u64(&x478, &x479, x477, x424, x459); fiat_p521_addcarryx_u64(&x480, &x481, x479, x426, x461); fiat_p521_addcarryx_u64(&x482, &x483, x481, x428, x463); fiat_p521_addcarryx_u64(&x484, &x485, x483, x430, x465); fiat_p521_addcarryx_u64(&x486, &x487, x485, x432, x467); fiat_p521_mulx_u64(&x488, &x489, x468, UINT16_C(0x1ff)); fiat_p521_mulx_u64(&x490, &x491, x468, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x492, &x493, x468, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x494, &x495, x468, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x496, &x497, x468, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x498, &x499, x468, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x500, &x501, x468, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x502, &x503, x468, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x504, &x505, x468, UINT64_C(0xffffffffffffffff)); fiat_p521_addcarryx_u64(&x506, &x507, 0x0, x505, x502); fiat_p521_addcarryx_u64(&x508, &x509, x507, x503, x500); fiat_p521_addcarryx_u64(&x510, &x511, x509, x501, x498); fiat_p521_addcarryx_u64(&x512, &x513, x511, x499, x496); fiat_p521_addcarryx_u64(&x514, &x515, x513, x497, x494); fiat_p521_addcarryx_u64(&x516, &x517, x515, x495, x492); fiat_p521_addcarryx_u64(&x518, &x519, x517, x493, x490); fiat_p521_addcarryx_u64(&x520, &x521, x519, x491, x488); x522 = (x521 + x489); fiat_p521_addcarryx_u64(&x523, &x524, 0x0, x468, x504); fiat_p521_addcarryx_u64(&x525, &x526, x524, x470, x506); fiat_p521_addcarryx_u64(&x527, &x528, x526, x472, x508); fiat_p521_addcarryx_u64(&x529, &x530, x528, x474, x510); fiat_p521_addcarryx_u64(&x531, &x532, x530, x476, x512); fiat_p521_addcarryx_u64(&x533, &x534, x532, x478, x514); fiat_p521_addcarryx_u64(&x535, &x536, x534, x480, x516); fiat_p521_addcarryx_u64(&x537, &x538, x536, x482, x518); fiat_p521_addcarryx_u64(&x539, &x540, x538, x484, x520); fiat_p521_addcarryx_u64(&x541, &x542, x540, x486, x522); x543 = ((uint64_t)x542 + x487); fiat_p521_mulx_u64(&x544, &x545, x5, (arg2[8])); fiat_p521_mulx_u64(&x546, &x547, x5, (arg2[7])); fiat_p521_mulx_u64(&x548, &x549, x5, (arg2[6])); fiat_p521_mulx_u64(&x550, &x551, x5, (arg2[5])); fiat_p521_mulx_u64(&x552, &x553, x5, (arg2[4])); fiat_p521_mulx_u64(&x554, &x555, x5, (arg2[3])); fiat_p521_mulx_u64(&x556, &x557, x5, (arg2[2])); fiat_p521_mulx_u64(&x558, &x559, x5, (arg2[1])); fiat_p521_mulx_u64(&x560, &x561, x5, (arg2[0])); fiat_p521_addcarryx_u64(&x562, &x563, 0x0, x561, x558); fiat_p521_addcarryx_u64(&x564, &x565, x563, x559, x556); fiat_p521_addcarryx_u64(&x566, &x567, x565, x557, x554); fiat_p521_addcarryx_u64(&x568, &x569, x567, x555, x552); fiat_p521_addcarryx_u64(&x570, &x571, x569, x553, x550); fiat_p521_addcarryx_u64(&x572, &x573, x571, x551, x548); fiat_p521_addcarryx_u64(&x574, &x575, x573, x549, x546); fiat_p521_addcarryx_u64(&x576, &x577, x575, x547, x544); x578 = (x577 + x545); fiat_p521_addcarryx_u64(&x579, &x580, 0x0, x525, x560); fiat_p521_addcarryx_u64(&x581, &x582, x580, x527, x562); fiat_p521_addcarryx_u64(&x583, &x584, x582, x529, x564); fiat_p521_addcarryx_u64(&x585, &x586, x584, x531, x566); fiat_p521_addcarryx_u64(&x587, &x588, x586, x533, x568); fiat_p521_addcarryx_u64(&x589, &x590, x588, x535, x570); fiat_p521_addcarryx_u64(&x591, &x592, x590, x537, x572); fiat_p521_addcarryx_u64(&x593, &x594, x592, x539, x574); fiat_p521_addcarryx_u64(&x595, &x596, x594, x541, x576); fiat_p521_addcarryx_u64(&x597, &x598, x596, x543, x578); fiat_p521_mulx_u64(&x599, &x600, x579, UINT16_C(0x1ff)); fiat_p521_mulx_u64(&x601, &x602, x579, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x603, &x604, x579, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x605, &x606, x579, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x607, &x608, x579, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x609, &x610, x579, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x611, &x612, x579, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x613, &x614, x579, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x615, &x616, x579, UINT64_C(0xffffffffffffffff)); fiat_p521_addcarryx_u64(&x617, &x618, 0x0, x616, x613); fiat_p521_addcarryx_u64(&x619, &x620, x618, x614, x611); fiat_p521_addcarryx_u64(&x621, &x622, x620, x612, x609); fiat_p521_addcarryx_u64(&x623, &x624, x622, x610, x607); fiat_p521_addcarryx_u64(&x625, &x626, x624, x608, x605); fiat_p521_addcarryx_u64(&x627, &x628, x626, x606, x603); fiat_p521_addcarryx_u64(&x629, &x630, x628, x604, x601); fiat_p521_addcarryx_u64(&x631, &x632, x630, x602, x599); x633 = (x632 + x600); fiat_p521_addcarryx_u64(&x634, &x635, 0x0, x579, x615); fiat_p521_addcarryx_u64(&x636, &x637, x635, x581, x617); fiat_p521_addcarryx_u64(&x638, &x639, x637, x583, x619); fiat_p521_addcarryx_u64(&x640, &x641, x639, x585, x621); fiat_p521_addcarryx_u64(&x642, &x643, x641, x587, x623); fiat_p521_addcarryx_u64(&x644, &x645, x643, x589, x625); fiat_p521_addcarryx_u64(&x646, &x647, x645, x591, x627); fiat_p521_addcarryx_u64(&x648, &x649, x647, x593, x629); fiat_p521_addcarryx_u64(&x650, &x651, x649, x595, x631); fiat_p521_addcarryx_u64(&x652, &x653, x651, x597, x633); x654 = ((uint64_t)x653 + x598); fiat_p521_mulx_u64(&x655, &x656, x6, (arg2[8])); fiat_p521_mulx_u64(&x657, &x658, x6, (arg2[7])); fiat_p521_mulx_u64(&x659, &x660, x6, (arg2[6])); fiat_p521_mulx_u64(&x661, &x662, x6, (arg2[5])); fiat_p521_mulx_u64(&x663, &x664, x6, (arg2[4])); fiat_p521_mulx_u64(&x665, &x666, x6, (arg2[3])); fiat_p521_mulx_u64(&x667, &x668, x6, (arg2[2])); fiat_p521_mulx_u64(&x669, &x670, x6, (arg2[1])); fiat_p521_mulx_u64(&x671, &x672, x6, (arg2[0])); fiat_p521_addcarryx_u64(&x673, &x674, 0x0, x672, x669); fiat_p521_addcarryx_u64(&x675, &x676, x674, x670, x667); fiat_p521_addcarryx_u64(&x677, &x678, x676, x668, x665); fiat_p521_addcarryx_u64(&x679, &x680, x678, x666, x663); fiat_p521_addcarryx_u64(&x681, &x682, x680, x664, x661); fiat_p521_addcarryx_u64(&x683, &x684, x682, x662, x659); fiat_p521_addcarryx_u64(&x685, &x686, x684, x660, x657); fiat_p521_addcarryx_u64(&x687, &x688, x686, x658, x655); x689 = (x688 + x656); fiat_p521_addcarryx_u64(&x690, &x691, 0x0, x636, x671); fiat_p521_addcarryx_u64(&x692, &x693, x691, x638, x673); fiat_p521_addcarryx_u64(&x694, &x695, x693, x640, x675); fiat_p521_addcarryx_u64(&x696, &x697, x695, x642, x677); fiat_p521_addcarryx_u64(&x698, &x699, x697, x644, x679); fiat_p521_addcarryx_u64(&x700, &x701, x699, x646, x681); fiat_p521_addcarryx_u64(&x702, &x703, x701, x648, x683); fiat_p521_addcarryx_u64(&x704, &x705, x703, x650, x685); fiat_p521_addcarryx_u64(&x706, &x707, x705, x652, x687); fiat_p521_addcarryx_u64(&x708, &x709, x707, x654, x689); fiat_p521_mulx_u64(&x710, &x711, x690, UINT16_C(0x1ff)); fiat_p521_mulx_u64(&x712, &x713, x690, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x714, &x715, x690, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x716, &x717, x690, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x718, &x719, x690, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x720, &x721, x690, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x722, &x723, x690, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x724, &x725, x690, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x726, &x727, x690, UINT64_C(0xffffffffffffffff)); fiat_p521_addcarryx_u64(&x728, &x729, 0x0, x727, x724); fiat_p521_addcarryx_u64(&x730, &x731, x729, x725, x722); fiat_p521_addcarryx_u64(&x732, &x733, x731, x723, x720); fiat_p521_addcarryx_u64(&x734, &x735, x733, x721, x718); fiat_p521_addcarryx_u64(&x736, &x737, x735, x719, x716); fiat_p521_addcarryx_u64(&x738, &x739, x737, x717, x714); fiat_p521_addcarryx_u64(&x740, &x741, x739, x715, x712); fiat_p521_addcarryx_u64(&x742, &x743, x741, x713, x710); x744 = (x743 + x711); fiat_p521_addcarryx_u64(&x745, &x746, 0x0, x690, x726); fiat_p521_addcarryx_u64(&x747, &x748, x746, x692, x728); fiat_p521_addcarryx_u64(&x749, &x750, x748, x694, x730); fiat_p521_addcarryx_u64(&x751, &x752, x750, x696, x732); fiat_p521_addcarryx_u64(&x753, &x754, x752, x698, x734); fiat_p521_addcarryx_u64(&x755, &x756, x754, x700, x736); fiat_p521_addcarryx_u64(&x757, &x758, x756, x702, x738); fiat_p521_addcarryx_u64(&x759, &x760, x758, x704, x740); fiat_p521_addcarryx_u64(&x761, &x762, x760, x706, x742); fiat_p521_addcarryx_u64(&x763, &x764, x762, x708, x744); x765 = ((uint64_t)x764 + x709); fiat_p521_mulx_u64(&x766, &x767, x7, (arg2[8])); fiat_p521_mulx_u64(&x768, &x769, x7, (arg2[7])); fiat_p521_mulx_u64(&x770, &x771, x7, (arg2[6])); fiat_p521_mulx_u64(&x772, &x773, x7, (arg2[5])); fiat_p521_mulx_u64(&x774, &x775, x7, (arg2[4])); fiat_p521_mulx_u64(&x776, &x777, x7, (arg2[3])); fiat_p521_mulx_u64(&x778, &x779, x7, (arg2[2])); fiat_p521_mulx_u64(&x780, &x781, x7, (arg2[1])); fiat_p521_mulx_u64(&x782, &x783, x7, (arg2[0])); fiat_p521_addcarryx_u64(&x784, &x785, 0x0, x783, x780); fiat_p521_addcarryx_u64(&x786, &x787, x785, x781, x778); fiat_p521_addcarryx_u64(&x788, &x789, x787, x779, x776); fiat_p521_addcarryx_u64(&x790, &x791, x789, x777, x774); fiat_p521_addcarryx_u64(&x792, &x793, x791, x775, x772); fiat_p521_addcarryx_u64(&x794, &x795, x793, x773, x770); fiat_p521_addcarryx_u64(&x796, &x797, x795, x771, x768); fiat_p521_addcarryx_u64(&x798, &x799, x797, x769, x766); x800 = (x799 + x767); fiat_p521_addcarryx_u64(&x801, &x802, 0x0, x747, x782); fiat_p521_addcarryx_u64(&x803, &x804, x802, x749, x784); fiat_p521_addcarryx_u64(&x805, &x806, x804, x751, x786); fiat_p521_addcarryx_u64(&x807, &x808, x806, x753, x788); fiat_p521_addcarryx_u64(&x809, &x810, x808, x755, x790); fiat_p521_addcarryx_u64(&x811, &x812, x810, x757, x792); fiat_p521_addcarryx_u64(&x813, &x814, x812, x759, x794); fiat_p521_addcarryx_u64(&x815, &x816, x814, x761, x796); fiat_p521_addcarryx_u64(&x817, &x818, x816, x763, x798); fiat_p521_addcarryx_u64(&x819, &x820, x818, x765, x800); fiat_p521_mulx_u64(&x821, &x822, x801, UINT16_C(0x1ff)); fiat_p521_mulx_u64(&x823, &x824, x801, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x825, &x826, x801, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x827, &x828, x801, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x829, &x830, x801, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x831, &x832, x801, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x833, &x834, x801, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x835, &x836, x801, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x837, &x838, x801, UINT64_C(0xffffffffffffffff)); fiat_p521_addcarryx_u64(&x839, &x840, 0x0, x838, x835); fiat_p521_addcarryx_u64(&x841, &x842, x840, x836, x833); fiat_p521_addcarryx_u64(&x843, &x844, x842, x834, x831); fiat_p521_addcarryx_u64(&x845, &x846, x844, x832, x829); fiat_p521_addcarryx_u64(&x847, &x848, x846, x830, x827); fiat_p521_addcarryx_u64(&x849, &x850, x848, x828, x825); fiat_p521_addcarryx_u64(&x851, &x852, x850, x826, x823); fiat_p521_addcarryx_u64(&x853, &x854, x852, x824, x821); x855 = (x854 + x822); fiat_p521_addcarryx_u64(&x856, &x857, 0x0, x801, x837); fiat_p521_addcarryx_u64(&x858, &x859, x857, x803, x839); fiat_p521_addcarryx_u64(&x860, &x861, x859, x805, x841); fiat_p521_addcarryx_u64(&x862, &x863, x861, x807, x843); fiat_p521_addcarryx_u64(&x864, &x865, x863, x809, x845); fiat_p521_addcarryx_u64(&x866, &x867, x865, x811, x847); fiat_p521_addcarryx_u64(&x868, &x869, x867, x813, x849); fiat_p521_addcarryx_u64(&x870, &x871, x869, x815, x851); fiat_p521_addcarryx_u64(&x872, &x873, x871, x817, x853); fiat_p521_addcarryx_u64(&x874, &x875, x873, x819, x855); x876 = ((uint64_t)x875 + x820); fiat_p521_mulx_u64(&x877, &x878, x8, (arg2[8])); fiat_p521_mulx_u64(&x879, &x880, x8, (arg2[7])); fiat_p521_mulx_u64(&x881, &x882, x8, (arg2[6])); fiat_p521_mulx_u64(&x883, &x884, x8, (arg2[5])); fiat_p521_mulx_u64(&x885, &x886, x8, (arg2[4])); fiat_p521_mulx_u64(&x887, &x888, x8, (arg2[3])); fiat_p521_mulx_u64(&x889, &x890, x8, (arg2[2])); fiat_p521_mulx_u64(&x891, &x892, x8, (arg2[1])); fiat_p521_mulx_u64(&x893, &x894, x8, (arg2[0])); fiat_p521_addcarryx_u64(&x895, &x896, 0x0, x894, x891); fiat_p521_addcarryx_u64(&x897, &x898, x896, x892, x889); fiat_p521_addcarryx_u64(&x899, &x900, x898, x890, x887); fiat_p521_addcarryx_u64(&x901, &x902, x900, x888, x885); fiat_p521_addcarryx_u64(&x903, &x904, x902, x886, x883); fiat_p521_addcarryx_u64(&x905, &x906, x904, x884, x881); fiat_p521_addcarryx_u64(&x907, &x908, x906, x882, x879); fiat_p521_addcarryx_u64(&x909, &x910, x908, x880, x877); x911 = (x910 + x878); fiat_p521_addcarryx_u64(&x912, &x913, 0x0, x858, x893); fiat_p521_addcarryx_u64(&x914, &x915, x913, x860, x895); fiat_p521_addcarryx_u64(&x916, &x917, x915, x862, x897); fiat_p521_addcarryx_u64(&x918, &x919, x917, x864, x899); fiat_p521_addcarryx_u64(&x920, &x921, x919, x866, x901); fiat_p521_addcarryx_u64(&x922, &x923, x921, x868, x903); fiat_p521_addcarryx_u64(&x924, &x925, x923, x870, x905); fiat_p521_addcarryx_u64(&x926, &x927, x925, x872, x907); fiat_p521_addcarryx_u64(&x928, &x929, x927, x874, x909); fiat_p521_addcarryx_u64(&x930, &x931, x929, x876, x911); fiat_p521_mulx_u64(&x932, &x933, x912, UINT16_C(0x1ff)); fiat_p521_mulx_u64(&x934, &x935, x912, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x936, &x937, x912, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x938, &x939, x912, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x940, &x941, x912, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x942, &x943, x912, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x944, &x945, x912, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x946, &x947, x912, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x948, &x949, x912, UINT64_C(0xffffffffffffffff)); fiat_p521_addcarryx_u64(&x950, &x951, 0x0, x949, x946); fiat_p521_addcarryx_u64(&x952, &x953, x951, x947, x944); fiat_p521_addcarryx_u64(&x954, &x955, x953, x945, x942); fiat_p521_addcarryx_u64(&x956, &x957, x955, x943, x940); fiat_p521_addcarryx_u64(&x958, &x959, x957, x941, x938); fiat_p521_addcarryx_u64(&x960, &x961, x959, x939, x936); fiat_p521_addcarryx_u64(&x962, &x963, x961, x937, x934); fiat_p521_addcarryx_u64(&x964, &x965, x963, x935, x932); x966 = (x965 + x933); fiat_p521_addcarryx_u64(&x967, &x968, 0x0, x912, x948); fiat_p521_addcarryx_u64(&x969, &x970, x968, x914, x950); fiat_p521_addcarryx_u64(&x971, &x972, x970, x916, x952); fiat_p521_addcarryx_u64(&x973, &x974, x972, x918, x954); fiat_p521_addcarryx_u64(&x975, &x976, x974, x920, x956); fiat_p521_addcarryx_u64(&x977, &x978, x976, x922, x958); fiat_p521_addcarryx_u64(&x979, &x980, x978, x924, x960); fiat_p521_addcarryx_u64(&x981, &x982, x980, x926, x962); fiat_p521_addcarryx_u64(&x983, &x984, x982, x928, x964); fiat_p521_addcarryx_u64(&x985, &x986, x984, x930, x966); x987 = ((uint64_t)x986 + x931); fiat_p521_subborrowx_u64(&x988, &x989, 0x0, x969, UINT64_C(0xffffffffffffffff)); fiat_p521_subborrowx_u64(&x990, &x991, x989, x971, UINT64_C(0xffffffffffffffff)); fiat_p521_subborrowx_u64(&x992, &x993, x991, x973, UINT64_C(0xffffffffffffffff)); fiat_p521_subborrowx_u64(&x994, &x995, x993, x975, UINT64_C(0xffffffffffffffff)); fiat_p521_subborrowx_u64(&x996, &x997, x995, x977, UINT64_C(0xffffffffffffffff)); fiat_p521_subborrowx_u64(&x998, &x999, x997, x979, UINT64_C(0xffffffffffffffff)); fiat_p521_subborrowx_u64(&x1000, &x1001, x999, x981, UINT64_C(0xffffffffffffffff)); fiat_p521_subborrowx_u64(&x1002, &x1003, x1001, x983, UINT64_C(0xffffffffffffffff)); fiat_p521_subborrowx_u64(&x1004, &x1005, x1003, x985, UINT16_C(0x1ff)); fiat_p521_subborrowx_u64(&x1006, &x1007, x1005, x987, 0x0); fiat_p521_cmovznz_u64(&x1008, x1007, x988, x969); fiat_p521_cmovznz_u64(&x1009, x1007, x990, x971); fiat_p521_cmovznz_u64(&x1010, x1007, x992, x973); fiat_p521_cmovznz_u64(&x1011, x1007, x994, x975); fiat_p521_cmovznz_u64(&x1012, x1007, x996, x977); fiat_p521_cmovznz_u64(&x1013, x1007, x998, x979); fiat_p521_cmovznz_u64(&x1014, x1007, x1000, x981); fiat_p521_cmovznz_u64(&x1015, x1007, x1002, x983); fiat_p521_cmovznz_u64(&x1016, x1007, x1004, x985); out1[0] = x1008; out1[1] = x1009; out1[2] = x1010; out1[3] = x1011; out1[4] = x1012; out1[5] = x1013; out1[6] = x1014; out1[7] = x1015; out1[8] = x1016; } /* * The function fiat_p521_square squares a field element in the Montgomery domain. * * Preconditions: * 0 ≤ eval arg1 < m * Postconditions: * eval (from_montgomery out1) mod m = (eval (from_montgomery arg1) * eval (from_montgomery arg1)) mod m * 0 ≤ eval out1 < m * */ static void fiat_p521_square(fiat_p521_montgomery_domain_field_element out1, const fiat_p521_montgomery_domain_field_element arg1) { uint64_t x1; uint64_t x2; uint64_t x3; uint64_t x4; uint64_t x5; uint64_t x6; uint64_t x7; uint64_t x8; uint64_t x9; uint64_t x10; uint64_t x11; uint64_t x12; uint64_t x13; uint64_t x14; uint64_t x15; uint64_t x16; uint64_t x17; uint64_t x18; uint64_t x19; uint64_t x20; uint64_t x21; uint64_t x22; uint64_t x23; uint64_t x24; uint64_t x25; uint64_t x26; uint64_t x27; uint64_t x28; fiat_p521_uint1 x29; uint64_t x30; fiat_p521_uint1 x31; uint64_t x32; fiat_p521_uint1 x33; uint64_t x34; fiat_p521_uint1 x35; uint64_t x36; fiat_p521_uint1 x37; uint64_t x38; fiat_p521_uint1 x39; uint64_t x40; fiat_p521_uint1 x41; uint64_t x42; fiat_p521_uint1 x43; uint64_t x44; uint64_t x45; uint64_t x46; uint64_t x47; uint64_t x48; uint64_t x49; uint64_t x50; uint64_t x51; uint64_t x52; uint64_t x53; uint64_t x54; uint64_t x55; uint64_t x56; uint64_t x57; uint64_t x58; uint64_t x59; uint64_t x60; uint64_t x61; uint64_t x62; uint64_t x63; fiat_p521_uint1 x64; uint64_t x65; fiat_p521_uint1 x66; uint64_t x67; fiat_p521_uint1 x68; uint64_t x69; fiat_p521_uint1 x70; uint64_t x71; fiat_p521_uint1 x72; uint64_t x73; fiat_p521_uint1 x74; uint64_t x75; fiat_p521_uint1 x76; uint64_t x77; fiat_p521_uint1 x78; uint64_t x79; uint64_t x80; fiat_p521_uint1 x81; uint64_t x82; fiat_p521_uint1 x83; uint64_t x84; fiat_p521_uint1 x85; uint64_t x86; fiat_p521_uint1 x87; uint64_t x88; fiat_p521_uint1 x89; uint64_t x90; fiat_p521_uint1 x91; uint64_t x92; fiat_p521_uint1 x93; uint64_t x94; fiat_p521_uint1 x95; uint64_t x96; fiat_p521_uint1 x97; uint64_t x98; fiat_p521_uint1 x99; uint64_t x100; uint64_t x101; uint64_t x102; uint64_t x103; uint64_t x104; uint64_t x105; uint64_t x106; uint64_t x107; uint64_t x108; uint64_t x109; uint64_t x110; uint64_t x111; uint64_t x112; uint64_t x113; uint64_t x114; uint64_t x115; uint64_t x116; uint64_t x117; uint64_t x118; fiat_p521_uint1 x119; uint64_t x120; fiat_p521_uint1 x121; uint64_t x122; fiat_p521_uint1 x123; uint64_t x124; fiat_p521_uint1 x125; uint64_t x126; fiat_p521_uint1 x127; uint64_t x128; fiat_p521_uint1 x129; uint64_t x130; fiat_p521_uint1 x131; uint64_t x132; fiat_p521_uint1 x133; uint64_t x134; uint64_t x135; fiat_p521_uint1 x136; uint64_t x137; fiat_p521_uint1 x138; uint64_t x139; fiat_p521_uint1 x140; uint64_t x141; fiat_p521_uint1 x142; uint64_t x143; fiat_p521_uint1 x144; uint64_t x145; fiat_p521_uint1 x146; uint64_t x147; fiat_p521_uint1 x148; uint64_t x149; fiat_p521_uint1 x150; uint64_t x151; fiat_p521_uint1 x152; uint64_t x153; fiat_p521_uint1 x154; uint64_t x155; uint64_t x156; uint64_t x157; uint64_t x158; uint64_t x159; uint64_t x160; uint64_t x161; uint64_t x162; uint64_t x163; uint64_t x164; uint64_t x165; uint64_t x166; uint64_t x167; uint64_t x168; uint64_t x169; uint64_t x170; uint64_t x171; uint64_t x172; uint64_t x173; fiat_p521_uint1 x174; uint64_t x175; fiat_p521_uint1 x176; uint64_t x177; fiat_p521_uint1 x178; uint64_t x179; fiat_p521_uint1 x180; uint64_t x181; fiat_p521_uint1 x182; uint64_t x183; fiat_p521_uint1 x184; uint64_t x185; fiat_p521_uint1 x186; uint64_t x187; fiat_p521_uint1 x188; uint64_t x189; uint64_t x190; fiat_p521_uint1 x191; uint64_t x192; fiat_p521_uint1 x193; uint64_t x194; fiat_p521_uint1 x195; uint64_t x196; fiat_p521_uint1 x197; uint64_t x198; fiat_p521_uint1 x199; uint64_t x200; fiat_p521_uint1 x201; uint64_t x202; fiat_p521_uint1 x203; uint64_t x204; fiat_p521_uint1 x205; uint64_t x206; fiat_p521_uint1 x207; uint64_t x208; fiat_p521_uint1 x209; uint64_t x210; uint64_t x211; uint64_t x212; uint64_t x213; uint64_t x214; uint64_t x215; uint64_t x216; uint64_t x217; uint64_t x218; uint64_t x219; uint64_t x220; uint64_t x221; uint64_t x222; uint64_t x223; uint64_t x224; uint64_t x225; uint64_t x226; uint64_t x227; uint64_t x228; uint64_t x229; fiat_p521_uint1 x230; uint64_t x231; fiat_p521_uint1 x232; uint64_t x233; fiat_p521_uint1 x234; uint64_t x235; fiat_p521_uint1 x236; uint64_t x237; fiat_p521_uint1 x238; uint64_t x239; fiat_p521_uint1 x240; uint64_t x241; fiat_p521_uint1 x242; uint64_t x243; fiat_p521_uint1 x244; uint64_t x245; uint64_t x246; fiat_p521_uint1 x247; uint64_t x248; fiat_p521_uint1 x249; uint64_t x250; fiat_p521_uint1 x251; uint64_t x252; fiat_p521_uint1 x253; uint64_t x254; fiat_p521_uint1 x255; uint64_t x256; fiat_p521_uint1 x257; uint64_t x258; fiat_p521_uint1 x259; uint64_t x260; fiat_p521_uint1 x261; uint64_t x262; fiat_p521_uint1 x263; uint64_t x264; fiat_p521_uint1 x265; uint64_t x266; uint64_t x267; uint64_t x268; uint64_t x269; uint64_t x270; uint64_t x271; uint64_t x272; uint64_t x273; uint64_t x274; uint64_t x275; uint64_t x276; uint64_t x277; uint64_t x278; uint64_t x279; uint64_t x280; uint64_t x281; uint64_t x282; uint64_t x283; uint64_t x284; fiat_p521_uint1 x285; uint64_t x286; fiat_p521_uint1 x287; uint64_t x288; fiat_p521_uint1 x289; uint64_t x290; fiat_p521_uint1 x291; uint64_t x292; fiat_p521_uint1 x293; uint64_t x294; fiat_p521_uint1 x295; uint64_t x296; fiat_p521_uint1 x297; uint64_t x298; fiat_p521_uint1 x299; uint64_t x300; uint64_t x301; fiat_p521_uint1 x302; uint64_t x303; fiat_p521_uint1 x304; uint64_t x305; fiat_p521_uint1 x306; uint64_t x307; fiat_p521_uint1 x308; uint64_t x309; fiat_p521_uint1 x310; uint64_t x311; fiat_p521_uint1 x312; uint64_t x313; fiat_p521_uint1 x314; uint64_t x315; fiat_p521_uint1 x316; uint64_t x317; fiat_p521_uint1 x318; uint64_t x319; fiat_p521_uint1 x320; uint64_t x321; uint64_t x322; uint64_t x323; uint64_t x324; uint64_t x325; uint64_t x326; uint64_t x327; uint64_t x328; uint64_t x329; uint64_t x330; uint64_t x331; uint64_t x332; uint64_t x333; uint64_t x334; uint64_t x335; uint64_t x336; uint64_t x337; uint64_t x338; uint64_t x339; uint64_t x340; fiat_p521_uint1 x341; uint64_t x342; fiat_p521_uint1 x343; uint64_t x344; fiat_p521_uint1 x345; uint64_t x346; fiat_p521_uint1 x347; uint64_t x348; fiat_p521_uint1 x349; uint64_t x350; fiat_p521_uint1 x351; uint64_t x352; fiat_p521_uint1 x353; uint64_t x354; fiat_p521_uint1 x355; uint64_t x356; uint64_t x357; fiat_p521_uint1 x358; uint64_t x359; fiat_p521_uint1 x360; uint64_t x361; fiat_p521_uint1 x362; uint64_t x363; fiat_p521_uint1 x364; uint64_t x365; fiat_p521_uint1 x366; uint64_t x367; fiat_p521_uint1 x368; uint64_t x369; fiat_p521_uint1 x370; uint64_t x371; fiat_p521_uint1 x372; uint64_t x373; fiat_p521_uint1 x374; uint64_t x375; fiat_p521_uint1 x376; uint64_t x377; uint64_t x378; uint64_t x379; uint64_t x380; uint64_t x381; uint64_t x382; uint64_t x383; uint64_t x384; uint64_t x385; uint64_t x386; uint64_t x387; uint64_t x388; uint64_t x389; uint64_t x390; uint64_t x391; uint64_t x392; uint64_t x393; uint64_t x394; uint64_t x395; fiat_p521_uint1 x396; uint64_t x397; fiat_p521_uint1 x398; uint64_t x399; fiat_p521_uint1 x400; uint64_t x401; fiat_p521_uint1 x402; uint64_t x403; fiat_p521_uint1 x404; uint64_t x405; fiat_p521_uint1 x406; uint64_t x407; fiat_p521_uint1 x408; uint64_t x409; fiat_p521_uint1 x410; uint64_t x411; uint64_t x412; fiat_p521_uint1 x413; uint64_t x414; fiat_p521_uint1 x415; uint64_t x416; fiat_p521_uint1 x417; uint64_t x418; fiat_p521_uint1 x419; uint64_t x420; fiat_p521_uint1 x421; uint64_t x422; fiat_p521_uint1 x423; uint64_t x424; fiat_p521_uint1 x425; uint64_t x426; fiat_p521_uint1 x427; uint64_t x428; fiat_p521_uint1 x429; uint64_t x430; fiat_p521_uint1 x431; uint64_t x432; uint64_t x433; uint64_t x434; uint64_t x435; uint64_t x436; uint64_t x437; uint64_t x438; uint64_t x439; uint64_t x440; uint64_t x441; uint64_t x442; uint64_t x443; uint64_t x444; uint64_t x445; uint64_t x446; uint64_t x447; uint64_t x448; uint64_t x449; uint64_t x450; uint64_t x451; fiat_p521_uint1 x452; uint64_t x453; fiat_p521_uint1 x454; uint64_t x455; fiat_p521_uint1 x456; uint64_t x457; fiat_p521_uint1 x458; uint64_t x459; fiat_p521_uint1 x460; uint64_t x461; fiat_p521_uint1 x462; uint64_t x463; fiat_p521_uint1 x464; uint64_t x465; fiat_p521_uint1 x466; uint64_t x467; uint64_t x468; fiat_p521_uint1 x469; uint64_t x470; fiat_p521_uint1 x471; uint64_t x472; fiat_p521_uint1 x473; uint64_t x474; fiat_p521_uint1 x475; uint64_t x476; fiat_p521_uint1 x477; uint64_t x478; fiat_p521_uint1 x479; uint64_t x480; fiat_p521_uint1 x481; uint64_t x482; fiat_p521_uint1 x483; uint64_t x484; fiat_p521_uint1 x485; uint64_t x486; fiat_p521_uint1 x487; uint64_t x488; uint64_t x489; uint64_t x490; uint64_t x491; uint64_t x492; uint64_t x493; uint64_t x494; uint64_t x495; uint64_t x496; uint64_t x497; uint64_t x498; uint64_t x499; uint64_t x500; uint64_t x501; uint64_t x502; uint64_t x503; uint64_t x504; uint64_t x505; uint64_t x506; fiat_p521_uint1 x507; uint64_t x508; fiat_p521_uint1 x509; uint64_t x510; fiat_p521_uint1 x511; uint64_t x512; fiat_p521_uint1 x513; uint64_t x514; fiat_p521_uint1 x515; uint64_t x516; fiat_p521_uint1 x517; uint64_t x518; fiat_p521_uint1 x519; uint64_t x520; fiat_p521_uint1 x521; uint64_t x522; uint64_t x523; fiat_p521_uint1 x524; uint64_t x525; fiat_p521_uint1 x526; uint64_t x527; fiat_p521_uint1 x528; uint64_t x529; fiat_p521_uint1 x530; uint64_t x531; fiat_p521_uint1 x532; uint64_t x533; fiat_p521_uint1 x534; uint64_t x535; fiat_p521_uint1 x536; uint64_t x537; fiat_p521_uint1 x538; uint64_t x539; fiat_p521_uint1 x540; uint64_t x541; fiat_p521_uint1 x542; uint64_t x543; uint64_t x544; uint64_t x545; uint64_t x546; uint64_t x547; uint64_t x548; uint64_t x549; uint64_t x550; uint64_t x551; uint64_t x552; uint64_t x553; uint64_t x554; uint64_t x555; uint64_t x556; uint64_t x557; uint64_t x558; uint64_t x559; uint64_t x560; uint64_t x561; uint64_t x562; fiat_p521_uint1 x563; uint64_t x564; fiat_p521_uint1 x565; uint64_t x566; fiat_p521_uint1 x567; uint64_t x568; fiat_p521_uint1 x569; uint64_t x570; fiat_p521_uint1 x571; uint64_t x572; fiat_p521_uint1 x573; uint64_t x574; fiat_p521_uint1 x575; uint64_t x576; fiat_p521_uint1 x577; uint64_t x578; uint64_t x579; fiat_p521_uint1 x580; uint64_t x581; fiat_p521_uint1 x582; uint64_t x583; fiat_p521_uint1 x584; uint64_t x585; fiat_p521_uint1 x586; uint64_t x587; fiat_p521_uint1 x588; uint64_t x589; fiat_p521_uint1 x590; uint64_t x591; fiat_p521_uint1 x592; uint64_t x593; fiat_p521_uint1 x594; uint64_t x595; fiat_p521_uint1 x596; uint64_t x597; fiat_p521_uint1 x598; uint64_t x599; uint64_t x600; uint64_t x601; uint64_t x602; uint64_t x603; uint64_t x604; uint64_t x605; uint64_t x606; uint64_t x607; uint64_t x608; uint64_t x609; uint64_t x610; uint64_t x611; uint64_t x612; uint64_t x613; uint64_t x614; uint64_t x615; uint64_t x616; uint64_t x617; fiat_p521_uint1 x618; uint64_t x619; fiat_p521_uint1 x620; uint64_t x621; fiat_p521_uint1 x622; uint64_t x623; fiat_p521_uint1 x624; uint64_t x625; fiat_p521_uint1 x626; uint64_t x627; fiat_p521_uint1 x628; uint64_t x629; fiat_p521_uint1 x630; uint64_t x631; fiat_p521_uint1 x632; uint64_t x633; uint64_t x634; fiat_p521_uint1 x635; uint64_t x636; fiat_p521_uint1 x637; uint64_t x638; fiat_p521_uint1 x639; uint64_t x640; fiat_p521_uint1 x641; uint64_t x642; fiat_p521_uint1 x643; uint64_t x644; fiat_p521_uint1 x645; uint64_t x646; fiat_p521_uint1 x647; uint64_t x648; fiat_p521_uint1 x649; uint64_t x650; fiat_p521_uint1 x651; uint64_t x652; fiat_p521_uint1 x653; uint64_t x654; uint64_t x655; uint64_t x656; uint64_t x657; uint64_t x658; uint64_t x659; uint64_t x660; uint64_t x661; uint64_t x662; uint64_t x663; uint64_t x664; uint64_t x665; uint64_t x666; uint64_t x667; uint64_t x668; uint64_t x669; uint64_t x670; uint64_t x671; uint64_t x672; uint64_t x673; fiat_p521_uint1 x674; uint64_t x675; fiat_p521_uint1 x676; uint64_t x677; fiat_p521_uint1 x678; uint64_t x679; fiat_p521_uint1 x680; uint64_t x681; fiat_p521_uint1 x682; uint64_t x683; fiat_p521_uint1 x684; uint64_t x685; fiat_p521_uint1 x686; uint64_t x687; fiat_p521_uint1 x688; uint64_t x689; uint64_t x690; fiat_p521_uint1 x691; uint64_t x692; fiat_p521_uint1 x693; uint64_t x694; fiat_p521_uint1 x695; uint64_t x696; fiat_p521_uint1 x697; uint64_t x698; fiat_p521_uint1 x699; uint64_t x700; fiat_p521_uint1 x701; uint64_t x702; fiat_p521_uint1 x703; uint64_t x704; fiat_p521_uint1 x705; uint64_t x706; fiat_p521_uint1 x707; uint64_t x708; fiat_p521_uint1 x709; uint64_t x710; uint64_t x711; uint64_t x712; uint64_t x713; uint64_t x714; uint64_t x715; uint64_t x716; uint64_t x717; uint64_t x718; uint64_t x719; uint64_t x720; uint64_t x721; uint64_t x722; uint64_t x723; uint64_t x724; uint64_t x725; uint64_t x726; uint64_t x727; uint64_t x728; fiat_p521_uint1 x729; uint64_t x730; fiat_p521_uint1 x731; uint64_t x732; fiat_p521_uint1 x733; uint64_t x734; fiat_p521_uint1 x735; uint64_t x736; fiat_p521_uint1 x737; uint64_t x738; fiat_p521_uint1 x739; uint64_t x740; fiat_p521_uint1 x741; uint64_t x742; fiat_p521_uint1 x743; uint64_t x744; uint64_t x745; fiat_p521_uint1 x746; uint64_t x747; fiat_p521_uint1 x748; uint64_t x749; fiat_p521_uint1 x750; uint64_t x751; fiat_p521_uint1 x752; uint64_t x753; fiat_p521_uint1 x754; uint64_t x755; fiat_p521_uint1 x756; uint64_t x757; fiat_p521_uint1 x758; uint64_t x759; fiat_p521_uint1 x760; uint64_t x761; fiat_p521_uint1 x762; uint64_t x763; fiat_p521_uint1 x764; uint64_t x765; uint64_t x766; uint64_t x767; uint64_t x768; uint64_t x769; uint64_t x770; uint64_t x771; uint64_t x772; uint64_t x773; uint64_t x774; uint64_t x775; uint64_t x776; uint64_t x777; uint64_t x778; uint64_t x779; uint64_t x780; uint64_t x781; uint64_t x782; uint64_t x783; uint64_t x784; fiat_p521_uint1 x785; uint64_t x786; fiat_p521_uint1 x787; uint64_t x788; fiat_p521_uint1 x789; uint64_t x790; fiat_p521_uint1 x791; uint64_t x792; fiat_p521_uint1 x793; uint64_t x794; fiat_p521_uint1 x795; uint64_t x796; fiat_p521_uint1 x797; uint64_t x798; fiat_p521_uint1 x799; uint64_t x800; uint64_t x801; fiat_p521_uint1 x802; uint64_t x803; fiat_p521_uint1 x804; uint64_t x805; fiat_p521_uint1 x806; uint64_t x807; fiat_p521_uint1 x808; uint64_t x809; fiat_p521_uint1 x810; uint64_t x811; fiat_p521_uint1 x812; uint64_t x813; fiat_p521_uint1 x814; uint64_t x815; fiat_p521_uint1 x816; uint64_t x817; fiat_p521_uint1 x818; uint64_t x819; fiat_p521_uint1 x820; uint64_t x821; uint64_t x822; uint64_t x823; uint64_t x824; uint64_t x825; uint64_t x826; uint64_t x827; uint64_t x828; uint64_t x829; uint64_t x830; uint64_t x831; uint64_t x832; uint64_t x833; uint64_t x834; uint64_t x835; uint64_t x836; uint64_t x837; uint64_t x838; uint64_t x839; fiat_p521_uint1 x840; uint64_t x841; fiat_p521_uint1 x842; uint64_t x843; fiat_p521_uint1 x844; uint64_t x845; fiat_p521_uint1 x846; uint64_t x847; fiat_p521_uint1 x848; uint64_t x849; fiat_p521_uint1 x850; uint64_t x851; fiat_p521_uint1 x852; uint64_t x853; fiat_p521_uint1 x854; uint64_t x855; uint64_t x856; fiat_p521_uint1 x857; uint64_t x858; fiat_p521_uint1 x859; uint64_t x860; fiat_p521_uint1 x861; uint64_t x862; fiat_p521_uint1 x863; uint64_t x864; fiat_p521_uint1 x865; uint64_t x866; fiat_p521_uint1 x867; uint64_t x868; fiat_p521_uint1 x869; uint64_t x870; fiat_p521_uint1 x871; uint64_t x872; fiat_p521_uint1 x873; uint64_t x874; fiat_p521_uint1 x875; uint64_t x876; uint64_t x877; uint64_t x878; uint64_t x879; uint64_t x880; uint64_t x881; uint64_t x882; uint64_t x883; uint64_t x884; uint64_t x885; uint64_t x886; uint64_t x887; uint64_t x888; uint64_t x889; uint64_t x890; uint64_t x891; uint64_t x892; uint64_t x893; uint64_t x894; uint64_t x895; fiat_p521_uint1 x896; uint64_t x897; fiat_p521_uint1 x898; uint64_t x899; fiat_p521_uint1 x900; uint64_t x901; fiat_p521_uint1 x902; uint64_t x903; fiat_p521_uint1 x904; uint64_t x905; fiat_p521_uint1 x906; uint64_t x907; fiat_p521_uint1 x908; uint64_t x909; fiat_p521_uint1 x910; uint64_t x911; uint64_t x912; fiat_p521_uint1 x913; uint64_t x914; fiat_p521_uint1 x915; uint64_t x916; fiat_p521_uint1 x917; uint64_t x918; fiat_p521_uint1 x919; uint64_t x920; fiat_p521_uint1 x921; uint64_t x922; fiat_p521_uint1 x923; uint64_t x924; fiat_p521_uint1 x925; uint64_t x926; fiat_p521_uint1 x927; uint64_t x928; fiat_p521_uint1 x929; uint64_t x930; fiat_p521_uint1 x931; uint64_t x932; uint64_t x933; uint64_t x934; uint64_t x935; uint64_t x936; uint64_t x937; uint64_t x938; uint64_t x939; uint64_t x940; uint64_t x941; uint64_t x942; uint64_t x943; uint64_t x944; uint64_t x945; uint64_t x946; uint64_t x947; uint64_t x948; uint64_t x949; uint64_t x950; fiat_p521_uint1 x951; uint64_t x952; fiat_p521_uint1 x953; uint64_t x954; fiat_p521_uint1 x955; uint64_t x956; fiat_p521_uint1 x957; uint64_t x958; fiat_p521_uint1 x959; uint64_t x960; fiat_p521_uint1 x961; uint64_t x962; fiat_p521_uint1 x963; uint64_t x964; fiat_p521_uint1 x965; uint64_t x966; uint64_t x967; fiat_p521_uint1 x968; uint64_t x969; fiat_p521_uint1 x970; uint64_t x971; fiat_p521_uint1 x972; uint64_t x973; fiat_p521_uint1 x974; uint64_t x975; fiat_p521_uint1 x976; uint64_t x977; fiat_p521_uint1 x978; uint64_t x979; fiat_p521_uint1 x980; uint64_t x981; fiat_p521_uint1 x982; uint64_t x983; fiat_p521_uint1 x984; uint64_t x985; fiat_p521_uint1 x986; uint64_t x987; uint64_t x988; fiat_p521_uint1 x989; uint64_t x990; fiat_p521_uint1 x991; uint64_t x992; fiat_p521_uint1 x993; uint64_t x994; fiat_p521_uint1 x995; uint64_t x996; fiat_p521_uint1 x997; uint64_t x998; fiat_p521_uint1 x999; uint64_t x1000; fiat_p521_uint1 x1001; uint64_t x1002; fiat_p521_uint1 x1003; uint64_t x1004; fiat_p521_uint1 x1005; uint64_t x1006; fiat_p521_uint1 x1007; uint64_t x1008; uint64_t x1009; uint64_t x1010; uint64_t x1011; uint64_t x1012; uint64_t x1013; uint64_t x1014; uint64_t x1015; uint64_t x1016; x1 = (arg1[1]); x2 = (arg1[2]); x3 = (arg1[3]); x4 = (arg1[4]); x5 = (arg1[5]); x6 = (arg1[6]); x7 = (arg1[7]); x8 = (arg1[8]); x9 = (arg1[0]); fiat_p521_mulx_u64(&x10, &x11, x9, (arg1[8])); fiat_p521_mulx_u64(&x12, &x13, x9, (arg1[7])); fiat_p521_mulx_u64(&x14, &x15, x9, (arg1[6])); fiat_p521_mulx_u64(&x16, &x17, x9, (arg1[5])); fiat_p521_mulx_u64(&x18, &x19, x9, (arg1[4])); fiat_p521_mulx_u64(&x20, &x21, x9, (arg1[3])); fiat_p521_mulx_u64(&x22, &x23, x9, (arg1[2])); fiat_p521_mulx_u64(&x24, &x25, x9, (arg1[1])); fiat_p521_mulx_u64(&x26, &x27, x9, (arg1[0])); fiat_p521_addcarryx_u64(&x28, &x29, 0x0, x27, x24); fiat_p521_addcarryx_u64(&x30, &x31, x29, x25, x22); fiat_p521_addcarryx_u64(&x32, &x33, x31, x23, x20); fiat_p521_addcarryx_u64(&x34, &x35, x33, x21, x18); fiat_p521_addcarryx_u64(&x36, &x37, x35, x19, x16); fiat_p521_addcarryx_u64(&x38, &x39, x37, x17, x14); fiat_p521_addcarryx_u64(&x40, &x41, x39, x15, x12); fiat_p521_addcarryx_u64(&x42, &x43, x41, x13, x10); x44 = (x43 + x11); fiat_p521_mulx_u64(&x45, &x46, x26, UINT16_C(0x1ff)); fiat_p521_mulx_u64(&x47, &x48, x26, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x49, &x50, x26, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x51, &x52, x26, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x53, &x54, x26, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x55, &x56, x26, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x57, &x58, x26, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x59, &x60, x26, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x61, &x62, x26, UINT64_C(0xffffffffffffffff)); fiat_p521_addcarryx_u64(&x63, &x64, 0x0, x62, x59); fiat_p521_addcarryx_u64(&x65, &x66, x64, x60, x57); fiat_p521_addcarryx_u64(&x67, &x68, x66, x58, x55); fiat_p521_addcarryx_u64(&x69, &x70, x68, x56, x53); fiat_p521_addcarryx_u64(&x71, &x72, x70, x54, x51); fiat_p521_addcarryx_u64(&x73, &x74, x72, x52, x49); fiat_p521_addcarryx_u64(&x75, &x76, x74, x50, x47); fiat_p521_addcarryx_u64(&x77, &x78, x76, x48, x45); x79 = (x78 + x46); fiat_p521_addcarryx_u64(&x80, &x81, 0x0, x26, x61); fiat_p521_addcarryx_u64(&x82, &x83, x81, x28, x63); fiat_p521_addcarryx_u64(&x84, &x85, x83, x30, x65); fiat_p521_addcarryx_u64(&x86, &x87, x85, x32, x67); fiat_p521_addcarryx_u64(&x88, &x89, x87, x34, x69); fiat_p521_addcarryx_u64(&x90, &x91, x89, x36, x71); fiat_p521_addcarryx_u64(&x92, &x93, x91, x38, x73); fiat_p521_addcarryx_u64(&x94, &x95, x93, x40, x75); fiat_p521_addcarryx_u64(&x96, &x97, x95, x42, x77); fiat_p521_addcarryx_u64(&x98, &x99, x97, x44, x79); fiat_p521_mulx_u64(&x100, &x101, x1, (arg1[8])); fiat_p521_mulx_u64(&x102, &x103, x1, (arg1[7])); fiat_p521_mulx_u64(&x104, &x105, x1, (arg1[6])); fiat_p521_mulx_u64(&x106, &x107, x1, (arg1[5])); fiat_p521_mulx_u64(&x108, &x109, x1, (arg1[4])); fiat_p521_mulx_u64(&x110, &x111, x1, (arg1[3])); fiat_p521_mulx_u64(&x112, &x113, x1, (arg1[2])); fiat_p521_mulx_u64(&x114, &x115, x1, (arg1[1])); fiat_p521_mulx_u64(&x116, &x117, x1, (arg1[0])); fiat_p521_addcarryx_u64(&x118, &x119, 0x0, x117, x114); fiat_p521_addcarryx_u64(&x120, &x121, x119, x115, x112); fiat_p521_addcarryx_u64(&x122, &x123, x121, x113, x110); fiat_p521_addcarryx_u64(&x124, &x125, x123, x111, x108); fiat_p521_addcarryx_u64(&x126, &x127, x125, x109, x106); fiat_p521_addcarryx_u64(&x128, &x129, x127, x107, x104); fiat_p521_addcarryx_u64(&x130, &x131, x129, x105, x102); fiat_p521_addcarryx_u64(&x132, &x133, x131, x103, x100); x134 = (x133 + x101); fiat_p521_addcarryx_u64(&x135, &x136, 0x0, x82, x116); fiat_p521_addcarryx_u64(&x137, &x138, x136, x84, x118); fiat_p521_addcarryx_u64(&x139, &x140, x138, x86, x120); fiat_p521_addcarryx_u64(&x141, &x142, x140, x88, x122); fiat_p521_addcarryx_u64(&x143, &x144, x142, x90, x124); fiat_p521_addcarryx_u64(&x145, &x146, x144, x92, x126); fiat_p521_addcarryx_u64(&x147, &x148, x146, x94, x128); fiat_p521_addcarryx_u64(&x149, &x150, x148, x96, x130); fiat_p521_addcarryx_u64(&x151, &x152, x150, x98, x132); fiat_p521_addcarryx_u64(&x153, &x154, x152, x99, x134); fiat_p521_mulx_u64(&x155, &x156, x135, UINT16_C(0x1ff)); fiat_p521_mulx_u64(&x157, &x158, x135, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x159, &x160, x135, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x161, &x162, x135, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x163, &x164, x135, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x165, &x166, x135, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x167, &x168, x135, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x169, &x170, x135, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x171, &x172, x135, UINT64_C(0xffffffffffffffff)); fiat_p521_addcarryx_u64(&x173, &x174, 0x0, x172, x169); fiat_p521_addcarryx_u64(&x175, &x176, x174, x170, x167); fiat_p521_addcarryx_u64(&x177, &x178, x176, x168, x165); fiat_p521_addcarryx_u64(&x179, &x180, x178, x166, x163); fiat_p521_addcarryx_u64(&x181, &x182, x180, x164, x161); fiat_p521_addcarryx_u64(&x183, &x184, x182, x162, x159); fiat_p521_addcarryx_u64(&x185, &x186, x184, x160, x157); fiat_p521_addcarryx_u64(&x187, &x188, x186, x158, x155); x189 = (x188 + x156); fiat_p521_addcarryx_u64(&x190, &x191, 0x0, x135, x171); fiat_p521_addcarryx_u64(&x192, &x193, x191, x137, x173); fiat_p521_addcarryx_u64(&x194, &x195, x193, x139, x175); fiat_p521_addcarryx_u64(&x196, &x197, x195, x141, x177); fiat_p521_addcarryx_u64(&x198, &x199, x197, x143, x179); fiat_p521_addcarryx_u64(&x200, &x201, x199, x145, x181); fiat_p521_addcarryx_u64(&x202, &x203, x201, x147, x183); fiat_p521_addcarryx_u64(&x204, &x205, x203, x149, x185); fiat_p521_addcarryx_u64(&x206, &x207, x205, x151, x187); fiat_p521_addcarryx_u64(&x208, &x209, x207, x153, x189); x210 = ((uint64_t)x209 + x154); fiat_p521_mulx_u64(&x211, &x212, x2, (arg1[8])); fiat_p521_mulx_u64(&x213, &x214, x2, (arg1[7])); fiat_p521_mulx_u64(&x215, &x216, x2, (arg1[6])); fiat_p521_mulx_u64(&x217, &x218, x2, (arg1[5])); fiat_p521_mulx_u64(&x219, &x220, x2, (arg1[4])); fiat_p521_mulx_u64(&x221, &x222, x2, (arg1[3])); fiat_p521_mulx_u64(&x223, &x224, x2, (arg1[2])); fiat_p521_mulx_u64(&x225, &x226, x2, (arg1[1])); fiat_p521_mulx_u64(&x227, &x228, x2, (arg1[0])); fiat_p521_addcarryx_u64(&x229, &x230, 0x0, x228, x225); fiat_p521_addcarryx_u64(&x231, &x232, x230, x226, x223); fiat_p521_addcarryx_u64(&x233, &x234, x232, x224, x221); fiat_p521_addcarryx_u64(&x235, &x236, x234, x222, x219); fiat_p521_addcarryx_u64(&x237, &x238, x236, x220, x217); fiat_p521_addcarryx_u64(&x239, &x240, x238, x218, x215); fiat_p521_addcarryx_u64(&x241, &x242, x240, x216, x213); fiat_p521_addcarryx_u64(&x243, &x244, x242, x214, x211); x245 = (x244 + x212); fiat_p521_addcarryx_u64(&x246, &x247, 0x0, x192, x227); fiat_p521_addcarryx_u64(&x248, &x249, x247, x194, x229); fiat_p521_addcarryx_u64(&x250, &x251, x249, x196, x231); fiat_p521_addcarryx_u64(&x252, &x253, x251, x198, x233); fiat_p521_addcarryx_u64(&x254, &x255, x253, x200, x235); fiat_p521_addcarryx_u64(&x256, &x257, x255, x202, x237); fiat_p521_addcarryx_u64(&x258, &x259, x257, x204, x239); fiat_p521_addcarryx_u64(&x260, &x261, x259, x206, x241); fiat_p521_addcarryx_u64(&x262, &x263, x261, x208, x243); fiat_p521_addcarryx_u64(&x264, &x265, x263, x210, x245); fiat_p521_mulx_u64(&x266, &x267, x246, UINT16_C(0x1ff)); fiat_p521_mulx_u64(&x268, &x269, x246, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x270, &x271, x246, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x272, &x273, x246, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x274, &x275, x246, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x276, &x277, x246, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x278, &x279, x246, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x280, &x281, x246, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x282, &x283, x246, UINT64_C(0xffffffffffffffff)); fiat_p521_addcarryx_u64(&x284, &x285, 0x0, x283, x280); fiat_p521_addcarryx_u64(&x286, &x287, x285, x281, x278); fiat_p521_addcarryx_u64(&x288, &x289, x287, x279, x276); fiat_p521_addcarryx_u64(&x290, &x291, x289, x277, x274); fiat_p521_addcarryx_u64(&x292, &x293, x291, x275, x272); fiat_p521_addcarryx_u64(&x294, &x295, x293, x273, x270); fiat_p521_addcarryx_u64(&x296, &x297, x295, x271, x268); fiat_p521_addcarryx_u64(&x298, &x299, x297, x269, x266); x300 = (x299 + x267); fiat_p521_addcarryx_u64(&x301, &x302, 0x0, x246, x282); fiat_p521_addcarryx_u64(&x303, &x304, x302, x248, x284); fiat_p521_addcarryx_u64(&x305, &x306, x304, x250, x286); fiat_p521_addcarryx_u64(&x307, &x308, x306, x252, x288); fiat_p521_addcarryx_u64(&x309, &x310, x308, x254, x290); fiat_p521_addcarryx_u64(&x311, &x312, x310, x256, x292); fiat_p521_addcarryx_u64(&x313, &x314, x312, x258, x294); fiat_p521_addcarryx_u64(&x315, &x316, x314, x260, x296); fiat_p521_addcarryx_u64(&x317, &x318, x316, x262, x298); fiat_p521_addcarryx_u64(&x319, &x320, x318, x264, x300); x321 = ((uint64_t)x320 + x265); fiat_p521_mulx_u64(&x322, &x323, x3, (arg1[8])); fiat_p521_mulx_u64(&x324, &x325, x3, (arg1[7])); fiat_p521_mulx_u64(&x326, &x327, x3, (arg1[6])); fiat_p521_mulx_u64(&x328, &x329, x3, (arg1[5])); fiat_p521_mulx_u64(&x330, &x331, x3, (arg1[4])); fiat_p521_mulx_u64(&x332, &x333, x3, (arg1[3])); fiat_p521_mulx_u64(&x334, &x335, x3, (arg1[2])); fiat_p521_mulx_u64(&x336, &x337, x3, (arg1[1])); fiat_p521_mulx_u64(&x338, &x339, x3, (arg1[0])); fiat_p521_addcarryx_u64(&x340, &x341, 0x0, x339, x336); fiat_p521_addcarryx_u64(&x342, &x343, x341, x337, x334); fiat_p521_addcarryx_u64(&x344, &x345, x343, x335, x332); fiat_p521_addcarryx_u64(&x346, &x347, x345, x333, x330); fiat_p521_addcarryx_u64(&x348, &x349, x347, x331, x328); fiat_p521_addcarryx_u64(&x350, &x351, x349, x329, x326); fiat_p521_addcarryx_u64(&x352, &x353, x351, x327, x324); fiat_p521_addcarryx_u64(&x354, &x355, x353, x325, x322); x356 = (x355 + x323); fiat_p521_addcarryx_u64(&x357, &x358, 0x0, x303, x338); fiat_p521_addcarryx_u64(&x359, &x360, x358, x305, x340); fiat_p521_addcarryx_u64(&x361, &x362, x360, x307, x342); fiat_p521_addcarryx_u64(&x363, &x364, x362, x309, x344); fiat_p521_addcarryx_u64(&x365, &x366, x364, x311, x346); fiat_p521_addcarryx_u64(&x367, &x368, x366, x313, x348); fiat_p521_addcarryx_u64(&x369, &x370, x368, x315, x350); fiat_p521_addcarryx_u64(&x371, &x372, x370, x317, x352); fiat_p521_addcarryx_u64(&x373, &x374, x372, x319, x354); fiat_p521_addcarryx_u64(&x375, &x376, x374, x321, x356); fiat_p521_mulx_u64(&x377, &x378, x357, UINT16_C(0x1ff)); fiat_p521_mulx_u64(&x379, &x380, x357, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x381, &x382, x357, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x383, &x384, x357, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x385, &x386, x357, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x387, &x388, x357, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x389, &x390, x357, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x391, &x392, x357, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x393, &x394, x357, UINT64_C(0xffffffffffffffff)); fiat_p521_addcarryx_u64(&x395, &x396, 0x0, x394, x391); fiat_p521_addcarryx_u64(&x397, &x398, x396, x392, x389); fiat_p521_addcarryx_u64(&x399, &x400, x398, x390, x387); fiat_p521_addcarryx_u64(&x401, &x402, x400, x388, x385); fiat_p521_addcarryx_u64(&x403, &x404, x402, x386, x383); fiat_p521_addcarryx_u64(&x405, &x406, x404, x384, x381); fiat_p521_addcarryx_u64(&x407, &x408, x406, x382, x379); fiat_p521_addcarryx_u64(&x409, &x410, x408, x380, x377); x411 = (x410 + x378); fiat_p521_addcarryx_u64(&x412, &x413, 0x0, x357, x393); fiat_p521_addcarryx_u64(&x414, &x415, x413, x359, x395); fiat_p521_addcarryx_u64(&x416, &x417, x415, x361, x397); fiat_p521_addcarryx_u64(&x418, &x419, x417, x363, x399); fiat_p521_addcarryx_u64(&x420, &x421, x419, x365, x401); fiat_p521_addcarryx_u64(&x422, &x423, x421, x367, x403); fiat_p521_addcarryx_u64(&x424, &x425, x423, x369, x405); fiat_p521_addcarryx_u64(&x426, &x427, x425, x371, x407); fiat_p521_addcarryx_u64(&x428, &x429, x427, x373, x409); fiat_p521_addcarryx_u64(&x430, &x431, x429, x375, x411); x432 = ((uint64_t)x431 + x376); fiat_p521_mulx_u64(&x433, &x434, x4, (arg1[8])); fiat_p521_mulx_u64(&x435, &x436, x4, (arg1[7])); fiat_p521_mulx_u64(&x437, &x438, x4, (arg1[6])); fiat_p521_mulx_u64(&x439, &x440, x4, (arg1[5])); fiat_p521_mulx_u64(&x441, &x442, x4, (arg1[4])); fiat_p521_mulx_u64(&x443, &x444, x4, (arg1[3])); fiat_p521_mulx_u64(&x445, &x446, x4, (arg1[2])); fiat_p521_mulx_u64(&x447, &x448, x4, (arg1[1])); fiat_p521_mulx_u64(&x449, &x450, x4, (arg1[0])); fiat_p521_addcarryx_u64(&x451, &x452, 0x0, x450, x447); fiat_p521_addcarryx_u64(&x453, &x454, x452, x448, x445); fiat_p521_addcarryx_u64(&x455, &x456, x454, x446, x443); fiat_p521_addcarryx_u64(&x457, &x458, x456, x444, x441); fiat_p521_addcarryx_u64(&x459, &x460, x458, x442, x439); fiat_p521_addcarryx_u64(&x461, &x462, x460, x440, x437); fiat_p521_addcarryx_u64(&x463, &x464, x462, x438, x435); fiat_p521_addcarryx_u64(&x465, &x466, x464, x436, x433); x467 = (x466 + x434); fiat_p521_addcarryx_u64(&x468, &x469, 0x0, x414, x449); fiat_p521_addcarryx_u64(&x470, &x471, x469, x416, x451); fiat_p521_addcarryx_u64(&x472, &x473, x471, x418, x453); fiat_p521_addcarryx_u64(&x474, &x475, x473, x420, x455); fiat_p521_addcarryx_u64(&x476, &x477, x475, x422, x457); fiat_p521_addcarryx_u64(&x478, &x479, x477, x424, x459); fiat_p521_addcarryx_u64(&x480, &x481, x479, x426, x461); fiat_p521_addcarryx_u64(&x482, &x483, x481, x428, x463); fiat_p521_addcarryx_u64(&x484, &x485, x483, x430, x465); fiat_p521_addcarryx_u64(&x486, &x487, x485, x432, x467); fiat_p521_mulx_u64(&x488, &x489, x468, UINT16_C(0x1ff)); fiat_p521_mulx_u64(&x490, &x491, x468, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x492, &x493, x468, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x494, &x495, x468, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x496, &x497, x468, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x498, &x499, x468, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x500, &x501, x468, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x502, &x503, x468, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x504, &x505, x468, UINT64_C(0xffffffffffffffff)); fiat_p521_addcarryx_u64(&x506, &x507, 0x0, x505, x502); fiat_p521_addcarryx_u64(&x508, &x509, x507, x503, x500); fiat_p521_addcarryx_u64(&x510, &x511, x509, x501, x498); fiat_p521_addcarryx_u64(&x512, &x513, x511, x499, x496); fiat_p521_addcarryx_u64(&x514, &x515, x513, x497, x494); fiat_p521_addcarryx_u64(&x516, &x517, x515, x495, x492); fiat_p521_addcarryx_u64(&x518, &x519, x517, x493, x490); fiat_p521_addcarryx_u64(&x520, &x521, x519, x491, x488); x522 = (x521 + x489); fiat_p521_addcarryx_u64(&x523, &x524, 0x0, x468, x504); fiat_p521_addcarryx_u64(&x525, &x526, x524, x470, x506); fiat_p521_addcarryx_u64(&x527, &x528, x526, x472, x508); fiat_p521_addcarryx_u64(&x529, &x530, x528, x474, x510); fiat_p521_addcarryx_u64(&x531, &x532, x530, x476, x512); fiat_p521_addcarryx_u64(&x533, &x534, x532, x478, x514); fiat_p521_addcarryx_u64(&x535, &x536, x534, x480, x516); fiat_p521_addcarryx_u64(&x537, &x538, x536, x482, x518); fiat_p521_addcarryx_u64(&x539, &x540, x538, x484, x520); fiat_p521_addcarryx_u64(&x541, &x542, x540, x486, x522); x543 = ((uint64_t)x542 + x487); fiat_p521_mulx_u64(&x544, &x545, x5, (arg1[8])); fiat_p521_mulx_u64(&x546, &x547, x5, (arg1[7])); fiat_p521_mulx_u64(&x548, &x549, x5, (arg1[6])); fiat_p521_mulx_u64(&x550, &x551, x5, (arg1[5])); fiat_p521_mulx_u64(&x552, &x553, x5, (arg1[4])); fiat_p521_mulx_u64(&x554, &x555, x5, (arg1[3])); fiat_p521_mulx_u64(&x556, &x557, x5, (arg1[2])); fiat_p521_mulx_u64(&x558, &x559, x5, (arg1[1])); fiat_p521_mulx_u64(&x560, &x561, x5, (arg1[0])); fiat_p521_addcarryx_u64(&x562, &x563, 0x0, x561, x558); fiat_p521_addcarryx_u64(&x564, &x565, x563, x559, x556); fiat_p521_addcarryx_u64(&x566, &x567, x565, x557, x554); fiat_p521_addcarryx_u64(&x568, &x569, x567, x555, x552); fiat_p521_addcarryx_u64(&x570, &x571, x569, x553, x550); fiat_p521_addcarryx_u64(&x572, &x573, x571, x551, x548); fiat_p521_addcarryx_u64(&x574, &x575, x573, x549, x546); fiat_p521_addcarryx_u64(&x576, &x577, x575, x547, x544); x578 = (x577 + x545); fiat_p521_addcarryx_u64(&x579, &x580, 0x0, x525, x560); fiat_p521_addcarryx_u64(&x581, &x582, x580, x527, x562); fiat_p521_addcarryx_u64(&x583, &x584, x582, x529, x564); fiat_p521_addcarryx_u64(&x585, &x586, x584, x531, x566); fiat_p521_addcarryx_u64(&x587, &x588, x586, x533, x568); fiat_p521_addcarryx_u64(&x589, &x590, x588, x535, x570); fiat_p521_addcarryx_u64(&x591, &x592, x590, x537, x572); fiat_p521_addcarryx_u64(&x593, &x594, x592, x539, x574); fiat_p521_addcarryx_u64(&x595, &x596, x594, x541, x576); fiat_p521_addcarryx_u64(&x597, &x598, x596, x543, x578); fiat_p521_mulx_u64(&x599, &x600, x579, UINT16_C(0x1ff)); fiat_p521_mulx_u64(&x601, &x602, x579, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x603, &x604, x579, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x605, &x606, x579, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x607, &x608, x579, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x609, &x610, x579, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x611, &x612, x579, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x613, &x614, x579, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x615, &x616, x579, UINT64_C(0xffffffffffffffff)); fiat_p521_addcarryx_u64(&x617, &x618, 0x0, x616, x613); fiat_p521_addcarryx_u64(&x619, &x620, x618, x614, x611); fiat_p521_addcarryx_u64(&x621, &x622, x620, x612, x609); fiat_p521_addcarryx_u64(&x623, &x624, x622, x610, x607); fiat_p521_addcarryx_u64(&x625, &x626, x624, x608, x605); fiat_p521_addcarryx_u64(&x627, &x628, x626, x606, x603); fiat_p521_addcarryx_u64(&x629, &x630, x628, x604, x601); fiat_p521_addcarryx_u64(&x631, &x632, x630, x602, x599); x633 = (x632 + x600); fiat_p521_addcarryx_u64(&x634, &x635, 0x0, x579, x615); fiat_p521_addcarryx_u64(&x636, &x637, x635, x581, x617); fiat_p521_addcarryx_u64(&x638, &x639, x637, x583, x619); fiat_p521_addcarryx_u64(&x640, &x641, x639, x585, x621); fiat_p521_addcarryx_u64(&x642, &x643, x641, x587, x623); fiat_p521_addcarryx_u64(&x644, &x645, x643, x589, x625); fiat_p521_addcarryx_u64(&x646, &x647, x645, x591, x627); fiat_p521_addcarryx_u64(&x648, &x649, x647, x593, x629); fiat_p521_addcarryx_u64(&x650, &x651, x649, x595, x631); fiat_p521_addcarryx_u64(&x652, &x653, x651, x597, x633); x654 = ((uint64_t)x653 + x598); fiat_p521_mulx_u64(&x655, &x656, x6, (arg1[8])); fiat_p521_mulx_u64(&x657, &x658, x6, (arg1[7])); fiat_p521_mulx_u64(&x659, &x660, x6, (arg1[6])); fiat_p521_mulx_u64(&x661, &x662, x6, (arg1[5])); fiat_p521_mulx_u64(&x663, &x664, x6, (arg1[4])); fiat_p521_mulx_u64(&x665, &x666, x6, (arg1[3])); fiat_p521_mulx_u64(&x667, &x668, x6, (arg1[2])); fiat_p521_mulx_u64(&x669, &x670, x6, (arg1[1])); fiat_p521_mulx_u64(&x671, &x672, x6, (arg1[0])); fiat_p521_addcarryx_u64(&x673, &x674, 0x0, x672, x669); fiat_p521_addcarryx_u64(&x675, &x676, x674, x670, x667); fiat_p521_addcarryx_u64(&x677, &x678, x676, x668, x665); fiat_p521_addcarryx_u64(&x679, &x680, x678, x666, x663); fiat_p521_addcarryx_u64(&x681, &x682, x680, x664, x661); fiat_p521_addcarryx_u64(&x683, &x684, x682, x662, x659); fiat_p521_addcarryx_u64(&x685, &x686, x684, x660, x657); fiat_p521_addcarryx_u64(&x687, &x688, x686, x658, x655); x689 = (x688 + x656); fiat_p521_addcarryx_u64(&x690, &x691, 0x0, x636, x671); fiat_p521_addcarryx_u64(&x692, &x693, x691, x638, x673); fiat_p521_addcarryx_u64(&x694, &x695, x693, x640, x675); fiat_p521_addcarryx_u64(&x696, &x697, x695, x642, x677); fiat_p521_addcarryx_u64(&x698, &x699, x697, x644, x679); fiat_p521_addcarryx_u64(&x700, &x701, x699, x646, x681); fiat_p521_addcarryx_u64(&x702, &x703, x701, x648, x683); fiat_p521_addcarryx_u64(&x704, &x705, x703, x650, x685); fiat_p521_addcarryx_u64(&x706, &x707, x705, x652, x687); fiat_p521_addcarryx_u64(&x708, &x709, x707, x654, x689); fiat_p521_mulx_u64(&x710, &x711, x690, UINT16_C(0x1ff)); fiat_p521_mulx_u64(&x712, &x713, x690, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x714, &x715, x690, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x716, &x717, x690, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x718, &x719, x690, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x720, &x721, x690, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x722, &x723, x690, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x724, &x725, x690, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x726, &x727, x690, UINT64_C(0xffffffffffffffff)); fiat_p521_addcarryx_u64(&x728, &x729, 0x0, x727, x724); fiat_p521_addcarryx_u64(&x730, &x731, x729, x725, x722); fiat_p521_addcarryx_u64(&x732, &x733, x731, x723, x720); fiat_p521_addcarryx_u64(&x734, &x735, x733, x721, x718); fiat_p521_addcarryx_u64(&x736, &x737, x735, x719, x716); fiat_p521_addcarryx_u64(&x738, &x739, x737, x717, x714); fiat_p521_addcarryx_u64(&x740, &x741, x739, x715, x712); fiat_p521_addcarryx_u64(&x742, &x743, x741, x713, x710); x744 = (x743 + x711); fiat_p521_addcarryx_u64(&x745, &x746, 0x0, x690, x726); fiat_p521_addcarryx_u64(&x747, &x748, x746, x692, x728); fiat_p521_addcarryx_u64(&x749, &x750, x748, x694, x730); fiat_p521_addcarryx_u64(&x751, &x752, x750, x696, x732); fiat_p521_addcarryx_u64(&x753, &x754, x752, x698, x734); fiat_p521_addcarryx_u64(&x755, &x756, x754, x700, x736); fiat_p521_addcarryx_u64(&x757, &x758, x756, x702, x738); fiat_p521_addcarryx_u64(&x759, &x760, x758, x704, x740); fiat_p521_addcarryx_u64(&x761, &x762, x760, x706, x742); fiat_p521_addcarryx_u64(&x763, &x764, x762, x708, x744); x765 = ((uint64_t)x764 + x709); fiat_p521_mulx_u64(&x766, &x767, x7, (arg1[8])); fiat_p521_mulx_u64(&x768, &x769, x7, (arg1[7])); fiat_p521_mulx_u64(&x770, &x771, x7, (arg1[6])); fiat_p521_mulx_u64(&x772, &x773, x7, (arg1[5])); fiat_p521_mulx_u64(&x774, &x775, x7, (arg1[4])); fiat_p521_mulx_u64(&x776, &x777, x7, (arg1[3])); fiat_p521_mulx_u64(&x778, &x779, x7, (arg1[2])); fiat_p521_mulx_u64(&x780, &x781, x7, (arg1[1])); fiat_p521_mulx_u64(&x782, &x783, x7, (arg1[0])); fiat_p521_addcarryx_u64(&x784, &x785, 0x0, x783, x780); fiat_p521_addcarryx_u64(&x786, &x787, x785, x781, x778); fiat_p521_addcarryx_u64(&x788, &x789, x787, x779, x776); fiat_p521_addcarryx_u64(&x790, &x791, x789, x777, x774); fiat_p521_addcarryx_u64(&x792, &x793, x791, x775, x772); fiat_p521_addcarryx_u64(&x794, &x795, x793, x773, x770); fiat_p521_addcarryx_u64(&x796, &x797, x795, x771, x768); fiat_p521_addcarryx_u64(&x798, &x799, x797, x769, x766); x800 = (x799 + x767); fiat_p521_addcarryx_u64(&x801, &x802, 0x0, x747, x782); fiat_p521_addcarryx_u64(&x803, &x804, x802, x749, x784); fiat_p521_addcarryx_u64(&x805, &x806, x804, x751, x786); fiat_p521_addcarryx_u64(&x807, &x808, x806, x753, x788); fiat_p521_addcarryx_u64(&x809, &x810, x808, x755, x790); fiat_p521_addcarryx_u64(&x811, &x812, x810, x757, x792); fiat_p521_addcarryx_u64(&x813, &x814, x812, x759, x794); fiat_p521_addcarryx_u64(&x815, &x816, x814, x761, x796); fiat_p521_addcarryx_u64(&x817, &x818, x816, x763, x798); fiat_p521_addcarryx_u64(&x819, &x820, x818, x765, x800); fiat_p521_mulx_u64(&x821, &x822, x801, UINT16_C(0x1ff)); fiat_p521_mulx_u64(&x823, &x824, x801, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x825, &x826, x801, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x827, &x828, x801, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x829, &x830, x801, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x831, &x832, x801, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x833, &x834, x801, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x835, &x836, x801, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x837, &x838, x801, UINT64_C(0xffffffffffffffff)); fiat_p521_addcarryx_u64(&x839, &x840, 0x0, x838, x835); fiat_p521_addcarryx_u64(&x841, &x842, x840, x836, x833); fiat_p521_addcarryx_u64(&x843, &x844, x842, x834, x831); fiat_p521_addcarryx_u64(&x845, &x846, x844, x832, x829); fiat_p521_addcarryx_u64(&x847, &x848, x846, x830, x827); fiat_p521_addcarryx_u64(&x849, &x850, x848, x828, x825); fiat_p521_addcarryx_u64(&x851, &x852, x850, x826, x823); fiat_p521_addcarryx_u64(&x853, &x854, x852, x824, x821); x855 = (x854 + x822); fiat_p521_addcarryx_u64(&x856, &x857, 0x0, x801, x837); fiat_p521_addcarryx_u64(&x858, &x859, x857, x803, x839); fiat_p521_addcarryx_u64(&x860, &x861, x859, x805, x841); fiat_p521_addcarryx_u64(&x862, &x863, x861, x807, x843); fiat_p521_addcarryx_u64(&x864, &x865, x863, x809, x845); fiat_p521_addcarryx_u64(&x866, &x867, x865, x811, x847); fiat_p521_addcarryx_u64(&x868, &x869, x867, x813, x849); fiat_p521_addcarryx_u64(&x870, &x871, x869, x815, x851); fiat_p521_addcarryx_u64(&x872, &x873, x871, x817, x853); fiat_p521_addcarryx_u64(&x874, &x875, x873, x819, x855); x876 = ((uint64_t)x875 + x820); fiat_p521_mulx_u64(&x877, &x878, x8, (arg1[8])); fiat_p521_mulx_u64(&x879, &x880, x8, (arg1[7])); fiat_p521_mulx_u64(&x881, &x882, x8, (arg1[6])); fiat_p521_mulx_u64(&x883, &x884, x8, (arg1[5])); fiat_p521_mulx_u64(&x885, &x886, x8, (arg1[4])); fiat_p521_mulx_u64(&x887, &x888, x8, (arg1[3])); fiat_p521_mulx_u64(&x889, &x890, x8, (arg1[2])); fiat_p521_mulx_u64(&x891, &x892, x8, (arg1[1])); fiat_p521_mulx_u64(&x893, &x894, x8, (arg1[0])); fiat_p521_addcarryx_u64(&x895, &x896, 0x0, x894, x891); fiat_p521_addcarryx_u64(&x897, &x898, x896, x892, x889); fiat_p521_addcarryx_u64(&x899, &x900, x898, x890, x887); fiat_p521_addcarryx_u64(&x901, &x902, x900, x888, x885); fiat_p521_addcarryx_u64(&x903, &x904, x902, x886, x883); fiat_p521_addcarryx_u64(&x905, &x906, x904, x884, x881); fiat_p521_addcarryx_u64(&x907, &x908, x906, x882, x879); fiat_p521_addcarryx_u64(&x909, &x910, x908, x880, x877); x911 = (x910 + x878); fiat_p521_addcarryx_u64(&x912, &x913, 0x0, x858, x893); fiat_p521_addcarryx_u64(&x914, &x915, x913, x860, x895); fiat_p521_addcarryx_u64(&x916, &x917, x915, x862, x897); fiat_p521_addcarryx_u64(&x918, &x919, x917, x864, x899); fiat_p521_addcarryx_u64(&x920, &x921, x919, x866, x901); fiat_p521_addcarryx_u64(&x922, &x923, x921, x868, x903); fiat_p521_addcarryx_u64(&x924, &x925, x923, x870, x905); fiat_p521_addcarryx_u64(&x926, &x927, x925, x872, x907); fiat_p521_addcarryx_u64(&x928, &x929, x927, x874, x909); fiat_p521_addcarryx_u64(&x930, &x931, x929, x876, x911); fiat_p521_mulx_u64(&x932, &x933, x912, UINT16_C(0x1ff)); fiat_p521_mulx_u64(&x934, &x935, x912, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x936, &x937, x912, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x938, &x939, x912, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x940, &x941, x912, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x942, &x943, x912, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x944, &x945, x912, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x946, &x947, x912, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x948, &x949, x912, UINT64_C(0xffffffffffffffff)); fiat_p521_addcarryx_u64(&x950, &x951, 0x0, x949, x946); fiat_p521_addcarryx_u64(&x952, &x953, x951, x947, x944); fiat_p521_addcarryx_u64(&x954, &x955, x953, x945, x942); fiat_p521_addcarryx_u64(&x956, &x957, x955, x943, x940); fiat_p521_addcarryx_u64(&x958, &x959, x957, x941, x938); fiat_p521_addcarryx_u64(&x960, &x961, x959, x939, x936); fiat_p521_addcarryx_u64(&x962, &x963, x961, x937, x934); fiat_p521_addcarryx_u64(&x964, &x965, x963, x935, x932); x966 = (x965 + x933); fiat_p521_addcarryx_u64(&x967, &x968, 0x0, x912, x948); fiat_p521_addcarryx_u64(&x969, &x970, x968, x914, x950); fiat_p521_addcarryx_u64(&x971, &x972, x970, x916, x952); fiat_p521_addcarryx_u64(&x973, &x974, x972, x918, x954); fiat_p521_addcarryx_u64(&x975, &x976, x974, x920, x956); fiat_p521_addcarryx_u64(&x977, &x978, x976, x922, x958); fiat_p521_addcarryx_u64(&x979, &x980, x978, x924, x960); fiat_p521_addcarryx_u64(&x981, &x982, x980, x926, x962); fiat_p521_addcarryx_u64(&x983, &x984, x982, x928, x964); fiat_p521_addcarryx_u64(&x985, &x986, x984, x930, x966); x987 = ((uint64_t)x986 + x931); fiat_p521_subborrowx_u64(&x988, &x989, 0x0, x969, UINT64_C(0xffffffffffffffff)); fiat_p521_subborrowx_u64(&x990, &x991, x989, x971, UINT64_C(0xffffffffffffffff)); fiat_p521_subborrowx_u64(&x992, &x993, x991, x973, UINT64_C(0xffffffffffffffff)); fiat_p521_subborrowx_u64(&x994, &x995, x993, x975, UINT64_C(0xffffffffffffffff)); fiat_p521_subborrowx_u64(&x996, &x997, x995, x977, UINT64_C(0xffffffffffffffff)); fiat_p521_subborrowx_u64(&x998, &x999, x997, x979, UINT64_C(0xffffffffffffffff)); fiat_p521_subborrowx_u64(&x1000, &x1001, x999, x981, UINT64_C(0xffffffffffffffff)); fiat_p521_subborrowx_u64(&x1002, &x1003, x1001, x983, UINT64_C(0xffffffffffffffff)); fiat_p521_subborrowx_u64(&x1004, &x1005, x1003, x985, UINT16_C(0x1ff)); fiat_p521_subborrowx_u64(&x1006, &x1007, x1005, x987, 0x0); fiat_p521_cmovznz_u64(&x1008, x1007, x988, x969); fiat_p521_cmovznz_u64(&x1009, x1007, x990, x971); fiat_p521_cmovznz_u64(&x1010, x1007, x992, x973); fiat_p521_cmovznz_u64(&x1011, x1007, x994, x975); fiat_p521_cmovznz_u64(&x1012, x1007, x996, x977); fiat_p521_cmovznz_u64(&x1013, x1007, x998, x979); fiat_p521_cmovznz_u64(&x1014, x1007, x1000, x981); fiat_p521_cmovznz_u64(&x1015, x1007, x1002, x983); fiat_p521_cmovznz_u64(&x1016, x1007, x1004, x985); out1[0] = x1008; out1[1] = x1009; out1[2] = x1010; out1[3] = x1011; out1[4] = x1012; out1[5] = x1013; out1[6] = x1014; out1[7] = x1015; out1[8] = x1016; } /* * The function fiat_p521_add adds two field elements in the Montgomery domain. * * Preconditions: * 0 ≤ eval arg1 < m * 0 ≤ eval arg2 < m * Postconditions: * eval (from_montgomery out1) mod m = (eval (from_montgomery arg1) + eval (from_montgomery arg2)) mod m * 0 ≤ eval out1 < m * */ static void fiat_p521_add(fiat_p521_montgomery_domain_field_element out1, const fiat_p521_montgomery_domain_field_element arg1, const fiat_p521_montgomery_domain_field_element arg2) { uint64_t x1; fiat_p521_uint1 x2; uint64_t x3; fiat_p521_uint1 x4; uint64_t x5; fiat_p521_uint1 x6; uint64_t x7; fiat_p521_uint1 x8; uint64_t x9; fiat_p521_uint1 x10; uint64_t x11; fiat_p521_uint1 x12; uint64_t x13; fiat_p521_uint1 x14; uint64_t x15; fiat_p521_uint1 x16; uint64_t x17; fiat_p521_uint1 x18; uint64_t x19; fiat_p521_uint1 x20; uint64_t x21; fiat_p521_uint1 x22; uint64_t x23; fiat_p521_uint1 x24; uint64_t x25; fiat_p521_uint1 x26; uint64_t x27; fiat_p521_uint1 x28; uint64_t x29; fiat_p521_uint1 x30; uint64_t x31; fiat_p521_uint1 x32; uint64_t x33; fiat_p521_uint1 x34; uint64_t x35; fiat_p521_uint1 x36; uint64_t x37; fiat_p521_uint1 x38; uint64_t x39; uint64_t x40; uint64_t x41; uint64_t x42; uint64_t x43; uint64_t x44; uint64_t x45; uint64_t x46; uint64_t x47; fiat_p521_addcarryx_u64(&x1, &x2, 0x0, (arg1[0]), (arg2[0])); fiat_p521_addcarryx_u64(&x3, &x4, x2, (arg1[1]), (arg2[1])); fiat_p521_addcarryx_u64(&x5, &x6, x4, (arg1[2]), (arg2[2])); fiat_p521_addcarryx_u64(&x7, &x8, x6, (arg1[3]), (arg2[3])); fiat_p521_addcarryx_u64(&x9, &x10, x8, (arg1[4]), (arg2[4])); fiat_p521_addcarryx_u64(&x11, &x12, x10, (arg1[5]), (arg2[5])); fiat_p521_addcarryx_u64(&x13, &x14, x12, (arg1[6]), (arg2[6])); fiat_p521_addcarryx_u64(&x15, &x16, x14, (arg1[7]), (arg2[7])); fiat_p521_addcarryx_u64(&x17, &x18, x16, (arg1[8]), (arg2[8])); fiat_p521_subborrowx_u64(&x19, &x20, 0x0, x1, UINT64_C(0xffffffffffffffff)); fiat_p521_subborrowx_u64(&x21, &x22, x20, x3, UINT64_C(0xffffffffffffffff)); fiat_p521_subborrowx_u64(&x23, &x24, x22, x5, UINT64_C(0xffffffffffffffff)); fiat_p521_subborrowx_u64(&x25, &x26, x24, x7, UINT64_C(0xffffffffffffffff)); fiat_p521_subborrowx_u64(&x27, &x28, x26, x9, UINT64_C(0xffffffffffffffff)); fiat_p521_subborrowx_u64(&x29, &x30, x28, x11, UINT64_C(0xffffffffffffffff)); fiat_p521_subborrowx_u64(&x31, &x32, x30, x13, UINT64_C(0xffffffffffffffff)); fiat_p521_subborrowx_u64(&x33, &x34, x32, x15, UINT64_C(0xffffffffffffffff)); fiat_p521_subborrowx_u64(&x35, &x36, x34, x17, UINT16_C(0x1ff)); fiat_p521_subborrowx_u64(&x37, &x38, x36, x18, 0x0); fiat_p521_cmovznz_u64(&x39, x38, x19, x1); fiat_p521_cmovznz_u64(&x40, x38, x21, x3); fiat_p521_cmovznz_u64(&x41, x38, x23, x5); fiat_p521_cmovznz_u64(&x42, x38, x25, x7); fiat_p521_cmovznz_u64(&x43, x38, x27, x9); fiat_p521_cmovznz_u64(&x44, x38, x29, x11); fiat_p521_cmovznz_u64(&x45, x38, x31, x13); fiat_p521_cmovznz_u64(&x46, x38, x33, x15); fiat_p521_cmovznz_u64(&x47, x38, x35, x17); out1[0] = x39; out1[1] = x40; out1[2] = x41; out1[3] = x42; out1[4] = x43; out1[5] = x44; out1[6] = x45; out1[7] = x46; out1[8] = x47; } /* * The function fiat_p521_sub subtracts two field elements in the Montgomery domain. * * Preconditions: * 0 ≤ eval arg1 < m * 0 ≤ eval arg2 < m * Postconditions: * eval (from_montgomery out1) mod m = (eval (from_montgomery arg1) - eval (from_montgomery arg2)) mod m * 0 ≤ eval out1 < m * */ static void fiat_p521_sub(fiat_p521_montgomery_domain_field_element out1, const fiat_p521_montgomery_domain_field_element arg1, const fiat_p521_montgomery_domain_field_element arg2) { uint64_t x1; fiat_p521_uint1 x2; uint64_t x3; fiat_p521_uint1 x4; uint64_t x5; fiat_p521_uint1 x6; uint64_t x7; fiat_p521_uint1 x8; uint64_t x9; fiat_p521_uint1 x10; uint64_t x11; fiat_p521_uint1 x12; uint64_t x13; fiat_p521_uint1 x14; uint64_t x15; fiat_p521_uint1 x16; uint64_t x17; fiat_p521_uint1 x18; uint64_t x19; uint64_t x20; fiat_p521_uint1 x21; uint64_t x22; fiat_p521_uint1 x23; uint64_t x24; fiat_p521_uint1 x25; uint64_t x26; fiat_p521_uint1 x27; uint64_t x28; fiat_p521_uint1 x29; uint64_t x30; fiat_p521_uint1 x31; uint64_t x32; fiat_p521_uint1 x33; uint64_t x34; fiat_p521_uint1 x35; uint64_t x36; fiat_p521_uint1 x37; fiat_p521_subborrowx_u64(&x1, &x2, 0x0, (arg1[0]), (arg2[0])); fiat_p521_subborrowx_u64(&x3, &x4, x2, (arg1[1]), (arg2[1])); fiat_p521_subborrowx_u64(&x5, &x6, x4, (arg1[2]), (arg2[2])); fiat_p521_subborrowx_u64(&x7, &x8, x6, (arg1[3]), (arg2[3])); fiat_p521_subborrowx_u64(&x9, &x10, x8, (arg1[4]), (arg2[4])); fiat_p521_subborrowx_u64(&x11, &x12, x10, (arg1[5]), (arg2[5])); fiat_p521_subborrowx_u64(&x13, &x14, x12, (arg1[6]), (arg2[6])); fiat_p521_subborrowx_u64(&x15, &x16, x14, (arg1[7]), (arg2[7])); fiat_p521_subborrowx_u64(&x17, &x18, x16, (arg1[8]), (arg2[8])); fiat_p521_cmovznz_u64(&x19, x18, 0x0, UINT64_C(0xffffffffffffffff)); fiat_p521_addcarryx_u64(&x20, &x21, 0x0, x1, x19); fiat_p521_addcarryx_u64(&x22, &x23, x21, x3, x19); fiat_p521_addcarryx_u64(&x24, &x25, x23, x5, x19); fiat_p521_addcarryx_u64(&x26, &x27, x25, x7, x19); fiat_p521_addcarryx_u64(&x28, &x29, x27, x9, x19); fiat_p521_addcarryx_u64(&x30, &x31, x29, x11, x19); fiat_p521_addcarryx_u64(&x32, &x33, x31, x13, x19); fiat_p521_addcarryx_u64(&x34, &x35, x33, x15, x19); fiat_p521_addcarryx_u64(&x36, &x37, x35, x17, (x19 & UINT16_C(0x1ff))); out1[0] = x20; out1[1] = x22; out1[2] = x24; out1[3] = x26; out1[4] = x28; out1[5] = x30; out1[6] = x32; out1[7] = x34; out1[8] = x36; } /* * The function fiat_p521_opp negates a field element in the Montgomery domain. * * Preconditions: * 0 ≤ eval arg1 < m * Postconditions: * eval (from_montgomery out1) mod m = -eval (from_montgomery arg1) mod m * 0 ≤ eval out1 < m * */ static void fiat_p521_opp(fiat_p521_montgomery_domain_field_element out1, const fiat_p521_montgomery_domain_field_element arg1) { uint64_t x1; fiat_p521_uint1 x2; uint64_t x3; fiat_p521_uint1 x4; uint64_t x5; fiat_p521_uint1 x6; uint64_t x7; fiat_p521_uint1 x8; uint64_t x9; fiat_p521_uint1 x10; uint64_t x11; fiat_p521_uint1 x12; uint64_t x13; fiat_p521_uint1 x14; uint64_t x15; fiat_p521_uint1 x16; uint64_t x17; fiat_p521_uint1 x18; uint64_t x19; uint64_t x20; fiat_p521_uint1 x21; uint64_t x22; fiat_p521_uint1 x23; uint64_t x24; fiat_p521_uint1 x25; uint64_t x26; fiat_p521_uint1 x27; uint64_t x28; fiat_p521_uint1 x29; uint64_t x30; fiat_p521_uint1 x31; uint64_t x32; fiat_p521_uint1 x33; uint64_t x34; fiat_p521_uint1 x35; uint64_t x36; fiat_p521_uint1 x37; fiat_p521_subborrowx_u64(&x1, &x2, 0x0, 0x0, (arg1[0])); fiat_p521_subborrowx_u64(&x3, &x4, x2, 0x0, (arg1[1])); fiat_p521_subborrowx_u64(&x5, &x6, x4, 0x0, (arg1[2])); fiat_p521_subborrowx_u64(&x7, &x8, x6, 0x0, (arg1[3])); fiat_p521_subborrowx_u64(&x9, &x10, x8, 0x0, (arg1[4])); fiat_p521_subborrowx_u64(&x11, &x12, x10, 0x0, (arg1[5])); fiat_p521_subborrowx_u64(&x13, &x14, x12, 0x0, (arg1[6])); fiat_p521_subborrowx_u64(&x15, &x16, x14, 0x0, (arg1[7])); fiat_p521_subborrowx_u64(&x17, &x18, x16, 0x0, (arg1[8])); fiat_p521_cmovznz_u64(&x19, x18, 0x0, UINT64_C(0xffffffffffffffff)); fiat_p521_addcarryx_u64(&x20, &x21, 0x0, x1, x19); fiat_p521_addcarryx_u64(&x22, &x23, x21, x3, x19); fiat_p521_addcarryx_u64(&x24, &x25, x23, x5, x19); fiat_p521_addcarryx_u64(&x26, &x27, x25, x7, x19); fiat_p521_addcarryx_u64(&x28, &x29, x27, x9, x19); fiat_p521_addcarryx_u64(&x30, &x31, x29, x11, x19); fiat_p521_addcarryx_u64(&x32, &x33, x31, x13, x19); fiat_p521_addcarryx_u64(&x34, &x35, x33, x15, x19); fiat_p521_addcarryx_u64(&x36, &x37, x35, x17, (x19 & UINT16_C(0x1ff))); out1[0] = x20; out1[1] = x22; out1[2] = x24; out1[3] = x26; out1[4] = x28; out1[5] = x30; out1[6] = x32; out1[7] = x34; out1[8] = x36; } /* * The function fiat_p521_from_montgomery translates a field element out of the Montgomery domain. * * Preconditions: * 0 ≤ eval arg1 < m * Postconditions: * eval out1 mod m = (eval arg1 * ((2^64)⁻¹ mod m)^9) mod m * 0 ≤ eval out1 < m * */ static void fiat_p521_from_montgomery(fiat_p521_non_montgomery_domain_field_element out1, const fiat_p521_montgomery_domain_field_element arg1) { uint64_t x1; uint64_t x2; uint64_t x3; uint64_t x4; uint64_t x5; uint64_t x6; uint64_t x7; uint64_t x8; uint64_t x9; uint64_t x10; uint64_t x11; uint64_t x12; uint64_t x13; uint64_t x14; uint64_t x15; uint64_t x16; uint64_t x17; uint64_t x18; uint64_t x19; uint64_t x20; fiat_p521_uint1 x21; uint64_t x22; fiat_p521_uint1 x23; uint64_t x24; fiat_p521_uint1 x25; uint64_t x26; fiat_p521_uint1 x27; uint64_t x28; fiat_p521_uint1 x29; uint64_t x30; fiat_p521_uint1 x31; uint64_t x32; fiat_p521_uint1 x33; uint64_t x34; fiat_p521_uint1 x35; uint64_t x36; fiat_p521_uint1 x37; uint64_t x38; fiat_p521_uint1 x39; uint64_t x40; fiat_p521_uint1 x41; uint64_t x42; fiat_p521_uint1 x43; uint64_t x44; fiat_p521_uint1 x45; uint64_t x46; fiat_p521_uint1 x47; uint64_t x48; fiat_p521_uint1 x49; uint64_t x50; fiat_p521_uint1 x51; uint64_t x52; fiat_p521_uint1 x53; uint64_t x54; fiat_p521_uint1 x55; uint64_t x56; fiat_p521_uint1 x57; uint64_t x58; fiat_p521_uint1 x59; uint64_t x60; fiat_p521_uint1 x61; uint64_t x62; fiat_p521_uint1 x63; uint64_t x64; fiat_p521_uint1 x65; uint64_t x66; fiat_p521_uint1 x67; uint64_t x68; fiat_p521_uint1 x69; uint64_t x70; uint64_t x71; uint64_t x72; uint64_t x73; uint64_t x74; uint64_t x75; uint64_t x76; uint64_t x77; uint64_t x78; uint64_t x79; uint64_t x80; uint64_t x81; uint64_t x82; uint64_t x83; uint64_t x84; uint64_t x85; uint64_t x86; uint64_t x87; uint64_t x88; fiat_p521_uint1 x89; uint64_t x90; fiat_p521_uint1 x91; uint64_t x92; fiat_p521_uint1 x93; uint64_t x94; fiat_p521_uint1 x95; uint64_t x96; fiat_p521_uint1 x97; uint64_t x98; fiat_p521_uint1 x99; uint64_t x100; fiat_p521_uint1 x101; uint64_t x102; fiat_p521_uint1 x103; uint64_t x104; fiat_p521_uint1 x105; uint64_t x106; fiat_p521_uint1 x107; uint64_t x108; fiat_p521_uint1 x109; uint64_t x110; fiat_p521_uint1 x111; uint64_t x112; fiat_p521_uint1 x113; uint64_t x114; fiat_p521_uint1 x115; uint64_t x116; fiat_p521_uint1 x117; uint64_t x118; fiat_p521_uint1 x119; uint64_t x120; fiat_p521_uint1 x121; uint64_t x122; fiat_p521_uint1 x123; uint64_t x124; fiat_p521_uint1 x125; uint64_t x126; fiat_p521_uint1 x127; uint64_t x128; fiat_p521_uint1 x129; uint64_t x130; fiat_p521_uint1 x131; uint64_t x132; fiat_p521_uint1 x133; uint64_t x134; fiat_p521_uint1 x135; uint64_t x136; fiat_p521_uint1 x137; uint64_t x138; uint64_t x139; uint64_t x140; uint64_t x141; uint64_t x142; uint64_t x143; uint64_t x144; uint64_t x145; uint64_t x146; uint64_t x147; uint64_t x148; uint64_t x149; uint64_t x150; uint64_t x151; uint64_t x152; uint64_t x153; uint64_t x154; uint64_t x155; uint64_t x156; fiat_p521_uint1 x157; uint64_t x158; fiat_p521_uint1 x159; uint64_t x160; fiat_p521_uint1 x161; uint64_t x162; fiat_p521_uint1 x163; uint64_t x164; fiat_p521_uint1 x165; uint64_t x166; fiat_p521_uint1 x167; uint64_t x168; fiat_p521_uint1 x169; uint64_t x170; fiat_p521_uint1 x171; uint64_t x172; fiat_p521_uint1 x173; uint64_t x174; fiat_p521_uint1 x175; uint64_t x176; fiat_p521_uint1 x177; uint64_t x178; fiat_p521_uint1 x179; uint64_t x180; fiat_p521_uint1 x181; uint64_t x182; fiat_p521_uint1 x183; uint64_t x184; fiat_p521_uint1 x185; uint64_t x186; fiat_p521_uint1 x187; uint64_t x188; fiat_p521_uint1 x189; uint64_t x190; fiat_p521_uint1 x191; uint64_t x192; fiat_p521_uint1 x193; uint64_t x194; fiat_p521_uint1 x195; uint64_t x196; fiat_p521_uint1 x197; uint64_t x198; fiat_p521_uint1 x199; uint64_t x200; fiat_p521_uint1 x201; uint64_t x202; fiat_p521_uint1 x203; uint64_t x204; fiat_p521_uint1 x205; uint64_t x206; uint64_t x207; uint64_t x208; uint64_t x209; uint64_t x210; uint64_t x211; uint64_t x212; uint64_t x213; uint64_t x214; uint64_t x215; uint64_t x216; uint64_t x217; uint64_t x218; uint64_t x219; uint64_t x220; uint64_t x221; uint64_t x222; uint64_t x223; uint64_t x224; fiat_p521_uint1 x225; uint64_t x226; fiat_p521_uint1 x227; uint64_t x228; fiat_p521_uint1 x229; uint64_t x230; fiat_p521_uint1 x231; uint64_t x232; fiat_p521_uint1 x233; uint64_t x234; fiat_p521_uint1 x235; uint64_t x236; fiat_p521_uint1 x237; uint64_t x238; fiat_p521_uint1 x239; uint64_t x240; fiat_p521_uint1 x241; uint64_t x242; fiat_p521_uint1 x243; uint64_t x244; fiat_p521_uint1 x245; uint64_t x246; fiat_p521_uint1 x247; uint64_t x248; fiat_p521_uint1 x249; uint64_t x250; fiat_p521_uint1 x251; uint64_t x252; fiat_p521_uint1 x253; uint64_t x254; fiat_p521_uint1 x255; uint64_t x256; fiat_p521_uint1 x257; uint64_t x258; fiat_p521_uint1 x259; uint64_t x260; fiat_p521_uint1 x261; uint64_t x262; fiat_p521_uint1 x263; uint64_t x264; fiat_p521_uint1 x265; uint64_t x266; fiat_p521_uint1 x267; uint64_t x268; fiat_p521_uint1 x269; uint64_t x270; fiat_p521_uint1 x271; uint64_t x272; fiat_p521_uint1 x273; uint64_t x274; uint64_t x275; uint64_t x276; uint64_t x277; uint64_t x278; uint64_t x279; uint64_t x280; uint64_t x281; uint64_t x282; uint64_t x283; uint64_t x284; uint64_t x285; uint64_t x286; uint64_t x287; uint64_t x288; uint64_t x289; uint64_t x290; uint64_t x291; uint64_t x292; fiat_p521_uint1 x293; uint64_t x294; fiat_p521_uint1 x295; uint64_t x296; fiat_p521_uint1 x297; uint64_t x298; fiat_p521_uint1 x299; uint64_t x300; fiat_p521_uint1 x301; uint64_t x302; fiat_p521_uint1 x303; uint64_t x304; fiat_p521_uint1 x305; uint64_t x306; fiat_p521_uint1 x307; uint64_t x308; fiat_p521_uint1 x309; uint64_t x310; fiat_p521_uint1 x311; uint64_t x312; fiat_p521_uint1 x313; uint64_t x314; fiat_p521_uint1 x315; uint64_t x316; fiat_p521_uint1 x317; uint64_t x318; fiat_p521_uint1 x319; uint64_t x320; fiat_p521_uint1 x321; uint64_t x322; fiat_p521_uint1 x323; uint64_t x324; fiat_p521_uint1 x325; uint64_t x326; fiat_p521_uint1 x327; uint64_t x328; fiat_p521_uint1 x329; uint64_t x330; fiat_p521_uint1 x331; uint64_t x332; fiat_p521_uint1 x333; uint64_t x334; fiat_p521_uint1 x335; uint64_t x336; fiat_p521_uint1 x337; uint64_t x338; fiat_p521_uint1 x339; uint64_t x340; fiat_p521_uint1 x341; uint64_t x342; uint64_t x343; uint64_t x344; uint64_t x345; uint64_t x346; uint64_t x347; uint64_t x348; uint64_t x349; uint64_t x350; uint64_t x351; uint64_t x352; uint64_t x353; uint64_t x354; uint64_t x355; uint64_t x356; uint64_t x357; uint64_t x358; uint64_t x359; uint64_t x360; fiat_p521_uint1 x361; uint64_t x362; fiat_p521_uint1 x363; uint64_t x364; fiat_p521_uint1 x365; uint64_t x366; fiat_p521_uint1 x367; uint64_t x368; fiat_p521_uint1 x369; uint64_t x370; fiat_p521_uint1 x371; uint64_t x372; fiat_p521_uint1 x373; uint64_t x374; fiat_p521_uint1 x375; uint64_t x376; fiat_p521_uint1 x377; uint64_t x378; fiat_p521_uint1 x379; uint64_t x380; fiat_p521_uint1 x381; uint64_t x382; fiat_p521_uint1 x383; uint64_t x384; fiat_p521_uint1 x385; uint64_t x386; fiat_p521_uint1 x387; uint64_t x388; fiat_p521_uint1 x389; uint64_t x390; fiat_p521_uint1 x391; uint64_t x392; fiat_p521_uint1 x393; uint64_t x394; fiat_p521_uint1 x395; uint64_t x396; fiat_p521_uint1 x397; uint64_t x398; fiat_p521_uint1 x399; uint64_t x400; fiat_p521_uint1 x401; uint64_t x402; fiat_p521_uint1 x403; uint64_t x404; fiat_p521_uint1 x405; uint64_t x406; fiat_p521_uint1 x407; uint64_t x408; fiat_p521_uint1 x409; uint64_t x410; uint64_t x411; uint64_t x412; uint64_t x413; uint64_t x414; uint64_t x415; uint64_t x416; uint64_t x417; uint64_t x418; uint64_t x419; uint64_t x420; uint64_t x421; uint64_t x422; uint64_t x423; uint64_t x424; uint64_t x425; uint64_t x426; uint64_t x427; uint64_t x428; fiat_p521_uint1 x429; uint64_t x430; fiat_p521_uint1 x431; uint64_t x432; fiat_p521_uint1 x433; uint64_t x434; fiat_p521_uint1 x435; uint64_t x436; fiat_p521_uint1 x437; uint64_t x438; fiat_p521_uint1 x439; uint64_t x440; fiat_p521_uint1 x441; uint64_t x442; fiat_p521_uint1 x443; uint64_t x444; fiat_p521_uint1 x445; uint64_t x446; fiat_p521_uint1 x447; uint64_t x448; fiat_p521_uint1 x449; uint64_t x450; fiat_p521_uint1 x451; uint64_t x452; fiat_p521_uint1 x453; uint64_t x454; fiat_p521_uint1 x455; uint64_t x456; fiat_p521_uint1 x457; uint64_t x458; fiat_p521_uint1 x459; uint64_t x460; fiat_p521_uint1 x461; uint64_t x462; fiat_p521_uint1 x463; uint64_t x464; fiat_p521_uint1 x465; uint64_t x466; fiat_p521_uint1 x467; uint64_t x468; fiat_p521_uint1 x469; uint64_t x470; fiat_p521_uint1 x471; uint64_t x472; fiat_p521_uint1 x473; uint64_t x474; fiat_p521_uint1 x475; uint64_t x476; fiat_p521_uint1 x477; uint64_t x478; uint64_t x479; uint64_t x480; uint64_t x481; uint64_t x482; uint64_t x483; uint64_t x484; uint64_t x485; uint64_t x486; uint64_t x487; uint64_t x488; uint64_t x489; uint64_t x490; uint64_t x491; uint64_t x492; uint64_t x493; uint64_t x494; uint64_t x495; uint64_t x496; fiat_p521_uint1 x497; uint64_t x498; fiat_p521_uint1 x499; uint64_t x500; fiat_p521_uint1 x501; uint64_t x502; fiat_p521_uint1 x503; uint64_t x504; fiat_p521_uint1 x505; uint64_t x506; fiat_p521_uint1 x507; uint64_t x508; fiat_p521_uint1 x509; uint64_t x510; fiat_p521_uint1 x511; uint64_t x512; fiat_p521_uint1 x513; uint64_t x514; fiat_p521_uint1 x515; uint64_t x516; fiat_p521_uint1 x517; uint64_t x518; fiat_p521_uint1 x519; uint64_t x520; fiat_p521_uint1 x521; uint64_t x522; fiat_p521_uint1 x523; uint64_t x524; fiat_p521_uint1 x525; uint64_t x526; fiat_p521_uint1 x527; uint64_t x528; fiat_p521_uint1 x529; uint64_t x530; fiat_p521_uint1 x531; uint64_t x532; fiat_p521_uint1 x533; uint64_t x534; fiat_p521_uint1 x535; uint64_t x536; fiat_p521_uint1 x537; uint64_t x538; fiat_p521_uint1 x539; uint64_t x540; fiat_p521_uint1 x541; uint64_t x542; fiat_p521_uint1 x543; uint64_t x544; fiat_p521_uint1 x545; uint64_t x546; uint64_t x547; uint64_t x548; uint64_t x549; uint64_t x550; uint64_t x551; uint64_t x552; uint64_t x553; uint64_t x554; uint64_t x555; uint64_t x556; uint64_t x557; uint64_t x558; uint64_t x559; uint64_t x560; uint64_t x561; uint64_t x562; uint64_t x563; uint64_t x564; fiat_p521_uint1 x565; uint64_t x566; fiat_p521_uint1 x567; uint64_t x568; fiat_p521_uint1 x569; uint64_t x570; fiat_p521_uint1 x571; uint64_t x572; fiat_p521_uint1 x573; uint64_t x574; fiat_p521_uint1 x575; uint64_t x576; fiat_p521_uint1 x577; uint64_t x578; fiat_p521_uint1 x579; uint64_t x580; fiat_p521_uint1 x581; uint64_t x582; fiat_p521_uint1 x583; uint64_t x584; fiat_p521_uint1 x585; uint64_t x586; fiat_p521_uint1 x587; uint64_t x588; fiat_p521_uint1 x589; uint64_t x590; fiat_p521_uint1 x591; uint64_t x592; fiat_p521_uint1 x593; uint64_t x594; fiat_p521_uint1 x595; uint64_t x596; fiat_p521_uint1 x597; uint64_t x598; uint64_t x599; fiat_p521_uint1 x600; uint64_t x601; fiat_p521_uint1 x602; uint64_t x603; fiat_p521_uint1 x604; uint64_t x605; fiat_p521_uint1 x606; uint64_t x607; fiat_p521_uint1 x608; uint64_t x609; fiat_p521_uint1 x610; uint64_t x611; fiat_p521_uint1 x612; uint64_t x613; fiat_p521_uint1 x614; uint64_t x615; fiat_p521_uint1 x616; uint64_t x617; fiat_p521_uint1 x618; uint64_t x619; uint64_t x620; uint64_t x621; uint64_t x622; uint64_t x623; uint64_t x624; uint64_t x625; uint64_t x626; uint64_t x627; x1 = (arg1[0]); fiat_p521_mulx_u64(&x2, &x3, x1, UINT16_C(0x1ff)); fiat_p521_mulx_u64(&x4, &x5, x1, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x6, &x7, x1, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x8, &x9, x1, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x10, &x11, x1, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x12, &x13, x1, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x14, &x15, x1, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x16, &x17, x1, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x18, &x19, x1, UINT64_C(0xffffffffffffffff)); fiat_p521_addcarryx_u64(&x20, &x21, 0x0, x19, x16); fiat_p521_addcarryx_u64(&x22, &x23, x21, x17, x14); fiat_p521_addcarryx_u64(&x24, &x25, x23, x15, x12); fiat_p521_addcarryx_u64(&x26, &x27, x25, x13, x10); fiat_p521_addcarryx_u64(&x28, &x29, x27, x11, x8); fiat_p521_addcarryx_u64(&x30, &x31, x29, x9, x6); fiat_p521_addcarryx_u64(&x32, &x33, x31, x7, x4); fiat_p521_addcarryx_u64(&x34, &x35, x33, x5, x2); fiat_p521_addcarryx_u64(&x36, &x37, 0x0, x1, x18); fiat_p521_addcarryx_u64(&x38, &x39, x37, 0x0, x20); fiat_p521_addcarryx_u64(&x40, &x41, x39, 0x0, x22); fiat_p521_addcarryx_u64(&x42, &x43, x41, 0x0, x24); fiat_p521_addcarryx_u64(&x44, &x45, x43, 0x0, x26); fiat_p521_addcarryx_u64(&x46, &x47, x45, 0x0, x28); fiat_p521_addcarryx_u64(&x48, &x49, x47, 0x0, x30); fiat_p521_addcarryx_u64(&x50, &x51, x49, 0x0, x32); fiat_p521_addcarryx_u64(&x52, &x53, x51, 0x0, x34); fiat_p521_addcarryx_u64(&x54, &x55, 0x0, x38, (arg1[1])); fiat_p521_addcarryx_u64(&x56, &x57, x55, x40, 0x0); fiat_p521_addcarryx_u64(&x58, &x59, x57, x42, 0x0); fiat_p521_addcarryx_u64(&x60, &x61, x59, x44, 0x0); fiat_p521_addcarryx_u64(&x62, &x63, x61, x46, 0x0); fiat_p521_addcarryx_u64(&x64, &x65, x63, x48, 0x0); fiat_p521_addcarryx_u64(&x66, &x67, x65, x50, 0x0); fiat_p521_addcarryx_u64(&x68, &x69, x67, x52, 0x0); fiat_p521_mulx_u64(&x70, &x71, x54, UINT16_C(0x1ff)); fiat_p521_mulx_u64(&x72, &x73, x54, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x74, &x75, x54, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x76, &x77, x54, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x78, &x79, x54, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x80, &x81, x54, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x82, &x83, x54, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x84, &x85, x54, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x86, &x87, x54, UINT64_C(0xffffffffffffffff)); fiat_p521_addcarryx_u64(&x88, &x89, 0x0, x87, x84); fiat_p521_addcarryx_u64(&x90, &x91, x89, x85, x82); fiat_p521_addcarryx_u64(&x92, &x93, x91, x83, x80); fiat_p521_addcarryx_u64(&x94, &x95, x93, x81, x78); fiat_p521_addcarryx_u64(&x96, &x97, x95, x79, x76); fiat_p521_addcarryx_u64(&x98, &x99, x97, x77, x74); fiat_p521_addcarryx_u64(&x100, &x101, x99, x75, x72); fiat_p521_addcarryx_u64(&x102, &x103, x101, x73, x70); fiat_p521_addcarryx_u64(&x104, &x105, 0x0, x54, x86); fiat_p521_addcarryx_u64(&x106, &x107, x105, x56, x88); fiat_p521_addcarryx_u64(&x108, &x109, x107, x58, x90); fiat_p521_addcarryx_u64(&x110, &x111, x109, x60, x92); fiat_p521_addcarryx_u64(&x112, &x113, x111, x62, x94); fiat_p521_addcarryx_u64(&x114, &x115, x113, x64, x96); fiat_p521_addcarryx_u64(&x116, &x117, x115, x66, x98); fiat_p521_addcarryx_u64(&x118, &x119, x117, x68, x100); fiat_p521_addcarryx_u64(&x120, &x121, x119, (x69 + (x53 + (x35 + x3))), x102); fiat_p521_addcarryx_u64(&x122, &x123, 0x0, x106, (arg1[2])); fiat_p521_addcarryx_u64(&x124, &x125, x123, x108, 0x0); fiat_p521_addcarryx_u64(&x126, &x127, x125, x110, 0x0); fiat_p521_addcarryx_u64(&x128, &x129, x127, x112, 0x0); fiat_p521_addcarryx_u64(&x130, &x131, x129, x114, 0x0); fiat_p521_addcarryx_u64(&x132, &x133, x131, x116, 0x0); fiat_p521_addcarryx_u64(&x134, &x135, x133, x118, 0x0); fiat_p521_addcarryx_u64(&x136, &x137, x135, x120, 0x0); fiat_p521_mulx_u64(&x138, &x139, x122, UINT16_C(0x1ff)); fiat_p521_mulx_u64(&x140, &x141, x122, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x142, &x143, x122, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x144, &x145, x122, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x146, &x147, x122, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x148, &x149, x122, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x150, &x151, x122, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x152, &x153, x122, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x154, &x155, x122, UINT64_C(0xffffffffffffffff)); fiat_p521_addcarryx_u64(&x156, &x157, 0x0, x155, x152); fiat_p521_addcarryx_u64(&x158, &x159, x157, x153, x150); fiat_p521_addcarryx_u64(&x160, &x161, x159, x151, x148); fiat_p521_addcarryx_u64(&x162, &x163, x161, x149, x146); fiat_p521_addcarryx_u64(&x164, &x165, x163, x147, x144); fiat_p521_addcarryx_u64(&x166, &x167, x165, x145, x142); fiat_p521_addcarryx_u64(&x168, &x169, x167, x143, x140); fiat_p521_addcarryx_u64(&x170, &x171, x169, x141, x138); fiat_p521_addcarryx_u64(&x172, &x173, 0x0, x122, x154); fiat_p521_addcarryx_u64(&x174, &x175, x173, x124, x156); fiat_p521_addcarryx_u64(&x176, &x177, x175, x126, x158); fiat_p521_addcarryx_u64(&x178, &x179, x177, x128, x160); fiat_p521_addcarryx_u64(&x180, &x181, x179, x130, x162); fiat_p521_addcarryx_u64(&x182, &x183, x181, x132, x164); fiat_p521_addcarryx_u64(&x184, &x185, x183, x134, x166); fiat_p521_addcarryx_u64(&x186, &x187, x185, x136, x168); fiat_p521_addcarryx_u64(&x188, &x189, x187, (x137 + (x121 + (x103 + x71))), x170); fiat_p521_addcarryx_u64(&x190, &x191, 0x0, x174, (arg1[3])); fiat_p521_addcarryx_u64(&x192, &x193, x191, x176, 0x0); fiat_p521_addcarryx_u64(&x194, &x195, x193, x178, 0x0); fiat_p521_addcarryx_u64(&x196, &x197, x195, x180, 0x0); fiat_p521_addcarryx_u64(&x198, &x199, x197, x182, 0x0); fiat_p521_addcarryx_u64(&x200, &x201, x199, x184, 0x0); fiat_p521_addcarryx_u64(&x202, &x203, x201, x186, 0x0); fiat_p521_addcarryx_u64(&x204, &x205, x203, x188, 0x0); fiat_p521_mulx_u64(&x206, &x207, x190, UINT16_C(0x1ff)); fiat_p521_mulx_u64(&x208, &x209, x190, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x210, &x211, x190, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x212, &x213, x190, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x214, &x215, x190, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x216, &x217, x190, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x218, &x219, x190, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x220, &x221, x190, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x222, &x223, x190, UINT64_C(0xffffffffffffffff)); fiat_p521_addcarryx_u64(&x224, &x225, 0x0, x223, x220); fiat_p521_addcarryx_u64(&x226, &x227, x225, x221, x218); fiat_p521_addcarryx_u64(&x228, &x229, x227, x219, x216); fiat_p521_addcarryx_u64(&x230, &x231, x229, x217, x214); fiat_p521_addcarryx_u64(&x232, &x233, x231, x215, x212); fiat_p521_addcarryx_u64(&x234, &x235, x233, x213, x210); fiat_p521_addcarryx_u64(&x236, &x237, x235, x211, x208); fiat_p521_addcarryx_u64(&x238, &x239, x237, x209, x206); fiat_p521_addcarryx_u64(&x240, &x241, 0x0, x190, x222); fiat_p521_addcarryx_u64(&x242, &x243, x241, x192, x224); fiat_p521_addcarryx_u64(&x244, &x245, x243, x194, x226); fiat_p521_addcarryx_u64(&x246, &x247, x245, x196, x228); fiat_p521_addcarryx_u64(&x248, &x249, x247, x198, x230); fiat_p521_addcarryx_u64(&x250, &x251, x249, x200, x232); fiat_p521_addcarryx_u64(&x252, &x253, x251, x202, x234); fiat_p521_addcarryx_u64(&x254, &x255, x253, x204, x236); fiat_p521_addcarryx_u64(&x256, &x257, x255, (x205 + (x189 + (x171 + x139))), x238); fiat_p521_addcarryx_u64(&x258, &x259, 0x0, x242, (arg1[4])); fiat_p521_addcarryx_u64(&x260, &x261, x259, x244, 0x0); fiat_p521_addcarryx_u64(&x262, &x263, x261, x246, 0x0); fiat_p521_addcarryx_u64(&x264, &x265, x263, x248, 0x0); fiat_p521_addcarryx_u64(&x266, &x267, x265, x250, 0x0); fiat_p521_addcarryx_u64(&x268, &x269, x267, x252, 0x0); fiat_p521_addcarryx_u64(&x270, &x271, x269, x254, 0x0); fiat_p521_addcarryx_u64(&x272, &x273, x271, x256, 0x0); fiat_p521_mulx_u64(&x274, &x275, x258, UINT16_C(0x1ff)); fiat_p521_mulx_u64(&x276, &x277, x258, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x278, &x279, x258, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x280, &x281, x258, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x282, &x283, x258, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x284, &x285, x258, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x286, &x287, x258, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x288, &x289, x258, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x290, &x291, x258, UINT64_C(0xffffffffffffffff)); fiat_p521_addcarryx_u64(&x292, &x293, 0x0, x291, x288); fiat_p521_addcarryx_u64(&x294, &x295, x293, x289, x286); fiat_p521_addcarryx_u64(&x296, &x297, x295, x287, x284); fiat_p521_addcarryx_u64(&x298, &x299, x297, x285, x282); fiat_p521_addcarryx_u64(&x300, &x301, x299, x283, x280); fiat_p521_addcarryx_u64(&x302, &x303, x301, x281, x278); fiat_p521_addcarryx_u64(&x304, &x305, x303, x279, x276); fiat_p521_addcarryx_u64(&x306, &x307, x305, x277, x274); fiat_p521_addcarryx_u64(&x308, &x309, 0x0, x258, x290); fiat_p521_addcarryx_u64(&x310, &x311, x309, x260, x292); fiat_p521_addcarryx_u64(&x312, &x313, x311, x262, x294); fiat_p521_addcarryx_u64(&x314, &x315, x313, x264, x296); fiat_p521_addcarryx_u64(&x316, &x317, x315, x266, x298); fiat_p521_addcarryx_u64(&x318, &x319, x317, x268, x300); fiat_p521_addcarryx_u64(&x320, &x321, x319, x270, x302); fiat_p521_addcarryx_u64(&x322, &x323, x321, x272, x304); fiat_p521_addcarryx_u64(&x324, &x325, x323, (x273 + (x257 + (x239 + x207))), x306); fiat_p521_addcarryx_u64(&x326, &x327, 0x0, x310, (arg1[5])); fiat_p521_addcarryx_u64(&x328, &x329, x327, x312, 0x0); fiat_p521_addcarryx_u64(&x330, &x331, x329, x314, 0x0); fiat_p521_addcarryx_u64(&x332, &x333, x331, x316, 0x0); fiat_p521_addcarryx_u64(&x334, &x335, x333, x318, 0x0); fiat_p521_addcarryx_u64(&x336, &x337, x335, x320, 0x0); fiat_p521_addcarryx_u64(&x338, &x339, x337, x322, 0x0); fiat_p521_addcarryx_u64(&x340, &x341, x339, x324, 0x0); fiat_p521_mulx_u64(&x342, &x343, x326, UINT16_C(0x1ff)); fiat_p521_mulx_u64(&x344, &x345, x326, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x346, &x347, x326, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x348, &x349, x326, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x350, &x351, x326, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x352, &x353, x326, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x354, &x355, x326, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x356, &x357, x326, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x358, &x359, x326, UINT64_C(0xffffffffffffffff)); fiat_p521_addcarryx_u64(&x360, &x361, 0x0, x359, x356); fiat_p521_addcarryx_u64(&x362, &x363, x361, x357, x354); fiat_p521_addcarryx_u64(&x364, &x365, x363, x355, x352); fiat_p521_addcarryx_u64(&x366, &x367, x365, x353, x350); fiat_p521_addcarryx_u64(&x368, &x369, x367, x351, x348); fiat_p521_addcarryx_u64(&x370, &x371, x369, x349, x346); fiat_p521_addcarryx_u64(&x372, &x373, x371, x347, x344); fiat_p521_addcarryx_u64(&x374, &x375, x373, x345, x342); fiat_p521_addcarryx_u64(&x376, &x377, 0x0, x326, x358); fiat_p521_addcarryx_u64(&x378, &x379, x377, x328, x360); fiat_p521_addcarryx_u64(&x380, &x381, x379, x330, x362); fiat_p521_addcarryx_u64(&x382, &x383, x381, x332, x364); fiat_p521_addcarryx_u64(&x384, &x385, x383, x334, x366); fiat_p521_addcarryx_u64(&x386, &x387, x385, x336, x368); fiat_p521_addcarryx_u64(&x388, &x389, x387, x338, x370); fiat_p521_addcarryx_u64(&x390, &x391, x389, x340, x372); fiat_p521_addcarryx_u64(&x392, &x393, x391, (x341 + (x325 + (x307 + x275))), x374); fiat_p521_addcarryx_u64(&x394, &x395, 0x0, x378, (arg1[6])); fiat_p521_addcarryx_u64(&x396, &x397, x395, x380, 0x0); fiat_p521_addcarryx_u64(&x398, &x399, x397, x382, 0x0); fiat_p521_addcarryx_u64(&x400, &x401, x399, x384, 0x0); fiat_p521_addcarryx_u64(&x402, &x403, x401, x386, 0x0); fiat_p521_addcarryx_u64(&x404, &x405, x403, x388, 0x0); fiat_p521_addcarryx_u64(&x406, &x407, x405, x390, 0x0); fiat_p521_addcarryx_u64(&x408, &x409, x407, x392, 0x0); fiat_p521_mulx_u64(&x410, &x411, x394, UINT16_C(0x1ff)); fiat_p521_mulx_u64(&x412, &x413, x394, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x414, &x415, x394, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x416, &x417, x394, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x418, &x419, x394, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x420, &x421, x394, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x422, &x423, x394, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x424, &x425, x394, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x426, &x427, x394, UINT64_C(0xffffffffffffffff)); fiat_p521_addcarryx_u64(&x428, &x429, 0x0, x427, x424); fiat_p521_addcarryx_u64(&x430, &x431, x429, x425, x422); fiat_p521_addcarryx_u64(&x432, &x433, x431, x423, x420); fiat_p521_addcarryx_u64(&x434, &x435, x433, x421, x418); fiat_p521_addcarryx_u64(&x436, &x437, x435, x419, x416); fiat_p521_addcarryx_u64(&x438, &x439, x437, x417, x414); fiat_p521_addcarryx_u64(&x440, &x441, x439, x415, x412); fiat_p521_addcarryx_u64(&x442, &x443, x441, x413, x410); fiat_p521_addcarryx_u64(&x444, &x445, 0x0, x394, x426); fiat_p521_addcarryx_u64(&x446, &x447, x445, x396, x428); fiat_p521_addcarryx_u64(&x448, &x449, x447, x398, x430); fiat_p521_addcarryx_u64(&x450, &x451, x449, x400, x432); fiat_p521_addcarryx_u64(&x452, &x453, x451, x402, x434); fiat_p521_addcarryx_u64(&x454, &x455, x453, x404, x436); fiat_p521_addcarryx_u64(&x456, &x457, x455, x406, x438); fiat_p521_addcarryx_u64(&x458, &x459, x457, x408, x440); fiat_p521_addcarryx_u64(&x460, &x461, x459, (x409 + (x393 + (x375 + x343))), x442); fiat_p521_addcarryx_u64(&x462, &x463, 0x0, x446, (arg1[7])); fiat_p521_addcarryx_u64(&x464, &x465, x463, x448, 0x0); fiat_p521_addcarryx_u64(&x466, &x467, x465, x450, 0x0); fiat_p521_addcarryx_u64(&x468, &x469, x467, x452, 0x0); fiat_p521_addcarryx_u64(&x470, &x471, x469, x454, 0x0); fiat_p521_addcarryx_u64(&x472, &x473, x471, x456, 0x0); fiat_p521_addcarryx_u64(&x474, &x475, x473, x458, 0x0); fiat_p521_addcarryx_u64(&x476, &x477, x475, x460, 0x0); fiat_p521_mulx_u64(&x478, &x479, x462, UINT16_C(0x1ff)); fiat_p521_mulx_u64(&x480, &x481, x462, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x482, &x483, x462, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x484, &x485, x462, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x486, &x487, x462, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x488, &x489, x462, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x490, &x491, x462, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x492, &x493, x462, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x494, &x495, x462, UINT64_C(0xffffffffffffffff)); fiat_p521_addcarryx_u64(&x496, &x497, 0x0, x495, x492); fiat_p521_addcarryx_u64(&x498, &x499, x497, x493, x490); fiat_p521_addcarryx_u64(&x500, &x501, x499, x491, x488); fiat_p521_addcarryx_u64(&x502, &x503, x501, x489, x486); fiat_p521_addcarryx_u64(&x504, &x505, x503, x487, x484); fiat_p521_addcarryx_u64(&x506, &x507, x505, x485, x482); fiat_p521_addcarryx_u64(&x508, &x509, x507, x483, x480); fiat_p521_addcarryx_u64(&x510, &x511, x509, x481, x478); fiat_p521_addcarryx_u64(&x512, &x513, 0x0, x462, x494); fiat_p521_addcarryx_u64(&x514, &x515, x513, x464, x496); fiat_p521_addcarryx_u64(&x516, &x517, x515, x466, x498); fiat_p521_addcarryx_u64(&x518, &x519, x517, x468, x500); fiat_p521_addcarryx_u64(&x520, &x521, x519, x470, x502); fiat_p521_addcarryx_u64(&x522, &x523, x521, x472, x504); fiat_p521_addcarryx_u64(&x524, &x525, x523, x474, x506); fiat_p521_addcarryx_u64(&x526, &x527, x525, x476, x508); fiat_p521_addcarryx_u64(&x528, &x529, x527, (x477 + (x461 + (x443 + x411))), x510); fiat_p521_addcarryx_u64(&x530, &x531, 0x0, x514, (arg1[8])); fiat_p521_addcarryx_u64(&x532, &x533, x531, x516, 0x0); fiat_p521_addcarryx_u64(&x534, &x535, x533, x518, 0x0); fiat_p521_addcarryx_u64(&x536, &x537, x535, x520, 0x0); fiat_p521_addcarryx_u64(&x538, &x539, x537, x522, 0x0); fiat_p521_addcarryx_u64(&x540, &x541, x539, x524, 0x0); fiat_p521_addcarryx_u64(&x542, &x543, x541, x526, 0x0); fiat_p521_addcarryx_u64(&x544, &x545, x543, x528, 0x0); fiat_p521_mulx_u64(&x546, &x547, x530, UINT16_C(0x1ff)); fiat_p521_mulx_u64(&x548, &x549, x530, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x550, &x551, x530, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x552, &x553, x530, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x554, &x555, x530, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x556, &x557, x530, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x558, &x559, x530, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x560, &x561, x530, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x562, &x563, x530, UINT64_C(0xffffffffffffffff)); fiat_p521_addcarryx_u64(&x564, &x565, 0x0, x563, x560); fiat_p521_addcarryx_u64(&x566, &x567, x565, x561, x558); fiat_p521_addcarryx_u64(&x568, &x569, x567, x559, x556); fiat_p521_addcarryx_u64(&x570, &x571, x569, x557, x554); fiat_p521_addcarryx_u64(&x572, &x573, x571, x555, x552); fiat_p521_addcarryx_u64(&x574, &x575, x573, x553, x550); fiat_p521_addcarryx_u64(&x576, &x577, x575, x551, x548); fiat_p521_addcarryx_u64(&x578, &x579, x577, x549, x546); fiat_p521_addcarryx_u64(&x580, &x581, 0x0, x530, x562); fiat_p521_addcarryx_u64(&x582, &x583, x581, x532, x564); fiat_p521_addcarryx_u64(&x584, &x585, x583, x534, x566); fiat_p521_addcarryx_u64(&x586, &x587, x585, x536, x568); fiat_p521_addcarryx_u64(&x588, &x589, x587, x538, x570); fiat_p521_addcarryx_u64(&x590, &x591, x589, x540, x572); fiat_p521_addcarryx_u64(&x592, &x593, x591, x542, x574); fiat_p521_addcarryx_u64(&x594, &x595, x593, x544, x576); fiat_p521_addcarryx_u64(&x596, &x597, x595, (x545 + (x529 + (x511 + x479))), x578); x598 = (x597 + (x579 + x547)); fiat_p521_subborrowx_u64(&x599, &x600, 0x0, x582, UINT64_C(0xffffffffffffffff)); fiat_p521_subborrowx_u64(&x601, &x602, x600, x584, UINT64_C(0xffffffffffffffff)); fiat_p521_subborrowx_u64(&x603, &x604, x602, x586, UINT64_C(0xffffffffffffffff)); fiat_p521_subborrowx_u64(&x605, &x606, x604, x588, UINT64_C(0xffffffffffffffff)); fiat_p521_subborrowx_u64(&x607, &x608, x606, x590, UINT64_C(0xffffffffffffffff)); fiat_p521_subborrowx_u64(&x609, &x610, x608, x592, UINT64_C(0xffffffffffffffff)); fiat_p521_subborrowx_u64(&x611, &x612, x610, x594, UINT64_C(0xffffffffffffffff)); fiat_p521_subborrowx_u64(&x613, &x614, x612, x596, UINT64_C(0xffffffffffffffff)); fiat_p521_subborrowx_u64(&x615, &x616, x614, x598, UINT16_C(0x1ff)); fiat_p521_subborrowx_u64(&x617, &x618, x616, 0x0, 0x0); fiat_p521_cmovznz_u64(&x619, x618, x599, x582); fiat_p521_cmovznz_u64(&x620, x618, x601, x584); fiat_p521_cmovznz_u64(&x621, x618, x603, x586); fiat_p521_cmovznz_u64(&x622, x618, x605, x588); fiat_p521_cmovznz_u64(&x623, x618, x607, x590); fiat_p521_cmovznz_u64(&x624, x618, x609, x592); fiat_p521_cmovznz_u64(&x625, x618, x611, x594); fiat_p521_cmovznz_u64(&x626, x618, x613, x596); fiat_p521_cmovznz_u64(&x627, x618, x615, x598); out1[0] = x619; out1[1] = x620; out1[2] = x621; out1[3] = x622; out1[4] = x623; out1[5] = x624; out1[6] = x625; out1[7] = x626; out1[8] = x627; } /* * The function fiat_p521_to_montgomery translates a field element into the Montgomery domain. * * Preconditions: * 0 ≤ eval arg1 < m * Postconditions: * eval (from_montgomery out1) mod m = eval arg1 mod m * 0 ≤ eval out1 < m * */ static void fiat_p521_to_montgomery(fiat_p521_montgomery_domain_field_element out1, const fiat_p521_non_montgomery_domain_field_element arg1) { uint64_t x1; uint64_t x2; uint64_t x3; uint64_t x4; uint64_t x5; fiat_p521_uint1 x6; uint64_t x7; uint64_t x8; uint64_t x9; uint64_t x10; uint64_t x11; uint64_t x12; uint64_t x13; uint64_t x14; uint64_t x15; uint64_t x16; uint64_t x17; uint64_t x18; uint64_t x19; uint64_t x20; uint64_t x21; uint64_t x22; uint64_t x23; uint64_t x24; uint64_t x25; fiat_p521_uint1 x26; uint64_t x27; fiat_p521_uint1 x28; uint64_t x29; fiat_p521_uint1 x30; uint64_t x31; fiat_p521_uint1 x32; uint64_t x33; fiat_p521_uint1 x34; uint64_t x35; fiat_p521_uint1 x36; uint64_t x37; fiat_p521_uint1 x38; uint64_t x39; fiat_p521_uint1 x40; uint64_t x41; fiat_p521_uint1 x42; uint64_t x43; fiat_p521_uint1 x44; uint64_t x45; fiat_p521_uint1 x46; uint64_t x47; fiat_p521_uint1 x48; uint64_t x49; fiat_p521_uint1 x50; uint64_t x51; fiat_p521_uint1 x52; uint64_t x53; fiat_p521_uint1 x54; uint64_t x55; fiat_p521_uint1 x56; uint64_t x57; fiat_p521_uint1 x58; uint64_t x59; uint64_t x60; uint64_t x61; fiat_p521_uint1 x62; uint64_t x63; fiat_p521_uint1 x64; uint64_t x65; fiat_p521_uint1 x66; uint64_t x67; fiat_p521_uint1 x68; uint64_t x69; fiat_p521_uint1 x70; uint64_t x71; fiat_p521_uint1 x72; uint64_t x73; fiat_p521_uint1 x74; uint64_t x75; uint64_t x76; uint64_t x77; uint64_t x78; uint64_t x79; uint64_t x80; uint64_t x81; uint64_t x82; uint64_t x83; uint64_t x84; uint64_t x85; uint64_t x86; uint64_t x87; uint64_t x88; uint64_t x89; uint64_t x90; uint64_t x91; uint64_t x92; uint64_t x93; fiat_p521_uint1 x94; uint64_t x95; fiat_p521_uint1 x96; uint64_t x97; fiat_p521_uint1 x98; uint64_t x99; fiat_p521_uint1 x100; uint64_t x101; fiat_p521_uint1 x102; uint64_t x103; fiat_p521_uint1 x104; uint64_t x105; fiat_p521_uint1 x106; uint64_t x107; fiat_p521_uint1 x108; uint64_t x109; fiat_p521_uint1 x110; uint64_t x111; fiat_p521_uint1 x112; uint64_t x113; fiat_p521_uint1 x114; uint64_t x115; fiat_p521_uint1 x116; uint64_t x117; fiat_p521_uint1 x118; uint64_t x119; fiat_p521_uint1 x120; uint64_t x121; fiat_p521_uint1 x122; uint64_t x123; fiat_p521_uint1 x124; uint64_t x125; fiat_p521_uint1 x126; uint64_t x127; uint64_t x128; uint64_t x129; fiat_p521_uint1 x130; uint64_t x131; fiat_p521_uint1 x132; uint64_t x133; fiat_p521_uint1 x134; uint64_t x135; fiat_p521_uint1 x136; uint64_t x137; fiat_p521_uint1 x138; uint64_t x139; fiat_p521_uint1 x140; uint64_t x141; fiat_p521_uint1 x142; uint64_t x143; uint64_t x144; uint64_t x145; uint64_t x146; uint64_t x147; uint64_t x148; uint64_t x149; uint64_t x150; uint64_t x151; uint64_t x152; uint64_t x153; uint64_t x154; uint64_t x155; uint64_t x156; uint64_t x157; uint64_t x158; uint64_t x159; uint64_t x160; uint64_t x161; fiat_p521_uint1 x162; uint64_t x163; fiat_p521_uint1 x164; uint64_t x165; fiat_p521_uint1 x166; uint64_t x167; fiat_p521_uint1 x168; uint64_t x169; fiat_p521_uint1 x170; uint64_t x171; fiat_p521_uint1 x172; uint64_t x173; fiat_p521_uint1 x174; uint64_t x175; fiat_p521_uint1 x176; uint64_t x177; fiat_p521_uint1 x178; uint64_t x179; fiat_p521_uint1 x180; uint64_t x181; fiat_p521_uint1 x182; uint64_t x183; fiat_p521_uint1 x184; uint64_t x185; fiat_p521_uint1 x186; uint64_t x187; fiat_p521_uint1 x188; uint64_t x189; fiat_p521_uint1 x190; uint64_t x191; fiat_p521_uint1 x192; uint64_t x193; fiat_p521_uint1 x194; uint64_t x195; uint64_t x196; uint64_t x197; fiat_p521_uint1 x198; uint64_t x199; fiat_p521_uint1 x200; uint64_t x201; fiat_p521_uint1 x202; uint64_t x203; fiat_p521_uint1 x204; uint64_t x205; fiat_p521_uint1 x206; uint64_t x207; fiat_p521_uint1 x208; uint64_t x209; fiat_p521_uint1 x210; uint64_t x211; uint64_t x212; uint64_t x213; uint64_t x214; uint64_t x215; uint64_t x216; uint64_t x217; uint64_t x218; uint64_t x219; uint64_t x220; uint64_t x221; uint64_t x222; uint64_t x223; uint64_t x224; uint64_t x225; uint64_t x226; uint64_t x227; uint64_t x228; uint64_t x229; fiat_p521_uint1 x230; uint64_t x231; fiat_p521_uint1 x232; uint64_t x233; fiat_p521_uint1 x234; uint64_t x235; fiat_p521_uint1 x236; uint64_t x237; fiat_p521_uint1 x238; uint64_t x239; fiat_p521_uint1 x240; uint64_t x241; fiat_p521_uint1 x242; uint64_t x243; fiat_p521_uint1 x244; uint64_t x245; fiat_p521_uint1 x246; uint64_t x247; fiat_p521_uint1 x248; uint64_t x249; fiat_p521_uint1 x250; uint64_t x251; fiat_p521_uint1 x252; uint64_t x253; fiat_p521_uint1 x254; uint64_t x255; fiat_p521_uint1 x256; uint64_t x257; fiat_p521_uint1 x258; uint64_t x259; fiat_p521_uint1 x260; uint64_t x261; fiat_p521_uint1 x262; uint64_t x263; uint64_t x264; uint64_t x265; fiat_p521_uint1 x266; uint64_t x267; fiat_p521_uint1 x268; uint64_t x269; fiat_p521_uint1 x270; uint64_t x271; fiat_p521_uint1 x272; uint64_t x273; fiat_p521_uint1 x274; uint64_t x275; fiat_p521_uint1 x276; uint64_t x277; fiat_p521_uint1 x278; uint64_t x279; uint64_t x280; uint64_t x281; uint64_t x282; uint64_t x283; uint64_t x284; uint64_t x285; uint64_t x286; uint64_t x287; uint64_t x288; uint64_t x289; uint64_t x290; uint64_t x291; uint64_t x292; uint64_t x293; uint64_t x294; uint64_t x295; uint64_t x296; uint64_t x297; fiat_p521_uint1 x298; uint64_t x299; fiat_p521_uint1 x300; uint64_t x301; fiat_p521_uint1 x302; uint64_t x303; fiat_p521_uint1 x304; uint64_t x305; fiat_p521_uint1 x306; uint64_t x307; fiat_p521_uint1 x308; uint64_t x309; fiat_p521_uint1 x310; uint64_t x311; fiat_p521_uint1 x312; uint64_t x313; fiat_p521_uint1 x314; uint64_t x315; fiat_p521_uint1 x316; uint64_t x317; fiat_p521_uint1 x318; uint64_t x319; fiat_p521_uint1 x320; uint64_t x321; fiat_p521_uint1 x322; uint64_t x323; fiat_p521_uint1 x324; uint64_t x325; fiat_p521_uint1 x326; uint64_t x327; fiat_p521_uint1 x328; uint64_t x329; fiat_p521_uint1 x330; uint64_t x331; uint64_t x332; uint64_t x333; fiat_p521_uint1 x334; uint64_t x335; fiat_p521_uint1 x336; uint64_t x337; fiat_p521_uint1 x338; uint64_t x339; fiat_p521_uint1 x340; uint64_t x341; fiat_p521_uint1 x342; uint64_t x343; fiat_p521_uint1 x344; uint64_t x345; fiat_p521_uint1 x346; uint64_t x347; uint64_t x348; uint64_t x349; uint64_t x350; uint64_t x351; uint64_t x352; uint64_t x353; uint64_t x354; uint64_t x355; uint64_t x356; uint64_t x357; uint64_t x358; uint64_t x359; uint64_t x360; uint64_t x361; uint64_t x362; uint64_t x363; uint64_t x364; uint64_t x365; fiat_p521_uint1 x366; uint64_t x367; fiat_p521_uint1 x368; uint64_t x369; fiat_p521_uint1 x370; uint64_t x371; fiat_p521_uint1 x372; uint64_t x373; fiat_p521_uint1 x374; uint64_t x375; fiat_p521_uint1 x376; uint64_t x377; fiat_p521_uint1 x378; uint64_t x379; fiat_p521_uint1 x380; uint64_t x381; fiat_p521_uint1 x382; uint64_t x383; fiat_p521_uint1 x384; uint64_t x385; fiat_p521_uint1 x386; uint64_t x387; fiat_p521_uint1 x388; uint64_t x389; fiat_p521_uint1 x390; uint64_t x391; fiat_p521_uint1 x392; uint64_t x393; fiat_p521_uint1 x394; uint64_t x395; fiat_p521_uint1 x396; uint64_t x397; fiat_p521_uint1 x398; uint64_t x399; uint64_t x400; uint64_t x401; fiat_p521_uint1 x402; uint64_t x403; fiat_p521_uint1 x404; uint64_t x405; fiat_p521_uint1 x406; uint64_t x407; fiat_p521_uint1 x408; uint64_t x409; fiat_p521_uint1 x410; uint64_t x411; fiat_p521_uint1 x412; uint64_t x413; fiat_p521_uint1 x414; uint64_t x415; uint64_t x416; uint64_t x417; uint64_t x418; uint64_t x419; uint64_t x420; uint64_t x421; uint64_t x422; uint64_t x423; uint64_t x424; uint64_t x425; uint64_t x426; uint64_t x427; uint64_t x428; uint64_t x429; uint64_t x430; uint64_t x431; uint64_t x432; uint64_t x433; fiat_p521_uint1 x434; uint64_t x435; fiat_p521_uint1 x436; uint64_t x437; fiat_p521_uint1 x438; uint64_t x439; fiat_p521_uint1 x440; uint64_t x441; fiat_p521_uint1 x442; uint64_t x443; fiat_p521_uint1 x444; uint64_t x445; fiat_p521_uint1 x446; uint64_t x447; fiat_p521_uint1 x448; uint64_t x449; fiat_p521_uint1 x450; uint64_t x451; fiat_p521_uint1 x452; uint64_t x453; fiat_p521_uint1 x454; uint64_t x455; fiat_p521_uint1 x456; uint64_t x457; fiat_p521_uint1 x458; uint64_t x459; fiat_p521_uint1 x460; uint64_t x461; fiat_p521_uint1 x462; uint64_t x463; fiat_p521_uint1 x464; uint64_t x465; fiat_p521_uint1 x466; uint64_t x467; uint64_t x468; uint64_t x469; fiat_p521_uint1 x470; uint64_t x471; fiat_p521_uint1 x472; uint64_t x473; fiat_p521_uint1 x474; uint64_t x475; fiat_p521_uint1 x476; uint64_t x477; fiat_p521_uint1 x478; uint64_t x479; fiat_p521_uint1 x480; uint64_t x481; fiat_p521_uint1 x482; uint64_t x483; uint64_t x484; uint64_t x485; uint64_t x486; uint64_t x487; uint64_t x488; uint64_t x489; uint64_t x490; uint64_t x491; uint64_t x492; uint64_t x493; uint64_t x494; uint64_t x495; uint64_t x496; uint64_t x497; uint64_t x498; uint64_t x499; uint64_t x500; uint64_t x501; fiat_p521_uint1 x502; uint64_t x503; fiat_p521_uint1 x504; uint64_t x505; fiat_p521_uint1 x506; uint64_t x507; fiat_p521_uint1 x508; uint64_t x509; fiat_p521_uint1 x510; uint64_t x511; fiat_p521_uint1 x512; uint64_t x513; fiat_p521_uint1 x514; uint64_t x515; fiat_p521_uint1 x516; uint64_t x517; fiat_p521_uint1 x518; uint64_t x519; fiat_p521_uint1 x520; uint64_t x521; fiat_p521_uint1 x522; uint64_t x523; fiat_p521_uint1 x524; uint64_t x525; fiat_p521_uint1 x526; uint64_t x527; fiat_p521_uint1 x528; uint64_t x529; fiat_p521_uint1 x530; uint64_t x531; fiat_p521_uint1 x532; uint64_t x533; fiat_p521_uint1 x534; uint64_t x535; uint64_t x536; fiat_p521_uint1 x537; uint64_t x538; fiat_p521_uint1 x539; uint64_t x540; fiat_p521_uint1 x541; uint64_t x542; fiat_p521_uint1 x543; uint64_t x544; fiat_p521_uint1 x545; uint64_t x546; fiat_p521_uint1 x547; uint64_t x548; fiat_p521_uint1 x549; uint64_t x550; fiat_p521_uint1 x551; uint64_t x552; fiat_p521_uint1 x553; uint64_t x554; fiat_p521_uint1 x555; uint64_t x556; uint64_t x557; uint64_t x558; uint64_t x559; uint64_t x560; uint64_t x561; uint64_t x562; uint64_t x563; uint64_t x564; fiat_p521_mulx_u64(&x1, &x2, (arg1[0]), UINT64_C(0x400000000000)); fiat_p521_mulx_u64(&x3, &x4, (arg1[1]), UINT64_C(0x400000000000)); fiat_p521_addcarryx_u64(&x5, &x6, 0x0, x2, x3); fiat_p521_mulx_u64(&x7, &x8, x1, UINT16_C(0x1ff)); fiat_p521_mulx_u64(&x9, &x10, x1, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x11, &x12, x1, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x13, &x14, x1, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x15, &x16, x1, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x17, &x18, x1, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x19, &x20, x1, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x21, &x22, x1, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x23, &x24, x1, UINT64_C(0xffffffffffffffff)); fiat_p521_addcarryx_u64(&x25, &x26, 0x0, x24, x21); fiat_p521_addcarryx_u64(&x27, &x28, x26, x22, x19); fiat_p521_addcarryx_u64(&x29, &x30, x28, x20, x17); fiat_p521_addcarryx_u64(&x31, &x32, x30, x18, x15); fiat_p521_addcarryx_u64(&x33, &x34, x32, x16, x13); fiat_p521_addcarryx_u64(&x35, &x36, x34, x14, x11); fiat_p521_addcarryx_u64(&x37, &x38, x36, x12, x9); fiat_p521_addcarryx_u64(&x39, &x40, x38, x10, x7); fiat_p521_addcarryx_u64(&x41, &x42, 0x0, x1, x23); fiat_p521_addcarryx_u64(&x43, &x44, x42, x5, x25); fiat_p521_addcarryx_u64(&x45, &x46, x44, (x6 + x4), x27); fiat_p521_addcarryx_u64(&x47, &x48, x46, 0x0, x29); fiat_p521_addcarryx_u64(&x49, &x50, x48, 0x0, x31); fiat_p521_addcarryx_u64(&x51, &x52, x50, 0x0, x33); fiat_p521_addcarryx_u64(&x53, &x54, x52, 0x0, x35); fiat_p521_addcarryx_u64(&x55, &x56, x54, 0x0, x37); fiat_p521_addcarryx_u64(&x57, &x58, x56, 0x0, x39); fiat_p521_mulx_u64(&x59, &x60, (arg1[2]), UINT64_C(0x400000000000)); fiat_p521_addcarryx_u64(&x61, &x62, 0x0, x45, x59); fiat_p521_addcarryx_u64(&x63, &x64, x62, x47, x60); fiat_p521_addcarryx_u64(&x65, &x66, x64, x49, 0x0); fiat_p521_addcarryx_u64(&x67, &x68, x66, x51, 0x0); fiat_p521_addcarryx_u64(&x69, &x70, x68, x53, 0x0); fiat_p521_addcarryx_u64(&x71, &x72, x70, x55, 0x0); fiat_p521_addcarryx_u64(&x73, &x74, x72, x57, 0x0); fiat_p521_mulx_u64(&x75, &x76, x43, UINT16_C(0x1ff)); fiat_p521_mulx_u64(&x77, &x78, x43, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x79, &x80, x43, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x81, &x82, x43, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x83, &x84, x43, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x85, &x86, x43, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x87, &x88, x43, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x89, &x90, x43, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x91, &x92, x43, UINT64_C(0xffffffffffffffff)); fiat_p521_addcarryx_u64(&x93, &x94, 0x0, x92, x89); fiat_p521_addcarryx_u64(&x95, &x96, x94, x90, x87); fiat_p521_addcarryx_u64(&x97, &x98, x96, x88, x85); fiat_p521_addcarryx_u64(&x99, &x100, x98, x86, x83); fiat_p521_addcarryx_u64(&x101, &x102, x100, x84, x81); fiat_p521_addcarryx_u64(&x103, &x104, x102, x82, x79); fiat_p521_addcarryx_u64(&x105, &x106, x104, x80, x77); fiat_p521_addcarryx_u64(&x107, &x108, x106, x78, x75); fiat_p521_addcarryx_u64(&x109, &x110, 0x0, x43, x91); fiat_p521_addcarryx_u64(&x111, &x112, x110, x61, x93); fiat_p521_addcarryx_u64(&x113, &x114, x112, x63, x95); fiat_p521_addcarryx_u64(&x115, &x116, x114, x65, x97); fiat_p521_addcarryx_u64(&x117, &x118, x116, x67, x99); fiat_p521_addcarryx_u64(&x119, &x120, x118, x69, x101); fiat_p521_addcarryx_u64(&x121, &x122, x120, x71, x103); fiat_p521_addcarryx_u64(&x123, &x124, x122, x73, x105); fiat_p521_addcarryx_u64(&x125, &x126, x124, (x74 + (x58 + (x40 + x8))), x107); fiat_p521_mulx_u64(&x127, &x128, (arg1[3]), UINT64_C(0x400000000000)); fiat_p521_addcarryx_u64(&x129, &x130, 0x0, x113, x127); fiat_p521_addcarryx_u64(&x131, &x132, x130, x115, x128); fiat_p521_addcarryx_u64(&x133, &x134, x132, x117, 0x0); fiat_p521_addcarryx_u64(&x135, &x136, x134, x119, 0x0); fiat_p521_addcarryx_u64(&x137, &x138, x136, x121, 0x0); fiat_p521_addcarryx_u64(&x139, &x140, x138, x123, 0x0); fiat_p521_addcarryx_u64(&x141, &x142, x140, x125, 0x0); fiat_p521_mulx_u64(&x143, &x144, x111, UINT16_C(0x1ff)); fiat_p521_mulx_u64(&x145, &x146, x111, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x147, &x148, x111, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x149, &x150, x111, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x151, &x152, x111, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x153, &x154, x111, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x155, &x156, x111, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x157, &x158, x111, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x159, &x160, x111, UINT64_C(0xffffffffffffffff)); fiat_p521_addcarryx_u64(&x161, &x162, 0x0, x160, x157); fiat_p521_addcarryx_u64(&x163, &x164, x162, x158, x155); fiat_p521_addcarryx_u64(&x165, &x166, x164, x156, x153); fiat_p521_addcarryx_u64(&x167, &x168, x166, x154, x151); fiat_p521_addcarryx_u64(&x169, &x170, x168, x152, x149); fiat_p521_addcarryx_u64(&x171, &x172, x170, x150, x147); fiat_p521_addcarryx_u64(&x173, &x174, x172, x148, x145); fiat_p521_addcarryx_u64(&x175, &x176, x174, x146, x143); fiat_p521_addcarryx_u64(&x177, &x178, 0x0, x111, x159); fiat_p521_addcarryx_u64(&x179, &x180, x178, x129, x161); fiat_p521_addcarryx_u64(&x181, &x182, x180, x131, x163); fiat_p521_addcarryx_u64(&x183, &x184, x182, x133, x165); fiat_p521_addcarryx_u64(&x185, &x186, x184, x135, x167); fiat_p521_addcarryx_u64(&x187, &x188, x186, x137, x169); fiat_p521_addcarryx_u64(&x189, &x190, x188, x139, x171); fiat_p521_addcarryx_u64(&x191, &x192, x190, x141, x173); fiat_p521_addcarryx_u64(&x193, &x194, x192, (x142 + (x126 + (x108 + x76))), x175); fiat_p521_mulx_u64(&x195, &x196, (arg1[4]), UINT64_C(0x400000000000)); fiat_p521_addcarryx_u64(&x197, &x198, 0x0, x181, x195); fiat_p521_addcarryx_u64(&x199, &x200, x198, x183, x196); fiat_p521_addcarryx_u64(&x201, &x202, x200, x185, 0x0); fiat_p521_addcarryx_u64(&x203, &x204, x202, x187, 0x0); fiat_p521_addcarryx_u64(&x205, &x206, x204, x189, 0x0); fiat_p521_addcarryx_u64(&x207, &x208, x206, x191, 0x0); fiat_p521_addcarryx_u64(&x209, &x210, x208, x193, 0x0); fiat_p521_mulx_u64(&x211, &x212, x179, UINT16_C(0x1ff)); fiat_p521_mulx_u64(&x213, &x214, x179, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x215, &x216, x179, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x217, &x218, x179, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x219, &x220, x179, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x221, &x222, x179, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x223, &x224, x179, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x225, &x226, x179, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x227, &x228, x179, UINT64_C(0xffffffffffffffff)); fiat_p521_addcarryx_u64(&x229, &x230, 0x0, x228, x225); fiat_p521_addcarryx_u64(&x231, &x232, x230, x226, x223); fiat_p521_addcarryx_u64(&x233, &x234, x232, x224, x221); fiat_p521_addcarryx_u64(&x235, &x236, x234, x222, x219); fiat_p521_addcarryx_u64(&x237, &x238, x236, x220, x217); fiat_p521_addcarryx_u64(&x239, &x240, x238, x218, x215); fiat_p521_addcarryx_u64(&x241, &x242, x240, x216, x213); fiat_p521_addcarryx_u64(&x243, &x244, x242, x214, x211); fiat_p521_addcarryx_u64(&x245, &x246, 0x0, x179, x227); fiat_p521_addcarryx_u64(&x247, &x248, x246, x197, x229); fiat_p521_addcarryx_u64(&x249, &x250, x248, x199, x231); fiat_p521_addcarryx_u64(&x251, &x252, x250, x201, x233); fiat_p521_addcarryx_u64(&x253, &x254, x252, x203, x235); fiat_p521_addcarryx_u64(&x255, &x256, x254, x205, x237); fiat_p521_addcarryx_u64(&x257, &x258, x256, x207, x239); fiat_p521_addcarryx_u64(&x259, &x260, x258, x209, x241); fiat_p521_addcarryx_u64(&x261, &x262, x260, (x210 + (x194 + (x176 + x144))), x243); fiat_p521_mulx_u64(&x263, &x264, (arg1[5]), UINT64_C(0x400000000000)); fiat_p521_addcarryx_u64(&x265, &x266, 0x0, x249, x263); fiat_p521_addcarryx_u64(&x267, &x268, x266, x251, x264); fiat_p521_addcarryx_u64(&x269, &x270, x268, x253, 0x0); fiat_p521_addcarryx_u64(&x271, &x272, x270, x255, 0x0); fiat_p521_addcarryx_u64(&x273, &x274, x272, x257, 0x0); fiat_p521_addcarryx_u64(&x275, &x276, x274, x259, 0x0); fiat_p521_addcarryx_u64(&x277, &x278, x276, x261, 0x0); fiat_p521_mulx_u64(&x279, &x280, x247, UINT16_C(0x1ff)); fiat_p521_mulx_u64(&x281, &x282, x247, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x283, &x284, x247, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x285, &x286, x247, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x287, &x288, x247, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x289, &x290, x247, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x291, &x292, x247, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x293, &x294, x247, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x295, &x296, x247, UINT64_C(0xffffffffffffffff)); fiat_p521_addcarryx_u64(&x297, &x298, 0x0, x296, x293); fiat_p521_addcarryx_u64(&x299, &x300, x298, x294, x291); fiat_p521_addcarryx_u64(&x301, &x302, x300, x292, x289); fiat_p521_addcarryx_u64(&x303, &x304, x302, x290, x287); fiat_p521_addcarryx_u64(&x305, &x306, x304, x288, x285); fiat_p521_addcarryx_u64(&x307, &x308, x306, x286, x283); fiat_p521_addcarryx_u64(&x309, &x310, x308, x284, x281); fiat_p521_addcarryx_u64(&x311, &x312, x310, x282, x279); fiat_p521_addcarryx_u64(&x313, &x314, 0x0, x247, x295); fiat_p521_addcarryx_u64(&x315, &x316, x314, x265, x297); fiat_p521_addcarryx_u64(&x317, &x318, x316, x267, x299); fiat_p521_addcarryx_u64(&x319, &x320, x318, x269, x301); fiat_p521_addcarryx_u64(&x321, &x322, x320, x271, x303); fiat_p521_addcarryx_u64(&x323, &x324, x322, x273, x305); fiat_p521_addcarryx_u64(&x325, &x326, x324, x275, x307); fiat_p521_addcarryx_u64(&x327, &x328, x326, x277, x309); fiat_p521_addcarryx_u64(&x329, &x330, x328, (x278 + (x262 + (x244 + x212))), x311); fiat_p521_mulx_u64(&x331, &x332, (arg1[6]), UINT64_C(0x400000000000)); fiat_p521_addcarryx_u64(&x333, &x334, 0x0, x317, x331); fiat_p521_addcarryx_u64(&x335, &x336, x334, x319, x332); fiat_p521_addcarryx_u64(&x337, &x338, x336, x321, 0x0); fiat_p521_addcarryx_u64(&x339, &x340, x338, x323, 0x0); fiat_p521_addcarryx_u64(&x341, &x342, x340, x325, 0x0); fiat_p521_addcarryx_u64(&x343, &x344, x342, x327, 0x0); fiat_p521_addcarryx_u64(&x345, &x346, x344, x329, 0x0); fiat_p521_mulx_u64(&x347, &x348, x315, UINT16_C(0x1ff)); fiat_p521_mulx_u64(&x349, &x350, x315, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x351, &x352, x315, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x353, &x354, x315, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x355, &x356, x315, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x357, &x358, x315, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x359, &x360, x315, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x361, &x362, x315, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x363, &x364, x315, UINT64_C(0xffffffffffffffff)); fiat_p521_addcarryx_u64(&x365, &x366, 0x0, x364, x361); fiat_p521_addcarryx_u64(&x367, &x368, x366, x362, x359); fiat_p521_addcarryx_u64(&x369, &x370, x368, x360, x357); fiat_p521_addcarryx_u64(&x371, &x372, x370, x358, x355); fiat_p521_addcarryx_u64(&x373, &x374, x372, x356, x353); fiat_p521_addcarryx_u64(&x375, &x376, x374, x354, x351); fiat_p521_addcarryx_u64(&x377, &x378, x376, x352, x349); fiat_p521_addcarryx_u64(&x379, &x380, x378, x350, x347); fiat_p521_addcarryx_u64(&x381, &x382, 0x0, x315, x363); fiat_p521_addcarryx_u64(&x383, &x384, x382, x333, x365); fiat_p521_addcarryx_u64(&x385, &x386, x384, x335, x367); fiat_p521_addcarryx_u64(&x387, &x388, x386, x337, x369); fiat_p521_addcarryx_u64(&x389, &x390, x388, x339, x371); fiat_p521_addcarryx_u64(&x391, &x392, x390, x341, x373); fiat_p521_addcarryx_u64(&x393, &x394, x392, x343, x375); fiat_p521_addcarryx_u64(&x395, &x396, x394, x345, x377); fiat_p521_addcarryx_u64(&x397, &x398, x396, (x346 + (x330 + (x312 + x280))), x379); fiat_p521_mulx_u64(&x399, &x400, (arg1[7]), UINT64_C(0x400000000000)); fiat_p521_addcarryx_u64(&x401, &x402, 0x0, x385, x399); fiat_p521_addcarryx_u64(&x403, &x404, x402, x387, x400); fiat_p521_addcarryx_u64(&x405, &x406, x404, x389, 0x0); fiat_p521_addcarryx_u64(&x407, &x408, x406, x391, 0x0); fiat_p521_addcarryx_u64(&x409, &x410, x408, x393, 0x0); fiat_p521_addcarryx_u64(&x411, &x412, x410, x395, 0x0); fiat_p521_addcarryx_u64(&x413, &x414, x412, x397, 0x0); fiat_p521_mulx_u64(&x415, &x416, x383, UINT16_C(0x1ff)); fiat_p521_mulx_u64(&x417, &x418, x383, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x419, &x420, x383, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x421, &x422, x383, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x423, &x424, x383, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x425, &x426, x383, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x427, &x428, x383, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x429, &x430, x383, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x431, &x432, x383, UINT64_C(0xffffffffffffffff)); fiat_p521_addcarryx_u64(&x433, &x434, 0x0, x432, x429); fiat_p521_addcarryx_u64(&x435, &x436, x434, x430, x427); fiat_p521_addcarryx_u64(&x437, &x438, x436, x428, x425); fiat_p521_addcarryx_u64(&x439, &x440, x438, x426, x423); fiat_p521_addcarryx_u64(&x441, &x442, x440, x424, x421); fiat_p521_addcarryx_u64(&x443, &x444, x442, x422, x419); fiat_p521_addcarryx_u64(&x445, &x446, x444, x420, x417); fiat_p521_addcarryx_u64(&x447, &x448, x446, x418, x415); fiat_p521_addcarryx_u64(&x449, &x450, 0x0, x383, x431); fiat_p521_addcarryx_u64(&x451, &x452, x450, x401, x433); fiat_p521_addcarryx_u64(&x453, &x454, x452, x403, x435); fiat_p521_addcarryx_u64(&x455, &x456, x454, x405, x437); fiat_p521_addcarryx_u64(&x457, &x458, x456, x407, x439); fiat_p521_addcarryx_u64(&x459, &x460, x458, x409, x441); fiat_p521_addcarryx_u64(&x461, &x462, x460, x411, x443); fiat_p521_addcarryx_u64(&x463, &x464, x462, x413, x445); fiat_p521_addcarryx_u64(&x465, &x466, x464, (x414 + (x398 + (x380 + x348))), x447); fiat_p521_mulx_u64(&x467, &x468, (arg1[8]), UINT64_C(0x400000000000)); fiat_p521_addcarryx_u64(&x469, &x470, 0x0, x453, x467); fiat_p521_addcarryx_u64(&x471, &x472, x470, x455, x468); fiat_p521_addcarryx_u64(&x473, &x474, x472, x457, 0x0); fiat_p521_addcarryx_u64(&x475, &x476, x474, x459, 0x0); fiat_p521_addcarryx_u64(&x477, &x478, x476, x461, 0x0); fiat_p521_addcarryx_u64(&x479, &x480, x478, x463, 0x0); fiat_p521_addcarryx_u64(&x481, &x482, x480, x465, 0x0); fiat_p521_mulx_u64(&x483, &x484, x451, UINT16_C(0x1ff)); fiat_p521_mulx_u64(&x485, &x486, x451, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x487, &x488, x451, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x489, &x490, x451, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x491, &x492, x451, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x493, &x494, x451, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x495, &x496, x451, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x497, &x498, x451, UINT64_C(0xffffffffffffffff)); fiat_p521_mulx_u64(&x499, &x500, x451, UINT64_C(0xffffffffffffffff)); fiat_p521_addcarryx_u64(&x501, &x502, 0x0, x500, x497); fiat_p521_addcarryx_u64(&x503, &x504, x502, x498, x495); fiat_p521_addcarryx_u64(&x505, &x506, x504, x496, x493); fiat_p521_addcarryx_u64(&x507, &x508, x506, x494, x491); fiat_p521_addcarryx_u64(&x509, &x510, x508, x492, x489); fiat_p521_addcarryx_u64(&x511, &x512, x510, x490, x487); fiat_p521_addcarryx_u64(&x513, &x514, x512, x488, x485); fiat_p521_addcarryx_u64(&x515, &x516, x514, x486, x483); fiat_p521_addcarryx_u64(&x517, &x518, 0x0, x451, x499); fiat_p521_addcarryx_u64(&x519, &x520, x518, x469, x501); fiat_p521_addcarryx_u64(&x521, &x522, x520, x471, x503); fiat_p521_addcarryx_u64(&x523, &x524, x522, x473, x505); fiat_p521_addcarryx_u64(&x525, &x526, x524, x475, x507); fiat_p521_addcarryx_u64(&x527, &x528, x526, x477, x509); fiat_p521_addcarryx_u64(&x529, &x530, x528, x479, x511); fiat_p521_addcarryx_u64(&x531, &x532, x530, x481, x513); fiat_p521_addcarryx_u64(&x533, &x534, x532, (x482 + (x466 + (x448 + x416))), x515); x535 = (x534 + (x516 + x484)); fiat_p521_subborrowx_u64(&x536, &x537, 0x0, x519, UINT64_C(0xffffffffffffffff)); fiat_p521_subborrowx_u64(&x538, &x539, x537, x521, UINT64_C(0xffffffffffffffff)); fiat_p521_subborrowx_u64(&x540, &x541, x539, x523, UINT64_C(0xffffffffffffffff)); fiat_p521_subborrowx_u64(&x542, &x543, x541, x525, UINT64_C(0xffffffffffffffff)); fiat_p521_subborrowx_u64(&x544, &x545, x543, x527, UINT64_C(0xffffffffffffffff)); fiat_p521_subborrowx_u64(&x546, &x547, x545, x529, UINT64_C(0xffffffffffffffff)); fiat_p521_subborrowx_u64(&x548, &x549, x547, x531, UINT64_C(0xffffffffffffffff)); fiat_p521_subborrowx_u64(&x550, &x551, x549, x533, UINT64_C(0xffffffffffffffff)); fiat_p521_subborrowx_u64(&x552, &x553, x551, x535, UINT16_C(0x1ff)); fiat_p521_subborrowx_u64(&x554, &x555, x553, 0x0, 0x0); fiat_p521_cmovznz_u64(&x556, x555, x536, x519); fiat_p521_cmovznz_u64(&x557, x555, x538, x521); fiat_p521_cmovznz_u64(&x558, x555, x540, x523); fiat_p521_cmovznz_u64(&x559, x555, x542, x525); fiat_p521_cmovznz_u64(&x560, x555, x544, x527); fiat_p521_cmovznz_u64(&x561, x555, x546, x529); fiat_p521_cmovznz_u64(&x562, x555, x548, x531); fiat_p521_cmovznz_u64(&x563, x555, x550, x533); fiat_p521_cmovznz_u64(&x564, x555, x552, x535); out1[0] = x556; out1[1] = x557; out1[2] = x558; out1[3] = x559; out1[4] = x560; out1[5] = x561; out1[6] = x562; out1[7] = x563; out1[8] = x564; } /* * The function fiat_p521_nonzero outputs a single non-zero word if the input is non-zero and zero otherwise. * * Preconditions: * 0 ≤ eval arg1 < m * Postconditions: * out1 = 0 ↔ eval (from_montgomery arg1) mod m = 0 * * Input Bounds: * arg1: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]] * Output Bounds: * out1: [0x0 ~> 0xffffffffffffffff] */ static void fiat_p521_nonzero(uint64_t* out1, const uint64_t arg1[9]) { uint64_t x1; x1 = ((arg1[0]) | ((arg1[1]) | ((arg1[2]) | ((arg1[3]) | ((arg1[4]) | ((arg1[5]) | ((arg1[6]) | ((arg1[7]) | (arg1[8]))))))))); *out1 = x1; } /* * The function fiat_p521_selectznz is a multi-limb conditional select. * * Postconditions: * out1 = (if arg1 = 0 then arg2 else arg3) * * Input Bounds: * arg1: [0x0 ~> 0x1] * arg2: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]] * arg3: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]] * Output Bounds: * out1: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]] */ static void fiat_p521_selectznz(uint64_t out1[9], fiat_p521_uint1 arg1, const uint64_t arg2[9], const uint64_t arg3[9]) { uint64_t x1; uint64_t x2; uint64_t x3; uint64_t x4; uint64_t x5; uint64_t x6; uint64_t x7; uint64_t x8; uint64_t x9; fiat_p521_cmovznz_u64(&x1, arg1, (arg2[0]), (arg3[0])); fiat_p521_cmovznz_u64(&x2, arg1, (arg2[1]), (arg3[1])); fiat_p521_cmovznz_u64(&x3, arg1, (arg2[2]), (arg3[2])); fiat_p521_cmovznz_u64(&x4, arg1, (arg2[3]), (arg3[3])); fiat_p521_cmovznz_u64(&x5, arg1, (arg2[4]), (arg3[4])); fiat_p521_cmovznz_u64(&x6, arg1, (arg2[5]), (arg3[5])); fiat_p521_cmovznz_u64(&x7, arg1, (arg2[6]), (arg3[6])); fiat_p521_cmovznz_u64(&x8, arg1, (arg2[7]), (arg3[7])); fiat_p521_cmovznz_u64(&x9, arg1, (arg2[8]), (arg3[8])); out1[0] = x1; out1[1] = x2; out1[2] = x3; out1[3] = x4; out1[4] = x5; out1[5] = x6; out1[6] = x7; out1[7] = x8; out1[8] = x9; } /* * The function fiat_p521_to_bytes serializes a field element NOT in the Montgomery domain to bytes in little-endian order. * * Preconditions: * 0 ≤ eval arg1 < m * Postconditions: * out1 = map (λ x, ⌊((eval arg1 mod m) mod 2^(8 * (x + 1))) / 2^(8 * x)⌋) [0..65] * * Input Bounds: * arg1: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0x1ff]] * Output Bounds: * out1: [[0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0x1]] */ static void fiat_p521_to_bytes(uint8_t out1[66], const uint64_t arg1[9]) { uint64_t x1; uint64_t x2; uint64_t x3; uint64_t x4; uint64_t x5; uint64_t x6; uint64_t x7; uint64_t x8; uint64_t x9; uint8_t x10; uint64_t x11; uint8_t x12; uint64_t x13; uint8_t x14; uint64_t x15; uint8_t x16; uint64_t x17; uint8_t x18; uint64_t x19; uint8_t x20; uint64_t x21; uint8_t x22; uint8_t x23; uint8_t x24; uint64_t x25; uint8_t x26; uint64_t x27; uint8_t x28; uint64_t x29; uint8_t x30; uint64_t x31; uint8_t x32; uint64_t x33; uint8_t x34; uint64_t x35; uint8_t x36; uint8_t x37; uint8_t x38; uint64_t x39; uint8_t x40; uint64_t x41; uint8_t x42; uint64_t x43; uint8_t x44; uint64_t x45; uint8_t x46; uint64_t x47; uint8_t x48; uint64_t x49; uint8_t x50; uint8_t x51; uint8_t x52; uint64_t x53; uint8_t x54; uint64_t x55; uint8_t x56; uint64_t x57; uint8_t x58; uint64_t x59; uint8_t x60; uint64_t x61; uint8_t x62; uint64_t x63; uint8_t x64; uint8_t x65; uint8_t x66; uint64_t x67; uint8_t x68; uint64_t x69; uint8_t x70; uint64_t x71; uint8_t x72; uint64_t x73; uint8_t x74; uint64_t x75; uint8_t x76; uint64_t x77; uint8_t x78; uint8_t x79; uint8_t x80; uint64_t x81; uint8_t x82; uint64_t x83; uint8_t x84; uint64_t x85; uint8_t x86; uint64_t x87; uint8_t x88; uint64_t x89; uint8_t x90; uint64_t x91; uint8_t x92; uint8_t x93; uint8_t x94; uint64_t x95; uint8_t x96; uint64_t x97; uint8_t x98; uint64_t x99; uint8_t x100; uint64_t x101; uint8_t x102; uint64_t x103; uint8_t x104; uint64_t x105; uint8_t x106; uint8_t x107; uint8_t x108; uint64_t x109; uint8_t x110; uint64_t x111; uint8_t x112; uint64_t x113; uint8_t x114; uint64_t x115; uint8_t x116; uint64_t x117; uint8_t x118; uint64_t x119; uint8_t x120; uint8_t x121; uint8_t x122; fiat_p521_uint1 x123; x1 = (arg1[8]); x2 = (arg1[7]); x3 = (arg1[6]); x4 = (arg1[5]); x5 = (arg1[4]); x6 = (arg1[3]); x7 = (arg1[2]); x8 = (arg1[1]); x9 = (arg1[0]); x10 = (uint8_t)(x9 & UINT8_C(0xff)); x11 = (x9 >> 8); x12 = (uint8_t)(x11 & UINT8_C(0xff)); x13 = (x11 >> 8); x14 = (uint8_t)(x13 & UINT8_C(0xff)); x15 = (x13 >> 8); x16 = (uint8_t)(x15 & UINT8_C(0xff)); x17 = (x15 >> 8); x18 = (uint8_t)(x17 & UINT8_C(0xff)); x19 = (x17 >> 8); x20 = (uint8_t)(x19 & UINT8_C(0xff)); x21 = (x19 >> 8); x22 = (uint8_t)(x21 & UINT8_C(0xff)); x23 = (uint8_t)(x21 >> 8); x24 = (uint8_t)(x8 & UINT8_C(0xff)); x25 = (x8 >> 8); x26 = (uint8_t)(x25 & UINT8_C(0xff)); x27 = (x25 >> 8); x28 = (uint8_t)(x27 & UINT8_C(0xff)); x29 = (x27 >> 8); x30 = (uint8_t)(x29 & UINT8_C(0xff)); x31 = (x29 >> 8); x32 = (uint8_t)(x31 & UINT8_C(0xff)); x33 = (x31 >> 8); x34 = (uint8_t)(x33 & UINT8_C(0xff)); x35 = (x33 >> 8); x36 = (uint8_t)(x35 & UINT8_C(0xff)); x37 = (uint8_t)(x35 >> 8); x38 = (uint8_t)(x7 & UINT8_C(0xff)); x39 = (x7 >> 8); x40 = (uint8_t)(x39 & UINT8_C(0xff)); x41 = (x39 >> 8); x42 = (uint8_t)(x41 & UINT8_C(0xff)); x43 = (x41 >> 8); x44 = (uint8_t)(x43 & UINT8_C(0xff)); x45 = (x43 >> 8); x46 = (uint8_t)(x45 & UINT8_C(0xff)); x47 = (x45 >> 8); x48 = (uint8_t)(x47 & UINT8_C(0xff)); x49 = (x47 >> 8); x50 = (uint8_t)(x49 & UINT8_C(0xff)); x51 = (uint8_t)(x49 >> 8); x52 = (uint8_t)(x6 & UINT8_C(0xff)); x53 = (x6 >> 8); x54 = (uint8_t)(x53 & UINT8_C(0xff)); x55 = (x53 >> 8); x56 = (uint8_t)(x55 & UINT8_C(0xff)); x57 = (x55 >> 8); x58 = (uint8_t)(x57 & UINT8_C(0xff)); x59 = (x57 >> 8); x60 = (uint8_t)(x59 & UINT8_C(0xff)); x61 = (x59 >> 8); x62 = (uint8_t)(x61 & UINT8_C(0xff)); x63 = (x61 >> 8); x64 = (uint8_t)(x63 & UINT8_C(0xff)); x65 = (uint8_t)(x63 >> 8); x66 = (uint8_t)(x5 & UINT8_C(0xff)); x67 = (x5 >> 8); x68 = (uint8_t)(x67 & UINT8_C(0xff)); x69 = (x67 >> 8); x70 = (uint8_t)(x69 & UINT8_C(0xff)); x71 = (x69 >> 8); x72 = (uint8_t)(x71 & UINT8_C(0xff)); x73 = (x71 >> 8); x74 = (uint8_t)(x73 & UINT8_C(0xff)); x75 = (x73 >> 8); x76 = (uint8_t)(x75 & UINT8_C(0xff)); x77 = (x75 >> 8); x78 = (uint8_t)(x77 & UINT8_C(0xff)); x79 = (uint8_t)(x77 >> 8); x80 = (uint8_t)(x4 & UINT8_C(0xff)); x81 = (x4 >> 8); x82 = (uint8_t)(x81 & UINT8_C(0xff)); x83 = (x81 >> 8); x84 = (uint8_t)(x83 & UINT8_C(0xff)); x85 = (x83 >> 8); x86 = (uint8_t)(x85 & UINT8_C(0xff)); x87 = (x85 >> 8); x88 = (uint8_t)(x87 & UINT8_C(0xff)); x89 = (x87 >> 8); x90 = (uint8_t)(x89 & UINT8_C(0xff)); x91 = (x89 >> 8); x92 = (uint8_t)(x91 & UINT8_C(0xff)); x93 = (uint8_t)(x91 >> 8); x94 = (uint8_t)(x3 & UINT8_C(0xff)); x95 = (x3 >> 8); x96 = (uint8_t)(x95 & UINT8_C(0xff)); x97 = (x95 >> 8); x98 = (uint8_t)(x97 & UINT8_C(0xff)); x99 = (x97 >> 8); x100 = (uint8_t)(x99 & UINT8_C(0xff)); x101 = (x99 >> 8); x102 = (uint8_t)(x101 & UINT8_C(0xff)); x103 = (x101 >> 8); x104 = (uint8_t)(x103 & UINT8_C(0xff)); x105 = (x103 >> 8); x106 = (uint8_t)(x105 & UINT8_C(0xff)); x107 = (uint8_t)(x105 >> 8); x108 = (uint8_t)(x2 & UINT8_C(0xff)); x109 = (x2 >> 8); x110 = (uint8_t)(x109 & UINT8_C(0xff)); x111 = (x109 >> 8); x112 = (uint8_t)(x111 & UINT8_C(0xff)); x113 = (x111 >> 8); x114 = (uint8_t)(x113 & UINT8_C(0xff)); x115 = (x113 >> 8); x116 = (uint8_t)(x115 & UINT8_C(0xff)); x117 = (x115 >> 8); x118 = (uint8_t)(x117 & UINT8_C(0xff)); x119 = (x117 >> 8); x120 = (uint8_t)(x119 & UINT8_C(0xff)); x121 = (uint8_t)(x119 >> 8); x122 = (uint8_t)(x1 & UINT8_C(0xff)); x123 = (fiat_p521_uint1)(x1 >> 8); out1[0] = x10; out1[1] = x12; out1[2] = x14; out1[3] = x16; out1[4] = x18; out1[5] = x20; out1[6] = x22; out1[7] = x23; out1[8] = x24; out1[9] = x26; out1[10] = x28; out1[11] = x30; out1[12] = x32; out1[13] = x34; out1[14] = x36; out1[15] = x37; out1[16] = x38; out1[17] = x40; out1[18] = x42; out1[19] = x44; out1[20] = x46; out1[21] = x48; out1[22] = x50; out1[23] = x51; out1[24] = x52; out1[25] = x54; out1[26] = x56; out1[27] = x58; out1[28] = x60; out1[29] = x62; out1[30] = x64; out1[31] = x65; out1[32] = x66; out1[33] = x68; out1[34] = x70; out1[35] = x72; out1[36] = x74; out1[37] = x76; out1[38] = x78; out1[39] = x79; out1[40] = x80; out1[41] = x82; out1[42] = x84; out1[43] = x86; out1[44] = x88; out1[45] = x90; out1[46] = x92; out1[47] = x93; out1[48] = x94; out1[49] = x96; out1[50] = x98; out1[51] = x100; out1[52] = x102; out1[53] = x104; out1[54] = x106; out1[55] = x107; out1[56] = x108; out1[57] = x110; out1[58] = x112; out1[59] = x114; out1[60] = x116; out1[61] = x118; out1[62] = x120; out1[63] = x121; out1[64] = x122; out1[65] = x123; } /* * The function fiat_p521_from_bytes deserializes a field element NOT in the Montgomery domain from bytes in little-endian order. * * Preconditions: * 0 ≤ bytes_eval arg1 < m * Postconditions: * eval out1 mod m = bytes_eval arg1 mod m * 0 ≤ eval out1 < m * * Input Bounds: * arg1: [[0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0x1]] * Output Bounds: * out1: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0x1ff]] */ static void fiat_p521_from_bytes(uint64_t out1[9], const uint8_t arg1[66]) { uint64_t x1; uint8_t x2; uint64_t x3; uint64_t x4; uint64_t x5; uint64_t x6; uint64_t x7; uint64_t x8; uint64_t x9; uint8_t x10; uint64_t x11; uint64_t x12; uint64_t x13; uint64_t x14; uint64_t x15; uint64_t x16; uint64_t x17; uint8_t x18; uint64_t x19; uint64_t x20; uint64_t x21; uint64_t x22; uint64_t x23; uint64_t x24; uint64_t x25; uint8_t x26; uint64_t x27; uint64_t x28; uint64_t x29; uint64_t x30; uint64_t x31; uint64_t x32; uint64_t x33; uint8_t x34; uint64_t x35; uint64_t x36; uint64_t x37; uint64_t x38; uint64_t x39; uint64_t x40; uint64_t x41; uint8_t x42; uint64_t x43; uint64_t x44; uint64_t x45; uint64_t x46; uint64_t x47; uint64_t x48; uint64_t x49; uint8_t x50; uint64_t x51; uint64_t x52; uint64_t x53; uint64_t x54; uint64_t x55; uint64_t x56; uint64_t x57; uint8_t x58; uint64_t x59; uint64_t x60; uint64_t x61; uint64_t x62; uint64_t x63; uint64_t x64; uint64_t x65; uint8_t x66; uint64_t x67; uint64_t x68; uint64_t x69; uint64_t x70; uint64_t x71; uint64_t x72; uint64_t x73; uint64_t x74; uint64_t x75; uint64_t x76; uint64_t x77; uint64_t x78; uint64_t x79; uint64_t x80; uint64_t x81; uint64_t x82; uint64_t x83; uint64_t x84; uint64_t x85; uint64_t x86; uint64_t x87; uint64_t x88; uint64_t x89; uint64_t x90; uint64_t x91; uint64_t x92; uint64_t x93; uint64_t x94; uint64_t x95; uint64_t x96; uint64_t x97; uint64_t x98; uint64_t x99; uint64_t x100; uint64_t x101; uint64_t x102; uint64_t x103; uint64_t x104; uint64_t x105; uint64_t x106; uint64_t x107; uint64_t x108; uint64_t x109; uint64_t x110; uint64_t x111; uint64_t x112; uint64_t x113; uint64_t x114; uint64_t x115; uint64_t x116; uint64_t x117; uint64_t x118; uint64_t x119; uint64_t x120; uint64_t x121; uint64_t x122; uint64_t x123; x1 = ((uint64_t)(fiat_p521_uint1)(arg1[65]) << 8); x2 = (arg1[64]); x3 = ((uint64_t)(arg1[63]) << 56); x4 = ((uint64_t)(arg1[62]) << 48); x5 = ((uint64_t)(arg1[61]) << 40); x6 = ((uint64_t)(arg1[60]) << 32); x7 = ((uint64_t)(arg1[59]) << 24); x8 = ((uint64_t)(arg1[58]) << 16); x9 = ((uint64_t)(arg1[57]) << 8); x10 = (arg1[56]); x11 = ((uint64_t)(arg1[55]) << 56); x12 = ((uint64_t)(arg1[54]) << 48); x13 = ((uint64_t)(arg1[53]) << 40); x14 = ((uint64_t)(arg1[52]) << 32); x15 = ((uint64_t)(arg1[51]) << 24); x16 = ((uint64_t)(arg1[50]) << 16); x17 = ((uint64_t)(arg1[49]) << 8); x18 = (arg1[48]); x19 = ((uint64_t)(arg1[47]) << 56); x20 = ((uint64_t)(arg1[46]) << 48); x21 = ((uint64_t)(arg1[45]) << 40); x22 = ((uint64_t)(arg1[44]) << 32); x23 = ((uint64_t)(arg1[43]) << 24); x24 = ((uint64_t)(arg1[42]) << 16); x25 = ((uint64_t)(arg1[41]) << 8); x26 = (arg1[40]); x27 = ((uint64_t)(arg1[39]) << 56); x28 = ((uint64_t)(arg1[38]) << 48); x29 = ((uint64_t)(arg1[37]) << 40); x30 = ((uint64_t)(arg1[36]) << 32); x31 = ((uint64_t)(arg1[35]) << 24); x32 = ((uint64_t)(arg1[34]) << 16); x33 = ((uint64_t)(arg1[33]) << 8); x34 = (arg1[32]); x35 = ((uint64_t)(arg1[31]) << 56); x36 = ((uint64_t)(arg1[30]) << 48); x37 = ((uint64_t)(arg1[29]) << 40); x38 = ((uint64_t)(arg1[28]) << 32); x39 = ((uint64_t)(arg1[27]) << 24); x40 = ((uint64_t)(arg1[26]) << 16); x41 = ((uint64_t)(arg1[25]) << 8); x42 = (arg1[24]); x43 = ((uint64_t)(arg1[23]) << 56); x44 = ((uint64_t)(arg1[22]) << 48); x45 = ((uint64_t)(arg1[21]) << 40); x46 = ((uint64_t)(arg1[20]) << 32); x47 = ((uint64_t)(arg1[19]) << 24); x48 = ((uint64_t)(arg1[18]) << 16); x49 = ((uint64_t)(arg1[17]) << 8); x50 = (arg1[16]); x51 = ((uint64_t)(arg1[15]) << 56); x52 = ((uint64_t)(arg1[14]) << 48); x53 = ((uint64_t)(arg1[13]) << 40); x54 = ((uint64_t)(arg1[12]) << 32); x55 = ((uint64_t)(arg1[11]) << 24); x56 = ((uint64_t)(arg1[10]) << 16); x57 = ((uint64_t)(arg1[9]) << 8); x58 = (arg1[8]); x59 = ((uint64_t)(arg1[7]) << 56); x60 = ((uint64_t)(arg1[6]) << 48); x61 = ((uint64_t)(arg1[5]) << 40); x62 = ((uint64_t)(arg1[4]) << 32); x63 = ((uint64_t)(arg1[3]) << 24); x64 = ((uint64_t)(arg1[2]) << 16); x65 = ((uint64_t)(arg1[1]) << 8); x66 = (arg1[0]); x67 = (x65 + (uint64_t)x66); x68 = (x64 + x67); x69 = (x63 + x68); x70 = (x62 + x69); x71 = (x61 + x70); x72 = (x60 + x71); x73 = (x59 + x72); x74 = (x57 + (uint64_t)x58); x75 = (x56 + x74); x76 = (x55 + x75); x77 = (x54 + x76); x78 = (x53 + x77); x79 = (x52 + x78); x80 = (x51 + x79); x81 = (x49 + (uint64_t)x50); x82 = (x48 + x81); x83 = (x47 + x82); x84 = (x46 + x83); x85 = (x45 + x84); x86 = (x44 + x85); x87 = (x43 + x86); x88 = (x41 + (uint64_t)x42); x89 = (x40 + x88); x90 = (x39 + x89); x91 = (x38 + x90); x92 = (x37 + x91); x93 = (x36 + x92); x94 = (x35 + x93); x95 = (x33 + (uint64_t)x34); x96 = (x32 + x95); x97 = (x31 + x96); x98 = (x30 + x97); x99 = (x29 + x98); x100 = (x28 + x99); x101 = (x27 + x100); x102 = (x25 + (uint64_t)x26); x103 = (x24 + x102); x104 = (x23 + x103); x105 = (x22 + x104); x106 = (x21 + x105); x107 = (x20 + x106); x108 = (x19 + x107); x109 = (x17 + (uint64_t)x18); x110 = (x16 + x109); x111 = (x15 + x110); x112 = (x14 + x111); x113 = (x13 + x112); x114 = (x12 + x113); x115 = (x11 + x114); x116 = (x9 + (uint64_t)x10); x117 = (x8 + x116); x118 = (x7 + x117); x119 = (x6 + x118); x120 = (x5 + x119); x121 = (x4 + x120); x122 = (x3 + x121); x123 = (x1 + (uint64_t)x2); out1[0] = x73; out1[1] = x80; out1[2] = x87; out1[3] = x94; out1[4] = x101; out1[5] = x108; out1[6] = x115; out1[7] = x122; out1[8] = x123; } /* * The function fiat_p521_set_one returns the field element one in the Montgomery domain. * * Postconditions: * eval (from_montgomery out1) mod m = 1 mod m * 0 ≤ eval out1 < m * */ static void fiat_p521_set_one(fiat_p521_montgomery_domain_field_element out1) { out1[0] = UINT64_C(0x80000000000000); out1[1] = 0x0; out1[2] = 0x0; out1[3] = 0x0; out1[4] = 0x0; out1[5] = 0x0; out1[6] = 0x0; out1[7] = 0x0; out1[8] = 0x0; } /* * The function fiat_p521_msat returns the saturated representation of the prime modulus. * * Postconditions: * twos_complement_eval out1 = m * 0 ≤ eval out1 < m * * Output Bounds: * out1: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]] */ static void fiat_p521_msat(uint64_t out1[10]) { out1[0] = UINT64_C(0xffffffffffffffff); out1[1] = UINT64_C(0xffffffffffffffff); out1[2] = UINT64_C(0xffffffffffffffff); out1[3] = UINT64_C(0xffffffffffffffff); out1[4] = UINT64_C(0xffffffffffffffff); out1[5] = UINT64_C(0xffffffffffffffff); out1[6] = UINT64_C(0xffffffffffffffff); out1[7] = UINT64_C(0xffffffffffffffff); out1[8] = UINT16_C(0x1ff); out1[9] = 0x0; } /* * The function fiat_p521_divstep_precomp returns the precomputed value for Bernstein-Yang-inversion (in montgomery form). * * Postconditions: * eval (from_montgomery out1) = ⌊(m - 1) / 2⌋^(if ⌊log2 m⌋ + 1 < 46 then ⌊(49 * (⌊log2 m⌋ + 1) + 80) / 17⌋ else ⌊(49 * (⌊log2 m⌋ + 1) + 57) / 17⌋) * 0 ≤ eval out1 < m * * Output Bounds: * out1: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]] */ static void fiat_p521_divstep_precomp(uint64_t out1[9]) { out1[0] = 0x0; out1[1] = UINT64_C(0x2000000000000); out1[2] = 0x0; out1[3] = 0x0; out1[4] = 0x0; out1[5] = 0x0; out1[6] = 0x0; out1[7] = 0x0; out1[8] = 0x0; } /* * The function fiat_p521_divstep computes a divstep. * * Preconditions: * 0 ≤ eval arg4 < m * 0 ≤ eval arg5 < m * Postconditions: * out1 = (if 0 < arg1 ∧ (twos_complement_eval arg3) is odd then 1 - arg1 else 1 + arg1) * twos_complement_eval out2 = (if 0 < arg1 ∧ (twos_complement_eval arg3) is odd then twos_complement_eval arg3 else twos_complement_eval arg2) * twos_complement_eval out3 = (if 0 < arg1 ∧ (twos_complement_eval arg3) is odd then ⌊(twos_complement_eval arg3 - twos_complement_eval arg2) / 2⌋ else ⌊(twos_complement_eval arg3 + (twos_complement_eval arg3 mod 2) * twos_complement_eval arg2) / 2⌋) * eval (from_montgomery out4) mod m = (if 0 < arg1 ∧ (twos_complement_eval arg3) is odd then (2 * eval (from_montgomery arg5)) mod m else (2 * eval (from_montgomery arg4)) mod m) * eval (from_montgomery out5) mod m = (if 0 < arg1 ∧ (twos_complement_eval arg3) is odd then (eval (from_montgomery arg4) - eval (from_montgomery arg4)) mod m else (eval (from_montgomery arg5) + (twos_complement_eval arg3 mod 2) * eval (from_montgomery arg4)) mod m) * 0 ≤ eval out5 < m * 0 ≤ eval out5 < m * 0 ≤ eval out2 < m * 0 ≤ eval out3 < m * * Input Bounds: * arg1: [0x0 ~> 0xffffffffffffffff] * arg2: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]] * arg3: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]] * arg4: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]] * arg5: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]] * Output Bounds: * out1: [0x0 ~> 0xffffffffffffffff] * out2: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]] * out3: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]] * out4: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]] * out5: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]] */ static void fiat_p521_divstep(uint64_t* out1, uint64_t out2[10], uint64_t out3[10], uint64_t out4[9], uint64_t out5[9], uint64_t arg1, const uint64_t arg2[10], const uint64_t arg3[10], const uint64_t arg4[9], const uint64_t arg5[9]) { uint64_t x1; fiat_p521_uint1 x2; fiat_p521_uint1 x3; uint64_t x4; fiat_p521_uint1 x5; uint64_t x6; uint64_t x7; uint64_t x8; uint64_t x9; uint64_t x10; uint64_t x11; uint64_t x12; uint64_t x13; uint64_t x14; uint64_t x15; uint64_t x16; uint64_t x17; fiat_p521_uint1 x18; uint64_t x19; fiat_p521_uint1 x20; uint64_t x21; fiat_p521_uint1 x22; uint64_t x23; fiat_p521_uint1 x24; uint64_t x25; fiat_p521_uint1 x26; uint64_t x27; fiat_p521_uint1 x28; uint64_t x29; fiat_p521_uint1 x30; uint64_t x31; fiat_p521_uint1 x32; uint64_t x33; fiat_p521_uint1 x34; uint64_t x35; fiat_p521_uint1 x36; uint64_t x37; uint64_t x38; uint64_t x39; uint64_t x40; uint64_t x41; uint64_t x42; uint64_t x43; uint64_t x44; uint64_t x45; uint64_t x46; uint64_t x47; uint64_t x48; uint64_t x49; uint64_t x50; uint64_t x51; uint64_t x52; uint64_t x53; uint64_t x54; uint64_t x55; uint64_t x56; fiat_p521_uint1 x57; uint64_t x58; fiat_p521_uint1 x59; uint64_t x60; fiat_p521_uint1 x61; uint64_t x62; fiat_p521_uint1 x63; uint64_t x64; fiat_p521_uint1 x65; uint64_t x66; fiat_p521_uint1 x67; uint64_t x68; fiat_p521_uint1 x69; uint64_t x70; fiat_p521_uint1 x71; uint64_t x72; fiat_p521_uint1 x73; uint64_t x74; fiat_p521_uint1 x75; uint64_t x76; fiat_p521_uint1 x77; uint64_t x78; fiat_p521_uint1 x79; uint64_t x80; fiat_p521_uint1 x81; uint64_t x82; fiat_p521_uint1 x83; uint64_t x84; fiat_p521_uint1 x85; uint64_t x86; fiat_p521_uint1 x87; uint64_t x88; fiat_p521_uint1 x89; uint64_t x90; fiat_p521_uint1 x91; uint64_t x92; fiat_p521_uint1 x93; uint64_t x94; uint64_t x95; uint64_t x96; uint64_t x97; uint64_t x98; uint64_t x99; uint64_t x100; uint64_t x101; uint64_t x102; uint64_t x103; fiat_p521_uint1 x104; uint64_t x105; fiat_p521_uint1 x106; uint64_t x107; fiat_p521_uint1 x108; uint64_t x109; fiat_p521_uint1 x110; uint64_t x111; fiat_p521_uint1 x112; uint64_t x113; fiat_p521_uint1 x114; uint64_t x115; fiat_p521_uint1 x116; uint64_t x117; fiat_p521_uint1 x118; uint64_t x119; fiat_p521_uint1 x120; uint64_t x121; uint64_t x122; fiat_p521_uint1 x123; uint64_t x124; fiat_p521_uint1 x125; uint64_t x126; fiat_p521_uint1 x127; uint64_t x128; fiat_p521_uint1 x129; uint64_t x130; fiat_p521_uint1 x131; uint64_t x132; fiat_p521_uint1 x133; uint64_t x134; fiat_p521_uint1 x135; uint64_t x136; fiat_p521_uint1 x137; uint64_t x138; fiat_p521_uint1 x139; uint64_t x140; uint64_t x141; uint64_t x142; uint64_t x143; uint64_t x144; uint64_t x145; uint64_t x146; uint64_t x147; uint64_t x148; fiat_p521_uint1 x149; uint64_t x150; uint64_t x151; uint64_t x152; uint64_t x153; uint64_t x154; uint64_t x155; uint64_t x156; uint64_t x157; uint64_t x158; uint64_t x159; uint64_t x160; fiat_p521_uint1 x161; uint64_t x162; fiat_p521_uint1 x163; uint64_t x164; fiat_p521_uint1 x165; uint64_t x166; fiat_p521_uint1 x167; uint64_t x168; fiat_p521_uint1 x169; uint64_t x170; fiat_p521_uint1 x171; uint64_t x172; fiat_p521_uint1 x173; uint64_t x174; fiat_p521_uint1 x175; uint64_t x176; fiat_p521_uint1 x177; uint64_t x178; fiat_p521_uint1 x179; uint64_t x180; uint64_t x181; uint64_t x182; uint64_t x183; uint64_t x184; uint64_t x185; uint64_t x186; uint64_t x187; uint64_t x188; uint64_t x189; fiat_p521_uint1 x190; uint64_t x191; fiat_p521_uint1 x192; uint64_t x193; fiat_p521_uint1 x194; uint64_t x195; fiat_p521_uint1 x196; uint64_t x197; fiat_p521_uint1 x198; uint64_t x199; fiat_p521_uint1 x200; uint64_t x201; fiat_p521_uint1 x202; uint64_t x203; fiat_p521_uint1 x204; uint64_t x205; fiat_p521_uint1 x206; uint64_t x207; fiat_p521_uint1 x208; uint64_t x209; fiat_p521_uint1 x210; uint64_t x211; fiat_p521_uint1 x212; uint64_t x213; fiat_p521_uint1 x214; uint64_t x215; fiat_p521_uint1 x216; uint64_t x217; fiat_p521_uint1 x218; uint64_t x219; fiat_p521_uint1 x220; uint64_t x221; fiat_p521_uint1 x222; uint64_t x223; fiat_p521_uint1 x224; uint64_t x225; fiat_p521_uint1 x226; uint64_t x227; fiat_p521_uint1 x228; uint64_t x229; uint64_t x230; uint64_t x231; uint64_t x232; uint64_t x233; uint64_t x234; uint64_t x235; uint64_t x236; uint64_t x237; uint64_t x238; uint64_t x239; uint64_t x240; uint64_t x241; uint64_t x242; uint64_t x243; uint64_t x244; uint64_t x245; uint64_t x246; uint64_t x247; uint64_t x248; uint64_t x249; uint64_t x250; uint64_t x251; uint64_t x252; uint64_t x253; uint64_t x254; uint64_t x255; uint64_t x256; fiat_p521_addcarryx_u64(&x1, &x2, 0x0, (~arg1), 0x1); x3 = (fiat_p521_uint1)((fiat_p521_uint1)(x1 >> 63) & (fiat_p521_uint1)((arg3[0]) & 0x1)); fiat_p521_addcarryx_u64(&x4, &x5, 0x0, (~arg1), 0x1); fiat_p521_cmovznz_u64(&x6, x3, arg1, x4); fiat_p521_cmovznz_u64(&x7, x3, (arg2[0]), (arg3[0])); fiat_p521_cmovznz_u64(&x8, x3, (arg2[1]), (arg3[1])); fiat_p521_cmovznz_u64(&x9, x3, (arg2[2]), (arg3[2])); fiat_p521_cmovznz_u64(&x10, x3, (arg2[3]), (arg3[3])); fiat_p521_cmovznz_u64(&x11, x3, (arg2[4]), (arg3[4])); fiat_p521_cmovznz_u64(&x12, x3, (arg2[5]), (arg3[5])); fiat_p521_cmovznz_u64(&x13, x3, (arg2[6]), (arg3[6])); fiat_p521_cmovznz_u64(&x14, x3, (arg2[7]), (arg3[7])); fiat_p521_cmovznz_u64(&x15, x3, (arg2[8]), (arg3[8])); fiat_p521_cmovznz_u64(&x16, x3, (arg2[9]), (arg3[9])); fiat_p521_addcarryx_u64(&x17, &x18, 0x0, 0x1, (~(arg2[0]))); fiat_p521_addcarryx_u64(&x19, &x20, x18, 0x0, (~(arg2[1]))); fiat_p521_addcarryx_u64(&x21, &x22, x20, 0x0, (~(arg2[2]))); fiat_p521_addcarryx_u64(&x23, &x24, x22, 0x0, (~(arg2[3]))); fiat_p521_addcarryx_u64(&x25, &x26, x24, 0x0, (~(arg2[4]))); fiat_p521_addcarryx_u64(&x27, &x28, x26, 0x0, (~(arg2[5]))); fiat_p521_addcarryx_u64(&x29, &x30, x28, 0x0, (~(arg2[6]))); fiat_p521_addcarryx_u64(&x31, &x32, x30, 0x0, (~(arg2[7]))); fiat_p521_addcarryx_u64(&x33, &x34, x32, 0x0, (~(arg2[8]))); fiat_p521_addcarryx_u64(&x35, &x36, x34, 0x0, (~(arg2[9]))); fiat_p521_cmovznz_u64(&x37, x3, (arg3[0]), x17); fiat_p521_cmovznz_u64(&x38, x3, (arg3[1]), x19); fiat_p521_cmovznz_u64(&x39, x3, (arg3[2]), x21); fiat_p521_cmovznz_u64(&x40, x3, (arg3[3]), x23); fiat_p521_cmovznz_u64(&x41, x3, (arg3[4]), x25); fiat_p521_cmovznz_u64(&x42, x3, (arg3[5]), x27); fiat_p521_cmovznz_u64(&x43, x3, (arg3[6]), x29); fiat_p521_cmovznz_u64(&x44, x3, (arg3[7]), x31); fiat_p521_cmovznz_u64(&x45, x3, (arg3[8]), x33); fiat_p521_cmovznz_u64(&x46, x3, (arg3[9]), x35); fiat_p521_cmovznz_u64(&x47, x3, (arg4[0]), (arg5[0])); fiat_p521_cmovznz_u64(&x48, x3, (arg4[1]), (arg5[1])); fiat_p521_cmovznz_u64(&x49, x3, (arg4[2]), (arg5[2])); fiat_p521_cmovznz_u64(&x50, x3, (arg4[3]), (arg5[3])); fiat_p521_cmovznz_u64(&x51, x3, (arg4[4]), (arg5[4])); fiat_p521_cmovznz_u64(&x52, x3, (arg4[5]), (arg5[5])); fiat_p521_cmovznz_u64(&x53, x3, (arg4[6]), (arg5[6])); fiat_p521_cmovznz_u64(&x54, x3, (arg4[7]), (arg5[7])); fiat_p521_cmovznz_u64(&x55, x3, (arg4[8]), (arg5[8])); fiat_p521_addcarryx_u64(&x56, &x57, 0x0, x47, x47); fiat_p521_addcarryx_u64(&x58, &x59, x57, x48, x48); fiat_p521_addcarryx_u64(&x60, &x61, x59, x49, x49); fiat_p521_addcarryx_u64(&x62, &x63, x61, x50, x50); fiat_p521_addcarryx_u64(&x64, &x65, x63, x51, x51); fiat_p521_addcarryx_u64(&x66, &x67, x65, x52, x52); fiat_p521_addcarryx_u64(&x68, &x69, x67, x53, x53); fiat_p521_addcarryx_u64(&x70, &x71, x69, x54, x54); fiat_p521_addcarryx_u64(&x72, &x73, x71, x55, x55); fiat_p521_subborrowx_u64(&x74, &x75, 0x0, x56, UINT64_C(0xffffffffffffffff)); fiat_p521_subborrowx_u64(&x76, &x77, x75, x58, UINT64_C(0xffffffffffffffff)); fiat_p521_subborrowx_u64(&x78, &x79, x77, x60, UINT64_C(0xffffffffffffffff)); fiat_p521_subborrowx_u64(&x80, &x81, x79, x62, UINT64_C(0xffffffffffffffff)); fiat_p521_subborrowx_u64(&x82, &x83, x81, x64, UINT64_C(0xffffffffffffffff)); fiat_p521_subborrowx_u64(&x84, &x85, x83, x66, UINT64_C(0xffffffffffffffff)); fiat_p521_subborrowx_u64(&x86, &x87, x85, x68, UINT64_C(0xffffffffffffffff)); fiat_p521_subborrowx_u64(&x88, &x89, x87, x70, UINT64_C(0xffffffffffffffff)); fiat_p521_subborrowx_u64(&x90, &x91, x89, x72, UINT16_C(0x1ff)); fiat_p521_subborrowx_u64(&x92, &x93, x91, x73, 0x0); x94 = (arg4[8]); x95 = (arg4[7]); x96 = (arg4[6]); x97 = (arg4[5]); x98 = (arg4[4]); x99 = (arg4[3]); x100 = (arg4[2]); x101 = (arg4[1]); x102 = (arg4[0]); fiat_p521_subborrowx_u64(&x103, &x104, 0x0, 0x0, x102); fiat_p521_subborrowx_u64(&x105, &x106, x104, 0x0, x101); fiat_p521_subborrowx_u64(&x107, &x108, x106, 0x0, x100); fiat_p521_subborrowx_u64(&x109, &x110, x108, 0x0, x99); fiat_p521_subborrowx_u64(&x111, &x112, x110, 0x0, x98); fiat_p521_subborrowx_u64(&x113, &x114, x112, 0x0, x97); fiat_p521_subborrowx_u64(&x115, &x116, x114, 0x0, x96); fiat_p521_subborrowx_u64(&x117, &x118, x116, 0x0, x95); fiat_p521_subborrowx_u64(&x119, &x120, x118, 0x0, x94); fiat_p521_cmovznz_u64(&x121, x120, 0x0, UINT64_C(0xffffffffffffffff)); fiat_p521_addcarryx_u64(&x122, &x123, 0x0, x103, x121); fiat_p521_addcarryx_u64(&x124, &x125, x123, x105, x121); fiat_p521_addcarryx_u64(&x126, &x127, x125, x107, x121); fiat_p521_addcarryx_u64(&x128, &x129, x127, x109, x121); fiat_p521_addcarryx_u64(&x130, &x131, x129, x111, x121); fiat_p521_addcarryx_u64(&x132, &x133, x131, x113, x121); fiat_p521_addcarryx_u64(&x134, &x135, x133, x115, x121); fiat_p521_addcarryx_u64(&x136, &x137, x135, x117, x121); fiat_p521_addcarryx_u64(&x138, &x139, x137, x119, (x121 & UINT16_C(0x1ff))); fiat_p521_cmovznz_u64(&x140, x3, (arg5[0]), x122); fiat_p521_cmovznz_u64(&x141, x3, (arg5[1]), x124); fiat_p521_cmovznz_u64(&x142, x3, (arg5[2]), x126); fiat_p521_cmovznz_u64(&x143, x3, (arg5[3]), x128); fiat_p521_cmovznz_u64(&x144, x3, (arg5[4]), x130); fiat_p521_cmovznz_u64(&x145, x3, (arg5[5]), x132); fiat_p521_cmovznz_u64(&x146, x3, (arg5[6]), x134); fiat_p521_cmovznz_u64(&x147, x3, (arg5[7]), x136); fiat_p521_cmovznz_u64(&x148, x3, (arg5[8]), x138); x149 = (fiat_p521_uint1)(x37 & 0x1); fiat_p521_cmovznz_u64(&x150, x149, 0x0, x7); fiat_p521_cmovznz_u64(&x151, x149, 0x0, x8); fiat_p521_cmovznz_u64(&x152, x149, 0x0, x9); fiat_p521_cmovznz_u64(&x153, x149, 0x0, x10); fiat_p521_cmovznz_u64(&x154, x149, 0x0, x11); fiat_p521_cmovznz_u64(&x155, x149, 0x0, x12); fiat_p521_cmovznz_u64(&x156, x149, 0x0, x13); fiat_p521_cmovznz_u64(&x157, x149, 0x0, x14); fiat_p521_cmovznz_u64(&x158, x149, 0x0, x15); fiat_p521_cmovznz_u64(&x159, x149, 0x0, x16); fiat_p521_addcarryx_u64(&x160, &x161, 0x0, x37, x150); fiat_p521_addcarryx_u64(&x162, &x163, x161, x38, x151); fiat_p521_addcarryx_u64(&x164, &x165, x163, x39, x152); fiat_p521_addcarryx_u64(&x166, &x167, x165, x40, x153); fiat_p521_addcarryx_u64(&x168, &x169, x167, x41, x154); fiat_p521_addcarryx_u64(&x170, &x171, x169, x42, x155); fiat_p521_addcarryx_u64(&x172, &x173, x171, x43, x156); fiat_p521_addcarryx_u64(&x174, &x175, x173, x44, x157); fiat_p521_addcarryx_u64(&x176, &x177, x175, x45, x158); fiat_p521_addcarryx_u64(&x178, &x179, x177, x46, x159); fiat_p521_cmovznz_u64(&x180, x149, 0x0, x47); fiat_p521_cmovznz_u64(&x181, x149, 0x0, x48); fiat_p521_cmovznz_u64(&x182, x149, 0x0, x49); fiat_p521_cmovznz_u64(&x183, x149, 0x0, x50); fiat_p521_cmovznz_u64(&x184, x149, 0x0, x51); fiat_p521_cmovznz_u64(&x185, x149, 0x0, x52); fiat_p521_cmovznz_u64(&x186, x149, 0x0, x53); fiat_p521_cmovznz_u64(&x187, x149, 0x0, x54); fiat_p521_cmovznz_u64(&x188, x149, 0x0, x55); fiat_p521_addcarryx_u64(&x189, &x190, 0x0, x140, x180); fiat_p521_addcarryx_u64(&x191, &x192, x190, x141, x181); fiat_p521_addcarryx_u64(&x193, &x194, x192, x142, x182); fiat_p521_addcarryx_u64(&x195, &x196, x194, x143, x183); fiat_p521_addcarryx_u64(&x197, &x198, x196, x144, x184); fiat_p521_addcarryx_u64(&x199, &x200, x198, x145, x185); fiat_p521_addcarryx_u64(&x201, &x202, x200, x146, x186); fiat_p521_addcarryx_u64(&x203, &x204, x202, x147, x187); fiat_p521_addcarryx_u64(&x205, &x206, x204, x148, x188); fiat_p521_subborrowx_u64(&x207, &x208, 0x0, x189, UINT64_C(0xffffffffffffffff)); fiat_p521_subborrowx_u64(&x209, &x210, x208, x191, UINT64_C(0xffffffffffffffff)); fiat_p521_subborrowx_u64(&x211, &x212, x210, x193, UINT64_C(0xffffffffffffffff)); fiat_p521_subborrowx_u64(&x213, &x214, x212, x195, UINT64_C(0xffffffffffffffff)); fiat_p521_subborrowx_u64(&x215, &x216, x214, x197, UINT64_C(0xffffffffffffffff)); fiat_p521_subborrowx_u64(&x217, &x218, x216, x199, UINT64_C(0xffffffffffffffff)); fiat_p521_subborrowx_u64(&x219, &x220, x218, x201, UINT64_C(0xffffffffffffffff)); fiat_p521_subborrowx_u64(&x221, &x222, x220, x203, UINT64_C(0xffffffffffffffff)); fiat_p521_subborrowx_u64(&x223, &x224, x222, x205, UINT16_C(0x1ff)); fiat_p521_subborrowx_u64(&x225, &x226, x224, x206, 0x0); fiat_p521_addcarryx_u64(&x227, &x228, 0x0, x6, 0x1); x229 = ((x160 >> 1) | ((x162 << 63) & UINT64_C(0xffffffffffffffff))); x230 = ((x162 >> 1) | ((x164 << 63) & UINT64_C(0xffffffffffffffff))); x231 = ((x164 >> 1) | ((x166 << 63) & UINT64_C(0xffffffffffffffff))); x232 = ((x166 >> 1) | ((x168 << 63) & UINT64_C(0xffffffffffffffff))); x233 = ((x168 >> 1) | ((x170 << 63) & UINT64_C(0xffffffffffffffff))); x234 = ((x170 >> 1) | ((x172 << 63) & UINT64_C(0xffffffffffffffff))); x235 = ((x172 >> 1) | ((x174 << 63) & UINT64_C(0xffffffffffffffff))); x236 = ((x174 >> 1) | ((x176 << 63) & UINT64_C(0xffffffffffffffff))); x237 = ((x176 >> 1) | ((x178 << 63) & UINT64_C(0xffffffffffffffff))); x238 = ((x178 & UINT64_C(0x8000000000000000)) | (x178 >> 1)); fiat_p521_cmovznz_u64(&x239, x93, x74, x56); fiat_p521_cmovznz_u64(&x240, x93, x76, x58); fiat_p521_cmovznz_u64(&x241, x93, x78, x60); fiat_p521_cmovznz_u64(&x242, x93, x80, x62); fiat_p521_cmovznz_u64(&x243, x93, x82, x64); fiat_p521_cmovznz_u64(&x244, x93, x84, x66); fiat_p521_cmovznz_u64(&x245, x93, x86, x68); fiat_p521_cmovznz_u64(&x246, x93, x88, x70); fiat_p521_cmovznz_u64(&x247, x93, x90, x72); fiat_p521_cmovznz_u64(&x248, x226, x207, x189); fiat_p521_cmovznz_u64(&x249, x226, x209, x191); fiat_p521_cmovznz_u64(&x250, x226, x211, x193); fiat_p521_cmovznz_u64(&x251, x226, x213, x195); fiat_p521_cmovznz_u64(&x252, x226, x215, x197); fiat_p521_cmovznz_u64(&x253, x226, x217, x199); fiat_p521_cmovznz_u64(&x254, x226, x219, x201); fiat_p521_cmovznz_u64(&x255, x226, x221, x203); fiat_p521_cmovznz_u64(&x256, x226, x223, x205); *out1 = x227; out2[0] = x7; out2[1] = x8; out2[2] = x9; out2[3] = x10; out2[4] = x11; out2[5] = x12; out2[6] = x13; out2[7] = x14; out2[8] = x15; out2[9] = x16; out3[0] = x229; out3[1] = x230; out3[2] = x231; out3[3] = x232; out3[4] = x233; out3[5] = x234; out3[6] = x235; out3[7] = x236; out3[8] = x237; out3[9] = x238; out4[0] = x239; out4[1] = x240; out4[2] = x241; out4[3] = x242; out4[4] = x243; out4[5] = x244; out4[6] = x245; out4[7] = x246; out4[8] = x247; out5[0] = x248; out5[1] = x249; out5[2] = x250; out5[3] = x251; out5[4] = x252; out5[5] = x253; out5[6] = x254; out5[7] = x255; out5[8] = x256; }
mirage-crypto
2.0.2
ISC
https://github.com/mirage/mirage-crypto
git+https://github.com/mirage/mirage-crypto.git
c
mirage-crypto-2.0.2/ec/native/p521_stubs.c
#include "mirage_crypto.h" /* Microsoft compiler does not support 128-bit integers. Drop down to * 32-bit for MSVC. */ #if defined(ARCH_64BIT) && !defined(_MSC_VER) #include "p521_64.h" #define LIMBS 9 #define WORD uint64_t #define WORDSIZE 64 #include "p521_tables_64.h" #else #include "p521_32.h" #define LIMBS 17 #define WORD uint32_t #define WORDSIZE 32 #include "p521_tables_32.h" #endif #define LEN_PRIME 521 #define CURVE_DESCRIPTION fiat_p521 #include "inversion_template.h" #include "point_operations.h" #include <caml/memory.h> CAMLprim value mc_p521_sub(value out, value a, value b) { CAMLparam3(out, a, b); fiat_p521_sub((WORD*)Bytes_val(out), (const WORD*)String_val(a), (const WORD*)String_val(b)); CAMLreturn(Val_unit); } CAMLprim value mc_p521_add(value out, value a, value b) { CAMLparam3(out, a, b); fiat_p521_add((WORD*)Bytes_val(out), (const WORD*)String_val(a), (const WORD*)String_val(b)); CAMLreturn(Val_unit); } CAMLprim value mc_p521_mul(value out, value a, value b) { CAMLparam3(out, a, b); fiat_p521_mul((WORD*)Bytes_val(out), (const WORD*)String_val(a), (const WORD*)String_val(b)); CAMLreturn(Val_unit); } CAMLprim value mc_p521_from_bytes(value out, value in) { CAMLparam2(out, in); fiat_p521_from_bytes((WORD*)Bytes_val(out), _st_uint8(in)); CAMLreturn(Val_unit); } CAMLprim value mc_p521_to_bytes(value out, value in) { CAMLparam2(out, in); fiat_p521_to_bytes(Bytes_val(out), (const WORD*)String_val(in)); CAMLreturn(Val_unit); } CAMLprim value mc_p521_sqr(value out, value in) { CAMLparam2(out, in); fiat_p521_square((WORD*)Bytes_val(out), (const WORD*)String_val(in)); CAMLreturn(Val_unit); } CAMLprim value mc_p521_from_montgomery(value out, value in) { CAMLparam2(out, in); fiat_p521_from_montgomery((WORD*)Bytes_val(out), (const WORD*)String_val(in)); CAMLreturn(Val_unit); } CAMLprim value mc_p521_to_montgomery(value out, value in) { CAMLparam2(out, in); fiat_p521_to_montgomery((WORD*)Bytes_val(out), (const WORD*)String_val(in)); CAMLreturn(Val_unit); } CAMLprim value mc_p521_nz(value x) { CAMLparam1(x); CAMLreturn(Val_bool(fe_nz((const WORD*)String_val(x)))); } CAMLprim value mc_p521_set_one(value x) { CAMLparam1(x); fiat_p521_set_one((WORD*)Bytes_val(x)); CAMLreturn(Val_unit); } CAMLprim value mc_p521_inv(value out, value in) { CAMLparam2(out, in); inversion((WORD*)Bytes_val(out), (const WORD*)String_val(in)); CAMLreturn(Val_unit); } CAMLprim value mc_p521_point_double(value out, value in) { CAMLparam2(out, in); point_double( (WORD*)Bytes_val(Field(out, 0)), (WORD*)Bytes_val(Field(out, 1)), (WORD*)Bytes_val(Field(out, 2)), (const WORD*)String_val(Field(in, 0)), (const WORD*)String_val(Field(in, 1)), (const WORD*)String_val(Field(in, 2)) ); CAMLreturn(Val_unit); } CAMLprim value mc_p521_point_add(value out, value p, value q) { CAMLparam3(out, p, q); point_add( (WORD*)Bytes_val(Field(out, 0)), (WORD*)Bytes_val(Field(out, 1)), (WORD*)Bytes_val(Field(out, 2)), (const WORD*)String_val(Field(p, 0)), (const WORD*)String_val(Field(p, 1)), (const WORD*)String_val(Field(p, 2)), 0, (const WORD*)String_val(Field(q, 0)), (const WORD*)String_val(Field(q, 1)), (const WORD*)String_val(Field(q, 2)) ); CAMLreturn(Val_unit); } CAMLprim value mc_p521_select(value out, value bit, value t, value f) { CAMLparam4(out, bit, t, f); fe_cmovznz( (WORD*)Bytes_val(out), Bool_val(bit), (const WORD*)String_val(f), (const WORD*)String_val(t) ); CAMLreturn(Val_unit); } CAMLprim value mc_p521_scalar_mult_base(value out, value s) { CAMLparam2(out, s); scalar_mult_base( (WORD *) Bytes_val(Field(out, 0)), (WORD *) Bytes_val(Field(out, 1)), (WORD *) Bytes_val(Field(out, 2)), _st_uint8(s), caml_string_length(s) ); CAMLreturn(Val_unit); }
mirage-crypto
2.0.2
ISC
https://github.com/mirage/mirage-crypto
git+https://github.com/mirage/mirage-crypto.git
h
mirage-crypto-2.0.2/ec/native/p521_tables_32.h
/* Pre-computed 32-bit multiples of the generator point G for the curve p521, used for speeding up its scalar multiplication in point_operations.h. Generated by ../../_build/default/ec/gen_tables/gen_tables.exe */ #ifdef ARCH_64BIT #error "Cannot use 32-bit tables on a 64-bit architecture" #endif static WORD generator_table[136][15][3][LIMBS] = { { { { 0xb331a163, 0x18e172de, 0x4dfcbf3f, 0xe0c2b521, 0x6f19a459, 0x93d17fd4, 0x947f0ee0, 0x3bf7f3ac, 0xdd50a5af, 0xb035a69e, 0x90fc1457, 0x9c829fda, 0x214e3240, 0xb311cada, 0xe6cf1f65, 0x5b820274, 0x000103 }, { 0x28460e4a, 0x3b4fe8b3, 0x20445f4a, 0x43513961, 0xb09a9e38, 0x809fd683, 0x2062a85c, 0x4caf7a13, 0x164bf739, 0x8b939f33, 0x340bd7de, 0x24abcda2, 0xeccc7aa2, 0xda163e8d, 0x22e452f, 0x3c4d1de0, 0x0000b5 }, { 0x800000, 00000000, 00000000, 00000000, 00000000, 00000000, 00000000, 00000000, 00000000, 00000000, 00000000, 00000000, 00000000, 00000000, 00000000, 00000000, 00000000 } }, { { 0xdf011096, 0x41d9d5ca, 0x66db5e69, 0x9fd74a3a, 0x7838d301, 0xfb7b51ba, 0x8a7c5eab, 0xd9c8ba47, 0xdbfd4148, 0x1ce7e915, 0xe2808852, 0xc45378e2, 0xc7bc26a, 0x3bac7ab5, 0x78480413, 0x2df54c8e, 0x0000f5 }, { 0x2fdc61a, 0x5ee9d057, 0x47410691, 0x39487029, 0x80536060, 0xe6bdfed, 0x35b541a7, 0xf7a3c021, 0xe08fe0d0, 0x58f5ae2, 0x5b31d1c3, 0x9019307, 0x51ac9a9b, 0xbddce37a, 0x15947e53, 0x862b806c, 0x00005a }, { 0x508c1c94, 0x769fd166, 0x4088be94, 0x86a272c2, 0x61353c70, 0x13fad07, 0x40c550b9, 0x995ef426, 0x2c97ee72, 0x17273e66, 0x6817afbd, 0x49579b44, 0xd998f544, 0xb42c7d1b, 0x45c8a5f, 0x789a3bc0, 0x00016a } }, { { 0xb71827f, 0xcc4c606b, 0x6475b73e, 0x3aaf49e6, 0xc024b184, 0xd149446a, 0x5c056f30, 0xd1ed6064, 0x454a85be, 0xb2a01854, 0xa29f5cf1, 0x1689c0db, 0xfa10f3db, 0xdc3dc3cb, 0x699a69ce, 0x877d2bc5, 0x0001b5 }, { 0xd947b8c0, 0x1dbe09e7, 0x4f033194, 0xb5ef0317, 0xb14e70cf, 0xa7d63d25, 0xa1343a7a, 0xeb2bf69d, 0xc2b03c37, 0xa89a27d0, 0xf1592af, 0x41168cc6, 0x4d639621, 0x29d42607, 0x9db84c30, 0x7c4d2367, 0x000052 }, { 0x1c46d40f, 0xd60466fc, 0x2d224370, 0xa7006ca3, 0x90b4c598, 0xeb4e38f0, 0xb3a7954e, 0xd9314193, 0xc2c9a3c, 0x24de1eaa, 0xaabcd8f4, 0xc68ed9e9, 0xed89bae3, 0xf4f7fcca, 0xb732bcdd, 0x56ee0129, 0x000059 } }, { { 0xdd9d3aa6, 0x63675f99, 0xa737b38a, 0xa1d8e4df, 0xd5617e04, 0xb817a6a7, 0xad4e9b09, 0x2fd56017, 0xace33434, 0x809507c7, 0xb7176ded, 0x98dc053a, 0x6f198152, 0xfa8bf421, 0x7e618369, 0x7cf0c855, 0x0001e2 }, { 0xdb3e8ef6, 0xe6ce3ef3, 0xa179c872, 0x8ed8f52a, 0xc34f3caf, 0xc8336261, 0xb0656115, 0xb454738, 0x63a0ec2a, 0x72cf42f6, 0xbfcd6490, 0xdc3e8bc8, 0x9635fe59, 0xc34b798, 0x6a4d181b, 0xa39dce64, 0x000056 }, { 0x1c8ebaa2, 0xe1007c88, 0x136dbef7, 0x18c6be64, 0xf6547b6d, 0x31ab5720, 0x27df6564, 0x13d30e32, 0x2f778c20, 0x21f5308a, 0x2b707807, 0x45421307, 0x47dc28fc, 0x34ea9c22, 0xc8e3d2b0, 0x47fe5a7c, 0x00013a } }, { { 0xa32e7617, 0x6bad7f9a, 0xc64bad07, 0x64305aa7, 0x1e2fc4d7, 0x81bd51d8, 0x8fe5655e, 0xce4ceb7b, 0x6445d068, 0xf90acd9d, 0x43824a96, 0xbb11954c, 0xae991a88, 0xb5d59026, 0xb97df325, 0x76002108, 0x00018e }, { 0x58754980, 0x280036fa, 0x551d65e3, 0x19b0ad37, 0x36491f05, 0x841e8f5d, 0xc53fded6, 0xb7d97964, 0xa92dd062, 0x4d49d035, 0x441592dc, 0x62667e14, 0x3a040095, 0xd9e05027, 0x8f964715, 0xaab48416, 0x000032 }, { 0xa001bda8, 0x5e59b3d9, 0x69930944, 0xe2afc8ef, 0x8ef706f6, 0x5bfc4ad5, 0x6e298aaf, 0x218944a3, 0xcc896607, 0xd7b5f0b0, 0xdbc1d6c6, 0xdacb2f2b, 0x90d9efde, 0x5255cc09, 0x2ca7c9e7, 0xd60ca733, 0x0001aa } }, { { 0xcdc14a05, 0x682b6937, 0x8a0bdb53, 0x90fa5a69, 0x126c325f, 0x76798e31, 0xc7ddaa7d, 0xb2754b5d, 0xa3daa405, 0x76c04ca9, 0x7fb5d9db, 0x29b65ea5, 0x224d7bfc, 0x5ccb3118, 0x8786bc57, 0x673858ef, 0x000033 }, { 0x200c5bfe, 0x298c4c4b, 0x48d73fd8, 0xc94d480b, 0x2cbbd748, 0x3c549de5, 0x8999cb8c, 0xcd0a969, 0xcbb32e03, 0xbcedd79a, 0xcd9f0556, 0xc4c404c6, 0x8a2d4edd, 0xd42c3b4b, 0x39b751aa, 0x664c2e1a, 0x00002f }, { 0x7ca04728, 0xdf4f1b53, 0x7a90bb12, 0x40fb7b0e, 0x57d6d7ff, 0x5aa14c9c, 0xe3562c98, 0xa29328d0, 0xdc087ae6, 0xcced00ff, 0x15fee543, 0x6ffe688e, 0x24ee2275, 0xfe564c80, 0x16a494bf, 0x32c45847, 0x000155 } }, { { 0x293aa170, 0x3c9a69bb, 0xa1e486c8, 0xee134e89, 0x6338369f, 0x8be5e27f, 0xb34d52be, 0x4820bde8, 0xa20ef330, 0xdfc3a66c, 0x763b61ea, 0x19e5979b, 0x89b9545c, 0x4c0cfa4e, 0x2fa3967f, 0x4b05a70a, 0x0001fc }, { 0x17bec4e, 0xc3cd83b1, 0x189d69b2, 0xc8466d1b, 0xf267a7e0, 0xbbebf623, 0x2f9bdfad, 0x47beee87, 0x1c7fd502, 0xb8cf171, 0x1fd54cd, 0x3e101f1, 0x36f4b77, 0xffc1ba56, 0xdb15c92d, 0x649b5d8c, 00000000 }, { 0xbd18b9c8, 0xc3b5f3f0, 0x7919d893, 0xf36eeaa0, 0xd44a4e1e, 0x31d2c63e, 0x5d82d62, 0xbe730207, 0x75f10c60, 0xdbe5727b, 0x7a8d57b3, 0x141b5009, 0x13b3075e, 0x2adc034f, 0x5d60749b, 0x436cd39f, 0x0000bf } }, { { 0xa4b44987, 0xd936cf10, 0xc53739e9, 0x8db0f028, 0x199f9deb, 0xd5bb522, 0xc1c9a9fa, 0x8d690138, 0x18db000d, 0xd1984c5a, 0xd273f6ce, 0x3c534445, 0x9c14b585, 0x36b41130, 0xf53390be, 0xd34c20fb, 0x000152 }, { 0xace3a377, 0x1196653c, 0x6b0b552b, 0x2555b884, 0xd2de8ba8, 0xae287230, 0x1703e367, 0xb8652a90, 0xd1745fb4, 0xc3bdf14, 0xf36deb4d, 0xc6a93332, 0xcb2a7028, 0xbcaf07e7, 0xefeb92c, 0x1d22ea73, 0x0000ff }, { 0x327670c0, 0x68e29a00, 0x391eac06, 0x35a4d1a2, 0x95d73064, 0x2f8affe, 0x3b3803fa, 0xa68ca19a, 0x919e45e2, 0x50a1fcc6, 0x85620773, 0x699a3708, 0x58fc774a, 0xb401b42b, 0xb5a17ef1, 0x91845570, 0x000179 } }, { { 0x26a08edc, 0x5341054e, 0xc7e19fc9, 0x6bda87a4, 0x8d8c4d86, 0xda482f06, 0x9a2c5126, 0xcd828655, 0xefe715bc, 0xfee5f37, 0x75080a89, 0x73b31637, 0xef448504, 0x1311b28c, 0x2437d9f6, 0x6ff62667, 0x000096 }, { 0xf9b14840, 0x9b071eb2, 0xc42fb1b6, 0x902e87fb, 0x46867d86, 0x2e55a68e, 0x4dcfb324, 0x62b8114c, 0x5adbde38, 0x3a92e269, 0x97bd014a, 0x2325a87, 0x5352b96c, 0xc53cea4f, 0xcadeee3a, 0x9df8a31, 0x0001c5 }, { 0x11cbe75f, 0x6316920a, 0xd8f89425, 0x793b7ef3, 0x62db3c88, 0x9eca39f5, 0xcabda621, 0x202ec83e, 0xfb175e2b, 0x69d38716, 0x36452492, 0x9b1635c6, 0x71912532, 0x44628388, 0xd4652320, 0xf2d7850e, 0x000181 } }, { { 0x9a2a6544, 0xf1279bb, 0xf5ee37cb, 0xb32443e9, 0x48e8343, 0xba985b40, 0xc4287aef, 0xde9413e2, 0x9b3f65ee, 0x160896ce, 0xbba495a1, 0x83098f7b, 0x349ba940, 0xc2ac977c, 0x6f009d7a, 0x35d27834, 0x0000cd }, { 0x2f8b3d80, 0xb97619da, 0x74071633, 0x66c3058a, 0x25995bc6, 0xb376739, 0x1474127e, 0x2ca6db09, 0x5f58f4be, 0xca0081c9, 0x80103011, 0xa1024e0f, 0x868d886c, 0x9c6d5d82, 0x255f9509, 0x6116f158, 0x00007c }, { 0x78f42779, 0xfbbb4b2b, 0x49bc55e5, 0xb8e207ae, 0x1eb10aff, 0x1017d3ca, 0xcec234e2, 0xf772593c, 0x27e24f1c, 0xac49e15a, 0x6f67ef73, 0x8bde8fc6, 0xb17d2638, 0x2438bacf, 0x570fd50c, 0x1b8e9835, 0x000026 } }, { { 0x3c43dec3, 0x3835eb2f, 0x899935ae, 0xd5b87fa3, 0x75e1cf8e, 0xd0cbcf1f, 0x81040f39, 0xbe232d43, 0x413d943, 0xb8eec8ba, 0xd3a032ae, 0x9f9b74f5, 0xa13c6ae2, 0x762c3941, 0x864c932b, 0x8e353082, 0x00007c }, { 0x4e0eece2, 0xfd62a07d, 0x1395e7ad, 0x88606c84, 0x3b33eee7, 0x99a91164, 0xcd158caa, 0x33df15c4, 0xc6bc901e, 0x52b8a08e, 0x90c48490, 0x82f0af5c, 0xb5f654e9, 0xa4178399, 0x5cdf62e6, 0x1975dcb4, 0x0000ab }, { 0x8d2716cb, 0xa20dacc3, 0x1d376b02, 0xce995c44, 0x1f2cd219, 0x78659a16, 0x3187a255, 0xc57d63e, 0x8d2222a, 0xe2e4d052, 0x324e2a81, 0xf7147f8c, 0x9515b7a4, 0xe730ac60, 0xf606ce68, 0xd6d1b5f8, 0x000120 } }, { { 0x64719b83, 0xac412b72, 0x286ae298, 0xc364c5d, 0x27fe4c24, 0x10b92f4c, 0x862f6d76, 0x856c51c1, 0x2a034a1e, 0x2ababdea, 0x2b7c17a8, 0x42fe3433, 0x2e971d23, 0xe1632518, 0xdd410dcd, 0xc3d9c51, 0x0000b1 }, { 0x5706f5c4, 0x1ec466cb, 0xe5a5711d, 0xc01015a2, 0xd42d9586, 0xc97805d9, 0xb7f35fb0, 0x15205f02, 0x4fc3e764, 0x3202d74d, 0xb2c02b44, 0x8540e3ff, 0x912e4834, 0xaacae759, 0x3517749a, 0xeb675721, 0x0000a6 }, { 0xfebd594d, 0x37111679, 0x60b9844c, 0x651dbba2, 0x6c03898c, 0xfc1b81c8, 0x16bc0746, 0xb9803229, 0x1cee18b9, 0x456b91a4, 0x63f7f284, 0x64576a5a, 0xdf5bbe6b, 0xbdab50b3, 0x9b261ce5, 0x65290891, 0x000074 } }, { { 0x46b174fc, 0x84d13830, 0xa3000092, 0xd0ec4b43, 0xf3eeefc1, 0xa46d2c35, 0xa01c870e, 0x4ccbea8d, 0x47fd51cf, 0x53e6fb3c, 0xf256f439, 0x93c2895d, 0xc8850cbd, 0x3d736c7d, 0x781bbed9, 0xad10b464, 0x000041 }, { 0x9e372198, 0xee875055, 0xa8e01715, 0xa9415166, 0x1ddb4d42, 0x900d33ce, 0x7e6202d6, 0x720ed73b, 0x4feadbc3, 0x9419c28a, 0x7cffe59a, 0x6edd100c, 0x8287b3cd, 0xf6fd88f0, 0xfe5f02b6, 0x9c5c718d, 0x000045 }, { 0xe4e18ccc, 0xbdb6305e, 0x922cca69, 0x4b953a6b, 0xda0ee640, 0xd72526ce, 0x71e7dfdb, 0x31ffe4ec, 0x21114b56, 0x742e251e, 0x3684c15f, 0x35d78e1a, 0xd1aeb38c, 0x95c857e5, 0xbe2918f0, 0x87eac019, 0x00002e } }, { { 0xe3386a00, 0x15f9823e, 0x633ed370, 0xd701717b, 0x1d318961, 0x953fd9b7, 0xd4a2bee6, 0xccf23369, 0x37a21103, 0xf42ef42, 0x70c84398, 0xbb521a4, 0x208e3f7d, 0xd649907a, 0xfe580cb2, 0x2a7b7e74, 00000000 }, { 0xc1e719f2, 0xa38f20bf, 0x84a5d6c6, 0x1fe62851, 0xa16f41d, 0x138bdcd0, 0xf737ac5c, 0xa5212ff4, 0x1af1d647, 0xba445241, 0x50454188, 0x64f3aee, 0xe834db9c, 0xceef21dd, 0x7070b5ef, 0x60ce67ab, 0x0000c4 }, { 0x5a656ed7, 0x1181fa3c, 0x9f08a82, 0xb7e78e8e, 0xf4a3705d, 0x58d521c0, 0x5ba8c833, 0xbd2a6f45, 0xd8b3d44c, 0xe7842a6a, 0xe0346b9c, 0x8f13e583, 0xc490d3c7, 0xbaaa35e1, 0x35f9b67e, 0xc4ef6335, 0x0001d7 } }, { { 0x430ed532, 0xcf6f4ba9, 0xef4b698c, 0xa95bcfe5, 0x5c5273ed, 0x35f65c71, 0xa37a5a97, 0xd26dd192, 0x88f7314b, 0x110f0065, 0xc6aa2dbf, 0x21663c09, 0x7a25fad7, 0x8be75347, 0x9eab742e, 0xa7431acf, 0x0000ae }, { 0x159c9c12, 0xe30b99db, 0x65a49a62, 0x751876a, 0x138284db, 0xee63569, 0xadc24c51, 0xbceb5550, 0x7fe8beb, 0xe7a4607d, 0x51b4bdb, 0x89ad79ce, 0xe8e8ce06, 0x722986cf, 0x24218f13, 0x1699fc57, 0x0001d2 }, { 0x770411fe, 0x758c4775, 0x1c6703f7, 0x9738203, 0x96252fd5, 0xe8f7b44f, 0xc1ae9bd7, 0x455e6613, 0xbd2a8d0d, 0xc830f262, 0x344a2074, 0x1889897, 0x92d3b516, 0xed1d139c, 0xdf48ffee, 0x58195408, 0x0000b2 } } }, { { { 0x2e041fc9, 0x2edd7e88, 0xa31f37e9, 0x54404d0f, 0xc6cbd1e5, 0x72a55fcd, 0x34280dc6, 0xc62e4716, 0x4c72a4f3, 0x33a1125f, 0xb21c41a2, 0x2bb4ecdd, 0xbbfd2590, 0x4c2af9e0, 0x8265707f, 0x8d9a725e, 0x000010 }, { 0x26c7cf43, 0xa03093e2, 0xd973a782, 0x32b5000e, 0xe50974e1, 0xc92203ba, 0xa5c6f83a, 0x8b627565, 0x3b9165d, 0xa7eedf9, 0x320705a3, 0x5c17df20, 0x6953ac3e, 0x59269cd3, 0xca5e49e7, 0x39aa267e, 0x00012f }, { 0x10c92d5a, 0x14ec21d4, 0xc074aff9, 0x5ce01cc, 0xa0f87368, 0x4e347cf5, 0xe013c05c, 0x8acad279, 0x485eec19, 0x8708a317, 0xbab96910, 0x24b62d7f, 0x44aab421, 0x918908b9, 0x93e50861, 0x23c3a808, 0x000085 } }, { { 0x15f23626, 0xde4df7e8, 0x85bb0d4c, 0xd690dc30, 0x3a1852dd, 0x6b3560f0, 0xee29d8fd, 0x2a2e9ba7, 0x5c8a86ff, 0xa505766d, 0x1eba6be, 0x4bf86abe, 0x4b5832d2, 0x4204268e, 0x92feb1c8, 0x6cbca06a, 0x00010d }, { 0x7438501b, 0x65ad3cac, 0xdd6e0ebf, 0x72e2b184, 0x4be81f83, 0xab00f19d, 0x13a88995, 0x783cc369, 0xf3b80757, 0x6c2e73d2, 0xdff8223f, 0x5045ff26, 0xd3af68ec, 0x7764a0c0, 0xa464bf14, 0xfe2b7fb1, 0x00011c }, { 0xc3306964, 0xdee68705, 0x674574a1, 0x952423d3, 0x912658fb, 0x877c015b, 0x3c87058d, 0xc75a1b06, 0xa4e7cafb, 0x8c20a1b7, 0x58739060, 0xac92d10b, 0xb6da427a, 0xb24cbeb5, 0xf6c13061, 0x4acc3405, 0x000170 } }, { { 0x4174f971, 0xf9a0c862, 0x3b9051bb, 0x199c1333, 0xa7039c42, 0xb591fd81, 0xd9c25116, 0xe835ede4, 0xea8b3be9, 0x16aede57, 0x5963f0f6, 0x2f4fdb3a, 0xb0dd800a, 0x5b737da4, 0x6d28faf4, 0x7c0131c8, 0x00011c }, { 0xee22edfe, 0x7e5926aa, 0xf40292d6, 0xa3005922, 0xb1d2909, 0x695f4308, 0xeb38a724, 0x5834c137, 0x790b5bcb, 0xdd449a4e, 0x1455b139, 0x3a995c16, 0x2dfdcdd6, 0xccb0f4f9, 0x7712d60a, 0x9cf12bec, 0x00015d }, { 0xbdaf1225, 0x363cdf, 0xf067a97a, 0xfa22c392, 0xbe2cab2a, 0xabe26c39, 0x4ad0b851, 0x9ade169f, 0x8f9d1408, 0xbce319f5, 0x1a86e2cb, 0x26da4c83, 0x3484d260, 0xbd73e7ec, 0xa8b2b89, 0x26b56cea, 0x000013 } }, { { 0x7ef19bcd, 0x2c018838, 0x516d49a, 0xf94161ae, 0xc3fee15b, 0x2a710bc7, 0x94850078, 0x45e6a457, 0x9eb09f19, 0xa4b7baea, 0xf41fa707, 0x288a73c8, 0x3e983027, 0xc3a3530f, 0x8d317c63, 0x41bf0486, 0x000144 }, { 0xe7245f9d, 0x67a5b54a, 0x2c8b67d7, 0x650c8126, 0x4f2bb602, 0xcf50925f, 0xb42d1ef2, 0x80da3da8, 0xb86ef24e, 0xdff3f49e, 0x9387e8dc, 0x371d2ca8, 0xe9b87d7f, 0x566f53d0, 0xa5238060, 0x38f0eb63, 0x00012c }, { 0x73074b30, 0x7c768697, 0x1e0761ed, 0xcb90434e, 0x992e092a, 0x2f44d3e8, 0x23f09cc8, 0x5891f7d3, 0x7b741a5e, 0xa0677655, 0x8d8424d0, 0xf91ba686, 0x68f2a440, 0x3657c4d1, 0xfff75932, 0x448c4664, 0x0000e5 } }, { { 0x10c8f03f, 0xc1579db, 0x30b92698, 0xa4e497a4, 0xf9f1ebec, 0x861b4dd6, 0x999cc117, 0x395939fa, 0x9eb93f00, 0xf4ddf3b, 0x7a6a9c2c, 0x769a19bf, 0x39c5856b, 0xcc903679, 0x1440d8cf, 0xb03b45f5, 0x0000f7 }, { 0xf676c0c5, 0x3d124518, 0xa43c3c74, 0x9ca2bcde, 0x96fe67d1, 0xb94c0bc0, 0xa1ae13bc, 0xb8e57550, 0xd92016a1, 0x53de199f, 0x66651469, 0xefbf29b1, 0x2533b0c7, 0x5b3e26ad, 0x207eff66, 0xc50281a0, 0x0001ac }, { 0xc0969693, 0x94a1fc0f, 0x45c7c169, 0x77da1973, 0xcbeca502, 0xd620b562, 0xd6c84ecb, 0xd8d04b30, 0x53540b84, 0xe5a5aceb, 0x1865fb65, 0x25e468d, 0xbd02eb4, 0xbab7e070, 0xc1aa52e5, 0x9bd193df, 0x0001b9 } }, { { 0xe8626cef, 0xada5e720, 0x79723661, 0xb22b9980, 0x50e0402b, 0x9383103c, 0x1e3bd389, 0xf3f95928, 0x74a1426b, 0xaa17907b, 0x19555a63, 0xb772f2, 0x811897cf, 0x8a2f8769, 0x5823953, 0x3cf04bd, 0x000053 }, { 0xed4f0e51, 0x68832c7c, 0xe5c8944a, 0xbde7cb80, 0x96982a, 0x90d68926, 0x2a05ff0f, 0xf44c903a, 0xc50da5af, 0x4dde36f8, 0xcdd98780, 0xcb7b1f7b, 0x4ba341c0, 0xdcefb493, 0x897a0828, 0x7f693e6, 0x00005a }, { 0x1f8334f5, 0xea3864d8, 0xd0ec4d38, 0x1c153b2e, 0x83480e5b, 0x6551501e, 0x872402e7, 0xa8898692, 0xf36d3d85, 0x10b643d5, 0xbd8251c9, 0xac2e9348, 0xda9d7992, 0xccb9e252, 0x74b7f4ec, 0xa78881e8, 0x000128 } }, { { 0xd400e0b0, 0xa23738ed, 0xfa7d29d5, 0xb3311413, 0x51120897, 0xe63d4148, 0xb4832f9b, 0xe71580b5, 0x9a11425b, 0xf8043281, 0xd2a642d4, 0x3346af95, 0xa8456389, 0x2f3f8e16, 0xa66b44de, 0xd14a6d1d, 0x00012a }, { 0x327cf928, 0x73baac5f, 0xa1c1fab, 0xa2b02570, 0x156df9db, 0x6ed91081, 0x1b478a0b, 0x1e0fa0d7, 0xbb855df4, 0x56b71526, 0x17f902a0, 0xc8f751bc, 0x2164b5c0, 0xaa74ff08, 0x843ac6cc, 0x7ef02c4a, 0x000135 }, { 0xc428a45e, 0x54aa89bb, 0xce1ddc1a, 0x6672b22a, 0xc1f62e74, 0x4489aa4e, 0xe5da1fc5, 0x9e733dbc, 0xbf036e8, 0x7b95c409, 0x98a02c38, 0x51c3309d, 0xc4fc5780, 0xe0510554, 0x374f99d3, 0xfc64724e, 0x0000ae } }, { { 0x782fd25e, 0x17558b5f, 0x5f5e887e, 0x3244ac17, 0xda7eba9b, 0xfc4c8f6c, 0xcb89ad28, 0x9e693307, 0x244de82d, 0xde429fe, 0x9ef13ad9, 0x22f55db7, 0x655c7908, 0x11d9297c, 0x95ec387f, 0xb27f0914, 0x00005e }, { 0x709923cc, 0xf1825987, 0xca8c725a, 0x93faf1c3, 0xcd34de8a, 0x78dbd661, 0x76c7c83c, 0xc85192d3, 0x6d233145, 0xa52b74d2, 0x6b39e7e3, 0x66d8968e, 0xc26802b2, 0xc0ec7e6d, 0xac3d9eee, 0x47909026, 0x000135 }, { 0x158a4af5, 0x24ed7e34, 0x6dabb6f8, 0x491f606e, 0x540f9cce, 0xb982fcd5, 0x573f39d4, 0xda66b81, 0xaf1ada87, 0x47a311a1, 0x2049e8d4, 0xc75e804a, 0x912dc691, 0xee2d4fe4, 0x131666b3, 0x5bb580ee, 0x000016 } }, { { 0xee4ad73c, 0x6b4e57f5, 0x62feb9ba, 0x51434c8f, 0x206f1447, 0x9ac4fd58, 0xc3a7ea90, 0x5755d822, 0xdb81b462, 0x662243be, 0x4f8273bb, 0xa9a24050, 0xf076ea68, 0x5377cfbb, 0xa4b38ec8, 0x861021ca, 0x00018d }, { 0xbfc6fbee, 0x56bd8dc8, 0xe28e1529, 0xbb4a13ea, 0x36c22fa8, 0x61adc685, 0xd2a8cac7, 0xe44388e6, 0xadb902b4, 0xeff60f7c, 0x48e53a8c, 0x92845bda, 0xcea3d00b, 0x9c32fce8, 0xefb8a42d, 0xbab04eb8, 0x00003b }, { 0x77917bf0, 0x17f531b0, 0xc9dede14, 0xcf87d059, 0xd82f9da7, 0xc1816927, 0xa13d3218, 0x48f110ad, 0x6bb2ab02, 0x6aa60e89, 0x688425f6, 0xfeeaf103, 0x5ce00f34, 0xcfdd1201, 0x4a0a57e, 0x5e333aed, 0x000061 } }, { { 0x61e07785, 0xa6b07ac8, 0x722d5485, 0x2d1f76ad, 0x5d32d20d, 0x90c9d181, 0x4d6a021, 0x61f7270e, 0xbdc858a3, 0x29e283b5, 0x6c8e72f, 0xa11d2190, 0xf5786859, 0x6b2e3038, 0xe1ac9087, 0x502b699f, 0x0000f3 }, { 0xc15cc3e2, 0x98eaca3, 0x2f2960f7, 0x1ad51f30, 0x556308a9, 0xbd6b04b, 0x7f84d0fe, 0xe7ff4ca, 0x8aa9300c, 0xa8b9eb5b, 0x62145de0, 0xe7dcb6f7, 0xcec83ad8, 0x7ab84617, 0x3e200169, 0x4d80a090, 0x0001e0 }, { 0xd57d3c18, 0x3ab882df, 0xb888507, 0xf8342fa9, 0x432ebe84, 0x335c5081, 0x119f1489, 0x51f5415, 0xf33da79, 0x4f6fde6a, 0x541bace, 0x61e0a2ff, 0x57d968a0, 0xba643c0d, 0x53b34330, 0x9d309db6, 0x000059 } }, { { 0xcb377c55, 0x69866b86, 0xc1b45ebb, 0x31b212f1, 0xfa5f8fbe, 0x9c87276f, 0x4e6f8971, 0x76b41619, 0xc4784d57, 0xb192a6ee, 0xf6c8f8a5, 0x74d0d1c6, 0x40ec40b2, 0xaeacbd75, 0xf8772f92, 0xe79b8ce0, 0x000130 }, { 0xa01d43fc, 0xef8fd4d0, 0xb8c9fb71, 0x5d6901b1, 0x7e1be653, 0x88ed7b2b, 0x7eb1efcc, 0x7543d499, 0xdb6375aa, 0x430663ac, 0xb908dcc, 0x1c62773, 0xdde80219, 0x2f6ddaed, 0xadd531f2, 0x8a8cc7f2, 0x00010c }, { 0xb637b790, 0xaf482201, 0xacd197cb, 0x51d6c69c, 0xa4e436d8, 0x5fafd40f, 0xc2f97545, 0x6115b892, 0x8e90255e, 0x8b2d17ee, 0xc42840b0, 0x53f45f20, 0x63912981, 0x2cfde43c, 0x96664f2b, 0x1d5f6eed, 0x00017a } }, { { 0x546ce59, 0x3ce96942, 0x8b53ebf0, 0x672bf202, 0xe5869e79, 0xff7376da, 0xff66f48f, 0xcb5d0c1f, 0xd735173c, 0x200ac6b7, 0x9ec07de6, 0x42a85cea, 0x4cad404e, 0x468fe7f9, 0x3fde86ff, 0x26a91b66, 0x00003c }, { 0xff4be811, 0xa9072234, 0x2dd71617, 0x8409bd3b, 0x3d2649ee, 0xea5895b6, 0xfdb95584, 0xb96ced02, 0x2cc745fc, 0x134d1b71, 0xb86c73f4, 0xdc5f588a, 0x1e18fd24, 0x8b3f23e9, 0xead57e84, 0xb61317df, 0x0000df }, { 0x17315c60, 0xcc977542, 0xa798f0c9, 0x4f75953e, 0x53f7d149, 0x4e107578, 0xa68144ce, 0x19f4433a, 0xd92b1036, 0xc7b9f4b0, 0x44f4abfa, 0x4f21f1e9, 0xcee2d0cd, 0x67671d97, 0x9e4246db, 0x87132450, 0x000094 } }, { { 0x886a57c5, 0x4d8cd9e1, 0x59cdb815, 0x675d001b, 0x1ef8a425, 0xee4e7ca5, 0x9f55abe0, 0xcb7d465e, 0xc379ad8c, 0x7957cccf, 0xa66d96b8, 0xfe639805, 0xf15636d8, 0x5e98b6ac, 0x44b13b4, 0xdd4212f3, 0x0001c1 }, { 0x99c1c132, 0x2c8ffeb3, 0x6e291ec4, 0x53e29fe9, 0x9d737365, 0x5a8f6fdf, 0x20d1379d, 0x42ad84, 0x311aa338, 0xaf5e377, 0xc61fa618, 0xef29ae78, 0xd20e0803, 0xd4c22671, 0x48fbe61, 0x5f3c4c84, 0x000152 }, { 0x79330660, 0xb00d3c2f, 0xd43d39a4, 0xbad703fd, 0x84c93398, 0x8316358f, 0x131e1917, 0x8e8cbe66, 0x4de6085e, 0x9fbaab29, 0x73c6c7ca, 0x45814dde, 0x9656bfa4, 0xf1abcedc, 0x277bfd24, 0xee756d91, 0x000075 } }, { { 0x3f9170c6, 0xdaa30517, 0x2afeaeb6, 0xed87025c, 0x1fb5dbf9, 0x39915b13, 0xd8063a0e, 0x3c61dfcc, 0x3830911d, 0xb3aae028, 0xbf1e474b, 0x7072871e, 0x986d30cf, 0x81928a98, 0xe155029e, 0xab78f817, 0x000188 }, { 0x54d8c162, 0x877c0322, 0x897840fc, 0xd41492a, 0xb1fa8f4, 0xdd9fb963, 0x2f2b89ee, 0xc805440d, 0x75e6149e, 0xc55dc0ee, 0x7afb0b00, 0xb7050c8e, 0x165fed4c, 0x3754fd3d, 0x96e38929, 0xe2046a64, 0x000045 }, { 0x6134e53c, 0x4fc696c, 0x7ab901da, 0x2adb5779, 0xf52a45fb, 0x15ed1db3, 0x65aa7382, 0x1b0bd374, 0xb7665085, 0xa1f15b00, 0x5b55e939, 0x892d40f1, 0x63106eac, 0x1089bcd2, 0xe1bb6dda, 0xa15111c2, 0x0001f1 } }, { { 0xdefcadde, 0xd47800c5, 0x6a053450, 0xe9915e15, 0x8eb9185e, 0xb49d40ce, 0xe0a874b7, 0xbc441d9e, 0xbc2909df, 0x561796f7, 0xcf34b9, 0xd012ba69, 0x86548442, 0x59f947d3, 0x41fde36b, 0xc7be902e, 0x000142 }, { 0x83c117ae, 0x706a457a, 0xa9bf7482, 0xca7950e6, 0xae473243, 0x1091f3ed, 0x5411484d, 0xdc12732b, 0xbc4a6f4e, 0x83a9424d, 0xe48fc1f, 0xfb5a5f7d, 0x1288cd90, 0x295da200, 0xc9c52c69, 0xe2058033, 0x00017e }, { 0xd9814c1d, 0x327003d9, 0x2e01f9de, 0x78b617ba, 0x568d0c0b, 0xd1f954, 0x48238989, 0xae582330, 0xa9a5b305, 0xcabea4b7, 0xa51c231b, 0x98651797, 0x2adb5658, 0xc5a8b5fd, 0x749882a0, 0x73dff7a8, 0x000033 } } }, { { { 0xb1f506b, 0xa06e69bf, 0x948f8814, 0xc88f204b, 0x9090450, 0x770db1a8, 0xbd845cef, 0xcb007814, 0xaa9d86e, 0xe754c796, 0x61599da3, 0x361f819e, 0x74ccdbfd, 0x6b211b49, 0x33f4c4c4, 0x76c2704a, 0x000056 }, { 0x4d714cf8, 0x9287bd70, 0xc70da34b, 0xd69e628b, 0xc1d36bd9, 0x32aafb26, 0x2f4eb3bc, 0x3ada8c26, 0x48b01a49, 0x9e46b892, 0xacc2ca35, 0x215387c2, 0x2b08294b, 0xbe4a68ff, 0xb6f06e28, 0x7de0bb0, 0x0000b7 }, { 0x12aa98dc, 0xc03ed059, 0x316d841b, 0xde2577a, 0xe8d0cfa, 0x2731c4, 0xf46c84c4, 0x62b4d790, 0x513dc23c, 0x26ec5ee9, 0x42e4d7bc, 0x70baf9fe, 0x9fe135bf, 0x6cdefb45, 0x82fe9212, 0xadc4f1b8, 0x000014 } }, { { 0xae581a38, 0xc318bac7, 0x21aae211, 0xd0100121, 0xb3431c02, 0x29317471, 0x279a42c6, 0xc99f10be, 0x3d158eb6, 0x241ff2a0, 0x907488f2, 0xbf87096b, 0xef3d80fc, 0x796c6185, 0x78c59be1, 0x47a45131, 0x000100 }, { 0x4698fb58, 0x933bfefc, 0x23f7c0e2, 0x5ce4d966, 0x24179e24, 0x4828c75c, 0xd7eeea3b, 0x123b4d65, 0xf3f30322, 0xd328cf00, 0x482f740f, 0x1aba20f, 0x1490d731, 0xe3eb04dc, 0xc1a6f2da, 0x38d36fa7, 0x000042 }, { 0x57e28264, 0xf924c554, 0x12ba043, 0x6d0831b5, 0xf6b4f365, 0xfb9deec0, 0x1cb041cf, 0x951d95e1, 0x81ad07b0, 0x6462077, 0xb85cc989, 0xea8a5dd, 0x2f978fef, 0x642d3aeb, 0xe1aa3b4d, 0x8ccd0570, 0x00004a } }, { { 0xad185306, 0xd3cbe272, 0x4aaf3352, 0xa394b54b, 0x6371ac2b, 0xadded503, 0xa20f3b33, 0x37f09f82, 0xf84a7d16, 0x5fa885ec, 0x6f6a7622, 0x22dc6a6c, 0xaa30c32e, 0x9fc0f750, 0x67ef4956, 0xef7bc02, 0x000053 }, { 0x18ded1ea, 0x9472c81a, 0x9cf0d75a, 0x91c15ec, 0x2af10d82, 0xc6cd586c, 0x405c9f00, 0xc2f352a2, 0xc5252bd5, 0x6fd0e5fb, 0x7df8ce44, 0x5718dd32, 0xa261eaca, 0x5999aa60, 0xedfa83ce, 0x589a5174, 0x00019e }, { 0x4d8fb609, 0x3e6f417a, 0xeb5df9aa, 0xd1ce6603, 0xa375f9fc, 0xf9d3b653, 0xc9bede64, 0xd6f0dcdd, 0x256e3e63, 0x346ec7a3, 0xfaf56c5e, 0xe5b186a7, 0xa64d5373, 0x4b487bd3, 0x8c43a6d3, 0xedb2c9bc, 0x00011d } }, { { 0xdd2fd2b6, 0x8c0cd6bb, 0x407644e0, 0x72cdee67, 0x88dcf183, 0x8b284dc, 0x5469f17a, 0x612d5e37, 0x77e47eda, 0xee25006b, 0x99ec4a11, 0x830d8fa7, 0x20f82d4c, 0x3bbc64cb, 0x625d95a2, 0x129cefe5, 0x00010a }, { 0xe8467783, 0xd387d7f5, 0xe75869b7, 0x71ef8cf7, 0x10264972, 0x792a88cc, 0x43f2791a, 0x6ab10053, 0x5f1207a4, 0xf608443f, 0x84af1067, 0x43e1a53d, 0x3eac5d97, 0x89fbc7c5, 0x1a1cbd9b, 0xc52d9b90, 0x000141 }, { 0x7efb0bae, 0x7aa0a62b, 0x633492a8, 0xebe0e90a, 0xa481709, 0x5671eb23, 0x28e12a6a, 0x69bbebbd, 0x65f19d7f, 0x46ecd809, 0xa9e29a72, 0xa0468a55, 0xcc8cf030, 0x5c0f26ad, 0xb051b55c, 0x4e63bfd8, 0x0000d2 } }, { { 0x9e7273d5, 0xfff00df8, 0xee73dfc8, 0xba00a1c9, 0x6c1ea89, 0x275504b5, 0xbe060d81, 0x9a9c7779, 0x5d0d47e6, 0x13a3c9de, 0x87b696c0, 0x273f16bc, 0xb5ea30a1, 0x400188e7, 0x34365bca, 0xdae2f26b, 0x0001e8 }, { 0x559a751a, 0x6073b3bb, 0x4f493b8, 0x419796a4, 0x32cc67a5, 0x4cbea7de, 0x35b738bf, 0x34cbf53e, 0xa8690c6b, 0x35dc57ed, 0x6d321510, 0xa4c78fa7, 0xd4d6e505, 0xdc9d21c5, 0x289daacc, 0xd909c9d2, 0x000194 }, { 0x497511c5, 0x791d2443, 0x4389ec10, 0x471856b0, 0xa58df6ad, 0x6abf4788, 0x6d200061, 0x68ae935e, 0xef40954, 0x8fb68477, 0x33e783fb, 0x4bd028e9, 0x813cfa6e, 0xb5bd1d07, 0xb8f65300, 0xfdeb88a4, 0x000033 } }, { { 0xb8dab03f, 0x920cd3b5, 0xdd3836ef, 0x343c090a, 0xbbcf9afc, 0x3d70705c, 0x74f118b, 0x4c469aa, 0x929e6973, 0xbc4f08f1, 0x97a2a488, 0x9ad127d8, 0x16836a67, 0x886f6812, 0xd504e622, 0x269d68cf, 0x0001cd }, { 0x8376316f, 0xe77676f8, 0x439fa158, 0x9d403301, 0xead01bcf, 0xa90ef2fa, 0x88b7b27a, 0x67574d54, 0x8f293456, 0xd18d62ac, 0x9a01e209, 0x32f8e5a4, 0x365c6c5e, 0xb1af6cdf, 0x6d356b55, 0xfdfa39be, 0x0001b1 }, { 0xecd51d4a, 0x337fbb1f, 0xc8646eb, 0x257bee8f, 0xc9c48e6c, 0xdacee0cd, 0xb2438a0, 0xee17982d, 0x93596f24, 0x87b8d47c, 0xfdbeafc8, 0x9d821f89, 0xf43d3945, 0x4a98f961, 0x5477441d, 0xd0af85a0, 0x000197 } }, { { 0xafa7c4, 0x1f80048b, 0xe29d5403, 0x78a724cf, 0x6972e2d9, 0xbeb989db, 0x8aee3fa1, 0x2767027c, 0x42fa10cf, 0xf5d384de, 0x7fcf7961, 0xbba0d359, 0x484d8111, 0x5e71ecb4, 0x165260fb, 0x3f0f3f5d, 0x000177 }, { 0xb02077dd, 0x53017f28, 0x36fa6799, 0xf184c7c2, 0x1bbcdfc6, 0x7d06c714, 0x2031b60f, 0xcdccedb1, 0xdfd233f8, 0x2d9bcf1f, 0x70a2b69e, 0x8ccdb847, 0xc9cb3ce, 0xa71b3603, 0x3493fe8a, 0xc2c57274, 0x0000c4 }, { 0x5cc50113, 0x9cf9a5d2, 0xdccd0010, 0x8f66d32b, 0x98facadb, 0xbad4088, 0x2c8c692d, 0xe179793e, 0x404c6690, 0x13042e88, 0x132862fd, 0x5c2fc6c4, 0x73964c48, 0xe8f3d5e8, 0xad7a5b6b, 0xa5e78d0b, 0x00004a } }, { { 0xf5e0d6fc, 0xfb433066, 0xc9d7003a, 0xf92e9eec, 0xf50facbd, 0xc311293c, 0xafa4e945, 0x76f3afe7, 0xf36e2122, 0xf9a6fb63, 0x98582d82, 0x647aa861, 0x39eaf8be, 0xa4032eab, 0xd59c5a10, 0xaee626a8, 0x000057 }, { 0xc9ec46ba, 0x12272dca, 0x5592c861, 0xeb660220, 0x93c52457, 0xd8dc1967, 0xd98e39f4, 0xfb2b4dd3, 0x89c2b513, 0xb1a21904, 0xe97eecdc, 0x8654c8bc, 0x4af9641a, 0xeacfe014, 0xbb77c7a2, 0x83ba438f, 0x0000b0 }, { 0xd551f9d3, 0x5ba044f, 0x1656626e, 0x2d016c4f, 0x102efe11, 0x1a43ec96, 0xa07e3e51, 0xea901a2d, 0x7ad5367, 0xafa9a8fb, 0xeec9a5, 0x59bf9f1e, 0xfaf2deef, 0xe3351608, 0x7b04a356, 0x96346dd8, 0x00009d } }, { { 0xa89f47c, 0x5df863c1, 0x93bd905e, 0xdf188d7b, 0x3ee787d0, 0xba34aa7e, 0x64d944ce, 0x122e07e0, 0x284122c3, 0x6d0ba2b, 0x4dba9d02, 0x443d0038, 0xf27f7797, 0x659824e4, 0x7ff4a386, 0x5fec6dd8, 0x000163 }, { 0xe56f4eb9, 0x7fbec98b, 0xcf7d9bd2, 0x5878e1f1, 0xc9eacdfb, 0x12e087fb, 0x298903e6, 0xebad1534, 0x9b152e28, 0xda9130e0, 0x1d16da80, 0xe37925b0, 0x1908aecb, 0x54356357, 0xf7c377b2, 0x2dbb10eb, 0x0001c4 }, { 0x614aa1a5, 0x86aa2891, 0xd1b415dd, 0x75f5b68e, 0x17bbc3de, 0xc0a2e05b, 0xeb3b0162, 0x2b5b233d, 0x71400e98, 0x967935a5, 0x45bbccf5, 0x281deaf6, 0xfd2eba14, 0xb014876d, 0xd0839db6, 0x3101d37d, 0x0000a8 } }, { { 0x7a2ce874, 0x3d410676, 0xe695e33, 0xe9aa50ed, 0x7e97e285, 0x915d91c0, 0x380a7a94, 0x792f4479, 0x749f23ee, 0x454b3d10, 0xcd63d84f, 0x43a42fd4, 0xe696fc50, 0x6793ad61, 0x2628ad1c, 0xd97c2cb7, 0x0000ae }, { 0xfda9e43d, 0x55f93058, 0xc5ab3162, 0x224234c, 0x66d2312f, 0x4d25a66b, 0xee3e304, 0x12beb1ca, 0x56a673d4, 0x9e446b20, 0xd1646183, 0x95106642, 0x8def9f31, 0x92a90dc, 0x34126f56, 0xdfaed7e0, 0x00014e }, { 0x82453a2b, 0xfbeaedd3, 0x20a324bd, 0xfc78e5c7, 0xb04c2db0, 0x95655fc6, 0x15ff136d, 0x3b1ef032, 0xcd8bff18, 0xc73551aa, 0xbc43dfb4, 0xad71da97, 0x116d72fd, 0xb53e559d, 0xf3dbc6bf, 0xd69a94e4, 0x000198 } }, { { 0xc7048687, 0x4587c4b1, 0x4578d110, 0x226a229, 0xf709c331, 0x16ad8bcb, 0xb6d1803f, 0x84403a87, 0xa1cef72b, 0xefd975ca, 0xefadf256, 0xb1da29f2, 0xd0d6e04, 0x39887819, 0xdfff1dd2, 0xd8391d2b, 0x0000fe }, { 0x69bf09e9, 0x9408fad0, 0x9d70b9a4, 0x14ddae6e, 0x735ebf8d, 0x30976d88, 0x562bced4, 0x16b83443, 0xfb72b000, 0x158b24fb, 0xa972b674, 0x3d9391af, 0x3609c077, 0xc4e3786, 0x2d4d2471, 0x2257fa8d, 0x00000d }, { 0x7a00a5a6, 0x75c74354, 0x8e65be19, 0x1971d457, 0x389f0014, 0x3b3e4c6, 0xd2ba1445, 0xf934677a, 0x4cfd6e67, 0x33d0291b, 0x8494513, 0x1b8cf8, 0x60c49064, 0x12a5a40e, 0x64965ba3, 0x1adc0124, 0x00004b } }, { { 0x2f07c181, 0xc1501cd0, 0xba8c9541, 0x3fa4308b, 0x253488d9, 0x83ac1c00, 0xef148410, 0x8dd2a914, 0x385ebfcb, 0x9db7be6, 0x1fa43785, 0xed5e8e45, 0x91dc4c02, 0x91268abc, 0x4150d1ec, 0xe6ad08ab, 0x0001ef }, { 0x4d9f4523, 0x6c43968, 0x2c455fb7, 0x5983a21d, 0x32dacf78, 0xca618c93, 0x21caf4ef, 0x6c7da628, 0x94a7f1aa, 0x78d4c571, 0x8c6a62a0, 0xc9446de2, 0x3b4b52ed, 0xef7a5bdb, 0xfdbab459, 0x4c37cf43, 0x000002 }, { 0x24716476, 0x3ef77a80, 0x2e808e46, 0xe4b23cd3, 0x394d0a9d, 0xd2aed242, 0x5032a886, 0x948b12de, 0x375d03e8, 0x66a002fa, 0x84e1722a, 0x580817fb, 0x751bc1e9, 0x45241433, 0x4cce32cf, 0x15c5b1e9, 0x000092 } }, { { 0xa9b13318, 0x34d4330, 0xb81cbafd, 0x99f759f2, 0x16b932fc, 0xbd6bafb4, 0x3e2c3738, 0x8c539f4b, 0x491cd629, 0xc3298559, 0x9439f1cb, 0x99d4d205, 0x34b77d33, 0x5a7cc013, 0x4762a7b6, 0x3ac86a0b, 0x000100 }, { 0x4e448c3b, 0x41aead97, 0x25634c9, 0x89793176, 0x65c67bb8, 0x9325919e, 0xeb0be414, 0x4eeaea42, 0xd889ba97, 0x58922673, 0x63497863, 0x6fe4000, 0x456d682a, 0x99fe8a9, 0x63476fab, 0xf10297c, 0x0000e9 }, { 0xd942bc33, 0x82eb90ab, 0x1c7cf445, 0x2c43e3f7, 0xa23e84a1, 0xadd645d2, 0xd531c69a, 0xec21efd9, 0xbbefe809, 0xb70a478, 0x45dbd038, 0x320b331, 0xbc4a27a8, 0x3604d0a6, 0x2335a7ea, 0x257656c0, 0x000196 } }, { { 0x389c89c7, 0x437c4db6, 0x7f26dab5, 0xdf998ec4, 0x4953efa1, 0x4cdf16bf, 0xbc08dc76, 0x6e962433, 0xc186efe6, 0x52e89ff7, 0xd4022f2, 0x636d214e, 0x65c7f0e5, 0x16ebdd9f, 0x4b9248fb, 0x6e9fa1fd, 0x0000a1 }, { 0xf8e1b180, 0xda2b386e, 0xe2a2efbb, 0x3e526134, 0xa9d2516c, 0xe1a9ae86, 0x5f454846, 0xdfbe5854, 0x42aebc88, 0x61442d2e, 0x8f94f27e, 0x2c3796ce, 0xa6fa6b1c, 0x63b45f93, 0xd30b404f, 0x4f5a417e, 0x00010d }, { 0xee0d8d98, 0xf9c0ae2b, 0x51094cf1, 0x2e71a411, 0x72c95762, 0x8ae32b86, 0x4bd6cdc2, 0x2d4e319d, 0x4f08ac0c, 0x235c9cfc, 0x90ba1415, 0xb0193ba, 0x2b6a27e, 0xa999d3f5, 0xac333fea, 0xa2b097f2, 0x0000a4 } }, { { 0x8aff70bd, 0x10a3a951, 0x7d9d6823, 0x9a99efab, 0xc50a03b7, 0xa25beb43, 0xe851a3f2, 0xc0b237d, 0x456c8158, 0xd26e187d, 0x7df2ea5c, 0x2370570d, 0x1977e5d, 0x94fedf67, 0x8faefb12, 0x14b0edf7, 0x00014e }, { 0xb4f39fc, 0xc0eef270, 0x3c0d736d, 0x89674105, 0x5729ef30, 0x74c27cf0, 0x8ebd6b80, 0xca05583d, 0xa8c6faf, 0x6d585b3a, 0x41c11ae7, 0x619ec08f, 0x39fac65f, 0x3f3f7498, 0x2f89c7f0, 0xd33ddfa9, 0x000152 }, { 0xc910f249, 0x886398ce, 0xe1dada25, 0x515c37d6, 0x1e4c5e9c, 0x66557129, 0x37157b7, 0x11fa189f, 0x3f74f3cc, 0xb543d0f1, 0x3af71763, 0x9ef60aff, 0x300eea2a, 0x7689dd0a, 0x1cee1f4c, 0x34b33935, 0x000129 } } }, { { { 0x5cf7e384, 0x1f948ff4, 0x85481841, 0x5d030f52, 0x475d491e, 0xe1370fe, 0xe1061c6e, 0xb8179155, 0x18f584a2, 0x977bcae, 0xd1a0b71a, 0x550e4fdc, 0xd776487f, 0x1312f417, 0x45900566, 0x1bf78e6a, 0x000154 }, { 0x2f4fd076, 0x7f170c4e, 0x49da7df9, 0xf820e819, 0x40d6839c, 0xb3f8e07c, 0xe5a2c79a, 0x6612e86a, 0xeed3bc0a, 0x914a5953, 0xb00f76f2, 0x381e318d, 0x849a11bf, 0xc312830f, 0x6181440d, 0x9f45c26d, 0x000037 }, { 0x4fc2bec9, 0xe5dd5b54, 0x285cdde, 0xe1dd2e8b, 0x3b14fff9, 0x21c071f2, 0x777e0943, 0x3fc69392, 0x7895e783, 0x97606193, 0x3ae01077, 0xb1b9f0a4, 0xbfead1e4, 0x413a8fe3, 0x5f0ec30d, 0xff4a2192, 0x000182 } }, { { 0xf943ec31, 0x39cc8609, 0xb5057fa6, 0x428617ce, 0x7c353cbd, 0x8da05b16, 0x2019cd9b, 0x922595c, 0xc434fb64, 0xcc94b93e, 0xb8491329, 0x16e9491b, 0xc3711f6a, 0x5c1dd78d, 0xb8b68e12, 0x84155e10, 0x0000e1 }, { 0xaf641e55, 0x932f17d5, 0x61a18b05, 0xfa725c5d, 0x7083635c, 0x2e0a7b57, 0x13b3c7b4, 0xcb0c5b17, 0xeb9e3a15, 0x5ce6d268, 0x6430b2de, 0x8a07ecf, 0x49b0b86a, 0x6b629d33, 0xd99ae9cd, 0xf98d7fac, 0x000021 }, { 0xe7e40487, 0xd48fc1f6, 0x1f5605be, 0xcb98eb28, 0xdd884c16, 0x99238549, 0xd45a8641, 0xe0ba6c66, 0xe7c1b11, 0x90952c1e, 0xc3db471b, 0xa6ab48ce, 0x192f858c, 0x3d51e404, 0xaccb7661, 0xcbaf415, 0x0000d4 } }, { { 0xbed83152, 0x59fe0682, 0xf532899e, 0x3b18bd53, 0x748db1cd, 0x82229848, 0x39f44700, 0xb5b10197, 0xb73d903, 0xff1c322e, 0xd6e2c12e, 0xee781e1, 0xb3de32a6, 0x243c0dbe, 0x7d3b8368, 0xe6f236a6, 0x0000bc }, { 0x47967bf4, 0x90f82ae3, 0xc628e994, 0x2a93cf65, 0xeaf0fd2e, 0x7a4d80f3, 0xdc504c12, 0x216e17d9, 0x9249419f, 0x1acb870, 0x8fc80167, 0x639782da, 0xc794c30a, 0xefb51049, 0x7b9c0d13, 0x94b1dc78, 0x0001fc }, { 0x385ff555, 0xa00aa4d4, 0xed727d19, 0xf3353cc2, 0xc3efd4d6, 0xc71b604, 0x2a40e6bf, 0xbff0d04e, 0xe805c474, 0xb9215c49, 0x95c5b90f, 0x70b68b80, 0xaae25f31, 0x6d4d184, 0x29b5f10a, 0x32d397d9, 0x00009b } }, { { 0xab1d78b, 0x9e8cc2df, 0xaaedc7d4, 0xa4e3442d, 0xc6e1efcc, 0xaf552138, 0xf73930be, 0xb2aa8e75, 0xd30df61a, 0x44d91dc4, 0x6917049c, 0xae9c8d65, 0xa43fef26, 0x83336593, 0x434d29df, 0xcc40b692, 0x000068 }, { 0x201b3ca, 0x597edc38, 0x3092140c, 0x64e4ed66, 0xf92d925a, 0x5a4d8c2c, 0x15e2e8db, 0xebeb87b, 0x579fab13, 0x67c1026, 0x2fb8bd6, 0x14470423, 0x6608d2a, 0xe1e344d4, 0xb2cc1407, 0xc0c190e2, 0x000079 }, { 0x155313a1, 0xe99f35b0, 0xf669dded, 0x8992e5cf, 0xc2c14b37, 0x985c3b45, 0x8b7ed322, 0xa0812427, 0x44bf1117, 0x97c3b288, 0x24d30a3b, 0x14a1d266, 0x40e29427, 0xf6bba1d5, 0x6954ff81, 0x7cd06094, 0x00011d } }, { { 0xf750a240, 0x974bcf28, 0xeffaa162, 0x7e38174a, 0xa706ee39, 0xef32a756, 0x14113d64, 0xeef783e8, 0x52a9471e, 0x518b34d8, 0x53b3963f, 0x4fb7cd50, 0x83abae99, 0xfad67e24, 0x5950ab8c, 0xbcb577fc, 0x0000d6 }, { 0x936e5b6f, 0x4a3707a3, 0x5b750458, 0x3e27f02c, 0x9e694aca, 0x20efc38c, 0x3655f03a, 0x7eaa0efb, 0xc8dfd5db, 0x8c64c6c1, 0x27e64f5b, 0x687c86da, 0x9f227873, 0x106d269c, 0xe47eb510, 0x1eb916c2, 0x000013 }, { 0x2b123275, 0x22202ffe, 0x677ebf07, 0x20267b34, 0x858a1a83, 0x205b5999, 0x7d79e737, 0x8369e43c, 0x4027e0f9, 0xc69757d9, 0x540f444f, 0x9ca53c2f, 0x6c9630e0, 0x7c06eac1, 0xcdc4c5c, 0xb0f33723, 0x0001f4 } }, { { 0xc2f60a, 0x4422917d, 0x7f6bd7bc, 0x110be6cd, 0x53660a51, 0x80677b4a, 0xb542df1b, 0x13f5c29, 0x7ed2000a, 0xbba3400e, 0xe57c8e67, 0xddeae25b, 0xdb81c2cc, 0xa7089239, 0x747a6631, 0x308361e3, 0x0001f7 }, { 0x2bec417d, 0x4c25cf89, 0xfec75766, 0x4e0598e2, 0x79db2851, 0x8dc8bd89, 0x2d86c0ef, 0x199f706c, 0x5a6d60af, 0x682a2c36, 0x41148939, 0x4a97ed98, 0xf7983df5, 0x6e1521de, 0x4847e460, 0x2e82206, 0x000031 }, { 0xbc92508d, 0xf723cc6a, 0x74dde5e6, 0xc0243161, 0xd723cd95, 0x5ce5bd64, 0xf953acb6, 0x65e43ae1, 0x27dfdb12, 0xe8dc2c5a, 0x7550de25, 0x86fc3506, 0xcc82267d, 0x47c6eb4b, 0x3bb5f65d, 0x427dc2b7, 0x0000c2 } }, { { 0xb95acb29, 0xbed6846f, 0xcd0afdf6, 0x63aedd56, 0xad85d5c3, 0x4c5541c3, 0x31e86a2e, 0xc6128401, 0x69cc83ea, 0xf7fbea5b, 0x671ccb3c, 0x37b3672d, 0x48654111, 0x11f8d0fa, 0x97306b47, 0xb45b6ce8, 0x0001bb }, { 0x6728f7da, 0x718f2ac8, 0x3ca58b77, 0xa9910fbe, 0x2792f2d9, 0xb63c1cd4, 0xae976f47, 0x4fae2ad2, 0x2d3dcfba, 0x880c468c, 0xf794dfa9, 0x9fe1b10a, 0xbb620cd6, 0xc938c3a1, 0x47b50903, 0xa883e314, 0x000088 }, { 0x2cd2d2f8, 0x15954d8b, 0xcb0f1ad1, 0xacf41413, 0x3082954a, 0xbd31a0c6, 0x546f1745, 0xf8ed5fa, 0x8bdbc494, 0x92318ba7, 0x61c4fae1, 0x82dd017b, 0xcdd44dec, 0x1e76a68b, 0x5b147c9f, 0x60065670, 0x0001ad } }, { { 0xd20bb7ae, 0xb087211, 0x076587, 0x2a5d409b, 0xe2c35418, 0x4c152485, 0xc926fbd9, 0x2860ca4, 0x6961c25e, 0x8197ecaf, 0xeeff5a0d, 0xf22b6fc1, 0x5cada7b9, 0xc7b693e2, 0xf8454e21, 0x2e03579a, 0x000027 }, { 0x25d00b3d, 0xd6692698, 0xebdbed1c, 0xa124a951, 0x3e3b9894, 0xb8039c36, 0x2b521208, 0x758fe3d7, 0x2b7d241, 0x5398d371, 0xe26dcbc5, 0x510f1082, 0x35427907, 0x436ec760, 0x3401723e, 0xb4312267, 0x000037 }, { 0xa4f5c60, 0xcbbdf588, 0x8d29450d, 0xc5c79491, 0x6b34fa3c, 0xc37e2f7, 0x48bda8ba, 0x68c5d116, 0xefca1ed1, 0x60041770, 0xf906e1fa, 0xcfd09a39, 0x88e5cceb, 0xf08847f8, 0x39a622f6, 0x94c7eef2, 0x00005b } }, { { 0x35bcd84, 0x1a5139fe, 0x4cc43767, 0x5728520d, 0x1cdc859c, 0x230aae93, 0xb4a3e7b1, 0x6e106052, 0x51000baf, 0x438f2319, 0xe2e92429, 0xf0828269, 0x5ae8c88d, 0xd5e448b0, 0x804429e9, 0x360fe2a, 0x000009 }, { 0xf4694d73, 0xeb346cef, 0x5726bcec, 0x636c08d, 0x9e32a21f, 0xcba17f11, 0xc01600a8, 0xfd6e9876, 0x11afa058, 0x4cf8250f, 0xbcc88dc, 0x99d9e051, 0x7f016103, 0xf1360d2b, 0xe1548a09, 0x1a2f3215, 0x00018c }, { 0x5c8d4ff7, 0xcbb0f0a8, 0xc3bcad9, 0x13913730, 0xf4a237be, 0xa1af5dee, 0xa506e083, 0x63a4da84, 0xee6ea618, 0xd61987a1, 0xdaf4d762, 0x2fbf316a, 0xc2aa4981, 0x9b8bd22c, 0xfd1e6293, 0x9a641d09, 0x000127 } }, { { 0x25cd144a, 0xb3750fd, 0xc16f8ee8, 0x9c931623, 0xb8fca230, 0xaeb7147f, 0x8a5bfe47, 0xd8ac6d0e, 0x66696138, 0x2fe20b1f, 0x1705f18c, 0x6ef7ada0, 0xfd6fb06a, 0x683f902d, 0x5c009d89, 0xbc8228ad, 0x000109 }, { 0x75d090bd, 0xca4378de, 0x8035396b, 0x47e21e8f, 0xb6565b14, 0xc2c7bdd2, 0x7b8ddc1d, 0xf4c192e7, 0xb4846e4a, 0xee241f33, 0x3dc91389, 0xb052170a, 0x6808b487, 0x4ff863e6, 0xe24a78a1, 0x31b60fc8, 0x0000d7 }, { 0x25b705f7, 0x4e19d6f, 0xb27cb1d7, 0x297d4377, 0xba2e1c5d, 0xd3f2e1a6, 0x8b69adc0, 0x50a76432, 0xe3a6e4a0, 0x7c101529, 0xa2e8efa9, 0xbc500b71, 0x4c520656, 0x62f1eef9, 0x6ddf84a7, 0x727ea37e, 0x00014d } }, { { 0x2fb5ba37, 0x4711ce75, 0x7e5e1f47, 0x9ca9ff19, 0xdccf2a77, 0x2e22186, 0x6e3f65d0, 0x5f4cf15b, 0xb8931b4d, 0xf364f392, 0x6ad19698, 0xaff38aa1, 0x2509f564, 0xfb519a3b, 0x83f0d7fc, 0x2453cb59, 0x0000d0 }, { 0x5782271, 0xd4647dba, 0x18377c5c, 0x5139584e, 0x1afadf6a, 0xce4c07c5, 0x35919405, 0xa54d4bbb, 0x971ea1e2, 0x90a65bbf, 0xeaf65c9c, 0x369dab81, 0xa794726a, 0xc1e3c1c5, 0xa87541a5, 0x64c9b184, 0x0000cb }, { 0x2af7c46, 0xf6466a81, 0x597dc7d4, 0xdc5073da, 0xbbf34679, 0xd4c87e5d, 0x990400ed, 0xa437535, 0x4a12858b, 0x3273cda4, 0x842d49d1, 0x4cf27419, 0x8ac739e9, 0x439d087a, 0xa7349c75, 0x566bdf8, 0x0000d1 } }, { { 0xb9bcbd7f, 0x3f04a3aa, 0x38f1f8fc, 0xfdf23af4, 0xb2ad391f, 0xd51e12fd, 0x72cdb104, 0xa9a966d2, 0x557b7962, 0x754d4441, 0x7c016dc, 0xc203066f, 0x2c87b7aa, 0x5a42cb85, 0xd086539c, 0xa18379fe, 0x0001e5 }, { 0x4f1f83f0, 0x99353134, 0x51e12e14, 0x42639a13, 0xddf535be, 0x4f0e4b01, 0x5c3bebd5, 0x73e4b0c2, 0xd17ff0eb, 0xaf83a659, 0x13d28c84, 0x46173449, 0xf0a3d93e, 0x931cf957, 0x20962d7c, 0x4bc7a130, 0x0001c9 }, { 0xb5316976, 0x9740322b, 0x1d1bd27, 0x4837c07, 0x5752957d, 0x6563b52b, 0xee77966f, 0x15778ab7, 0x8b008d03, 0x88d2f555, 0xe7bf4261, 0xd954c8e0, 0x96efe2a7, 0xef265735, 0x6e683935, 0xc739bd8c, 0x00005f } }, { { 0x45bf4459, 0xabbab1d6, 0x956cde73, 0xc7f6ad0f, 0x5ba2279, 0x6c1aed05, 0xd24da6b3, 0x6530439f, 0x51b3fe74, 0xa064bd67, 0xf276b1b9, 0x63c76946, 0xc08eac0c, 0x186a65d4, 0xbd204fb8, 0x5e2a7db1, 0x00011c }, { 0x5d6089f3, 0xb234e018, 0xa32c7c86, 0xdefc46f8, 0x14ac2aba, 0x6f624c5c, 0xdd28e654, 0x1ae9c5ca, 0xd493bee1, 0x590435ce, 0xe0c52727, 0x277571c1, 0xb5993ea0, 0x271e1635, 0x8a5f0f9c, 0xd7360ac2, 0x0001ae }, { 0xc570c591, 0xc81381a6, 0x81b0b421, 0x68be60ba, 0xefa83e4b, 0x6ca76724, 0x6aa811cb, 0x661bf63b, 0xabc7f9bc, 0x760d1354, 0xee3865e9, 0xdf3d95d5, 0x81a3dc8c, 0x727845ae, 0x92e98ba7, 0x9fd7973a, 0x0000d6 } }, { { 0x8d32f350, 0xdf0ca8a6, 0xcc6d3e08, 0xc67f38b0, 0xac7cb84a, 0x5115a72c, 0x57a97ddb, 0x33ff231d, 0x7118ae0b, 0xb0f323c6, 0xd2a88ac3, 0x3203980b, 0xfe3e7a69, 0xdd7b27a5, 0x23f873b, 0x7aeaf050, 0x00004d }, { 0x3aab9bf2, 0xd4ee71a9, 0x4fe9c58f, 0x5ff7cceb, 0x5ed2e880, 0x7e883bcf, 0xda95b293, 0xfe07a3c9, 0xc92c4bd6, 0xaaabf32f, 0x9eab694a, 0x2e1c4ba8, 0x2eb465f7, 0x3d1ea06a, 0xc4266d5b, 0xb51cc102, 0x000100 }, { 0x55cc1676, 0xff1dffb, 0x75840b5a, 0x29dac39b, 0x76194da9, 0xb7036894, 0x27b2e826, 0x5a28449e, 0xe7e97e3e, 0x172cb1d8, 0xc398dd42, 0x4ba0eab2, 0xa62ee93d, 0xbc36aff7, 0xd3ef7f96, 0xd80f6a88, 0x00018e } }, { { 0x1b8517f8, 0x384da6b6, 0xdc64dca4, 0x7d2a81d3, 0x8ace6fce, 0x5e6b3898, 0x985a9291, 0xf265770c, 0x3b83aa39, 0xad1322ee, 0xc82b3acf, 0x961f6fc2, 0x90bd0e90, 0x6f594b22, 0x6f03afb5, 0xb5f829fd, 0x0000d2 }, { 0x992d09bc, 0xe4fc6c5b, 0x2c7f2e7c, 0x7949124c, 0x572e28ba, 0x96498680, 0x59641cff, 0xde5c917d, 0xb60cd5f, 0x1ca25924, 0x629b4332, 0xc72905a9, 0x4d4c2fd4, 0xad7f0f13, 0x1ab30a31, 0x9d378458, 0x000081 }, { 0x580cd963, 0x7285bc41, 0xe24c0c87, 0xdf745611, 0x18308f50, 0xc0a8069c, 0xde89e463, 0x16a9085d, 0x4675ddd6, 0xe6c53aae, 0x520729f1, 0xf7da7a5f, 0x7d6d3394, 0xacf5bb08, 0x832b7a3d, 0xa97aebfa, 0x0001d7 } } }, { { { 0xe11ff1ff, 0x4ac94ddf, 0xf3864d6d, 0x8ed48332, 0x304e83b, 0xbbae8a8b, 0xf733f736, 0xa6e7bd25, 0x5da8bb9, 0x4f49e519, 0xb1b7a503, 0x3201e083, 0x5790da41, 0x42e3558e, 0xc9a0652c, 0x1410545b, 0x000129 }, { 0xaeb8882b, 0x6f08623f, 0xdefbf2ce, 0x44f4f37f, 0xb0baea96, 0xf903573f, 0x789a73e9, 0x928ab8c1, 0xd8c07ebb, 0xf7c0eddf, 0x55213b82, 0xab6486a1, 0x63f9021b, 0xd742d331, 0xa2967dfc, 0xdab6591e, 0x0001ce }, { 0x48c570b2, 0xec905a31, 0x62f1bb08, 0xeeb72b90, 0xa6d9b311, 0x25e66429, 0xb3cd54bf, 0xcab05c48, 0xc1ab9022, 0x3bbb31f7, 0xe73c954d, 0x4d183f8d, 0x7bfe17ab, 0xff79b2f6, 0xbe133a7a, 0x7f002833, 0x0001c4 } }, { { 0xda61a1b0, 0xefd9c798, 0x637fcbc6, 0x93bdd420, 0xab49da9a, 0x15382dcb, 0x3e87289, 0x935a9323, 0x440a56b4, 0x61832466, 0x498a0bba, 0xfedf0d48, 0xab7a6a94, 0x717554b9, 0xe44e58c0, 0xcd48a0dd, 0x00010c }, { 0x9779e223, 0x4ac399a3, 0xbf2bb7c4, 0xcedb344c, 0x57475a2e, 0xa2e01c1a, 0xaa9278ba, 0xd4788ed9, 0x538dfdbd, 0xd194b23c, 0x6d19da1, 0x4e6b3731, 0xd14ffdfc, 0x9e1cecca, 0x78dfd959, 0x103f4c3e, 0x00016f }, { 0x76ce3ee0, 0x5168aa43, 0x11a78ba4, 0x69e4efdd, 0x93fa6438, 0x35e33bf7, 0x6f8c4a1d, 0x300db4a3, 0xcf21437, 0xe70b2d98, 0xb24cd819, 0xf3c289cf, 0x8f97d1d6, 0xc31d51dd, 0x3936840b, 0x12464d79, 0x00005e } }, { { 0x8e076e20, 0xe6876735, 0x4ba47318, 0xb377695f, 0xc71db1d0, 0xd6b90c51, 0x44dce034, 0xf376e275, 0x566167e3, 0xf2c32729, 0x67c5ec0d, 0x3f01b330, 0x813840ce, 0x4dfb0948, 0xbf7ee7cc, 0x103d1212, 0x0000b1 }, { 0x18d0f081, 0xe2b0f279, 0x535badc9, 0x962853c2, 0x2ee79c7d, 0x90c2b7c7, 0x2296e7c3, 0x9142167d, 0x3582541, 0x81c1cd6c, 0xce3fd3b8, 0x9ffc77e1, 0x94210c83, 0x8ec5861f, 0x9d236892, 0x1a8069eb, 0x00001b }, { 0x48938752, 0xf76c3f80, 0x9870edf7, 0x316c99ba, 0x61ba050f, 0xdbe89c4, 0xd14533d0, 0x63caae61, 0xb83b1d1c, 0xd62fb507, 0x2d078e16, 0x9fa15ac1, 0x1edf8202, 0xdeaa511f, 0x5942b06e, 0xadc1b6bb, 0x00010c } }, { { 0x5dbb427f, 0xd713718c, 0xf7c99fd0, 0xd87bfc25, 0x6665d1ea, 0xcf9a214e, 0x80d23df7, 0x1e3ff25d, 0xe6553edc, 0xb447a1fa, 0xa4d636fe, 0xbe4cdc3b, 0x9831a1af, 0xfbe7b0c8, 0x8c853541, 0x58c8861b, 0x000034 }, { 0x8553974, 0x87f3574a, 0x189f5cda, 0x8be038f6, 0x64b95dd3, 0x541eea54, 0xadc5ce8f, 0x292e9742, 0x9fde4f73, 0x8eed7bcc, 0xdd9388d2, 0x963db90a, 0xb92bee87, 0x3f489e66, 0xdd1c8683, 0xb67bb948, 0x000017 }, { 0xa42f62d7, 0xa0cda205, 0x1f9a2286, 0xda8af532, 0xed62cb0d, 0xda8a9b7f, 0xabbbe2d0, 0xe2759845, 0xee952c6b, 0xf47e5f2, 0x9752ad39, 0x20be6127, 0xdddcea3c, 0x76ebe354, 0x65421f82, 0x46c28f52, 0x0000b4 } }, { { 0x9bd83d13, 0xbb701ba7, 0x42f8b3b1, 0xf282b5db, 0x56bb44de, 0x15ec6dff, 0xfd4d02be, 0x30e3aaef, 0xb08af535, 0xa66c44da, 0xdc8465b8, 0x94a5122b, 0x81a53579, 0x3bece3a9, 0x8a8e2e2b, 0x9a35d449, 0x000083 }, { 0x5bf2789f, 0x5fe5288c, 0x46e5e5c2, 0x288ec069, 0x8c970926, 0xd684ea5, 0xc55eea95, 0x6a0b2312, 0x279aab7d, 0xdf27f818, 0x4127d48a, 0x3c84a765, 0xf42fbf4f, 0xce784220, 0x8c35156, 0x861c80b2, 0x0000ae }, { 0x4efaf41e, 0xc0549acf, 0x6f6c1b1f, 0x51016e21, 0xfd7118ab, 0x4fee7dd9, 0x6a591e11, 0xa37626b8, 0xe23c9a40, 0x954679f8, 0x488420c3, 0xf8f4218d, 0xa9fa7854, 0x3b68de70, 0xb3658e00, 0x3fa003a2, 0x0000b5 } }, { { 0xc961ddb8, 0xda87fa2, 0xb71b511, 0xdfc938b, 0x4c9e7fc8, 0x6c8dfbe3, 0x841806d9, 0x38d27867, 0xd4df7623, 0x1903bb8e, 0x8d6c1fb6, 0xd37c2fe0, 0xa8989aee, 0x78b00e52, 0xeeb89d17, 0x4caad8ac, 0x000106 }, { 0xac8597ae, 0xf0ba8dee, 0xf5218d5c, 0xaa9b3934, 0x80cb677a, 0xd1c1c88d, 0xb9efbf0d, 0xcaa0183a, 0xeb00347f, 0x18f75e42, 0xd42b653, 0x5d1773bb, 0xc605d5e2, 0xa666bd2e, 0x8333a1d8, 0x12d27c88, 0x0001ba }, { 0xbb7fe699, 0x9596681c, 0x94f2be17, 0xe2e997d0, 0xa5ceb6c4, 0x6e14d7f1, 0xd272c806, 0x36b553c1, 0x8f7e8cb4, 0xc913f931, 0x146937cd, 0x6e3bda89, 0x5fcb99d1, 0x6961b60e, 0xb672d45e, 0x7e2b4779, 0x0001b8 } }, { { 0xcbc5cb3, 0xbdf7240c, 0x9272f88d, 0x13f6a2a3, 0x631726dc, 0xf09adbff, 0x3ea7634, 0x606c1101, 0x76db0902, 0x264376f6, 0x9b70c8, 0xd0adb9c0, 0x4759839c, 0x396fb99b, 0x4d8ca05f, 0x1416af94, 0x000014 }, { 0x268b4ce7, 0x2bfea0fe, 0xed0061bb, 0x9e10c90b, 0xada5b14d, 0xc695b0b, 0x6c5355b7, 0x5c2d0852, 0x4adfa6b1, 0xe7dfbd83, 0x85bf7cee, 0x888812e3, 0xae0ef2c7, 0xa9a066b2, 0xb0073949, 0xeb7daa22, 0x000138 }, { 0xad63368e, 0x4bd2f771, 0x531634b9, 0xe9aa82be, 0xcf455b15, 0x4c0848b, 0x3b662f29, 0x8d874cdf, 0xa64c9c30, 0xb09da856, 0x8d657b5c, 0x472fa5b7, 0xecb355fc, 0xae49020, 0xf8330e5d, 0x4ad7584b, 0x00017a } }, { { 0xc23135d5, 0xc0c84fc2, 0x33912c0b, 0x814d9e36, 0x968abc1d, 0x866214f0, 0xb739e309, 0xbbbe8620, 0x8983089, 0xccd27d86, 0xc265fef, 0xe6c90fb4, 0xb5c822e6, 0xf99586b5, 0x2d0883b6, 0xeaa327c9, 0x00009b }, { 0xa29d6b48, 0x95db2a80, 0xbcb8a071, 0xddc98548, 0xe577c781, 0xe3ba469e, 0x19f18fe6, 0x4c2a725a, 0x9138b8a1, 0x1cd00ae0, 0xce9f3950, 0xb466d683, 0x7b20da6e, 0xaa5e46c7, 0x19c9d8b5, 0x50df2d70, 0x0000d8 }, { 0x96db4416, 0xcbfc086f, 0xa1512ee, 0x7ee9963b, 0x6b737495, 0xa252026a, 0x7d3cfbb8, 0x8e79f95d, 0x6086a99b, 0x6c52cd4c, 0x65f2c728, 0x5a01cc36, 0xfcd08592, 0xad7d24eb, 0xa92723f0, 0x275ea77f, 00000000 } }, { { 0x377b8a46, 0xf8c642ee, 0x450397b, 0xc6b6129b, 0x1a9925a5, 0x52050f86, 0x2351e275, 0xdfc0c284, 0xab4c8827, 0x65eda09b, 0xb29da2e7, 0x12bb5b11, 0x2bbafd8b, 0x4041c76c, 0x921522bc, 0x3ae676c0, 0x0000fa }, { 0x930872c8, 0x4ff4f2b7, 0xf9bb7e67, 0x70cd0d2c, 0x33f19a0c, 0x80d4d527, 0x7d8cdc8d, 0xfa47c991, 0x427ccd6a, 0x3b22b0dc, 0x97333082, 0xdc007187, 0xcec607f2, 0xb79ee64f, 0xcc585672, 0x41bcab02, 0x0000af }, { 0xf56b12fd, 0xdda0daa5, 0xc3b10044, 0xa1f8a215, 0x23545180, 0x960f4753, 0xb88879d7, 0x2a4ecef7, 0x8eea7577, 0x4c9033b6, 0x990b201e, 0x48dfa0a2, 0xf5ba0a18, 0x888ce655, 0xb1388f56, 0x489c0e3d, 0x00012a } }, { { 0x140b7559, 0x25ad5bd9, 0xb5f5053, 0x8eb8f95, 0x377025bb, 0x9cfda3aa, 0x555e5d26, 0x62c86b00, 0x84be3c27, 0x76709c09, 0x76c041d8, 0x40e64571, 0x6b9ffc56, 0xc1d99b59, 0xb49ed952, 0x6f019453, 0x0001f9 }, { 0x5e2c7566, 0x76b9dbe, 0x7ac772c1, 0x7f7ef69, 0x2ad6fb76, 0x16ccc987, 0x128af01a, 0xa5d7a8c2, 0x9ae87121, 0xb4631ab3, 0xd4f27001, 0x6187c52, 0xa900696a, 0x10f85af1, 0x477bf39c, 0xbeff6af, 0x0001c5 }, { 0x637c27fc, 0xd58e6707, 0x5cfe9468, 0x559c8369, 0xaaa1f2df, 0x12cb5f88, 0x712be0a9, 0x80dce10a, 0x9d98c7e7, 0x909bc121, 0x98189c93, 0x53fffcff, 0xb835ce67, 0x71284b01, 0xb86a289f, 0x5041858f, 0x000167 } }, { { 0x9212092b, 0xc7a6eed5, 0x29a54eb9, 0x9eca1a6e, 0x3fd27bcb, 0x2fafb4b0, 0x54bc452a, 0xd7892ef6, 0x2807c602, 0xe41c2500, 0xcb6bc3c4, 0x365d3c1e, 0xde318e3, 0xfc35a2fb, 0x374a02e0, 0x10486f5d, 0x00011c }, { 0x9659fd63, 0xeaa0058f, 0xce173856, 0xfd002754, 0x3b3e9680, 0xaa356687, 0x76f318c, 0x9ff707c, 0xdd7c8c20, 0x80a2cc34, 0x3044a0e7, 0xb274d0b4, 0x9e2be50, 0x443a7c93, 0x7745d8e7, 0xa6ddcfbd, 0x0000f7 }, { 0x95a9b74, 0xe6a844a8, 0x6464f3fa, 0xa772e180, 0xedc63378, 0xc9610f01, 0x81b07763, 0xe65ebe28, 0x5fefc86f, 0xa1450c11, 0x9789f9af, 0x852610d4, 0xacf22c8, 0x915eda28, 0xeeeab64d, 0xa623aa68, 0x000064 } }, { { 0x68f25334, 0xfd17fb19, 0xb831fd55, 0x9ecc379d, 0xa552895a, 0xe373ad17, 0xa15c6baf, 0xdc5608d0, 0x380624d2, 0x411b148b, 0x13119a75, 0xc848eaa1, 0xc37bc743, 0x6994cbce, 0x461a2fe0, 0xd1b86fb1, 0x0000e9 }, { 0x20f6e6a4, 0x4a21b2d4, 0xc9d5e322, 0xb562ce1, 0xa53f8659, 0xf9589567, 0x7ed9e2b2, 0xedf993ae, 0x43d52bc5, 0xad94e7da, 0xf76f230, 0x9458f4aa, 0x450aff58, 0x1cb4222e, 0x7c931531, 0x5163a154, 0x000164 }, { 0x4604cc01, 0xeefc52e6, 0x4ed45d91, 0xdc87f750, 0xfc30e2de, 0xabf2f3b5, 0xfc6df5ce, 0xef4301a4, 0x64013b84, 0x929eab88, 0xce2488a1, 0xb40c6099, 0x5fe51fca, 0x1e924272, 0x7f2b8813, 0xd399f987, 0x00003a } }, { { 0x12557216, 0x243f22cf, 0x8d2a1fbb, 0xdf366d8c, 0xfd04791b, 0x94730fb8, 0x835a95c, 0xc4a5d115, 0x2f90f389, 0x34833e6a, 0x338a7c0c, 0xb07e739a, 0x2eade8a9, 0x808abb37, 0x6c3eb64d, 0x7bcb0776, 0x000012 }, { 0x3622761d, 0x5f42b301, 0x8cd04cc0, 0x234c2953, 0x823dfc8, 0xca886f4b, 0x4d2ba9ed, 0xfe02bb13, 0x5c278c40, 0x3764e231, 0xa6811c5f, 0xb7e1ffbb, 0x38c64c72, 0x6cb259af, 0x1a324c0c, 0x6f5a50cc, 0x000110 }, { 0x45b76f6a, 0xa47a813f, 0x1610acf8, 0x250cd401, 0x65feead4, 0x388c6370, 0x5fbe89a3, 0x40d0b109, 0x76890607, 0xbd5f53bc, 0xc6e20644, 0x5c146c08, 0x2c8bbb2f, 0x7e5eadc6, 0xb4c4a042, 0x65fc5f24, 0x0001e5 } }, { { 0x54872f3c, 0x888ae072, 0x83014c34, 0x8ab107ca, 0xd2cd0031, 0xbd02c0bb, 0x4c07e460, 0x1327edf6, 0x759f4377, 0x94d3e6a2, 0x499f42c1, 0x67eb3444, 0x325df5f9, 0x9645d11f, 0xbbe3ae52, 0x960d2548, 0x0000ae }, { 0xa5b26484, 0xa52ee47d, 0xf8ba5a56, 0xf4c54988, 0xf05a293c, 0x763dccb1, 0x64791d0f, 0xe6d1742d, 0xc87fa01b, 0xafeff405, 0x9091480b, 0x46c6d7cd, 0x313cb754, 0xd8067276, 0x8da1bd29, 0x7f808edc, 0x000175 }, { 0xae97745, 0x7c676c21, 0x9172fb18, 0xed006ad1, 0xbd310b31, 0xa8da1714, 0x76d62665, 0x8f899e67, 0x459e3cf5, 0x67ce73e7, 0xf0c5f815, 0xb098f5b2, 0xabfa9a04, 0x34b2244a, 0xb783fd8e, 0x4284ef41, 0x0001d1 } }, { { 0xbc28d0ee, 0xe4b48590, 0xe504068b, 0x340a5301, 0xb0defdca, 0x9af18d56, 0xcc9e8f75, 0xa727ed89, 0x78332158, 0xec55a623, 0xb29fcf60, 0xf0058d26, 0xd651fa47, 0x16715df1, 0xafeb6afb, 0x7e3ba50e, 0x0000ae }, { 0x209f9651, 0xe1ea886f, 0xe95eda0e, 0x6468df23, 0xd54783e3, 0xf8d3fd96, 0xcf6e44de, 0xebb4a22b, 0x45935159, 0x4f916198, 0xf593a223, 0x3ee991ec, 0x642f0970, 0xb0d3580e, 0x28ed9a59, 0xed18bcd0, 0x000124 }, { 0x865dca3c, 0xf3281a45, 0x427ab48a, 0x2037c2b, 0xfbca1e, 0xc5708981, 0xce7fa42b, 0xd52b478a, 0x4efdce4f, 0x88435a77, 0xd4bb986, 0x89585822, 0xc89d9ce6, 0x2919529e, 0x370d4d08, 0xfb34d564, 0x0000d7 } } }, { { { 0xdd3c81d5, 0xbc588db4, 0xff2910e0, 0x57506877, 0x7d607c42, 0xcc1d9118, 0x7d6b6eaa, 0x9a8b0875, 0xceea944d, 0x213723, 0xcd8dfe44, 0xacc8697b, 0xb3f26749, 0x2b2640b9, 0x7af6bd9b, 0xe11c6324, 0x000072 }, { 0xce3f9243, 0x235a33e8, 0x193d3aa7, 0xccdef89a, 0xc62907e9, 0x74d1972f, 0xfcf415a2, 0x24c16803, 0xd44a65d6, 0x777c3a92, 0xcf51c4b0, 0xae4bb43a, 0x5109c1ff, 0x30876bea, 0xd33097ba, 0xa21bf127, 0x000079 }, { 0x423036b9, 0xd6bdb804, 0xff0cb81d, 0x83f4087f, 0xc5e848a0, 0x47f22c2c, 0xccec745b, 0x8ee67e2a, 0x653cdf7, 0x6fd39049, 0xd74bec43, 0x71c99d2e, 0xae73175a, 0xb36da08d, 0x8c561482, 0x71460f1e, 0x000001 } }, { { 0x97e93db3, 0x85547108, 0xea30bba8, 0x237e0c6b, 0x73e42f6, 0x6db4efda, 0xafeb034a, 0x4d152e1d, 0xc08ccbb4, 0xae4c323f, 0x2b78a14a, 0x1733685d, 0xe7408687, 0xd24483bc, 0xd3946cc3, 0x117f617c, 0x0001b1 }, { 0xb41d684a, 0x8c6f7d94, 0x89b59c59, 0xe2b5ca6, 0x927f8ee7, 0x2be9d872, 0xf9ef128a, 0x50eef5b9, 0x7f8c28e3, 0x7dd088c0, 0x2c97550f, 0x1c6f365d, 0x9ad9c47c, 0x2040ffef, 0x8d8c3c7e, 0xd59cf80d, 0x0001fa }, { 0xc8ef1c2b, 0xf98311f7, 0x8b0189ec, 0xe380e75c, 0xf54d3202, 0x8f119ff, 0x31a009fe, 0xac6a1a70, 0x5a29ddcf, 0x73dc18c4, 0x8622895c, 0xa0178148, 0x7d168815, 0xc26eba1f, 0x4e016fef, 0x3b79b46f, 0x0000dd } }, { { 0x484e4ab, 0xb6a77353, 0xac4954d8, 0xde7698ee, 0x13e11d12, 0xceb6de16, 0x1b7eb223, 0x191292ae, 0x5909dbad, 0x73193bdb, 0x2bc42285, 0xbd32a15b, 0xaf93b1ca, 0xf92d9692, 0xbc021878, 0xa2d812be, 0x00014f }, { 0x3bb7d219, 0xc9ef128d, 0x42e223fb, 0xf8c85943, 0x63636e7d, 0x5974b46f, 0xcadac4a, 0xa5b4b80, 0x2bb8c600, 0xc60e80ed, 0x844a739b, 0x1b3d18d2, 0x4fab941e, 0x9d34c9dd, 0xaece7aa5, 0x3f7b7895, 0x0000ac }, { 0x987d91ea, 0x4952a9f4, 0x430a2ec0, 0xf21f4f63, 0xb6028d2d, 0x5bd5c119, 0x987fa199, 0x48464162, 0x9258b0b5, 0x2128caa8, 0x3d6ccfe7, 0xc83ec3c6, 0x45ab39e4, 0xe034e4dc, 0x326c1c86, 0x4ee031c6, 0x0000bd } }, { { 0x8e49a0fd, 0x5f77c87d, 0x6d6cce6a, 0x203f482b, 0xedfa2205, 0x7c95f230, 0x9b57a063, 0x9d8410b9, 0x39f94f39, 0x777b8bd7, 0xcf088755, 0x6176363d, 0xfd1a003a, 0x6d37d4b, 0x154309c1, 0x69c80409, 0x00015f }, { 0xa521013c, 0xf52c4ef7, 0xf1913b39, 0x63696070, 0x3afc69f7, 0x6029c3fb, 0xa9c7f6e3, 0x25106bd, 0x5b2bdc29, 0xbc3ba976, 0x695fc7ec, 0xc6f693e0, 0xdd3aab3d, 0xec793d47, 0xae58bf7f, 0x377489d5, 0x0001ae }, { 0x43b56d2f, 0x2023e746, 0xa24ec604, 0x3554215, 0x359dd492, 0xb6e8195d, 0x3dbfad00, 0xc1c9b0ac, 0x8d41dfd3, 0xa5a28f8e, 0xba6b570a, 0x856c48eb, 0x73ac285c, 0x7e6a8d5e, 0x22f7027f, 0x3e3c5e97, 0x0001ab } }, { { 0x2585c57, 0xdd6b19e5, 0x6256213f, 0x89b0314c, 0x1ec8364a, 0xbd7de604, 0x8b7202cc, 0x153773fd, 0x55486659, 0xabd5e0d1, 0x75b4bf9a, 0x6a49051, 0x43cf6921, 0x2917dc8c, 0x3284b632, 0xe8d8dba1, 0x0000b7 }, { 0x2ca46564, 0x8601067a, 0xc1be3825, 0xa3c1154a, 0xabbac6a5, 0xc1b8bf1e, 0x9a5fa12c, 0xaec8dc9d, 0xfa291f38, 0xaaf8424f, 0x58e85060, 0xc4b20efe, 0x8215eaae, 0x23fd82e7, 0x7d4293ab, 0x2d4b9f9e, 0x0000c4 }, { 0xc093750d, 0x40885761, 0xddbbdafe, 0x984b56ea, 0x382711a7, 0x5ddab984, 0x575680bc, 0xa14bcc88, 0x1c0c9d84, 0x2c3d6fba, 0xd43f8fb8, 0xd1bfcb32, 0x322dd05b, 0xbd2f6353, 0x70629366, 0x76bd0472, 0x0000c0 } }, { { 0x783ed67e, 0x3fd83d95, 0xd3de0f86, 0x91a1ca13, 0x3c963802, 0x2d632947, 0x9ed719d1, 0x797783f9, 0xfe309b63, 0x4789114e, 0x34896c3e, 0x6d79d66a, 0x95ea1704, 0xb10b2923, 0x1d09669d, 0x44513951, 0x0000ba }, { 0x6ec094d2, 0x3d1e65a1, 0x9218260f, 0x1f399238, 0x392a25e4, 0x8e3f432f, 0xe7992b0f, 0x93d6c034, 0x540b0ffb, 0x92f7f8b9, 0x8c9d86e, 0x12a0e909, 0x968219d, 0x96ba0802, 0x9df35b35, 0xad590be, 0x00002d }, { 0x549e718, 0x5cde4f60, 0x52f80630, 0x10dfc67e, 0xeddf7f9f, 0xe55dad58, 0x2b62b0d2, 0x2de64386, 0xd2107771, 0x62a0e7f6, 0xfaa475a6, 0xfcd22327, 0x3198a816, 0x2cabc9e, 0xaaf4e907, 0x84a6f852, 0x0001cb } }, { { 0x72ab6432, 0x9c203729, 0x3865d7b9, 0x13c94c94, 0x8ed517e, 0x8ae45842, 0xe3a0bad8, 0xae85a9b2, 0x24e9bf8c, 0x72d8aa21, 0xde8534e0, 0xf89f3757, 0x854ff324, 0x38238e01, 0xdca8aab8, 0xc9b81b37, 0x000036 }, { 0xe5a87459, 0x68e9e4f1, 0xd96b4aa4, 0xb52bf72d, 0x2b4319cc, 0x421c2e0e, 0xd6b466ab, 0x9de80d1f, 0x7c8a1e41, 0x6060834b, 0x85c89486, 0x370bfc7d, 0x42c467d0, 0x387d952e, 0x2855341e, 0x8cba588b, 0x000018 }, { 0xb78f3964, 0xc77bea9c, 0x20f8ff89, 0x9ba8f871, 0x7857022f, 0xe383399b, 0xa5313942, 0xeb7b16c9, 0x638e92ba, 0xc665b0f2, 0x28621804, 0x7b0a8da5, 0x91369dab, 0xf4f0d030, 0x1c1cfaa4, 0x991220d6, 0x000080 } }, { { 0xce2f46ac, 0xd419a4f2, 0xb02a8e1b, 0x8520a2f6, 0x9bce45e3, 0xa421d204, 0x963e081f, 0xcac1879e, 0x3b0b1bab, 0x33b1aa21, 0x6bd1fd62, 0x3bbfe4e5, 0x1dc0a922, 0x4dd22a2f, 0xf0c8ed52, 0x17f9e54e, 0x00001d }, { 0x19283940, 0x45a1643d, 0x74c8f163, 0xc0487e5f, 0x3c35e74d, 0x499c38df, 0x8c7563e2, 0xe70c7471, 0x1852c2a3, 0x69b578f4, 0x445bef5e, 0xa93877ab, 0xd51eb759, 0x16f760c0, 0x7e33eeec, 0x8ecdd5b1, 0x000109 }, { 0xcfb8c83, 0xc9682686, 0x4b5f7186, 0x1c9084e9, 0x2e2501a0, 0xa836af22, 0x839bb7d4, 0x5593175a, 0x58df9257, 0x7cab4119, 0xb2bac7df, 0x85af0d98, 0x16862d8f, 0xe8ad8354, 0x2b5b7411, 0x57f55a90, 0x00015c } }, { { 0xe0db0eb5, 0x35037710, 0xc969cdb7, 0xbce9b84d, 0x651e3d5e, 0x7155b89c, 0x12dad90d, 0x72a7e184, 0xd2eb7c5a, 0x57058d85, 0xc907069d, 0xdf49dfce, 0xa6311b4c, 0xf5395e55, 0x285880f5, 0x8b5d5ecd, 0x0000c4 }, { 0xa6ebe98a, 0x9e769d66, 0xaac59539, 0xff88588c, 0x4a5730f7, 0xa9da81fb, 0x8cb567a0, 0xbc0cad83, 0xc73f7e92, 0x7e73e755, 0x8d722aba, 0x6d6d9e30, 0xbc873f38, 0xc1c0ea05, 0xf9c297af, 0x4ba6dbfe, 0x000153 }, { 0x60f3ce49, 0xbb0eeaf4, 0x872a91c4, 0xffa1df4e, 0xb4d9229, 0xefc99c28, 0xdccb88d7, 0x895f8785, 0x91d18787, 0x8183d7ca, 0x5a0ca6f4, 0x98415ad4, 0x4cbc874, 0x11ec04d9, 0xdc7e0d3, 0xf4fdbff2, 0x000023 } }, { { 0xc6109642, 0x38df8c2f, 0x4c2b0cae, 0x6ca8b099, 0x73fb1c98, 0x48e60a26, 0x20933a83, 0x1b629d29, 0xfd9227f1, 0xd4fa35c1, 0xfc2e22e5, 0x5588f5d2, 0x996c614d, 0x1a167ebf, 0x792fee5, 0x1534ca2, 0x00013a }, { 0x6e15cae4, 0x9ab81c00, 0xd0c78e2c, 0x9644e0b3, 0x6b2c3999, 0x4d0fefd3, 0xb58e7a81, 0x51aec9e1, 0xb5f506ae, 0x4ce1d546, 0x79303d9d, 0x5ba07526, 0xe41677f1, 0xed89eb2, 0x5e5d817b, 0xe921f4c8, 0x000111 }, { 0x87ed2f52, 0x81db38f8, 0x43b25592, 0x623f8f32, 0xa84be870, 0x3976eec0, 0xa276e57c, 0xe6d442e1, 0x8cf53673, 0xf134aec7, 0xdb2d02df, 0x51724933, 0x5157ab55, 0x97cbb4ba, 0xe3fb925c, 0x92976944, 0x000115 } }, { { 0xb2b30966, 0x9cf5171e, 0x36e09d43, 0x92c7020a, 0x801e8014, 0x58d23a5, 0x93234555, 0xc8cdcb97, 0xfb718f58, 0x7214d32d, 0x3bde45b6, 0x1bb15624, 0x6ad69a04, 0x51412b21, 0x8f96a066, 0x4e6948c0, 0x0001cc }, { 0xdc0b3ac0, 0x1bff8933, 0xbd21d677, 0xe271bda1, 0xd61cd45e, 0x19a91e3e, 0x4a6ae3b3, 0x9a724fae, 0xf32dc21e, 0x12c71b6d, 0xe580aa3d, 0xccae2a13, 0x71288994, 0xc62e3b08, 0xb69b4c21, 0xc3a344bf, 0x000147 }, { 0x45f81d65, 0x75bdf33f, 0x8965d335, 0x9574a200, 0x4361743a, 0x3dedca9e, 0xc4f21f57, 0x19446fb6, 0x72806c64, 0xf60b32d4, 0xf36a72a9, 0x8e3e0bde, 0xe34a2a33, 0xa2e77c58, 0xafdd8961, 0x13940259, 0x000039 } }, { { 0x4dac8b2e, 0xd3896996, 0xe8325543, 0xe5b2c645, 0x7f8959a5, 0x7eaa03ba, 0x1b0e07a3, 0xe41aa905, 0x6de86232, 0xf12a927a, 0xba208814, 0x25f0a33f, 0x6539baf5, 0x74c78735, 0xe53cc57c, 0xd40c8108, 0x0001ea }, { 0x8d290192, 0xef9401d9, 0x1073451c, 0xfe0a076c, 0x445acee8, 0x1383d1e4, 0x82d3aa96, 0x67cffe59, 0x7104bcf2, 0x84aab05c, 0xee919896, 0xca11d595, 0xcb2ab35d, 0x66ee5019, 0xe74b18d9, 0xe386ce64, 0x000086 }, { 0x9fb07434, 0x8f784ea8, 0xcd62a486, 0x5166ff1d, 0xc90906b, 0xcd10294b, 0xe558db61, 0x868cfd59, 0x31f8b043, 0x31e17ccc, 0x784a1a55, 0x31022d93, 0xd3c891a1, 0xfce8d938, 0x5f09d4bf, 0x4edd0490, 0x000032 } }, { { 0x9aefd6e8, 0x7a4ad448, 0x278fdee3, 0xa51b695a, 0xae038dd7, 0x3640c001, 0xbcfcd0c, 0x007475, 0x36097a68, 0xd3b41e68, 0x457ac39a, 0x70232114, 0x7a31bda7, 0x23bc088, 0xb8d008d2, 0x98c21855, 0x0000fd }, { 0x782dc57d, 0x7630de7c, 0x40d8885e, 0x814be84b, 0x78ca0088, 0x95f1c3d7, 0x693c2e74, 0xbb3e01a5, 0x35f3591c, 0x9bbbf89a, 0x293e2829, 0xb50ba1c3, 0x40e183ad, 0x4806773b, 0xbb7dec92, 0x6c6ed5c2, 0x0000a1 }, { 0x1c17e935, 0x9e62e9a5, 0x90cdb35a, 0x1bdb9edd, 0xd078d019, 0x76e7b28c, 0x4b12667d, 0xe7917b0e, 0x700f418f, 0x7a8e66f, 0x91df6341, 0xcb628492, 0xfca440ff, 0xc952a866, 0x27d67a3, 0xd2b3bc84, 0x000151 } }, { { 0x9d15e789, 0xa245cc47, 0x27ea431d, 0x9e0d83ea, 0x58096be2, 0x209b85cb, 0xc9ef03f7, 0x3f9e2377, 0x70c7ca6c, 0x42dad667, 0x5893c8c, 0xbc53f566, 0x2554f2a4, 0x487cdeb7, 0xff3a9a2e, 0x5094b20c, 0x000029 }, { 0x2d8b6411, 0x9c3d3c2e, 0x2efc4399, 0xdaf83eb2, 0xdbf6368a, 0x28c0735d, 0xc3c92c79, 0x938c8d53, 0x17681040, 0x5e7b2281, 0x1d107dbf, 0x2387409, 0x3682edcc, 0x56d500e0, 0x7a96cee6, 0x579699a0, 0x000129 }, { 0x4770ca86, 0x4cda26fd, 0xb80704b2, 0x2e63d895, 0x84529682, 0x577defeb, 0xf7184e6, 0xb23182e4, 0xc8dd5836, 0x19a0da02, 0x64401276, 0x12a57493, 0x3ee2d258, 0x4994c04a, 0x470633c0, 0xa1385f45, 0x0001a9 } }, { { 0xdad3da8, 0x8ac92b30, 0x264eed85, 0xad009db2, 0x28d20572, 0xc7adf13f, 0x8dd363e3, 0xecf27a47, 0x6c59cb7, 0x36dcb282, 0x3a501923, 0x9f52dc0d, 0x6e635db6, 0xb489961a, 0x284b470e, 0xc21ffb6d, 0x00016e }, { 0x5133620a, 0xab1718e9, 0xde79cab1, 0x3e381782, 0x2abeedfd, 0x8a8163fc, 0x7ab6c117, 0x5c42f8d, 0x76e1887a, 0x1273983f, 0xabd29601, 0x63da0071, 0x5a42ddb9, 0xf4b9786, 0xb9b728, 0xbb0b51c, 0x0001c2 }, { 0xb52c4e6f, 0x9c963bb3, 0x32f53f1a, 0xb18c4753, 0xbc53afcc, 0x105f3375, 0xa0419e84, 0x6c5c3a8b, 0x5393762c, 0xd3851410, 0xea05a74c, 0xc93f4340, 0x4181e701, 0x723fd960, 0xd889b25a, 0x79bc0d36, 0x000189 } } }, { { { 0xa5e8aedd, 0x93b70d73, 0xd2fd9b07, 0x474e1987, 0x2a11a750, 0x5867e1c5, 0xf0a3715b, 0x7bd7a031, 0x5406d02d, 0x15929ae4, 0x8bb1447, 0xb4a45f8e, 0xa1fe2f7a, 0x378d5697, 0xad908e, 0xffd79f4a, 0x0000ec }, { 0xbc087787, 0x786c8ddf, 0xd9c6a6c3, 0x574a53b0, 0xb917f58e, 0x7abe3c9e, 0xb2b027a0, 0x55f22dfa, 0x79f3769f, 0x7438a193, 0x547b2d8f, 0xd37092a, 0x7e83e3ce, 0x6f54e011, 0x6fd46e26, 0xdaf1c879, 0x000025 }, { 0x6ba2b4d1, 0x33ca0436, 0x1ddb42ed, 0x795f9f59, 0xf7efabf2, 0x8bc06ea, 0xcf2a04cc, 0x4a6c063f, 0xe99958a2, 0x63dc207b, 0x897ef2e3, 0x4ed47cf7, 0x9d2ddb41, 0x214343af, 0xdeb56e5, 0x87eeb0bc, 0x000173 } }, { { 0x1bbccd46, 0x152798d2, 0x2f21ab82, 0xe07f0da5, 0xb1b074a2, 0xbedbc35, 0xb6590d60, 0xf0373c94, 0xa8724eeb, 0xb7141b24, 0xab67901e, 0x9e4030bf, 0xfff76d35, 0x26faf0a5, 0xe8b96e5b, 0x5c3e9f21, 0x0001d5 }, { 0xc178b706, 0x44ff5943, 0xce7126fb, 0x288b5b53, 0x826da35b, 0xe086db2a, 0xf3b3aa4a, 0x4082915f, 0x78d22719, 0xaf13df0e, 0xd3f1b09c, 0xb888619f, 0xb1fd1c6f, 0x8fe40db9, 0x6fa596b, 0xfce2c184, 0x000101 }, { 0xa2b844b7, 0xf203bcc6, 0x78262d8, 0x66b19803, 0x11e10dc1, 0x6aaf796, 0x3de978dc, 0xe652d2ce, 0xecf8083f, 0x8ea9d69f, 0x5ef8f2d4, 0x7f86105, 0x9a6660d, 0xaed60fcc, 0xb5eb75ca, 0x86f42743, 0x000177 } }, { { 0x13071e4a, 0xb8df3bd1, 0xeb20048a, 0xcad17674, 0xcc68da10, 0xce29a733, 0x471c1073, 0x6ce332e0, 0x3a4d540e, 0xf1a2e02c, 0x38826a40, 0xbcc24597, 0x90ae54d8, 0xe203af06, 0x195129b4, 0x5ab0b45e, 0x0001bb }, { 0x536e9bec, 0xe5e4dc33, 0xbe6420c3, 0x4f8f1482, 0x32e39e34, 0x6b96554, 0x10fada88, 0x4c59c18, 0x8a742c82, 0x5e655d81, 0x33d9bf2c, 0xf06b61df, 0x5420a63d, 0x77ab161b, 0x1d12b20, 0x69ba03c9, 0x0001e0 }, { 0x3f103db3, 0x2ffbab34, 0x5cd8c572, 0x45ce8ee2, 0x7bffefc, 0xa28e6bd, 0x6c7897e7, 0x7bdca021, 0x46ed9579, 0xe36c6f74, 0x3302cc77, 0x82b6335f, 0xaaad2bb3, 0xf37b8d78, 0x7b867d11, 0x80ee156d, 0x0000f2 } }, { { 0x8883753b, 0x9e488fe1, 0xcb6fab2f, 0x69ac6ef3, 0x2afce609, 0x2d7be189, 0x25e875f3, 0x46a2b4f6, 0x76446abf, 0x9c8b5e14, 0x9e5e2cd9, 0x5ad58a9c, 0x4c5e1cd, 0xab9fb55e, 0x6e5577dd, 0x8b01fff2, 0x000004 }, { 0xc5a762f1, 0xa471a8b8, 0xefbde7e4, 0xf4397687, 0x5093e182, 0x6d7347a3, 0xa6aac544, 0x74340e4, 0x8d45f7d7, 0x3155ecbc, 0x46a3e7c2, 0xdd646df8, 0xeb35ef6c, 0xdd10399b, 0xe3999b87, 0xd0dcdb57, 0x000153 }, { 0x3081d6f0, 0x672804fb, 0x995d84fd, 0xb36b4697, 0xc033f3a8, 0xdbe6c2bb, 0xf9575cfd, 0xaf8231f6, 0xb0c0b071, 0x29ca9e7f, 0x2a118c08, 0xf5cd63e6, 0xe2132c6f, 0xb7b771e6, 0xe6007f06, 0x8ee539fe, 0x0000ad } }, { { 0x96db4188, 0xb39837ee, 0x9d635139, 0x1ffc2329, 0x705d49b7, 0x284dedc, 0x8c3f2dae, 0xebdc885f, 0xfcaf3386, 0x798187dd, 0xa4922c84, 0x7d39cd93, 0x6dbc7cd0, 0x8ea3cf68, 0x205f22dd, 0x76a48c1f, 0x000092 }, { 0x15193a32, 0xf120256d, 0x84be9180, 0x18230b75, 0x4cfa0613, 0x1e6495a4, 0x25939286, 0x503e532c, 0xd912ceb4, 0x4571775c, 0x6f850d1b, 0x16af6a5b, 0x49890a40, 0xb8364713, 0x2162e271, 0xa329ca9d, 0x000133 }, { 0xd34c3741, 0xecf59580, 0x7d8046fc, 0x6182d998, 0x7ce6636f, 0x9f7b2375, 0x9f9c6b3b, 0x7b6a0d2d, 0xc8067fe0, 0x9b2f8a58, 0xc5a7411e, 0xee20e84a, 0xeecd3c82, 0xf24b3539, 0xc3364e1, 0xfcdb7480, 0x0000c4 } }, { { 0xb12928ed, 0x8a4e8b90, 0xe6dde6c2, 0x43e9838f, 0x935f9420, 0xa040367f, 0x24941b72, 0x7de2f3d1, 0x2636e585, 0xe53a35e2, 0xc1d88b63, 0x9c28a6c9, 0x19a7db50, 0xc17e294e, 0xa2575f5f, 0xa94c5c11, 0x0000a9 }, { 0x79323ac2, 0x93d53daa, 0x26f8f874, 0x5b9ad507, 0xe06bfaf8, 0xb34b9347, 0xd2554ae1, 0x87b964e4, 0xb74a0aed, 0x1016cd7b, 0x46e43aff, 0xafc08f02, 0xb44b0901, 0x52807267, 0xaccd424c, 0x3156e747, 0x0000b0 }, { 0xd6bb6688, 0x6d14ef0, 0xa1747ed2, 0x9f81be81, 0x154c5afb, 0xf310c6a8, 0x5085de1c, 0x35f1e155, 0x241106e2, 0x9ab27086, 0xfd4de22e, 0xa2222bbd, 0xe47165ba, 0x52c754c, 0x123375a8, 0x84e83c11, 0x000058 } }, { { 0xf87046a4, 0x528a502e, 0x987ce114, 0xe38a9a5c, 0x1400a02e, 0x93054115, 0xef14613a, 0xd00234e5, 0xf1faf871, 0xe9cbbdef, 0xe275df38, 0x7b64ac61, 0x4fc07482, 0x231fbe9b, 0x406c0568, 0x51dc67bf, 0x000175 }, { 0x94202fbf, 0x891aadff, 0x72a2e698, 0xfb21982f, 0x6fe2ecca, 0x3afe090b, 0x224d166c, 0x15c30ea6, 0xcae12c63, 0x1125e1de, 0x9bd20507, 0x96ac0709, 0x72d20cdd, 0xb2197de9, 0xfe5c64a6, 0x69573818, 0x0001b7 }, { 0xc55f106c, 0x8657b820, 0xa0addc6a, 0x49639edc, 0x676f16ec, 0xf3cbc7c6, 0x958730ae, 0x93cd95d5, 0x703964e2, 0xfcb6e87c, 0xb585fa7f, 0x298cfbbd, 0xde106af0, 0x3973627b, 0x77237dd3, 0xe1233497, 0x00017c } }, { { 0xa742cd35, 0x867c2623, 0xacf0af87, 0xb9d13f88, 0x384e9b76, 0x1c60478c, 0xcd633687, 0x46aa870d, 0x90cd19b2, 0xfd9a89ca, 0xb328c69b, 0x3f204730, 0x4f82c7f2, 0xc48bd275, 0xeef44842, 0x2b09ba3c, 0x000187 }, { 0xa043623a, 0xfa45896e, 0xc300d07d, 0x930973a8, 0xb86dc9be, 0xaaeb6454, 0x7721ab11, 0xe8169ee, 0x33e6f718, 0x20be870e, 0xbdc1f8c5, 0x75f3ffab, 0x407f1e03, 0xe07c1eb7, 0x7c367e92, 0x231f3888, 0x000055 }, { 0xfd5b1af7, 0xf2acad72, 0x75579d62, 0xfae01f96, 0x93411a5, 0xba4a88a9, 0xa08267c7, 0xeea8b978, 0x6bab322f, 0x8175e577, 0x7cb3d056, 0x4406ce9b, 0xd706c665, 0xbdc046d4, 0xc9488c07, 0xf29144eb, 0x000130 } }, { { 0x8c638fea, 0x76c75780, 0x4269f3ca, 0x85970442, 0x39096b51, 0xc68ff773, 0xced20092, 0x55fdd3b3, 0xa9921268, 0x34dc98c8, 0x1a8348da, 0x7c60f23e, 0x1648e29f, 0x2b3f2e8d, 0x888cfdcc, 0xe44bf708, 0x000159 }, { 0x79b1a987, 0x2f3fa9d3, 0xfd95d4a3, 0xfe2d0a86, 0xf8fc1100, 0x6485a62b, 0xd0d8cded, 0x50c26037, 0x7f84d0b1, 0x22ad2e80, 0xacbe4b43, 0xb496d0f0, 0x2336b610, 0x29e58516, 0x558ef955, 0x1e50777c, 0x000126 }, { 0x9f8f2d9a, 0x7a0609d5, 0xcc4552f1, 0x721ba641, 0x2ba07273, 0xc86733c9, 0xe6a19aec, 0xf786c2f, 0x84ec3b83, 0x39b34e90, 0xed79e49e, 0x8b697e57, 0xaaa0234c, 0xd685a3dc, 0x4cac989c, 0x650045c5, 0x0000de } }, { { 0x6e3024c0, 0xa1bae7f7, 0x1f429162, 0xb5bb5d74, 0x12b8ffae, 0x1154b594, 0xa067476e, 0x5b61d8c2, 0x6ca77866, 0xb7dc56cb, 0xcffd512c, 0x6a3503f0, 0x9de6e4d2, 0x7a696f8d, 0xcfbf3924, 0xf81cc8ed, 0x0001d9 }, { 0xee714565, 0x3551f900, 0xd3666fc0, 0xb1fa11e, 0xb9a3819c, 0x967a280, 0x505ddedf, 0xb38d5381, 0xf6e3fed4, 0x862f088, 0x56064c94, 0xaba945a6, 0x4ec05954, 0x4ca2116e, 0x80783ba6, 0x9159603d, 0x000028 }, { 0x364f4e7d, 0xd7986310, 0xc1e9b097, 0x5e43b57c, 0x93fd5fe0, 0xefe4d5f7, 0x4d9f5e7d, 0xbbbeed1e, 0x27a260e, 0xb909fad6, 0x9567a1d0, 0x34aec4f6, 0xceaaef63, 0x5bbfde08, 0xc9f950c1, 0x2af15368, 0x000107 } }, { { 0x76afdf67, 0xca5d090c, 0xb84d355, 0x126735bf, 0x713c0ca3, 0xa9bf974d, 0x7bd7cf9a, 0xe84a820e, 0x141a4050, 0xd0247779, 0x89d7c5e6, 0x926f3f22, 0x36e124d1, 0x7428d3d, 0x6634f750, 0x912a906e, 0x000176 }, { 0x6bae3a6a, 0x4cae0575, 0xfbf4aea8, 0xb50f3a9a, 0x3498b181, 0x2985f895, 0x8e25fac3, 0xd03df12a, 0x93242cb6, 0xfb85e9d1, 0xc2318d3a, 0xd79789d5, 0x22462569, 0x6102bf00, 0x3b4f6da, 0xfd4b8a2e, 0x0001fb }, { 0x5d333c41, 0xc860b618, 0x2a6d878, 0xfee42787, 0xa3ee4c4f, 0xe7805b1d, 0x88476513, 0xe316dc30, 0xcacb6262, 0xa4fcbcbf, 0x3139ebda, 0x5e5657cb, 0x34df0f9d, 0x166a5eb8, 0xe32af5ae, 0x5b1ee243, 0x000050 } }, { { 0x8602531b, 0x7d402f8b, 0xc8b61efc, 0x999c367f, 0x7db79648, 0x97cd3dc4, 0x8bd64d5a, 0xb9044cca, 0xb22ec37, 0x636ef9a6, 0xf3698b8e, 0xe95f1b54, 0xb1d6efcd, 0xc147ec54, 0x3fc425f0, 0x15b647d1, 0x000026 }, { 0x70f4701d, 0x10fe58fd, 0x164c8e5f, 0xedcc073, 0xb361c1a2, 0x226810dd, 0x368ed120, 0xd24dbd15, 0xefee43b1, 0xbac5f766, 0xdc3e14ba, 0x1c2b2aa5, 0xc3944457, 0xcefb132e, 0xd67a98db, 0xc9b61dc7, 0x0001d1 }, { 0x376175b5, 0x8f7044fc, 0x85cc1517, 0x3f9c36aa, 0xefb75aa4, 0xe38f272c, 0x8fd3a65, 0x68c3f53d, 0x57013013, 0x42bf246, 0xce0b7ecd, 0x6b0533df, 0xc213fce8, 0xa00dbcdb, 0x93dccab6, 0x405c9fc5, 0x0000c2 } }, { { 0x9fc0c8da, 0xb2df224b, 0x2c220916, 0x6420a312, 0xb5dfd39d, 0x1382a7e6, 0x19eb9400, 0x6a66c5fc, 0xeb893a2b, 0x8fcc396c, 0xf90e56ec, 0x392f41c6, 0xe0a0d986, 0x78624caf, 0x107b6ce4, 0xa8d6cab2, 0x000017 }, { 0xa83965fa, 0x7799a95, 0x423f7283, 0x122b507b, 0xd3bb995f, 0x4d35f3b2, 0xa531b448, 0xebcc3190, 0x812d791c, 0x47ab5688, 0xddb3658e, 0x2409fb00, 0xf9a5696d, 0xe049d9b0, 0xbfd08ff4, 0xfb22adea, 0x0001f8 }, { 0xb2746243, 0x4475015, 0xf13adc4e, 0x29a1800f, 0x93963083, 0x6bea85da, 0x1a4476b3, 0xf4c8163f, 0x1e4faf16, 0xc621f8e9, 0x8f1d894e, 0x54166b1c, 0xed6f10f9, 0x6b4c5f7d, 0x93452d6e, 0x5a84317f, 0x0000fe } }, { { 0x75bea9df, 0x9d87bf45, 0xe71275c2, 0xefc6f188, 0xbd0321f8, 0x6b86325b, 0x7b4a0527, 0x7bcc0e10, 0xb2f56fb9, 0x72020fd2, 0x85fc9ffb, 0xc6cd349a, 0x6a33059f, 0xe4f6da5d, 0x5824a95, 0x30d195f4, 0x0000a6 }, { 0xbfede154, 0xb74d0f21, 0xc19687dd, 0x96f3c882, 0x8db9d03b, 0x3b319fac, 0x34d723db, 0xb8d517be, 0x6af6ec2e, 0x8e7d0345, 0x6f21044e, 0x6aa25586, 0x6b49f911, 0xfdd0917c, 0x64e49dac, 0x4d0e26ac, 0x00002f }, { 0x4ddaa56b, 0x61f4a8ff, 0xbbdc2bf5, 0xce735aee, 0xed6cb046, 0x57b15982, 0x5e43de76, 0xf476be9a, 0x6c5b8c4e, 0x5bfb15ee, 0xd3d8acea, 0x45dd08c5, 0xa48f7431, 0xa0bcd593, 0x59b5f0c1, 0xf2735526, 0x00011e } }, { { 0x1bccdd42, 0x9be71c3f, 0x96cbb4dc, 0x8303c1e9, 0x18d70b41, 0xaebf0f37, 0x7500e41a, 0xfa684549, 0x1f52112d, 0xd10b5799, 0x8680ef71, 0xe6ceb280, 0x2df8efac, 0x630d1151, 0x2dec1811, 0x8e7b3ed0, 0x00009f }, { 0x1da76d3f, 0x4cdd7f32, 0x5102624b, 0x6398b12c, 0x1ab60901, 0x5ae4aeee, 0xf6106d21, 0x3211982d, 0x76db160e, 0x5ebf47f0, 0xf913643f, 0x29858187, 0xaffc4fb7, 0xa741d9e5, 0x961575b5, 0xbc49e655, 0x000090 }, { 0x7771c402, 0xb3e616e0, 0x4c3f8026, 0x52d63bec, 0x99ce6cf, 0x9c105c02, 0x5043d29b, 0x718b46fb, 0x55fd841a, 0x24ce727d, 0x9fd77c95, 0xfa8a1fa5, 0x256bae60, 0x47d1ec57, 0x45088f4a, 0xe5e358f6, 0x0001bd } } }, { { { 0xab8cf3ed, 0x72d8b42a, 0xd6a7b9c9, 0xcf44cbb4, 0x9dbbef93, 0x9c550eda, 0x7c8df1dc, 0xd5190ed6, 0x8d99cd18, 0xeaa0857a, 0x243307c3, 0xf48ae232, 0x68d5cd98, 0xbd531ec2, 0xa9f0e1c8, 0x691601a9, 0x000078 }, { 0xb516e41d, 0x56151fbd, 0x7368f05a, 0x6dc13a0, 0xce651ea1, 0x407ece7e, 0x4704e56d, 0x28757591, 0xc00c7ab6, 0xe2c4e3ff, 0x83293677, 0x39bd8661, 0x2d9a2b08, 0x8fbeddcb, 0x802a5ecb, 0x67258960, 0x000112 }, { 0xb690c72b, 0xcc66f7a8, 0xb5132f8, 0x1ac4632e, 0x6f827050, 0x7884e979, 0x4f3163aa, 0xc0c66c03, 0xc78723c9, 0xbd471e0c, 0xf25b4f7a, 0xdbd5497, 0x930369ff, 0x759e5c0e, 0x33b3d8a, 0xa7ae836f, 0x00015f } }, { { 0xbd1cced4, 0xf692f67c, 0x5e576ea8, 0x4c057f43, 0x758271e1, 0x4560a3ca, 0x65ce40a6, 0xf6ad632d, 0xadd7e0c, 0x3e425635, 0x3ed1b4b4, 0xe4bfd2a7, 0x816a0bda, 0xfe73e934, 0x80ffb670, 0x46bf6547, 0x000084 }, { 0xf7ad23fd, 0x9e8289b, 0xf190a81c, 0x19f34bda, 0xa805ed29, 0x33bea5eb, 0x4a29d4f0, 0x411db252, 0x6ba8a0b, 0x3fd598ab, 0xe956d37e, 0xf38ad926, 0x5ab3ae71, 0x4f77aa11, 0x5b17e4c0, 0x2792aafa, 0x0001ac }, { 0x2e2af6a7, 0x5e32b86e, 0xf9dbc468, 0x84f19c4b, 0x87f3e6af, 0xec9c279, 0x679a90b2, 0x998bf084, 0x87318dbe, 0x3b7439b8, 0xbb3258b2, 0xdd656369, 0x213cb3fe, 0xaa7a9b5a, 0x1c1ba40e, 0x99db0234, 0x0001e4 } }, { { 0xe79f55d5, 0x27aa10b4, 0x288bf15b, 0x803e43d0, 0x49841ee4, 0x80267eda, 0xdff6ec08, 0xa6cdef9f, 0x7074053f, 0x536052dc, 0x4ec92eff, 0xd98c504f, 0x2409258e, 0xe047c2e0, 0x414efcd2, 0xb97a22e4, 0x00002b }, { 0x14b78349, 0x50abab3b, 0x9f7bf5ad, 0x68946179, 0x24950058, 0x82f13539, 0x26fd9858, 0xea7cf20f, 0x86a7a74b, 0x5586487f, 0x5002ee91, 0x7a688c1b, 0xb2a98b92, 0xf4d39d45, 0x102813ef, 0x99e7017, 0x00007b }, { 0xfb2053c1, 0x60c87fb4, 0xb762c5a6, 0x6d0197fd, 0x48a4fdfd, 0xbf1c9dd4, 0x7bf6430f, 0x3d4d21d5, 0x6ddeae37, 0xb2dc7ed8, 0x2fc1fb00, 0x44d94424, 0x693957a4, 0xf7394ecd, 0x79eee3e3, 0x37b7bc9b, 0x000130 } }, { { 0xbbbc77d7, 0xf3c50f21, 0xd8d18125, 0x8d950223, 0x6677125f, 0x83ffe9ea, 0x1f481179, 0xc84135ed, 0x9ff93562, 0xb3793c2c, 0xe2851e14, 0x73df7ce0, 0xdb113217, 0x41843292, 0xeaaadc5, 0x70dbda30, 0x000090 }, { 0xaa9442c6, 0xb499be37, 0x8682d759, 0x86ec093a, 0x919fb592, 0x55197c0b, 0xdf9616e8, 0xdd28e7a9, 0x679011c7, 0x8f166772, 0xc0f262b9, 0x4d59c2ce, 0xdb3b2d93, 0x63abf01f, 0x7704d42, 0x1c1aca36, 0x0000ce }, { 0x3d76890, 0xf422cb9e, 0xe3c72805, 0x6704a718, 0x16779e43, 0x1b5a049e, 0x8066f33a, 0xee354261, 0x13d219d3, 0xb1739d73, 0x211a9a8c, 0x9cde9a1e, 0x5dfcf9dd, 0xff4f723d, 0x9d43e5f0, 0xe1e49494, 0x000184 } }, { { 0x67dfe271, 0x7611ee51, 0xea265758, 0x6f2af6a6, 0x3f4cd82b, 0x130292f, 0x3d9b0e9, 0x66edd0d9, 0x31ae3fcd, 0xbdfa53c, 0x470e78b, 0xf7042f18, 0x762c5973, 0x8566eb65, 0x39176c4b, 0x766b9a44, 0x0001e8 }, { 0x276b71ff, 0xcec8b221, 0x452b1158, 0xcd557ee0, 0x6e51756f, 0xae21c037, 0x6a15e885, 0x3dbbfbbc, 0xa0f7b861, 0x8c2c798a, 0x8bcd57fc, 0x33c4181b, 0xbb98a6d5, 0x7b516177, 0x53d270a1, 0x587045c5, 0x00011b }, { 0xc5cdd31d, 0x4c95c4e8, 0xaf9d4074, 0x437d1c24, 0x9598dfd9, 0xd5a5535d, 0x49fbfc66, 0x9466875e, 0x1f173ca1, 0xcb3ca10b, 0xbebe491d, 0x7ad77dae, 0x581174bc, 0x2360d943, 0x200039f8, 0xe70bb182, 0x0001c8 } }, { { 0x72759c0e, 0x368022d3, 0xce11c73b, 0xe01c9c28, 0x7fa8f534, 0xae894464, 0xe54f3a4, 0xb277fb74, 0xfa548ecc, 0x2daf7238, 0xaf84c27d, 0xb374619d, 0x1ef9fa53, 0xd3491b28, 0x31dbe468, 0x5dcf8a31, 0x000137 }, { 0x49c47966, 0xa26eeb7c, 0xd51dd680, 0xcc4dc578, 0x79489a6a, 0xe9248916, 0xda818f1e, 0xc2cd85f3, 0x7af69abe, 0x63823256, 0x75f2249, 0x80a48745, 0xcabf7be8, 0x239a2993, 0x44da635f, 0xc0ac0b3c, 0x0001ee }, { 0xa15f24d0, 0xff187dfb, 0x7b0f7b64, 0x8d2fee77, 0xcb05d8b6, 0x7b24319a, 0xe700967c, 0xabd275e6, 0x24ba970f, 0x4d08c536, 0xf920cbfb, 0x2533882f, 0xfef31647, 0xeeded817, 0x16eede14, 0x55c84e11, 0x00002a } }, { { 0x8da3a405, 0x305f4fa2, 0xa28a2f96, 0xebb8b956, 0x22bcd94f, 0xbff246cc, 0xb2471b16, 0xca537e3e, 0x92d7232f, 0x78456c4f, 0xe6e32b54, 0x26d5d0b5, 0xa1b3c9b6, 0x348b7d20, 0xd4375264, 0x65629dbf, 0x0001e7 }, { 0x2a396d2b, 0x86461b6d, 0x36ebf094, 0x3751a2d0, 0x82547fca, 0xcd1bb15, 0xe90c06d9, 0xc4a94761, 0x512a98f1, 0x6b3ceb84, 0xb4d4c9f7, 0x85bd7b5f, 0xb8f1144, 0xb99dca08, 0xdce1dc2a, 0x23ccb389, 0x00012f }, { 0x491c8952, 0xba46f5b4, 0xd7c992d, 0x67806baa, 0x8ae3d5e5, 0x64899056, 0xa0c79203, 0x3a1d5de3, 0x2910c1f0, 0x445d14a2, 0xef2b1562, 0x307d443e, 0xa3416e3f, 0x3406c2a2, 0x988ca992, 0x6a22c0e0, 0x000138 } }, { { 0x82f99d7c, 0xedef6ea0, 0xf25b40f9, 0x493a52bf, 0x9724f3e6, 0xecdda7b3, 0xb4c8ade3, 0xae2043a0, 0x5e8e0819, 0x58b342b8, 0xee0de8cc, 0xb3ebcaae, 0xf5784d56, 0x3372963f, 0xd2d3b141, 0xe6048d42, 0x0001cf }, { 0x72b0098a, 0xe594831e, 0x842ad4de, 0xad844526, 0x59a88463, 0x89fee8c, 0xdd9ad4db, 0xd51091e3, 0x2fa55e3a, 0x94fe5daf, 0xf210d305, 0x8fb38485, 0x99e3075, 0xd8786367, 0x1f9eb78e, 0xcf414433, 0x0000f0 }, { 0xe09017db, 0xb00951b7, 0x9292b81c, 0xae324ec3, 0xbfd7bba6, 0xaa49a523, 0x613a2429, 0x95ebbe8, 0x851b2fa4, 0x7cb6e172, 0x4bd3cd01, 0xc8da7fa1, 0x74ffa6c9, 0x6d1d1d39, 0x7ae9758c, 0x99ac91be, 0x0001b1 } }, { { 0xa9ace56, 0x93ee8987, 0x4bc87202, 0xec33d93d, 0xe8b4541e, 0xb2271c5b, 0x56e5239, 0xda54ac11, 0x4f5033bb, 0xf285cdd9, 0xb1ab21f, 0xdd5fe045, 0xc9802f64, 0xa6456e42, 0xaa097c2d, 0x1929def0, 0x00017e }, { 0xafbfb4a9, 0xf35fee04, 0xc22d07da, 0xb7ea9472, 0x9eb72241, 0x2a96d40, 0x9b2af17a, 0xdfb6d843, 0xec4f29c9, 0xe3bd7957, 0x30b6a26e, 0xb867aa38, 0xd54256d, 0x39b6cb22, 0x9338fd78, 0x3ae853bf, 0x00003b }, { 0x1492a773, 0x169ecbd7, 0xeb48c656, 0x509f75c0, 0x839ea888, 0x442e5594, 0xff3f351a, 0x2245a85c, 0x28bfc3ec, 0x37b3a39b, 0xb2155882, 0xcb6efaf3, 0x9e5ef673, 0xb96cb1e8, 0x93ef5b6b, 0x3277df9, 0x000148 } }, { { 0x406774ff, 0xe6a5fa6e, 0x16be773c, 0x87c55b3c, 0xe6d54823, 0x16d1c220, 0x71706b1b, 0x9c117ca6, 0x372f64a2, 0x673f2c73, 0x75ec92ba, 0xf5018c26, 0x20f4c4c, 0x33d7ea9c, 0x6999aaf2, 0x4aa1fbfe, 0x00016d }, { 0x532024a, 0x6057db5a, 0xd3f05199, 0x535cf047, 0x413d319e, 0x9ae655a7, 0x3197ba45, 0xd9699175, 0x6ee1609e, 0xecba981c, 0x6914bd5a, 0x343cc0ba, 0x43bea54b, 0x1ff0031a, 0xf95e4e32, 0xcf659600, 0x00003d }, { 0xe85b0a3c, 0x2fc3555, 0x4872ab09, 0x2153f7b1, 0x7b009cb6, 0x5e28ad98, 0xf78ca1da, 0xaff3e7d, 0xd64cc787, 0x88a6bb03, 0x26f5fb24, 0x4b72cee5, 0xaf24b0f4, 0xc25df6a0, 0xcea99e9e, 0x56a143aa, 0x000172 } }, { { 0xebe4a0ae, 0xfae05e6b, 0x7fa15457, 0x8943168, 0xfd60ae85, 0x3d0dbb87, 0x45acd089, 0xf679ce2a, 0x30032d8e, 0xa9edbcee, 0xbc2a8ea2, 0x8bcec4cd, 0x779a2410, 0x394b6bf3, 0x9f45a713, 0xbe084075, 0x00018a }, { 0xe827c5f2, 0xa35e5ecf, 0x8628cef8, 0x3fa67d55, 0x7d764274, 0x6be21a14, 0x83ccc3a9, 0x3350fabf, 0xfe3b74de, 0xe7e6f77e, 0x98cddc8b, 0xc4526951, 0x980148f4, 0xf50c7fcb, 0x11d6d0f3, 0xfc40dfb2, 0x000036 }, { 0x68cd47f2, 0xe8b3cf93, 0x5a049d62, 0xac82fceb, 0x96f10957, 0xae15a8e3, 0xb152e96, 0xd5f9685c, 0xfff87af0, 0x2103a28e, 0xd14108fd, 0xe840764a, 0x5d9cffc6, 0xfed16925, 0x161e2420, 0x9f00e31e, 0x0001ce } }, { { 0xa3fb48b2, 0x83c05f59, 0x7b43b108, 0xdf9b6cdb, 0x956153f3, 0xe6168ab1, 0x730d015d, 0x88180273, 0x568d507f, 0xa84e96f5, 0x450c2226, 0x314f9c39, 0xd2682533, 0xcd5e6a93, 0xfdfb914f, 0x7779d06e, 0x0001f3 }, { 0x61143db9, 0xc0953c6, 0x85810297, 0x63f555af, 0x824e7e23, 0xc5aacdad, 0x16fdfe3e, 0xce430e83, 0x23aad465, 0xb3bac577, 0x499ecf80, 0xf9164c2, 0x80bc77e9, 0xf061074c, 0xff21ff30, 0x110354d1, 0x000169 }, { 0x311bde11, 0x498b7517, 0x24ebcf4a, 0x235ca785, 0x88dd0e80, 0x7a3f48d5, 0xf3259c87, 0x299f4b29, 0x451b9a7f, 0x16a584f9, 0x9ca0048d, 0x2ecdf2cd, 0x722aec4, 0x5d7b6bf, 0xe0b2cbc4, 0x31e9f015, 0x000144 } }, { { 0xaa08e5e, 0xb0885d0c, 0x43c3f308, 0x389ef8c1, 0xed796663, 0xae8a0915, 0x90e25115, 0xf3a86ed6, 0x123d5af9, 0x90532476, 0xd2f28da0, 0xea74efdb, 0xeb1b739b, 0x3bfab043, 0xaaea6317, 0xed1139f4, 0x0001c7 }, { 0x1b847a97, 0x291503e8, 0x54dc7fa1, 0x92fb6827, 0x6e17fb4f, 0x334279d3, 0x473af362, 0x198de99e, 0xee2ae246, 0xa8290878, 0xb77cf67d, 0xe9440dca, 0x9f593263, 0x609244b7, 0x2577d0ef, 0x15f51fd0, 0x0000a6 }, { 0xe8637ccf, 0xd2e29849, 0xc9630f04, 0x7837a79f, 0x9dba2ce9, 0x9b2301ec, 0x59a71fe4, 0x2bdba6b9, 0x39fd0139, 0x8014cdcf, 0x2f84a144, 0x3e978ec9, 0x3cce2a2a, 0x5454aa30, 0x495274e7, 0x8f743142, 0x00004f } }, { { 0x1946cf7, 0x64cd8e83, 0xf7fd0615, 0xc6f76b37, 0x2787f7af, 0x4e0e3bd0, 0x1eeeb11f, 0x201ba864, 0x9c4964a, 0x856ed71c, 0xc899351a, 0xb87487c3, 0xb45eaf9e, 0x6cddf5cd, 0xa6f799cd, 0x63f189af, 0x0001c1 }, { 0x5fcf27f, 0xd181c315, 0x7001715c, 0xee51ee99, 0xda9de86e, 0x4642be27, 0xecad84e9, 0x51c0ab3e, 0x3c3e5c51, 0x4816776c, 0x115f8c7a, 0x4f382270, 0xcce57a7c, 0x97efb7c5, 0xce9448e8, 0xaf624bcc, 0x000188 }, { 0x8c576a35, 0x1b89e04b, 0xeb3613c7, 0x2685eb49, 0xf172a3ee, 0x9c421083, 0x563d4461, 0x6a7612f9, 0x570fd09, 0x21927cbb, 0xa46b5fb5, 0xe497a0e3, 0x12e4948, 0x64f0bdae, 0x400a1bc9, 0xd49a1489, 0x000002 } }, { { 0x8be7ddcf, 0x9f74929b, 0x7a1ad8bf, 0x291be453, 0x1721e60e, 0xd438e6d9, 0xeaa4964, 0x757450c1, 0x403c004, 0x520c3acd, 0xbe6026b0, 0xfca95886, 0xa1e8a890, 0xec674753, 0x2386e2bf, 0x7c636f70, 0x0000b1 }, { 0x225c734f, 0xdfbe73e, 0xd42ca489, 0xf7ecd7a3, 0x4499b985, 0x526f92b0, 0x727935ff, 0x564288fb, 0xfd42ea95, 0xdccd31f1, 0xfd97c921, 0x7cc991d8, 0xefd24dbe, 0xbee69c93, 0x9025e00b, 0xbc0a2d35, 0x00017f }, { 0x467c5522, 0xd534e844, 0xef34313a, 0x5fe84f32, 0x70f5a0c0, 0x8910fd95, 0x1c7cf61, 0xe9dd20ac, 0xfc5b5b90, 0x83f4a28f, 0x1f637e21, 0x1a8152a3, 0xec3d2b33, 0x96fb565a, 0x6a74c646, 0xfbc3c9ba, 0x0000d2 } } }, { { { 0xd185801, 0x8bc25692, 0x3943f542, 0x45cf207a, 0x85c4d6a6, 0xfdb027fe, 0xf0afb872, 0x2b759880, 0x29599202, 0x7462fa2f, 0x66fee405, 0x60b2b31, 0xd09593e9, 0xc0b7671d, 0xf92784df, 0x18adf6a4, 0x00009a }, { 0x7f47b7fb, 0x7d51089, 0xbedb16a9, 0x7f44c0d1, 0x8cab241a, 0x75ff9862, 0xfaf68e13, 0x32b0b2a7, 0x169ddca6, 0x52394e3e, 0xb370af48, 0xda9be225, 0xbb50ba84, 0x8706d8c6, 0x2a63d2c8, 0x5d5daf99, 0x00010e }, { 0xf01d4900, 0xf8cb7796, 0x25a7d5bf, 0x397bf32, 0x6de80420, 0x76df8930, 0x3e8a69c9, 0x5b5260c6, 0x887e80a7, 0x578cfbf7, 0xd7fc4891, 0x8ed267dc, 0xa0f5c59, 0x1f3f76d1, 0xa2542156, 0x761f1097, 0x0000a0 } }, { { 0x17c69286, 0xdb37e9f, 0xe3bcb0e8, 0xcefe4b41, 0x28b35a47, 0x5887e02, 0x39d3fc34, 0xd1fb835a, 0xd594a30a, 0xc3ecbff1, 0x344209e, 0xa1c684ba, 0x177a2f0a, 0xf15567ec, 0xa0da918c, 0x4742cfb6, 0x000181 }, { 0x22101275, 0xf6a28239, 0xac61ae46, 0xfb2fa69, 0x1f256485, 0x448f7b94, 0x8cd4dd70, 0x7440f373, 0x3ed58f6b, 0x460b7580, 0x8d3f4c69, 0x47c487f6, 0x3e9404b5, 0xfa4cb01c, 0x62d9a15c, 0xeec4830, 0x000038 }, { 0xfda63128, 0xb5c2c58, 0xfe0e6645, 0x2845e321, 0x46d3b3ee, 0xab7a98c3, 0x8410b309, 0xb237e4d0, 0x6b5d6457, 0x83b13451, 0x45930ab5, 0x83709260, 0x1fd55ce7, 0x351d05b3, 0xc56544e3, 0x1e47debc, 0x0000f6 } }, { { 0x8fd6206e, 0xd15ae9bb, 0x5d65b62e, 0x78553037, 0x83cb66f6, 0x23bdc184, 0xd3d2b83f, 0xf7bbd7e7, 0xc910867d, 0xba5ca652, 0x3071113d, 0xd2d1d5c2, 0x44a1b292, 0x9a7a225a, 0xe6abe10a, 0x620febc8, 0x0000d7 }, { 0x404e1cad, 0xb54c616b, 0x6011d157, 0xcb820798, 0x846ca58d, 0x9e31bdaa, 0x30affe7a, 0xf3b5614f, 0xa3e7474f, 0x3d6eac83, 0x173b76b9, 0x98df952c, 0x54f0bfc4, 0x3064f2cf, 0xb1a4017e, 0x5e59e7ea, 0x000057 }, { 0x1e203723, 0x544cebbe, 0x39613147, 0x53f925aa, 0x56adcdc8, 0xcbdd5f4d, 0x9a2f4d4a, 0x6d70e64a, 0x85ae4a15, 0xb6cf3960, 0xaf890530, 0x343232f1, 0x1b8e5201, 0xfbf53f00, 0x6ca8d0ce, 0x5ed9d8cd, 0x000040 } }, { { 0x7d8a772f, 0x168ab565, 0x25adf6a4, 0xfd3ad13e, 0x958061cd, 0xd1446573, 0xfceceb1a, 0x92b043ef, 0xc04ce981, 0xc4f06024, 0xd2a99145, 0x8e10ee36, 0x4e833778, 0x17808cdb, 0x891c08ae, 0x8db9a683, 0x00003d }, { 0x3c87aa5e, 0x5e0a8c46, 0xe9836137, 0x9e5b1bc4, 0x7fa9115b, 0x3f338bfd, 0x19a8499, 0x91858826, 0xef08eca3, 0xb415438, 0x2abc33c8, 0x7cf2de28, 0xe5d466f9, 0x5757bc00, 0x84bb152, 0xa38be61, 0x00008d }, { 0x278cf65d, 0x54fab1b9, 0x91662d95, 0x2a5ab81a, 0xc481f294, 0x6f4a3371, 0x3c3ff38, 0x8c41fd46, 0xf27a50c, 0xd029258c, 0x30b4edf4, 0x1a5c2b85, 0xbf3b42e0, 0xafedca13, 0x8eff493f, 0xe7e27825, 0x000101 } }, { { 0x358845f8, 0xd099d12a, 0x133481ea, 0x418835f2, 0x69152a45, 0xe5ff7532, 0xa000167b, 0x28059550, 0x5684bc00, 0x2f6ca367, 0xd277ede3, 0x4250bfa2, 0x2dae5ea8, 0x2551e658, 0x1dd17bd5, 0x245d12e4, 0x000087 }, { 0x8888dd70, 0xe5594c11, 0xe00858ae, 0x2013277b, 0x419e8248, 0x68ae7571, 0xc6a853a5, 0x7e6c760f, 0x12a1c8bc, 0xc4e95747, 0xb4d36e2b, 0x8d46d4a1, 0x4ec572db, 0xae7ca6e8, 0x7494d23b, 0xb1bdfbe2, 0x00012a }, { 0x3e9915b6, 0x5dc6ce5d, 0x5c4bfc32, 0xa268b397, 0x2fd6c9ab, 0x48a5da60, 0x7ebacf5b, 0xcb7dcf01, 0x62ff324c, 0x5635f557, 0x168d00c0, 0xfd3cb015, 0x58e211fb, 0xef281261, 0x3c77622a, 0x4e607110, 0x0000fd } }, { { 0x5dcccce4, 0x4556fd8f, 0x55638b93, 0xa743fbac, 0xdd4df2f6, 0xbbb5300b, 0xdecaa1aa, 0x6923fde6, 0x1f4c80c5, 0xd7108ae7, 0x41b51eda, 0xc6cac13c, 0x99c4bfa6, 0xa1a1956, 0xa5f994e2, 0xda84eb65, 0x0001f0 }, { 0x87ed818d, 0xcf752920, 0x765497a5, 0xfeb77c88, 0x550ca14c, 0x6ec30e8, 0x8f966aa5, 0xe76e4d8f, 0xae08bed, 0xcf9c35d9, 0xe25fc960, 0x5032e698, 0x5372be44, 0x54f79a27, 0xb0c78fd9, 0x3614dcd5, 0x00017d }, { 0x48656e41, 0xcdfc9485, 0x4fabadd0, 0xfb3e4a8f, 0x7d395183, 0xf295bf2b, 0x37ff7028, 0xc0370457, 0x10715c33, 0x928f026c, 0x5d07dee8, 0x4b81533, 0x6ff06820, 0x5584c52, 0xd4f819d4, 0xea11a449, 0x0000c0 } }, { { 0x92354e1b, 0xa865737d, 0x2bb5543e, 0x264a2ec2, 0x2cbe466e, 0xb5a6a76a, 0xb2c32f37, 0xdee5f539, 0x1e7d59dd, 0xd111dffb, 0xa0d42fd4, 0x87f1880d, 0x9c9d8e63, 0x453ae1b8, 0xb6b10bdd, 0x2d62c95d, 0x000164 }, { 0xe90e16b3, 0x517ab41, 0x4ba0c214, 0xbb590270, 0x993eb562, 0x4702aa0a, 0x5e65f328, 0x410d82aa, 0x808836c6, 0x5a39aaf0, 0xe6cfa759, 0x4de7472c, 0xc84e9afe, 0x3bc2b863, 0x9fa1dd39, 0x16825946, 0x00019c }, { 0xf941a54a, 0xca71926c, 0xf9518edf, 0x3eda12b, 0x712e5fe2, 0x20aa3634, 0x7f638780, 0xede3ab1d, 0xd6187cc5, 0xf5a8af32, 0xef649177, 0x46c6f677, 0x6261d14f, 0x68500a52, 0x6c6e6655, 0xdc90c547, 0x0001e2 } }, { { 0x87c44394, 0xccb6df0a, 0xd0a95471, 0x843b0e34, 0x86a6cd76, 0xaa24d4c, 0xcc8f1056, 0x93bafcb7, 0x5336df94, 0xe11b0225, 0x6e03a851, 0xa5db839f, 0xc6d02cf0, 0xaffd9d03, 0x8c6cdd49, 0xd1f0711c, 0x0000e8 }, { 0xa187cb88, 0x7750be53, 0xbf12d1d7, 0x2c429c01, 0xa5c8170e, 0xa2f8ebc2, 0xb311da6c, 0x4a708c31, 0x79d0fe19, 0x998f714d, 0xb23acf5d, 0x757d15a0, 0xa715007a, 0x32563fe5, 0xcac3b2d2, 0x43296de6, 0x000146 }, { 0x56b84164, 0xdabdb034, 0xe44505f9, 0x68dd38b9, 0x650b4c1, 0x44f0e94, 0xefb75866, 0x8e0466d6, 0xef7855f0, 0x9896e56d, 0x636143bb, 0x618fbed9, 0x22980e91, 0x687a7745, 0xcdff5063, 0x63feaf97, 0x000007 } }, { { 0x7892bc40, 0x848bf542, 0x6c27a125, 0x574fd061, 0xae161582, 0x7be40dc3, 0x68c6ae40, 0xcbaf8038, 0x246112b, 0x8e2351bf, 0x8e0355c, 0xaf43816, 0xa07f1a52, 0xce5ffe0b, 0x844e94fc, 0x377a2683, 0x00009e }, { 0xb58d73d4, 0xe99ee5bc, 0xfdc496e4, 0x2ce22af1, 0x9a4279c, 0x90b27d2b, 0xe5735da8, 0xe692f209, 0x41ab714d, 0xcb16f1a8, 0x56c94b4b, 0x689999be, 0x9c0d0201, 0xec2b566d, 0x7dfeb1f6, 0x5c9b4fdc, 0x0001cc }, { 0x4277e981, 0x2ed32393, 0x3ec75fb9, 0x72d6e861, 0x63d6038a, 0xb86f296b, 0xb74b325d, 0xd6aa1b52, 0x5cbed4ad, 0x18e258aa, 0x2c418e2d, 0x8ca38f57, 0xef76e643, 0xd817ec68, 0x41a7b068, 0xc1ab4ea9, 0x0000b8 } }, { { 0x9d999756, 0xe6092c09, 0x5c5598f7, 0xe348802b, 0x928a7e67, 0x26b69d5f, 0x527f4d02, 0x74786f5, 0x5ca1501d, 0xb3818ca7, 0xff61a442, 0xed403417, 0x355e1873, 0x253e5eb4, 0xf67ccbc7, 0x8debf032, 0x000112 }, { 0x356f6046, 0x9df80427, 0x949889a8, 0xa7dc3afa, 0x1a6a21ab, 0x9cdbc32, 0x9f9e3ac4, 0x15abbf7b, 0x5fa34428, 0xb7183a02, 0xe22210cc, 0x37d08d3e, 0x5c7f5699, 0x3ccfa0d0, 0x1ca56f9, 0x50cac74d, 0x0001ce }, { 0x6ce4a6a9, 0x87b27ede, 0x7e5f7e12, 0xbff6121d, 0x2617e8ce, 0xbb3cdb10, 0xf0a7b527, 0x414e8015, 0x3df33be1, 0xb6af652, 0xaa9c054, 0x541a5fb7, 0xa043d594, 0xaacca4c7, 0x64de75cd, 0xd830740e, 0x000020 } }, { { 0x23127b55, 0x786ca528, 0x9759d84d, 0x152b3a22, 0x57a11f46, 0xd3da0c4c, 0x4bc5c42f, 0xbbbc90cd, 0x4fe5c410, 0x4c160a, 0x3c9838ad, 0x15bfe1bf, 0xcc02f61a, 0x8830e168, 0x1f3546a, 0x1a9b9a78, 0x0001b3 }, { 0xba7b40cf, 0xa5a2c277, 0x785c5917, 0x8987a2f3, 0xaa6b24d6, 0xf918d2ef, 0xfcfcc196, 0xc7e0d585, 0x86b291a3, 0xa2e4c663, 0x5b0e727f, 0xcd1643a9, 0xac76ac5c, 0x9c834a38, 0x74465344, 0x6deae31a, 0x000025 }, { 0xf79da8a4, 0x770ddeb, 0xdebc707, 0x4fa9adbc, 0x77a26bda, 0xfe7c9e5c, 0x66f19f23, 0x44f75c66, 0x95dae86a, 0x2bf8d8c5, 0x3ba21100, 0xf6f9f0b1, 0xcd79731f, 0xa084690a, 0x940f143c, 0xca97b84, 0x0000b2 } }, { { 0x323d814c, 0x7b50db3a, 0x6956816c, 0x8380530c, 0x44af1953, 0xdcfb0212, 0x71a585e9, 0x230e4c79, 0xd75de879, 0xcb57aabc, 0xd8788d48, 0x19a8b3b0, 0x1d36a3b9, 0xf7a9e734, 0x6cbf9604, 0xc6b61b78, 0x000098 }, { 0x66ce5f0e, 0xbc352a1c, 0xb5dba521, 0xbb891484, 0xa138737c, 0x21d41acb, 0x4665dd82, 0x9d856abe, 0x607bfb71, 0xfdf60905, 0xdf90aa6, 0xa84cb31e, 0x195ded88, 0xcb3e0ca8, 0x11262b25, 0x2254ba23, 0x0000ba }, { 0xe94e3b5c, 0xc43c4c0f, 0x2be625b3, 0x657991da, 0x347565a8, 0x56f1e773, 0x8d9bdf7f, 0x41b8e083, 0x127ef8e1, 0x91295a51, 0xe24e757e, 0xfe004871, 0x4021cc83, 0x1c2875d0, 0x5c58720e, 0x4e14e9b1, 0x00011a } }, { { 0xa8f4c7be, 0xfb595700, 0xea3c043, 0x4d0fa3d0, 0x287570a8, 0x6f61d997, 0x1177b231, 0xe538f803, 0x17bcb68e, 0xbd8d0732, 0x6326c45b, 0xc7ef68f9, 0x6f46f574, 0x55000317, 0x86423778, 0x654dc294, 0x0001a2 }, { 0xe4a271df, 0x15cdb56d, 0x383ff74e, 0x52b6d950, 0xdc1bcfe3, 0xd0e0dbee, 0x274766c1, 0xca97b197, 0x50210e90, 0x32fd7c91, 0xfc7b7567, 0xf1111464, 0xa92052aa, 0xf8f20e4b, 0x9c33d9f6, 0x94bee00b, 0x000021 }, { 0x66a7ebd4, 0xaf1f3e28, 0xc10fa87a, 0x7811192a, 0xadc19845, 0xcdeea363, 0x230d7393, 0xc2f03744, 0x294df584, 0xbf24164b, 0x9c3414e6, 0xd00c2dab, 0xe26537aa, 0xf065f11b, 0x59b8f3d4, 0xfd16e5ee, 0x0001f2 } }, { { 0x166b6297, 0xf1c18a7, 0xc3212d26, 0x3a4225d, 0xd9bcb0ef, 0xf8fe02f2, 0xd1972d44, 0x175546b4, 0x5c28a945, 0x88afd52d, 0xc8dfa8ca, 0x60ac12b8, 0x551ff6c9, 0x6388df6a, 0x81d722a5, 0xbb3c6334, 0x00011e }, { 0xbd09e918, 0xd726255, 0x62b6ab3e, 0x572ab130, 0xddd5273a, 0x8070a289, 0xcd7f16af, 0xc9756d37, 0xbee32ac4, 0x370ad25f, 0xbb5e8207, 0xc7c1cfaf, 0xbd848312, 0xb5c902e7, 0x6cf450de, 0xcdfcd043, 0x000101 }, { 0xb6006463, 0xd58579e3, 0x10f57aa7, 0xd1d7eb69, 0x9932fa3, 0xbea178b3, 0x7f5f2381, 0xc5117bd9, 0xc95c62db, 0xc85bd9a2, 0xba5f0c09, 0x82d04d60, 0xf7bc5ae, 0xf78f8ef2, 0x197f8d7f, 0x7f666350, 0x000062 } }, { { 0x26448b03, 0x77ff2b02, 0x4181c789, 0x2b98e612, 0xa23d5b68, 0x4a38bf03, 0x87a27138, 0xb69a1848, 0x4962463f, 0x6ad2f5e9, 0xb95c11a3, 0x32f870b3, 0xaa9320a0, 0xb484417, 0x3563e282, 0xb560e6e9, 0x000199 }, { 0xe1b61056, 0x28a94c29, 0x21569ada, 0x667e3158, 0xa1b0fff0, 0xdefe3f3f, 0xe36ca8a6, 0x79ef6e9, 0x48b21aab, 0xec191b8, 0x767b0395, 0x9854431d, 0x196b5a5b, 0xdf117f8e, 0xd72b9f22, 0x3e18dac4, 0x0000f4 }, { 0xedf68dd, 0x18fa3e5d, 0x6ca868a1, 0x450cf680, 0xb815b3ef, 0xf7519ba7, 0x39bba44f, 0xbca6e91e, 0x45553ba5, 0xe09914ad, 0x348ae166, 0x3b1bb410, 0xa3853b7f, 0x9f88cf76, 0x5cd75508, 0xf36c752c, 0x00012d } } }, { { { 0xd423414a, 0xd98de611, 0xabebbafb, 0x66f1ca6e, 0x954706a7, 0x54803183, 0x756b8e9a, 0x3e9c2ef0, 0x712a9808, 0x1e0c1ebd, 0x9a9d04b3, 0x809b997b, 0x7f301c53, 0xdb17923, 0x2264fc2f, 0xe2fc4721, 0x000077 }, { 0x104148e0, 0xcef9b7ae, 0x9806a285, 0xa176e0f5, 0xcda3d71, 0x8b6bf503, 0x222470ab, 0xae075519, 0x47ef23cb, 0x8a5735c, 0x6a11f7c9, 0x7a59deaa, 0xbbeef403, 0x2c84aa27, 0x1578421b, 0x37c15157, 0x00000a }, { 0x6a1a0b72, 0x32b8bd9f, 0xa0ff9acf, 0x461537f9, 0x3215bad1, 0xd85f4d2b, 0x88df0e92, 0x6ffb1d, 0xbe9e9eec, 0xe2bf0f10, 0xf449cf8a, 0x2c5b9027, 0xaecbfa31, 0x5c76efc3, 0x36dfd160, 0x6cd0f74, 0x00004f } }, { { 0xeb83f835, 0x9f1b9f59, 0xd6c69346, 0x718977ad, 0xbbef8af3, 0x1cd76876, 0xa2db6c53, 0x85a55081, 0xbc6c218b, 0x92c2d0c1, 0x45128a08, 0xfda6648c, 0x4e398ebe, 0xcd3095ef, 0x5b05b19c, 0x486b0a2d, 0x000005 }, { 0x16cb1e59, 0x53f3aa0, 0xeb03d335, 0x4d006ac1, 0x9d1c15ed, 0xa9f18459, 0x9b5bb537, 0x34ecd646, 0x138c75d3, 0x3d7b799c, 0x61c79a5b, 0x3899709c, 0x4633888e, 0x8ee261dd, 0xc394da24, 0x1bc2722d, 0x000123 }, { 0x757d8785, 0xe66b47eb, 0x20da88e4, 0x36beaf35, 0xf31bd92b, 0x3a22bbd1, 0xc883df5a, 0xd703ed95, 0x10b353a9, 0x207b8de5, 0x523b1d68, 0xd35b7427, 0xe713c492, 0x56d56149, 0x37cb8190, 0xbef0538f, 0x0000f4 } }, { { 0x49cfa92b, 0x18c5fb16, 0xf07d3c48, 0xdf2d6fe5, 0x695780cd, 0x7fb90e3, 0x3dfbcfdc, 0x3dc02b70, 0x4f0d0410, 0x53c72533, 0x81539257, 0x4b8e725b, 0xefbfb9af, 0x10a910b7, 0x68fe47b6, 0x73f8a83e, 0x00002d }, { 0x9c886e83, 0x867fc6f1, 0x1a3f0f1a, 0x274d23af, 0x8074fbd7, 0x6646de01, 0x8379c000, 0x34981dfe, 0xd15bd4f0, 0x811dd82f, 0xc149e091, 0xd5035420, 0xc6d3fc86, 0xb221f2f8, 0x2a54c8e7, 0x523fd0bd, 0x000177 }, { 0xa14a309b, 0x1c5c0db6, 0x89c2b7b6, 0x65e7ad6a, 0x126b1c93, 0x5cca2de3, 0xb20782d8, 0x6b09af95, 0x442c9aa, 0xa4c22f46, 0x7f98136b, 0x64979ca, 0x1b749a2a, 0x9d849bd9, 0x90b607e6, 0x94c12149, 0x0000b4 } }, { { 0x45994cec, 0xeac259ac, 0xae2d7a92, 0x5f13e07, 0xbb9116fa, 0x4965f267, 0x54ac82b6, 0xd53798ff, 0xb56ad74b, 0xbedb1447, 0x8d2a1e5c, 0x69048b41, 0x340d7ebb, 0xca5e614d, 0xfe814a32, 0x5149c382, 0x0000a6 }, { 0xcd800d2c, 0x2e956421, 0xa254335e, 0xac4aa424, 0x4f9ecf4d, 0x3e7981ac, 0x19e8bba0, 0x9b3f7d76, 0x288039c0, 0x50aee925, 0xae316a29, 0xefbe11c0, 0xe5a4457a, 0x98cb3316, 0x5fcad27c, 0x29f9fef6, 0x000066 }, { 0xe0ec0690, 0x158d6960, 0xf7181650, 0x7d8d515a, 0x7bb745c0, 0x947328bd, 0xa5c7b1af, 0x6db1aae9, 0x720bf9fc, 0x25f9a983, 0x5254919c, 0x9d4dc82, 0x8de1b9f6, 0x818ca978, 0x501bda61, 0x47644f7, 0x000072 } }, { { 0xbac86924, 0xdce0b3ed, 0x98a27331, 0x4ef59fda, 0x647eb380, 0x35c1710f, 0xb6d3c66e, 0x5e5825ea, 0x97c48f3a, 0x1c2e96bd, 0xb105dd77, 0x1ba3ac7e, 0x489ae0c0, 0xd8142231, 0x222f8ab, 0x2861cf77, 0x0001de }, { 0x86b36fae, 0xcd197104, 0xe9dcb476, 0x10cec293, 0x7e704df9, 0x30c0f378, 0xae3aaf2f, 0xb0fd8e6d, 0x8bbc1418, 0x5ce7fd22, 0x24fadca7, 0x65da31f4, 0x3cb7e98f, 0xf35bad6a, 0xaed9c837, 0x23e7274a, 0x0001c5 }, { 0x58ecbbc2, 0xebb0f05, 0xfad34543, 0xf317b22a, 0xeb0c5fe6, 0xf5c4d531, 0x24ad13e2, 0x4da33789, 0x41c8f350, 0x5de8cbb, 0x5992bcd2, 0x26c8a7a5, 0x81086aee, 0x57ace42, 0x603adeee, 0x4cb20585, 0x00011d } }, { { 0x94be2abd, 0xa9b84529, 0x4eaf0ff2, 0xd92a16bc, 0xa21c5fba, 0x610c7812, 0x5de24940, 0xb26cc2aa, 0x181241d4, 0x6605849, 0x3ca4a80, 0x585e919b, 0xffe04527, 0x2e56db44, 0x4b7b8fef, 0xa2981f44, 0x000136 }, { 0xb75697d7, 0x9bca5550, 0x7b4e49f5, 0xfd683809, 0x2e0ace63, 0x480773a5, 0xb3523755, 0xaea0b875, 0xf17d20c, 0x88656186, 0xdfb124e8, 0x5ff707ed, 0x992d4490, 0x7acad52b, 0xa0589dc, 0x7618e6d5, 0x00012f }, { 0x1d62f00a, 0xb007541d, 0x3d5ae5f9, 0xf86a833c, 0x8a73ace7, 0x3f7dcd88, 0xcc4ea084, 0xd707f25f, 0x6ef7e900, 0x53986c80, 0x8af04a0, 0x4e9e1caf, 0x4418649b, 0xeab2b5a2, 0x172f7709, 0xb84db70, 0x0000db } }, { { 0xc8d6a36, 0x6b7bec56, 0x7ef0b9af, 0x9f1e69e8, 0xa6728008, 0x12523f5d, 0x2523c592, 0xcaf12b79, 0x943f7f31, 0x3444b13b, 0x727eba15, 0xa81f9c9c, 0x8d64e2d1, 0x8a45ba1d, 0x836e352d, 0xf26fd5c1, 0x0000c5 }, { 0x70b5b17c, 0xcb3af845, 0x85550e64, 0x83e4df32, 0x62002a09, 0x9133bff0, 0xea939ef1, 0xe803119e, 0x9836dd3d, 0x2cac727, 0x3435ea9f, 0x6a51eba3, 0x463f969e, 0x58b19043, 0x8bcc3d49, 0x28cc2898, 0x0001de }, { 0x4432bf98, 0x3b17469c, 0xe7e6eca7, 0xe2363607, 0xde64b4bd, 0xeae78d68, 0x7f2ffc7c, 0x36aa92d6, 0xfd123308, 0x9c347575, 0x7cf9c6ad, 0xebbe115e, 0xf083c147, 0xd5806676, 0x672ca62e, 0x1b5843ad, 0x0000ba } }, { { 0xfb7748a1, 0x2b0cfa39, 0x583f1c6e, 0x3dff5295, 0xb44e2add, 0xb1bcbd2b, 0xe3eab19a, 0x2bd0c93d, 0x1524bf4b, 0x8af2f919, 0x50d2b666, 0xc42097da, 0x6b0f8a48, 0x3afe0c3, 0xfda185f9, 0x311bc147, 0x000188 }, { 0x60655082, 0x18deb943, 0x9d3dfd28, 0x8e535a02, 0xc1f9adc6, 0x7464bae, 0x3c9e65a5, 0x5f531c57, 0x52b46f66, 0x5113f470, 0x4519a1a, 0xdb52b1df, 0x4e374e31, 0x554e8b2a, 0xe79aaaee, 0x4d0bd422, 0x0001fc }, { 0xe212c93b, 0x332d83a7, 0x24294e8, 0x6958d4dc, 0xb9290574, 0x9580c170, 0x42c9329b, 0x4dfee136, 0xdcc56c05, 0x770572d3, 0x38b3b3d7, 0x86b829aa, 0xa72f79c8, 0xac4442dc, 0xeae51810, 0x7777e85c, 0x00015a } }, { { 0xc568ee27, 0x2976d6e1, 0x718610d5, 0x83a6c4a1, 0x5a2f58df, 0xdff0491f, 0x59639bc5, 0x10fe9605, 0xcb650d1, 0x9b97a859, 0xea2d443b, 0x809b3a3a, 0xb8b7e96c, 0xb5bfb6ce, 0x5973ca93, 0x2eaeceff, 0x00019a }, { 0xab89d0f7, 0x96f93292, 0x95b53d3, 0x5f0138c, 0x403dbd79, 0x5394251b, 0xb687442e, 0x5ca912e3, 0x178797a6, 0xf3e35ef4, 0xb107436, 0x8cdb9eab, 0x491c5ee5, 0x70051a91, 0x99fad1cd, 0x93818e99, 0x000190 }, { 0x6c40b759, 0x18ac569, 0x51a65e48, 0xa0c3be6f, 0x486aa4d8, 0xc17cf6ca, 0xb1734ba7, 0x1caf977d, 0x1c2ec4bd, 0x33022a17, 0x56378b6a, 0xdcc158bb, 0x783009dc, 0x834e5fef, 0x2b889b23, 0x9641be2b, 0x000070 } }, { { 0xf56986d5, 0x8d95b442, 0x550c54fe, 0xfc499986, 0x7a2db0fd, 0x3d722c82, 0x6be6745e, 0xd9b75c59, 0xe58b2a44, 0x6214741d, 0xbf712b75, 0x1c77f606, 0xf6adaeee, 0xad91bcf, 0xbb676f4, 0x163112aa, 0x000106 }, { 0x8ba08e66, 0x76d13f4d, 0x15b40fca, 0x774cde6, 0x48b3dcc9, 0x79d831c2, 0xcdce3cd4, 0xdfb8a6a7, 0xf680aab2, 0x9a260099, 0x51ed1b18, 0x8d1dabc6, 0x5823aa12, 0x32618d35, 0x8871e0d6, 0x778fee2a, 0x0001de }, { 0x6dfaee5e, 0xa51b4c7b, 0xf1a77d08, 0xb66ac001, 0xcd7037c5, 0x14be88b0, 0x614b14bd, 0xa81f5fe3, 0x78072778, 0xaa1214cb, 0xa51326b5, 0x2c65c932, 0xac2580eb, 0x319af762, 0x651e510a, 0x61dc87a3, 0x00010c } }, { { 0x144e5236, 0xf9032be0, 0x4184579, 0x81b82801, 0x4142c7fb, 0xdaa2841a, 0xf5a956c4, 0x26c51e66, 0xd1801cea, 0x867f051c, 0x9bf4c81d, 0x32d3d71d, 0xba336f9e, 0xdfab55e1, 0x320a7505, 0xee481a6b, 0x00010d }, { 0x497f3b28, 0x1fc10238, 0x6c688322, 0x39e92dbe, 0xad099f4d, 0x6d13a5a1, 0xb1583f53, 0x7fd9e48a, 0xeb57d5d6, 0x88b4fb6c, 0x2edff633, 0xf27a4c1c, 0x42815da3, 0x492fc2a, 0xf530215b, 0x4a4d6af0, 0x000115 }, { 0x37f6555d, 0x9099ccac, 0x6c8a0c9e, 0xd0d4d69c, 0x9f5f9691, 0x810f0d46, 0xa1f4e726, 0x2d29e321, 0x924c599a, 0x5478dabf, 0x8d1dde11, 0x558f8b47, 0xf064aa8d, 0xd54bb963, 0x2de831a6, 0x5fe9fc62, 0x000063 } }, { { 0xa7d785e5, 0x4a8939c3, 0x962eb12b, 0xe9e36829, 0xfe5aba87, 0xffd873d8, 0x1d8bdd77, 0x20d9ba4b, 0x68cecc07, 0x4acdf5ef, 0x69ec654e, 0x8b9dd961, 0x2bd6b717, 0x7d787625, 0xd906baa2, 0xe00156fd, 0x000177 }, { 0xf1757c, 0xee230995, 0x20e16508, 0x29fbdeb9, 0xc3596388, 0xf7efeecd, 0x1e70b509, 0x1ee0be02, 0x8578562f, 0x33a5fa78, 0x1faa5bf1, 0xbfe05c23, 0xeabd4cea, 0xcabd49da, 0x92d70cb0, 0x99afccb5, 0x0001f3 }, { 0xc40ead3d, 0xdd9c1ab3, 0x75568628, 0xe32e3948, 0x5fc0dde6, 0xf91d851a, 0xe27daa94, 0x275533b1, 0x3cadeaeb, 0xa9266261, 0x9a78f461, 0xd7c596ac, 0xbf92d290, 0x5150063, 0xfc4ae272, 0x8e6f9add, 0x0001d4 } }, { { 0xe9f879c, 0xfb3a6582, 0x4b570506, 0xa543eb4d, 0x6c3048da, 0xd976f96a, 0xa2dbcfee, 0xdfc18fc4, 0xbee2bff5, 0xb7bf80c7, 0xa9a3a06f, 0x3edad7f1, 0x6c1e09ac, 0x408dcbc, 0x3351d337, 0x64c54cb6, 0x000080 }, { 0xe5faefc1, 0x5fc408c4, 0x9e7e1223, 0xd35c080b, 0xb44b96f0, 0xf4c3b12c, 0x3cf0910c, 0x4d1d3637, 0x2f70a285, 0x16746b7, 0x91dd2cbf, 0x5e08d0a1, 0xdc49f00b, 0x1ce73a37, 0x5b71e394, 0x97da5299, 0x000103 }, { 0xfa0d8dbc, 0xbfa02325, 0x45b40bfa, 0xcf8601ae, 0xfe42c8c6, 0x51092c21, 0x9e3c79b8, 0x653ea456, 0xae2f7df4, 0xfb69e921, 0x92aa7a4e, 0xa068879, 0x9b604eb8, 0xac71ccd0, 0x6a8e89d2, 0x87acc99c, 0x00009a } }, { { 0x99c79ffa, 0xfaa86fd1, 0xf37830a6, 0xcf3e6e5e, 0xb8643143, 0x5f933ef, 0xfce88bdf, 0x6d874ff, 0x5333c922, 0xa5344bc4, 0x7f2fb9df, 0xb568986d, 0x6180c86e, 0x6960e441, 0x1cd07265, 0xa0cbbf4e, 0x00019f }, { 0xc0f62577, 0xc1a5fa6a, 0x69e98708, 0xae08ce07, 0xf751e3ea, 0x6e15dc53, 0xab0e81a3, 0x8bbb21f1, 0x20409367, 0x24972017, 0x9131715e, 0xfd82a613, 0xea71934e, 0x5ce9e2e5, 0x276752, 0xe1ba2e8d, 0x00017e }, { 0x69a234a9, 0x2554f5b4, 0xd2f7e98, 0x68487d40, 0x83d310d3, 0xce4831bc, 0x26f616c4, 0x989f84cf, 0x616a9040, 0x3a8067fd, 0xf5be1f19, 0x7137cecb, 0xa1c97b46, 0xf2150810, 0xfff235b8, 0xda2eab0, 0x0001e1 } }, { { 0xe8e336b8, 0x5919add0, 0xc83a6ec6, 0x8584f499, 0xc3abb88c, 0x7820dd23, 0x6382d681, 0x45e9ab29, 0xfd21837c, 0x44358ea7, 0xa6593b7e, 0x246efd14, 0x1d5ab8ed, 0x276b0c95, 0x289c54ac, 0xeda2f2a7, 0x000168 }, { 0xb3d2e11c, 0x69bae717, 0x707f68fc, 0x5b844747, 0x233bf358, 0xb0ca8d66, 0x1f9958cf, 0xd72be75d, 0xc0050ba7, 0xbc1a9e98, 0x7a6cdd4b, 0xe8d0f74f, 0xf3b8ccd8, 0x66f6293e, 0x140bff69, 0x4082dc97, 0x000159 }, { 0x37e588ef, 0xca49ec95, 0x71387f47, 0x3cf400ac, 0x3daf524e, 0x163f2287, 0x72c41b9, 0x28fba536, 0x3dc0155a, 0x6e47d19c, 0x57d54715, 0x26b5cc4c, 0x18e40fd0, 0x3a8b29f6, 0xf2ae7f69, 0xd69ac6de, 0x000042 } } }, { { { 0xf77c63e3, 0x1cfc9307, 0x87a07fab, 0x187e6bef, 0x6f61afc7, 0xd6575dbe, 0x58136ac0, 0x9f720614, 0xf0f614ae, 0x9870a371, 0x535f65ec, 0x95dfc5a5, 0x924c2ba8, 0x2384b86c, 0xd23f3a6f, 0x87b8b10d, 0x0000c2 }, { 0xd84e4578, 0xd5c23c3e, 0x43c58143, 0x547966d0, 0xa5122399, 0x648d0dab, 0x7c9c81fc, 0xc66dde8a, 0x4dcccd4b, 0x9eff11d1, 0x94a280e0, 0x1e68d0e5, 0xbb774462, 0x50eb58cf, 0xc33f472b, 0x39258b92, 0x000025 }, { 0xda655970, 0xf1594c16, 0x542cf02c, 0xb5d0ef87, 0x44703ca, 0x1e021527, 0x13bb66ef, 0xbedd65ae, 0x4ccd04a4, 0x7a99b510, 0x9068a986, 0x7f506996, 0x9ae8bf2d, 0xf019b4bb, 0x1544c546, 0x9c15a70, 0x0001a0 } }, { { 0x25577520, 0xb14af75d, 0x38289a92, 0xc1286a98, 0xe13fae05, 0xbfb41c1e, 0x67b26f6, 0x5c7d69c9, 0xce4d1c3c, 0xab6fea81, 0xd68569f9, 0xad92f85c, 0x33abc551, 0xe7f65e5d, 0xa6daf2cb, 0xbe771b0b, 0x000075 }, { 0x6b7372a6, 0x7c407409, 0x3c5f6773, 0x7015795d, 0x91f45114, 0x766c3c1e, 0x3710bbc, 0x343240a9, 0xd0535c7c, 0xb58eef3b, 0x694bb24e, 0x6c643281, 0x6cad10aa, 0x9504f390, 0x41e1305f, 0x9c1d5241, 0x0001e1 }, { 0x79f65430, 0x24f25440, 0x3c857a0d, 0x542e85d5, 0xf394856b, 0xbc6d2cd6, 0x10e698e8, 0x89a8443, 0x229a3440, 0xbe4d11e5, 0x77c9d759, 0xc5962d31, 0xa1b08c0c, 0xb38d2aa7, 0x49c21546, 0xc6899db8, 0x000165 } }, { { 0xbdc41de7, 0x6065ddc1, 0x40bd14c, 0xface9be0, 0x542b7165, 0x2d4631ec, 0x780c210b, 0xb9ea445f, 0xdb2c3f4d, 0x4767bdd5, 0xab036904, 0xdc29dd2, 0x9ca787c9, 0xe21c3278, 0x49d51b6e, 0x4621ec47, 0x00015c }, { 0x0e108c, 0xff6cda4, 0x9b444521, 0xa8cfff4b, 0x83346d5, 0x22d3ef7f, 0x25665e4b, 0x6d5cd74a, 0xe94b22ca, 0x72f2946b, 0xf2fcf809, 0x80019b80, 0x51c4d0fe, 0x4d35d223, 0xb908504, 0x6d42c609, 0x000011 }, { 0x8b5c3a9e, 0x8786f64f, 0x57d5e947, 0x24ab07e7, 0xa1b42d1f, 0x7d836635, 0xba7844b, 0x8452314, 0x7f6408cc, 0x789d8c1b, 0x5b7b2766, 0xd46f7c32, 0xdb7de39f, 0xf002ca32, 0xddcb9ddb, 0x9126a3b0, 0x0000a3 } }, { { 0x2587a33, 0x8e7dc47f, 0xfa4db7fb, 0x5ebb0820, 0x57da68ea, 0x70df8fb1, 0x35fa97cc, 0x54d1a3c7, 0x996a90c8, 0x6ed1c943, 0x7e011922, 0xc583be37, 0xe34baedf, 0x31cb7893, 0x4f86fe43, 0xbb244739, 0x00004d }, { 0x72856e1f, 0xc77f2431, 0xbd9175c3, 0xc6eac94c, 0x3733c6e0, 0x2a9a14fa, 0x6e4cf63e, 0x4b5ee374, 0xb4e6ca1b, 0xfb4eb6ee, 0x8e128afb, 0xc57d7e80, 0x85ce1d05, 0x7993bc8e, 0x619ce22, 0x9d23e8f1, 0x00018f }, { 0xfe97566e, 0x9ec13194, 0xcf10202d, 0xb8457279, 0xf0f89e46, 0x3ab22a42, 0x50cbb9aa, 0xdc5949cf, 0xbaad5988, 0xf2854d50, 0x72c48d37, 0x8ec8d30, 0x58b84943, 0x559ad90f, 0xec1ddbb9, 0x7c3f4645, 0x00007b } }, { { 0x7596b4bf, 0x2fa8b6ef, 0x56c03c8d, 0xf5ea0a8e, 0x2c85db08, 0x5aa2bf4c, 0xdd35cb2f, 0x329585f0, 0x40f746d3, 0x43ff72b, 0xddbb9278, 0xd0a73cb9, 0xfeb49179, 0x45f27ca8, 0x789f4337, 0xb4934bff, 0x00014e }, { 0x67fc6575, 0xfce5b7ea, 0x2b554960, 0x645dce34, 0x60456c30, 0x1b59822a, 0xf98de92c, 0x82a29e2f, 0x32084c12, 0xd3558acf, 0xbc0dcf50, 0x5c239802, 0x74b6ab45, 0xa300531e, 0xd194be8d, 0x58ed26d9, 0x000026 }, { 0x3359f49e, 0x8d6d3b79, 0xb859c3ff, 0x903d4048, 0x9da0ee95, 0x2779e59d, 0xf3b25a2b, 0x4de3dcab, 0xae8355a2, 0xc57d16a8, 0xa6158579, 0x2ae0ea92, 0xa675010f, 0x733724bb, 0xee72cec6, 0xb0270f47, 0x000042 } }, { { 0xce28785f, 0xc5be71ec, 0x451631a2, 0xe0abc818, 0xcc26b260, 0x91944d24, 0xf95a30d7, 0x8f4e1fa1, 0x79895506, 0x755493e5, 0x355ac0bd, 0xdbcaa5e0, 0x30819738, 0xa8c175dc, 0xed355a00, 0x2ebb1ac, 0x000077 }, { 0x9624d6b8, 0x40572c8b, 0xf3a7ef7c, 0x17c58fe8, 0x2129b1ff, 0xeec138ac, 0xa0848dfd, 0xb2a21fb8, 0x2be9512c, 0xcac6c5ef, 0xc97109d0, 0x29a7315d, 0x6081288e, 0x46d75131, 0xaa755604, 0x72bdab18, 0x000125 }, { 0x3721b14d, 0x45f114c, 0xf27b6f08, 0xdceddadd, 0x9fd682f2, 0x1d0f7f0e, 0x8f93a1e0, 0x490f33f9, 0xfef1b5, 0x13a4084d, 0x20d4b1a, 0x98c12dfa, 0x481b1a0b, 0x5f863164, 0xee0ceaee, 0x29d9deac, 0x000094 } }, { { 0xc898c240, 0xfad78701, 0x1672f7f0, 0xeffdd864, 0xeb16c255, 0x5ad3c94c, 0x40c6a122, 0x74380bb6, 0xb6d77ec3, 0x7c57a366, 0x751d8f70, 0xb7eee8fe, 0xf9d5d1af, 0x96fafc2d, 0x75664999, 0x30fb498b, 0x0000c2 }, { 0xcdddb9e, 0xeae323b7, 0x15aacee, 0x7fa01258, 0x810be873, 0x708a23b9, 0x8137975c, 0x4cfebf14, 0x6abaabdc, 0x9c34034c, 0xb78648bb, 0xa19379c6, 0xb45aab33, 0xfbbccc22, 0x112b1273, 0x7de2651, 0x00018d }, { 0x77cf5872, 0xad58ce6a, 0x2c5a97f1, 0xa28a47f5, 0x22bd365a, 0xda8b6c0a, 0xea213eab, 0xf3490989, 0x5a91b40f, 0x5bbb4888, 0x3984f4af, 0xbea7e4bf, 0xdfc75ec6, 0x3952693d, 0x373cea3c, 0x6fce471d, 0x0000a0 } }, { { 0x39d5bb23, 0x9c75e9bd, 0x29d129c3, 0x91e509ee, 0x456ac400, 0x55ccb3af, 0x5529d85e, 0x60975b72, 0xd3681955, 0x8df5e8bc, 0xe0e8029e, 0x4c0f0bbe, 0x25b5f605, 0xe738b362, 0xfc30651e, 0x943f3dc8, 0x0001ef }, { 0xd95f1725, 0xb795547c, 0x8ee1d8ea, 0xf88687b2, 0xba1304f7, 0x87c456d4, 0x2230c0d, 0x3d741c4f, 0xce84c0df, 0x9e23caee, 0x9afd0dae, 0x36f5a6bc, 0x826486b0, 0x7c0ea2cd, 0x1ea1eba, 0xbbaeb7e6, 0x000053 }, { 0xe524af6f, 0xead53c08, 0x94a3368d, 0x1454c18d, 0xdd1956d4, 0x700a8885, 0x63eb8fdf, 0xc5b04a4c, 0x50d58a0c, 0x35eae052, 0x5be068c, 0x6731ac3f, 0x3d9e6b8e, 0x79621559, 0xfc188f45, 0x428cc290, 0x000080 } }, { { 0x9a80a0c4, 0x2da1c11e, 0xe5256e2c, 0x7bb12482, 0x48d88d1, 0x826e94d, 0x5a8ef417, 0x65ea18de, 0xf249b557, 0x62583d4, 0xf209849c, 0x62093bf7, 0x897ba593, 0x9d0a5326, 0x2daadaf1, 0x6771e66c, 0x0001fd }, { 0x117d49da, 0x7ea2860a, 0xc2b8b926, 0x31b26f70, 0xeb2df81d, 0x8e0a0d19, 0xace65ddd, 0x74c06c9d, 0x37cad957, 0x26478455, 0xb999995b, 0x5340480d, 0xddc2ff08, 0xd1aaace, 0x448ca662, 0x8206dc2, 0x000001 }, { 0x3692c082, 0x6323a9ee, 0x9eaadd1f, 0xba025e35, 0x3c489fdf, 0x44fc3ebb, 0xf525302, 0x9d1ee35e, 0x9176de0f, 0xe7134f30, 0xd39e4b61, 0xf91e84d4, 0x7c32d668, 0xa8f621d2, 0x5ebb4f9f, 0xbc7df902, 0x0000fd } }, { { 0x70d1fdf5, 0x94231077, 0xc4ca7d42, 0xef0329ab, 0x8ff3874c, 0x95f74858, 0x99767ee, 0xe0e7d28d, 0xeb99fd0c, 0xeaf60361, 0x32f3685b, 0xb178307c, 0xa2e2126c, 0x833a8bbf, 0x974aa2e2, 0x88895a97, 0x0000a8 }, { 0xde75485b, 0x23ec1dec, 0x937d54e9, 0x34afc77a, 0x72cbc2a, 0x666285ff, 0x13cc0415, 0x381f152a, 0xb3b604cd, 0x168cfba, 0x4d881fb3, 0x3941cabf, 0xf7d8b3f5, 0x57b540b4, 0xbb9dce60, 0xd41c97d1, 0x0000b4 }, { 0x7d7184c5, 0x677dfe66, 0x14650014, 0x9f176375, 0xe07ce755, 0x6d5a6b33, 0xc757d8a7, 0x1a6bfb4a, 0xd322e2e2, 0xfe742d1c, 0x41f2183, 0x4333d267, 0xa7134de4, 0xb83ac828, 0xdf59bd1a, 0x5856e719, 0x000014 } }, { { 0x5e83ecc9, 0x4b975554, 0x4672a870, 0x84b91e49, 0xd9949dea, 0x14486b78, 0xda79317, 0xdb21afc2, 0x69bcbde3, 0xbe65d3ae, 0x43d7ff66, 0x6713c66c, 0x8caf29fa, 0x24f61fb9, 0x6f90c345, 0x75aefe43, 0x00014c }, { 0x6c3a8dce, 0xd52b4fb9, 0xc50854a9, 0x937212fb, 0x7fd8bf4, 0xa9e00aca, 0x7a7ba904, 0xca2cc9ac, 0x87dcd916, 0xda4471d5, 0xf19b894d, 0x2756996d, 0x6e4f31bd, 0x611137b7, 0x287eb107, 0xda0d5db5, 0x000156 }, { 0x23139e7, 0x906335fa, 0x48a7219e, 0x32606033, 0xfab4212e, 0x7eb65ec, 0xe9715ee0, 0x8d1c09a5, 0x9367ede7, 0xae62346f, 0xee502f40, 0x7c90a3d8, 0xb4f81e47, 0x2755a248, 0x5ff625cf, 0xde064868, 0x000193 } }, { { 0x61cc6764, 0x4da7c825, 0x567374dc, 0x3e6fcf78, 0xdc1a28c, 0x911385b7, 0xed61e83, 0x3c0f35e, 0xe5dea969, 0xf084df3, 0xc17c7bcb, 0xcc0a8174, 0x1dfd317c, 0xf0ae8320, 0x5c627f83, 0x6f0ea598, 0x000092 }, { 0x316565e9, 0x8e56ebb2, 0xeb5b439, 0xb1808421, 0x94191dec, 0x70a84a66, 0xacfbbcea, 0xffe52bc6, 0x241df524, 0xfc7567d, 0xd0e94ff5, 0x25d0665c, 0xb8eedc82, 0x25aa5a1d, 0x26751fb5, 0xff8543b8, 0x0000d8 }, { 0x26efce80, 0x897ca9bf, 0x7ea35ee5, 0xf3c269b8, 0xcba18dcf, 0x56f3fe3b, 0x844de4b2, 0x41d26a00, 0x29a80a5b, 0x6910a5be, 0x46ea78f3, 0xf4a80609, 0xc859eb0f, 0x70d240fc, 0xa1c43c1a, 0x6aa3be8a, 0x0001a2 } }, { { 0x15ac09a5, 0xdca1b465, 0xe1561cab, 0x3e8800d7, 0xdb44ef40, 0xff896da4, 0x76b7fdcd, 0xb444359, 0x1b26580, 0x19b2fa48, 0xfb797296, 0x7d32bb42, 0xabfd6c40, 0xd1eafce4, 0x7df79fa, 0x1a1e2579, 0x00002b }, { 0xa2b48905, 0x8166eb9, 0x585e51f7, 0xab8ac539, 0xea70f960, 0x561bce2c, 0xd3b10af5, 0x1d8951d1, 0x76f8162a, 0x136680e2, 0xc13232de, 0xa093bb18, 0xf00d093e, 0xa636e203, 0x5492937f, 0xd099c614, 0x0001ec }, { 0x4c0fa250, 0xd020cf0, 0x99b7830f, 0x501e1746, 0xc707270a, 0x167b2c52, 0xe0429af8, 0x567f883e, 0x319150e7, 0x9fee3478, 0xa24349db, 0xfd811595, 0x495d105f, 0x1767bf9b, 0x52c1e340, 0x2050a4dd, 0x0000de } }, { { 0x646d5b61, 0x3935b4c1, 0x66bf9dbc, 0x3f74d7bb, 0x2ab217a, 0x1bfdf2a6, 0xdb971e44, 0xf8753a59, 0x2ec19c86, 0xbb438f98, 0xbd9468ac, 0xe360a1f6, 0xef0346b1, 0xea8e8c31, 0xcbaf9cc6, 0x9e9843b2, 0x00018e }, { 0xfccee3e9, 0x6efc6986, 0x19ee8b29, 0x7da2d8b5, 0xc2da2443, 0x9839545b, 0x255ccd67, 0xfafd8f99, 0xd9c6bf42, 0x2ff2bff0, 0xdaa7534, 0x6cbe2009, 0xbd0b2d28, 0xafea1afd, 0xcb50105, 0x208d8d35, 0x000190 }, { 0xb859fbfd, 0xf9d05972, 0x6ac49707, 0xd95a9f99, 0x698062a8, 0x76fa06d6, 0x29a3a338, 0x8de08c9d, 0xadca255d, 0xbb1b2d83, 0x5a7073ec, 0xddfc3cb0, 0x818bea7c, 0xe1c9c42c, 0x8dbb5bf2, 0x185dbe13, 0x000162 } }, { { 0xda13dc98, 0x3203b04d, 0xfc56ffd0, 0xd924d5d5, 0x1989376b, 0x5cc2bfc2, 0xe17c981c, 0x939fb313, 0x5875014a, 0xea6080b1, 0xb07f70d9, 0x3762f5c8, 0xa3948b0, 0xdacab012, 0x3bfea6d2, 0x7f20b433, 0x000060 }, { 0xe8c22fd5, 0x47f47008, 0x5aa732a5, 0x40789e98, 0xa468abd1, 0xc620b289, 0xc53ed92c, 0xb4ad94f2, 0xc5292496, 0x710c8449, 0xb3d252d8, 0x924fa387, 0xd2af05f4, 0xb43d9699, 0xe33d3c4c, 0xcaeebdaf, 0x000133 }, { 0x7f7ea70b, 0x4c0de1f, 0x3be20b77, 0xe89290fe, 0x8b65b231, 0xd51c57e1, 0x71bdaa72, 0x908cbbf0, 0x4986ad1d, 0xcd45806a, 0x81529294, 0x5d28356b, 0x666a882e, 0x4ceedb9f, 0x5e003540, 0x19ce7620, 0x00014f } } }, { { { 0x576719bf, 0x6864c537, 0x481e3f19, 0x9329ef71, 0xf4345841, 0xce080aab, 0x33e57186, 0x60b333d4, 0x43864d99, 0x1f1b2785, 0x315fabd3, 0xf112b220, 0x8687421c, 0xb9bcca7a, 0x58351996, 0x297c8998, 0x00002d }, { 0xb2da9ae8, 0x5b6dfa86, 0x62fa7de7, 0x97dd34e6, 0x4382aa99, 0x5e169b6a, 0x20de866a, 0x6aaf4299, 0x37f17957, 0x16cbbcb8, 0x5ada56ef, 0x96f566d, 0x76ef6eed, 0x88db00e3, 0xedc282e2, 0xead385bc, 0x000106 }, { 0xdebde577, 0xf095b8a0, 0x871f56d4, 0xdaad2739, 0x594b6bc6, 0x33937967, 0x74bc1d24, 0x43cbb1f2, 0xb46772ea, 0x4312e82a, 0xf43fa38, 0x8a14efcd, 0x90222f6c, 0x9fa66dbf, 0x52b8d4d5, 0x904e1388, 0x000137 } }, { { 0x2a3bdae7, 0x366e784d, 0x361d3f4f, 0x36ecda8e, 0x599e8067, 0x8a04dbe0, 0x2e39168c, 0x224bd3cf, 0x1764157f, 0x289d7d42, 0x493da96e, 0x38a70625, 0x199c3ec0, 0x450ff37f, 0x6526881e, 0xea03d14b, 0x000020 }, { 0x3d9bf2e2, 0xa9aa0d2c, 0x80c84eb, 0x4824cffe, 0xe9e2b40a, 0xd243305a, 0xf8a01712, 0x181a3f3d, 0xbf93c926, 0xe4c53ae6, 0x5d9105e4, 0xce966359, 0x8b6c8263, 0xa626e02a, 0x44f8ba05, 0xf74ba106, 0x000076 }, { 0xb513c29, 0x3a0ba7d7, 0x2b57b8a5, 0x119c1f3c, 0x840c6a19, 0x7fd6f711, 0x7713990d, 0x3e1bacd8, 0x75a123ca, 0xdc2d8453, 0xf3473fba, 0x199156b2, 0x9b3140ff, 0x12530aee, 0xe59053e9, 0x644363bd, 0x00009d } }, { { 0x9136d7b9, 0x57577fa1, 0xbecb7a63, 0x2ca55c1f, 0x4152359b, 0xb321ae35, 0xa8260939, 0x58b77025, 0x694597b4, 0x3ebea4a9, 0x812d4840, 0xa8e25822, 0x2592eec6, 0xb5a1becd, 0xc7873684, 0x787e6d25, 0x0001ac }, { 0x40f3efa3, 0x1f99a16d, 0x82df948b, 0xe974c114, 0x9c1fbf5b, 0x488e3556, 0xa4e36e27, 0x8a8919b2, 0x13cbf5f2, 0xbb8b5a3b, 0xd0c13686, 0x30a7e0f9, 0xe17bdf64, 0xcf354935, 0x85146729, 0xb4a37de4, 0x000155 }, { 0x2247651f, 0x47612149, 0x5b503fe5, 0x94f80bd4, 0xbc6c2536, 0x84b44e78, 0x66a741a6, 0xef095d9e, 0xfc6317e5, 0xf9405ce6, 0xd2e040c2, 0x4fb6ffa, 0x7a865e9a, 0x1f39cb2b, 0x552d41aa, 0xb547fbcf, 0x000057 } }, { { 0x85d7deae, 0xbfe341b9, 0xb08c201d, 0xb0ab6623, 0xf81e47ed, 0xb9d31d7c, 0x328ae7f7, 0x6cfc3187, 0xd2cbdfa2, 0x3b33dfae, 0xf2d64b24, 0x937ef060, 0xc98fcb4e, 0x173ef03a, 0x7e3202a8, 0x26c3e355, 0x0001a1 }, { 0xe05e4650, 0x3f46f9a8, 0x1a79c5d6, 0x792060a4, 0x1dec8254, 0x76891c83, 0x334f335d, 0xb99c53a2, 0x4757d287, 0x371a2635, 0x7d640d99, 0x7b408c3b, 0x9a80df43, 0xf6a2cdde, 0xf754c3a7, 0x5f22bdcc, 0x000143 }, { 0x3746691d, 0x6cbf8106, 0x2043af07, 0x4d3b735d, 0x3cd8b671, 0x261ba505, 0xcfb9f942, 0x2fd174a3, 0x4f166aae, 0x2c8479ea, 0x9fc1c57a, 0x7b63dbc0, 0x44eaf0e0, 0x47ee32d6, 0x38da282e, 0x233f23ab, 0x00016a } }, { { 0xeb937625, 0x30cdb18d, 0x5c82e04d, 0x2c8b0086, 0x63e0c87e, 0x7d950d5f, 0x24ea729f, 0x1f8b3dd3, 0x820bcd11, 0xe8d59074, 0x7ab1029a, 0x7afeb996, 0xc385ced3, 0xa24465ee, 0xa8c98446, 0xe70e6199, 0x000125 }, { 0xfc479640, 0x680b6f52, 0xa7577bd4, 0x4ca410b, 0x4538ed77, 0xa02c8a51, 0x74aba211, 0x4f4c6d39, 0x7d5674b1, 0xaf03e9d7, 0x2f784bd4, 0x8b34ab8c, 0x73960457, 0x28785983, 0x9140f139, 0x948d45ca, 0x0001ba }, { 0xccce8098, 0xe6cd1905, 0xbca033f7, 0xa0150cf, 0x1bcec3e, 0xeea966e0, 0x4153ef70, 0x540da23f, 0x36d82d51, 0x2604808a, 0x3e82a2d5, 0x850b4f78, 0x581e8f19, 0x3c54906, 0x9b4c9313, 0x2eae3d3d, 0x00017f } }, { { 0xd08f5d75, 0x50613785, 0x17ac0c44, 0xbef6787f, 0xf8d0718a, 0x8b2b5586, 0xfb6b04d8, 0xe84b1994, 0x59eb630b, 0xe6aec211, 0x24379a7, 0x5fbcdf55, 0xc4f6ccf9, 0x482ca7b7, 0x36fef377, 0x529be3a1, 0x00000f }, { 0x625c069, 0x6777a770, 0x8db0279b, 0xc21b445f, 0xe07e5e6f, 0x9d9efec, 0xff96d38e, 0x94332760, 0xc4faed5d, 0xd388331d, 0x235b7f80, 0xa9a60f95, 0xb26470cc, 0x82ae27be, 0xd1ffd9b2, 0x2345183e, 0x000099 }, { 0xaa1fcd9, 0x41b97020, 0x8af93b12, 0xb4b87d54, 0x3a2c1050, 0x848a7cda, 0xa3a58658, 0x52d5c0b5, 0xc5ae229d, 0xa5002ddd, 0xa2475395, 0xd8452402, 0xf6ac2e1b, 0x6fd8ec5e, 0x580840a8, 0x45b326a3, 0x0001ed } }, { { 0x97e049ad, 0xc2afc1a7, 0x33b3911b, 0x97730cf0, 0x4ddebae1, 0xa7e45466, 0xcf92b7f0, 0xe9ce67e5, 0x2df4fa5c, 0xe067de82, 0xece3be00, 0xdcc99765, 0x18b263fd, 0x44ba1477, 0x6aba8e0a, 0x7b05cb7e, 0x0000a2 }, { 0x47460ec6, 0x82cd4c3e, 0xd059c00b, 0x625ce6e7, 0xd47dfae2, 0xcc2b7bb3, 0xb55bec74, 0x166dfcb0, 0x35583fae, 0x13c116b6, 0x1d5f82c, 0xfb6b2064, 0xc4a8f02a, 0xe1dd7ba4, 0xa6f4448a, 0x361e3aa7, 0x000015 }, { 0x94f1e894, 0x318412ca, 0xe619f6a6, 0x20b4bd06, 0x9fcffe90, 0xfd1b028, 0xbcff4d0c, 0xa9c459f8, 0xb899cd68, 0x1fb60767, 0x5783a328, 0x50d0effd, 0x36b16697, 0x68e70c2, 0x5496552b, 0x302b8fc6, 0x0001ed } }, { { 0x9f87c833, 0xfb166e7a, 0xb4793e75, 0xf3e05e0, 0x32879578, 0x85fd83f, 0x64a4c066, 0xdf0ffe29, 0x50bcc580, 0x55754ccc, 0x59dc432b, 0x19d7dcad, 0xb6fac7b5, 0x6b06b202, 0x7c1bcf87, 0x11402ffe, 0x00002c }, { 0x1c000bef, 0x53f1b1d1, 0x519bc67e, 0x4518bc41, 0xd3786714, 0x79961ce9, 0x392333c6, 0x8da1d34b, 0xb3bfa59c, 0x97b9bb2d, 0x428fea8a, 0x7c621213, 0x6c013b6b, 0xa65dffe0, 0x5d29a7b2, 0x25a3c538, 0x0000da }, { 0x68fa3e2b, 0xb0edd1ee, 0x4a3ed75a, 0x6bac4bdc, 0xe36ed35b, 0x8176ddcf, 0x61c612da, 0xdf7c6563, 0x23c32f81, 0xc752c8f3, 0xcf3a3adc, 0x6f860c76, 0x69b6c76, 0xf8995b3e, 0x144cfac5, 0xa0840f97, 0x00006e } }, { { 0xb9f1f206, 0xb16098bc, 0x74492085, 0x86095588, 0xd812471e, 0x49f5d99, 0x9329f03a, 0x409b89a2, 0x48192691, 0x2fcdaccc, 0xd0e508ff, 0x1621c371, 0x435298a0, 0x2fb2775c, 0xabdc9ab, 0x9e8aa7d3, 0x0001bd }, { 0x944758b8, 0x63ee62ee, 0x1b63de0e, 0xc10ad031, 0x8f10e062, 0xa8c76ece, 0xc703ecf4, 0xef017b9d, 0x567d3cea, 0x29afb74a, 0x5feb53ef, 0x52cf93ca, 0xa5a71cba, 0xbad7a47f, 0x28e09b03, 0xd36eb1b, 0x000101 }, { 0x48eb3db9, 0x43b9f09b, 0xf74b9646, 0x5097c0db, 0xb43d2e55, 0x9857be7, 0x604a033c, 0x3a515cdb, 0x566df373, 0xdb4fa171, 0x1a6c742c, 0x8b6385b0, 0xec48d54a, 0x25e649d1, 0xeabb4789, 0x7786dd2d, 0x00007b } }, { { 0xc87248b1, 0x3a3cd12c, 0x538029d8, 0x75396439, 0xea303945, 0x386f9314, 0x85fb96b, 0xd89b8442, 0xc9d48c5d, 0xd79a8557, 0x10d89ea1, 0x6038eb5, 0x8acc8dbd, 0x30b5cf2, 0xff364b75, 0x260d1187, 0x0000d8 }, { 0xa8c78fc9, 0x8378ff3b, 0x28a00e64, 0x63fd01cc, 0x219b6d69, 0xb519d824, 0xfc000365, 0x915aefc4, 0x6874535a, 0x78a7786c, 0xc4e40d11, 0xa8726268, 0xbaa09498, 0xa0ba5a46, 0x2879538a, 0xe3998cc0, 0x000105 }, { 0xce205966, 0x8b2db69, 0xf201814b, 0xa5ce562f, 0xf85c2ff0, 0xd4f8e39, 0xbc618448, 0xe343b94f, 0xa4356460, 0xe1693497, 0x7cc01ee5, 0xbf9de879, 0x934381f0, 0xcab85a7c, 0xcc0af79c, 0x372386a2, 0x000024 } }, { { 0xe7d68aba, 0x83f817cf, 0x1372a40e, 0x4ca64c17, 0x7d1121ba, 0x8b26ba61, 0x6b800c11, 0xd5fa98f2, 0xa585e25c, 0x9495c6d2, 0x5011304b, 0x49dfe40a, 0xcfe7c9f9, 0xfe7ec92b, 0xaf1b6ad4, 0x539f0074, 0x000025 }, { 0xb00f1786, 0xb354ad6, 0x31d1d022, 0xff3db6e0, 0x431f95ec, 0x4cd38b1c, 0x3f9a1c40, 0x11f7122, 0xb5e8b681, 0x92bebc14, 0x568eeb14, 0x9f859f26, 0x7273bc1d, 0xf5fae78f, 0x86f8e8d5, 0x934b1ec, 0x000168 }, { 0x72d0da6a, 0x770e93f4, 0x12f82d29, 0x71a274d5, 0x7be9d67, 0x3ec5ddac, 0xbe529df5, 0x5c35e4d9, 0xf772b25c, 0x4f77b15e, 0xfaada294, 0x234b6e1a, 0x9f95254, 0xfb9ab989, 0x5978bce8, 0x9a06c8f7, 0x0001d3 } }, { { 0x21fbb14a, 0x1c96b4af, 0x78fce900, 0xad9cc6ea, 0xbbc36b24, 0xdf024e42, 0x676bece8, 0xdc96b9f2, 0x241127fe, 0xce1cf767, 0x66ddb6f9, 0x6018118a, 0x7a904a56, 0x332c400f, 0xb94d51d1, 0x3a5bfcf9, 0x00011c }, { 0x7f501b95, 0xa7840aae, 0xa8f591b4, 0xca36db0, 0x64ccb92e, 0x149c58bb, 0x815d76c6, 0xbbcb03f1, 0x6ade1ab7, 0x3afa4d8b, 0x7241eda4, 0xc3e0778d, 0x70cf25fe, 0xe6991af5, 0x8d2afc67, 0x982586fa, 0x0001c0 }, { 0x9ee39ed4, 0x3007980d, 0x820c7b9c, 0x291e66a, 0xca40ddad, 0xd476c717, 0xf22f91b3, 0xd164213c, 0x433c6d3a, 0xfaf4a00b, 0x8633d9d7, 0x9f71ac04, 0x12b485ae, 0x21e846ca, 0xd5e05046, 0x6a8a8e09, 0x000187 } }, { { 0xabbbd53c, 0xc44c41d0, 0x555d5ecf, 0x35594ac8, 0xd0807277, 0x855b6c03, 0x3bb2046a, 0x4cd8ea82, 0xf2dbe43b, 0x588382c2, 0x716e4e35, 0xeb22c51a, 0xb1172f56, 0xb1ee21d4, 0xc47be4a8, 0xb103216c, 0x0001f1 }, { 0x9a44a612, 0xea809259, 0x87e4ba25, 0x9e7e10b6, 0x3990483, 0xc89bbd51, 0x5b2d85dc, 0x115bd335, 0xe9a6dade, 0xb058f23f, 0x83721335, 0x34f85453, 0x3943918, 0xd42bac23, 0xc34be0c1, 0x56833341, 0x0000c1 }, { 0xc367b19e, 0x3998986d, 0x4ae8d55d, 0xee607130, 0xf106929a, 0x9b30c6e1, 0x292b6336, 0xd3934c5b, 0xf7fdd48b, 0x18aaa315, 0x88601b6, 0xca3d834d, 0x2d42e611, 0xb65e319, 0xaaf1b452, 0x310929bc, 0x0001f6 } }, { { 0xf0c59b4c, 0x2f55972e, 0x54c53923, 0x71f86539, 0xc6745e4b, 0x5bf6346d, 0xb668c453, 0xd3d8318a, 0x333243e0, 0xbc8255a, 0xfec92076, 0xf90bf14d, 0x88abbf85, 0xeb38c604, 0x95527ea9, 0x4b740d8c, 0x00011e }, { 0xc5c44ac9, 0xe7088a85, 0xdb7e0220, 0x7bdbeac7, 0x8672eed4, 0x5d4d364d, 0x954ae91, 0x8fb36cf2, 0x3e2a72e9, 0xea1fbcdb, 0xbfeca906, 0x4a7c11db, 0xfab0516a, 0x5f3a6d81, 0x36102de0, 0x7a08fb10, 0x000141 }, { 0xcc833da5, 0x861a5197, 0x3a16ea3, 0x1bd3cec4, 0x35b7fd, 0xe7c99072, 0x3c20c9d6, 0x94df9fa2, 0x2460db68, 0xdf382111, 0x9c288c5b, 0xc1b27ff3, 0xcd97f75c, 0xa81786ef, 0xa9a7bcad, 0x534580b9, 0x0000c9 } }, { { 0xd61925ec, 0xcef8b2cc, 0xbd849000, 0xb1ca3d68, 0xf127c0af, 0x84a94b84, 0xc39ad70e, 0xd1b6edba, 0xf5b7fa9e, 0xbaeb08ed, 0x9e05bef5, 0xa712d821, 0x286a1d53, 0x32bd8a74, 0x8e4565bd, 0xd0a5015, 0x000042 }, { 0x9796341d, 0x6eb27d2f, 0xadfe7407, 0x4d24250, 0x52c74129, 0x550b0230, 0x9a872e14, 0xa7831793, 0xab8837a, 0x5edecfec, 0x34133b83, 0x4f17016, 0x565d241a, 0x17c96569, 0xfd830cc4, 0x68d0ccc6, 0x00004d }, { 0xbe3baa67, 0xc9a146b2, 0x46695a95, 0x61b5557a, 0xfdd36f01, 0x5ba2af76, 0x3f6d634c, 0xbf95f4e9, 0xba9f1841, 0x4001adeb, 0x7471e31d, 0x9312bc14, 0x59aeb91b, 0x9534d369, 0xe78dcece, 0x31926eb, 0x0000a1 } } }, { { { 0x312ef5ba, 0xcf4dfd5b, 0x12436e9e, 0x1732b8d6, 0x95fd2e1e, 0x768b564c, 0x780f89fa, 0xedad2ca8, 0xa51351fc, 0x59019fc2, 0x38b0f1e2, 0xff194f25, 0xd7247a9e, 0xd382b675, 0x87dc7d4a, 0x385c50bd, 0x000171 }, { 0x568ad7ae, 0x2a91299a, 0x1f0873e2, 0x4da8b4ab, 0xbd0e7ed3, 0x4bd8e44d, 0xc7114775, 0x3bbdbb0d, 0x359cce37, 0x62dc6f80, 0xf73b872, 0x4600a6f, 0x785c79f7, 0xdbb8f3ae, 0xf9bb2a70, 0xa03473cb, 0x0000f8 }, { 0xbfc60100, 0x86268c02, 0xa9649b55, 0x98424c86, 0xb4322ed0, 0x32b6e195, 0xa5b6fe08, 0x9e9e97d4, 0xb5661cbe, 0xfd826071, 0x455a87d2, 0x7720a9, 0x3ee51a29, 0x78c76a18, 0xed63952e, 0xc23ad0fe, 0x00003f } }, { { 0x18c02fba, 0xb92ea0b4, 0xceac18c6, 0x36a9a3c2, 0x40ff53c1, 0x9410f04, 0xd854076e, 0xe9018960, 0xd8837c4f, 0x70b60aaa, 0x8a6af133, 0xec07eb37, 0x686b59a3, 0xdb88ad04, 0x2c64b935, 0xbdbfc195, 0x00016e }, { 0x507b00d6, 0xac488142, 0xf30ee7d5, 0xaa73d603, 0x29c90739, 0xca3c1876, 0xb64549ce, 0x13722c2, 0xc787a8c, 0x5b08f9d7, 0x2080a100, 0x3865ab06, 0xa0f24e99, 0x6d598e41, 0x4d89b16a, 0x44956f4d, 0x0000d1 }, { 0xf6583e8e, 0xac050225, 0xe63a98db, 0x22b2b3f7, 0x367a5918, 0xfcc88808, 0x39e2a70b, 0x379f4e6b, 0xdee15a81, 0xe53fe97c, 0x3d598a56, 0xb9d943, 0xc9871d16, 0x86adf1f4, 0xa63b3f4f, 0xa9c675ed, 0x000047 } }, { { 0x5bb961c3, 0x26cf54a1, 0xf479cc9f, 0xf82376ef, 0x739f31a3, 0xf84f7be0, 0xc82837f4, 0x1e972c2d, 0xcb3123f7, 0x497b86bb, 0xbe13d7a3, 0xc1031baf, 0xa54813b2, 0x54525dcb, 0x532be295, 0x14a6ed5f, 0x000161 }, { 0x5766ee4d, 0x8346739c, 0x5b79dce7, 0x75b6b270, 0xb38a614, 0x77a15d49, 0x103e882b, 0xe54c974f, 0x9b419fe5, 0x7c7450c6, 0x28209fb8, 0x3ac7560f, 0x7e71a3c6, 0xc0620918, 0xbfbc1403, 0x3c4d0640, 0x00007e }, { 0xff669ee7, 0x9fbc5789, 0x14e3f01b, 0x9c896b10, 0xd459121f, 0x3bae77f3, 0x3985580a, 0xefe8f604, 0x99fd1646, 0xa84e6b92, 0xb413f282, 0x250cca0, 0xa8bd75df, 0x18478682, 0x55c626d1, 0xec2933af, 0x0001c3 } }, { { 0xa6be4505, 0x159025ac, 0xe5e078b4, 0x2ab8d8b6, 0x2ce1aed3, 0x52d635ac, 0x21cb6093, 0xc1f6eb33, 0x4851170d, 0x916f0623, 0xcaee8ba4, 0x61ea24a7, 0x39d2163b, 0x842937d3, 0x148a4b90, 0xb3ddbef, 0x0000fa }, { 0x3cc0bfc5, 0x326f8131, 0x2497d127, 0xb6f22f07, 0x1a5b05fd, 0x8f6c4e4e, 0xb6390f7f, 0x483295d0, 0x1b002f0f, 0x382418ba, 0x2e3e01e5, 0x770fe24f, 0x7f886192, 0x70d0d929, 0xe486e2aa, 0x34232246, 0x000134 }, { 0x7705764d, 0xe0b078ab, 0x5854c091, 0xfb59e284, 0xfeff9667, 0x9dcae7b7, 0x322fc542, 0x2918ab09, 0x7fe14937, 0xe61537ad, 0x9d707c, 0xece32021, 0x60e24ef3, 0x50b2f5fd, 0x62836930, 0xb00482f9, 0x000091 } }, { { 0xf8b1702c, 0xd5821b3, 0xc45705a6, 0x60082616, 0xd623d197, 0x75e612dd, 0xcd76d9c1, 0x12014cf, 0xe863e381, 0x57d3e1f7, 0x66552bee, 0xcc9962ce, 0x25af5a4, 0xf76b7cb0, 0x7c4c5524, 0x686fe5e2, 0x0000bc }, { 0x7969ad29, 0xb07391b9, 0x2436bc93, 0x7803ae40, 0x988ee925, 0xcf2713bd, 0xea95be32, 0xfb0e9887, 0x3963179d, 0xf0bf1834, 0x59157caf, 0x5d54aac1, 0xafcd3094, 0x443160f5, 0xeba94ee7, 0xf663381, 0x000174 }, { 0xe844bf5, 0x889a1217, 0xbf36708c, 0xdc0ba7ac, 0x2ed0c425, 0xb386998d, 0x76a34af0, 0x76b2e696, 0xe55806b5, 0x6d912ed7, 0x599aa732, 0xf8f11770, 0x6bdb862d, 0xdac3f8b0, 0xad8d9b74, 0x81b0abd0, 0x000160 } }, { { 0xf27dfeda, 0xca51ab73, 0x66669175, 0xdebdd14, 0xbba1ad14, 0x2be9fb40, 0x44e88e52, 0x77d31c4c, 0xa9f07526, 0xe7321cd8, 0xf900ef67, 0xc29b62eb, 0x4b9f72c7, 0x1d3ea2db, 0xf83db856, 0xb4679d08, 0x000121 }, { 0x90e57f41, 0xcd1b5411, 0x9eff337b, 0x1df15ba4, 0x356bf349, 0x888675df, 0x1ce58f4f, 0x5f336eac, 0x6f3abe0c, 0x24bb786, 0xf3e827cf, 0x19c357af, 0x59dd0472, 0x31d7e017, 0xe371ae24, 0x5ea095b0, 0x000052 }, { 0xf6b7726d, 0x2dd7edb8, 0x7b4afc84, 0x17db0502, 0xbca16aeb, 0xf7383b4a, 0x61abc37, 0xdc105fdf, 0xec682b72, 0x8a35ebac, 0x76b78838, 0x3e6c8fe2, 0xd7a5b66, 0x5cdfc58d, 0x9594c78c, 0x908825dc, 0x0000e5 } }, { { 0x877e166c, 0xe2748733, 0xc6d40c92, 0x5a3c05d2, 0xb7b9a9cf, 0xacd9e52c, 0x5cdcd753, 0xa35b9467, 0x79318e0, 0x6a65011a, 0x497f3d7b, 0xca4abdf4, 0x78d4d71d, 0xa0c2b0e1, 0x136c8dac, 0xb7e3d649, 0x000110 }, { 0x2f64a5b3, 0x48620ef7, 0x35cc8db1, 0xa59d729c, 0x35d52623, 0x35b8be7d, 0x7848147c, 0x33e5a70d, 0xa9928789, 0xa330d65a, 0x814adf19, 0x3f6b2bac, 0x95f254f4, 0xf9417503, 0x4fec9fd3, 0xe0187e3b, 0x000037 }, { 0x9a6419ba, 0xa44e44d3, 0xad0ce2e4, 0xe7c0af51, 0xa3e2f23b, 0x75769c3a, 0x2c0db0df, 0x98dee181, 0x900f2ef7, 0xd1f4581b, 0x508db78, 0x39f2d42b, 0x56c862b1, 0x4f24ba95, 0x8341a9d, 0x423010a7, 0x00001b } }, { { 0x734a75cc, 0xddc989ba, 0x99231b36, 0x266d189f, 0xfdde42ae, 0x37df3d22, 0x5f8b7786, 0x44361352, 0x20bbb2e2, 0xaa12fd67, 0xc92ed7a5, 0x1c44be0b, 0xca5530f1, 0xef27c5bb, 0x2b609437, 0x534bdfa2, 0x000187 }, { 0x683a5c6f, 0x671b1ab0, 0x2aaacb38, 0xf8f8d076, 0xe317c2e2, 0x685b9881, 0x737355b0, 0x12347be5, 0x761f443d, 0xef00c814, 0x572ca2df, 0xc697ac4d, 0x3ff8df7c, 0x9c5bc847, 0xbb43ebb1, 0x1ac068a8, 0x000068 }, { 0xb6d8894a, 0xb0ca9a60, 0x7e1b3417, 0x191be5a4, 0x27137118, 0x37090ad3, 0x57709079, 0x9d5c2e50, 0x31024751, 0x861b25cb, 0xcafa0d00, 0x92ef4151, 0x6574ef2a, 0x60240fe1, 0x24f797be, 0x5997cecd, 0x0000c8 } }, { { 0xc7eb1fe5, 0xf7e06271, 0x2a1be9dc, 0x5f8368de, 0x2a235e86, 0x2c9fa952, 0xe04725d6, 0xd8d80bc7, 0x7b0dc1f, 0x585bfc93, 0xc41e17b5, 0x949d3e91, 0xfc3be911, 0xe499f402, 0xa595c207, 0x66dd9f26, 0x000088 }, { 0xb480819b, 0xe8743e77, 0xcebce417, 0x640bc0cb, 0xf1a5f408, 0x86eddd85, 0xf064c8, 0x9f41c925, 0xb830c3e5, 0x37150668, 0x3c3ef4ad, 0x9ff0280e, 0xfc2b85e3, 0xa91c3e9b, 0x2266f9b8, 0xf3883810, 0x0000bb }, { 0x7ed1cb8e, 0x9e0d5532, 0x6812bbcd, 0x65c98f93, 0xe25405db, 0x471eb4c5, 0xf12ba2a9, 0xadd81876, 0x7349e74b, 0xe7426c49, 0xfbeab3f7, 0xeb052721, 0x32f214be, 0x26bf7865, 0x541f3475, 0xd2791c64, 0x0000e1 } }, { { 0xd56c1be6, 0xa4acbb2f, 0xd3106277, 0x88917c34, 0x12c8e883, 0xbf0c482d, 0x681e67d3, 0x8715a20f, 0xe046ecb1, 0xa19461da, 0xd508b37d, 0x86d47998, 0x31daa938, 0x56ef6849, 0xf6f432f7, 0x2ca5eb4f, 0x00012d }, { 0xb28b3289, 0x6d3ac4df, 0xa1e866aa, 0x1e309c1d, 0x9deb7e82, 0x2ed4be45, 0xc29c7945, 0x7047e407, 0x43c9586f, 0x8a1167e8, 0x662d4da1, 0xdb9a3d6, 0xd5fe90cc, 0x590a47cd, 0x99a841e5, 0x15e48b22, 0x000043 }, { 0x5bf46af9, 0xbccc50c1, 0x9e8af7b5, 0x2cfcdcde, 0x8cee137a, 0xbe32a01d, 0x73b5a217, 0xe9821fcd, 0x40929d6e, 0x76a8ae8a, 0x7daeee8, 0x3d83ced0, 0xc03787ce, 0xf20174e6, 0x63a7277e, 0xa8c5f459, 0x000056 } }, { { 0xf89e3bd1, 0x6badee6f, 0x5a7a26fb, 0x3006f5bb, 0xbd877d7d, 0x68db1ee6, 0xf64cf6e2, 0x676f6914, 0x4e4aea96, 0x7f5754b5, 0x60b99f63, 0x3017b23, 0xfc865ad8, 0x837d406b, 0x4cb6d726, 0x1a12fa56, 0x0001e5 }, { 0x823070db, 0x929aaf67, 0x40cf62aa, 0x5f8a1879, 0xedb25dc6, 0x622fff36, 0x90c480de, 0xd1c8b8be, 0x3ae98414, 0x5c4d22e8, 0x4d811f6f, 0x2c016a5d, 0xf2d08244, 0x12308769, 0x7fdd5c47, 0xa2a02040, 0x0001f9 }, { 0x1a3962e1, 0x6129896a, 0x89531f80, 0xba4c4e63, 0xdd40701, 0x1f550974, 0x52b4ebe2, 0xd0ed9238, 0x96c0e6da, 0x4c731f8a, 0xe12f0342, 0xb4ce985f, 0x5fe1571, 0xc07156d0, 0x28e2b8a8, 0x457e5bb5, 0x0001ab } }, { { 0xf032a3e6, 0x9503689b, 0x9e677198, 0x26f91335, 0xf40489fa, 0x77caa68f, 0xac1f19a1, 0x57f4100, 0xd506b0f9, 0x724e941b, 0x1aaf9f34, 0x8af21ff5, 0xb8af72af, 0x9cf43306, 0xd3de1129, 0xa3c429c, 0x000028 }, { 0xd35d96b5, 0x27ba09d0, 0x7f41b08e, 0xda2e70a0, 0xfb197ece, 0x49751fe9, 0x3a2b162a, 0x23cd2ad6, 0x60767b4d, 0x1a56e4c4, 0x3a6b1abd, 0x7aaf4400, 0x1e202e84, 0x8a954a8c, 0x15a1b9f3, 0xf69a19b4, 0x000052 }, { 0x398061f, 0x448982f6, 0xace30969, 0xd601b406, 0xc6a66a3d, 0x1192a576, 0x72e67e53, 0xee46f6c8, 0x9e1da427, 0xbd74bc48, 0xec42fd80, 0x99288299, 0xadcad987, 0x772f3204, 0x53377fd2, 0x99939b04, 0x0001f6 } }, { { 0x720b45be, 0x215ac0ba, 0xfaf0ee1c, 0xb14f5a26, 0x322a6582, 0x6a517fa7, 0x987cbf3c, 0x42740836, 0x7cbeb5dd, 0xfcc443c8, 0x1cad80fc, 0x5679ae72, 0x357e2d93, 0x50e103a0, 0xe0510e47, 0x8c6e2bb, 0x00006d }, { 0xb4d8127a, 0x509bb1aa, 0x40ee30a3, 0xc503029d, 0xd1b2c04c, 0xddec59f3, 0x86deee29, 0x1459217a, 0xc83850ca, 0x6d88b5b7, 0xefbc533f, 0x5d0bb9a8, 0xa109e170, 0xcc0a345b, 0x330dc886, 0xdbabeaa8, 0x00005f }, { 0x450a9e39, 0xb1674fa, 0xbbe60d6b, 0xd831bc6f, 0xd8726a14, 0x8ea91abd, 0x1091cb56, 0xa99f9c6e, 0x2a906e06, 0x784e5e7b, 0xb4a4e55e, 0xdaf46bf1, 0x8e70c5a, 0x8ea48a6, 0x3109dcc8, 0x4c4cac87, 0x0001fb } }, { { 0xee4f2e2c, 0x310c7d02, 0x8e25b5b9, 0x4a5ea048, 0x62c1ced5, 0x583c44d1, 0x23cce7ee, 0x46cbea1b, 0x706aab6d, 0x6b364b56, 0xac47e402, 0x5464c14d, 0x2cf1185a, 0x98135e9d, 0xe2931f53, 0xcb55afb2, 0x0000ba }, { 0xd6b45a8, 0xeca38e44, 0xbaeeab9e, 0x30710f1e, 0x7b7596f5, 0xcfd3da09, 0x57717fd1, 0x71a76d55, 0x30f59c25, 0xa758a00f, 0xbd47b197, 0xe0f12d96, 0x6a97cf4c, 0xb8675d84, 0x4efaf60f, 0x25635b50, 0x000016 }, { 0xd4cea186, 0x56727a2e, 0x557c943, 0x92ecc9d1, 0xd0fc7af4, 0x1ffb4bb8, 0x8caf1f58, 0xfc343d1b, 0x97c40791, 0xa042e00e, 0x5b47cf05, 0x5fb15c29, 0x8f54ba90, 0x57d8a22b, 0x583b4d45, 0x5ced5830, 0x000009 } }, { { 0x211ff4a0, 0x5ad4e4a, 0x7eb2a3d6, 0xc084e960, 0x173eef56, 0xd494a08e, 0x8af566e3, 0xb8535981, 0xb0851e8, 0xecd5da23, 0x6fedf002, 0xbb88516a, 0xe7309fcf, 0x52975413, 0xb1fc112, 0xb95ae64b, 0x000173 }, { 0xbc954af9, 0xf7cc3a52, 0xb98bfb3a, 0x9df4b96b, 0xc4f43183, 0x57abfe60, 0x49777288, 0xe36d2e7f, 0xcf8ffd39, 0x4e3ad72a, 0x8fc8735, 0xc3b4e623, 0x980299cd, 0x691c4a8, 0xc9a08742, 0x2f431910, 0x0001a8 }, { 0xa695b04d, 0xcb766719, 0x63b94970, 0xf6b0fd19, 0xf9750cb5, 0xdb929f2e, 0x88fea90f, 0x75614479, 0x1641abf6, 0xc1688e32, 0xa6270de5, 0x730748b1, 0xeb7c0f4b, 0xcc39c266, 0xea728104, 0x5f345d2e, 0x0000f4 } } }, { { { 0xd4ab404a, 0xf90af935, 0xbacca96d, 0x77f2dfb2, 0x4e4640d0, 0xfdb676e3, 0x226fb868, 0xb504dc31, 0x60909b2d, 0x3854ed5b, 0xe6bfc7cf, 0xfd189d50, 0xa1bab0cf, 0x5682b9c6, 0xfc2be05c, 0xbb2e283b, 0x0000a4 }, { 0x75ade1b4, 0xd9e3d2c9, 0x61ae9599, 0xcb7734f, 0xfd51c326, 0x72c27a2b, 0x9f676c69, 0x45c14e50, 0x1931d152, 0x9486ba91, 0x410ce3c5, 0xeda44b87, 0xe15520ea, 0x7dea2f8b, 0x735f022, 0xc1f24325, 0x0000db }, { 0xca8d04db, 0x9378623e, 0xb6a797ed, 0x2bce1734, 0xce13a72e, 0x3c90a0ab, 0x3244abab, 0x65945f5f, 0xb12b8c52, 0xc12ed154, 0x599b59ac, 0x5afd1425, 0x27da9986, 0x31c313f9, 0x3f127296, 0x8cb1c886, 0x0001ea } }, { { 0xff803a7e, 0x8ef2a870, 0xea62bc7a, 0x218cd8f7, 0x9b08ecc0, 0x51b26678, 0x1b272ab8, 0x15c8d4f8, 0xf5ee6cb9, 0x837e37e8, 0x698eb0b9, 0xd21cbdd2, 0x168174e0, 0x41f0d4ed, 0x9e896c13, 0x3315a402, 0x00012e }, { 0xd9f483c8, 0xd7eb059e, 0x8a6a47dc, 0x51fb649b, 0x5195db5c, 0x2703b71, 0x45d31ddd, 0x4af7e859, 0x89aa80ba, 0xfdb4618b, 0xed5e73ba, 0xf81f36ab, 0xe74b9f01, 0xcd916149, 0x46f01934, 0xc27d5bf, 0x000168 }, { 0x99f4705f, 0x205c4b5c, 0x4dd2ec2e, 0x9f1cf0c0, 0x13c43f91, 0x142131fe, 0x33bb3860, 0x7239958f, 0x81c81a01, 0x68090dab, 0x20e20a46, 0x816f473c, 0xc5851b18, 0xf1e8cf74, 0xaecb15fb, 0x91cc2ede, 0x0001cb } }, { { 0xc8695602, 0xcf36981a, 0x34428f48, 0xcbd22915, 0x2317400a, 0x48aa16f0, 0x8972d781, 0xb99edf67, 0xef84d2d9, 0x2b6d609c, 0x7de9e07b, 0xe4678196, 0xcf983e6c, 0xabe8d846, 0xac5f5951, 0xf5660a9a, 0x00019a }, { 0xb8a5ae7d, 0x2aae7278, 0xdfaab5f0, 0xf72335ab, 0xc9aea997, 0xd7cf0208, 0xfab68e12, 0xb32dba49, 0xe63c8aea, 0xdd5f2b66, 0x3312314c, 0xb3a2e8bc, 0x12c336ce, 0x80a4a639, 0x4962329, 0x9a9aff9c, 0x00009e }, { 0x65fdbfc4, 0x7d875524, 0x170f775e, 0x59f0dbb1, 0x5691d0b9, 0x6c1c3c93, 0x8330cdfa, 0xecf6a3d1, 0xb50d7ae7, 0xc76e8386, 0x79dfb9c6, 0xd876b4e4, 0xbe99bc92, 0x8e29a399, 0xaff80f2d, 0xb69a179d, 0x0001a4 } }, { { 0x3b2331b6, 0x28448cca, 0x6b1ff2b3, 0xcbfdf0a5, 0x3bd7b6da, 0xd6743896, 0x572dbe3b, 0x836741b3, 0x3cd0d593, 0xf0cd8d0, 0xabb1c68e, 0x1a3155b6, 0x24c6164b, 0x421f872e, 0xdcdc2e62, 0x2b3b1e66, 0x00019a }, { 0x1ee1b8c7, 0x8d84a724, 0xf94bf2cc, 0x9e04ea60, 0xf2a15640, 0x573ec41c, 0xa5065de8, 0x3c5735f8, 0xaa325f32, 0xa797c205, 0xc931ed59, 0xe7683f9c, 0x197270a, 0xe2a00dae, 0xfb429046, 0xc65fcd0f, 0x0001b1 }, { 0xedee5724, 0x8a430f93, 0x8a1e706, 0xc209f632, 0x73c62029, 0x5f545fc4, 0x301ef596, 0xc49b60a9, 0xcfe50e07, 0xca998aee, 0x4ddfe08, 0xb2ae37a, 0xcfbede73, 0xdfa4f9c7, 0x8ad9d942, 0x7dd99f37, 0x0001eb } }, { { 0xcf2c15f, 0x58b8239c, 0xb2b74688, 0x2d666642, 0x574d2358, 0xe6e7cd1, 0xcbec7a67, 0xa19ac6ba, 0x239b2a8c, 0xbd290fad, 0xc3702a27, 0x7ec6251e, 0x84ca6c8a, 0x6308fa1b, 0xd4234056, 0xe1c32b4c, 0x000031 }, { 0x1b6f55d9, 0xab3d917c, 0x4810fa49, 0x74a4284c, 0x171de54f, 0xcafcc5fc, 0x85c951e0, 0xda9e48b7, 0xed0fd940, 0x4bdae120, 0x377660a3, 0x2f5fb186, 0xb81bfd99, 0x9f60a329, 0xc3958dfa, 0xc58f5620, 0x000058 }, { 0xe054f6c7, 0xa6a98532, 0xe8f2d2d5, 0x49adbcbe, 0x578d482d, 0x7c7a58ff, 0x6df3be85, 0x3148ccd4, 0x1749b89, 0xb61143c5, 0x8456786d, 0xdc6ca996, 0x356aa721, 0x6298c4de, 0x11229d30, 0x4ab842c4, 0x000110 } }, { { 0x3e70b90d, 0x3fdd7137, 0x855a6550, 0x66261b1c, 0x2bd63953, 0x66bd1408, 0x839cf097, 0xf320ca96, 0x9ca2b6f1, 0xb8c0abe5, 0xb11ab8b8, 0x2397208, 0x41686f0b, 0x499c6a9a, 0xe55bd3c, 0x2db2ccf7, 0x000130 }, { 0x45e2e475, 0x290e91b4, 0x937bcf5, 0x629a78d9, 0x51f8ccd, 0x8b4219de, 0x5727be9, 0x5d5158a0, 0x55c1e9ca, 0x5029ec10, 0x6bc7fd11, 0xd4a430cf, 0xe49abb29, 0x9a993897, 0xdfe23241, 0xb7da641f, 0x00005c }, { 0xaab1be56, 0x34abf5c9, 0x5dba92ec, 0x7dbdd811, 0x828bb5ca, 0xd1428c83, 0xed8984c5, 0x320d50d3, 0xc79a45d4, 0x6a493454, 0x25185d80, 0x2b66940a, 0x193c57b6, 0x6f0703ed, 0x27609cfc, 0x976ee228, 0x0001fa } }, { { 0x3b74e559, 0xd2a86095, 0xe6f23931, 0x34870277, 0x1399185c, 0xc7150a35, 0x596f6211, 0xeeea6825, 0xa51f8f2b, 0xfe2b8860, 0x92822465, 0x18e152bf, 0x8c45da19, 0x46d673e3, 0x6f1792ba, 0xc524230e, 0x0000e8 }, { 0x94a6ceca, 0x638720b5, 0xa3548c7d, 0x605bdf65, 0x1a4da58a, 0xd73ea5d1, 0xbbc7a781, 0xfc023605, 0x66b9ddaa, 0x9cceec3e, 0x8a5fe44a, 0xa2cb6712, 0x1da3c4f9, 0xc088900a, 0x75a2b8bd, 0x2775884e, 0x000110 }, { 0x170a6e67, 0x966b80c0, 0xf1d4f0c1, 0xf1cf1d8, 0x624355f0, 0xfba7e2cc, 0xf3ab6401, 0x28cd2780, 0x1db1c8dc, 0x59a6dea4, 0x6cba4fa3, 0x75fb4103, 0x8078858d, 0x82258db4, 0x5f23d145, 0x21bb4442, 0x000118 } }, { { 0x804065c0, 0x79ea4683, 0x7893ccd0, 0x64c3b328, 0x92d30b03, 0xb6245bde, 0x35c6e4b2, 0x6b454aab, 0xe30ddd05, 0xa21a7122, 0x797d1b32, 0xc930a9f6, 0xe64f763d, 0x8183336b, 0xea00038a, 0x571ec5f, 0x0000eb }, { 0x744eb09e, 0xa2869135, 0xd78ccdce, 0x48e9e5b7, 0xfcaf4270, 0xf7ee838c, 0x48ed2d89, 0x78f03d1d, 0x8bc61e4a, 0x421a967e, 0x6563b400, 0x8999a4f5, 0x6bb38215, 0x4435304, 0x30bf8a47, 0x6c93656f, 0x0001e4 }, { 0xd8f37e91, 0xf9baf864, 0xe71651be, 0x2b118141, 0x1904965a, 0x6610f445, 0xe13a5b4b, 0x478d1a7c, 0x2d33b2cd, 0x138c9eac, 0xd2e306dc, 0xb3d39c07, 0x6c104084, 0xe7716060, 0xfe3f9b41, 0xb492095a, 0x0000eb } }, { { 0x2f73089f, 0x5a2d410d, 0x51085ae9, 0xcc0955ea, 0x61d8112a, 0xa2be7ba0, 0xcd0cfa92, 0x2925aba1, 0x1e4304c, 0xb7887eb6, 0xb8ecd703, 0x8b67d8a5, 0x3d96295, 0x93a0d0e3, 0x4f9928c6, 0x275f24fd, 0x000182 }, { 0xd2612131, 0xeb519270, 0x2b7f95f, 0xe3e7be8b, 0xe201a8db, 0xaea0ca5d, 0x8b86e481, 0x8805e54b, 0xbf69001a, 0xbd068acc, 0x6544e43a, 0x7087c5b3, 0x634fd8c0, 0x879b76cf, 0xeac10301, 0xf582899c, 0x00013f }, { 0xc2c6c7b4, 0xaecad660, 0xcd975e39, 0x8849ab8, 0xbe2461a7, 0x271d2fd9, 0x333b5291, 0x5971be22, 0x65ed7721, 0x68ad99db, 0xe4ddf265, 0xdbd8ec53, 0xedd39e72, 0x384101d3, 0x42470aa3, 0x38ea3b5e, 0x0000ef } }, { { 0x30fb6fca, 0xc3b3643f, 0x33cd040a, 0x58d22d94, 0x34661db7, 0x35c965f6, 0x5451dd3b, 0xc17c7e99, 0xf59bc99f, 0xc8e353c5, 0xafa80646, 0x92b001c2, 0xb17bf93d, 0xe8f2e3fa, 0xfe676bfe, 0x551714aa, 0x00005e }, { 0x29138ab, 0xb65c3d29, 0x1cd38fbc, 0xf3e4429e, 0x8186d074, 0x823967a, 0x59fe2040, 0x865f8644, 0x8ab0e970, 0x21aeec4e, 0x47e5e979, 0xc1246f0f, 0x9ad9d121, 0xc601f5ab, 0x2fffa7aa, 0x95ea170b, 0x00010d }, { 0xbb28ff2d, 0x72be1cb8, 0x5d48b8ce, 0x17628133, 0x5a566441, 0x1a17c84e, 0x33c38bcf, 0x844ce6bf, 0xf9f0b17a, 0x1e9804d6, 0x2de30409, 0x226061f7, 0x2ff82e3b, 0xfcbed463, 0xce68251d, 0xe4a3ec41, 0x000138 } }, { { 0x37bb37d9, 0xc7ad03c9, 0xaaa78dc8, 0x4a70817d, 0x6f494315, 0xcdeac8e4, 0xc2b9a6fb, 0xd502302c, 0xf09e02bc, 0x13dd813a, 0x8a200cc3, 0x2ee73f3f, 0xe7b4d9a6, 0x298de9a1, 0xb3689a99, 0x981230d9, 0x0000b8 }, { 0xda44ac35, 0x117cc4cc, 0x6eaedca2, 0xead3756e, 0x85715a40, 0x5555693e, 0xa3077fdf, 0x40eebefb, 0xe1b1f61d, 0x8e7235fa, 0x5e358432, 0x7776afe9, 0xf2a8d20d, 0xaf24d02c, 0x8c704f5a, 0x9af44543, 0x0001bb }, { 0x169ce8ea, 0xfd75dc14, 0xf5a284e8, 0xca12b4e5, 0x5330bd61, 0x19b0f9e2, 0xd5028dbc, 0xd411bee1, 0xa2d5729f, 0x8c646955, 0xa07bba2d, 0x86487c55, 0x5fb8f53a, 0x8bb7a0c4, 0x63eadc06, 0xc3a7b624, 0x000107 } }, { { 0x476aeb84, 0xec7c3c8b, 0x8f45a791, 0xb36b453a, 0x801784c8, 0x2d842f39, 0x31b439da, 0xa34953c4, 0x94113b3d, 0x7d27280c, 0xa03a46da, 0x8e4558a7, 0x82ae1924, 0x5b0299d4, 0x7985cb6, 0xfd48af21, 0x00002e }, { 0x33f72f10, 0x54034cfd, 0x5990ba7, 0x9853275, 0xfd280b47, 0xaedae770, 0x872242de, 0xf0678e36, 0xdd179615, 0x67d3c9d9, 0x9d577179, 0x38f7646e, 0x169269bb, 0xb7b58710, 0xbb8ee1b4, 0xfc685170, 0x0001ce }, { 0xeadb293b, 0xf916a3f9, 0x1422a988, 0xb7b28128, 0xc8fbd3dc, 0x51d03ad6, 0xbe3bfa81, 0x26b0b677, 0x7091bfc2, 0x8ffa8a1c, 0xe5ab0ba2, 0xcbb1952a, 0xa9e9a1da, 0x3618bfe3, 0x331975fa, 0x2395bb3, 0x0000ae } }, { { 0xe1189aab, 0x3058de46, 0x37467542, 0xcb0d24c4, 0xccd5bade, 0x642b5e34, 0x8a181619, 0x9854b291, 0x236ff892, 0x559f72cf, 0x37f51e05, 0xcdef88df, 0xf90a8f1d, 0x6caa1ba, 0xa8c58465, 0x1b2004c9, 0x0001ff }, { 0x21868c1a, 0x34647896, 0x4ebced90, 0xdbe3c30e, 0x7b2063b3, 0xae21c387, 0x54a4522d, 0x27142ad2, 0x6c2bc24e, 0x8013cb66, 0x6bd8d609, 0xf42d4609, 0x45dd2711, 0xe9a8df55, 0x48e8f51a, 0x93050bf3, 0x0000c7 }, { 0xef924370, 0x9d350ae4, 0x29d93cec, 0xdb7acc8d, 0x46c99c5a, 0xb66440be, 0x9d7b1cc0, 0xc1fdff9b, 0x406cf8ec, 0x7dc76e11, 0x7a13a8e1, 0x319687df, 0xc99f03fa, 0xfca5cefc, 0x2c98eac5, 0x5aa5ccb1, 0x0000b7 } }, { { 0x87c010c0, 0x7d33c3ea, 0x50c749b3, 0x721cc4e, 0x24ebce1e, 0xa008fa12, 0x6a9d9e1d, 0x6e255bc6, 0x541450fd, 0xed7d9b5b, 0x73ad065a, 0xa2bced62, 0x32de2c7d, 0x1915abb2, 0xd94acfa, 0xd5680244, 0x0001ba }, { 0x7ea4d5a9, 0xb55c5dc6, 0x9bb956d1, 0x7a83da1b, 0x9d922a72, 0x41d9075a, 0x4ed91fc2, 0xd4f0a413, 0x5316420c, 0x6b4b1f74, 0x28e2dd92, 0xebea9306, 0x16441269, 0x9c33acc2, 0xc4fe231b, 0x66bc4d58, 0x000104 }, { 0x191379da, 0x2cd07f88, 0xbeb9b2b5, 0x5394c6f1, 0x89f87dc2, 0x9a4d5385, 0xeee12ef1, 0x184a2ded, 0xabb781df, 0xad4491cf, 0x577d4ce8, 0x6b4c8388, 0x6575425, 0xd9bc462, 0xa21187dc, 0x2ab2c19b, 0x0000cc } }, { { 0x6d7a206b, 0x91c7f8cb, 0x8dd990aa, 0xc8d28a99, 0x495df904, 0x7481136b, 0xdd68c7c, 0x17ab9e21, 0xd3c27d97, 0xa3724aae, 0x94509078, 0x4ad9ee84, 0x51954e02, 0x8c91704e, 0xef626afc, 0xed02cc18, 0x00002d }, { 0x2520384f, 0x968340cf, 0x9d7092b8, 0x264a5ce, 0x97c1b7e6, 0xd661f589, 0x6773858f, 0xf7d06038, 0xfadb4cd5, 0x2c27fddf, 0x49af3045, 0x22537f73, 0x32e57729, 0x77f5da4b, 0x48decb1, 0xea6cbd1b, 0x000061 }, { 0x5d1375fa, 0xde9287a5, 0xe222aab6, 0xc415ddd2, 0x78aecc5c, 0xfc720ea9, 0x11301b57, 0xe84a86b7, 0x79a9d5be, 0xb56aad86, 0xe2ed99fa, 0x2e6a619, 0x8fde3085, 0x603620a3, 0x1ad3af13, 0xfc2765f9, 0x0001a4 } } }, { { { 0x85511e51, 0xb3bec5fb, 0x84b754fe, 0xccaddd27, 0x6b87ad1d, 0x3a524f4, 0x94720707, 0xf47c161e, 0xc5eec0d3, 0xbdad302e, 0xf960bc79, 0xc8d93efe, 0x2f335231, 0xca6ef92d, 0x4db26861, 0x53f38ef9, 0x000179 }, { 0x64834a43, 0x76a849c2, 0xada99150, 0xe3cc32, 0x62f54a06, 0x3c6f52e8, 0xba61c0ba, 0x8713da77, 0xdcd11647, 0xe86d3211, 0x77186b63, 0xa56afb09, 0xa9e47cb9, 0x18ec976b, 0x720037ef, 0xac3fbe11, 0x00004c }, { 0x604de3e7, 0x333d59d3, 0x108c9bfd, 0x4ae8134f, 0x79a8722a, 0xe4e75230, 0x47ca845b, 0x4c9cdf9e, 0xea1bb1a0, 0xb9be81b6, 0x839c84e, 0x2efb9db4, 0x11022965, 0xb0bc2382, 0x5e786096, 0xd4702a64, 0x0000c3 } }, { { 0x94bf57dc, 0x1cb12cbc, 0x98c4c2cf, 0xad2013f9, 0x3dc63fbf, 0xf0f09798, 0xa2fe5a43, 0xacc59bbf, 0x53c8a187, 0x25b03f83, 0xcee29df4, 0x93c65d9b, 0x8181e0ad, 0xdab0ccd8, 0xbac7ff2, 0x7eb7a064, 0x00015f }, { 0x8a14dc5c, 0x51a6d0ac, 0xfc151d96, 0x1c4f3259, 0xce063ddf, 0x2250b54c, 0xa3b04521, 0x7353250e, 0x27c1a519, 0x73d23a81, 0xefadf161, 0x7ceab27, 0x2e480e4b, 0x633acccc, 0x1555c429, 0xe8c8cbaf, 0x0001d6 }, { 0x5ff81db0, 0xa3056134, 0x8a9fd201, 0xb0c0c0b0, 0xcee710f8, 0xd679844d, 0xfb772aa4, 0x4f5d907c, 0x209cd472, 0x34c025d9, 0xd9a2a43, 0xef55b62, 0xec0bd8b6, 0x191f632a, 0x3f2e15c6, 0x4f80df6, 0x000004 } }, { { 0x4043a70e, 0x391ef49f, 0x32b205aa, 0xfeb25134, 0x27862f8f, 0xd9c5287b, 0x4c81195d, 0xc301cf3c, 0x4a59fd65, 0x60db9e2, 0x77997efe, 0x288729f5, 0x5755ef34, 0xcb21f587, 0x834d8df9, 0x38d853a2, 0x000039 }, { 0x5ef83328, 0xf14c3d0c, 0xe447a3df, 0x7edb9520, 0x77da8354, 0x69741540, 0xabe4ba40, 0x2b2ace8a, 0xcbd957d4, 0x66a58e38, 0x99bde3a9, 0xbe0e8da7, 0x83b9f48a, 0xbcbe7e13, 0x5beaa5ee, 0xc2b22508, 0x000116 }, { 0x8d6338a1, 0x124f5c8, 0x42d3893f, 0x2afbcaa5, 0xce180626, 0x9972aade, 0x7e90e5f7, 0x2923fcec, 0x2ff904b, 0xcb564d8, 0xd5c0376f, 0x42eb15ac, 0xe0126b4b, 0x92ea47f4, 0xd4764ff5, 0x70ec3f04, 0x00000d } }, { { 0x8ad1b426, 0xb8407edd, 0x87317090, 0x11cdd3a6, 0x27516498, 0x1ba048c0, 0xa93f26b1, 0x7d48a948, 0x33dafc16, 0x62783928, 0x86af083f, 0x90f4e0bf, 0x81868b03, 0x6f189936, 0xf6a1614b, 0x64b44b8b, 0x0000be }, { 0x861665ac, 0xd74399d3, 0x617adc7b, 0x23af2fb7, 0x2ef1b8f4, 0xc49471e0, 0xe3154ddb, 0xa5e9cee, 0x7c767ceb, 0xce545e8b, 0xa72b0ae5, 0x65c52b13, 0xd638128b, 0x5f820148, 0x6b82c91, 0xf5a753a, 0x0000bd }, { 0x7285281a, 0x5fdb2228, 0x34b557b8, 0x1ba89456, 0x16c724a0, 0xb1d183df, 0x23783be1, 0x61dc65cb, 0xc41598bd, 0x8e72d16, 0xf1c52bf6, 0x3e642f65, 0xb42f8211, 0x14b8baa7, 0xd8f85a24, 0xebfdf21, 0x0000e7 } }, { { 0xefa07fc, 0xd08504ac, 0xe9db2966, 0x32bbf3aa, 0x25896763, 0x4586b7e7, 0x67320d44, 0xbc523aa3, 0xb44c6f70, 0xe8d22a0e, 0x52c32288, 0x704313b5, 0x190f1e9, 0x5a5479d3, 0x7fecc17a, 0xd2320e57, 0x000081 }, { 0xc6a0adf5, 0x2d8d624c, 0x410bb3cb, 0xdf5c7e2c, 0x5ef1599, 0x644d289, 0xf44e5ed6, 0x71290fa7, 0xd897b27b, 0x9c3a1b74, 0x12823f07, 0xfbe03efa, 0x62e16590, 0xd3d2c5f9, 0x337a283a, 0x47512e3b, 0x00017a }, { 0x49911b78, 0x157ec82b, 0x44bad68f, 0xbd314656, 0x4e65f530, 0x9d5e4d05, 0x7c1340cb, 0xc5864f35, 0x6b6fc4f3, 0x7e8b62ee, 0xb1ae023d, 0xb77371f2, 0xc8401884, 0xe9d4bce8, 0xf13d0ccd, 0x5f75798b, 0x000009 } }, { { 0x61f4c09, 0x4353ee4e, 0xf6b63cf4, 0x527366c8, 0xb8f12c5d, 0x69a24795, 0xbd6c0baf, 0xb899eedf, 0x82a358ff, 0x48f702c8, 0x50617c66, 0x1872dee1, 0x4911a29c, 0x50f66f8a, 0x74c892a6, 0xa24f1955, 0x0001fb }, { 0x3c6ad8f6, 0xbac087d6, 0x52493da9, 0x7c9f88d6, 0xc23973df, 0x4a335d2a, 0x76e04660, 0xaa0e0cb7, 0xcb3ab516, 0x69de10f, 0x1d8e5be6, 0x29688113, 0xb61216b3, 0x3a89f0dc, 0x7a8c2995, 0x9b9b175d, 0x0000b2 }, { 0x4bb18d9e, 0xd8f9acb9, 0xcccc919f, 0x9d5670a7, 0x716a8eea, 0x983ad675, 0xbe8d46df, 0xddd618b5, 0x2b992be7, 0x200ac66e, 0xb2e8baf5, 0x17034fb9, 0xa5ffc4fc, 0x163bdd16, 0x8d7c1099, 0xdd7b83c3, 0x0000a3 } }, { { 0x83a35cd2, 0xce7d406e, 0xcc1acbf3, 0xf067aff2, 0xe6a43d94, 0x5dbfeaf1, 0x3a54260a, 0xa75ec79e, 0x8bb80e14, 0x364c8df, 0x926c77af, 0xcbdb5c5f, 0xb2be115f, 0x471dc92, 0x8fb71459, 0xabfe7a7a, 0x000030 }, { 0x23ff5e70, 0x25663be0, 0x9af1d58a, 0x65f31490, 0xbbc20b12, 0xc9df49c0, 0x658e22aa, 0xafdab72f, 0x83586fd1, 0x9d76eca8, 0x259d7cb3, 0xaffd176e, 0x8219d47, 0xda2c81df, 0x8baa23b2, 0x5cd59b67, 0x00017b }, { 0x90f4b5d7, 0xe646af98, 0x37c9e517, 0xb1befb9f, 0xe582629d, 0xe28a6d3e, 0x33092bc9, 0x7f80c451, 0xb6a31abd, 0x7ae060f5, 0x8d9d3d42, 0x4c708eab, 0xf82ee012, 0x7da9e168, 0x70a5b513, 0xe84690b9, 0x0000d9 } }, { { 0x6c0676bf, 0xecf4ea02, 0xfc369559, 0x385e27ef, 0xdeab33cb, 0x5724e1a7, 0x1c994363, 0x3fa95e70, 0x15069e4b, 0xb30c003c, 0xde2af594, 0x71eecea4, 0x110a8b8d, 0x9359fc0d, 0xd1b2878c, 0x9dcd749b, 0x0000d6 }, { 0x346f2f0b, 0xc7c2c133, 0x7eb8a3c5, 0x9549e419, 0xb5c1c7d3, 0x597b6da3, 0x1ec1e7ff, 0x1e3f15e6, 0x84f72cc5, 0xffad00f0, 0x3f196fb4, 0x9eb5ad96, 0xa487a25b, 0xaf08b3a3, 0xcf78fcb4, 0x5ca18047, 0x0000f3 }, { 0xb2eb4ec8, 0x1f0253d3, 0x2f628177, 0x9ca46b8a, 0x9d9d5142, 0x79f3dd73, 0x57d65bac, 0x958ed394, 0x4b5c05b3, 0xa29a1633, 0x3c6ecc5, 0x4bcabacc, 0xd137ce2b, 0x323507de, 0xe68bcc6c, 0x8d11017c, 0x000008 } }, { { 0x3eb7778c, 0x1a7598a5, 0x266429a0, 0xa8887e3c, 0xbdc27d47, 0x73f817fe, 0xcdfc8f89, 0x5e771671, 0xfe5fcc77, 0x71f1d4cc, 0xfe8dbd3b, 0x16560c1f, 0x7e69911d, 0x80841345, 0x4427e5f1, 0x8c52e176, 0x000191 }, { 0x27b5e703, 0x60941d23, 0xcbc0f4f2, 0x450fc91e, 0x94d4eb74, 0xa0338905, 0xfae8f52c, 0x869a6457, 0xe4811eab, 0x344e2856, 0x2fb16798, 0x5a5cd58, 0x6b7de472, 0xb9ccc32f, 0x73c1ced1, 0x86ce3358, 0x0000f1 }, { 0xbeee4b73, 0xa866004d, 0x5deb9cd9, 0xd87a0274, 0x7b4cb3a9, 0xe9570c3c, 0xcc00758f, 0xbe0c9d08, 0x5547d789, 0xc4b6047c, 0xc7192f7, 0x91bc6df6, 0x5df86b3d, 0x2baa4ea2, 0x2c3b47e0, 0x3429d16a, 0x0001ed } }, { { 0x24fb15a5, 0xecde2504, 0xc6b6a44c, 0x93d8cc00, 0xda3de949, 0xd49240c6, 0x1b910485, 0xb37840bd, 0xf12b0459, 0xd97d50e0, 0x2fe92466, 0xd9f47d93, 0x69de331a, 0xf1faf6bb, 0x1482fec5, 0x169da94c, 0x0000b1 }, { 0x3c83ef29, 0xd7184550, 0x61cb6d7f, 0x2fe8662d, 0xa5390ae1, 0x53b52296, 0x279a6b2d, 0x7afd77a3, 0x12900246, 0xfebc91bb, 0x26d1996b, 0x54ff1cf1, 0x932faa43, 0xa61c4507, 0xaead388a, 0x3cca5ea5, 0x000189 }, { 0x898eadca, 0x31ec12bf, 0x93bd1d1a, 0xfd7436b8, 0x30733b7c, 0x99604a7e, 0x7756f962, 0x16197b7, 0x4a3be6e0, 0x615b616a, 0x10b967fd, 0xadcf1f3e, 0x245c3360, 0xec31869c, 0x9cee55fd, 0xbe60ec0d, 0x00004e } }, { { 0x4feba5d9, 0x538cecc3, 0xd6d095a0, 0x6dda6f14, 0xb77ef313, 0x551f70b9, 0x1a8e85b4, 0xc1b8bf33, 0xd6d067d1, 0x716cfeee, 0x13b9f521, 0x7c6aad0, 0x45659bc3, 0xb8bddc29, 0xa261c755, 0x677e7298, 0x000062 }, { 0xfa408ad0, 0xc5357895, 0x740275d6, 0xddfeafec, 0xf1567491, 0x522825f4, 0x7a5addf1, 0xf7dc3857, 0x67ea2b9c, 0xef62c48d, 0x78710b81, 0xe0a16bb4, 0xa2937585, 0x18f43e37, 0xa7e2b356, 0xf32cf810, 0x0000aa }, { 0x57e92ce, 0xa59cb5cf, 0xb25300dc, 0x505849c6, 0xe209e3d3, 0xc8888015, 0xe1c66cfc, 0x30d54555, 0x6d630da1, 0xe1fdc18b, 0xe3021549, 0xe5b1bd88, 0x47b12e4b, 0x963f8920, 0xde0b85d5, 0xd973f2ef, 0x000050 } }, { { 0x17353492, 0x7168c17f, 0x388683c7, 0xb5c43c3f, 0xc48208de, 0x29c5c2cc, 0x9f5db420, 0xda4d31c1, 0xc42fc6c4, 0x691504ef, 0x99c5946e, 0x2dcf5f46, 0xdbb7a8a4, 0xa0c8427e, 0x4f909e3c, 0xe28101f3, 0x00010f }, { 0x1e64a7e3, 0xffc078b8, 0xb00d6c3d, 0xfb112388, 0xafb4222a, 0x822dc314, 0x38622fd0, 0x2b13e234, 0xa34d1322, 0x6652da8b, 0x83bb856e, 0xfe617b66, 0xd32e1be, 0x3c3993a9, 0x9b25d821, 0xef349423, 0x000114 }, { 0x7e523525, 0x3fb0004b, 0xa4e16c2e, 0x86763d28, 0xce19b8dc, 0x7c9a860, 0xb4deb30b, 0x4847bcda, 0xdf8ceaa9, 0xad078424, 0x5f16344f, 0xc07e82d3, 0xb867d13d, 0x5d078e7, 0x3b5270fd, 0x43781429, 0x0001ec } }, { { 0xa86a8005, 0xf1253aad, 0xbb0d6f5b, 0x1f642fa2, 0x61964227, 0xab06b832, 0xe35a497f, 0x4aaa5e45, 0xd1fe7cdf, 0xd0d25350, 0xc12ef3c7, 0xfcb74a3d, 0x8fa2d4e3, 0x572b3dbf, 0x4e5d12df, 0x2a845f26, 0x0000e6 }, { 0x9db46b87, 0x2813c093, 0xdf2a821e, 0x14882b9d, 0xc255bcc3, 0xfe8a5d46, 0x4a80d492, 0xa739846, 0xbe6e016e, 0x617b3f04, 0x1da613f4, 0xd5affee9, 0x6b60c8df, 0x977d1b11, 0x43f6cdae, 0x7413c750, 0x0000f4 }, { 0xc06e5781, 0xfed8a169, 0xe68e9158, 0x7b46b8fb, 0x82dba5cc, 0x3f197a32, 0x54aa31bb, 0xfabf142b, 0xe31edc7f, 0xd4e1232a, 0x908a5d55, 0x33a70b05, 0x1c7160af, 0x6d8c93c9, 0x5ab05e31, 0x4040dc72, 0x00013a } }, { { 0x941c3ea5, 0xeda34c0e, 0xb93fc63f, 0x8ce865ae, 0xb08cf17e, 0x84a9f2f5, 0xdbc40a1d, 0x57875c6e, 0xe1e4936, 0x6d3ef1b6, 0xc50910ac, 0xab78540a, 0x7a52f651, 0xfad50801, 0xeca969b3, 0x63387873, 0x000045 }, { 0x33c71e89, 0x5a3a421, 0x87c421e2, 0xc326197c, 0x6438c7ed, 0x11a58dd6, 0xd64ac614, 0xcb7c708e, 0x8853cf2a, 0xa6024efc, 0x4983f6d7, 0x8374195, 0x4d4ec434, 0xe08b849f, 0x3b2f7c9f, 0xbfee394b, 0x0001b6 }, { 0x44eef5d, 0x68fcd976, 0xbce12379, 0xdaba9258, 0x497be6f4, 0xe0a3dc2, 0x3b3a365d, 0xf32dd403, 0xb4e453d0, 0x1e7c6aa1, 0xe0a91f32, 0xb890641a, 0x2c34fb13, 0xf0a852de, 0x33b721f8, 0x90f2189, 0x00017d } }, { { 0x4202dcfd, 0x2d682719, 0x1aa757df, 0xfbba4f14, 0xc72efbee, 0x9cb703fb, 0xb5f585e0, 0x7e7a5139, 0x98e32b8d, 0x285647a6, 0x196bae48, 0x4257749d, 0x6e9d1aca, 0x398ce9c6, 0xeb5d5721, 0x929c87a2, 0x0000cc }, { 0x55f3c9d, 0xb7f58a2c, 0x61d11dfe, 0x959a8981, 0x2c8f23dc, 0x50d57fe3, 0x61d1cde3, 0xf4374856, 0x7b84f9e7, 0x7676b57a, 0xd3714478, 0xed86f1e8, 0xb1b3ea6a, 0x2fab0c1c, 0x40187789, 0x4ddb6a6a, 0x000057 }, { 0x787df4e5, 0xf20fecbf, 0x23ca6cb4, 0x3aeffd9a, 0x7567ea6f, 0x38f33748, 0x46ced8c8, 0x71d7806e, 0xe78f06c3, 0xa8055bf6, 0x903e0b, 0x24cd24f4, 0x216155cb, 0xa9915855, 0x600c6b37, 0x1e150e56, 0x000060 } } }, { { { 0x31749267, 0xeb490c88, 0xc29ae275, 0x1af52383, 0xfc6df5ca, 0xa0e79094, 0xde5361ed, 0x6e8b25a0, 0xd1e19435, 0x62a2519b, 0x2aff5ddb, 0x482cb80b, 0xe51fd50c, 0x82b425b1, 0x542bd738, 0xa5367353, 0x00007b }, { 0x8a88a243, 0xc9fd5ae2, 0x3deed7c2, 0x4e5eea06, 0x5971818b, 0x89dc4ee9, 0xafd532df, 0x9bd3c8e5, 0x65ecdccd, 0xe9aa63f1, 0xbf13b477, 0x930b4d3c, 0x3818233a, 0x73c2e84a, 0x88dcb100, 0xa74d8646, 0x000198 }, { 0x5aa8087f, 0xde45dad7, 0x93f82d22, 0xdc9aba8e, 0xab595fd2, 0xdbba9f9f, 0x27c6f343, 0x5991bd77, 0x7a30fd4f, 0xdba36567, 0x462feb9a, 0x86658d93, 0x5e849016, 0xf0dd9002, 0xc0de6e10, 0xbdb4c3ee, 0x000156 } }, { { 0x8a9d18fd, 0x17e5ef6c, 0x69c3326, 0x3c1ac8b, 0x2ad7ec2f, 0xada3eff, 0x87b06c25, 0x5de2401a, 0x4a518838, 0x5b65fdec, 0x1fc236dc, 0xd4e9bdf1, 0x56e3794c, 0x6cbcf668, 0x4230ed70, 0x9d59192, 0x000060 }, { 0xea29762d, 0xd9334f3c, 0xf9a0f2ac, 0x5119ec59, 0x5aba8ad3, 0xb0d42c61, 0xab98cc70, 0x2b9f3170, 0xfce85218, 0x57c5a291, 0x2e4d293a, 0xd37e5abd, 0xd6c8cf66, 0x2373ef24, 0x8bb9aa1e, 0xefbd5e8d, 0x0001a4 }, { 0x390fd111, 0x660de467, 0x4a7c0179, 0x630a8721, 0xc1cdd9ee, 0x7768c698, 0x949bb2, 0x620d95db, 0x1368ab3d, 0xdb69ea48, 0x74c4a5d9, 0x4ee61221, 0x38e81bed, 0xbe5eef2c, 0x5c30769d, 0xed9dff07, 0x0001c4 } }, { { 0xda2beba0, 0xc42600ee, 0x20364e4f, 0xb7ce11c1, 0xce862b4b, 0x3bfdea65, 0x1ebf4a76, 0xd1bbcd8d, 0xd5f7fe79, 0x2d3a29b3, 0x6c2d383b, 0xfc157ccc, 0x818616f7, 0x800afa41, 0x5a443031, 0xf11c1f24, 0x000172 }, { 0x927b1bc4, 0xfcf5efd3, 0x577a39a8, 0xc068a914, 0x74556b24, 0x4d874839, 0xddeab04c, 0x1908038f, 0xc164a069, 0x49b42892, 0x77ba4661, 0x1c348748, 0xeb903f68, 0x71975b5c, 0x9d04b7af, 0x1ab0cb46, 0x000002 }, { 0xdf1ba2bc, 0x9b1d3390, 0x5bbd2988, 0xa97a6c60, 0x91cf1ab3, 0x5000fc69, 0x39f46e99, 0x98bce71, 0x1a3563a5, 0xc872e022, 0xa6e68bf, 0x2cdca984, 0x786663ca, 0x63619124, 0x5519e97d, 0x6c3a77ad, 0x0001e7 } }, { { 0x7db175df, 0xb8b8f419, 0x21c6efd7, 0xcee12db8, 0x40bdc8fc, 0x158fa51b, 0xc53383e2, 0x3524f82d, 0xf77dedee, 0x50857e3e, 0x2aa3f939, 0x3ae34a10, 0x8c3f472d, 0x44c689b0, 0xbddd970c, 0xf48aa3a8, 0x000142 }, { 0x5f1ef53c, 0xcdbb79c3, 0xac537784, 0xf459a03b, 0x622e8fdc, 0xf16766a5, 0x7799b065, 0x52a30e13, 0xbc17f8f2, 0x6d38ee85, 0xd471d14a, 0xb95f8bc9, 0xb439cbc1, 0x8d41bbec, 0x92303b84, 0x2a91611, 0x00010a }, { 0x98a30ef2, 0x4b32c38c, 0x59984284, 0xc35abc47, 0x139b1db5, 0x5cd9af02, 0xc42d4161, 0x315e27ef, 0x1dad54c4, 0x56a9bc3d, 0xfbdd2711, 0x10f82799, 0x65eb9122, 0x2606f75a, 0x99be0618, 0x1222242b, 0x000092 } }, { { 0x6eca8c25, 0x994e8025, 0x61d2751, 0xe03d6647, 0x96c095ad, 0x7f410b67, 0x50c689db, 0x2922147d, 0x46bfa724, 0x2afe27ff, 0x280b4e60, 0xa4e11444, 0xec4fb5b1, 0x9eb243d5, 0xbe551f0d, 0xa8728391, 0x00004d }, { 0x4c758416, 0x4d8b352e, 0x1d3d0764, 0x6e05a80, 0x87523309, 0xd267505b, 0x8f505f58, 0x3ff3dc67, 0x5093adcf, 0xbf7c6591, 0x95f08406, 0x1213b133, 0xd8711c91, 0x5f0f4fe8, 0xf93035bd, 0xce422c06, 0x0001e0 }, { 0x663666f3, 0x37ebaaf3, 0xd2940878, 0x5a3793d4, 0x49dc2f36, 0xcb2825b5, 0xca2c26ef, 0x6f56b571, 0xdbf87f5f, 0x4e92bdf9, 0x44bb5df4, 0xb86a45ac, 0xecbb7a58, 0x9b0d1b91, 0xc7f0034, 0x6af983e0, 0x00000d } }, { { 0xb144b982, 0x90b47b8f, 0xe8f9c163, 0xa52073b4, 0xe0fbbf01, 0xd94dde4f, 0xce35ffd6, 0x53005d2a, 0x3948b90f, 0xd2a2ccde, 0x2c652bcb, 0x6d0c309a, 0x7a99dac6, 0x38e864f9, 0xd69f037d, 0x60d16a54, 0x0001ce }, { 0xad41a880, 0x82974b19, 0x5fc7be, 0xe969b9da, 0x69a3a973, 0xc61a57c, 0x41465c1e, 0x6fe3fd5d, 0x1c95d93e, 0xb603c04e, 0x5060706a, 0xbf8eefdf, 0x992f7fc2, 0x7694d729, 0x633928a9, 0x756eda2f, 0x000008 }, { 0x8d985e7e, 0xe3383810, 0xc1a0141d, 0xf0e3009a, 0xfb99d9e8, 0xcd9ae463, 0x97ec2ad1, 0x55bddba5, 0xd1194131, 0xd01f3cf6, 0x58521bcd, 0xcb68c3fe, 0x1b9500cf, 0x1677e1f4, 0xd04082ac, 0x142d619, 0x00005c } }, { { 0x2da7d5e, 0xa6b85810, 0x408a15ba, 0xd69d83b6, 0x6f99a28d, 0x61a211b3, 0x82affdfc, 0x7ba623b0, 0x80dfabbc, 0x56c5fe5c, 0x3ae57003, 0x5de48f94, 0xc924c000, 0xb444aec5, 0xdeefba8b, 0x2777acfc, 0x000061 }, { 0x93ba9bf0, 0x86c9e734, 0x84a4d2f6, 0xba7bb9f0, 0x78551d92, 0x18c005f8, 0x6bc36e8e, 0x3836b021, 0x109c8ab3, 0x9eb0d0d8, 0xb0060ded, 0xce7152fd, 0xdccef789, 0x6c8ec823, 0x7a956071, 0xf48bfa23, 0x0001de }, { 0xdd576457, 0x29e525b2, 0xcb9fb9dd, 0x4586b86d, 0x4b9e8863, 0xe9442490, 0x724f46c0, 0xde8f11dc, 0x25bf1cfc, 0x7ce17aef, 0x55820cb2, 0x14c01761, 0x4703185b, 0xcd82c107, 0x98dc04ed, 0x3849c957, 0x00004e } }, { { 0x1fe1687, 0xc78f56a8, 0x1cc7a242, 0xdbf00583, 0x8ccf97a6, 0xe5472d44, 0x4cb6e3bb, 0x548518b3, 0xec272df6, 0x767616f9, 0x7407c262, 0x1c0ba93a, 0x96f484b8, 0x5ab8cc73, 0x6542d106, 0x18f65fe9, 0x0000f5 }, { 0x46b1fad7, 0xc13e983d, 0xb85ac03b, 0x588555a2, 0x25e54adc, 0x769ee789, 0x9db8cd8d, 0x80d7da06, 0xa5066a8, 0xdf1f01cb, 0xe07e74d0, 0x6a0d1eeb, 0x643d032e, 0x8e9ce3e2, 0x25a2c579, 0x6a7b419, 0x0000ce }, { 0xc2c32cf0, 0x2a38941b, 0x4295bd3f, 0xc2db2f3f, 0x4fd0950e, 0xecd3bdf1, 0x731dbefd, 0x96000618, 0xde9246f8, 0x7af9b747, 0xd3449fb9, 0x1437abb9, 0x99f0a27a, 0xa789402a, 0x6bf15ec8, 0xdf4d400d, 0x000180 } }, { { 0x7df30492, 0xd53c5850, 0x9904bd1c, 0x904c5ed7, 0x808e9f67, 0xf2fe3b8a, 0x27f1017f, 0xb85b4a4, 0x97fc1816, 0xe1e6ba5c, 0x6b34c7c1, 0x8253e613, 0xe697c8bb, 0xdb759cfd, 0xcd6cb376, 0x9b9d4097, 0x0001e0 }, { 0x3c9fdeed, 0x4ccbc4d6, 0x457ff5a6, 0xf432b11c, 0x153c0a7c, 0xcad5f4b8, 0x9a601628, 0xc53952ee, 0x8c5cd4e3, 0xc60f5dce, 0x8f85dc3d, 0x89b28716, 0x7c43acc, 0x44c59458, 0x95b6290f, 0x6ef01a7f, 0x0000dd }, { 0x4fe066f1, 0x89b6159, 0xbb2912fc, 0xf39c5533, 0x4c18aec4, 0xffdc3840, 0xc224e2db, 0x4db3ad6d, 0x87f72e1, 0xa3c344ae, 0x46f453fb, 0x6e7ffb9f, 0x7718c42e, 0xd5150b49, 0x6aa0a7b1, 0x48931ad0, 0x000111 } }, { { 0x48fa73a2, 0x50b1fa1f, 0x156bbb, 0xb96d5963, 0xb35cbbef, 0xc78b7d10, 0x74e70db0, 0xf4fba7b6, 0xd4dd32c1, 0xaa34dce, 0x97bb1714, 0x2d288523, 0x69594288, 0xa3c9ef7d, 0x59eb95e0, 0x167523fb, 0x0001ec }, { 0x5525500f, 0x31b575c9, 0x536ec248, 0x207067f, 0xc79f539c, 0xf0c9871a, 0xebf54a9a, 0x7d413307, 0x428dd5e5, 0xed66a969, 0x4fd44e33, 0xeed89e9b, 0xf4951829, 0x31a6124, 0xa315415, 0xffb814c4, 0x0001d6 }, { 0x25fae562, 0xa532f578, 0x663a880f, 0x177606c, 0xa4275054, 0xe04eb6c1, 0x5c7d3a4, 0xec7e96a4, 0x9d96538c, 0x478ba451, 0x3b55cfbf, 0x1e59263a, 0xf031bbd1, 0xc285bad, 0x718700f1, 0x9c2653eb, 0x00012c } }, { { 0x51b7641c, 0xce52f66b, 0xf2fa5158, 0xcd87b991, 0x8ca46212, 0x6c24134b, 0xbfaae3ee, 0x61cb512, 0x211fe3bb, 0xe2a7bd15, 0x126aa782, 0x2187012d, 0x23459e0e, 0x9ecb05db, 0xbdb88398, 0x8ce9981c, 0x00000b }, { 0x83848946, 0x80565e03, 0xe39a9d22, 0x64265656, 0xda5a5917, 0xb2c9a395, 0x88a2c6fb, 0x87030e3b, 0x6fb4f14f, 0x95b62568, 0xb5e1097c, 0x90d4301b, 0x646e3988, 0xc41b2cd5, 0xf8b4d805, 0x3599cfe6, 0x0001db }, { 0x6290b854, 0x20824704, 0xc438b675, 0xe3dc3b88, 0x54074480, 0x42799994, 0x42edeff6, 0xab47ebc6, 0xcfd6ce95, 0x3fbd4499, 0x725fec53, 0x51f209a4, 0x57c44f0, 0x8b57c43b, 0x8a4f0ebc, 0x497a7547, 0x000120 } }, { { 0xea96dcac, 0x5e2ffe6a, 0x9d15b3c8, 0x7c93ae3e, 0xe81b1a72, 0xeeeaef66, 0x9e8c544d, 0xdc768fa1, 0x2c56fe21, 0xc104e341, 0xda046dbb, 0x2fc6e22f, 0x5c07f710, 0xdf56c0f5, 0x63d7a55b, 0x80828f0f, 0x00001f }, { 0x357cca3e, 0x2ad3c5dc, 0x73cd2e90, 0xf1dffd91, 0xd0819501, 0xb8095a65, 0x931ba048, 0x1271b521, 0x7b77ead1, 0xf8fdd618, 0x3b1284d3, 0x25b43fa2, 0x96fd59c5, 0xa2873d3a, 0x8eedb897, 0xbf986f5b, 0x00003f }, { 0x1f03dd2e, 0x8dac6968, 0x21d24726, 0xf774bfc4, 0xfa833b3f, 0xe957e90d, 0xafbfc550, 0x13a3ca5e, 0xe9da0a55, 0x5f9807aa, 0x19ad6a76, 0xb592a33c, 0xcc4a3f17, 0xd81bff, 0x52870da8, 0x6de048c3, 0x000001 } }, { { 0x446e47b4, 0x86d1b997, 0x6cebbfb8, 0x3609062f, 0xcb8f514d, 0x9d5fb033, 0xcdc8fffa, 0x3b56e98c, 0xe353e0fe, 0xd7eac7a9, 0x25af9aab, 0x556f98e7, 0x2f7fd456, 0xe6524c5e, 0xcd19cbf1, 0x103833f1, 0x000041 }, { 0xa3597ac9, 0x90f49e42, 0xf4c26de, 0xbc622b1a, 0x20db2fa, 0x3039a9b, 0xc5debc52, 0xe42da98c, 0x87ad10c0, 0xd9e72846, 0xf17ac7e7, 0x24c893a9, 0xc6e7ecb7, 0xd956b5c0, 0x75070b2a, 0x80e987de, 0x0001a8 }, { 0x90a23aaf, 0x85407115, 0xc15300dc, 0xfe7e2936, 0xedbf734b, 0xf859bfa0, 0x92fd67c, 0x9e256518, 0xbb36f2a7, 0x3008e90b, 0xbeb98cea, 0xc916cd2, 0xb7d85c15, 0x5f3616a8, 0xa9472c24, 0x83acaa5f, 0x0001ac } }, { { 0xfd0609fd, 0xee447c76, 0xb94b9c7, 0x6a5e0589, 0x9c7a6fdd, 0x476d69cc, 0x1e8dcb33, 0x6538ca06, 0x76a4a07f, 0x385ab9f8, 0x5b07a11f, 0x48c1ec73, 0xc39579e5, 0x98923dbc, 0x152de388, 0xb024ee3d, 0x0001d4 }, { 0x6fc533b2, 0x30dbb4b6, 0xc7b626fb, 0xccc84ada, 0xb6576d49, 0xd6dc9c4b, 0x1cb6e7a6, 0x7090bf4e, 0x5e83cce7, 0x58b61ea7, 0xef64d638, 0x699d4b5b, 0x93a96572, 0x6724301f, 0x1ba10bb8, 0xda43a2e3, 0x0000d9 }, { 0xc3de7cf3, 0xa9b872d7, 0xf488e04c, 0x98cc6df2, 0xcd6b7c5f, 0xe919fed6, 0x552c57ca, 0x1e364778, 0x41e89a5c, 0x51735c3a, 0x96c5ed11, 0x1c2a96b8, 0x66b302cf, 0x99e245f6, 0x706140dc, 0xbc73502f, 0x00010b } }, { { 0xb87e3776, 0x308a782c, 0x3ca3f3d7, 0x36066bc1, 0xfa28445, 0x591ad0c5, 0xf322e380, 0x77e55f2f, 0xe8dba6f9, 0xe520888c, 0x3324f297, 0x50b4e014, 0x6d255abb, 0xb3e10d95, 0x3636ab64, 0x55aa1410, 0x0000b9 }, { 0xacfa5a79, 0xd99d0c50, 0x64f87829, 0x18b3c761, 0x4b7c46be, 0x49e76a7f, 0xd9fdb857, 0x95d35fe9, 0xe7560d5e, 0x8a322a56, 0x1e4927e5, 0x8bf8296b, 0x1361fcab, 0x490c70f2, 0xc69f6aaf, 0xe0c94fc4, 0x000196 }, { 0x563d38a3, 0x6bdd61eb, 0xe6639e5f, 0xd345dd6f, 0xf4101017, 0x8370ac12, 0xdeae286d, 0xebe9e617, 0x5887fb6e, 0xc11727f2, 0x7dd5eb54, 0xfa9e4d88, 0xbd0258d6, 0x5c50a643, 0x8085d8ff, 0x2d759643, 0x0000b1 } } }, { { { 0xdc0da109, 0x3a5c36ec, 0x9dbff526, 0x32acd163, 0x6427e62f, 0xb3be3ebe, 0x902daec7, 0xca60243d, 0xd4af48b8, 0xc8336220, 0xb173093b, 0x9ddc9b28, 0x7e6436c7, 0x43697271, 0xcac3be99, 0xda9d379d, 0x000076 }, { 0xebc96ca2, 0x10ea035a, 0xed86a518, 0x1d9dfd5b, 0xd38806fd, 0x44ece51, 0xc32d63eb, 0x916b1d42, 0x911bc803, 0xc4ac8fc5, 0x4efbc290, 0xbdb6fd05, 0xc30f9581, 0x825d415c, 0xa156a2ec, 0x8a60a387, 0x00013b }, { 0x3c8f975, 0x66b5bea0, 0xb582742c, 0xfe438078, 0x50d75929, 0xe32c6f5a, 0xf8472bce, 0x10c7e99c, 0x42a2d1c2, 0xdfb912d1, 0x63c88e0a, 0x6c8ade19, 0xa5e16447, 0xc7aa46c1, 0x4d346dce, 0xff51b736, 0x0001e5 } }, { { 0x941b0415, 0x5ddf4f48, 0x85382f36, 0xd76b6d4c, 0x72a6a65, 0x845fb0f, 0x746c7978, 0xd980f798, 0x347f1243, 0x917b3dd3, 0xd8a01852, 0x29fc452b, 0xce4b8364, 0xd2a98685, 0xe9d7572, 0xca1a0511, 0x000056 }, { 0xcb386375, 0xc65a5642, 0x9ad833d0, 0xd65c2d7e, 0x646195e6, 0x3222d111, 0x12598451, 0x4e765824, 0xa3e88e4b, 0x3b98d89, 0xcbbed2f3, 0x818fcc9f, 0x3517a6e4, 0x8c95908e, 0x96afbab7, 0xffbf4ebf, 0x0001a9 }, { 0x276a346b, 0x654418, 0x9b1cdbc1, 0x39830e28, 0x72f9b509, 0x67b21840, 0x82310a3d, 0xbb84ff65, 0xe9c802af, 0xe7c8b9bb, 0xe3f1ed9d, 0x9a16af67, 0xbc049d9, 0x5ce344c5, 0xf3867357, 0xec61ee3e, 0x0000a8 } }, { { 0x7d244bb2, 0xa1b580ce, 0x32e992cb, 0x43840358, 0xc1428cd3, 0x3fc73b85, 0x95611ccb, 0x80b7e088, 0xb2b7701, 0xcb036d79, 0x14afaf83, 0x49a09079, 0xbff73af, 0x67eb7a45, 0x730a6287, 0x9ae45239, 0x0000b9 }, { 0xefb9792, 0x6b1a6f28, 0x765f80a4, 0x6d977bdc, 0xba07520f, 0xe372089, 0x6e97dad1, 0x231712ea, 0x7f581e9e, 0x9e90a1d3, 0xfdbbc566, 0x2456066d, 0x11adba4a, 0x803127f9, 0x9beb33ef, 0x2fe70b4d, 0x00017b }, { 0x6cc4dcce, 0xd8b43727, 0xeec4d399, 0xf491bfb0, 0xc895381c, 0x101ef8f3, 0x82b30858, 0x39ad89c5, 0x2bf9c535, 0xdbe75ed5, 0x551beed9, 0x9189021d, 0xff659c11, 0x28cd5169, 0x7489e44c, 0xda55ad36, 0x00005b } }, { { 0xa09babae, 0xe1ecd881, 0xd9385634, 0xe1048d62, 0x89091e17, 0xc8a770b6, 0x4c9ce498, 0x10339654, 0x365457e5, 0xd9c977f1, 0x16f8f2f4, 0x10aa91f7, 0x20d03296, 0x6694f6c3, 0x4cfa7af4, 0x6dc77112, 0x0001a8 }, { 0x1bbc9c0c, 0x87cf9a3a, 0xb03a2185, 0x3eddede6, 0x57fead63, 0x5b2dc055, 0x6a82a2aa, 0xe7fa22c3, 0x9cae3343, 0x83b9e5c1, 0xb5fa54e8, 0x715be510, 0x88a44f1f, 0x13c6d724, 0xbfa5694f, 0xa45b3272, 0x000051 }, { 0x9e828d94, 0x94a5b2b5, 0x4ad16cba, 0x9b60dd2c, 0x78a5d979, 0xbfcdb5aa, 0x9cd8e04, 0x63076f12, 0xb1ffe321, 0xe774fc0b, 0x7e35bfa1, 0x471814b, 0x2b2d580f, 0x120e86cb, 0xa4b5fabd, 0x1fe2db78, 0x0001c0 } }, { { 0x1c7c9c26, 0xb28aa883, 0xb5bff1d1, 0x9402fc6, 0x7caf699a, 0x6cc358ca, 0xa03d8d6c, 0x71ad237b, 0x5e2669c4, 0xc837f44d, 0x41e62268, 0x250334da, 0x4b9dd8d4, 0xd6be73b9, 0x17c6aa64, 0xfc077e2e, 0x0001be }, { 0x1c7a06a8, 0x9bce3d50, 0x863c2636, 0xc645489a, 0xfcb0835, 0x943aa71a, 0xedeeb819, 0xe421488, 0x502f5c4f, 0xcfd338d3, 0x7a5a124e, 0x5444eb2a, 0xfc7c3650, 0xb56deb54, 0x2cff641c, 0xf2fe27ef, 0x000139 }, { 0xacf65d80, 0xe96a4c0d, 0xa3eecb51, 0xe2c41648, 0x4c9defb1, 0x64aa58c7, 0xa3f4fa04, 0x5e817254, 0x9eb6578, 0xa5ae9dc5, 0x4ae57f00, 0x99f08a6c, 0xd8dced1d, 0x5686343b, 0xc992a5e5, 0x4e6fb756, 0x00013a } }, { { 0x8c5a11ef, 0xe5249a5f, 0x510329f0, 0xe5e03a3d, 0xe5876ae4, 0x9cdfdcae, 0x439703ae, 0x46d1c414, 0xda97a616, 0x7a394eb4, 0xf8b1deaa, 0x952aee9, 0x9801db78, 0x32d4dbd9, 0xad696cc4, 0x9ec75e91, 0x000064 }, { 0x26e1a54d, 0xa476d099, 0x1802cda5, 0xb244b514, 0x2fbf8e11, 0xf950b208, 0xf6a23ba5, 0x96fcdc3, 0x2c32fb21, 0xe71c3f86, 0xa57cdbad, 0xfd2ffd21, 0x734b15b4, 0xef78c825, 0x6868f9b9, 0xbb84e198, 0x0001d8 }, { 0x92043413, 0x1427ba42, 0xc7081586, 0xce2a52a0, 0xe77c25c, 0x569e6c6d, 0xc4a3d420, 0x9a90b868, 0xae9a2a4f, 0xcf7057c5, 0xb1875056, 0x27dc026b, 0x4a37469, 0x52488184, 0x30a9ed61, 0x3bea94c1, 0x000136 } }, { { 0xebc14b32, 0x1c77a9ec, 0x5e2d44e7, 0x58aba8e4, 0x57a89471, 0x7ef522b5, 0x77902897, 0x7803c4cb, 0x552220a3, 0xf529b6b0, 0x6e0a1d4a, 0x240fe35f, 0x7e2d0fe3, 0xee3e2994, 0x6885ce77, 0x9d0572b4, 0x0001ac }, { 0x71bf178c, 0x40fbe417, 0xefbdb58c, 0x904c689d, 0x7fffe70c, 0xca804de6, 0x6b9b936d, 0xa0b386ea, 0x637e67bc, 0xc9a6f922, 0x5a883a3d, 0x1d875156, 0x6458ba43, 0xea81b3fb, 0x8b55ec88, 0x79ea7242, 0x000152 }, { 0xf33633d4, 0xa40034ae, 0xe7cde501, 0xdc8a5199, 0x339b69f6, 0xf6d6732a, 0xfe60c8f1, 0x6bc0e69a, 0xa9931297, 0xf4012a51, 0xa1c30077, 0xe413cf35, 0x20f8bb40, 0x8942a4e, 0x85de61b8, 0xe04be25f, 0x000120 } }, { { 0xad3d861d, 0x640b047b, 0xde378523, 0x8d6910f7, 0x6ad7518, 0xbb9f0211, 0xed4fb77a, 0x22cdb7f, 0x46136961, 0x7c9c896a, 0x889bb923, 0x25c44561, 0x498c0fbe, 0xb3bd363d, 0xb6d8d7bd, 0x30e5d13a, 0x000129 }, { 0x9da47460, 0xab502dd4, 0x22ff59a5, 0xeb418156, 0x4f08898c, 0xe179d5ab, 0x74b3675c, 0x5c976ccf, 0xf83289c6, 0x31dba846, 0x7193903, 0xa974d6bf, 0x707f7f59, 0xcd5403e3, 0x76328d67, 0xf019e396, 0x0001b3 }, { 0x428060e7, 0x47cd7040, 0xcb4fc48c, 0xf77a8696, 0xc4a9b034, 0xa83b500b, 0x74fcd51f, 0xdabeb48e, 0x4cf863b5, 0x3d71c69b, 0x66f5956c, 0x1da1b081, 0x2b6dc616, 0x209f59d9, 0xed877a2e, 0x35381b41, 0x0000aa } }, { { 0x412661fc, 0xe71bed07, 0x92375adf, 0x2f184104, 0xc275860, 0x68170346, 0xebd1ed24, 0x5088849f, 0x78088092, 0x3f7f3a03, 0x6cfe2e96, 0xfa348c8e, 0xe08e141f, 0x54b6b7f1, 0x9dcdc3f2, 0xdc075624, 0x00015d }, { 0x92960aae, 0x29f0b8ff, 0x3212ab05, 0x36a5a29f, 0xb0de7834, 0xc53810c4, 0xb093ca1f, 0x5c3dbcd5, 0x3e0af6c1, 0x22930fcf, 0xf5b66587, 0xa3976c75, 0x535909ed, 0x67e5910e, 0x203b1cf6, 0xc02865, 0x000135 }, { 0x134406b7, 0x62f38a94, 0xb5e3f5a3, 0x66bcfa10, 0xd2ec904, 0x26ec74f0, 0x8d716fe7, 0x13825a5a, 0xd5d9c2ce, 0x1f0afe13, 0xb7066f32, 0xa2eb83e1, 0x979f8351, 0x1809a02d, 0x850addf, 0x8ed479b1, 0x00018c } }, { { 0x11cd3726, 0x77ab15bf, 0x4e67cbfd, 0x6582a1bf, 0xc238a9d8, 0x870d5b7f, 0x11f5001e, 0xc868778, 0xa77fafc2, 0xe862043d, 0xbf35d98, 0xc148c589, 0x1bb0fde3, 0x56921535, 0x7909e9e1, 0x436e7387, 0x000117 }, { 0x821ca9ff, 0x838f18ba, 0x71e5f641, 0x9f379c33, 0xeea7c21b, 0x6815682c, 0x54e1da8f, 0xd78e908f, 0x81c1ffc4, 0x87186739, 0xe16d17c9, 0x99e3fd57, 0x6a93816a, 0x798c357e, 0xb6d8ea3f, 0x7930e3f3, 0x000176 }, { 0x611dcbb6, 0x92faad76, 0xda2b8b27, 0x754ad508, 0x87358afd, 0x5ec6c09c, 0x4b758fe9, 0x1c40300c, 0x2117eb16, 0x43e6ea78, 0xf5ff259a, 0x5605e377, 0x9d6c5415, 0x62aa67a9, 0x76be1627, 0xe63257f9, 0x00015c } }, { { 0x6153b2b2, 0x5ceca301, 0xf1fa6399, 0xe477cee4, 0xe4dc44c5, 0xbfcdc17f, 0x4457f752, 0x2213b43b, 0x8e093f31, 0x89fb870c, 0xe6135d37, 0xac4caaea, 0xeadf06fe, 0xfb7ba13a, 0xa6da34aa, 0x454219e8, 0x0000dd }, { 0x97125805, 0xc80b34d4, 0xaa871959, 0xa9167941, 0xd6b9706c, 0xeff99802, 0x59ff7261, 0x9feb56df, 0xefc83ff5, 0xb48892e1, 0x9d3adc02, 0x6fe52f01, 0x2598883f, 0xd376767d, 0xb7e4a30a, 0xc0b89f05, 0x00017c }, { 0x54bfaf92, 0x43149158, 0x27e758bd, 0x60da367f, 0xe8439552, 0x29efe597, 0xc70671f0, 0x8eb24f40, 0xa0b0d4d9, 0x720db914, 0xab25d43a, 0x9301dc80, 0x88c70e76, 0xa0e25bd7, 0x1b9add65, 0x217dbde4, 0x0000b6 } }, { { 0xf9988c77, 0x688892ac, 0xd28e9ceb, 0x93df2c64, 0x53b9c55d, 0x740126b4, 0xe1c4b263, 0x898f8e31, 0xa3324f5, 0xd7a87d9a, 0x6548a690, 0x1377b3a4, 0x7c935cc4, 0xe04b3423, 0x9bde6010, 0x37fb9ce6, 0x0000f4 }, { 0x84b229b9, 0x84bcb5a, 0x82aa196d, 0x830258d6, 0x3acd7e23, 0xd2c34b65, 0x8ada6083, 0x63b726da, 0xc4611dce, 0x593e9c41, 0xd8e9826c, 0x7a754901, 0xd72e224a, 0x11158591, 0x261013fc, 0x4b472ead, 0x000128 }, { 0x9613685c, 0x1a77712e, 0x79fe1bdf, 0xfa9dcc02, 0xee42b3ad, 0xeb002fb7, 0x374e5fb7, 0x4b0109f6, 0xcf981482, 0xfa313303, 0x1d047f71, 0xd4523b65, 0xd8376fb1, 0x69224bd3, 0xd37397c4, 0x74369650, 0x000092 } }, { { 0xa8f9f7b3, 0x3c853255, 0x2e98ec31, 0x85352428, 0x1c87b1bc, 0x7aba89d4, 0xbee1f020, 0xc47cf364, 0xb6d78b13, 0xfb14f756, 0x15813aa4, 0x78f3f373, 0x995fd98e, 0x388baa88, 0x4d8ed034, 0xc8326196, 0x000028 }, { 0xb15bb95e, 0x24f40962, 0x5f78528f, 0x896dfa1, 0x70f8212e, 0x94a7f6, 0x36f8586, 0x8705a42a, 0xe0850cf4, 0x6c49c651, 0x9153fd95, 0x12c66e1e, 0x653bb8a3, 0xaf6410d7, 0xe87df1e1, 0xd6493e9, 0x000092 }, { 0x48b0b8a3, 0x7d90b1d2, 0x68290b4b, 0x8961798, 0x4fd18a59, 0x5c081061, 0x9ad1d96, 0x34886a2c, 0x1fbb3e2, 0x10b72101, 0x492350f6, 0x20b7511f, 0x3317d5b1, 0xb1fcbdad, 0x786673ff, 0x26948966, 0x0001b8 } }, { { 0xca3bbefb, 0x1a3fdc48, 0x525f8fad, 0xfeeccc8d, 0x6aa77bb5, 0xf42beee6, 0x95e152e, 0xca409511, 0x1f16567e, 0xb2cd4ccc, 0xec0f432a, 0xd62165a1, 0xddebde11, 0xa7fc4f6e, 0x92e7e0ba, 0x1aa66d38, 0x000171 }, { 0x7dd1931b, 0xebce0d3f, 0xe81503ef, 0x912fcdf2, 0xd6ff320d, 0xbff3ef8b, 0x76016a48, 0x9b4f4040, 0x96d6b9ea, 0xe125f5cf, 0x31ef9f15, 0x1d3934f9, 0x30e07bec, 0xff77e8fa, 0x70e8e7bd, 0xdaa41a2e, 0x000003 }, { 0xe24540e0, 0x428ed4a1, 0x4aa062ba, 0x8c829d6e, 0x9dd8efae, 0x834c09f, 0xc94ed26, 0x27c95bbf, 0xc6206c13, 0x6d4fb779, 0x2564d7dd, 0xc1367760, 0xb6bc399f, 0xb6ce5c82, 0x6d20dacc, 0x9de62ae2, 0x00010c } }, { { 0x6e8bcc27, 0x33b6513f, 0x62db043c, 0xf29e5a9b, 0x3aebadc1, 0x51030199, 0x28026abd, 0xfe76232c, 0xc89a902b, 0xdebd4500, 0xe028aeb1, 0x8b225153, 0xeb298503, 0xf48898b0, 0xd6059fe5, 0xb8d46a6d, 0x0000d9 }, { 0x988e2387, 0x50a4e1b0, 0x42bcd9ad, 0xa95c244e, 0xf28c0ca8, 0x86725a08, 0x9b14d9b3, 0x8d543989, 0x233b20ed, 0x561e5cb8, 0x89f9540c, 0x1de5ff1a, 0x2bded2c2, 0xf5794746, 0x32db0ca7, 0x443caeec, 0x000053 }, { 0x84ecd583, 0x5ef3f407, 0x106c98dd, 0xa7603fb1, 0x7522b5d7, 0xde76541c, 0xa19741da, 0x367eea74, 0x4b6bcecb, 0xeae7dc14, 0xbb7d7d3f, 0x7f51bf87, 0x8739e467, 0xa855174c, 0x95733cd8, 0x70ef3934, 0x00017b } } }, { { { 0xa98e6e60, 0x7f55873, 0x73e80cec, 0x8edef446, 0x50c48dc, 0x8d3e73b0, 0x8c7addc9, 0xe0b61ff0, 0x1ec76ddd, 0xf1f33209, 0xc882f85e, 0x64895e8e, 0x396f626d, 0xf7594173, 0x5d3e2208, 0x46aef61c, 0x000079 }, { 0xc5916b6a, 0xc9ebed8c, 0x80fb0ad, 0x5f990f46, 0x8f468a03, 0xc98be277, 0x3dc476d2, 0xad7a2ee, 0x5e10a091, 0x143a32f5, 0xaa70dda3, 0xa6ea3f24, 0x2374210d, 0x6fca0600, 0x8a80b6dc, 0xc759c211, 0x000018 }, { 0xdbcba84b, 0xf0407c57, 0x278612fd, 0x8d2a8a6f, 0xe9638adc, 0x99eea40, 0xa6320545, 0x92c4453, 0xf26710cf, 0x60a5e6fe, 0xd537fd81, 0x32c2c231, 0xff577a0d, 0xdb8b98e1, 0x544ec2a5, 0x26c4afd6, 0x00001b } }, { { 0x202966d6, 0xb62c7b8a, 0x6b5e4711, 0xa1c50cd8, 0x11afe38c, 0x486a06b3, 0x6de9073a, 0x18697036, 0xc299bbd, 0xa095868f, 0xde121baf, 0x20ba2e57, 0x7f5c31d9, 0xfcf562ed, 0x80c79650, 0x250b5c9, 0x00008c }, { 0x528beb7f, 0xcfeb5039, 0xf08331a6, 0x470f7836, 0xbda47311, 0xaa6d484a, 0x7685b575, 0x3efe41e3, 0x8e96a5dd, 0x215054fa, 0xca7f2c10, 0xea43b023, 0x35c96ab2, 0x57aa044b, 0x9294d939, 0x5c8e2719, 0x0000fd }, { 0xd192ac3b, 0x7c05061b, 0x8edd1f4f, 0x3b23fe51, 0x4c44555c, 0xaa30d543, 0xecb6fada, 0xb0d92fe9, 0x431ace55, 0x53fb1b9f, 0x36f9cac5, 0x71fa0882, 0x788d4ece, 0x5476e3c7, 0x845e7754, 0x56d2db1, 0x0000b5 } }, { { 0x36d3ebb9, 0x79feab63, 0xdcbd4a88, 0x6be14e4d, 0xbd6a573c, 0xbdb2c876, 0x509d5834, 0x43057b49, 0x856b76e, 0xa1f5036e, 0x91e48340, 0x5f58b703, 0xb78e6742, 0xe96da0ee, 0x298ec4e8, 0x141fefff, 0x000007 }, { 0x8a1956c5, 0xf95ffc16, 0xf03ce40e, 0xb171273f, 0x60199410, 0x7263d1f8, 0x4f5c00e1, 0x947d2715, 0x5dc63570, 0x17290a29, 0x4cdbcc04, 0xb8cd9b1c, 0x12f0c16f, 0x6b7d483, 0xe9a66283, 0xef02339c, 0x0000a5 }, { 0xd077578a, 0xf7ba71f9, 0x7ce8f1d6, 0xf4a8f0c4, 0x57950e11, 0xb7a2b7d9, 0x30a9ea46, 0x3bd97223, 0xf90d5c8e, 0x70319785, 0x8c801c63, 0xcf6510dc, 0xcc1f795b, 0x83859037, 0xeec019e0, 0xb44ccbc0, 0x0001cf } }, { { 0x4996fce6, 0x8a78535d, 0xea6de3f, 0x7b9cc385, 0x89b328e9, 0xb7b1474e, 0xc1e10aa0, 0xb754c7b9, 0x3d52eca, 0xb9046b86, 0x3b4be919, 0x630b4d7e, 0xf4d5c71f, 0x1d204c4c, 0xd649427d, 0xb61f8427, 0x0000b7 }, { 0x3c8b8dac, 0xa6789e1b, 0xcde4d902, 0xd8fa85d2, 0xc47e96c1, 0x78a7c345, 0xc3213aa3, 0x5efdab78, 0x635504e8, 0x50a484ad, 0xe62caf52, 0x715a2e40, 0x494d3c80, 0xd3069e61, 0xa2aa0d6f, 0x90b34199, 0x0001cc }, { 0xa1694ef, 0x2b673544, 0x845c7889, 0x735886d2, 0x3c9410f5, 0x6e022f9a, 0x7042ae8d, 0xa3ddbdd3, 0x4d159f1, 0x22f79558, 0x69db6b52, 0x9bff62ca, 0x80e2dff, 0x6c9e16e9, 0x34ee1556, 0xc42333d3, 0x0001ae } }, { { 0xf2693e89, 0x43adcce8, 0xd426ae99, 0x8b70b337, 0x1d3b8b2b, 0x7e211c95, 0x56a55e7c, 0x39c63bed, 0x73fa578e, 0xf38edd12, 0x8eaeaf66, 0xa1810359, 0x46e96311, 0x9c58e8c4, 0x966639b5, 0x313779ce, 0x0001d9 }, { 0xa82a4993, 0x803ab90f, 0xa9735d4b, 0xc4e56ca7, 0xcdf44f55, 0xde769426, 0xb2268704, 0x703abf36, 0xee3567af, 0x56eeeb15, 0xea29174c, 0x640b0253, 0x5f1f4bae, 0xfa5d29ea, 0x8006473a, 0xbb7d9192, 0x00011f }, { 0x14b3ffe7, 0x66187f2b, 0xd6a7be3d, 0x48f5c54b, 0x8069cabd, 0xd2bfc686, 0x9b578e8d, 0xb1a6086e, 0x9c8f3768, 0x9ab6c117, 0x74e0c720, 0x86910889, 0x3b653ac8, 0xca50a901, 0xb6f4f478, 0x5a76b12d, 0x0000e1 } }, { { 0xc73d1214, 0xa146acc5, 0x3f1ab235, 0x1e53e832, 0x7b1b3eb6, 0x881e306d, 0x4cfeffad, 0xc792cafb, 0x89fdafce, 0x12190989, 0x178f4330, 0x1955a1f0, 0xcd716c8d, 0x4682383a, 0x794d61de, 0xb0c49062, 0x0001aa }, { 0x92efc592, 0x7bf6fbeb, 0x337d17d3, 0x995ff42, 0xf312d3b6, 0x5596b2dc, 0x4de51ddf, 0xf63c06c6, 0x21a1d21a, 0xa3627ffe, 0xd6a41bf0, 0x5beed561, 0x614fe8ac, 0xaa44bf05, 0x75ea49cc, 0xab9bf743, 0x0000cb }, { 0x907470b5, 0x9ee2d326, 0x6eff5754, 0xf99ef53a, 0xd031b03b, 0x3f8f6a63, 0x31580680, 0x47d129b5, 0xeaecd95a, 0xb8445132, 0xfac8fe37, 0xe92ca583, 0x9c37a65e, 0xa6ee81f9, 0x7ff9e03f, 0x18d95ee7, 0x0000cc } }, { { 0x6cb612b7, 0x6302e001, 0xe7c83f4f, 0xe6042122, 0xd0cc2796, 0x1abd9c13, 0x6e9c2ba9, 0x179f4053, 0x31347a17, 0xff7192d2, 0x68f7481e, 0x89bdfb81, 0x214bcdb5, 0x28c7ce37, 0x94f63a10, 0xcc1cfeab, 0x00000f }, { 0x4f9d2773, 0xf0a59d0f, 0x1fe9f50c, 0xa84943f5, 0xb2164c27, 0xbce5e4b4, 0x82dd7a86, 0xf1be81f7, 0x793013cd, 0xd6075506, 0xb438c7da, 0xd5f67ac5, 0x97bea335, 0x16f9c213, 0xd2ab450b, 0x919a8110, 0x0000bb }, { 0xf19525ed, 0x337a5151, 0x4650f128, 0x647c25e7, 0xf6901a6, 0x716daa0d, 0x9fb8e856, 0xce2d2ffc, 0xf0397894, 0x96e9e193, 0xee23ea01, 0x7b76b4a0, 0x21383a63, 0xff595a70, 0xfc3da67, 0xe80ae6a3, 0x0001c2 } }, { { 0x46fcebae, 0x8fb14f99, 0xe362d5d8, 0x99d8d9e1, 0xe00d2ac, 0x3aefbbc9, 0x47ca31e5, 0x7f6538e, 0xffae7476, 0xa654784, 0x8b49095f, 0x2981576e, 0x3b30b46, 0x5f064e00, 0x794c8aa1, 0x16912464, 0x00000a }, { 0xb9212693, 0x1d8c82f8, 0x67897ebb, 0x6656a6e1, 0x75511072, 0xca3582e6, 0x9e0999ff, 0xe771bd14, 0x32bed420, 0x313ff323, 0xd12f23ff, 0x35c1c551, 0x50afd7d2, 0x54a329c3, 0x4c8b1f86, 0x88beb698, 0x000185 }, { 0x50b3e68b, 0x8166e6de, 0xc135a3b2, 0x8b45e282, 0x16848a75, 0x4839ff7c, 0x5c60d596, 0x6b749e69, 0x3c70cd08, 0x9b0e54de, 0x229174ce, 0xe084cd05, 0x2a72cba3, 0x933a1db7, 0x8967fa99, 0xdf780f15, 0x0000ed } }, { { 0xd56eed09, 0xda9c9468, 0x493278e2, 0x5e4744d0, 0x4593186a, 0x8cbbb3f6, 0x94055723, 0x6b5835d4, 0x4391cb71, 0x9652e87d, 0xb1bbfc9e, 0x6c9667c2, 0x959415d7, 0xf11f991b, 0xfe9e6a46, 0x8a04bee6, 0x000003 }, { 0xa6b19750, 0x2406165d, 0xff15d200, 0xe1680fa3, 0x450af594, 0xbf3fb8d6, 0x510250b7, 0xf003fb59, 0xa932f787, 0x43184d33, 0x12934457, 0x4712db1e, 0x854f3319, 0xbf820a9e, 0xa7d57092, 0x695bcdb2, 0x000040 }, { 0x626c1d89, 0x35a85b13, 0x73064d5a, 0x10fcf521, 0x50641b44, 0x20bed382, 0x767f606, 0x70c8bb1f, 0x9d051de0, 0x48546aa7, 0x17e71da3, 0x864423c, 0xb81f9de2, 0x51f31420, 0x5d900bbd, 0x996d6e54, 0x000033 } }, { { 0x5e4cc776, 0x6c3d85b8, 0xefec485e, 0x2686af4f, 0xa2eb4a54, 0xdae0d8af, 0x47f5268e, 0x51545b48, 0x1725d540, 0x84dfeee4, 0xcb3a0f89, 0x778120ab, 0xf3af601c, 0x4cf53c41, 0x81aeb4eb, 0xacc48eae, 0x0001e4 }, { 0x3fe4a2f7, 0x37beebdc, 0x7c323609, 0xa02b58af, 0x6fef470d, 0x2a6aa701, 0xc319dff8, 0xf846fbdc, 0xe318de41, 0x293b9883, 0x457acc24, 0x4f922d8c, 0x98abe545, 0x4abf0881, 0x54dbc9b0, 0x59e7f3c9, 0x0000c2 }, { 0xb6851433, 0xa27baf15, 0x111c10f7, 0xc0f332f3, 0xcaf45fea, 0x5351a081, 0xfa9ff7c7, 0x5a80c74, 0xfa365565, 0xf6daccd3, 0xe58f742c, 0xdb5c3d7f, 0xfb33860a, 0x6850df93, 0xa7a08b66, 0x3494a6cb, 0x0000e2 } }, { { 0xd6754eb5, 0xb94abc97, 0x9492e5e9, 0x48ce012e, 0x71a10453, 0xefb54e05, 0x174f2a88, 0xaf89a1e3, 0xe45db408, 0x2469a2f1, 0x937b3ee9, 0xc4a1ca26, 0x3299e893, 0xf2e2cff2, 0x181176a1, 0x616d252a, 0x000141 }, { 0xb2abd57b, 0xb88f817d, 0xcc193903, 0x208f3074, 0x172636a, 0x9d95b98e, 0x987e387b, 0x8d296f10, 0xf355b8ec, 0x95410683, 0x6bef07d4, 0x497a84ba, 0xc491090f, 0x4e1bb34e, 0x5bad4369, 0x79257f26, 0x00012d }, { 0xdd812691, 0xfa72a231, 0x78d96420, 0x60cf895d, 0x1c1d8984, 0xfd45ac2e, 0xa24f7c7a, 0x2cf9cf5d, 0x8213d500, 0xb86267d7, 0x89dc3e53, 0x8417f587, 0xc996af0, 0x11432835, 0x25a009b7, 0x3294f8c8, 0x00009c } }, { { 0xa0f4c025, 0x2684623, 0x1872aa79, 0x3e0d4925, 0xa95d245b, 0xb560fbb9, 0x4ef0d73c, 0xffda0cc, 0x4c7edb27, 0xa96b1298, 0x58d04e6a, 0xfee0ca00, 0x18d6a705, 0x4c1ecef, 0xad233af3, 0x796b825b, 0x0000fa }, { 0xa6cbdda1, 0x5a13df65, 0xabe4be86, 0xb8fc0e4e, 0x9eb16095, 0xc22c5634, 0x22879fe7, 0x1950b2e0, 0xe36a5240, 0x1f7454fa, 0x69681b80, 0x87185123, 0xc93f71e8, 0x8c6a79b1, 0xa4f6abdb, 0x5b9f4e96, 0x00009d }, { 0x86aac63d, 0x7fc9cd67, 0x85ca4ca6, 0x850e677d, 0x6e2f15fa, 0x219b68a5, 0xa68d34c, 0x3f1536bd, 0x16856e8, 0x538e9e10, 0xc1367af6, 0xbf8b631d, 0xb1b6c9f6, 0xc483a2c9, 0xbaf9feea, 0x400e9847, 0x0001ec } }, { { 0x5bb616ca, 0x384767f6, 0x5f8a9bc5, 0x537e5169, 0x568d81d0, 0x29f45ec9, 0x68b3cb09, 0xfab02d34, 0xa5277d34, 0x649500ce, 0xad2bb829, 0x3650342, 0x4451c52a, 0xaf050934, 0xb564216f, 0x8053f510, 0x000112 }, { 0x4d24f72c, 0x1ffb3cd3, 0xfd043058, 0xa9a98392, 0x8a90310, 0x29f23ea, 0x6541853d, 0xe2931973, 0x5d907104, 0x69289154, 0xf5b40cf1, 0xe9c23a8f, 0x726056e0, 0x7a7da42e, 0xf0d9d979, 0x1b7f2d12, 0x000124 }, { 0x7d44a847, 0x8102823e, 0x5bfd3967, 0x7ae95b6d, 0xc08f4e4f, 0x5d122ad1, 0x20e98be8, 0xd0b4d527, 0x788c052a, 0x1f18894c, 0x80906b86, 0x2966df3e, 0x3dfd78e9, 0xdbe7fd37, 0x60c19cdf, 0xf4a5708a, 0x000062 } }, { { 0x8c523a3d, 0x7947dedf, 0x871fbac5, 0x78bd7d, 0x13cf778e, 0x33d963b6, 0x14dfe02e, 0xe4ca089a, 0xceaab8a3, 0xd25c2830, 0x8be53669, 0x1b5ce5f0, 0x9a37935a, 0xa9cd5c91, 0x42d9dc89, 0x865fe30, 0x000052 }, { 0x6c328bca, 0x34b0a5be, 0xfb126cbb, 0xa6192fca, 0xdf2dcefd, 0x72c62728, 0x9289132e, 0xa356071d, 0x4754b4d4, 0xbbae8d54, 0xabe365ea, 0x3ad596d0, 0x68560717, 0xb9ffd603, 0xf23b31bb, 0xdab1a0d5, 0x000165 }, { 0x5669036c, 0x8dee6c11, 0xeab10aaf, 0x9a459a42, 0x2bdde01d, 0x68db1c3c, 0x59019fd9, 0x32295014, 0xd7bdca8a, 0x38082fce, 0x9ef282c5, 0xd15f403d, 0x59815780, 0x110f2920, 0x133330aa, 0x45d14525, 0x0001af } }, { { 0x81f04b51, 0x1be78a8d, 0x143b4efd, 0xc92fdd68, 0xd87d1b0c, 0x992a92d, 0x3be8d5e9, 0x271a41a0, 0x9c20bba7, 0x1483f6b4, 0xa1ab3acc, 0xaf5ac863, 0xe5677fc1, 0xcd8b11d3, 0x81b110c4, 0x1dc52b36, 0x0000d0 }, { 0x59798aa5, 0x9d0bb55f, 0x87656d9a, 0xdecc25c4, 0xb4d4de02, 0xd2d26da5, 0x1702996b, 0x36ced30f, 0x29946ba7, 0x6f8d1c13, 0x862a19d2, 0xe8d3faf3, 0x44cca6e2, 0x2bcfa4b7, 0xfd678aee, 0xc530f698, 0x000024 }, { 0x29bbb42d, 0xa1fd8ab, 0xeddb420a, 0xa50c7b92, 0xead0ff2b, 0x5d7c2f19, 0x9f2ae3d6, 0x6eb65e01, 0xb765f56c, 0x675e5090, 0x18d939be, 0x28f26752, 0x205edcd6, 0x42f09cd8, 0x5ee23aa5, 0x1409cf27, 0x0001cb } } }, { { { 0x73bdae91, 0x590e5b63, 0xa110610d, 0x85d7f11a, 0xc03c1730, 0x38f43d90, 0x7d154bdc, 0xc24bb3a8, 0xd36e37d4, 0xc8d3d086, 0xa80b6f33, 0xcf4c5a8f, 0x3f01f2ce, 0x77322318, 0x5a456973, 0x63bd2b9, 0x00019c }, { 0x48306ee2, 0xcb6dbebe, 0x5f3bb7ac, 0xdc1e7cf3, 0xcdcb86af, 0x4446ff2b, 0x963635a0, 0xf797d395, 0x80ba7ce0, 0xa713e2c8, 0xbb42030e, 0xf94492d6, 0x9bd29b4d, 0xdef089f1, 0xd7a3c66b, 0x53740165, 0x000142 }, { 0x8d6005ef, 0x60c65cc5, 0xa7937123, 0x869d6b5b, 0xecc014a2, 0xbe8ed7f1, 0x33f7e78c, 0xcd77d4c, 0xccc6c563, 0xc5b0b24b, 0xac95f39b, 0x9efa3a81, 0x878c5fa5, 0x806d5f34, 0xc34d7c28, 0xc38deb53, 0x0000ad } }, { { 0x51d3e992, 0x632dc5c7, 0x4014650, 0x4ecdd4c1, 0xe42e4759, 0x42ac086e, 0x422082ed, 0xd6fca410, 0x887d1d3c, 0x36e3c64f, 0xe447b1f0, 0xa3d568f3, 0xf287e8fa, 0xe84295f, 0xb7add4ce, 0xf6d420de, 0x00017e }, { 0x1244cec4, 0x59249671, 0x5ee3f60f, 0xb4add445, 0x61411145, 0xe5506f43, 0x57c96065, 0x21d2fd15, 0xa6ad379a, 0x77412cfb, 0xfacec572, 0x7b459ce3, 0x6b2a4fc9, 0xf4bcf8f4, 0xc68b3fbb, 0x6837798d, 0x0001cb }, { 0xac7dffb2, 0xc2ff5ecd, 0x65145dec, 0xf2157caa, 0xb48804a8, 0xb300d82f, 0xca4e6876, 0x69a6b647, 0x25c04a68, 0xa39bdd73, 0x10c57e3a, 0xff18d349, 0x183ffc3c, 0x80f6f1ab, 0xb2399280, 0x4c32c938, 0x00016f } }, { { 0x1ceba809, 0xa9132d4d, 0x13f5b09f, 0xe47bc65a, 0x3d947421, 0xf8336b48, 0xeead1aea, 0xe5620419, 0x5e7cad72, 0xeb43ab35, 0x7f84987, 0x109578fb, 0x519cca02, 0xb5192e8b, 0x1742b38f, 0xc1d93355, 0x0000d2 }, { 0x10161061, 0x74fa3956, 0x774fe050, 0x996ad18f, 0xf1f23553, 0x8aeaadd7, 0xd9b0aa14, 0x414e2e31, 0xfd7697a9, 0xa72c0ba1, 0xf075120c, 0x1c148e8e, 0x5ac87041, 0x44c92db3, 0x705f3b56, 0x513763df, 0x0001d7 }, { 0x601be8f3, 0xba6a5958, 0x6603eb38, 0x4f076743, 0x67f2b60b, 0xb78c8720, 0x431e0b9a, 0x369a3c4b, 0xdec48a5a, 0x9617e757, 0x99245b6a, 0xa2bfb902, 0x9ae1379, 0xdd57e8ab, 0xc7784c33, 0xca5cd656, 0x000017 } }, { { 0x85a96dd5, 0x9c0df6e9, 0x4073ec50, 0x3f6259e2, 0xccca7d04, 0xc8502ecf, 0x98744513, 0xb8d606f5, 0x267f78ef, 0x722a5d45, 0x13d6ed3e, 0xf5e0fe33, 0xd56261a4, 0xdb467fa2, 0x16074c08, 0x83fd50c4, 0x00006b }, { 0x361940bb, 0x1bca3e80, 0x3b07adb7, 0x76d3d795, 0xcb19cd0e, 0xa0134803, 0x36ceb129, 0x609587e3, 0x31089a9d, 0x372891b, 0x2358742b, 0x83bed3cf, 0xf08dbcda, 0xeb6948fa, 0x9f4be73b, 0xa3d3117c, 0x000083 }, { 0xdffc90d6, 0x3ffaa38c, 0xa42f2dfb, 0x68857f7a, 0x40e42db, 0x37825fb2, 0xc1497ddc, 0xd5fefeb8, 0xb17656fd, 0xd4c7d64b, 0xf5ebbedd, 0x89f4444f, 0x7baf4c3a, 0xa70e10fd, 0x2d6e7fb0, 0xf23d692a, 0x0000f7 } }, { { 0xf04ed57f, 0x8c090bb6, 0x508d62be, 0x865c4838, 0xbd89533f, 0xb4913bfe, 0x4afa1309, 0x908cd646, 0xee309f90, 0x74a5f9ad, 0x9ded7322, 0x85ac95d0, 0x25bd66bf, 0xd87b59ad, 0x3f85ed36, 0xb464f1db, 0x0000bb }, { 0x78183d5f, 0x34569fdc, 0x22ad8f30, 0x43fd2ab5, 0x341a59b, 0x313d4de3, 0x5bb4591, 0x94d32467, 0xefe4dd17, 0xe28f05fe, 0x31d826be, 0x3d902732, 0xe8a5965a, 0x7d29c22b, 0x2f085d52, 0x5b69d220, 0x000188 }, { 0x991a976d, 0xac82e84b, 0xe47512cd, 0xe717ad61, 0xd6cd0510, 0x42d54c7a, 0x503b0d25, 0x7d41737b, 0x695828c4, 0x2ad3d8d6, 0x8f55c117, 0xea034bc0, 0xc8273b12, 0x5f6a190a, 0x302a017f, 0xbad4768c, 0x00007b } }, { { 0x833a780d, 0xb4334da4, 0x4dbe1104, 0xd564a472, 0xfc2aa80a, 0x634780d6, 0xa64dd550, 0x42d1d6cc, 0xfaded42f, 0x49385882, 0x455fccfc, 0x671c0931, 0xe289b00f, 0x686d27df, 0x1f919776, 0x5947f12e, 0x000097 }, { 0xcee699ca, 0x37c8c017, 0x221f47af, 0x4de4c292, 0x1135b5b5, 0x7718f3de, 0xeb997608, 0x24c472e8, 0x49b9df12, 0xc3993758, 0x411e0aae, 0x11abf725, 0x11338e71, 0xc33f9e72, 0x2affce3e, 0xf3106e88, 0x00012a }, { 0x27515f27, 0xd824579, 0x50e13525, 0xa0477579, 0x9ce505f5, 0xb047296b, 0x26928a7f, 0x5703b3af, 0xc1d749ac, 0x7aa9feff, 0x3f462fa5, 0xe39b15e2, 0xa2dc2d26, 0x50a6f3a2, 0xc59506cb, 0xa25e45a2, 0x0001fe } }, { { 0x43dbc6ae, 0xed4a6ab, 0x4f94fdd3, 0x9bb0ac7a, 0x2fb2c83d, 0xd200e88, 0x83c149b9, 0x494c8b1a, 0x72160c9c, 0xc7847f33, 0x2a2368d8, 0x1ee88da2, 0xbcd9925b, 0x11a3fa9f, 0xdcf2b4f7, 0x26286ff5, 0x000148 }, { 0xf0d56923, 0xee9cc9eb, 0xff89de49, 0x6cadb82d, 0x1e0b759f, 0x6c8c843a, 0x118d54b6, 0x15f50505, 0x7ba610c1, 0x6a0bf972, 0x82a2fcd6, 0x288b095e, 0xf09ccdab, 0xc1fd1c01, 0x3acf5aed, 0x89010b54, 0x0001d8 }, { 0x7946231c, 0x90836c48, 0x24301921, 0xe6118a0, 0xe15308e6, 0xf37f84a6, 0x2570ac33, 0x6dd46253, 0x257c9fc6, 0xc7764c65, 0x12b7ff27, 0xb142b1a8, 0xdb1c6681, 0x610159e3, 0x2a661694, 0x6bf852ed, 0x00007a } }, { { 0xa79dc079, 0x3ccbec06, 0xdfe4ea29, 0x14559472, 0x731b20f0, 0x328f379c, 0x90e3dff8, 0x88ba537f, 0x314e6b3b, 0x869f4aa9, 0x8a53cd92, 0x74e4e041, 0x7846a078, 0xd9325e98, 0x8d6dce59, 0x519ecbca, 0x000046 }, { 0x9ba6cf22, 0x98be215c, 0xceedc309, 0x3d6574eb, 0x3b21f30b, 0x78d4d045, 0xbb2bd973, 0xfd11c5ce, 0xf5a9ce87, 0x29b08526, 0x5f8544b9, 0xe0793493, 0x82a93ee2, 0x4f40966a, 0x2775a6fa, 0x57d6b4c6, 0x0001ac }, { 0xe48af055, 0xbb61db8, 0x10b198a5, 0x36abdc2f, 0xd26319b0, 0x7eddfe6d, 0x78a0d7b2, 0x3db571f9, 0x79c1f996, 0x906eeec3, 0xe50932d3, 0xb57d67b, 0x150412e2, 0x3352cbba, 0xd997614, 0x7cc87bab, 0x0000a4 } }, { { 0xdfbd05bf, 0xa152db9, 0x154ffa6, 0xcbf75be0, 0x2543e468, 0xf22a05b7, 0x6ca99057, 0xef91accc, 0x7b88e77f, 0x3be30c80, 0x1c7f51a4, 0x54443f59, 0x1dd73e21, 0xa7fd8934, 0x10d51ec, 0x6f0338f4, 0x000029 }, { 0x80e86ef5, 0xdfe42892, 0x49bbb17a, 0xffc8bd22, 0xe47add9d, 0xb8a16573, 0x3456c45d, 0x9cfe4a6b, 0x206c9dcb, 0x4aa289b2, 0xc6455f95, 0x51541e82, 0x97120e86, 0x91281f34, 0xec8abcc1, 0x23e40a67, 0x00014b }, { 0xeaeb1e9b, 0x56e63bed, 0x66fbad98, 0xc8e99c59, 0x68b6824b, 0xf0e7959c, 0xd4a5017, 0x378e36c7, 0xe829480, 0xb01764d7, 0x9bdfe2fc, 0x87b04702, 0x70c204e2, 0xf99fc3f3, 0x9dd4d9ab, 0x8ac484bb, 0x000150 } }, { { 0x269c5c84, 0x63934956, 0x54fd3081, 0x98909af9, 0x93941727, 0xb6d2e63f, 0x42ccf75d, 0x689d9954, 0x2edd680c, 0x3c589464, 0x937f68b6, 0x85ce5e88, 0x724569d3, 0x96322f68, 0x51227b30, 0xd967a7bd, 0x0001c0 }, { 0xf8962ea7, 0xeb77193b, 0x93aeb2d5, 0xf2d00910, 0x3c9f7e4b, 0x6c854bf, 0xd26cb4b, 0x233e0b8d, 0x4e230969, 0x33e5ce48, 0x55368933, 0x79120098, 0x1842384, 0x9c607598, 0x6a48e902, 0x7e4c1770, 0x0001a9 }, { 0xba6970bf, 0x52131444, 0x445ee5f, 0x67f6284f, 0x79750c78, 0x3dc70337, 0x2d766983, 0xfafd56a0, 0xd09108b7, 0x1d4d40c5, 0x335b80bc, 0x33ea29e, 0x95382cdd, 0xad214794, 0xf2d1c845, 0x50131c5e, 0x00006f } }, { { 0x682a4010, 0x2c82c165, 0xa8948beb, 0x72ed7208, 0x77d40345, 0x969313ff, 0x255fa0d0, 0x38bcedff, 0x6c5fa08b, 0x5d4cc412, 0xcf81b13a, 0xbd0db424, 0x5ec3807d, 0xffdd479d, 0x80a99f08, 0x48a34375, 0x000046 }, { 0xa935891a, 0x404b7025, 0x5285c9a0, 0x12cc7610, 0xe4500624, 0x20c0375f, 0x2daa80d5, 0x66092fca, 0x898c4088, 0x48693998, 0x451f38ad, 0x3905fc57, 0x95af252e, 0x8093c2be, 0x68e45e4, 0xa5e8d622, 0x000013 }, { 0x48df908, 0x8b819648, 0x6923d961, 0xf95ab55b, 0xdbbda980, 0xa530920b, 0x4b1fdee5, 0x5236135e, 0x6ae63740, 0x5be07b0c, 0xf62359ba, 0xf2698c46, 0xe0917b28, 0x7fba3570, 0x4030ea9a, 0x564a2dde, 0x000059 } }, { { 0x49835592, 0x7490b2a7, 0x877a47d6, 0x7c71d553, 0xff8c0133, 0x600507b, 0xf5ec9b68, 0xe80e3bea, 0x85d99d4e, 0xb5c6df54, 0x55b0d560, 0x4910405e, 0x5b90d987, 0x170f5895, 0xe965cb40, 0xfd8b8d72, 0x000098 }, { 0x5b2f2d08, 0x4a931382, 0x4b0d95d4, 0x5b888f6a, 0xda1005b1, 0x8ed24fcf, 0xa859f444, 0xaafad231, 0x52fccdc6, 0x11a914ab, 0x9c03f102, 0x63eb63, 0xe6410d74, 0xc536d8f2, 0x310778c3, 0x6c89ab5d, 0x00002a }, { 0xb7765b12, 0x2213a6b2, 0xe7732a75, 0x9b7ba42, 0x8c317728, 0x92afe12a, 0x99c379fa, 0xb7d063bf, 0xf4c8268b, 0x84c79d0, 0xfe5966ea, 0x76bfc446, 0xe3afabd8, 0x3f2ac71c, 0xf1f743cc, 0xea14a229, 0x00010b } }, { { 0x4701f4f, 0x4e54efed, 0xd4eb284d, 0x9963ac57, 0xfa558a1c, 0x6f5ca264, 0x5a5ee225, 0x3dca0199, 0xcac6dcb1, 0x71bae67a, 0x419890e9, 0xf23e3a32, 0xdd174ca6, 0x5e9ca322, 0xf73a6e83, 0x84e1215e, 0x000194 }, { 0xfffe7abe, 0xdaa21444, 0xbfa5713a, 0x66bcf20, 0x1297256c, 0x381a50c9, 0x28af1eb, 0x7fdab559, 0x25ff7a3d, 0xb4c6b1e9, 0xc016fa1f, 0x2259c82, 0x2e72d378, 0xd10389d4, 0x4f612ccf, 0x910f62a2, 0x0001e7 }, { 0x8731f664, 0xe43a3bc2, 0x60f1d054, 0x69e03b3, 0xc7ac1b6, 0xd442b35e, 0x110479ca, 0x85687f4d, 0xceee7204, 0xd083a92b, 0x59ec3a02, 0xad8ff7e5, 0xb4a519, 0x3a0e435b, 0x244e5dd0, 0x51c27100, 0x000056 } }, { { 0xd23ab8ad, 0xaa07fba0, 0xc00393fd, 0xc45bce0, 0x8d4a012, 0xb3cdc75d, 0x327d6df6, 0x35fd7cbb, 0x496e3b2a, 0x16a5e23b, 0x1d38db46, 0xcd9b7aa7, 0xb214d465, 0xf4c0544b, 0xb7c86a65, 0xea9b2b77, 0x0000b3 }, { 0xb618bddd, 0x62f719bc, 0x7af8f0e8, 0x41ba89d9, 0x83f8b35f, 0x4fa1f9b6, 0x5fb8e4f6, 0xae75b0f3, 0x1c478c70, 0x28af40d6, 0x2dcd37d5, 0x4b8879f5, 0x145d8d5a, 0x94c51870, 0xdfbcfad8, 0x610878ef, 0x00003c }, { 0xb0b4deea, 0xe0502034, 0xa0cd768d, 0x72666d28, 0xf2c396c, 0xe47b3c72, 0xb372e2, 0xa4fd1747, 0xacd7cb9a, 0x9e2a18, 0x5359615a, 0x2995027e, 0x18807c17, 0x11e8cac8, 0x4db03ba8, 0x9bfb433b, 0x000191 } }, { { 0xf32ca39a, 0x2bd5f63e, 0xe30862a4, 0x3fd000c6, 0xc350d19f, 0xf0d0b721, 0x6423a97b, 0xb190f02e, 0xea1f1365, 0xb0621043, 0x476f41c3, 0x6c768cfe, 0xca5f2910, 0x2ad5bc92, 0x4faa8a74, 0x9258be9a, 0x000043 }, { 0x6c48141b, 0x60e46a9d, 0x72df80eb, 0xf81cd1c1, 0x9eadd147, 0x7d565197, 0x5b38f3ae, 0x4494bff0, 0xc2ecddd9, 0x9c1f2fd3, 0x26d32e6b, 0x8dfc235d, 0x1ad410f2, 0xc4b35d57, 0x6b42d8e9, 0xd6f4c384, 0x000013 }, { 0xacacbf6, 0x13d1c7f4, 0x667bccb8, 0xdcf5d5c4, 0x2c937218, 0x6663b5b6, 0xd5b02dc4, 0xa65ef26d, 0xd2a1c75f, 0x5272cf3f, 0x5007d122, 0xf4c98aed, 0xe5df1983, 0x54ce181e, 0x10c303b0, 0x9ce59f43, 0x0001fa } } }, { { { 0x8b7881c2, 0xdcc7aebf, 0xf9def18c, 0x554f7981, 0xbb6c1536, 0x47e68f52, 0x15d8c6fa, 0x725601a3, 0x74a3ee28, 0xb8e06a29, 0x886950cb, 0xfc3d8aa6, 0x8054a4c0, 0xaa2dadac, 0x6d612392, 0x1f86971a, 0x000109 }, { 0x5485cfc8, 0xf14f5314, 0x65de518, 0x9a270170, 0xc82d0f06, 0x768c62ed, 0xd1651d1e, 0x953c3200, 0x133aa7b9, 0x3c2d4fe5, 0x7a8091a8, 0x2d6abbfc, 0x913a42dd, 0xfcef2fe0, 0xf522fe5f, 0x421475ca, 0x0000a9 }, { 0x637e230, 0xc1aceb6a, 0x7d1ba519, 0xa00e566a, 0xcc2c4366, 0x8b0c69a8, 0x4013adfc, 0x572629a8, 0x9b85dd0b, 0x20a7e4be, 0x26249712, 0x9d299026, 0x96521bb1, 0x4609752a, 0x75493897, 0xd504d86b, 0x0000ed } }, { { 0xcd4d8fba, 0xe9e582b3, 0x9d4bd38a, 0x34ef8b11, 0x6ebdde27, 0x38b68fb8, 0x83511320, 0xa4a561db, 0xc161d95f, 0xa5a20582, 0xfc6d37d7, 0x446b00ef, 0xa9137a60, 0xf0feb3, 0x8e25e436, 0xfc4be51b, 0x000048 }, { 0xb88e50a9, 0x248a5760, 0x837cde18, 0xc981df01, 0xb50fb679, 0x5fcf48fc, 0xbdee379, 0x886d5423, 0x6b9aa450, 0x3552cca4, 0xa0a08865, 0x694b5f84, 0x2a58af72, 0xdf8bb5c5, 0x14c1de64, 0x5123efcc, 0x000005 }, { 0xe398fd03, 0x723ba7e9, 0x7d336ae8, 0xdc95c642, 0xf1c1a79, 0xff089a82, 0xd0b39816, 0xc3991ced, 0x4a3b284e, 0xf3066b05, 0x8c2ec3a5, 0x8d95a505, 0x79592793, 0xc2b3c443, 0x8af77e31, 0x549378f1, 0x0001d6 } }, { { 0x29510116, 0xe4b49da9, 0xe6913f9e, 0x20a5ea92, 0xc48b7342, 0x2de7a27d, 0xd1bfb8, 0xc8f71f6e, 0x6a806562, 0x7c7a52e7, 0x4528ee6, 0x7bb7bee, 0x8ef03ea5, 0x5c3533e1, 0x4f48b7b5, 0xcea5d0e, 0x0001bc }, { 0xed2213c2, 0x5a47bbb5, 0xb7cf0daa, 0xf54d7c2a, 0x63446740, 0xd5587f2c, 0x6e1a421a, 0xfa8dd5dc, 0x6303acc7, 0xb4a4b3c2, 0xc2669224, 0x21d28524, 0x6e6bbc28, 0x4a4fdda7, 0xa3cb9b16, 0xa198a0ec, 0x0000c9 }, { 0xd6f9f8d5, 0x9e0a9fe5, 0xd38e3032, 0x4d96a3fd, 0xfa623cb, 0x35abfcef, 0x18b03c2d, 0x2ec89172, 0x996f3c84, 0x630f33b1, 0x650f73aa, 0x15bdcf8d, 0xfa7078f4, 0x274bf314, 0x11d7434e, 0xd411d422, 0x000163 } }, { { 0x67aeb836, 0xed891979, 0xbccdfd88, 0xc02e131f, 0x207f709e, 0x1372a48e, 0x23f03658, 0xdef24218, 0x60d3a525, 0xe9be022c, 0x844a87a9, 0xc9b25a16, 0x8408bac7, 0x10dddcbb, 0xd40411d6, 0xd9faf83b, 0x0001b8 }, { 0x3f359400, 0x6a2c46b8, 0x98773d2a, 0xb3386c15, 0xcb522456, 0x136b5e25, 0xb48cca91, 0x274dbd13, 0xe15341ef, 0x6927d40c, 0xff52be84, 0x97e7f08e, 0x2a5610c5, 0x9e3c328f, 0xf1a18eae, 0x5f11d459, 0x000171 }, { 0xe78c279b, 0x9c2638d5, 0x8ded1fd3, 0x48de5423, 0xa3b07bcc, 0x96a5a476, 0x4ab440c, 0x56831147, 0xf2351924, 0xe1336cd7, 0xe034a023, 0xe8a6a4c3, 0xa3b8e6ae, 0xaf4f9442, 0x9481c7c4, 0x29bbd8f7, 0x0001c3 } }, { { 0x3f747db2, 0x6fb98b4c, 0xf530d8ad, 0x5150ad19, 0x14f9f49a, 0x91ad52df, 0xd1dd9b53, 0xc69fa454, 0x60120422, 0xeabfacfb, 0x33cae5da, 0x6332f00d, 0x1b15f3a1, 0xb974d825, 0xf3a726bc, 0x79b86bef, 0x0000e8 }, { 0x39aa8b5d, 0x36dd8142, 0x5750048b, 0x4cc676bf, 0xffaa608b, 0xf9cdffad, 0x7cdd54a0, 0x33543311, 0xbb295fd9, 0xa8bece7f, 0xe4bf9b36, 0xf78ef3f5, 0xd9df6a6, 0x506a37bd, 0x7ed58d95, 0x34ce8c38, 0x000176 }, { 0xaaedf2ff, 0xad68ba9d, 0xdf3965d, 0x8a8776ce, 0x489960a5, 0x5ba1bb78, 0xd5d98be3, 0x54c5b7f3, 0xf0885b3c, 0xeb4fd23a, 0xb3d03ed2, 0x31efbf2d, 0x81db11a, 0x34005e75, 0x924edd1d, 0x342a29b9, 0x00006f } }, { { 0x2a3fd694, 0x9f029dc6, 0xa3736137, 0xbf66221a, 0xb861b701, 0x4c45ba05, 0x8e9d583d, 0xfefbbbc2, 0xfe9fdfcc, 0xa8135c4a, 0xc1d16cd3, 0xf0ae3096, 0x3cffee0f, 0xd9a53f78, 0x19b83c8d, 0x43275b7, 0x000114 }, { 0x79bfc575, 0xaa90e599, 0x73b2fdf3, 0x456e76d4, 0xd93bfb80, 0xeefbc059, 0xc7b5b69c, 0xefc52a2d, 0xdef36397, 0xd3c8ec49, 0x5e2e35db, 0x942829, 0x2b4a89ec, 0xd5f978b5, 0x7875515f, 0xc671eb9c, 0x000137 }, { 0xa9f3726, 0xe9fcf3f5, 0xef602a14, 0x12d5ac8c, 0xad07216d, 0xf35442e6, 0xd862100f, 0xc39f392e, 0x8c91d6db, 0x1ca32c2c, 0xc3ca4355, 0x178ea75a, 0x207a9b25, 0x597cdb47, 0x5d0d2426, 0x27e4f278, 0x0000e4 } }, { { 0x49816807, 0x7233d54e, 0x1077834e, 0x62f61503, 0x3bc68615, 0x6a57e302, 0x67ac8545, 0xd9720ed3, 0x16b16cca, 0x91237888, 0xe62a2c54, 0x629fba08, 0x96aab4aa, 0xeb7bb8b6, 0xeaf06625, 0x1b0b86bd, 0x000062 }, { 0xa9f60940, 0xa096282d, 0x5327b18b, 0xcb0bf85b, 0x685b3410, 0x360aea32, 0xf0f10acb, 0xb96939d4, 0x2db7de55, 0x16ef4cef, 0x61467411, 0x7252b7e, 0x4cfaa469, 0x4869b45c, 0xe31057f8, 0x69dcd4ad, 0x00017e }, { 0xa8c10e5f, 0xbf38bf56, 0xc808ccf9, 0x108d10cb, 0x67930bd1, 0xd5fd9634, 0x96411499, 0xea4ef5da, 0x567afb46, 0xd1ead916, 0xd6ead2ef, 0x39f963b9, 0x3ed61b8f, 0x345a34e0, 0x179e899c, 0xe42f87ab, 0x00006c } }, { { 0xf48db050, 0x1ec8c818, 0x257df18, 0xcd843292, 0xcd486ab6, 0x2aec3195, 0x94f770fc, 0xa267ef48, 0x40a26b97, 0xe22f19d7, 0x48cf4dcf, 0x966a2231, 0xc5aa7877, 0x865649bb, 0xcccf9525, 0xb40ac194, 0x00019f }, { 0x33c1e3e8, 0x97aeb94d, 0xa75b574, 0x9460c109, 0xf83c648e, 0x6f1763cd, 0x9f698e41, 0x75d20ea, 0x69e8adc6, 0x63815b56, 0xcd076ccf, 0x36adebd6, 0x237ad24c, 0xb603974e, 0x2de33aa8, 0xb663dd94, 0x0001ab }, { 0x515143ef, 0x7bda7dc, 0xb2faa0e7, 0xea4b2ec1, 0x8cce1e2c, 0x3c5d4891, 0xf735fa66, 0x235b561, 0x5e731c3, 0x7a70d0c5, 0x3ad3024b, 0xc7d78288, 0x21a2533d, 0xac399a98, 0xe829a347, 0xdebdeb91, 0x0000f5 } }, { { 0xf777f247, 0x264e3387, 0x47028187, 0x7848c3ee, 0x60e4723f, 0x33ce145e, 0xd33ab51, 0x8d8f70f3, 0xabcb120, 0x96e4a5e6, 0x8214512c, 0x76bcf093, 0x7b106192, 0x1f9ca976, 0xa9abe771, 0xb78dafc3, 0x00008e }, { 0x4eaa1652, 0x5d2bdd70, 0xdfae374d, 0x8abb120, 0x9c23b5ed, 0x76fc535f, 0x5a4f6e06, 0x36a2db15, 0x4ff289f7, 0xd9518483, 0xc204834, 0xa4ca9544, 0x56e664d6, 0x6c58d518, 0x97db2d56, 0xca3fe7f1, 0x0000a8 }, { 0x87d0dee1, 0xf87569e9, 0x34129277, 0xd309140c, 0x7a04ed21, 0x278869f8, 0x25a2b68d, 0xb69acf77, 0x42d51872, 0x31c4ec22, 0xa8dedcfc, 0x548c78a4, 0xd0c0b96c, 0xb74324aa, 0xc50434fa, 0xec65dd2e, 0x0000c1 } }, { { 0x3e368fcc, 0x3a996020, 0x7bca2b6f, 0xc4186957, 0x758a1a66, 0x590e7b1f, 0x9938c3f9, 0x494c7100, 0x2dcd7b89, 0x2b7baf66, 0xb78426c6, 0xc316378f, 0x92590a88, 0x464471c2, 0x36623a87, 0xaf62076c, 0x000134 }, { 0x5cd76443, 0x4d57738c, 0xe93b25e1, 0x6768176, 0x1d174ae3, 0x41b353bb, 0xd35e873b, 0x90c299d5, 0x2ea835c, 0x489cf8c, 0x428d0e00, 0x84857b49, 0xf02273a9, 0x323cc8f, 0x7d9076a1, 0x62a01783, 0x0000ef }, { 0xf2c039e3, 0x6c437673, 0x4cf45ac, 0xc61e462f, 0x8c3ba992, 0x86995560, 0xdfb84b1c, 0xfb4ad7c1, 0x73c0447f, 0xa7db5328, 0xbe14ad39, 0xd3422403, 0x97d8119a, 0x58d52958, 0xfc1715fe, 0xb15c27cf, 0x0001db } }, { { 0x3f3e34d2, 0x21ae6909, 0x697cf9ba, 0xb0459709, 0x62debc60, 0x4a44d5f1, 0xa9540847, 0x69217928, 0x5ad55ec4, 0xfa0334e4, 0xc7f2757e, 0x57aafd03, 0x500be81a, 0x79b863f9, 0x90da7151, 0x312b3fdc, 0x0001c8 }, { 0xf243e8c3, 0x7a299248, 0x1a7d8fc4, 0x6bff0087, 0x187a5e2d, 0x991eb718, 0xee70fc8, 0x1e1e231d, 0xc6006f06, 0xfb1209f0, 0x6211c382, 0x262883e5, 0x1d58afb6, 0x805d45e0, 0x6533a5d0, 0x76a45944, 0x000022 }, { 0x2dd1ae9f, 0x58f5c3f1, 0xe4cb529, 0x8b06027d, 0x9e8b53a2, 0x9df47594, 0x8b501e3a, 0x2472063d, 0xfc9abaee, 0xccc68004, 0x88804f33, 0x3e564014, 0xf23bffc2, 0x42cb5db7, 0x6f14448d, 0xb39604e7, 0x0000b3 } }, { { 0xe77f54f, 0x1cc9b226, 0xd21304cb, 0xa06eb37b, 0x4bf5018b, 0x7233fc31, 0x4e976b78, 0x8362e8c8, 0xa6acbef4, 0x4e2cde00, 0x7088fa27, 0xc545a59, 0x7d0eafd8, 0xf6806d18, 0x41846494, 0x40f03401, 0x000198 }, { 0x3e1c4c00, 0x42a7520, 0x520e97c5, 0xde2b5517, 0x37c9ca07, 0x1fadd898, 0x5d95bb85, 0xa90ca8a9, 0x3545f832, 0x56a06d2b, 0x49608b0a, 0x91f77b33, 0xcccf071d, 0x73473978, 0x615d87ce, 0xad24c225, 0x000014 }, { 0x24ee7bb4, 0x56442ea5, 0xcdadf665, 0xbecccdc2, 0x56baac3c, 0x15052bbd, 0x3f2c0b3c, 0xc648ffc2, 0x59c6a163, 0xba700304, 0xfa2c0967, 0x36581b32, 0xd508d04b, 0xac03fe5c, 0x6c907136, 0x3ec13cf1, 0x000150 } }, { { 0xa2a7346e, 0x7db3ba8c, 0x742a2e86, 0xa226a3b3, 0xda91ccdc, 0x29c5c0d9, 0x4e6cf8f4, 0x7f98d5f2, 0x77c21a7d, 0x75d3ff7b, 0x8281c950, 0x98d7255a, 0x98e3b273, 0xbf4dc790, 0x2fda0bdb, 0x8ef341b6, 0x000062 }, { 0x820ced8f, 0x12ac6026, 0x6ba7aaa9, 0xc9fe3994, 0x2878f181, 0xe2d5df90, 0xa1331d1c, 0x3836c4fb, 0x9d4f00d7, 0x61abe3c5, 0x9da44059, 0x4defa7c, 0x600c9388, 0x8ddb1a65, 0x35e409d9, 0x8562a633, 0x000145 }, { 0xad67aa12, 0x95020b43, 0xf9532562, 0xb16686cc, 0x36b34220, 0x6678fde4, 0xe0c0d3b1, 0xc692bf58, 0x21bd613c, 0x120d9568, 0xf11d8b1, 0x39c207b1, 0xda733a0e, 0xb18ec29b, 0xd5bef7b9, 0xe98abefe, 0x00009d } }, { { 0x2a8cb9ba, 0xba875051, 0xf66eb99b, 0x851a79fc, 0x7dd5ddda, 0x3e10c478, 0xd3b2b1d0, 0xeb4d44b0, 0x2279c562, 0x478910c9, 0x83007947, 0x3dc87b28, 0xbab8f79b, 0xd04a6475, 0x5a03cecb, 0x742ad5c2, 0x0000e6 }, { 0x2cb86470, 0x3a26023c, 0x567b715, 0x9cb29dec, 0x76aebc92, 0x5489d5b2, 0x4c1892ee, 0x91900810, 0x30c799be, 0xc2176745, 0xd8a7691, 0xb5a12eb8, 0x4e276160, 0x182ba135, 0x182a6ac4, 0x7a8416eb, 0x0000ce }, { 0x6c9f57d0, 0x4ca1b437, 0x45d4e031, 0xb3aee7e3, 0x49e8900d, 0xf9a797d7, 0x48f682ab, 0x808a1bcf, 0xf0700d09, 0x1f6ae1fd, 0x7de80f55, 0xa37f1ddb, 0x99cfcc1a, 0x38a71ea5, 0x8c67562a, 0xaff0c650, 0x000141 } }, { { 0x825b1880, 0xe2d7f6cd, 0xa975f746, 0x18afae21, 0x6fa88561, 0x92ac79d0, 0x6b77eead, 0xdf7e59ce, 0xf56fc66b, 0x2f06fc5f, 0xf4e9f7e, 0x33182e2f, 0x4ff2f007, 0xbfe98e06, 0xf5975686, 0x39e3351e, 0x000164 }, { 0xf7c7c648, 0xbdcbf1a6, 0x61b07e82, 0x64a91c52, 0x77fbcf8a, 0xa2e36329, 0x14260719, 0xc1022ac2, 0xe9df8091, 0x98f25ef4, 0xec535a33, 0xf354e4dd, 0x4de719a3, 0x4ec237d4, 0xa7707a9b, 0x597c2c1c, 0x000142 }, { 0x3dba3a48, 0x35f2111a, 0x9911438, 0xef4ee07a, 0x608cef21, 0x9974a030, 0xd4ec6db1, 0x45a25fb1, 0xe3916bb4, 0xa769c992, 0x91153625, 0xe02c3ec3, 0xc06e5be, 0x5d5507c7, 0x2b6326a7, 0x1413b0c, 0x0001ec } } }, { { { 0x52bc8699, 0x7480318, 0x875aa7ad, 0x8a72b69a, 0x968b3fda, 0x668df866, 0xe52a3c7f, 0x5ef403f9, 0x97787b73, 0x56b2eca7, 0xb1f97780, 0x88b6b50a, 0xa31ee375, 0xc375ee7b, 0xed91062, 0xa73568e6, 0x00004c }, { 0xac3a2312, 0x91bef1b7, 0x4803952b, 0x201b5e03, 0x72c23db6, 0xd0c38114, 0xff6f01b9, 0x9a73e6b6, 0x6e54891d, 0xf442b7a3, 0xed0d959c, 0x4bfb2ee1, 0xc9f0f6c9, 0xcb7d7de7, 0xda1fa175, 0xfe87a799, 0x00004c }, { 0xb53cecb3, 0x8e552a3e, 0x2cbbfa35, 0x40738362, 0x7e598ef9, 0xe1d421a0, 0xeb92323f, 0x66af6ad5, 0x40912449, 0x30c11e30, 0x94fce52, 0x53b18d14, 0x359ee2ed, 0xa1bd4cd7, 0xc01cfd28, 0x605f2fda, 0x00013b } }, { { 0x7e3bd874, 0x3534b0d4, 0x947babc, 0xd9d76f77, 0xf0aab704, 0x14242c37, 0xff65d8fd, 0x3aac9ec4, 0x854e3f33, 0x7379bf5f, 0x6ede8323, 0x86f32a74, 0xc88ee055, 0xafee1ac1, 0x4790da2b, 0xc4f93b65, 0x00009b }, { 0xd4225cb0, 0x634c66a8, 0x5beccb5c, 0x1b3162d4, 0xb443e138, 0xd1b58277, 0xe352985e, 0x4a005b40, 0x73b00c2a, 0x55e93f22, 0xa776edf, 0xa53c4971, 0x5bb131d, 0xc34577a9, 0x6df8a15, 0x4c60101b, 0x00019b }, { 0xfdb15f1, 0x30d959d6, 0x1c54cafd, 0xff8912a2, 0x9e7b1c08, 0x99476b2, 0xe754bb08, 0x4e02142c, 0xccabab4d, 0xe960620f, 0xd37f8dc5, 0xfee19eb, 0x33e4212, 0x5d672deb, 0xec32fe96, 0xb2d9c083, 0x00004b } }, { { 0x8e2c2693, 0x538311fc, 0x32a62ce4, 0x9c35897c, 0xbbf9489, 0xb6d1b116, 0xf5172e4b, 0xea200b8a, 0x73ef5583, 0x87523ce7, 0x7ad4785b, 0x499f7483, 0x9d00295a, 0xc6f6e269, 0xb753e5ec, 0x1b43c086, 0x0000d4 }, { 0x6cb3cc2f, 0x4f655894, 0x470050e2, 0xe6d46bea, 0x4c8f6076, 0x7637a349, 0x4ed97d16, 0x3436184d, 0x5c95ea81, 0xa90aae67, 0x1e4dd6db, 0x3e51919e, 0xe6beb1aa, 0x9927d50d, 0x83c81559, 0x6feede54, 0x0000cc }, { 0x12e1a004, 0x4b012cef, 0x4ab7e6f, 0xf2fa35e3, 0x556033b7, 0xee1c1727, 0x84478d35, 0xf83fb68f, 0xe72cce26, 0x791170c5, 0xd1ce009f, 0x662b5910, 0x48a970af, 0xc976fa91, 0x3258904f, 0xfc69908a, 0x000021 } }, { { 0x323ecc08, 0xcd7730f7, 0x2df471ec, 0x43888d13, 0x64164a17, 0x8b63b530, 0xee497efb, 0xfffdbd4f, 0x71109759, 0x5c3b979a, 0xb6a980e9, 0x444c9180, 0xdb2381d4, 0x82c8a00c, 0x5ae70bec, 0xa0f4c2a, 0x00019e }, { 0xceb7837e, 0xdda1b3e2, 0x6986101b, 0x5bf1ec27, 0xba1a6cc2, 0x8a18dd6b, 0xcb8c88e1, 0xf5600786, 0xf8df43ec, 0xfb5b8833, 0xf31c4257, 0xd0d9cbc8, 0x38eb6b3d, 0xd4452f2c, 0x40537ad0, 0xfdcc6d55, 0x0000ad }, { 0xcb15a3e, 0x1de3a840, 0xd6e47098, 0xe867b2b7, 0x95ec28de, 0x6df7eda9, 0xf72c90bc, 0xc5f26e4e, 0x41a9d5ec, 0x64f4a8db, 0xce2ee3ad, 0xd4c63a03, 0xf0862b16, 0x5e19aff5, 0xc0c4706d, 0xf82eeefd, 0x00013a } }, { { 0x20b836a3, 0xcef54e82, 0x38705ac6, 0xbe0840a6, 0xdcaeb735, 0xa78008bb, 0x7a590fab, 0x374376, 0x58ec0763, 0x64ddebc, 0x44651c87, 0x6a2f8cef, 0xba67f9e3, 0x7d45006b, 0x31a4001c, 0xb3d59e1, 0x0000cd }, { 0xf2ded656, 0x8abacc7f, 0xc7f64616, 0x76bc7b6f, 0x2a32d09, 0x5a6b3b38, 0x5dfb208d, 0x3b1b0076, 0x748a3862, 0xb117ecd0, 0x3d07ebf, 0x42c093f8, 0x8ebb09af, 0xa3718fec, 0x7e259ddb, 0x453d695a, 0x0000f3 }, { 0x80a333e1, 0x5b70b437, 0x42f10f2f, 0x58ef9fc7, 0x27a88f0, 0x7962d3b4, 0xb582a0ea, 0xcff1b7b2, 0xa5bccf0f, 0xf51ebd68, 0x668a5755, 0x3d174f1c, 0x2a1f8600, 0x208bd83e, 0xda32e841, 0xf824b517, 0x0000ed } }, { { 0x6b5c344a, 0xd8af0372, 0x2fb16efb, 0xe1e5e07d, 0xb8136eb0, 0xa18cae60, 0xf96fd61a, 0x5e55a5ac, 0xa2e2b4ae, 0xf60ee113, 0x1ec811ca, 0x82240b83, 0xc2f8d0c4, 0x8b1bf80b, 0x20a26ea9, 0x192a61dc, 0x00011c }, { 0xb6481b4a, 0xba212e09, 0x5a76e81b, 0x1be5f47, 0xe4d29939, 0xddce6ba6, 0xeabedadc, 0xb96744, 0x1fd9940e, 0x86daa88d, 0x229ed43a, 0xc0481e32, 0x3bde595a, 0xa50c98e2, 0x3b824d70, 0x8ce8ba2b, 0x0001cb }, { 0xdb455b02, 0x399bf59f, 0x9769697d, 0x8c61672c, 0xeca4370f, 0x8d1cd145, 0xb2b35b08, 0xa3ac8f4b, 0x2a5e0d14, 0xc0e1ce9c, 0xdcbb3722, 0x8c689a58, 0xa7f59298, 0x8476e9e6, 0x47394f33, 0xc6ad96a9, 0x00000e } }, { { 0x749685bd, 0x9c41a1c, 0x6aecf144, 0xbd64e7e7, 0xd7987db8, 0x6c89e382, 0xa93d7c1e, 0x1ddecf33, 0xc973ff0d, 0x189d7ffd, 0x20eff3e5, 0x81166d87, 0xe3fba6f6, 0xf753271c, 0xe811da2f, 0xe28f40ac, 0x0000e7 }, { 0x80eab378, 0xccf74e46, 0xafe4ffb, 0xeb035106, 0xad902f6b, 0xffcb90a, 0xf83f052d, 0x9641287c, 0x45c1cf16, 0x2916429b, 0x64f64d2a, 0x57e93f2, 0x771fd51, 0x5fc31a1c, 0xf0f95768, 0x520c031f, 0x000081 }, { 0x431d83be, 0xbc26d096, 0xcd1eece, 0x6bb5e4a8, 0xae2ba597, 0x996e73de, 0x943857fc, 0xecb123a7, 0x4e9ed9ea, 0xe41ace99, 0x49a36a43, 0xa77e9dfd, 0xf0e9c682, 0x98e10d52, 0xaa2d23c, 0xeaa01a11, 0x0001e8 } }, { { 0xb0086f9e, 0x31678a6e, 0x5825d71f, 0xf065e1ef, 0x19a3660a, 0x545031e6, 0x121e4f2e, 0x972d12e2, 0x2f8262e8, 0x4ce1baff, 0x4e3373f1, 0xe3489f20, 0x6646c9fa, 0x678aa8d8, 0xf8bc2830, 0xc02ff920, 0x000016 }, { 0x75c5c318, 0x81dadf04, 0xe1a5a2fa, 0xeed6b3e6, 0x833ef8ae, 0x100a18d9, 0xfb564048, 0xa981a867, 0x48103da4, 0xfe06bda0, 0x7d3aa4e6, 0x3c180f99, 0x121bd633, 0x591454ab, 0x12f35fc, 0xc92dd3bb, 0x000087 }, { 0xad5f0529, 0xe6c430be, 0xfcee0422, 0xc50189c, 0x16c31fe0, 0xa323838c, 0xc34216f0, 0x42959423, 0x69a1c82e, 0x788dc03a, 0x2fc1a018, 0xf9299ab5, 0x2034eb8d, 0x9b00a804, 0xf7810c3d, 0x21b7b68e, 0x0000c7 } }, { { 0xbae1e31d, 0x40943df5, 0x233fa76b, 0xfdd33bdb, 0x2fa08a8, 0xc1b2413e, 0xbacbd213, 0x7931495b, 0xcd2b7eb7, 0x37ea66a1, 0x10017009, 0xa0881473, 0x8211e86a, 0xf2760371, 0x914a1bf2, 0x268c71ca, 0x00002c }, { 0x75331b44, 0x69c49d21, 0xd5addd16, 0x5f2a005c, 0xc5e20944, 0xda0d19f8, 0x72306852, 0x270dc27, 0x5d08fc90, 0xc3eb207f, 0xae96d796, 0x87f71d04, 0xdc757548, 0xffc716cb, 0xf76fb8a2, 0xcfd4d2a5, 0x000010 }, { 0x65e4af3f, 0xfe7b9ddf, 0x5c232ae9, 0x3edc1d29, 0x9f84b0dc, 0xb8122c5e, 0x27a1a7a1, 0x6e659e32, 0x27c52c5e, 0x150c46a8, 0x8b8cbfe3, 0xea43b8e8, 0xbe6e81e7, 0x61f7edd8, 0x8011f5c7, 0x8a2a85f5, 0x000055 } }, { { 0xe4d9ba17, 0xd22eccf7, 0xbff51b66, 0xff49cfb4, 0x8e9f24a2, 0x2b2b7543, 0xa45dafe2, 0x6dbbb321, 0xcb0cc8ae, 0x80450e4e, 0x9a016575, 0x70c6e655, 0xe63cc324, 0x369456cc, 0x82263d37, 0x6bd7ed78, 0x000146 }, { 0xa42c244e, 0x33862807, 0x45d120ac, 0xd7692952, 0xac705eff, 0x100faa27, 0xd8340c1, 0xcf82ac7a, 0xd1d8e9c, 0xf3aa8380, 0xe736e7db, 0xf07145e3, 0x38431b36, 0x995a4232, 0xd0fabb07, 0xb02e3ae, 0x000059 }, { 0xa9206cdb, 0x5382f07a, 0x68f6165c, 0x4059c72f, 0x57b00cba, 0x89124f7d, 0xf93125f2, 0x38e906c8, 0xc4ef8426, 0xfaab84cd, 0x3ccd3dd, 0xa7686400, 0x7f912e9b, 0xb9d04396, 0x98ac3ddb, 0x64b07b36, 0x00008d } }, { { 0x257f3273, 0xc5535139, 0x2e802c50, 0x76da8c49, 0x6e08f711, 0x8e561348, 0x18b2853, 0x7ba4753d, 0x102a03b9, 0x2e47875a, 0xa2562a48, 0xa8aff04d, 0xe063d773, 0x3a712c2c, 0x9a41b599, 0x46fdd21b, 0x0000a7 }, { 0xb6235566, 0x2b27e933, 0xcc070cf5, 0x3e333b2, 0xb5b45202, 0xf5e0b4f0, 0x5bdc3f3b, 0xa69f294e, 0x25478cef, 0x491fd4f8, 0xd036bc22, 0x255b0fd4, 0xd1b8085c, 0x40c576a2, 0xfb4ea4bd, 0x90c42f2c, 0x0000e2 }, { 0xf5fb87e5, 0x50914629, 0xdb81f047, 0x135db7d8, 0x57e06292, 0x72d18b52, 0x1588efdd, 0x5a299e55, 0x7a3a9b52, 0xc418fa10, 0x8495bb28, 0xdd91f780, 0x8e8f083, 0x7414f0a2, 0x8523ce5, 0xaa9e13b7, 0x0000aa } }, { { 0x47536e45, 0x81e2b469, 0x5c201405, 0x59770e47, 0x2d13f8dd, 0xb52c2b9e, 0x6f41be14, 0xe33eb9a, 0xb0f40fd0, 0x45e8e2a0, 0x64b3bab4, 0xfcdc9599, 0x15ff503c, 0x9037a7d3, 0x503cbd8b, 0xa99969dd, 0x0000fd }, { 0x52b97ced, 0xe6b4ef86, 0x770f3b50, 0x9787f7cc, 0x38110133, 0xb6d150c, 0xcd58e55e, 0xd3fe081a, 0x29f834dc, 0xfe3c50b1, 0xacbe9be7, 0x535459e1, 0xce5136b5, 0xceb3a965, 0x24c72b52, 0xf23280a0, 0x000058 }, { 0x9b7e4be8, 0xc20dd945, 0xd0ef9f9, 0x87b42efb, 0x1bbcbd30, 0xeabd133c, 0x7f7e6b3b, 0xbbc594a, 0x6a9f3eaa, 0xbf6cdaf1, 0x654f6cc7, 0x980cf7f7, 0x2ea64e0, 0xef7d0ba8, 0xf63233d0, 0xd6575bc7, 0x000044 } }, { { 0x9f400dc2, 0x7c64575a, 0x88fedbdd, 0xf46147c9, 0xda4d1807, 0xe4aa1b85, 0x45702770, 0x9b20c963, 0x9d14c0de, 0x1ed49070, 0x68440bdd, 0xe1bc35ab, 0x56e24f4e, 0xa04db609, 0x5ef6146c, 0x30d7ebf9, 0x00015a }, { 0x6f51e8a3, 0x3e4b0ff3, 0x26ea2d09, 0x7ac011ec, 0xe3235e67, 0xb078b703, 0x0c861a, 0x2944e225, 0x670b065d, 0xed3c6313, 0x3163482d, 0x16592e5e, 0xa1c78f4d, 0x5d3a842c, 0xa73ac913, 0x77410445, 0x000073 }, { 0x9331e426, 0xc29fed94, 0xa1c960c4, 0x582eaeae, 0xfe93871c, 0xf2cdc70d, 0xb1ffcc47, 0xf386f416, 0x2f4aa7cd, 0xc1a07aa, 0xee65c38b, 0x60ddcf8d, 0x3b24f5a2, 0x3837c160, 0x17cb780b, 0x577f5eca, 0x0001da } }, { { 0xdec379d1, 0x67d95daa, 0xe283ca07, 0xd40e6b9a, 0xc6b7ad46, 0x709f791, 0x7398efb5, 0x511c822a, 0x86627cb0, 0xd6cde7ab, 0x4cd84497, 0xa6b8ab8, 0x1bd01663, 0x4f3d1ab2, 0x4dd7c3, 0x660946aa, 0x0000a3 }, { 0x1acc0957, 0xdb0c967c, 0xfb342c00, 0x26db3936, 0xda8579b3, 0xbc36e159, 0xdd134a27, 0xb022b779, 0xbd5e6168, 0xefb2b238, 0x76edf3e7, 0x1f394889, 0x54c97a67, 0x30244d1e, 0x5fbac05f, 0xa3818d9, 0x000062 }, { 0xe2997c3d, 0xfedb41ca, 0x7e56eab2, 0xfedffce, 0x701c6299, 0x457ecaeb, 0x784d8c27, 0x4955cb1e, 0x168f11de, 0x545a1f53, 0x91b6b58f, 0x68a22579, 0xf52605e0, 0x8e50acb8, 0xcd146750, 0xa2de641e, 0x000189 } }, { { 0x9ae2102e, 0x6fac4b30, 0x2b54ec4, 0x92349a21, 0x6e7cc7e4, 0x99957c40, 0xa7c6314c, 0x965ec7c5, 0x6aafd7aa, 0xb66f8669, 0x2241a9b2, 0x12b056d7, 0xac1b425f, 0x42429f4, 0x6422e307, 0xca4ba39b, 0x000055 }, { 0x126200d9, 0xdc6a3088, 0x1ab66a7e, 0x851eed08, 0x43810453, 0x6fc6b832, 0xd9f6814c, 0x12408b83, 0x9a3ac014, 0x88e2fcbf, 0x9381add5, 0xcef29f5f, 0x401817e4, 0x2a06c736, 0x26c4312a, 0xcc82283b, 0x00003e }, { 0x7ebc88f3, 0x849d3754, 0x84b8809b, 0xa68edb4f, 0x17901755, 0xd3808a8c, 0xfd1bf7e2, 0x84f1197, 0xcedce09, 0xf8d01258, 0x7a631a0b, 0xebfeddd4, 0xed02c292, 0xbff64d9a, 0x45e1a0e1, 0xf3ab37ea, 0x000192 } } }, { { { 0xce4d2171, 0x797e6952, 0xadb6bf83, 0x8e6f1ce7, 0xfc2aa669, 0x92c2cb26, 0x30f342dc, 0x82f5cc5c, 0xe73428d3, 0xde085986, 0x6cc7bb30, 0x6b103642, 0xf178328, 0x71aab4be, 0x7148a4e1, 0xbf770b48, 0x00002f }, { 0xa6b598a2, 0x40f0cb6, 0x4094e095, 0xaee829eb, 0x9284fd7b, 0x6ee83369, 0x3b357feb, 0xea0c822, 0x21432f68, 0xfbb08f4d, 0x91917de5, 0xa6ad0496, 0x64f0147, 0x70e9e6ec, 0x2817b48e, 0xfe427e7c, 0x0001c3 }, { 0x20abe4eb, 0x6d38c625, 0xbe9099cd, 0x4e18bb7f, 0x49e417c4, 0xca73e97e, 0x29c537d7, 0xc0c66827, 0xaba6b293, 0x6a8b96ee, 0xbfce66e5, 0x290196d2, 0xaaace89, 0x1216cef0, 0x1be70ad, 0x3f295940, 0x000034 } }, { { 0xd6995ff3, 0xa617a04b, 0x1add580b, 0x3b0dcdc0, 0x11e22370, 0xf157597c, 0xdc1ba023, 0xe10b8cc1, 0x49d458dd, 0xcf42e7, 0x605144cc, 0x923365a3, 0xc35abaa4, 0x8f337cb9, 0x5c02c539, 0x76aba0aa, 0x0000c4 }, { 0x1a88330c, 0x681eb5d9, 0x4210a3a2, 0x6ea869b3, 0x96ba9302, 0x85511516, 0xa0bcf990, 0x705db08, 0x1d97dfc0, 0xb0f107c0, 0x740402c0, 0x79112708, 0x6e0584ec, 0x2e6b32f3, 0xd6d526e4, 0xc4c20a51, 0x0000fa }, { 0x4c2c50cc, 0x9ff1e5d0, 0x455247ab, 0xc40c16d9, 0x6fe323e7, 0xd6ec1c73, 0xcbb0119d, 0x7c13ad89, 0x4ca5890b, 0x25b0ef7c, 0xa78eb0ad, 0xf9851c36, 0x9d5cbdf, 0xf440da86, 0xb12749b9, 0x3c5b4dff, 0x00014e } }, { { 0x1317544a, 0xe6d9c795, 0xe3337b2, 0x77c442ab, 0xeeabb539, 0x79392afd, 0xf84749dc, 0xf0ba459c, 0xd5536930, 0xf4bb69e6, 0xe7f67316, 0xa3697165, 0x3fc3f6fe, 0x4f4ff663, 0xedd7d9e6, 0xddbb9af4, 0x0000c3 }, { 0x8aad1520, 0x43554394, 0xe503aee8, 0x414003bb, 0xa79486ee, 0xba74146b, 0x1e09a7a5, 0xb7616fc9, 0xd9aa2719, 0x790c326c, 0x4845671e, 0xd57f227c, 0x950c7499, 0xffc45434, 0xd63819b3, 0x519c6d07, 0x00006e }, { 0xbec67d4, 0xf8ee7911, 0x1fa52827, 0x3400bcd2, 0x394f8918, 0xba61be8c, 0x3c68ee5e, 0xfd2b4f7, 0x1a963728, 0x32742d0f, 0xbd1d6d0b, 0xc64b4d11, 0x4a1049f1, 0x240d2c16, 0xea62ad25, 0x88cd4646, 0x00016c } }, { { 0x1de68252, 0xa77b7e6b, 0xfa763fa8, 0x130249d0, 0x8faafa46, 0x61e574c6, 0x8d6ac347, 0xed2e5411, 0x1cbb5159, 0x27fd4c9b, 0x11539cfa, 0x185a32eb, 0xdc650090, 0x4a1c4fe3, 0xdd6f0100, 0x9b238359, 0x000133 }, { 0xd3fe4b5, 0x7b1f4efd, 0x6229f8c, 0x36d00a9c, 0xe1c3a651, 0xaffeb06a, 0xf6ca1d5d, 0x3f20d8a4, 0x7a462bc0, 0x8502895d, 0x964bffb7, 0x8ab02bc9, 0xe959c45f, 0x21ad6668, 0xb96a2b0c, 0x83847597, 0x0000c7 }, { 0x4f91d346, 0x7ecc8af3, 0x65fcf471, 0xb2b21752, 0x509f610c, 0x33415be8, 0xdbce58db, 0xdefc5fb5, 0x3cf438d2, 0x986fcc63, 0xc3acae2e, 0x8e3c2d06, 0x26d9c13, 0xa47c93d6, 0xa4e89c56, 0x8b8f4d99, 0x0001f5 } }, { { 0xb0105be9, 0x7523ced7, 0xb891aa20, 0xdd2706eb, 0x82586eda, 0xa98a74fc, 0x477efe05, 0x9ceaced3, 0xa0dbd88b, 0x482eeee8, 0x1e5ddb4e, 0x6d4f2dff, 0x29bb6bfc, 0x1263eb46, 0x52cc9166, 0x4b0b1d4f, 0x00010a }, { 0x6db41aa8, 0x5aabf584, 0x5f86252b, 0xd72f7e30, 0xc8035ce9, 0xfe57e210, 0xf6f5d28d, 0x9b9e9a40, 0xf4231a00, 0xb891fbf1, 0x82add9c6, 0xe8abb089, 0xf483894f, 0x1f95c05d, 0x6bbdd5b3, 0x696adea0, 0x000077 }, { 0xddf42ae0, 0xacf526fa, 0x5794ccba, 0xd52b30a1, 0xeae41c9a, 0x729e9fc3, 0xf066b8f5, 0x4d501f47, 0x217d405d, 0x72d503d6, 0x9aff0228, 0xd1b9b20e, 0x6be7fba1, 0x81deeaba, 0x43b88cfb, 0x6f4eeb7c, 0x00003b } }, { { 0x8150a314, 0x794a1cd1, 0xfabcf749, 0xf676c172, 0x70eec524, 0x217cccbc, 0xd2f8a014, 0x2648e5e2, 0x57702000, 0x6f0b72d8, 0x9ba143cf, 0xd478c146, 0xc432e60, 0x4b564ec4, 0x54e328c1, 0xc64d751, 0x000029 }, { 0xd8ef37b9, 0x1b60a2a8, 0xe0b8dcdd, 0xe9468caf, 0x7f8a9be9, 0x4ec7650d, 0x8960756f, 0x4c715fb3, 0xfb40bd08, 0x6af11ca4, 0x9dff967f, 0x1058b56a, 0x9442eb44, 0x5ff3f2e6, 0x14620fd5, 0x804dd78e, 0x000122 }, { 0xc3daeb1e, 0x472af1eb, 0x34491498, 0xb5dc4dd3, 0x28fdf4f0, 0x9d3c9936, 0x32cd138e, 0x9c6e4db6, 0x4b678e7f, 0xb0098a61, 0xea101e3a, 0x6fe0749b, 0xb133aa53, 0xe43c4dcc, 0x4431b2d0, 0x58783b24, 0x000118 } }, { { 0x1f4ed8f7, 0x25908472, 0x49a71f9, 0xab6a5f95, 0x43184686, 0x9acc4e1a, 0x897c453b, 0x3b22b07f, 0xbac54e38, 0xd3d39838, 0xc15ff694, 0x1f032cba, 0x73b1dbf1, 0xa079fd1b, 0xa00d09f4, 0xafe2efb3, 0x000168 }, { 0xaa702047, 0xabf9c50a, 0xe6ca1635, 0x9d16dfff, 0x1fce4ea1, 0x37ada5c1, 0xe48d44ec, 0x72ff1572, 0xabe14252, 0xb4d68997, 0x4ac9430a, 0x3e1ef3fd, 0xb8f42856, 0xfa08fc3a, 0x7ac35638, 0x72a2f66f, 0x00002e }, { 0x56af7fc1, 0x428b039, 0xfd494f23, 0xd5e553ba, 0x25375135, 0x17f49f7a, 0xa3c6a5f7, 0x59dc373b, 0x9f1037fd, 0xcd33932d, 0x7772dba5, 0x58166bd4, 0x664e8c59, 0x79741c91, 0x287a20ce, 0x915071f0, 0x0001b0 } }, { { 0xcdf0274e, 0x6255e78f, 0xf2cf8446, 0xf6e3491e, 0xc32455c8, 0xb00ae46b, 0x12e0775c, 0xaefc172f, 0xb7818951, 0x85457758, 0x51ad5006, 0xdacc26f1, 0x38a305fe, 0x35ab10bc, 0x3b68c8e8, 0x936a42dd, 0x0001e6 }, { 0x34ff0d4e, 0x7a069776, 0x890c206, 0x908269ae, 0x3f6ab54e, 0xe44ff688, 0xcdfb370d, 0xabb6f645, 0x121b74e5, 0x81c5378, 0xca99612d, 0xbb927e7e, 0x8fe9d97f, 0xdc6340b1, 0x448721a1, 0x47e5bb95, 0x0001cf }, { 0xab1fa79f, 0x37eacb93, 0x454b273b, 0x6c08f1d2, 0x3b094ecc, 0xaed6c9d4, 0x6f0a43ca, 0x3539c684, 0x6b07779e, 0x36922621, 0x27471d4b, 0xd65fd34a, 0xb700edb0, 0xd44c70ab, 0xe247b96e, 0x8a0c43a, 0x000029 } }, { { 0x68a1587e, 0x2f8a09fb, 0x138b2d2f, 0x63615f1a, 0xc6882b51, 0x5ce1a6e5, 0x55accaca, 0x87da48c9, 0x8952e2d3, 0xed3d3c12, 0xb27979d1, 0xdaaef48, 0xfe56fb48, 0xcda7a17c, 0x6a6c4cc8, 0xa353170, 0x000108 }, { 0x6588711a, 0x84a87409, 0x2661357e, 0xc221b160, 0x88e2b3c4, 0xa73aa321, 0xf78f7be, 0xf7db112a, 0xa7e2c603, 0x7c552c0, 0xc5785fcc, 0x89307f94, 0xd42380a3, 0x6ea781d3, 0x790b5eba, 0x43f27182, 0x0000a6 }, { 0x871712b1, 0x1bae3024, 0xe60b705e, 0xeeba7093, 0x3d8ddc6a, 0x6824235e, 0xb7eea602, 0x898f4cd4, 0x109183f5, 0xd5db6a0d, 0x501ecfdd, 0x8271299d, 0x941fc3d5, 0x87c3c664, 0x8433d3a9, 0xd96b0cd7, 0x0000ae } }, { { 0xf93f7cc1, 0x9479c15c, 0x97f8bff9, 0x8f88cbed, 0x287d2b6, 0x8233395e, 0x79459e28, 0xcc336674, 0x19d9bac0, 0xcdf757af, 0x8514e7d7, 0xecf65ead, 0xe82e3ba9, 0xebb625e1, 0x672bb7b1, 0xf30137f9, 0x00011d }, { 0xfee11675, 0x67f9628a, 0x48de6564, 0x5caea0ff, 0xa4981cc6, 0xb0e5e6ca, 0xba7c19e0, 0xabf94f43, 0x5fda21f1, 0x5bbbb670, 0x1e3e839f, 0x869d3d4e, 0x4ab20a27, 0xc9b70dfa, 0x98948197, 0x3cc4c90a, 0x0000b7 }, { 0xa8162f05, 0x687ad89e, 0x8c90809f, 0x6dc32e38, 0x704a6abb, 0xaba90a05, 0x6416e634, 0x44cbc45f, 0x753b6917, 0xdce67fb3, 0x1164424a, 0x7cf0c004, 0x89c898f1, 0x65d44b85, 0xa6111567, 0x38935886, 0x000168 } }, { { 0x9fef43a0, 0x3912e5aa, 0x1c7836aa, 0xda5e7747, 0x8447afd2, 0xf5cfdd94, 0x7efd44db, 0x4a2d0a9f, 0xa65deee5, 0xf13a1951, 0x35eb6b17, 0xab5d0615, 0xdb051080, 0xbc20787e, 0x8937b632, 0xd2378288, 0x0001de }, { 0x910b8b68, 0x13192724, 0xee6563f0, 0x9766a695, 0xe6cb1c29, 0xf2bb437e, 0xd92bca35, 0x90f5611a, 0x5aaf95fa, 0x72a0fb49, 0x8ef25440, 0x1e067c04, 0x6235516d, 0xe41d4314, 0x6ce3e4d0, 0x543b3195, 0x000163 }, { 0x9d9fcb83, 0x7b422e34, 0xbf181344, 0xd2ec747e, 0x5bbf1db, 0xe46d6695, 0xecdb90f9, 0x60d09c46, 0x86470358, 0x18cfe3ce, 0x9766e4a2, 0xdff15bf6, 0xc66da54b, 0x32287ce1, 0x374a2ada, 0x4f306aca, 0x0001a2 } }, { { 0x3f331767, 0xe27b8312, 0x53bfcb66, 0x4eb86ee2, 0x10cca02b, 0x8d69b843, 0x3c2af422, 0xb54e76d0, 0x41482ad6, 0x7f13829d, 0x1366efaf, 0xe6130da6, 0xfcb5413f, 0x1c6a7072, 0x56231498, 0xa911887a, 0x000189 }, { 0xef345582, 0x9dac0e36, 0xfe08c434, 0x3efb5913, 0xc903dce2, 0x5494d0e8, 0xd8684bad, 0x93eb5386, 0x4a873cef, 0x49370902, 0x6504a156, 0xb61392cb, 0x37976f59, 0xb68ce5f9, 0xac1e65a3, 0xc0248286, 0x000077 }, { 0x1bb48760, 0xd84e97d0, 0xc234aac, 0x7a581d33, 0x246286a4, 0xe96b267c, 0x7ac60d04, 0xf298ae89, 0xe341abb5, 0x5439d2d8, 0xcfc0582d, 0x192a7712, 0xaae5cb80, 0x4abf62b3, 0xb10e7717, 0xd90912ca, 0x00000d } }, { { 0x8fc7ee50, 0x7c4707e7, 0xb970e72, 0x1d9b4ac8, 0x9114d9dc, 0x6cb6e5b6, 0xe911d0a9, 0xc3a59ab3, 0x4f226358, 0xf392fc6f, 0xc348a171, 0xd750e666, 0xaa87a57, 0xc3d475a5, 0x8c54a43b, 0x5a2d90e5, 0x000165 }, { 0x382c1308, 0xf221fd7, 0x9b838668, 0x151fbb7, 0xe26e54a6, 0xe0497b98, 0x3dd45001, 0xfe9d9540, 0x232e1f3a, 0x1e177cb0, 0x83423666, 0x40608e89, 0xc3b7f858, 0xc6ecb53, 0x17974da2, 0x8aaa7162, 0x000122 }, { 0x24c74ad5, 0xeaf84de7, 0x2d543b3e, 0x5035cb13, 0x90a3b328, 0x574df715, 0xa7bbf487, 0x24eceab5, 0x4e89671f, 0x99d1af4b, 0xd1d14afb, 0x5f9b78be, 0x35778793, 0x5131d1b1, 0x863afc60, 0xf93bfdfe, 0x0001bd } }, { { 0xd81d2a53, 0xaddd6f32, 0xfaa11add, 0xab146b1a, 0x43232801, 0xdf3fd989, 0xfe97e53f, 0x4907f498, 0x97cbcf7d, 0xdfcb8e8c, 0xbd68f8bc, 0x2b1aa036, 0xb6b8f255, 0x1f9ec4f5, 0x2034fb27, 0xc7b57967, 0x0000c8 }, { 0x37987efb, 0xfaf7d22e, 0x11f71fa8, 0x1e267226, 0xc63d4514, 0x6146273, 0x37bfb8c7, 0xd476dab, 0x1d474799, 0x40870baf, 0x80671761, 0x81a970e2, 0x98b3c070, 0x515ad818, 0x8978d3ba, 0xc6b164c, 0x0000d1 }, { 0xcb7bf692, 0xf56ee8c7, 0x27595409, 0xf6faff1b, 0x9c26f514, 0xf4a3a134, 0x1add088, 0x135683fe, 0x6cbe0eba, 0xc0cb8f8f, 0xc27c5827, 0xfe9d4de9, 0xb4afc6bf, 0x42b8a40, 0x3f4d459c, 0x6eda0045, 0x000104 } }, { { 0x751d5658, 0x5bfc910d, 0xf7f1c6a5, 0x927ac995, 0x17584659, 0xe561555b, 0x56fdb939, 0xbe2a5f96, 0x1defecc, 0x246192c5, 0xcc32d67b, 0xd51a5e89, 0x85465a82, 0x32949315, 0x9c63ed9, 0x8e9c6dcc, 0x000146 }, { 0x32f67452, 0x396cec9d, 0x57690fdc, 0xa10d4378, 0xf90a523d, 0x17373a5b, 0x19c3e564, 0xb88a7f0e, 0xff0cb2cf, 0x849e6d88, 0x195cb4a4, 0x48695130, 0x6ccd07c, 0x79321584, 0x1cdfb583, 0x93f28a68, 0x00002b }, { 0x7b1f2e68, 0xa70adb28, 0x612be5c8, 0x295fa3e8, 0xbdd51172, 0xac6e2bc3, 0x7067e9ab, 0xcec5f832, 0x959805b5, 0xbd77563f, 0xedcd53f9, 0x9c518d1f, 0xf08bd999, 0x3ed58cd2, 0x4137ff1d, 0xfd03dc34, 0x00005c } } }, { { { 0xfc6a418f, 0x8c0c9c54, 0x2b836aa2, 0x660407b1, 0x259d62d7, 0x179bfbda, 0xe5a6de68, 0xec5d9707, 0xa9642fc8, 0x506cddb9, 0xccb37c11, 0xf74d11b5, 0xb34c68a, 0x7bfa2943, 0x98eb9606, 0xebbe9498, 0x000099 }, { 0x4ab25980, 0x9bd34b6e, 0x4dfa348, 0xaac116b3, 0x8440a28f, 0xe9c21fc8, 0x9a019c64, 0x7595a4ed, 0x4bcfe5b4, 0x80f7cd4f, 0x20ee3762, 0x4f10c315, 0xa7397b25, 0xdf4bf904, 0xc20789dd, 0xf4c10f32, 0x0001ca }, { 0xd2f319c2, 0xc19320e8, 0x720eb49a, 0x33cba1fc, 0x804f3495, 0x870e33d3, 0x9ea72081, 0x4eae56f3, 0xf5fa5dbe, 0xd43be59d, 0xab550bd2, 0xe7ebcfa3, 0x84348b2d, 0x81a29127, 0x50b84bde, 0xb677310c, 0x00001f } }, { { 0xb385f297, 0x720f3a96, 0xc31dc757, 0x194c59ff, 0x80bd5b73, 0x74a52881, 0x380374a, 0x89321436, 0x737d03c9, 0x97cd933, 0xab9f98c5, 0xb0c52dbb, 0x95c613cb, 0x44997a35, 0xa148b0c5, 0x630654c, 0x000040 }, { 0xa7f069ee, 0xf661f57e, 0xd3a72a5f, 0xd8001e49, 0x6181ae5a, 0x3587c1b2, 0xf8e059b7, 0xaad3e26b, 0x3324897c, 0x1b59f6aa, 0x445df40d, 0xac2d524a, 0xe708c939, 0xd7322b77, 0xe04b600d, 0xba46b2d6, 0x00011b }, { 0x6a54863f, 0xfb96ee13, 0xf651e618, 0x3f7aa0c3, 0x13ffc107, 0x847e769b, 0x58877ae0, 0x3ebe9377, 0x1adaf610, 0x14d1c24e, 0x522af32f, 0x6c2e6a73, 0x7653fc1c, 0xca726065, 0xd34f9955, 0x3132dd9e, 0x000054 } }, { { 0x9856c396, 0x6ceb435f, 0x248e2596, 0xd4761c6e, 0xe3552834, 0xd4f9255d, 0x6d4b15b8, 0x14cf4b9d, 0x22cd6558, 0xf7c520a4, 0x85ccb665, 0xc5447a1e, 0x177646bb, 0x27ec393b, 0x87ab62a3, 0xc119bafd, 0x0001f5 }, { 0xe8e60750, 0xbef7ee95, 0x9069d8a6, 0x4eb3e4cf, 0x4b59c11, 0x38bbc9de, 0x92a7ea2c, 0xa589d7d2, 0x43e15633, 0x99e9e2d2, 0xb2e5fd6, 0xf5f9efb1, 0x218eef83, 0xfc0f562, 0xa9fb4285, 0xaca2dfb7, 0x000078 }, { 0x28b01c31, 0x7adeb75a, 0xacfbb98, 0x8053a6ac, 0xc653f4a, 0x18fad3be, 0x7c15d3b0, 0xb9b46cae, 0xa581ac53, 0x2a6f2d23, 0xdc2e1d8c, 0xb940e34d, 0x3e96d8fa, 0x25431832, 0x4cb99779, 0x5994ba27, 0x0001fc } }, { { 0x8ad404d8, 0x2389139e, 0xd5d95dc3, 0xe22ffb9d, 0xd963edbd, 0x8bb9663c, 0x511d5a95, 0xccc38eea, 0xde070699, 0xc0cbc4af, 0xf696d988, 0x8930ca98, 0x3c4a9af6, 0x985f37b8, 0x4998b2a6, 0x36877a8, 0x00015b }, { 0x9530fc9, 0xdefcab1f, 0x40fc550b, 0x4e769689, 0x7dedd4bc, 0xc49d1443, 0x33277521, 0x3e70c287, 0xbb3fcc84, 0x688f0f3e, 0x39aee8b1, 0x91ce112b, 0x74010271, 0x58d8f958, 0xe9ec4454, 0x13160578, 0x0000e1 }, { 0xfb9bb426, 0x15d229b7, 0xb582955f, 0xe60026d0, 0x7a42ed90, 0xbd47d937, 0xb1b834f6, 0xe55b5f44, 0xee173acf, 0xc6979e0d, 0x9cc10885, 0x60f8611, 0xd56d5f1f, 0xb3891125, 0x593b1a81, 0xcb0f3b47, 0x000062 } }, { { 0x6e582d55, 0x796712cd, 0xfb3418a0, 0x77bf5490, 0xd69c6a51, 0xe74c3d4e, 0xa5bc42f2, 0x5f88dd59, 0xf3ec971c, 0x91037926, 0x1c440598, 0x3716e0fc, 0xc4cd3b65, 0x9988dd97, 0x14d8865, 0x79ef546a, 0x000171 }, { 0x48e23229, 0xbe625c61, 0x88dbe282, 0xfbfcb26, 0xc683416, 0xb21bbc0, 0xe8eee7c1, 0x8b00efed, 0x70871416, 0x230ed27b, 0xc30568ab, 0xc3a935b3, 0xd8f9030f, 0xe9280156, 0xc5078570, 0xcc7ffa71, 0x0000cd }, { 0x5fbe0d61, 0xe7dc344f, 0xd158765, 0xe5a5febc, 0xa137d25, 0x2fb90171, 0xe187ea9f, 0x93b8cd9c, 0x90fbc389, 0xdd962797, 0x32c02f71, 0x20380ee9, 0xa8aaf2cd, 0xe2df72f5, 0x7c095c67, 0xc5beb766, 0x000182 } }, { { 0xe1fb3842, 0x370e3405, 0xf5c1e3c7, 0x5c86231c, 0xc4f748d3, 0x9d9f5bf2, 0x7ffd0ab2, 0xbf28ca2d, 0x59cccf0e, 0x4c4dbdf2, 0xa9864e48, 0x2da4a306, 0x4cc44092, 0x3c6796d7, 0xe526527c, 0x686448d4, 0x00018f }, { 0x5383a575, 0xb49cb094, 0xe3f5c8b4, 0x2b079c44, 0xd200ce70, 0x270a17aa, 0xd878bab4, 0xc0213574, 0x1f9281cb, 0x56ef637a, 0x487bafc4, 0xa0e9676b, 0x4e9be856, 0xc8ddbb3b, 0xbbe91a81, 0xc1b822b4, 0x00013d }, { 0x6c961895, 0x867e29db, 0x62361f87, 0x55a98c41, 0x97fd0560, 0x22928983, 0x89d27d79, 0xbd2e739d, 0x3dc565de, 0x847013ae, 0xef79f9f8, 0x26ef385a, 0x53686723, 0xb0f17021, 0x4e9b22ff, 0x668eaf6a, 0x000057 } }, { { 0x9ea7a83b, 0xabb90ea1, 0xd077da78, 0x8c3568d4, 0x6b275fa9, 0x8a0f6837, 0xb769bf9f, 0x8cecbaf3, 0x13c0a3e3, 0x4b3445bb, 0x1573f33f, 0x6854e9b0, 0x9e1aede4, 0x7c69ec5b, 0x246ce3af, 0x42f2c77, 0x0001d1 }, { 0x3f8c2c25, 0x5473b41c, 0x899a58e1, 0x98740765, 0x8f242e40, 0xe665573d, 0xb7a0a62e, 0xb8c50980, 0xcf2a856a, 0x52e9da8a, 0x87bba87d, 0x4d06b341, 0xb9626be3, 0x11176631, 0x4e1306ed, 0x35977253, 0x000125 }, { 0xebd7970e, 0xc89504c9, 0x158305d0, 0x588b86a1, 0xf01130c2, 0xac770151, 0x41c32bdd, 0xb7046b74, 0xdc97561b, 0x4708b0fe, 0x47890849, 0xd88e08eb, 0x2d38b521, 0x41f31d3b, 0xa746012e, 0x4f172ed5, 0x0001ac } }, { { 0xdab9eddd, 0x4e649593, 0xeb22609d, 0x131ffe07, 0x9734b1bf, 0x7f8c0487, 0x349814e6, 0xbb29a4eb, 0x444e6d44, 0x764fb62d, 0xe33d2cd1, 0x3a5093e1, 0xb866fb6b, 0x9aabe0a, 0xfa8ce495, 0x46ed1ffc, 0x000056 }, { 0x5f0fee6, 0xcb11994b, 0xcc9ae66, 0x91ef0e4f, 0x86b55394, 0x2414953f, 0x9d2e84e9, 0x6809277f, 0x53ceec0e, 0xb27ea932, 0x9beed347, 0xd72ce3eb, 0x5049e20a, 0x46c67723, 0x1331f548, 0xbaddd6d3, 0x0001c4 }, { 0xd1e38499, 0xb45dbb71, 0x66e8286d, 0x4674cdac, 0x39a686bd, 0xf6e97882, 0xa4d7e2f8, 0x27ffb62a, 0xa5a22140, 0xe43e2925, 0xc02916f5, 0x22ff11f3, 0xcd68366a, 0x94106fad, 0x3cbdae3c, 0x68a7977e, 0x00015b } }, { { 0x47cf0110, 0xae7547ee, 0xd515ee6, 0x3c81d069, 0x28c2a59, 0x51dcd2ed, 0x94e70252, 0xda47ce44, 0xa37c41e8, 0xe3c5a6cf, 0x3f9ed89b, 0x45fcb240, 0xb9d99ed1, 0xd7dcdf5c, 0xf0675421, 0x90f88b94, 0x0000fe }, { 0xe860e6c1, 0x9a44c5fd, 0x4c708e75, 0x3c3da114, 0xa9491be9, 0xff6bd226, 0x8d1b4f91, 0xe2f990ff, 0xc4cad8c, 0x10b9844b, 0x3ab57359, 0xe81b51cd, 0xba1eab74, 0xc9b51b85, 0xd06a04cd, 0x1728ff17, 0x0000db }, { 0x8c979004, 0xe5418914, 0xdd5b5541, 0xe8c11c55, 0x43ab142e, 0x53645ae2, 0x5c1c8442, 0x92cf3947, 0xca3c0d01, 0x773640f0, 0x8654a83, 0x3beb1e, 0x33636834, 0x3d7e9736, 0xb6b70676, 0x4c84dee1, 0x000137 } }, { { 0x6ff4a58a, 0xe21642fb, 0x71381b56, 0xed320701, 0x2922f849, 0x71faf901, 0xb8d0f221, 0xa8fc0649, 0xb243c370, 0xed55615a, 0xca811052, 0xc19ab33d, 0x4f2fc391, 0x5256a785, 0x7edafd9d, 0xb4a291fd, 0x00015c }, { 0x64e58f52, 0x7b56d579, 0xe084f14d, 0xeeedd342, 0xd16637ad, 0x75b60fd0, 0x88fa4055, 0x4e8e537f, 0xab9d8579, 0x8f87171b, 0xd7ca1e50, 0x19230c81, 0x50b0b855, 0xf7321f75, 0x3efd6dbe, 0x18d8f636, 0x00006d }, { 0x2820dc3, 0x6e8fa99f, 0x1d09f9c6, 0xf1f38026, 0xb17a3d28, 0xf59f0dfc, 0x1c230771, 0x20998551, 0x9c1385ae, 0x9e5ebb1d, 0x9ef59483, 0x892a6865, 0x731aa4b, 0x46aa2d8, 0xf4537e0e, 0x155553f, 0x0000a7 } }, { { 0xa557d531, 0xbdd835ed, 0x75eb6bd2, 0xeb600bdd, 0xcbaac193, 0xb6839e8a, 0x4166549d, 0x14b95d86, 0xf40503f1, 0x4d384926, 0xb5f4d197, 0x9c90433c, 0xc275a452, 0x33af9cc0, 0x8a9fe311, 0x59a09a9b, 0x0000c3 }, { 0x762779a8, 0xe174d184, 0x3906cde6, 0x664305a9, 0x1fe4bf11, 0x5549a588, 0xfd6053cf, 0x5ba4f29d, 0xcb69b1b, 0x7e861931, 0x13881376, 0xdae26bab, 0x450bc46c, 0xec3c2471, 0xdd06ec71, 0xa4607de9, 0x000026 }, { 0xb3995256, 0x946b955f, 0x6be108dc, 0x220ae8df, 0x67f92e9d, 0x9c71db1, 0x4203c005, 0x5084620e, 0xafeb05cd, 0xa64cfad9, 0xc31376ff, 0xcc612ab5, 0x95078aaf, 0x544715ac, 0xc839776, 0x4eaf7337, 0x000016 } }, { { 0x34d2c5ab, 0xc4685296, 0xad06beed, 0x50c50b4c, 0xbd88b967, 0x2c91c934, 0xd15ed2b3, 0xc88f17bf, 0x2facf6ba, 0x57421cd8, 0xebd67188, 0xf7e4252c, 0xc6e67519, 0xfa3acd5, 0xe266abad, 0x67dfcdb7, 0x0001f7 }, { 0xf230343, 0xdf89162d, 0x7ad7113a, 0x707d291, 0xf3464943, 0xf6d2ea2c, 0xe37fa1ab, 0x6233c72c, 0xff9374ad, 0x162fd902, 0xea4ab10e, 0x4b3627b, 0x45f263cc, 0xe04ec88f, 0xaf47303e, 0x93dbef9, 0x0001e1 }, { 0x586c7ec7, 0xedb49a99, 0xdd13154d, 0xde8805c2, 0x68b0364a, 0xa2ffa856, 0xee88c9c8, 0x90dbf3e4, 0x8ad9b273, 0x8152e5c9, 0x256ba054, 0xf7fd3d64, 0xbf1460dc, 0x12b4501d, 0x7b65c5f7, 0x4bfb463, 0x000007 } }, { { 0x132693eb, 0x81b2209c, 0x60396aee, 0x16e465e3, 0x545d9d78, 0x8ba414fc, 0xcbbc1842, 0x4640d1a6, 0x362f91fb, 0x70a4a087, 0x9dd74b7f, 0xa8cad3c7, 0xa57b42a3, 0x360f9d25, 0x6097cb43, 0x36ba84b5, 0x0001fc }, { 0x265e1ba2, 0x62e1d910, 0x9644e71, 0xb660852c, 0xff243683, 0xa7c5e6e0, 0x5066d993, 0x69693439, 0x80b3bf53, 0x25dfc4b4, 0x6f37abd2, 0xb2337c14, 0x5f77aec1, 0x909fa4b, 0x180b1c55, 0x921a65c8, 0x00012b }, { 0x9a60ed97, 0x7bf82c4b, 0xeb820861, 0x8b8e8c84, 0x869e98ca, 0xe154c6e4, 0x6a1bd9e9, 0x47ee459f, 0xa9246bea, 0x502a7589, 0x22d5bb77, 0xc193b041, 0x4d92b443, 0xd631bf97, 0x7a386379, 0xb5d2d3c0, 0x0001c3 } }, { { 0x6702f8d8, 0xc079deed, 0x50574442, 0xd88e6ca9, 0x5015385d, 0x15e8025, 0x4e5b87d8, 0xb880e89a, 0x7a256780, 0xe96d128a, 0xe45e27f0, 0xd1c9fe91, 0x6e430406, 0x28e0cd61, 0xbed3d163, 0xdc0b8122, 0x00005e }, { 0x55179b6c, 0xaf7958c2, 0xc77e2ba4, 0xd8dada61, 0x57be1613, 0xaecd162b, 0xa2d81134, 0x351cd602, 0x9c0803c5, 0x63ec611f, 0x2be55304, 0x5f2dfe, 0xe5f87356, 0x63421d59, 0x57b2d75c, 0xc5cade45, 0x00010f }, { 0x5ce0743c, 0xfe3f225d, 0x1ed6ca4b, 0x41c10d0c, 0xeac0d7b4, 0x9acc6470, 0xfbe83398, 0x177450b1, 0xe10fbb15, 0x625411cd, 0xd6dab8ca, 0xdecb6e02, 0x5cd616ac, 0xd75d65a5, 0xaf6edadb, 0x82f6b2c, 0x0000d0 } }, { { 0x6fe52daa, 0xbf9116d8, 0x2a29db68, 0x8e6ef6f8, 0x6001c9f1, 0x48f9fc12, 0x928e6afc, 0xfdbcd936, 0xf4831339, 0xbbfdd20c, 0xd75c12d6, 0xa42dc833, 0x9ff3850d, 0x6b2aad68, 0x7b5f284a, 0x69951247, 0x000197 }, { 0xa842535, 0x3006dbd4, 0x5b2595ac, 0xeff845ea, 0xdeaa7a74, 0x2849e3a3, 0xd08ac0b2, 0x2e511aac, 0xf4138788, 0x7b1f3eaf, 0x4baffae4, 0x8e610a54, 0x270c54dd, 0x9d428619, 0x106e650f, 0x24bf87a8, 0x0001ca }, { 0x120c9397, 0x93698474, 0xf8650b1c, 0x9591261f, 0xc2d2e0d, 0x4ea4b7b, 0xd9d24c03, 0x4688b40c, 0x15f43ce0, 0x59a846ec, 0x6b0ae7e8, 0x7ea2867d, 0x7e7c57a1, 0xaba753, 0xf1f1f0ac, 0x953fa97f, 0x000081 } } }, { { { 0x1d275438, 0xd0bae438, 0xfd4b0598, 0x59422fea, 0x8283d818, 0x7c32ef9d, 0xef47c2cc, 0x834d58e4, 0x40f6df68, 0x7719b3b9, 0x8080dfa5, 0x8088089e, 0xef6eb1fb, 0x39d4de8e, 0x3efed72b, 0x9e5576c5, 0x000033 }, { 0x2650e705, 0x139e9f45, 0x4806fc7, 0x10d5cdd1, 0xac257e83, 0x8969b3f5, 0xa6d2546, 0x1c9b4346, 0xa4d0df63, 0x30942393, 0x6a7b8c43, 0xb1122cd2, 0x9633ebc6, 0x6c546b6a, 0x90629041, 0x856e7982, 0x000151 }, { 0x891cea2a, 0x9230cafa, 0x8e703c38, 0x2fd43c54, 0x43d87320, 0x5f16bb7d, 0xb41130e8, 0xd4391ee1, 0x9d5eaf41, 0xd30ba070, 0x162f1dc, 0x4228ecf2, 0x246f84d1, 0xfb3f3526, 0xedbddf89, 0x4c27020a, 0x00018b } }, { { 0x7c929cb8, 0xe802691e, 0xadcb6f18, 0xe52044dc, 0xdec6a589, 0xa29293b4, 0x342c64f2, 0x2fbc7e28, 0x5d3e3c20, 0x621ef212, 0x4fb2dca3, 0xa48e3967, 0xf4b3a465, 0xc09ccaaf, 0x6614f51, 0xf9f2f382, 0x0000fd }, { 0x8f5690fd, 0xed855c8a, 0x683b1a18, 0xfda3c7f2, 0x7f97f570, 0xd77f9f20, 0x4020d451, 0x69bd1cdc, 0x4d76813f, 0xd98b877e, 0xfd058e42, 0xcfe2366c, 0x4fa6a487, 0x876d5ce4, 0x77182e5f, 0xfae52c8e, 0x0000d3 }, { 0x2f2505b1, 0xbeb28a68, 0x75fda918, 0x3ecb2583, 0x3255fffe, 0x68c16238, 0xa7c9e88a, 0xe948408, 0x1c00b316, 0x19e48fd5, 0x1fac6b7a, 0x9b0bfa5e, 0x2f882448, 0xd7048681, 0xca41b143, 0x1127427b, 0x000130 } }, { { 0xb5c00584, 0x8ea7c64d, 0xcee71c72, 0x1674980f, 0x80f7e579, 0x8eb240b, 0x1dac19b4, 0xe5d45a06, 0xeca5ab18, 0xef84d6d7, 0xfcbcf0b5, 0x409421db, 0x8d4dc581, 0x70ab7a76, 0x3d10e1e9, 0x9f885f96, 0x000041 }, { 0x38a7e526, 0xc82816fd, 0xd5cc4c96, 0xc6a2cf30, 0xac254e41, 0xa307ad3, 0x96f6e43f, 0x406d2ab2, 0xea182457, 0xe1f3d748, 0x859b38cf, 0x1157e560, 0xb962b4c9, 0x3b0c5fb, 0x842138d0, 0x315f658e, 0x0000bc }, { 0x21de72f2, 0xb3364930, 0x569f3737, 0xa743be77, 0x828cdc00, 0x8ba3a3a9, 0x7f24359, 0x3321e245, 0xfdaca8ba, 0x98ece6a7, 0x8cd4eae, 0xbf6fb220, 0xc292ac6c, 0x7b498bd5, 0xe97808c4, 0x35967b7, 0x0001d8 } }, { { 0x5684b6cf, 0x7911c648, 0x85212ba8, 0xcaf25379, 0xde0174b7, 0x5f46b40f, 0x1ab22ec5, 0x98d889e8, 0x763bcd75, 0x5cc0094c, 0xd8a6ab64, 0x78d7bb81, 0x4b0e2f80, 0x9e120509, 0xfb495762, 0x5789827e, 0x00010e }, { 0xeed69c10, 0x61b11b45, 0xc55bd801, 0x2f9373c3, 0xfae26e4, 0x7c81db02, 0x39a7640b, 0x50a9f35b, 0x3f2a83b9, 0x48f43f15, 0x1ef7f730, 0x36cb9b0c, 0xb667a869, 0x34428d48, 0x401a82c, 0xf4c16a1f, 0x000107 }, { 0xee5764cf, 0x75ef8ab5, 0xce1d1175, 0xf189c509, 0x7a1f27f, 0x658ccf78, 0x1392c280, 0x31abc8a0, 0x12d9cc08, 0xb432508b, 0x3c775c39, 0x2cacc0ad, 0xbe6d318a, 0x80ac3f48, 0xb1f6c2fa, 0xd5e5b26d, 0x000170 } }, { { 0x461694b4, 0xafea2317, 0x1452f821, 0x1098fd02, 0x619a3fff, 0xf123cb20, 0x8ef53cbd, 0x5112c6e9, 0x4ab928d, 0xbdcb4cb7, 0x5d1f8168, 0xa2cc0a7e, 0xc68fa5f6, 0x31679800, 0x8cf1360, 0xe2d594f0, 0x000020 }, { 0xf077fc3, 0xbf55b644, 0xec747944, 0x8a5fed13, 0xe6a187fb, 0x141e41db, 0x79fc832d, 0xf37d8419, 0x355bde5f, 0xc1dba953, 0xc2b0ab2f, 0xa1759c80, 0x27ad1dea, 0xafd21d93, 0xe64a2139, 0xd1467324, 0x000083 }, { 0x906f7252, 0x88a420db, 0x55c4789f, 0xe44a39b0, 0x3c1ae5fe, 0x3b64e1c0, 0x7ec5fed9, 0x39149315, 0xd27f7374, 0xc869c51a, 0x269eb3da, 0xa8f0e88a, 0x450117b0, 0x1f9cbac1, 0xb4392fb6, 0x44828cc5, 0x00002c } }, { { 0xd4e05857, 0x7e0c1ab8, 0xfe778fb9, 0x6f085ce9, 0xba1db3da, 0xd7d50e9c, 0xbbbd8b49, 0x21e759eb, 0xffd98eb2, 0x85f8ed30, 0xde4d0e88, 0xf3f12920, 0x3ce25e3, 0x6ccfab8, 0xd4ad88d2, 0x65c0f68f, 0x0001d8 }, { 0xbcb64f90, 0xcddb87c9, 0x28061fba, 0xcb80df40, 0x6a5749c2, 0xe7cd07f7, 0x98661702, 0x36fd5020, 0x9747649d, 0x74e0a716, 0xc1f4afa9, 0xa265dc8c, 0xa7676ad5, 0xb509b604, 0x416d6436, 0xc8fc6b6f, 0x0000ce }, { 0x48872d45, 0x9caf0b5, 0xa12a1e67, 0x1e0ca936, 0x98c3b3de, 0xfc1335de, 0x42ff1040, 0xab19f079, 0x4e89315e, 0xffbec794, 0x1a53f064, 0xaac156c2, 0xd24662cc, 0x76530f45, 0x43276b77, 0x3e8d3a65, 0x000185 } }, { { 0xc565640d, 0x62918869, 0xfb8f9a33, 0xb4a11557, 0xa4198af3, 0xb5fc957c, 0x4fe90dc9, 0xb2e5f26, 0x2f18501e, 0x2f86db3b, 0xfff9c04, 0xc5b6db6, 0xa04e4f28, 0x17f734c, 0x90ad0a40, 0x5b15f375, 0x00017b }, { 0x2602837, 0x71cc4528, 0xab0894ff, 0x78071629, 0xd84d8ea, 0x17d4277e, 0x4bbcf173, 0x9161806, 0x3e5bd57e, 0xc6696e15, 0x3f02a2b6, 0xb4ebf1d, 0x94fccb7e, 0xc68d3f32, 0xc3256a04, 0xa0a6e01f, 0x000169 }, { 0x3c02165e, 0xfc2833fc, 0x1e00e891, 0x5279dcee, 0x44b1f460, 0x378d7502, 0x51f5a2e6, 0x5ac83811, 0x7914e68, 0xe2c89f18, 0x8b12fd39, 0xaecd7d4a, 0x4d8d1dac, 0xd5d8886, 0xe22ab530, 0xfb8574b, 0x0000cd } }, { { 0xbc777712, 0x5acb169a, 0x6bb5fcfc, 0x55a0dc3c, 0x2de340dc, 0x726b584f, 0xc98b2f95, 0xdcfc3b4d, 0x192a3fc2, 0xc9f50f1f, 0x13ad15b2, 0x8bd7983a, 0x204e118c, 0xe75e9337, 0xb184637, 0x8400d784, 0x0000db }, { 0xba4f6a04, 0x8acc899b, 0xe35c5ab8, 0x7f73812e, 0x25132b04, 0x609e43a7, 0xa0a07e37, 0xa8665b02, 0xbfe300c3, 0xcb6b1453, 0xa92424a5, 0x67bb78ca, 0xd92ec830, 0xbf8fbffe, 0x5a967566, 0x8a00be93, 0x0001f8 }, { 0xa18d6646, 0xe9c1e54e, 0x83d7a445, 0x6ef95004, 0xfe4e8ca3, 0xe15602c6, 0xf3d8d5e1, 0xa035c3f0, 0x5aa9e852, 0x3c20a7a6, 0x9d429ba5, 0x5cddcf45, 0x6a510078, 0x78761fec, 0x3f96b787, 0xfb5fb53e, 0x000054 } }, { { 0x2ddd9c39, 0x16a9a077, 0x5fd9231b, 0x157ddac5, 0x8ea758fd, 0xb3ea8233, 0xbd918f13, 0x8c3e45d, 0xf9de8ada, 0x8f5b517f, 0x3fbbd5da, 0x17708992, 0x18e5fb66, 0x5d92d66, 0xeb6268de, 0xcdf8f4eb, 0x000192 }, { 0x9f2bb65c, 0x61b9cd93, 0xc1d9655b, 0x4ada854a, 0x9aca74fe, 0x9fe74146, 0xa7ee780, 0x3c15134, 0x9f80d1ad, 0xb2b0065b, 0x87b57de, 0x238e96d6, 0x6c242f56, 0x818fac0d, 0x73b1ca4f, 0x88528442, 0x0000bf }, { 0xfb18d1a5, 0x5dce24ca, 0xab243873, 0x2b33d528, 0xa81c76cd, 0xe7ef3d7b, 0xa0c4f608, 0x96bf6a24, 0x8248b702, 0x3131bc58, 0x6bffddb7, 0x4c6ff6ca, 0x76343b6e, 0x8db8a767, 0x36838b35, 0x56593d96, 0x0001f1 } }, { { 0x612fefbf, 0x9464b037, 0xfddebfb0, 0x4b7bdf6a, 0x5c7181f9, 0x256b43af, 0x51f7de8e, 0xc1984efb, 0x7de03a45, 0x4e7c19b4, 0x53bb7d27, 0x3b694ab, 0xb83801e9, 0xf540b68c, 0x42187935, 0x919bafa0, 0x0000b5 }, { 0xe60da063, 0x4cf1dc5a, 0xe1eb0776, 0xec63e7e, 0x4d3f28bf, 0x210e4831, 0x83c71fff, 0x2b40b454, 0x3f12fb2d, 0x87fcf50b, 0xcfb79f22, 0xa1a04ac7, 0xb6b7ea7d, 0x385d73a6, 0x1fc4f6c3, 0x8ce24568, 0x0001d5 }, { 0xf76c5656, 0x790c7d96, 0xb22133c5, 0x9aad3e52, 0x38fc77df, 0xf556deb0, 0x11fa4d2, 0xafede389, 0x93f382e4, 0xa5eadd6c, 0xc0f448a8, 0xbf0db88a, 0x34e66594, 0xb4e570e5, 0xd13775c9, 0x7505b149, 0x000081 } }, { { 0xc3c1961f, 0x31d42af, 0x9a789470, 0x9c902d5c, 0x886c5882, 0x1769e78, 0xc62e0717, 0xaf0cf5a6, 0x1a2e2e9, 0x2296b430, 0x6d01f84d, 0xad0e3538, 0xf3a700a4, 0x8b8934e6, 0x3b5e5bad, 0xc3a10b4a, 0x000106 }, { 0x30101334, 0xc5b38356, 0xb72daca4, 0x838e5172, 0x87dae45f, 0xd1154a18, 0xe1fbf51e, 0x8f91936e, 0xd598a75b, 0x6bae878e, 0xb2290467, 0x972e3380, 0x1e9627f2, 0xbe5bc8f, 0x948a6236, 0xd790f95b, 0x0001ec }, { 0x38b91817, 0x22f45fe4, 0x15e40e89, 0x8da34b25, 0x15f22931, 0xc9e52f90, 0xd32c4e3d, 0x39c9d98d, 0xe4dc936c, 0xc39741b6, 0x3a955131, 0xbeed41ef, 0x2400606, 0xccc3d4f, 0x1a503367, 0x2917ca5d, 0x000163 } }, { { 0x51501c01, 0x4aa03835, 0x5be5c587, 0x907fcbdc, 0x7eac7db, 0xe10d3f74, 0x1ed2ec24, 0xbd5f69f, 0x36df5b78, 0x16311fb2, 0x977116f1, 0x4da590b, 0xe57f177f, 0xa00ebbef, 0xb1b3618c, 0xb0c8daaf, 0x0001df }, { 0x2fa60b4d, 0x118b9295, 0x1a19494d, 0x11b7c69f, 0x6e06ab52, 0x19217c40, 0x25458816, 0x6b56151c, 0x1df902e6, 0xdfac024c, 0x6eb4e6cc, 0x5fcd6d38, 0xeaa394fc, 0x81338538, 0xf87b3f1e, 0x825fcba7, 0x000096 }, { 0x4b56fd7f, 0x2acfa153, 0x812ff244, 0xfc302827, 0x8f9db04d, 0x72b181f6, 0xbf262e52, 0x25be9f67, 0x855425be, 0xb6703003, 0x7c2b0ea, 0xb98a7299, 0x67f28836, 0xca3bf740, 0xf44b874b, 0xea1cf0ae, 0x0000af } }, { { 0x7ab16f5f, 0x1613c65b, 0x47e4de99, 0x72b4a72c, 0x27f5fc99, 0x50dafb2e, 0x9fda24f4, 0xdaf99b94, 0xfda12789, 0x9e7373a4, 0x36df6c5c, 0x659ae7d, 0x723bdefa, 0x71720582, 0xc10c245, 0x31e0ea69, 0x0001ae }, { 0x9ef7b1dd, 0xc635e8d6, 0x8ee9ee6a, 0x9e40aa4f, 0xa396812c, 0x1cfc277e, 0x5f4ab1a, 0xd2c0db14, 0x9ea02c3a, 0xa866435d, 0x21365352, 0x437d7bff, 0xdf13332f, 0xcbe1deda, 0x12bb021c, 0xffa33bba, 0x00009e }, { 0xc7680d25, 0xd084063d, 0x5c598247, 0x184ca1b3, 0xb8a1e45f, 0xef0301db, 0xde0ae4c0, 0xb9f6412d, 0x8eb7a6d7, 0x83e43795, 0x1615b128, 0x234f2123, 0x3f66edc9, 0x64924593, 0x6e063b50, 0xb0e3f26a, 0x000166 } }, { { 0xa5138669, 0x60e4ce3d, 0xfdafe0ee, 0x17226619, 0x86d573c6, 0xd44ee130, 0x2b87220, 0x9e0dfd4e, 0xeb764a0c, 0xb3c84b10, 0x1d0f1f8c, 0xa0579a92, 0x3368e25b, 0xa650cb0, 0x438fd852, 0x466db2b3, 0x000101 }, { 0xf981ec25, 0x29109fe2, 0x74efed74, 0x7f8ceaaa, 0xce38568, 0x2eefb056, 0xea633d6c, 0x2b87ab80, 0xbc0c2669, 0xb4f29964, 0xb1f55f36, 0x1b9e326, 0x3334dd7, 0xc4c7425c, 0x7edc49fb, 0xb6180675, 0x000034 }, { 0xbcbf2e77, 0xf1a91436, 0xaa326e32, 0x1d348851, 0xb2761a6b, 0x90000623, 0x1f6e517, 0xad9c3069, 0xf1303cbb, 0x96612800, 0x704b743d, 0xc8c2813e, 0xf43dd967, 0xbfcf471e, 0xa2025ed7, 0x4a4e3ab4, 0x000084 } }, { { 0x1f87baf1, 0xaaeb3408, 0x6b705f9f, 0xbbf8ad3c, 0xbff62c3d, 0xe3639eed, 0xbb5eda30, 0x312eccd7, 0x7d891de, 0x3b228a91, 0xe2215fa3, 0xa30d74c7, 0x7c3b8637, 0xcb53e0be, 0x5d98f5cb, 0xda116f30, 0x0000cd }, { 0xde327f9f, 0x7d58ee78, 0xd9a09a39, 0x5dc0f6eb, 0x91a6ee2a, 0xb180d205, 0xbf2f4c1b, 0x1168a203, 0x552871f9, 0x45233a88, 0x77002a24, 0xe45394f8, 0x2ecc2cbd, 0x74e30fc1, 0xb065e431, 0xeb816045, 0x00006b }, { 0x673a7117, 0xa2d050f9, 0x4ff9c545, 0xc5898848, 0x502535a8, 0x8c90eb4f, 0x78af74e7, 0xb73dd5a4, 0xf6db81c8, 0xaafab4e, 0x84b05b94, 0xc86c05c3, 0x1ea74958, 0x39e994c5, 0x32f9d99, 0x1cf4c89a, 0x000175 } } }, { { { 0xd870ee36, 0x3c8a9445, 0xabaf4ea9, 0xfe8f83c4, 0xd222115f, 0xae4308b9, 0xea98fae0, 0x96822020, 0xf1565cc3, 0x26548760, 0xb20b817c, 0x8aa49cc1, 0xe79434b7, 0x42cb61bc, 0xe5f6785a, 0x36545e29, 0x0000f9 }, { 0x6a1fa8ef, 0x552ce411, 0x47c58518, 0x8ee63918, 0x61a1ff86, 0xe1be1059, 0xadd44e71, 0xd64aca8a, 0x64aba6fc, 0x53403bd4, 0xeb0e9b76, 0x4a9cd912, 0xf8cd818b, 0x55efa489, 0x6600031d, 0x5d246b84, 0x00018a }, { 0x4c658af7, 0xe72a0daa, 0xb5b2bbf6, 0x9600d3c3, 0x36234b09, 0x661a5a7d, 0x77910b63, 0x9ceffab8, 0x793ae82d, 0xb7aec1be, 0x8b2b4922, 0x3e68ee5d, 0x1edf6454, 0xe770ea9, 0xdebcdb8b, 0x296e81a5, 0x00018b } }, { { 0xf476d35, 0x40f149f0, 0x7a09af9c, 0xce448235, 0x565440d1, 0xa232fe73, 0x30c4ec75, 0xfabac88, 0xab75f6e2, 0x1dc1cef6, 0x9419744d, 0xa4900eec, 0x42feabe6, 0xdb99c158, 0x3ceec0ce, 0x2324ead3, 0x000124 }, { 0xfcf5ee0c, 0xd1215a1c, 0x258a10ea, 0x7dd05a7e, 0xdb07e1ea, 0x7de3f81a, 0x214911bf, 0x507ff488, 0xf83fef52, 0x4afb1384, 0x9ca89139, 0xedca94bf, 0x624a5588, 0x1a6d5200, 0x8191560c, 0xef154c6a, 0x000072 }, { 0xd7402398, 0x72711bf5, 0x5b6a50e8, 0xb46a8109, 0x7d4545c5, 0x4eeff8f1, 0x2e3a25a5, 0x3c9a5ae1, 0x905b16b6, 0xd3aa8b8e, 0xdc9c5c2b, 0x976ec1d2, 0x508dac55, 0xb4bdab64, 0x31364f68, 0x23400b88, 0x0001d7 } }, { { 0xd662db00, 0xbc6b99b2, 0x48a89486, 0x59bd94d3, 0x2b9de29e, 0x81aa70ed, 0x51575151, 0x4cec9423, 0x9a8a0d8f, 0xc69bde34, 0x8f716b5c, 0x75d8a499, 0xea482035, 0x3c512313, 0x8b9d53da, 0x40cc8c0b, 0x000035 }, { 0xc15ad63a, 0x2375770, 0x97caa07d, 0x4dda9ac7, 0x85250e82, 0xd4ca3031, 0xa3ac337c, 0xca10346c, 0x97f9da8f, 0x5df63f49, 0xfa6c4bb9, 0x1261d697, 0x84f97485, 0xbdd09f45, 0xbb197d01, 0x6c88510a, 0x000053 }, { 0x2605448e, 0x26f5c048, 0x833ccc73, 0x76f95112, 0x9a41dba9, 0x87031f46, 0x29d89f67, 0x490cb6b3, 0xf35de310, 0x6972813b, 0x7de08371, 0x4a99275a, 0x9614c2b4, 0x500f4a7a, 0x9f9ac97c, 0x17db0839, 0x0001c7 } }, { { 0x1f8db9ed, 0xfe810c12, 0xf07e9e16, 0xb45b1dab, 0x41682c13, 0xe24bfc92, 0x830218a6, 0x5ce9032e, 0xa2dfe692, 0xe172fa38, 0x75cc0b58, 0x4cad321e, 0x799b6385, 0x8d84f40f, 0xfaf82172, 0xd2e647db, 0x000042 }, { 0x4d8dcfb1, 0x1a482b2b, 0x898837e, 0x779a0579, 0x10d18671, 0x2769aa6c, 0xa111fe25, 0x93c4f6fc, 0x47effb23, 0x7f49a2a1, 0x83dd3da8, 0x64986628, 0xba613b56, 0xe7d1ac33, 0x444b6f38, 0xee9b329a, 0x000169 }, { 0x805e9c3a, 0x66f8edcb, 0x898fd49a, 0xdaa32009, 0x9f1dabab, 0xe80c451e, 0x998f396e, 0x684ad510, 0x921c23ac, 0xfb8d788b, 0x51d06a1f, 0xb7d90658, 0xcd33611a, 0x2b66674d, 0xac6bd617, 0xf11920f1, 0x000110 } }, { { 0xe1b8f716, 0xd881303d, 0xbd966ef1, 0xa9176890, 0xf2eae533, 0x957aa7bc, 0x6eea3f31, 0xa567e09c, 0x285f1883, 0x70904026, 0xf3329ad7, 0x8aa7c010, 0x97920e10, 0x5731d4e, 0x96cd43cf, 0x36f7bafa, 0x0001a7 }, { 0xcb363816, 0x1e3a7977, 0xb7268583, 0x98c26930, 0xb743bf6e, 0xdc96b2eb, 0x78f90581, 0xda929ef2, 0x76aac5fc, 0xe5e2fe92, 0x3ae4cd9b, 0xcbe8df91, 0x358dfb31, 0xe4a23f46, 0x82a5c3a9, 0xf2b718c0, 0x0001f5 }, { 0x3848aefb, 0x5563dcf9, 0xc4f7ec7, 0x24b41d05, 0x8dfcd626, 0x4e2a9460, 0xbf2ac5ee, 0x2672c22e, 0xbb03bae8, 0x564a12b4, 0x414dc61d, 0xe1f1a304, 0x1874266a, 0x91503d71, 0xbbef0087, 0x835b85d9, 0x0001c5 } }, { { 0xe5194f88, 0xb17c5288, 0x285a89a3, 0xe9b01f6d, 0xc1c002bf, 0x948b1993, 0x3f10c59a, 0x788aeba9, 0xee16a4b6, 0x3755120c, 0x9c32a353, 0xd36cb291, 0x891b89e1, 0x6d7a2bc3, 0xcf6aaf76, 0x4b313051, 0x00008e }, { 0xb00b38b7, 0xde781854, 0x1ddf78d2, 0xd5e743fb, 0x82619588, 0x62d94605, 0xed4cac96, 0xad01799, 0xc47d4e0a, 0x8e79e6b0, 0x3806187b, 0x8381363c, 0x29e449ad, 0x96f02965, 0x6a851329, 0x7d9f0676, 0x000162 }, { 0xe08c714b, 0xcfe0b78e, 0xae1d9520, 0x3c3af29, 0x4330b41d, 0x3f89e908, 0xfce1919, 0x8d37bd05, 0x838a6f2f, 0xa25fbe1, 0x57ebd698, 0x2394084c, 0x1d68140c, 0x74f6bf01, 0x932fc9f3, 0xe5686046, 0x0000a5 } }, { { 0xee97c47, 0x917c02df, 0x89bf0dbd, 0x5ae55f30, 0x7aa1439b, 0x79ff424a, 0x54437759, 0x4597c0e0, 0x23d8b758, 0x5950ced, 0x1aac6c78, 0x325b460a, 0x7c173f72, 0x4fd993a, 0xadce35fc, 0x9599a1a0, 0x00008b }, { 0x9394ea46, 0x6b4edeca, 0x9b5ac821, 0x9bbf087a, 0xbaee65f2, 0xe6b729b, 0x69ec8bad, 0xbf1c6f3b, 0x16156b66, 0x4f7f22f7, 0xc5892867, 0xe835094, 0x1b00ca6b, 0x19ce1e94, 0x8d561d4e, 0x70e45e9c, 0x0001ea }, { 0x21ddc8b0, 0x6567b13a, 0x44fa2cb9, 0x3d302c71, 0x2ebde593, 0x290040be, 0xcdca1cda, 0x75d61866, 0x6fe86636, 0x918bf14f, 0xfc31c4d, 0x85a86abe, 0x7651572, 0x41d2190b, 0x1e734514, 0x6ed420a1, 0x0001bf } }, { { 0x1d6b138d, 0x9e5a4bc1, 0x9df70cb5, 0xed91c30d, 0xd664f784, 0xd04b0bad, 0x8d70e3da, 0xafe629d2, 0x518f6d44, 0x47b2c7d2, 0xca38391a, 0x2c98f6d8, 0x1c398ecb, 0xea460371, 0x66fe8289, 0xe89c8fd0, 0x00002a }, { 0x17ead131, 0x1e2be3eb, 0xa26891ce, 0x57df8102, 0x8d9de1f6, 0x9bbba401, 0xabab0af9, 0x7ec1410b, 0x10fd3808, 0xf7e474ae, 0x63910265, 0x13a62645, 0x5945a618, 0x620b0b4c, 0x54a84b29, 0x6cc78f70, 0x000072 }, { 0xb077ce1, 0x2aba3815, 0x8caa5786, 0xcf8c49ea, 0x34dec538, 0x497854ff, 0x272d4b19, 0x52042421, 0x4edf6681, 0xc69985cc, 0x353cc3ba, 0x75263f8a, 0x915dfd3b, 0x880721d, 0x15e823f1, 0x326f8130, 0x0000a6 } }, { { 0x593ccbd3, 0x9f1c56e1, 0x513df774, 0x918d8f31, 0x78359770, 0xf4699324, 0x294cc5cd, 0xa5493e69, 0x7ee66ff, 0x7e088200, 0x72d47283, 0x27ea4b1f, 0xdbf637ff, 0x4e58c736, 0x66b78341, 0xe80e0917, 0x00008c }, { 0x4c7bc389, 0x12db5635, 0x4116f5ee, 0x7e5c5261, 0x2a632a6c, 0xae03fb14, 0x181e5d7b, 0x459e32a0, 0x1a3f0c8c, 0xe820c609, 0xbbb798e, 0x582d223c, 0x7fa9d9c2, 0x58516c4, 0x98c0e381, 0x69796e05, 0x00004b }, { 0x2d7bb4f0, 0x9ac6106a, 0x97c98822, 0x6064c475, 0xa03df312, 0x5996a931, 0x235144b3, 0x1b7bf1a2, 0xa7cef819, 0x86c5a6d7, 0x20061331, 0x1be3d791, 0x8e913746, 0x5ce2ab8e, 0x8161f613, 0xa7f0725c, 0x00010f } }, { { 0xd1d9f4dc, 0xe5727926, 0x97df705b, 0x30767533, 0x1b16f862, 0x21c44764, 0x29d46992, 0x93b3084c, 0x8a39c88c, 0x5163a7f9, 0x2d80906f, 0xdbe06663, 0xb136be29, 0x9ce88f1d, 0x76f3cc17, 0x403539d4, 0x0000a3 }, { 0x3d1be58d, 0x83d58d8, 0xddc4c8e2, 0xa956a85c, 0xbba06e85, 0xb3cd2722, 0x3568615f, 0xf08863fe, 0xa1243f3e, 0x35b8dde5, 0xd5ba87f6, 0x94e671f8, 0x6da948aa, 0xa33cfbdb, 0xc4f5f0d7, 0x7ab54422, 0x0000b7 }, { 0xcf495978, 0xe5d2edf1, 0xafec9220, 0x188e251e, 0x5e320085, 0x31b7a694, 0xe76ab053, 0x30af1614, 0xb6c294ef, 0x98eb8ef2, 0x958258ac, 0x49ee0c3a, 0x75300564, 0xfe8ca61, 0xd714e7c2, 0x8e5d50de, 0x0000d1 } }, { { 0xaf75a42c, 0x1537a332, 0x3b833724, 0x15aea6b7, 0x74419643, 0x3d7193e1, 0x4597ed2d, 0x5c2b5e90, 0xd0822b8c, 0x97d8ce33, 0xe490b0f3, 0xc785c57c, 0xb8bc392e, 0x305a4649, 0xe11c598f, 0x51f2f727, 0x00018a }, { 0x486206a0, 0xdccfa7bb, 0xcfc150fc, 0x39e2622c, 0x744aacf4, 0xb441310f, 0xcc6c9e2c, 0x5844980e, 0x19507560, 0xca437a98, 0x4e6cfb4a, 0x2513f1eb, 0xae622d0, 0xe00af4a6, 0x6e169c22, 0xec828b6f, 0x0000a6 }, { 0x16c93231, 0xc01afc90, 0x883c9409, 0x1bc4356c, 0x2ba07f04, 0x7ddc4b28, 0x704442c0, 0x63d14cc2, 0x4ca0ec97, 0xef609abb, 0x67c9a9de, 0x890708c6, 0x8fa4aaa5, 0xda3cca0b, 0x35da0c25, 0x8e1226ac, 0x000151 } }, { { 0x2e32e3fb, 0x202d2d46, 0x190aa3af, 0x511a7229, 0x7cb6dcff, 0x3cbda211, 0x294e03f, 0x3a0a7e5c, 0xb6f457d1, 0xfe54ea21, 0xabc9ecbf, 0x4b9ab173, 0xfdf22f2, 0x4f9f766c, 0x7b191bf4, 0x3a214b51, 0x000084 }, { 0xc3761b20, 0x495e4622, 0xecd2b887, 0x63eac941, 0xcbf14192, 0x251f68c9, 0x2d03a2bd, 0x2c22b4fd, 0xf7411a66, 0x66d35443, 0x5c7641c5, 0xd4506876, 0xffd27cc, 0x544d5134, 0x6623a2c4, 0xcf1f82f1, 0x00008d }, { 0x9a88f126, 0xa1ffc4dc, 0xab05ccc3, 0x116b37cb, 0x86678c41, 0x32f2ca59, 0xccf530c1, 0x99aaddf0, 0x784bbe31, 0x871a44ef, 0x83c7743f, 0x50a7e9c0, 0x7ae2751e, 0x25874e2e, 0x111ff9b8, 0x9e6b7e17, 0x0000ad } }, { { 0x6f69dfbf, 0xd90a1309, 0x56a761c3, 0xf11beecd, 0x5afaee75, 0x455c6422, 0xf7e5433a, 0x6ef58bc, 0xcb3a8796, 0xe12962fb, 0x2b8fcac9, 0xc4f79393, 0xc8b07ff0, 0x7edf44cd, 0xc596eeb7, 0x3faba95c, 0x000169 }, { 0x97dce13d, 0x76921034, 0xac46b80f, 0x3b3cfaa3, 0xf83589a3, 0x3249860e, 0x90546043, 0x4092c9b5, 0xf4ca4e0f, 0xf1018aac, 0xc4f98e46, 0xa93464c8, 0x1e02b5ca, 0xfadad07c, 0x6a19be72, 0xb2df0a78, 0x000090 }, { 0x15b801d2, 0x8b491f90, 0x10b07e19, 0x3bbe91ce, 0x65f30083, 0xbbcfb5e7, 0xad90ec77, 0x4c1ff438, 0xfcca5b3d, 0xd19d5486, 0x8f438233, 0xb36e8ed6, 0xc38c9683, 0x42ada8cb, 0x7d9da432, 0x9cf62645, 0x00018a } }, { { 0xa273298a, 0x446942c4, 0x4f68ea30, 0xc679926a, 0x88aea278, 0x3319a729, 0x284f9eb6, 0x300defca, 0x734b62ae, 0x2c5f6339, 0x75bc959d, 0x51dbee1f, 0xe190195, 0x712d0e93, 0xfc931caa, 0x283aed7b, 0x0001fc }, { 0xa6693db9, 0x7cd5618c, 0xa9ae1f2e, 0x227c8463, 0xedf9159e, 0xdd6e5219, 0x456401e9, 0xd828b50b, 0xbb2e8f92, 0xfdc9688, 0x397c6418, 0x2c8c1f73, 0x3cdaeadb, 0x68865a2, 0xedb26fae, 0xa02007af, 0x0001fa }, { 0x6966a6f5, 0xa38f58fe, 0xda6919db, 0x3b9aed09, 0xbd78dab4, 0x4645ac8f, 0x679037eb, 0x1456477e, 0x7e79b16b, 0x54233f7d, 0x417df36e, 0xb8297e97, 0x992500c6, 0xdd3d1ba9, 0xd92464f2, 0x667ab4c2, 0x00010d } }, { { 0x9ecfbc33, 0x302a9d83, 0x38a7d561, 0xd346192, 0x6d9b4136, 0x47abdf59, 0x140dc54e, 0x1b5f5a1e, 0x662fc1f, 0x9fb100ad, 0xb9efd065, 0x6166f1ac, 0xe17cfffd, 0xbd8e4a70, 0xc0acbbaa, 0xbccc400d, 0x0000f7 }, { 0xd381d2b2, 0xf9ad7c17, 0x68f75b8b, 0x5fd84ff, 0xec0b0cf5, 0xce7f1578, 0x379c6230, 0x92322555, 0x679272bf, 0xc02d7fdd, 0xf962f31d, 0x6f266596, 0xe4da38cb, 0x87a3eec3, 0x679fdaf4, 0xb6960cec, 0x000082 }, { 0x523bf9cb, 0xd698c99d, 0xa9d65611, 0x25bb0295, 0x498690c2, 0xdf6bffdf, 0xe8849095, 0xfef39f1d, 0x524957cf, 0xd88e8a6e, 0xe1835abe, 0x80a3c5a7, 0x684bb668, 0x96bdf36, 0x1168d963, 0x88a3c3bf, 0x0000f5 } } }, { { { 0x47e5bcad, 0x7f4222ed, 0x19f65f24, 0x3585feb, 0x4648c389, 0xc5a2bc42, 0xc4c99bf9, 0x7fc49cd5, 0xca20a90b, 0x5e557326, 0x42481b6e, 0x6fbb873c, 0x9ce80215, 0xfd388c83, 0x903ae00f, 0x48bc147a, 0x00019d }, { 0x258051f0, 0xf46c8f96, 0xd05daf0, 0xa500b6b0, 0x778ded40, 0x8aa84d34, 0x1a5b3fa3, 0x37583c1b, 0x9806bf3d, 0xe66cfd0, 0xde0fd73c, 0x370d9db9, 0x5fbb8ea8, 0xe1159234, 0xc655108, 0xb478aa8c, 0x0000ac }, { 0x937eb8da, 0x3ee74ecf, 0x465f4e0, 0x616b88af, 0xa90b24be, 0x5235d231, 0x25858ec1, 0x6feda29b, 0xa83e3e06, 0xd81e8aaa, 0xb8ed5daf, 0xc93e0e71, 0xb7f8b9d, 0x300b7000, 0x53b3cb5b, 0x1bfdaf6d, 0x0001e9 } }, { { 0x9f37a0ab, 0x5ab4d31, 0xd756a4a8, 0x84eb796f, 0x9ad50583, 0x8866032a, 0xc13c43a1, 0xd36662b2, 0x715ed887, 0xb8c3037d, 0xf9409704, 0xdf33ae75, 0xf17fda7d, 0x6e8524ee, 0xb124ab5e, 0x78fa636, 0x000025 }, { 0x76fe3212, 0x9b2f9472, 0xb085ce66, 0x61751132, 0xe2a3605d, 0xe1b4ae7d, 0x4751d299, 0x62b83045, 0x4099aff8, 0x66843b4f, 0xe52510bd, 0x3ab4acc1, 0x132946b3, 0x338b2fa, 0x53cbfb50, 0x96d73367, 0x0001e2 }, { 0xfe32f224, 0x55d85600, 0xb5369dcf, 0x2a6da9fa, 0xc8d832d3, 0x70e24afe, 0xe3bc2ff2, 0x675e7907, 0xc787e879, 0xdf847cc4, 0xacdfb247, 0x3d939fb4, 0xdedf071e, 0x885e8bf8, 0xc13d9f0f, 0x24623f24, 0x0000e3 } }, { { 0xf2c00e55, 0x1a270746, 0xbf31928, 0x883c4886, 0x7417f3bb, 0x6f97023b, 0xcc7e7620, 0xdc3cc55e, 0xcccb3bab, 0xdf151a6e, 0x5b15f111, 0xb789e46d, 0x7bc6a56f, 0xf7116d08, 0x5934b568, 0x1349db9a, 0x0001b1 }, { 0x9bbe81e7, 0x64bb03a8, 0x55460db4, 0xf4945d95, 0xd794ee4a, 0x32410a79, 0xc1280033, 0xb7fb76d, 0xf450e9c3, 0x6ae8d0da, 0x7c119f3e, 0xd7538c67, 0xbc063156, 0xb82610d8, 0xbdcab394, 0xdc7e5e74, 0x0001f9 }, { 0x3b50921a, 0xa31a2555, 0xd9433f3e, 0xd99a7daf, 0xcd9c94b7, 0xc54ca56d, 0x88e28099, 0xe317321d, 0x9b4518ff, 0x1316d2c5, 0x81ae1a90, 0x71f7e30e, 0x83c1d3e4, 0x94b714fd, 0x811ed4da, 0xae224917, 0x000039 } }, { { 0x3ae0bf5e, 0x5edda346, 0xfed1be4b, 0x94f98141, 0x969d3c42, 0xf2d12313, 0x80db5c49, 0x8e100b2, 0xd73cf40, 0xfbf77431, 0xbc8dbd05, 0x2a2181ea, 0x40ac8f2c, 0x2f898702, 0x3e841098, 0xa9703ff9, 0x000082 }, { 0xd7e66938, 0x6d28d88d, 0x64eeb20c, 0x38487000, 0x9f1831ab, 0x349b30e1, 0xd6985baf, 0x90e10067, 0xe909e770, 0x18292c88, 0x5e557aaf, 0x766c9a01, 0x32c35f69, 0x2714fe8d, 0xdc9dc7c5, 0x204fd386, 0x000019 }, { 0xa7894454, 0xdd092b0a, 0x33250fd9, 0x3413c174, 0x98f9bed3, 0x7a80243, 0xb6cc4c63, 0x6e33912d, 0x93b9b1ae, 0xdb317d3b, 0x699131b7, 0xaec0d35b, 0x803f22e5, 0x8c927670, 0x1a94a35d, 0xdd2cd0ce, 0x00006f } }, { { 0x572fe356, 0xb7ffb338, 0xfa7b3577, 0xcbb8e1a3, 0xfd5ec53b, 0xf344322e, 0xb292fde3, 0x5e538e7f, 0xae61299f, 0x5cfc6886, 0x2993f1f1, 0x25f2fe9f, 0xf2ab461f, 0xda342f6f, 0xbe12c647, 0x5c851cdc, 0x000120 }, { 0x2b24b9c6, 0x25c0c613, 0xea97c2b6, 0x2af34af8, 0xe675c8bc, 0x25f821da, 0x6f00bf53, 0xa00f9f86, 0x759264c, 0x34079969, 0x49780569, 0x5c6f352c, 0x9a00df58, 0x6fc53804, 0x44252809, 0x92884949, 0x00012f }, { 0x689b2564, 0xd40197a3, 0xcfe2fd9e, 0x34170364, 0xe521603b, 0xefc0cc8f, 0xa20b1eba, 0xd18f00a1, 0x0f16ee, 0x7130c853, 0x72e9e28b, 0xb8cce862, 0xe0b984a8, 0xe946feeb, 0xdcd7cef1, 0xb1fd2265, 0x0001fa } }, { { 0xbaa68caf, 0x4d07ba7d, 0xe9fb45f, 0x1e34ec07, 0x55d5e4e4, 0x3e8af8ff, 0x39a78442, 0x93caf100, 0xbc80aa1d, 0xce9f8350, 0x1be3e88d, 0x5b456731, 0xf12f2599, 0x9b0adf38, 0xb410115f, 0xea9575b6, 0x000194 }, { 0xd2faa540, 0x7d15f4e3, 0x8a7cbc1a, 0xe7631e2e, 0x94dda812, 0xda28c2bf, 0xedc23264, 0x165b454b, 0xa2d68f4c, 0x6d80dc8e, 0xb7823e83, 0xf20cfb1b, 0x5ec65424, 0xdd94363c, 0x79c7311a, 0x91e47712, 0x00005d }, { 0x50a6ef34, 0x9545c47f, 0x28bdce78, 0x3d8368c, 0x387c7d62, 0x79aac6b, 0xb7541e08, 0x18a8c6c, 0x9557e818, 0x4fcb8d39, 0x7e6f1184, 0xd36a3e85, 0x944c64f5, 0x3b2364dc, 0xba159134, 0xd24f6834, 0x00013d } }, { { 0x7e2ec3e5, 0x2ce369d0, 0x2c541c77, 0x358958c4, 0x25d6552a, 0x4cb64d36, 0xed813f62, 0x2345f9a9, 0xa5bfebd3, 0xb5c383b2, 0x32911148, 0xc28e18bd, 0x506b1552, 0x413b1110, 0x477dbb57, 0x6a15e27c, 0x0000a5 }, { 0xb2622930, 0xc2174f4b, 0x63aaad72, 0x20b2e5bc, 0xea5b2aba, 0xa9f523eb, 0x143959b1, 0xdd692371, 0xfae9f9e0, 0x8c5567c, 0x661f7378, 0xc9ae971c, 0x50b88212, 0x47405171, 0x1b00c58f, 0xc130ee1, 0x0001b8 }, { 0xceba7357, 0xfe93823a, 0xbe66e553, 0xf2e224b, 0x40ab7ffd, 0x4ebf21f3, 0x62339255, 0x842c7b12, 0xe75bf9c3, 0x9a0aceee, 0x93128be1, 0x6c2ee17d, 0xe0ad323d, 0xeb64be45, 0x18236ae9, 0x3ed9f21b, 0x0001bf } }, { { 0x4edcb937, 0x244421a3, 0xec04a94f, 0x64695916, 0x3e9d701, 0x8ae772ee, 0x3c318467, 0x70c4be79, 0xf2897701, 0xb899c95e, 0xcefad2d6, 0x6e8e4141, 0x393b5b43, 0x6fc94323, 0x44321995, 0x53d5f33, 0x000159 }, { 0x46ceb4bc, 0x4284c84d, 0x5ef9632c, 0x2eeb3250, 0xbfaf3107, 0x22382b40, 0x62750bc1, 0xd7c961d7, 0x9e658210, 0x99c92954, 0xc999f7e1, 0x45b0d886, 0x45f57ac1, 0x341ddac0, 0x1db19cae, 0xfbfad81, 0x000027 }, { 0xb5c12c2f, 0xcc0e98f4, 0xce78a486, 0x2aea769e, 0xbdb1252b, 0xc5b02ef8, 0x3ed0c099, 0xb69ebdc6, 0x5689a359, 0x60d3aa65, 0xe2502e15, 0xc0ca29cf, 0x6281ff3e, 0xe7f28aa0, 0x940d5a57, 0x1a65a7b6, 0x00000e } }, { { 0x82e5b47c, 0x5b0b2e1e, 0x9a2e6543, 0xee70366c, 0x5cd9e05f, 0xfadd2eb3, 0x5cfc1a26, 0x433e761b, 0x8e463eca, 0xb4f0676c, 0x76e3c25f, 0x12f84192, 0xd0738aab, 0xd4bd9cf0, 0xd6d679a, 0x11696012, 0x00008d }, { 0xc1db7e45, 0x4e6c530a, 0x549b4678, 0x2ced190a, 0x1b7f4fff, 0xa4dce7cf, 0x60414f78, 0x608ab400, 0x2b28b36a, 0x2d9894a0, 0x38cedf18, 0xabe227cc, 0x5ee9d464, 0xfc71499, 0x76d905b5, 0x58d83f84, 0x000016 }, { 0x72c449e5, 0x1ae3ef07, 0xcd9cb60d, 0x134764e7, 0x5b3d794e, 0x81e09d37, 0xb7f4ded, 0x53473dc9, 0x6ea4308b, 0x8cef3709, 0x94d30d28, 0x2581fe7c, 0x1e4d0658, 0x2bf3894a, 0x36815b03, 0x8dd6e9a9, 0x000028 } }, { { 0x8833952e, 0x4f393630, 0x35d774e7, 0x820126d5, 0x78ea40ad, 0xa4e2ed1f, 0x26c46d9e, 0x1b738d32, 0xc65c0602, 0x1b41eedc, 0x1e958c43, 0x4704cdcd, 0x7143f07d, 0x83eb8764, 0x9337698, 0x7eb5ff55, 0x000162 }, { 0xf0a5695a, 0xc004a2b3, 0x342dec6, 0xa4a56bbd, 0xc004f16b, 0x52b1aed3, 0xb52d641c, 0x8cd3206, 0x66004d7a, 0xd276fa40, 0xea49c6cb, 0xfd58758c, 0x31693d8b, 0x92414ea, 0x2c6b617d, 0xc2df59b9, 0x00003c }, { 0x72e85545, 0xd7c720b8, 0x1674cbf9, 0xf2f0e108, 0xc126642a, 0xa69cc6c2, 0x6ea37a6a, 0xae6e5b9c, 0x83b67593, 0x39d7cf92, 0x26217fbd, 0x51340939, 0xc411f922, 0x7d3253e9, 0xac85e09a, 0x1f758e91, 0x000001 } }, { { 0x3593ed04, 0xebcfcb6, 0xb1329849, 0x57b2b32c, 0xc0ca5916, 0xbb313f95, 0xaf56d1cf, 0x7454b2f8, 0xd375c678, 0xadb18382, 0x8d27a5c1, 0x457181d9, 0xc202a5bb, 0xc5114e20, 0x499bb72d, 0xd77f20a3, 0x000105 }, { 0xf230215a, 0x7824bab1, 0xe0c52365, 0xd2e9cd81, 0xa9a4b618, 0x435d25c3, 0xd59a8879, 0xb6864143, 0x14a8f46d, 0xa23cc034, 0x24d488c0, 0xd4042e30, 0x8980b46e, 0x3fc68f35, 0x4134b14b, 0xed23bc01, 0x000011 }, { 0xbe601e62, 0x7776f44b, 0x7f9b48e9, 0xe38d0acc, 0x7f8c85f8, 0x3e677cfa, 0x21c4b681, 0x2ae268e0, 0x1d0fad35, 0x6cde9eca, 0xdd2c7664, 0x63f5cade, 0x30900b6c, 0x36939755, 0x2e9e3e6, 0x5c54a127, 0x0000fb } }, { { 0xee09cc32, 0x66a3b1a1, 0x783c811b, 0xa496446f, 0x946a7c37, 0x3a2c79a2, 0x38a543e7, 0x48cfb193, 0x56ab85dc, 0x6c3c6092, 0xf4d0cb9e, 0x1d747d31, 0xf5142556, 0x51f2425d, 0xa40a1bc6, 0xe37d38be, 0x000069 }, { 0xc294d572, 0x548d850c, 0xd1e6c4e7, 0x85609fa, 0x988bb4a2, 0xb8e9ae14, 0xec1af604, 0x3c5dec8a, 0x4a987e77, 0x1f32eff2, 0xe331f361, 0xbb88871b, 0xad20e258, 0x2e55ff20, 0x70d0b51c, 0xd11d2b2c, 0x000032 }, { 0xfc5356f0, 0x8c27f256, 0x81f35315, 0xf3b8ae1a, 0x3bce7f79, 0xe63cfad, 0x832fd6a2, 0x6d34e199, 0x1e8b2c21, 0xdb6438af, 0x2a2b3060, 0x261a8439, 0xd464d0a7, 0xa6b22c70, 0xc2cc4fe1, 0x3e5e3c85, 0x000069 } }, { { 0x93b58e30, 0x8b747742, 0xe7617ec3, 0xc38c7ca6, 0x6eaae77f, 0xd56524e1, 0x50796db9, 0x2df40c40, 0x19b4d145, 0x40563379, 0xf6c9b424, 0x709fe8fd, 0xe2f3c44c, 0x41c71508, 0xfe72062b, 0xea5ada52, 0x000105 }, { 0xdc815729, 0xf9e2bc54, 0xecf8ccad, 0x616de359, 0xe235214a, 0x76cee490, 0x6128588b, 0xdd02bdd2, 0x935f075e, 0xcb5f0f99, 0xa7821909, 0x22131d0a, 0x9e443a07, 0x6f67b411, 0xae29d9d9, 0xd0413ce, 0x0001ea }, { 0x66d5e8e3, 0x4bc52bb7, 0xe68de269, 0x4143162f, 0xb82be58b, 0x377e431e, 0xfe4e6c5d, 0x30e39d03, 0x6531ad2c, 0x900df325, 0x41893bcc, 0x87dbac22, 0x73e13b8b, 0x47d88d84, 0x15600a7d, 0x6f02b456, 0x000156 } }, { { 0x896883e6, 0x3d1d6be6, 0xd99d0ee6, 0x7f382286, 0xb275c312, 0x7e2aed79, 0xdcd8999b, 0x99d90a46, 0xc337722, 0x3062ebcf, 0xacc3cccb, 0xc65e29ad, 0x7daaff38, 0x8d723fc6, 0xaec50900, 0xec25c096, 0x000033 }, { 0x23148a5d, 0x4dae77eb, 0x293ff839, 0xcd6e8c1, 0x86a871d3, 0x2de12acf, 0xd77c6e22, 0x8152e359, 0xe47ee2f9, 0x79ed22b1, 0x82d5dec7, 0xfb203637, 0xe0d6d4dd, 0x4e314d33, 0xcc9324c0, 0x9666f5d3, 0x00000d }, { 0x2dd1bbf2, 0x3a0cc541, 0x52683d0, 0x44d0045d, 0x8ebcc68, 0x1a9c15d3, 0x17fc415, 0x87093978, 0xa1eb225, 0x2d44a2fb, 0xf584aa93, 0x334ea549, 0xfa9f3ea8, 0x67aa0775, 0xef0f175e, 0xaeb67910, 0x00001a } }, { { 0xb575232e, 0x107077b4, 0xfa506866, 0xa8b2258e, 0xb4413a08, 0x98eeb5c9, 0x1f1e6dd3, 0x750610f6, 0x3ed034a3, 0xd0d8e3d1, 0x73dbda9a, 0xf95a3c9a, 0xf5133a64, 0x32468bd3, 0x139bf2a0, 0x51a33e59, 0x000150 }, { 0xf5eb7983, 0x559c2d6, 0xa05405e5, 0x2c2eb0ad, 0xd003c9cb, 0xf22692b9, 0x5c61b8a3, 0x3af87b3b, 0x476a4655, 0x6a26111d, 0xe66f0f17, 0x3d14cc57, 0xdedd06ee, 0x5c3876a3, 0x75ebaf8a, 0xddf61534, 0x000136 }, { 0x9f66f353, 0x46b5d172, 0x9193bea3, 0xdeea765f, 0xd8fcbf4f, 0x99933bc8, 0x96071792, 0xea56d872, 0xa2c7ed95, 0x9da7a388, 0x533a8c3, 0xfc2db2ff, 0xf11f7159, 0xec214bdd, 0x8399baca, 0x7fdc4476, 0x00005a } } }, { { { 0xa78cddc2, 0x15e084e9, 0x5acf31c9, 0xe99d1c12, 0x5b2a8a47, 0x18842d3b, 0x53e0754f, 0x82ff327e, 0x5f693a05, 0x6cb8d232, 0x539832cb, 0x9dd7faa9, 0xb2398759, 0xcfa5e0dd, 0xd2172e22, 0x23d79e5a, 0x0000fc }, { 0xba061324, 0xcb45cd85, 0xda197185, 0xfbc22ce0, 0xfd964e5c, 0xd95813e2, 0xa26138a7, 0x7f6be4e7, 0x9004de, 0xc9a984d9, 0x4c242ad0, 0x17fefa75, 0x6abe7fb9, 0xfe6d22a8, 0xe10ba337, 0xd2984e, 0x000081 }, { 0x45309848, 0x9c76f14e, 0xbcfd1fef, 0x6c570535, 0xec0608e3, 0xb0510c49, 0x2dc1b75e, 0x45f4db57, 0x9c693bf4, 0x61e86428, 0xe09bb42, 0xf939aee3, 0x11906367, 0xe907a8d5, 0x91afb986, 0xc2e4ad6b, 0x0001f5 } }, { { 0x4a09c327, 0xa6bbf52a, 0x23cde093, 0x3162f89f, 0xd00bdbf4, 0x386731a2, 0x405e89c4, 0xaf4d73ea, 0x555809b3, 0xbd764812, 0xb9e2bab8, 0xc7644c91, 0x9fc2224f, 0x3790af8, 0x9365347f, 0xb675c90e, 0x0000ef }, { 0xc93d2ed9, 0xcadebbcd, 0x90cc3857, 0x78a86b4f, 0x8f71c193, 0x69bd8ba, 0xf7fce8cf, 0xad9edaf2, 0xe3eaa605, 0x9df5c431, 0xf14f9940, 0xe85293d9, 0xc7d4ab8b, 0x6e1c2634, 0x494a5154, 0x46567291, 0x000185 }, { 0x1729a424, 0xd6852c6c, 0x5b8da677, 0x44f8d407, 0xcf034836, 0xc4c6f00b, 0x6cbb344b, 0xf5fe2fd1, 0x14fe08b3, 0xb6c01444, 0xbb403f4f, 0x55ddd612, 0x4cff1f27, 0x60eaaa78, 0xd90cde37, 0x8b204249, 0x000165 } }, { { 0x7c28c44d, 0x69fcc2c6, 0xbb88ed75, 0xfe61f207, 0x9640c02b, 0x9409604d, 0x1d8ab0f3, 0x46836fd7, 0x9ab9c8e4, 0x66a76977, 0x21f3d3c7, 0x6b21af92, 0x9ea2e1c0, 0x1f9ed780, 0xeab4f31f, 0x2c5952bc, 0x00010f }, { 0x641d0042, 0xd5e9e5a9, 0xded8a750, 0x1aa1ffac, 0xd8883cd, 0x7b51835e, 0xdec8263, 0x707bd241, 0x6f19164a, 0xde7bd338, 0xcb8d481e, 0x9c0c1c7e, 0x68c8f993, 0xc1ff8baa, 0x5fb5d339, 0xf7cf3160, 0x00003a }, { 0x372d52f3, 0xd7ebec15, 0xe085a596, 0x40112aca, 0xa0e9f5ac, 0xc9655ed4, 0x70f9dbb3, 0x15f475b7, 0x4016267b, 0xe8f8c79b, 0xab63c5d9, 0x1c29eaab, 0x7791c815, 0xd0b99292, 0xbeeedf05, 0x1199d193, 0x00015a } }, { { 0x4124b091, 0x581f206a, 0xd5afe970, 0x40dbe02, 0xd6ffe2e8, 0xb3397bc3, 0x8f521fcc, 0x1e716daf, 0xbc7551c7, 0xac343236, 0x607f9c2f, 0xb814ea40, 0x93237dae, 0x16e0ad15, 0xee7367cc, 0x795bf68, 0x000117 }, { 0xacfc6048, 0x57e575ec, 0xce1746be, 0x44ee864f, 0x7e5c46c, 0x9681af25, 0x130fe9f3, 0x91b6f67, 0xa1a9c262, 0xe579e4b3, 0xd899d6d4, 0x8048b86d, 0x8a0788c8, 0x97882025, 0x56173fc6, 0x81da0c52, 0x00007a }, { 0x935df64c, 0xe65f14ea, 0xe33fd61b, 0x4e8bbcf2, 0x13f045a5, 0xca8bce91, 0x647c4975, 0x8daca01c, 0xd8884405, 0x6c3c86af, 0x9272bfc7, 0x155616d5, 0x62c77757, 0x9695c5c2, 0x1c098f09, 0x4b6c70c4, 0x00007f } }, { { 0x66b59dda, 0x5d93445, 0x41b235d5, 0xed3c9d8f, 0x480eaf30, 0xb2350d15, 0x1dcc6a02, 0xb0573500, 0x30b9c409, 0xb53d2159, 0xc4e2682a, 0x3b349bf2, 0x6ba0d1d0, 0x7d1884e1, 0xe09949e8, 0xf521f5f3, 0x000009 }, { 0x5799c148, 0x72cea9af, 0xd27a5d4a, 0xdd31b148, 0xae3ff354, 0x9fc87b08, 0xf2ef904b, 0xd185f88d, 0xa0f22f0, 0x82198b2e, 0x9912079b, 0xa104e039, 0x97cb1727, 0x8706324f, 0x27f760db, 0xb63ff64d, 0x000158 }, { 0xb4e48334, 0xd8023b1f, 0x6b1e7805, 0xb7ea6fd1, 0x5621430e, 0x4a7547c2, 0xe152d6e, 0xc63972c, 0xf25b0e84, 0x435d8b3d, 0xea5bf60a, 0xc06ad6c3, 0xfa516001, 0x40e9a7ea, 0x8ba81c04, 0x5a820c3e, 0x00004e } }, { { 0x8166b443, 0x5e85a3fa, 0x4f58abd2, 0x8cc0421d, 0x657ce724, 0x32468cb2, 0xac9b1c0b, 0x6921d095, 0xccd9e0b, 0x10d443d0, 0xccf748f8, 0x806bb0e7, 0x5e6da419, 0xdeabb0d7, 0x83020662, 0xc2a5f7ec, 0x000115 }, { 0xa75557b6, 0x956e121d, 0x1f3c4440, 0xbb9e150f, 0xc04d31b6, 0xdae0d57d, 0x6bd75ec, 0xcc548b0d, 0xd6dc1612, 0x5bc4a39, 0x42f60b35, 0x4ca12b84, 0x33c3cf71, 0xf24e7f71, 0xa7357c1f, 0x2aad9310, 0x0000fb }, { 0x46b681c3, 0xd6e0d2d3, 0xda1dd034, 0xb4a12b27, 0xaeea18f4, 0x1ac0876f, 0xdb5346af, 0x56955df1, 0x8a24832a, 0x321b287, 0xdf23feb, 0xf6f1f34a, 0x134f2020, 0x82f6c7a2, 0x5dee00ae, 0x4e0aabd6, 0x00017f } }, { { 0x9de93cbf, 0xb6ba9f3a, 0x28943b10, 0x78da7105, 0x1acf95aa, 0x764973f0, 0x6c47183c, 0x5f4f7846, 0x12d0cec3, 0xc31dae24, 0x75d652ba, 0x6c41e3d8, 0xa1112bbc, 0x62212df3, 0x14f4e8f0, 0x34201945, 0x00011e }, { 0x5b0f8dff, 0x4647e0ca, 0xbc4444c, 0x22fcc199, 0x2492a61a, 0x79db2692, 0x9d2d5262, 0xb2b0af6, 0x2b8dbaa5, 0xb97e520, 0x6b4081e4, 0xdcd3fdc1, 0x72038de6, 0xb4180c73, 0x1aa36152, 0x293fa8cc, 0x000065 }, { 0x5951ad38, 0xcd869ca0, 0x2187c0ad, 0xe8261750, 0xdc2fd1ec, 0xf2446f79, 0xaad14847, 0xa4b28ad2, 0x3259bd8b, 0x398bff45, 0xd53ee52c, 0x4ac0bfb8, 0xb5b409a8, 0xac488f34, 0xa1c1d98b, 0xfa487ab4, 0x00001c } }, { { 0x897025a6, 0x14fa1bfe, 0x6fe1f52d, 0xd7d91035, 0xb26874b6, 0x7d8f0001, 0xfc823d57, 0x9ee12539, 0x7e6512b8, 0xc3441e06, 0x2bdc0019, 0x5adff393, 0x97e00363, 0x7a6d9992, 0x17927fcb, 0x9bd582b3, 0x0000e2 }, { 0x5ddcdde8, 0x623f3898, 0xb77770aa, 0x63f7c9a6, 0xe2b1f1a, 0xa5a91382, 0x55cd185b, 0x416b5ab8, 0x51e60dd6, 0x550a4a63, 0x1990f453, 0xcca51afb, 0x79141d66, 0x320be7e2, 0x1e0721fd, 0xc9252b77, 0x000095 }, { 0xaf2fa544, 0x588ee554, 0xf282a355, 0x6b36ea13, 0x920be614, 0x97cd8c2e, 0xac4962a4, 0x413e7b62, 0x5b72d7ae, 0x2eaccbf1, 0x5b4472dd, 0xdab24349, 0x73f9b072, 0xb6a00ea6, 0xc6cf894c, 0x12011975, 0x000050 } }, { { 0x6facdfa7, 0x248b3c25, 0x1e14e4fc, 0xbc568343, 0xfd01e25a, 0xca5db9b3, 0xaf149e94, 0x8475c576, 0x29f6914b, 0x836ceec1, 0x9c375216, 0x85f2dff2, 0x6f100724, 0x5a20854d, 0xf54ce6f8, 0x5d585bdf, 0x00009a }, { 0xcbebab5f, 0x72eab7bd, 0xc7a65018, 0xbb16310f, 0x8a934ebf, 0x67e25ed1, 0xb4dcb0a8, 0xbed1d0ce, 0x3d035a2e, 0x9b7a5bdf, 0x4010b112, 0xa5722063, 0xac39fbe1, 0x9af15a2, 0xf8b7ae6f, 0x45d6790, 0x00012c }, { 0xbd196f71, 0x916cc00a, 0x975ea456, 0x155c7f0, 0x8cf8b978, 0xfd7ce8d3, 0x38c7db30, 0x7c00d968, 0xb003c78b, 0x799ca7b8, 0xbea03b92, 0x582d165c, 0x489bf952, 0x80819876, 0x6a3d9e13, 0x9a5c8cc0, 0x000068 } }, { { 0xec8ad743, 0xbd91b7e7, 0x4c3bbe4c, 0x6ef44fe7, 0x6a4c49e2, 0x46fb5a31, 0xe0fc0091, 0x50ad836, 0xde13bbae, 0xa0f3f669, 0x2a9a6a7c, 0xb8c7661e, 0x3f2ddc08, 0xcf8380ce, 0x53421374, 0xb76947f, 0x000002 }, { 0x9326e84b, 0x98aba6bc, 0x27839558, 0x26b96931, 0xcf4ec51e, 0xc5ddae88, 0x490372d5, 0xeb06700a, 0x1ebc2a65, 0xea4bec00, 0x3788a048, 0x2ae8bd06, 0x83e88e34, 0x4f6292df, 0x5947d1d4, 0x52a73f75, 0x000181 }, { 0x45780903, 0x37c3a4dd, 0x6660252a, 0x747f9867, 0x76aa29ee, 0xed43fca6, 0xc99274c0, 0x980cf94f, 0x9e198640, 0xe5d6b72d, 0x67dd62e5, 0x389a153b, 0xf83616f8, 0x5cec59b7, 0xe6f84bfa, 0xc000e863, 0x0000c4 } }, { { 0x6cfde90c, 0x2ead468f, 0x4874b9ff, 0x1a6e22e5, 0x5ce0b7fa, 0x8ebcbf4f, 0x5a91aab3, 0x8a501877, 0x20a0660b, 0x651095cf, 0x5121efcb, 0x357987be, 0x2ca449e9, 0xdb32870b, 0xf9a1754f, 0x249dffcb, 0x000059 }, { 0x59690c59, 0x26dac188, 0x7d80518f, 0x316e37eb, 0xaf481f27, 0x8c2aa412, 0xc8bfdaf7, 0xc977aea2, 0xd56aeabd, 0xb6556679, 0xec98258c, 0xc23fd838, 0xa7960935, 0xee956e10, 0x9e117342, 0x48d03dae, 0x000092 }, { 0xb489351b, 0xee4586b7, 0x4d923dc8, 0x3bad16c9, 0x6d889ae0, 0x416c3c18, 0x8faa0a75, 0x25348f06, 0x7a32d350, 0xca0e1512, 0x7f94422c, 0x4f57725c, 0xffc27c85, 0xa516dca7, 0xda04889d, 0xb5b1d034, 0x0000fb } }, { { 0xbde22aa1, 0xcfe0544d, 0x1d32796c, 0x5d422ef6, 0x407c6870, 0x9c6a3925, 0x14bdc417, 0xa23d63f7, 0xa11d1b92, 0x503e361e, 0xb6ed5955, 0xb8db29f3, 0xbbd0dfa8, 0x9736a53c, 0x9b03949a, 0x2781e4a4, 0x00010e }, { 0xa460d79c, 0x1d86057b, 0x10e7e4ae, 0x24965f2a, 0xb7277b4b, 0x5454662f, 0x53336abe, 0xa9a1adfa, 0xe354f33d, 0xe92e3700, 0xbe488e88, 0x77520912, 0x1011dc90, 0x3d525d77, 0x6ebb4bfc, 0x7627a49e, 0x0000ad }, { 0x5b9b9675, 0x911a0871, 0x398e5df4, 0x5d20dcf9, 0xac418b9b, 0x84042f53, 0x156e376, 0x475daa3d, 0x2d26920c, 0x56c0ae9f, 0x17cefeb3, 0x423fad13, 0xdb1f3f92, 0xdf151152, 0x910f338a, 0x59f66141, 0x0000dd } }, { { 0x9216feee, 0xd30290f1, 0x34832654, 0xfd20e024, 0x9f116a23, 0x760dbec3, 0xf1a08093, 0x8c455d18, 0xfb741180, 0xa3fa15c1, 0x3495cd1a, 0xce3a434d, 0xce5e755, 0x74525cd6, 0x8a36d623, 0x9de61dec, 0x00018c }, { 0x2a2f245e, 0xe4544a, 0xc6430fee, 0x27340b28, 0xf15ec92c, 0xabf5cda8, 0xdb795b41, 0x96afa0be, 0xf805fd7, 0xd1d41592, 0xacc47cad, 0x193404c9, 0xc55824cb, 0xbcb5e010, 0x36b7ba9b, 0x7ea4678f, 0x00006b }, { 0x83fccc5f, 0x9aa0534a, 0x67ff313c, 0xe4c6da56, 0xa9893213, 0x5bc7f76e, 0xd2a414d1, 0x3fe838e9, 0x544064ae, 0x560f5a7d, 0x4e8283b1, 0xb1b89a7f, 0xc02b39ba, 0x1e64cb7f, 0x60187216, 0x4e592113, 0x000065 } }, { { 0x2f3e9926, 0x83eef292, 0x648d9ad7, 0xe0fac7ea, 0x9ab24787, 0x76570f0e, 0xc3a3100f, 0x8ea16e4e, 0xbf91aa58, 0x590dcccf, 0x25ed9c21, 0x97e1fd88, 0xd583ffb5, 0x5c08e83d, 0x556bf0c7, 0xd6bdf7ac, 0x000028 }, { 0xd18cad20, 0x1706e75a, 0xd24f5507, 0x8f75cabd, 0x5d45b696, 0x7818d0c7, 0x1635db28, 0x1fb1cd35, 0xd024f582, 0x711794ad, 0xd0969cb2, 0x17d5afdf, 0x971faa36, 0xed8bac72, 0xcdc310c5, 0x97bc03d3, 0x0001b8 }, { 0x565db6db, 0xf91e8fd5, 0x671de5ed, 0x9f152ce8, 0x8c0cf929, 0xb7d6ca7, 0x6c429a9d, 0xdfbe5d46, 0x478617aa, 0x832ae26f, 0x745b6a8c, 0xa4d7c0dc, 0x13c4f1e3, 0x6c3775eb, 0xde3b22d7, 0x85ba7c9b, 0x0000e7 } }, { { 0xd8e22397, 0x38fdf380, 0x52747cac, 0xc286473e, 0xdd844ae7, 0x3fd209ce, 0xbac3f8f3, 0x1b0e1680, 0x38eca5fc, 0xc28db279, 0xebc5953e, 0x4770edd6, 0x8a134518, 0x3bf9a888, 0x8eb1f591, 0xca8d44e6, 0x000039 }, { 0xd98d3f8d, 0xcd1a91ca, 0x61fae159, 0x30226b7b, 0x3bfa31f6, 0x2dab4bd1, 0x1c23a5cc, 0xf7ab26a4, 0xe999ce93, 0x94d14942, 0x4952c674, 0xa5c4845e, 0xb2d2a58a, 0x15506b57, 0x1939758, 0x397d0c55, 0x00019b }, { 0xb8c9da8d, 0x50cbc040, 0x5e7b3b10, 0x9cfba818, 0x2217b8e9, 0xbbdf6684, 0x5ddffb58, 0xeb98005d, 0x192b96cb, 0x9832e0bc, 0xc95b9939, 0xfeeabdae, 0xf5901b18, 0x61388338, 0x442a9c12, 0x2765028, 0x0000a0 } } }, { { { 0xee557d14, 0x52100018, 0x99adc471, 0x1c4be86f, 0x3d3f2b51, 0x7a353b57, 0xaedb141d, 0x95564ccb, 0xa9c1ba8d, 0x243b139, 0x2c507d6c, 0xe50d5762, 0x7e0d4ba, 0x29cf61da, 0x7bf3d7ea, 0xc7c3f99d, 0x000150 }, { 0x2aa46970, 0x420246ce, 0xc605892a, 0xe0cedd82, 0x57b2771b, 0x2d3d89d4, 0x6b526b9e, 0x4f316c9f, 0xf83adcb3, 0x13c03673, 0x44042e54, 0x5418c60f, 0x989a3402, 0xea6eece3, 0xc4f9bd11, 0xefaed6d2, 0x000124 }, { 0xd1b7ec6a, 0x7d5a982f, 0x59dd15fe, 0x3b957e30, 0x1d8bd23b, 0x3d68d2f0, 0xd8b9dcb7, 0x7fde2d19, 0xcbb8177, 0xa824c523, 0x9e8c43df, 0xe80d4b96, 0x910632c3, 0x1ec87ee0, 0x83dbf957, 0xec14deb3, 0x00000b } }, { { 0xc3a8ce91, 0xb1ee1fd5, 0xb557bccc, 0x5d710bff, 0x6108a6db, 0xc6104383, 0x1e4f4b56, 0x4b923801, 0x83c19c87, 0xb0a6dd79, 0x7e418dfa, 0x962ed9b0, 0xbf121ed9, 0x96743b4d, 0x18baa745, 0x5367860f, 0x000007 }, { 0x8f106365, 0xd6eb65c1, 0xf093c00c, 0x2de24b88, 0x47a0893c, 0x68d2024e, 0xf407be8e, 0x25fceff, 0x5524e021, 0xcf42921d, 0x1fa53544, 0xd5a5518e, 0x3985ba4f, 0xec97ac92, 0x677b5a86, 0xaffd6a9d, 0x00016c }, { 0x82b8fc4f, 0xe920964a, 0xda54dcf8, 0xa75deb63, 0xa36aabd3, 0xb433cda2, 0x6e376091, 0x5da4f102, 0xad436123, 0xa4b111ec, 0x7e87af6a, 0xcfd8b4d5, 0x3bd80241, 0xdcc9d711, 0xa5e7c50d, 0x94bae307, 0x0001e1 } }, { { 0x6278ce6d, 0xc18d6d55, 0x16801f32, 0x29635783, 0xbe83489b, 0x603e4d9b, 0x9d69db7c, 0x4355c443, 0x58429771, 0x1291e3c8, 0x13f5a86, 0xa371852b, 0x4b62d1a0, 0x35e28d6b, 0xe1e5f185, 0x98eb1736, 0x000170 }, { 0x8001fef5, 0x24090fc0, 0x49a7b86b, 0xd6df48bc, 0x4e950ea, 0x5814af30, 0xf5042b13, 0x7f5a08fb, 0xe4ef93c0, 0x6a39d5c6, 0x841f3f84, 0x415917e4, 0x99afb539, 0x6c84744b, 0x7bf756, 0x7188d311, 0x000068 }, { 0x9038e47d, 0x498bc132, 0xc4992ee6, 0x7886a275, 0x220e2785, 0xa10d70aa, 0xf10a59e7, 0xcc9e659b, 0xa52234a, 0x9024f3b3, 0x1e151a3c, 0x55339e57, 0xadb368de, 0x64d0ce59, 0x17ec78fa, 0x12ca36b, 0x0000a3 } }, { { 0xb40bab81, 0x854f4e33, 0x56c1eb3, 0x3eea5132, 0x819d8f1c, 0x7b5a6ef2, 0xb1a61dbe, 0xf749b6d9, 0x706ccd24, 0x63abec87, 0x718c9a76, 0x8e74a67b, 0x8ed7b964, 0x52e3dbec, 0x68e876b1, 0x89fd218b, 0x00008a }, { 0x1f37b2fc, 0xca974912, 0x1a145af1, 0xe3a9246d, 0x63406b71, 0x7ebdcd67, 0xacd3e06b, 0xfc618b36, 0x900adf8e, 0xb5e3338a, 0x1bcf0e04, 0x86db2223, 0xaeea4446, 0x137085c3, 0x1936eff7, 0x33b4565b, 0x0000e8 }, { 0x3303616d, 0x1cbdfab6, 0x2c6e8654, 0x239bcc25, 0x660ef95f, 0x6ae4944, 0xd73238ce, 0x54316e54, 0x576e74d9, 0x6fba7019, 0x8adf0fe1, 0x4c98e12d, 0x2436c7d, 0xe03e1e8, 0x2c28694c, 0x6c9435a8, 0x0001f7 } }, { { 0x345efa4c, 0x1f54af7f, 0x965bfbe1, 0xcca1954a, 0xbf2caa79, 0x70ab610e, 0x8e2b0d8a, 0xaa5f5bd1, 0x9d0f8659, 0xc852debc, 0xfdcadb23, 0xa24d739a, 0xf037e13d, 0x3930f1a0, 0x2323dc0f, 0xf650f6a, 0x00003a }, { 0x48ff0c9c, 0xefefba4f, 0xe246adbf, 0x131dd0de, 0xed70289, 0xcaf8c24b, 0x43792ce2, 0x9603865b, 0x1d083dcd, 0x1951fe64, 0xcdccba8c, 0x5084c7cc, 0xdd207f89, 0x3300bff0, 0x776be717, 0xe09f4ae8, 0x000147 }, { 0xeb16861a, 0xea534adc, 0xc5222989, 0x56c77930, 0x27cf5823, 0xb84b0023, 0x5afd6c3d, 0xd3ec0a0c, 0xdd3f560, 0x16c54781, 0x66188e38, 0x264ee163, 0xbd5cb423, 0x933075f9, 0xec1ccae5, 0xe6add11b, 0x0000e9 } }, { { 0x2abd11e6, 0x20579636, 0xbe3a66b0, 0x4e62d268, 0xd6956511, 0x4a747d2c, 0x1a104b78, 0x8b4fe8b4, 0x3dbd0f68, 0xbc40a22c, 0xd3bff081, 0x1102c200, 0x3c28d5f4, 0x34524e1, 0xa9b2533b, 0x67808724, 0x0000fc }, { 0x881cb9c0, 0x650ea9a1, 0xd07bd005, 0x4e884607, 0x7d731688, 0x6dcf064a, 0xa5ac3f90, 0xd00d8f04, 0xafaee74f, 0xa22236c2, 0xcc8a284b, 0x65722bd6, 0x85a31f7f, 0xb543a7f7, 0x7b2bddec, 0xa68a4d32, 0x0000ce }, { 0xa6b7ab15, 0x4d8da4df, 0xa2979a72, 0x6253f82b, 0x857e98ef, 0x173b4420, 0xd7bb3164, 0x1ca9b144, 0xc5e1decb, 0x93b35eef, 0xbec8b595, 0xf507a429, 0xaba79f43, 0xdb6c059f, 0xfca8e3c5, 0x75dbd1c5, 0x0000a5 } }, { { 0xc332254d, 0x23126fe9, 0xd4f4ed0b, 0x7160dff7, 0x89487b79, 0xe18037f4, 0x74705c76, 0x8a98b642, 0x2dcd67b3, 0xd0f3f738, 0xcf1c239c, 0xb6ea2081, 0x9b866a10, 0xe1d2aa8f, 0xb267231, 0xe2217b14, 0x00004e }, { 0xcf67f2b3, 0xe21cf2fb, 0x5a32f7af, 0x72af2e1e, 0x7d0781db, 0x648cfe3b, 0x13a5aa97, 0x75cbe567, 0xb69cf517, 0xd60f969c, 0x38125d17, 0xd1adea4c, 0x9a5f7ef6, 0x57411869, 0x7a1db649, 0x41b73d14, 0x0000e3 }, { 0xe97c98b6, 0x869a9084, 0x63a1a0ac, 0x16ddb8f7, 0x7787a23f, 0x7573b67a, 0x97fe32be, 0x1aa9baa1, 0xf81f82a4, 0xd32d0334, 0x1f70964e, 0xadf7078e, 0xb4e09a95, 0xbd94b94f, 0x6308dfd7, 0x21b8a71b, 0x00017d } }, { { 0x4ebba0ab, 0x97e87d83, 0xc5f32340, 0x6c056110, 0x41523973, 0x7936c74b, 0xcbdeb115, 0xfd894e60, 0xb5898eec, 0x1e8f7fe6, 0x514631b5, 0x46412818, 0xc1ff56c2, 0xe5324ab2, 0xf304cca7, 0x3a60d96a, 0x0000b2 }, { 0xc8183e82, 0x1c745fc6, 0xa118ae98, 0x17ac91cd, 0x2535e75a, 0x63dcb79, 0x88f39329, 0x3140ed2e, 0xbbf04cfe, 0x28d116cc, 0x99682702, 0x4dbc1333, 0xa713015e, 0x2d45b491, 0x4087440b, 0xb350c517, 0x000143 }, { 0xadf90d2c, 0x181ef170, 0xe6c9de28, 0xbd6bddf3, 0xd5ae4ffe, 0xbe6869bd, 0xea0c5f8b, 0x2b02d4e2, 0xff7ab8cf, 0x2fd9cfdf, 0x1ae2da16, 0xd76e5b46, 0x7ce9332a, 0x45e6ce4a, 0x7ef09c0e, 0xbc00f059, 0x0001ac } }, { { 0x9bc961e8, 0x9ffdf30c, 0x6bdb550d, 0x9ce00c3e, 0x50647603, 0x647f493e, 0xad89b26b, 0x5fc53ff5, 0x34c0c30d, 0xb81ec801, 0xb70814df, 0x2eda9cb3, 0xcbf15328, 0xe924bc56, 0xb307e5f8, 0xf6d4ffe4, 0x0001a5 }, { 0x6f0104c0, 0x9e0dd3c9, 0x4fec116d, 0xe743b2f6, 0x7d1a761b, 0x1b71142d, 0xb4f468ce, 0xef2b427b, 0xe77df911, 0x43f866aa, 0x363f1cfb, 0xd3ace5cc, 0x6da2a48a, 0xffeb49b5, 0xd8921eca, 0xe1f8949f, 0x000138 }, { 0x72a4131d, 0x9a182ef4, 0xa03a16cf, 0xa73c324f, 0x45e6187c, 0x93519a09, 0xc02cda61, 0x2dc6e683, 0xa152afdb, 0x9537764d, 0x10798e7e, 0x5f7136d5, 0x4a42b10a, 0x531d5dc1, 0x208b4906, 0x70387c3e, 0x00018f } }, { { 0xa4b0bcaf, 0x3651a75a, 0x4ba33076, 0xbd6ec7eb, 0x41362868, 0x78c6dbc7, 0xeb1132b0, 0xb38e29bb, 0x53e58f59, 0x12018f51, 0x3f7a16c6, 0xbc23bc0b, 0xc00213c4, 0xc0b6a229, 0x760246d3, 0xd9480774, 0x00006f }, { 0x1b4b2dd4, 0xac41c89a, 0x5cda465d, 0x2f1d25c, 0x5e6e85d7, 0x43f57247, 0x1bc3e2eb, 0x20d9a898, 0x91d8ed5, 0xfb295f03, 0xf1833777, 0xfeb8c3e7, 0xcc96de5e, 0x34fa07b, 0xe02afac, 0xf92c3d38, 0x000077 }, { 0x920f813c, 0xfe714154, 0x861ed304, 0x349ab234, 0xec647f91, 0x5dff9b2e, 0xce8a295e, 0x86a691c, 0xcb0dfa18, 0x860dba90, 0x29a24eff, 0xe1a48625, 0x8678b01f, 0xf3fbd535, 0x8f30b031, 0xd20346f0, 0x0001ab } }, { { 0xda3a4eae, 0xeb25c3b9, 0xeed3d23a, 0xd7cb3229, 0xccc3f38d, 0x9fd690d4, 0xd8bb2687, 0x1bf0c4c3, 0x192a9984, 0x56f210ec, 0x9a72ec5c, 0xf71a0452, 0x371ce555, 0xf6b73f9f, 0x8915ea4f, 0xee44cf2c, 0x000008 }, { 0xb6423316, 0x8501438f, 0xaa6483b7, 0x553102d0, 0x542387f3, 0x2063e490, 0x542a48c8, 0x714ef5f0, 0x511b41fb, 0x1199da49, 0xdd99902c, 0xeff8f826, 0x2dfd8b6d, 0x1827b1ec, 0x7902270a, 0xf80c9716, 0x000045 }, { 0xb50baac7, 0x38baff41, 0xabeaf5c1, 0x6b0f2a2e, 0x18b9ca6d, 0x436b99e0, 0x4b41b6ad, 0xe31e343b, 0xbcfac686, 0x79cc1b07, 0xf57159a, 0x7cf1d8a2, 0x798f284, 0xd21ff4ab, 0x7dee6b38, 0x53176062, 0x000152 } }, { { 0x1c978ddf, 0xc10b1cac, 0x55a1a97b, 0xa5233aa, 0xf5742dfb, 0xd855e577, 0x234efac, 0xa162b049, 0x8a83df3a, 0xccc0223, 0x95c0e53d, 0xcc1bfb43, 0xd33428ee, 0xeeaf8818, 0xb6c59f07, 0xba1d9922, 0x00016c }, { 0xd3d698ad, 0x356becf8, 0x2746579b, 0xcf867024, 0xbf2f2c04, 0x224d33ff, 0x62ed4162, 0xf59222e6, 0xb06d54ca, 0xa8f76b29, 0x60a5207e, 0xfa9d53e9, 0xe709710d, 0x2d3ac242, 0x269aa686, 0x8d59964a, 0x000148 }, { 0xe710a644, 0xa85dd21c, 0x9ea98b5b, 0xa001659f, 0x89f15f11, 0x360210ac, 0xd342d1ea, 0x3ead37d5, 0xe7345bd0, 0x971853f4, 0x645d02a5, 0x7a878ffa, 0xe5503e8b, 0x2911ddca, 0x259a5292, 0x9541d8ed, 0x000199 } }, { { 0x1c66a377, 0x74dc717, 0x94ae1091, 0x217e88f7, 0x1d5f798, 0xe08c08cf, 0x9477984c, 0x38256b3e, 0x524199f0, 0x67024178, 0x9ed5962b, 0xfccaa4fc, 0xdaa7a059, 0xf4ab167e, 0xbd579c1f, 0x447bb31c, 0x000025 }, { 0x457061f4, 0x6e07c8ea, 0x2b3dff37, 0x52334668, 0x37d0f790, 0xb9084af8, 0xdf3a2dc4, 0xc9469ee6, 0xb2c2ded7, 0x3405bd7f, 0x2f372a6a, 0xed76479e, 0x62c7766, 0x47a76dbc, 0x9b6af065, 0x325652fb, 0x00015d }, { 0xf14af66d, 0xa6f239c2, 0x3b7573fc, 0xcb265b2b, 0x599a8904, 0x73e93fe7, 0x715c9d5c, 0x81681742, 0x7fd06cc8, 0x313b0927, 0x1a8c9f70, 0xf81440f9, 0x7c67e93f, 0xf843fe7d, 0xea648433, 0xf8f27d92, 0x000137 } }, { { 0x20459c5e, 0x9fd092b9, 0x94368aab, 0xafd9be62, 0x16b7a8b, 0xd96fff0a, 0xbdd0290, 0xb6254835, 0x755f7774, 0xb5fd3629, 0x11c343a7, 0x102dbd3c, 0x73db308d, 0xd414f943, 0xf784ae74, 0xa9f27afb, 0x000037 }, { 0x7e6f653a, 0x95083320, 0x8d43d0f7, 0x537967bc, 0x5d472d43, 0x77195b6a, 0xd0987b7c, 0x84822f83, 0xb8235e25, 0x9cf96dd7, 0xc4ca7798, 0x983e81ae, 0x337398c0, 0xb1625365, 0xf3bd83d6, 0x706b8b2e, 0x000119 }, { 0x514ab08c, 0x4d3a5f43, 0x3770542a, 0x3c721700, 0x24a36a10, 0xd91e0424, 0x743e4007, 0x3b08ae2c, 0x12e13adc, 0xf3617224, 0x12264059, 0xbadf5258, 0xa8b3e197, 0xe807df83, 0x904ec291, 0x2cc37f40, 0x000155 } }, { { 0x731c84d2, 0xa61c588c, 0x3d825172, 0xd85ca962, 0x9cafced8, 0x9fb42b6b, 0x861abcfa, 0x1d9cd80e, 0x89abb4fc, 0x19580962, 0xb2ac54e6, 0x2aaf8b0a, 0xdf63a825, 0x66ed2ed1, 0x104d4908, 0x5d0c344d, 0x000059 }, { 0xc1a2425f, 0x917f8441, 0xa65e75c1, 0x570c9fca, 0xcf91fe1c, 0x9fc92f7c, 0x5f2515cd, 0x99a04bfa, 0x8393267b, 0x4316bf96, 0x4d99d3c9, 0x8e46fad5, 0x205bb30, 0x467ef623, 0x21bbacd0, 0x928e030a, 0x0000f2 }, { 0x3d0bae30, 0x38e2a619, 0x4ffbefbc, 0x28de1fc3, 0x9d9a36b9, 0x84163a0e, 0xa1ff760, 0x70db577, 0x32ebe53e, 0x7f784bcf, 0xf96a123e, 0xc8ac8670, 0xf0da4f55, 0x598bf7f, 0xa48b0013, 0x935d5da2, 0x000077 } } }, { { { 0x12649b36, 0x7993f9df, 0x9581007a, 0xe66944be, 0xed290603, 0x6fab9157, 0x4bc4c18e, 0xb11cd0a3, 0x83b8312d, 0x7c26b254, 0x63ee777b, 0xb295ff5c, 0xc5061143, 0x35885d20, 0x9b1c925a, 0xf7c3477e, 0x000176 }, { 0x49db59a0, 0xa9c819a6, 0x7ed40aa7, 0x9e567c20, 0x820499d6, 0x7c61c314, 0x371e6609, 0x10d8941c, 0x9f31138f, 0xeaabf3dc, 0x71ba17dc, 0x4751aad9, 0x55a4f77a, 0x6b12e7a0, 0x604d57f4, 0xe8c8da55, 0x0001b5 }, { 0xeb647b7d, 0x1c9f5f76, 0x53cacaa4, 0x90c6d98c, 0xb7e2d50c, 0x16c7a898, 0x7f86951a, 0x3135474a, 0x8457bfaa, 0xe5ae9189, 0x87cc2b7f, 0xd3cffddd, 0xcac57165, 0x26e983f9, 0x9650cb19, 0x964971a4, 0x0000e9 } }, { { 0xc6c11220, 0x8f6e165e, 0xcfa29219, 0x7a06158d, 0x34511c0f, 0xd12a915a, 0x6bb508c5, 0x4dea6f4d, 0x9481dc1a, 0x60b9661c, 0x2706af7f, 0x67f943f, 0x9328adbe, 0x67d3f65a, 0x2e7b9081, 0x1ae6628d, 0x00014c }, { 0x395a288, 0xf636e78a, 0x867b2d2d, 0xf513545a, 0xf451e788, 0xe0ba9b15, 0xb082560f, 0x19b4d93a, 0xf15dc178, 0x256f5caa, 0x156f38b1, 0x397c2187, 0x9bf03f3c, 0xd8f7ea89, 0x676115e7, 0x8198faee, 0x000120 }, { 0x9d654d83, 0xe9d604a8, 0x6f811fd5, 0x101cdbc9, 0x4d5b32bb, 0x44de63cb, 0x988c014b, 0x365d3b6d, 0xe65c7bc4, 0xa5778f42, 0xcfc830a1, 0x48db01fa, 0xb57d09a9, 0x422def67, 0x68fc7399, 0x1338f85a, 0x00016e } }, { { 0x5951b578, 0xf8cf6db8, 0xca8aff72, 0xf131ef5c, 0x4caa79c8, 0x63d1f5a2, 0x206cdd45, 0xac819924, 0x4dbad35b, 0x20a04fbd, 0x1ac109d4, 0x8b3b65a, 0xf37cb2c2, 0x73dbe113, 0xa7f75534, 0x45b58470, 0x0001ca }, { 0xbf1e5654, 0x26c964f5, 0xacf905dd, 0x211d932a, 0x6fb75914, 0x6d33c5f1, 0xd65469cf, 0xac8c9f2f, 0x5fe4a6d, 0xfadca839, 0x81bfdb5d, 0xb02b3808, 0x7ae3c1cb, 0xa5a100a, 0x4d1724dd, 0x76c3ecdf, 0x0000a4 }, { 0x933a369d, 0x2c88e892, 0x9aefcd4f, 0x576d8e68, 0x5777cc15, 0x2fa63d66, 0xf22b1026, 0x172e38d0, 0x5e8f369d, 0xd724ba20, 0x654300a3, 0x6b343f4d, 0x3d29286e, 0x23f6bd74, 0xfc21cda0, 0x9817816, 0x000164 } }, { { 0xcb350977, 0xb37ccadc, 0xd1b83ce5, 0x796212bb, 0xfd279528, 0x86229a19, 0x89041c1, 0xfd9f9dfa, 0xdab9c4b5, 0x1016ad57, 0xaf90b06e, 0xd1c24841, 0xed8d8186, 0x68509702, 0x5aa05a44, 0x3db61f32, 0x00013d }, { 0xef2b633, 0xeaf09499, 0x94a6a8aa, 0x39728e37, 0x8008b813, 0xe67bdb16, 0xe2cf5498, 0xabfb3b10, 0x3f38f505, 0xc1828491, 0x6a70607a, 0x1897b73a, 0xa56b4f42, 0xe7459829, 0x360981e1, 0x2cf5d22e, 0x0001d2 }, { 0x467545d2, 0xaf0d3b77, 0xbdf2d983, 0x934e09a1, 0x87a90be6, 0x4a9cb5ad, 0x3e923c67, 0x6753f191, 0xdf7bfba3, 0x55b3f145, 0xce9d1280, 0x5e133b60, 0x3adb984e, 0xf1bfeff, 0xc423caba, 0xf2c4e9a, 0x0001e2 } }, { { 0x8447f9ab, 0x8e30ab5a, 0xe8f6ee10, 0x16ace2d5, 0xeb19eef9, 0xda4eac01, 0x13263a3b, 0xb5a0704e, 0xf4bb1440, 0xd896a461, 0xa44e6997, 0x118d16ec, 0xe48932c6, 0x8d7d5e7b, 0x4de78649, 0xcc779de6, 0x0000ac }, { 0x5b405447, 0x51b56a31, 0xa89c14ab, 0xc33c5c53, 0xcf3aaadf, 0x5982f330, 0x2540300, 0x43e60cb3, 0x96f8f198, 0xda2a049f, 0x1fac7951, 0xa03cdc17, 0x68aab5c7, 0xd2696ffe, 0x31b60454, 0x78b0d5b8, 0x00017a }, { 0x234a1ca, 0x15f7d665, 0x80d1b640, 0x36cdef1c, 0xbcfb1e0e, 0x4f2fc1a, 0xb072ae75, 0x6e4ad794, 0x57279d37, 0x7ab50e59, 0xe79ae2c7, 0x36e648e4, 0x754b8c2d, 0x601d6db6, 0x57ea4c6f, 0x8f306312, 0x000064 } }, { { 0x467fcc3c, 0xb7b7c5d4, 0x2cf5ceb9, 0xd866af93, 0x2c21fb7c, 0x330a4a19, 0x721fcd69, 0xb0afdb86, 0xbf85e335, 0xe9ebc300, 0xa4b268b5, 0x27ce1990, 0x509ea389, 0x160cad45, 0xb4dc7898, 0x3f339b98, 0x0000ed }, { 0x51bbb9d3, 0x7609a3fc, 0x3ea9bf, 0x653d1558, 0x570b0847, 0x155db0ac, 0x61f9f48a, 0xccdc2b37, 0xc6005016, 0xd09c091e, 0xbcbfe555, 0xc3e624f2, 0x782ddc83, 0x1341f5b1, 0xc6b49b0b, 0xa9a15a55, 0x000012 }, { 0xf146f455, 0x29402526, 0xbafa53a0, 0xb7929ff, 0x16ccb2e5, 0x12726328, 0x362fbb37, 0x60158fc2, 0x15a24921, 0x176e08cf, 0x5e089a81, 0x5d70827c, 0xa9ccf97e, 0x8ee3f78f, 0x47290869, 0x40e2c76, 0x0001c2 } }, { { 0x1eb570de, 0x4e6c697, 0xf332270c, 0x251068ab, 0xfe9f3521, 0x13ae82b, 0x2efe2b95, 0x84e20b63, 0x8c9f14b2, 0x709ff368, 0x5dabe0c7, 0x1aab257e, 0x8559d47c, 0xfcab7b3, 0x245980a6, 0x35c357b7, 0x00019c }, { 0x4ec8a9fc, 0x77c18c44, 0x44c0fef0, 0x95add35b, 0xa02b9a0f, 0x31620941, 0x5a1c1a11, 0xc16fa618, 0xe2eada18, 0x6867cf38, 0x949da918, 0x457834f3, 0x7938a9e8, 0x2e83b4d7, 0x68b2d0de, 0x2a448ec0, 0x000075 }, { 0x1553a4f5, 0x285f802b, 0x9b000291, 0x301790b9, 0x323a1261, 0x2334ea5, 0xab996657, 0x7369f1e8, 0xbdb1c13, 0x2f384ed3, 0x39d574ec, 0xbd052f47, 0x365161bd, 0xbc40a65f, 0x4c666590, 0xf6bf009e, 0x00018d } }, { { 0x81fc4112, 0xf696990c, 0x909c5b5a, 0x2a6e484a, 0x7dd79aba, 0x56d613b, 0x38bbb50d, 0x43391de1, 0x40ec7b61, 0xec490130, 0x32313905, 0x7e3a3306, 0x639fa16f, 0xf07f5026, 0x1a67c79e, 0x4bd2058e, 0x0001f3 }, { 0x258d9e6e, 0xc1ace539, 0x43ff36c2, 0x8ed70ff7, 0x3675d9c3, 0xdfa1d986, 0xbe65de6c, 0x6a0de989, 0x15fa4cae, 0xf79aafef, 0x67f9cc70, 0x9e9cb292, 0x4617f674, 0x81141ca4, 0x317d4b4f, 0x22f08740, 0x0001c1 }, { 0xbf969824, 0xeff3cd2a, 0xd8ee7346, 0x66bdd5af, 0xee6adc15, 0x7a2bd2f7, 0xc988524f, 0xdf180730, 0xe4f21cb9, 0x4eaa1bee, 0xc598ffaa, 0x7560a5ba, 0x515afb2, 0x66c52b18, 0x53e79d26, 0xd8c50ef9, 0x0001b2 } }, { { 0xa27b968, 0x3d8fd577, 0xa6c970be, 0x74ca2d69, 0xaa95459d, 0x3868872c, 0xa00bbb40, 0xa5f4ccb0, 0x721d9153, 0x1660f4ad, 0x5abe2d5d, 0x1122d268, 0xb6907515, 0x3dee44cd, 0xe61c3422, 0x2acc1ec7, 0x00017b }, { 0x6f07deb4, 0xba5e5faa, 0x59b238ba, 0x4218eba1, 0x9159e5ae, 0x95d43797, 0x97b99811, 0x2379124, 0x67447b16, 0xa29d4842, 0xb01c00aa, 0xdb76bf1f, 0x6729f7f0, 0xb04554a1, 0x56e24e81, 0xb65f0443, 0x000103 }, { 0x3c3c78d5, 0xb4bfb805, 0x83433506, 0x713f26aa, 0x7e7225f4, 0x50519d03, 0xdf465f25, 0x89f3c1df, 0x5262b76d, 0x30553908, 0xf74e822b, 0x41653e80, 0x4354205c, 0xb3030977, 0xf6e8e521, 0x17728076, 0x000161 } }, { { 0x9db012e7, 0xa7e88151, 0x84b23e77, 0x57deeaa1, 0xf48bd84b, 0xfbd5dd23, 0x5b5698f5, 0x287312f, 0x8094f1a2, 0xd71d2383, 0x625d6f13, 0x72507d, 0x329835ba, 0x23bb7c76, 0xadc33160, 0xaf4da200, 0x00001e }, { 0x7bcc682b, 0x810ff077, 0x1ac1611a, 0x406651f8, 0xb61d86c4, 0xc7fe6736, 0x2b1c4216, 0xe996e39f, 0x36b626da, 0xeac7a4c1, 0x9b831fc5, 0x801fcdba, 0x545e6de1, 0xdd69b420, 0xd1c89f2d, 0xdde3443f, 0x000129 }, { 0x85cf22f0, 0x1b92cea3, 0x7e725fe9, 0x9e4acb61, 0x3f17d1b4, 0x2837c38d, 0x102760, 0x79511dfe, 0x98ed770f, 0x719f3bcd, 0x84ab56a8, 0x86fe5ef2, 0x77ce83a, 0x4905e4f9, 0xaf86d80d, 0x4b0d3823, 0x000114 } }, { { 0x78e4aa19, 0x703f2c94, 0x59fa8503, 0x686e7aec, 0x7233f2d6, 0x80e5a525, 0x1b8fb7be, 0x44924f9c, 0xaa3b2b6d, 0x55ebec0a, 0x61291c65, 0x1b8a2bf3, 0xba7abc8a, 0x2ba80820, 0xc6593971, 0x1ac39987, 0x00016c }, { 0x6f3d1b20, 0x3e5fcdc1, 0xd18efbd2, 0x80a59510, 0xef762b13, 0xdf8f66e4, 0xb7092492, 0x7163037, 0xa883ecd3, 0x95407b2f, 0x59b369f2, 0x934bfbed, 0xdb428b2f, 0x924637f4, 0x98129dd0, 0x307e6490, 0x0001d3 }, { 0xf263f741, 0xda1460b7, 0x29e6f81d, 0xf933383e, 0xa31dd1db, 0xdf0860f1, 0xa42c29ed, 0x9c6b23d5, 0xbaf79ae9, 0xee5578d3, 0x8098c389, 0x7ea037c3, 0x808579b8, 0xb6915989, 0x808b9092, 0x99f96bb2, 0x0001fc } }, { { 0xfe5f7163, 0x6e7d386b, 0xca099bd2, 0x168a18b, 0xd9d59f50, 0xda1ace4, 0xab071acc, 0xe86e5136, 0xf81897ad, 0x2f71d335, 0x71294faf, 0x7134ba01, 0x32137ac, 0x54bcdb24, 0xc08cbdd6, 0x8f38fbef, 0x000193 }, { 0xfe257869, 0x89609c74, 0xe336731, 0xa9f0e467, 0xfa13800, 0xddb109f8, 0x2894dcc1, 0xb5fa4ff1, 0x2f713c89, 0x7717f633, 0xef73c5de, 0xa7e6441b, 0x242ee867, 0x2e3f18bd, 0x8bb69743, 0x1e6d1735, 0x000081 }, { 0x5c1abfe2, 0xf5142bd2, 0x71c83d30, 0xd104179b, 0xf8fe9d4b, 0x14049743, 0x84c3dd15, 0x5fda9de4, 0x1a168470, 0x1c5d8b0, 0x26ecdf0b, 0xe08a458c, 0x1c5dffb, 0x63062c5e, 0x84c6a1b4, 0xf2365dd9, 0x000104 } }, { { 0xa2aaf489, 0x10ae2175, 0x9d63e5cd, 0x8d7d1019, 0xf1f7a1ac, 0xf7aef35f, 0xebf5f1f6, 0x39168baa, 0x432d92a7, 0x6e6f62f0, 0xd832c8f8, 0x914eb46f, 0x9d9150fa, 0xe3aec865, 0xa94545fd, 0x700ae8da, 0x000193 }, { 0xfd3479a, 0x3b0f2500, 0x97cabfa4, 0x1abd6362, 0x29d2ab37, 0xde855c3a, 0xd437c020, 0xbef737cd, 0x88d088ac, 0x1afc26bf, 0x166b7f1f, 0x1cf047e1, 0x91a1b8be, 0x4fd318c, 0xf718b6ce, 0x3c33e1a8, 0x000080 }, { 0xa3410456, 0xa485af9, 0x5376186b, 0x86e495ec, 0xec534344, 0xc0ddfa85, 0xd1f9d2b5, 0x7cdf8662, 0xa22fab85, 0x9c320970, 0xa44bb846, 0x35c3fd81, 0x4a155d6e, 0x8a53ebfb, 0x3f6ca306, 0x2a674484, 0x00014c } }, { { 0xfd2c2124, 0xdb98b002, 0x525722ac, 0xa48296eb, 0xf32bf6a0, 0xb2fc5762, 0xe6cb7e40, 0x7e61685f, 0x8951e4bb, 0x2067ec00, 0xaed0c0da, 0x6458c1a2, 0xc2a1ed35, 0xd824e26b, 0x3cb308fd, 0xc383457e, 0x000090 }, { 0x32375733, 0x824a8f20, 0xcb6e7fc8, 0x293a2180, 0x1f684aeb, 0xbbc21fbe, 0x34f69c3f, 0x35ef1e4f, 0xd2564ea5, 0x1c980635, 0x1c565d2b, 0x7b985b74, 0x45a4a58f, 0x8de5e4c, 0x562d546, 0x11f7c3ab, 0x0000d4 }, { 0x3a61f0cf, 0x706d2139, 0x35300c1b, 0xf91183a2, 0x34431924, 0xfc15fe64, 0xd11e0ea8, 0x3430eafc, 0xb85bdfa1, 0x8c825ddd, 0xed9f74cf, 0xfdd92f0d, 0xbfef9783, 0x43bf889f, 0xf8f1f3e, 0xb4f294c7, 0x0001b9 } }, { { 0x82e10a95, 0x5c1afe0c, 0xaa726148, 0xc63b08ff, 0x51dd1f73, 0x1f8c82e0, 0xda4660cb, 0x668bad35, 0x2a38beb2, 0x77ab913d, 0x45044c0c, 0x2b5dff6a, 0x62690eb8, 0x64446cbd, 0xad357105, 0x8ada3496, 0x0000e2 }, { 0x550c999d, 0x3f51570a, 0x788711b4, 0x9a175f76, 0x868cdc45, 0xd2e332d2, 0x9d24f98f, 0x6e83c1db, 0xc3f9098c, 0x3bdd84a9, 0xb447c448, 0x25421c23, 0x35750885, 0x7c981c2b, 0x665b0098, 0x347baa3a, 0x000034 }, { 0x3628bbba, 0x3a2ea80c, 0xb6be9914, 0xb9f682c1, 0xcb7c18dd, 0xb328acc4, 0x8f55cf98, 0xec31cd3, 0xb273f982, 0x966e086e, 0xf00c91d8, 0xf22adbf7, 0xc758903, 0x7e41a976, 0x9c994d85, 0x14be5be7, 0x0001d3 } } }, { { { 0x5a9b797f, 0x9c5bcd5d, 0x421eed03, 0xd96fe6c5, 0xe649e5, 0xa637014, 0x4d6ba911, 0xfe3b7c8, 0x16494665, 0x23c5ce44, 0x4c613d75, 0x84736b01, 0x22e8bb3e, 0x85fa9173, 0xd2212c46, 0xea457a15, 0x00012f }, { 0xd4bd9f08, 0x8c5ff4cc, 0xbd55d1b5, 0xe90aed15, 0x9f9b788e, 0x4773274b, 0x435c9ff0, 0x5f50101b, 0x15bb508f, 0xd1cb6f0c, 0x1983e8e1, 0xfc974bf1, 0x31842730, 0x251be006, 0x19bf8c3e, 0xa0fa823c, 0x000128 }, { 0x3da63d63, 0x9b2da8ec, 0x937c534d, 0xc7c6d8b0, 0x302c0a40, 0x34dedc8e, 0x16523188, 0x5d963a34, 0x4855b236, 0xc8a855bc, 0x92c8dbe6, 0x19cb7bb4, 0xfaced606, 0xeb5a5ae3, 0xa82ea9ea, 0x641d5f72, 0x000059 } }, { { 0xbb3703eb, 0x603e44a, 0x5f5be138, 0x69587add, 0xa3f876b1, 0x20eab2da, 0x7eec5a90, 0x5294825b, 0x6b688862, 0xd36e6dd, 0xdba2977f, 0xe0c110c8, 0x5ac2010c, 0x8e50408b, 0x340bfe2c, 0x36aeec46, 0x00019e }, { 0xe244db9, 0x6868755a, 0x2fc485f1, 0xdb1d635c, 0x1d16878f, 0xa035dee2, 0xe0fa48d0, 0x68bd8789, 0x62f17c5c, 0xbf0560a3, 0x1c027b99, 0xe16e2805, 0x3acce062, 0xb2ac75fa, 0x48e65c72, 0x30460c2f, 0x0000ad }, { 0x863b1765, 0x8866c4dc, 0xed7febf2, 0x4b4e20e7, 0x9f8bc4b7, 0x2bde98ad, 0xa50e9de8, 0x38e8be7f, 0xe3dfbad0, 0x2ec8fff7, 0x19b640a9, 0x6d1e261d, 0x7378977e, 0x7f121d5b, 0x24e19834, 0x448f518, 0x0001c0 } }, { { 0x70c4f4b6, 0xc50cb107, 0x24fd578a, 0x973bb8d, 0x67fe8930, 0x722d8ef6, 0x345d6246, 0x50b01bb8, 0x36f94f20, 0x840fd707, 0x12c8c742, 0x74186663, 0xd83b4e21, 0xbd895865, 0x53a9c940, 0xf8d02d53, 0x000115 }, { 0x87bc4359, 0x3941a06b, 0x2105814b, 0xcdc23e26, 0x771c4247, 0x36685d7f, 0x9fc0610d, 0x92d44774, 0xd45de50, 0xafab924e, 0x78e45672, 0x7594d2c0, 0x2564f121, 0xa0f47c90, 0xe65da9b, 0x1bb2bc42, 0x000070 }, { 0xa58c898c, 0x1dc60599, 0xc4e6fe45, 0x83c6991f, 0x85da0fac, 0x2e5a8cf5, 0x678aee3e, 0xc4e94743, 0x9e64264e, 0x5414c506, 0x2fa1c43c, 0x727e1ee9, 0x3fe57163, 0x799c025a, 0x9600287d, 0xbadd27a8, 0x0000a5 } }, { { 0x8419c622, 0xa39d1e17, 0x960dd0a7, 0xcede2e35, 0x683b1b2e, 0xffdf1a34, 0x23c554b4, 0x620d716b, 0x44c8f803, 0xc8f57381, 0x57d7c69b, 0x899419a3, 0x8682150a, 0xe26009b0, 0xbb9b6d2e, 0x3cdecd5, 0x0001fb }, { 0x9128536d, 0x3189da33, 0x7a4d8952, 0x7375c80e, 0x6dbe6535, 0xeeb40d17, 0xd42580d6, 0xb18a2aa9, 0x15169a76, 0x8736f147, 0x536f8e9c, 0xb48ade0, 0x2c2179fd, 0xefd0d393, 0x3a2178c4, 0x434bbd83, 0x0001b6 }, { 0x94fad52f, 0x4f1dae07, 0xef533a8a, 0xa6e93a1e, 0x5b4c557c, 0xe83ebda5, 0xd85db873, 0x9e5702f4, 0xf1daadc2, 0x6cb0ff9b, 0x3bb3f2fe, 0x17dbba27, 0x6e0fb9d3, 0x9b189660, 0x7b1f78b0, 0x97694478, 0x000180 } }, { { 0xb06c836, 0x670db525, 0xee7b70c2, 0x69886d50, 0x5eebd40e, 0xbef498fc, 0xda1e76f6, 0x7bf26904, 0x2388e8c3, 0xab781bc, 0x2813f336, 0xb4e4f903, 0x2b7ef465, 0xa3c371c2, 0x1a364f2a, 0xcca649aa, 0x000060 }, { 0x4c21a2b1, 0x1460db7, 0xece37dcd, 0x54f9854, 0x947d263d, 0x1b61d9d6, 0xd6f3105b, 0x1c3657b7, 0x72669571, 0x3eebe7b3, 0x9705c260, 0xb5e1a8b5, 0x7425d9ed, 0xdf7e1e83, 0xaa45f699, 0x8e76380b, 0x0000ce }, { 0x27840e63, 0x2fba4dbe, 0xff2e0a18, 0xb7896003, 0x72ac95ac, 0xf86d6a74, 0x257864f0, 0xe088e9c9, 0xc0be2db4, 0x54ed6223, 0x6ba0f272, 0xcfc45037, 0xf170f9cb, 0xe615e89c, 0x24f76a86, 0x2f1dfee4, 0x0000a9 } }, { { 0xace09bec, 0x6c9eac49, 0xd0ae2675, 0xf1bae1fb, 0x2b432cf2, 0xfe9843fb, 0x8265d2ae, 0x7cf3a819, 0x64964586, 0xcebc8b58, 0x61782c0d, 0x2f9d5bad, 0x4e9fff78, 0x5cf7fb4f, 0x7ff236ea, 0xbff85351, 0x00017c }, { 0x1e541929, 0x1033ab23, 0x32adba71, 0x661f0065, 0x924f590b, 0x58eb2cd8, 0x5388ce59, 0xcbc51ffa, 0x538d6572, 0xec43d516, 0xde3f4671, 0x95cee868, 0x54911cce, 0x29ef704e, 0xaca0147f, 0x60b6e533, 0x0000c0 }, { 0x40f1eccb, 0x851a5643, 0x23a83d4, 0x324e8a49, 0x43d18ac0, 0x7c80339, 0xa4edaf94, 0x31b1adca, 0xd8543c02, 0xa8b92727, 0xd891f6c9, 0xb63011c1, 0xb9b1077, 0x743f977d, 0xf9d40206, 0xb43b6114, 0x000115 } }, { { 0x936f8fb0, 0xf9ec9c4f, 0xcad272c6, 0x429d9aee, 0xe5ee8e80, 0x6e24c877, 0x29be0cec, 0x9a333e2, 0xd2bb030b, 0x8d57028e, 0xc0b7942a, 0x737b2468, 0xea48e78c, 0xa19c1299, 0x6dac0dfe, 0xdb71099d, 0x00013b }, { 0xebea9d50, 0xbeef5d70, 0xea045154, 0x5da30cbe, 0x67d9a671, 0x967da3bb, 0x6b18170f, 0x7aacff10, 0x6b43c55a, 0x1615506b, 0xd3d8e430, 0x1de17073, 0x5746f4e, 0x307fe85, 0x5a28e1ed, 0x3450550b, 0x000007 }, { 0x17d6af99, 0x1fa788d, 0xb5d2e440, 0x38f089be, 0x98ae38dc, 0xe81b7fd0, 0xdfcdab0d, 0xabf6cef8, 0x43c576c3, 0x6328ba8a, 0x3bb12a71, 0x9d4e3251, 0x956294e, 0xb1753094, 0x2eed7cca, 0x785c7e7b, 0x00019b } }, { { 0xbcd5191e, 0xd75d682e, 0x1f1b932, 0xa03a607d, 0x7f2b5e53, 0xf09a7d1c, 0x198e6743, 0x527bbb94, 0xe6e9a644, 0x888f90f9, 0x60bdab53, 0xd36b9652, 0xc7651030, 0x9a48725b, 0xf9112f22, 0x55f03a70, 0x000163 }, { 0xbfd774e0, 0xcf5f830d, 0xcf980011, 0xdb6e2d75, 0x321d4e38, 0x61f4927c, 0xd8fc04d9, 0xcf6a137d, 0xd188f2b1, 0x4fdd932d, 0xc753f9bd, 0x6e577d89, 0xf122c7fb, 0xb20a96cb, 0xa9151f9f, 0x458f85f0, 0x000068 }, { 0xb5535ce2, 0x9a851609, 0x3f36834d, 0x28beed4d, 0x8059030f, 0x4c36dc52, 0xc7f8d328, 0xfc6c1aff, 0x85cd3cce, 0x2d3be221, 0x42513af6, 0xee56805, 0xcb4863ee, 0x2ca2254a, 0xd199be82, 0x4cc99f43, 0x000007 } }, { { 0x31fbe35, 0x86ad563f, 0x9b7adf93, 0xaccd3e46, 0x1bd5a4e4, 0x374b037c, 0x13571649, 0x5236b2bd, 0x19069b96, 0xd4d8202a, 0xb7ec8791, 0x86b48eec, 0x8da0fb15, 0xa80e0816, 0x83a0ca61, 0xc1d0cca4, 0x00004f }, { 0xd3aee17a, 0x862cc6a, 0xcaff3052, 0xa8bd3355, 0xb88bf522, 0x6d5ab90f, 0x4b5d0e0d, 0x31d75fc6, 0x9d71da10, 0x7ae04662, 0xeba79b52, 0x61cc8aa, 0x75f0a16b, 0x4999145d, 0x850990bd, 0xb2c0dbfd, 0x00005b }, { 0xc9a31ee8, 0xa27e198, 0xeb2a36d2, 0x40994921, 0xd0a3e006, 0x29391499, 0x6ab11e89, 0x19936918, 0x9c7c0ab0, 0x294208ed, 0x80dcbf0c, 0x78581ab0, 0x8f1dfd6, 0x16785570, 0x9536a56c, 0xe5a61973, 0x0001e2 } }, { { 0xbdbc8c33, 0x14a5c34a, 0xc989f44a, 0x751d66f2, 0x93bec846, 0x4b025f13, 0xb3502e27, 0x8dc7b9a5, 0x899d1cf4, 0x8017eeac, 0xfa8997bf, 0xc625e36a, 0xc79d958, 0xc8db1e2, 0xa709ca98, 0xa0ee948a, 0x000097 }, { 0x53f7f4bd, 0x2583b0e8, 0x64763989, 0x14932a0d, 0xfd05a78b, 0xfbdca00, 0x5bb2b033, 0x6f29779d, 0x7ea9d60, 0x7ec43158, 0x394673f8, 0xb609a885, 0x6f55505c, 0x19941edb, 0x93154233, 0xcf1a49f3, 0x0001fe }, { 0x8b2c5fd2, 0x945feb88, 0xb469c4c0, 0x29ecf32a, 0x95969345, 0xf5b42157, 0xa632a171, 0xdbc3e932, 0x5c46ff8b, 0xa1299df5, 0xd7cea8b6, 0x958307e5, 0x78f365cf, 0xf0772ee, 0x5399bd69, 0x683ca204, 0x000116 } }, { { 0x3311a886, 0xe9651612, 0x89bed6c5, 0x31ba0578, 0x5f9d24f5, 0xdfc92245, 0x7bba8c90, 0x2f48c1e6, 0xe6568107, 0xa748e9b6, 0xedc46a5c, 0xb61040db, 0x16af7147, 0x7f02a009, 0x1a2961b4, 0x65570bc1, 0x00012e }, { 0x87c7dba4, 0xc5b50e57, 0x710c52f8, 0x5edec2c2, 0xec3b68ac, 0xbba3d4b, 0xbef52ac7, 0xa2c75bb5, 0x1ddb6b79, 0x334707a7, 0x5bd5fc01, 0x83675d03, 0x6ff78114, 0x4c508324, 0xb98c9aae, 0xdf882a38, 0x000006 }, { 0xcfcc2adf, 0x5eea0b6e, 0x6b16d21b, 0xca7e4bf5, 0x77098b8b, 0x8c12fad7, 0x7f042c7f, 0x658b8650, 0x904a3de8, 0x27ba68bb, 0xc54c9c98, 0x1876b762, 0x6fd5c0f4, 0x2fc6c47d, 0xecbe50d2, 0xa78fee97, 0x000075 } }, { { 0x5057867d, 0x238fb3a, 0xfd6e5bf7, 0xa840430, 0x7d5433af, 0x594ad4f1, 0xa915c3b1, 0x11da46b5, 0x6c2667db, 0x3443f3f, 0x16d5561a, 0x42df1d0d, 0xae532cb0, 0xf7a33185, 0x70bcf31d, 0x985513d, 0x0001dc }, { 0x975631e, 0xf6fbae18, 0x34c39220, 0x7310edef, 0x227202d1, 0xc8ce1ba9, 0xff43e705, 0x5e052ae1, 0x83b9e1ae, 0xa297de7a, 0x35df52e5, 0xd2aef864, 0x42a32b10, 0xcaba7f7a, 0x388e3aac, 0xdb34314a, 0x000087 }, { 0x902eb355, 0xaab0385e, 0x74d7c5a8, 0x4980e970, 0x30b87c7, 0xe364b62a, 0xbb43cfd1, 0x50d1b896, 0x34777fb, 0xf12f84ea, 0xeebbc7cf, 0xc0eaaac7, 0xc06c5137, 0x2f198a80, 0xd6a4c219, 0x95d9a430, 0x0001f6 } }, { { 0x1db73b71, 0xf3859985, 0x426b6d10, 0x54ba6d69, 0xd7b6defc, 0x840b5a17, 0xefcc4d88, 0x3970822b, 0xa40b1e65, 0xd6dc0910, 0x99266907, 0xdb32fc38, 0xaab5ad16, 0x4c76db3c, 0x252ae1d0, 0xaf7d0055, 0x0001af }, { 0x3c2248e6, 0x98c4935, 0x3ca3cdb3, 0x29035a28, 0x1e56d053, 0x876529b5, 0xe909a602, 0xc677347f, 0x42cb85bf, 0x74530b4a, 0xc2694e1f, 0x854e2a03, 0x37b570b6, 0xc844ee78, 0x2743b614, 0x16ff7403, 0x0000a0 }, { 0x72e07656, 0x9e92e560, 0xf7b6f479, 0x7810743e, 0xc2b27b3c, 0x2ca48e0c, 0x7950ec10, 0x9019ad44, 0xecf54a13, 0x5bc6f860, 0xb76aede3, 0x79e41092, 0xd936215e, 0xb69bc3e, 0xe68a584c, 0xd4ac317e, 0x0001a8 } }, { { 0xa0f97d5d, 0x4b4a959a, 0xd4cf4d47, 0x5b5204d0, 0x47fb530b, 0xa75ce822, 0x930832, 0xcdce0be6, 0xa560504a, 0x92cdfb19, 0x8cbfdd3f, 0x917f28f, 0xc6ab537d, 0x9f5f9582, 0xae561d66, 0x7d42470b, 0x0000c8 }, { 0xacc80304, 0x69561cb7, 0xa5f3f92d, 0xd7591faf, 0xae82f505, 0x6b0fc70f, 0xec7f7760, 0x57a92fd6, 0x921c95b3, 0xf624c7b5, 0x37a624b7, 0x343dcb87, 0x92cee821, 0xb72bd3ff, 0x44640aea, 0xed12999, 0x0000f7 }, { 0xbdac6646, 0x4d2a4a99, 0xa677fedd, 0x54ef63c4, 0x6693c88c, 0x2246a3d0, 0xfe8628c6, 0x35903539, 0x4f3c7909, 0x417c0b8, 0x4ca388bc, 0xb11cb5f8, 0x7953f062, 0x2a145826, 0x182f41ef, 0xfab8af40, 0x000002 } }, { { 0x5dd7ad71, 0x11ea5011, 0x9fe1ccca, 0x2d49bffa, 0x9c760235, 0x1ff91a80, 0x442e2cb9, 0x6e76ebbe, 0x296978d8, 0x741ab083, 0xb59b14e6, 0xc7108de0, 0x104e4732, 0xda251b36, 0x4d035c4a, 0x27ebbde1, 0x000012 }, { 0x8c3377da, 0xb8611d48, 0xbec33c63, 0x4214f39c, 0xacb658bb, 0x1574cf4a, 0x1f53dec7, 0xc26e8c7, 0x9681eba0, 0x83789716, 0xe417b223, 0x57f5df39, 0x26ab2e40, 0x579b2e35, 0x3c2f1cf, 0xab69cbca, 0x0000ce }, { 0xa66c3356, 0x7466e969, 0x6c3aac77, 0x2bf429d2, 0x722ebf65, 0x720a5a73, 0x73019dbe, 0xd69768f2, 0x1c638289, 0x322e467b, 0x6e111859, 0x71420a5c, 0xe2e72c21, 0xc65a60a8, 0x167446ab, 0x8c2fb350, 0x000097 } } }, { { { 0x6c56cf72, 0xf15ba51b, 0x7761806c, 0xe24fc3fb, 0xaf5dfc10, 0x1f519fef, 0x5b838922, 0xf1576d66, 0xb4c6d24f, 0x339e4dd2, 0x16204549, 0x98a9ca70, 0x5a84a7a7, 0x240a2d6f, 0x7fcf9d3a, 0x623560b1, 0x000140 }, { 0xa2b4673f, 0x16a26638, 0x5bffd8ba, 0x32d2080b, 0x445923e5, 0xb618e35e, 0x4568a089, 0x75b74797, 0x28f907d7, 0x89c27b54, 0x3450e0f5, 0x1540f425, 0x54bc6d3a, 0x1418f455, 0x4563c04e, 0xb2a6661, 0x00017d }, { 0x4bf2ae9b, 0xd2db3455, 0xb02417e4, 0x51499a22, 0x217a316d, 0x48d231d0, 0xb911a758, 0x75aa0711, 0x5f3a7a13, 0x870ce6f0, 0xe1231e26, 0xef1cd08e, 0x97bea06b, 0x4e8f0afc, 0xc6c26cfb, 0x25897b28, 0x000050 } }, { { 0xe3a52aed, 0xd0c64221, 0x1a525cca, 0x58b3c905, 0x944d2c6f, 0x9052b63e, 0xd68e95de, 0x19283fa8, 0xf8bafa85, 0xc7e51f7f, 0x546ea44d, 0x81a57461, 0x4bc1ed72, 0x31adc7dc, 0x51135339, 0xe18364c, 0x0001c2 }, { 0xe463e09e, 0x6b50670d, 0x42442648, 0x65c6466c, 0xcabfb23e, 0x635b18a7, 0xdd8725da, 0x40f4fc61, 0x53d1c33e, 0xe49d7de5, 0x239d1a4c, 0xaac9a82e, 0x98ad343b, 0xb5a68fca, 0xa7184e1, 0x7e01c7a3, 0x000178 }, { 0x55aaf621, 0xb34db3b1, 0xe7aa85af, 0x559c291a, 0xa415ebc7, 0x3db85def, 0x3f71b6a0, 0xeaea01e0, 0xe9328795, 0x93c3c3f, 0xf70c0cdf, 0x236cec45, 0xa611ec16, 0xdc25318f, 0x55b1c342, 0x19834419, 0x0000e9 } }, { { 0x7f459969, 0xf0463c16, 0x87c20c4b, 0xcf370854, 0x7ab2ffa8, 0x58ed62e4, 0x65955ecd, 0xc5f3a192, 0x666d712e, 0x3e0b1ef8, 0xce228523, 0x9bd89597, 0xf214d309, 0x9856fae, 0x99928925, 0x17de0483, 0x00007b }, { 0x6ba9153, 0xd1f6d6cc, 0x71310d01, 0xfa6d0193, 0x902fc32a, 0x3d587398, 0x4fe79782, 0x42b6109c, 0x285f6795, 0x6b4085e4, 0x20edfb0a, 0xd4945839, 0x56895cf6, 0x718d9e7a, 0x74b8d885, 0xc594bd36, 0x0001fd }, { 0x4c370c4b, 0xe1a561a2, 0xe317e17f, 0xbefdbab2, 0xb7d11397, 0xe8d1ce03, 0xad92b2f3, 0x61cfb9e4, 0x941d6354, 0x5e878b2d, 0x7722bdfc, 0xac3d24e5, 0x15c9f946, 0xd76becaf, 0x5aa32b72, 0x760c7a3b, 0x000093 } }, { { 0xf8d2ffaa, 0x39d2c551, 0x99c9b9fe, 0x21750113, 0x43388550, 0x12c4f553, 0xcd36c015, 0xe9afa89, 0x64c3c2a0, 0xb85f6748, 0x99479411, 0x44005518, 0x3e90a301, 0x7d6773c, 0xe7f2e136, 0xf9d12d7e, 0x000157 }, { 0xfb743d87, 0x2a0e655a, 0x51bdd7fc, 0xbf34b72b, 0x1f4e8f69, 0xfa2d4e88, 0x3e18bc35, 0xc352a667, 0xc0e88b99, 0xfd9cf04e, 0x3ccc69b9, 0xbbb5ccdd, 0x6b15e50a, 0x5f4f2a74, 0x6db9245b, 0x9748a9e6, 0x0000c1 }, { 0xcdaecc3b, 0xea77ab4c, 0xe5819b, 0xb0111f94, 0xeaf1644a, 0xe471cfdc, 0xf6be9c2b, 0x8b073970, 0x7b68d846, 0x33852e0a, 0x1de92192, 0xe33e23b4, 0x37876359, 0x74400567, 0xcf55f40d, 0x8c05ea10, 0x000008 } }, { { 0xac4b4ef3, 0x555a677b, 0xb1bfe777, 0xed38b951, 0xae5d6d56, 0xdd7305c, 0x5c832fa0, 0xe737bdb9, 0xc5818d7b, 0xf0dcdfa0, 0xbe3b250c, 0xe95d006b, 0xa709ce02, 0xe7559cc2, 0xb3a8df32, 0x2ea814ab, 0x0000de }, { 0x952e769e, 0x238758f9, 0xcc2f151d, 0x577e7c93, 0x6c441b30, 0xda94a761, 0xe9d523c7, 0x259b83ec, 0xb624e117, 0x26b1c83d, 0x378b07bd, 0xc61fd38e, 0xff0eb5cd, 0x264fd733, 0xf4c01aec, 0xd6c1c8fe, 0x0000d7 }, { 0x28e83d20, 0x367e6906, 0x88424fba, 0x18963f16, 0x7b3738cd, 0x1cfa209b, 0xe3e6eb20, 0x91e79c00, 0x3e437df0, 0x16be9bb5, 0xb6d3647c, 0xb6fa23a2, 0x807a5e3d, 0xd6082634, 0x2376c69, 0x8dfe9fc9, 0x0000fd } }, { { 0x28e48a38, 0x6c7d5f12, 0x7fa322fd, 0xf52db016, 0xeba7f81d, 0x8b6d817e, 0x0cb9af, 0x2ca8afa0, 0x40bfd8c, 0xfe23cd58, 0x5e8a7989, 0xac66170, 0x99f05666, 0xb1f520f8, 0x2d048a09, 0x580f1782, 0x000195 }, { 0x2e42b301, 0x90c719d7, 0x8f44b415, 0x68f0da20, 0x136a89e5, 0xfa98b3d2, 0xcf3b2f5c, 0x5df82909, 0xf9a0fcc0, 0xc4045866, 0x83f3bf88, 0xc0dd2a5e, 0x3b1d9633, 0x44d354ee, 0xde1da014, 0x8ca3a1bb, 0x00013b }, { 0xf4c22324, 0x752d2382, 0x600de77b, 0xf1783568, 0x95370830, 0xe31cd4b7, 0x3bc1b944, 0x9beccb43, 0x825f3510, 0xda1e5611, 0x48fe8485, 0x9ff9e234, 0x3abd91c2, 0xe919bbfc, 0xbad0954d, 0xb9d29ede, 0x00005b } }, { { 0x4572a032, 0x88f08f17, 0x30ffc399, 0x1e4da68e, 0x418c9c48, 0x1b1ca1c2, 0x5841a491, 0xf87d0ea5, 0x6042344d, 0x5d44202f, 0x905c80a5, 0x3cc9901c, 0xd3a8932f, 0x56301dfc, 0xd1ee6066, 0xbe8caeb8, 0x000131 }, { 0xde54dad7, 0x88dab570, 0x28827092, 0xb4c9b88d, 0xa54e29a, 0xf425b70d, 0x2e925130, 0x7292ab97, 0x918135c1, 0x2a1e3ae6, 0x58d8b6a6, 0xb143f2c0, 0x271ebd60, 0xa4f2d497, 0xeee9368, 0x465c89d8, 0x000085 }, { 0xdc86aa2f, 0x567a3bbd, 0xee5ad7c8, 0xea0814a3, 0xaf42e8f8, 0x70968803, 0x42533a98, 0x57aad66b, 0x58c8f0b7, 0xcac94ce0, 0xad70e298, 0xa19f96ea, 0x847f580e, 0x50f302cc, 0x314026fa, 0xed76a70c, 0x0000d7 } }, { { 0xaf3ab27f, 0xa6dd6133, 0x556e43c7, 0x5f0f1b3f, 0xbdf11550, 0x951c2261, 0x9b747e8c, 0x1c3fc314, 0x7d0a6334, 0x65150864, 0x8ba46b30, 0x65c4887c, 0xa35026a8, 0xa59d4498, 0x495b8c56, 0x356e4fcd, 0x00013a }, { 0xa9b2ab74, 0xadbdb78f, 0x8123aa75, 0xeff32366, 0x91c51e12, 0xc1c5131a, 0xbd5b2898, 0xd70d3c5c, 0x1414af01, 0x9c943dcf, 0xd64953af, 0xfae0cddf, 0xfd23fca7, 0xc589a36b, 0xf44c06f7, 0x74c28a1c, 0x0000a1 }, { 0xf6a862e7, 0x91959351, 0x8c6bc2e7, 0xd9d965e9, 0x50db32f9, 0x59e99868, 0x2fe4c88e, 0x1df580d9, 0xa5b198ce, 0x3c1cb800, 0x10f20848, 0x114627f4, 0x4a5238ff, 0x168dca62, 0x2b604586, 0x622bc2, 0x00018f } }, { { 0xabe6ae28, 0x63f0e452, 0x56836c3b, 0x8bafe426, 0x9e855a6e, 0xaefe8e8e, 0x2d9fce90, 0xf79e81b1, 0xe4338f77, 0xba0e6921, 0xb046f815, 0x91db5e9e, 0x97b16b88, 0xfda36cf3, 0xec2cd0a2, 0x9fe4e47c, 0x0000ae }, { 0x24b685b5, 0xcea5905c, 0x90d3533d, 0x98fb5f4, 0xf8000abd, 0x65e2912e, 0xc17c1346, 0x258fc62a, 0xceba9ee5, 0x93717a91, 0xe7ebe335, 0x1b5096bc, 0x5f4afe50, 0x11096271, 0xa5a15c63, 0xeef5ffa2, 0x0000bd }, { 0x94689796, 0xa2c963c0, 0xd2f1c8c5, 0x2419c6d1, 0x5276f511, 0x2b018af, 0xa2e05771, 0x4669409e, 0xad0dcaf2, 0xd3817790, 0xa6cf7038, 0xb33bb43d, 0x352e92ac, 0xf14acd21, 0xf4fde14f, 0xb747577c, 0x0001f9 } }, { { 0xc49d4a1e, 0x8887fb5, 0x83bffb11, 0x5a2795f8, 0xbb7e78a4, 0xca3e4b05, 0x8d91a004, 0xdfa1700c, 0x45b63ca9, 0xe3c9fa6c, 0x2e99259e, 0x62b016b1, 0xa94b02c8, 0xbaf97f25, 0x81329459, 0xbd5c8319, 0x000007 }, { 0x6291e0fe, 0x2ab860d5, 0xacf30c9, 0xd90cb2df, 0x7bf514f7, 0xcc7e9894, 0xe8fe6c16, 0xcedd45a4, 0x72cded85, 0xc5bca30c, 0x16b69de5, 0x153facde, 0xdc4559bf, 0x6cc77121, 0xa9ba15c8, 0x8ae36321, 0x0000ce }, { 0xad9f4986, 0x7f1cf0e4, 0x991de4ea, 0xec1bde32, 0x29fd22b8, 0xacc2fd0a, 0xabfcc884, 0xd4bb970, 0x396c6eb6, 0x6b43833b, 0x5a105e7f, 0x78b2f7f9, 0xfc9d322c, 0xb6212890, 0x4e1425c1, 0x910876bf, 0x000114 } }, { { 0x9ee6a6ac, 0x8d382b51, 0xd314c7de, 0x67f933a8, 0xc5254249, 0x120d6be7, 0x9f15d9f2, 0x671b0c10, 0x9a6be86e, 0x595fe3ff, 0xe1205d3d, 0x26d8f778, 0xaf1888ef, 0x4013d1ea, 0xfcd7e65f, 0x62b4f1cb, 0x0001f9 }, { 0x452dcf8e, 0x18913b43, 0x2ec3d11d, 0x79735f05, 0x1ab2d08c, 0xd7c21be, 0x37fad823, 0x879bfaa9, 0x93c97b0f, 0xf129e800, 0x96b132fa, 0x6b40e72d, 0xb431c6b8, 0x5ce7b3da, 0x320c28ed, 0xbbe87d31, 0x00006a }, { 0xb4a80d5, 0xff5009e9, 0x3024365f, 0x35f402eb, 0x69610b55, 0x97e9f411, 0x1f609e29, 0x1e6bf920, 0xfe4010fd, 0x380f677c, 0xfae7ad71, 0x2b91b4fc, 0x799085f3, 0x33685ba1, 0x23790b2b, 0xcf72417d, 0x0001cc } }, { { 0x1f0741d4, 0x82ffe30f, 0xfe414f93, 0x2a673ca1, 0xc379ce57, 0xdb2fa4d5, 0x1176ef75, 0xde832cbc, 0xaa1aaca7, 0x82838a36, 0xe9ff3097, 0xd1fd475a, 0xb64a0d97, 0x7a3d7435, 0xa4b4701, 0x6a881412, 0x0001bd }, { 0x6449acdd, 0xcb495e99, 0xbb9f6e91, 0x80584c30, 0xf8b61b73, 0xe504be25, 0x6b04a63, 0xd1abfb89, 0xadc941bd, 0xca9c5e77, 0x5f74f647, 0x78614867, 0x62603ba0, 0x3413784b, 0xb0a9fd79, 0xa6c3ed3b, 0x0001fe }, { 0x486e4561, 0x58bd6326, 0x3ac5019b, 0xab3f533d, 0xaa265d41, 0x4e59f5ad, 0x1d95e25c, 0xf026c976, 0x7b9cea6, 0xc357292b, 0x4e631bc7, 0xa176f184, 0xd97e7529, 0xc733d056, 0xeb774f97, 0xaf23ad33, 0x0000f8 } }, { { 0xc1d5ad61, 0xbee43ae1, 0xfe2e9666, 0x7a0c2725, 0xe4f79552, 0x11d3f9f8, 0x77d6fd6a, 0x7a1189b5, 0xbe0388f4, 0x895d046d, 0xab9847e2, 0x766fea55, 0x3fde6626, 0xc2940013, 0x11c7bdf2, 0x7e3be3, 0x000082 }, { 0x86e94081, 0x433e1dd9, 0xb6d7decb, 0x855851a8, 0x3cbf5097, 0x54d389a5, 0xf91d5677, 0x12f470b, 0x8e4aa4dd, 0x59d44886, 0x2be15a7d, 0x2444cb90, 0x5b0227df, 0x4bdfba35, 0xba2c873, 0xe6618368, 0x0001bf }, { 0xc0e9d20b, 0xea71c9c1, 0xd270c7b5, 0x94b33be5, 0xd262a05f, 0x996cc52f, 0x75d14cc, 0xef26b35a, 0x44b0856b, 0x7d48f15f, 0xf58c44e9, 0x59520968, 0xa98bcbc6, 0x35a6caa4, 0x45393e6b, 0xfc51f85c, 0x000170 } }, { { 0x96dabc4a, 0x5ffee9b8, 0xccfbf9c3, 0xfc543419, 0x35ccfae, 0x3fe7a4be, 0x44ffb873, 0x66048f47, 0xea0cd7a, 0x9e9124e5, 0x8f845e56, 0x6c6b0752, 0x608ca50f, 0xed6ae23, 0xc82701f6, 0xeac5a8b6, 0x00010e }, { 0xcd05aa3b, 0xc1e23543, 0x17c8d9e0, 0x318e2f61, 0x7fe6dd92, 0x59174c18, 0x5bbdc58f, 0x444fde90, 0x9ae6ddf1, 0x4fae6d73, 0xa88e288, 0xed2324aa, 0x84349b49, 0xb1c78dbf, 0x9b3071ff, 0xd274909e, 0x0000a3 }, { 0x4b18e847, 0x86c6ab79, 0xec8f1052, 0xccb7ee56, 0xd9f8b580, 0x44f5d83f, 0xf6d9e63d, 0xe8cff19c, 0x62f071f0, 0x29c971df, 0xc489146f, 0x73c2297, 0x32596f5, 0xd3ef4315, 0xab9892da, 0x4cd79d1d, 0x0000b8 } }, { { 0xff6c936a, 0x9e3d283f, 0x464796dc, 0xb8b0b6d0, 0x87611350, 0xea659aeb, 0x90b8b22f, 0x310f9829, 0xc11e19cf, 0x3643e5e, 0x4a42a04, 0x1a99a0d3, 0x72646cce, 0xc918d067, 0xa1269a2d, 0xec742a1e, 0x0001c7 }, { 0x4984d013, 0x2047912, 0xb755d852, 0x5353bbc8, 0x6a2cace8, 0xd01d0d6a, 0x893b1202, 0xb1c23606, 0x5204074b, 0xa3eb70cc, 0x6e819706, 0x11229a86, 0x159aa70e, 0x6b0e842c, 0x9602e941, 0xb7620696, 0x00002d }, { 0x19a166c9, 0x53426323, 0x78e3d8ef, 0x456bd3f3, 0x9f4b671e, 0x63bdd1ce, 0x4e6a1b1f, 0x273633, 0xc1cb91, 0x41ec9ce9, 0xe02f7ac1, 0xb4668b31, 0x7efbe03c, 0xc04b700f, 0x18e60cff, 0xf7ae3e7b, 0x000041 } } }, { { { 0x704fc047, 0x8cf4ca46, 0xe6b7ca6, 0x334134e4, 0x7fa831d2, 0x20eaca11, 0xc5b5e3a6, 0x7006667c, 0xb00d9043, 0xd7db8abc, 0xde27b92e, 0xcc492e4e, 0x5d1a720c, 0x2fe71f54, 0xb713477d, 0x3825ce22, 0x000030 }, { 0x8637f206, 0xfca56bfa, 0x27eb1e21, 0x70d9fed5, 0xb1bbc9f5, 0x5d4825f4, 0xea5058cc, 0xf735d116, 0x1678cf36, 0x7a212b4e, 0x669180e5, 0xe820dc05, 0x5cce31b0, 0x2985654c, 0x69fb9215, 0x52ab86ff, 0x000032 }, { 0x663f68ff, 0x26e0c818, 0xd431a413, 0x221339ec, 0x50b9ed24, 0xd4c0949, 0x7cd5f651, 0x725b0c7, 0xfe33b47e, 0xa4c3ecab, 0xc352a5ac, 0x9141a3e7, 0x251beb01, 0xb375bc75, 0xcacc6b71, 0xa04e39c3, 0x0000a7 } }, { { 0x2f8e97b2, 0xc039c7d3, 0xfaeeac0b, 0x65f45d58, 0x9fbf030a, 0x66f0af74, 0x212344b5, 0x7c4f2dbd, 0x7ea8105c, 0xc5caf380, 0x48f0dc72, 0xb92498ce, 0xf5da483, 0xcfd4ca7f, 0x20dfc029, 0xa2ef7fe2, 0x000051 }, { 0x32c90883, 0x27ccfa2, 0x69da9a00, 0x8fe00727, 0x62b1d2bc, 0x7135d07f, 0x29409875, 0xa91ee9c2, 0x6dee4bd1, 0x5d3776c0, 0xfc86cefb, 0x5bf1e697, 0xf4e5a8be, 0x22e1c125, 0xc4780802, 0x554eacf7, 0x000088 }, { 0x2771f2b8, 0x5d6731af, 0xf30ee65a, 0xb1eedb05, 0xe81c4643, 0x4ea1d9e5, 0x7d6ab1b5, 0xcc611e2b, 0xc8eac7b, 0xdea68b8c, 0xc3a38b64, 0x75749b07, 0x9e66787a, 0xf833daa5, 0xfa4479a1, 0x72200594, 0x0000e2 } }, { { 0x454d25f5, 0xf1dda07e, 0xbe4c5226, 0x24179f54, 0x6ac4c075, 0x972fc648, 0x82636671, 0xa89488c3, 0xcde14fc7, 0x367adffc, 0x9a3377a, 0x29f909f, 0x7c8dcf2d, 0x1fd23314, 0x40dc6a94, 0xab1c7927, 0x0001cd }, { 0x7d7decdd, 0xab6ef320, 0x46a518c7, 0xcef176ed, 0x87689541, 0x8a761f33, 0xf677747f, 0xba3da9ae, 0x7c55ed3a, 0xdacf9def, 0xb84d1a01, 0x37d11202, 0xf3ba8897, 0xc9b25bfb, 0x95fe12fc, 0x435bd017, 0x000030 }, { 0xb3bdc2d7, 0x897bb107, 0x4ef52a0f, 0x35c33880, 0xa362e31, 0xdcc8d118, 0x726463ad, 0x9197558b, 0xdf5574de, 0x9235e72c, 0x1d46c13b, 0x71e1db53, 0xf05e91a4, 0x4d49a130, 0x5ca833cf, 0x9d2a0735, 0x000072 } }, { { 0xf30f1ee1, 0xa22297a4, 0x112da3a4, 0x94634712, 0xee66b8c7, 0x2305b3ed, 0xe04b0f42, 0x8e4ecdd, 0x80d31ca6, 0xec2c1285, 0x8200522a, 0x4b0e4ad7, 0xf4c8633c, 0xd1d5913b, 0xbfe2055, 0xa6d7e954, 0x000163 }, { 0xeb513022, 0x4de372fc, 0xb27d1d0, 0x121ccc88, 0xe99e3156, 0x5650dec6, 0xb7de3fba, 0x6cf42b82, 0x272d722d, 0x9030e0a7, 0xc0a109ab, 0xdd36aed8, 0xe0e407d0, 0xf3bd7b4e, 0x3393a2f0, 0x49c9ae83, 0x000006 }, { 0x8a43a5d3, 0x35b2d94d, 0x728d12e4, 0x1c221d48, 0x9107fbfd, 0xeaa7800c, 0x14d9fe0, 0x31038bac, 0xb1dd22c2, 0xcbe8b3b7, 0xa1352589, 0x4be0bde, 0xaaba6404, 0x7945013, 0x31293eab, 0x3f603de3, 0x0000ba } }, { { 0xf3febccb, 0x7d253514, 0x78568707, 0x6b49c79, 0xdd63c832, 0x7ebee7ea, 0xb5b741e2, 0x9ab5eb6f, 0x5bb21552, 0x96b9a1f, 0xfd9d112e, 0x5389a4b5, 0x2d53fc69, 0xc4fd75cc, 0x85b15be6, 0x4591e547, 0x000186 }, { 0xd6512055, 0xa575e76f, 0xd7ac23c4, 0xfaad81f4, 0x2412e12, 0xd9ce0df2, 0x1710ffba, 0x7f8f11e3, 0xb60d9550, 0xcca23e0c, 0x1a4fc12b, 0xf5cfc3d7, 0x2370a7, 0x1bcd5873, 0x3673067d, 0xcbeba813, 0x000092 }, { 0xfba1c4bf, 0x137b4781, 0x391e4498, 0x916a544f, 0x7eb1d065, 0xa520344, 0x579637d, 0x2c230726, 0xf9b1e226, 0xde8c6c9e, 0x31f31c7a, 0xe45475b3, 0x4556d6f7, 0x445599a7, 0xa5e48f64, 0x758500e4, 0x000047 } }, { { 0xcb4137a6, 0xbeaf5f49, 0x38b232c7, 0x4de79897, 0x9b676ed9, 0x5386901, 0xfe8b0764, 0x113af9c8, 0x855ae58b, 0x9cd5b5e5, 0xebd6a136, 0x3f2e17de, 0xcc4ab73a, 0x5b412418, 0x42800863, 0x54e60126, 0x00001e }, { 0xc2b96a11, 0x49030c15, 0xb47b1cd1, 0x4aa30627, 0x6bd92d06, 0x2d392dd5, 0xcb4729e4, 0x93af2269, 0x35081572, 0xd8fb31c5, 0x49e220f2, 0x7d6ca24f, 0x1181cff4, 0x9d98c385, 0xcdb809a8, 0x2e69cc2a, 0x000072 }, { 0xad4eede9, 0xa32c7b3c, 0x4741a18d, 0xf6e5e889, 0xd50274c6, 0xeffa58f0, 0xa3e7a2f6, 0xd9fca75, 0x854aed78, 0x9f85baa, 0x7b9a655a, 0xcd9d0275, 0x8e315d70, 0xbf21159b, 0xea18ef6c, 0xc9cf6de1, 0x0001d9 } }, { { 0xd59ddd51, 0x4002855c, 0xf19e03ee, 0x4cfebd49, 0xd66b40b0, 0xf4bc5f9, 0x849427aa, 0x8eb97ce8, 0xcd3ce4ff, 0x706a54a4, 0x91cd00d6, 0x4edca599, 0xa85c07fe, 0x63af1394, 0xc66f3f53, 0x4af90a68, 0x00001c }, { 0x7881f48a, 0xc5f0ebda, 0xe61fd267, 0x17fbc686, 0x96b8826, 0x3dee0019, 0xd5067770, 0x6d2c717e, 0x8266ce3d, 0xbf60273b, 0xff4f8e3e, 0x76dc4914, 0x2735ffa0, 0xbc260bf4, 0xccd38bbe, 0x25f0ba3a, 0x0001e7 }, { 0x7c1ce0e, 0xd2d0fe1, 0xd9c21519, 0xa3021584, 0xdc2ddcb3, 0xbcf4409b, 0x666efb06, 0x7827d89b, 0xb4800cdd, 0x62c09fad, 0x159f35d0, 0x53c54c20, 0xa7978012, 0xe1b72543, 0xb857b6c7, 0x9f26504, 0x0000b4 } }, { { 0x47b39638, 0xe45d3d95, 0x399a6e22, 0x19e59eb0, 0x6a0b1692, 0x41bc8098, 0x1bc6d316, 0xfa0b211c, 0xb9a78d51, 0xf023786c, 0xe7bfcbb0, 0x665dd8af, 0xdf2d3643, 0x63f9701f, 0xb11c9ac6, 0xfbc40bde, 0x00015e }, { 0x34ae9414, 0x7bb8f96b, 0x3951dab2, 0xc3bac3e9, 0xd5204dac, 0x3ee3ee37, 0xb2b72460, 0x5fb6bdfb, 0x1ccf97a, 0x8d1b39a, 0x9facd245, 0x6ea012b4, 0xb48915b6, 0x7dd360ec, 0xbdf7c646, 0x7894bf07, 0x000133 }, { 0xc4a45b02, 0xf76e905, 0x44c706be, 0x1ec38e71, 0x133779bb, 0x288178bd, 0x9a7f53d5, 0x7342ea22, 0xe8d773e7, 0x37410b62, 0x510af913, 0x71df802, 0x140c05bb, 0x92471265, 0x2360110c, 0x495a61fd, 0x000030 } }, { { 0xd13c3fa0, 0x8643a9b7, 0xe0128c62, 0x1068d31d, 0xc7f82a50, 0xedd8f212, 0x73259eab, 0x73c9e7a2, 0xd30d6684, 0x51b4e82b, 0x23aa865, 0x61eac977, 0xea4f387d, 0x8afc56e2, 0xd8bb7dc8, 0xc538ee65, 0x000010 }, { 0x586824b1, 0x4563f325, 0x246ec860, 0x7816b91a, 0x641449b5, 0xab7bcb65, 0xf3e57c31, 0x11767779, 0x30c2fcd3, 0x9498d3b1, 0xacc8bf06, 0xc0071098, 0x6fa08020, 0x6e7cca95, 0x3aa05000, 0xab57f530, 0x0000f1 }, { 0xd255547e, 0x5df79724, 0xf51833ef, 0xa25d679b, 0xb5848aa1, 0xb36697bc, 0x1bf1fed7, 0x96f03e94, 0x51541956, 0x2705c7cc, 0x6a9108f1, 0xd6448882, 0xdffbc241, 0x488b864d, 0xba9fbaa6, 0x7b474a98, 0x000166 } }, { { 0x876dc105, 0x32c3dda9, 0x67bd0432, 0x8176363b, 0x806e2d0e, 0xa7dfba78, 0xeeffb0c8, 0xd59d0f41, 0x5a32ce9e, 0x72b1278b, 0x8deef299, 0xc55a466d, 0xb10ae7f8, 0x2511f780, 0x3e3c707a, 0xd9d06c0f, 0x0000b6 }, { 0x9e02bf81, 0x8f31006d, 0x9df4f8ac, 0x94bda332, 0x55af8332, 0xba7ad6ce, 0x4f6f7d32, 0xd58ddb57, 0x6b5f3da0, 0x216dea6e, 0xa5806926, 0xf3051661, 0xaf162401, 0x7f7f5a88, 0xa5f8571, 0x61ca134b, 0x000020 }, { 0x738a7170, 0x6ff5fed2, 0x754127e3, 0x5ef8440d, 0xa01eb1f8, 0x2ba635f6, 0xf5bf4cc5, 0x4c7a637e, 0x23833d1b, 0xaf218a45, 0xa19db09d, 0x1ade41e, 0xafce6bf1, 0xee04ee9d, 0x508dd277, 0x2f4d624c, 0x00017e } }, { { 0x4bab9a99, 0xd62c1d00, 0x1a809896, 0xb1d81e94, 0xfc15571, 0x330ff92e, 0xe71e5ad6, 0x3272c5fa, 0xe5da998f, 0x95be4121, 0x9cb6b8b8, 0xb589a56d, 0x21d07ff8, 0x734e9f11, 0x7b929894, 0xe177038d, 0x0001b5 }, { 0x29007f2c, 0xbc218f8b, 0xf03fc940, 0x4c0b692f, 0xe0cd4c28, 0xac68f3a2, 0x4bb98bee, 0xcdf8d209, 0x9b240d9, 0x27e8d1fb, 0x759386f3, 0x5ea599fd, 0x2f1084e, 0xed63c9b3, 0xd22accbe, 0xe3fbeff1, 0x0000f3 }, { 0x40eb2568, 0xd39b2e84, 0x926661d, 0x297b81a0, 0xcb95dbf3, 0xe67b84b2, 0xb1d8092a, 0x5968f541, 0xaec74cf7, 0xfbe22de0, 0xf5b0ee77, 0x68c1be4b, 0x4debaa27, 0xa58506fb, 0x8e67631d, 0xfc0c0736, 0x0001cd } }, { { 0x5e2ebe76, 0xc11f7006, 0x63b72bc3, 0xca65e4a9, 0xa14476db, 0xbfa47362, 0xdc1ae6e, 0xb5346bd4, 0xbd92be57, 0x3c4a3be, 0x602c8d17, 0xdf2978e1, 0x591ec2a, 0xbf17a6ec, 0xe99fe630, 0x71c2c941, 0x00007a }, { 0xd0980dd2, 0x5cb0e911, 0xa27a98c5, 0xe4ecafa1, 0x3a141c4c, 0x3f383f3f, 0x8383ad8c, 0x65bf080d, 0x9ad1946e, 0x20402b6, 0x177b8c3a, 0x819431be, 0x3f028879, 0x1842032b, 0xdc19d4fd, 0xf4e1fec6, 0x000164 }, { 0xaa9e6bf6, 0x450342c8, 0xdff02fd1, 0x49827619, 0x4f0e82e5, 0x9cd1de57, 0x4fe44a70, 0xce45cb67, 0xdcd5edce, 0x2335f39d, 0x9f5df718, 0xf6485180, 0xb54ea7a6, 0xe7abecee, 0x88650d1c, 0xcb1ba677, 0x000035 } }, { { 0xde8dacb7, 0x88c7647b, 0x77c70ecc, 0x65e1c72e, 0xb4879b27, 0x8e58669d, 0xac01af45, 0xe25b26c9, 0x13b8ff00, 0x2f11c5f5, 0x3f2d866d, 0xb0be786, 0x4427c66c, 0xd56e3a8d, 0xbf3fdb39, 0x51cc5f8a, 0x00000d }, { 0x97f8ea2e, 0x94d65610, 0xd0ebc8fe, 0x3e27ab42, 0xb07f9523, 0x74cf2311, 0xeebd58b0, 0xad4ea2e3, 0x2139f398, 0xb0e11199, 0xe28d1988, 0x476c39ca, 0x45502dd7, 0x9adbdc37, 0xe1a4e7f4, 0x4bfe72c3, 0x0000fd }, { 0xa940f65f, 0xdc81cdb0, 0x424b05f6, 0xa898a42c, 0x45165873, 0xb4c454d, 0x1e0aac3e, 0x37a362fc, 0x4ecf3518, 0x1e050840, 0x6306197a, 0xb1f8747f, 0xb1adf1ab, 0xd44a821d, 0x42de5409, 0x2fc39206, 0x0001f9 } }, { { 0xcab7ba21, 0xe80bdc9a, 0x5fe568b9, 0xc6a5d723, 0x22d2d139, 0xc3273ebe, 0xccbd8987, 0x8919ec39, 0x797ea57e, 0xe270a889, 0xb146013f, 0x4b93525a, 0x58ec901a, 0xf8e55344, 0xe0e81d04, 0xc8acbb63, 0x000058 }, { 0xadf37b62, 0xd23d5c49, 0xd98e6755, 0x2d4daefb, 0xc98ff4d5, 0x714a4518, 0xe00720ff, 0xeed89817, 0xe1a67abc, 0xd842064d, 0x3838c384, 0xfd99074b, 0xb3712433, 0xd3c942c9, 0xab8ac6ff, 0x4266e55c, 0x000184 }, { 0x84c5a45d, 0x40377167, 0xa62f8089, 0x6f721125, 0xb539225b, 0xfdd94ccf, 0x3c2068bc, 0x69534b9, 0x2f00da24, 0x52baa0b1, 0x6b6d2226, 0x104dd804, 0xd8a573c5, 0xba9cde91, 0x272c3805, 0xf62106af, 0x000087 } }, { { 0xd78fed6, 0x1dd1f7e2, 0x380785c, 0xe95e9b29, 0x8f8033b9, 0x64af0f98, 0x1f703d89, 0x952486a, 0xebde5d8b, 0xbf7717bb, 0x66ed7cfb, 0x4f8a7540, 0x36ba13a2, 0x4671b0a8, 0x1305eb9a, 0x63953be0, 0x000146 }, { 0xc665e947, 0xd1f973e2, 0x7c2ba003, 0x49272270, 0xbadb1809, 0xdb56e9a9, 0xa53a6e04, 0x88b9940a, 0x951a1348, 0x885dc316, 0xd30034b3, 0x66555147, 0x40221642, 0x4168cdea, 0x669b16ba, 0x131ccf79, 0x00003e }, { 0xdce2b60d, 0x3170e656, 0xf14a9d80, 0x8ca14188, 0xdbe682f2, 0x1b5a1c21, 0xf73b7786, 0x8a956f63, 0x3474df9a, 0xe4145c42, 0x1ee5f0c6, 0xdf7b39d2, 0xef81d52c, 0xac475f5, 0xd098b07d, 0xf8e47adb, 0x0000cc } } }, { { { 0xede97331, 0x4ca2daa2, 0xc2d0ac4f, 0x3aba3887, 0x1b39a411, 0x93ecb478, 0x286e0950, 0xae15727e, 0x884b3369, 0x3c3deeb5, 0x2ff13c66, 0xbc57187b, 0x71caa235, 0x99e076d5, 0x9a796022, 0x997fb37c, 0x000093 }, { 0xe2d20d9, 0x1a0ad0bf, 0x9fd33537, 0x10ab8824, 0x739f8572, 0xa5ce4848, 0x4ead38b4, 0xfac46bbd, 0x9306df1b, 0x4b15e74d, 0xed0f3bf1, 0x8e1b48f5, 0xe234963f, 0xfb9fa0b9, 0xac2c3706, 0x4bd78ff6, 0x0001bd }, { 0x869b3b6b, 0xe54f5742, 0xa26251d, 0x2f81aa35, 0x9b8340a5, 0x40b59eaa, 0x765b031d, 0x27c1b21a, 0xefa19f0, 0x6f3c5541, 0xb00f838a, 0x1e3c1f, 0x7f1aaf7b, 0x1923f1c8, 0x7dadd5d3, 0x15915b42, 0x00004e } }, { { 0x536cc340, 0x4332ac25, 0x4f10260d, 0x3695a0f5, 0xbf7c3e4e, 0xbe7a7e08, 0x4160e05e, 0x2475ea19, 0xd3318f4f, 0x53a1c3c8, 0x7c55a058, 0xa7e05c33, 0x1d6ef746, 0x8e6a4937, 0x7017ea45, 0x9ded4365, 0x00017b }, { 0x2ab2da17, 0x10c63323, 0xef39a44d, 0xc20af816, 0xd33a8608, 0xc1654c4a, 0xc56d8837, 0xdc0c70d4, 0x9be9b718, 0xb0e3581c, 0x1fafe9a4, 0x28368a9b, 0x56a292d6, 0xda4404bc, 0x7db47741, 0x4caad29f, 0x0001d8 }, { 0x9f16f0a7, 0x88ca1bbc, 0x77339db4, 0x4d8e0ca1, 0xe810d8d2, 0x260c6ef, 0x164032b0, 0x4f634ff7, 0x33068bb5, 0xc72393d0, 0x80e92d28, 0xa03dfaa0, 0x3399e983, 0x5b878a1, 0x3dd2d3bd, 0xa820ca8e, 0x000051 } }, { { 0xa6dae73b, 0x59a25b75, 0xffef2606, 0xa85b18af, 0xcdc47bda, 0xc6dee68f, 0x187f2903, 0x2f9aabae, 0x5fb6022f, 0x406dcb2f, 0xc94a66cd, 0xdfdcb7eb, 0x383de00a, 0x59df4efb, 0x4b968dc3, 0x5457cca, 0x00015f }, { 0x240ae77d, 0xf2ab32e9, 0xc3279c0a, 0x46e22ecb, 0x43a01ba8, 0xb48cdf0d, 0x4b6a4119, 0x5d50a41b, 0x4fff094b, 0xaf90f7f6, 0x846b3364, 0xff69c9c0, 0x6e7237b9, 0xec959bfb, 0x7c7207b7, 0x9a3e466e, 0x0001dc }, { 0xfe81a9e6, 0x65816967, 0xdb86b6d2, 0xf40a2fd6, 0x405204c6, 0x3e078be8, 0x21f55ad6, 0x575c0af2, 0x138edf1a, 0xba9618c4, 0x71a33808, 0x67493597, 0xa4b351bc, 0x2bf0ef7c, 0xc09ed41b, 0x805b42ea, 0x000150 } }, { { 0x5c43a017, 0xf9bef172, 0x2da773ad, 0x55d28d4a, 0xa88fb790, 0x42530b39, 0x5ca24167, 0xfefec077, 0x9cf3e988, 0xa4b6416d, 0x82dde1a8, 0x78b7eb19, 0xe8de28d5, 0x6fcd45a5, 0x23c68359, 0xf7c9ec32, 0x000052 }, { 0x6a41fd59, 0xf828e462, 0x6a5f4b48, 0x3fb8cd2b, 0x30b435d2, 0x10c0c432, 0x6fce462a, 0xe107ead9, 0x214e2958, 0x521b16e3, 0xd914143d, 0xab061b64, 0x7e7fc32, 0x5698b6f4, 0x2735d451, 0x1a574aee, 0x0001ae }, { 0xe13e540, 0x2184a770, 0x2932749d, 0x57dd078a, 0xef389e93, 0xa68d232b, 0xf4f84fba, 0x705c318e, 0xec4353dd, 0xb72daa81, 0xded18043, 0x6b35d991, 0x61578bf3, 0x15c6ad5, 0x8cf61035, 0x25836195, 0x000096 } }, { { 0x888afff6, 0xbc5ff8e1, 0xe8701733, 0x48340dd3, 0xfaf45e01, 0x44c82f3, 0x631b7baf, 0xb4ea33bc, 0x30b17f9e, 0xf427dc, 0xa14246f3, 0x500ae37f, 0x42d1e9b6, 0xc08a376a, 0xbbb05001, 0x810f0d80, 0x000030 }, { 0x97d742b7, 0xf052fb68, 0xd2ead888, 0x14fd3887, 0xe657a04b, 0x46b52b30, 0x4f7bc085, 0xbc4e9f8e, 0x843841a3, 0x2a291144, 0xb667ac9c, 0xb010f41b, 0xa4156c84, 0x93e29b72, 0xba22f828, 0xbeae3f6, 0x0001ca }, { 0xadbbf110, 0x53353962, 0x5263de87, 0x42327905, 0x96f29202, 0xbf9d8a70, 0x882c1029, 0x88429f27, 0xd49615c, 0x31710d0d, 0x28e93a08, 0xffae7e42, 0xf24a576f, 0xf06819f2, 0x52dce164, 0xf222ef79, 0x00010c } }, { { 0xf565db8a, 0x52e375f9, 0xaec2bdad, 0x5de83203, 0x1adcae68, 0xcce64fed, 0xd893554b, 0xc33e2232, 0xe8f7658d, 0xec4543dd, 0x8ccc7f2f, 0xad8cfb3a, 0x686557fb, 0xb0fcc8fc, 0xa3f16465, 0x68fdd300, 0x000106 }, { 0x7d6433c8, 0x1e0c900, 0x9df3903b, 0x4be4ee00, 0x12c8ee91, 0x6a7c4c04, 0x6c58749a, 0xac82615d, 0x923bb471, 0x7fa9d436, 0x16185465, 0xe88fe616, 0xfde097e8, 0x85bc2cda, 0x7498f016, 0x89c29826, 0x000063 }, { 0xce6fcd6, 0xf2130e63, 0xfe39556d, 0xceb25938, 0xef768cec, 0xfb6539a5, 0xbd48708a, 0x1a53be2d, 0x5985a010, 0xb4c2bce6, 0x52c52779, 0xcd44ce79, 0x7a9e6111, 0x8fa924dd, 0x86e5274e, 0x35b6838a, 0x000126 } }, { { 0x112d5ae6, 0x7831137c, 0x31b572da, 0x65689fe0, 0x782eb35b, 0x6045af6f, 0x1981ef00, 0xd58cde1b, 0x6ac91b2a, 0xf35c05cb, 0x9f94f6c6, 0xd362f48a, 0x67cfabf5, 0x606c0f07, 0x3bdcba3, 0xf53f2b0, 0x0000cc }, { 0x601b7aeb, 0x49559b51, 0x87dab5ec, 0xa342c23c, 0x7bb43b24, 0xa5540cf, 0x17f7f2f7, 0xe1c7cbc6, 0xaaca463e, 0x139af1cf, 0x275bc12, 0x344afe4e, 0x504d7458, 0xc349f8fc, 0x22d2c029, 0xe15f4ab, 0x00012d }, { 0x59acafd4, 0x2ab5ec96, 0xb67f534d, 0x58189189, 0x99ce782b, 0xc8bd4c97, 0xaa268e76, 0x54d11cda, 0x97d7680f, 0xddbf0bf8, 0x6edc920d, 0x7f1362f7, 0x8ea8bab, 0x9745d71c, 0x640ab1dd, 0x424caa17, 0x000060 } }, { { 0xdb474d94, 0x4e2176aa, 0xe7626fbb, 0xebb50d5c, 0x7cd2e1ed, 0x453a122b, 0xf847e92c, 0x24f5eb85, 0x38cf8367, 0xb686d758, 0x661d158c, 0xe7618237, 0xf2371243, 0xd21b927f, 0xba97e76c, 0xde3fd63b, 0x00019b }, { 0x97424b56, 0x3ddb5d8f, 0xc2071a24, 0xd060274b, 0xcf0e2a52, 0x5ecf1007, 0x9c684f98, 0x82932043, 0x2ce16825, 0xe4ee8502, 0xacbcaff0, 0x96c35b5b, 0x95de82ca, 0x61746144, 0x5f71cac8, 0xfc9865b9, 0x0000d0 }, { 0x2588113a, 0x7e2878d6, 0x4665136d, 0xf207043e, 0x623d1388, 0x2af72ff1, 0x8726c9b1, 0xae05646c, 0xc33c0176, 0xce7ecb31, 0x7444ca83, 0x345d174d, 0x1177643d, 0xbdb03247, 0xeb357a78, 0xb09d4d08, 0x00005f } }, { { 0xeecb7691, 0xd5b8af4f, 0xdd3f2ba4, 0x68b2fa3d, 0x58b834b4, 0x21c10237, 0x66c9e10c, 0x84199d0b, 0x2816fb3, 0x1d28b6ee, 0x3f093ada, 0x7e2c7ce2, 0x87d67082, 0x94d1dddf, 0xe24f581e, 0x20cf519e, 0x00006a }, { 0xcd103c53, 0xa9a32bbe, 0x2459ff26, 0x8fdd915f, 0x8ea6f73d, 0x1421edff, 0xf26bbba5, 0xcbd64374, 0xb4ba29a, 0xcfaae782, 0x6cce54e9, 0xee4ed287, 0xf2d5b475, 0x5edced0e, 0x82b832bb, 0x268f566b, 0x0000a9 }, { 0x3d0c7de2, 0xdf9a39c5, 0x5f9f441a, 0x69d29779, 0x674543e, 0xfc44f41e, 0xff6bd7bd, 0x475107c3, 0x5c44d2a4, 0xb111451b, 0xd3690e1d, 0x2c8f82e3, 0x4c26d1dd, 0xc99bb18a, 0xc178bd86, 0x81fcfa76, 0x00015d } }, { { 0xaabcb0a1, 0xae476cc6, 0xa56c0ae6, 0x775aa2af, 0x9171a646, 0x99765edc, 0x9bb0fa18, 0x2ede246c, 0x353e57aa, 0x1f87479a, 0xeb425854, 0xc0bceced, 0x521f4508, 0x337e351f, 0x92d2235c, 0xb0862109, 0x00004f }, { 0x2f8225ed, 0xe3f371d, 0x387f7f4a, 0x849c4c10, 0xc663e0bd, 0x9454b87, 0xf458f7e9, 0xed96f71, 0x5f249d73, 0x8f1df22e, 0xaff83791, 0xb8989314, 0x14bc00a9, 0xf5f1fa8a, 0x82cfbbaa, 0xb75d33ad, 0x00011e }, { 0xf231780a, 0x5c3efa39, 0x7daedb8b, 0xa23a1f93, 0x8e827d42, 0x8c1a8932, 0xf52d3c69, 0xbc267ee0, 0xff1fb771, 0x5349adcd, 0xfe08c4ff, 0x2ae5f960, 0x9c0f9201, 0x343d7b76, 0x856ca46f, 0x5bc26d67, 0x0001f4 } }, { { 0x892627e6, 0xf6158d80, 0x84eaf641, 0xcf44b2f1, 0x23238552, 0x9a604c7, 0xbfbd54d3, 0xd57ff9f9, 0x21d12901, 0xdada37b8, 0xd9bad966, 0xc81ec668, 0x823e8572, 0xbebe6f97, 0x400825e6, 0x5ada3c4a, 0x00018d }, { 0x3c593432, 0xe4c7e1bb, 0xc048fefd, 0x95c68d44, 0xd22e2e1f, 0x2d44ce7d, 0xed95d42c, 0xed8f61e5, 0xc1f6e3e9, 0x8c9ff37a, 0x7ed22f6e, 0xf2040202, 0x65536513, 0x455ea53d, 0x554f1f4c, 0x6aaf83d8, 0x000006 }, { 0x906b07c7, 0xe5b986d6, 0xb7616fa4, 0xf7dba99, 0xc3a47f16, 0xea440a7d, 0x5e747e0f, 0xfcba7460, 0xed48d23c, 0x2dae1029, 0x4862d2d0, 0x5ba8345, 0x476cb7bf, 0xfaf3d649, 0xd099162f, 0xf33dc9ac, 0x000047 } }, { { 0x9e49dacd, 0x808893c1, 0x41e97f6f, 0x80f88b02, 0xdb84db1f, 0x6e76864d, 0xc00859a2, 0xcc61a09a, 0x69fb3eb6, 0x6403de9, 0x2cb3c684, 0x419b4f09, 0xe053f0d5, 0x32827c1e, 0x92016e26, 0xa86cd0f1, 0x000168 }, { 0xc1d6d2f9, 0xb5799f35, 0x62a5a830, 0x1514afc5, 0x27290cc2, 0x435a5779, 0x25601296, 0x87dcaed4, 0x7fe77d14, 0xae05a2f5, 0x3a107890, 0x87392487, 0x2e0d5e8f, 0xbac02059, 0x4302d09, 0x9e91c865, 0x0000c4 }, { 0x551097c8, 0x5c2447fd, 0x5d144f05, 0xbecfee1a, 0x69f8f6a8, 0x1f021d39, 0xdc640036, 0x309cdf70, 0x4dc039d2, 0xe45299b8, 0xf24f1fd6, 0xe6255da0, 0x9b804646, 0x1c301353, 0x9336072c, 0x8d80a0f6, 0x0001ed } }, { { 0xe3ed6db7, 0xb0015a27, 0xd285ce4f, 0xc1e7e792, 0x5919de4a, 0x33cbb09e, 0x261845fa, 0xe52a66a2, 0x82443993, 0xf0d77f80, 0xe0fd0400, 0x43a2e160, 0x3858b40, 0x90671be9, 0x1404ce6d, 0x17bde38d, 0x00012a }, { 0xab8ec9d, 0x81dcd584, 0x2c217947, 0x1e36f52d, 0x7ff35cad, 0xdcf082ee, 0xd019e4fa, 0xaa4899dc, 0x7852baa8, 0xf75c87aa, 0xe7dddc77, 0x626e6765, 0xfef6908, 0x1bae96d6, 0x9956c4b1, 0x2e8443d6, 0x00016b }, { 0xc8239581, 0x15326af2, 0x87b033ec, 0xafbed3cb, 0x3071656a, 0xb2464cd6, 0x49749573, 0x4bef152e, 0x74b937c6, 0x1e696e4d, 0x2b6a9afe, 0xbece4262, 0xb96b4db4, 0xf8d2e83b, 0xdc61a3cc, 0x49e8921b, 0x0001e3 } }, { { 0xbb77f658, 0x882ed8a1, 0x991552f8, 0xc84fb215, 0x664b63f, 0x37a66913, 0xa502b32d, 0xaa6f8bbf, 0x873eba66, 0xa65cadf0, 0xd9f93158, 0x42d22788, 0x106318ab, 0x76229755, 0x653a1949, 0xc48b1d0a, 0x000060 }, { 0xf5866195, 0x4715218e, 0xfd718c2d, 0xf3a14304, 0x957aecee, 0xfe9a0c44, 0xb25b8eb4, 0x5d8d1142, 0x29072b10, 0x69660f3c, 0xad19005c, 0xbac2af1c, 0xee1d6df7, 0x27e5ceac, 0x57efbb10, 0xe7e3f0d4, 0x00002e }, { 0x3b805988, 0x190a29e9, 0xf7b0759, 0x9b954420, 0x2cf86ca9, 0x7887d864, 0x79a2e7fc, 0x6d7d777, 0xbfff79dc, 0x2fb55ef3, 0xec65fb7d, 0x5d8d31bc, 0x108166c4, 0x8d734ac3, 0xcaef636a, 0xb16ff72d, 0x0000f5 } }, { { 0x616c4673, 0x7a29d6a, 0xfba1ca9c, 0x1a995c9, 0xec85bb45, 0x23554cf3, 0x20010b29, 0xb7bb9340, 0x120d0995, 0xe4153076, 0xa8020b59, 0x2464a463, 0x374d4d1c, 0x7b97b8bb, 0x8962bfdf, 0xbbe7aa96, 0x0001c4 }, { 0x7fa769d, 0xa596523d, 0x914fdefe, 0x6e03f677, 0x2e97c930, 0x321fe548, 0x7f7f5611, 0x8bf85420, 0xd0da452c, 0x269394a2, 0xbe2e9cc8, 0x85f912c3, 0x90ad68f8, 0x6732ce3, 0x8fe16c3e, 0xe2e89efa, 0x00014a }, { 0xe6c93ca1, 0xae565d86, 0x3146b0cd, 0x93c377d9, 0xeb2c6c1, 0xf193b742, 0x96465c4e, 0x92343e5d, 0xab196a13, 0xa3e51d2c, 0x20d7edc7, 0x38a2095a, 0x1ad0bcb3, 0x3a7466e5, 0xc0cd8c49, 0xb14857e0, 0x0001dc } } }, { { { 0x397a1ab5, 0x96478a5, 0xc1e02b40, 0xc6ecb896, 0x401eb5c3, 0x61445eea, 0xff2b623d, 0xa7283121, 0x2a195174, 0x8976530a, 0x194caf25, 0x5c443ddc, 0x4623b2d, 0x49711806, 0xd79c50a7, 0x9dadceb, 0x000123 }, { 0xf0f70c31, 0xff215e0a, 0x2594c353, 0xe18613fe, 0x2bcd3f36, 0x9532070a, 0xa97a1a41, 0x974c4155, 0x7c941117, 0x3f748f58, 0xd4ffcbdc, 0x244a8cfa, 0x26a01a, 0x3c240a5d, 0xa0282124, 0xb8fac688, 0x000131 }, { 0xdecad327, 0x1291f9d4, 0xdb88f43, 0x9b0e3b8, 0xbc032769, 0x5764484c, 0x92cc635b, 0x89cbc6b5, 0x12a876b0, 0x5a22ed98, 0x94dfbe21, 0x9ff1e683, 0x79965f79, 0x92c10a7a, 0x684ea68d, 0x7c2cb934, 0x0000d8 } }, { { 0x2c73f1db, 0xce676245, 0x80250442, 0x99366bdf, 0xde9619c1, 0xc4f1c524, 0xd9a1756, 0x5e6f446f, 0x3bc1f1fc, 0xaff732ce, 0xbc860381, 0x891e89d8, 0xfb62618b, 0xc5682dd1, 0x1349ae24, 0x8b9bc311, 0x00014e }, { 0xc91bc315, 0x284ead44, 0x84bbb0db, 0x204e89d0, 0x14e530ba, 0xb3fd02c8, 0xa62b93c6, 0xd13082e5, 0xff51b802, 0x1360c240, 0x68bf21e2, 0xb2ae8430, 0x6d39b504, 0x44336630, 0xb2201e51, 0x45879dc8, 0x00017d }, { 0xa8a13d9, 0x4a7b29cb, 0xcdb4059f, 0x1cee233, 0xf07376e, 0xf6f4d8d8, 0x7f43fb3d, 0xba47668, 0xecc1b6cf, 0x4d6cf11e, 0xb64c15b3, 0x7f77c92d, 0x60df0d89, 0x34679416, 0xa8ff4a51, 0xfb7c00d8, 0x00018b } }, { { 0x77e94be8, 0xd8cad52b, 0x8711ff5a, 0xcab2140b, 0x9725d069, 0xf3bf7b30, 0x446d2297, 0x5b15a722, 0x43a6b95b, 0x17fea317, 0x97042d4a, 0x21b35c36, 0x26bd7fc2, 0xaebb0abd, 0xb1753cce, 0x91019897, 0x0000ce }, { 0xb94431a3, 0xd5fb3a07, 0x30bf0141, 0xaf97115f, 0x1965400b, 0x7bff3e42, 0xce6e3d4a, 0x8be67fef, 0x8477c19b, 0xbace081d, 0x685c338c, 0x2174d596, 0xe99a9770, 0xf7389343, 0xb10865cb, 0x6dcca25, 0x0001d7 }, { 0x847e4bbb, 0xfb75077e, 0xcc344532, 0x7d6d78d1, 0x80688e64, 0xf686cde3, 0x33769bcd, 0xdffc0e10, 0xb824efe1, 0x2124fc04, 0x562188d9, 0x431c7964, 0xad71be1f, 0xd1d2f216, 0x974acd71, 0x5a0af002, 0x0000bc } }, { { 0x137e0f16, 0xc4ea3dce, 0xcb2f34c3, 0x56f7810a, 0x312a0e01, 0xb1a6ee7, 0x4e6f0888, 0x6cb0d358, 0x1e22a851, 0xa1b40def, 0x7f749b2b, 0xc8fc8e7, 0x18fb9dad, 0xb2dd663b, 0x6cae12a0, 0xe1b5d1a1, 0x0000a7 }, { 0x25b8f85f, 0x4df4c094, 0x925c6100, 0xa4e49b18, 0x4815695e, 0x40725c4b, 0x23332f93, 0x37fc6bfb, 0x846d2b15, 0x59f503a8, 0xa6cbeeac, 0x244957c7, 0x57358831, 0x1ad9268d, 0xbbf58bc0, 0x86242781, 0x000009 }, { 0xe919586b, 0x9e4a83f3, 0xb7766a66, 0x880c69b9, 0x8c0376ad, 0xf34810ec, 0x963de661, 0x9edbebc7, 0xba67fd3c, 0x6dcabef4, 0xb45750b1, 0x83e261a2, 0x82ce7c44, 0x75d2f866, 0xc5ecc287, 0x1ad04264, 0x0000aa } }, { { 0x90c084db, 0xb0a25752, 0x3911ddcd, 0x50b8c730, 0x316dec47, 0x77f6fffb, 0x58fe90e7, 0x63da6ab7, 0x7937b868, 0x4fd39e89, 0xa252e922, 0xbb2c04b8, 0xb626fe9f, 0xca0ae9b8, 0x16b4eea7, 0xc1259a4c, 0x000188 }, { 0x5e76f7ac, 0xc087da73, 0x147d1d1f, 0x718a24c3, 0x4d3b7a4e, 0x9229e080, 0xac8ae112, 0x5969669f, 0x9ee16a61, 0xc80776a3, 0x51ae9514, 0x491ccb41, 0x51e35e0f, 0xcf09f129, 0x7dd609b5, 0xb9605875, 0x0001fd }, { 0x27305395, 0xaa353c07, 0x5e83d5e3, 0x20928efb, 0x2b63a79e, 0x1ec5ab80, 0x50fa7a80, 0x35e3107e, 0x30ece292, 0x368dc8d, 0x4b8604a8, 0x581e09b7, 0x2246defa, 0x714de79b, 0x19f21868, 0x3b4dd3be, 0x000151 } }, { { 0xdc612bb8, 0xf8559d46, 0x9fbf3853, 0x6464d746, 0x92778f4, 0xd217eee5, 0x6c450bc6, 0x8bec3f78, 0xab09127f, 0x9c5c63fb, 0xc15b3a4e, 0x5221b2b7, 0xa5d75a83, 0x68e0f69d, 0x68ed23bb, 0xdf7ee3ea, 0x0000a2 }, { 0x7aa17ffe, 0x540ce776, 0x76f2842d, 0x4a0cb59f, 0xf48e0592, 0x1fc933f3, 0xcb9286ae, 0x78246cc3, 0xb8765472, 0x554040ec, 0x195eba31, 0x1ed3c51a, 0x2d0b9563, 0x1d6e6a9, 0x72dc511b, 0x54d7a976, 0x000177 }, { 0x96e7ccc3, 0xcdbf6880, 0xff4e2379, 0xd45950a2, 0x2f9e8a02, 0x20b304b0, 0xd48675b5, 0x4920d0dd, 0x7caaa26f, 0xf337b888, 0x226a351a, 0xd8e42d06, 0x4a58fddb, 0x3a6bf5a3, 0x4538592d, 0x81a4dd4, 0x000164 } }, { { 0xbe0bd5c5, 0xe705aa6, 0x48ddc615, 0x6d890d50, 0xe888b736, 0x97cdfc7e, 0x75a17de, 0x970dde7, 0x8442d8e7, 0xb9e21d77, 0xa07953e7, 0xb673c33b, 0x77988754, 0xec50bf20, 0x354f5e47, 0xdd6344f9, 0x000120 }, { 0x3cde697b, 0x4a08597e, 0x9690254f, 0x3c84c70c, 0x709e6931, 0xc55a3aa0, 0x6b67b8c5, 0xea81e8e, 0xa57c4c4b, 0xb30d4134, 0x5ab7b0d9, 0x2587d817, 0x7d5cce84, 0x26b066fe, 0x26289373, 0x6020850f, 0x000171 }, { 0x448c0add, 0x3ebe5ee6, 0x150020cf, 0xece45122, 0xa9b5d22c, 0xed52adbc, 0x62c17661, 0xe2b4ec65, 0x37c9c873, 0x385a7b20, 0x53b28843, 0xd96b4e6, 0x26ad5cb8, 0x69ccdc46, 0x550cc275, 0x8e313e0f, 0x000068 } }, { { 0x47446039, 0xdd747c1, 0x9b3bdac2, 0x51a6bc69, 0xb6725ede, 0x7b52938a, 0x366509f5, 0x6b67fbaf, 0x32156364, 0x3531257d, 0x34403285, 0x267b21e6, 0x99fb717, 0x581985f9, 0x505e94a2, 0xc1baaba6, 0x00002a }, { 0xb559cbb6, 0x447c5fda, 0x9b1f6bfa, 0xf7681eb4, 0x6b63ed4c, 0x602253e9, 0x1f374bdf, 0xb2dc686d, 0xc79b449b, 0x2d82be7, 0x697d0582, 0x12596868, 0x82d0a511, 0xe2852e98, 0x63f5a27, 0x288c8fbe, 0x000006 }, { 0x182a0b66, 0x73e2071a, 0x690d1002, 0xd00ddf5d, 0x59975794, 0xcdd2c819, 0xf2547d8c, 0x582dd893, 0x45184f03, 0x899e2558, 0x4ac83564, 0xc846a600, 0xecc52d97, 0x3870bdde, 0xd62c34b8, 0x579e87a, 0x0001dd } }, { { 0x6aecf17b, 0xfcb78098, 0x3db0ba62, 0x598fc9d5, 0xaab058d0, 0xbb228214, 0x232a2dcc, 0x2d6e41a2, 0x4d52ee49, 0xd3d17c8b, 0x51732fab, 0x2cc83e7, 0xeaa6b1f5, 0xbce07109, 0xf9993439, 0xc238757e, 0x0001db }, { 0x4b76150b, 0xac2ea645, 0xb381a6d, 0x357aeb36, 0xc8b38bdd, 0x89e8b4bc, 0xbbc90d66, 0x1d34660f, 0xad5efd0d, 0xd7b7486d, 0x5ee4d752, 0x9888c90d, 0x7ded0b87, 0xda9602f6, 0x2fe2ebd0, 0x175597eb, 0x000040 }, { 0x6a03b803, 0x76556f1c, 0xac8ff146, 0x1fcf90f1, 0x4876513c, 0xb99d185b, 0xf5409eb1, 0xc6f37f12, 0xe9c1ec91, 0x6891fd8e, 0xd02b29f0, 0x769abe3a, 0xf9e4d12d, 0xd9206899, 0x237bf239, 0x574c229b, 0x000080 } }, { { 0xc02ccc6c, 0xa366dd42, 0x4673363d, 0x776ac60f, 0x414355f3, 0x62e2c815, 0xf99863b9, 0xedfec1ae, 0x1a49fe96, 0x6c005898, 0xccbbada0, 0x56bd3523, 0x1c1d028f, 0x331d1064, 0x462c7be3, 0xbd53072c, 0x0000c9 }, { 0xa0fa486a, 0x3ba4c5ef, 0xb184fe7c, 0x38a50d1b, 0x51dbcec2, 0x1857d9dd, 0xce3e376b, 0x9331c513, 0xa2b14857, 0xd3aab8dc, 0x36561d86, 0x52f09b5, 0x28d815bc, 0x719b1231, 0x7967b372, 0xcb75dc99, 0x0000fb }, { 0xc8a056e3, 0x4082a71d, 0x560ce52a, 0xa5efd079, 0xacb86f1d, 0x47fa6ee9, 0xff14af0f, 0x364bfdf5, 0xf80aa20, 0x9ad34001, 0x31a2c9f, 0xbd0b2140, 0x3882550c, 0xd26c6a7b, 0x9f3a296a, 0x5838b1c4, 0x0000e4 } }, { { 0x2228d56, 0x8618fa92, 0x147c68f, 0x765a3add, 0x87503b03, 0x2599f729, 0xc732f841, 0x4ad77f9f, 0x60525a93, 0x58bf21cd, 0x5cbad3f0, 0x64b0d224, 0xe3a12577, 0xf78d327e, 0x5d0bf25b, 0xcccc4186, 0x0000c8 }, { 0x3f62c14f, 0x8802cf30, 0x5ad5aafc, 0x55b5d5e6, 0x342a30a6, 0x34eaa00c, 0xe46479cb, 0xdbc4d751, 0x8d52255b, 0x8a33d700, 0x199ec03e, 0x8e50ea05, 0x22304ca7, 0x65c38b47, 0x20374ee8, 0xf1476d60, 0x0001d2 }, { 0xc0bd0ab3, 0x41cdec1d, 0xaf2049c6, 0x951e5772, 0xcfbc84e2, 0x30cf248, 0x27d8e20e, 0xf93bac57, 0x299e2c25, 0xc56fd760, 0x6c3a536a, 0xc02f31b7, 0xda62bab6, 0x7c3adff9, 0x24328204, 0x83e8351e, 0x00015c } }, { { 0xc19a1e9c, 0x2641b8e8, 0xc498c782, 0xacb4c63d, 0xe6120ae2, 0x45b7914f, 0x819ff6bc, 0x65124d74, 0x2df5c2ce, 0xd02413b5, 0x533c0093, 0xad8010ba, 0x73927897, 0x4413b967, 0x4b0e0164, 0x8366b31a, 0x000121 }, { 0x76ceb933, 0x4d2e55a, 0x3fac5ad4, 0x7ba637ef, 0x2e07e341, 0x4b525631, 0xb8f90de, 0xacd5ff7b, 0xb0f0efea, 0xeccd6931, 0x8cf34c1, 0xa3bb9101, 0x421c9888, 0xecb88e4, 0xcb1067a2, 0x6b95af99, 0x000094 }, { 0x6551e3b6, 0xd9cc6d2e, 0x4d555612, 0xe53224da, 0x32b429e, 0xd8ddbb42, 0x1178cfba, 0xbf9f63a6, 0xbb376a3a, 0x15f7a63b, 0x78eb0cf9, 0xcccca590, 0x81c57144, 0x5ceb1367, 0x1fe16003, 0x78e9ee69, 0x000141 } }, { { 0x1afd0d47, 0x1c768a99, 0x1fbf9315, 0x2399d769, 0x4a5aeb8b, 0xa7009948, 0xe0c6e6f9, 0xdca5c356, 0x1a92bc02, 0xd3e0fa9b, 0x111f080b, 0xb8e28191, 0x750efc04, 0xcd7a953a, 0x58f4dfdf, 0xd303ca60, 0x00016d }, { 0x767917fa, 0x5658715f, 0x21352753, 0xc27541f4, 0x9da542e1, 0xe12aa948, 0xec40acc8, 0x1dbcfe65, 0xfdd493bb, 0xf5d8e9b6, 0xb05a13b6, 0xfdade287, 0x3a272b7, 0x87be1d10, 0xebdcda4f, 0xa709f694, 0x00005a }, { 0x6741b59d, 0x627b145b, 0x9b0f0c0b, 0xdc39eb67, 0xc9d4690f, 0x5c7faefb, 0x405e4880, 0x696044cf, 0xbf1cc218, 0x62811af6, 0x704bfeeb, 0x7d6120f2, 0x5b4525fa, 0xe21c9e4f, 0xda2dd250, 0x88ed62a6, 0x0000f7 } }, { { 0x5636b0f0, 0x59dc2ca7, 0x6f7a1f2a, 0xc8c4e4bd, 0xbc8332a8, 0x24bf92b8, 0xd74d62c8, 0xd9c6f09, 0x80883116, 0x905b202e, 0xc3845443, 0x1daa036d, 0xfde39ca2, 0x9ffc9788, 0xf9f80b1c, 0x8f124928, 0x00018c }, { 0x65638455, 0x49c9a83, 0x48e871b6, 0x6570650a, 0x99b2af2a, 0x9eb33d49, 0xede28f1d, 0x4c2d77c, 0xe1be3fbc, 0x577d65c7, 0xc7fe4696, 0xad6bc41e, 0x5b182706, 0x4ca7f39e, 0x37a68369, 0xdaad65a8, 0x0000df }, { 0x8b507e9a, 0xac296b67, 0xfaa8b5ce, 0x1f0c8460, 0xe4b6b4a5, 0x707b1d0a, 0x46fd318e, 0x2a783dd1, 0xa83cd3cd, 0xb4035fa, 0x1eb7eb9a, 0x45e7135e, 0x801451cd, 0x1b8d1297, 0x2784ac98, 0xa8b12cdc, 0x000077 } }, { { 0x2190ef5a, 0xe5f57d3a, 0xbc3cea74, 0x7977d5be, 0xafa8c0dc, 0x72f533b1, 0x9183acb9, 0x102967f0, 0xb634160a, 0x30841978, 0x4cbfc912, 0x61e5721a, 0x46681054, 0x53ab0a6c, 0x60283508, 0xab99ec82, 0x000015 }, { 0xb8be8ad3, 0xd225c516, 0x1c3b92bc, 0xc01ea41f, 0xe49862b2, 0xe84f28bc, 0xd3d0a442, 0xcfcd9a2e, 0x15e8b558, 0x29b6f9f3, 0x7f440231, 0x3009cafe, 0xc17d398f, 0x51532dd6, 0x316c7a81, 0x7bc751a8, 0x00003a }, { 0xc98fb61a, 0xfd9a6246, 0xba8d1c44, 0x6a54ff23, 0x9c6272cc, 0x3f88b37b, 0x3ab41ab5, 0x6036ea, 0x99c448cb, 0x1656f58e, 0x4509d280, 0x7f8b8746, 0xfc7a0b74, 0x87b7e9b5, 0x32c65ee8, 0xc7c62360, 0x0000fe } } }, { { { 0x79903cef, 0xd21a10d1, 0xfdb4960b, 0xfaff6e12, 0xac8b653f, 0xa94793d0, 0xec50d8e4, 0x8c3997cf, 0xb6a95429, 0x69c6a537, 0xf4a502c7, 0x78199e33, 0x24695e85, 0x24082657, 0x21bf7990, 0xff79aeb4, 0x000088 }, { 0x3ac8b5cc, 0x41fbb1ee, 0xc40ccc97, 0x2b3ec2a7, 0x48a9154e, 0x64adbaa1, 0x56df1930, 0xcc1d6a9f, 0x8d48d62e, 0xa4201da5, 0x6b94c49e, 0x8c49d80c, 0x76bc70de, 0x2779c91f, 0x9cbb9cb1, 0xc2af1ae6, 0x0001a0 }, { 0x58eda504, 0xe4da8ce1, 0x25a313d7, 0xca5cd0e1, 0x72e3aa17, 0x5ad20e6a, 0x6d219933, 0x879165b2, 0x2ae34e0, 0xdffe4f9d, 0xd57c54ae, 0x306277b9, 0xf286487d, 0xea299a55, 0x82d44bc5, 0xea62ea96, 0x0001e7 } }, { { 0x6b5ea740, 0x960debe1, 0x73a56b37, 0xb37f86e0, 0xa0ed8aa9, 0x5aad39f4, 0xfc9d4240, 0x591f6829, 0x21dbd44e, 0x39ae0408, 0x95b7d912, 0x8e015916, 0x188c6ead, 0x2652b4bf, 0x8da24792, 0x887e6ce9, 0x000050 }, { 0x5eb72a79, 0x52ee8ec4, 0x1fcc8fab, 0x3a3275d0, 0xeec2d54f, 0x4c8d8d70, 0x2459ca6, 0x4ca2a4b0, 0xec74bb93, 0x7298fa60, 0xbabe223e, 0x5d6c8e82, 0x3f7147aa, 0xe1d2e88d, 0x27df547b, 0x9b4d3d52, 0x0001bf }, { 0xae79d9db, 0xef2cb5b, 0x9f4ea6a3, 0xd3609eb6, 0x3fd0efd2, 0x63603043, 0x37c92798, 0xae550578, 0x8071d2ed, 0xc76922e0, 0x70b1c04, 0xed383a56, 0x692ac0c3, 0x3f6d7a1d, 0xda927219, 0xd6c6b515, 0x00019f } }, { { 0x9542efa3, 0xd275c49f, 0x1787c5b3, 0xc3695c4b, 0xfe0f8714, 0xec4cd4c8, 0xce2ff586, 0xe4f68d1c, 0xa41f9b80, 0x748f98c, 0xa685ba17, 0x7abbc517, 0x4a33664a, 0x76681adf, 0xaf53ab14, 0xe3803085, 0x0000db }, { 0xd478c56d, 0xf3552281, 0xf822e6f4, 0x888f3404, 0xefe067e7, 0x75f28965, 0x67bf0752, 0x5201b7ba, 0xc3d39de0, 0x57d9f052, 0x59eabda2, 0xa48cd856, 0xa101153c, 0x589ceb1f, 0xc5a9f0dd, 0xe2d0f543, 0x0000d1 }, { 0xb862f06d, 0xd80ff9a4, 0x73b363b6, 0x30d8b995, 0xe8c3e515, 0xeda321f5, 0x4ee6c1de, 0xb8947ea9, 0x77bb4830, 0xabdd8997, 0xe34e6502, 0x4975346d, 0xc34d3676, 0xc976be01, 0xd75f80ef, 0x5a19884a, 0x00006c } }, { { 0xfdb78835, 0x3fe4f472, 0xe7fdf513, 0xefb18665, 0xea6290f0, 0x33a5e718, 0x3d934d32, 0x9aa2eb8f, 0x35bb661b, 0xbe65bcc3, 0x967b2520, 0xe89d11e9, 0xfbb94ed5, 0xa505c9d6, 0xd0c5c6d0, 0x7ac9a4e5, 0x0000aa }, { 0x8e270159, 0x5bdfd739, 0x5c7e7c0, 0xabbf098f, 0xf337d8d, 0x4b9e3dd9, 0xf13a6433, 0x6b7acf74, 0xef19f8e2, 0xcadd20cb, 0x7d9b4e65, 0x97a6c295, 0x19cf5067, 0x69178adc, 0x8ea115b2, 0xba5709a9, 0x0001c1 }, { 0xa10f4565, 0x2b888921, 0xd320bf1f, 0x38175f20, 0x4f10c920, 0x74897ad1, 0x9a991a34, 0x578f9863, 0x72a7a77, 0x8b0f999, 0x67638657, 0x448217b1, 0x363e3fa1, 0x16faa8f, 0x853ca036, 0x6a235465, 0x00005a } }, { { 0xe00fcade, 0xb79f26d2, 0xed5edee3, 0x4c7c2aa8, 0x7576a32e, 0xf21b720d, 0xbfbe5ada, 0x23d44d10, 0x5e4f6c19, 0xcd0cfd44, 0xa54e283a, 0x6b5ca5c7, 0x235f91dc, 0x9bb3bdb3, 0xcd111c5f, 0x2bf2ef56, 0x000014 }, { 0x8912ce34, 0x8601c374, 0x4c74a55f, 0xc54251de, 0x5ac1d3d2, 0xa984af95, 0x54b1fd52, 0x37a2b64, 0x077c40, 0x4a5d79d6, 0xd887a468, 0x45469455, 0x83e3e45a, 0x13ff654e, 0xfd5ea24d, 0xfd1c6180, 0x000052 }, { 0xbbccd8d, 0x9d6505c9, 0xd489237c, 0x510cac90, 0xefa16ed6, 0x9882989a, 0x80500077, 0xe12a7247, 0x3bca7af2, 0x1e63482c, 0x90b3ac6e, 0xd5db6543, 0xc9656ebe, 0x40572e5e, 0xb4576b7e, 0xd7d99729, 0x0001d3 } }, { { 0xf9c99b5, 0x14299bfe, 0x39f90820, 0xd03b47f7, 0xa07c8aab, 0x900ac0fc, 0xbab1662, 0x9ca8b77e, 0xfa3fe5e1, 0x8f3e6bfc, 0x46f207c0, 0x70f602b5, 0x1b14c9d7, 0xbe001c25, 0x4b4bd720, 0xe4238da9, 0x00006e }, { 0x84479b6c, 0xf6606c2e, 0x32ff107, 0x8b1326f1, 0xe3b07205, 0x6ea8b29e, 0x21a76a44, 0x514b36f5, 0x706a8bdf, 0x3abcc279, 0x792bb0cd, 0xfc43cee8, 0x7b14a856, 0xd877fa00, 0x9bb34409, 0x39ff108d, 0x00005b }, { 0xb19c7a09, 0x71e4bcf6, 0xf0294260, 0x74c26c07, 0x1d165b35, 0x4ac23383, 0xe3239589, 0x3c753468, 0xab0ed1aa, 0x27a9d4f9, 0xe2fe7325, 0x122eaffb, 0x89f13b3a, 0x3d05cba2, 0x2f2e874c, 0xde3fab4a, 0x000060 } }, { { 0xf1a009d4, 0x7d4c693b, 0x23f05d11, 0x657662b2, 0x8e1f619a, 0x2957ad52, 0x1e75e294, 0xaa5ded74, 0x9740a7ac, 0x50526cb9, 0x51d9ea37, 0xca4d9793, 0x87c6f4bd, 0xf10d4366, 0x94cc188b, 0x65a024bd, 0x000013 }, { 0xed53852b, 0x189c539d, 0x7c0999e3, 0xfb57bd0, 0xd47f519d, 0xf4dbbe9, 0x58a952b9, 0x4fc245f7, 0xcac863db, 0xbb7e2a44, 0xfd56ef99, 0xe8747996, 0xdf9beb1f, 0x9347b121, 0xc27cecee, 0xc0af9ed9, 0x0000d1 }, { 0x5417a9f5, 0x5f35e281, 0xb27d814d, 0x4ced44b4, 0x70d19dea, 0xd35953f, 0xbf8b1c2b, 0x3e2a28f6, 0x4a50e65, 0x1fdc5001, 0xc5df2914, 0x6f250c05, 0xa0ce31e8, 0x1e90f852, 0xe590d82c, 0x870a3181, 0x00002f } }, { { 0x407f4d6b, 0xe2ae21d0, 0xdb252460, 0x78d959ac, 0x96c05af5, 0x37572c67, 0x157592bb, 0x16f8873f, 0x94c69edf, 0x237ec73a, 0x966c5340, 0x6f289267, 0x223075b4, 0x47c2fc2b, 0xe92d367c, 0x344ef966, 0x000154 }, { 0x9ec6df00, 0xae2e82aa, 0xbc96f870, 0x185fd133, 0x17e9c9e4, 0xa8df2b91, 0x31b46d33, 0x9ec20b58, 0x5b95c97e, 0x56fbbf43, 0x5ea6c8ae, 0x2fcbea3b, 0xffe0e71d, 0x10ec966d, 0xe9a25200, 0xfcc170dd, 0x000053 }, { 0xa0b75c2, 0x903d3f9f, 0xb8bcc9ed, 0xb2dd5935, 0xc75ebab2, 0xfb2d58c0, 0x645970e1, 0x427f14ff, 0xaad8ba01, 0xaaed9e1d, 0xc18bb792, 0xe02a191b, 0x1fbf57f2, 0x6fd4b975, 0x1565b546, 0x24cc3710, 0x00019f } }, { { 0x8c61c96e, 0x22f46588, 0x12c80e93, 0xc45f33c0, 0x4a19eeeb, 0x9f2c5344, 0x200ff154, 0x6b23e8a5, 0x51d8da5b, 0x88e17050, 0x38987751, 0x179defee, 0x1b27733e, 0x16673f56, 0x29fe87f1, 0xf5dbca76, 0x000117 }, { 0xbd44ad47, 0xe3ee16f2, 0xee757607, 0x62ca3b7a, 0x609e227c, 0xc716ec63, 0x65d3bccf, 0xc06a0a24, 0x5fe40b42, 0x7e9e8941, 0x41e126d5, 0xb2074e5a, 0xf52a0b55, 0x144a9a9b, 0x5134e2ab, 0xfe38266d, 0x00009e }, { 0xa1d700e8, 0x6d96fdb7, 0xa0bbdcc2, 0xf85e585c, 0x23262857, 0x4d2273d5, 0x2b4c4447, 0x68c328d9, 0x9978236f, 0x8d48f565, 0xace4319c, 0xc027935c, 0x6b08c1d6, 0xda0a13ca, 0x871080d4, 0x71995e9c, 0x0001eb } }, { { 0x86311db2, 0xd1d08ea1, 0xde5897da, 0x4371a112, 0xf69c337e, 0xd44bf1de, 0x6e34dbf8, 0xe0a2a04f, 0xda1a9808, 0xee13ab5d, 0xacd021cf, 0x1a868c24, 0x14dc9736, 0x83f94bff, 0x620098ce, 0x47db8142, 0x0001cd }, { 0x54c1ac6, 0x104a7bc3, 0x388caf2b, 0x76eddc58, 0x7b1f6948, 0x404f9e3, 0x8401e7aa, 0x3ad84aee, 0xf079d7a, 0xa0068a4a, 0x1bb4f66e, 0xc24b0c8f, 0x10ac9f4c, 0xa1aa02f5, 0x1177aefc, 0x5d448765, 0x000098 }, { 0xd8fac938, 0x896b7255, 0x8f8942e9, 0xcf85140d, 0x9618ae80, 0x2b36d55b, 0xa314095, 0xe8968de0, 0xb6efdc45, 0x53f0073b, 0x3b4ac65, 0xf31a0b4f, 0xdb6570fe, 0xa2dee063, 0xb24fe829, 0xa461c227, 0x0000af } }, { { 0x2bdd7413, 0x3cbf25b4, 0xb950c270, 0x839789cc, 0xf91407d6, 0x3b16fd0d, 0xfe314c9a, 0x3bb99ed2, 0xebece8b0, 0xff538843, 0x4799b7f5, 0x769fe6e4, 0xf02b3097, 0x155769bb, 0x78cfa1e5, 0xedd63e22, 0x0000d5 }, { 0xe0a3631e, 0x328a5a73, 0xe8b38dcd, 0x4f2a32fd, 0x96dfe157, 0x92801b7e, 0xe819a8ff, 0x19ec4731, 0x54a58690, 0x7a55cee8, 0x8f8602e4, 0xae67a6cf, 0x300566f5, 0x4d68b86e, 0x956faa57, 0xe912b67f, 0x0001ff }, { 0x7ce0d3e, 0x225c940f, 0xb22cbff7, 0x375c5b62, 0x34bf824, 0x8ec9a378, 0x581a3be9, 0xbf3fcb80, 0x34862f00, 0xb91f11e6, 0x2a867322, 0xf19f7a18, 0x4facc5ee, 0xdef0d2e9, 0xab7b5c94, 0x2cbebea6, 0x0001c7 } }, { { 0xfaced817, 0x99eb0b01, 0xe8f4e01f, 0x659c8439, 0x64890c87, 0xd272e060, 0x9eacc556, 0x14bc62f1, 0xb9bf4921, 0x7cfd3616, 0x9f9f9a7f, 0x47abca90, 0x44ada1b7, 0x6e54297c, 0xb4f268, 0x2e7991b2, 0x000177 }, { 0x1f47f19b, 0xd6b9e9b4, 0x402b30ff, 0x648b2046, 0x4f385db1, 0xb4e08d37, 0x96ed5b38, 0xd67f472a, 0x743ac5fe, 0x4f5a1f1d, 0x6a5c0327, 0x12480a50, 0x7454b13b, 0x442dc63d, 0xcdbf098, 0x76d97e80, 0x0001f0 }, { 0x31229a95, 0x9f95d2fd, 0xd50b37db, 0x3c68d80b, 0xa460064b, 0xf0c8c651, 0xca861751, 0xfd7a106a, 0x443df8db, 0x1bbf061e, 0x4d8b51fe, 0x9ffa6a7a, 0xee9727a2, 0x348c26ae, 0xff18858b, 0x208a935e, 0x0000d5 } }, { { 0x827b1507, 0x6318fac1, 0x4c70f516, 0x5560102b, 0x7215d4a5, 0x156e7771, 0xb5a8b8f6, 0x9b00e9d3, 0xddc0549b, 0x5b3e71b6, 0x1457066f, 0x12d90328, 0x96cb9915, 0x6c268c09, 0xf3d57dc4, 0xdc7225cd, 0x00001e }, { 0x1453beb5, 0x1e30dd0b, 0xaa84e5e7, 0x9522d66b, 0x5d298539, 0x2fbf7f38, 0x4314966f, 0xc03536fb, 0x2c978e2, 0x338db3a9, 0x36fa5ddf, 0x5c908f17, 0x1a29ad73, 0x47876199, 0x12a98abe, 0x202f9fa8, 0x00002b }, { 0x5c154015, 0xbf95efa5, 0x239fc82, 0x636964fb, 0x38373b59, 0xbc9e45b2, 0x17f9d642, 0xf111fec9, 0x89ac2a6a, 0x58869477, 0xb53f0ef0, 0x3dd58a21, 0x3187bbc4, 0x8ea403d8, 0xa2b2f203, 0x8fd7901f, 0x000003 } }, { { 0xce3408da, 0x825c0764, 0xb153a8fc, 0xc0c4fb7e, 0xe5b374ed, 0x3b8a74f4, 0x19c87626, 0xa64305c2, 0x2b75a858, 0xe9cc86d, 0x55b863, 0xd701505, 0xa6cfc3da, 0x9859f790, 0x80872611, 0x56dfaa7c, 0x000020 }, { 0xe19e048d, 0x7350c10b, 0x7f2a0f2c, 0xca3d32b3, 0x1e92ff8a, 0xf0999dc2, 0xc863b4aa, 0xafd642d6, 0x42aabb7c, 0x40b58a9e, 0x4ca0ec92, 0x3b9deecb, 0x9ccb8198, 0x691b74a0, 0xadf31903, 0x361d03ac, 0x0000c8 }, { 0x756d97c0, 0xe5128f8a, 0xfbfc3ad5, 0x32086ee2, 0x1d276299, 0x458025d4, 0x2f857162, 0x50dce39c, 0x541c9992, 0x5382b03b, 0x62513d6f, 0x7a18666e, 0x641498d0, 0xe53e7352, 0x7b21461f, 0x36853a53, 0x00018b } }, { { 0x787e3ae5, 0x313c41b8, 0x5f433abb, 0x8b7d1ef7, 0x427d9c53, 0x4e8ae10a, 0x7031d18d, 0x24f97038, 0x67ba6b2f, 0xddc97d3b, 0x419a97da, 0xa0ce2079, 0xea8e506, 0x1f62c8e2, 0xd1e9f0cb, 0xaf8dac5a, 0x00015a }, { 0xd2728273, 0xee6c5ab7, 0x3de2f725, 0xc737fd06, 0xf28616c, 0x8a80fb95, 0xdf838c0c, 0xb0f0de22, 0x28a7d3e0, 0x42253687, 0x7b93672a, 0x3923d21b, 0xc221ec6e, 0xa9e1f3b8, 0x7a71857a, 0x4fa17e72, 0x000082 }, { 0x3e9dea5d, 0x751b3352, 0x195abbb2, 0x830d3e19, 0x7d5c703, 0x2662e0c8, 0xbb2b6df1, 0xda7ff68e, 0x2e536e2c, 0x8049de4f, 0xb5545500, 0x3701f6b7, 0x26e47f2, 0xd70ce2e7, 0x1a532395, 0xaa9f03f2, 0x000041 } } }, { { { 0xe67e4965, 0xbc87ef78, 0xaec39094, 0xe1f40b30, 0xf851369b, 0xc2dcc09, 0x73d98e96, 0x84c70486, 0x14381cc7, 0x9d76af7a, 0x52b3058, 0x67887b1e, 0xfd87eb9e, 0x698b3db1, 0xe1c3a020, 0xbfda1640, 0x000130 }, { 0x4438e226, 0xdf523e73, 0xf5c62740, 0x398830ef, 0xb6ab1d8b, 0xb2dab3d4, 0xae7a130a, 0x1bcadcf, 0x43723dbd, 0x4dbc6e59, 0x7cd1703e, 0xb345c893, 0xabe509e, 0x3d768fc6, 0xd53d97dd, 0x7eeee8b0, 0x0000fe }, { 0xa5b02ec8, 0x8343b7d5, 0x86908897, 0x2f00d583, 0x2e7144bd, 0xcb6af9f5, 0x4ca71cc1, 0xf5849e62, 0x35310486, 0xbd34b906, 0x8e218332, 0x73427d7b, 0x626677b3, 0x986935c8, 0xc7f8bb10, 0x23388a93, 0x000141 } }, { { 0x7aea6499, 0x678e23d6, 0x76bf1509, 0x24041162, 0x4f5e1b0b, 0xf36b3ced, 0xd698bda2, 0xf364321b, 0x3eab85b0, 0x10a5a9f7, 0x6941f0c4, 0x73cad58f, 0x6e49a149, 0x98f003c7, 0x6b5bc08e, 0x7b71564, 0x000132 }, { 0x3c3f43f7, 0xf61075c0, 0xe7cd59c2, 0x81be926b, 0x796b9c78, 0x7a28ad3e, 0x2cad0b0f, 0x2d1829e1, 0x8b2e6d84, 0x49e72158, 0xc0dc3da3, 0x660ab6cd, 0x5d0545a8, 0x286eb3ad, 0x298d93d, 0x73aebb80, 0x00013a }, { 0x796f0e95, 0x27f7a647, 0x372f484a, 0xb8ea9232, 0x97acb290, 0x7275d5dc, 0x11d8a899, 0xa794ce2e, 0xcbb4ebce, 0x8b73f5ab, 0x10fe7af3, 0x9850e958, 0x598e8ae, 0xa68cd91e, 0x6c1ef789, 0x3ae11bd, 0x0001f2 } }, { { 0xfa273dae, 0xc472da4d, 0x1124534d, 0x4d4c9f37, 0x285c4d7a, 0xf7ed814f, 0x12ff74b9, 0x2f2f3ce6, 0x1d60eabd, 0x800ae63, 0x18e53e72, 0x4de608c0, 0x176acb68, 0x1a225d76, 0xc850a039, 0x10556be3, 0x0000e1 }, { 0xdee95c3, 0x917057d0, 0x29abd883, 0x5233a89f, 0xeeaf215b, 0x14e1654, 0x5645a173, 0x1f60c4ab, 0x7ea088b0, 0x14ec3762, 0xeecba184, 0x54d1b97c, 0xca3e82bc, 0xbb738f2a, 0x1520b193, 0x8e9a9a32, 0x0001b5 }, { 0x1734d90, 0x30defa7, 0x4bfdf049, 0x29b5aae2, 0x8c1c0f93, 0xb239989d, 0x1ee9c8db, 0x575023c7, 0x594a4f7, 0x337e93b2, 0x12cada5a, 0xa54f6543, 0xc487c1f1, 0xeacb918, 0xb991e489, 0xf768ce90, 0x0000f5 } }, { { 0xc14ebbf4, 0x14730b01, 0x4339a57e, 0xbbcfa827, 0x69cb6e62, 0xe5a4554c, 0xe9ee7d73, 0xeaa9d06b, 0x566c5034, 0xa1f436cd, 0x6a398c55, 0x5a92885a, 0x862bfbb6, 0xc6463521, 0x7cda93f4, 0x68f0c7f, 0x000118 }, { 0x4bd50cd3, 0xd36433aa, 0xa6bf74a3, 0x242bb1f8, 0xcdf00ff, 0x48aaf6fb, 0x7ab1c1a4, 0x59a6a2e5, 0xc1255e8e, 0x9783a1d1, 0x30ee9d1d, 0x7e2d8632, 0xe9f119f1, 0xac3e46e9, 0x39873c0d, 0xf6aa5467, 0x0000d0 }, { 0xc4173334, 0x3bb2c4d1, 0x2670eed8, 0x26b7d7ce, 0xf18a0009, 0xe5d8e6ed, 0x48d2e69b, 0x2147e69, 0xd6215a96, 0x381cdf90, 0x3e5e7b45, 0xacb45b6, 0xe6172184, 0x51e9d13a, 0xce471fa, 0x12cd5d11, 0x00017b } }, { { 0x5b5c6500, 0x90bab2ea, 0xca8f810b, 0x29c8549f, 0x7d77601, 0xc25768d0, 0x4cba6762, 0xc7067dbd, 0x5ba84f80, 0x67b272e, 0xb01e0d3c, 0x700cfafa, 0x2af83804, 0x723f77a8, 0x12b93805, 0xdda8eaa2, 0x0001a1 }, { 0xc81af024, 0x1b2e6dbc, 0xe404731a, 0xd3ff71a8, 0x31ea0df9, 0x627b2f0c, 0x7a32ae8d, 0xd48a6c8a, 0xdb1e29c1, 0x8c12683b, 0x831d25b7, 0xd07a5615, 0xbef09e1b, 0x6c9c44de, 0xb2a1432e, 0x9b318843, 0x00012e }, { 0xa63dd3e1, 0x7e8cada7, 0x15e38067, 0x526b157d, 0xc7742b32, 0x999cbcb2, 0x1bd90d90, 0xaba515c1, 0x8ae2a253, 0xd106974f, 0x729d071d, 0x568be635, 0xbeb4b33b, 0xd37256f6, 0x3d9bda70, 0x50d0fa9, 0x0000d2 } }, { { 0xa5e31474, 0x3226f851, 0x6ad0bad1, 0x19bf0237, 0x7209c8b2, 0x83ea1bc, 0x5862e93c, 0x443eed1e, 0x78a07a88, 0x65c98526, 0x7f8c2c7, 0x39c0480d, 0xb95001, 0x6a7731e8, 0x6579e8de, 0x3da2744d, 0x00015f }, { 0x713ccd20, 0x70efcddc, 0xac28ec4b, 0x378e193, 0xa9688de, 0x5db7e98e, 0x5a1657a4, 0xda78f5a6, 0x1f229d73, 0xc7763736, 0xa6e45b4b, 0x53e883ca, 0xe9a3e307, 0x87f04233, 0xfa5c4dab, 0x3528b7c9, 0x00018c }, { 0x6987622a, 0x25e3d850, 0x28f237af, 0xee0a4bcf, 0x9158430a, 0xec79e41, 0xd3364a0f, 0xb102f1d8, 0x5ee2f18, 0x366c4a7c, 0xb520cd3b, 0x93def2d7, 0x89853322, 0x5c472fb4, 0xe120ece2, 0x26629b88, 0x000196 } }, { { 0x1dde0d8f, 0xd8c0edc, 0x73a7b240, 0xfed68701, 0x801c049b, 0x879d085a, 0x293b9e40, 0x3dfe1f16, 0x95259ecb, 0x55712fd6, 0xf2487e2d, 0x746b5ff7, 0xe76dcca3, 0x4b2a5c32, 0x5b7b20e9, 0x1e107f74, 0x000144 }, { 0xf690613e, 0xb3dd64f9, 0x89e34534, 0xec68696f, 0x99bada5c, 0x96bd5b03, 0x23db3f1a, 0xe2f36078, 0xe9500f27, 0xbf1f0165, 0x46f75847, 0x6164703f, 0x9445ef68, 0x17beab3e, 0x2cac6f34, 0x84918271, 0x00017c }, { 0x73fa3917, 0xf14b2617, 0x1e61fc98, 0xe831ae63, 0x682140bf, 0x1458f8c8, 0x5f28d5c7, 0x52ef0348, 0xc61a119, 0xb620d0d5, 0xbd147d8a, 0x78b65a54, 0xb55a27bf, 0x35f2a316, 0x118e149b, 0xcd5f17b7, 0x0001dc } }, { { 0x32ca1a6c, 0x41a8a106, 0x90a6992, 0x4f7a3c7, 0x57e40523, 0xa14ba48a, 0xe3d50223, 0xf188f9fb, 0xc5aeb4f4, 0xc0f7d479, 0x245970ee, 0x414624a5, 0x98b097d3, 0xc7eeb92, 0xd8341fe9, 0xca841a95, 0x0000d5 }, { 0x6662ef99, 0xc0dd34fb, 0xd4a7c268, 0x63b2eb09, 0x85e68ac2, 0x7735c842, 0xb13f745a, 0x70852530, 0x4fd0c115, 0xe08d77ba, 0xd827257b, 0xea00428e, 0xc650d228, 0x813f866b, 0x16004fd3, 0xcfa3394d, 0x000191 }, { 0xf7c2cf3c, 0xb7c42cfd, 0xfd464726, 0x38106485, 0xef4ca37, 0xd3693e1d, 0x7768b3cd, 0x6ae1ab70, 0x69e302fd, 0xb5664559, 0x9554d960, 0x1a99913c, 0x84230054, 0x1d05a5ab, 0x647dfa78, 0xa7af2f9, 0x000118 } }, { { 0x2d80162, 0x66f7a4de, 0xe11e83a8, 0x4a8ef2e0, 0x424ea12, 0x57b15790, 0x373bab68, 0x7269db2e, 0x82bb5c0d, 0xd4ed979e, 0x25396634, 0x8f768059, 0x3b79121a, 0x8ab9c254, 0xa8d85ca6, 0xff9baa09, 0x000174 }, { 0x1d1e3e5d, 0x66d52cbe, 0x9c6a33bd, 0xb1cb2593, 0x1ad18ccb, 0xccefcd81, 0x3b2db818, 0x4a657168, 0x86dbed83, 0xb6c9a0c3, 0x12aa0f8b, 0x3e9aca36, 0x709e94b8, 0x85b78e29, 0x453f8fe, 0x7c4daae1, 0x0000b4 }, { 0xcec80a5d, 0x477bf47f, 0x4ff44036, 0xb320c55c, 0xa397fb2f, 0x6bcb76f3, 0x52c84c26, 0xeef681d8, 0xbeb19ff1, 0xfff08447, 0xe199eac0, 0x7646fc75, 0x4c6087a6, 0x5ef29482, 0xe3181f2d, 0xdb2838d5, 0x0000ef } }, { { 0xe93fef40, 0x23ba946b, 0xd003293d, 0xab6c31f0, 0x8b713a49, 0xfbc11199, 0x2b71feba, 0x100317ee, 0x850bc56e, 0xbc9852af, 0x4a9177ee, 0xd7c991aa, 0x97c38801, 0xf65f3a02, 0xfd65631c, 0xfaf964f3, 0x0001e3 }, { 0x63d86f88, 0xa1124d11, 0x7d96ad20, 0x1b2e0e96, 0xb9e009ad, 0xe627edfa, 0x2843603b, 0xbacbe423, 0xb030359a, 0xfdaeea36, 0x49ab2179, 0x35978e9a, 0xd2f77999, 0x360df045, 0x12caaeef, 0x6a03643c, 0x0000b3 }, { 0x45155aea, 0xba0db96d, 0xa00eaec6, 0xc7abdf45, 0x1d06e500, 0x33e805f1, 0xd81c44de, 0xa44f6696, 0x39d0213b, 0x41b80f21, 0x773152bc, 0x3df7674b, 0x57f5747, 0xd4158cb0, 0x7c85d166, 0xf5811486, 0x0001fe } }, { { 0x33757a0b, 0xce65d6e9, 0xf8a6ba05, 0xf9bb9c6d, 0x56a2e252, 0x63756766, 0xa0d600ae, 0x3f3dd508, 0x7671db17, 0xda7dafaa, 0xc2b53490, 0x919c6948, 0xfc86152e, 0xf145a93b, 0xea17ac65, 0xa4783c3c, 0x000008 }, { 0x6b8ef99, 0x96c49f5b, 0x32f180ad, 0xbbcd4933, 0xcabda74, 0xec6e129, 0x300ca77c, 0x6265ae39, 0xe6c9848d, 0x7079da7b, 0x5dc23dd4, 0x3b061010, 0x115e904c, 0x8795afa2, 0xc2225923, 0x5e006079, 0x0000d6 }, { 0xdbfa7d88, 0xc0af83f9, 0x6bddeaf1, 0xfe73fbdc, 0x56b217da, 0xff08abc, 0xb5653360, 0xbff2aaa8, 0x36800e11, 0x138c375c, 0x40be5312, 0xea1dba1a, 0xaf463e3e, 0x15c5c0f7, 0x77d7ddb0, 0x5359b5fd, 0x000109 } }, { { 0x1daaa825, 0x1d59e212, 0x18989ecc, 0xd7676ab8, 0xd3070ca4, 0xccb77e79, 0x2afd3cb1, 0xd6d711bd, 0x1602870f, 0xd712ec43, 0xb9d30d82, 0x1008ef8a, 0xe5a13d4, 0xd4431721, 0x5767ec5b, 0x8e3dc71b, 0x0001f9 }, { 0x5bbcbea3, 0x59e6c1f4, 0x2b268a21, 0xf1de3232, 0x59e39108, 0x7d7daca0, 0xb785fc54, 0x18357295, 0x1aec5d7f, 0x1ccf67e8, 0xeb821144, 0xccf07bea, 0x1f3e02e3, 0x4eb87d62, 0x42467934, 0x5431f9b5, 0x00007b }, { 0x2ccf7bc, 0x149549ba, 0x68e5bfe3, 0xcbb36472, 0xad798837, 0x10230cc7, 0x94fedaeb, 0xf1ba2c1, 0x3207a7d7, 0xf1e91a84, 0x14e31e3f, 0xad49d0ea, 0xbd52713f, 0x7f75da99, 0x841b3e71, 0xe831a925, 0x00016e } }, { { 0x51888d77, 0x8b2347cd, 0x43ee3f5e, 0xb7b47264, 0xefd72da1, 0x2a526bdb, 0x2aeb204b, 0xf0d251aa, 0x55d239b1, 0x380f6269, 0xcf478bc6, 0xc7ebab44, 0x89317d3c, 0x9518941f, 0x65e8757b, 0x3fee579c, 0x0001e0 }, { 0x16c8f7ba, 0xf77153c0, 0xa9100464, 0x385d8c3b, 0xd1e3af48, 0x61c9dc3b, 0xbfc2ca85, 0x7270c0a9, 0xfb56ff1b, 0x316a8d6c, 0xec17da31, 0xfe54e840, 0xbdddda0c, 0x34352054, 0x83de0a94, 0xde8007b, 0x0001fd }, { 0xfddfeb58, 0x26ffff82, 0x93f89ccf, 0x4f90c8dd, 0xe0b2e0c3, 0xde93aee6, 0x48071477, 0x31d43817, 0xe20a3e09, 0x680bef4c, 0x9c1a1c5d, 0x9fd31e57, 0xce1296aa, 0x4edd1dc, 0x37f834ed, 0xae4ff395, 0x0000f0 } }, { { 0xcbc89055, 0x8eda00, 0x253fd61e, 0xa89f60d2, 0xa5c96e7e, 0xcf5bfe00, 0x54eed558, 0xeb4daa44, 0xe8f4e771, 0x85c47216, 0xc0998315, 0xac03ae17, 0xe0bf514a, 0xbe4952df, 0xcdf9562, 0xfa9caf1e, 0x000017 }, { 0x7b53d80f, 0x3b01ba9b, 0x1324231e, 0xb5c404f4, 0x1933b9ae, 0xa3320f65, 0x4df49ec0, 0x47048166, 0x453313d4, 0xd6b107de, 0xda222fd0, 0xc2f4539e, 0xdb84349c, 0x98950344, 0xc27aaebf, 0xfcec8d15, 0x000031 }, { 0x7f00d3d2, 0x214609c7, 0x791f76c8, 0x115c3919, 0xfaae8964, 0x4a584db4, 0x40826de5, 0x5d66c5e4, 0xddb13b71, 0x38d69af, 0xe89d53de, 0x10c35cef, 0xda17d6a5, 0xfdce7306, 0x877131bf, 0xfab85b8, 0x000083 } }, { { 0x8c522554, 0x95be2d34, 0x47853667, 0xd0a38fa, 0x5705d4d7, 0x5d645c7f, 0xdb0e78df, 0xa52388cf, 0xcb7782cc, 0x95f81063, 0x268491fd, 0x62f442ee, 0xabd03520, 0x1aa1ad46, 0x3ec27d82, 0x377d9df1, 0x000111 }, { 0x9d17c5be, 0x9a817133, 0x92976d8e, 0x829eba10, 0x20075109, 0xaa68ac94, 0xb3442127, 0x2f6d6346, 0x9eb21689, 0x518cd0f5, 0x24b2ff5e, 0x67eca370, 0xb61d8db6, 0x8ff044e9, 0xe6ee2a9d, 0x7fa2fa18, 0x00007c }, { 0x27fa13f8, 0x30ad5d28, 0x980c1e01, 0x9c5cb343, 0x1064a0b0, 0x6c4af726, 0xa453362e, 0xfd5c8cf, 0x29bb45a9, 0xe54e6d3a, 0x4a18d7f1, 0x405a6d5a, 0x28d4b453, 0x1b87bf2, 0x207a667, 0x21172d28, 0x000007 } } }, { { { 0x934856af, 0xba33b4f5, 0x71840ccc, 0x48fb3344, 0x466bf411, 0x52d97fe3, 0x94f6824c, 0x93b0e263, 0xadf56721, 0xf637e440, 0x847d0810, 0xf37f1c30, 0x9238f04e, 0xe97d19e4, 0x984c7382, 0x51c3aff2, 0x000027 }, { 0xe06fd1a5, 0xdd308a4c, 0x2c940639, 0x4066179c, 0xa311932c, 0xfbc5d488, 0xfdeeec2c, 0x30b5db2d, 0x80837ad5, 0xad0b30d0, 0x8175e8d8, 0x6caa9970, 0xa2bd02b7, 0xd88a2f48, 0x5061541, 0xc8f8033f, 0x00015c }, { 0xd6bae3c1, 0xa556888c, 0xf6241227, 0x8440de12, 0x535a1fc8, 0x2c5d9a5e, 0xbda9b1e9, 0x9f294420, 0xe75ed0e8, 0x63d1057f, 0xce0c1853, 0x33df1f00, 0xcbc9fe1a, 0xdcd30c49, 0x6cdc0657, 0x108ca035, 0x0000c7 } }, { { 0xe5dbf27c, 0xb63420e, 0x56dba468, 0x46f77e69, 0x6c93aac7, 0xf483c722, 0xf30785e4, 0x1c4c3ebe, 0x5ddedebe, 0xa28ddb0f, 0xa9b1a89e, 0x91bdb183, 0x620ae601, 0x5ecefa76, 0xe2561179, 0x6fe00ac6, 0x0000ab }, { 0x12e703c7, 0xa87878a4, 0xa8b3f270, 0xe2152b76, 0x40cba1f7, 0x992965d9, 0x27112027, 0x33ac051f, 0xb3b8f357, 0x5b6a76fe, 0x5e524c3a, 0xe64988a3, 0x32d346f4, 0x6115c938, 0xc27a716a, 0x383b52e9, 0x00002b }, { 0xaa1556de, 0x7b09d70b, 0xe0da1bd8, 0x7d144d5, 0x2ae8ee61, 0x66d8f297, 0x7f3fed56, 0xcd413843, 0xe117bba8, 0xaf141dce, 0x56c55687, 0xb7f01153, 0x8b4eb6aa, 0xb11b0330, 0x946df70f, 0xd20706e8, 0x000123 } }, { { 0xb300cb34, 0x6b3c89eb, 0x8e4b3ee6, 0x68b60915, 0x1f4cb3dc, 0x2ae20a10, 0xed428452, 0xe2941cb3, 0xe9d14244, 0x3668c330, 0xa4fa24ab, 0xb1223d05, 0xa0a2a59, 0x4ca6c99e, 0x3801330d, 0x73789fa8, 0x000193 }, { 0xc2ee849e, 0x202f69cf, 0xb3fed74d, 0xf6a55b3a, 0x3fd2226b, 0x8ad2ebd2, 0x6f5dc19a, 0x788aeecd, 0x2976aa31, 0x3149fd62, 0x1090b058, 0x42fd1370, 0x14fe0a36, 0x484efd6e, 0x9ce4b0ae, 0xce9a44a7, 0x00003d }, { 0xc87d6b58, 0x634ace1e, 0x4ed1bca7, 0x2003fd95, 0x2e0236cd, 0xbb7fcc3f, 0x862e35af, 0xd1d1842b, 0x5e111e1f, 0x1eae58c5, 0xb6a17cd5, 0x4ac866fa, 0xbe5e36b1, 0x864b137c, 0x69ecba37, 0xa362dbf1, 0x00003a } }, { { 0xe370bc74, 0x42f95d06, 0x2188accf, 0x483cc6bb, 0xff54b4db, 0x5fdb98af, 0xc7988528, 0x252b8ffc, 0x255b833a, 0xc84de060, 0x611b531a, 0x9bf2dcf5, 0x1894f102, 0xa1e1381f, 0x26d87a94, 0x639e839d, 0x00019e }, { 0x63b05bbb, 0x35739d33, 0x17705f5b, 0xa6778322, 0x8d4769d2, 0x5a4e9bba, 0x4d07e49, 0x1d25eab5, 0x9301c410, 0x3b42833, 0xe291170a, 0xf0b2dd20, 0x2fdb4498, 0x998de7f3, 0xa1fb0a51, 0x6efcbf, 0x0001c4 }, { 0x9f91c571, 0x6733dd6, 0x67f84093, 0x2d55036b, 0x898c1235, 0x115642db, 0x11e9187d, 0x19b387d5, 0xc35cf677, 0xc066f4fd, 0xfae054a9, 0xdccbc2b3, 0xad29fde5, 0x95012022, 0xc9c2813c, 0x4d177a61, 0x00014a } }, { { 0x20f1cee7, 0x5ef64bff, 0x1f2e3237, 0xd9f8637d, 0xb809980c, 0xe37eecf8, 0x1a608ecb, 0xe6a24825, 0x5b94b810, 0x1e02edc3, 0xbb07095, 0xfff2a6da, 0x2d3384d4, 0x2e73a977, 0xfa561a8f, 0x959c81c4, 0x000110 }, { 0x2b4b34ac, 0x6b959a99, 0xc0865dc1, 0x7c7de513, 0x60599e89, 0x6551edb7, 0x539c51f6, 0xd4288043, 0x773a75a2, 0x97f1a0ec, 0x53247cc6, 0x3023415d, 0x2e703d76, 0x5308a733, 0xfc568fd5, 0x88e3fed, 0x0000d2 }, { 0x5a650a08, 0x9bd9e0e1, 0xb27229f5, 0xcf2354ec, 0x6badfe79, 0x4417828b, 0xfb7db83b, 0xb4dbc259, 0x9aa3bd37, 0x7ccce16e, 0x7b3d88bd, 0x4c1c9f88, 0xd126f1c4, 0x3a229fe4, 0x27404c72, 0xc52df631, 0x00005a } }, { { 0x8bba7ae1, 0xc5249e73, 0x1ed246d3, 0xf4ead8f1, 0xeb1a2a49, 0xbfd1001b, 0x2858adf9, 0x3dc3de46, 0xed029225, 0xb47cb116, 0xe56c044, 0x90541c35, 0x2260fc36, 0xf105204a, 0x58907f45, 0xb3200b91, 0x0000c4 }, { 0x7cc58c79, 0x6f4818f6, 0xe0331012, 0x36e53eaf, 0xfa63b08e, 0xd46b4109, 0xee46d01e, 0x5dc85919, 0xafbd0521, 0x7733d5a1, 0x6814300d, 0x80904323, 0xadbf17fe, 0x6de11e97, 0xe153bc3b, 0x2c7dab6c, 0x0000ea }, { 0x36f21b4b, 0x560115bd, 0xd42845d5, 0xa6813e58, 0xa10796f4, 0xf727bdb6, 0x5da959df, 0x35126771, 0x6dd42cc6, 0xe641563d, 0xd9f17352, 0xa88bc536, 0x35a36df8, 0xec377b57, 0xa27a09c8, 0x265943d7, 0x00003f } }, { { 0xc0be147d, 0x6b4829b2, 0xbc612d08, 0x34a1d75b, 0x65eb2593, 0x203a2330, 0xe9a3dec6, 0x7eb7a587, 0x5671a201, 0x59cc86db, 0x66dbbd90, 0x25784e0e, 0xd1a15422, 0xdb2edf54, 0x5c031340, 0x29b349af, 0x000197 }, { 0xc37fe561, 0xce6f42ca, 0x77bd3a1c, 0xa530ec0b, 0xa2d5bc41, 0xb2c0d910, 0x43a2e1dd, 0xb4d3f733, 0x48975528, 0x2e139b3d, 0x22ca5fff, 0x6372c23c, 0x992b9444, 0xbce38de7, 0x233b3807, 0x4a0ccb3e, 0x0000d3 }, { 0x4bae5005, 0x6655105e, 0x22c9cf93, 0x885c2768, 0x6048b3c4, 0x4b9b768, 0xb9dc55d9, 0x1bd8c0e7, 0x59a8b1d9, 0x992c9e93, 0x752b775b, 0x89364bba, 0x919738ed, 0x39bde6a1, 0xdda29162, 0x2acfcf49, 0x00019f } }, { { 0xb02a63ff, 0xe25fd8b7, 0x79c37cd8, 0xe588386b, 0xe154e620, 0x510e3829, 0xb5b2ef83, 0x1987fe0a, 0xaf9785d2, 0xb53e2b07, 0x3bc42836, 0x70b301cc, 0x8aae407c, 0x2110e70, 0x4af76531, 0x3d0e3f08, 0x0000e9 }, { 0xdaa08da8, 0x57650db3, 0xcac768ad, 0x18ddfff5, 0x3781c4ca, 0xb35c985c, 0x27add961, 0xa2822d14, 0xd6e2548f, 0x2984bf32, 0x9d1599b8, 0xbc3e1d22, 0x499941d7, 0xaf8daa92, 0x47831e4f, 0xd393baa0, 0x000097 }, { 0x32b85d75, 0xecb08af6, 0x3b959484, 0x4508a257, 0x3f4a15c4, 0xb2ec90e4, 0x8e0a3331, 0x6b7432e1, 0x8ffbbd71, 0xfe421bb6, 0x83c30973, 0x4959d409, 0xe3736ff4, 0x1c2a1143, 0x1b3590fd, 0xa50af1c3, 0x000129 } }, { { 0xe4cb0d49, 0x6e8b63d4, 0xa3abc63a, 0xd72d35f6, 0xaee38b1a, 0x4be633e5, 0x8a858076, 0xc0297276, 0x1435a68e, 0x5c279ab, 0x59b5325e, 0x15c667c3, 0x94e3a124, 0x145ddf0c, 0x39ecbe68, 0xd4b8c899, 0x000136 }, { 0x7d75aa85, 0x8ee60113, 0x54796066, 0x72304560, 0x79b47937, 0x5adc8290, 0x8ba5d90e, 0xbbe26da2, 0x8e9f97ff, 0x7c8d62d8, 0x34dc2c30, 0x20d946da, 0xeda83fdb, 0xcd9ed181, 0x34f858, 0xecfbe8de, 0x000116 }, { 0x6147ef37, 0x92f2b57, 0xbfdf7e76, 0x76526662, 0x1c6f8be9, 0x230fd59, 0x845cf403, 0x42d7219b, 0xf587aab1, 0x4d691219, 0x7d13cac3, 0xef6f198a, 0x2deb5875, 0xd1d0441c, 0x7d5bc66b, 0xf742ba98, 0x000013 } }, { { 0xc0f861ea, 0xfaece823, 0xcf3ab87d, 0xee954a25, 0xa9860aa2, 0xdc239148, 0x4c5cb197, 0xede2723, 0x2e747a6d, 0x361c8a04, 0x39cd8f3d, 0x38aafa9d, 0xf5758a5f, 0x912fab14, 0xabd581f8, 0xf5650aaa, 0x00003c }, { 0x45ea1fa0, 0x5c912b89, 0xfb1086ef, 0xe2030c91, 0xdc83e404, 0xc917810, 0x29c12756, 0x1b3a181e, 0x6e0b2af8, 0xbe055126, 0x7e47435b, 0xf1baab8c, 0xb1e59373, 0x37b9be1b, 0xb402db7e, 0x18482869, 0x000032 }, { 0x155b6a0b, 0x986b55b6, 0x6149c873, 0x1c9af2b5, 0xb75884f0, 0xa4e12395, 0xbaff6ebd, 0x79d5ed5e, 0x63abbdd5, 0xe552d31b, 0x6a91ba5d, 0x1e61e984, 0x219c15f5, 0x372613f0, 0xc4cc5578, 0x7230837d, 0x000147 } }, { { 0x527ab4e6, 0x1d8d4abe, 0xa95de2ed, 0x6b5672f6, 0xea15732, 0x54b9f82e, 0x79ce04f6, 0x371d1905, 0x90aca37e, 0x98df3cc2, 0x865bce0c, 0xe05bbae, 0x53b86fa7, 0x9cbfb082, 0xe5cc815c, 0xb20465d6, 0x000032 }, { 0x71afc307, 0x1c6188c9, 0x457630a0, 0x2ceebb5d, 0xc9bdfaba, 0xd18f2a05, 0x6efa0227, 0x86781cad, 0xb619ff3f, 0x8da19677, 0xdad13724, 0xdcbf24, 0xaf77878a, 0x1c1b076e, 0x19099b9a, 0x409ff59c, 0x000090 }, { 0x66d2f5b6, 0xa6aac58e, 0x2879fbb5, 0x24ffa696, 0x45569e7a, 0x8012f46f, 0x730ae8ad, 0x4cc51748, 0x657179fc, 0xc6f77818, 0x9db60e34, 0x664cfa95, 0x678878cd, 0xca556356, 0x6f91bd8a, 0xf561bb52, 0x0000bf } }, { { 0x94317146, 0x3cce3c6c, 0xe6338700, 0x5c669a14, 0xebae0cd4, 0x328ce31c, 0x58b24479, 0xbbea7719, 0xe96277d1, 0x88eeb31, 0x2a0d5061, 0xf1663a5e, 0xb8da09d, 0xabf7e6c, 0x4fa3f5, 0xedd327ee, 0x0000e0 }, { 0x5c07bfa7, 0xd47f9538, 0xfa22d98a, 0xd7d20af, 0x1f08a5ff, 0x174e1989, 0xb6a34c09, 0x6c408e37, 0x59a9246b, 0x18129bb, 0xa9e6152e, 0xf3917586, 0x898fb2dc, 0x501ed26a, 0x5c5f7171, 0x69025fe0, 0x000015 }, { 0x8fe01c88, 0xb6e282dd, 0x89d721f8, 0xc66e7a6f, 0xfb35f311, 0xdb4b808a, 0x1ebe6b80, 0xd1e9f45, 0xcd8dc1f0, 0x76837a8e, 0xc933bea1, 0x3ac09a29, 0x5000fefe, 0x21cfb385, 0x6ba2b09, 0xd212334a, 0x000076 } }, { { 0xa5a5e95b, 0x6e56f187, 0x41f73a35, 0x2144e23a, 0xdd36cf8f, 0xc8e733ea, 0x875a1a69, 0xaf4d566d, 0x3661c01, 0x6a7fe54d, 0x42fd7b1e, 0x23a4fb3e, 0xc814e85f, 0xc0498d92, 0x4fc33770, 0x9b4b5703, 0x000132 }, { 0x6f79275e, 0x6534b755, 0x24c2a0b8, 0x71e1b6b0, 0x5200f146, 0x9aba4c95, 0x47bbde40, 0xafb0efcd, 0x71810473, 0xbba3db5, 0x89d763ae, 0xf6cd688c, 0xe0b64a8f, 0x16fe586b, 0x44bbe9a0, 0x35447e73, 0x0001bb }, { 0xf2f29a99, 0x8be39973, 0x1852bfa, 0x9d773d00, 0xb385a87a, 0x5d3ab447, 0xa25a3a33, 0xeaa0d117, 0xfd14277b, 0xc0963dfe, 0xcea9d6ea, 0x1508770b, 0x7a283369, 0xb321eece, 0xc3168b5, 0x11feada6, 0x0000d9 } }, { { 0xcb7c467d, 0x32cdca94, 0x439410ff, 0x6e59450, 0xb5811fc9, 0x579415d2, 0x8fc96ddf, 0x95009803, 0xe2993116, 0x20c229a9, 0x814f3ce6, 0x69d393f, 0x3fcd24be, 0x426669a8, 0xec654f3b, 0xf69b8650, 0x000094 }, { 0x37f00396, 0x20c364e2, 0xa48947fe, 0x67e77878, 0x22b96efa, 0x6d4f68fc, 0x7ba2c9cf, 0x7fbdee06, 0xaa3e08fc, 0xbb34d60b, 0xdae68e8f, 0xd8c83e39, 0x3a71107f, 0x8d5fe6af, 0xcc93cce4, 0x281f3f6c, 0x0000a8 }, { 0x3cbaf7ce, 0x40e6bbee, 0x8ddff0bb, 0xb4b56239, 0xfaa273fb, 0xe1f62849, 0x1adbfd0, 0xe6c1ffec, 0x9dce6f29, 0xfd195643, 0xa4fbf3a9, 0x44cbf5e0, 0xb6f69113, 0xfa7eae1e, 0xb974d0dd, 0x391f275e, 0x00009e } }, { { 0x9fc52d2c, 0x513e75fa, 0xe59be08, 0x4c35e0d4, 0xb2f96d66, 0xb117d613, 0x4dcdbb0a, 0x67bdcfbd, 0xc6741f4c, 0xc092d7aa, 0x3d5baa17, 0x4a279fef, 0xfd131b5e, 0xc17f9ee6, 0x7a71b20f, 0xc71d9689, 0x0001ce }, { 0xdd40ce69, 0xcd95de23, 0x2a451797, 0xad912d7c, 0xf132445c, 0xe3ccd6a5, 0xd5da15fd, 0xe74d9759, 0xe6671b86, 0xca842f55, 0x6e9bdf14, 0x4fb450d6, 0x20ef1a85, 0xcec3fa1e, 0x2aee60c3, 0x735990bc, 0x00006b }, { 0x197911f6, 0x25acf8c7, 0x180c1ca4, 0x719c0dd9, 0xc307b66c, 0x97698e4b, 0xd3912388, 0x672b88f3, 0x162078f0, 0xf728f382, 0xfc9f4540, 0x2593a199, 0xbb780c7c, 0xd28e34bd, 0x957f682, 0xc23e3b1f, 0x0001c3 } } }, { { { 0xd4b90035, 0xe0708b21, 0x2dafd84, 0xf3055af2, 0x6425f671, 0x723b12cc, 0x38ffd5d5, 0x7876b956, 0x5dea77fe, 0x8d60096f, 0xab921498, 0x72bff533, 0xf3914453, 0x85a7803e, 0x93aca0ab, 0x9980d8c7, 0x0001a7 }, { 0x8e4997b4, 0x82da841c, 0xd33f6dc9, 0x9ccf69a5, 0xd5590e5e, 0xcadbeaff, 0x80c5f264, 0x9044ec61, 0xaf9a74fe, 0x4dc65d70, 0x16d3af9e, 0x241c78c5, 0x30ac406d, 0xb38c2eac, 0x82252a9c, 0x663116c5, 0x0000cb }, { 0xfbad279a, 0xc3af5c30, 0x17edb47a, 0xaa10fbd6, 0x5b1041f4, 0x1d6a61f4, 0x3db2d3cf, 0xde7a5823, 0x5467559c, 0xa565b485, 0xb15f2ed3, 0x12b7336f, 0xc38c5ca7, 0xe613473e, 0xb0a9a01f, 0x8dbec497, 0x0001f9 } }, { { 0x8bd332b6, 0xb6e17a39, 0xa3c2e44b, 0x8b9a8d16, 0x7db91dee, 0xa2bf72d3, 0x6ea84f, 0x1e1d17a2, 0x9406a674, 0x1a7e6b85, 0x4f9822ea, 0x3e8e5366, 0x1173048f, 0x619dcff1, 0xe3158577, 0x438bed3e, 0x00014c }, { 0xa77f442, 0xdfbcc3d7, 0x15397ff5, 0xe3ff242, 0x265e2190, 0xfc6c5c3e, 0xc9091dbd, 0x71783872, 0x9c05efe8, 0x5e94dd6d, 0x3ff1733f, 0x4f5646cb, 0xd74fe882, 0x738ffdc0, 0x22d4a2c7, 0x08d8bf, 0x000078 }, { 0x875b4c4f, 0xe8cc947a, 0xebe01c72, 0x419474ea, 0x66c1bbe2, 0x9ae55ff4, 0x28e79ee7, 0xff4f9512, 0x2d3fa15a, 0xa34a23b3, 0x9e60638f, 0xc20e068c, 0x8f3e98ad, 0x3ee3908d, 0x6da323aa, 0x7df80169, 0x000101 } }, { { 0xd42e33e0, 0x654f6363, 0xe17bcd0, 0x3f48df2, 0xba3697c9, 0x65e1a545, 0xd810020f, 0x9ccac01b, 0xc3a074b3, 0xacdcade2, 0x9bcf0b95, 0x52d29daf, 0x84d21ff5, 0x8fb317c2, 0xbee49b90, 0xdf9c4bf0, 0x0001c4 }, { 0x41683736, 0xf1622a22, 0x663a530e, 0x8a51e496, 0xf0a69e28, 0xb204846c, 0xb56f3da, 0x5607df74, 0xb677a5a8, 0x4d243bdf, 0xdb37061d, 0x37986f5, 0x8b55c3a2, 0xc17257c3, 0x106b1ea5, 0xdf1beb11, 0x000115 }, { 0xc9e0b5f7, 0xebd03976, 0x2adf5ab, 0xc8159e64, 0xe652c095, 0xc78e1559, 0x98b3a954, 0x3e3618b2, 0x725b44a8, 0x2a8d5e82, 0xdd61dfa4, 0x71f505c3, 0x7d669ad9, 0x3924db6a, 0x5566e745, 0x5b58db46, 0x0001dd } }, { { 0xae7d9c08, 0xbd74e026, 0x1d19a5ac, 0xc19fb1cf, 0xdf704ecd, 0xb3b5a949, 0x5cb39a95, 0xe3d86553, 0x70e7f32a, 0x8fec39da, 0x4fd3e980, 0xee7b13f5, 0x3365bafb, 0xfd2d43f3, 0xcde2e9c3, 0x6a4f1295, 0x000037 }, { 0xd8b5b955, 0xbf810f73, 0x9a305bc5, 0x424d2d6d, 0xe5e9c202, 0x78f77ab4, 0x8a232dd2, 0x92e4b6e0, 0xec73bd58, 0x555f19d1, 0x65f1c827, 0x1b5da94e, 0xce6a7e6b, 0x470e52cc, 0x923b127e, 0xf166ef7b, 0x0001c8 }, { 0x3d1aef04, 0x9deffc0e, 0x273872dd, 0x82c9af2, 0x7bd3d575, 0x5199ac43, 0xc1b9aa02, 0x1169a0ae, 0xa2155e71, 0x124abb61, 0x3077806f, 0xf239a610, 0x183113fb, 0x4fdbb559, 0x29777c7d, 0x72b32f27, 0x0001d2 } }, { { 0xfcab9973, 0xaa892cf, 0x4da18e53, 0x37ea74b0, 0x53a12111, 0x961fae7e, 0xb8d0b2a9, 0x64ce33e2, 0x2b469cd7, 0xd35ba284, 0xda2f8984, 0xeeeaccbc, 0xe3bec597, 0xedc54f44, 0x832cd578, 0x3a5e62b9, 0x0000ac }, { 0x56e66313, 0x8b9f86d5, 0x488f649b, 0x3c0563ce, 0x44595e5f, 0x57540ea1, 0x5ccde583, 0x74130901, 0xb01e18d8, 0x61e851f4, 0xb995e5e0, 0x37084316, 0x7d74b3b1, 0xe5ef8b31, 0x502937fb, 0x277eea59, 0x000096 }, { 0x9dae45eb, 0x917fe032, 0x869e5fef, 0xf342bda5, 0xf5e42689, 0xfe69a35f, 0xbf011f31, 0x5115f23, 0x7e59b3dd, 0xccde3d34, 0x105cc27b, 0x1b0fd221, 0x24ae1b25, 0xe0c0167a, 0x50ec7c18, 0x3e99f225, 0x000001 } }, { { 0x41e34680, 0x7a843c86, 0xc072517, 0x4a51e00e, 0xc5660b4, 0x7304ec36, 0x18a848f9, 0xc95c01be, 0xcae1f90e, 0x6d4f9cc1, 0x344ff4d, 0xa3b0bc9, 0x6082683, 0xa959a11e, 0x78d1976d, 0xa4a74088, 0x000138 }, { 0x88a22df, 0xc4152a54, 0xe14d93de, 0xbd23eca0, 0x45c1419f, 0xf6147c19, 0xae79f258, 0xc58fe83c, 0xd124cc40, 0x634d5aa4, 0xd9cd7f3e, 0x14b9a400, 0xc01ed85c, 0xe46b6ce5, 0x67004e3d, 0x8a912a0e, 0x0000f3 }, { 0x66cc8a05, 0x6a3484a7, 0xb9aae12c, 0x8cf83026, 0x8a7baedd, 0x84caf079, 0x1831cbf3, 0x13607ef9, 0x7660a587, 0x579d9acb, 0x932a3210, 0x4ac1602d, 0x918fd6e9, 0xac0bc406, 0x67d55b53, 0xe21dc6e4, 0x0001f8 } }, { { 0xed0a2430, 0x59720ab6, 0x4527abb9, 0x4b07c933, 0xc85481dc, 0xe60f31de, 0xd2fb5c25, 0x44429512, 0x525731fe, 0xc5ccc49f, 0x7cadae6b, 0x7d427bd1, 0x76e879f6, 0x5ac3d313, 0x4a6d4569, 0xf2cb4935, 0x000016 }, { 0x8d006366, 0x6b7cb9e8, 0xc912c079, 0xc5c04314, 0x3742ebfc, 0xb754949d, 0x1c21dd15, 0x360210a5, 0xc75d91f5, 0xf8887de5, 0x104ab43f, 0x75fef742, 0xf9d6b548, 0x3fba45d, 0x78757bb6, 0xd2683e66, 0x000189 }, { 0xb1362579, 0xc10d3bea, 0xa654030e, 0xd02c0c88, 0xaa3d25dd, 0xb2ffd593, 0x1c31ab03, 0x26bfd942, 0xdfae9220, 0xfbe17a46, 0xe2c0649c, 0x6b5d9a36, 0xefdc9075, 0x99191678, 0x5efce649, 0x1b1198e, 0x0001db } }, { { 0x195ad299, 0x751783a2, 0x88e637a0, 0xae645e29, 0x2ee858eb, 0xdbc727ec, 0x744d6cf0, 0x4803d712, 0x2dc1daf4, 0x79bb1088, 0x5adbcd40, 0xed213401, 0x925f7b2, 0xf8357eda, 0x61b39d0b, 0xb4b9f86, 0x00004a }, { 0xbcc45cb, 0x85f85bc7, 0x6506699d, 0x91b8e89b, 0x3fb5ce18, 0x9314d276, 0xdd3c853e, 0x45da9eb4, 0x2629dc8d, 0x3e920bb6, 0x102166a5, 0x1b0adaff, 0x99003a1f, 0x861ba90, 0x6538c1be, 0x41cdc5f9, 0x000113 }, { 0xacd20df1, 0xff8a7832, 0x96871c9e, 0x1854deaa, 0xca90a2e7, 0xa197361c, 0xa10abe05, 0xa9668c65, 0x155edc96, 0xfa04395f, 0x750ae7aa, 0xa691c6da, 0x342e9fd2, 0x54867ff1, 0x4616a0b1, 0x6ea5885b, 0x0001a5 } }, { { 0x57666ae3, 0x5e0d7b24, 0x24d3e371, 0xc8c70a93, 0x71ad589f, 0x819bd809, 0x2c5ed06a, 0x39e47144, 0xad244e7, 0xb4a83307, 0xe5394a6f, 0xbaaa1d1d, 0xbe7e1883, 0xab1a7479, 0x185c03a0, 0xda35cdc0, 0x000071 }, { 0x1acfeb4, 0xc103ab36, 0xbba4e62d, 0x89c1d71, 0x7ee352d8, 0x5846a3ac, 0x60ea5aec, 0x341d2dff, 0xf8bd5cce, 0xaeacc582, 0x27af6a7c, 0x922b9b78, 0x94d695c8, 0x9cb36812, 0xcd63a1f6, 0x1af3414d, 0x00001b }, { 0xbfdb3d6a, 0x2314ffec, 0x9543fd3, 0x3d1b8175, 0x24895cb8, 0xc4605008, 0x2e839589, 0x97abffa5, 0xcbc1baff, 0x9254c3c7, 0xc03b600, 0xbaf07f5a, 0xc5ec87a2, 0xf2843229, 0x5dfa3468, 0xf89a44cd, 0x000079 } }, { { 0x717433cf, 0x2374b1f5, 0x9739e107, 0xe05f9e45, 0x3e82213c, 0x619d44a2, 0xdd330639, 0xb8b07123, 0x94d7c79, 0x2ad3bb0c, 0x29b62416, 0x8ca2f0f6, 0x489a35e, 0x2e15543, 0xa56df23d, 0x1320023b, 0x0001d8 }, { 0x63932fb2, 0xdfe1e475, 0xaffda443, 0xa1589931, 0xc2806945, 0x86a06009, 0x14f32b0e, 0xeeb51cdd, 0x5bb16eba, 0x19f07d91, 0x1a619b1d, 0xb65e8a41, 0xdaa8d386, 0x307cfb44, 0x29489586, 0x697ad849, 0x00004d }, { 0xce419c2a, 0xaf0125ee, 0x78477aac, 0xee4b3ba9, 0x7dba1433, 0x7880d435, 0x42b235a, 0xa5136acc, 0xa0f0c2d8, 0x999f938c, 0x4c833731, 0x6e22952c, 0x37c277fb, 0x6d6ac240, 0x718b4bb7, 0xf66873c, 0x0000b6 } }, { { 0x22cc61a7, 0xe608e2ee, 0xd3fd230a, 0x7979571, 0x5084f28a, 0x6f73fe6c, 0x6b731524, 0x98e4779b, 0x9ad65645, 0xb5bad39f, 0xf58cd838, 0xab06d702, 0xe9003d48, 0x31eb26fe, 0x3f37e406, 0x50324a22, 0x0000ae }, { 0xf97ccdbc, 0xcdaa3d75, 0x29d0348d, 0x1d8f8249, 0xffe901de, 0x46be1059, 0x5e4c1cdc, 0x83f41a85, 0xf981a538, 0xc5ad1c2f, 0xfc2612fe, 0x68bd3ff, 0xe63d832e, 0x195f4f8e, 0x3f538c04, 0xd4dc238a, 0x0001ea }, { 0x7e721056, 0x8099389e, 0x73af0438, 0xef878c38, 0xf1274ed0, 0x159dbe51, 0x5042192f, 0xcb25491a, 0xb1bde677, 0xeb239c84, 0xc901003c, 0xabf1610, 0x54b6fce, 0xd19c8199, 0xa21f8225, 0x149bf2ba, 0x00017f } }, { { 0xfa815a55, 0x18e53b86, 0x9dbad020, 0xeefce308, 0xae085124, 0x24d57d21, 0x96764bd8, 0x13783f5b, 0xe2f5e634, 0xb3254e54, 0x56a6b284, 0xb14f2611, 0xfa81482f, 0xf66af166, 0x44534805, 0x354dee42, 0x0000f9 }, { 0xfb442fd5, 0xd5c97c1f, 0x4223dbd3, 0xc8d8ce29, 0x4d060e16, 0xe6850eb9, 0x3d87542d, 0xcf042cfc, 0x7bc854ff, 0x421e6165, 0x9f14076a, 0x2d009e76, 0xea969388, 0x51d96238, 0xd0120599, 0x949a96be, 0x000091 }, { 0xaf045cab, 0x37841033, 0x60c81710, 0xfe1439c6, 0xeb4dd7d4, 0x6a5e1bc, 0x32129ccd, 0x3a0b49af, 0x13aa7b1e, 0x85a0aaca, 0x4e1c40c7, 0x90f517cb, 0xcbc168dc, 0x99eb650c, 0x5e2e901, 0x90fa3b49, 0x0000af } }, { { 0xa289b80e, 0xd97149a0, 0x56692a29, 0x93128f90, 0x6bc77ef9, 0x4933898e, 0x299c74a5, 0xe84968b3, 0xde816157, 0x66628460, 0x5f9e5ed8, 0x2a5d70cb, 0x6c4d1039, 0xb4d6ce8b, 0xa1980e28, 0xbed6605b, 0x000067 }, { 0x711364c6, 0x61e42774, 0xd1ddccf5, 0xc4f9e873, 0xcac877fa, 0x3d9dde4d, 0xb4792a13, 0x8765d776, 0x78ac1574, 0x892aa391, 0x51ebc02b, 0xc0c6285b, 0xef8cf792, 0x3e3420d9, 0x4956ddfd, 0x3bdf4fb6, 0x000005 }, { 0xa25b519d, 0x7a5914, 0x350980c6, 0xf78701c6, 0x5b01777d, 0x31b145c7, 0x99c5c8ac, 0x8057db01, 0x6e4b289e, 0x8788bdfd, 0x464ac02a, 0x61b47169, 0xb679ece8, 0x1e561506, 0x33f6660c, 0x8ffdf44a, 0x000161 } }, { { 0x62b7ed0e, 0xb336fe78, 0x58df9693, 0x8374f893, 0x1f291375, 0xa4212977, 0xcd237ae2, 0xa0abc45a, 0x2d67e983, 0x5530d1c9, 0x89ab04b8, 0xc74f9c33, 0x708e0d36, 0x99158bdd, 0xf27af442, 0x34164551, 0x0000d7 }, { 0x5f40ab37, 0x940be162, 0x69178c43, 0xa4fc1814, 0x56dc8221, 0xfc36860, 0x2759a2ae, 0xc437ceec, 0x392820a8, 0x40a1adb9, 0xf831695a, 0xc528f31a, 0x4518a601, 0x1edd586c, 0x9eb36e0b, 0x8d264078, 0x0000ef }, { 0x33c5be74, 0xd88e92f8, 0x1ffb2448, 0x5418125a, 0x2fa991bf, 0x3352e1de, 0x8cfc2435, 0x941025b7, 0xa6666dc3, 0xd1848b82, 0x58cc6dda, 0x43076c0e, 0x1d262ae6, 0x1a0230fb, 0xfd24d1bf, 0x5b304e1c, 0x0001af } }, { { 0xb7b708f5, 0x9b7a707c, 0x191b6b41, 0xb3543bc6, 0x1529709c, 0xeb278bf6, 0xe944ffa1, 0xbaf17821, 0xe45e09b8, 0x424f1ec0, 0xbb4e5d5e, 0x81a3e2d1, 0x1fe70ea5, 0x4526aa0, 0x4eb7d2b8, 0x3d1b75ca, 0x00018c }, { 0xbeae5117, 0x5c879b51, 0x4b8c4c3e, 0x34fb0711, 0x67228ceb, 0x6788488e, 0x410524f4, 0x4c885a04, 0xb43a10dc, 0x77da0205, 0xa0ea7c01, 0x2d65c62f, 0x9b92a24e, 0x6ed16cd3, 0x36442a7d, 0x5fad7807, 0x0000a6 }, { 0x60a7d3e4, 0x87e0380c, 0xc89c74f0, 0x39439e65, 0x7fa72283, 0x3c9633b7, 0xeae05d5a, 0x8cc2554e, 0x55112095, 0xd5c8a26c, 0xc3b5eae9, 0x2eeeb3c3, 0xdfa18356, 0x9e9aa923, 0xeb6ca78b, 0x553e4539, 0x000081 } } }, { { { 0x1586cd5e, 0x3d5d5015, 0x4406a3c5, 0xd4530fce, 0x40a15158, 0x5839f145, 0x9ec81207, 0x28df1c8, 0x7acbaf92, 0x27b8a663, 0xac4cb631, 0x337307c4, 0x9c74c7c9, 0x9c92535e, 0xe0d9c931, 0x4891b652, 0x00011e }, { 0xca61d9e4, 0x87deab2e, 0xda51e0aa, 0x6e0f124f, 0xbf36fc90, 0x797be921, 0x76c57f66, 0x5a2dd47c, 0x5bee340c, 0x341585fd, 0xe089c638, 0xd968af0b, 0x9b4f346f, 0x5f951c92, 0x8b9db075, 0x954345b2, 0x0001d9 }, { 0x322fde24, 0xd646e199, 0x50964ffe, 0xf1e74805, 0x122e3a81, 0xee253437, 0x7bd3103b, 0x98c03231, 0x1c2677a6, 0x50fa6ec7, 0x8b6b374c, 0x22489949, 0x52a644ea, 0xb61ee9c9, 0xc83ea79, 0xbfca963c, 0x0000c4 } }, { { 0xfbe1e483, 0x149c94f0, 0x22ecfd80, 0x8f00153a, 0x89adb3d1, 0x7ecc37b8, 0x90014d43, 0xb248ee8e, 0x9a9b0661, 0xa90fa5c4, 0xb003824c, 0x8311eeb1, 0x846305d1, 0xf77cab9, 0x224558f3, 0x15d8d4b2, 0x000002 }, { 0xfac492d6, 0xfb346d71, 0x775734c0, 0xb0fd47c5, 0x210e572f, 0x2bfa5e20, 0xc2fef7e7, 0x2a893662, 0x57c7305b, 0xe85893e, 0xfd87e4a3, 0x222f44b6, 0xa40e3790, 0x21d00184, 0x9ae782f, 0x892eccc2, 0x000166 }, { 0x94ca342f, 0x6675e03a, 0x72575474, 0x9a05acf9, 0x2985fd2a, 0xb9533409, 0xec5f355c, 0x914903f7, 0xce661f34, 0x61c25320, 0x50f83f11, 0xcf1dc6b0, 0x375803d1, 0xbb75a244, 0x4f7c8763, 0x82354bbb, 0x000124 } }, { { 0x16b17e9d, 0xe6f8b7f4, 0x4e277029, 0xdd531ecc, 0x270ac3fe, 0x18fada28, 0x19bd2fe2, 0x6d342bbd, 0x3376099d, 0x4bfcc4a3, 0x14992ccd, 0xa64ef6d6, 0x7ef18977, 0xf3f93856, 0x8e5b4bba, 0x6c22263c, 0x0000ba }, { 0x553ae182, 0x2944ffa1, 0x4f92cfb, 0xdb590f1f, 0x3237d9f6, 0x92e4e327, 0x1ec27e53, 0xb878f83e, 0xb6ead191, 0x8b69282c, 0x719e25da, 0x6b11d8fe, 0xe02b6a91, 0xae5e2f09, 0x515a389c, 0xfedf2c5f, 0x000001 }, { 0xe9b761a2, 0x646ec3f9, 0x8de74350, 0x1d7f6b1d, 0x4d6ae9b7, 0xde7f05e7, 0x3d121134, 0x27df1471, 0x803e925a, 0x6195dc9f, 0x24054420, 0x97ba7dba, 0xdd9ba563, 0x91ce5ae6, 0x46f1a2a3, 0xd80ee8b0, 0x000044 } }, { { 0xedb40729, 0xfe970f9a, 0x104a2481, 0xeabec3ba, 0xe7162741, 0xa6c4a5bd, 0x934e6e1d, 0xa2dae0c6, 0xb8634e12, 0x2ffa7352, 0x331948cc, 0xe6b3ee17, 0x23c810aa, 0x43e8dd71, 0x5fc45e2, 0x65fd498e, 0x00008b }, { 0x9e2a189e, 0xfcfe3f55, 0x34bcc027, 0xe25b16ce, 0x4991a142, 0xb20bf6ae, 0xea56f86, 0x43c26897, 0xdcc26594, 0xc1052e4f, 0x2a3521a, 0xfb36b350, 0x55456300, 0xa7b863dd, 0x3a4e5388, 0x83708b2b, 0x000113 }, { 0xfbaa8d3a, 0x271de93d, 0x96b9b203, 0x9726f3b5, 0xd9885758, 0xbbd7d844, 0x4cc03bc9, 0x424b2282, 0x91b34f3b, 0xaf9ec710, 0x79b1b9ce, 0xec04ed2b, 0xeaff548d, 0x7211eb59, 0xd415d79d, 0xb6b09857, 0x000059 } }, { { 0xd7178cba, 0xe5b153a4, 0x203d8384, 0xf75608ee, 0x65316dc2, 0xae6a9be0, 0x904c97f4, 0x17c428a4, 0x4a94a92, 0xb2bed30a, 0x44a8dee8, 0x8ffb3c91, 0x2f688720, 0x4e46e918, 0xf3b4f813, 0xab3c9511, 0x000036 }, { 0xa702b700, 0xf9881566, 0xdbbf6549, 0x9edc886a, 0xc77773f0, 0xb7e0cd0, 0xe4bb1e20, 0x39858822, 0x3d08b2a3, 0xe1d48351, 0xba217eb9, 0x3aed3f97, 0x4bff1cdc, 0x58e797b9, 0x6e5e8e10, 0xd6ea3c81, 0x0000ec }, { 0x1b8d7ec3, 0x9ffd7fd4, 0x9168c4b0, 0xb2a28030, 0x4806179f, 0xe0d32d43, 0xa2be6cf0, 0xfc867a8, 0xd70c855d, 0x6a89aab, 0xe3e3616d, 0xbd0f29e1, 0xf4fd0b5d, 0x4b46cc4, 0x7d99e7bf, 0x45095b85, 0x0001b1 } }, { { 0xbbb0bb08, 0xe1e1b4b9, 0x804eb11c, 0xe070de27, 0x1dbe9195, 0x1edec1e7, 0x8a80c552, 0xe904978e, 0x5f79aa0, 0x665f9d71, 0x583a1540, 0xa8d48340, 0x9455ac56, 0x504195b1, 0xd54eb876, 0x60a7d463, 0x000196 }, { 0xdf4d2dba, 0x6843f7ce, 0x6894280e, 0xf5bb55b0, 0x47b84f22, 0x2f112b9, 0xcfcda395, 0x3d945037, 0x8bfdb359, 0xba39940e, 0x19a0e0f, 0x6e1f206d, 0xc3199e41, 0xcfce537b, 0xa0289e5, 0xdef70bc8, 0x00011d }, { 0xe1b96f72, 0x94b25744, 0xd09b6e1a, 0x98fff19c, 0x6ce6b050, 0x51414991, 0x48e07af0, 0xf6351a0d, 0x1fad9550, 0xb05d2ff6, 0xd0df6906, 0x84374222, 0x5c92d91b, 0x1d850257, 0xfc47da76, 0xdd22dc4d, 0x000128 } }, { { 0xdf0f2563, 0xabdcb11f, 0xd3e0d0a6, 0x1ca2a60b, 0x4a64f7dd, 0x81126121, 0xff195d84, 0x1d53e54c, 0x7ea58202, 0x37f08f30, 0x1b47dfa0, 0x6595f4d8, 0x562ec03b, 0xc73a0fa6, 0x1c2bec5a, 0xff0568b8, 0x0001bf }, { 0x79325e0a, 0x1e092957, 0xa51a7625, 0x54a5fed7, 0x99d7991f, 0x414cd88b, 0x258eba47, 0x4002d24f, 0xd0767653, 0x9ddd883b, 0x93ba0eb2, 0x860787d6, 0x7b5ab4e, 0xda1954d, 0xffe4fa68, 0x393f9faf, 0x000152 }, { 0xb2501e68, 0xa5b891e6, 0x56e76dec, 0x65366057, 0x3579bc9a, 0x9e009418, 0x6b549537, 0x87cf8847, 0xcb0aac5b, 0x801aa2e7, 0x3ccbdc21, 0xb1ad1982, 0xacac7c8b, 0x116dffff, 0xb19b2fa0, 0xdbbdf2f3, 0x000161 } }, { { 0x9f5a0d30, 0xd2ba3a, 0xe38a3f60, 0x5503bc62, 0xaa43ee16, 0xcf896a36, 0x2f18bee8, 0x30e11ea7, 0x1d4b3984, 0x8b326765, 0xe8e51b27, 0x4618e983, 0x994c9863, 0xf58c60da, 0xc9f9b499, 0x52bc69ba, 0x000129 }, { 0x19d4d434, 0x3fb01eef, 0x6987768a, 0xa846ca9c, 0xc8aeb89f, 0xae25a48d, 0x593a6fec, 0xc09229cc, 0xf6143d8c, 0x790a46fb, 0x8a0e4cbf, 0x389108b0, 0x59bb38f0, 0x324add26, 0x71c45946, 0xb1fbf210, 0x0000a9 }, { 0xb2ce23bd, 0x9ba9ec1a, 0xea7ab35a, 0x71238d74, 0xcd7a12b6, 0x39968b3c, 0xabbb4a5d, 0xc1d33551, 0xf3bfc55, 0x764223bc, 0xe229d153, 0xc85a7df4, 0x1d3f5b13, 0x3e76841d, 0x197747ac, 0xec07fcb8, 0x0001af } }, { { 0xb2449ff9, 0xa80ced75, 0x1ea07e3c, 0xa1ae4089, 0x5acf9316, 0xb7d1dc03, 0x8086e643, 0x869ff341, 0x458b3e01, 0x851646c6, 0x4febb55d, 0x82d728cd, 0x58720390, 0x27695e17, 0xa016eedb, 0x71c72693, 0x000091 }, { 0x660b4f8f, 0x939c01fc, 0x2c5d1c5e, 0xfabe616d, 0xefb0194b, 0x121465de, 0xe6cf60b2, 0xc8bea047, 0xbd60115a, 0x9861fdd5, 0xb814eeff, 0x7d2283d9, 0xf7d65889, 0x8543ee1e, 0xfe3c51f6, 0xd720bd5e, 0x0001f3 }, { 0x12468744, 0x37c6e19, 0x8826aa18, 0xcbe6de2e, 0x82be15bc, 0x2d177545, 0x6bc9aa2, 0x33968aed, 0xe625f125, 0x1620407a, 0x29b4c17b, 0xf4b07892, 0xfba8281b, 0xf657d167, 0x99a4362c, 0xfbd6461e, 0x000023 } }, { { 0xc2adca20, 0xb9bb0998, 0x5ad98a17, 0x9a00daaf, 0x643b4b1, 0xa61d1221, 0x7f8bc142, 0xc52112c6, 0xfa263d11, 0xde67b9f8, 0xef93ff29, 0xfb8b01d5, 0xca11f821, 0x919a18e5, 0x3e9577d6, 0x92532519, 0x0000bc }, { 0x626ebbac, 0x78372f, 0x38fd50c1, 0x70519f74, 0xefd6518e, 0x3e6ddf06, 0xbb377f36, 0x7b2eacf2, 0xef0419b6, 0x6a6046f7, 0xd08e2a9e, 0xbc873842, 0x13c3fdc5, 0xcd71ca04, 0xc6717867, 0xdbbf7651, 0x000118 }, { 0x26083154, 0xa7241486, 0x224ec856, 0xc30ea90a, 0xdb1f14b3, 0x97c6c19a, 0x238d861, 0x7e070e04, 0x3f7f0ecd, 0x1a6d26a5, 0x56ccb659, 0x3262c4a5, 0x8e033c75, 0xfb872b69, 0x522afdc8, 0xea1d313c, 0x000163 } }, { { 0x232b5c7a, 0xa791502e, 0xed0508cc, 0xc11a0e8b, 0xa5f8d85b, 0x336716a, 0xc58b66f7, 0x25149610, 0xfabeda15, 0xa39405b6, 0x8e2723cb, 0x46166db3, 0xf594c62a, 0x35a95824, 0x82cb7ce3, 0x8f3148, 0x00017e }, { 0x9a54c8e5, 0xf5f02ebc, 0xc2b4bf07, 0xc18a2eb7, 0xa9d93c9f, 0x9fd87721, 0xf8ece536, 0x6916e137, 0x2aa3ea4, 0xbc978186, 0xbd35b65, 0x86672f16, 0x35f2e891, 0xf65008b1, 0xc6e7fed4, 0xc6e79b92, 0x00011c }, { 0x9b1a5cd9, 0xadd1a502, 0x18529a8a, 0x34d6ad72, 0xfb30ded4, 0x46256c24, 0xa70f3f64, 0xadc85909, 0x1c4c67c6, 0x4f1dc5cc, 0x541042e1, 0xf818fcfb, 0x8180f047, 0x6851da8f, 0x4c2237fc, 0x46658b35, 0x0000e1 } }, { { 0xf923c14f, 0x83cede7e, 0xf4eae580, 0xb26565bd, 0x9837f2e2, 0x25d31884, 0xed501ea, 0xa07310e3, 0x56141d8e, 0x4ca7e7c4, 0xe9740e2a, 0x42a75021, 0xb05c6f02, 0xcb89936d, 0xe46ddc3c, 0x153d6413, 0x0000fe }, { 0xf1701d71, 0xd9ef175f, 0x3d14ab3e, 0x69f5c8dd, 0xbe9d853f, 0xbda8b3aa, 0x739418b9, 0xbf8a96a5, 0xaf0fe69b, 0x75b55af6, 0x2a093efb, 0xe53e3390, 0xa5738749, 0xdd52b6ed, 0x8d6454b7, 0xc21a131e, 0x000093 }, { 0xa3407079, 0x5b9de6bb, 0x93e2b5f3, 0xa411765, 0x4bab6fd2, 0x4cdba18d, 0x3eb8dcd3, 0x8db97d8, 0xc428238c, 0x4dadbe60, 0x4b1b7fdf, 0x19c54c8f, 0xc83095fb, 0x6f6894ed, 0xbb80a9e2, 0x473368e9, 0x0000e2 } }, { { 0x70fa6ced, 0x59069bfc, 0x549a1ce1, 0x58592709, 0x7004b103, 0xdd647822, 0x8efea40e, 0xd483209e, 0xa976733d, 0xf08c1b2c, 0xdd7e4188, 0x72fe0731, 0x2e3d3d98, 0xa4879859, 0x6d38fc57, 0x2834cc12, 0x0000cc }, { 0xdd528325, 0xa54af04b, 0xa9d5f30b, 0xd6c6c4cd, 0x734252ee, 0x2e3436f0, 0xee745a6f, 0xf435121f, 0xefa7847a, 0xe4b280da, 0x3d2baa07, 0x1342d34, 0x35b2944c, 0x30f7f870, 0xeca6dbcd, 0xccdad7e0, 0x00007c }, { 0x8ea3410c, 0x494341c9, 0xae19efd0, 0x5567c4df, 0xc11ae533, 0xec5206c1, 0xf6de6b9b, 0xc4979bc2, 0xef62761d, 0xe24be93c, 0x4310539b, 0x754e6466, 0x83f76dc7, 0x83478dae, 0x5e236e5f, 0x8a934836, 0x0000cc } }, { { 0x2edb11ef, 0x8da124c4, 0x18257413, 0xb52bd154, 0x98fd6426, 0x68283062, 0xf717d658, 0x1af8cf37, 0x3ac2146a, 0xd861f062, 0xca51012a, 0xd8ab2c10, 0x722aa2f5, 0x1ebe7115, 0x65319481, 0x7f4f0d8e, 0x000166 }, { 0x817e0ab3, 0x969bd3ea, 0x6386b354, 0xa9dc4493, 0x7f38232a, 0x522efb50, 0xe92c2936, 0xf18798d, 0x2b1d28f1, 0x87d6f6ed, 0x43eab1e4, 0x56f303e, 0x2c8a0528, 0x1be19506, 0xee280f51, 0x8c079efd, 0x000113 }, { 0x174516ea, 0x2674a1c, 0x258c4940, 0x77517d67, 0x2f968955, 0x4378d430, 0xd92d8e50, 0x4c9b7f0f, 0x960cb09, 0xaa140f91, 0x1f5c4781, 0x5dbecff3, 0xfe93c8c1, 0x372bca80, 0x812c8b79, 0x1376dd4a, 0x0001a5 } }, { { 0x2ca51f0f, 0x2a0cf71c, 0x52a17ede, 0xf703cafb, 0x766140b1, 0x745a4d2e, 0x9002527f, 0xc19e9598, 0x983f9dd2, 0x7d755a76, 0x59d75571, 0xc32d6989, 0xf17e08b0, 0x6562a46a, 0xf3cf32a5, 0x61c1f28f, 0x0000ae }, { 0x70938c4b, 0x38b36126, 0xc3e1448b, 0x7f4b3b6e, 0xcabba1f1, 0x4b23439, 0xaa9017cc, 0xc57f89bc, 0xe9cca8d5, 0xe6c536ab, 0xc03a90b7, 0xeccc6720, 0x2112cc22, 0x710ecc58, 0xc110f52e, 0xaa97b8ee, 0x0000e3 }, { 0x8f08b996, 0xa18ece9, 0x3ef2736f, 0xc65016ba, 0x71d57900, 0x8f8b730c, 0x9e5ed573, 0xc599ecd3, 0x406f1a22, 0x13490b98, 0xc0881208, 0x17545b62, 0x8735a19f, 0x81ed62b3, 0x94399464, 0x5046ce3e, 0x000141 } } }, { { { 0xdc6289c7, 0x5bbe20b5, 0xe73a7ee9, 0x5b04a1d2, 0xee2cf089, 0x9ece5ca4, 0x3a0361a5, 0xe1d5046c, 0xf1c583b9, 0x3b690963, 0x16901ea0, 0xaf634005, 0x134cb5da, 0x1bac8745, 0xf1bd04f1, 0xa00d3ad9, 0x000182 }, { 0x902d0919, 0x44703ef9, 0xe20923fa, 0x3a26b500, 0x3952fbd5, 0x45cedc49, 0x5d09509, 0x7dfc723b, 0xbb15b62e, 0x8c3333c5, 0x46a49455, 0x1e18e155, 0x7f7abaf0, 0x62065e8, 0xcf5dffd8, 0x492305f4, 0x0000e4 }, { 0xf2e58ec9, 0x5efb8720, 0xf9f68e9c, 0x3320729f, 0x6083fc5e, 0x39059222, 0xc7803eea, 0xc38f148b, 0x4244b6fc, 0xaf0bc855, 0x48adc2fd, 0xe7ebfa7e, 0xb9cbc021, 0x116124b8, 0x586d821c, 0xb2f2885c, 0x0001ec } }, { { 0x83646632, 0x3e4e5994, 0x6d47583d, 0x480e8f65, 0x158fe291, 0x9fb63d29, 0xffece80f, 0x264e7700, 0xead8d831, 0x3d60f821, 0xfd81d005, 0x7a7a9c6c, 0x9bbf95e2, 0xa7e7c22c, 0x6a8aabae, 0x5aba04e0, 0x0001bc }, { 0xb179186e, 0xaa2c8ce9, 0xc99dbd32, 0x23ff1618, 0x9b3d4be8, 0x23af53ba, 0x9e28fc6c, 0xa99867e5, 0xaa818985, 0x61dce933, 0xcb873f5b, 0x472afccf, 0x1a69a245, 0x74e76889, 0x11314a15, 0xc4a8149a, 0x0000ed }, { 0xd3e5aa28, 0x21098bab, 0xc58b0e2c, 0x4a9971b6, 0x18bf8c9b, 0xfc6eb9e, 0x9874ea36, 0x93af293, 0x7a2a1c8b, 0x51728011, 0xcf9251, 0x41f5c99c, 0x22d000ea, 0x175859c, 0xd6045fd5, 0xc4b4e657, 0x00016f } }, { { 0x6aefa4fd, 0xdbd935c2, 0xfc5279e5, 0x4f04a580, 0xf971a47, 0xfb6c12a2, 0xe8111b13, 0xb6dacd75, 0x5968578d, 0x48afaf0, 0xf962279c, 0x95f7c850, 0xda19d397, 0x9c303401, 0xbd4c031e, 0x25d9b093, 0x000108 }, { 0xd1e3a78b, 0x17b97c50, 0x1844556a, 0xfb481e39, 0x7c816559, 0x550e8ee7, 0x40ca470d, 0x911de0a8, 0x17fc9d93, 0xe11c5b35, 0x8e51a854, 0xe91ddcb9, 0x9123ac0a, 0x4292c86a, 0x941090e5, 0x670b15b7, 0x00017d }, { 0xab28cc82, 0xf4f35776, 0x1a579ea1, 0x5d0c9acc, 0x84772b4d, 0x8c62b5e0, 0x9f678d70, 0xac56efcd, 0x482c4d63, 0xe797f8d2, 0xf52c7ea4, 0xa2edca3e, 0x89b12177, 0x1de6c2a3, 0x8df9c1aa, 0x6481b628, 0x000163 } }, { { 0xb9c02ebf, 0x9e93e92f, 0x1db326a8, 0x87ac77c1, 0x7a98680a, 0x6e497a97, 0xcf9ee357, 0xf708d94e, 0xef74fc9a, 0xf4ba912a, 0xd06cff91, 0x908d2aac, 0x3233b047, 0xb146a2a1, 0x12789569, 0xa64b047f, 0x000124 }, { 0x80edc829, 0x740f8ce6, 0xd25a8a13, 0xaab55eb, 0x38058070, 0x4342dd40, 0x96e94623, 0xc16aa890, 0x82892f15, 0x94f7d18d, 0xcdd7112, 0x6a21de26, 0xed6efc82, 0xfe1ebd1d, 0xf86b28ed, 0x58a402cc, 0x0000a7 }, { 0x35fd4c10, 0x9c08bbac, 0x6add536f, 0x5bb234d5, 0x4472179a, 0x59ab90ef, 0x9afddea7, 0xe604dfb3, 0x25059ae0, 0x2c6296c0, 0xa28d1f31, 0xe68c388e, 0x7d2c2c95, 0x2784955c, 0xa02210f6, 0x261715e5, 0x0000f1 } }, { { 0x1bae4913, 0x6658a047, 0xb818ec2c, 0x1625c9f7, 0x59adbab3, 0x673f6f03, 0x4c6451dc, 0x11523bf, 0x4618a9e5, 0x1bf43785, 0x9df4e100, 0xec131789, 0x50fdcfd3, 0x2842b11e, 0xc3fd8d15, 0xd1f7be4b, 0x00010f }, { 0x43b25b72, 0x9bab47e, 0x19b0571b, 0xedff63ba, 0x78244971, 0x7e9b4fbe, 0x16252e3f, 0x407b4b34, 0x3f9ea599, 0x617e969b, 0xf82ddd6e, 0x8a62be83, 0xc23d9f72, 0x48fbc260, 0x2b47ba92, 0xc4315954, 0x0000ae }, { 0x34cece65, 0xd627dd18, 0x19199947, 0x559b8bc3, 0xeb216009, 0x7d18ec3f, 0x337fe312, 0x3646f2ef, 0x1ddff601, 0xf814cebb, 0x69dbcd1d, 0xd8295d23, 0xea34f62a, 0x1d58c467, 0x44b29c99, 0xf4e8e916, 0x00004b } }, { { 0x9fa08181, 0x4acde49d, 0xecdf7072, 0xa1407f46, 0x3b8f69d9, 0x121e6cd0, 0xc718605b, 0xdc7ee4c, 0x63c42a17, 0xf8e81f51, 0x5f91c898, 0xa6df88dc, 0xf5d5e6ae, 0xe6a7f83, 0x88e67f22, 0x79440326, 0x0000fd }, { 0x940d7cce, 0x827fd16e, 0x4e91c50a, 0x90074243, 0xdd6f2d53, 0x52bb4521, 0x649b584a, 0xbf2b7b8f, 0x39a00e2f, 0x6406d81f, 0x314fc0cf, 0xbd4bc83b, 0x1e3b9da7, 0x9ee30527, 0xac21fb3a, 0x57425c67, 0x00017d }, { 0x843b1072, 0x5b0c70a0, 0x2ac1c7d8, 0xd6ec7a8c, 0xf08b5e8f, 0x57558741, 0xa292b275, 0x9bc6af8d, 0xafd5ddf9, 0xd18b4dab, 0xb3c23bb8, 0x66002dff, 0x9e27c023, 0x254a6f94, 0xef22fc45, 0xe0f18eaf, 0x0000af } }, { { 0x14d96ebe, 0x62499523, 0x7dc6667e, 0x8995fb35, 0x3f2894d4, 0x3ddbdee9, 0x8fcdc1a8, 0x5eb356cb, 0x8be9b455, 0x76ffe1db, 0xc81ccca3, 0x64c6f516, 0xe4f790af, 0xc815f55, 0xa412450c, 0x8b2e7e4c, 0x00009e }, { 0xe7abf8fd, 0xd0d6485, 0xbe7103c3, 0x316f89da, 0x6d72b593, 0xa3761387, 0x26611aaf, 0x2c8f6c10, 0xfc216db9, 0xb6d60540, 0x21111c0b, 0xce76a618, 0x6a1fa310, 0x9ef3c3ac, 0x78b436d6, 0x19619d3f, 0x000190 }, { 0x4c62a833, 0x8cc033cb, 0xcc053f62, 0x34fe0947, 0x79c3f994, 0x7f4aeed5, 0xfe4e5465, 0xc2db2736, 0x6cc2e242, 0x10f286f5, 0xc46eb56c, 0xdbbff64d, 0xe0e2f9b5, 0xe554db, 0xf62c8387, 0x7d7ad13f, 0x00014c } }, { { 0xa462bc39, 0xad90233e, 0xca1ba86d, 0xd33c4ab2, 0xc582153a, 0x3f429301, 0x5f238b46, 0x53f01613, 0xb9d22774, 0x6e894977, 0x96e8015d, 0x650d85ab, 0x1f2d2a12, 0xdf5a5548, 0xfde5e43a, 0xddb91d43, 0x000174 }, { 0x350d5514, 0xf6b1c150, 0xe265107b, 0x24637e8, 0xb845058e, 0xe3aaf8cf, 0xb332fa6b, 0x1513a90f, 0xb64e3621, 0xb20e4b2e, 0xc6560a79, 0x9cb2cd6e, 0xccd66775, 0x4625ac3b, 0xab79de67, 0x9522cd95, 0x000043 }, { 0xd91d9f1b, 0x9978cb5a, 0xf04019d6, 0xff36e9cb, 0xacd7db2f, 0xef746d95, 0x290dc763, 0x1ca14364, 0x810ed230, 0x2a7f3daf, 0x7438162, 0x4f7d3261, 0xd9fbddf7, 0x2fca066a, 0x15535166, 0xda65b085, 0x0001a0 } }, { { 0x30aadfb3, 0x46b50778, 0x2b3892d0, 0x4b44e4bc, 0x3ed5e616, 0xbf29c250, 0xb46a1e9e, 0x4ae60fef, 0xcb2fe8c9, 0x87d56b2, 0x1d803b66, 0xa5e0800, 0x186e6434, 0x5c5c4fb4, 0x945f6e83, 0xed556b5a, 0x000115 }, { 0xb04e481a, 0x16c39bec, 0x1b9ab62a, 0xa1fb8d22, 0x390e5344, 0x9cda612e, 0xd54bcecf, 0x399fd610, 0x9bf77e8a, 0xa6a3c236, 0xc458d3e0, 0xce5ac92, 0x5212e94, 0x984f13c, 0xcfae7a01, 0x152f990, 0x000105 }, { 0x5d9d4926, 0x61c085d9, 0xf7e00c6d, 0x2d9cb50a, 0xa8bf1540, 0x631e26c, 0xa0fb6945, 0xbac7c05, 0x5b822878, 0x6589e57e, 0x81db6d0f, 0x41e2796c, 0xdc4fdc52, 0xdc0a92bc, 0xc5dd5f19, 0x31c565d4, 0x000061 } }, { { 0x36fdecf0, 0x7909f9ad, 0xd3319c04, 0xdba4f287, 0x2faa5473, 0xe6eac01a, 0x9e25d3d8, 0x53f3cf96, 0x2d999391, 0x46d0d341, 0x237cfd4d, 0x773e3dce, 0xfb344b4f, 0x227eaff7, 0xad75bc6, 0xbc905fd7, 0x0000c2 }, { 0x8743cfe1, 0x56fd7093, 0x9990f08a, 0x60747338, 0x3d580b1d, 0xd5af426f, 0x5fc2d171, 0x76ac5d05, 0x8f96331f, 0x37a03ffa, 0x62533932, 0xda5caece, 0x71a0f060, 0x170c31e1, 0xdd5ee2ab, 0xbb945d0c, 0x000098 }, { 0x204d1950, 0x69ec8689, 0x621a638d, 0xe18875a1, 0xf9dc7cc2, 0xc19d5e1c, 0x16a53c2f, 0x39892347, 0x67b38b82, 0x8df855d, 0x9665d503, 0x51c432c6, 0x69d31294, 0x790a2ba6, 0xa126c603, 0xaa33ea31, 0x0000b3 } }, { { 0x9601d250, 0x5bf8c5a9, 0xd9edd79c, 0xae232ba7, 0x811f085a, 0xb35a3dbd, 0x64d79f58, 0x73a81826, 0x602ac37e, 0x4528d34e, 0x4e5efad2, 0x3bbc52fb, 0xcd72746e, 0xd97abb94, 0x3cb09414, 0xcb9504f6, 0x00010f }, { 0x3030183d, 0x1285da08, 0x40fe41a8, 0x55015154, 0xe7639998, 0xc2d4f0d7, 0x5861fc8a, 0xa198261f, 0xf6e42910, 0x93f4a97c, 0x7164fec6, 0x810284ff, 0x78dc58bd, 0x12fc4530, 0x6e4bae96, 0x8a9b7008, 0x0000b6 }, { 0xa108ac, 0xbe50298f, 0x96d5850c, 0x2fd2c78d, 0xe543bada, 0xcce61a4d, 0x43f32e6a, 0xfa1841ef, 0x92e5c287, 0x83698211, 0xd4c76ca6, 0xf9c34fe0, 0x8f1f1115, 0x732c76d2, 0xdcfe0ca3, 0x3ffbb72, 0x000136 } }, { { 0x37f7857e, 0xb9f97f6a, 0x256f99e7, 0x47f970f2, 0x2b3de7ef, 0xf236d6dd, 0x7955fc44, 0x2a56613, 0xd4a43dbd, 0xb9d9e505, 0xcdcf950a, 0x64811bae, 0x10751bd, 0x38b49e98, 0x75c2519f, 0x4c6bd1db, 0x00016e }, { 0x2778e401, 0x77d04c70, 0x81d3cf7f, 0x808f4ff8, 0xc9719927, 0x197c2e5a, 0x386c1648, 0xdb587579, 0xf5c63a99, 0x6493a99d, 0xcc762cbf, 0x4105ca6, 0x8a08ccef, 0x8ffd502b, 0x26f896c9, 0xd32d05a8, 0x0001e1 }, { 0x49b3f3d7, 0xe9a40b70, 0x31045e3, 0xb5e45680, 0x3f405a25, 0xa1e66746, 0x735fe833, 0x65eea6cf, 0x5a3b96a7, 0x41cabed3, 0x74c8dc32, 0x6a4892f6, 0xf66e27a, 0xb375b818, 0xb4921f59, 0xfc8b9bcc, 0x000187 } }, { { 0xfd86f318, 0xecf7858e, 0x5afd1b8d, 0x9208682a, 0x5b6b4db1, 0x8163acba, 0x68e5bf57, 0x20f2005b, 0x8301fd57, 0x83028531, 0x8a17239d, 0x27472af5, 0x3d553b8b, 0x73cfe89b, 0xa6f411d8, 0x8825ace3, 0x00018d }, { 0x16134091, 0x9d36224b, 0xfe9d797f, 0x6208f088, 0x3f46f61f, 0x1643824d, 0x30b49f0c, 0x582f4c05, 0x91dd645a, 0x86df5331, 0xbd719aea, 0x991fbc2f, 0x453c61f2, 0xff445248, 0xb06dfee6, 0x295246e2, 0x000050 }, { 0xa9167810, 0x70d3b5ba, 0xd24eba33, 0x3b5dc491, 0xd969ff8b, 0x79ec1a51, 0xa2fed0c4, 0x4da695f4, 0x6818711d, 0x9a4b8d9, 0xae35a98d, 0xe0e44d90, 0xdf1848fc, 0xc723e1c0, 0x7a3efc8, 0xcfe018ed, 0x000108 } }, { { 0x393abf03, 0x686745c0, 0x8e3efe48, 0x4c451cd2, 0x6b181e5f, 0xa4317be, 0xca17e31e, 0x815f9648, 0xee946d0b, 0x28eb5ce7, 0xb3d84f01, 0x70e7ca04, 0x772bf09b, 0xcdbb9bae, 0x2233beb4, 0x154e3ec, 0x000094 }, { 0x88c131cb, 0xc37b29df, 0xb3d96d5f, 0xf09ce03c, 0xc504d281, 0xac189aca, 0xc6b40b2d, 0xc9be4a8a, 0x696eff41, 0xd6de3841, 0x4cc7d837, 0xa8f42e4e, 0x198b52c6, 0xc309b68e, 0x3ea5597a, 0x306593fb, 0x0000f7 }, { 0x86f7c23c, 0xc64f37f0, 0x6674e9bd, 0xba084c49, 0x96091abc, 0xda327878, 0xbd3d6ca0, 0xca785c24, 0xf6d10294, 0x6d567980, 0xd11534dd, 0xb254023f, 0x57722ec3, 0xbe3b67d5, 0xfedf6166, 0x35a7d27d, 0x000169 } }, { { 0x795be947, 0xf3c5cf22, 0x9c2c3e, 0x2045e878, 0x941f938d, 0x14cdc984, 0x701b6400, 0xec952929, 0xc133462a, 0x2c8646c9, 0xa94cc05b, 0xa6ace772, 0x21f4a2ff, 0x8da4fc2f, 0xe84491b9, 0x28d02bd6, 0x00014c }, { 0xba45e286, 0x475efaae, 0xebc0f98e, 0x543a31cd, 0x1199c56a, 0x96bb4f3d, 0x57f61775, 0xb206148c, 0xf8268bc2, 0xfa1fffd9, 0x9870da44, 0xe48d7e7f, 0x5ddee02c, 0x7a115a51, 0x61c29b4c, 0xe0274858, 0x000031 }, { 0x69b346ab, 0x1773897c, 0x6d82a591, 0x7b6fb008, 0x3d272f99, 0xfcb10574, 0xd074286e, 0x393ff2e3, 0x19eda145, 0x80bc4465, 0xca13565, 0x9e69b668, 0x54e73fa0, 0x607a663e, 0xb3c8ac21, 0xd89d5a0c, 0x000062 } } }, { { { 0x65a8e9cd, 0x8514f4d0, 0x55deac5d, 0x55fc0ae3, 0xfed0e487, 0xaee5cd5, 0x233f5403, 0xbeaefe98, 0x83d34466, 0x130b67ed, 0xa733d3f1, 0x11025af5, 0x59573a2c, 0x61e1f0c6, 0x648fc77d, 0xdf29890c, 0x00000e }, { 0xf340890d, 0x6cf4f891, 0x2ec4042, 0x962cbf46, 0xb208a6fb, 0xb8ff616a, 0xa38c8bde, 0x6bb7c77a, 0xae524e59, 0x70214392, 0x57ef428f, 0x9ebf49e6, 0x57143d2c, 0xfb683c89, 0xca54d51b, 0x944c24b9, 0x0001ff }, { 0xd29636da, 0x1121419d, 0x244212d2, 0x75291c81, 0xc6506d, 0xcf4f0236, 0xa9fab6dd, 0x3f3270a7, 0x672fe2d, 0x46a84b79, 0x54b3b280, 0x56dd75a0, 0x858c4525, 0x367d8a44, 0xf31ad1de, 0xb42c24ae, 0x0000dc } }, { { 0xad7bba02, 0x2b72dc79, 0xb0b5e137, 0xedeb267d, 0xd33ede6c, 0x5b696b3, 0x50f1c436, 0x86b3583b, 0xfbb8ae48, 0x62921215, 0x18b10f73, 0x1204698c, 0x6bc25716, 0xafb52ca8, 0xcb8425a7, 0xc9ab3de7, 0x000086 }, { 0x495aee06, 0xe3a2d72c, 0x81d62501, 0x822d9686, 0x5c3d3942, 0xeffd2b3b, 0x93577e43, 0x8c508363, 0xfdd06996, 0x4bbab67a, 0x7d4c0f3, 0x75e109a8, 0xae784687, 0x257ff0c1, 0x916a2a, 0x4e3803fb, 0x0001ac }, { 0xcbd63382, 0x49c94961, 0xd82770da, 0x116d87a3, 0xd9b2ac3f, 0xd1e305bb, 0xcf063118, 0xe7da9e47, 0x75b63f60, 0x481ba35c, 0x24593d88, 0x5a455ce3, 0xc41d1e7, 0xe6e29962, 0xf68c7675, 0x8b186ca3, 0x00010e } }, { { 0xbdbd4180, 0xbb031e7c, 0x281c0fe6, 0xbed9d339, 0xdce1b4f3, 0xe92476c0, 0xa6d39c6f, 0x3093c86b, 0x9e662bb6, 0xdc35dd30, 0xc6d6eec8, 0xb2956380, 0x23a95e99, 0xceb4416, 0xd7456351, 0x394b91b, 0x000145 }, { 0x91de5814, 0xf118cffc, 0x200d29da, 0x2cac4659, 0xa84cbe2e, 0x729d9440, 0xdf6b123e, 0x57d677b7, 0x56e0a119, 0x2af08181, 0x7b143c6f, 0xd0185959, 0x47ffbe7a, 0xb941e976, 0xe338d8d9, 0x3b579e6d, 0x000181 }, { 0xfb379468, 0xd144335, 0xbca1ba1, 0x2de004c3, 0xeb41aa0e, 0x97b66a33, 0x7bb1d8f4, 0xe281912d, 0x49054160, 0x32d0d02d, 0x15a94703, 0x6f77cc55, 0x9c037591, 0x21520b0c, 0xccfe4b08, 0xada6fb83, 0x000172 } }, { { 0xc2b8bde4, 0x50e10863, 0x89ce2226, 0xc65c62b2, 0x97f862be, 0x79a94917, 0xce0d4618, 0x1592f0d6, 0x9420e382, 0x57a89c38, 0xa305dff2, 0x64e86c32, 0x34dbc6f7, 0x15eeaf96, 0x858e2fef, 0xba4fe35c, 0x00016c }, { 0xc9461a0b, 0x11e26afa, 0xebd7d57b, 0xe5c5bb41, 0x978d1163, 0xffba7f1f, 0xb209837e, 0x2ea09f71, 0xff811b56, 0x6cbe0e26, 0xa3e386f9, 0xf5be4a17, 0xa99ae458, 0x4705547c, 0x50c4cbb6, 0x782a95dc, 0x0000b8 }, { 0xbb85be25, 0x3543254d, 0xb9366f82, 0x2ae07812, 0x72a1ebf1, 0xe9765e52, 0xb2f5f772, 0xd1ff1874, 0xf8d3a43c, 0xf82f2cf4, 0xb545cbb7, 0xe4fb797f, 0xa5488887, 0x3cbfcb44, 0xf6e841a5, 0xcb73bec7, 0x000167 } }, { { 0x68225809, 0x6e8c0333, 0x5405e7c4, 0xf0939c90, 0xba0c37fe, 0x86b37355, 0xb671393b, 0x2fda0d49, 0x6d934fcd, 0xf20a25b0, 0xed6bb860, 0xf73bee5, 0xdb9a8fe4, 0x3482884c, 0x4b650453, 0xfb4b6488, 0x0001dd }, { 0xe56c81c8, 0xbb396875, 0x4ad4f5fe, 0x783fc074, 0x5a50cc8a, 0x7ccab070, 0x85595dbc, 0x8399d82, 0x9eb4be32, 0xbbebdc34, 0xb6634c14, 0x6b54cf7e, 0xf6b0e591, 0x623c80b4, 0x9b22b6e8, 0x97eba426, 0x0000bb }, { 0x76f1ea1a, 0x64d0be4f, 0xa4bb559b, 0x5f02d672, 0x2e87afbd, 0x5309b2b2, 0x7c9f63eb, 0xad721596, 0x5e2dd41c, 0x28b0cded, 0x68fe1bd5, 0x28696871, 0x3689ace2, 0x6596c55c, 0xc988616c, 0xdf0b803b, 0x00003d } }, { { 0x37c07628, 0xb80ae8e0, 0x39f05f76, 0x3c99b686, 0xe87b5737, 0x72872fee, 0x80640cd8, 0x56281a2f, 0x9bfcf74d, 0x1c542888, 0x86d28e50, 0xdff5de00, 0xebe1c1c0, 0x6dd6ce54, 0xea500168, 0xd63cf130, 0x00016c }, { 0x68a32125, 0x700911b, 0xd38ebb8, 0x34eef8c4, 0x1fc52c87, 0xf02657b9, 0x3639954c, 0x42e26439, 0xab43aa01, 0xdb4d5ef, 0xed56ffc6, 0x7d513165, 0xa94f53c7, 0xff8ac2ac, 0xf81974b3, 0x2be2fd20, 0x000052 }, { 0x158605c4, 0xe341c57b, 0x6525de55, 0x625f662a, 0x4cfd6c78, 0x51a3cb71, 0x3f3a6b43, 0xe44481aa, 0x6320cb25, 0x2defe9b, 0x5ec6b111, 0x2272c376, 0xa056a25d, 0x280a2e9e, 0xa80eebb5, 0x45267cad, 0x0001b0 } }, { { 0x18548d91, 0x5016ec6b, 0x5d91283c, 0xa2fb8a3b, 0xa5b4d8e9, 0xb44be91d, 0xc6f51b4b, 0x5c7f7719, 0xb94f48bb, 0xef5ef571, 0xfc9b6ec1, 0x9f4d9756, 0x92b3da7e, 0x7aec8ccc, 0xd1972423, 0xf9f51f95, 0x0000c1 }, { 0x98196628, 0x5cff83f, 0x9e55fa03, 0x91138c67, 0xd7c4f13d, 0x49d056ee, 0xb0aa8ce5, 0x57d8d9f9, 0xf5241252, 0x8a230aa6, 0xf069651c, 0x46725519, 0x36e9913b, 0x27e166a, 0x1e3fd7f1, 0x178680aa, 0x0000c3 }, { 0xde3c09b5, 0xe8d3375d, 0xbf3e00b, 0x5443276b, 0x1e1a0bc4, 0xeaf48d56, 0x7211bacc, 0x55785858, 0xed5d936e, 0xd2f94f6f, 0xf0f5d017, 0xc4705afe, 0xd67b027c, 0xb426c50c, 0x1f823588, 0x954f3786, 0x000103 } }, { { 0xf7d728c2, 0xcb5e4b4, 0x9674793f, 0x571df148, 0x4dc678b8, 0xf1cf1994, 0x576e1c35, 0xf0fa2054, 0xd38bd5a, 0x88fc396d, 0x4d924973, 0x2d84a508, 0x4ef53b0e, 0x35107019, 0xcf1027de, 0x2ca65bbf, 0x000027 }, { 0xd35bd651, 0x3ec0e855, 0x74a399e7, 0x1c710561, 0xd5d65cc, 0x580639eb, 0xc035a6b4, 0x4feda65e, 0x337a55ca, 0x134530e0, 0xf54a00ee, 0x34a68370, 0x5cb8600c, 0xa66a7475, 0x14724e1, 0x3cae6faa, 0x0001e7 }, { 0xb6e97536, 0xdb522353, 0x215ed842, 0x2a5bc48e, 0x1a10775b, 0xfac2bd55, 0x8214c8f8, 0x3d375cc5, 0xcf2b0da7, 0x434293e8, 0x88ebd27, 0x6927b27d, 0x3bdc31fc, 0xa3925870, 0x67fc986a, 0xd01165e5, 0x0000b5 } }, { { 0xe70033b3, 0x20f10a3b, 0x1796c686, 0x64bbdc30, 0x5088b4c7, 0x9d5ff81a, 0x7a03dfc9, 0x830842b3, 0xb87cdecd, 0xeaef1aa, 0xc46827b0, 0x99be8057, 0x67257798, 0x55d9e633, 0x4cf6b4ce, 0x740e08e4, 0x0001d7 }, { 0xd062450e, 0xf491467f, 0x85a07f35, 0x767d5c82, 0xf85f6158, 0x31e40c9f, 0x509498b1, 0x2ff87b94, 0x6d59f606, 0xd873dde9, 0x44811e56, 0xcfc64d69, 0x1509e87, 0x29acf7a2, 0x33575584, 0x41996c0, 0x0001ee }, { 0x9bb41252, 0xd40b1e3d, 0xa309c4c6, 0xabec8046, 0x55e3d75d, 0x1b5dd8b4, 0xba0bca03, 0x402f6f5, 0x8b6b4f15, 0x56c024b1, 0x2fbba0c9, 0xf8478a63, 0xf8ad9619, 0xff4e32b9, 0x1ae037c1, 0xdd56a35a, 0x00011b } }, { { 0xeb3de5b6, 0x77bd842e, 0x7c10716f, 0x2a2e6303, 0xcbb4a694, 0xf50ddc6b, 0x5c2e9268, 0x81cd54f0, 0xdd7ffd64, 0x4dbde330, 0x4645e54a, 0xc3cbc3ff, 0x63e8a646, 0xd570610, 0xb3b2f873, 0xf207375a, 0x0000fd }, { 0x514ba801, 0x4f95cb47, 0x85ae4dab, 0x8890766d, 0x2f9937c2, 0x7ee80226, 0x57298275, 0xe35d1965, 0xc4d21a92, 0x6bff8938, 0x1edb1599, 0x10404692, 0x444935bf, 0xe02a5d70, 0x7a8a930, 0x289d9899, 0x00017e }, { 0xb66d5c13, 0xac716e8a, 0x6dfa91e6, 0x2a045cf8, 0x59c6f54a, 0x637d4cf2, 0x340e5ae1, 0xb31132f5, 0x4b4d3283, 0xb025e664, 0xe6915352, 0x1b7bfea9, 0x9f571d31, 0xe68496e0, 0xbef5d286, 0x7b7f98b1, 0x0000d7 } }, { { 0xe7d2f723, 0x65afb3f2, 0x6d99c75e, 0x91542dfc, 0xb92d5b2b, 0x1bd68423, 0xdb15b078, 0x62c891bb, 0xbf5266b0, 0x4e832104, 0xa4c2af34, 0xf9b5303d, 0x1a04b042, 0x9a522eb3, 0x85c43849, 0x4a567f93, 0x000083 }, { 0xcc2d5a2e, 0xabc08ad6, 0x3d9c4d80, 0xf193c161, 0x54574729, 0xefd8d4c6, 0x806be8ae, 0x5be51d68, 0xaa60a5cd, 0xd6f2f124, 0xc1757392, 0x93e50615, 0x94fc1360, 0xcbadb286, 0x4fc86ad9, 0xe0589b3d, 0x0000bc }, { 0xfc7cf822, 0xe2e27291, 0xe22337a5, 0x902db934, 0xfeedbfdf, 0x186776d0, 0xf3a275be, 0xac613e5d, 0x39526943, 0x68ee46af, 0x8b337df7, 0xdd8f9045, 0x91dce7ac, 0xd534f2a7, 0x17670c6a, 0xaa9f666a, 0x0001bb } }, { { 0x38590c60, 0x91bcddb9, 0x32b74ace, 0x28073d4a, 0x5c26a000, 0x3daab253, 0xb08ebc78, 0x437b065c, 0x93e32ce0, 0x5102fa80, 0x8f051ef3, 0x39cee63e, 0xbca38114, 0x42beafba, 0xb9464181, 0x6ca7e7be, 0x000021 }, { 0x91b8fe59, 0x4a8a1ad4, 0x4596334a, 0x34613108, 0x13e52a79, 0x4a4433a8, 0xa565011a, 0xf4b78e17, 0xed477c4e, 0xa10d29f2, 0xd4b1f5ed, 0x16275d60, 0x156d259b, 0xd4d6445d, 0x35d1ffc6, 0x9bde58b2, 0x0001cf }, { 0x2ed92fea, 0x72b46107, 0x856ad0c4, 0x1092eb8d, 0xd78ad35b, 0xc0367d9a, 0x1b55ba8f, 0x9e3e2d87, 0x1fc5278b, 0x7e3dd0b8, 0xfed355e6, 0x8211e9a1, 0x9ddc8b6, 0x5dfa11ca, 0xf801c19f, 0x74c8f260, 0x000018 } }, { { 0xa353dcfc, 0x396d038e, 0x1975e801, 0x7436e9e4, 0x8fe158bf, 0x1a15dc87, 0x7bcc0013, 0xf7b7d99, 0x97c16900, 0xe5de2956, 0x1496a99c, 0x7da6b626, 0x882b46b3, 0xa8f8e335, 0x858fcc3a, 0xdb11c47a, 0x00016b }, { 0x400d8239, 0x72918912, 0x6c391e5d, 0x1022fddc, 0x8561c3ef, 0xca7a8fde, 0xdc84e46e, 0x1a7423db, 0x4ad7847d, 0x367fa2a3, 0xea15d9cf, 0x9e187d37, 0xbcfecbf4, 0xcd630d7d, 0x7dc03494, 0xe7bf2270, 0x0001e1 }, { 0xb4d669ed, 0x558c13f2, 0x2ba20843, 0xd5c5995b, 0x14d2fd49, 0xc93053e1, 0x8bcb644a, 0x1f9ce986, 0xc2d35c66, 0x2c702578, 0x30e9d4df, 0x11e0970, 0x4a984558, 0xbbe63c15, 0x756e1cb5, 0x594d3e89, 0x0001bf } }, { { 0x14c49e41, 0xc4c7bc1e, 0x4ea35697, 0xe48a92af, 0x1bd07b8f, 0x515fe084, 0xc84f1081, 0xde926425, 0xffd57700, 0x88159f47, 0x1fe7f6ce, 0x1a3d429f, 0x3abe6098, 0xe4513b03, 0x6e6e96a2, 0xdd721c2b, 0x000026 }, { 0xf3491168, 0x6de2f09e, 0x3118b9c8, 0x651230eb, 0x2177cfd0, 0x1d8ffbad, 0x26068a8, 0xb1ea1244, 0xb1ccd543, 0x887c4416, 0x6feed55d, 0xd996705, 0xc69e4d71, 0x6332b8f3, 0xe7a04fda, 0x676002a1, 0x00014e }, { 0xe8f660d9, 0xe976a7d0, 0x2305cebc, 0x6f6a7413, 0xd39e4b66, 0x8678881, 0x873fc632, 0xc8563081, 0x66810bca, 0x1419462c, 0x6c563316, 0x52f8dcc0, 0x17bff0c6, 0x7d717cbf, 0x967dc74f, 0x4c05bcc6, 0x00014c } }, { { 0x4864d3d4, 0xf0a5cfed, 0x9e9d86aa, 0x660d2891, 0x886407f1, 0x93fb32b0, 0x571225b9, 0x4acd973f, 0xba8b0be4, 0x3b6a5d6a, 0x4726640b, 0x775ff1dc, 0xd00efcc8, 0xdc59e023, 0x9fc614a7, 0xe9a2d83e, 0x00014d }, { 0x17eb430b, 0x63d0b1d4, 0xa3c84813, 0x7752f61, 0x3220804d, 0xf75e2518, 0xecccffa8, 0x9b5a9927, 0xe2d123f0, 0x304ee6a8, 0x995b9d54, 0x77be0237, 0x50faf670, 0xb93f1be2, 0x4661a1d8, 0x74375b5f, 0x000095 }, { 0xffb160ef, 0xbcf9635a, 0x60469190, 0x320217f2, 0x52616780, 0xe6ffc1a9, 0xdeeca85f, 0x2ebb1b99, 0xbf4654b1, 0x99d42f78, 0x2cd2fc70, 0x41d2ade2, 0x9cc2c02a, 0x64b566d8, 0xd7ba035c, 0x7eb29cd, 0x0000d0 } } }, { { { 0x293708be, 0x71c7c35, 0x45d4c534, 0xe3c99d99, 0x106ec5a0, 0xbd4c2f33, 0xb78a3a56, 0xad419fd5, 0x39dabb28, 0x4d56e9c7, 0x4c0f8745, 0xaeb06717, 0x46ccdba3, 0x9dd06858, 0x49bc0134, 0xc22816a0, 0x000009 }, { 0xfb3e8600, 0xa8ae882e, 0x88698118, 0xc9e95fec, 0x972f4abd, 0xcf13d940, 0xaa429bb3, 0x5b230520, 0x8866c1ff, 0x70e55c07, 0xda993ebc, 0x211bbf7c, 0xa9500784, 0xe81ebb2, 0x5067cbd4, 0xb735253d, 0x000024 }, { 0x8e7480dd, 0x71503ae8, 0x493c0da0, 0xc52d5280, 0x29f922f2, 0x3486fd67, 0x997ba102, 0x81f8280a, 0x2fe9a088, 0x27919f97, 0xd68c0606, 0x6ab5d3ca, 0xbe07a46c, 0xaf89abb6, 0x64dbe3dc, 0x54d88828, 0x000019 } }, { { 0x90b02667, 0x1427275c, 0x9c274e33, 0xb3807900, 0x65a95e92, 0x5c1fa09e, 0x8f5594b0, 0x56b646fd, 0x8bc5c75, 0xcab4f8ec, 0x64754f13, 0xdef9e922, 0x7aa56805, 0x78241df2, 0xfa261ac9, 0xd2ba7f2a, 0x00010b }, { 0x20eb390e, 0x448d8432, 0x633affb7, 0x54ad8a0, 0x8a0b2691, 0x5fd168de, 0x9942806f, 0xf82fd97b, 0x7d726176, 0xfd073c30, 0x44debbad, 0xd2ed32, 0x95c21d7, 0x88f7d734, 0x552d5248, 0x24574c52, 0x0001b6 }, { 0x8ee02ce0, 0x69d58626, 0x6d544bd8, 0x7c1cf818, 0x93e227f2, 0xc09d267c, 0x358319c1, 0x413470a, 0x51958f94, 0x1345f02e, 0xeae36f0, 0xeb05dcd0, 0xd0b3df53, 0xfb604955, 0x6e8e12c3, 0x73be1d8e, 0x000071 } }, { { 0x8f8db6ef, 0xc464cb68, 0x9ef08277, 0x9077e219, 0xda4f8812, 0x32a898e1, 0xc2c3296, 0x19b24174, 0x1c80fa90, 0xe32d243f, 0x335b406b, 0x1ea15dc9, 0xdbed4e3e, 0xa09b8fc9, 0x8a0e58e2, 0x85d00861, 0x0001b2 }, { 0x363a6196, 0xa6b670c9, 0xfcec76c5, 0xc8665679, 0xdc08a76f, 0x8518b834, 0xb4d9a07, 0x424df30a, 0xf1384bbc, 0xa8f93b0a, 0xbea4a610, 0xb5d92d5a, 0x777f2cb0, 0x105eb1c, 0x64bb4c6f, 0x80a8ea23, 0x00005c }, { 0xf528f671, 0x56bf5cbf, 0xb18c8765, 0x7cafcd22, 0xcb6f71ad, 0x81e2655f, 0x4e8009af, 0x19c42ff7, 0xc09b574b, 0xce80e2df, 0xd7b32a93, 0xf5a8ebb8, 0x99525d46, 0x91789268, 0x4f916902, 0xda8ea593, 0x000080 } }, { { 0x9b440a12, 0x3531657, 0x318acce8, 0x9df606f7, 0x72887324, 0x5dab065c, 0x47cd0b89, 0x25ec546b, 0xc365ba56, 0xa85b745c, 0xb0960965, 0x1c4613a3, 0x9c60869f, 0x1daf62be, 0x87c1b3e7, 0x285bbe6f, 0x000096 }, { 0xf9c62a8f, 0xc156c0ee, 0x95a5cd26, 0xb9674c0c, 0x9955182b, 0xacc1c0cb, 0x672b6b8, 0x5ccd4eed, 0xb9204ce0, 0x2ca892b8, 0xb9b51ad8, 0xa4f5c94d, 0xf1e402, 0xc4fe12f5, 0x99651361, 0x154d6161, 0x00010d }, { 0x8ee14398, 0x5dc61494, 0x5d84b5a, 0x2ffe35eb, 0x23def25f, 0xa008f1b, 0x4ed5909c, 0x3ac0eabe, 0xd6bbfcc9, 0xbccbdefc, 0x8ea330e1, 0x4f3572a0, 0xe3038e5c, 0x5f4d8a59, 0x929a1062, 0x7b5e93f8, 0x0000db } }, { { 0x35877027, 0x794848df, 0xee9347f7, 0x7a3f0835, 0x2551d2ae, 0x7ce7f3b8, 0x3710956d, 0x42b13d07, 0x2c19107f, 0x2400c6f0, 0x9d2143ba, 0x8d1bf539, 0xc5f9d0e7, 0x3b76d8ce, 0xf12c5558, 0x6a7b1dda, 0x000194 }, { 0x7754b0cc, 0x921ae16a, 0xc3c6931, 0x4f652b66, 0xdcccba57, 0xc5c9d374, 0x5bae8a7b, 0x3e096b13, 0x533f27d2, 0xdc3ae26f, 0xcef0a803, 0xbbc85d4f, 0x55398881, 0x9882dbdb, 0x6e8f667c, 0xfc96b2d4, 0x0000de }, { 0x1bad9567, 0xbe1e047b, 0x16df7b16, 0x2d47b153, 0x3a1bd292, 0x2d3f7251, 0x2c524932, 0x6dcea5c7, 0x3961e5fa, 0x51ddc8fc, 0x620df604, 0x4a3cb4ae, 0x70d04965, 0xeacb9fad, 0xd9d4ec92, 0xfb2090d2, 0x000165 } }, { { 0x7dbc6647, 0xc21f8fd8, 0x509bce7e, 0x53f836b9, 0xf6909217, 0x6d66268e, 0x6fe28e5f, 0x5386168c, 0x647dc94a, 0x6acf98b0, 0xf4edaf87, 0xfcb1322d, 0x9b1964a9, 0xb914f17e, 0x18294370, 0x921c605d, 0x0000c3 }, { 0x95a4ecfa, 0x3ec6241b, 0xbfd442a8, 0x5cf0d156, 0x3c481082, 0xa6886999, 0xbef8471b, 0x143349ca, 0xa468a265, 0x901cc206, 0xd4745233, 0x244508b0, 0x5e3a145b, 0xdae9dce7, 0x68d60cb9, 0xf95eac58, 0x000153 }, { 0x2a24edb5, 0x756188a5, 0x85e7ff84, 0x2bfb36df, 0x543eca5c, 0xe63cb059, 0x63717be5, 0x356046ae, 0x9a78e63f, 0x76058dea, 0x2acc920c, 0xf42f0bd2, 0x1fa15ee0, 0x22857cbd, 0xf4f505e9, 0x6f79dc75, 0x000092 } }, { { 0x70fd3ea, 0x1d556661, 0x2da4a65f, 0xb6876179, 0x1f80b582, 0x38e92264, 0x9a4703a6, 0xd1d0645b, 0xc6072bd9, 0xff76b9f7, 0xa431b917, 0xb88a1f1b, 0x7348f28d, 0x25e93d46, 0x9a2634a1, 0xae396de5, 0x000129 }, { 0xd76c430a, 0x1e82c619, 0xa54da048, 0x7256d41f, 0x4ba30f13, 0x11c7687b, 0x58cf7b92, 0x53819d07, 0xc842353a, 0x810effe7, 0x3d6dc862, 0x28f4545f, 0xe42452af, 0xf829a4fa, 0x3436904b, 0x1ff1909a, 0x000191 }, { 0x6692c69e, 0x44a0a1ca, 0xb05108db, 0x22b92dad, 0x8a172f6a, 0x4b7627ba, 0xa49c18b1, 0x96e9bac0, 0xe487e974, 0x132464f3, 0x738089ed, 0xe7405fcf, 0xbf518d9c, 0x3f9d87d, 0xb674ae1b, 0xeff758cd, 0x0001ee } }, { { 0xcc6fcc83, 0xcad6f7bb, 0xdbea211a, 0x17c3445a, 0x563e160d, 0xe3052685, 0x78599a38, 0xd68ce9b9, 0x5f12002c, 0x19e74706, 0xeea57e4d, 0x7b19fff3, 0x4ae14d1e, 0x9437b84c, 0xe288c389, 0xab3c9904, 0x000131 }, { 0xd22d99cf, 0x8e3b6d18, 0x9ecd841, 0x860783f2, 0x8aec421a, 0x2753169d, 0xc571b529, 0x46290236, 0xcacdcf82, 0x400993e1, 0xe29e02ba, 0xac2879f8, 0x599fd405, 0x443a6efd, 0x6c95c393, 0xa2ccceea, 0x000041 }, { 0x33bd67bd, 0xad26aa7d, 0xce63649, 0x54227022, 0x7ca43142, 0x424e593e, 0xfeaaf30c, 0x8a3ff1a1, 0xaffaf5ea, 0xfdf61075, 0xb3ea9a04, 0x15e173bc, 0xea5bb2b4, 0xce9a6052, 0xb086ad0, 0x8389619f, 0x000130 } }, { { 0x724cce05, 0x3d402a0, 0x7fe83336, 0xc6d6bc52, 0x5755c813, 0x79590b67, 0x842b8d49, 0x7a9c32a4, 0x6d38f7b8, 0x8d865e4c, 0xb4c01e61, 0x912f7062, 0xd6d50bb6, 0x1a3fb2f5, 0x94f8010e, 0x4db73f06, 0x0000a1 }, { 0x3022e3a7, 0xc9e90dc, 0x5dcb9f3c, 0x739538a9, 0x8e626ee7, 0xf4f01958, 0x1b18276e, 0x7e09e1a1, 0xe339e317, 0x27318e02, 0x564765d2, 0xe6c4ce47, 0xa5669bda, 0xa73a04c0, 0x9fa784a5, 0xb3267499, 0x000038 }, { 0x15943a40, 0x55e95f5e, 0xe1078409, 0x5a0e0c17, 0x720c32ff, 0xe6c36452, 0x4aa2bc73, 0x38dab04d, 0xef167f19, 0x9fea5930, 0x516f3137, 0x8d5d1861, 0x66423624, 0x822e984c, 0xa1e47114, 0x57a001c5, 0x000134 } }, { { 0x4de0e3dc, 0x81e537c0, 0xbab2a5e2, 0x9756eb58, 0x2aa7e946, 0x8e507a85, 0x6fba6fb2, 0x6e1db677, 0x961117e2, 0x96ee0a97, 0x8ebc014b, 0x30752e6a, 0xbea67cf6, 0x925ca277, 0x3d8e26ca, 0xe99c1843, 0x000149 }, { 0xbad08ac5, 0xfd79ebd7, 0x592db787, 0xba0d8042, 0x9d068799, 0xcb41aca6, 0xb6429d10, 0x4833f1cf, 0xf989c359, 0x973baad6, 0xf3fd6de5, 0x62afb702, 0xa6676579, 0xcf9a8539, 0x82f11eb5, 0xa17c56bd, 0x00014b }, { 0x638f195, 0xf9182bd, 0xe9beca00, 0x6fd1f598, 0xd7b207c, 0x98a3bf4c, 0xcda0e57a, 0x2d2eb695, 0xe70d7343, 0x4f7bcdde, 0x9ba0da75, 0x23005ac9, 0x400d3d0b, 0xe6ee3a90, 0xd71b5646, 0x8a26345e, 0x000100 } }, { { 0xe49c4ec3, 0x85b9dcd0, 0xfcc2c654, 0xaaaf8fa0, 0x3cec0e46, 0x5d27771d, 0x36f3e6f7, 0xd678d0ed, 0xfedb0e59, 0xf635c0f3, 0xcfa0c217, 0xfe63abe7, 0x2f7908d8, 0xd4352f78, 0xbda7199f, 0xeffa8833, 0x0001df }, { 0x1727438c, 0xbc257d05, 0xa8ec7f2e, 0xe0d318f4, 0x9bdbb31b, 0xb2014ead, 0xd0b023f5, 0x12838491, 0x78a30827, 0xd7ed2f6d, 0x8902ae49, 0x71842ae3, 0xb39cc0bf, 0x7ae07d2e, 0x3da5cde5, 0x5b738803, 0x0000d3 }, { 0x7ada8c4b, 0x1ce737b5, 0x12378ccd, 0xd6cf856b, 0xeeacf50c, 0xd951776b, 0x9ecdbf09, 0x55a6c9eb, 0x67e11d7, 0x2e4c0fb0, 0xaa507938, 0x9390c1f1, 0x7b0b1cd8, 0x349f6842, 0x1e598164, 0xfc7a6d63, 0x000187 } }, { { 0xca70fec9, 0x81f7292b, 0xe33dbafa, 0x7345eff, 0xe7d2e80f, 0xd7acb518, 0x1c88aef1, 0xdb1b5bc0, 0x767fcbab, 0xcd845cf, 0xd5022760, 0xd449c0f4, 0x5d539998, 0xfe78eb48, 0xc9333602, 0x9d112be9, 0x000011 }, { 0x49b48cf2, 0x4416b5bd, 0xcebc2141, 0xd594afa, 0xeb9d62d6, 0x507be5e3, 0x589b45eb, 0x2f41373f, 0x3f34fd57, 0x942989c9, 0xd99112b2, 0xa5aa3726, 0x3029e7f9, 0x80a8884e, 0x9a60d663, 0xe0ae08b5, 0x00013a }, { 0x42e4e404, 0xf6ec1dc3, 0x3d4d3098, 0x3c4c771e, 0x849de4e1, 0xff1bb421, 0xd215b6ea, 0xaefc28e, 0x3955638c, 0xdc0e472c, 0xc6097946, 0x47768956, 0x40fb1a95, 0x1b74eacf, 0xaca0403c, 0xf31292c9, 0x0000fb } }, { { 0xc46d4e1b, 0xb05a5552, 0xeed467b7, 0xf84151dd, 0xcea0fbcd, 0xb4f763c8, 0xd9be0515, 0x9ed9f021, 0xda121001, 0xc201f971, 0x77ba9d13, 0x802de793, 0xd158ce0c, 0x8253fe9e, 0xe70dad, 0xb65f57e9, 0x0000db }, { 0x528c232b, 0x18eb2500, 0xdd69cbb8, 0x39e73914, 0x89005cba, 0x149574ff, 0xcfed3053, 0xd995527b, 0xb55fef07, 0x58d264fa, 0xaef48821, 0x8d12951c, 0x9bbb06e0, 0xa7ede990, 0x4e07be06, 0xaacf575b, 0x0001ee }, { 0x1942e22a, 0x973aa7b3, 0x8e58692d, 0xfaa1c119, 0x9458396a, 0x9e6b6c9c, 0x74076384, 0x6a6977de, 0xf690c2dc, 0x50d2cd2b, 0x29e86afe, 0xb9ff377c, 0x3c6afa26, 0xfbcfec88, 0x489eba57, 0x35d7f9c1, 0x000030 } }, { { 0x2b326a21, 0x46ae2276, 0x3ac79dfa, 0xae5ccf4, 0x9f11bd6a, 0xf31a208f, 0xd9b5f31e, 0x3658f406, 0xe0dccc0, 0xb2db4e26, 0xbd4d4694, 0x88732fb3, 0xfc5dd027, 0x35926280, 0xc0273aa, 0x98b1914a, 0x0000e9 }, { 0x2e9f6d31, 0x12b762c2, 0x2a9d32a1, 0xbf2896ce, 0x7c401146, 0x17d250a2, 0xb0bb8a1, 0x4c136273, 0x5bb5849d, 0xcfe605fa, 0x503a905d, 0x2b252a10, 0x929bf754, 0x6d56428c, 0x7d73ca9d, 0x9cec9307, 0x000083 }, { 0xaa7588cd, 0x8c885aaf, 0xb97cb6ac, 0x624baf1c, 0xe08e2eb7, 0xd53f5059, 0x75bc2f9c, 0x742722c8, 0x5e6724cd, 0x4a5f118b, 0xa0645081, 0x329140b8, 0x8c184c98, 0xcfc7c504, 0x6e6cf71a, 0xd2ac7689, 0x0001c2 } }, { { 0x54f77325, 0x808b2874, 0x9b594985, 0xc0dc72, 0x7d3734fb, 0x379f6db0, 0x1ae4ee64, 0x76ae714c, 0x30e2979, 0x5890bd89, 0xa23a927, 0x11befb90, 0xe0772b87, 0x457dac23, 0x587fbc88, 0x9ec959ff, 0x00010e }, { 0xb64086b7, 0x513933ee, 0x8cfb69b1, 0x30ed33ef, 0x1b3d5f91, 0x16dbca39, 0xada70a28, 0x6d87866a, 0x37d1857d, 0x85956df1, 0x47bfc7e5, 0x707cda12, 0xe21ecaf, 0x4ac5244a, 0x8e8f3123, 0x280b4416, 0x0001c5 }, { 0xd3e2c3a6, 0x9fb6e19a, 0xbe1ce0bd, 0x44eb19db, 0xbb847ffa, 0xcca7ee16, 0xd4b5741b, 0x98ca1a59, 0x4372ac9a, 0xdb24ef88, 0xc7359cfa, 0xd5b318a7, 0x31888d42, 0x9013ac1f, 0x6ec4811f, 0xe2c799ee, 0x000168 } } }, { { { 0x42ec1f39, 0x91bd8d1b, 0x81d3c7dd, 0xb4cf0b1a, 0x6806c9d4, 0xf29700dc, 0x60772b26, 0xa1ca05b0, 0x36c63ac5, 0xb86e15b0, 0xbd95a456, 0x4c8e6df2, 0xe20fa436, 0xebfa5ac, 0xf73182d9, 0x8b491e97, 0x0001b8 }, { 0x81ec3361, 0x9721e077, 0xd9c1cc31, 0x83e5c3fa, 0x439536d8, 0xaec6a4fc, 0x1cf59070, 0xb1fca274, 0x798017da, 0xba4af94c, 0x17a29beb, 0x9663e199, 0x92e68436, 0xf86e8c3c, 0xb743a1e, 0x37bd5bfd, 0x00000c }, { 0xe8298eb5, 0xff893b1d, 0x80f15358, 0xf67b19ad, 0xc7d5092a, 0x11975415, 0x5831667a, 0xfeabc6b7, 0xad6762fc, 0x77451eb, 0xf336f626, 0x9b2f252f, 0xb8d5254a, 0xc676d6ab, 0xd667e8fc, 0x3b4e7613, 0x000146 } }, { { 0x8db9b4f0, 0x9339082a, 0xfc6a137e, 0x2c081bf9, 0xf40690a4, 0xaa03186, 0x81536d29, 0xbe5b0495, 0x29c4f047, 0x488b6c65, 0x3d34a0c7, 0xe36755e8, 0x7a531632, 0x139753a8, 0x5f3e0662, 0xa325033, 0x000107 }, { 0xdb03899b, 0x319c6d1f, 0xc6e071d6, 0x76be460, 0x84f472c6, 0xc935dbec, 0x680e0c0d, 0xb7b92164, 0x1bd67c23, 0xfbbfe96a, 0x28acfb4a, 0x93eb0d7, 0xd6080a36, 0x85c7ff2a, 0x3a1f0ae6, 0xfe68a47c, 0x0001b2 }, { 0xa157f3c6, 0x1e4d9717, 0x897002b8, 0xa3c167dd, 0x9f40388f, 0xe1d5d1e6, 0xf7821dcd, 0xd9860945, 0xba3825a2, 0xb7e4b0fb, 0x5f7a67ae, 0x9da81f5d, 0xaacfe050, 0xa32e3c23, 0x7ced72d9, 0x2d211a45, 0x000138 } }, { { 0x66ca93c7, 0x1fa4b402, 0x964e8716, 0xe7b75a2d, 0x1f6af80c, 0x17c48d66, 0xb3f599a5, 0xca6e1929, 0x10fe4205, 0xfe96bb26, 0x12c2c3df, 0x556d00d9, 0xe86c1717, 0x5f629911, 0xd97d9f0e, 0xc4a83e27, 0x0001b7 }, { 0x72175ef3, 0x1b5c294e, 0x61946a1d, 0xd7a2e394, 0xa79b51ad, 0x702d9a94, 0xdb6a6cf, 0x354b57af, 0x18856054, 0x88596798, 0x905df220, 0xd92d66e6, 0xb4064f5a, 0x3bbe5520, 0x2acd0849, 0x537a5674, 0x00014f }, { 0x1faa1810, 0x8b76f8e8, 0x770d9346, 0x433e2d22, 0x94ce1d4d, 0xfa7dae39, 0x49d50044, 0x319f416a, 0xdb238b24, 0x7c96a51, 0x9667f748, 0x87f54ce1, 0xd685d759, 0x5ca71404, 0x6aa8af61, 0xf14efaaa, 0x0001d3 } }, { { 0x5bccd4d5, 0x1b218229, 0x59b6bc5c, 0xc3955895, 0xc3619ee5, 0xa9c878db, 0xda657008, 0xff21db14, 0xfc9d4900, 0x45102ce8, 0xa41806, 0x1fc9a84, 0x6a1f519e, 0x2d2a5d76, 0x2b3be684, 0x678553a3, 0x000075 }, { 0xebe08bf8, 0x8f7370bb, 0xa3af8df1, 0xe5578fbf, 0x793cf07, 0xbc6eec, 0x555da6e0, 0xdad55d4a, 0x274c71cb, 0xef5828ef, 0x6de87871, 0xe482dbd9, 0x4f28586d, 0xf00a36f9, 0x49faefb6, 0x31da92b8, 0x0000f1 }, { 0xa21d8584, 0x2b06ced5, 0x6dd8371b, 0x1c5e39c, 0x505bca0a, 0x1579cc2b, 0x7e91f5b8, 0xc5f2335d, 0x7cd258a8, 0x2eed6515, 0x66cf4f5a, 0xb79e9b3c, 0x3e03a322, 0x488cb0f, 0x8a3fb316, 0x399b7097, 0x0001a7 } }, { { 0x12a71350, 0xd921da30, 0xb96c97e0, 0xeee6616d, 0xab01b9f5, 0x7d64d969, 0xf97eebbb, 0x216a6fa2, 0x992e76e2, 0x264f7bae, 0xc89e521c, 0xc1598eba, 0x840ce640, 0x1b8586d8, 0x96049d8f, 0xc64072be, 0x0001e8 }, { 0x2d5c5294, 0x288e0d5c, 0x5490caf6, 0x32907fe3, 0xe90c3772, 0xa33c6e2a, 0xfd3bdb3a, 0xabb7b12, 0xcec86ca8, 0xd4b57889, 0xb246cec2, 0x901b2abc, 0xc30bcf1d, 0x7965d953, 0xed3b3500, 0x93288900, 0x0001dc }, { 0x65f45dec, 0xae5b46d5, 0x6616c4c5, 0x29469719, 0x861020c7, 0x7db3d689, 0xefd1ed5e, 0x355237cf, 0xeeeab49, 0xd45630b9, 0xafd8540c, 0xa0f89dd1, 0xe89b0d0d, 0x818001b4, 0xeba184ca, 0x73b540d9, 0x00000b } }, { { 0x9c48e48c, 0xcc74e5ee, 0x8c122186, 0x5f8e74ff, 0xe4bd1fcd, 0x30986415, 0x6d1d781d, 0x1ab4b374, 0xc8fcedf4, 0x560e50e1, 0x90765093, 0xaea36189, 0xe2e9dbdd, 0x4cd745ea, 0x64138a0d, 0xfea02e72, 0x000065 }, { 0x43b63067, 0x20a7723, 0xb80fc96f, 0x67bee1b6, 0xa948c4dd, 0x7a19be45, 0xfc454262, 0x538c675b, 0x997c8d07, 0xaea6af95, 0xe3d79858, 0xe2383498, 0xb9335803, 0x4331c89, 0x8e2bcf7d, 0xcfab9a4b, 0x0001c2 }, { 0xc0a30955, 0xabb30d4a, 0x884d7bc2, 0xc3700cff, 0xb03b53c0, 0x168355b0, 0x7b4dcd7f, 0xf340f77b, 0xaffc18ab, 0xec465374, 0xfd1f8684, 0xb5fc5a29, 0xec2f1214, 0x3d0474ce, 0x61914dc4, 0xd89c6da4, 0x00002e } }, { { 0x2f5ab4a7, 0x930cb028, 0xa8e973ba, 0xc49bc241, 0x32274b4d, 0x61d100f5, 0x8835229e, 0xdabd5d8a, 0x1a892ed, 0xdd10f629, 0xa1412972, 0xadf0d461, 0x631ffef1, 0x6e2ba9c, 0xc374812a, 0x739d99f2, 0x00014a }, { 0x9aea954d, 0xaee551c9, 0x9341e1e8, 0x957aa727, 0x99f1f3b3, 0xdae12435, 0x6921f83e, 0x3bb0ebcd, 0xe76403ad, 0x949d1c8d, 0x15926d53, 0x3745544e, 0x577ae46c, 0x4c033dea, 0x496ca734, 0x8b59ea49, 0x000116 }, { 0x8bdb615, 0x7e44d195, 0xe471d3a, 0x6408290f, 0xdff1d6ec, 0x19f33e39, 0xff17f42a, 0xa429ba34, 0x5a329f52, 0x397c6a61, 0x3a13b67e, 0x57008f67, 0xaa4bd9c4, 0x3ca428b7, 0xd6c5e82, 0x453a1fd5, 0x000168 } }, { { 0xadae03cd, 0x77a6de85, 0x34adcfdd, 0x45e5d913, 0x2551cfb7, 0x8f7a82e6, 0x117743ca, 0xa4f8576b, 0xdab56bbf, 0xd752e792, 0x2fd2fd83, 0xe3525432, 0x52fc9d9f, 0x184eb7a2, 0xa5eb1fd2, 0x309b1299, 0x0000f5 }, { 0xe020d21, 0x336af913, 0x726e8124, 0x72660b70, 0x25952ea2, 0x8b61ac4d, 0xbbcc3aae, 0xd4ba3216, 0xe7725cfe, 0x9ff1c775, 0x4c3e34f, 0x352da272, 0x2476f727, 0x56b3bce6, 0xef53862b, 0xfd9c7c38, 0x00007a }, { 0xf0d4a8c1, 0x133eee8a, 0x9be0dad0, 0x26c44d4f, 0x401395cc, 0x8c1baf9b, 0xd98a6c82, 0x45f5e32b, 0x69f3cdb2, 0x52889c5f, 0xabe5ed99, 0xd6f14d10, 0x9da784a, 0x1080c03e, 0xaece5f6e, 0x98e30cf4, 0x0001cc } }, { { 0x288d8db0, 0xe7e055f2, 0x784e26f3, 0xfa6cedda, 0x25834683, 0xefac5323, 0x6d5a559a, 0x3d912e85, 0x4d215565, 0x400ee00b, 0x859f583f, 0x30307bb2, 0xe7475f73, 0x6dc582ad, 0xc33f5438, 0x9ceabea5, 0x00018a }, { 0x63079657, 0xce874aeb, 0x16640f0f, 0x37d05b00, 0xb8548234, 0x38be73cc, 0x6b2f02c1, 0x3573d403, 0xd0519a14, 0xd958cef, 0x47608580, 0x4574ab32, 0x16f5f54b, 0x64f7c383, 0xaa63b4c2, 0xd59068a6, 0x00019f }, { 0x5bf28232, 0x877bd664, 0xfad1d988, 0xeff2d0bc, 0x46db24df, 0x369d564f, 0x7a73869e, 0xa05316aa, 0x5a0849fd, 0xa6b58208, 0x26945222, 0xd3d93be4, 0xc40f1fe7, 0xb6f6aaa8, 0xb6cfd157, 0x15304567, 0x000175 } }, { { 0x740337dd, 0x1ac17056, 0x679490d8, 0x2105cb2a, 0xc31a2c30, 0xc6fdf549, 0xa539a171, 0x1f075f5a, 0x7f686eff, 0xe2ef5189, 0x2fc4b2db, 0xe4f702ff, 0xb940c3c4, 0xc5630a3d, 0xb4ef249, 0x6265ae2c, 0x0000a4 }, { 0x7ed90f9b, 0xb2594051, 0x5db0efa5, 0x5e421777, 0xed6d377, 0xbaafa967, 0x41b95866, 0xa94e1876, 0x2f256e81, 0x3cd4e29d, 0xe5e5c4a2, 0xa66094bf, 0xd2012eb5, 0x5ae56b99, 0xbf803d72, 0xa81a5870, 0x00010a }, { 0xe8686f8d, 0xe26f04a7, 0x2867142f, 0x703df749, 0xeb82d006, 0xf2bc44b6, 0x291a535f, 0x980b1b23, 0xff6e564e, 0xddfed88e, 0x85d0db74, 0x5020a83e, 0xace7d11f, 0x5b959214, 0x38045ce3, 0x4d84382c, 0x0001b9 } }, { { 0xc7613c14, 0x78e79e89, 0xcf799d89, 0x8084fd24, 0x4537eb05, 0xa5db2331, 0xf33dd146, 0xd1c3cc73, 0x51f39856, 0x9da7beb, 0xeeefed42, 0xeaa739e9, 0x60a8f5eb, 0x815d4df0, 0x31909c64, 0x73f43768, 0x0001f9 }, { 0x51559674, 0xffa9ceeb, 0xc0147f3a, 0x89b74830, 0x9637597c, 0x6d09c382, 0x4b81d315, 0x98c9fa6, 0xe5f6d8b, 0x605d3ca9, 0xea43496c, 0x6f33b6c0, 0x931ff575, 0x4c6e7b23, 0x175b43d7, 0xc76ebb6d, 0x0000bb }, { 0xbe3d16a7, 0xd9aa9e98, 0x669c99e9, 0x73a0a44c, 0x4d4c0529, 0xec36a6ca, 0x9785413c, 0xd474604e, 0x9d197417, 0xf1f181dc, 0xaba185c2, 0x25250bf8, 0x4510243, 0xe174ea6a, 0xcf7a82f1, 0x63482196, 0x0001d6 } }, { { 0x489753da, 0x4233a1bc, 0xd9e67a7f, 0x4b160e81, 0xeb97cb32, 0x9e06b0df, 0xb9ced0ec, 0xaaaf84c, 0x548a83d1, 0x1c318464, 0xcf4e9e39, 0xa509233c, 0x8bf9e87e, 0x231541ad, 0xf9430f95, 0x8adec7b3, 0x00001d }, { 0x84747880, 0xed837043, 0x5af440ce, 0xeb39b51a, 0x1e43f630, 0x6541f2a7, 0xff93323e, 0xaa6c89b1, 0xa154b860, 0x609d1e24, 0xfd714683, 0xd0e2fd83, 0x53123774, 0xc62f18d6, 0x25164ec7, 0x8675daeb, 0x0001bd }, { 0x543b2379, 0x3fc08e88, 0xcaead462, 0xa450747a, 0xba78e70a, 0x6e04eac5, 0x590a9456, 0xb3cd9907, 0xde2b04e6, 0xdd197bca, 0xfde656c3, 0x59ba5d69, 0xd9c0eb10, 0x918be214, 0x1995129b, 0xde9a6253, 0x0001ff } }, { { 0x63e8bd97, 0x4051b15c, 0x720c81a9, 0x314a22fb, 0x5b3ec9b1, 0x573f2ad5, 0xdbd2d259, 0xc52b7c55, 0x9ab34306, 0x7a80653a, 0x31aa87f7, 0x71e88c33, 0x62ebfecd, 0xe311f7c6, 0x30c21ce9, 0xd38abace, 0x000052 }, { 0xedf95f9a, 0xc302b489, 0xe83cd1b8, 0x7989e626, 0x398ccdd7, 0x29f4b8d9, 0x670c8c54, 0xa659caa0, 0x7a62dac4, 0xca5f5057, 0x70711049, 0x70822713, 0x3d550244, 0xe243c13c, 0x62216a3b, 0xebbe210a, 0x000051 }, { 0x5e09bef, 0x916a3b92, 0xe1db7922, 0x4b1a98e1, 0xa487f80a, 0x5e0ee5dd, 0xaddb8be2, 0x4f8ed63d, 0x8ab9aa87, 0x36820426, 0x2fc3613e, 0x26ee7108, 0x21e700ff, 0x2dcb2155, 0x15329f1f, 0x28eedfcc, 0x00005d } }, { { 0x89f003e6, 0xc9e2add1, 0x2974d60a, 0xa9b7edea, 0xd374521b, 0x795f7eec, 0x338595be, 0xbfcbfe6c, 0xe25f428d, 0xc3659c06, 0xaeb11468, 0x25e84e48, 0xf218a7cc, 0xfe6ed494, 0x7f44a714, 0xd6bd4880, 0x00014a }, { 0xa245bf6a, 0x8eaaaffa, 0x60ccf91f, 0xe7651806, 0xcdf4808f, 0xb76f92bd, 0x7d59f167, 0x5ffc31ad, 0x6cfd8615, 0xe3049e2d, 0xe556b42d, 0x5de60990, 0x585ba559, 0xdddfa477, 0xe53f56bd, 0xabe1f84d, 0x00000d }, { 0xf9bf85b6, 0xc2f0b7c6, 0x5645c0be, 0x9ae954f5, 0x42f46fe5, 0x5c775f4c, 0xcdc275f5, 0xfe6f5978, 0xf876ae11, 0x5d338ce9, 0x702a3f1a, 0x7ca55275, 0x993e3012, 0x9408e0ca, 0xb38e82d9, 0xad27632b, 0x0000d4 } }, { { 0x8b43f4f7, 0x16440834, 0xa4962971, 0x16238be, 0x8b10ce3c, 0xcd87d26c, 0xc3f2ba7a, 0x26eb740d, 0xf4b438ed, 0x64846b84, 0xcebae15a, 0x891ccf40, 0x6f645a7d, 0x91c9bcde, 0x52b6dfcf, 0xb3f28ee7, 0x00017a }, { 0x8ad3bec2, 0x97af1806, 0x5a86e61e, 0x1e3b1e81, 0x26b129d9, 0x36e04653, 0xd4a7e4cc, 0xce9aa1e8, 0x181befe6, 0x59200091, 0xec8dde42, 0x3548e865, 0x1a221af4, 0x6e0f4b7e, 0xb1a03427, 0x78960aae, 0x00017b }, { 0x810aefcb, 0xbbd61c1c, 0x3127758, 0x485c5737, 0xed4212f1, 0x18fadc70, 0x56b00243, 0x5182f6b7, 0xac002f21, 0x3d58336e, 0x7e9e0a0f, 0x1cb19221, 0xed6d8963, 0x788f80bd, 0xfe0072e7, 0x9e5da67e, 0x0001c0 } } }, { { { 0xaa10119f, 0xd5030848, 0xf602b99b, 0x80a2277, 0x30c74ba8, 0xdc74f2d1, 0x86d85826, 0xcf502e6f, 0x8e746064, 0x3ceb2224, 0x48ed9488, 0x6896c1ad, 0x66c04993, 0x3ba6b21f, 0x2d4bcc3c, 0xd17b6e64, 0x000136 }, { 0x98b8d664, 0xb651fd65, 0xa3d9f27b, 0x152e9765, 0xd6290ac, 0x59f1a91b, 0x644c51c6, 0xb848aec, 0xdace713b, 0x2cd29dd3, 0xba66f7da, 0x894ace2b, 0x72bda762, 0xe9cec96a, 0x67e774d5, 0x376dc094, 0x0001d6 }, { 0x676c63d5, 0xaf15c0f4, 0xae44ef75, 0x1dec279d, 0xf3b094db, 0xdb90dcd2, 0xf64c1c57, 0x1c637736, 0x4df6ee4, 0x1b59b9fb, 0x875ea3b9, 0xb81e1dfd, 0x9e47cda4, 0xb703cedc, 0xb0797f34, 0xf114b89a, 0x0000da } }, { { 0x59346e9a, 0xdd49450d, 0x965ef32e, 0x909836bf, 0xf410840f, 0x4b0fd374, 0x59884673, 0xabbd0d3c, 0x3a54bf93, 0xf56604c3, 0x2b8ee703, 0xce47d9af, 0x45ac5525, 0xdbdc77ed, 0xda5c0c74, 0x548a0b4a, 0x000076 }, { 0xea7e2d1a, 0x12cf929c, 0xf498e30f, 0x70759edf, 0x962f7d20, 0xc4b86fa2, 0x8b6a2850, 0xccdd4957, 0x5a4dd30a, 0x347d5cca, 0x77b80ecc, 0x2a25123f, 0xc81fc0b3, 0xf545d03f, 0xaaf49a34, 0x93a0bec9, 0x000066 }, { 0x43702865, 0xdc7465ca, 0xa0fcccc3, 0x61bea8d, 0xa7f9e562, 0x1206b3b7, 0xc474cbc7, 0x17334179, 0x34967232, 0x13deb1bc, 0x4b8ffac7, 0x37bdc2dd, 0x1f9b869, 0xd61fed02, 0xf16c190d, 0xa8ebd413, 0x0000ae } }, { { 0xddddc64d, 0x2e28b519, 0xd91dfc21, 0x41bb4850, 0x186367f2, 0xb19fc867, 0xedaeeb09, 0x44aeceda, 0x3f7526d0, 0xf3b819e9, 0x68fdd99, 0x45c0c0c1, 0x2202e1d9, 0x9c9a7fa8, 0xf618e8b8, 0xb51d2a8c, 0x0001a2 }, { 0x7ac0bffb, 0xa5b08f1d, 0xe419789, 0xb3696dea, 0x2f7122f7, 0xa5bc44fc, 0xbcea4e97, 0x624d40d5, 0x323c1542, 0x9876613e, 0xa866757d, 0x7a9371bb, 0x73f1ac98, 0x32af10ed, 0x420ff59, 0x558ead5c, 0x00006d }, { 0x1a406d5c, 0xd131498d, 0xd69b9c22, 0x4f7dcce3, 0x7a2b473, 0x734887ec, 0xd66449d7, 0xd7fa2d30, 0x9aae9f27, 0x3922e9b1, 0xc7fc96f6, 0x7f7bb507, 0xd22df4d, 0xda914517, 0xa7693f6, 0x8e5916d7, 0x000181 } }, { { 0x122b58ed, 0x92e9577d, 0x17cfac62, 0x3681f21e, 0x9851514e, 0x3c0ca1c9, 0xa15cad3b, 0xdc00650f, 0x38b4c0c2, 0xa9227c36, 0xb0e11c41, 0xb05b4507, 0x8e9867c6, 0xa501103d, 0xa4ef5895, 0xad26b991, 0x0001fe }, { 0xd612fcd9, 0xede5e1b5, 0x41ccdfb6, 0xc3cb91c3, 0x19449692, 0xdc4e07de, 0x1e08e2c7, 0x48793821, 0x59bcc80e, 0xf2b7e9ca, 0xd86fd950, 0x19f9aca4, 0x2fe86ecb, 0xd2aa0702, 0xab4499ab, 0x9d40acc, 0x000193 }, { 0x6f32fadc, 0xc5c6ca08, 0x3e0483b4, 0x911f9fa3, 0x1055e4aa, 0x5fe8256b, 0xcb1bba75, 0x6e3d164e, 0x47a080b8, 0xc0495570, 0x9bf1e20f, 0x90bcb927, 0x5fa73a17, 0x727fb853, 0x33e08357, 0x52188f2b, 0x00001f } }, { { 0x2e21c889, 0x1887e006, 0x13af75a6, 0xc7907340, 0x2cc9f348, 0x4afc8077, 0x255070f1, 0x5c865f3f, 0xdd6cbeb, 0x96507751, 0xb13f583e, 0x49750d40, 0x6523e621, 0x426babbf, 0x2c97508f, 0xe640e9e3, 0x000104 }, { 0x826725aa, 0xc66ab4fe, 0xbad2aca9, 0xcbc416a7, 0xb2bb4c08, 0x5648a376, 0xcafb852b, 0x5b9246a7, 0x4133fb9f, 0xdfccca03, 0xb340390f, 0xad2dc471, 0xace2f0fd, 0xce801f67, 0x48bdd020, 0x9722bd41, 0x000076 }, { 0x5b39257c, 0xa96ecc87, 0x5d19775a, 0x6b06f3a, 0xde106009, 0x940e6a34, 0xe4c2399a, 0x73018271, 0xdd8b863a, 0x14bee01e, 0xda39d343, 0xea415d0d, 0xbad687c0, 0xd2750a7e, 0x39c06ac, 0xbf8e5623, 0x0001df } }, { { 0xdb59da5f, 0xcc5d1798, 0x8f9656e7, 0xfba11b7a, 0x864c7109, 0x81fdbe72, 0xff80681, 0xf8d3df0f, 0x470668a1, 0xdfbe8a1c, 0x5ae06860, 0x4c0e6fef, 0x37688bc5, 0xc8958f20, 0x2c75b99b, 0x4fba7d9a, 0x0000ae }, { 0xd380e96d, 0xe2e8ecaa, 0xc1093c7a, 0xded6ea7c, 0xd25ad11f, 0x19f4f6e9, 0xed26ac1a, 0xfd8c8aec, 0x4af8f55c, 0x34e914, 0x66bc59aa, 0x8cb93382, 0xc9496c53, 0xa999e20e, 0xf49a43d1, 0x2aaebb32, 0x00010b }, { 0xee14e9de, 0xa40415ff, 0xce20b970, 0xd10558b, 0x59e25aca, 0x6f89f904, 0x373e3496, 0xf3b485d5, 0x57a268b2, 0x46025845, 0x7f579a04, 0x7efef2c8, 0xb89fa3cb, 0x7f7c03d5, 0x8cc56708, 0xadd6aa16, 0x000190 } }, { { 0x30d2b414, 0x818fb6ab, 0x5679ed8a, 0x3fc49d6b, 0x89795893, 0x5e705c6c, 0x1a6c5ede, 0x3e77327e, 0xd240c7f3, 0xc7730088, 0xa42d7d61, 0x7c44b10f, 0xd5b1e692, 0x11ff3595, 0x6fd68baf, 0xa5729ccc, 0x00003f }, { 0x346138, 0xdd5c4d93, 0x8f4b3354, 0xd56dad86, 0xa3cd4a2f, 0x2d397bdc, 0x6e1bc169, 0xa2986927, 0x8c64309b, 0x57f644d3, 0x45ea7c51, 0x4ca5db70, 0xd9d6bd6a, 0xf0531c5b, 0x8401eba7, 0x3c3de606, 0x000151 }, { 0xe3dd9634, 0x5f94b657, 0x9ae93be0, 0x6e1f2a2e, 0xd243a30c, 0x21094f, 0xead9d940, 0x8f88b423, 0xa24cffde, 0x3b20447a, 0xa563f1cb, 0x63f0e442, 0xeb932dbe, 0xdadd06dc, 0xe8ca4d64, 0x6b0a790b, 0x0001e1 } }, { { 0x229cb0f5, 0x923109f5, 0xe3c4de7d, 0xee7d9866, 0xdf577e4f, 0x6ba57407, 0x2da25ab6, 0x5948b54b, 0xe6f81d50, 0x5d8a6b71, 0x9fbc812f, 0x68c45439, 0x724c10ea, 0xca39ac52, 0xa7384387, 0xe9a61547, 0x0000cf }, { 0xc1a0c843, 0x2ddf0da5, 0xa92316ed, 0xd6ff82db, 0x823ff149, 0x4f4f8344, 0x1a041418, 0x3205b169, 0x1e90e510, 0x8b9bab9e, 0xd12a6771, 0xcaac1172, 0xd7b5bdf8, 0x99a854c2, 0xb8196aaa, 0xcf60b2f7, 0x0000bc }, { 0xf58932fc, 0x76cd66d7, 0x96be153a, 0xc7f54f03, 0x1f099053, 0x51aa37e1, 0x8d54c0a, 0x798883ab, 0xd38b2d57, 0xe0628195, 0xf8865b83, 0xb9a48eee, 0x85978652, 0x3eee5fcc, 0x361560f4, 0x6dd947be, 0x0000c5 } }, { { 0xcec25412, 0x44b27dba, 0x5e41229a, 0xfa59bc93, 0x579e95d, 0x360cba22, 0xb7086b54, 0x5c9daa42, 0x5031dc45, 0x283ad05e, 0xeb0c425c, 0x22e19024, 0x898b599b, 0x9126c141, 0x35a45435, 0xf5b32921, 0x00001f }, { 0xd783fce9, 0xb4f2056b, 0x76a42048, 0x19a19611, 0xf25ad23d, 0xad31d92, 0x65c283f2, 0x97346104, 0xe29c04e5, 0x5036eccb, 0x84ec96c0, 0xc19066c5, 0xcb038127, 0xa69cd81, 0x18023186, 0x9d27496a, 0x00014d }, { 0xb62a3f40, 0xc69db628, 0xbdbd0577, 0x18098233, 0xb145870e, 0x15df418, 0x5aba06a2, 0xa59558fe, 0x1a236274, 0x4ff17d72, 0xe5548948, 0x80911b1d, 0x1bbd1a8b, 0x70a04dd4, 0xe0b423f7, 0x850f87c3, 0x0001db } }, { { 0x85884ac8, 0x58d17522, 0xbe2401b7, 0xe23239a1, 0xf491150, 0x753c5ac3, 0x6c6155a2, 0xdbae6d95, 0x4a4331e6, 0xcbf6e437, 0xf627fd6d, 0x1b81fac, 0xd4ebcea9, 0xa9098d0e, 0x68c7110e, 0x88b8f879, 0x0000f4 }, { 0x29acae1a, 0xce6381f0, 0xdb6e0c85, 0x2ff83fd1, 0x93c4bb9c, 0x60a12d00, 0x83168708, 0x2ab4b735, 0xc64dddf3, 0x3a5db93a, 0x3adca16d, 0x439922d1, 0x7247d196, 0x9666a54c, 0x8fc5639e, 0x2d21f439, 0x00018e }, { 0x6061b50c, 0x2aaa8f90, 0xd3a3d1c6, 0xb2d2dd3c, 0x2caffbaf, 0xef267433, 0x7393453d, 0x589750c2, 0x8b416324, 0x14870e86, 0x548dc59e, 0xb7d38d34, 0x740c8b55, 0x71af0ab3, 0xb78b071b, 0x6ae670d, 0x0001cc } }, { { 0x5fd50cd6, 0x8d34328f, 0x35cf51df, 0xf3afb7f9, 0xbe6ff620, 0x98edd24, 0x72377d11, 0x5f8c772, 0xde40f748, 0xb4ee32ef, 0xe276d894, 0xdfff3b0f, 0x230cdecb, 0xfaf24684, 0x3d684abe, 0x3c3984aa, 0x000138 }, { 0xbec3e6c9, 0xc6251c65, 0x8c9b0140, 0x3fdcd3ba, 0x8ff63899, 0xfd7fa4d3, 0xab395a39, 0xc95b6f8c, 0x1b231c5b, 0xecabfa48, 0x2d0e1a8d, 0xaa78499f, 0x94d1358a, 0x2e67d9cf, 0x4c4fd2c5, 0x9a70e7d2, 0x000046 }, { 0xdb0d0eb1, 0x1c5c14d, 0xecdd875c, 0x38b4fb42, 0xc9206ca5, 0x20b5fbf7, 0x103e0001, 0x87643e0, 0x640e24d0, 0xd5ed7ecd, 0xedbc25ff, 0x9fa92c55, 0xf0a309c4, 0x69f9d8bc, 0x7dc80618, 0x36aaea73, 0x00004d } }, { { 0x487e8a86, 0xcd5fd2eb, 0x4a51617, 0xab375b99, 0x43e3edd7, 0xb930b1a6, 0xc46c1614, 0x5b8a8fed, 0xc184b1ba, 0xb913d8ab, 0x2649368e, 0xca6f1690, 0x1136e754, 0xbdfc1699, 0x6e73dd9d, 0x3908e69, 0x0000ed }, { 0xf40e9a3d, 0x5ea92adb, 0xb8bbf7d9, 0x5519e7a5, 0x64092e34, 0x70b42fa4, 0xda80293e, 0xfa700fba, 0x24242274, 0xeca10d87, 0x1f265dbf, 0xfb5ea386, 0xa40d3a6d, 0xded932f9, 0x807630b7, 0xae2906c3, 0x0000d1 }, { 0x32c151f4, 0x3c5b10f6, 0xfa0f9b91, 0x625f4d88, 0x79ee9443, 0xf0694b82, 0x94b40a23, 0x5308f9bb, 0xc1a9ae6, 0x16efe7d6, 0x8e020734, 0x943db76a, 0xf63f4924, 0x1467170f, 0x772a242d, 0x886276e8, 0x000151 } }, { { 0x7f6f9ede, 0xb96e527e, 0xffe7030d, 0xfb2c977c, 0x6ff617db, 0xdc522a37, 0x550b4984, 0x8729cd25, 0xab4563ca, 0x9cceb175, 0xe0e1daaa, 0x818ba2ca, 0x4ddab350, 0xe5b5138d, 0x64fd1697, 0xe96e97f6, 0x0000f5 }, { 0x8aa0609d, 0x8429976a, 0x15701625, 0xcfe8bb69, 0x1bf82c2a, 0x9954f4b6, 0xa961d00, 0xbc71c481, 0x805c765c, 0xc93bf845, 0xd63491be, 0xcc550724, 0x854a8d32, 0xb69f13e5, 0xd2f82a96, 0x2cef35bc, 0x0001a4 }, { 0xa8503ae9, 0x20d0316a, 0x425e6dab, 0x63d1719f, 0x6ffb60d1, 0x4d31ccb8, 0x2ae73df6, 0x83aab05, 0xe14ad3ba, 0x3b9d53f5, 0x46b2cc82, 0xa5e3394b, 0x16ac3558, 0x8125544e, 0x58c0fb66, 0x407bb4e1, 0x000083 } }, { { 0x65e7de9a, 0xf784b8ba, 0xf2faae05, 0x980a3d76, 0x58ffbf58, 0xaf656611, 0xa555ecf8, 0x8ca8a3c, 0x574fb637, 0x3e6f154e, 0x34558fa, 0xcf91cec4, 0x45203910, 0xc5c8351c, 0xd771d481, 0x897851ae, 0x000093 }, { 0xe15700c9, 0x476169ca, 0xedca2287, 0xf0818fcb, 0x78f7fa53, 0xe534729c, 0x3f8f474c, 0x982b0906, 0x144ee6eb, 0x9f1380de, 0x1e71953c, 0xd42bda93, 0x24adfe6f, 0x707f1a93, 0x616f0afc, 0x8d2d52de, 0x000124 }, { 0x26b0a5e3, 0x82a3af75, 0xfdc588f0, 0x9a0b9e8e, 0xfce64f84, 0xd613c3bf, 0x6300ec39, 0xd9f8ba34, 0x77036633, 0x327e16c7, 0x984407d0, 0x64f7e1ec, 0x85a68a36, 0x3f5a5f35, 0x6041c60b, 0xdd1bc7c7, 0x000196 } }, { { 0x82eee10f, 0xe7ddb5a5, 0xbc6e7478, 0xd85d6f1e, 0x1ec688ab, 0x7348a8ca, 0x1a559f9, 0x9988b447, 0x98cf477b, 0xd06b671c, 0x22820422, 0xafab57cd, 0x486fd34f, 0xc4d5eed7, 0x1a4fe7ba, 0x8ba5d588, 0x0001ef }, { 0xcf3efa22, 0x13b2a8bc, 0xf2d3070c, 0xd0a46063, 0x707b55ef, 0x213d7c5, 0x5d81b651, 0xd8ab7331, 0x50b48dd2, 0xc627256f, 0x188a3ae0, 0x30acc316, 0x6eccd677, 0x74eafe15, 0xf3db01fd, 0xc6380861, 0x0001a3 }, { 0xab58c5b8, 0xdf4f8b32, 0x976028cd, 0xa9fa7618, 0xbf266317, 0xb08811eb, 0xfb2e4117, 0xeb9af1f9, 0x781af4ef, 0x3a4b74f6, 0x6ea4aeee, 0xf09d9c9c, 0xc3d6407a, 0x97a64c13, 0x6b4e19da, 0x256ce8ec, 0x000016 } } }, { { { 0x5873fa02, 0xee778cb2, 0x5752b006, 0x23c8c32d, 0x4735bdba, 0xe7ea7e, 0xc5f1cba3, 0xf9854ed1, 0x244d0ac1, 0x8094e890, 0xad99a158, 0x2f95f2a4, 0x58bdea45, 0x72960db0, 0x87fd22d9, 0xf48b40ec, 0x0001b8 }, { 0xc4da5a60, 0xd12acd5d, 0x388b2b93, 0xca512b76, 0xc385cb5f, 0xd0febb6a, 0x9139ae5d, 0x87344e62, 0x19d42506, 0x937c70a3, 0x57d8a835, 0x94885578, 0xa0350b38, 0xdf116297, 0xac6a7049, 0x43b74b1c, 0x00008b }, { 0xf4100482, 0x96d23958, 0xad90e69e, 0xccbeac12, 0x8566f327, 0x642733e5, 0xb8ee1e90, 0x7b6b70e7, 0x843fa70d, 0xe47f3c33, 0xf47a0ad3, 0xa6f55126, 0xacc64006, 0xfa626da5, 0x5457de87, 0xf241216b, 0x0001cf } }, { { 0xa78b8f94, 0x50362184, 0xb9cc4d66, 0x29f7b363, 0xde2c958d, 0xefdbc60b, 0xa8705396, 0xecb6bdd6, 0x770bf287, 0x47bdfb0a, 0x6385da6c, 0x3aac121b, 0xaf5b9ea1, 0x7465bca3, 0xc98503a2, 0xbfa7aefd, 0x00001c }, { 0xaa894788, 0xfd3f17d0, 0x4edc2c1a, 0x4fcead96, 0xd59c3216, 0x428824ff, 0xb360f4da, 0x296c1540, 0xf6d21649, 0x57f7b9bb, 0xde688349, 0x20e17fc1, 0x8a18bc9a, 0x487feab6, 0x1af7688b, 0x34b3c4a1, 0x0000d7 }, { 0xa8920de3, 0x4465b808, 0x183a9c85, 0x275661b7, 0x3ce2918a, 0x9a09c5f, 0x7d024189, 0x9f749fc, 0x42753f00, 0x2e694738, 0x134049c4, 0x972f1407, 0x2d730f7a, 0x889d5bb4, 0xbf2a1c7e, 0x691ac5ab, 0x0000ee } }, { { 0x4a451870, 0xae693f99, 0x98c53dc7, 0xdc125cc8, 0x90c1c3ee, 0xc31925d5, 0x8b743f18, 0x5cd219ca, 0x48c7d3a3, 0x69237624, 0x8a9f738c, 0x668d1f0d, 0x4d29821d, 0xbae7435b, 0xf50fa93a, 0x6de463e2, 0x000066 }, { 0x2704c99d, 0x6e6cf2f0, 0x34e59b86, 0xc9e50c29, 0x49b3ddae, 0x263fa2a8, 0xf7f8dfa5, 0x2e3d82bc, 0xf0a60619, 0x38d35dc8, 0xf09a331b, 0x7da4356a, 0x9ed40f3, 0x160d850a, 0x10d036da, 0xfc2464f3, 0x000158 }, { 0xee2fa9ad, 0x9eb9a386, 0xe85cada1, 0xd053a3ad, 0x832b7040, 0xb4d4f650, 0xa3b83cf3, 0xf255fe28, 0x8fffa63b, 0x754f1058, 0x3fe83efb, 0x69ff5648, 0x63667971, 0xb213f6c2, 0x610948c7, 0x7b127d22, 0x000078 } }, { { 0xead0de7a, 0xe0925df, 0xba7d470b, 0xd80330a2, 0x98793048, 0xa2aaf111, 0x60418f1d, 0xe3fbcbdc, 0x9414bb4b, 0xbc9c22, 0x279719b1, 0x6998939, 0xb2159706, 0xc9fabb, 0xa36f5fdf, 0xd5115f5b, 0x0001de }, { 0x83b69147, 0x214a4f33, 0xf1411ee1, 0x4e48a2b6, 0xb03090be, 0xbbc2c148, 0x41ec58db, 0x763825e, 0x6aef8e31, 0x670e68f5, 0x30c3bab1, 0x4b759662, 0xbd33500a, 0xa4fca253, 0x47ea7967, 0x1a806236, 0x000166 }, { 0xffd5b395, 0xccf2916c, 0x17e9dc5d, 0x982ee9b3, 0x86f043da, 0x460fd46a, 0x5632db77, 0x2fccaa71, 0xd5cf90df, 0x5a22a3c8, 0x5bab0db5, 0xcb34873a, 0x41bd6fca, 0xd1fa3790, 0xc61b9308, 0x23e56380, 0x0001a8 } }, { { 0x920bbc62, 0x2215c15a, 0x44f8975b, 0x58630817, 0x34a14253, 0x684f8e7, 0x8c404ead, 0xa03926ab, 0x95cb6b5, 0x1d53d5a4, 0x1a50ebb4, 0x17087d90, 0x5e11ba7b, 0x3f8e3cbf, 0x48427fd1, 0xaf798f3b, 0x000152 }, { 0xdf17f4d, 0xf3687131, 0x1bd90cf0, 0xd72c38b2, 0x7b9f6e52, 0xcfa07333, 0xf3f3c26b, 0xc466d4f0, 0xe228e61a, 0x270b5f6f, 0xccbd18bb, 0x6bed5db8, 0x26e36c5b, 0x897b2d2, 0x10f5b472, 0xd95b6c65, 0x000046 }, { 0x523a0ba6, 0x81e94ea2, 0xf11d3924, 0x42aa4744, 0x982ddaa4, 0x5721ac20, 0xb2f9839, 0x9e99b7ef, 0xffb8b468, 0x1ab795d, 0xbb73a19, 0x47b07603, 0x20089e33, 0x4a0d25c6, 0x1cb2a38, 0x33362a94, 0x0000f4 } }, { { 0x9f48326a, 0xb74a175e, 0x5fbba563, 0x58717e4, 0x1f37d47f, 0xf987cfe6, 0x7270c4e7, 0x54675f85, 0xdf948685, 0x74066df6, 0x204269e1, 0x783f2959, 0x6a30d625, 0xf4070c41, 0x45cc15c0, 0xf53f61db, 0x000051 }, { 0x61d0bcc, 0x20600379, 0xed05cc9d, 0x3e58755e, 0xe0e261d6, 0x6bf8551b, 0x6a1758b1, 0x2a36f84f, 0x97910d7, 0xf753b7e5, 0x469afdc, 0x1de5ad44, 0xb052ed2c, 0xfa5b184a, 0x780c10e0, 0x2b4a41f8, 0x000048 }, { 0xc68fa323, 0xec933ca5, 0x3d4c88ea, 0xdfc0bad, 0xb67c3143, 0xed6c2e8a, 0x20536a93, 0xca3da496, 0xe7ead1ea, 0x98a5eebf, 0xb87a412, 0xf09e13bf, 0x84843da8, 0xdb537b05, 0xed61f8c3, 0xa5986240, 0x0000a2 } }, { { 0x739c40dc, 0x370a023b, 0xaef61eb1, 0x61bd7bac, 0xe22e31e1, 0x3189d50e, 0x13aae1a7, 0x49bad601, 0x14634435, 0x8558c991, 0x614734c3, 0x91b9d5c3, 0x93a5d550, 0xb2749614, 0xe7f8a25d, 0x92bcaefb, 0x000168 }, { 0xfe37b60, 0x90405b5f, 0xa9703c2c, 0xdaf99758, 0x18b80f2f, 0xb77d8df9, 0xd9d34105, 0x5c4592a2, 0x216352c9, 0xeb5262cf, 0x1a14dbe5, 0x8cfaf58a, 0x17fae9b2, 0xb4100c75, 0x6ec3bbe3, 0x63b7ec56, 0x0000c3 }, { 0xf4bbaf21, 0xf578b79c, 0x1f22873a, 0x238e4133, 0x31b7c499, 0xc5f36cd4, 0xfd9bc308, 0x337427a3, 0xa0060fa9, 0x7e1ced2f, 0xf52a538f, 0x571e5bae, 0x92787d2d, 0x44d7f850, 0xd015403d, 0x72127158, 0x0000cc } }, { { 0x6dd5eb89, 0x589eb545, 0x351c3c37, 0x69bc6774, 0x3607ff74, 0xd31821ab, 0xc60c21c6, 0x78c6965d, 0xaed5ff61, 0x2d335704, 0x454246cd, 0x774617fa, 0x6c049d3a, 0xe2e34230, 0xab3b0f39, 0x9e18c61c, 0x000182 }, { 0xc71d0470, 0x197d1e35, 0x7c0c9b88, 0x62b5706f, 0x167c5458, 0xcfe6a081, 0x1cdc641c, 0x820d8b1, 0xacfda078, 0xd95f7942, 0x7d2e7354, 0xd1ebdb22, 0x5387aec, 0xbe68ef55, 0x9cd369bd, 0x3240886f, 0x0000f2 }, { 0xa93319e9, 0x41200c25, 0x8fe98135, 0x2804073b, 0x45536bb, 0xb1486b15, 0x904e6ddb, 0x1034fc24, 0x2cbac891, 0x313d740f, 0x46bdaa40, 0x2f1bb19, 0x81aad3eb, 0xd456605d, 0x6f7dc8de, 0x4897652f, 0x000024 } }, { { 0x913825a9, 0xa4465140, 0xb765aa44, 0xa702fdc7, 0xa5fe4253, 0x60231d22, 0x607cdf76, 0xae4ba3bf, 0xb2e02a32, 0xb3458bed, 0xc32a7fe4, 0xea5f1a42, 0x2c460663, 0x18efcc2, 0x7b81efe3, 0xaf8cb29b, 0x00002e }, { 0xf1e13032, 0x84d8529a, 0xccfe768f, 0x6c319bef, 0x4d001778, 0x8a9c192a, 0xd371aae6, 0x4302211e, 0xb57c5a66, 0xabbba79c, 0x985c40c4, 0xcf056c55, 0x2b8450ae, 0xafbe5802, 0x89686b0e, 0x40a44902, 0x00001e }, { 0xf68fea54, 0x58391755, 0xb9a53941, 0x9104f127, 0xba5e33de, 0xf4b854c1, 0x2a5f21d3, 0x6dbb5e19, 0x1a072fe1, 0x82237ced, 0x9d661f76, 0x488fc453, 0xdb48966b, 0xcf250af8, 0x2d2ba3ba, 0x5c564106, 0x000167 } }, { { 0xc5e7adfb, 0x1265cddf, 0x3bf2517, 0xfdc1d4d7, 0xcd5501d6, 0x3417023a, 0xf3139dbd, 0xd1fadca1, 0x539e5837, 0x6b7aabca, 0x8568df35, 0xf898ca8b, 0xe7a796ec, 0x5be48e56, 0x39a9c595, 0x59704462, 0x0000ed }, { 0xc98491d0, 0xac86ed4, 0xaab30035, 0xd9948915, 0xb9567266, 0x357ff1a3, 0xc640b8a5, 0xf0008dc3, 0xc461a3a9, 0x3a7bafa4, 0x9091e348, 0x1355d4fc, 0x5858306, 0xddab89c1, 0xd65726b4, 0xabe239ce, 0x0001c3 }, { 0x84c9bdee, 0xf459fc0d, 0xf5fafec2, 0x842519f2, 0x71dfc818, 0x4dc3fdcb, 0xcac15f3b, 0x40eefe16, 0xfc63e983, 0x59704334, 0x9773cd2e, 0x58f05139, 0xb1661ee8, 0xf21009a7, 0xe4b0d0ab, 0xf7609bc5, 0x000050 } }, { { 0xf714c300, 0xd6efa965, 0xc16d1f14, 0xef2fc0f8, 0xa7db825c, 0xf72af3b2, 0x9d6c5d0b, 0xa337212c, 0xc120c40f, 0xd83245d6, 0x993bee73, 0xdc0f60b, 0xc1e66f27, 0x285e0474, 0xded1d35b, 0xf2570b22, 0x0000cf }, { 0x6505381b, 0x3b23a82d, 0x67183e0e, 0x8070f1, 0xe9442d8b, 0x541216e1, 0xf860bf1f, 0xf730145c, 0x6c6e1f71, 0x4f39ebe4, 0x972a15c0, 0x434a4b79, 0xb2d6eeda, 0x5b245264, 0x7a690390, 0xda1a949, 0x0000b2 }, { 0xce21e0b8, 0x1da066e9, 0x7e5797b5, 0x474df6d2, 0xedcc898c, 0xf05549bf, 0xc8d4a8f6, 0xa29eba51, 0xa8cfc8b2, 0x8253936b, 0xc9bd7fd, 0xd68c0e91, 0xd7e6a014, 0xd5e6ac42, 0xde6a5ea, 0x6119aee1, 0x0001be } }, { { 0x22f57a93, 0x172a5ae7, 0x3ab4ddf0, 0x24e6863f, 0xc8c7ab11, 0x659c074b, 0xc0f518dc, 0xb94841d2, 0x5952974e, 0x9c99de37, 0x1ee7f17e, 0xf5e05463, 0xb6fe0d64, 0x55a181af, 0xf8bd47f3, 0x5df8dabc, 0x000183 }, { 0xaf44342b, 0xd7b0e7b5, 0xfaa8f352, 0x35d5ab92, 0x7c9fe5ae, 0xcb0d787e, 0xffd7b441, 0xe426e1fc, 0xbd11b624, 0xd7628ce9, 0x5265cf74, 0x2286c0ea, 0x6d7a4015, 0x21798462, 0x91cd2096, 0xfd020d59, 0x000161 }, { 0xd40b8170, 0x647b9f2f, 0xbba97b9d, 0x6a1fe6a, 0xa2ec67c, 0xb6003bb0, 0x186ba2d7, 0x4098a79d, 0x52f469bf, 0xd7a5a178, 0xa2c2d008, 0x7b01f58e, 0x67f344, 0x14c02ca3, 0x9e1770a0, 0x98f6fc91, 0x00004e } }, { { 0x9e612549, 0xcd9adcd5, 0xfdaf017e, 0xa16529ae, 0x217c3416, 0xad2f3312, 0xc36070b2, 0x7c94c2d6, 0x916d0cf1, 0xe5b5c63c, 0xb41f2bf1, 0xd7549f2a, 0x8874d5ba, 0xe30a7b8a, 0x6b3ea15e, 0x89938267, 0x000008 }, { 0x2d9505a2, 0xe57a2ee8, 0x41a0488b, 0x64b9bab5, 0x5168e7dc, 0x63dd40b6, 0x37a42db6, 0x8ddcc63b, 0xa8af1b91, 0x73bb7565, 0xb87706bb, 0xbcee4fbf, 0x41e8c67, 0x464d9cef, 0x2cdb7222, 0x12177d10, 0x00001b }, { 0xa6c0b4b9, 0x21a560b4, 0x6e9c13bd, 0xc26e5cfc, 0x49796d61, 0x7a0dab0c, 0x43f5b1e0, 0xcd953708, 0xd7886f47, 0xbe5677d0, 0x51ec3e97, 0x90660b27, 0xad89b3ac, 0xe3a0e7a2, 0x4daffe2d, 0x57200249, 0x000171 } }, { { 0x56c3c83, 0x8c8392fe, 0x70f8d768, 0xddb7299a, 0x207a73cc, 0x890de51d, 0xae337947, 0x82caa7f4, 0x484cf2b8, 0x18281e38, 0xa9846e6, 0xcd79a910, 0xd9089000, 0xc54889f7, 0xbe41e166, 0x42ddc3ee, 0x000002 }, { 0xf27abbc0, 0xc61f37fc, 0xc0ca5146, 0x34deaa1b, 0xe4c80764, 0x97ffd97, 0x543c0449, 0x8778fb43, 0x3466efe6, 0x57a21969, 0x5e674fbd, 0x8db5f831, 0x338e58c0, 0xcafeca79, 0xe9ac2b24, 0x43f5d66e, 0x000175 }, { 0xf7209916, 0x84ecb812, 0xa25656b4, 0x77c58e44, 0x25ed88a0, 0x12cbf459, 0x95b4a615, 0x99117a0b, 0x9859dfee, 0xf32b81ba, 0xc890d7d9, 0x53e16c7d, 0xc8cdf66f, 0x173ff0bf, 0x3f092dd1, 0xaa6c5c26, 0x0000b6 } }, { { 0xd4888107, 0x23ea142, 0x34049a20, 0xc5c0d119, 0x76150708, 0x4344347d, 0x1efd7460, 0xafd7a321, 0x3b5c1bf5, 0x3befdd1, 0xbe44f293, 0x692b8bdc, 0x4c3076db, 0x6f22bd61, 0xee18ccbe, 0x734887bb, 0x000161 }, { 0x63c9d447, 0x64bf6fca, 0x5e745a75, 0x9f96b7ef, 0x1231a793, 0xa0aa1671, 0x2a687d19, 0xe494dea4, 0x5e9be726, 0xbf482b44, 0x98e9146c, 0x395e8257, 0xd37074cf, 0xd1aeca62, 0x1c146e3b, 0xd00ee70c, 0x000138 }, { 0x3460ce7e, 0xc6e4d4e2, 0x69fbcb4c, 0x29eb40d7, 0xda53bb0f, 0x515d6b0e, 0x86cbeecd, 0xda4f04bc, 0xce056de4, 0xdbd8461e, 0xc4acc735, 0x4fa4e250, 0x98b5b79e, 0x4c513783, 0xdb56a562, 0xdb0c8bcf, 0x0000b8 } } }, { { { 0x6fbeedea, 0xf57903ad, 0x37cc36e5, 0x26a04afc, 0x2187cf7e, 0xae075be2, 0xaceff391, 0x22d273a7, 0xca36e40c, 0xb481ff96, 0xa356dd3b, 0x3caa088c, 0x25d796ca, 0x3b4dc12b, 0xacf74d4c, 0xc4629439, 0x0000da }, { 0x7327f221, 0xabadb281, 0xaed2ede, 0x4897c34e, 0xf9530bfa, 0xc8f153a8, 0x6ab93c14, 0x4783ad11, 0x3133878d, 0x37ffb05c, 0x2226f396, 0x8ebf04b3, 0xf9dfa342, 0x652c7aa9, 0x6ef174d3, 0x396c65e7, 0x000117 }, { 0x34462a74, 0x74197999, 0x992a02da, 0xd1ba137c, 0xbf418480, 0x40ec35e7, 0xf7b0f59a, 0x4fb5f35, 0x562c2b7b, 0x3bf4a67c, 0x18455315, 0xbfa325a0, 0x90b014c6, 0x85d8b0f9, 0xcab90b14, 0x357c0a01, 0x0000d0 } }, { { 0xdea756b9, 0x35199000, 0xd33f8fb5, 0x27c5fbf2, 0xe15f00f7, 0x66daea1b, 0x9d7d44fe, 0x1832e16, 0x489b1495, 0xaba22be5, 0xff7b2fe, 0xaa554556, 0xdaf96ce6, 0xa2e145ba, 0xde637a77, 0xa66471c, 0x00006e }, { 0x1ead6698, 0xafc63066, 0xeecfdd78, 0x8e152a13, 0x39079d16, 0xb089d688, 0x7082b656, 0xad0172af, 0x4917ef1f, 0x2f56b462, 0xa4e46827, 0xa8248d2d, 0x3e2ed2cc, 0x615ff13d, 0x4daae950, 0x156116b7, 0x00014a }, { 0xa81484da, 0x8279e578, 0x4446f638, 0xe667f767, 0x8853f470, 0x1a2db16, 0x702dc294, 0x97219219, 0x4c225660, 0xb16f7f1e, 0x653004c8, 0xcc2ff1d8, 0x177d94fd, 0x54bdc2f9, 0xf5ac1c5b, 0x95342f68, 0x000182 } }, { { 0x7213e236, 0xff727f80, 0xf7a9393e, 0x104531d1, 0xba6d1e69, 0xe2084941, 0xdc69618d, 0x24d5da96, 0xa16d9b6b, 0x8a422a1f, 0x3ae1a63e, 0x45f7ed, 0x59b924e6, 0x1153c613, 0x6c1a8f23, 0x3e3754d7, 0x0001e0 }, { 0xf0b26200, 0xa5ae7025, 0x794c35fd, 0x9cab96eb, 0xdb342086, 0x2c489aa3, 0x3f4aa7c8, 0xb3c4bf90, 0x7822e6b9, 0xf0c7dabf, 0xe35dd8be, 0xfc77485b, 0xbf8b2238, 0x62d3d89f, 0xe898a3f0, 0xf6137922, 0x00011c }, { 0x59ba2da6, 0x88d74e40, 0x2e29bff8, 0x63925fd4, 0x809bcfbe, 0xf6400d1c, 0x3ec0ed14, 0xf8ec3668, 0x8089ed89, 0x153bfe7b, 0x71e7e8fe, 0xb6c8be3e, 0xbf903bd9, 0x6ff75816, 0x95f0ca0e, 0xe238ef2b, 0x000137 } }, { { 0x68695156, 0xa444d29e, 0xdbdabc4f, 0x4c4cb1c6, 0x8c4ddbf6, 0xe568a8b7, 0xdf409643, 0xaf646859, 0x56f8235b, 0x76db357b, 0xf3a5dac0, 0x1b496e04, 0x49e619b2, 0xef891cdc, 0xb624e4af, 0x21be60fc, 0x000188 }, { 0xf02e0aa6, 0x77669efe, 0xf2d4e11b, 0xfc340393, 0xe2c8e6d9, 0x53d98300, 0x45477135, 0xa2677b0a, 0xb1b047e7, 0x947c22f6, 0x57e0e0b0, 0x2c801d2c, 0x53121701, 0x39cce466, 0xdf9a70fc, 0xcca88149, 0x0001ba }, { 0xc62f6d09, 0x36fb5d38, 0x4497b302, 0xe12b4306, 0xa7b036dd, 0xc2921fb0, 0x6adac8fe, 0x6510a7b5, 0xe4454863, 0x74746a8c, 0xdf2cf995, 0xf28a68dc, 0x5c666bc7, 0x15e35a68, 0x7146c6e0, 0x9c6fa7d5, 0x00005f } }, { { 0xce2b9587, 0xe1a9a4b7, 0x8e6970c8, 0x5a4b9d1c, 0x7539c4e0, 0x2b6e1fec, 0xb7be1797, 0xa2a59385, 0x47023644, 0x8d11f57a, 0x95498437, 0x2174ceb0, 0xb5ccb3cf, 0x64bbdb19, 0xa0ab883a, 0x1ec631b9, 0x0000f8 }, { 0x5be2c729, 0x6b271ce0, 0xc93472ea, 0x43831ca5, 0x85d4854c, 0xba850051, 0x2ee52840, 0x2f1ea468, 0x8ab6c2af, 0xba2028c8, 0xad33294f, 0xcb94b580, 0xaefddda1, 0xb35158e2, 0x7860e56e, 0xfab0f44a, 0x000013 }, { 0xf35f4919, 0xcaaff548, 0x8fcb5648, 0xce6f6608, 0x50e8a5fb, 0x32feb4cd, 0xaf38b663, 0x90d4304f, 0xbc9909a, 0x3404b697, 0xb9e64529, 0x415722e8, 0xe637ef74, 0xa16fbc7a, 0xf8b93d4d, 0x89fde0a8, 0x0000b3 } }, { { 0x9a856643, 0x1099490d, 0x65f22e59, 0xcff5c340, 0xeda435f3, 0x451cd204, 0xb42b75a, 0x706b5e5a, 0xa2da65ea, 0xf985e818, 0x602c880c, 0x8ddc9a65, 0xedbd96e, 0x4035693a, 0x924d7dc5, 0xd0025fa5, 0x00006d }, { 0x2b0c40f0, 0xd21f3493, 0x27badcc7, 0xb598ec79, 0x2f03d7e9, 0x4a0c331, 0x98e2ea53, 0x3bcfb0b6, 0xe973801, 0xe6a68ee1, 0x73ef7485, 0x94e364c5, 0x1f445ff7, 0x786570d2, 0xe5752126, 0xf6b50238, 0x00001d }, { 0x69a13805, 0x1277276c, 0x97479732, 0xd02d8c70, 0x17656d1c, 0xa69b3fec, 0x892d148c, 0x4582b367, 0xff0cc7ea, 0x6bb73b21, 0x3cca0213, 0x3e69e5aa, 0xaa3d4aac, 0xa4ec55e3, 0x4885994e, 0x67cd8432, 0x0001f0 } }, { { 0xcf15b19d, 0xbdbccd8d, 0x4e2b4e23, 0xca7b1ec, 0x821075e2, 0x101eb0b2, 0xb1ff4be3, 0x15d67d01, 0x71f1cddf, 0xef2ef933, 0xc6d6eaa9, 0xcef22d0d, 0xbf77e8e0, 0xe6e3de49, 0x1e8fb611, 0x954b6d38, 0x0001c1 }, { 0xd59e2e, 0x8fa7cb6d, 0x3e855bce, 0x7a323fdf, 0xd443b997, 0xe9c88c2e, 0x898d51a6, 0x787ca07d, 0x817fe881, 0xc4627809, 0x5fbd408d, 0x78c73b0a, 0xdf15ee0a, 0xfb1aa5dc, 0xfd6d3a5b, 0x28394eb5, 0x00013f }, { 0x950addc, 0x4ca1b1ce, 0x5c0f2dd2, 0x2632d681, 0x94c5fdc5, 0xc63f82d7, 0xae8f19b9, 0x36c3150d, 0xece2b5e5, 0xb291d272, 0x43efb0a4, 0x45fd4edc, 0x9eaffe6b, 0x3dd14882, 0xf5b44cfa, 0xcf5c1266, 0x0001c6 } }, { { 0x7aed8652, 0x2aa3166c, 0x3add2c44, 0x637e7c6, 0x6b1acc4e, 0x4dc149a8, 0x1a8170b0, 0x7840b1f4, 0x62d54d78, 0xa244c10b, 0x2a349800, 0x74fd2490, 0x6266f111, 0xa2a7e45f, 0xe09570d7, 0x8afc41ee, 0x0001b0 }, { 0xa07f5591, 0x1b2d5bec, 0x4b89f05e, 0x9d7d0aa7, 0x58d8c480, 0x8ded74b9, 0x36d7b4d3, 0x596f4457, 0x637b8685, 0xf8433c80, 0xda2683a1, 0xc89fc9d4, 0x38c679c7, 0xddc668db, 0xc749f84b, 0x5007f86b, 0x00015a }, { 0x6b8f7e45, 0xf1f7844, 0xc728de2c, 0xba5d6c89, 0x8610c951, 0x3cee9202, 0xaa3da03e, 0xdc3bc20b, 0x5fa53ace, 0x3a5b4da0, 0x997dd4c6, 0x8ed7f4bc, 0x457836e8, 0x388ee11b, 0xc4519742, 0xb09d0289, 0x00012a } }, { { 0xbd008ecf, 0xf26836db, 0xd6766f6e, 0xc795ccec, 0xa25c5be4, 0x7f1e9b92, 0x17e8d9a3, 0xe3e9e93a, 0xec5e3ea, 0x22782f47, 0xb55f4e97, 0xcf6aa0ec, 0xc362612e, 0x34dc3e28, 0x20f8f730, 0xdcad331, 0x000124 }, { 0x92bf30e7, 0x1ef53539, 0xa3859e73, 0xb37f0f45, 0xf36b412f, 0xe8d8c379, 0x8f0b3fc3, 0x1806c2db, 0x3b1eefbf, 0xdf0c4276, 0x38e7e2ff, 0xcaa262c8, 0xec8d4ca3, 0xd64f1f77, 0xfbb4c04c, 0x605a2c28, 0x0001cd }, { 0x44ef72cb, 0x2b228851, 0x6cc0a87e, 0x7c5c7e78, 0x456cd3b5, 0x9c7c51c1, 0x7cdafeba, 0x35fce686, 0x23b20e7d, 0x2611ad3e, 0x38095e2f, 0xf06b91db, 0x1656f71, 0x262cdc33, 0x8b3ea823, 0xbae2e474, 0x000169 } }, { { 0xf012747b, 0x4ad53a5, 0xb4cdfcf4, 0x233c06be, 0x2835dfe0, 0x1ea8bb67, 0xf7cd359d, 0x75bb7a10, 0x886fee24, 0x56fc82ab, 0xe85c8e38, 0x62fe0445, 0x4b5d7537, 0x62d12006, 0x3c8f586, 0x8a97e70f, 0x00016e }, { 0x8d68504b, 0x98b21e, 0x1bba4afa, 0x96d3792a, 0x94fbc34d, 0xd26f9ec2, 0x24e26991, 0xef97494a, 0xeefe6d82, 0x19ef18c2, 0x80b7ef2a, 0x916cfb8f, 0xb70d0b7d, 0xcdeb94d7, 0xf3f610c9, 0x22ebb3eb, 0x000048 }, { 0xe9cc10e3, 0x6526180e, 0xd92016f4, 0xcf1316f5, 0x3a17a694, 0xd74650f8, 0xd2a02eb4, 0xc5597526, 0xb2f6e750, 0x68a03c8a, 0x2606d81c, 0x53535bc7, 0x2e97e42b, 0x848baae3, 0xe0de2974, 0x4141cb26, 0x0000cc } }, { { 0x76df6e9, 0x8e4501a, 0x6a2bf6b1, 0x8c987a64, 0x5ab8b1d5, 0x575a3a15, 0xceeaf55a, 0x6a284870, 0x5b263a62, 0x6ef1f7e, 0x7aaa2dde, 0x9a5bb162, 0x84f98641, 0x8151499a, 0xf1ac2a4a, 0x9cefdac5, 0x00014d }, { 0x44b2cff9, 0x19b2907b, 0xa54f71, 0xcb85580a, 0x17d53219, 0x30d6747e, 0xaa41b46c, 0x90c7b361, 0x5b2beba7, 0xe6f86881, 0x5c70ecca, 0x825037c2, 0x81b0d3bb, 0xb23411bc, 0x6a8ee06e, 0x4e6383bc, 0x000115 }, { 0xbbb34cc, 0x2208ece0, 0x24e95807, 0x5265237e, 0x71f2e128, 0xe94226eb, 0x12818a64, 0x7ab4ccd2, 0xdd18ea65, 0x5893b28e, 0x2472bd41, 0x56e597a0, 0x29024aa5, 0xc5d1be88, 0x3f317969, 0x5003f0a7, 0x0001c9 } }, { { 0x201e0b43, 0xe0d463a9, 0x68e7cc88, 0xf980d881, 0x786ba7c6, 0x963cbcd1, 0x52bd5157, 0x4ab8f940, 0xd2525f23, 0xfc76336f, 0x56658ff4, 0xf937b80c, 0x8bcd0624, 0x20f2e699, 0x9621d780, 0x9850d856, 0x0000ae }, { 0x836ab67d, 0xeadb722d, 0x82fc7edf, 0xa8ea8db1, 0xb92719a1, 0xfa56a7f0, 0xf2589509, 0x780cb111, 0x7e978fc1, 0x8d4e79e0, 0x85af913f, 0xd236047c, 0xf4cb1d98, 0xf51265a8, 0xc5f497d5, 0x53110ac3, 0x000073 }, { 0x6257b359, 0x7afa35d6, 0xc276129d, 0x11b5b8d6, 0xe9a8bbc1, 0xed8678b6, 0x7abe95c, 0xd66b5f2d, 0xe3bd5d6e, 0xd87faadc, 0xc227c210, 0x54cbb9bf, 0x51f7045e, 0x902311d6, 0x75c6a5d0, 0x70443d6b, 0x00006e } }, { { 0xf3642ee9, 0x8d614920, 0x78c89014, 0x7f95926, 0xabf501f8, 0x90d22b65, 0xde2c14bf, 0x5986f06f, 0xca2d458e, 0xb7e1fb93, 0xd83cf56b, 0xca2097d5, 0xff6e81d4, 0x506baa81, 0xa520a53e, 0x5f45a4e2, 0x0001fd }, { 0x5e8c4d69, 0x2e30801f, 0x74edd2e1, 0xe32c9017, 0x6bf22646, 0x350d7f3d, 0xf1e5f82d, 0x6a552f7b, 0x41bd16ef, 0xab0a91ff, 0x3bd78a42, 0xe1a488fc, 0x66f4cb59, 0x43a071f0, 0x7d032ef2, 0x6e1a8bb1, 0x000015 }, { 0xf0ff5e61, 0x1870c109, 0xc7e7e0fe, 0xfc70693f, 0x8026e631, 0xa5175222, 0x3fefd44a, 0x54d0836, 0x1d527256, 0x5aa9bd77, 0xf2d0cca6, 0xe3470328, 0xb8fa6438, 0xba8d4a0e, 0x73a9c411, 0x32bf464b, 0x000188 } }, { { 0x2e59755e, 0x9f7b1b08, 0xa837059c, 0xa0de782d, 0xf8ccc756, 0xe9b676c6, 0xc84325e8, 0xb50ff54b, 0xe156a0ac, 0xb44e50fc, 0x4a56f954, 0xa3cbd5d, 0x97cb1409, 0xee6b66a0, 0xd14c1aeb, 0x5c56fcb2, 0x000190 }, { 0x26ebc906, 0xd16ca47e, 0xe611daf8, 0x1b1c22f3, 0x366dc307, 0x70b6e790, 0x40bec28a, 0xd12cd577, 0xbc5ce641, 0xbd011a8c, 0xa1192ce9, 0x11ceaf7e, 0x91536443, 0x1f5cd09b, 0x711ae4fc, 0xce5a58f6, 0x0000a8 }, { 0x92f613d9, 0x46c3abdf, 0x31b3a2c8, 0x5c4c4026, 0x8adfc6cd, 0xc50d102a, 0x42168dfd, 0xb6628c31, 0xb6c301f1, 0x17cf6c4a, 0x7df43d09, 0xa989de13, 0x4008d860, 0x99f7a9df, 0x1e08a2a7, 0x108787e3, 0x000156 } }, { { 0x6ca111b, 0xb9162dec, 0xf546bea2, 0x16354019, 0x14c2979d, 0x5f4d2744, 0xdbe9e5b6, 0x5adea8b5, 0xd41a5e80, 0x3a516af2, 0x903ddfa3, 0x6911cc46, 0x5dc95bae, 0x78567dca, 0x67f0e60, 0x5e9f6333, 0x000122 }, { 0x6376278b, 0x49cb76a8, 0xd2e40a9a, 0x21b6a773, 0xe474fede, 0x392502c7, 0xd217d66, 0x400481bb, 0x924d3fca, 0x10e6ab12, 0xb10a6a45, 0x675d185b, 0x70a54215, 0xbe8f37f8, 0xaeb34b11, 0x49f702c0, 0x00018c }, { 0x9284d5a3, 0xc012561a, 0x5eec8c8e, 0xd705a118, 0x951e00e5, 0xd63135b6, 0xcc6b971a, 0xe72680d2, 0x3b66770f, 0x3ab4d8b5, 0x6f3b53d9, 0x2b1f16e1, 0x8cf19396, 0x2ecd0aa8, 0x184a1afd, 0x58ca4ee0, 0x000098 } } }, { { { 0x8ec05ce2, 0x50e546ac, 0xff07b79f, 0xedbacdc7, 0xed0350d0, 0xe41d450a, 0xa07ecaea, 0x4b179564, 0x5d7d8044, 0x965058bb, 0xd3b5627c, 0x4f69b8a, 0x8ff3af84, 0x1fa0536d, 0xfcf4c07e, 0x4f8f6f72, 0x0001c8 }, { 0x6e72172, 0x19caa93b, 0xb8a2dbb8, 0x64efffac, 0xbce12e0d, 0x699fcd05, 0x883897e4, 0x224464fd, 0xf12c64c6, 0x6401a920, 0x7a4394f5, 0xab01de24, 0x12ec206, 0xe5f1948a, 0xd2256a13, 0x17a59680, 0x0001a5 }, { 0x72394696, 0x7160158c, 0xb88f032, 0xc18a442b, 0x6a22777b, 0xaf83d695, 0x852ea1ad, 0xbb051529, 0x7e515c50, 0x4d3cb2bd, 0x99e6263f, 0xdc853e01, 0x8d8d86de, 0x68ed57c, 0xdce43d8d, 0xa51b7da, 0x00000d } }, { { 0xc6c8345e, 0x8c09674e, 0xf671eee9, 0x200c5276, 0xc7fcf312, 0x10489b4d, 0x33bb4204, 0xc634b77f, 0x60d4ce52, 0x598aee28, 0x39d425f6, 0x770f138b, 0x12bbb809, 0x98e268a, 0x69e6dfdd, 0x88bb38a0, 0x0001a7 }, { 0xb542fe9e, 0x9e3e2ab8, 0x70a9d14f, 0xe3a78cd, 0x8f8b1c7a, 0x9235df4d, 0x30ac780f, 0xae9e8a89, 0xb83d2ad8, 0x69dd469f, 0x8e7f4168, 0x5961f36e, 0x3b2c20ec, 0x471f9d89, 0xf3e5878e, 0x33c83669, 0x0001a7 }, { 0x97f8234b, 0x821112ce, 0xb16c1fd1, 0xd26ce45f, 0x13990ac8, 0x8f8dfbc8, 0xe9443d0b, 0xb9b76d91, 0xe2de9be, 0xcd13e27b, 0x301dbf16, 0x1ab09183, 0x81299acc, 0x7a2c0369, 0x860ee543, 0x26b39ef7, 0x00002a } }, { { 0xb2b8885, 0xd42de7f, 0xa7880112, 0x8774c57d, 0xfa78c481, 0x2d35ccf6, 0x7d2a2f92, 0x279aa0f7, 0x136f3bee, 0xfece0aa5, 0x958d5043, 0xec2c86e3, 0x78aaff30, 0x8f6ad85c, 0x4742bda6, 0x5a8b0c3, 0x000176 }, { 0xf0f488fc, 0xfd9a255a, 0xbd7daff9, 0xe7eb4f9c, 0x12d9b760, 0xa34f3766, 0xee968f29, 0x5483547f, 0x145652c9, 0x66da0ea5, 0xe7fd81d, 0x471b6775, 0x2c5a43ff, 0x335b859, 0xee68f020, 0x9b1b6dfc, 0x0001d2 }, { 0x3bb6a69, 0x37a6feb1, 0x3d43a722, 0x35748890, 0x4482af7a, 0xbf3b2fc0, 0x83c43e6c, 0x52a55b3a, 0x16a26b34, 0x7dc7cacf, 0xaed4d776, 0x67359caf, 0x7d1d94e7, 0x8e5a53aa, 0x3bc514db, 0x3a4c2685, 0x00011b } }, { { 0x87aa4892, 0x448a1a7f, 0x225cf6ac, 0x1b18a24e, 0x4d74a454, 0x6b3ffb5d, 0x8de6fa24, 0xd528ea5f, 0x60dacec4, 0xc206dc07, 0x244b7844, 0xc4d511a3, 0xfbad7805, 0x8e9479aa, 0xd4794c85, 0xfeaec7a3, 0x0001a5 }, { 0xf3fe3258, 0x2edce476, 0x5a3342e7, 0xb873b662, 0xea2869fa, 0x89d48286, 0x6d089061, 0xd3721e1b, 0x89b1be12, 0x26119082, 0x64177871, 0x1c5e67b, 0xb84aa420, 0xa10676d0, 0x76e3dbbd, 0xeea79fb6, 0x000034 }, { 0xb6808c6, 0xf78992d2, 0x5277e3b8, 0xafdeb84f, 0xe215b32, 0x4fa8a7ba, 0x79d6f058, 0x4f828a17, 0x10e9fdbb, 0x587c164c, 0xee54a991, 0x4a011f51, 0x49b0982b, 0x1190f637, 0x7dca7824, 0xcfba2d99, 0x000107 } }, { { 0xb243933a, 0xd6833046, 0xa2af4cbf, 0xf6242585, 0xddc19916, 0xaf1cc17, 0x6a9a018c, 0x97f9322b, 0xef177aee, 0xe4a82ed7, 0x7bac103c, 0xf7e98c7, 0x9321e5e0, 0x719e6d13, 0x731ca720, 0x47b173b2, 0x00003f }, { 0x331e95d6, 0xdc31bbbc, 0xe7b1f0e4, 0xdf692de6, 0xddb0d7ad, 0xa734299a, 0xc393734b, 0x4cb7e85, 0x280a431c, 0x1518cebe, 0xc3c16a42, 0x3b3563c9, 0x9ef9d214, 0xa71aac1f, 0xc181688f, 0x883ec480, 0x000096 }, { 0x60c107dc, 0x32952b1, 0x426df8ef, 0xce39dccd, 0x98cfad4a, 0xb66e7c44, 0xa44b8d1d, 0xf3370b65, 0x8e760f24, 0x53d92a8e, 0x6e10e8d1, 0xb9607e56, 0xf54357c0, 0x7986a18, 0x5a75abc7, 0x44028c70, 0x0001a3 } }, { { 0x7410a959, 0x35cbacbd, 0xd7210170, 0x2a9d5b9a, 0xf11520fe, 0xb0e0b111, 0xd202e0a7, 0x7dc6ea4a, 0xb65a6a1c, 0xda54affe, 0x20efd735, 0x6789e514, 0x3941166a, 0x3fd05bd7, 0x935c0786, 0x2d7538b2, 0x0001a1 }, { 0xd5339f1a, 0xb1e6a9d0, 0xda1f59ab, 0xe93986c7, 0x61b6081e, 0xea6220cd, 0xf71bf11a, 0xd40246dc, 0xe361535, 0x2563dd94, 0x4a69002a, 0x6c4936ea, 0xf6f98b12, 0x700e094d, 0x397d6396, 0xa240a623, 0x000088 }, { 0x891eee9d, 0x68b31dbf, 0x45111cd6, 0x7910dc, 0xaf19ab60, 0x2c1665b1, 0xac1f0130, 0xf9ad03b3, 0x8b04fb28, 0xa4b44f97, 0x1c8ad30, 0xd7bb3ae1, 0x38d2df32, 0xd85d6804, 0x13ea7ff1, 0x750b1a65, 0x000038 } }, { { 0x74eaebf2, 0xee0a91b6, 0xa9c3b313, 0x227a6909, 0xacbc14aa, 0x43252f95, 0xb120611a, 0x5c7eb603, 0xbf1d1cd, 0x484d6e01, 0xd74c5e7e, 0xde09dae, 0x178cb6ec, 0x5a1015c1, 0xa218e663, 0x1cd6bb2e, 0x000089 }, { 0xb4e5d705, 0x237276e9, 0xe0c59add, 0xb131656e, 0xf3a5e78c, 0x91bb341a, 0xcdde014e, 0x1957c1c3, 0xb661d6e9, 0xd0dd07ea, 0x45165eb0, 0x9c166ec6, 0xc184981b, 0x19005427, 0xd84f297c, 0x1acefed7, 0x000055 }, { 0x3e367b81, 0xcf3e1579, 0x73981e9, 0x31171c5e, 0x578ed1b8, 0x2246ee6, 0x8bbcd1e9, 0xdf7c7cd6, 0x2a7057ee, 0x84ed5a9c, 0x5a270978, 0xc015584d, 0xeecba02a, 0x2b05743b, 0xb47d2b3, 0xa8287cdf, 0x000084 } }, { { 0x82ce0ebd, 0xca7afe22, 0x6976b006, 0xe3e15e5e, 0x56205ed3, 0xd13eeba5, 0x8524cc05, 0x92b5d8fc, 0x7a4c70fe, 0x6d48ca7c, 0xf8d5d910, 0x5ed676b5, 0xe7ea67a1, 0x12ed8f3d, 0xa4bded14, 0xbf775bf5, 0x00008e }, { 0x1912c6f4, 0xb656291b, 0x39daff94, 0x21604baf, 0x71d687ee, 0xfc0ff7e4, 0x7f743711, 0x1a697f35, 0xad8cf54e, 0x833e5a27, 0x2aa6b5fe, 0xebcbe2b6, 0x6ad608fa, 0xfc263938, 0xdca93e72, 0xc724844e, 0x0000c4 }, { 0x89f027a3, 0x6a1460b8, 0x2fff3cd7, 0xfefd8165, 0xcaf39832, 0x43a5d6f6, 0x3f546c2b, 0xf66ab1ac, 0x8d97e56f, 0x4548f917, 0x82d0e622, 0xcafd514c, 0xbec2f819, 0x3066e176, 0x6fe0af25, 0xb9197bdc, 0x0001ef } }, { { 0x67d24f9a, 0x5a2aa351, 0xe591bcdc, 0x6b0ab309, 0x5e39edfe, 0xe3fa752b, 0x791b24f3, 0x48982f30, 0x265d8ae7, 0x8106cd81, 0x5e8a1a34, 0xe7b46c1f, 0x663816f7, 0xe81704d8, 0x476e2eca, 0x23b8a0a1, 0x000118 }, { 0x82b6eaaa, 0x35173e3c, 0xe117878a, 0x8967902d, 0x3b1a5b33, 0xe7b9fff8, 0x7efeccbf, 0xcf185e9e, 0x4b6c60de, 0x7b118aa9, 0xe29b0b66, 0x4802e15f, 0x6edbd4d9, 0x6eff20f1, 0x7fc8ede2, 0x7948c281, 0x0000a6 }, { 0xa584a1ab, 0xcccf1d06, 0x2079645b, 0x8b3f7a, 0xaf9633bf, 0x1b068149, 0xbac4db20, 0x5e7c1427, 0xfb5680d1, 0x8b4fccc7, 0xd64d57df, 0xba8c400f, 0x5e0c75e2, 0x9b5288b8, 0xe2e57707, 0xd47b95d5, 0x0001c4 } }, { { 0xef349a20, 0x27882161, 0xbbf2451c, 0xf36bd006, 0x7464f810, 0xddf21dc, 0x4ef3a81f, 0x6c16fb6f, 0x2f0c649c, 0xcd16513e, 0xa1687ba0, 0x1fc21385, 0xf4ec2b3d, 0xcf077751, 0x2e5d0079, 0x4286e539, 0x0000c9 }, { 0x9169b273, 0x6a7f6b9a, 0xb7cbbba9, 0xd3f8aef8, 0xaa896135, 0x6c8d73b4, 0x6bb371c, 0x1dbacf02, 0x4f98a72c, 0xbbbd99, 0x42301d04, 0x4a2d1f35, 0x98a19b57, 0xc9fd78e6, 0xfd15e532, 0xe6b0700b, 0x0000d0 }, { 0xc8fdd5b2, 0xb8103237, 0xb54a294b, 0x96f3f5cc, 0x4c27e94a, 0xf4ffe1c8, 0xca6d6f50, 0x151b8db1, 0xc0fa0a24, 0x552f80ab, 0xad45ee90, 0x8b41e7a6, 0x51ada84, 0x5acfec7f, 0x132e53b2, 0x8cdbb400, 0x000132 } }, { { 0xed848cf1, 0x619e073e, 0x3e35571e, 0x6c540027, 0xe38428a3, 0x572754aa, 0xb2021b9b, 0x6c4d4f54, 0xc1c73fad, 0xb2230bdb, 0xde4ff0b6, 0xc054f197, 0x5a5b2206, 0x77109302, 0xe249a092, 0x618e0b28, 0x00010a }, { 0x2ce85a9d, 0xcfbab0a5, 0xc330bc94, 0x398386b8, 0xda2b43e1, 0x10113951, 0x795b8ede, 0x25ef066, 0x48c57ef0, 0x8d738569, 0xf6d58df4, 0xb63bce12, 0xd59c5107, 0x2f4f4dfe, 0x942fce4b, 0x71f19fd8, 0x00004c }, { 0x56ffe067, 0x2e127406, 0x3d7f3ce4, 0x9dae6fd6, 0x8bac0dad, 0x7d639205, 0x159a031d, 0x15fb29a6, 0xad1149f7, 0xefc5fcfd, 0xa47ce849, 0xe5a08914, 0x4fd49cf6, 0x6c1341e1, 0xe21e1414, 0x15706427, 0x000136 } }, { { 0x37db326c, 0xc2d80d2, 0x2213ef57, 0xa5bd5710, 0xd61e1389, 0x46189c1a, 0x6fe796b, 0xe076b026, 0x7e585239, 0xa9388d41, 0x19d709e, 0xb8cb8fc9, 0xaf25ba51, 0xdb8aa4aa, 0xeaa89316, 0x97308d5, 0x000012 }, { 0xe0ee7caf, 0xa8c9cd5f, 0xadfff6a3, 0xe64d612, 0x412c69dd, 0x1e7762c8, 0x92e5362b, 0x730292ae, 0x1fe845d9, 0xe4630890, 0xba1041f5, 0x94840ae4, 0xb49f5263, 0x9235d1b4, 0x6b8c2aa3, 0xfb124481, 0x00005d }, { 0xfe573616, 0x479a6b1, 0x8d30c617, 0x5ebc73e, 0xa16249d0, 0x37118605, 0xeaddd937, 0xeba38002, 0x73b851c6, 0x20f23503, 0x4191a8ea, 0x134b50d4, 0xbefbe0d5, 0x2de6ee18, 0xe53d33e, 0x62911b0d, 0x000057 } }, { { 0x1ed14f7c, 0x8a637834, 0x5c18a4ec, 0xf9115332, 0x246e6779, 0xa0194f7c, 0xfe75d37, 0x10858768, 0xd431da24, 0x468cdae8, 0xe3ff7d8, 0xc99c6061, 0x4599df90, 0x3e57d989, 0x33d95cde, 0xa2de1af9, 0x000050 }, { 0x25b81c50, 0xc32beef8, 0x69b3953e, 0xf88d3eaf, 0xc4d3c93a, 0xd95f1d4f, 0xd2af5ff6, 0xc86d3fc8, 0x3ef2adf7, 0xbf3e2e4c, 0xc77d663f, 0x4d413e4d, 0xaa9285e8, 0x8cc32f8, 0x20635221, 0x893afb2, 0x000128 }, { 0x695f4e4c, 0x28f9d570, 0xc8da03e3, 0xe2022c74, 0xa943136, 0x299ae7ab, 0x4c3f399e, 0xcb90a482, 0x645eccbe, 0xcbf45f01, 0xb419df7f, 0xcc7caef3, 0xff47638d, 0x4f287b84, 0xe7f8ebcc, 0xfc1e016, 0x0000f2 } }, { { 0x9fec7fc1, 0x767656e0, 0x80ed2698, 0x731af171, 0x27a90615, 0xc5f48956, 0x89a6d4c3, 0xb5f1d4d4, 0xff41034f, 0x4d252157, 0x9641e956, 0x24f11c5b, 0x54602fd0, 0x62c42285, 0xd4ae115f, 0x5176fec6, 0x00004a }, { 0x330ceef9, 0xbffd5801, 0xff760b04, 0xc34e1ece, 0x6c703667, 0xfcec8e0c, 0xeb97e2f, 0x8512afbc, 0x75a6e72f, 0xe5f24a1f, 0xcea67457, 0xc37e3eff, 0xda549772, 0xe3e1821c, 0x5671fe4, 0x4cabf6c4, 0x0001c8 }, { 0x42fc4fca, 0xbef9808a, 0xc71363a, 0x805fb2d8, 0x2b2921bb, 0x3fc94c77, 0x81e9a4d, 0xe3663214, 0x33ff3aac, 0x5d787f0b, 0xcd79a90a, 0x71716b5f, 0x5fbab951, 0xc01414f2, 0x693cc57b, 0x9cbe36d0, 0x0001cf } }, { { 0x86eb89f8, 0x71146082, 0x34ce415e, 0x8996627d, 0x147209c7, 0x250e1b86, 0x63cf8ace, 0x35a1655d, 0x4ee210e2, 0xeeb68720, 0xf379a13b, 0x1dd6c5cb, 0x6e187537, 0x227ee008, 0xa53c5e02, 0xe9c3144d, 0x000114 }, { 0xde53012e, 0x889f866d, 0x849b803e, 0x2864331, 0x2fd07586, 0xabcca587, 0xc02797ff, 0x8632c775, 0x442fb990, 0x7e0f812d, 0xc194bfac, 0xb9701cee, 0xfe3b523d, 0x644ddc1e, 0x737e9c2f, 0xc4708b0b, 0x0000a5 }, { 0xedc0343, 0x1c93f696, 0x37a7ede6, 0xee4579d1, 0xadefee35, 0xe32be824, 0xa8f5f539, 0x1f4e117c, 0xc4fc0248, 0x13d9862f, 0xdab7c277, 0xc8f29179, 0x17d37ab7, 0x5ec4e9a9, 0x3c04cf9f, 0x74eac9b1, 0x00015e } } }, { { { 0xebce6858, 0x1e3631c6, 0xb8e13e51, 0x1eb10756, 0xeb2c27d3, 0x7e6f7b01, 0x5f2a8eef, 0xc09953dc, 0x47d611ea, 0x27459ffc, 0xdc02d55c, 0x4a7beb2c, 0x5966fe5e, 0x8b73604, 0x92087895, 0x9547240a, 0x000065 }, { 0x76bcb3a2, 0xa5ea0070, 0xdafb0433, 0xf2f6672d, 0x9df4c981, 0xe85ce7d2, 0x8f76188f, 0xb535d6c5, 0x7bdbc210, 0x9b27b21f, 0xaecf3c2f, 0xc8ee058, 0x2786bee2, 0x6dfc3e39, 0x1ff02df2, 0x80fef3cb, 0x000052 }, { 0xe6b0958f, 0x7b7e7dd1, 0x6c238f5d, 0x838c971d, 0x95b6484a, 0xf155bca1, 0xdbf27b66, 0x603b2b10, 0xcfb97796, 0x2ae32f37, 0xc31ef467, 0xae68c3fe, 0x86af43b0, 0x884678d8, 0x630e4865, 0xaf0eeabb, 0x0000b5 } }, { { 0x2b81d7cb, 0xfa1ef328, 0x9b46d7ae, 0x5a1b378d, 0x1d41c8d7, 0xd399d4c3, 0x961ee405, 0x27432379, 0x8fb405bc, 0x5860e3c8, 0xc191757f, 0x31bff651, 0xcc98fe75, 0xbac40c40, 0x97f64625, 0xa884e617, 0x00013b }, { 0x24350d5a, 0x9082e21f, 0xda619a07, 0x5bf6fb39, 0x79248b29, 0xec8587f3, 0xdf0414af, 0xc6d47756, 0xc24785e3, 0xc1f34111, 0xed593858, 0xb6920fd1, 0x4b31dc9, 0xcd5c74fa, 0xc5beb24e, 0x907abbfb, 0x0000d9 }, { 0x95d66811, 0x1168d8a1, 0x2c43184b, 0x4cfa5778, 0x7d8b93ba, 0x9040156f, 0x550510fd, 0xbe9c2035, 0xae7fc1d1, 0xe2f763e6, 0xbfd8a6be, 0x57dfea02, 0x702aee20, 0xd662e164, 0xf05c8ac9, 0x67d63cb3, 0x0001ae } }, { { 0xe25bac3b, 0x4faecbc2, 0xf01049ae, 0xa014310, 0x98eb70a8, 0xe59f28e9, 0xebf79c09, 0xbb3f8623, 0x984e273d, 0xa39954a2, 0xffe6dfca, 0x9d8f3cf7, 0x2ef625fc, 0x28513171, 0xe009fe06, 0x26dba4d4, 0x000144 }, { 0x694d107e, 0xc08d776a, 0xc088b945, 0x90f2d09c, 0x91b25b95, 0x6630d45e, 0xa0475407, 0xf09b67d5, 0x4866bf57, 0x55e9f05f, 0x2b6dbcc3, 0xb17b1030, 0xe7b25cf7, 0x902782e2, 0xde047864, 0xeab3b487, 0x0000e1 }, { 0x72ec4985, 0xe232bf98, 0x676299dc, 0xe611427c, 0xebc0d295, 0xf6ac4be2, 0x5b1d567e, 0x551d6b7f, 0xf353306b, 0x1cade12f, 0xb0a90c43, 0xbed34137, 0x4b8b8657, 0x90ee45aa, 0x632d097b, 0x953dc253, 0x0000eb } }, { { 0xc7837785, 0xe70a786, 0x9f689ea2, 0xd8b4a3ab, 0x6f26545d, 0x7648b1fc, 0xa6a837cc, 0xa9aff4a4, 0x187bce81, 0x7c52c51b, 0x7a4f3c30, 0x2893563f, 0x6ba0077d, 0x4bd30d78, 0x32e6640d, 0x1f3be7c7, 0x000180 }, { 0xaf818125, 0xec45f3b9, 0x39debbca, 0xdc0c57c6, 0x83573dbf, 0x5cbe1fb2, 0x5169387a, 0xcc10a7c3, 0x6857ddab, 0xc0ef2b57, 0x513671b6, 0xe706bc18, 0xed3011db, 0x94a6467a, 0xac15a92b, 0xb904372b, 0x000117 }, { 0x40bd2bf3, 0x58cbf30e, 0x2666f508, 0x43210ce4, 0x82d80527, 0x9c7739d7, 0xf9414e5, 0x53fe90b1, 0x5fd7da40, 0xd0fdef55, 0x4ff362f1, 0x58e64f5c, 0x8dcac32f, 0x3461d2fb, 0x4acbb8be, 0x7d766d41, 0x0001c9 } }, { { 0xfaf744ed, 0xfd1abfec, 0xc82954d0, 0x9bb71aa8, 0x852da1c2, 0x557e9578, 0xa1e3263, 0x52ef5707, 0x98b4403f, 0x156f8c8f, 0xaf3480d8, 0x3f0597c8, 0xd801f05f, 0x2457ac24, 0x27b5b04f, 0xd5f183be, 0x00001a }, { 0xa770c445, 0x9323a0de, 0x38ef088a, 0x6555dab3, 0xaf68e635, 0x155c0a2d, 0xff932be0, 0x6f8fc8e0, 0xbb03b48f, 0xb567016b, 0x28db46d0, 0x3d13e02f, 0xc5287857, 0x5839ebf, 0x66f1d769, 0x61d5b279, 0x0001b1 }, { 0x1cbf1811, 0x5099d9fc, 0xeeeec0ed, 0x9a5bb9ec, 0xf41f6b2c, 0xb51aaa5b, 0x2f4104c9, 0x99c8262a, 0xb9fac7a1, 0x6f5ea05e, 0x93a3e20e, 0xa8eb66cf, 0x55db2326, 0x25218d04, 0x5a06fa0f, 0x4f864e6e, 0x000131 } }, { { 0x19e5bb21, 0x73fcbc0f, 0x9a3445ac, 0x1238b5d4, 0x4550d096, 0xe463968d, 0xc34af65, 0x94b344bc, 0x8baaebb5, 0x1650151c, 0x1e4903fd, 0xc8199de5, 0x5a240263, 0x29f8b252, 0x1be676a, 0xc579b586, 0x0000e8 }, { 0xf7a59d20, 0x960e5c26, 0x6d72c59f, 0xbb5be8a1, 0x5973a7e6, 0x86b307, 0x130023f2, 0xd2ef8f1f, 0xeb48ff0b, 0x8b05dd2a, 0x8360e1a4, 0xc1ea636b, 0xd9ea8618, 0x29d0af55, 0x42876ae3, 0x3b1d51ae, 0x000021 }, { 0x64950935, 0x88d9fe45, 0xf5533f5b, 0xd26ad38d, 0xc33e398, 0xce21dab9, 0xb73868d7, 0xf1e0326c, 0xf2d7240, 0x92f5a7ab, 0xf5ebb411, 0x40256572, 0x8abfbf4d, 0x51c000f8, 0x1d09d9b7, 0x3a7d0515, 0x0000cb } }, { { 0xc10aa83, 0xe5d8fe35, 0x9d243b47, 0x529a5377, 0xb280eb35, 0xa6737372, 0x5344665c, 0xae4863f2, 0xbfaecc67, 0xd3c9819, 0x8632c626, 0xb76e3110, 0xb2173e4e, 0x411005bc, 0x2a70d5a7, 0x40611c16, 0x000017 }, { 0x8edfd64, 0x16c4d487, 0x9b017de3, 0x46ee8b8d, 0xfc0295c1, 0x97053f53, 0xb34ac725, 0xf75bf57a, 0x20d1caa5, 0x4fb93628, 0x5eb86bb, 0x628db795, 0x97b39c61, 0x2702f359, 0xc60821c0, 0x60231f00, 0x00017d }, { 0xdc3f90eb, 0xdf4259ed, 0xc4652b3a, 0xf7ff6543, 0x726e496d, 0xe9abb117, 0xe7a8c157, 0x80d02146, 0x9b16a62e, 0x1ef30d2a, 0x132b376d, 0xeefb5bee, 0x9ccdaedb, 0x2dba08fc, 0xac8451d7, 0x299e0602, 0x000184 } }, { { 0x10739fbf, 0x6960712e, 0x4d50a83c, 0x5b1b042d, 0xc451c21, 0x2564e48, 0x23b1925, 0x768408bd, 0x49dfe51c, 0xaf38463e, 0xc909e716, 0x999ef7f7, 0xc4f7a7d, 0xb94b32cd, 0xd9e188d1, 0xfd31e5cc, 0x0001e6 }, { 0x1fb173f6, 0xa1c9ff31, 0xcb704f35, 0xc889cdb0, 0xf86f1a81, 0xdae1def9, 0x5fdd4f0f, 0x4dada872, 0xfb163144, 0x6de54514, 0x253f059d, 0x4ef47ae2, 0xa1006968, 0xcf6c3cc2, 0x82957530, 0x316fc16c, 0x000027 }, { 0x7dc257e8, 0x668414ec, 0x3e05aa51, 0x9011bb17, 0x83278c55, 0x5e92729c, 0x9ea5cae1, 0xfb6dca89, 0x9c0eec01, 0x6523623e, 0x1b958e69, 0xa3895ea0, 0x7f80c5c7, 0x4c773336, 0x38cd0694, 0xef0e815f, 0x000150 } }, { { 0x784a399, 0x3631159, 0xe1847337, 0xd67c5779, 0x1673bebe, 0xecb30704, 0xd33ff138, 0x58f37132, 0x5452eb6a, 0x836a53b3, 0xba88d11c, 0xacea4b22, 0xe31295fc, 0x2f865920, 0xc14d4040, 0x81474ea, 0x0001e1 }, { 0x8bb0a657, 0x2972da14, 0xe3fe2962, 0xf8009f03, 0xe9caf35a, 0xa77717ff, 0x970deb03, 0x2f3592bf, 0x54c19ead, 0x545843f6, 0x23e97ff1, 0xd934c85b, 0xd68f6903, 0x72badd0e, 0xcd7d53a8, 0x79c32128, 0x0001ec }, { 0xeb8cc640, 0xbd242d2, 0x998865a7, 0x54228705, 0xad89682a, 0xe9f77ab, 0x670886ec, 0x2a244d69, 0xad3ae307, 0xeea90937, 0x48c45eb7, 0x1219079d, 0x9c0292ba, 0xff070ed0, 0x161ed8f1, 0x94570c36, 0x00005c } }, { { 0xb40a6955, 0x4987ff4c, 0xefc81777, 0x580490eb, 0xcf735470, 0xa5f80eb4, 0xf04810f6, 0x943be2c2, 0x86a25cae, 0x8de68289, 0xea9aca0a, 0x8c118960, 0xf7d65c67, 0x700cc194, 0x76221f07, 0x7cc4b403, 0x000114 }, { 0xee3ae877, 0x48207dd3, 0x39b85edc, 0x753f7f, 0xf870cf0e, 0x750d8ca2, 0x281923b3, 0x7e234d5, 0x85ef872d, 0x853c585, 0x4f962516, 0x59039120, 0xe186a4b, 0xa46eae25, 0x50ebb734, 0x8e98e390, 0x0001ad }, { 0x3bdfd446, 0x8d5ff9e, 0xe436566, 0xc822e7b0, 0xe10c37d, 0x5e8af31e, 0xb32aace4, 0xdf3181f2, 0x39b0ecca, 0x26684951, 0x98c1e293, 0x7b21177e, 0x6a52737b, 0xaec370fb, 0x61916e56, 0x8501873b, 0x0001f9 } }, { { 0xe5785990, 0xe78cb383, 0xe598d642, 0x4fd02f1a, 0x1d41e586, 0x14c3341e, 0x584d5c35, 0x60e802fa, 0xe4dc7a64, 0xcbc3d255, 0x46c7bef8, 0x1ad0c4c8, 0xce1011cc, 0x374a33d8, 0xadc41a1, 0x93d40ee6, 0x0001fd }, { 0xb41e720e, 0x562d7ad2, 0x242b285c, 0x1dc60451, 0x23e9297b, 0x9f1beff7, 0x4c7cb2f8, 0xec9674b2, 0x5cf0f151, 0x4a037c, 0x9b596704, 0xbb206d0e, 0xa6e87b9e, 0x6c5147fe, 0xcfd88e7d, 0x9e4115e8, 0x000067 }, { 0xbc315d69, 0x4e3a3e12, 0xf10ee169, 0xac7712e3, 0xecdde860, 0x9c54b968, 0x81d4fc82, 0x93342ed, 0xb2cf1be3, 0x7d963c22, 0x45c5a6f6, 0xcaab5785, 0x25e244f4, 0x8de5d9e0, 0x50697164, 0x271f379c, 0x000174 } }, { { 0x6337ba7c, 0xcf5c3abd, 0x5e813094, 0xb2ac9e8, 0x8f2578aa, 0x3b549a2e, 0x2b150f3a, 0xe53b32e4, 0xad5ee56b, 0x54c26054, 0x5f24bdd, 0xbd84718c, 0x9dc76f5f, 0x8c55fa01, 0xa8c12f2b, 0xbaf3aa2d, 0x00013e }, { 0x10f1c392, 0x76e7935f, 0xd871cb5e, 0x7fa7300e, 0xcf1e6537, 0xcc5a82a3, 0xfddf62ea, 0x8870ffe9, 0xd17a18af, 0xa7d23ee5, 0x9453fd2a, 0x1880fea7, 0xa13137b7, 0xf9869c8, 0xb7a8c73a, 0x74283e99, 0x0001dd }, { 0x2fe461c3, 0xecaf654c, 0xe49523b5, 0x162f5724, 0x1011d530, 0x8c0158e9, 0xf84f0e76, 0x466c37e, 0x35a43621, 0xaec25276, 0x2a468792, 0x28c5edd8, 0xccff4193, 0x279d875f, 0x331d8177, 0xd58f06a7, 0x00004a } }, { { 0x38a4087a, 0x897223a7, 0x1781adb6, 0xdf7f9562, 0xb779d575, 0x176ae895, 0xfdef082a, 0xa0e3c56f, 0x677eacf2, 0x182c0fb, 0x6b2c4245, 0xae82bef1, 0x8f37e8ab, 0x5437f867, 0x39f6a162, 0xfa426b2b, 0x000124 }, { 0x95234603, 0xa787917f, 0xc7093ce3, 0xc1994d4a, 0x114e0426, 0x605c1ce2, 0x1a328c8f, 0x1d06c7ea, 0x68475d1c, 0xf4799efc, 0xe3de6125, 0xf67813e2, 0x48b55734, 0x53053239, 0xf6ac923f, 0xa2c2c18e, 0x0000e5 }, { 0x36e42b97, 0xabb05b8a, 0xa0eec145, 0x4bff3490, 0x7ca57b19, 0xd3d9b53a, 0x9b69a039, 0x91139b07, 0x18808d02, 0xc42b7be4, 0x8c20a20f, 0x520f968c, 0x4fcb1e66, 0xebbf4495, 0xe614e19b, 0xdf4b3c66, 0x00017d } }, { { 0xa48e41bd, 0x5cda3ee, 0x405d9c17, 0x9c473618, 0x1facc6e1, 0xac81ac7c, 0x4703311f, 0x88f06a8, 0x58543cd, 0x9d9d293c, 0xbc901efd, 0x8f73a00, 0x7fd3f347, 0x48b48f93, 0xbde33b9f, 0x93cc40df, 0x00010a }, { 0x6b8bef21, 0x991c9268, 0x6cf1731c, 0x5261cd3, 0xeb6ef75b, 0x284876a3, 0x3aea9e3e, 0x790babe, 0x44a7ce94, 0x9589b5be, 0xb6c354cb, 0x15c20b7c, 0x97263048, 0x7a4ed477, 0x426bee4d, 0x6c1f1912, 0x000130 }, { 0x27d98e61, 0x2bb43e05, 0xddee3ce7, 0xb466afcb, 0xbc56687e, 0x129461cd, 0x4b054ee, 0xead10f6a, 0xca486e32, 0x2eefbd81, 0xa1913c3a, 0x64e7ec0e, 0x46df3a6, 0x76d3a3c8, 0x1c3d04d8, 0x60fbb28d, 0x0001bb } }, { { 0x67414b0c, 0x30148969, 0x54c3ce3a, 0xc5067993, 0xba16128b, 0x4f0eb97d, 0x194f70f3, 0xbabd64b0, 0xf7e58ac, 0xec8f4dae, 0x80d1a310, 0x9195a5b1, 0x287d2af9, 0x686a87e8, 0xa6889b78, 0x3a13647e, 0x000021 }, { 0xce4356fe, 0xe92b7620, 0xea23da5b, 0x2200b6b8, 0xf297a3cc, 0x38c4c7f8, 0xa858527, 0xd26789b8, 0x7209f256, 0x80e068ba, 0x1eb3af95, 0x80276532, 0xa9fc6f97, 0xad119c22, 0x1b1ff07d, 0xceaddd3b, 0x000104 }, { 0xcff7f8bc, 0xed932fd4, 0xc103ed31, 0x4335f9eb, 0x4b2533da, 0x7206ac1b, 0xda2b1c98, 0x56b6cf2b, 0x910ad375, 0x3b9f4b52, 0x8a6e2db1, 0x51e2896f, 0x92c54d03, 0x4fb06f41, 0x7b03de30, 0x868544b7, 0x000121 } } }, { { { 0x399cc51b, 0x511a8f72, 0x90909445, 0x36857e85, 0xdd064900, 0x100b93c9, 0xee12c994, 0x48def161, 0xf977e200, 0xa521977e, 0x9baa0d15, 0xd73ac778, 0xf51bf1ca, 0x9a3a91bb, 0x5de897bc, 0x7e32fe17, 0x0001fe }, { 0x4b405408, 0xaba8a329, 0x3394dc96, 0x3666bfb1, 0x1439bb18, 0x991d60d4, 0x8af5d341, 0x7b995bbb, 0x1136e266, 0x7686c3ee, 0xcf662d78, 0xb873dff9, 0xb90dc7bd, 0x68bdda25, 0x41f693a5, 0x34a423f, 0x000176 }, { 0xd9471356, 0xdff43f77, 0xeff8b045, 0xd4fa6761, 0xc5794cbc, 0xe3d59b7a, 0x7294b0a5, 0x17b41586, 0xdfd586a4, 0x3ffe752a, 0x7210d6c2, 0xb3540d87, 0x7eb48b62, 0x88c0d965, 0x85cad80a, 0x9469439c, 0x00004d } }, { { 0x7123fe0e, 0x85002a4b, 0xcabe0e8, 0x83a24867, 0xf258caa2, 0xcfe9e836, 0x2d068bea, 0xdfc47312, 0x415b3c83, 0x4a9f60db, 0xce71a322, 0x8878c54e, 0x6ff0081c, 0x7c049793, 0xf840968a, 0xdf32b030, 0x00003a }, { 0xa51199ef, 0x950e03f8, 0xb53dda9, 0x6fdac703, 0xd2ebc462, 0xba8cfbdb, 0x23b9bf1c, 0xfe1ee421, 0x8152d23c, 0x4a6fe621, 0x7c6b8d15, 0xd773f33a, 0xd6e9e377, 0x1297faf3, 0x5b6220b6, 0x73c45f06, 0x0000b3 }, { 0x362dd445, 0xf7af66ea, 0x33718cf2, 0x22ff7c20, 0x50cee826, 0x2fa432cd, 0xc2087a54, 0x8ee9e7b4, 0x362217dd, 0xc2ee419c, 0xb896fe2f, 0x37a3814e, 0x33371c3b, 0x64fd3511, 0x95f18700, 0xcce13b1d, 0x0000fa } }, { { 0x9350e47d, 0xe5aad21, 0xe2bf7c0a, 0xc5ad56f8, 0xca421b3a, 0x83ab4370, 0x5b565689, 0xf86fc514, 0x6e29a93e, 0x65a0fa3, 0x325ab1fb, 0xd69033ca, 0x6aa7f429, 0x73c3767f, 0xc0876e30, 0xfc01648a, 0x00015e }, { 0x5ce1dfcf, 0x92aba99d, 0x8ad459b5, 0xa71fe0b8, 0x91dbde3f, 0xa2cf340, 0x9c20eb4a, 0x6a8ec57f, 0xe1f05f05, 0x906448dc, 0x1d9ef849, 0xa4f03f45, 0xef6fb11e, 0xbdc03135, 0xdcab6eef, 0xec3295af, 0x0001ae }, { 0x273e1df3, 0xa73198b, 0xd907d963, 0x4a1013d, 0xb34fcfce, 0xc7912e9a, 0xbaa1320e, 0x2e036ab7, 0x42a35e07, 0xe1cab5e5, 0x52c15b33, 0x560ac9a1, 0xe7965aba, 0x95280dfc, 0x9cb4457f, 0xc28b3e2, 0x0001d8 } }, { { 0x55a3359b, 0xbec23269, 0x253df813, 0x28de2970, 0x8baf311a, 0x5d7d1c9e, 0x7508633b, 0x29428715, 0xbdf6bf24, 0xfb1cbb0, 0xa7fab6d1, 0x93595aa9, 0x286109c8, 0x18b0c53b, 0x31f1bb17, 0xe25315bc, 0x0000c8 }, { 0xaabe3d5a, 0x7e4c7173, 0xe838e78a, 0xf8ff8211, 0xb1b40249, 0x2fa34490, 0xec4a7f15, 0xa0952b36, 0xd0f291f0, 0x6b6cff1, 0x6c0c9634, 0x80d846b, 0x2cf18234, 0xf04b94a5, 0x9ff2697c, 0x7cd06ddb, 0x0001f9 }, { 0xc8dd4935, 0x4514c00a, 0x274d450d, 0xcd4925b8, 0x19efe005, 0xccbf896d, 0xe3d431d1, 0x69b22c8a, 0xa8178c22, 0x7f1062a7, 0x8de7e967, 0xe4cd95d7, 0xc5d90683, 0xeabe68a1, 0x8c52bba1, 0x44f36701, 0x000122 } }, { { 0xf7773a57, 0x2e71bdb2, 0xfb8b2fd1, 0xfbf1215e, 0x49aa892e, 0x7ba67e4, 0x5d3cb901, 0x368bb023, 0xcc6ba7b, 0xe6661e72, 0xaba99dd2, 0xccb23a23, 0x26506490, 0xfb11e960, 0xa07030e2, 0x586fc2bf, 0x000131 }, { 0x1a8a04d8, 0x9b645e4f, 0x8ee615a, 0x499444f3, 0x1c00d34b, 0x4a4166fb, 0x6732d6fa, 0xfe19e69e, 0x3f2d2e19, 0xce4f59c4, 0xe0086f77, 0x4bec91f5, 0xc6fe93e6, 0x797d3d06, 0x5ebbd8ac, 0xfe5e77ef, 0x0000f0 }, { 0xa9b454e2, 0x1ec9fb2a, 0x89d1b306, 0xf968656f, 0x1104b183, 0x66462c86, 0xe6fe451d, 0xae6cf6ed, 0x6957aae5, 0xe5e24ffc, 0x5a4d4396, 0xb8fb247b, 0x6aee0a1b, 0xcd91d016, 0xfb9328cf, 0x3d0010d0, 0x0001e5 } }, { { 0xa1168022, 0x1f368f01, 0xdd8009be, 0x427ad5cc, 0x34f9cca5, 0x64ec3541, 0x791975c1, 0x7a275e5, 0xe3af68d, 0x782d4b4d, 0x32537ade, 0x833795d0, 0xba824324, 0x827dc4de, 0xcc3562bc, 0x3a229072, 0x000073 }, { 0xea539a4d, 0x18d5e441, 0xddc73bfe, 0xde7dc583, 0x872e5aaa, 0xf39535c9, 0x832c77d7, 0x7ab86fd3, 0xb342651a, 0x13a1845c, 0xb85f6b50, 0x9dccfa08, 0x91b316b7, 0x33df2e5a, 0x4146372d, 0xa161b49c, 0x00012c }, { 0xa8c44749, 0xeaa4d498, 0x89881995, 0x8eaa267b, 0xe2b73b54, 0x8c5e00d2, 0x9defc711, 0xd7323025, 0x630dc7ca, 0x6e3d3bdc, 0x1a089762, 0x93e027d3, 0xc7a6b6bc, 0x32781d83, 0x77022736, 0xec5da49, 0x000182 } }, { { 0xcf04f041, 0x1d6fd7af, 0x6cc74c01, 0x781cf5e6, 0xc2213017, 0xb9b70b0d, 0x2d323fd6, 0x26870a7e, 0xa6ccc2b0, 0x3cbfaf6e, 0x9f4172b4, 0x52edea7a, 0x3d1ca24d, 0x18cf6fa4, 0x3e108ced, 0x249e6940, 0x0001be }, { 0xe3ea100a, 0xeec218d5, 0x29ab77da, 0x2d84f564, 0x929c30f2, 0x327f6b71, 0xe1011a40, 0x2f1e69c7, 0x4fbf70cd, 0x7fbc92d3, 0xa4c912f7, 0x9670fee1, 0x54f0895, 0xd46b8cc1, 0x39464329, 0xa75280ef, 0x0001e2 }, { 0x5b616e4b, 0xdbef9d06, 0x50f89d1b, 0x1fb9988c, 0x8f8bf2d, 0x848eb988, 0xf74d0d01, 0xb7a18834, 0xe8b0cc6d, 0xa6aa043b, 0xa3506415, 0xf987a96a, 0x9f7b249f, 0x7834e22a, 0xcdac70b3, 0x768441be, 0x000071 } }, { { 0xec7d31c8, 0xeaf2d782, 0xbc4a06cd, 0xdb916d52, 0x8032cd62, 0xd241983d, 0x60951c0c, 0x7e795e99, 0x11cb5507, 0x99dbbead, 0xb58a1cf5, 0x3659cff6, 0xd9f36439, 0x4db59d20, 0x6627f0b0, 0xe29e413f, 0x0000a8 }, { 0x61f7e52e, 0x69750b68, 0x9a06c3bf, 0x5497b24c, 0xadc0cef8, 0xc3cdb8b2, 0xe45ccc23, 0x23bae232, 0x7c8770ab, 0xb7e93db9, 0xbc99133a, 0xf329b76, 0x58b39299, 0xece5a14c, 0x54af69c4, 0xf3f68d5b, 0x000073 }, { 0x44e73143, 0x7bc99b8e, 0x309b00d0, 0xc5e3bf92, 0x83bfbb13, 0x929f29c0, 0x39ed3ca6, 0xf6fcc257, 0xc590cd31, 0xa9729898, 0x836bfe37, 0xb650a8c2, 0x924a2d74, 0x69ac5c57, 0x6e8b24fe, 0xf72afa02, 0x0000c1 } }, { { 0x4e138396, 0x73b9355, 0x15372ae7, 0x4f54ff1b, 0x435eda4a, 0x261f4391, 0xa159e525, 0xf4cc42e8, 0x861292fc, 0x597820, 0x2ab72305, 0xd0c7fb69, 0x2f2490eb, 0x42782e2c, 0x3ec6c93, 0xa9e38f01, 0x00014d }, { 0x5bfc9f91, 0xb2526d1f, 0x864d10a4, 0x8c494a9c, 0x21f96612, 0x3eec73a5, 0x71c42f20, 0xc9dc3a70, 0x342d9127, 0x4eaead82, 0x122ca902, 0x42651393, 0x9db40661, 0x626a0b9e, 0x3d5d938e, 0x710612ba, 0x0001e3 }, { 0x8cd899d6, 0xb89cc1ca, 0x9e62766, 0x2589d54d, 0x46d770f7, 0x738bd6fd, 0x9da9a38f, 0xe8751190, 0x8dc71706, 0x62a808e, 0x15335fca, 0xcd98d6e8, 0xafb69022, 0xd4122800, 0x48cd62d4, 0x588ca679, 0x0000c1 } }, { { 0x1eb9e15b, 0xb2986fff, 0x3f28158f, 0x3da3e493, 0x33e016b4, 0x9eef1f93, 0x437a1b3a, 0xd1b6495f, 0x7bcb89e1, 0xbfeb0b71, 0x81e3a9fe, 0xdd3901f0, 0x63c4e358, 0x49935e90, 0xc25a1b08, 0x91da9422, 0x000131 }, { 0x527b5fcd, 0x1c464ccd, 0xebbb892, 0xb06f7d29, 0xd4ea2367, 0x5ffe18a3, 0x84fce8ad, 0x5b7222a2, 0x5c52cdc0, 0x913ebe04, 0x655c0611, 0x8c43a0f5, 0x8780ccc4, 0xb3be5114, 0xeba6ebaa, 0x567429fa, 0x000092 }, { 0x8dc18242, 0xa6d6438d, 0x5e0d949b, 0x8532cc8e, 0x89a4bbaa, 0xa03eee0, 0x3ec7166, 0x765f0753, 0x4041f7d8, 0x1c8253a9, 0xed3e8c81, 0x9c2e3172, 0xbefec600, 0xb0eafcb9, 0x7abb6ea1, 0x7f05263e, 0x000176 } }, { { 0xc08de6de, 0x92c572a7, 0xa6ea70c3, 0xc556bfce, 0x7c5819d9, 0xa75bd7cb, 0xc12dd1e7, 0x3547fea7, 0x8186e956, 0x2e715d64, 0x9cacf690, 0xc82d485f, 0x4ecfd6c5, 0xf6935ae2, 0x4324d5eb, 0xe9f04ef6, 0x0000b4 }, { 0x4d0d9308, 0x9d8a1e8, 0x7cc0d4a6, 0xb1a8de38, 0x6f639f88, 0xd996d379, 0xc2885922, 0x8feab11e, 0x3477f81a, 0x2416aaf9, 0x3feacf7c, 0xf4b13a2e, 0xbc2849c, 0xd9df2709, 0xf9489a41, 0x80db98aa, 0x000067 }, { 0xe5dffe90, 0xede58a2b, 0xf5587a2, 0x413c613d, 0x1f8bbfec, 0x67a8d872, 0xb80a4adc, 0x89f986d4, 0xa92530c2, 0xe09e9840, 0x4594acac, 0x18cdbe84, 0x33659fe1, 0x2be72e0f, 0x1bac2041, 0x41dcb05f, 0x0000de } }, { { 0xd4d9caa5, 0xc7714875, 0x2f220135, 0x39ad4bb3, 0x58183eca, 0x9f7264aa, 0xa5429c3, 0xf3806ee7, 0x9392450, 0x4d3ea2f0, 0x982c92f7, 0x82177ef5, 0xf99039ac, 0xc4b81729, 0xef459f73, 0xf3146790, 0x00001b }, { 0xa4df2b27, 0xa57d5a2a, 0xf38fe2ae, 0xa1543a73, 0xcc2af977, 0x8d53f1cc, 0x9dca40dc, 0xab792f6, 0x65eeb066, 0x615a9c0f, 0x925d8699, 0xfe65f007, 0x4b55b2f2, 0xd9b282e, 0x633a430e, 0xbd19c4fe, 0x0001b7 }, { 0x1a5ea9a4, 0x918916fa, 0x1501d520, 0xa7d048df, 0xde8a93da, 0xfe21a842, 0xd294a133, 0x28ebf82d, 0x81382a84, 0xec3bda9d, 0x9000211d, 0xf9a09868, 0x1dcbb878, 0x7940b6c6, 0xe0726fb4, 0x13111eff, 0x000189 } }, { { 0x6550708a, 0xbac87aa2, 0xae4436b2, 0x2c71e6a6, 0x50e0cf9a, 0xae967fce, 0x6f9e0586, 0x2fc029f5, 0xe6873232, 0x7840812c, 0xfb081a2d, 0x1f2d2a18, 0x1b7c241c, 0x31708e25, 0xa2a3601, 0xaa7e0642, 0x0000e8 }, { 0xdb900436, 0x57107dfa, 0xdadc6c65, 0x4ba34b02, 0x75a05cc6, 0xbe63e46c, 0xc0f586d7, 0x167450cc, 0x98109015, 0x19d56c1a, 0x99e272f8, 0x7a4bdc04, 0x91521403, 0x56c3772a, 0x5a8f8c42, 0x1f72b863, 0x0001e1 }, { 0x90c39d24, 0xd6875d1, 0x9549c3e8, 0xa3d8266d, 0x7c263b45, 0xb412ca75, 0x13c7b82e, 0x4e2d2c37, 0xd56ba737, 0x53ea853f, 0x6c3231b2, 0x82baa38e, 0x39bf67d3, 0xb4467dfe, 0x8d5ceb49, 0x730031e8, 0x000053 } }, { { 0x54c82b07, 0x3b008c1f, 0xe6d83328, 0x50852887, 0xe164ab11, 0xd87324a6, 0x6de8ced0, 0x301e9529, 0x5141d2c3, 0xbdb1f23e, 0x76b39470, 0x16665d2c, 0xb0f11abd, 0xcc8eea18, 0x2d88c89f, 0xe3e8511d, 0x0000fc }, { 0x68568e92, 0xf97f863e, 0x539a41b8, 0x7ef494b3, 0xe7b2cc66, 0x1652b166, 0x7a3c9045, 0x52d12a94, 0x2332074, 0xb61a2f79, 0x1de824c1, 0xaa9ae11f, 0x31e838d3, 0x8c6b20c1, 0x6e0ef3, 0xe13d14d7, 0x00013f }, { 0xe6f279e, 0x4ab715cf, 0x676ef726, 0x275d7a81, 0x557efeb7, 0x41b3e586, 0xc21f98ad, 0x22b82eba, 0x7f6d6b8c, 0x7244a8e7, 0xa3e90cf, 0x4d9c6490, 0xe802a36, 0x677ad787, 0xced0d3af, 0xfb1b6837, 0x0000ea } }, { { 0x8a574df0, 0x2c01d7b7, 0x3cf499a, 0x8ba04267, 0x5a1a037b, 0xcb2ef96d, 0x5d35fb81, 0xd5131fff, 0xe926ac23, 0x7f672891, 0x9dfbc8e, 0x3536e89, 0xed608b73, 0x741f1bdd, 0x9f3c6f04, 0x89a41de3, 0x00006d }, { 0x1e47834, 0x4b35679c, 0x270ec57c, 0x83e8bbc6, 0x73f9921f, 0x48c559ea, 0xec515752, 0x4a12276, 0x301783da, 0xb0b537df, 0x58e0e19e, 0x7040c121, 0x76ee1cda, 0xcdc16fa3, 0xde700bae, 0xf37ba6b0, 0x000062 }, { 0xc7c33dde, 0xede7e3d2, 0x3329a21e, 0x9356f3d5, 0xf70317f, 0xf29c8f4b, 0xd7223f09, 0x3727bc9, 0x4491161c, 0xf3c16082, 0x8e00e200, 0x638f51a5, 0x7d62f81b, 0x8359ca44, 0xb39eb7e5, 0x564ff9c4, 0x0001e2 } } }, { { { 0xdda044, 0x5df09cbb, 0xb49b286f, 0x51ed15af, 0x56f61312, 0xca72ad77, 0x74e9f749, 0xb7b8f584, 0x45f33ada, 0xc3abaf1f, 0xb3210f11, 0x55b6735c, 0x7ae63a06, 0xfb91fb27, 0x7cb0d5a, 0x721df212, 0x00014a }, { 0xf9c75c4c, 0xe8543860, 0xce0a3913, 0x6a3a25fa, 0x6fa217aa, 0x134a8a43, 0xf02f4d08, 0xb028a99d, 0x8e70dec2, 0xbbc04a5a, 0x7b39beaa, 0xf8c8f869, 0xaae6ae1b, 0x8a77db91, 0x1452a104, 0x350116fe, 0x0001c0 }, { 0xed6c3b19, 0x531aff32, 0x9ed31e51, 0xc8d98245, 0xf7fa329e, 0x20d0e255, 0xde4c029d, 0x88abedd9, 0x77f06bd5, 0x1470f618, 0x8da65887, 0xcb38da9d, 0xf24f9479, 0xb647d59d, 0xf07d1acf, 0x2577ee9, 0x0001e9 } }, { { 0xbc8637c0, 0x251656fe, 0x5d5974ed, 0x2332ffd2, 0x718736df, 0xdad3be62, 0xfb855213, 0xec39093e, 0xabb57738, 0x3535ee49, 0x9c0d76f, 0x23ebe17, 0xb89e67d6, 0x54b55763, 0xb8e9341a, 0xea5675b7, 0x000100 }, { 0x3b4923f3, 0xe0bcfbd7, 0x7117a2f6, 0xc50a03d7, 0xc3c0162e, 0xf35cab0d, 0xa9da22e3, 0x24021523, 0x9af08662, 0xe16fa3bf, 0xf01b3dfd, 0x4e954a1a, 0xb5632252, 0x9a7f537a, 0xb23faaf, 0x93ba63d7, 0x0000d3 }, { 0x63dd4e26, 0xb60246c1, 0x20797efd, 0x511818a1, 0x58289fc6, 0x9c445508, 0xcc8a1347, 0x21b70f31, 0x3b1787b3, 0x8076c653, 0x30d6ccbb, 0xbc173b3a, 0xa14a29ad, 0xb22be14d, 0x5d7dee95, 0x53bf3d92, 0x00010b } }, { { 0x89a16514, 0x573b1fef, 0xbdaa345, 0xdcfcad2c, 0xbc507af2, 0xb5b37188, 0xc09bc904, 0x8048bee8, 0x5eb14a41, 0x8e2db165, 0x28f8704e, 0xa2ae77f6, 0x2e94ff71, 0xe763bc21, 0xd4fcb680, 0xede5c8e0, 0x0000c6 }, { 0xaa9abee9, 0x45eef8a2, 0xf88f07d6, 0x408a9299, 0xa62cacde, 0xf61f49c4, 0x63702ad0, 0x62bea82f, 0xb2fceba6, 0x96254abf, 0xf1ae9641, 0xb02da44d, 0xf853f87a, 0x45a5f9ae, 0x3ba72706, 0x9382c31d, 0x0000d1 }, { 0xcb7be65b, 0x713f1400, 0xf9bf0405, 0xf4ccf242, 0xfa3e65bd, 0xe988f683, 0xedfbcca2, 0xc27da81, 0xd2794385, 0x9a0be51, 0x7a496a53, 0x50dd0455, 0xedaf1bf, 0xc0feb0ee, 0xcd7454d9, 0xefbf94ff, 0x00002f } }, { { 0x3bd46368, 0x3e0babae, 0x806de736, 0xf99b5960, 0xd1d00946, 0xdda8bc9e, 0x4c2dd552, 0x7a8dfa6b, 0xd73bc25b, 0x48181aa6, 0x341d5e36, 0xb3ad732b, 0xf5c175eb, 0x1c1b2d1e, 0x22959339, 0x5d6f9c3d, 0x0000cf }, { 0xb76a1512, 0xcb9d5859, 0xd519c2be, 0x6b66bbf0, 0x20b667fb, 0x8e02ac39, 0x1a50265e, 0x7313688b, 0x9c5ce72d, 0x8a62800a, 0xa5c65867, 0xf81b7943, 0xa669e376, 0x306b739e, 0x24fa6a17, 0xfe40583b, 0x000137 }, { 0xafa55260, 0xfa8a9817, 0xaf2f0c39, 0x5ecb35a9, 0xf8835078, 0x85ab2e88, 0xff7eea3e, 0xdad82337, 0x8b172b2c, 0xb5b2425e, 0x43ed1488, 0x818ba70f, 0xfd6acca, 0x43554b8a, 0x86cede60, 0x4b8cb6ac, 0x00009d } }, { { 0xe99662e5, 0xf6deac45, 0xee7b736e, 0x2ff5bd4e, 0x62eb6f9d, 0xc4759109, 0x2ffd264a, 0x4b5da43b, 0x582b18f6, 0xe62a8f0b, 0x68b8c353, 0x2dd7f830, 0x741eca8f, 0x2521e994, 0x6b06ad4f, 0x103ff238, 0x0001be }, { 0x1083f4b8, 0xb0bfc8f, 0x49d556d, 0x35e6cbf3, 0xe14d91e9, 0x406dd734, 0x531ece32, 0x5b9d138, 0x8b48f22e, 0x6ff3a7de, 0x6b3e4ca3, 0x6cc2c2ec, 0x803d8cb8, 0x90c74c6a, 0xc10e647e, 0xab8ef610, 0x000107 }, { 0x7ed7e62c, 0xd9517ce4, 0x41218aa6, 0x4c0c6422, 0x449c84ce, 0xc951767f, 0x82258546, 0xa06c257a, 0x5581d3b6, 0x1cea6e18, 0x26feb9e0, 0xb6d28a17, 0x700990dd, 0x1412642e, 0xf2effaf7, 0xa381808d, 0x0001b6 } }, { { 0xd55195c4, 0x1affbb13, 0x646ab7ac, 0x90465d54, 0xef04e39f, 0xe1d5d0b3, 0x52c05dfd, 0xabfca6a8, 0x784a1114, 0xf134154f, 0x3ffe758a, 0xa45df3bb, 0x73ab7736, 0xfa2d7bcf, 0x7cd37560, 0x69a2d2c1, 0x00008e }, { 0x1ce95027, 0x2bc9b2b5, 0x298ad643, 0x6d738ef, 0xf6cbc8ba, 0x9aa5c3a1, 0x750cd85, 0xdf74d9b1, 0x269dd964, 0x2f9deb25, 0x912f4559, 0xce0f562d, 0x72a9a5eb, 0x952dbee8, 0x402aee75, 0x2d2df7be, 0x000019 }, { 0x11146cdb, 0x76ab3cd9, 0x64715502, 0x8c45328f, 0x652d8025, 0xfd3c16bc, 0x457d237f, 0xdef9b89d, 0x9d17d960, 0x1ac7a489, 0x7572ef93, 0xc9cc19fd, 0xb02ab52f, 0x71233743, 0x3a5f968e, 0x77022007, 0x00011a } }, { { 0xa269627e, 0x10599fa2, 0x26f94a6a, 0xededeccd, 0x31e326d8, 0x7e2795fb, 0xd996219b, 0x68f8f417, 0x5984157e, 0xa71558db, 0x5d399389, 0xbae37888, 0xc9523894, 0xc7bb8c41, 0x8df7192b, 0x604ed61a, 0x000149 }, { 0xac89d517, 0xcd33df60, 0x1f31f926, 0xac2a3088, 0x12902a1f, 0x12692976, 0xe95cfc92, 0xf0ca8801, 0x553dcc60, 0x5ed121b, 0xcfb232a4, 0xf324662a, 0xbf2b3273, 0x17bd8d6e, 0xd8adcef9, 0xfefd91b8, 0x000068 }, { 0xe8ef792d, 0x999c27b4, 0x50724e6a, 0xd8b4342, 0x39fb04e6, 0x2a81e8e7, 0x4ef9be23, 0x26a263cd, 0x8721ffd4, 0x75b6f955, 0x785b5572, 0x3033698a, 0xa50d82bb, 0xaa14074b, 0x59cde654, 0xc85d3e4a, 0x000087 } }, { { 0x2e3a902b, 0x9f2cd972, 0xe3337e76, 0xaed24648, 0xd3ec9bb8, 0xb4d4c360, 0xcb6711c, 0xaee32c94, 0x73a8d4c5, 0xb676f8c3, 0x91c0a273, 0xfaf3d930, 0x2c3dc802, 0x96d1230, 0x99107fa8, 0x55d60ef1, 0x00008e }, { 0x17c0df6f, 0x1dcb1d79, 0x985089a3, 0xaa730f36, 0x835ee709, 0xf575f540, 0x12841d65, 0x30c6f59b, 0xc682488c, 0xbdc99ed, 0xaba297a8, 0x42b933e2, 0xa4ce368c, 0x2589e054, 0x246b8fe0, 0x6b780e6b, 0x0000de }, { 0x109d6776, 0x59be9e48, 0x76790b4d, 0x9e680558, 0xafe48101, 0x64e93ef5, 0xcd7171a7, 0xdd0ff6a7, 0xc4864bb, 0xf4c9d270, 0xc5dcd23e, 0xa0a9bc0, 0x8b0cdf58, 0xbbf95074, 0x42596f8a, 0xcffe3e10, 0x000044 } }, { { 0x4bace2cc, 0x55a51034, 0xcff9719, 0xe94605de, 0xaca17e0b, 0x62e2c3a6, 0xf538e274, 0xec6d523, 0x9298d13c, 0x9cbf8f60, 0x66e9fe76, 0x6da5e6ef, 0x66f6bb9d, 0x90c1ac5b, 0x3b2ca664, 0xc74eae24, 0x000078 }, { 0x6a3c0cf4, 0x2e1862d0, 0x3d0d32ee, 0xbea4def6, 0x972cffd5, 0x8e7fcfe8, 0x6603e3a7, 0x9bd8b78a, 0x21786055, 0xb838bff3, 0xbebafb4f, 0x36f9b155, 0x75aa712d, 0x38c37514, 0xd9b10107, 0x9d8544e0, 0x0001c6 }, { 0x817a2741, 0x54228ace, 0x14b9955, 0x70c58a6c, 0x8a1b8d21, 0x7a73a207, 0xc68c918d, 0x5c60397e, 0x84bf04a8, 0x5dfdbf43, 0xcdfad17, 0x71d2077f, 0x10f6a366, 0xc926698, 0x1634abad, 0xeebace95, 0x000199 } }, { { 0xbe80ba20, 0x8d621718, 0xde591f13, 0x2335754d, 0x3d92e3f7, 0x8dcb5339, 0x95a108b8, 0x3ebefe95, 0x7f010d65, 0x80e8ae08, 0x82cd15ba, 0xe4f6e3dd, 0xdeddde9d, 0x22b8d72b, 0x9eae6e00, 0x8d86f9c4, 0x000062 }, { 0xa2e7012b, 0x98d93129, 0x5607ee27, 0x9ef2e409, 0xd15930a9, 0x5873901f, 0x5eab01a6, 0xcca23fef, 0x88b8da6f, 0x8936ca98, 0x1a59e2bd, 0x8594a729, 0xb62ae52, 0xecbbad65, 0xfb6ebb97, 0x4179e30a, 0x0001dd }, { 0xb12b1c5d, 0xe79e5974, 0x592310a0, 0x52f0e16d, 0x36b22aa7, 0xefe57245, 0x2688e73c, 0x3ca6dab0, 0x37140353, 0x4476c73, 0x1c05bdcc, 0x57f04016, 0x82c380df, 0x2101f15d, 0x161c1bc6, 0xa00fe197, 0x000178 } }, { { 0xfec880e7, 0x42a921a3, 0x6f93a8c5, 0x8af789ae, 0xe9ce82f7, 0xfb1055d7, 0x1d12493d, 0x89dff046, 0x24982bf0, 0x6eeaf29f, 0x7018b180, 0x6e9b3f9e, 0xef351dcb, 0x44685df2, 0xfd88b303, 0xc1ee335b, 0x000145 }, { 0x26889cbb, 0x66268747, 0xfaa56dc2, 0xc08a9637, 0xd61ca41, 0xa01fd639, 0xad239cf9, 0xc2ee0c4a, 0x2625030f, 0x1b1ece03, 0xfe542943, 0x79b5f5f8, 0xf869fa19, 0x9134af66, 0x8d3d96c8, 0x27cb898f, 0x000128 }, { 0xa11855f2, 0xa70d876b, 0xe6587e38, 0xa36adc3e, 0x9fa1602, 0x3143e54, 0x2b8a319e, 0x2af8af6, 0x26b9d791, 0xb4ec608d, 0xca994ccf, 0x3f59211c, 0xe9fb0d3e, 0xd9f24f63, 0x639a5525, 0x8b37670e, 0x0000ab } }, { { 0xbdb8ed5b, 0xe7271ff0, 0xf6c19ddd, 0x25094bda, 0x21016db8, 0xace2029c, 0x60ca59f2, 0x68f37821, 0x44e7c0e6, 0xf4e0175f, 0x7f8f4056, 0x656dd705, 0x142abdca, 0xd83e2cb2, 0x8a63acd7, 0x639f5ccf, 0x0001a1 }, { 0xd64f75f, 0x266bbc9b, 0xf3f6d476, 0xdf17502a, 0x52b6f8c5, 0x4b9ea7ec, 0x8f9f4b00, 0x98ceccbc, 0x3e42e31b, 0xdf33821d, 0xa4a3252b, 0x14ad205f, 0x10d15f5e, 0x6ae552ec, 0x726cff9c, 0xc9cfca3b, 0x000057 }, { 0x53943e62, 0x5b354974, 0x63288eb7, 0x90bc4841, 0x822aa7df, 0xb7f1df19, 0xbd92a68b, 0x5ebcaf3f, 0x78b53fd4, 0xb9017660, 0x4f54247d, 0xdb05ce54, 0x6bc86caa, 0x73aa8282, 0x3a27560c, 0x522a57c0, 0x0001fe } }, { { 0x6223e970, 0xea7376ba, 0xdd438a98, 0x223ba456, 0x9654ff49, 0xb908289c, 0x1fb22af1, 0x8ad6da57, 0x3a5cb295, 0xf27a063c, 0xc215eff9, 0x70c74aa5, 0x11c3aac9, 0x4fdc9dac, 0x26a0a593, 0x930ec372, 0x0001db }, { 0x97c309f, 0xfad0759b, 0xafa228e8, 0xcd54d5c6, 0x477ba6fb, 0xd0022e69, 0x64a426ce, 0x414fb80e, 0x6257026, 0x7d23dae4, 0x1fb08732, 0x51016233, 0xb77cb8bb, 0x2f01c589, 0x2e9dbc6d, 0xa1cf73a8, 0x000108 }, { 0x21142fbc, 0xda81475, 0xd921a498, 0xdc8a5563, 0xb382227d, 0xc8bc14da, 0xb80db2ee, 0x4446f2b0, 0xd39bb68e, 0xeb4e7ffc, 0x4785e007, 0x55b930ce, 0xd9b19201, 0x28f88039, 0x5dc7d87e, 0x1175d52a, 0x00014b } }, { { 0x82bae949, 0xf71145d4, 0xac38d408, 0x632d5b0e, 0x8cb8fd8c, 0xba6b3c99, 0x9f4c0870, 0xee2aadae, 0x5517f535, 0x4eff5cac, 0x122af885, 0xaa1b9066, 0xf365ee22, 0xb0914241, 0xcaed79cf, 0x183289f0, 0x0001c6 }, { 0x92818c9e, 0xd7bee5, 0x8d947b4a, 0x76c8264, 0xff089038, 0xf84f23a5, 0x4ce21f6c, 0xecc41a0a, 0xe9f9d8d5, 0x29794523, 0x5bbaa2d8, 0x4ce23680, 0x935a9c65, 0xd1e60cb8, 0x28726fea, 0x4ac2d28e, 0x000034 }, { 0x737cf13, 0x26478f55, 0xb109a090, 0x61456c02, 0xd8766783, 0x57c041d0, 0x46058e50, 0x79fb14cb, 0x118db501, 0xadc1c10, 0xa250959e, 0x936ee7, 0x525e4a8, 0x6d368985, 0x64e97469, 0xe688e718, 0x000082 } }, { { 0x5bd19b64, 0xc40c087a, 0x6c32eb06, 0x87261ffa, 0x4a95a977, 0x6ea4e3c9, 0x3c6a2620, 0x84ac77, 0x1bd78a4, 0xc1ef9705, 0x20f8e4c4, 0xd5f1d71, 0xd5bffbcd, 0x5dc118c2, 0x33919264, 0x722894de, 0x0000ca }, { 0x8b7d6949, 0xafd2012, 0xf0d41529, 0x2df0e610, 0xd24614b1, 0x53cc07, 0xad81f0a6, 0x98bf2bb1, 0x7a793cb8, 0xa1da3107, 0xdbe7e771, 0xc7ef678f, 0xe9a6ccea, 0x7a9d7573, 0x54d8cd8, 0xa336e30f, 0x00009e }, { 0xd74aaf2e, 0x847baefb, 0xa7de3b38, 0x3e45ebc9, 0x84a4ee95, 0x8bacb279, 0xd8a13b11, 0x7986a361, 0x72a42674, 0x8f18f444, 0x9d7da966, 0xe12e947, 0xd3c37c9f, 0xd2349504, 0x6db6dfd1, 0xfeaaaf69, 0x00012e } } }, { { { 0xc8fe1eba, 0xf2e597ca, 0x80f1e191, 0x34e06424, 0xa9c698b4, 0xc5a71590, 0x57a8a955, 0x39072712, 0x7548cfb8, 0x262b7e90, 0xe795591d, 0x264c11bf, 0xb49f7529, 0xbe980f39, 0x2fd45bd, 0x8e225265, 0x0000f3 }, { 0x354e5f7a, 0xa4920ec1, 0x9c0dae47, 0xe5229bf4, 0xc8b4ac08, 0x9fe810b4, 0xb882d0da, 0xd3b853b8, 0xe8f420a4, 0xf3cc632e, 0xe607e097, 0x562a3b49, 0x7db9587f, 0x217524ed, 0x81cef18a, 0x26b3b806, 0x000101 }, { 0x4d362942, 0x397aec14, 0xf3db6920, 0xa90b6560, 0x34eef48b, 0xbb0b963e, 0x14f304f9, 0x737f9b63, 0x96f9ca, 0x271b6b62, 0xde671d9d, 0x82347228, 0xb116c8f1, 0x25fc1bf6, 0xd4a6fc7a, 0x9afa8c87, 0x000076 } }, { { 0x4b0d8f38, 0x5d86c835, 0x487e6b34, 0xf41716b5, 0xc2ee6fbd, 0xe486cd23, 0x1a99ce49, 0x4b39e7fd, 0x84e4826f, 0x97a21084, 0x17d1f7b5, 0x7581f8e7, 0x7ba52e8d, 0x7b5b4419, 0xbc583dc, 0xe86d917c, 0x0000a9 }, { 0xb058f047, 0xa5039545, 0x73400a7c, 0x6dc9ba60, 0x9fa54754, 0x34848a87, 0xd08cddfc, 0xa5290447, 0xd14b8ed5, 0x99fbaa80, 0x48f0b7ac, 0xc3614dd2, 0x8b6beab0, 0xd86acae6, 0x6e2ddcb3, 0x9c74e22e, 0x00005d }, { 0x102491e1, 0xfc540b64, 0xa95081cb, 0xb2b4285a, 0xacbc9fb8, 0x392fe0ad, 0x202a6fa5, 0x386ec860, 0x19ec9dde, 0x8fa097e3, 0x4312a558, 0x2f01ea9, 0x4b8ca443, 0x5560d064, 0x6b97d329, 0x5feec34a, 0x000096 } }, { { 0xd50cceee, 0xa7498de5, 0x6a1e11b7, 0xfcbce20e, 0xa1aca70e, 0xe58b04a3, 0xae7d2f49, 0xefde730f, 0x6a26e4ef, 0x28142d97, 0x9e9f861d, 0x19559503, 0xd33b8212, 0x26973ed0, 0x34da9814, 0xb8e3ddbc, 0x00003c }, { 0xd59f408c, 0x538db432, 0xad9755f5, 0x2b2ff7b1, 0xde97cdb5, 0x7cd94928, 0xd3436eb5, 0x7339e9e1, 0x444ccdb9, 0x684a1f7, 0x49c6852f, 0x7754d20e, 0x40dfe79f, 0x2e79baf9, 0x9ec19985, 0xb832c4d8, 0x000134 }, { 0x8da56a41, 0xedcabffe, 0x29f0d8ef, 0xd5c47b7d, 0x74f0e73b, 0xc81fa7a, 0xd6a1001f, 0xa9b4fbca, 0x8eb34331, 0x8642f10a, 0x4dd27c93, 0xc57fcb70, 0x9fc71d57, 0x6b4dedfc, 0x2647f8b9, 0x43ec6fd1, 0x0001bb } }, { { 0x93d184e6, 0x2db81d8f, 0xfca3b577, 0xfbb7f821, 0x6cdda225, 0x494cc38d, 0xaf567565, 0x3056b2c6, 0x8fd99301, 0xa1ebcf9d, 0xaf743826, 0xccadf81e, 0x7d8d5e4e, 0xc82f80e, 0x1cba1d3f, 0x1c2bcbf, 0x00014d }, { 0x36de2c4a, 0xe24c3ee6, 0x5136d7fb, 0xad5e6a5, 0x4128838a, 0xb4f25680, 0x642df0e0, 0x1ad276cb, 0xf26e5e11, 0x6e2f401d, 0x53e533fa, 0x515a7c08, 0xb38d36ef, 0x8fc2ed9e, 0xb17e6f24, 0x79afa96d, 0x0001bf }, { 0xa00d808a, 0x6e868057, 0x6d9ef6d6, 0x76b9f57f, 0x2eef8c0, 0x50d7f13a, 0xbec6c52e, 0xa30a7f8e, 0xfe3100ab, 0xb5a03e1a, 0x3eb66d6d, 0xd4b57fb1, 0x70a05793, 0xbcfabc0e, 0x1a5f0eb6, 0xab2c550f, 0x000074 } }, { { 0xdbcbf306, 0x4a6e6645, 0x63531aa2, 0xb9d6c04d, 0x18001aa7, 0x6c23d690, 0xa3e930b6, 0x9bd56876, 0xf34610a0, 0x64e62201, 0x7d5cb86f, 0x6db03da, 0x6319342b, 0xc16f209, 0x10fe5b69, 0xd16253f1, 0x0001b9 }, { 0x900abab1, 0x9cc1899d, 0xf600fed3, 0x6a559cf2, 0x168cdeae, 0x7cff4b2b, 0xb061e8e4, 0x71f66b2, 0xecd1bb5d, 0x74a36d68, 0xd2304df4, 0x639b97f9, 0x1afad346, 0xb316f19f, 0xc994e43f, 0x2e326927, 0x00012c }, { 0xa046c4bf, 0xf0266fd0, 0x6a148bf4, 0xacc0aaf3, 0x8fc9fb55, 0x1aeac254, 0xce44b41f, 0xa6909060, 0xdd5ec97b, 0x7467cd44, 0x655f5db5, 0x8884323b, 0x52d557ae, 0x100a4d85, 0xde91c7d6, 0x99d3054a, 0x00006f } }, { { 0xa1ddf743, 0xc20aef8, 0x974a1f1e, 0xfc65bd21, 0x643d1de3, 0xd1d01481, 0x217d0a21, 0xf9f2974d, 0xc8a043c3, 0xabee2952, 0xaa031758, 0x8bc7e9cc, 0xb12e787, 0x405353c5, 0xc5bb0fc9, 0x60a7fc55, 0x00003d }, { 0xa48ade98, 0x2eacd1a9, 0x22c98789, 0xd2f31d2e, 0x78ecb6b0, 0x5fe3a963, 0xb2f6263e, 0x75cc8c29, 0xbd2644b1, 0xd1645ba2, 0xf1cb6b80, 0xf0a956ff, 0xc3e00de4, 0x91f6be78, 0x2712c192, 0xe3524656, 0x000153 }, { 0x379ea170, 0x7df64e89, 0x46ed4235, 0x478f74e3, 0x6abc8b44, 0xae9bcd17, 0x72b3ed21, 0xa7abaf00, 0x51ab4ad9, 0xff23c647, 0x4eedb9db, 0x88c8924d, 0x5bb272a2, 0x8e8eef38, 0x32af9cdf, 0x856997e2, 0x000003 } }, { { 0xeb54b374, 0x55caa977, 0xa9fc713f, 0xecc649b3, 0xb97b61e2, 0x52885b51, 0x998c03e3, 0xae491b1a, 0xa3e1c308, 0xd12e107d, 0xbe59ba, 0xa43370e5, 0xab68183f, 0x9b7ede0e, 0x19179a06, 0x1531279d, 0x00018d }, { 0x1a6e8f33, 0x6007c764, 0xaf225442, 0xeb7064b4, 0xc96837f1, 0x339725ec, 0x928ecf7, 0x186fde6f, 0x5889da5a, 0x98aea0ed, 0x7d6416fa, 0xe4aa8816, 0x6c27854e, 0x14bd572d, 0x929cc5a5, 0x33edb6b2, 0x0001bd }, { 0xbc07a7a8, 0x95c07d3a, 0xc4ca159f, 0x3c0b488d, 0xaa25c79b, 0x90488ed3, 0xe00f3eaf, 0x6b584606, 0xe79de786, 0x57521e21, 0x5a3417e9, 0x755cbf5c, 0x63b9d645, 0xc13ce139, 0x39f1ef1d, 0x4b470598, 0x0001dd } }, { { 0x6ae95bc2, 0x6efa090c, 0x870cb6, 0xde7a706c, 0x4348a990, 0xf84f2c24, 0xb627932, 0x5c575e66, 0x3203891e, 0xd8bfacb7, 0x80408bf6, 0xb925225a, 0xf27a69fc, 0xbaf8ce9a, 0x810fb098, 0x32681bd5, 0x0000de }, { 0x649895b0, 0x8bc71b61, 0xe2304a47, 0x485260e9, 0x147ec049, 0xa6225b07, 0x66517d6, 0x8a9fb3c5, 0xff04abfc, 0x70a5c029, 0x5bdaadbc, 0x4039c218, 0x3216464d, 0xb32b5b11, 0x9a039c98, 0xb0637481, 0x0000ee }, { 0x6fd1f284, 0x763c04d2, 0xd6b4f00e, 0xea3fab98, 0x3af7b657, 0x3622b993, 0x28aabb98, 0xbe958e26, 0x28c8f0b2, 0x8aab9676, 0x70ff3fe2, 0x673d2a84, 0x86cac198, 0xa8709393, 0x4745a6f9, 0x470167b0, 0x000129 } }, { { 0xa67468a4, 0x284fa4d8, 0xc1a56185, 0xe6cb1941, 0x78b98da6, 0x8040a657, 0xc61fa12b, 0x21148c22, 0x42b5e294, 0xcf6a4b26, 0xc38ee974, 0x7f0f1b7f, 0x3386374a, 0xe11b252c, 0x2e98e6e2, 0xb7a62581, 0x00012a }, { 0xfc98f575, 0xe8770442, 0x9961bb31, 0x74b45c09, 0x130ac2ab, 0x67f5bb12, 0x31ea3733, 0x49d98a99, 0x251056aa, 0xfdb72afb, 0xfa6347b0, 0x2f5b9646, 0xa6a2e0de, 0xfa19a7cc, 0xbd2912e4, 0x843c21d9, 0x0000b0 }, { 0xe3677eeb, 0xbb93441a, 0x803a0353, 0x6e9226eb, 0x3033c24a, 0xe033b983, 0xaeb245e4, 0x54a745e6, 0x56d5a257, 0x44d672d5, 0x8863b256, 0xc298a81f, 0x9f85c9da, 0x8636c48e, 0x191be20e, 0x53a741cb, 0x000004 } }, { { 0xc425100a, 0xc28f1fb1, 0xb672c3f2, 0x85200742, 0x1be24538, 0x48b3749a, 0x543fbdb4, 0x3cb07dd4, 0xed1648df, 0xc0f0621c, 0x2bfaa609, 0xa4ae375f, 0xb0078edc, 0x2a27a56f, 0x70d05bd4, 0x2835c5ba, 0x000076 }, { 0xc7928c22, 0xc0a0fa58, 0x39a4ace, 0x982c20ac, 0x4ca4ca6d, 0x954e5653, 0xa6610b6, 0x87a24fb3, 0xdda7db60, 0x6672db2e, 0x80c1d4d1, 0xd883e665, 0x44f473d9, 0x1abf89a, 0x88372e51, 0x7539eb80, 0x00012e }, { 0xea60ad5a, 0xb4a6d125, 0x367b8374, 0x42d3013, 0xc58458a, 0x7f26bc34, 0xd30bb34f, 0xb819eb11, 0x47478abe, 0x93989327, 0xa6a7bfa, 0xb0bcdfa, 0xb8d6577a, 0xc2f7d89d, 0x447c5884, 0xcefbccdc, 0x000145 } }, { { 0x22352d0a, 0x295c7ed1, 0xbb72f971, 0x756de885, 0xe6679df9, 0xf9aa7601, 0x7fea60fe, 0x20a39087, 0x359750d6, 0x4524d295, 0xebb3d86d, 0x5230666e, 0x22fb4414, 0xe4aa9706, 0x58752273, 0x44f1637f, 0x00014e }, { 0x234b141f, 0xe0e78795, 0x5330d796, 0xcec1169f, 0xa7aa6c69, 0x6ba7652c, 0x34a8d16c, 0x267dbb26, 0xcc9c13e0, 0x4cc0605e, 0x14675104, 0x293229e3, 0x298721d8, 0xd7b49e90, 0x9278e539, 0xa4baca87, 0x000092 }, { 0xa024b8f5, 0xfbd3ffee, 0xc0b8437b, 0xabd07c10, 0xdf07a760, 0x661a80cf, 0x80b792a6, 0xce577c6, 0x69e8b504, 0x3e2f383d, 0xbea44fa5, 0x54fbd3ea, 0x3141e63, 0xe29fbbd8, 0x3b1fedf4, 0xbaef248d, 0x000102 } }, { { 0x58e4f97f, 0x8474a2ea, 0x8a16026c, 0xc8393c11, 0xd85e4ea8, 0x46ee8f36, 0x390eabbd, 0x1a309878, 0x55522da0, 0xf75bfc16, 0xb4f3df8b, 0xff1f1b49, 0x5915a86c, 0x8ab941db, 0xeeef274f, 0x2b2e5e48, 0x000114 }, { 0x81c1e2ed, 0x4d4b31fa, 0x22ef9796, 0x731d9e1e, 0x5b4aaf59, 0x5cc874c8, 0x3c30172f, 0x36726ac2, 0xdfd902ae, 0x90c79acc, 0x5b5b1f5c, 0x3a789fc3, 0x960fceb5, 0xc87bcf39, 0xfe81f032, 0x25ccf758, 0x000123 }, { 0xc0f55d45, 0xcfaefe9b, 0xc150b010, 0x62911c24, 0x2f09546, 0xaefa21fa, 0xdad11ecc, 0x6076848e, 0x151cd92f, 0xbd631f8e, 0x7a0c9a9f, 0xab047842, 0x55d6a23d, 0x56e4d309, 0x7a698922, 0xc286cef5, 0x000013 } }, { { 0xd46f0b40, 0x13adeef6, 0x7e36fb77, 0x61177a69, 0x19d452d7, 0x8b91518c, 0xbd72f811, 0x7fd760da, 0xd743c2d7, 0xb97dae4a, 0xfcd809f7, 0xacabd881, 0xa27db596, 0x6bbd3bd3, 0x40b5b308, 0x61e4b712, 0x0000aa }, { 0x24dc1091, 0xaf94cc33, 0xb4f29d46, 0x1a28fac5, 0x6dc4d306, 0x34b73498, 0x252ff00f, 0xaa25b780, 0x64fa1975, 0xf2eaa205, 0xc50d32ba, 0x5fa00f9d, 0x1946f09b, 0xac395b2d, 0x1d42f67e, 0x5987e3ec, 0x000045 }, { 0x14bf618, 0xf862b954, 0xf58e3716, 0x94fb698d, 0xd803ed83, 0x566570b4, 0xcdfe2a0e, 0xdde655ca, 0x82d64e0b, 0xb0f290b9, 0x42d789a1, 0x178aa984, 0xcec03eca, 0x8261a08a, 0x5b8b7fc1, 0x93ac7f24, 0x0000bd } }, { { 0x5392a95f, 0xbf51ff1e, 0x71af27d2, 0x6c7e3316, 0xcdd77bcd, 0xe7dfd24f, 0x99a2f121, 0x24935e48, 0x2acaa78f, 0xd854ce9e, 0xf46621e5, 0x58e3ddf0, 0x94379202, 0x7687f75a, 0x5d135e1c, 0x619e4223, 0x0001e1 }, { 0xd6966afc, 0xe175e2b3, 0xdaacf065, 0x1e4fae1e, 0x77f3fd90, 0x9aa75463, 0xbf7fdf3c, 0x75d523e6, 0x85fabcb4, 0x5ff3d038, 0xbc677519, 0xcf4eb8b2, 0x65f1b059, 0x4ba2d263, 0x42979c6b, 0x2949f11f, 0x00009d }, { 0x25e36bf8, 0x6c96c60d, 0xfe20aef9, 0xbae498ca, 0x920fa616, 0xd60d7828, 0x602cd363, 0x240ac70b, 0x9e4d05b8, 0xe7e23fb1, 0xaf693153, 0xdfb14bc, 0x3fe65714, 0xedc6df88, 0xab03c76b, 0xb6fbfcbb, 0x000164 } }, { { 0xf372ca3b, 0xc35def9a, 0xa3a91af9, 0x99996f4b, 0x735f8220, 0xbcb552ea, 0xd38abcf0, 0x1ca7334a, 0x1bc72391, 0x88254a88, 0x7cdf120f, 0x7d4715de, 0xf692a67a, 0xf5940f3f, 0x6955e977, 0x73b28db1, 0x0000d5 }, { 0x1013ef04, 0xa26edfe3, 0x207204b, 0xc13b6419, 0xdfefa613, 0xf367d879, 0x1f08b65f, 0xf5db9df4, 0xf069ae72, 0x67a62755, 0xb6b5f020, 0x3715bed2, 0x8bb2b1f3, 0x352e9650, 0xd6faabda, 0xe8f4af33, 0x0001d7 }, { 0x7923b0f7, 0xea467905, 0x67845695, 0x33a4f9dc, 0xde4254ea, 0xa3a5c114, 0xea703202, 0x5bc4e372, 0xaf192cb6, 0x3769a1a4, 0xb7901ce7, 0x8ace13d4, 0xef9b44d7, 0xb3eeb9fa, 0x14fb247a, 0xebafca67, 0x00002d } } }, { { { 0xdaded329, 0x4bc32ba, 0x4ffabc6d, 0x9eed4bbe, 0xd8ad69e3, 0x68943c28, 0x5b8122a, 0x15a85cde, 0xcfb2b458, 0x84b3bea0, 0x1e4c00e9, 0x1b9500d5, 0x531387d1, 0x174e31ca, 0x20d60f44, 0xd2908961, 0x00002f }, { 0x27488ae7, 0x1779e39e, 0x76ecb419, 0x17dd2dd6, 0x61a3c021, 0xc0c72f81, 0x48ce8467, 0xa9de82b2, 0xd34cdfc2, 0x6400c194, 0xb3eff416, 0xc9de1012, 0xdb9c7f62, 0x10c8edf1, 0x835f2e87, 0x89a58512, 0x000184 }, { 0xc7fd983b, 0x314cb4c7, 0x8661dfc2, 0x6d7041c, 0xc8ff6656, 0x8e877830, 0x83714b40, 0xec05464a, 0x7f1bfaa, 0xc362ea72, 0xc71f6523, 0xaff45d7f, 0xc7f0cef5, 0xb42d1138, 0xda90b0dd, 0x59e56e3f, 0x000019 } }, { { 0xa1473b2f, 0x6889efdc, 0x8bed5abd, 0x5174d34d, 0xf1dcab6f, 0xda606101, 0x40079cd, 0xdfe5c227, 0x9e3698d6, 0x8a68632, 0xc4e1394f, 0x42e1efb6, 0x3e49d620, 0x4640ba2a, 0xf5d9d1c9, 0x2f4cb94a, 0x00014d }, { 0x16c63bdf, 0x999b9348, 0x1e24719, 0xa449cc1d, 0x2e753827, 0x56dd8050, 0xedfc3561, 0x2d4213a5, 0x785fc10d, 0x5c97013b, 0xe60dd50a, 0x92350f1a, 0x9b6c36ca, 0x363b2283, 0x79ae1b28, 0x9b64e0d2, 0x000186 }, { 0xe5418537, 0x96264ee9, 0x887a8e83, 0x71a70c0, 0x948e4caa, 0xb3cc8e6, 0xdeccf9f9, 0x603cfe16, 0xa026a9df, 0x3338710c, 0x9f857bbe, 0x4bd91986, 0xc349cc64, 0xabf59230, 0xfa405a25, 0xe600c5bf, 0x00005d } }, { { 0xcd9dcdec, 0xea400868, 0x34b5c05b, 0x38ebea41, 0xb1fe945, 0x27f77f29, 0x4f174214, 0xaf7510ca, 0xa93c988, 0x83cd0e58, 0x822d8fd6, 0x31988d0e, 0x10fb358e, 0xb4621497, 0x6a2d6c8e, 0xf443ed85, 0x000136 }, { 0x351f9fb8, 0xc5004b33, 0x65af26e7, 0x4180735a, 0x2b83fe89, 0x7d6ead0, 0x53ea33c7, 0x660d24cb, 0xcc4890b2, 0x120a40c3, 0xd42f5aaf, 0x1b1ee5c8, 0x65c24e12, 0x6f940bf3, 0xd2b561dd, 0xe1d1332c, 0x0001b4 }, { 0x638f3555, 0x45f261bd, 0x2279a474, 0xbb1deee, 0x5cf898b1, 0x8b024e9d, 0xed138828, 0x434d4b6e, 0xcee66434, 0x955c2c73, 0xd78d5725, 0x23e56e79, 0xd083414, 0xe9335a32, 0xfd830fd8, 0x120ca8dc, 0x00007b } }, { { 0x3e8208aa, 0x50c649e, 0x7ec0b716, 0x5449b1f7, 0x56bfef29, 0xcb62bf58, 0x7a432f6e, 0x86a2d37a, 0x9797053a, 0xcfa3721a, 0x5a544189, 0x66d78724, 0xbef0e626, 0x438af838, 0x9e230662, 0xd828a3f9, 0x00005f }, { 0xfa919fad, 0x41402cb, 0xe9be6198, 0xd28e73ae, 0xeedefa1e, 0x6132dd88, 0xe7e510a6, 0x6e48b4fe, 0xde521772, 0x67bffa16, 0x8c8ac5fd, 0x96e88a7d, 0x81a170df, 0xb3c9af90, 0xff6920ef, 0xcf25c31c, 0x00011f }, { 0x9c76b819, 0x2b644312, 0x759d60bf, 0xd8d0f102, 0xacd5fecd, 0xb25d5e72, 0x98a109d, 0x1e0c44cb, 0xd6183ee4, 0xc5173390, 0xd947a24d, 0x6eaeb2d9, 0x3ae06260, 0xbac7756, 0x9e07fc39, 0xc21d2dd3, 0x0000a1 } }, { { 0xcc4347f9, 0xc880a976, 0x6274c46, 0xc9d976b3, 0xba77c4b5, 0xbe78949, 0xd343ca83, 0x81acffa3, 0x134bc709, 0x9233fe5a, 0xa92c9161, 0x7150d15a, 0x96a13726, 0x3912b08f, 0x7a4dd2d4, 0x3af3466d, 0x0001c7 }, { 0x82ee690e, 0x47dcbf96, 0xf0992047, 0xfc39416f, 0xa3371649, 0x8b558039, 0x5980ec41, 0x9b0e1ae2, 0xc757a62a, 0x4c5e5328, 0x522d0955, 0x8f97c6a5, 0x7d0fab4c, 0x8a3bdcb4, 0x82a7a58c, 0x95c69c5e, 0x000027 }, { 0xd653d6a7, 0x60acee41, 0xca9dc996, 0xc5367e1d, 0x6707a624, 0xcd66e2c1, 0x2bba3cf7, 0x89203fe4, 0x24bbfc82, 0x7810ae67, 0x1d0da994, 0x967865b0, 0x4ad91a05, 0x648ac8ba, 0xb3d7b2bc, 0x3b5b903, 0x0000c1 } }, { { 0x85a1973f, 0x34db6da8, 0x856cd824, 0xafbc8536, 0x134dae97, 0xca412729, 0xf04c2ca1, 0x5578e497, 0x71e782ba, 0xa8cfb502, 0x4f87f36c, 0x9f84a44, 0xa197f014, 0x19fa27f6, 0x62c8e15f, 0x95b90199, 0x000085 }, { 0x30215271, 0x78a0a2a2, 0xc37590ec, 0x82d371c2, 0x3b66ee3f, 0x524371d6, 0x9c9a8baf, 0xe4424c89, 0x43564352, 0x3fea2fcc, 0x91a053dc, 0x38bd6b46, 0x9b42134b, 0x9bafba2d, 0x773e18dc, 0x1fd24dca, 0x00000e }, { 0xa3a3c04e, 0x8187d9df, 0x65f6ce63, 0xcf7075b9, 0xcf62d3c3, 0x424c7e90, 0x1a575ae8, 0x14ff936f, 0x5430ac41, 0x30ed00bf, 0x299571bd, 0xd7465643, 0x6314e2ef, 0xcf9b82b8, 0x96021037, 0xfbdf96, 0x00013a } }, { { 0x294829b5, 0xbbbb0ed1, 0x1128d836, 0xd6dd43d1, 0x503448bb, 0x8c45b32c, 0xbecb0169, 0x6b10ffa7, 0xca85c588, 0xc0b696e, 0x81d0461c, 0x1a886f7d, 0x2cef0aaf, 0x5604c2ec, 0xa5f51fb, 0x5a6995de, 0x0000f9 }, { 0xb72908fd, 0x68c54834, 0x8ff8da4d, 0x80323a6f, 0xd68d4ff, 0xb778b36b, 0xe54d1ade, 0x637f31ce, 0xd41c07e9, 0x8f804b18, 0x26c53d10, 0x8ef95925, 0xf8e66f8b, 0x499ac485, 0xdf06e280, 0xe443e0b6, 0x0000c5 }, { 0x629ee6e6, 0xb9637906, 0xd0840eda, 0x355bd7bb, 0xfd168e96, 0x3f5f31ae, 0x8de078cb, 0x80ab3304, 0xa762e9bd, 0x9d449b2e, 0xd7d4f24, 0xabe19f4b, 0xbf204f48, 0x1e199056, 0xd5474924, 0x37b30d, 0x000117 } }, { { 0x46e07d0c, 0x4766a296, 0xd4ab60d3, 0xd528bc01, 0xef046331, 0xdd18cff8, 0xab121441, 0x2a5a0f, 0x2212aba5, 0xb8cfd0b6, 0x73aed15, 0x9fd5370c, 0x85a08541, 0x889974c2, 0x7b894d84, 0xb981bb70, 0x000025 }, { 0xe5e8df7e, 0x11b04218, 0x5f6df6b9, 0x4b96512, 0xd9afc830, 0x8a59c6e5, 0x3332d07a, 0x33a0025d, 0x208e0d67, 0xd88564d, 0xab40bfe0, 0xe7d8ac8c, 0x2305c364, 0x9f2ad24f, 0x90752523, 0x7e1857d1, 0x0000b0 }, { 0xc95cf704, 0x32ec854f, 0xe0fd1ff4, 0x227b5e3e, 0x25ded176, 0xb6be6790, 0x82af12d7, 0xf9008f6b, 0x28fa1993, 0xbfbe520c, 0x3b124664, 0xec487888, 0xe722eb88, 0x8e22f11f, 0xc47f8741, 0x665e002, 0x0001d2 } }, { { 0x638c5a15, 0xcd53d126, 0x9f1e73bd, 0xdcb705ac, 0x4caf658, 0x2b3babf, 0x8e932423, 0x98254765, 0x2248bdc1, 0xd8a2664e, 0x7ff11377, 0xed2b1cf1, 0xb759420e, 0x68dc3f1f, 0xfb3d5d8, 0xe9f00188, 0x0001a3 }, { 0x98e8592a, 0x794717b2, 0xa001aa79, 0x7e61662d, 0xbd1e0b9, 0xd3d230b5, 0xe7ce0aa1, 0x7e276109, 0xe702c56e, 0xff521238, 0x188d4380, 0xec023018, 0xcbeb6f48, 0xb8087069, 0xd4420cd, 0x8f0ed6f3, 0x0001ed }, { 0xcf41c210, 0x57f0d34a, 0x379b83ab, 0xcde7ec3f, 0x4d761bbc, 0xfe7888e, 0x49e7c912, 0x4eb1d7f5, 0x1b832d48, 0x1ec2c04e, 0xb0284fbc, 0x79c5267f, 0xfa3b8aa2, 0xc56e8e0d, 0x75ebab1, 0xdf071635, 0x0000fb } }, { { 0x9c7fe33e, 0x472a83d8, 0xed24ecd1, 0xad5c62d, 0xefc06df3, 0xb031a115, 0xa4142ec2, 0x8c7cf3a2, 0x262ff6d0, 0xeca3e2a6, 0x1cd76562, 0x912c719a, 0xfc8d9370, 0x4415016f, 0xfaa515a, 0x7dad3430, 0x000076 }, { 0x5cc19ef3, 0x687d6547, 0x99b63ea, 0x9f887f4c, 0x2ca8bde9, 0x7fc4d169, 0x52f10ef, 0xd011d6a9, 0x28d8884d, 0x34e7adbd, 0x33cd4c78, 0x2714fde6, 0x21c41535, 0xe3680028, 0xd6ecec67, 0x80e7d47d, 0x000100 }, { 0x39fad8be, 0xb0fa3129, 0x32e34b9e, 0x11cf7ef9, 0xd2b8a54e, 0x27f45f23, 0x1db0fb42, 0x673256f1, 0xb7aab92a, 0xf21d9373, 0xd95c65c3, 0x34d75a63, 0x33307d61, 0x64ee9a05, 0x4574966, 0xa47f336, 0x000011 } }, { { 0xd657a8a, 0xa8b0e3f7, 0x43579707, 0xc24677bd, 0x2e5d4304, 0x4351a866, 0x4416e69d, 0x96cff670, 0x6ad0a3ff, 0x3044e32, 0x9b8b079a, 0x65ca37f, 0x6627822e, 0x50dd4d64, 0x7c1f4dea, 0xd9756fa0, 0x0000e2 }, { 0x57b20fbb, 0x18808d60, 0x91a4529e, 0x35b5417a, 0x553b3ab5, 0x29afd2aa, 0xa1ea96ee, 0x67c84b17, 0x148ec765, 0x6934b28a, 0x4fdbf4e8, 0x1e1cfd01, 0x2d30269a, 0xaea9f730, 0xae81ce08, 0x8035414b, 0x000189 }, { 0x6aca3ae4, 0x1fd79248, 0x190035d6, 0xbf2d33db, 0xd4dc8ffd, 0xb57761e2, 0x4baf8577, 0x79bf3031, 0x602a419b, 0xe194e15b, 0x316099f2, 0x26acdd3e, 0xd2038a7a, 0xef6f97dd, 0x912c669c, 0xca4f5e5d, 0x000013 } }, { { 0x8389d947, 0xaa517d2, 0x57cd3025, 0xd8a3dcab, 0x379cf22, 0xb14e8d4e, 0x344210c4, 0x335bae95, 0x6d58b59c, 0xd39eab8d, 0x1df11f82, 0x54aee5f0, 0x3d382453, 0x284f6a5, 0x8159952f, 0x4dab08e3, 0x000105 }, { 0xf5ab71d3, 0x2e0ddfa, 0x54b6875d, 0xca6b4091, 0x83287502, 0x34898be, 0xf9985b6, 0x409fdd9e, 0x3110ed54, 0xce828539, 0xba06a5ef, 0xa35a2a37, 0xd16f69a8, 0x4ce6c0f1, 0xda05f835, 0x4d683cf6, 0x0000cc }, { 0x8b3ce285, 0xd122c341, 0x633d1237, 0x1dd64f91, 0xe7b8a5d1, 0x61583bd9, 0x632ddb4, 0xfad5160d, 0x27acc2f6, 0x238af17c, 0x6b4666e2, 0x88558c28, 0xa66cde9b, 0x78d4e7e1, 0x39a764ee, 0x87b9f2a5, 0x000182 } }, { { 0xccbb3d44, 0x22780d0, 0x37218a31, 0x2bf28a7b, 0x9ea9674, 0x51102931, 0xca215e03, 0x8fbc0656, 0x4b7dd0e2, 0xd0d87f7, 0x16376571, 0x18a74c69, 0x2f882129, 0xe191c1ab, 0xbd877ec1, 0x30a14759, 0x00015f }, { 0xce246b5b, 0xe41c2bcb, 0x8734b1ac, 0x3b1090ba, 0xdfc70e43, 0xd16d6812, 0xdab04440, 0xaf2caacc, 0x2a9deea2, 0x15c05e47, 0x4bd12c08, 0x511b87ca, 0x689703ec, 0xfb9a7dec, 0xc7c046b9, 0x5c81b3ea, 0x000023 }, { 0xd1bfb5e5, 0x4b0861da, 0x4a8088f6, 0xb67c940f, 0x3eac3c10, 0x755eb0c5, 0x8ad2ca44, 0x868a5369, 0x82b9558b, 0xedd1bf8b, 0xa8b27e28, 0x11114a95, 0xdcaf85ad, 0x8478fa4e, 0x47ce0db4, 0x472cff5b, 0x000027 } }, { { 0x2c546400, 0x6388f42c, 0xa8a3685, 0x46fb6e2f, 0xf19f9e46, 0x6d052f45, 0x1147fad4, 0xc68b5fc5, 0x6da7c66e, 0x428a5cca, 0x8411f599, 0x7fad58fd, 0x60a872cf, 0x6e06e9ca, 0xe7d4cc79, 0x849fa272, 0x000060 }, { 0x250313ff, 0x9fe38e42, 0xb38fa700, 0x575a148c, 0x225f8988, 0x328f1bdc, 0x843d827c, 0x56fafb42, 0x16d6aab4, 0xb5182464, 0x8b601be1, 0x8d1c2461, 0x2b1ae29a, 0x33631a83, 0x2eaf3fa9, 0x434dc3b3, 0x0000a7 }, { 0x4c5fed56, 0xcfa25430, 0xce7926a9, 0x824825aa, 0xc514fb1b, 0xc0b90e86, 0x395397bd, 0x54297bb2, 0xf51a19ca, 0x3d60309e, 0x898b54f9, 0x497aac2, 0x8a1d610a, 0xcc3c6f68, 0x9261556f, 0x40bc9a75, 0x0001cb } }, { { 0x9cf1c6c3, 0x72fdfc39, 0xb72c9c56, 0xb47bca0e, 0x5d56a809, 0xd5dd9bca, 0x878fc295, 0x62426152, 0x78bada0c, 0xaf06e790, 0xb0d9d3b9, 0x69b746c8, 0x7e00ec82, 0xd03a7e12, 0x511cc179, 0x3ba3b6e7, 0x00018c }, { 0x8b34a731, 0x8a362307, 0xf5bb6929, 0xaa3f84fb, 0x27c11546, 0x408e85fb, 0x60366438, 0x92b1f5aa, 0x34dc90e1, 0x8de7d012, 0xfa848a5a, 0xa954c5d6, 0xd6d8e5d8, 0xdcd28473, 0x6e5d67e4, 0x2e38d3ca, 0x000143 }, { 0x1458bccb, 0x9d30b357, 0x960f4f64, 0x91306f21, 0xfbc04987, 0x15fa9f6e, 0xe641a975, 0xe064769, 0xd13fce5a, 0x264e9f77, 0x3b6f71e8, 0xf9eb7d6a, 0x609a24ba, 0x6033dd88, 0x413a1b47, 0x5a68fe34, 0x000149 } } }, { { { 0xff1cf5bc, 0x5792b379, 0xdac1fb7, 0xf7194e01, 0x1a7d3d70, 0x9e585f7d, 0x66e31042, 0x6c424fb7, 0x5b94a708, 0xdf6df655, 0xb5ae72e9, 0xa0444f11, 0xfa3559d0, 0x5c3ccd9, 0xa497cfb, 0x272bc506, 0x000067 }, { 0xbfc24989, 0xd1446e1f, 0xf2d915ab, 0x7968286d, 0x18341f14, 0x1cc97e8c, 0xa86c1c52, 0xa064c770, 0x897b920d, 0x3b50d403, 0x67f9fa93, 0x60f73af7, 0xcc258a8a, 0x4cbfd0f7, 0x9d804726, 0xcb8f7b7c, 0x000068 }, { 0x3e2a3109, 0x13f72d7, 0xdfb6b05a, 0xed8cee2e, 0xadd8e500, 0xd5e3654, 0x11d9bfa3, 0xbb25d893, 0x35c3e6eb, 0xbfcf2203, 0xde54986f, 0x69514316, 0xc77eb8fc, 0x4aaf6c92, 0x4c57b9cb, 0x69e4010b, 0x0000f8 } }, { { 0xf68e105d, 0xa4dbe154, 0xb8b95f75, 0x80de4fcc, 0x78ff01d6, 0x7998defd, 0x539a3ca3, 0xf3a7cb05, 0x9acde7f9, 0xd205017e, 0x7368d5, 0x5026de42, 0xd2b9b0f7, 0xe1fd2aed, 0x3f90d55f, 0x91f426b8, 0x0000f9 }, { 0xd2d1253e, 0xbe6f86fa, 0xc4ffa240, 0x7d7c77da, 0xa64f67fe, 0x79cd827a, 0xb28d450, 0xe8c36727, 0x73c52db8, 0x757e3948, 0xb1616af0, 0x62c737ab, 0x90df8df4, 0x13ff6de4, 0x366e6edc, 0x46714e41, 0x000130 }, { 0x687257ec, 0xdd0c0e5c, 0xd48888d6, 0x6961a754, 0x6500508d, 0xedc8283d, 0x97608493, 0x673e169, 0x93e53eb5, 0x319da879, 0x465b632e, 0xd0042bef, 0x685c4ce, 0xfd81b551, 0x380b2d87, 0x5f86cff, 0x0000a4 } }, { { 0x147481c9, 0xb4a9a49a, 0xf9b657ca, 0x446f45b8, 0xc71659fd, 0xbb025c55, 0x9f783a65, 0x8e71fd27, 0x3b8a4cb7, 0x28a8421c, 0x829c22fd, 0x65a1f0eb, 0x5a90e073, 0x5b0e4296, 0x172192cf, 0x30826861, 0x000181 }, { 0xe479389a, 0xc8885df3, 0x615ddbb9, 0x8843c445, 0xc3f2066f, 0xbd526b67, 0xe0dd9d93, 0x43fd8b25, 0xc11b2472, 0x8996a416, 0xaeea1813, 0x5d263c0e, 0xa82bbc2e, 0xcc5f064, 0x897e12f9, 0x4cd4e29f, 0x000152 }, { 0xa15acd59, 0x514b3deb, 0x38c06a0b, 0x748ccea7, 0xef0de347, 0xe3ef0a5d, 0x2db5470e, 0xbd312343, 0x91b13a7a, 0x36fc3344, 0xebcbc918, 0x4799e0b4, 0xbb4bdb53, 0x30883a28, 0xe14da109, 0xc11cd7e4, 0x0000e6 } }, { { 0xe4ae92d8, 0xafd52934, 0x1bdc7f7, 0x4840c13c, 0xbec576b9, 0xcc9f7d47, 0x47259e2a, 0x2cfd81f2, 0xc075761d, 0xfab4abe, 0x6d54cf4f, 0xb34f9d81, 0x511427cc, 0x23044a11, 0xb7fbfdd7, 0xb742f084, 0x0001dc }, { 0x7f67fb32, 0xed009f0, 0x793ed467, 0xa1663414, 0xe21c9893, 0x47f7e46b, 0xd3021043, 0xe2480d1c, 0xcaec415d, 0xa967a084, 0x4651f9a6, 0x2f28cfaf, 0x8bcae7d4, 0xe6b981d4, 0xbc1f1611, 0xe1c63c9f, 0x000118 }, { 0x581f5fd1, 0xf3f2ac00, 0x960a6cb9, 0x94a8fd62, 0x1140a5f5, 0xf209b57e, 0xe717f52f, 0x54007524, 0x59fa88da, 0x8a281101, 0x95b52aa8, 0x71f38fbf, 0x3748a32c, 0x6cf328eb, 0xc4b3c969, 0xe77f18f0, 0x000066 } }, { { 0x2cd0078c, 0xdb198f37, 0xf5488da2, 0x46f14c6a, 0x540ba50e, 0xdc601301, 0x1f1695ee, 0xf30791f9, 0xec2b93d1, 0x61606364, 0x88086a12, 0x52dba38d, 0x38cbb72c, 0x7b4f0bf0, 0xb69351ee, 0xc53a9a, 0x000175 }, { 0x4e6dcc6, 0x50aa79ea, 0xfcccb365, 0x7d602772, 0xe985152f, 0xbc1780b4, 0x6d7684c7, 0x6dd95712, 0xb77117fc, 0x4783c716, 0x51a5d0c9, 0x84912094, 0xe76adf9, 0x968a3eef, 0xf54ce574, 0xb666577c, 0x0000d6 }, { 0x1e4afe81, 0x1de6604e, 0x1a078a2c, 0x201a1daa, 0x142f0f6, 0xc802e1b0, 0x7d614a58, 0xf7d78c1d, 0xef4e0d69, 0xb0342d20, 0x53fa092d, 0x1c969df3, 0x4796b4ab, 0xc77ff6d, 0xde97bfda, 0xce25a5cc, 0x000197 } }, { { 0x656fe1a6, 0xa0408d5f, 0x894f70be, 0x4a0aac70, 0x9b129f06, 0xd88b0670, 0x70d28523, 0x56bc1158, 0xc4dc47c7, 0x478718cb, 0x23b31556, 0x69f34cbd, 0xefb5c2a, 0xa05a348d, 0x82071cb9, 0xc266c18c, 0x000053 }, { 0x4d75109e, 0x69f4258, 0x7960b082, 0x5c525459, 0x451f1b1b, 0x895888f2, 0x5daa346b, 0x4f55977d, 0xf33e91a7, 0x38578304, 0x37d8aa52, 0xd404e0d6, 0x38b581ab, 0xb823d463, 0xe8ff06e3, 0x3f0e769a, 0x00003e }, { 0xb5b2d946, 0xb9b5d4a2, 0x6897ebef, 0xf3c2466b, 0x9f3fdf21, 0x7dcee359, 0x7c4929c6, 0xcf5ddcd1, 0x64dea5f5, 0xcd624d1b, 0x58491582, 0x95e0258f, 0x73acd95f, 0x56235207, 0xf200cabd, 0x63d0ceec, 0x000193 } }, { { 0x77da49ac, 0x2161e5d4, 0x7e61a075, 0x81e1e8cc, 0x6cc7efd7, 0x34716730, 0xa91bb9ed, 0x31e43ac6, 0x47855539, 0x7676fe33, 0x6d3841f7, 0x9f9b70a, 0x7f67c391, 0xfebca27, 0xbe629f8d, 0x93d90b7a, 0x000104 }, { 0x47f0254, 0x55714410, 0x51a496ee, 0x38374f51, 0xf4fec4b7, 0x5f230519, 0xc7d8d079, 0x31d5d3e0, 0xcd5a74b6, 0xc221a212, 0xff6a1787, 0x531a9703, 0x2a6a3af8, 0x4ab3463d, 0xfe7d4b53, 0x28cb375e, 0x0001a5 }, { 0xa666778b, 0xee494252, 0x5f7b9871, 0xb195ba44, 0x8bf95e18, 0x232ab587, 0xfa3bb285, 0x46fecca1, 0xe2b572e, 0x4fad6232, 0x348f1663, 0x5ff90de1, 0xec57ff5d, 0x370306d8, 0xb9630e13, 0x390bb54d, 0x000044 } }, { { 0xa31c7bc1, 0xc37b0534, 0xd17c7d9e, 0x4ea56891, 0xbbb8eca3, 0x6390f447, 0x1a82de44, 0x63136711, 0xce36f0d1, 0x768f0b87, 0xcfc723b, 0x42d48437, 0xd5e1d50b, 0xd7b0dc91, 0xb9d8a0b2, 0xf5881be, 0x0001d0 }, { 0x47906507, 0xbbc73d34, 0x59a064a0, 0x6ea2b0af, 0x25d87603, 0x57e054a3, 0xc051a917, 0x3a13bcb0, 0xa52a8268, 0x894d658b, 0x1a37bbba, 0xbf32309e, 0xa96d8d3d, 0xbb3c3cf, 0xd5079dce, 0x381a9d5f, 0x00014c }, { 0xe6c9f372, 0x7a0557f, 0xeb519958, 0xf6bfcefd, 0xc4fa78ff, 0x2a8c2ea, 0x545cd53d, 0x57175f16, 0xfd7e524a, 0x15677500, 0x16f99b40, 0x7851825c, 0x2924c1f2, 0xf66cb8b0, 0x4d1b426f, 0xd74752ce, 0x000039 } }, { { 0xf7f71028, 0x8fc93fe5, 0xc3bf4508, 0xe808acbb, 0x1b137967, 0xb168dcc2, 0xb8eee291, 0xcbf9f327, 0x5840a1bd, 0xcc560df4, 0x388e897a, 0x1087a29d, 0x16a3752f, 0xb6a2b695, 0x3497a980, 0x505716e0, 0x0000fa }, { 0xf08b3c39, 0x4f2f6882, 0x726a06a6, 0x4d67da28, 0x2d0315b6, 0x32fbf795, 0xc6e9029d, 0x57c51294, 0x2d39888d, 0x8ff3d94a, 0x2fb667ec, 0x86c26d98, 0x14452c68, 0xe7de56bd, 0xcecec54f, 0x81d5ff12, 0x0001bc }, { 0xca0d2974, 0x588d2fd6, 0xdaca56d6, 0xf4f37450, 0x67c8a2d9, 0x7d7ab0b2, 0x8358d49e, 0xa5cd79be, 0x5a521ef8, 0xfeb03dbf, 0xabc9f448, 0x610cd160, 0x35f8dd9e, 0x4d66aaf7, 0x5922030, 0xf9c99895, 0x0001b5 } }, { { 0x7a3d5b04, 0x3b3e48a, 0xcfd3ee58, 0x4d8cc529, 0x43d1d2f9, 0x72d3dabf, 0xc4511e3e, 0x8b8f25a1, 0xde30a194, 0x8d415f15, 0x5921b600, 0xf77fdf1a, 0xc5ffcbb3, 0x4a818ef7, 0xe5f85983, 0xda3db60d, 0x0001ef }, { 0xda355adc, 0x76c6fd5d, 0xa90ba76a, 0x58b87863, 0x637790f3, 0x744f37c7, 0x56715bd2, 0xd863fb49, 0x7e962844, 0xe165092e, 0xb660d14c, 0xc8d16c42, 0xc199adff, 0x66d7c9f0, 0xef587a69, 0xd58e107, 0x0001e4 }, { 0x61c7b3c8, 0x556dfbc, 0xd92c9fa4, 0xf37d927c, 0x7ae82394, 0xb57935fc, 0xf546de3a, 0x982469b6, 0x748ac4f4, 0xff598599, 0x278d5aa8, 0xa762c2fb, 0xdba52653, 0x4b2836ff, 0xf02b33da, 0x2bb9e976, 0x0001f8 } }, { { 0xc24f54d1, 0xd961f535, 0xa5114381, 0xca257923, 0x48384c32, 0xf2c18edb, 0x4280abc4, 0xb8948c1b, 0x14b647d, 0xda41bc27, 0x25770afa, 0xb51d104d, 0x6d3ecc99, 0xd48075e, 0xe5664758, 0x97a8b634, 0x0000f4 }, { 0x62719e4f, 0x209a0e71, 0x5d563d28, 0xe5d64910, 0xb69f89ed, 0x5dd2e9a, 0xfceab0aa, 0x58881a76, 0xc6ffb494, 0xc9b58413, 0x56882ddf, 0x21478f01, 0xd87d8383, 0xae4eb4c8, 0xcc81689f, 0xf0183bf4, 0x00008e }, { 0xf29a0582, 0x692480be, 0x60348c4, 0xb5b0eff0, 0xf0a6bc57, 0x4126f0d8, 0x3de022e1, 0xe9eda4e6, 0xbf7ce924, 0xd7dae05f, 0xf227af44, 0x2b6566d5, 0x7d146ec1, 0x2aee92b5, 0x3e74215d, 0x8bc9f9cf, 0x0001b6 } }, { { 0x631f0b75, 0x1981d91c, 0x6d7ed84c, 0x5ce58305, 0xa0c37f7d, 0x945081fd, 0x97034dd9, 0xfaa82e25, 0x2141b192, 0xc39736e2, 0xd1abdfea, 0x9e340751, 0x2fbcaa14, 0x858b6bc4, 0xc0e542d3, 0x18063a6, 0x00012e }, { 0x879ed9f5, 0xf3d118d3, 0xac47653d, 0x59d325be, 0xb021dd9f, 0x697ead50, 0x6a79f42a, 0xc20d016a, 0xcae38aed, 0x7d75b9c6, 0x3d7f5d50, 0xb8164ced, 0x68657a2d, 0xb54cf1a3, 0xd8bbfdb6, 0x3425fe08, 0x0001a3 }, { 0x2582b55a, 0xf0251bf4, 0x4f871893, 0xf8c8ea47, 0x8e921af9, 0x191e3df1, 0xebbc3197, 0x582263d, 0xa5aacca6, 0xe2d4d1a7, 0x3a89cc1b, 0x423d5a6, 0xadfa89eb, 0x58f836f7, 0xa4e1c354, 0x15318b9b, 0x00013b } }, { { 0x61569cbe, 0xf1e7103a, 0x62ff032d, 0x81bd469, 0x2c3f7b21, 0x6ea83d69, 0x21779f65, 0xeede75f0, 0x8b3462ac, 0xc7e7bb4c, 0x7eb3ddbe, 0xe9bbd954, 0x2717cd19, 0x2300c965, 0x471ca23a, 0x88a62b5f, 0x0000a5 }, { 0xb6247993, 0xa463a2d3, 0x5b4132c5, 0x8a0961a5, 0x239d71ff, 0x5a181c5a, 0x7321794c, 0x51177bf8, 0xf18da907, 0x2965b0c3, 0xbcd81a88, 0x5017605b, 0xa2f52139, 0x40a924cd, 0x5881913b, 0x7bbf13d3, 0x0001ba }, { 0x9c46a403, 0xf7fde87b, 0x68a1c7b, 0x41a2dd01, 0x4191fedd, 0x78fa684, 0x7efeb847, 0x4888158b, 0xc57c4527, 0xd8358a68, 0x5b14ee36, 0x3f48ce1b, 0x480ab37e, 0xf76f6042, 0x6a053872, 0xfa741677, 0x0001c5 } }, { { 0x404eede9, 0xe793247e, 0x5d3ee9b8, 0x42239f49, 0xc59af37, 0x5b97fcb9, 0xc0a88a33, 0xba80ed10, 0xf05f0844, 0xd97a3970, 0x78acd00b, 0x8df5ad7c, 0xb9f5a277, 0x11c7b8ca, 0xb8529878, 0x52604069, 0x000138 }, { 0xdb00c41d, 0x4e93f26a, 0xe295bfe6, 0xb0c23100, 0x6afc1fad, 0x2ec4cca6, 0xcbef2e1, 0x8defadb8, 0xbbc8d074, 0x3345d692, 0x52b5d329, 0xcbce0e16, 0x1cfcf549, 0x4a7cd732, 0x8a32a1e6, 0xbbf58fb8, 0x00018e }, { 0x444e6ee8, 0xe02abb05, 0xb8219031, 0x2be887ff, 0x8f88383d, 0x55bc3147, 0x4da02414, 0x1dc03635, 0x38c94675, 0xdc0f34d0, 0xbe70a593, 0x57ad4d1b, 0xfae45fb7, 0x6ef3ee77, 0xb6230b7d, 0xd34ae4fc, 0x0000c5 } }, { { 0xa40523e2, 0xc9f27af4, 0x1f2dde9f, 0x59746002, 0xb270e38d, 0xd835e130, 0x8a7faef3, 0xf20a2034, 0xa7d53ddd, 0xb8432e30, 0xb3cb0e2a, 0x392093e2, 0x4dbc877f, 0x20d2c413, 0x5b86b0c, 0x8250d312, 0x00013a }, { 0x196530d0, 0xb8311c31, 0x4282c245, 0x5c6f77e5, 0x75cbf6d2, 0x7831fdd3, 0x3fd875, 0x4e9cd577, 0x1ebe25aa, 0xce1052e2, 0x3fb24200, 0xbbe44dea, 0x9bdc9f5d, 0x278270eb, 0x3739746b, 0x40ea0bdf, 0x0001fd }, { 0x7f21a017, 0x21e82bbd, 0x654e667, 0xedad4bfb, 0xa0d81467, 0x7025ca8d, 0x3a61ed22, 0x4f1de6f7, 0x7d525538, 0x2950b1c6, 0x1ae9c281, 0x287d526a, 0x54bca0b7, 0x4518d8b7, 0x17a8f172, 0x51918e8f, 0x0000fb } } }, { { { 0xdaa2164b, 0x59ec5ba4, 0x26f42f0a, 0xa145341f, 0x917008ca, 0x46240d01, 0x8a277736, 0xfeb89884, 0x764f4f00, 0x168e04bb, 0x8f460893, 0x798e3a67, 0x27990c0a, 0x8a77214d, 0x985a57a6, 0xf0d422b, 0x000146 }, { 0xdece625c, 0xf621c29a, 0xcdd511f0, 0xdd967153, 0x1cabd016, 0xdda7b3c5, 0x57e2fca2, 0x99b71dec, 0xb78c1f61, 0xd0e8a64e, 0xfcce08ab, 0xebce41f, 0xf973768, 0x853ee699, 0x50767336, 0x74905906, 0x000002 }, { 0x26b70c64, 0xb75d2665, 0x5dfa88bf, 0xc21782e6, 0x2edd09e9, 0x5eed22ae, 0x2f389ddf, 0x31401fd3, 0x242735d2, 0x59bcb904, 0x8de84c78, 0x5f4b9f4d, 0x285a9920, 0x9ec5b391, 0xfd2e9905, 0x45ba3d41, 0x00007f } }, { { 0xc3b1eca4, 0xa8548a83, 0x99eccc09, 0x9e3bc589, 0xead01ab7, 0xf4579b72, 0xb2522d09, 0x26716a2a, 0xd4a9244e, 0x3d06a16, 0xe7a15092, 0xe0c1174, 0xb373de1e, 0x9e285e3d, 0x84314f1c, 0x96f301cf, 0x00015b }, { 0x891ab0f5, 0x3f8f7bf8, 0x37314073, 0xc7c8f5fb, 0x8d71d354, 0x8d3855e8, 0x17434ac3, 0x5325501, 0x159aec95, 0x5700233a, 0xc90c3374, 0xdc816cc1, 0xc56f3103, 0xa2d6f922, 0x1a844bb7, 0xfe098f44, 0x000076 }, { 0x3c368515, 0xa02eefc5, 0x9efbec63, 0x86b4772c, 0x3a7e823a, 0xf90a3b5e, 0xee753549, 0xc67d97df, 0xea799154, 0x6260fda9, 0x19af315c, 0x3b5f48ab, 0xac84a9bc, 0xeb4ca001, 0x4967a417, 0xc702fcbc, 0x000111 } }, { { 0xe6d38353, 0x2881faa5, 0x583df516, 0x88833fb, 0xd67ff743, 0xaa5bed06, 0x96842247, 0x627ba246, 0xc1d783a7, 0xbc9962f1, 0x1181bb54, 0xcf983058, 0xaf1d8e92, 0x9c55b2de, 0xa2578d0, 0x6636c177, 0x00006f }, { 0x1a73927, 0xa42ea4d4, 0x92301d1b, 0x4bf64b55, 0xff7cae96, 0xa60b7c3c, 0xfb926bb5, 0xe22e011c, 0x6d04e77b, 0x88b56075, 0xcbc60836, 0x1a13597, 0xdb2bd280, 0xe3df3bc3, 0x3caf64e7, 0xd7a1db36, 0x000120 }, { 0xa3e68ed4, 0x5a5ffd70, 0x86cec3e0, 0x8d69503a, 0x55578604, 0x9fb28e26, 0x39cfad0, 0xad220bc5, 0xed75c9e5, 0x7e8ede5, 0x25266c77, 0xc3133fb6, 0x46151816, 0x617b2452, 0xaa5ae4c4, 0xe675fb8b, 0x0000b5 } }, { { 0xbaa9add0, 0x34188884, 0xfc168c67, 0x39ae5b8a, 0xbeb5e595, 0x7abf3874, 0xbe9d151, 0x1309e4e1, 0x3729de8d, 0xaedccafd, 0x117b0e66, 0xf8d5e12a, 0xc64654d1, 0x1a106751, 0x121177c5, 0x1c0f1c0, 0x000176 }, { 0x3b3a395e, 0x1e1f0dcf, 0x3c6d1c7c, 0xdef9079f, 0x18d6dea0, 0x59052e21, 0xa2922231, 0xd9805bac, 0xa63042f7, 0x30a5b9e3, 0x6422c31f, 0x23873360, 0x16e2be57, 0x5642ff63, 0xb97abdc9, 0xe85972a3, 0x00006b }, { 0xeed9c1e4, 0x705ff11b, 0x75e12a3e, 0xe8d3cbdc, 0x6c9275a4, 0xcb4019dd, 0xd46822b5, 0xc2895d11, 0x4553a5ff, 0xe0e7c5af, 0xc786010e, 0x57e10e0f, 0xf8065dec, 0xfbeef8d0, 0x5ccae402, 0xca2447aa, 0x00011f } }, { { 0x1a16163d, 0x97be8482, 0x52231925, 0xe6c9063f, 0x5a5cbc62, 0xd67abc43, 0xe81f5006, 0x959af467, 0x5cb1e12d, 0x28ea8afb, 0x9ab9c0d3, 0x4044b3af, 0x26cc112b, 0xba96ba88, 0x2a2be9e5, 0xdefd6928, 0x0000f5 }, { 0xa4e1af5e, 0xd0f84a30, 0x9dee6d16, 0x3ff23a7a, 0xbe274633, 0xa9496b8d, 0x37c002a7, 0x7e98721e, 0xd39d5d02, 0x5aa94bc3, 0xbc24059e, 0xbd97b2ec, 0x927f744, 0xc661aa35, 0x67808c97, 0xf83e8c0d, 0x00006c }, { 0x9afec279, 0x66ca314d, 0xe08cda57, 0x118ef53b, 0xc8d48269, 0xa4914bf6, 0x5ff156ce, 0x72e29f7e, 0xa6e9c477, 0x31a32471, 0x7397a6e3, 0x349f32e9, 0xc7d0d3d, 0x7e5a57b1, 0xdcbe336c, 0xcb8d8d3a, 0x000155 } }, { { 0x4290f5bf, 0xa754d110, 0xe0e311e7, 0x1b0cacdc, 0xb425ee88, 0xe5d2efee, 0xdd8a4ed1, 0x69860cc4, 0xb086a665, 0xa208b24b, 0xaedf0c70, 0xf52af377, 0xe3b1f6a6, 0x5e22271c, 0xa33f6891, 0x3ac3d786, 0x000084 }, { 0x4aaf751a, 0xa0493ff, 0x6059f718, 0xb1ef249d, 0x88f00509, 0x7ea6da73, 0x6391cb74, 0xa037c028, 0xa8bd8882, 0xd2cb8fa6, 0xc6880e06, 0x1b5307ba, 0xebee526e, 0x96c75097, 0x3a8314a5, 0x92c3bb29, 0x000033 }, { 0xae6b93dd, 0x8e617642, 0x3485dea5, 0xba98f102, 0x9054a10f, 0x89bea160, 0xd11e5897, 0xabd78c11, 0x6317fa68, 0x6a77e825, 0x15147cce, 0x9340bcb4, 0x31eca12, 0x1bb98fdc, 0x2e871768, 0x8d086f88, 0x0000c2 } }, { { 0x7806b56c, 0xa24f6a42, 0xc64f5d85, 0xaf56fbc1, 0xf3e0e61d, 0x9d3a0ec9, 0x6b96891c, 0x83dd90c0, 0xa4937d9, 0xa40c2254, 0x3a848cad, 0xb28cb0af, 0x111ed23c, 0xda39383c, 0x990a851f, 0x45b826e, 0x0000f4 }, { 0xca5d5c0f, 0x2d3bf84a, 0xf5dfe62e, 0xe04fb513, 0x9d9df747, 0xf316164c, 0x5585bbe, 0x48d568ef, 0xebf74f2b, 0xa9771099, 0x9eaf8f18, 0xaf3a2bc8, 0xef4d1fe3, 0x667706f3, 0x94437480, 0xa0c9dcec, 0x00010f }, { 0x73d13d60, 0x2658770f, 0x29134b31, 0x30eb93be, 0xf9200eee, 0xc1af6952, 0xbda49a73, 0xfaf1d0d1, 0x954f9cbf, 0x7a17f8f0, 0x1a27d761, 0x63723078, 0x7bd98cce, 0x32f9186a, 0x4701b8f5, 0x38b0f295, 0x0001ca } }, { { 0xf603d23b, 0xa6c16025, 0xe505349, 0x5979373d, 0x7869ca3f, 0x9ee3e35d, 0x75e7931f, 0x3d2a4473, 0x376d5f7e, 0x833da5a8, 0x1cc2741c, 0x32227630, 0x7cea65dd, 0xeda3544e, 0xa1013630, 0xd1be02bf, 0x000031 }, { 0xb577956d, 0x8807bb6e, 0x794c42fc, 0xe9968865, 0x8d48fc3f, 0x98e8f4e1, 0xf778313b, 0x288fae6f, 0xe1ca8891, 0xdc99501f, 0xf2f3907d, 0x91b3c131, 0x45e29e85, 0xc077f8a3, 0x945ecc65, 0x6e74c1ff, 0x000110 }, { 0xd959c133, 0x9ef4e770, 0x9036a961, 0x992f01bf, 0x2746db0a, 0x77c72243, 0x4c960e23, 0x497c6d51, 0x66211081, 0xd58c1609, 0x146bcde7, 0x67981aa8, 0x4866eb43, 0x89dc04dd, 0x297423cd, 0x3bbff48f, 0x0001d7 } }, { { 0xe691bfc2, 0xa319ddfe, 0x8cdd96d5, 0xb52826ad, 0xd2747b72, 0x2f92d99f, 0x49bef4f0, 0xd270be97, 0xf81a3c52, 0xd6f92b1d, 0x4107081f, 0x347d4155, 0x212ad096, 0x553f0508, 0x93d647da, 0xcdd5bd53, 0x000074 }, { 0xfb93973, 0x1edc27f, 0x7be22f1c, 0xe07536c0, 0x70e3e287, 0x22092fdb, 0x844024af, 0xb64b47c4, 0x123ec899, 0xb525059, 0x8252b27f, 0x5d2b2818, 0x5680fe9, 0xe06a075, 0xa0c418a8, 0xae9f252f, 0x0000cd }, { 0xac7ba55a, 0xf2c456b, 0x59628711, 0x5ed80d88, 0xf12a396c, 0x5939f3d1, 0x83123a22, 0x6538cbd3, 0xae5ea695, 0xb5cf5e15, 0xb123723e, 0x14cd9843, 0x136e0af3, 0xc799a595, 0x3e461efd, 0xc1553ece, 0x00005c } }, { { 0xe267f473, 0xcde965cb, 0x1b4420bc, 0xb9ccdd12, 0xe8b61641, 0xfe641299, 0xe91c22fc, 0x6106a935, 0xc9a5d38d, 0x883841f6, 0xb8c68b9a, 0xf477f004, 0x1c4ca0bb, 0x7e176fc2, 0x26aeb371, 0xf28d0011, 0x000092 }, { 0x2edf0690, 0x6bdbd354, 0x81a2348, 0x8105514d, 0x99cc7108, 0x7fab37b6, 0x63cd44dc, 0x78638438, 0x9bca5876, 0x6db2cc85, 0x8ab84d9f, 0x85960231, 0x87654ddb, 0x32377bfa, 0x44bbe49, 0xbeed5c3c, 0x00014c }, { 0x8f69d194, 0x49ccd27c, 0x7c2feb1f, 0x770094b6, 0x9ee9f22, 0x9cb72e18, 0x13231d78, 0xa36cbcf5, 0xcfe0894a, 0x73f67de, 0xc1672854, 0x672bc598, 0xe812345b, 0x9083a8ee, 0x59ec429e, 0x8d3737ac, 0x00008d } }, { { 0xccfe5db, 0x2d080a99, 0xb45a1b8d, 0x37a9a188, 0xff87b111, 0xd576aa03, 0x647cf07f, 0xf3c4d929, 0x98eb3f3a, 0x27852f22, 0xd5ee0446, 0xd1eee99f, 0x1741d1c, 0x90a31af1, 0x2ec93c79, 0xaac39ed, 0x0000ec }, { 0x344e1a62, 0x27aeee00, 0x9272f483, 0x3e9a360d, 0xca9e5d26, 0xcd3e750f, 0xb15b24c6, 0x824ec4ec, 0x7a818e6b, 0xd39ac92e, 0xcb3871e2, 0x28a28a35, 0x9131c9c0, 0x89278d8b, 0x1cafe930, 0xd6593b37, 0x0000f1 }, { 0x6e817dbb, 0x8c2b616e, 0x5c2297c0, 0x8b068a2b, 0x8eecd226, 0x39492e9b, 0x66317e27, 0x10eeaf70, 0x7f3b4081, 0x56d245d2, 0xd8472266, 0x7af09dd0, 0x6c4d45fb, 0xddb093c2, 0x28ca2f76, 0x33e92c35, 0x0001c9 } }, { { 0x2e36faba, 0xbe17b09e, 0x94e8d356, 0xdeae19c6, 0xaaf541f8, 0xa7639f81, 0x95d379dc, 0xc4fc505a, 0x5ab19d0a, 0x4b38bf72, 0x203478a3, 0x4b98545d, 0xd463a7ec, 0x2f4b4157, 0x8e5d12b2, 0xdfe38874, 0x000113 }, { 0x9a0216db, 0x10bebb4b, 0x902391df, 0x6157a118, 0x736370c3, 0xe2767a77, 0xe3be43dd, 0xb26df18, 0x80f2a5ce, 0xe15dbc80, 0x1e9758f3, 0x9d28aace, 0xc984fdce, 0xab08e101, 0xf9ff15a3, 0x4851bc57, 0x000024 }, { 0x9523c2b3, 0x79e96c73, 0x57c13c50, 0x831461a2, 0x7a066d90, 0x54553f5e, 0xe85627f9, 0x7c6024f8, 0xeb48d307, 0xee0bc2e7, 0x9940aaef, 0x144fc414, 0x27192cd, 0x72a372af, 0x9218b71e, 0xf5fcc94d, 0x0000a8 } }, { { 0x8b7a2d25, 0x46077d17, 0x169b5da9, 0xe3fc3f23, 0x263d7498, 0x26d17fa7, 0x7c079781, 0x9724c225, 0xb24ea912, 0xe80e1d8d, 0xd38ce4b9, 0x3fe3501b, 0x3c9343bf, 0xfcc2eb1, 0xd4b5b3bf, 0x4fd272b8, 0x000103 }, { 0x8ac269e7, 0x703f83af, 0xc7efa77e, 0x8b15ad2d, 0xf71caddc, 0xcf91bd99, 0x2210629e, 0x4cf96357, 0x1a1d534f, 0xba045674, 0xe6056e45, 0x8ac18f4, 0x447c8cf4, 0x6ed57101, 0x351423b1, 0x7786d6ab, 0x000049 }, { 0x812e4fe2, 0xd9bb37a5, 0xe6928800, 0x96461dd0, 0x9ed9f930, 0xfaf27262, 0x8ab11b95, 0x5cafa5df, 0x3527746d, 0x40b622d1, 0x2a8ae812, 0x9841ffd0, 0xf2462e1f, 0xd6f078b0, 0x2d9f0ed, 0xedf216f6, 0x000097 } }, { { 0x5efbbf39, 0x3633c461, 0x19b350a3, 0xf93dab1a, 0x15a4c1e7, 0x8e9cf77e, 0x8f0aa5df, 0x4af1f0f0, 0xef49f06f, 0xc21d9e6d, 0xbdf11e5c, 0x62487e16, 0xb632692d, 0x24ac6f02, 0xcedd1aec, 0x4d58d469, 0x00010e }, { 0x1c022866, 0x457e32ed, 0xf88651f2, 0x6dc4f834, 0x6526b5ff, 0xed73333b, 0x392ed465, 0xb19937b6, 0x111f58a1, 0x5cc4b1a9, 0xb6aa33a7, 0x8a146d52, 0x4d2d5ed4, 0x15d9083c, 0x6a9c6233, 0x798d47c, 0x0001cb }, { 0x5db6b3be, 0x1dbf31d5, 0xeaeab048, 0xb9ae57b4, 0x74ec7233, 0x7d395a16, 0x3f2854cf, 0x7fb06c80, 0x983dc18, 0xb185be9d, 0xc39c6d46, 0xe33878b3, 0x372fabb3, 0x36532277, 0x19e9a666, 0xf6f772ba, 0x000093 } }, { { 0xea4db7a8, 0xb0537e79, 0x8b44b2a, 0x4bfaa3a6, 0x83660908, 0xe74ab0f, 0x34e82f7b, 0xa0f1c6d1, 0x2355282d, 0xd6f8dd54, 0xb02cc19c, 0xa7e55ffa, 0x437b8608, 0xdec20079, 0x2abd4b35, 0x806a2cbd, 0x000065 }, { 0x3c6ac8f4, 0x9a3068b9, 0xb9f11deb, 0xaebe8d39, 0x32b7ecc1, 0xf20aadb5, 0xa25b7710, 0x3e4cb23b, 0x656debf7, 0xe1ccd513, 0x145f8a0b, 0xde7a494a, 0x8db1dba3, 0x38a11390, 0x807ea470, 0x85453de7, 0x000145 }, { 0x923113f3, 0x6d7aea29, 0xa1b8ff20, 0xa6e9a903, 0x4cde4343, 0x8430643a, 0x6a2caf6e, 0x6ced5818, 0x45fff85e, 0x1cf13cc6, 0x8e68dbdb, 0x1883d307, 0xb6c32e09, 0xb3a80ad9, 0x34cba490, 0xd02ec285, 0x00006b } } }, { { { 0x1ab67d51, 0x4f66dfb9, 0x72dff3e1, 0x453817cc, 0xdeaea1d, 0xcbacef16, 0xdf6759ca, 0x9d124a38, 0x54dbcc54, 0x2f89095b, 0xa6b8c9, 0x34b61b10, 0x87a90afb, 0xe7d66fd3, 0x12e4e249, 0x3e45fbbb, 0x0000f8 }, { 0x5d0f915a, 0x59bf3928, 0x1472ab18, 0x8178e097, 0xe9475e55, 0x11f90413, 0x74a04db1, 0x5e8d4343, 0x7d87826c, 0x5fa8d757, 0x696e1588, 0xf5142001, 0x2a7bff64, 0xac8debb5, 0x7623e08b, 0xebdc5da6, 0x00010d }, { 0x4aec0892, 0xc2f1e1b, 0xa71f45fb, 0x238a5adc, 0x1dc77bf5, 0x5fa8dd5, 0x713e5829, 0xa1b20250, 0xa7db743c, 0x561ffe0f, 0xf4e97c64, 0xb2a8f827, 0x3ffdfad6, 0x73f4b07d, 0x9e55c0b9, 0x9a75a4b3, 0x000155 } }, { { 0xf4b4d7f0, 0x98e3d669, 0x47e66700, 0xf663ad39, 0x848100ef, 0xa78f797b, 0x2e6592be, 0x1d8473bf, 0x777deb8, 0xcbbf4da4, 0xabac56b4, 0x3c934937, 0x75e4d763, 0x98b25473, 0xc54921d4, 0x96ba43d3, 0x00011a }, { 0x7afda9b9, 0xcb2d5763, 0x1ca2493b, 0x7c362cb0, 0x72a56737, 0x5b988310, 0x45dd12d6, 0x7a0ef10c, 0x7b5b6a39, 0x50b03c8f, 0xa2a16989, 0x7509f08d, 0xaa4c3c51, 0x9db5ff1, 0xe3fb7750, 0xe09284f1, 0x000017 }, { 0x2653bbd6, 0xbfdbcc3c, 0x328a3d4e, 0xa0e6b13c, 0xfba54d79, 0xdd5411ba, 0xa23e0ab9, 0x2b6d32e6, 0x4c3b40c0, 0x851a1ff0, 0x6f3413ca, 0x273b36eb, 0x31758f49, 0x34416dfb, 0xc6c6fe4, 0xa570a23c, 0x000075 } }, { { 0x8df33d48, 0x2911b9a6, 0x72535224, 0x6775ae86, 0x6688cf6, 0x4cd9028a, 0xfd2b18b2, 0xfa6217d, 0x2cdb19b0, 0xc57e09a0, 0x4c5b61d1, 0xa36abd1f, 0x26bf8885, 0xd1a5ef86, 0x15b447ab, 0x3c820435, 0x000143 }, { 0x8b2465b8, 0xa5757a04, 0xa9051e0c, 0xc1ce2e7a, 0x3226a8e4, 0x1a80bf74, 0xb8163bd9, 0xbef56002, 0xbf2e9d73, 0xa3c62881, 0xb712095a, 0x16824d7b, 0xb89776fb, 0xad542da8, 0x86320715, 0x74473055, 0x000177 }, { 0xb6ae3b37, 0x9578475c, 0xfd35cf4e, 0xe23ff5b5, 0x25b16110, 0x6a417800, 0x6c40f3bc, 0x557de703, 0x48ccaa7c, 0x4f81a67e, 0x6962584e, 0x7f3ab628, 0x256819d8, 0x72b33f61, 0x5081b104, 0xd4b08021, 0x0001a4 } }, { { 0xc44248a9, 0x4a56f3bb, 0x902b9a91, 0xd5188c38, 0xe705d602, 0xead7b11a, 0x966ea12, 0x6360999c, 0x31d0b28, 0xd2c8c263, 0xf132215b, 0x3f3de596, 0xac0fd98b, 0x91a787be, 0xa887db55, 0xc4b28aa7, 0x0000a5 }, { 0x8e3da0bc, 0x1a1c88b2, 0x58f2676d, 0xe4dec0b6, 0x813a938f, 0x980098a, 0x9cf7741, 0xd401835b, 0x30192337, 0xec16e19e, 0xc738f0a8, 0xcbe6e83c, 0x7de22bbb, 0x7b7d2458, 0x30efbd8f, 0x8e0afdc, 0x00004d }, { 0xe821dbde, 0x3753bef7, 0x4c93d6d2, 0x8fa3419d, 0xbe931380, 0xe77a758d, 0x4532f448, 0x3454844e, 0xd39e279d, 0x27527145, 0xfd5b775e, 0x71f71791, 0x92b1b224, 0xef4ca0be, 0x156825ee, 0x7582b978, 0x0000ea } }, { { 0xc59d9e2c, 0x84aa862f, 0x48a5d31b, 0x67c3f55b, 0xde46c670, 0xd392cb50, 0x4af9ada8, 0xc244aad5, 0x5a8e9ed, 0x6f0317b0, 0x394f962e, 0x964e642, 0xf016467, 0x8ea98c1a, 0xdb562fef, 0xa9696c8b, 0x0001ab }, { 0x13ab5e3e, 0xc9f6ebed, 0x9415c223, 0x44ae16e, 0x5e3f0161, 0xeb6bb73a, 0xd62eb282, 0xc943ca37, 0xc0da8f2c, 0xec41fb98, 0x8d392c69, 0x46a9b0c2, 0x3c1ea97b, 0x997521c3, 0x761155f6, 0xc8f0b89e, 0x00015a }, { 0x5d29cf98, 0x9f4202cf, 0x6ade1e5d, 0xfdef8c67, 0x22010012, 0x5a0c1b4c, 0xea907ed1, 0xaf64a22d, 0xed737dd4, 0xcedb7512, 0x83dad82f, 0x4ef530ae, 0xba68ccc3, 0x4603f03b, 0x2ae75d90, 0x881919e3, 0x000049 } }, { { 0x15fc9262, 0x361104a4, 0x9f5bbd92, 0x2eaeb8c5, 0x52a51fcd, 0x18db1bd1, 0x80e843f0, 0x5a5034a9, 0xbbd040ba, 0xb62ec492, 0xf4f6259, 0x173dd4ea, 0x84a1369f, 0xe7b43537, 0x3001bede, 0x163e3b71, 0x00004a }, { 0xb21b7457, 0x4597190d, 0x2b01766c, 0x2be813e0, 0x247f5a92, 0x75ac0fc, 0x1f2bba15, 0xe8e90b37, 0x4a6c84ae, 0xe4b3d7da, 0x7c9957be, 0xf38b7d23, 0xdeb73148, 0x5b1ed2fd, 0x382c913, 0xc8004772, 0x0000f7 }, { 0x50d16616, 0x9014e186, 0x8a5f6dcf, 0x27be3ed6, 0xa81583c4, 0x319bad73, 0xe0069514, 0x1542116c, 0xa42afcf7, 0x91812789, 0x71f2bba7, 0x3bcd0af5, 0xbb39175, 0x5bcf7ccb, 0xf6c1ab6, 0xfb0d8cdf, 0x000014 } }, { { 0xb6734245, 0xb2ad25df, 0xe2af653d, 0x16254e01, 0xb123cf30, 0xbe75a7c, 0x78d39bd4, 0x870dd88b, 0x190636d8, 0x1e72ab6d, 0x8c9dd6c8, 0x29558ab7, 0xb31831ba, 0xce01f47e, 0x767a7e00, 0x1c59c5dd, 0x00002c }, { 0xab0bba51, 0x3121f31c, 0x8066046, 0xa0ef5375, 0xad3ed357, 0xc266dc0e, 0xcc243e22, 0x2113c308, 0xe5c4ad41, 0x4c77d041, 0x3e112bf1, 0x8d78ba76, 0xf078a7a1, 0xe77b0d05, 0xb9ca4b36, 0x45c5017c, 0x00003a }, { 0x931d92da, 0xfe7b211c, 0x47202ec1, 0x3fd1dc77, 0xf59590e1, 0x979342c4, 0x3780d429, 0xbb5d7718, 0xb9e47816, 0xa4356e07, 0x3996f17b, 0xb2db035b, 0xdce226e9, 0xa8d58ef5, 0x5e925920, 0xe40ad4ef, 0x0000a6 } }, { { 0x9290c925, 0xaf5398d4, 0x8a02f573, 0x57083d9c, 0xe722e1d7, 0xda4629d6, 0x6e18f0d0, 0x33265f9b, 0xa6753c9c, 0xa23a12bf, 0x4178fa43, 0xad47499a, 0x94d91a01, 0x542d6977, 0x83989ca7, 0x1f9287fd, 0x0000bb }, { 0xd73282fe, 0xbc19e206, 0xcebcd6c3, 0xedc982f2, 0x97721d89, 0x8444d2f4, 0x4148f918, 0x4d4f1ef5, 0xaeee0721, 0xd8e6624b, 0x481bd2ea, 0x9ef1e700, 0xbb1022b9, 0x2a2bab19, 0x194d4a0a, 0xae06ce10, 0x0000c7 }, { 0xad4743e3, 0x7ce51326, 0x3e9f46ce, 0x21f78e6f, 0x1f1cce73, 0x4696e438, 0x1dd7b897, 0x5f2b1895, 0xf371876c, 0x1e471217, 0x962892f8, 0xc898f3cf, 0xc8bbf7f3, 0xab8e7ecf, 0x5d59203a, 0x6a3930ea, 0x00014e } }, { { 0x484f6be4, 0xab2ff8ef, 0xe6d31748, 0x6f70dea, 0x16381e1e, 0xd67fc838, 0x248ba7d8, 0x6151a445, 0x180fd5e4, 0xf517c445, 0xe03bb634, 0x91fbcb63, 0x23612fe4, 0x8d99c242, 0xaa9d44d2, 0x65250156, 0x0000a5 }, { 0x9ac75cde, 0x6b308106, 0x84cff362, 0x5ba6f30e, 0x8341107f, 0x89779972, 0xca196a46, 0x9160a0ef, 0x4db295e6, 0x1e3197f2, 0x3c61d9c5, 0xb1afaec6, 0x426c8dca, 0x65a29f5b, 0xc74d636b, 0x5c6922e5, 0x000126 }, { 0x1d265aa0, 0x2eb9e8b4, 0xcaa51f88, 0x139cdcab, 0x3beef61d, 0xf920baa5, 0xb2d288d4, 0xbc075b2, 0x69813202, 0x4b19115f, 0x38de15fb, 0x228b6dba, 0x42889f8c, 0xadce7b2, 0x3f5eca57, 0xc464524f, 0x0001de } }, { { 0xb287ed11, 0xcf2635ed, 0x29f0311, 0xdc181e43, 0x76355d70, 0xf0a9daac, 0xc635cb82, 0xfcf2dc93, 0x2b952fe3, 0x4ac1880b, 0xeeb38f5b, 0x88dcd6db, 0x58c4260f, 0xc7780150, 0xd647d70d, 0x99f39f5c, 0x0001ab }, { 0x8dc104ca, 0x25833e2b, 0x47e9277c, 0x50ff6f62, 0xf23efca4, 0x2329f3f6, 0xea7d7fe, 0x468277b8, 0x8c50c3df, 0xba188a82, 0xc94b1937, 0x5c08d9d, 0xdec59e97, 0x279e70a5, 0x8597ceec, 0x2a1a757a, 0x000086 }, { 0xe69b1889, 0x53332971, 0xa78f7e5e, 0x5d495ac3, 0xbc81b32, 0xda376637, 0x9b6e957d, 0x4916fc8c, 0x49179e21, 0x8eebce09, 0xd9d64428, 0x5238ef79, 0xa0b238cc, 0xf86817b1, 0xc2b7cc2c, 0xe87f0d9e, 0x000041 } }, { { 0xd006feb7, 0xb601a49c, 0xe408a535, 0x7328a8b8, 0xd685f916, 0x93ca59e5, 0x459ca6a5, 0x9f5d7f5a, 0xf4f5b50d, 0x10ada4c7, 0x2efcdebb, 0x73bc73b, 0xf87365ff, 0x9a528425, 0xccfc1718, 0x157d6e22, 0x000169 }, { 0xb306a233, 0x4576fcd0, 0x26a7225, 0xbde3c2dd, 0x102855dd, 0xc19be26c, 0x919d0b4c, 0x6b029962, 0x4c905d2d, 0x4917d3dc, 0xdeac6597, 0x160e4fc, 0xaecffbcc, 0xcfc15bac, 0x7a88a95f, 0xb5666917, 0x00004c }, { 0xbe985ca8, 0x9f9ee114, 0xb0c53634, 0xff43c30d, 0x1677868b, 0x79cf9c1d, 0x655e6db5, 0x7c7fdb6a, 0x500fd5b, 0x15aabffd, 0x1ec3c547, 0xd19f6196, 0x4cc6ef1d, 0x35d3d4d7, 0xf1d2e7da, 0xac1f767b, 0x0001b0 } }, { { 0x84a72cb, 0x344b7c50, 0x4223eae3, 0x6a0b112e, 0xa971e7ee, 0x73a6460b, 0x2b9e393f, 0xd43c3653, 0x7d6eeb61, 0x230a1fce, 0x8699c3dd, 0xdbf0bac5, 0x26dd2eda, 0xa4e9eee5, 0x11ffe0e6, 0x344eaad, 0x0001d2 }, { 0x41a4d279, 0xc5fc37b, 0xe25a68c1, 0x400c0bc6, 0xa317fc5a, 0xacfdd9d6, 0x5358c456, 0x493d6381, 0x31454b24, 0x6d7e105a, 0x6ea25663, 0xbf7eb734, 0x7383bc07, 0x79715582, 0x42f7afd7, 0x21ff63c6, 0x000088 }, { 0xdfa249e0, 0x82fe9e8c, 0xa522becf, 0xfd151c71, 0xb9c85519, 0x16235ad6, 0x20e31d27, 0xed00ead1, 0x5076a0e0, 0x578a89fc, 0x267f0c93, 0xa0f18829, 0x8840d810, 0x5f34585b, 0xf13f806e, 0x1c3463a9, 0x00014d } }, { { 0x59cad4e8, 0xf5586767, 0xaaedd034, 0x317e95f5, 0xa3b3d072, 0x70125141, 0xceb2528e, 0xed160fe0, 0x673545f0, 0xbe87d9a9, 0xcda65a55, 0xa8b71b42, 0xbbad95c4, 0x2169b8f7, 0x173621a2, 0x1b4ef98c, 0x000183 }, { 0x7b2a9fa, 0x17fa3241, 0xf34903d0, 0x2c36ddd1, 0xb1f12f28, 0x50124072, 0xe436a576, 0x57c5a485, 0x526900e7, 0xe923ff78, 0xfc96804e, 0x8898c65, 0x6d839cc7, 0x884f2960, 0x3f095a70, 0xa97a19aa, 0x0000f4 }, { 0x1ece7fe8, 0xbb2599e6, 0x671490ee, 0xe3735dad, 0x37423125, 0xf6a3d423, 0x356efc6d, 0xe00ab704, 0x8db31b96, 0x9f01fb9c, 0x45eab0f, 0x35903177, 0x134b51fd, 0xcb236e36, 0xdbdadf9a, 0x32143e01, 0x0001f1 } }, { { 0xc49f33, 0x3882777, 0x8d8f40c5, 0xe1661c2a, 0xd5c95012, 0x569d1d71, 0x351434e9, 0x35d66fdc, 0x7de77d75, 0x7e4b5881, 0x2f408b8d, 0x12920b99, 0xea3fb15c, 0x1d984c1, 0xb1837d30, 0xe6b20911, 0x000179 }, { 0x97620ebd, 0xc85063f1, 0x85c04502, 0x5c7357fd, 0xf430b247, 0x936a6b12, 0x740fdb33, 0x9e96f3cd, 0xc0c53e67, 0xccbc4919, 0x841dba3e, 0x74bec738, 0xe12bf91e, 0x77444587, 0x661d0fe4, 0x5b6d85d1, 0x00018d }, { 0x6d4a0bc0, 0x5d15c6b9, 0x98dc434e, 0x31fbf413, 0x6daea51e, 0xa7c09b0b, 0xb6c6ffe6, 0x26e01866, 0xa7af4ff, 0xdcb3e121, 0xb68b5f39, 0xefff5f64, 0x3b2778ac, 0xc4f4f163, 0xd07b370f, 0xd4e51aee, 0x000155 } }, { { 0xbd76bb7e, 0x2cfdf672, 0xb9b970a6, 0x68a62564, 0x7b8a8160, 0x3a9b956, 0x756a7df8, 0xf46ada75, 0xd74772a9, 0x6a7bbc5d, 0xd5e0ce1c, 0x682e6e4f, 0x57782605, 0x13fd3867, 0xc711cd2d, 0xa4040426, 0x000028 }, { 0x7f711175, 0x681c4887, 0xc5557f4e, 0x82711fba, 0x9df9dfd6, 0x25e89fa3, 0xc7089170, 0xeeb5e254, 0x8b75e824, 0xf415b484, 0x47f2596b, 0xfe397c54, 0x711ef584, 0xc67f4f5b, 0xa286247, 0x6d503719, 0x0000c1 }, { 0x35df11b6, 0x7aa4d511, 0x8cbb6a7a, 0xa0811a1d, 0xa728bb0, 0xc956b503, 0xbfbb4d58, 0x82d0a98f, 0x11f6ed0f, 0x35cc3e8b, 0x97677a81, 0x6d402fcb, 0xf0d5ab50, 0x689658ba, 0x330e089b, 0x52c95a7f, 0x00008d } } }, { { { 0xbc13071e, 0x4507cdf5, 0xa11f987c, 0xe94fe8a5, 0x8f7618f1, 0x5240148, 0x736f50b5, 0x3bd620d2, 0xbf1c323a, 0xb8d96719, 0x9238f33a, 0xc34a9af0, 0xecc4e6bb, 0xf4946156, 0x5cdc96, 0x39504404, 0x000089 }, { 0x8c21fa97, 0xc7283443, 0xc3ae98e6, 0x24d2d48f, 0x3b57902, 0x347e4773, 0x30d75457, 0x4255a90, 0xe714f03b, 0xc3409bb6, 0xfbc0f8fc, 0x1f2e7d0c, 0x8e5b5a1f, 0xf5267753, 0x61384743, 0x53934ed6, 0x000114 }, { 0x11e5209, 0xa3c3579a, 0x35c3fbe4, 0xc0a06999, 0xe27b63e8, 0x38b87242, 0xef6ab054, 0x5f58d6a, 0x49decf6b, 0x480aa1fc, 0x5a6380b6, 0x115c2a5e, 0x7d8d0ed6, 0x54bc6857, 0x1433058c, 0x635f6574, 0x000069 } }, { { 0x41e9b462, 0x792e4ad1, 0xb011c9f3, 0x45335854, 0x5b5eaec9, 0xfe3485a2, 0xcb29da79, 0xe18f8c1c, 0x58962290, 0x9e8e717, 0x39dba430, 0x6673440f, 0xf9dd0911, 0x1acfe547, 0x82040637, 0x8081e1e1, 0x0000f3 }, { 0xdf637a96, 0x1c4f6568, 0x164b2643, 0x1f5da199, 0x4f7ca7f2, 0xb017b2f8, 0x30b5c1a6, 0xb3141945, 0x2a8c0ec8, 0x792ec2d8, 0x3f6541e8, 0x52ee6abd, 0xeed5a1e8, 0xe21ef33c, 0x1129f120, 0x4e49ff4d, 0x00016e }, { 0xed3f71a8, 0x28903c2a, 0x3c45f501, 0xed87fa73, 0x6c6acaf, 0xeec0916c, 0xc38d2297, 0xa0057fb8, 0xc95b923b, 0x6b790059, 0xe351776b, 0xf0151153, 0x16db2fba, 0x9a6a4312, 0xe5297fa6, 0x1aa591e0, 0x0001f8 } }, { { 0x81df4266, 0x2045cf90, 0x13a0c400, 0x46facda3, 0x166c7f7c, 0x48d974a8, 0x5e4677e8, 0x69fd4025, 0x4c715d98, 0xa02e711, 0x101f3f4a, 0x681d36b7, 0x1c28dc37, 0x64256601, 0xf97f8788, 0xfcdae4c7, 0x00005c }, { 0x2f4c9116, 0x4495f29e, 0xa0988d1, 0xeb1e283c, 0x6f5d915a, 0x103c3c60, 0xb3d160b4, 0xa44c28ed, 0x81706bbc, 0x6b9a2c81, 0x8323c7c0, 0xf761bf0c, 0x3fe20e59, 0x400a0117, 0x9ee299db, 0xb7769646, 0x0001ed }, { 0x2c5f20d4, 0xce092974, 0x736fe8dd, 0x5f3c593a, 0xe7f69ae, 0x93f7d72e, 0x79d5acf9, 0x76dd91f3, 0x4826a9dd, 0xdada06fc, 0x8b23e521, 0x7740acb3, 0x2d9d8553, 0x9e9fc600, 0x776be77, 0xc00ee371, 0x000009 } }, { { 0xee393484, 0x20d06f1a, 0xbf564c58, 0x3d8cf8fb, 0xd420786, 0x282ba32f, 0x752b1d88, 0x74c67e91, 0xc0e4e719, 0x3390e67, 0x5ae33fd5, 0x2b05fdc1, 0xca7386e3, 0xba0591e9, 0x3642f309, 0xd189ba0a, 0x000050 }, { 0xe189c28b, 0xb1a1755a, 0xb59e3a85, 0x796175eb, 0xfee7ffa5, 0xdc42c02, 0xb5fdb194, 0x5a186a94, 0xdd0f8d3a, 0x1167bc11, 0xa7e7a27f, 0xed0a3f11, 0x6fe922d7, 0x36070de2, 0x3653d85a, 0x2aa3a7fb, 0x0001d3 }, { 0x4a229aca, 0x64f4c37c, 0x66eb9f0, 0x32252bca, 0xb0bd8bf2, 0x1d3171de, 0x273438f, 0xe0b722e6, 0x6fb34dfd, 0x9dcff8be, 0x8d5685f3, 0x7dc49dd, 0xe1a102d1, 0x84764946, 0xaafde041, 0x884602e5, 0x00012d } }, { { 0xeb7274bc, 0xff72aead, 0xf667c1e1, 0x41d6e4fe, 0xab1af807, 0x375fb7d2, 0xe7c3b0b8, 0xe51cd9a6, 0x4c5fc0a5, 0x94e00c8b, 0x6ca4ee58, 0x9d098f29, 0xd674400f, 0x80016115, 0x53f0e0ce, 0x99b6fb52, 0x000187 }, { 0xa01ccd72, 0xbe628d5a, 0xde8b900d, 0x9f5e0f84, 0x105696ba, 0x1a2729bf, 0xb0a51de0, 0xf780d2d8, 0xa846c591, 0xcfe1a80e, 0xcb6034af, 0x9cef45fb, 0x93ba40c9, 0xeae0de92, 0x33edddd9, 0xc75bf3bb, 0x0001e6 }, { 0xd63cac4, 0xd14144b9, 0x6e0976e1, 0x3d97f1e6, 0xf5061fca, 0xce077a49, 0x94c3c61a, 0x8c7bf9c8, 0x40befcac, 0xfd351bfd, 0x1c8538b6, 0x7d41eb44, 0x7e9b690b, 0x928ee7e2, 0xb3954641, 0x753c76e8, 0x000090 } }, { { 0x86490dd4, 0x6e638eec, 0x34ebbcea, 0x2d1f2003, 0x424e76fd, 0xf60a1624, 0x49bcf975, 0xa562811e, 0xe9a1221, 0xa988e6d7, 0xc4aa6661, 0x5ac8c541, 0xdd8104d4, 0xb973828, 0x96b84ebf, 0x6830d947, 0x000130 }, { 0xe8be3153, 0xacbc1af, 0x1d05b6b6, 0xf23f8c7a, 0xa1911a06, 0x4f813622, 0x5cfa8c2f, 0x3ca49106, 0xd9be3678, 0x11dd0246, 0xa0d2834f, 0xd4340b3a, 0xca84dcaf, 0x1a30702e, 0xedfe4f7b, 0xe728cca9, 0x000110 }, { 0xb04e569c, 0x77013f79, 0x9cf8fad, 0x6ef9bf3b, 0x7d75c39b, 0x41744746, 0x1e1fd11f, 0x92bae951, 0x28760ae0, 0x2e7b3571, 0x48f54c9e, 0x15b9ffa, 0x8ff3625c, 0xb473dbbb, 0xc960439c, 0xd8827dad, 0x000095 } }, { { 0x21f54d61, 0x30516e71, 0xcabd4740, 0x7e397d6a, 0xdaf0b999, 0xefbe653, 0x89d7c069, 0xabe7e915, 0x1455aa09, 0x9a4ffad, 0xbd85199e, 0x4b65ac8d, 0xf4f0b4bb, 0xaeb18ad5, 0x4773d20, 0x4237d7bc, 0x00016a }, { 0xbcfca435, 0xa54f3827, 0x9ec72d89, 0x1f081045, 0x42d64fc, 0xb35fa56b, 0x4e7b389a, 0x561ac606, 0xff65e37b, 0x58bcb1f0, 0x30ceedf2, 0x1d677514, 0xcba410a6, 0x48ce23cd, 0xbed48e5c, 0x81bfb2a3, 0x0000fa }, { 0x782de96c, 0xf4664aa5, 0x28df5bf7, 0x228c86d8, 0x2f52900d, 0xb565cfdc, 0xda2f22ae, 0x48e744c8, 0x22b4e906, 0x4ba43038, 0x37f5f0ef, 0x71e4291a, 0x11c88603, 0x12938a45, 0x40a4ebd5, 0x4798a858, 0x0001f0 } }, { { 0x7ecd2279, 0x4503a1d0, 0xbc4c60a6, 0x669688a4, 0xc4e3e5d0, 0xb9c44260, 0xa7d3f61c, 0x5f260649, 0xcbe8bb68, 0xa0772b25, 0xa8898103, 0xefa205cb, 0x9b19b4e7, 0x8e5bcd16, 0xc3ba5b7e, 0xe6b4662e, 0x000179 }, { 0xb4bbbac9, 0x85b28c2b, 0x2d9d55fd, 0x8ef0146b, 0x31e18e2a, 0xbcdf59a6, 0x90f740f3, 0xa8f809d2, 0xb565a1f, 0x34530c88, 0xd94e18a9, 0x5858153f, 0xe17bc97d, 0xab6b2986, 0xa40f3515, 0x7a01fadf, 0x000162 }, { 0x266d598, 0xd149a9d8, 0x44d22fb2, 0x64322408, 0x2ec22ae2, 0xf7f0923, 0x94f42202, 0xef274be9, 0xc9382d58, 0x2f32a328, 0xf1413470, 0xabbfb6f6, 0x74d20166, 0x76fa2cc4, 0x6a07b4e9, 0x8f3c37dd, 0x0000bb } }, { { 0x5a499a1b, 0x143daffb, 0x771f8d83, 0xb83e0116, 0x8cc39a7b, 0xa481e238, 0x2df1b478, 0xd3af3488, 0xd641385a, 0x56f43793, 0x1fb1eb35, 0x363b9d4, 0xd6a23b0c, 0x4a743c55, 0xd6590342, 0xe9726af8, 0x00019e }, { 0x439e0c20, 0xfba7f31a, 0xc4c404d2, 0xbd90e1de, 0xdab40f02, 0x1f5c6b1a, 0xacec4855, 0xa5418512, 0x39a4106c, 0x61e5b102, 0x60d3482c, 0xf64bade8, 0x99ea6eff, 0xdf77446f, 0xd945d40f, 0x18c35b23, 0x00000f }, { 0x449e04de, 0xcd2254e4, 0xae5f62da, 0xf47b8fc0, 0x8fc4059, 0xc9c44d74, 0xb2ce79d0, 0xbf393776, 0xbedb7bdb, 0x5a2d4385, 0xacefa6a1, 0xf5cd46c2, 0x373502e, 0xc02a9a8a, 0x4a823f7e, 0x6d232ebf, 0x0000d2 } }, { { 0x6e7b7bb8, 0x4640a401, 0x2dab740d, 0xef4cf9e4, 0xbb8f58a7, 0x11392804, 0x61b215b6, 0x7f691722, 0xb07b70b1, 0xbc674e27, 0x9988f490, 0xef236463, 0x86413b87, 0x14aa898f, 0x5e46dd86, 0x37c786c6, 0x000009 }, { 0xaa645dc4, 0xa2e607, 0xdbe1d943, 0xa548b46e, 0x48528d00, 0x7fb2b763, 0x31221cfd, 0x8f462e2e, 0x1bf9de92, 0x8e60d409, 0xa54d44aa, 0xbbbfbf52, 0xd77af883, 0x73b92957, 0xb6206614, 0x3ddbeaa9, 0x0000ad }, { 0xad1fd820, 0x2618b33f, 0xfe3540b1, 0xd4e1eb1a, 0x89c1f16b, 0x718b384c, 0x9aa51eab, 0x4e002d04, 0x4f3bf9b8, 0xa31d2f8a, 0x55750628, 0xeb8a3e0a, 0xd330a000, 0x41266736, 0xc7cdd3e8, 0x5dacd53f, 0x00007e } }, { { 0xee03f2c2, 0xf9c28d74, 0x76ba9066, 0x45c25d94, 0x9e22e2d4, 0xdfe79fc, 0x1d660a16, 0x5d053b10, 0x65023805, 0xc0a87f7, 0xffbdeb34, 0xa7ac1e06, 0x2bfc4d3c, 0xa03ca1b3, 0x91796b92, 0xef29f6cc, 0x00014f }, { 0xf361108b, 0xe790d53e, 0x426caadf, 0x23ee63a9, 0xc9da3a1, 0x7e4651df, 0x7fbaabd2, 0xbad50fe2, 0x245fd419, 0x7aa9587, 0xca006810, 0xcf34d3d0, 0x7e2940fd, 0x2013da8e, 0x1f7fcfd5, 0x5739415d, 0x00014b }, { 0xa67d6ff4, 0xe12bd2cf, 0xaa236d62, 0x15102a75, 0xca954fdc, 0xae7b8396, 0xe7178a7, 0xab39f285, 0x4d477b50, 0x67c621b1, 0xa8be03a3, 0x8d7b8407, 0xa2ea1a1c, 0x9883703d, 0xcb012ced, 0x33359839, 0x0001a5 } }, { { 0x681994ed, 0x7ca569f5, 0x9e107c5b, 0x67e369e9, 0xb3670655, 0xa242542d, 0x242ec959, 0x1837cbe2, 0xf80c2076, 0xca8c7c6a, 0xb1931189, 0xa12d8233, 0xe845e8b5, 0xfdf338a4, 0xf81dd1d9, 0xd01ff06e, 0x000042 }, { 0x6958673, 0xf1d06872, 0x72c815f4, 0x8e4857d0, 0xaf817472, 0x2c3980bf, 0x45d974ea, 0x21fbd914, 0x7820c0a, 0x2f59ddeb, 0x6b259d33, 0xb10d0de0, 0xae13a0b7, 0x2c309d2c, 0x8bb9cc5a, 0x52220ba3, 0x00011c }, { 0xc53d404f, 0xb1dec101, 0x4ad65a9f, 0x8abb1c96, 0x3e03c421, 0xf7e264c9, 0x6d39f46d, 0x4d271754, 0x8b2b87b9, 0x3affa63, 0x36ef437d, 0xb57bf849, 0xc4a58620, 0x1b2a9fd7, 0x52a03f87, 0xc8170446, 0x00006d } }, { { 0x7ebe8140, 0x7035cc2, 0x92af1994, 0xd9679317, 0xf7e8aa6f, 0x32818a40, 0x4f50a174, 0x58e2bdc8, 0xac885d42, 0xaf99b33, 0x91b0f147, 0xe18d98c4, 0x693b140d, 0xa55f047c, 0x87ac04b8, 0x3db70abb, 0x00018a }, { 0x56cacf6f, 0x2b2acf90, 0xf7c3324a, 0x7df5f193, 0x637f59d9, 0x3d7251fc, 0x72330f14, 0x53706dd4, 0xcabea4b, 0xdee1c9df, 0x8adc3523, 0x2c74be6f, 0x6c254502, 0xe5e5ddbe, 0xddbcca9c, 0x95df4803, 0x00007d }, { 0x280a8205, 0x35effbbb, 0x67c42726, 0xd748e5e1, 0xa851c52e, 0xee0bb20f, 0xbe9fcedf, 0x9de6d79c, 0x43ab1bc9, 0x2cffb9ee, 0x6952bb6b, 0x80bd1f94, 0x55eba6fa, 0x50bcfa2e, 0xf7e211d5, 0xf163df70, 0x000106 } }, { { 0xa57e6f3c, 0xfae7c05c, 0x257f66c4, 0x58db1c8b, 0x9cf766b1, 0xb2f558e8, 0x3b1ef334, 0x764f6d61, 0xab63bf76, 0xbb980346, 0xa84a0e99, 0x458107b4, 0x2e334e69, 0xbe273b0e, 0x8324591e, 0x5de50203, 0x0001d2 }, { 0x4024cd95, 0x199f89ed, 0x778c846, 0xd5fc2e60, 0x1a7c52fa, 0x3133bb21, 0x1d1aabd2, 0x5f09d09e, 0xeef44f54, 0xde1e458, 0x298beab5, 0x23f7f191, 0x7a50919e, 0x8e510eca, 0x32d604a, 0x8f0b3d0b, 0x000030 }, { 0x1e1f640c, 0x6386ae77, 0x9d1d20db, 0xb4e9e24b, 0xc07ec984, 0x1446a031, 0x79cdfcc2, 0x43591143, 0x25264077, 0x17cf0773, 0x41511f6e, 0x89aba3e3, 0x6ac5b203, 0x5d8ce900, 0x6d4d579b, 0xed731e5a, 0x000168 } }, { { 0xfa0cf8f4, 0xfd24a19f, 0x6623000, 0xe6bbc1bf, 0x99f559a0, 0x986b41ca, 0xc2b38757, 0xd0c8e722, 0xe457c5dc, 0xf250c5b3, 0xeb94ae0b, 0xad33a838, 0x70d725ca, 0x4ac0270b, 0x38d9336a, 0x27f89c0, 0x0001f7 }, { 0x115c3d25, 0x1d451373, 0xedb5ade8, 0x8bca969e, 0x2db982d5, 0xa7d905b, 0xfb49875a, 0x8434b02e, 0x93268181, 0x5f11a19a, 0x37ba8496, 0xaaeb7c64, 0xd52285ce, 0xcf6aecad, 0xc76aa001, 0x11e1dccc, 0x00007a }, { 0xcda814cf, 0x51e6a22e, 0xe366b068, 0x770e4809, 0xa3bb394b, 0x1365840b, 0x36324c18, 0x40b99514, 0x4b76f3ab, 0xcd868f65, 0x58125217, 0xf75344bc, 0x23bab256, 0xb7bb158, 0x754e7e92, 0x1694bada, 0x0001e0 } } }, { { { 0x49e8cddf, 0x4bc232e6, 0x5c24491c, 0xabd7020b, 0xe8063eed, 0xb0ffaf4c, 0x323b15c8, 0x4f15b740, 0x75d03761, 0x48728d, 0x86340825, 0x72be43c, 0xc2cb30be, 0xdb5945e3, 0x5e5e1977, 0xad088078, 0x0001f7 }, { 0xb68a8db4, 0xf863c525, 0x1ddac08d, 0x497cc0a7, 0x16a8265c, 0x28f7d232, 0x509d17c0, 0xe9144fdc, 0xec46bfa3, 0x79afce48, 0xedbbc1d2, 0xe03da226, 0x5d482271, 0x461c66ff, 0x133b1e3f, 0xd0c89f7c, 0x0000f4 }, { 0x370950d6, 0xe6a7b663, 0x68af26d5, 0x8335699c, 0xc8c39265, 0xa0b63d03, 0x927849fe, 0x72e28a3f, 0x312a1967, 0x34f8bbe5, 0x1fe8f639, 0xa7d32ff0, 0xe15fccf1, 0x3ec61545, 0x34a36dd6, 0xb836a342, 0x00004d } }, { { 0xe354b943, 0x6b4bf771, 0xa53958de, 0xef3dfa57, 0xb71f7937, 0xa459f1fe, 0x74388dfc, 0xbc8a676a, 0xa05a6e32, 0xcc6ebe8d, 0xf8762b78, 0x2cc5a65d, 0x46d64862, 0xcb4ec609, 0x507b50c6, 0x7f0c7741, 0x00019d }, { 0x735d3b19, 0x5ec00334, 0x9837a156, 0x8f6a5586, 0xf846dc26, 0x5634fa4b, 0x5c341b84, 0x7c321705, 0x45afc060, 0x4413f898, 0xbd4f84a1, 0x281d80ef, 0x75437e3f, 0xa2e4bdfd, 0x2334cd8a, 0x1641be5d, 0x0001c8 }, { 0xc6a6174, 0x66edacd9, 0x4e9b150e, 0xfb1dbd9c, 0x907b4588, 0x1bd0b249, 0xf9c02469, 0x9b83e0c9, 0xe68429f4, 0x8b5f14f7, 0x6a867a7e, 0xb073693f, 0x27550a32, 0x6770fdf2, 0x10468693, 0x2b249443, 0x0000f6 } }, { { 0xbb89ebf4, 0x18406455, 0x19af14f6, 0x22ef0124, 0x3ebc7fbf, 0x44e31572, 0xf411e98e, 0xa46ac736, 0xdcdf79de, 0x79bf467b, 0xf33c076e, 0xe9fefc1, 0x21fbb56a, 0xd28fb194, 0x1ec6c493, 0x7e19ac82, 0x0001b9 }, { 0x9a67dc10, 0x7a733e9f, 0x9df854ea, 0x9118ce72, 0xa8544580, 0x7349bc6e, 0x6ed1e64d, 0x364b7dc1, 0xa3a9e1f4, 0xd406256c, 0xfb6e469f, 0x210698fa, 0x5be77aa9, 0x8c298a0d, 0x446140a9, 0x21803e19, 0x000137 }, { 0x7fe41b92, 0x15c9e229, 0xf367d650, 0x3c1103c8, 0xbac0e005, 0x5dcc267f, 0x621ed953, 0xa069d62b, 0x572d6c2, 0x8359d3d0, 0x5565bafd, 0xc9292e73, 0x5f13955a, 0xe7d95a89, 0xaef8378f, 0x2b1ffaf2, 0x0001b8 } }, { { 0x4a733a89, 0x2556d81e, 0xbd267687, 0xa49343aa, 0xbb6f6afa, 0x843b6b6a, 0x9ef2141b, 0xa27c5bb3, 0xad476054, 0x8910031a, 0xd1804845, 0xc6bfcd73, 0x9ec08492, 0xcb4b492e, 0xd551f4ee, 0x3c842895, 0x00017c }, { 0x25f88672, 0x27be7725, 0x432a7dca, 0xe7cfb10c, 0xd16dbc21, 0xd8eccbd1, 0x991b87d4, 0xa7c648eb, 0x73dcfa76, 0x239321c9, 0xbd5deda1, 0xbf2347f0, 0x9e14d8fe, 0x62c19b35, 0x33a4db11, 0xb5bdbca8, 0x000036 }, { 0x5afa7e64, 0xe59ca7b9, 0x607ad808, 0x3a16aa1f, 0xf30bb776, 0xb9a4bc25, 0x418aaafa, 0x5af21655, 0x4c0c9e61, 0x8a029532, 0x2bcc388d, 0xe4ba5f8e, 0xb5cee56b, 0xdddd25a9, 0xa11607f, 0x9bde95d8, 0x00009d } }, { { 0x1d1e37bd, 0xcc77c142, 0x48caebcf, 0x900f2534, 0x6a127ced, 0xe6bfeddb, 0xa78d51ba, 0x1624e67f, 0x9580379e, 0x88106229, 0x4d0a0d0e, 0xac7fe17a, 0xa091052a, 0x54fcb577, 0x8d1cc230, 0x21ae7c4a, 0x000115 }, { 0x2708a59d, 0xaf16c295, 0xece89db2, 0x33a32a0a, 0xc76a89a6, 0x4fc62dfd, 0x3f5669a6, 0x6fe4de94, 0xa1e5525f, 0xe4a723ea, 0x6ef87da8, 0x4cc6d2b4, 0x62bb70be, 0xd0eb9f61, 0x20ca8867, 0xc6fad091, 0x000159 }, { 0x9e1cea38, 0xece42e38, 0x16a05e80, 0x3b87b3a7, 0x2580bbfe, 0x292a6466, 0x3dc3e5fb, 0x6c85790d, 0x2ab42a2f, 0x5e99ac8e, 0x811963f, 0x18dc91d4, 0x653f1894, 0xb6a59930, 0xde10b471, 0x7e92266e, 0x000149 } }, { { 0x6108a5b1, 0x9221ba99, 0x220b3c32, 0x187032bb, 0xf99f25e6, 0x5615a61f, 0x66675207, 0x3c279d40, 0x59cede6, 0xf3bb4a6e, 0x41bf3d09, 0x5acb057a, 0x8eb1c8bf, 0xe9a7a955, 0xa4a817bb, 0x81ec8401, 0x000198 }, { 0xb8aea64c, 0x9f44d48c, 0x3aefbd5b, 0x149d8a48, 0x8d8b09bd, 0xd44cd78d, 0xbdd7d466, 0xff35c58a, 0x35fb552b, 0x6bb088df, 0xc3b06fe1, 0xe9949f7d, 0x55282424, 0x9cfe5c0d, 0x58a7b873, 0xe3aabe0c, 0x0000d5 }, { 0x12f65872, 0x74f02ad9, 0x5afd8c3c, 0xe1b1ca86, 0xbedb1fe4, 0x3ee6564e, 0x647f6135, 0x64d63c6f, 0x67c75458, 0x4e151908, 0xf157539, 0x57d95074, 0xaf49ace, 0x9e7f669d, 0x2ab3c297, 0x909d3ce9, 0x000078 } }, { { 0xe4a2d02f, 0xef136e99, 0x1349eddd, 0x2e3c5636, 0x4c91e8ef, 0x775195a1, 0x3b4fd994, 0x44e50a61, 0xab8a8377, 0xcb63098c, 0x140e245c, 0x929e9a09, 0x51c03b65, 0x9a47ff66, 0x3f71bdd, 0xaa60189e, 0x0001c4 }, { 0x31e3a0e5, 0xa8d26630, 0xea61fb63, 0xf0e9f302, 0x726b6771, 0xe9533949, 0xad1807ca, 0xc6b729c9, 0xd8913888, 0x515dcc2, 0xefaf9f33, 0x8b2c4f52, 0xbd19081f, 0x1f71a0aa, 0xa1de875f, 0x6b0659ec, 0x0000e5 }, { 0x82152d77, 0xadc1d67d, 0xdf19244b, 0x4a5bc19f, 0x7f484aa9, 0x2f1a3f68, 0x745b9b98, 0x1e587fe3, 0xfafe3ea2, 0x182e76b6, 0xee214a75, 0x24a38815, 0x58d40a43, 0xf494b311, 0xd0a5eb71, 0xb4b26dac, 0x00015d } }, { { 0xb5237816, 0x8d4d39ea, 0x9aa65bd6, 0x3c62cd93, 0x4b5b07a3, 0x3f8fc824, 0xeee66336, 0x8ac4c549, 0xc70ca804, 0x5473d7c9, 0x18d33ec1, 0x1cb655a2, 0x90ea4acb, 0xcae5c1dd, 0x60951e17, 0x9564ad37, 0x0001d3 }, { 0x64b01a93, 0xf8e4a109, 0x988d8df, 0x2956c0cc, 0x1ca30660, 0x5c1d23e0, 0x8b3a4dae, 0xeb65ff82, 0x4a804fe9, 0x8f607f16, 0x8b663129, 0x30ad2e04, 0x8f29eda2, 0x47521be5, 0x76c1d487, 0xba8fcfa6, 0x00017f }, { 0x9b0b5320, 0xe01e1fd9, 0x507f34c, 0x2de87fbf, 0x43a5c01d, 0x9e1dfbf, 0x51c576e6, 0x47103be3, 0x740dcd89, 0xc43ad22d, 0xfd5c141a, 0xad06074a, 0x6960295f, 0xf20d73c6, 0x4632206f, 0x5a89b6c6, 0x000025 } }, { { 0xb7c5d10d, 0xda11bf9b, 0x7cda9988, 0x24c88762, 0x2f8a84a, 0x49b88b94, 0x8a25d744, 0x396c58e5, 0x5bd09abe, 0xb50fe191, 0x91e5fc, 0xe4a7ed72, 0xd67a0d66, 0x71d794d4, 0x17262f95, 0x93c969e3, 0x0001a1 }, { 0x772f12b7, 0x57b12b3a, 0x368d4c7e, 0x9a14bb3f, 0xc9d47c7a, 0xc274f066, 0xbdfb382a, 0x35d1f862, 0x7147685d, 0x477d9e1f, 0x701db82a, 0x7c0370d5, 0xa0fe6cfb, 0x930a6596, 0xfe9c33e, 0xd341b7ae, 0x000184 }, { 0x820ce63e, 0x682f3432, 0xe6132485, 0xd3c3dab2, 0x777ab727, 0x146d66b6, 0xf839b0dd, 0xd73480fd, 0xb5a1a597, 0x21dfd309, 0x6a9aeb11, 0x8e5fd2c2, 0xe4f40a1f, 0xbc96cd05, 0x5de8bd2, 0x857dd988, 0x000003 } }, { { 0x7582299b, 0xaafc7cfe, 0xe8347f7, 0x683deec8, 0x2fe74515, 0x8cb6b3c5, 0x6d898e0b, 0x92e91e33, 0x35a9df39, 0xd107046a, 0xd8e4812c, 0xdbfcf47d, 0xe8558383, 0x765d6caf, 0x9c19d0ef, 0x229b7b7f, 0x000156 }, { 0xa81a6957, 0xb4d18508, 0x41f6762, 0xfe3095c4, 0x7910a8f5, 0x106c2b5d, 0x9a5b7986, 0xf1a925bc, 0xd80ac91a, 0x5ee73854, 0x4bbe36f5, 0x5e05751c, 0xbb989df6, 0xcee4cff5, 0x4121a86d, 0xe8503e5a, 0x00013a }, { 0x7d959af6, 0x57d30a66, 0xcf9daebc, 0x7fd2e8ce, 0xccb7cee6, 0xd4fe1745, 0xba0f1feb, 0x8b962a52, 0x7239f68d, 0x165a0863, 0x6c67d60b, 0xd08721c, 0xba58bb0, 0xb35aed83, 0xe11900bb, 0xb4f7fbb1, 0x000130 } }, { { 0x98742a0a, 0xae1d31a9, 0x85b89e48, 0x3c5516a6, 0xbbe1e08c, 0x76fe8962, 0x58f7987e, 0x4d4bb9a1, 0x6724911d, 0x942d2ba6, 0x120d4e88, 0x72861177, 0xa7052338, 0x82e4740c, 0x556e7bd5, 0xdd0af83c, 0x0001c4 }, { 0xb6a3b12b, 0xa08dbde0, 0x7055d689, 0x96daba74, 0xf7fe0092, 0xd82b363a, 0xcd7c4cf0, 0x9f5632c8, 0xdc18c596, 0x47e6ea24, 0x2042bf25, 0xe13bf8d3, 0xc445b244, 0xe6f2beae, 0xb409c565, 0x472608d4, 0x00002a }, { 0x108fd40b, 0x36b4724c, 0x4398310d, 0x36540c21, 0x68f0ba51, 0x966d4004, 0x6bd54a7f, 0x328a9176, 0x66ac2d72, 0xa0011081, 0xe3788c19, 0xfb4ae5d5, 0x52f49d63, 0x249de693, 0xf3094df1, 0xda47312, 0x000084 } }, { { 0xcf6964a6, 0xde994348, 0x7639cf0d, 0x298426d5, 0xc3e3813b, 0xf0ef27c2, 0xf2031a89, 0xd4b54877, 0xa426def2, 0xe849c7cd, 0xd944c9de, 0x68bb2193, 0xdc9c7772, 0xbf683794, 0x83aee0ad, 0x80f28399, 0x00006c }, { 0x310ed6b5, 0xeab883c2, 0x8f358f1b, 0x25087eda, 0xb4a33e61, 0x2b52af4, 0x9706025b, 0xca6a2c56, 0x40d5bd9e, 0x22c8742c, 0x22504b73, 0x14a2176e, 0xaffb453d, 0x39d443aa, 0x7e52803a, 0x7be765d6, 0x000173 }, { 0x8be96c7a, 0x798e1c4b, 0xb82856c7, 0xe942913b, 0x38bacf7, 0x4c275e7d, 0x642db57, 0xa5a534a8, 0x8bcd36b9, 0xa5b521d7, 0x593d1e74, 0x5b371420, 0x8d5ac33e, 0x2e62082f, 0x18dee877, 0xdfc2d8ca, 0x0000fc } }, { { 0xfa6c799b, 0x3d0a8798, 0xab7b3870, 0x30c75300, 0x9f48f410, 0x5b80bc92, 0x6df71d98, 0xb251974a, 0x36147cae, 0x32211222, 0xc7eb4912, 0xf2c27190, 0xc047f764, 0xe715445c, 0x1f75c634, 0xbc68e112, 0x0000e2 }, { 0x31464527, 0xab471f51, 0x364a48c5, 0xd4739761, 0xad46f096, 0x38c2cd6e, 0x32519412, 0xe4722d9d, 0x3dc2493c, 0x7d06f8de, 0xc5803783, 0xc422243a, 0x651bd2d9, 0x71aa716c, 0xd30dffa, 0x4504c09f, 0x0000fe }, { 0x5e653cd3, 0xeed42757, 0xbd219620, 0xccbbf056, 0x70913694, 0x704b5350, 0x6ff5884b, 0x7c9e0fbe, 0xc78d9368, 0x37f7c994, 0xc9226bf1, 0xb5b0a8dc, 0x42599c2, 0x30dc474c, 0x1bd120a5, 0xed31199f, 0x0000b1 } }, { { 0x4efb405, 0x7b52e562, 0x1dd5e819, 0xa128134f, 0xce8dee44, 0x6fac79b8, 0xeec031cb, 0x3e6cd51c, 0x16869663, 0xa95bde19, 0x6652c47a, 0x42167975, 0x79741484, 0xb9c71f00, 0x98de6269, 0x427c00b, 0x000133 }, { 0x9f3e407a, 0xb1b9567c, 0x3a834742, 0xfcc7b5a7, 0xf09c2755, 0xf4674343, 0x6da8278e, 0x1a7d92fd, 0x560415be, 0x1d424d35, 0xc0375ec7, 0x35166639, 0x3c9c3a7e, 0x7e93c4f4, 0x18bb3e09, 0x7d0350d0, 0x0001c1 }, { 0x41cc83aa, 0x1d77c0db, 0x2e3eb7af, 0x7a4c4af4, 0xe3a03bc9, 0x47bf2e90, 0x9f9b08a2, 0x8c2ba62c, 0x4b498d89, 0x925e0231, 0xf2c344a1, 0xdcb1ab9d, 0xfe4333a8, 0x1afa539b, 0x52e01c02, 0xb0a95dd8, 0x000131 } }, { { 0xe5ffc0ba, 0xa35dc513, 0x7ce0f086, 0x515218c9, 0x1910019b, 0xcfa8f39d, 0x3e69bac, 0x4345996, 0x2adb9e39, 0x8a2ab02b, 0xd4b4befc, 0xbfd543d0, 0x50a2e879, 0x8d698928, 0xb11e5dc4, 0xb7d9473, 0x00017f }, { 0x76c03226, 0x54f99be5, 0xb14c4bfc, 0x72f64437, 0x3ad3d27f, 0x7f1faa78, 0xe9f8b6be, 0x73c13118, 0x413ff7c6, 0xf4956268, 0xd3777086, 0x6c10f4d0, 0xfea46f8f, 0x3de33438, 0x45b488ca, 0x7ed46438, 0x00007f }, { 0xefaeb785, 0xd375d6d0, 0xf010e765, 0x708cec1b, 0x4be481ca, 0xf60e33f, 0xf1725162, 0x6073287e, 0xd6de189c, 0xd4defb42, 0xb3f8d88e, 0xcf591dc4, 0xda647150, 0xe0609e, 0x1d85878a, 0x41b71e01, 0x000083 } } }, { { { 0xef762b27, 0xe3f0092e, 0xa6c58ed0, 0xfa313291, 0x77d79bad, 0xa832e248, 0xd3e1b6d9, 0x3582be07, 0x6f7d3534, 0xb378f38f, 0x50717189, 0x85f9cc9a, 0x6c2e604f, 0xcf00936f, 0xbfaa469a, 0x716e79f5, 0x000038 }, { 0x37f10a87, 0x81e291dc, 0x3e52cac6, 0x4fb6e770, 0xab0f556c, 0xe2104020, 0xb7f22113, 0x1df23ab3, 0x5c3170e2, 0xe78cde72, 0x44d997dd, 0xf6bf6c87, 0xe13c5873, 0x3d658100, 0x91ba1fec, 0xf59a0e4c, 0x0001a8 }, { 0x9496e07d, 0x69be2a13, 0x3f63933, 0xb2c0b159, 0xc4420d4b, 0x4c2bc24b, 0xb35bbdab, 0x10edc881, 0xde93b5b6, 0x99515f9, 0x773eb05a, 0x4ef8690b, 0xcb29b8c6, 0xd2e28dfe, 0xdb70da0b, 0x164c978f, 0x000182 } }, { { 0x6e620aee, 0x2542ba73, 0xcf4e3b9b, 0x268e3752, 0x123c7b7c, 0x6298e3cb, 0x6c3c5221, 0x95c637bd, 0x7c4fbcba, 0x818ddaef, 0xb8281668, 0xd00707cd, 0x1aa2039c, 0xbc0a940, 0xe31e69af, 0x8fd2c67a, 0x000143 }, { 0xc6fc697d, 0xd1ea62ca, 0x88908a86, 0x645894c5, 0xf827d6e2, 0x50fa2dcf, 0x74f11d8f, 0xa8b96064, 0xda54d9a5, 0x4d455222, 0xa756efe, 0x8f86e4e5, 0xd4d5402f, 0xf5055bf0, 0xdc00f62e, 0x683ec516, 0x0000b4 }, { 0xb2df5414, 0xb0154348, 0x5f13eed7, 0x88a4ff, 0x5941f03f, 0x5fac6c98, 0xaadbb431, 0xb9e1db79, 0x84491d04, 0x68101788, 0xd5cf7947, 0xe26a3982, 0xfcbc1b6c, 0x5e77335b, 0xbc8674c2, 0x59ef4fc8, 0x00013d } }, { { 0xe4641b5d, 0x137609f5, 0x443b54d7, 0x322970b3, 0x55718430, 0xb986d75f, 0x5dc53b2e, 0xe18a00e7, 0x3447e19f, 0xb28626, 0xe458748b, 0x11a5b8e8, 0xc60cef43, 0x63cf2dd8, 0xe18ead8f, 0x5f3d6e27, 0x00016a }, { 0xb6490484, 0x16484157, 0x1dd46294, 0xca5a46ee, 0x57a1d400, 0x2a18aebc, 0xee3a099a, 0x598bee0b, 0x82dee990, 0x23bf4738, 0xf7551521, 0xe5f6ab86, 0x3ee71bd0, 0x31894add, 0x427d4010, 0xfb01c135, 0x000067 }, { 0xef13611f, 0x9d9d8c0a, 0x39de55ec, 0x6c1daeca, 0xe84f70e3, 0x29f863cf, 0x59407e59, 0xc2d6195b, 0x98f0b264, 0x936d50d5, 0x22c0f197, 0x1a21ef2f, 0x53b36088, 0x44d413ac, 0x133e7be9, 0xdb405470, 0x0001df } }, { { 0x137ac977, 0xeacfa8ea, 0x41a24e99, 0xa109993d, 0x5ec1cf3b, 0x3aabdd33, 0x33abad2c, 0x8a3d9a0c, 0xc8567a8b, 0xdb521e83, 0x41da72f4, 0x997d42cf, 0x3006c460, 0x309daa7d, 0xb53a9a6a, 0x91c99298, 0x0000c1 }, { 0x19d7a8df, 0x4750e3ca, 0x7152a871, 0xc0f580b2, 0x72d4a838, 0x1021e434, 0xfe21636f, 0x7df829c1, 0x333a59d4, 0x3c2c381f, 0xf62269b8, 0xe84d9dc9, 0xe9475385, 0x9a6b9eeb, 0xd9b7c1a4, 0x246882ab, 0x00011e }, { 0xac7fa04e, 0x3b2f3c0b, 0x796c3170, 0xb8e1e8b7, 0x92a89f82, 0xfe774760, 0xe2d2794a, 0xd62658b2, 0x261d28dc, 0xe025d1ef, 0xd847658e, 0x6135d9c5, 0xb3de34bb, 0xd3a38e32, 0x9225e68d, 0x625926e5, 0x0000c3 } }, { { 0x557fe54d, 0xfc129b73, 0xd208db1, 0x4f8885d6, 0x627256ba, 0xac19f583, 0x7948720f, 0xe1636130, 0xdd553d2d, 0x38a59e56, 0xbc63daaa, 0xad6d72b1, 0x64d44139, 0x8b5579d0, 0xd4d44ba3, 0xb095b5c0, 0x000081 }, { 0x124d0168, 0x19f5f41, 0x22a544e3, 0x825ce6c5, 0xf17c9fee, 0xa74358b4, 0x3c181a4, 0xc4ef7771, 0x6c622879, 0x36ff4453, 0xb57a210, 0xf1c27004, 0xfb055fdb, 0xccfadc0e, 0xca8fbb22, 0x1cb76629, 0x000067 }, { 0x339741b7, 0x45234f91, 0xf9ccf3bd, 0x87f4f53c, 0xdbeb774c, 0xb6c93b86, 0xd8d14616, 0x47475848, 0xf8233d1c, 0x6a60dfcf, 0xbc7dfe1a, 0xabb14d33, 0x74aaab43, 0x9cea4688, 0x8ec955b1, 0xca990f57, 0x000157 } }, { { 0xc0072e0, 0xce989a63, 0x519618e3, 0x4f0d29ea, 0xc87c064f, 0xffc4fc02, 0x7b7a8d2f, 0x66504078, 0xa7a3a704, 0xfc6b0f24, 0x8c9b44f2, 0x55896f23, 0x5ea62637, 0xc2b7e1c8, 0x9fc3d768, 0x7c7a2fd9, 0x0000c1 }, { 0xe6a41526, 0x686da9e0, 0x7fe877ba, 0x482763dc, 0x35503cf3, 0x39647b54, 0x9441089d, 0x222718ac, 0x1614fd41, 0x4cb6b0bb, 0x79e79a1c, 0xf595b647, 0xabea4b48, 0x6352d894, 0xf5aa9582, 0x210ee3fe, 0x00014c }, { 0x4f07b335, 0xa6ded8b9, 0xd7999195, 0xd909fc7b, 0x8e2357e, 0x367d0c01, 0x84eae749, 0x3a895461, 0x1343c675, 0x919f409f, 0x49530fc8, 0x9f69c5a1, 0xfe0bd615, 0xc01800ab, 0xe62d9676, 0xeb9879e4, 0x0001f8 } }, { { 0x52ab63ce, 0x2966f822, 0xdd0ea489, 0x12b283ca, 0x6f1a81d4, 0x8eb4ec99, 0xcac74e7, 0x73296814, 0xf0a639c5, 0xf18da29a, 0x4b8e4da3, 0xc0174653, 0x294e4887, 0xbb6f5e50, 0x4637eaa2, 0xd861148b, 0x0001cd }, { 0x15a6138c, 0xb7679f19, 0x3d30f0ce, 0x2f23b2, 0x17f86bf2, 0x3436a0e0, 0x98a12a1c, 0xdd57587, 0x378b9e6d, 0x22bc7460, 0x2143f9af, 0x31e2350c, 0x34a5424c, 0xc7d20e1e, 0xf9c6a0b, 0xf3ed7e3, 0x000115 }, { 0x971173b8, 0xbcf5b65d, 0x6d02026e, 0xa7b2eae5, 0xfef188f8, 0x11bb3d32, 0x247a219c, 0x79a06a89, 0xe5ab695f, 0xd2252e92, 0xb3069d20, 0x1206310, 0xc6e6deff, 0x4ede0cd5, 0x6a1de487, 0xff647422, 0x0000fe } }, { { 0x51a8061a, 0x6d0be692, 0xa08d7608, 0x558e45d5, 0xeb50cf9f, 0xe8d221ca, 0xb24f3d30, 0x463eb643, 0x75c010c5, 0xb9e08d3e, 0x42c3c32b, 0x9f616580, 0x5e4658e7, 0xa154cff7, 0xd635c1fa, 0x1a2cf88a, 0x0001cd }, { 0x65718982, 0x62b697d0, 0xe9ba559c, 0xa65cf511, 0xf01ad42d, 0x8ed45907, 0x7b517e6a, 0x67de67e1, 0xdd971ce5, 0x81279bf6, 0x7ce2427, 0x94f9842f, 0x640a0956, 0xe325bf24, 0x8e9548e2, 0xb137901, 0x00015c }, { 0x2a1023ed, 0x45e3006e, 0x92445ea1, 0x9d44bcc4, 0x73157f5a, 0xd3b2824a, 0x74644aa3, 0xa7414284, 0xbdfdb75e, 0xe781c034, 0x78061100, 0x70adffe, 0x70d4e26f, 0x2f9a4564, 0x3434ac43, 0xedef453a, 0x000134 } }, { { 0xfa138fac, 0x60bffdd8, 0x847c00ae, 0x10bece71, 0xd17cfc33, 0xf60083d9, 0xcb48faa, 0xe943fdb6, 0x3bd2ef1f, 0xf93593e6, 0x6529b20b, 0x8169fb87, 0xc8e14f65, 0xc0ec3118, 0x90ff47eb, 0x9d8d706, 0x000158 }, { 0xac91a2c7, 0x8ccf826d, 0x83165ea0, 0xe7653b14, 0xd7902839, 0x5d459231, 0x7c33d6cd, 0xc49b64b, 0x9dc96d35, 0x1a9f54f7, 0xe5bf33c7, 0xddf66016, 0x48387261, 0xf9414c80, 0xaf47637f, 0xcacaa646, 0x00009a }, { 0xcfc3a0b8, 0xe498d21c, 0x87e829e5, 0xa4397c6d, 0xe11fbbd, 0xbf0734ab, 0xdf4bdb7f, 0xd92ee0e3, 0x3287a1bc, 0x18f8e6c4, 0x3754ad85, 0x72c2e20a, 0x31e64431, 0xa32fd99e, 0x2cccabab, 0x9bd4d568, 0x000105 } }, { { 0xdcc44f03, 0xcb686724, 0xf92d696b, 0x8b662947, 0x18e0d8d7, 0xcb28c29c, 0x6e77780, 0xd3fb90e7, 0xe95a6861, 0x1469e3d0, 0x37284cbb, 0x9cce5131, 0x163f6c5b, 0x1e5db217, 0xb0f1071e, 0xd66806b5, 0x000172 }, { 0xd4be38fe, 0xcfa43ad9, 0x8db06b60, 0xfc05ce5a, 0xf638aa6d, 0x57874359, 0x7d30b4f3, 0xc379f767, 0x74f78cc, 0xca77f326, 0x3f2e60ea, 0x8a8cae34, 0xc778a5c, 0xc87479db, 0x1fc0c14d, 0xf013f433, 0x0000d1 }, { 0xeeec2288, 0xdcc4524a, 0xa5a69e2f, 0x26aa83d2, 0xdd105b5e, 0x84c7f075, 0x5545843b, 0x13b8f487, 0xdaebe97f, 0x1e153c7f, 0x3c8f74af, 0x7e062708, 0x2cdde17b, 0xbeff926e, 0x4df3a076, 0x43b8e606, 0x00013d } }, { { 0x8259b6bd, 0xf122565b, 0xa4d92f14, 0x48668d37, 0x31b60aa2, 0x62ccfa86, 0xcd3e1502, 0x2e6f9303, 0x242ee722, 0x7cbd7487, 0x3c014dcf, 0x986b6e57, 0xf790d57, 0x9c7e24b, 0xe32f7525, 0x8e1a0de4, 0x0001a3 }, { 0x51bc015e, 0x230f7fed, 0xa6647b53, 0xcc7e4a5e, 0xb0f55f26, 0xda0e9253, 0x3ff85072, 0xa73d4b71, 0xd7b04c15, 0x777bd29b, 0x75621332, 0x19a2370e, 0xe3be1c6b, 0xd4fab14e, 0x1cc44d68, 0x4a0a3ebc, 0x00003e }, { 0x8f0ad595, 0xb6541ddd, 0xe5f51079, 0xb757ec31, 0xa0dec3eb, 0x53366d5c, 0x108cf658, 0x59187724, 0xb07cde75, 0x47a9baa6, 0xaab45031, 0x54354242, 0x708c2393, 0xcdf1a3ce, 0xd892f395, 0xbcef7e7b, 0x000191 } }, { { 0xbffed3ec, 0xc9233745, 0x4a229a93, 0x218adbbf, 0x6ddaaeb5, 0x2b55df1b, 0x3623edf0, 0x444a569, 0xeb44ee81, 0x12d141c8, 0xbf866802, 0x93d80b4a, 0xd868ffcb, 0x8479ee8, 0x2a4ef17, 0x429cb36c, 0x0000a0 }, { 0x55b0dca1, 0x891ba9fb, 0x5fe446d5, 0xef13a213, 0x26b485a3, 0xceac2285, 0x9621c749, 0x344c4dbf, 0x81fcf8f3, 0x4dfdcf93, 0x6f694ec9, 0x396e6a89, 0x5a09c4a7, 0x821a8cf9, 0x2d69bbe2, 0x4e46f68, 0x0000f0 }, { 0x22c05df, 0xb8a80ceb, 0x6b1ceb25, 0xa3c79eb8, 0x26506623, 0x642ae49e, 0x59d9a8a1, 0xff56a2b6, 0x92ca0455, 0x15ca9b2, 0x61106d85, 0x652635aa, 0x60d43230, 0x2bfb2b45, 0xfa191e19, 0x277c8f25, 0x0000a6 } }, { { 0xb95931e0, 0xd039b9fb, 0xd8b8e6c0, 0xa2ec4f7d, 0xafc731e1, 0x2381d41b, 0xd95e759d, 0xa1c01d2c, 0xb0f2a70f, 0x1b5f3036, 0xebf83f6e, 0xfde72812, 0xf1dd416e, 0x65cc1945, 0x4ab53f8f, 0x8e42361d, 0x0001cd }, { 0xcd8605e2, 0x5406d3b4, 0xe7f03a4b, 0xbb586a05, 0x89043607, 0x5cecb3b9, 0xaede1d94, 0xc749037e, 0x7112cb61, 0xb6ae66bc, 0x76a7e061, 0xba2e0571, 0x821d8f62, 0xb256d62f, 0x41f6c16a, 0x8ae6b951, 0x000078 }, { 0x29df9314, 0x1d363bfc, 0x54f7aa34, 0xfcb2f56e, 0xa9069f0e, 0x8a81b5e3, 0x186c8439, 0x91c69e90, 0x444937a2, 0x5b233937, 0x9ce0958f, 0x7fef2879, 0x678e63fc, 0xb4abc4f6, 0xe8e22966, 0xa5e12412, 0x0000c1 } }, { { 0x3a5869ed, 0xffb320cc, 0xa3c45169, 0xb53c0f6d, 0x40c2c4c4, 0x4d7f6a55, 0x9b1bd1cb, 0xa8006a96, 0xc01c635d, 0xc1b04414, 0x161383ed, 0xe208298, 0x84ba223f, 0x8c75ca97, 0xd8bb96b9, 0x1182b9a4, 0x000143 }, { 0xc758be51, 0xb8df0190, 0x801c4619, 0x1bf4060a, 0xbeef7960, 0x9808332a, 0x6ac3e20a, 0x2931205c, 0x2d2d2f01, 0xb5a38dd8, 0x820ae4a0, 0x15910614, 0x1dac569f, 0xf692a253, 0x68bf0ab1, 0xc22742c6, 0x0001fc }, { 0xb05d13ad, 0xc924e6df, 0x7c97918e, 0x6c76fdac, 0xbb4def98, 0xefb375d9, 0xe2b81f11, 0xaf787086, 0xdc86e9d0, 0x5365d485, 0x9b26e181, 0x7253be26, 0x1e1d8579, 0x91a32551, 0xfc7f1664, 0x839bd870, 0x0001a2 } }, { { 0x8d553ce5, 0x211bb35d, 0xa818fbcb, 0x570e8908, 0xedd84913, 0xfeef3701, 0xb816f27a, 0x1680c16b, 0xc7ff36ae, 0xf2dc69e2, 0x4d7183f9, 0x914b196e, 0xcdad0f02, 0xcec96587, 0x146c150a, 0x31d5561b, 0x000141 }, { 0x7807e1c9, 0x3ae9167e, 0x97bd7f7c, 0x4b780fa1, 0x9081bee9, 0x72fa5ec9, 0xeb05c4f8, 0x6a5c0f9e, 0x4d9f3815, 0x54ac9b7c, 0x81ccb7b5, 0xec472d8d, 0xc0e108b4, 0x1946e5db, 0xa9d05ccd, 0xa14cbdfc, 0x000059 }, { 0x55bc87a4, 0x3f6ddf4, 0xd43e8f66, 0x79284a03, 0x50d04083, 0xf9316da3, 0x8221a8d1, 0x7662998e, 0x3797f798, 0x419b1ae9, 0x718693bd, 0xff50453, 0x4cc498e3, 0x501ed5ff, 0x58c1b57a, 0xb3870117, 0x000173 } } }, { { { 0xdb599f48, 0x2d141bab, 0x7bbee8df, 0xbf921749, 0x84ecebfb, 0x1116c449, 0x928464c6, 0xfbf2edf8, 0xdd30c067, 0x6fac1b21, 0x7135279a, 0x3219d333, 0x6ae247dd, 0x9242872a, 0x290e7141, 0x8b127665, 0x000076 }, { 0x4982698, 0xc45fb8d2, 0xca596f6b, 0xfbc89bdb, 0xaef85b1e, 0x9c15bb9, 0x228f42fe, 0xbdfb5b5d, 0x80f6cb30, 0xcedf6291, 0x27cf6074, 0xf93140d2, 0xe812231f, 0xd983679, 0xfb9d068b, 0xd967a605, 0x0001f1 }, { 0xbe065684, 0xb45dce52, 0x8df59b0f, 0x7e3839d2, 0x2f2b0052, 0xac2ee976, 0xe24fe9c, 0xd7684cb, 0x720417c, 0x91ea4ab2, 0x21bd04f7, 0x60888eb2, 0xf6c99a3e, 0x24cc3c21, 0xe400e02c, 0xd1a47656, 0x00003e } }, { { 0xb0c7124, 0x8e61b05e, 0x84d682b0, 0xcaa772a7, 0x6b7e288b, 0x2c067fa, 0xbd494ec5, 0xd50e79e4, 0xbec915b1, 0x4af2967e, 0xa415b29a, 0xb38660bc, 0x70ebac53, 0x3a63f22, 0xc5a6f58d, 0xee41beb9, 0x0000f4 }, { 0x4160cdc5, 0xb0f50604, 0x38f58148, 0xcf8c12fa, 0x5ea9723e, 0x765a4230, 0xe4fcb956, 0x43583519, 0x78307a06, 0x4782855b, 0xe421a457, 0x39e1f310, 0xa97cdc7d, 0x8c28c641, 0x78149673, 0x871b3b4, 0x00007d }, { 0x8c07a106, 0x413a3355, 0x86022782, 0xf18f4730, 0xdb4dc7f0, 0x72abf8de, 0x9f7ab97, 0xb90fb6b2, 0x42a3c6f1, 0xf3e7afe4, 0x1faa82a0, 0xa504896c, 0x3e1b514, 0xcf0cf9dd, 0xbb5de5e7, 0x52653035, 0x0000b4 } }, { { 0x559613e3, 0x7ab662b1, 0x8efffe42, 0xed45246b, 0xb7553c5, 0xf5305f69, 0x973fcdf2, 0xd6fe9b00, 0x96e163e1, 0xe2443a47, 0xe6903190, 0x6580fdc6, 0x1d6f5592, 0xcd78af7e, 0xec688484, 0x8528cb0, 0x000070 }, { 0x69f6ee82, 0x3844192d, 0x68665cfc, 0x71bd32c1, 0x20e9c657, 0xc7e8915b, 0xca4ed6b5, 0x823a2511, 0x7c775d17, 0x8fc01250, 0x3c351bc7, 0x7ee16dd3, 0xed828718, 0xfcfbfcf5, 0x892104fa, 0xed45615b, 0x000089 }, { 0xc057460d, 0xd5f17804, 0x24698e64, 0x44bba39b, 0xd392b575, 0x49df5132, 0x7a2b00c3, 0xd54177c, 0x6a2030a5, 0x9b03ac4f, 0xf602cf9, 0x50da4196, 0x71feacd1, 0xfaa27396, 0x8f8a5392, 0x75e302f, 0x0000ae } }, { { 0x33d3a3cb, 0xdd825861, 0x4efe61c8, 0x33400115, 0xf955a502, 0xbcc1bc99, 0xadbb8b31, 0x9b98c35a, 0x7c073867, 0xc55c1670, 0x9ae6f261, 0x18e15a49, 0x1a8847ae, 0xbefa9155, 0x6d5d553e, 0xfe128d02, 0x00008c }, { 0x7cae2e6f, 0xfa0675a, 0xc2f5455e, 0xd0551547, 0x51ef0547, 0x50f92ad8, 0xa1bbf420, 0x918eda05, 0x5fe1a0d0, 0x3bf68aca, 0x7253c804, 0x815fc551, 0xd0df002, 0x5da645f0, 0xc4872b0b, 0xdb3dffb2, 0x00010d }, { 0x6689fe79, 0x394a5959, 0x8ac886af, 0x89bbda4b, 0x1745f21d, 0xc0aaa4c4, 0xfb654292, 0x522c2a77, 0xfce31bc7, 0x5d8eaba, 0x646e7588, 0x4dc40730, 0x211935e5, 0x70a59248, 0x90e718c4, 0x8cdf1206, 0x0000ea } }, { { 0xaba394b1, 0x2b1076c6, 0x1fb08a32, 0x9a554f3e, 0xba6db75a, 0x49bd8bc6, 0x7fe38d3a, 0xb51adb36, 0x6c571d44, 0x51c34888, 0xc0b8f79d, 0x8a2c37bd, 0xf616efa5, 0x61ba2710, 0xb72b6645, 0xf3e16533, 0x0001d8 }, { 0x7b427ab9, 0x3374c3a4, 0xb53ba23a, 0xbc22ff0, 0x923d939f, 0x6ea06b54, 0x50c097d8, 0x2e10064, 0xffa5f9c9, 0x929a9cc2, 0xd40bc8e3, 0xc136eadf, 0xf961f27a, 0x137fbc18, 0x73c08ab8, 0xd35ccef3, 0x0001b4 }, { 0x33704b1d, 0x1bfdb47b, 0xe2a2e269, 0x2be9305, 0xf0942cbb, 0x424a198a, 0x5f72b8b6, 0xd93c45f9, 0x900e4bbf, 0xf0f035be, 0xc1af4bce, 0x2627ff13, 0x90ae763, 0xdc4f3f25, 0x90883881, 0xf9de525e, 0x000011 } }, { { 0xd9c7926b, 0x558a6ed8, 0x3321d5f4, 0xb816043f, 0x31db2c9c, 0x198bc8ff, 0xe66cabd5, 0xbd4d5bc1, 0x8d5e827e, 0x23decc3a, 0x5106b331, 0x42baf103, 0x9c982c53, 0xabbdf8f6, 0xa554d000, 0x9e2e9e2d, 0x0000d3 }, { 0xf9742949, 0xf8672aa4, 0x302197de, 0x5df3dadb, 0x70785299, 0x9dd53cc4, 0x668f3f4a, 0xcbcff4c7, 0x427989d5, 0xb397aae4, 0xdc759ef1, 0x666fd921, 0xfc12cb3d, 0x80a6f77e, 0x98fceadb, 0x916d6f8f, 0x00007e }, { 0x3739e706, 0xf52a2ea6, 0xa10d2fee, 0xa63532d4, 0x596584e, 0x60396d4c, 0x4663345f, 0x177ffaf7, 0x2c304607, 0xb7d3ec28, 0xd671994f, 0x60d346b, 0xc292ce01, 0xf867de9b, 0x5b2d2bbe, 0xec18c63e, 0x00011d } }, { { 0x78eef295, 0xb5f20a08, 0xdbd222f2, 0xbff5707c, 0xcafb3d41, 0x72b31765, 0xc607ee0a, 0x1cf0bf18, 0x339dfcc8, 0xd4204937, 0x578d8d19, 0x69e99d19, 0x25ff9881, 0xda695e34, 0x3e797d5a, 0xee97c6a8, 0x000178 }, { 0xcda93433, 0x9d79b35d, 0x39b7d37a, 0xf06f42c2, 0x87ebb4dd, 0xf48c8651, 0x5a4beca9, 0x42d3abbd, 0xba832cdf, 0xe1fdcd9f, 0xe8103921, 0xae1ddd5c, 0x54fd441f, 0xc5b9c704, 0xa214796b, 0x3db47500, 0x0000d4 }, { 0x16ce901, 0xd69e4393, 0x54f0610b, 0xbbf7fcde, 0x75249ad1, 0x87568784, 0x415538c6, 0x270d01c, 0x4b154a0f, 0xd1b098be, 0x97de6e0b, 0x7be0d49, 0xc034fa81, 0x86c20581, 0x991465f6, 0x3aeffe97, 0x000141 } }, { { 0x4a1032c4, 0x4607f54, 0xb6c45dd3, 0xad5e6649, 0x6beacc8c, 0x86554c2, 0xb3e89bf3, 0x9c3ebdca, 0x6bac01a, 0x868d3740, 0x626658aa, 0xee7fa0a7, 0xf4638f58, 0xc4d18290, 0xdd522e74, 0x75aa7079, 0x0001f3 }, { 0x249c5890, 0xe470f331, 0x921abeb7, 0xbe6830cd, 0x69fcdf6d, 0x8a7b91f, 0x91f3eb43, 0xd1125e87, 0xf2e2b001, 0x77a5ee60, 0x2878e322, 0xa3d0e344, 0x910f7346, 0xb32862e3, 0xb9d8dfba, 0xb316a4a3, 0x000122 }, { 0x9350e90e, 0x3355ec7f, 0xee8f51, 0x2132171a, 0x5231869b, 0xb2c45273, 0x267d5a15, 0xf37ac355, 0xcba74ace, 0x6f287036, 0xfe2b1b73, 0x7eb1520d, 0x535dd72f, 0xb836055a, 0xbc44ccf, 0xf1f35caa, 0x0000b2 } }, { { 0x57ccd009, 0x6a3da99d, 0x9949c3c1, 0xff90d40f, 0xf47fea92, 0x3fb15f4d, 0x9534b8c4, 0xcf4494f2, 0x7f0987a2, 0x7a98933, 0x261748f9, 0x3046813b, 0x7127937b, 0x4377c96b, 0xdc1ef2dd, 0xe584cab7, 0x0000a6 }, { 0x57c6bf9b, 0xed6aacde, 0x61f735a5, 0x8428d27e, 0xae4329fc, 0x26ee935d, 0x87c5b6ea, 0xcc65a2f7, 0xaa3fc68c, 0xd3954aa1, 0x7fdc9e9c, 0x165a2300, 0xdbb0ee24, 0xae52de6b, 0x2351a9fb, 0xaa4386a3, 0x0001a5 }, { 0xbca4e656, 0x7bfae8d, 0x5584df8b, 0x2bec615e, 0x8adb9b33, 0x98a16e76, 0xdf9d54e1, 0x86956d82, 0x30cd6a09, 0xe769bd88, 0x9f77f4d3, 0xe87b3124, 0x99908b90, 0xf579a7f7, 0x1b1a1fad, 0x59a1d10d, 0x00003d } }, { { 0xd6d8f32c, 0x382cca5b, 0xa3fff66c, 0xfb0629a5, 0x64139c47, 0xcd298c0, 0x681ad388, 0xe0f102d, 0x232189e3, 0xafbd0602, 0x994d438c, 0xf0147e0f, 0x8aa488c7, 0x301ea8d4, 0xd489bf99, 0xb39209ea, 0x00006b }, { 0x65c67d9c, 0x281b7d9f, 0xf9c0850e, 0x2172f466, 0xecd6b730, 0x351c7214, 0x5fbe5bc6, 0x48a0c343, 0x861c762b, 0x8e37a007, 0x94c0a305, 0x660d814e, 0x59a97bae, 0x99096f40, 0x75564525, 0xab6d8f01, 0x000066 }, { 0x2b6b9a06, 0x91c3d8e6, 0x6fbb1068, 0x2d8bbb2b, 0xfc422f12, 0x827aaf4a, 0x3c641f21, 0x2aafee78, 0x28b44cf0, 0x79145e5d, 0xacd2c4b4, 0x41b8511a, 0xb6fcaf1c, 0x5e5df4c9, 0x198a2af7, 0xff884d1c, 0x00004c } }, { { 0x52257df8, 0xe2b52837, 0xd35289ab, 0xdffdd8fc, 0xbfdaf05, 0xa8194e75, 0x8f5526ac, 0xdf3d24bf, 0xf4e44bc5, 0x8f8207f9, 0xe1cf6162, 0xbdddcef1, 0x3a21c2d7, 0x68e67623, 0xa28a1379, 0x82510f5c, 0x000190 }, { 0x6ef7064a, 0xb263bfb1, 0xd5fb961f, 0x8c13a5bb, 0x2f09f672, 0xa4afd3d2, 0xfa2055a5, 0x36acb63e, 0xfbc56c7c, 0x610b0b56, 0xc6b1fb08, 0xe2b240bb, 0x1ce5c2ca, 0x48acaa98, 0x6e712769, 0x45b62d48, 0x000017 }, { 0xca91eb82, 0xef6f49ec, 0xb2396c65, 0xa8bb24c7, 0xc4472b8e, 0xada6a32, 0x72880d30, 0x94a40b51, 0x61232180, 0x13977e4e, 0xddfbdb23, 0xe9ce361e, 0xe5d5b07e, 0x9f29c85, 0xefa98ac9, 0x56a54e68, 0x00018f } }, { { 0x74c2065c, 0x37e95f2a, 0x50d636cf, 0xf3df5dd0, 0x7c62b062, 0x4f32d06d, 0x2de373f9, 0xfa1684e9, 0xe9225814, 0x20bceedd, 0x6bc8bd6e, 0x498134c9, 0x9075dc54, 0x77a04d9b, 0xb50bbe96, 0xf00da513, 0x000095 }, { 0x880d03a1, 0xa93d5fa3, 0xdd1f9e09, 0x1a18157c, 0x13e7e0a0, 0x56a56653, 0xfb7f0106, 0xda2d6114, 0x66028432, 0x641c7d99, 0xc590495e, 0xfe8a2c9e, 0xc6da03, 0x59cd1752, 0x162c4ee5, 0xd9306d51, 0x0001a1 }, { 0xf1e9ffcf, 0x735f55f5, 0x676f67c7, 0xed7894b8, 0xe4c730f, 0x12f06f40, 0x554430b3, 0x146bc41e, 0x76be018b, 0x23a831cc, 0x39f10ea9, 0x5eabaa6, 0x32a1dff7, 0x22298f06, 0x35c97e02, 0xb72f8d49, 0x000182 } }, { { 0x9ee3f83f, 0x1fb67a90, 0x709865bd, 0x1ae8a139, 0x5f8d40ae, 0x8ec77041, 0xab7699e7, 0x734cb662, 0xb6c1b1b1, 0xe01d2d00, 0x7c86b03c, 0xca8f5e00, 0x223454f9, 0x69226970, 0x67b36df6, 0x12e7cbb9, 0x000173 }, { 0xebaf928, 0x2b591363, 0xb35465b3, 0x2ea6717, 0x5b37a03, 0x7b5a1d33, 0x94c51ddf, 0x40785358, 0xb6623d8e, 0x8e94323c, 0x975ac3af, 0x9662dcca, 0x15381d99, 0x8bda1348, 0xbc876ed5, 0x7ce8a707, 0x000163 }, { 0xcd8b1282, 0x3a179abc, 0x97a3b08c, 0x56fd42e2, 0xd6302ce7, 0xe11153cc, 0xf0b35966, 0xd2ca4495, 0xab8208f9, 0xfa09251a, 0x2337a7a5, 0xe080664f, 0x3204ab77, 0x106e63e9, 0xf144914e, 0x32e2cb0d, 0x000008 } }, { { 0x412eeedb, 0x9a0292d, 0x90ba4322, 0xbb21e2aa, 0xac477c44, 0xd48535c2, 0x851a8159, 0x8c585c70, 0x13eae0a5, 0x13471ac5, 0x3c89ac83, 0xc12ecb0, 0xcb81cea0, 0x7597a169, 0x5311e0ed, 0x2c5b2aad, 0x0001ee }, { 0x9334c42d, 0xdf4e8bbe, 0xaa94b5a0, 0x47ddb0b5, 0x4d5e3cf3, 0x938cb3b6, 0x3a0e4b4b, 0xf3630254, 0xce80db00, 0x5ab2b632, 0x2a79a7f9, 0xbfcaa4a7, 0xd16afdb3, 0xba2057f8, 0x47f0f3d4, 0x91e81b13, 0x000085 }, { 0x5093a500, 0x9a365db3, 0x3cf39e7d, 0xd891ec08, 0xacf84aed, 0x86c177dc, 0xcf355aea, 0x7fbbd59, 0xb0219ede, 0x266673f1, 0xcd582e47, 0x75e2a94a, 0x99e206ae, 0x52e0cff6, 0x78cbf77c, 0xc66bb125, 0x00008a } }, { { 0x98df858, 0xe380ce34, 0x4632dcd1, 0xd7506dd4, 0xc1a86df1, 0x95e6d893, 0x479bcd4e, 0x6583c59e, 0x8d6f116a, 0x139b6ad3, 0xc9bdd317, 0x5f025338, 0xc61bf739, 0xa7af219, 0x9f99908d, 0x766708e6, 0x000033 }, { 0xd46b9286, 0x639321ee, 0xaca462af, 0x75714b48, 0xccb41622, 0x952fd1e8, 0xf3c301db, 0x32a0d34d, 0x84fcf71f, 0x152a8956, 0x57e14a5b, 0xbeb2ef0c, 0x670fa7e7, 0x1c962d05, 0xb3218086, 0x1016808, 0x0000ec }, { 0xba5dd7d9, 0x69f2dadb, 0x2b5b4c8, 0x8faa1427, 0x6cbd6ce7, 0xeae09047, 0x464b0562, 0x187303c5, 0xff451663, 0x9d00f85f, 0x8b565483, 0xeddc00f9, 0x2a69fe16, 0xaffb7876, 0x1b77a153, 0x82abae27, 0x0000bf } } }, { { { 0x294334a3, 0xf058a8eb, 0x7d6bfc78, 0x5aa0238b, 0x772a958a, 0xd8e9994b, 0x4f4ff82b, 0x8969a9e7, 0xec3cb5da, 0x9f357841, 0xdd3249e1, 0x78e75ff6, 0x8249efd9, 0x54d2d851, 0xbbdaf2cb, 0x8cb5c03d, 0x0001f1 }, { 0x7927f5d3, 0x5e4a966f, 0xffc501fb, 0xf7f99282, 0x3d555165, 0x623cf515, 0x6731b63f, 0xbf87dfd4, 0x1ed00a16, 0x8ab0e8ac, 0xcf0eb7db, 0x12873b82, 0xb369e1c1, 0xe89127db, 0x837dba3b, 0x499b5d78, 0x000015 }, { 0x8a2d6f1b, 0xd4e0c4c8, 0xb928ed66, 0x8abfa4f, 0x36e6547, 0xea395a1d, 0x196ecbd0, 0x7f523c51, 0x67b0e80b, 0x5980b792, 0xd067ec2a, 0x8babc44d, 0xd6bac1b3, 0x83452d31, 0xc52cd273, 0xe844cff, 0x0000ea } }, { { 0x60a6fe68, 0x8c6ab069, 0x346c0dda, 0x5fcd06fd, 0x18d49d09, 0x6158a140, 0xa0664454, 0xf6ae480b, 0xcedcf687, 0xde6d0351, 0x8f0599e, 0x309c1732, 0xd0785cb7, 0x5eb2a6e0, 0xc1c09700, 0x9b24a6cf, 0x0001d4 }, { 0x43c0ae70, 0x7159e7bb, 0xcd9dcd2f, 0x642f65dc, 0xdfee0e80, 0xb46b15be, 0xd8223ad3, 0x9762d9f1, 0xbf2cb4c, 0x8f8d0c4d, 0xbf2b74f7, 0x28fdaf8, 0xdca416af, 0xf2086518, 0xfd9a137d, 0x42803784, 0x0001b9 }, { 0xd5df82fd, 0xfe505c4, 0x65209613, 0x88a80144, 0x333c2d3a, 0xccd4cdc5, 0x627e8378, 0x2df4023, 0xb5599a62, 0xf040322c, 0x5503274b, 0x3d5fa49f, 0xe904368, 0x8d18499d, 0x82181dcb, 0x1a7ac919, 0x0000c1 } }, { { 0x9d767507, 0xf2724c20, 0x9c91d8d6, 0xf461c1a2, 0xf913da91, 0x8d6fe6f3, 0xd88ddb18, 0xbf5a591f, 0x9531ea52, 0xd270268f, 0xd053967b, 0xebfeebf2, 0xf0a39983, 0x14fed9d0, 0x26f580d9, 0xe61227af, 0x00011f }, { 0xdc40f35f, 0x1d4dad5c, 0x9797cc8, 0x57b004d5, 0xcf501a5e, 0xd9f8099f, 0x2df1a84, 0x518dfbda, 0xb8d850b2, 0xcd0ca4a7, 0xab90ee3b, 0xbc59ef53, 0x14cef0c, 0xd6f38a28, 0x14721ffb, 0x45f7db9b, 0x000020 }, { 0x3b57000c, 0x461c11aa, 0xae012108, 0x38367288, 0x817b91ce, 0x6ccb7769, 0xc094c680, 0x3980b8fa, 0x4a448241, 0x16366296, 0x35704888, 0x857cae88, 0x2e5401fd, 0x57e55be2, 0x571b906, 0xb2d94fad, 0x00000e } }, { { 0x36fc2ac, 0x92eacaba, 0x49001a8e, 0xfe8d33da, 0x63d0b765, 0x8db8c57, 0x83a5531d, 0x59a9a877, 0xec2a00fb, 0x3d5aeaab, 0x33586415, 0x6309dcf7, 0x4f50f3f5, 0x31c4caa4, 0x12ce5c2, 0xd617b0e0, 0x0000c7 }, { 0x27dab73f, 0x511aa84a, 0x70631b29, 0xa0b6a494, 0x42209c44, 0xfe2fba05, 0x34369af, 0x59754f6e, 0xf91c4a4a, 0xae745a97, 0xba3eb84e, 0xa5f0bed0, 0x9dc841a4, 0x34d62e7a, 0x858e7440, 0x60669e90, 0x0000bf }, { 0xfcabdf2e, 0xb7772bfd, 0x39cae2c6, 0xd0619570, 0x4a6b99cb, 0xa75361ee, 0x48f35327, 0xd8e1695, 0xf5430f27, 0x57d83d5, 0x639cc541, 0xcaa72b23, 0xd3f434f2, 0xcf4e20da, 0xe2b9337e, 0x98232955, 0x00005a } }, { { 0x960a9654, 0x243d5fc7, 0xba5cb087, 0x5b916052, 0xa0c1f4d5, 0x851ff7bb, 0x9ff03fa7, 0x5198aab5, 0x7d71717f, 0x6da40bd1, 0x81e0c907, 0x6078bdff, 0x9a62b1d5, 0xe984b597, 0x29de3179, 0x8684f84c, 0x000022 }, { 0xecd37fb4, 0x9d513669, 0x192ee016, 0xc7e11637, 0xa5792118, 0xbc43c91f, 0x4ddb17f6, 0xfe33bebf, 0xba032d89, 0x87e79389, 0x38816631, 0x8177daa5, 0xa11b803c, 0xa7ef1cd7, 0x9d44a429, 0xa7f770ff, 0x00009f }, { 0x671aec2, 0x91f96a3, 0x2effb42b, 0xfe4e8d60, 0x5f059b01, 0xcf8f0bb1, 0x9f40d506, 0x2ea76c92, 0xed773a0a, 0x76a80a7c, 0x847c5c0e, 0xae840b2f, 0xaacb5a2b, 0x53c46c07, 0x6c688b89, 0xdc83d50d, 0x00018a } }, { { 0xb98bdfb3, 0x4c6ed6e5, 0xf1def780, 0xa0cd555b, 0xc996ecbc, 0x2b83c607, 0x6c0c7414, 0x6fecaf26, 0x49bd9653, 0x55ded443, 0xf1f1578, 0xb304c7a8, 0xcb0cda44, 0x36cc3ab5, 0xbc9fc0d2, 0xc681c145, 0x00009e }, { 0x5966e4a, 0x96de9984, 0xf99eb0f3, 0x4623e545, 0x13de76fc, 0x81d61ff3, 0x3e0df70, 0xd8fd8934, 0x3a11f0ce, 0xc8c7a2f9, 0x431ee2b7, 0x389630d7, 0xee4a20dd, 0xdaa07e39, 0xecdbc0, 0x87bfac6a, 0x000110 }, { 0xae860b1b, 0xd870cfdb, 0x9741e55a, 0x1da252b0, 0x303cc0c4, 0xcda7e26e, 0x35d78276, 0xf16c499, 0x14894eb2, 0x9b797dc6, 0x29aaaa23, 0x99c4b2c3, 0x4447c327, 0xf1542d53, 0x17482cdb, 0x96edaf4, 0x0000c0 } }, { { 0xf3fe5c8a, 0x596bc1d1, 0x4415b83d, 0xc616248f, 0x96e71ba2, 0xf9f39ef4, 0x9deef461, 0x4d91ab6a, 0xfa5919c5, 0x2eab03a1, 0xe7d21d95, 0x5e39cc52, 0x4867d16b, 0xd7b5642, 0xc2424188, 0x236c4d90, 0x000109 }, { 0x884b6296, 0x58b2b3c3, 0xf0da1363, 0x18783432, 0xedc5a971, 0x6767fea1, 0xc8d6f66f, 0xc5f648e9, 0x550ac263, 0x3f6512ae, 0x45d387a4, 0x5809f287, 0x809fb622, 0x1b373bdd, 0x1d818bca, 0x5dcfbb7a, 0x0001ff }, { 0x6e139f4a, 0xb19a07fc, 0x5c5d3e4, 0xfdfb0666, 0x3a6a20c9, 0x73735fb, 0x97697473, 0xafaa9d8e, 0x2c5e3af6, 0xc671306e, 0xf794f458, 0x286e1e6b, 0x4d6c8a55, 0xf04ef078, 0x6db8c663, 0x5e6e3053, 0x0000c1 } }, { { 0x234541df, 0x8db8e286, 0x5ba04f7a, 0x6f60f8e5, 0xc336e2f1, 0x51903363, 0x869728b9, 0x205d18a, 0xeca2a8be, 0xb422b4ba, 0x6287a6eb, 0x91553c64, 0xd7a684ae, 0x57325403, 0x4f0ebc74, 0x866e6024, 0x0000de }, { 0x7cd4eb4a, 0xbd52878a, 0x89191c00, 0xcdca553d, 0xa6c4652a, 0x7da8da0c, 0x3d40a1a4, 0xcb0602a5, 0x58faf5aa, 0x376600d8, 0xe5bdfcb9, 0xb2444a14, 0x3f7d92ef, 0x275d9022, 0xd8dfdd81, 0xf397ec06, 0x000142 }, { 0x5b8dbb16, 0x38ec9625, 0x2b8ae91a, 0xeec8632, 0x91beb760, 0x64accffe, 0xca320a15, 0x53c5bf4a, 0x2e1d7ff9, 0x9b07b3e8, 0xa4444b3, 0x9468393a, 0xe751a7aa, 0xb0d6848a, 0x7eaeb9a3, 0xb8a99cf4, 0x000128 } }, { { 0x30b04a92, 0x3d5642cb, 0x3d315b84, 0x6b7e4da8, 0x8b8001f3, 0xe95750fb, 0x35d55090, 0x40d65543, 0x57d5e2c7, 0xe644d9b9, 0x5f914197, 0xd98f3b45, 0x9f29245f, 0xd0cd6c0, 0x711bf308, 0xb3559e76, 0x000171 }, { 0x30fc9001, 0x8374e5cc, 0xc06932c, 0x68db4189, 0x2d829b08, 0xf63e7c69, 0xd3c58ddf, 0x3eccdb92, 0xfeb231f1, 0xe3f03da1, 0x5b1e4d4e, 0x780011cb, 0x63d513e3, 0x6cbd1c44, 0xfd152c76, 0x835630bd, 0x00012e }, { 0xd42383d2, 0xc9aa8676, 0x6867aca7, 0xa4748877, 0x766c6ce1, 0xe0a25a2f, 0xb5f278f5, 0x7a67fdf4, 0xec94fc37, 0xf8369074, 0xc79912b6, 0xe880f89a, 0xd1278f37, 0xa42bd332, 0xe4987704, 0x3e6df864, 0x0001ee } }, { { 0x969266c4, 0x735fd8a6, 0x5d5831af, 0x250e251a, 0xdffe8021, 0x38e4a725, 0xe341f9d7, 0xd36b0120, 0x8bfa83ce, 0x463a7f01, 0x84a6f40f, 0xfe929c7, 0x57282253, 0x2be506d8, 0xe1eb4fc, 0xbd7e789f, 0x0000c1 }, { 0xc6e54ebb, 0xf44457b, 0xb539d41f, 0xd74cdaa9, 0x25722f0f, 0x46e64196, 0xac995a2a, 0xea11ab79, 0x6daaf8a7, 0x9419c5d6, 0xb9425045, 0x7c8db09c, 0xa84ce059, 0xd5303de7, 0x848baeda, 0xd79e13e2, 0x000109 }, { 0x2409b511, 0x5754df53, 0x1eeecdde, 0x74d64910, 0x65865ce7, 0x5b94335e, 0x2a626fc1, 0x92174095, 0x425db9fc, 0x21f6ec2f, 0xa3359ccd, 0x2b71f6f6, 0x29db99d4, 0x7c2d6607, 0x4f88350b, 0x79bb4553, 0x0001d2 } }, { { 0xff12bce2, 0xb053d1a6, 0x7c3a4090, 0xd9e7259d, 0xa4b68625, 0x546f57b3, 0xf456593f, 0xb7862ad, 0xf93b8b2e, 0x823eec84, 0xa80f4b1f, 0x57d7c04e, 0x52115fe8, 0x43c94d6, 0x7e37a4f1, 0x5a8df674, 0x00002f }, { 0x6936caeb, 0xcb4f5124, 0x86bbc8f, 0x77a760da, 0xebcecc7a, 0x62002967, 0xa332f265, 0x23fb0eee, 0x1a4058ee, 0x5b2378b5, 0xccd8fdb1, 0x506722f9, 0x8f665f54, 0xeea4005b, 0x212d5de3, 0x28939563, 0x00006f }, { 0x6a878d99, 0x8b256204, 0xadeafe0c, 0x5030b04a, 0x2fab833f, 0x28e0b92e, 0x628a1b22, 0x5b0c3c3a, 0x2f83f6b6, 0xf6e279ce, 0x58b948fe, 0x1534c2a2, 0x3b38bf1c, 0x43f245b3, 0x2c6cec3d, 0x9233f0f8, 0x00004c } }, { { 0xd6d3ed1c, 0xa8be36c3, 0x823726ca, 0x9d10f17a, 0x23c21646, 0x1c5d5895, 0xfff7d033, 0xee922c5e, 0x59077213, 0xa2c09baf, 0x8fad545c, 0xb9956a7e, 0xc55deb9b, 0x15a63407, 0x10867323, 0xef2ca633, 0x0001d0 }, { 0x86a80952, 0x9ae64de0, 0xb7cdde80, 0x5a224636, 0x826e5a19, 0x38b80a48, 0x51667e41, 0x638cfaa, 0xb59f44df, 0xf054347c, 0x3bb9c248, 0x408d3f07, 0x93e41c35, 0xf7b0daef, 0xc16f46fa, 0x7c920106, 0x0000b1 }, { 0xdd0d03fb, 0x5a0fa518, 0x248a919f, 0x9f6cdc8, 0x8fa4f0c6, 0xd9a79059, 0x954d7386, 0x1adc9f9a, 0x480f2310, 0x96382102, 0xcf6cfd13, 0x114d8120, 0x1d6ec518, 0xbf4809af, 0xb31e2d82, 0xc5f8f584, 0x000066 } }, { { 0x8a47f301, 0xcdf6c394, 0xbc472a99, 0x1625bb75, 0xdec4493d, 0xc6108097, 0xf1cef1ae, 0x8466832c, 0xeb5df1ef, 0xbae3c7fa, 0x8880df47, 0x917830ac, 0xebe97ef4, 0x681c961f, 0xa469fe8a, 0xd3aa23e, 0x000194 }, { 0xf9373c90, 0xe1ca0167, 0x93a4d2db, 0x72185104, 0xe2d04876, 0xdc1c0215, 0x3e7acfdc, 0x47f040ff, 0x227c2067, 0xf05c6289, 0x42eefc49, 0xabd6bdd2, 0xf46819a9, 0xd3a80122, 0x9df2c3d1, 0x2b03c7f7, 0x00002e }, { 0x9554a6ba, 0xd40c7471, 0x18f00ef4, 0x27c608f9, 0x3a1af67b, 0xfe55041, 0x6cb61b28, 0xdf3f1326, 0x2a7d83ec, 0xb368d5f8, 0x7aba832e, 0xe88ddf52, 0xe0e892f1, 0xc27ecf56, 0xadb61c3a, 0xdc081419, 0x000093 } }, { { 0x8ca11a27, 0x32133009, 0x195fe6c5, 0xb8f3c7d4, 0xc65f3fe2, 0xa9d2cdd3, 0x5cc3fa0a, 0x5f1820e9, 0x6efdc8d1, 0x22f121ff, 0x9af59344, 0xec283cb7, 0x81a97df0, 0x5877633d, 0x4abc1e90, 0xf319a4af, 0x000192 }, { 0x2c0e7658, 0x3d39a8c7, 0x36addf1c, 0x758a4270, 0x89ad6eda, 0xcbccf318, 0x4cc6e6b2, 0xa2f3843e, 0x741c0958, 0x77a31b29, 0x5775c0ab, 0x43d2d4bc, 0x93d629e4, 0x3e0ae7c5, 0x264588c1, 0x6dec6731, 0x0001e3 }, { 0x13cb72a9, 0xb5836e53, 0x9e659ecb, 0xb710f770, 0xa89e29b8, 0x344a1d2a, 0xf7c7bfe2, 0xefc6659c, 0xcffdfdf0, 0x7a2f7333, 0x9c90e8bd, 0x8125bc9b, 0x738404f8, 0x5ff0a377, 0x56cdb56f, 0x2eda962e, 0x000143 } }, { { 0xb76cad62, 0xeff1958e, 0x4456a4d8, 0xf82c595a, 0x811e0be0, 0xa94d0382, 0x4022cdd, 0x517f702b, 0x62ce8cec, 0xde21fd2, 0x4a382432, 0xe235fc26, 0xe550e7b4, 0x244369c8, 0xd93b1ad, 0x96431054, 0x000099 }, { 0x9358d935, 0x3831e82, 0x8c4e430d, 0xc642cfab, 0xc7b072e4, 0x2fecf3f2, 0xf3e30b6f, 0x31e4b37a, 0x6366b52e, 0x9385b5d0, 0x97523d2c, 0x1cceeaaa, 0xc6dca4ec, 0xb7b4ea34, 0x323d21cf, 0x7d8e7941, 0x000114 }, { 0x7b103510, 0x87881a18, 0x1fa605fe, 0x4b63c7ba, 0x3af669e9, 0xcdccd2a1, 0xd62fbd39, 0xb2334ad6, 0x70d14e3f, 0xc8350799, 0x44b1c2a0, 0x905566e8, 0xa68c6e0b, 0x55a711ea, 0x5574a44f, 0xab647fc9, 0x0000b6 } } }, { { { 0xb2a73c7a, 0xda10a470, 0xa47c3a0f, 0xa8da03bd, 0x1c758ab9, 0x16c9feca, 0x7e4bcb2f, 0x8379bf6f, 0xac34a279, 0xee0a7ac8, 0xe558b2fd, 0x2be7663, 0x6cfedffb, 0xc11b0b4d, 0xbf9e4137, 0x1f1cfd67, 0x0000aa }, { 0xa387a3c5, 0xb46538c0, 0xfa6ea2ef, 0x78645949, 0x4c8bd380, 0x31e67471, 0xa4b8e0e3, 0x4baef7c2, 0xd0768f43, 0x634736c3, 0xd6709952, 0x7169d03c, 0x38dc8413, 0x5ba9912f, 0x9dc4972f, 0x906db4af, 0x00014a }, { 0x39be5320, 0xffc8a3e2, 0x98b3f1ae, 0x2f6b4fbc, 0xef7a7562, 0x38cdeda2, 0x7ac1578e, 0x115afb7b, 0x9963bfc2, 0x89859b79, 0x26199792, 0x4f0af683, 0x1f26cf23, 0x8a74a117, 0x374ae7a0, 0x27d15641, 00000000 } }, { { 0xa484df19, 0x7a6b3775, 0x7d156369, 0x5721a3cb, 0x181945ff, 0xd2167462, 0x870c20b2, 0x4389063e, 0xcb6015c3, 0x5c4ba0f0, 0xd23d5d87, 0xde2f8e63, 0x1978d88, 0x5c9de88b, 0x484f23d1, 0xb91f5337, 0x000107 }, { 0x4c4e1064, 0x1bd69199, 0x9c78d95b, 0xd9927198, 0x8ddb6f6d, 0xf26eead5, 0xe809e062, 0x92495917, 0xaaa22a2b, 0xd9ab721a, 0xc5d2f7ab, 0xde38d33e, 0xbcbaff0e, 0x597c0237, 0xf76fa905, 0x7332970f, 0x000028 }, { 0x4c73725b, 0x9a9fc3ad, 0x71f2d584, 0xc77abab8, 0x89986bac, 0xe02106fc, 0x63ffb03b, 0x9dcb47fd, 0x265affee, 0xc4150239, 0xfceb21cb, 0xb4193183, 0x5a246235, 0x5186edee, 0xbc23b303, 0x901f392f, 0x0001cf } }, { { 0xa7df485f, 0xba4ae8d6, 0x82113eed, 0xf2786db5, 0x65f1cfd0, 0xd1367a86, 0x500a2db9, 0x55477775, 0x2ba49ffa, 0x2d6e0cc9, 0x8ae11e64, 0x4a0daa30, 0x51e3a63b, 0xb7e29549, 0x18ea07d4, 0x2bffb4d4, 0x00013d }, { 0x54e01b3a, 0xa11d0f3a, 0x81d49064, 0xee0d2f62, 0xc45759f1, 0x1aee429, 0x6acf7bfb, 0x20e506e4, 0x90408c31, 0xe04a08b, 0xb0073042, 0x70111f9a, 0x733d2278, 0x917dc8, 0xafe9b48e, 0x935d7dc0, 0x00007e }, { 0x16914d84, 0xc31563f3, 0xf4dc5300, 0x45ede7fa, 0xb4a48632, 0x2674a586, 0x73afa3d9, 0x72718cc5, 0x7c44fb58, 0x7358cfd1, 0xb9ea25b0, 0x32f9bcbe, 0xe0f854ba, 0xbf52a3da, 0xe1b6e44d, 0x9550e82, 0x000094 } }, { { 0x29e0a666, 0x1b799d0a, 0x9fbe43de, 0x9ec58b2a, 0xcfcfaa1e, 0x41d4b943, 0xb208599, 0x6b3cf00b, 0x25abfb57, 0x693d3864, 0xedb87e3c, 0x31d1340b, 0xaa286f06, 0xfa8a1397, 0xef3ef3b6, 0xadf3bb35, 0x000051 }, { 0x80d6efdf, 0x3605d452, 0x6026a841, 0xe4214c0, 0xb0bd64fe, 0x2dcd7c94, 0x809f413e, 0xc8623151, 0x59f771c5, 0x95491f2f, 0xe0c2650a, 0xdac30709, 0x85eac1b, 0x17b18cd, 0xffe24f0d, 0x3cb4a7c1, 0x00012f }, { 0x94e254f6, 0x935ad5bc, 0x17fa7ada, 0xfcc08998, 0x199ceece, 0x2fabe60d, 0xbec2250b, 0x468f495c, 0xe30cb3e1, 0xe3d0f13c, 0xfa5f48d7, 0xbb87da4f, 0x5857e296, 0x45fb79ba, 0x4134e93, 0xd82aa402, 0x0001ee } }, { { 0x75edb755, 0x88e0e824, 0xa0b9313a, 0x6966ae7c, 0xe3658e99, 0x11a719e5, 0x166cddc6, 0xcca018c3, 0xfea35a98, 0x6490c921, 0xf059edba, 0xe130b902, 0x2a1315ae, 0x95b44ee5, 0xea7a795b, 0x22b1cd19, 0x000096 }, { 0x3458e2e, 0xfc234acc, 0x46655259, 0x9b006b11, 0x7645792b, 0xae5f50ca, 0x86b71957, 0xca939901, 0xd7ccd3af, 0xbd7703a9, 0x1955e90f, 0x4ca8b614, 0x3007e158, 0xe8f98919, 0x8fa097ca, 0x89fe95e4, 0x000167 }, { 0xdf484e07, 0x314ee625, 0x78e9722c, 0xdb3be36a, 0xb83d8e58, 0xe94decc8, 0x28beadf9, 0x153b672d, 0x532c925, 0x901b8fef, 0x94c7ecc4, 0x6203880c, 0x5d3fcbbc, 0xdb8ea522, 0x9098bf62, 0x4e45eaab, 0x0001b2 } }, { { 0x20b989d4, 0xa300cf4b, 0xb145df71, 0xa7520258, 0x63788bb9, 0x88ffbe10, 0xbbf1dcbf, 0xc6a3d4b1, 0x717a72bb, 0xc0e9f51c, 0x6fbf8fb4, 0x3c6ed8ca, 0xe75566de, 0x47bc4ea8, 0xb83151ab, 0xe218aee1, 0x0001e2 }, { 0x19bed616, 0x99797698, 0x8fc6ebc6, 0xe2a37a67, 0xf09232c9, 0x8ffba6af, 0xebe6a90f, 0xbf13a07b, 0xc81e449f, 0x7e4f03ee, 0x1e0acfbb, 0x66470050, 0x3f8c1c8f, 0x2bcf5660, 0x780b2a17, 0x530d36f, 0x00016c }, { 0x79b64c1, 0x8fb17e50, 0x31884171, 0x3ec85bdf, 0x20b002a4, 0x327c9589, 0x6ce9bdff, 0xfb7f92c2, 0xf3c5d8de, 0x8ceccdd9, 0x8834efec, 0xc381f56f, 0xe113496c, 0x3febf719, 0x67e5b16a, 0xb7785d84, 0x00002d } }, { { 0x2da1fb92, 0xf6aff840, 0x2743f8b1, 0x91dced37, 0x39ac277f, 0x42652ade, 0x5bb568f1, 0x2195c423, 0xa83bccd4, 0x9987fe91, 0x878b096a, 0xd6074dea, 0xfea3c15e, 0xdbb40209, 0xd6bdf60, 0x4fa503ec, 0x00010a }, { 0x4cb6bfed, 0xe450c4f8, 0xc55d63f3, 0x9d9a59e8, 0xbe4fe962, 0x3ecf0268, 0x688f82d8, 0xbeea5b45, 0xd0d0f1dd, 0x55f286f7, 0x8b216ec4, 0xb6840eb3, 0x901d0eec, 0xf048fb75, 0x15fdb883, 0x152b1e7b, 0x0001fc }, { 0x2976bcf2, 0x72608edf, 0x6c1c9f15, 0x2480497, 0x964f5a6a, 0xbee4a2c7, 0x68702445, 0x1e8e05bc, 0x2b69595c, 0xb1c8fddc, 0xb802b3f2, 0x8537e5fa, 0x1e6c8e47, 0xfec760de, 0xa7f1e5de, 0x8021cda0, 0x000103 } }, { { 0x8cec594e, 0x1a1d9a56, 0x44823bfd, 0xc789f2df, 0x1019dcd4, 0xa254eb30, 0xbe7a98fc, 0xf590abc0, 0x4e38b5a6, 0xb08f2ce9, 0xac790862, 0xc598911, 0xf656383f, 0x42d3d367, 0x762f12cf, 0xbc0b98d6, 0x000099 }, { 0x8a4eb99, 0x6000dc5e, 0xbd1d53b6, 0x2db9332, 0x7bbebd84, 0x56245ed4, 0x9cf329b5, 0xe69b6f05, 0xc2260fc7, 0x256ddfc9, 0xd4c5eea5, 0x97093981, 0x4d9417c5, 0x7bff6edf, 0x8719d6d9, 0x4df08cc9, 0x000182 }, { 0x650aac8e, 0xd7ae6da, 0x184ed9a0, 0xdad8dcb2, 0xd1bc36eb, 0xda476b41, 0x2102652e, 0x4393516f, 0xad017e5d, 0x67e2e726, 0x9769e018, 0x3aabfec8, 0x967f422b, 0x18cc9fc, 0xcd2621ae, 0xb5561205, 0x00004b } }, { { 0xf1446f09, 0x64dc2468, 0x269b8bde, 0x3909a4b4, 0xd639abcc, 0x94e92a87, 0xd800b44a, 0x291de1e7, 0x7aee0b95, 0x90cee6ff, 0xf4ba9135, 0xa55d2279, 0x623e0e28, 0x8500d0df, 0xdcc4b1e4, 0xc4d9aa98, 0x0001bd }, { 0x692f1589, 0x100a1871, 0xebf123ce, 0x11df5df6, 0x41558af4, 0x936509e1, 0x121f595b, 0xa40c65a1, 0xac9bb687, 0x47ffb557, 0x98b7cfb3, 0x254e102a, 0x8d791aae, 0x15359a60, 0xcbd10f3e, 0x467b45b2, 0x000044 }, { 0xca6a8503, 0xd74b8af2, 0x1b571010, 0x722f7408, 0xed30ce9d, 0x1c22bee5, 0xe9977d3d, 0x13fa7750, 0x1d1967a6, 0xc647e94d, 0x7aa10d6d, 0x8de6bc7d, 0x1d55957c, 0x1e27cfea, 0x7d42bfab, 0x93738bae, 0x0000d9 } }, { { 0x6c0bb733, 0xd7d62100, 0x8f0dff7, 0x9ac89833, 0xc32ec45, 0xa0ea4ce, 0x93941544, 0x546f6a9f, 0x927177a4, 0x4510ddbd, 0x3f1fc526, 0x4691ccba, 0x9288e50f, 0xf16aaa7e, 0x70aba901, 0xade8ab09, 0x00003a }, { 0x3e6458f0, 0x1c7c2846, 0x153d88ed, 0xbaee94ff, 0xf1062644, 0x891b68a5, 0xeeece6e8, 0xf0250c74, 0x75ba663, 0xdf7d703e, 0x1ee092b0, 0xdaa8961b, 0x67e8d3bb, 0x27ef8c6b, 0xd2e2ae25, 0x881aa221, 0x000162 }, { 0xc483b828, 0xc6cf7fc1, 0xa4ad2667, 0x84571467, 0xa2ea4f64, 0xc47a281, 0x78cbffd4, 0x48437a19, 0x3c3e3f7c, 0xc150d846, 0x997c0f06, 0x9b1d7cf5, 0x721384d0, 0xc553c21d, 0x9d50c5b8, 0x93df8b71, 0x000157 } }, { { 0x93711b0d, 0x5f9a840e, 0x88b1d8e6, 0xa350645c, 0x827ce466, 0xbbe6e31b, 0x6839de39, 0x89bebc3f, 0xd1828840, 0xc3a9dbd0, 0x3e62a6b1, 0x2147802c, 0x26808edb, 0x8b41f817, 0xc3774fad, 0x49c4992, 0x000023 }, { 0x1f9d140b, 0x85e9a46, 0x93a4a64e, 0xa9303475, 0xb960f76a, 0x2aae76e9, 0x6475e236, 0xbaca122c, 0xddd7c113, 0xdaff98c, 0x49376a75, 0x4a70eb6e, 0x8b2d1ded, 0x8f2ef8a9, 0x19923873, 0xa6634225, 0x0001c0 }, { 0x3a73b432, 0x17f1ee6b, 0xf873933c, 0x58319c23, 0xe7e625c7, 0xb4f09e62, 0x24b04dba, 0xcd965c39, 0xe11548d7, 0x4454712c, 0xb0826ba8, 0x4283abae, 0x5ad5242b, 0x41467cce, 0xda50003a, 0x7513ee02, 0x000083 } }, { { 0xf6671f5b, 0x577df1a6, 0x72e80624, 0xc954bce4, 0x1581489b, 0xaa9c4aab, 0x296288ae, 0x5f4ed138, 0xf18b466b, 0x6c64a1ae, 0xbfb643d, 0x34ba2c7, 0x77734df4, 0x30d06e04, 0x9e9697ef, 0xbdfcaef6, 0x000008 }, { 0xba1f5f65, 0x2a13f1e2, 0x5840f79d, 0x150e724, 0x35f6ead2, 0xa1912c8b, 0x84f544d6, 0x8b64acd8, 0x1963030a, 0x2e8843ec, 0x96784163, 0x40657bc9, 0xa5e80091, 0x96e7f1d, 0x8b59951d, 0x888e6d17, 0x0000c9 }, { 0x16a2ddf5, 0x4f12c91, 0x239ee3b2, 0x631b086a, 0x2435c1a3, 0x82302d5c, 0xef3a6031, 0xc464ad70, 0x8114f7f6, 0x9fceec40, 0xea9f2222, 0x81cbac5f, 0x7599c94c, 0x9dce1b4b, 0xdde7d017, 0xe24425d0, 0x0001e1 } }, { { 0x7c73e4a5, 0x7f4fbf70, 0x2621637f, 0xef6bb5e6, 0x8f734ff2, 0xfbd5a4fd, 0x5db2bebf, 0xc8eee127, 0x23f243ca, 0x4ab4b8f3, 0x8752bee0, 0xbf0689eb, 0x6a8e8579, 0xd22c5302, 0xda127f8a, 0xb4c4d43f, 0x000039 }, { 0xf2a37449, 0x8c6f58ff, 0xaa952fa2, 0x2e9a4f6a, 0x73f36f4d, 0x1415ecbc, 0x34226bf7, 0xd8946d75, 0xc87f6846, 0xcb7b1823, 0x7384ffd1, 0x15a1a067, 0xd61f73c, 0xdca567d4, 0xff5fd27a, 0xc6235319, 0x0001ad }, { 0x347dca5, 0xcf7630e9, 0xf924f583, 0x848a65a5, 0x12427f3b, 0x75aaf6e9, 0x2d91ce84, 0xed523a9a, 0x9d47efae, 0x79ba415c, 0x3da0ec36, 0xe597acc0, 0xcb40cb33, 0xb098d1c4, 0xf7f13a38, 0x10f24314, 0x00009e } }, { { 0xa5150fc, 0x4eb65755, 0x762e166d, 0xc432454f, 0xfc7d96f8, 0x9d823417, 0xc080f9c0, 0xd9585901, 0xa67b495f, 0x48b9ae, 0xed81ffd1, 0x4b44a6ee, 0xea6f98e7, 0x4442682, 0x3fdd7bbe, 0xbb531b02, 0x00001f }, { 0x3d1bf252, 0x95af72c2, 0x95510417, 0x645e11ba, 0x17b5cc87, 0xb5c0e9d9, 0x4dc9f136, 0x45d9119c, 0xdeaf966d, 0xe7f20b, 0x3c47f547, 0xa622be8a, 0x207ddce, 0x1eb0ee1, 0x535a725d, 0x2eaf3117, 0x000133 }, { 0xe70ad0e9, 0xa8272723, 0xcc008294, 0x1b0fd869, 0xfd0a5fc0, 0x85b34a73, 0x5f046bdf, 0xd471e9e2, 0x80881313, 0xf88fe286, 0x4e55b472, 0x10b871bb, 0x24083d3d, 0x3db2f313, 0xc5bd1350, 0xebc7b7cd, 0x0001d2 } }, { { 0xb017370a, 0xffa1d625, 0x19ed1dc8, 0xf326beff, 0x19d47b9b, 0x14e59982, 0x5f89a1c4, 0x2c3c56b9, 0x38f12993, 0xf4658937, 0xd5a564f5, 0xdf769212, 0x231aebf, 0x5ea10469, 0xd099e7f1, 0xfe3262f3, 0x00013b }, { 0xf25dd1da, 0x45ff95b4, 0xbb31b8b3, 0x94c88569, 0xe699f283, 0x53e4a76d, 0x67cdf20, 0x184fc79f, 0x6ab796dc, 0xb1a2a9fd, 0x16bb7846, 0xf0274ad1, 0x5c94e278, 0xddb0ce18, 0x38411636, 0x7974a3e9, 0x0000bc }, { 0xb6a52d1f, 0x2b14b59e, 0x4bed83c9, 0x15d12fe1, 0x6bccdd13, 0xccea128d, 0xce301b52, 0xada8ba61, 0x1f1796f7, 0x396b8d9d, 0xe09b19ca, 0x68824472, 0x9012f0ba, 0xd875e818, 0x3cd3b46b, 0xd4e5e54, 0x00003a } } }, { { { 0xa5465d39, 0x18bd4fd6, 0x40ec64de, 0x4c365f60, 0x739f6d8b, 0xfe19c3bb, 0xd4114433, 0xb9bc5e62, 0xb7e0f9de, 0xd0cb3d72, 0xc757399a, 0x4d08c4b2, 0x1b8fe3f0, 0x169a5318, 0x797b75a0, 0x6f654ef8, 0x0001a6 }, { 0x5d164ec9, 0x1451fa78, 0xd982828c, 0x75bd2919, 0xdc8bd15b, 0x4ed89866, 0xa0827a89, 0xd061b25d, 0x7d0a5209, 0x49f7464f, 0xc12a4885, 0x309f0b13, 0x8a7b2819, 0xbf509d4e, 0x379ebe08, 0xe08b3eb8, 0x00007c }, { 0xbb339a7c, 0xe1f32c49, 0x74340f11, 0xfcd13691, 0x3e754ab7, 0x3684fbf0, 0x9400bbf6, 0x11f6731d, 0x6f06b25d, 0xa4ab5cf, 0x88f9973e, 0x18d6526e, 0x5da3ef90, 0x1bc7ad41, 0x97f55bdc, 0x8dc336e4, 0x0000f3 } }, { { 0x2d1e40e, 0x18fcb056, 0x6bc70cc8, 0x9ab4814b, 0xee384e00, 0x445f324d, 0x1afc1e13, 0x93518602, 0xcc93dd8e, 0x649478ef, 0x498a8032, 0xb600a2d2, 0xb3fb2066, 0x2a46975, 0xd33769cb, 0x8c46f6af, 0x000094 }, { 0x1c4bb0bd, 0x7c65decc, 0x3f287fa0, 0x80acb444, 0xba6ebe72, 0xf6a214f2, 0xbf0788d0, 0x6a9da7f9, 0x1b1f4b99, 0x677314f2, 0x4519bc85, 0x774daea7, 0x7b9a5374, 0x28abc049, 0x558ae6b4, 0x24bf5ba8, 0x000173 }, { 0xd4c2bcba, 0x20da4536, 0xf4b9cd34, 0x6d35be07, 0x24167a87, 0x3b1c3f24, 0x16b15e1e, 0x4ae07f2f, 0xc953373b, 0xef58080d, 0x30eb465c, 0x7bd3d12f, 0xee25723, 0x36fa27ee, 0x41084c9, 0xb5139606, 0x0000de } }, { { 0x59a2c909, 0x70b06814, 0xf4527c02, 0xdb3e2a04, 0x4772ea0, 0xddc5b8a6, 0x8d6c46d, 0xeed35bc0, 0x6b47686a, 0x3960e094, 0x4927458a, 0xa7365b65, 0xd05b7518, 0x1d3f4226, 0xb798f8e, 0x3aecbc0e, 0x000126 }, { 0xc5aef910, 0xa9f44663, 0x8b3c82cf, 0x8e1ffc75, 0x4d4ea110, 0x6adc533d, 0x70855534, 0xe635dc37, 0xa28c116, 0xaaa3aad4, 0x596ff49a, 0xe007cfdc, 0xc6af2049, 0x4d722b50, 0x10606f84, 0xaf7dba8e, 0x00013a }, { 0xbfe53dbe, 0x379a80bc, 0xf07ce58f, 0xce60d8b4, 0x102f5a21, 0xf41c4528, 0xed4001ef, 0x5ebe40fc, 0x2bd31489, 0x34d88f5b, 0x3db98bb0, 0x7c9fca46, 0xbfe42718, 0x66446d11, 0xb693742c, 0x4a9de32f, 0x0000c8 } }, { { 0x23e10ea3, 0x5bcd9e2a, 0x8be64675, 0x1ac97bc, 0x4d3d608e, 0x908578f4, 0x587b459d, 0x74f5af84, 0xc33495de, 0x59a63387, 0xfed845c5, 0xe85413b1, 0x4096f804, 0x57331f47, 0xf908880d, 0x7ce3ab1a, 0x000119 }, { 0x210ac50c, 0x98125ee0, 0xe1665119, 0x121b4b23, 0x4e253171, 0x72d7e806, 0x5b3b599f, 0x156184ab, 0x8a311b80, 0x524fa33f, 0xa057c85f, 0x9c0d0c49, 0xcdaf4b6c, 0xea13f109, 0x49c60dd1, 0xef3bcbce, 0x00002f }, { 0x22838d6e, 0xb69c3336, 0x300cd5f2, 0x337cd2d4, 0x8c1c1b74, 0x6b02e812, 0x386898f4, 0xa1422882, 0xf1c5c188, 0x6ce56eeb, 0x1682766b, 0xaa8fc563, 0x9fcc02dd, 0x47c94e77, 0x8d1d751e, 0xc4a06885, 0x000080 } }, { { 0x8a514ff3, 0xf74ba2ca, 0x6ec16577, 0xd11acde6, 0x531ecc27, 0x297d7593, 0x1be002e6, 0x9d60a790, 0xe3a2f75, 0xa726ae1d, 0xe4c4153b, 0x7b301caa, 0xb4ae21f, 0xd8d032d8, 0x5567e17f, 0x13570b5e, 0x000039 }, { 0x272cae23, 0x6d11d3a1, 0x883a451a, 0x530fdf26, 0x8f6720b9, 0xca8d0f1c, 0xc1236c76, 0x6283f83, 0x2443d1ae, 0x6c75d123, 0x2047cf1b, 0xd7ab2e86, 0x969469e8, 0x3231d5be, 0xdb02c617, 0x54ee5d35, 0x0001c6 }, { 0xbe329cb2, 0x4bc8f534, 0xbad6e9b5, 0xdf0d17cd, 0x2c809573, 0x3e498f34, 0x19f1d84f, 0xc6dc3e04, 0x5b1c22b, 0x5c80d7ed, 0xd81427e1, 0x7db49f76, 0xf581588e, 0x50e9558b, 0xa1b8ccd5, 0xf431949e, 0x000081 } }, { { 0x610b309a, 0xac5a1135, 0x913e0dbf, 0xfc189545, 0xcab5415, 0x580907c, 0x9b866fc4, 0x48748585, 0xce8607fe, 0xda5a6d38, 0x62de4f5, 0x4d44b8d9, 0x69d89708, 0x748a2656, 0xc816daef, 0xdfd2a58c, 0x000070 }, { 0x64bb6fa5, 0x32dd3694, 0x585f5c14, 0xb289745a, 0xd02e6b73, 0x91777625, 0x474733f9, 0xf4daf2fe, 0x3411e0b2, 0x910fb516, 0x63dc48b0, 0xebaf9cd1, 0x7b6ba2bb, 0xf28cec55, 0x736e97f8, 0x71c57173, 0x0000de }, { 0x356c73d7, 0xa04c8f98, 0x15abc91d, 0x1538cc7a, 0x99a2acce, 0xc556a8c9, 0x247882a3, 0xf0293b95, 0x60f2071f, 0x12f5e148, 0xf2a7c7fb, 0x86a3f69a, 0xf8b49ab6, 0x1dce593, 0x758d533e, 0xf6856377, 0x0001ca } }, { { 0x9077566b, 0xa2f5554f, 0xd4990ed2, 0x1577d024, 0xc637721b, 0xe52152a2, 0x5df295b8, 0xa21aa294, 0x6f9a512f, 0x3100f0f4, 0xcaa40bf3, 0xe0e86620, 0xcce6a776, 0x342e365d, 0xfee618e7, 0x886cd458, 0x0000f6 }, { 0x988ab677, 0xc81c8158, 0x707acd5b, 0x89b47d93, 0x91543d2, 0x5ef17e6d, 0x45d9c8a1, 0xfcc8cbbc, 0x65acd305, 0xde5e80d4, 0x8e484fd9, 0xf39ddc88, 0xd4cbe1cd, 0x77bc401d, 0x23cb202d, 0xb61178f1, 0x0000a4 }, { 0xb695da6c, 0x5585bbd7, 0x7f8c2491, 0x18865050, 0xed664b74, 0x3040c71c, 0x925c0486, 0x7c2cea29, 0x3cf11b55, 0x4d4d19d5, 0xd83d9203, 0xba4951b3, 0xa449c8c6, 0xf35441cc, 0x2c619ca4, 0x82d3a8ac, 0x00005c } }, { { 0x154832bd, 0xb9f054ab, 0xddd307ce, 0xa14fef20, 0xaa1a5ad8, 0x5fc40ae5, 0x52695b20, 0xc1ced829, 0xeda6bc12, 0xf149efaf, 0x526895ce, 0xf6be7636, 0x883a185f, 0x4052c8a8, 0x8773961f, 0x88fa6cfe, 0x00011f }, { 0x2aa8ee4b, 0xd7bfeeba, 0x5fbba468, 0xb90e925, 0x670b4d4b, 0x56e64a07, 0x394ee506, 0x9b5fe81f, 0x49c6d362, 0x71599ba3, 0xeee13b40, 0x68461110, 0x17fef6c5, 0x6d54f054, 0x5b40c246, 0xdf0187bd, 0x0001e6 }, { 0x95714a3b, 0x398cd546, 0x66ccb175, 0xb10e78df, 0xeb17dad4, 0x4359e075, 0x55b9aaa, 0x2e9a71a5, 0xd79462f6, 0xae27b51f, 0xa23d665d, 0xee6f9090, 0x9a2cdee0, 0x8569bb18, 0x7bcfe62d, 0xa3b6c50, 0x0000da } }, { { 0x621e6d71, 0xf7e3165a, 0x1c40b57e, 0xda71daa5, 0x26c61e0d, 0x34fc9df2, 0x8e0e4b96, 0x57e3ec6f, 0xe05cd082, 0xd8cae402, 0xf47a481c, 0x7ee68d0, 0x3b7c9904, 0x447be527, 0x1916f95e, 0x1998f05c, 0x000029 }, { 0x97bd0ce6, 0x3ade04ad, 0x14ab844a, 0x6bfc584d, 0x37f65c2, 0x386037e4, 0x48eb4045, 0xeef12418, 0xb8b3b14d, 0xce3c3d78, 0x3b58dad7, 0xb3e96035, 0x9154e708, 0x950482f5, 0xab4e5775, 0xafbfa2e9, 0x0001e4 }, { 0xcfc91869, 0x8046ac96, 0x6ac60fc5, 0xa2609df8, 0x2917dcb1, 0xf61fac61, 0xe2d4f899, 0xd4b6b957, 0x482dcaad, 0x512e1337, 0x45a4d6c1, 0x3d271741, 0xbc01460e, 0x43645ba1, 0x4850ee03, 0x92b1556a, 0x000107 } }, { { 0xdfc38582, 0x57ece5f4, 0xecf01fcb, 0x48df1eda, 0x2fec4e49, 0xa5da942a, 0x25756ed, 0xbbaa1106, 0x121ef7e, 0xe2183e7, 0x6ccc3a3f, 0xa76b7ac4, 0x59605bf5, 0xa8cc628a, 0xab152bf3, 0x13892917, 0x0001ca }, { 0xfe8539b7, 0x81aea5a6, 0xf8f473c9, 0xec50aa93, 0xc6ecc6b1, 0x10254c2e, 0x614ffb88, 0xd817c30a, 0xdc1c2acc, 0x846f6a5d, 0x39f6dd5b, 0x12e78ac4, 0x2db349de, 0x80e159fe, 0x709aa55c, 0xd7d937e4, 0x00007c }, { 0x932bffb2, 0x62a2e63, 0x5adffe48, 0x22d258dd, 0xf4659539, 0x170f03f2, 0xb533f004, 0x3329316e, 0x17751ac5, 0x325c2fbe, 0xefecd1c0, 0x1c5ebd94, 0x726f4c18, 0x74d34aa7, 0xd61c5e45, 0x24890b5a, 0x00014d } }, { { 0xf2d7a8e8, 0xe0cc2b16, 0xab8eb516, 0x5406afb0, 0x733d81e0, 0xb68fdd1a, 0xa4d94c3d, 0x5273460b, 0x841158f, 0xf8545cc2, 0x784fd5b2, 0x2882aaa2, 0x3b406d9d, 0x1699e287, 0xf5d14ca2, 0x14f88459, 0x000165 }, { 0xa5f341d7, 0x6d0b3ec1, 0xf8ac5680, 0xe3bc1855, 0x16a16b34, 0x18633565, 0x48467b99, 0x6a715524, 0xf202c018, 0x9313124a, 0xaeef0d69, 0x622cad3d, 0x849fffa5, 0xcd4a9de3, 0xfcd04625, 0xda2156e5, 0x00019b }, { 0x16accb78, 0x80f07cd4, 0xf3baaf88, 0x832b9047, 0xa30b98e9, 0x45c45d31, 0xbd19a41b, 0x31ee9cc1, 0xf3519c5c, 0xd560ad58, 0x8aa2f82a, 0x712fd7a2, 0xabe6b8e7, 0xa7307533, 0x2e2917d8, 0x4470f1d5, 0x0001d5 } }, { { 0x5b4115db, 0xa43f4175, 0xdbbe2ce6, 0xf77dff09, 0xd88b7226, 0x7269231, 0xa7f14737, 0xa98ea310, 0xeb8cd646, 0xc9cb1fe9, 0xc8ef27f7, 0x5b8c4fe6, 0x17998a4e, 0x9b9116b6, 0xf59d9447, 0xb7317cf, 0x0000da }, { 0x65b8ee82, 0xea50fb04, 0x9bd81242, 0x2c075cf6, 0x13df3fc9, 0x382e957a, 0x75b4b189, 0xd4f80e95, 0xeba5fe0e, 0x5b28026e, 0xc63faca4, 0x622431b5, 0xafdfd4a1, 0x876f74d3, 0xff715f4, 0x8169613e, 0x0001e7 }, { 0x47828b9, 0x96144046, 0xfffaa6b6, 0xbf26bf07, 0x3cc86414, 0x44ae185c, 0xf5f89c14, 0x304f9ea8, 0x57345364, 0xd9871b70, 0x4291f146, 0xc4be7bfd, 0xe2ca7edf, 0xe797377b, 0xf6b82499, 0x8a85c57b, 0x00000a } }, { { 0x3d11c717, 0xc05bdba7, 0xc2572cda, 0xdcf81e7a, 0xd032dc7f, 0x54f6b3fc, 0xb0d134f7, 0x43738587, 0x632d03e7, 0x9513124b, 0x3118151, 0x76b3393f, 0xdae1ad42, 0x4fdd8662, 0x9f143d1c, 0x24c5b0e8, 0x000031 }, { 0x92fe9cf3, 0x46139a9b, 0x7d6f59f9, 0x8245e5fb, 0x19d0db41, 0x34691ac7, 0xfb6fb22f, 0x2826e6c6, 0x9bba686b, 0x8b899bc7, 0x35d61866, 0x1026aae5, 0xe40ff86c, 0x1e46ac23, 0xf070ab17, 0x532dd707, 0x000017 }, { 0x1dfd1912, 0x8ae36642, 0x37971614, 0x4aa8a033, 0x7e1521b0, 0x78a0227a, 0x8f02d78, 0x7bec00f1, 0xeb4eef85, 0x402c3bc7, 0x926093a, 0x43b7e107, 0x26783adc, 0x31659b09, 0xebb03e35, 0x138a645c, 0x0000c0 } }, { { 0x93b3ed92, 0x60a84791, 0xc8fabe9, 0x4bd352b0, 0x72a482c0, 0xbec52b02, 0xb8b26a94, 0xf465c33e, 0x509039fd, 0xb7e673ba, 0xed7a4dff, 0x720ba395, 0xd0c5708a, 0x16b20343, 0x16278b23, 0x4f72ca05, 0x0001ec }, { 0x463000e9, 0xac1111f, 0x21bd7a80, 0xf6dc099, 0x15f44f21, 0xd577e172, 0x8983e469, 0x1866ead2, 0xafcee7c1, 0xe3f80c36, 0x9d2212a0, 0x622de978, 0x37ed5d53, 0x822dd5b3, 0xf80ea362, 0x9dcb0371, 0x000100 }, { 0x60b84649, 0x5dd48aef, 0xee6202d0, 0x2b0a2a57, 0x8ae9d50c, 0xb2f3c068, 0x5a4d6b8c, 0x7c2123b3, 0xb3db3d2b, 0x87c912bd, 0xe9b3c37f, 0x7000950, 0xb27d5520, 0x8643272d, 0xe5ef98ea, 0x87a0aa8f, 0x0001ef } }, { { 0x806848a2, 0xf0eaba8d, 0xea23a835, 0xcdf261b6, 0xb4c3ab0c, 0xe6b4c3ce, 0x97ea242f, 0x627950cd, 0x21c4e8a7, 0x4e19cf1a, 0x63c2f9e2, 0xfcb143b8, 0x45807c51, 0x9354a86b, 0xf2cce34, 0xe2adc578, 0x00000a }, { 0x70191c2, 0x4dbc7c6c, 0xd74bd26a, 0xa863fac3, 0xac8058e0, 0xc50673c6, 0x2f6e2c5b, 0x7ce3e762, 0x84f66570, 0x789df6ed, 0xa292f210, 0x2d548664, 0x43b04f3a, 0x583f199c, 0x5450aebf, 0xabbbefe0, 0x00011f }, { 0xa40d172d, 0x5f69ca24, 0xec8e1206, 0x69523d71, 0xc4267bd4, 0x8baa3af1, 0xb31457ca, 0x7ad84660, 0x4560bfb, 0x5a59888e, 0x2cef63f2, 0x632e5dc6, 0xb8f50f73, 0x4bf2cc77, 0xf3d4e181, 0x8da9d2d, 0x0001aa } } }, { { { 0x296b90f2, 0x3ac352c2, 0x2aa790bc, 0x1e04e071, 0x91e3119e, 0xca485514, 0xe6dfa4c8, 0x88c23bae, 0x582d3c5a, 0x64b5a9e2, 0x494371b5, 0xf0c88ede, 0xa920af34, 0x15292ad2, 0x4a86f35f, 0x67827fd, 0x0000a2 }, { 0xe57b376b, 0xb21804c3, 0xf0239c73, 0x33826007, 0xfc547066, 0x37cd2d7b, 0x4e5b3a92, 0xc17d639a, 0xaef244ae, 0xada5d45a, 0x1031122d, 0x3b6340fd, 0x5205cb33, 0xa3867dfa, 0xd8d6da3a, 0xcd376820, 0x00019a }, { 0x4511ed4c, 0x44c14cf0, 0x2823d2bc, 0xc645edbe, 0x724d5480, 0xf413281f, 0x3af8fe47, 0xc6d1b2f3, 0x60e5b0f1, 0xb4b9fc7f, 0x488ecfb2, 0xc25c74b, 0xa7f9c7b4, 0x979e11ee, 0x5047b135, 0xf290ea28, 0x0001e8 } }, { { 0xf04215b0, 0x299113fd, 0xd6930a40, 0xe4109924, 0xacfa797, 0x1961e981, 0xd25bd6ff, 0x32b25ac7, 0x904adc03, 0xc4b56b2d, 0x708e0f5d, 0xde945006, 0xad3d2f68, 0x989f2412, 0xfeddf6f7, 0x491a999a, 0x0001d0 }, { 0x57ee78b9, 0x9afd6c2e, 0xb4b17938, 0xee4e071b, 0xd8f657ef, 0x712f5c3e, 0xf3deec3, 0xfca26ae9, 0xbc794f76, 0x1a543a6b, 0x5f8b1d14, 0x236585f1, 0xb8a716dc, 0x44c0fe43, 0x152b17fe, 0xde6a3d70, 0x0001e1 }, { 0xcd78b7bf, 0xc73f9e96, 0x467a743e, 0x8fed41c, 0x1f0466bc, 0xe8fbeb28, 0x176bc390, 0xba937955, 0x4e064220, 0x74eaf8a5, 0x837970c2, 0x21ab948, 0x35889af9, 0xcf980a25, 0x409995be, 0x7b875dfd, 0x000192 } }, { { 0xcb370033, 0x2842015b, 0xedc3e022, 0x1c45e710, 0x671bee66, 0x24c59226, 0xf0fb3fb4, 0x3018382d, 0x1cb357b0, 0xad11f744, 0xdd059fe2, 0x65fc74a1, 0x6b23b454, 0x555d2e04, 0xfc3951c2, 0xf44fefec, 0x000005 }, { 0xd9f61de6, 0xe3ac9a34, 0x1635f8be, 0x38bd8fbf, 0x886e15c6, 0xc5ee8c5d, 0xdc192b22, 0x9221f130, 0x4df7ad4, 0x8f636a21, 0x731cf5fa, 0x866c1bea, 0x5e7f5074, 0x2e0f0deb, 0xd501672a, 0x86cece40, 0x000172 }, { 0xe41fae16, 0x72b85f81, 0xe09f09c4, 0x975092ef, 0xa7002e84, 0x2d329eb, 0xb97baaf0, 0x2c195b0d, 0xcc15d7d1, 0xe14b1fe, 0xc44a943e, 0xe7e7f916, 0x92d00244, 0x4a87bf05, 0x6492ba5a, 0x65ada465, 0x000132 } }, { { 0xe3b9f7d9, 0xcd18d726, 0x8f96ccb4, 0x6b059264, 0xec82f475, 0x87bd7088, 0x8f12c5bd, 0x87b099bd, 0x6bf444da, 0xc7227d63, 0xc2bc5129, 0x6749ea87, 0xd5bd59ce, 0xca6dd3d6, 0x1f07b5d3, 0x5db30fe4, 0x000132 }, { 0xd5c0d54a, 0xc64c482e, 0x6af7037c, 0xb403af2f, 0xdc5a9ed8, 0x1a2f9c5a, 0x21263087, 0x25c3c0f2, 0x8a15a656, 0xd66fb7d8, 0x6d605ee2, 0x94c0f3d5, 0x44c5bc09, 0x70d50d79, 0xd96be3b0, 0x351a41ba, 0x00017d }, { 0x952db0f6, 0xa07bb828, 0x19787913, 0x97f98646, 0x4eb5de8c, 0x2f88c76b, 0x34c3313f, 0xc36d705b, 0x787be339, 0x67ebc686, 0x3049b7db, 0x1251fddf, 0xc14be2f1, 0x94377cbc, 0x823065c9, 0xecb3ddbc, 0x000095 } }, { { 0xf0b1c0d0, 0xbb849b2e, 0x212cc4a9, 0xa0f372b6, 0x1cabaad4, 0xf034d9d9, 0xba55f0e8, 0x66ceca05, 0xb85b43af, 0xd4f37126, 0x3f5b28bb, 0x23160de1, 0x73bdab39, 0x4579ead0, 0x77d4ac26, 0xc4680ded, 0x000153 }, { 0x35abe4c6, 0x1978e865, 0xc072d695, 0xdf2f2bcd, 0x88d2bbf9, 0x4627660a, 0x3319847d, 0x654d2ff, 0x1b100a5f, 0xdc72d624, 0x2052779f, 0xa5c32d3a, 0x43e6f304, 0x9c1a37f3, 0xdced0d7f, 0xa45b6a8d, 0x00004f }, { 0xe7cc4621, 0xbc58ad8d, 0x572ab32e, 0x63c22b3f, 0x93a4f714, 0xfe655309, 0xffedbcdf, 0x89ab7d14, 0x40358c9a, 0x15460978, 0x7e19d677, 0xdf83f70c, 0xd3f7652f, 0xdef80f63, 0x52c421a9, 0x7811887d, 0x00001f } }, { { 0x577d43f4, 0x23f3c3ed, 0x905662d7, 0x167ec1bf, 0x531d9306, 0x72864b4a, 0x686e1b0b, 0xe20b0862, 0x897cdbf5, 0xb738d730, 0xd2d98929, 0x754f6074, 0xd6733ba8, 0x30bb263d, 0xd5334112, 0x597d296a, 0x00003a }, { 0x9922101, 0xd974291a, 0x7b3b5299, 0x2d855f7f, 0x66bdf25e, 0xbd17dcfa, 0xffffc662, 0xcf7b5f6, 0x1846954, 0x7c35736c, 0x15e14ec8, 0xf3cd979, 0xf3368a2d, 0xc572b2d2, 0x296710b9, 0xbd230f5a, 0x0001bd }, { 0x99aba2d7, 0xc3d31434, 0xc5e2a1a, 0x7de81603, 0xa2719c69, 0x67bb4109, 0x53ce644d, 0x90b96edd, 0xd905ee3f, 0x214d54c6, 0xb4ebbddb, 0x3fd4db63, 0xdcfbd9d7, 0x8d7c97a4, 0x419f780b, 0x21be79d0, 0x00014e } }, { { 0xe92a9eac, 0xdb71dd48, 0x2d1af0ba, 0x67f03bf5, 0xea46552a, 0x488c7b3a, 0xf8d1a3a1, 0x2311335b, 0xe656fd0f, 0x50273cbb, 0x72ab2f15, 0x9efc2bf2, 0xf07940b7, 0x9ff1d8ea, 0xb393fd98, 0x2e0a2070, 0x00015e }, { 0x37dee8d1, 0x4d55ecd4, 0xfdc9da81, 0x5ce60c32, 0x63034b7f, 0x7615c2, 0xe6ecbd21, 0xcb8ec1b4, 0xf64383cb, 0x713808e0, 0x315427d7, 0xa408f172, 0xfd96734e, 0x7ae8f78c, 0x308fdb02, 0x3f9ce5db, 0x000018 }, { 0xca5c5687, 0x60c2ba6b, 0xdd72b5c3, 0x383212fb, 0x1d40c88d, 0xaea8befc, 0xfbecfde7, 0x94c9d1c8, 0x6ac3ee7d, 0x87a37b0, 0x7656a199, 0x30f331c1, 0x8ab07253, 0x614e21da, 0x2112f33a, 0x1914a271, 0x00014e } }, { { 0x522c8ffd, 0xb6e1466e, 0xeb654a27, 0x8177b72a, 0x9e09ef51, 0xc2c7d671, 0x478b8d24, 0xd782085, 0xc8fd65e0, 0xc49c2955, 0x3e9ec83c, 0xdc6293c0, 0xe76c9e59, 0xdcbeac4f, 0x1be9cf73, 0x4e229fe0, 0x000121 }, { 0x68cfed3e, 0x9b429986, 0x4b595948, 0x6a76f7c, 0x589d8d7a, 0x173e8bea, 0x8abe39b7, 0xf2da110c, 0x80868b52, 0xff2a26d6, 0xa4240b14, 0x1d720fd7, 0xa3f16771, 0xf398052c, 0x260cd9c3, 0x21449556, 0x0000f2 }, { 0x9ce37cc6, 0xe1aeef32, 0x89508545, 0x7a4e2f1, 0x7e4f84e0, 0xba4441b8, 0x4ba9cb7a, 0xe84733bc, 0x2d49f749, 0x9c02442a, 0x885595ae, 0xeb132ca5, 0xbccd7db, 0x283f0e9a, 0x4158b848, 0x66cf8084, 0x0000d0 } }, { { 0x8fdbe157, 0x47bb8104, 0x2c48907a, 0x37eaee65, 0x72fe4c98, 0xe0f386a2, 0x870c145f, 0x4d5227b1, 0xcf2fe67e, 0xa90d96fd, 0xe72a00cc, 0x651cf214, 0x8d1ebe0f, 0xed1f3554, 0x2772e1c8, 0x24a8c312, 0x000105 }, { 0x44ad216, 0xb9987ca2, 0xee13aa49, 0xfc9b412a, 0xcd4e6d5b, 0x183b78cc, 0x4fcd42a3, 0x24e038d2, 0xcbd64582, 0x95661e75, 0x453153ff, 0x3b24728b, 0x410fe6bc, 0xf6d64197, 0x4e94553b, 0x7e466f18, 0x0001cb }, { 0x607971ed, 0x1ef207b2, 0xf670dcba, 0xf8c7a324, 0x50c6bf5f, 0xef080424, 0x9e838d8a, 0x34dcc2af, 0x432d103d, 0x2fb4cbcf, 0xf33d0730, 0xec86dea7, 0x7ea6e203, 0xfe6718bc, 0x5ffbf5fe, 0xe21c0e19, 00000000 } }, { { 0x55ba662a, 0xd088c89b, 0x5d3fa698, 0xfced76d4, 0xea7fb192, 0xf32a76b4, 0x58995310, 0xb512c027, 0x3705d840, 0x87284529, 0xd7cd85bd, 0x3549b037, 0x6e979bdd, 0xaa3e667f, 0x61f16f0d, 0x54f57d12, 0x00010c }, { 0xc7a927d0, 0x168dd6bc, 0x8facf5f5, 0xc7fcd834, 0xe0940334, 0x3cbe107b, 0xa2afae7d, 0xdfa1b247, 0xb8c723e, 0xa373299a, 0xf536d4d6, 0x1562656b, 0x2a433e3e, 0x620c9875, 0xaddf0e40, 0x12a3540d, 0x0001fd }, { 0x9ce8e00c, 0xbfd7a184, 0xdefb2b30, 0xd1d1f4a2, 0x819aa641, 0x7c24f0e8, 0x9e8b9e5f, 0x6ea3fdd1, 0xcc1a9937, 0x2e0f687f, 0xf2834b82, 0xb8e40bbc, 0x151ab93b, 0xa948ea69, 0x74f3e2dd, 0x6fa90f83, 0x0001ca } }, { { 0x631fad57, 0xd371f1a6, 0x774aeba9, 0x4e35d09f, 0xd3ef1e22, 0x4ff83977, 0xf05c677b, 0x11a0f4e3, 0x3623c86e, 0xf6bdb42a, 0x9d5487c9, 0x702e65ed, 0x50fd3790, 0xb7bc83e6, 0x6e06dc47, 0x7949fdf5, 0x000156 }, { 0x5af42036, 0x71cec283, 0xe79062c0, 0xeb3dcb8a, 0xfea244d6, 0x4bac71a4, 0x22ed295c, 0x51873254, 0x624df7ab, 0x254d9077, 0xfbbbd57e, 0x4856346d, 0x5470ac79, 0x7bc2c880, 0xd7273236, 0x56d2024b, 0x000095 }, { 0x9437d1cb, 0x7a9c9502, 0x2acf6838, 0x82abbd6b, 0x531a0a9f, 0xdea007c4, 0x4259e736, 0xe76b184b, 0x64624d6c, 0xf93461e3, 0xf37e76c9, 0xb45e4342, 0x7abd2fdf, 0x43cb2bf7, 0x24311750, 0x8909b245, 0x0000de } }, { { 0x915214eb, 0x32e08684, 0xcd73f3db, 0x2c520542, 0xaed23427, 0xe897337, 0xd362074d, 0xa94ef85b, 0xf5668bd2, 0x22c6a5bc, 0xb247341e, 0xb7d53f17, 0xafb5facd, 0x8c41b756, 0x2d49c76, 0x45f52e05, 0x000017 }, { 0xfd662fa6, 0x640d3ab9, 0xa0028a09, 0x78cf065e, 0x5d78020f, 0x97cab2e2, 0x2b164a4a, 0xcf36171d, 0x22c5bdc9, 0xea1dc839, 0x978a4793, 0x96647c63, 0x262ed2e5, 0xac964c6f, 0x8b2217b4, 0x8717078a, 0x000162 }, { 0x2aff63de, 0x72e1e8e3, 0x1f994af0, 0xc6ee0fe3, 0xa2e7deea, 0x6e2aa678, 0x4336a9c6, 0x4a2e4d37, 0x7d75a91c, 0xbbd52b10, 0xc2dc55ed, 0x643e123b, 0x1b09ccda, 0x81e952ad, 0x1afb2938, 0xbe678dd7, 0x000148 } }, { { 0xcb7b4a18, 0xb750050, 0x13670b11, 0x38718ca1, 0xa861f94b, 0xfb2d5136, 0x88d8156, 0x212153c9, 0x327e522d, 0x5014c2, 0x8fc328f6, 0xe9453806, 0x45f48352, 0x2e74f247, 0x774062, 0x5b7a2dff, 0x0000bf }, { 0xf35d0188, 0x1cf05edf, 0x1e3989ac, 0xfbf9c3d4, 0xc79a8cb8, 0x893dca11, 0x422574c4, 0xd80ba963, 0xd6eed480, 0x3dac78b, 0xf6bd7803, 0x8283eff0, 0x23e72cb9, 0xf6debb33, 0xfb75dfd8, 0xada6b384, 0x000158 }, { 0xc6ad6e7c, 0x8f7cd61b, 0xf365c66a, 0x2b7c9f0d, 0x8b50c5ea, 0x6e9376af, 0x3978b5b0, 0x399726aa, 0x527e129a, 0xa05d39e5, 0x2a93324d, 0xebef582f, 0x3b47e443, 0x227b2c08, 0xbbbd15cc, 0x81c9f1da, 0x0001d1 } }, { { 0x36ab1e87, 0xc639dbf, 0xdc0f90a3, 0xd33444d0, 0xf66a47e5, 0xedba1397, 0x57a3c58e, 0xf8f2e8b9, 0xeffc2533, 0x8e93e134, 0x63b0eea3, 0xcf8a61bb, 0xaa4854b3, 0x63b23be8, 0x3fe7f8d8, 0x937ac01e, 0x000164 }, { 0x6c33ec4d, 0x98b84885, 0xffad7848, 0x5e12842e, 0xa426c8cf, 0x9ca2bcd5, 0x435b4577, 0x80e158d1, 0x11e3f94a, 0x8f89e277, 0xdc6be08, 0x7d775e0, 0x57c92678, 0xed29e6cf, 0x5ca09ecc, 0xcd290b9, 0x00013c }, { 0xbac593b, 0xb763b85e, 0x9b32f14f, 0xb409bf3e, 0xd15803dc, 0xc48144d1, 0xbe22a755, 0xa34af0e7, 0xd171c3d, 0xa0b43d62, 0x5222bd24, 0xdd993a1, 0xda1c1f6a, 0xbe200730, 0x2304c157, 0xf4214d13, 0x000039 } }, { { 0xa5d2d502, 0xdf16f53d, 0xce9126b6, 0xfc338765, 0x2718357e, 0xe039314c, 0x9a835293, 0xb05e12a2, 0x426efb88, 0xd12eafbb, 0xbc805069, 0x9a3b5080, 0xd82e1d51, 0x7d6e2b8b, 0x87b5d032, 0xa314390d, 0x000003 }, { 0x306e733b, 0xe7d15c64, 0x34a4ba4a, 0xf159b2aa, 0xd4680bc3, 0xc2e3001a, 0x739e9c2f, 0xf5495575, 0x5aa9c614, 0xcd52b1fa, 0xa80522a2, 0xf45c26d4, 0x46035935, 0x751ce2df, 0x7b30966b, 0xf2c0a159, 0x000046 }, { 0xb2633d91, 0xfcf36285, 0x1067c0e1, 0xadbf2e7a, 0x8bf2d2dc, 0x409a5e23, 0xccb546a6, 0xf1c79b08, 0x282d3b73, 0x7f764189, 0xa7ccb392, 0x8c2390f5, 0x3cc97226, 0x7e22f338, 0xf6a76e30, 0x31323464, 0x0001d3 } } }, { { { 0x43f1f9fe, 0x244a1ab8, 0x888e58c0, 0xbe3358e5, 0x19ebfea7, 0x6cb8902, 0x989996c3, 0x57abec2e, 0x358933b5, 0x421b80ac, 0xd5ddb91f, 0x5b152ed, 0x7cf5577c, 0x4151dd02, 0x30ae2e7f, 0x61b1efbd, 0x0001c8 }, { 0xf062350d, 0xf3ccebbc, 0x4cd7b69a, 0xcfeb8a75, 0x5245b3cd, 0x5a499b38, 0xce376a68, 0x6388ac4d, 0x2f485f9b, 0x90321285, 0x1aa95bce, 0xd643dade, 0x3ac55733, 0xc8ce26f8, 0x995e76e1, 0xa10c058b, 0x0000be }, { 0x5a48fecd, 0x17d154aa, 0xcebc05c3, 0xc7a59f1b, 0x6b226a8, 0x18a4768, 0xebb881c3, 0xb513994, 0xafead0ea, 0xddfaf8b3, 0xcb14b5fb, 0x89ad80b9, 0xdcc92bf9, 0x39a1d6c9, 0x7c5b1f11, 0xf994ee9b, 0x000182 } }, { { 0x281ad2db, 0x166cb0d3, 0xed4d29a5, 0xe1e5908c, 0x9b145ac8, 0x8cdbc483, 0x643cc64b, 0xf816638, 0x7e2ad007, 0x31a7da21, 0x83c92332, 0xde7cc57c, 0x731d6af0, 0xbd9a7124, 0x1ac15d6b, 0xe43a0d0d, 0x000007 }, { 0x3017ddf9, 0x9156a352, 0x901b5bc6, 0xbbd392a9, 0xcdbf1434, 0x4868b25d, 0x42af611, 0x94fd101e, 0x3c1da08b, 0x6378f16c, 0xadc3f430, 0x787a4271, 0x4a864881, 0xc111a2b7, 0x968030a2, 0x83f83b44, 0x000027 }, { 0x33d2de5a, 0xebb23aca, 0xd4526ec1, 0xf9126303, 0xd01752a1, 0xd26fd8a3, 0xc2ae741, 0x6900f60a, 0x112dc6c, 0xe7bb657d, 0x78e0c32d, 0x16a756f3, 0x28599205, 0x832b2ecb, 0xafd7a545, 0xc446e91e, 0x000143 } }, { { 0xc690b2b4, 0x210234a6, 0xf937b857, 0xf529db69, 0xfe959cc9, 0x850ebb91, 0xfa24c6ba, 0x3500dd1c, 0x525f76b7, 0xd4689840, 0xfabf0f9b, 0x71594286, 0xd454f021, 0x1b5107c8, 0x423a4daf, 0x169ba674, 0x0001bd }, { 0xaf9b0e2a, 0x399a4a1f, 0x326f4a5d, 0xe614f7f2, 0xb5fb31d2, 0x2afc897b, 0x3eb952e4, 0xddc4b2e7, 0x4182bc6e, 0x528bc5da, 0x8dc35269, 0x84f228e2, 0xa920214a, 0x106c13c7, 0x42ab0339, 0x4cedae58, 0x000187 }, { 0x58d2574f, 0xd1b40868, 0xbc446532, 0xecdbada8, 0x93fa612a, 0xc22ff322, 0xcf002ff4, 0xb2a1dbdf, 0x493757b, 0x53173829, 0xc0e907e4, 0x7f6e8144, 0xb0abd31d, 0x42e72898, 0xc64b0e03, 0x5bac887c, 0x00004d } }, { { 0x2e29a6a3, 0xa223df75, 0x6cbaccf5, 0x9be39866, 0x1f8d723c, 0x2ba0d3e, 0x7ef1fb4b, 0x316aa3b1, 0x479f86b4, 0xa4c774ba, 0x32085134, 0xbfecea3c, 0x787c2385, 0xfae58713, 0x3e5b2ed0, 0x16914a6a, 0x000198 }, { 0xa36cb4cd, 0xc5e48278, 0x4f8329fd, 0xee0e9010, 0x18ead61c, 0xfa15360, 0x2d3783b8, 0xb2519066, 0x958adb33, 0xb687d5a8, 0x87907e6d, 0x813f58db, 0xecbfd888, 0x2fa421d8, 0xf37fc6cb, 0xf85ba731, 00000000 }, { 0x8625158, 0xc5148487, 0x8472c4bb, 0x39ceab58, 0xc8a3b025, 0x44aef328, 0x3f08060f, 0xb1db365b, 0x33cf0def, 0xdfe0ea01, 0x2a703e5a, 0x4b155a9c, 0x2ad224a0, 0x3801644c, 0x24f0e501, 0x4f0719d2, 0x0000e3 } }, { { 0x91aea6ef, 0x266cf175, 0x4c8302e1, 0x9f800545, 0x227e28e9, 0x31d7866d, 0xe92e02da, 0xafbd9d02, 0xc9d093f8, 0xd0f29ccf, 0xf190a022, 0xd26a667b, 0xeb37fd0a, 0xebffa952, 0x97b606ba, 0xdd58904a, 0x0000a1 }, { 0xe066f655, 0x810f10a6, 0x99058652, 0x93935ead, 0x79b3a75b, 0xf52dab99, 0x746d2f55, 0x8233d3a0, 0xac8dcd4c, 0x273526a3, 0x1115fffc, 0x852026c, 0xb5c83a0b, 0x3d814e35, 0x4848624d, 0xc66988f9, 0x0001c7 }, { 0xeedf8b5d, 0xafd660da, 0x9c413901, 0xeb426aad, 0x2934f054, 0xa283c926, 0x7f700816, 0x250275b4, 0xc4e718b3, 0x979d7327, 0x2be9bfb4, 0xfe481ba5, 0xca6df31b, 0x22d6cd1, 0x346cd5d8, 0xe3461d16, 0x000173 } }, { { 0x74ea3408, 0x5b920b13, 0x4d87d9d6, 0xf50c74dc, 0x2b1c216c, 0xaa078eea, 0x22444172, 0xf3177e29, 0xfc53fc4a, 0x95375b60, 0x82ed30c0, 0x5cc1fbf4, 0x1100174, 0x7b0b76bd, 0xcd89c350, 0xef9f1f58, 0x000112 }, { 0x29fe2e87, 0x1c78a652, 0x5ebdc655, 0x248366e, 0x7fc3a774, 0x62bbc2ba, 0xf859f532, 0xb9b89e99, 0x204152c8, 0x8a525165, 0x32cfc25d, 0x97b4d831, 0xdce385dc, 0x529d1241, 0x7ce4f81c, 0x1c878ad6, 0x0000e7 }, { 0xc5e2d61c, 0xadbe8592, 0x26fdfc0a, 0xb82da7a8, 0x991e66e8, 0xbf4de880, 0x4980c2bc, 0x9b7f957f, 0xd559a37f, 0x53ee6782, 0xdfe99091, 0xb70b3c4f, 0xdd575740, 0x59316398, 0x2dae0dea, 0x2c78a1d7, 0x000084 } }, { { 0x97934069, 0x49fdd830, 0x361f9b9f, 0x353dcf6b, 0x220aa9fe, 0xc18893c2, 0xd2ccbfac, 0x4e7cb118, 0x50172808, 0x6ec9e9e4, 0x315d1e38, 0x123a67c1, 0x88d34784, 0xa22d3896, 0x61efe67d, 0xe3a770c3, 0x0001aa }, { 0x39a2c89b, 0x7822358e, 0x4c9b1eb1, 0x7efb5cbc, 0x64f21827, 0x4f12a0e1, 0x8d565223, 0x6cce1437, 0x2b72fe0c, 0xd4bc7889, 0x204b209a, 0x6410ba8a, 0xfd3e9405, 0xc5360e71, 0xb4c2d974, 0x827536ac, 0x0000a3 }, { 0xe005ad3e, 0xe355c973, 0xc36d9d4a, 0xc008c8c7, 0x4f6f81d6, 0x1b4e0b62, 0x31d5de7c, 0x7717e4ab, 0x9ba0c90e, 0xaeacdb59, 0x385a83cd, 0x674b1083, 0x73047666, 0x7ed1aa6c, 0xa4a141cd, 0x861d4abb, 0x000128 } }, { { 0xf2bbbec0, 0x1c5b97d4, 0xd129cfe1, 0xd1c5c80, 0x5ec1e058, 0x6f7790fe, 0xe6ac3b8, 0xa36d26f5, 0x9603afc3, 0x18310452, 0xf033f6, 0x66767f35, 0x6644d437, 0x3e7c8ff8, 0x219d1d51, 0x3852a82c, 0x0001a0 }, { 0x75f36dab, 0xc1a9dcb0, 0x14f1771a, 0x1c2d77fd, 0x1a7d132a, 0xbb71b369, 0x731529a1, 0x1d20fff4, 0xbd9b2c29, 0x89336531, 0xb00b2f19, 0x905d4d26, 0xdd746947, 0x71e10267, 0x3e0f87ba, 0xbce59c66, 0x0000e4 }, { 0x808609db, 0xd6b1d5c7, 0x7ad818a9, 0x9a62939b, 0x54bee2fa, 0x5784473e, 0x278f303b, 0x83fef79, 0x7372171, 0x755006b6, 0x854e0675, 0x2c997111, 0xbbedffa, 0x25e173c5, 0x7b9cc46c, 0x57de736f, 0x000169 } }, { { 0x44b60cd2, 0x2af9cf28, 0xe4ff86b0, 0x34eb5a7e, 0x4170c473, 0x457b563e, 0x8c0c535e, 0x3eb3c60f, 0xaf335deb, 0xd77653ae, 0xe58401a0, 0x43d9d161, 0x3da1153a, 0x66c7377a, 0x70a1ea99, 0x750a7345, 0x0001de }, { 0x9a70a205, 0x7b52f2fa, 0x9755480b, 0x8951bcd3, 0x732271c4, 0xf3c7c58a, 0xff740728, 0x661922, 0xf0024914, 0x303bf8f3, 0xc8432795, 0x8aca1d3d, 0x4f66cceb, 0xd3e2359b, 0x7900a6ab, 0xa610f4b6, 0x00011e }, { 0xca068fef, 0x68a421e7, 0x67b40453, 0x5c994085, 0xb97c32e4, 0x12d94f88, 0xafb98b6d, 0x5bf71a19, 0xa95c4b74, 0xfd8619e4, 0x62198055, 0xa6f6ac14, 0x60be3903, 0x54077d61, 0xd8faf5b5, 0xf8d95a3b, 0x00000f } }, { { 0x234b46fe, 0xba58df29, 0xd183ebbf, 0xbc677ebc, 0xa1c9845d, 0xe92886c, 0x17a4dea9, 0x75d8ff15, 0x115ccd07, 0x458eb331, 0xbcac0967, 0x9e41b12b, 0x375798b3, 0xb0573bce, 0xfe7abac0, 0x5c07d760, 0x0001bc }, { 0xa1f2db17, 0x61e35f88, 0x72af6c6f, 0x2dca4d17, 0xc0a96443, 0x2c44fe12, 0xcbdf418c, 0x81d8f027, 0x9a237779, 0x2d851c87, 0x2b8fba76, 0xcaf8b6e6, 0xd49ed1bc, 0xdd918558, 0xcf44eceb, 0x2d3722ba, 0x000181 }, { 0x65433dd, 0xbaf5b923, 0x6761c98, 0xd23720ad, 0xa381be0c, 0xb452015f, 0x3827ba49, 0x279837cf, 0x71d6aadb, 0x774433e8, 0x317058d6, 0x7619d66a, 0x24bf232b, 0xd0d7a14b, 0xb7443dd0, 0xbc28bf57, 0x0000d1 } }, { { 0xfc32ca7b, 0xf724c000, 0x35fc83f7, 0xb0b18408, 0x89ae0c0f, 0xa8236ce0, 0xa4828174, 0x19559537, 0xe438337e, 0xb9635fba, 0xb9108bb4, 0x11b153d5, 0x69464d89, 0x451f5b1, 0x2e1fc4e7, 0xd39b0d59, 0x000015 }, { 0xc6e8ddfa, 0x934ea6b9, 0xdf589cbc, 0x65f53bc9, 0x83ba421f, 0x2cbc6e81, 0x3fde41e8, 0xe3c736a9, 0xe01d63c5, 0xfb794b08, 0x2d3e5a25, 0x7c37f1ac, 0x4b5c59a2, 0xde1ac0ff, 0x8338dab7, 0xd6247a93, 0x0001c2 }, { 0x55c5289d, 0x42a4af51, 0xd20bff6c, 0x16c54a28, 0x3f84cdeb, 0x4cab4c33, 0x13e136e0, 0xc82b0e35, 0x8a088e8c, 0x47732522, 0xb5743a7f, 0x6e15c5a3, 0xc752fb6c, 0xc5fe2ee1, 0xce84f55a, 0xb9cea4a8, 0x0001de } }, { { 0x16232bc5, 0x2abd5a5a, 0x942c8935, 0xa9928e7d, 0xedcbad33, 0x45dc3014, 0xa39f8a3f, 0x558ebffb, 0xe05b0a62, 0x52a552fe, 0x20c87601, 0x4925a9d5, 0xcf8ed13b, 0x9a076df, 0x73096507, 0xa40ddb99, 0x000057 }, { 0x6a180f5b, 0xd1b58755, 0x8f761f7b, 0x5280a784, 0xd4b82125, 0x45cbb26b, 0x36851def, 0x724887bf, 0x90b22a1, 0x5c32c963, 0xd596f8be, 0xbb9427e6, 0xd8938ddc, 0x18eaa19a, 0xa4c7cb22, 0xad68b4e7, 0x000128 }, { 0x87cd5d4c, 0xb39360b6, 0x435a04fd, 0x284f4971, 0x10c11c8d, 0x260d3d4f, 0x3adc6fea, 0x5c41d6d7, 0xfd438314, 0x58e60d1d, 0x12b3f6bb, 0x4fe22eeb, 0x3ec4d80a, 0x13b013ec, 0x43424fdd, 0xb205ef13, 0x000130 } }, { { 0x53f99918, 0x6085482f, 0xd80079cb, 0xc4d5bd4f, 0x73d4e946, 0xaa017afa, 0x8a3abfe3, 0xd9158a4a, 0xc31f019c, 0x5d684fd3, 0xcab70e6e, 0xcb660fc1, 0xcf8ec3c8, 0x23b0a16c, 0xa55ae181, 0x5847f4b0, 0x000185 }, { 0xb3f2db29, 0xbbf47bf6, 0x769e068e, 0x6f52937, 0x53e12f09, 0xe7c29e3c, 0x9b39fac, 0xb155a81e, 0x90314145, 0x20961188, 0x231174ec, 0x384a3b1d, 0x97eebda8, 0xa02f953b, 0x805d9057, 0x4d28ee01, 0x00000e }, { 0xc26d0c7, 0x90254e1, 0xfb4ea458, 0xc4b29d6e, 0x39403397, 0x48aaaa0a, 0xd9649b0f, 0x1eb00607, 0xb8423584, 0xf5e00b82, 0xd48c51d7, 0xd17fc2cc, 0xbb42a17b, 0x4cffdeac, 0x9a70a1ed, 0x84c5c41c, 0x0001b3 } }, { { 0x39d6fb99, 0x7d7ea723, 0xd3f190ac, 0xe64246cd, 0x9a87a7f3, 0x72131264, 0xa62f310c, 0x93da62bb, 0xaa8fa94e, 0x291ae15, 0x13f27c65, 0x7e4539d1, 0x262e0ff6, 0x2b271baa, 0x79ad3c03, 0x42257750, 0x0000c3 }, { 0xe4050cbf, 0xe0a8e5f9, 0x8c657550, 0x6dad102, 0xae9fd8bb, 0x8a5d8d1, 0xea33fcd, 0x4d85baf1, 0x27b8e92f, 0xa04075f8, 0x22ece6c6, 0xede3b747, 0xbefad520, 0x9b1616e0, 0xa0489d41, 0x94f10b3, 0x000072 }, { 0xdb143bfe, 0xc3b246a3, 0x1cbe8e13, 0x76f2dc3f, 0xce7ba5e7, 0x1db98dc7, 0xb53eab2e, 0x33e8bdb5, 0x53d43494, 0x96592933, 0x967913b2, 0xf30a1dd4, 0xd2d3d56e, 0x20c9b944, 0x88fa70e9, 0xecdfee0c, 0x00001e } }, { { 0x8765668d, 0xdda60322, 0x10bbdb8e, 0x893e1408, 0xdeb3c9b3, 0x2aeb2228, 0x14782be8, 0x3b75802c, 0xf71dd0b3, 0x9a5e084b, 0x26cb0183, 0x1fb876be, 0xdd4683db, 0x5ffde090, 0x3037da93, 0xbf725a50, 0x00017e }, { 0x37357b19, 0x8f2d4cd0, 0x25bece8, 0x74f1d9e8, 0x9cae8fea, 0x5946f480, 0x5aa5da22, 0xc7518136, 0xe6dac99b, 0xc7ad9fb5, 0x59fa1240, 0xefddaa6e, 0xf6dd78c9, 0xd3ebbc5e, 0x187d137c, 0x15f26528, 0x0000ae }, { 0xd0552ceb, 0xdbfeaac5, 0xa70e6317, 0x8c20bd7f, 0x8defd154, 0xcd8b080e, 0xc3576ac3, 0x6ce994ee, 0xcbea9df4, 0xf2e9f671, 0x426609e9, 0x1c07d33a, 0x248ae38a, 0x24e67494, 0xda10c8d0, 0x584a007c, 0x0001c8 } } }, { { { 0xaa3f2b3, 0x463b06b2, 0x9805d792, 0xee6640d7, 0x47a94d30, 0x9aaf3ffe, 0x7120fbbd, 0x93e03555, 0x68d6c89d, 0x69918b19, 0x20a8ca8a, 0x6c513388, 0x6fd2ece4, 0x887a1cd, 0xf0e67d51, 0xc75025ed, 0x0000fc }, { 0x2b9ee08d, 0xd15f5388, 0xd4d297f7, 0x7ab98b02, 0x7861460a, 0x2154b039, 0x5dbe4e7b, 0xd9c41c89, 0xe404984b, 0x96977815, 0xbefaa0cd, 0xea824702, 0xf67f5f1f, 0xd7b51984, 0xf6d344e7, 0x7a954a29, 0x0000f2 }, { 0x653cee72, 0xc6c9b29c, 0xcf0c3bd1, 0xf9d556be, 0xda6e62d6, 0xa0fca469, 0xbd2e8c8b, 0xf1a20596, 0x3f011fea, 0x2a08cba8, 0xd591d319, 0xa87a42b2, 0x8837ceee, 0x2fd80e5e, 0x3b8b3624, 0x2948fa64, 0x000002 } }, { { 0xe0722795, 0x1aa1adf, 0xb09b3557, 0xe2140769, 0x1b96427c, 0xdb7f4277, 0x12a16db6, 0x4a3fca1, 0xe3c15195, 0x540b9ecb, 0x93b130bb, 0x6e042098, 0xe1eadd9b, 0x6e2e42fb, 0x5c6dc113, 0x437dc0e, 0x00000c }, { 0xbec2d733, 0xe625da48, 0xa18f71f6, 0x2654f805, 0x4ada81d4, 0xbc9e4427, 0xa29d2a08, 0x3b148aa9, 0x7ea365f6, 0xbf1a7777, 0x53fe2a0a, 0x928f2697, 0xe7b3096a, 0xc02f0704, 0x888f1fc8, 0x94523175, 0x0000fd }, { 0x470f2e97, 0x39b778c6, 0x57dea08a, 0x39f5cb93, 0x74fdf91, 0x99ce9e22, 0x58d562db, 0xd46621ae, 0xc541483, 0x4fbc2cc0, 0xd13d4cc0, 0xb6db54ee, 0x846e334, 0x99abc209, 0x7d3b6e90, 0xb467aabc, 0x0001e7 } }, { { 0xdb6ad0da, 0xf0c8b11d, 0xb57ea8, 0xa5f9007d, 0xd79e0838, 0x74bd84d, 0xca2f36b3, 0xf2abec73, 0xe8af10b7, 0xce9a3ab, 0x428e0dca, 0xf2806b3f, 0xbe2ac0a1, 0xb53899c8, 0xea313ca3, 0x8853e26d, 0x000074 }, { 0x327b3987, 0x7352a244, 0x62197af7, 0x5dabd899, 0x799daca3, 0x1c91d2c2, 0x5302f5fd, 0xb09f0a68, 0x978e1e81, 0x58bba423, 0x22f70bab, 0xaef5e84f, 0x8dbc6c57, 0xcc1210ae, 0xee19438d, 0x5779d3e8, 0x0000a9 }, { 0x348ba602, 0xbec7c22a, 0xd4b1321, 0x9c9c1679, 0x4916f40a, 0x6db0ccf6, 0x66e9eaf9, 0x3c5e23b7, 0xad326395, 0x41b1a4bc, 0xdc88adf1, 0x1011cb19, 0x73b24c21, 0x63281b0a, 0x86d68fb8, 0xeebe2e68, 0x000181 } }, { { 0xfac51bdc, 0x96a9a387, 0x611ecc8a, 0xc72bcc6e, 0xe9e6de62, 0x4c1182eb, 0x66f32faf, 0x3beb9524, 0xbf8145f7, 0xa93be303, 0xf692ba81, 0xd5a64516, 0x1a773022, 0xe107568a, 0x6a026de8, 0x79cfc490, 0x000174 }, { 0x4c38b289, 0xc394c7fa, 0x8bd39329, 0x5bc73bee, 0x3bd01088, 0x60aa8135, 0x7ee21f75, 0xe451eb54, 0x4b9a9ec5, 0x5bd8027d, 0x9dc9f425, 0xafa386f4, 0xce35f015, 0xa507ee5e, 0x4c02da02, 0x13556b10, 0x000158 }, { 0xf89629d, 0xc115ab52, 0xb49a5d79, 0xb13f4604, 0xc2b8f834, 0xfc4ae7da, 0x7c392e71, 0x7aec95bd, 0xfee2bab8, 0xd306d565, 0x362566e1, 0x6d10c30b, 0xe3295099, 0x404e45e8, 0x389027c1, 0x6b28eee4, 0x000195 } }, { { 0x896538eb, 0x2c89be15, 0xb6d2d5be, 0xa5d58eed, 0x2555a572, 0x889c215b, 0xd5809cf0, 0x834c9df0, 0xe331b082, 0x7a9c699f, 0x739b287d, 0x64bdb326, 0x5edc1e25, 0x7979a228, 0x9220eaf6, 0x127501c4, 0x000163 }, { 0x15f451ac, 0xd1d3d49c, 0x8816e22e, 0xe844f699, 0xed5aa6a8, 0x64c255ec, 0xab2ee894, 0xe29405e9, 0x2b3b4f7b, 0xbb1f464a, 0x2e69336b, 0x5606ce40, 0xaec8f17b, 0x3efa8efc, 0xf47fbe38, 0x681997b9, 0x00014b }, { 0x64130235, 0xd5945e28, 0xe78d2837, 0x70aa3580, 0xf5bccd1b, 0x909dab4d, 0xb9fb9040, 0x439e59a8, 0x9e33829e, 0x7e3d0a93, 0xd9542a20, 0x629359d2, 0x82806635, 0xb21bd32f, 0x9ea97880, 0x23954c6b, 0x000073 } }, { { 0x89cb334f, 0xa5c0cb3d, 0x2468e32b, 0x52977070, 0x4a690347, 0x17d46cea, 0xd4124fe, 0x168a37d4, 0xfd7704fa, 0xa7323747, 0xc893dbf4, 0x6f314fff, 0xac53723f, 0xdd94b001, 0x831e76b9, 0xb13a0d18, 0x000182 }, { 0x4042ad8b, 0x8cdc24a5, 0xb8d668ee, 0x54cef7f3, 0xc8c81e0a, 0x6e8147be, 0xc4446dc2, 0x31a68bdc, 0x356f1fc7, 0xeac9b6de, 0x664d1d9e, 0x4c298667, 0x93b6f0b3, 0x59eec63b, 0x2aba5bac, 0x1f48f7de, 0x0001b2 }, { 0xcd1ed136, 0x8542e863, 0x920b7a54, 0x1733df88, 0x4e0b1212, 0x72a93b40, 0xac9cb37a, 0x452dcadb, 0x7096f47b, 0xb8051353, 0xac646ec4, 0xcb683c8a, 0x68e71e70, 0x49dcb25e, 0xb3b16803, 0x3a12c160, 0x0000cc } }, { { 0xb85947e8, 0x1b415376, 0x9a433d7b, 0x4521dc63, 0xc144dba7, 0xda6ed1f4, 0xb9997b07, 0x20c449e9, 0x18bd8d89, 0x6af8c658, 0xe04a2ff3, 0xd1abd4b2, 0xc300671e, 0x7afee7c4, 0x97dcca8b, 0x63a771b1, 0x000029 }, { 0xc858d786, 0xb7877be, 0xae7bd1f3, 0x80023d4a, 0x83d948de, 0x96b33d0c, 0x9563ad60, 0xfe0594f5, 0x178d7e6c, 0xc6626b39, 0xe0261144, 0x3981a235, 0xf2aeba88, 0xa9cfaba1, 0x5eeff31, 0xf4e421cb, 0x000123 }, { 0xfbbbea0f, 0x6fc229a5, 0xc20f83b1, 0xa5685965, 0xdc2a9b7a, 0xb52adde7, 0xec442d68, 0x35891d8c, 0xcd2ca6d6, 0x5330a2b8, 0x27ecc9bb, 0x45183376, 0x745665a8, 0x8a62495f, 0xc43888d3, 0x166c68dd, 0x00019a } }, { { 0xaea4aa59, 0x45deabe8, 0xe9b1e6ec, 0xdd916cb0, 0xa26ea552, 0xb51c18fc, 0x13158ea5, 0x99a18162, 0x91e7bfed, 0xc25505a0, 0xdf69c99, 0x54fbdf24, 0xa4ae7443, 0xb6aa07a4, 0x320ab266, 0x7e8ccea9, 0x000190 }, { 0xfbd0e9e0, 0xc781da2a, 0x734aebe0, 0x44ee3fd6, 0x2b1fdab3, 0x8f26807b, 0xdefe1439, 0xcff6e00a, 0xd073307f, 0x36f449fc, 0x727420f7, 0xdabb8b7b, 0x3e47c0c, 0x19f498de, 0x26cd1caa, 0xe7d6be2b, 0x0000d6 }, { 0x258b2ab8, 0x29c212fe, 0x6f47e51c, 0xb34170ac, 0x9452a3e4, 0x3b36cd77, 0xd5f28e5c, 0xf2b1c63, 0x15454380, 0x9848cc0d, 0x61caa9c8, 0x2c419aba, 0xa025a0b3, 0x1b18cdb1, 0x958fa32f, 0x9bb4f415, 0x000176 } }, { { 0x9932645b, 0x51f213cb, 0xe1707dfb, 0xecb5c29c, 0x9c3fd22, 0x6bb6b476, 0x1888764e, 0x3f067699, 0xe70cf1a3, 0x9b3b2c37, 0xec3f883d, 0x7230fad6, 0xb51eaf87, 0xe62e9c0d, 0x91564ae6, 0xb9f7bae, 0x000125 }, { 0x45c0eb76, 0xd02c98e0, 0xe0e40417, 0x5b5bf9c5, 0x4faa93ef, 0x4f38d5e0, 0xf4b8e3cf, 0x23511382, 0x791ef9e6, 0x24e0102c, 0xecc57518, 0x95f31fb0, 0x9fdc2759, 0x52ee3625, 0x44d5a79b, 0xf0f4f875, 0x000187 }, { 0x8651cc50, 0xb3046468, 0xcdac1c43, 0x1949a1d3, 0xdc0d741d, 0x80b2300d, 0x408912ff, 0x817fc6c6, 0xc2d8fc0, 0x4051af7c, 0x956015c4, 0xe14ff977, 0xb459d8ba, 0x34e60d7, 0x2acf55ad, 0xe75355f7, 0x0001e7 } }, { { 0x530dcae0, 0x5194049d, 0xe4cbd9b9, 0xc613f287, 0xf81b069e, 0x1668a2d9, 0x67951557, 0xb64c4455, 0xf1520a84, 0x24fb2838, 0x6473dd40, 0x24945c90, 0xa3dddfb1, 0x379f7bb5, 0x2dca1bc4, 0x93a42aa2, 0x000112 }, { 0x70c9ca54, 0x8c6c0b08, 0x8b4ea5d2, 0xf4c02364, 0x3fa0d8bd, 0x6a960c46, 0x78f0d5ee, 0xe4663f4a, 0x282d5764, 0xecba7c59, 0x8b108d38, 0x61be0c7b, 0x62dc73d9, 0x1218a8d5, 0x7420fa33, 0x14e825b3, 0x00008a }, { 0x7857b108, 0xe42e1ab8, 0x46ef16c, 0x9e5bb5cd, 0x5ed70631, 0x1b97bd7c, 0xacb0846d, 0x2274bdbd, 0x70003765, 0x1de35cd5, 0x8c9abea3, 0xf3f7a256, 0xefabfd6c, 0xa0910033, 0x782ebae0, 0xff436611, 0x0000d6 } }, { { 0xe6ba0d79, 0x1c097715, 0x956103d9, 0xaf39f65a, 0x2cac4b16, 0x2490a852, 0x21b2db70, 0x3754b223, 0x11d4247d, 0xd5b09ce6, 0x944098e8, 0x457d18db, 0xdb9499a1, 0x77141fc4, 0x6d8198b4, 0x13b1ab77, 0x0000b9 }, { 0x59caee9c, 0x358e2b27, 0xf57a1a47, 0x84db2329, 0x7575ef56, 0xb9b422e, 0xb1cb65a8, 0x9338b8bb, 0xe0b1ea1d, 0xffffddc7, 0xc627ab70, 0x926637fc, 0x9ab1de58, 0x1a7b1e06, 0xa5570b9, 0xa96d3290, 0x00000d }, { 0x6a787b57, 0x22cbc52d, 0x40b7cdf2, 0xbc768ded, 0x5d3abbe9, 0x4e4ef7e, 0x50a53aa4, 0xf7f66a9b, 0xd9d69efb, 0xb6fd27f2, 0x39c1acb6, 0xc9a65eb7, 0xac746bc4, 0x2e03d918, 0xec0449bf, 0x5b5b46c8, 0x000164 } }, { { 0xe79e8c9c, 0x2df393b, 0x7ca6a10d, 0xb8c9203, 0xd4e3d4d2, 0x370dc391, 0x9ec99df3, 0x9b8b5519, 0x5bb71e23, 0xb6d8f429, 0xa695cd57, 0x80e53ad9, 0xb5561fa5, 0xd7b3ea12, 0x93600bf4, 0xb93b3bca, 0x000166 }, { 0x9994471f, 0x4f5e719e, 0xa26b26fa, 0xfdc97ed9, 0xf4f61399, 0x14db1e2d, 0x4d42dc87, 0x20b50710, 0x28023127, 0x3e763db5, 0x800866dc, 0xf01e5d86, 0x45c377ae, 0xd8ddf1b6, 0x3c8100a, 0x1744d85e, 0x0001fa }, { 0x1ce2ee5d, 0xd414ed23, 0x7c6e230f, 0x255cb3f3, 0x967d09c6, 0xa75f2336, 0x902d6708, 0x405f202f, 0xbce6c757, 0xf47e8b23, 0x32fa2b93, 0xb38c8d69, 0xb1844a8c, 0x9a8fb462, 0x534312f5, 0x5c968cde, 0x00008d } }, { { 0x7185e93, 0xa7f80160, 0xb3a313be, 0xf05e8da7, 0xa2c1bb90, 0xf4126497, 0xbd6f152d, 0x40cef562, 0xb5dda791, 0x6d23f061, 0x2cbbacca, 0x7665969a, 0xd32d2832, 0x40a67d4a, 0xc15a0a43, 0xb1d9647e, 0x000195 }, { 0x5e059748, 0xc6ee843a, 0x99ad384b, 0x148edbf, 0xe9ea3b2b, 0xfa9c576e, 0xf36f4dc0, 0x35438e36, 0x82056bd2, 0xe4b491bc, 0x572cffea, 0x4e0c08fa, 0x94af20c5, 0x3882e734, 0x90ecb9ae, 0x91de707a, 0x00006b }, { 0xc200d1c0, 0x373a1a44, 0xc6cc11b7, 0x1ccc7c42, 0xebcc154d, 0x90167abf, 0x18e5ecb9, 0x39b471d0, 0x79b1a1a6, 0xb63bfc14, 0x50f7d8b3, 0xdd264b84, 0x29b7a61e, 0xe68988ff, 0xa490eb1e, 0xe339d320, 0x000120 } }, { { 0x9a904c9a, 0xc3657cd3, 0x80328af0, 0x25df8c90, 0x38460f4d, 0x734ad153, 0xe7f8b246, 0x6cc4984e, 0x977f0cba, 0x81f2b852, 0x4b5360b0, 0x99ec9e5a, 0xd5db8da0, 0x6b3dba68, 0xbc027bcc, 0x55666cd3, 0x00006e }, { 0x9e596250, 0x7c754a55, 0xf3ad28, 0xb894ebb5, 0x2d21afad, 0xf288ae84, 0x20686c24, 0x12f3af52, 0x780234f5, 0x54b75a2, 0xb483ee66, 0x48834cf3, 0xa80d6844, 0x5c0ad0c3, 0x93b4756b, 0x10409da6, 0x0001b4 }, { 0x72f5a07b, 0x3dc5f5aa, 0x4bc58f2, 0xc7daf448, 0xf3b953b3, 0x89bafbff, 0x790681ce, 0x874cd673, 0x13cc3d2d, 0x9fcfb9ae, 0x5c3b1e18, 0x7acfa5d8, 0x4fea7e3e, 0x634a0156, 0x71ce6ecc, 0xc77dba79, 0x0001f5 } }, { { 0xc9e735a6, 0x9da38795, 0xc33ee0de, 0x9fef4e17, 0xd2f3d1e9, 0x98f3605a, 0xf3a7083, 0x712a2d7a, 0xd4d0c255, 0x9178c319, 0xf1c54452, 0x2b0f55c1, 0x1a33c450, 0xa5d00b13, 0x8e05f546, 0xd5d8acc1, 0x000059 }, { 0xd260246c, 0x8e54c68c, 0x42d0e90d, 0x9a1005c, 0x7ac0d443, 0xeaf6262e, 0x1f40196, 0xd4f9bb1f, 0xf84b0073, 0xe4e3c26, 0xbda500f1, 0x73a4ced5, 0x25f01b93, 0x79933979, 0x48465d01, 0xb4c8de46, 0x00015e }, { 0xa700bc77, 0x9c85f4fb, 0xd9d9d89, 0x304777e5, 0xdd6521a1, 0xb90ad008, 0x3c2b7647, 0x6534020a, 0xeb714916, 0xd01df953, 0x99c1025f, 0x96d5d2f1, 0x154873ba, 0xbac026fe, 0xc6c3379e, 0xf8d2bb42, 0x000136 } } }, { { { 0x99c18a3d, 0xbc62c92d, 0x2f7bb2ca, 0xeb6be73c, 0x4ed76414, 0x43bc7d7b, 0x489b2ac3, 0x4b473661, 0xc9743edf, 0x56f66e7, 0x4fa32fea, 0x2f9880a6, 0x12f99238, 0x70e17a10, 0xdc476319, 0x591ad1f2, 0x000027 }, { 0xc630b111, 0x68bb5790, 0xdf5ebabd, 0x80470a61, 0xb21b5be, 0x4e84461b, 0xeb2ccda7, 0x505cb782, 0xf9fb6919, 0xf18bc077, 0xbfbc74b7, 0x3a33679d, 0xb3f86e8f, 0x2dfc4c73, 0xeab85cf2, 0x9da8a2e1, 0x000071 }, { 0x8ffe5c03, 0xf8052db1, 0xddb97757, 0x24d606a2, 0x496f6681, 0x5ab37bcf, 0xd28fd212, 0x9cdc02fe, 0x215092e1, 0x1f1524e, 0xe6d2b333, 0xb9b54327, 0x2e318dd7, 0x1847b29a, 0xd110bf4b, 0x6602e99e, 0x00019e } }, { { 0x83bf2e94, 0x69c38c86, 0x8dd0de75, 0xb8412c6e, 0xecf779ce, 0x504f11f, 0xaf54bcb5, 0x4d7573a8, 0xb09918b1, 0xb774e30f, 0xf64deffe, 0x83b5b10e, 0xd4d515cf, 0x835f773, 0x73dac49c, 0xb8352029, 0x0000b6 }, { 0x3995c716, 0x30674f87, 0xe9342333, 0xa3401cc2, 0x24c5bd4b, 0x58ee8bb3, 0xaf40343e, 0xd26d7a3d, 0x47cb2376, 0x8c610a, 0xc06067b3, 0xbc21bceb, 0x33fbd785, 0x6b3e35e8, 0x9f3f9346, 0xfb18c875, 0x00018e }, { 0xca2f7c63, 0x4262e03d, 0x398dadd3, 0x4836dd78, 0x2c27c5ad, 0xd17636f6, 0x1d67b7b2, 0x866715d5, 0x937cde00, 0x9f728619, 0xfc80bff6, 0x3fc089d9, 0x2d944b96, 0xca856b32, 0xcff561ce, 0xe958791c, 0x0000e3 } }, { { 0xe5fa87b6, 0x71f701ca, 0x7cb4d570, 0x1a87d278, 0xb6254a02, 0x8b18131, 0xf3c4e368, 0x1beb2641, 0xb1d17a96, 0x8eb9a53f, 0x3809c43b, 0xeb8191d0, 0xdb96009b, 0x6d9d54bc, 0xb4a1f4c8, 0xbf321644, 0x0001fe }, { 0xd706ffa0, 0x500398e1, 0x9024eff9, 0x39a7531e, 0x8a833df2, 0x881d172c, 0xf8ba8047, 0xa9762024, 0x88a0086b, 0x60fde5b4, 0x8fd33f87, 0x1ce16881, 0xd9b9779a, 0x6234773e, 0x269da1a5, 0xeb3f0f91, 0x0000a9 }, { 0xafec6062, 0x42bbfd45, 0xdf04dbe3, 0xc53e2926, 0xc556c63a, 0xe734e058, 0x60347fcb, 0xd0a5f807, 0x2c43e2b3, 0xc25f69dd, 0xe1038f94, 0xb6df2b6f, 0x18a66b5f, 0x45b83bde, 0xb93b21ba, 0x194bb2e4, 0x000191 } }, { { 0xdfdc7a0e, 0x79665b07, 0x776eba7, 0x50ab313, 0x7fd0b7f6, 0xca23bfbd, 0xb41b7f4c, 0x4ede0a4a, 0x1467bdaa, 0x1df2f556, 0x841e807, 0x70a017bf, 0x6789475a, 0x78434a1, 0xca22db09, 0xc0857e8, 0x0000fa }, { 0x6ea31344, 0xfe1b573f, 0x10ebcd19, 0xeaa70860, 0xe980a8ff, 0xf7d3aaa7, 0x86da511f, 0xf695631f, 0x1c46888d, 0xdea8918a, 0xb168f40, 0xc3b9aa12, 0xcca7348a, 0xb45d429d, 0x64ea0e96, 0x80db2533, 0x0000e4 }, { 0x3ca8c6a0, 0x71993e4d, 0x94c33d45, 0xd4fd69d2, 0x364d7283, 0x8a6a0886, 0x794f5127, 0x4ac27b61, 0x8b3bcd04, 0xe01d0bd8, 0x8aa56ce, 0x6a342051, 0xda5171ef, 0x164648c7, 0x780fc2ab, 0x65417b92, 0x00016e } }, { { 0xf8c681e2, 0xa57e304f, 0xace2b612, 0x6f37a9bf, 0x612ce4b3, 0xf5f239e7, 0x6ee909bf, 0x79776ef6, 0xfe3f340c, 0xff654634, 0x8d0325d8, 0x48b66767, 0x709ce044, 0x8e35604c, 0x8852bd40, 0x50e0d2de, 0x000131 }, { 0xedccbfee, 0x397def7f, 0xf0abca42, 0xd45ab965, 0x77516824, 0x70147739, 0x62271e1f, 0x5f7c1285, 0x103f3fff, 0x88813b56, 0x19443a90, 0xe16a90a8, 0xebce9b91, 0x15dc7c7, 0xd3cb7873, 0xb0223090, 0x000164 }, { 0x18bd7d28, 0x25ead27c, 0xf212139f, 0x4488906e, 0x3be805, 0x8d88ddba, 0xf298d5dd, 0x30f7e92c, 0x443f659, 0xa2b5efa, 0x78c93fbc, 0x954d30e7, 0xfb1f8b00, 0x8f8e1d32, 0x3ed61027, 0x8d1a494f, 0x000045 } }, { { 0x5fad7151, 0x8f663846, 0x7d2cd02f, 0x34a2a097, 0x1ab9f008, 0x4c8889f3, 0x1097ed70, 0x3c1510c8, 0xa35fe984, 0x512fc1bb, 0x4f25af4b, 0x417e773, 0xc8b5563, 0xafca20de, 0xdfdff826, 0x165b0190, 0x000089 }, { 0x7b38422d, 0x89915585, 0x15d6bc60, 0x411809a3, 0xc65ae8f1, 0x3ae9c1fe, 0x638f53a8, 0x27ae43a5, 0x3382a54e, 0x28e780b0, 0xc1442243, 0xbe351d14, 0xd69ddafd, 0x86c1591c, 0x742a4a6b, 0xc583adae, 0x0000c2 }, { 0x838b4267, 0x668fd55b, 0x732eb4fd, 0xbea76d88, 0x5abf35e6, 0xbc0b0e0, 0xfae06499, 0x298a53e7, 0xb304fb91, 0x77831b16, 0x1eccec04, 0x8f3e2364, 0xb214660d, 0x4749dd06, 0x4a0c8523, 0x3578a210, 0x0000d9 } }, { { 0xd4985d5a, 0xd3040ae9, 0xe0eed19b, 0x2e1e4a55, 0xd98cb09e, 0xab5b5352, 0x4fea4ba4, 0x844ddd5, 0xae28686d, 0x625ba3de, 0xf5fb615c, 0x44dc0084, 0xb23a5233, 0x26886c2b, 0x855307a8, 0x7ef81dff, 0x000146 }, { 0x907acfae, 0x2ec36ebb, 0xd05e0f6b, 0x7814589c, 0x6510089, 0x2ff824ae, 0xdda28c3, 0x187a6e48, 0x9a98b4e4, 0xb3656236, 0x7321aa3a, 0xe0e6ff06, 0x77036f56, 0xbf076b67, 0x832f7b80, 0xdd9a52c6, 0x0000f5 }, { 0x680a12f6, 0x138f6e1a, 0x9e7dd03b, 0x579c86ae, 0xd883f5e1, 0xf50fa83d, 0x531b592b, 0x30cc1172, 0x42896106, 0xdcf696b1, 0x61b3d613, 0xeb919893, 0xd33f2fb, 0xbfb231c3, 0x875b6afe, 0xaa3b2f5f, 0x000163 } }, { { 0x1fc5b978, 0xbed7aa0e, 0x82dd5290, 0xfe4d0471, 0xa8c8430, 0x6355f5f4, 0xc6d4f836, 0xb6038f88, 0xbd1209be, 0x104aeae9, 0x130679a1, 0xc76a8924, 0xdd4cd543, 0x85599594, 0x5c6c414f, 0x648506ab, 0x000166 }, { 0x414592d4, 0x326c4102, 0xbab8c73d, 0xe4198370, 0x59119fcb, 0x4bdaebab, 0x606cdb95, 0x80c80ce6, 0x8837e31e, 0x523d2a77, 0x7e23ddc5, 0xade06269, 0xb254f367, 0x458e25d0, 0xc7acc120, 0x1aaf8da8, 0x000007 }, { 0xe9db2942, 0xd7d212e4, 0xa0520aa2, 0x1054dcb7, 0xad024d65, 0xe6631af5, 0x98dfe96d, 0x12d01472, 0x5a99a518, 0x9e1d6d4e, 0x60e5bc02, 0x847ef669, 0x9a526b2c, 0x51e72b2d, 0xff0f30d2, 0x4ebee1e9, 0x0001be } }, { { 0x8f54d326, 0x911cd537, 0x6b7d1b2f, 0x42e06577, 0x909ddf87, 0x3d694fb2, 0x6eb79614, 0x510bfeff, 0x3395811d, 0x5e9ca229, 0xfee40271, 0x890fb0f0, 0x64f78e5c, 0x7f5ddf4b, 0x453972ed, 0xb272d5fc, 0x0001be }, { 0xa8e7ab8b, 0xe8d3ecf0, 0x218426b2, 0x1090c7c2, 0x2add3bfe, 0xba68e371, 0x97757306, 0x706c1a6e, 0xf66fdd46, 0x3d769d14, 0xa7b606a, 0x79185d5d, 0x3104ae64, 0x81ca00f6, 0x76c31dd7, 0x7dc5bebb, 0x000147 }, { 0x10e88d1, 0x73236601, 0xb8a14e00, 0xc1c225ee, 0x10c46a4a, 0x9d755151, 0x148087, 0x2f9e0bd4, 0xf95dec77, 0x4dd0e1b, 0xdddf0521, 0xb0c9d333, 0x5858452a, 0xda628f56, 0x9bce961b, 0x9ee3e518, 0x0000a0 } }, { { 0x44adc6fe, 0xf8cc44db, 0x6309d4ab, 0xf376f1bf, 0x3af99aa2, 0x59a1d7e7, 0xae02f5f5, 0xdac98e8f, 0x54bb0dda, 0xdb111754, 0xf94325f3, 0x346ffd37, 0x5c71e68, 0xc9454ac6, 0x40a48873, 0xa8f70019, 0x000033 }, { 0xad29e810, 0xfcc06e3a, 0xa48bfbfc, 0xcb9a19fd, 0x931b2248, 0x1466067a, 0x5210ad5e, 0x53cf2ab3, 0x2d4a3d2c, 0x1096fd93, 0xe25485a1, 0x7c32dd64, 0xfebd279f, 0x8a17fe13, 0xc3f24299, 0x6c11d238, 0x0001de }, { 0x61ca7b6b, 0x8d70bc90, 0xdee1f42b, 0xcaecd8eb, 0x31d6fc1a, 0x4317638a, 0x6168f510, 0x7348aeb8, 0x4594200f, 0x981c46f8, 0x92158593, 0x9ebcbe6a, 0xd1a37fbf, 0x9d1d55e5, 0x334a3fa2, 0x72798e0, 0x000025 } }, { { 0xb97a1e95, 0xa7006608, 0xa4f5026b, 0xbfb74b4e, 0xee631e60, 0x6c755a90, 0x1afbad3e, 0xbfb44c20, 0x622cb2a0, 0xfd52aa26, 0x74fa2b3a, 0x921900ba, 0xc51d18f, 0x4bf94635, 0x9066c69, 0x11d5c27b, 0x0000d0 }, { 0xc29ecb8e, 0x371e4520, 0xfe69bc8e, 0xa05f77c7, 0xf765825e, 0x1659247d, 0xef30ea9, 0x30f8a4db, 0xdfa2ac7e, 0x670fdaaf, 0x4131801f, 0x96504556, 0x50ff9198, 0x8511b025, 0xd75f215f, 0x85c9c3e2, 0x000152 }, { 0xa672c2fc, 0x540db227, 0xeb38898c, 0xba95c5ca, 0x695008a7, 0xe45cb0b0, 0x66cca533, 0x4e0ef5dc, 0xce610394, 0xe9b137fe, 0x83d1c3f9, 0xbdac5c17, 0xc10f48c9, 0x39037958, 0x68d26ebd, 0x223eb21f, 0x0001f2 } }, { { 0x96fcae3e, 0x9b4b16b6, 0xa4063ddc, 0xc8ed4414, 0x3567d433, 0x998e1aaf, 0xcfd670e0, 0x4c592d66, 0x8a9039c8, 0x8799bc0a, 0xc4b84040, 0xd9ddb0f0, 0xef441c05, 0xba67c13, 0x9dd154ae, 0x7068de90, 0x000117 }, { 0x76384718, 0x99ccba04, 0x7900e91b, 0x9bddf122, 0x357dac93, 0x8be6a056, 0xf41221d9, 0xad008e0f, 0x9b465d55, 0xd9e6a857, 0x26fb8fd2, 0x5220161c, 0xf4d044b9, 0xdc40d262, 0x8478668f, 0xf87059dc, 0x00004d }, { 0xd53c9503, 0x27213ce4, 0x6756612f, 0x5dc95bbb, 0xcf4d2f35, 0x7bd87cbd, 0x7622e8dd, 0xf118194e, 0xe001478c, 0xee4f5239, 0x85c96401, 0x3a0f84a8, 0xd19db9a3, 0xce5d8920, 0x3faa8314, 0x96b9e694, 0x00003e } }, { { 0x39d2d537, 0xc9c3c5e7, 0xe903d1bf, 0x7461d274, 0x8e0bbaa2, 0x877fac61, 0x1bdc2bf1, 0xa6bc7431, 0xae63ef65, 0xade78ce3, 0x8884accb, 0x7dcc9e4b, 0xd63158f5, 0xe5b25482, 0xd217554e, 0x79e17e54, 0x000146 }, { 0x977912d7, 0x4b0840f9, 0xf49007f6, 0xf5c781ec, 0xfcf29e5c, 0xf2f88160, 0x116c7411, 0x8d723db2, 0xa6f1db7, 0x4d911e97, 0x4a65f7ce, 0xb3b21315, 0x75be60cb, 0xe84fdafd, 0xf1b2d7f9, 0x189545c8, 0x0000af }, { 0x61d9a464, 0x6e719fd1, 0x7ba83e0f, 0x6f01a5d0, 0xc9699290, 0x9ec2e0bc, 0x6f513c50, 0x67fdd6a9, 0xa7596f9c, 0xbba163b3, 0x1c8f7479, 0x191f8610, 0x20ba9634, 0xc41d622a, 0x5915e2d5, 0xe54a6bf2, 0x000181 } }, { { 0x6b312d33, 0x4978fa0f, 0x3c2da308, 0x872fa447, 0x30e447cd, 0x72f815e9, 0xcd6e07fa, 0xd2a4fadc, 0x67742fb8, 0x7b486600, 0x294493c, 0x7d4c906b, 0x406bdf00, 0x8b2b4647, 0x1eced7bc, 0x77ea255, 0x000042 }, { 0xeb848647, 0x13cc91c0, 0xe9c4b707, 0xc95de53f, 0xa1e202d, 0xc455ae17, 0xffc37106, 0x8870220b, 0x7bd2b8a6, 0xe39f7495, 0x96ea950, 0x18061124, 0x733301c9, 0xe0bf4204, 0x2b960e4b, 0x2a001c1a, 0x000130 }, { 0x5330def, 0x154798b1, 0xac21a6c9, 0xd08e3243, 0xca528838, 0xcf2dcf78, 0xc875d2f3, 0xa5e398bd, 0xf1f6537b, 0x448714f5, 0xd413cc82, 0x128d66cb, 0x1769532b, 0x6891d371, 0xd3fb36f5, 0x3d24ea03, 0x0001bb } }, { { 0x4e033ad6, 0x231857be, 0x7e3c4000, 0x2d0137b7, 0x71c738fa, 0xf41b71a3, 0xff9d8ab2, 0xee5eb2f0, 0xff3c0240, 0xa2f10db2, 0xf163e0c4, 0x2637ada6, 0x4f6a91bb, 0xa8603883, 0xf0bae296, 0x9e5a4ee1, 0x000098 }, { 0x315f3606, 0xd18b4e94, 0xa315c0a2, 0x31f44d70, 0xac65804e, 0x3e023c8d, 0xd5052de8, 0xe9dc13a2, 0x27e3734f, 0x9d6b3d5, 0xbddbc48a, 0xdb1ec2f, 0x3ebf3a02, 0x68e123d, 0x847be1f7, 0x62e707f8, 0x00017b }, { 0x4a718e63, 0x79de0e50, 0xa9d2ce3a, 0x282bb40, 0x39f8b085, 0x8252802e, 0x523ff54c, 0x5c2fe245, 0x40790065, 0x6dbfe087, 0x12cda89c, 0x194e8dc7, 0xcfab4d3d, 0x1b8e89d6, 0xf0bea047, 0x91b35fbc, 0x000142 } } }, { { { 0x582bd5d4, 0x5a01c737, 0xec1c89bc, 0xed9054c4, 0xda94147d, 0xba8b7177, 0x275ce183, 0x4d1b119, 0x42f11749, 0xa445343d, 0x871025ba, 0xad3cb174, 0xa631a642, 0xf17a411f, 0xc0397970, 0xe56ea6c0, 0x0000ee }, { 0xf80732c5, 0xa1bdd4ec, 0xc62d96f8, 0x43d27a4a, 0x265ae5c8, 0x1249a5ed, 0xf4c1e9f2, 0x36fa64f0, 0xc68df65b, 0xe5ef50bc, 0xda8502e9, 0xac49cddd, 0x879f9497, 0xe505b8f7, 0xca08436e, 0x89bfe6c6, 0x0001d6 }, { 0xef30e284, 0xa414cc9e, 0x1754a13d, 0x951c678, 0x9b57f1ab, 0x6cc8fbcc, 0xee08be6e, 0xd60060d8, 0x90270476, 0x1cd5762, 0x5b783822, 0xe5a135fb, 0xcefc87c, 0x5b119c0c, 0x6d68b2c2, 0x219206d2, 0x000137 } }, { { 0xf80899b8, 0xab2f6c13, 0x83ed5de9, 0x9017a888, 0xa5ab0b11, 0x468b15c5, 0xe56c044c, 0xc7baee9c, 0x5556bbb4, 0xd6d11603, 0xc0dc4246, 0x6eca5f8e, 0x970fd911, 0xa6aaabdd, 0x202444c3, 0xe5e6d5c1, 0x0000ad }, { 0xe54fe5f6, 0x8a0d98c7, 0xe67f7be2, 0x418a5f07, 0x3364e627, 0x7afc3dc8, 0x9df6931e, 0x5c88081, 0x96721c66, 0x5d8df97b, 0xa22c0f00, 0x8b2af195, 0x59d1e870, 0x90cee137, 0xb5193e9f, 0x7ba3adb9, 0x000069 }, { 0x998d146c, 0x20424897, 0x571df83b, 0x10011fb5, 0x6910597e, 0xb2534e50, 0xc4d71c50, 0xe7558276, 0xed9b1631, 0xdd04bf3b, 0xba64ba3d, 0x2ef49e3f, 0x8afa4b68, 0xbb61d79, 0x7d60a047, 0xf61bf0d0, 0x0000e2 } }, { { 0xc541c4f3, 0x3504e276, 0x19ecbf48, 0xdae0abe9, 0x6b6b57a4, 0x71eb1b3, 0x66a34fd9, 0x4a753959, 0xe9d31862, 0xb69daead, 0x406041a9, 0x31cf199e, 0x11ba4264, 0x399c766d, 0x34d66773, 0xc80ce456, 0x0000ec }, { 0x58d5b934, 0xbea937e1, 0x9f4eac25, 0x4bfa5379, 0xb21e75d7, 0xa8d2856b, 0x70b58f54, 0x9b1fcec8, 0xfed76c73, 0xe321e354, 0x3bff934e, 0xd5ae3dbe, 0x759a771b, 0x1f3ff978, 0x49fa30df, 0x6b87a412, 0x0000f4 }, { 0xf7e2cf32, 0x1fa02139, 0x2de4ca05, 0x2d04c9bc, 0x8eb63887, 0xc8a50616, 0x55dc8a23, 0xf72c634f, 0x4bbe5f7d, 0xc3bbd5b4, 0x5c0b526, 0x4967f92a, 0x3acd375c, 0xacf6f556, 0x974a06cd, 0xdc7505ef, 0x00019d } }, { { 0x2b14588, 0x19b2cecc, 0xe09c5bdf, 0x1a719fc1, 0x7076e265, 0x3ed8950c, 0x2b075f59, 0x7dc794b7, 0x7c5e13b2, 0xc562606f, 0xe86f1974, 0x7d06808e, 0xc67c7a77, 0x523da949, 0x3acf4de9, 0x55934838, 0x0001b4 }, { 0x27070b4c, 0x7958e35d, 0x59b835fe, 0xb25915e7, 0xe324983c, 0x81b75e30, 0xe248b8f1, 0xf61bf5c4, 0xbc158424, 0x561de1c0, 0xf9be0a25, 0x562edd15, 0xb088ba5d, 0x8248ca6a, 0xa7f55569, 0xba75af83, 0x000040 }, { 0x2ee8b457, 0x6b63a07c, 0x5d08fbe1, 0x1c695001, 0xc59b5e94, 0xa7833884, 0x13a1bf92, 0xa7cd8e13, 0x1abea12e, 0xd56eec60, 0x501a60cf, 0x8da04511, 0xd1bb13d4, 0x88dfdda, 0x26ccc28, 0x294d4c7f, 0x000045 } }, { { 0xcb15028c, 0x733093fd, 0xb0196ea1, 0x87c4fe55, 0xfb0056e, 0x992836e1, 0xcb36aa98, 0xede5799c, 0xfddf0c5c, 0xb1b2f585, 0xf33d2477, 0x1365b0f2, 0x764dc466, 0xc3b63c0c, 0x7e63cee1, 0x2cdf3d0c, 0x0001a2 }, { 0x27b60d89, 0x270f7bbc, 0xc022b7d2, 0x3688eb6c, 0x6a9c5ba3, 0x6166ba7e, 0xbe5296d1, 0x2aa6ba16, 0x2c9aed48, 0xcf7b0b01, 0x592066ab, 0x7abb1892, 0x5cae2851, 0x39cb4b79, 0xd2ef2f69, 0x3a4edbcc, 0x0000f8 }, { 0xf979ae6c, 0x5e982e62, 0x11f09970, 0x34586420, 0x2f5a7fa4, 0x33d685e1, 0x791558b7, 0x1d2dd12b, 0x49c50d57, 0xe1d01613, 0x46c0af71, 0xe27a1653, 0xb5653966, 0xe39bac7d, 0xc703613f, 0x6d705f50, 0x000003 } }, { { 0x479b0191, 0x353b05e8, 0xf1ed496a, 0x37e80523, 0xfbad2ec7, 0xb5a2075e, 0x79c03e3c, 0x35df129f, 0x505b749e, 0xbedaa2cb, 0x6355fc6, 0xd93d24f0, 0xd70a08ec, 0xa27dd090, 0xdf7f69b8, 0x48646b73, 0x0000f1 }, { 0xa9171727, 0xeaee7623, 0x28b3c427, 0xd2b6a353, 0x120d0e8c, 0xdcdaaafe, 0xce1a10af, 0x679dbc9b, 0xde15a011, 0xce0fcd63, 0xe3f2b7d6, 0x48c5d4c3, 0xd6d39b0b, 0xc51bb750, 0xc002f95b, 0x3585ecb, 0x000072 }, { 0xa26b6d8, 0xac55a2be, 0x20a61f10, 0x6e683257, 0xec6fcd78, 0xe0846202, 0x49cbf42f, 0x1b3246ef, 0xee779ce1, 0x3a596335, 0x28ad1d9c, 0x8712de6c, 0x611c2d33, 0xf6423d13, 0x6d6b4c14, 0x92fefd3, 0x00004d } }, { { 0xf0f5b558, 0x5b32f242, 0xbb3d4476, 0xeaccff94, 0x91b4eaf1, 0x675a7cfe, 0x5231aeaa, 0x563c0411, 0x88e6593b, 0x27cb3e5e, 0x5414dd88, 0xa5f2cbc6, 0x8c461f30, 0x43e352a6, 0x3bcdfbb9, 0xb6017bb3, 0x0000b7 }, { 0x9246f017, 0x42179a12, 0xc437adcb, 0x72920f6c, 0x61b3882c, 0x40d8e015, 0xc95c0e94, 0xbd3ada78, 0x17feef3a, 0x8902e120, 0x29d78ce5, 0xdd53f51c, 0xaa11302, 0xaecb5f15, 0x3d6f4862, 0xf0c83fc4, 0x0000b0 }, { 0xeff65d2a, 0x91c9e963, 0x8f3ed9bd, 0x12e78163, 0x6e92ff77, 0x2c8acefc, 0xb684e269, 0xd4b7702a, 0xdfcc3fc9, 0x80c5867f, 0xd5402229, 0x8cfcd579, 0xc6d43b0a, 0x679347ce, 0xfdbb8ed0, 0xcc7e6aba, 0x000037 } }, { { 0x8df87751, 0x91daeec5, 0x44d2ee2b, 0xe2f41fb1, 0x55b4b974, 0xcb716e96, 0xf047c439, 0xa4fe20bf, 0x61980938, 0x2e1edc02, 0xaf82101f, 0xda347b20, 0x3b656a76, 0x66eefadb, 0x54fe5f1, 0xb29dc409, 0x00015e }, { 0xa267edb5, 0xa4e123c7, 0x248edac, 0xd08027ea, 0xab782b62, 0xfc3d17a4, 0x1ba73985, 0x379aad63, 0xfc295918, 0xf402dcfe, 0x60ce5db1, 0xa7f5113f, 0x8285815c, 0xec6a11bf, 0x88de6d7d, 0x8f837316, 0x0000f8 }, { 0x41626e6a, 0x979af589, 0xa2a70f1c, 0x978b17f3, 0x4bb93238, 0x7aab13b9, 0x62f96a6f, 0x1ab8f71f, 0x2977f87e, 0xb370e7a4, 0xc2cc2771, 0x8432f1e5, 0x4fd4e66c, 0x22a5975e, 0xae95c23d, 0x46c44c76, 0x000187 } }, { { 0xd44f4d2e, 0x9128621e, 0xf65c2997, 0x9045a8c1, 0x92ca55e, 0xad300c0f, 0xfc35710b, 0x98e496ae, 0x40555dd7, 0x1483f78c, 0xe17ff123, 0xde82e1c2, 0x7a5e435f, 0xbe34c288, 0x9455cc95, 0x33cdeb99, 0x00000f }, { 0x941d7d4c, 0x9d25170a, 0x464d6d6e, 0x13019999, 0xc5cef951, 0x7adbd955, 0x226ac98d, 0xd3a61a90, 0xc4baf82b, 0x56c98afe, 0x55979577, 0x5796f96d, 0xa6a10c2d, 0xa198573c, 0x1d4c21b, 0x9b9242e5, 0x0000d1 }, { 0x9e6d8d01, 0x901d7f2c, 0x43134721, 0x3421bf5b, 0x6b5927b1, 0x4b6ac164, 0xe1ae014f, 0xa48444e2, 0x62a6ba38, 0x66b51c0a, 0x4815e0a1, 0xf866ec20, 0x4680e939, 0x8d8186b7, 0xd5574b45, 0xf6c40e65, 0x000188 } }, { { 0x8fc3b569, 0xb3a71b92, 0x1aaf55d0, 0x2b4237b0, 0x69c15077, 0xf0e14a53, 0xfe964415, 0x6a628847, 0xe4af9543, 0x6e723ffa, 0x978a36df, 0xdf471f0d, 0x8189c1bc, 0x44fcaa6c, 0xe7026a95, 0x2ce9cb0b, 0x00019b }, { 0xb933e4c, 0x8a229276, 0x766fca9, 0xf28cbf11, 0xb67c9c15, 0x7f1c6bc1, 0x2c4caf46, 0x8039ad2b, 0x422e9ab7, 0xa6f622c8, 0xc1a36b5, 0x6e01a981, 0xe48b5445, 0x52bd68da, 0xbe23ce5c, 0xf252cf0f, 0x00002e }, { 0x668c89e, 0xd7eb94aa, 0xe718c19c, 0xea27d420, 0x5456539, 0x8b9a4b2d, 0x4c038ac8, 0xdef79bbd, 0x101cdb76, 0xb66bf91, 0x62fe55fb, 0x1dfc5b6f, 0xa4363ceb, 0xe0c4d151, 0xd377e64e, 0xea5572d9, 0x00008b } }, { { 0x96765588, 0xc9da20c6, 0x654e62c9, 0x325e6cd1, 0x12b769c8, 0x5a5803f6, 0xc4a83248, 0xbab333b5, 0x30a9c750, 0x7805d0ae, 0x8825b0e3, 0x461b5d77, 0xbd23bc05, 0x27994e15, 0x4f2b4cfd, 0x3dea9012, 0x00009b }, { 0xd796be15, 0x70b6a28d, 0xd85f2199, 0xeaac18d9, 0x93b5d6cd, 0xd08506a2, 0x84ee4f02, 0x2fee3e39, 0x5458b718, 0x59857c2c, 0xd3b59beb, 0x6a1276f1, 0x12f232bd, 0x1a869ffc, 0xb6f3aa5c, 0xca8bc526, 0x0001fc }, { 0xe6c8bb29, 0x57dc5de3, 0x553646f, 0x8cddda72, 0x14a737c0, 0x9195c845, 0xbae976a6, 0x833eed75, 0x18b9f4bf, 0x63865c57, 0x2cb27a5d, 0x69d8f85e, 0x3e27e43, 0x1f0fdf3b, 0x791d48df, 0x60799b9a, 0x000072 } }, { { 0x1991e4fc, 0x4ee9cbb9, 0xc4f1b9b6, 0xf16b6a7e, 0x96a9eb3, 0x2fec8f2, 0xdc351ecd, 0x6e4edb5, 0xf5f044fd, 0x4543e31, 0x908f4e4e, 0x89347a6c, 0xb01fd2c, 0x1388bc59, 0x9276dce2, 0x776a0dc0, 0x000048 }, { 0xb3e3d128, 0x80995946, 0xc6195581, 0x336ad91e, 0x1d6a04a5, 0x478aa684, 0x1813f7ae, 0xf7a175d0, 0x68d2aec0, 0x62aed60e, 0x47a79cfe, 0x87b14f7e, 0x4a7fa361, 0x7b234f35, 0xf6d2f4a7, 0x42dbdf7f, 0x000001 }, { 0x12d6e036, 0x6f31ac4c, 0x9c8162de, 0x9c4ea477, 0x30612e7c, 0xec4029fd, 0x4aa07271, 0x53ff5f1e, 0x97827877, 0x479e7386, 0xdc946a45, 0x709261c8, 0x36478ec1, 0x29f8696d, 0xe23df810, 0xdc9ab361, 0x000056 } }, { { 0x4da507e6, 0xab2f6b25, 0xa6440d6c, 0xcfc58430, 0x9ca437b3, 0x66790775, 0xc06f2af9, 0xadce93bd, 0x4bb3997a, 0x96e58f67, 0xfb10958f, 0x6f141cdb, 0x3e18a5f9, 0xc401b3f6, 0x230ce1ec, 0x9c64804c, 0x000175 }, { 0xe6cd9a25, 0xe7945753, 0xa32ee726, 0x2fc08eb1, 0x9d3a3627, 0xa42a3a58, 0x11c1c83c, 0xe508ec98, 0x31fd1f90, 0x14796a37, 0x50b47a7, 0x86f597cd, 0x457ea047, 0xebf40fd7, 0xe7d5f2ec, 0x3b9003a, 0x000043 }, { 0x51cba939, 0xbc534919, 0xceb640da, 0xb7f2240b, 0x22b06909, 0x6713f2b0, 0x58940ff3, 0x9768cf94, 0x3bf7a33c, 0x5af8e9db, 0x49bbf28, 0xe2bfbd07, 0x91dd1298, 0x3e53759, 0xe5253a8c, 0x28fa149a, 0x0000e3 } }, { { 0x56158b44, 0x6e721bd0, 0xac1d626d, 0xecf03d2f, 0x867631e8, 0x86b89121, 0x32ba84bd, 0x1f41140b, 0xa0b27a31, 0x2c487f17, 0xda33d00, 0x50d454b1, 0x41aafc4c, 0x80601621, 0x64c5489e, 0x1ac98653, 0x000150 }, { 0xa7766f47, 0x4314890b, 0xc7c53f65, 0x34a164a8, 0xb0391487, 0xcd84bbd1, 0xb95afef6, 0xdbc0c3a5, 0x311765f1, 0x529934d0, 0xb372dcd4, 0xdf34f800, 0x15b2141, 0x5e9ab6e8, 0x9538c7f1, 0x3b202adc, 0x00004f }, { 0x2ef77778, 0x81ea2c4a, 0x9e3801d8, 0x11c69441, 0xdb5b1110, 0xd9c54c1d, 0xd949692c, 0x9be36e1c, 0x52d0611f, 0xb69309df, 0x70387565, 0x6f24a264, 0x16ba03c7, 0xc162e01d, 0x3da0ecb0, 0xe6e965ea, 0x00003d } }, { { 0x623c6bd1, 0x7d0a8875, 0x3c7716f9, 0x56a286c9, 0x9bfe5552, 0xbbb78c79, 0x5f7cb6f4, 0xff55f8d0, 0x947b088f, 0x2280e02, 0xe9cea9d4, 0x3840dd9, 0xdf335542, 0x97fb685, 0x15795598, 0x6f06350a, 0x0001e9 }, { 0xad665a9a, 0x3c6e8615, 0x9ffa19f1, 0xa88ae95d, 0xf2181680, 0x5027c554, 0x51d4e727, 0xbf853216, 0x143d7b87, 0x6b8ec025, 0x27c5ae11, 0x33d359c8, 0x772a7e5a, 0x4c97d977, 0xfc34cca, 0xb21ffdf1, 0x000091 }, { 0x99722a2c, 0xb54c9bd8, 0x6b3d3187, 0x97b213ae, 0x219e8e14, 0x699b4820, 0xf1267df2, 0xa9b527d4, 0x10b2eb92, 0xcdae6316, 0x78fa89bc, 0x9c04382f, 0xedc1bc7f, 0x3ea26231, 0x74483a4b, 0x66124952, 0x0001ca } } }, { { { 0x3fa99bf1, 0x8628eaca, 0x6e756fa7, 0x3b1b7dbb, 0x922f929e, 0x8cbdb7bb, 0xdd813dd2, 0x479767b0, 0x5b373eee, 0x8f00386e, 0x4825a001, 0x3cc7f384, 0x80d35dab, 0x198af4d7, 0xa2f52c58, 0xb736915e, 0x0000a9 }, { 0xbe366522, 0xb875ff84, 0xa56fb22c, 0x51388c0b, 0x47bf3bf0, 0xbb9b90ab, 0xbab0c6d, 0xa890b3b1, 0x7d235f14, 0xa6c19c3d, 0x5428fccd, 0x9cfde806, 0x6955fc5d, 0x2b1f2e0, 0x357bcf38, 0xe4f6cfbc, 0x00015e }, { 0x37c5ad13, 0x70fd4691, 0x35e26b3, 0x163a67c7, 0x3cf37d74, 0x2ae0ddcc, 0xaa2ac1f7, 0xa723715d, 0xaab42463, 0xf22b8b55, 0x775cc34c, 0x7c42ee55, 0x7b87c602, 0x445636a0, 0x83c2681c, 0x8577ac4e, 0x00009f } }, { { 0xdaa8c2f7, 0x1ea77644, 0x8f0f8d91, 0x59660c4f, 0x86860c01, 0xf760a485, 0x5ffe80e1, 0xab72501d, 0x8787145b, 0x26c7ef7b, 0xfca5300c, 0xf644ea82, 0x68ecab54, 0x63b76cf6, 0x4dd6d6b8, 0x955c6b96, 0x000126 }, { 0x9c9697c5, 0xae26deb4, 0x30bea9af, 0x65764519, 0xfe9e391d, 0x6e9ad9c, 0xac9fcd87, 0x4ef6a029, 0x2e02bc49, 0x7a49bc78, 0xa0b49036, 0xeb2822b, 0x36103952, 0x94ccbe13, 0x65d868e9, 0x116bc887, 0x00016e }, { 0x55fecf, 0xaebc3104, 0xa6d539dd, 0x8cb4535f, 0x8ea0dcde, 0xa9f5f78a, 0x4a0708e9, 0x979adc27, 0x727fdb0b, 0xc0bbb1c8, 0x88246acd, 0x9e458b92, 0xe8f35772, 0xe2e3561a, 0x8cc06026, 0xe8119a4, 0x00008f } }, { { 0xcb9be76e, 0xff520793, 0xb1d68e5f, 0x9edc0ba6, 0xbe1178d7, 0xe15f1fc0, 0x7402e74c, 0x523ad530, 0xe3732b58, 0xdc197bad, 0xa1897b5a, 0xfdebeec6, 0xc9b6ff21, 0x2c5cb088, 0x1e22ce39, 0xef17e248, 0x00013c }, { 0x1517a9d3, 0x9c7ffad9, 0x97cb885b, 0x9ed48e0b, 0x11e06990, 0xabc58421, 0x6d3ec727, 0xd6cd18f0, 0xc81e2889, 0xa181aa85, 0x3879badf, 0xf9b6ebf1, 0x3e8d44f4, 0xcf4851e2, 0xad5fc7e0, 0xac4fe2c7, 0x0001be }, { 0x94b8e538, 0xe678de57, 0x42029e34, 0x43c453f3, 0xb67176f2, 0x4c4c759c, 0x79727050, 0xd5df7655, 0x9ffc4222, 0x181600ff, 0x4604b375, 0xa56fcdfa, 0x8aaa3e4a, 0xde042dab, 0x81d43b73, 0x1a7f3c3e, 0x0000f3 } }, { { 0x6d0c00b5, 0x86fb1f25, 0xfcc07184, 0x53f3f1cd, 0x857cd8ff, 0x5c04c3f, 0xaf36f387, 0xe76a4fda, 0x44c45379, 0x30aac258, 0x6709b93f, 0xf65fa06c, 0xe40ac476, 0x69dd7506, 0x4238d713, 0x54bbd609, 0x00011b }, { 0xdde42bfc, 0x3659091f, 0xedef9d29, 0xf4081102, 0xa9e8b90c, 0xf32e758a, 0x8598b990, 0xf6eb308f, 0xa6d38007, 0x9d205d86, 0x8c6c48d8, 0x297f11bb, 0x3268aab8, 0x6c1f642c, 0x63f946d6, 0x2baec1b9, 0x0001ac }, { 0x8ac82269, 0x93b9b1f4, 0x5d88342f, 0x93581921, 0x66ada269, 0xce9ce4a6, 0xb338b20f, 0x4196e4db, 0x64177625, 0x3da5613a, 0x1f638209, 0x2190767f, 0x3c2fcb1a, 0xd4190474, 0x850b563c, 0xc9042cb9, 0x0001a8 } }, { { 0x221d58c, 0xfcf86ec, 0x1e9bb67f, 0x3d69af7f, 0x809e315d, 0x6d771236, 0x35873af2, 0x8453d1da, 0x1baab782, 0xb86ce2c5, 0x34584bf3, 0x4257cc67, 0x875ed069, 0x16d3d3ac, 0x8748d2f7, 0xb9ef22b2, 0x0000fe }, { 0x608b9f6d, 0xa10ac835, 0x7b811690, 0xd46b00e1, 0xd94eca3e, 0x4f40037a, 0x2b564729, 0x4b405252, 0x8df16d1a, 0xf1d705c2, 0x21c7e777, 0x205ec67a, 0x2ee376a2, 0x41192325, 0xd0e15ec7, 0xfa84508d, 0x000148 }, { 0xb97ed604, 0x48c23916, 0xdd482291, 0x6d6b57f1, 0x80ea82d4, 0xeb053964, 0x29100050, 0x89e70462, 0x4a5e70d3, 0x2e3796e5, 0x4ce7756d, 0xef3ebeaa, 0xc6dff747, 0x76a50f86, 0xaae50e39, 0xf8ef7e5a, 0x0000de } }, { { 0x848b1676, 0xde432acb, 0x2fa60940, 0xe4dd1700, 0x908f2802, 0x974d3354, 0x978d8af7, 0xcb14330a, 0x6d87a044, 0x5543f553, 0x5643855e, 0x996025e0, 0x319dfb87, 0xd0a7600, 0xaa4f1fa9, 0xc6e9a4f8, 0x0001e5 }, { 0x72cc733f, 0xabae03ad, 0x3b56deac, 0x7ebe711f, 0xca5126fd, 0x67df1ed8, 0x82f1ce4c, 0xd0d6d2a0, 0x4e859272, 0xd6093d1b, 0x4fbde57d, 0x802bcdb6, 0x2190871b, 0x50cd36f6, 0x5e876773, 0xb8dc6324, 0x0001d5 }, { 0xea7b7076, 0x18d09fd3, 0xac97005e, 0x39fc2476, 0x277dec4c, 0xcc5f6a5, 0x751e6e4d, 0xbf8e4438, 0x6be26d0f, 0xdd7ae8b6, 0xa858c981, 0x2e3f775e, 0xa43588f, 0xbc87d30e, 0xee81240f, 0xd9f8419, 0x0001a9 } }, { { 0x4ed9cd4, 0x81f17bfa, 0x68b76618, 0x925e9608, 0x6eb06a57, 0x157bddb4, 0x3ee099ca, 0xfd30cc9, 0x4958ebe6, 0x27dc09e1, 0xf40ae70c, 0x489316e0, 0xdd528d44, 0x8303991c, 0x20634e1a, 0x1526a9e4, 0x00010a }, { 0x25fba464, 0x7fc8c31f, 0xec986650, 0x77bcdd52, 0x77040f24, 0xe1b10523, 0xb9b0790f, 0xc69d2f52, 0x3ea879dc, 0x64ef519a, 0x5f84d931, 0xe600d1d3, 0xfe6b7faf, 0xc650dff0, 0x7b19c8b, 0xf2e1c3af, 0x000131 }, { 0x4aba5b78, 0xda97cef3, 0xcb4c38e0, 0x7b0037dd, 0x626cf42a, 0xdc854804, 0xbc342f45, 0x124471b4, 0xe4218f5f, 0x5c4ff9b2, 0x2b3874bd, 0xc20f805a, 0xf59815e5, 0x6462c507, 0x26565fc4, 0xee7a2049, 0x000115 } }, { { 0x2a4887e2, 0xb7895e89, 0x231c8525, 0x4fd82637, 0x916ec142, 0xdd9ae6d7, 0xedc8c0db, 0xadcd4eed, 0xeadc9472, 0xdd86de2c, 0x3a6e7274, 0x4d507d26, 0x7cd8b6af, 0x40dc55d3, 0x4dc96207, 0xdd39c6da, 0x0000b0 }, { 0x2503520b, 0xc8dc7e2c, 0xd7123636, 0x72cd4bd1, 0x2e344ebf, 0x2a8375ed, 0xf515970b, 0xf4d4e6cb, 0x708b73e5, 0xda70f9b4, 0x4cafae57, 0x4c60954b, 0xb4e2166e, 0x46b247ca, 0x3a2d78c9, 0x26ffe6e9, 0x00001e }, { 0x6ffc3412, 0xd8ae336b, 0x1d6d1de9, 0x4c066ea7, 0x3172c3ed, 0xe9fd0873, 0xcfa2ba46, 0x887047db, 0x52d7942e, 0xff830abc, 0xe9cc670b, 0x39c85f4e, 0xba19cf7, 0x2dea9b6f, 0x470a242, 0xdba18785, 0x000091 } }, { { 0x3fa9b1e, 0x96da64e, 0x6ab5b0cb, 0x1ab8349c, 0xa24ffa0a, 0x3fc50f24, 0x43f4dcaf, 0x86f224f6, 0x2c0689a6, 0x2d8c94c9, 0x33a60ce3, 0x8200cbdd, 0x258d209e, 0x72520a13, 0x4a34c31a, 0xb89d560f, 0x000024 }, { 0x7144c62, 0x262fcbdc, 0xd5880b55, 0x322c485, 0x16aba28b, 0x87e7b2bf, 0x6e80b852, 0x786b4636, 0xa010288c, 0x982f205a, 0xc18fbaa1, 0xef310aa4, 0x2b5ea625, 0x9f87d572, 0xdd9ca4ac, 0x62523902, 0x000050 }, { 0xf87602a8, 0x562110c8, 0xb03f5625, 0x2d7203b3, 0x7417abbd, 0x2e90ebc8, 0xbfcbda35, 0xac5af351, 0xdf9602f5, 0x1f925bc0, 0x51a17513, 0xe8bae83e, 0x5dfa0229, 0x2f64d21d, 0x5febff4f, 0xbde82557, 0x0000a1 } }, { { 0x246788dd, 0x85883af0, 0x36427c6, 0x116543ca, 0x25c99a3f, 0xfb58b4fb, 0x2dce8b58, 0x206a6a30, 0x1cd71d2a, 0xb6dc2fd1, 0xe4d4e06c, 0xe17e9937, 0x927e2229, 0x276526ef, 0xf080f33b, 0x59100e18, 0x0001d3 }, { 0x8ba1f3b8, 0xfcc0c634, 0x6696a1f4, 0x2d04669e, 0x8ea2455c, 0x5a686720, 0x722b0f91, 0x5112f5d9, 0xc732c82f, 0xf7d50fda, 0x5645260f, 0x2806945a, 0xa34123ad, 0xf6f3f032, 0x49041d13, 0xa85a3296, 0x0000f5 }, { 0x740ccb30, 0x7292138d, 0x8b61c7a3, 0x493eb122, 0x870a0712, 0x655b7f0a, 0x326ea64b, 0xe3c02cd2, 0x70e01890, 0x86ece9e8, 0x9c9d0ccb, 0x97fb015d, 0x8653ae93, 0x72c60c7e, 0xc7ff3620, 0xecc4cb30, 0x00013d } }, { { 0x228ed081, 0x5efe2e76, 0xa3bccce3, 0x48fcd5bb, 0x1e9ff255, 0x387d755f, 0xba4ad84d, 0xda497639, 0xcecf1dec, 0x6f11e59e, 0x4bb0d90a, 0x7e7ae2c7, 0xe2315f78, 0x8d51ec7e, 0x95f4bd17, 0x145c2f70, 0x0001db }, { 0xfbc7683, 0xc58ddafd, 0x8750c2b2, 0x82a53523, 0x3960c80d, 0x98a65b26, 0x59f93d11, 0xf4b319f9, 0xd5ee84ea, 0x3446c774, 0x70353bc, 0x181b50e8, 0x2cd427ee, 0xe0f3d2dc, 0xac9a55c4, 0xfb437143, 0x0001b2 }, { 0x7833f78a, 0x15fec598, 0xc8a4eaa8, 0x8ef37bd0, 0x9dce165c, 0xc061bc40, 0x90cbe591, 0x86f750b8, 0x8ef7477c, 0x4a4f6f5, 0xa5fee8dc, 0x25d6d18d, 0x328cb275, 0x1e34bc6e, 0x6d8a80df, 0x74760fd2, 0x0000b6 } }, { { 0xe4c42f03, 0xc373ea5f, 0x7709defc, 0xfaaa9a72, 0xf8e606ef, 0x8324e940, 0xe2aaf673, 0xd3b4fe29, 0xb4240a02, 0x98bb56f4, 0xcb488bb4, 0x9aeeb8a2, 0xc72b1254, 0x365e1aca, 0x3cab532e, 0x80631a0, 0x000066 }, { 0xba272a9a, 0x5501d196, 0xa882a87c, 0x33a3b32d, 0x16a3e401, 0x38d22b94, 0x301dc360, 0x28c276fc, 0x54373d9e, 0x74f0f6ff, 0x13a4b7c5, 0x65da8276, 0xe8d03012, 0x24047c30, 0x8901d458, 0x909f0b33, 0x00016f }, { 0xdf688a39, 0xa9b46b41, 0x9d1f0315, 0x56079114, 0xa1c5e72e, 0xd19ad69c, 0x7bf2749c, 0xdbbd208, 0x49cc964b, 0x6d572940, 0x9225128e, 0x44739980, 0x892bd5b, 0xaa39502d, 0xaca9cf6d, 0x60e52c6e, 0x00009e } }, { { 0x7d689cb7, 0x34ca0be2, 0x3574919c, 0x12c60288, 0x8727926f, 0x5b74158, 0xce867589, 0xaa1e3e79, 0xb281b64e, 0xf9ac33f9, 0xf0d2247d, 0x6f86ce5e, 0x8d2f15a7, 0x65814747, 0xcd00fe6e, 0x357c7265, 0x00003a }, { 0x11ff35e, 0xd7cef964, 0x63ceaf48, 0x3ff4c01c, 0x2b7f813f, 0x5a29530, 0xe8e5bfb5, 0x326dafbf, 0xf8e3dbba, 0x8d3c00af, 0xe33e220c, 0x924ad40d, 0x2e2670c0, 0xa4a0626, 0x733a10e9, 0x3d86327b, 0x0001e5 }, { 0x362bc974, 0xcaaf378c, 0xa51fb487, 0x109215a3, 0x936152a3, 0x8d99f6ed, 0x4b918019, 0xeb6d15b9, 0x1a4a5378, 0xf9441f46, 0xb03d7034, 0x95ddcbbe, 0xfd17b22a, 0x2347e108, 0x80f1f589, 0xae5ea6fa, 0x0001ae } }, { { 0x43132806, 0x1dd1d141, 0xe3bf2a05, 0x82b3a852, 0x1824c71b, 0xf57d96b6, 0x4684cc55, 0xb14ea0, 0x6d4b69bd, 0xa35a4d1d, 0x42dea0ee, 0x6268d666, 0x84d6b505, 0x3143d39c, 0x1975dcc7, 0x5a7cb940, 0x000193 }, { 0xb6e5b1e, 0xaf8f3d6c, 0x54a219ab, 0xc3f7d8c9, 0xdecbf93f, 0x5f960758, 0xf3d5969b, 0x5c449d06, 0xa865cc99, 0xd4e940a1, 0x64bb9c90, 0x719848fe, 0x14835d, 0x26820e94, 0x4442bbd7, 0xf105c4e5, 0x0001fe }, { 0x50f704de, 0xe42d595, 0x660e429c, 0x6d5eb899, 0x99ce160b, 0x6fe2dbe3, 0xc3060ec3, 0xa5be91ee, 0x8708933d, 0xc9bdba26, 0xd9e7e482, 0x9daa6f6, 0x83955b8a, 0x4fb12b56, 0xb0f21b2c, 0xe873eb4e, 0x000141 } }, { { 0xb4992970, 0xbabc14d6, 0x494db45d, 0xe9fdab5d, 0x7fe7cb14, 0x397f3399, 0x3923c2ef, 0x3e8c5e33, 0xfed249de, 0x9906c1db, 0x6e3aaa09, 0x1f89ce82, 0x9374e20f, 0xdda583a4, 0x686affe9, 0x37d702f, 0x000164 }, { 0xfc2083d4, 0xf293d0e6, 0x3e43da45, 0x1c465748, 0xbf50cf3, 0x67894a9c, 0xa693f8c8, 0x59a31523, 0x3bb0c489, 0x53d6e693, 0xc2fcf390, 0xe21cab98, 0xefd37452, 0x88e5c15d, 0x4b2a8013, 0x58c5ae29, 0x0001cf }, { 0xa52c194c, 0x7a76b8b6, 0xc374025, 0x605e9e9, 0xf879844d, 0x54c1edc, 0xa7c4c3e6, 0x26ecc1e4, 0x7984384, 0x11247db1, 0x3ab4e470, 0xe833fa9a, 0x9a70208a, 0x24cbf127, 0x8723d792, 0xd5a2821e, 0x000168 } } }, { { { 0xc9b24561, 0xa19345b4, 0x62c40c27, 0x314955cf, 0x6cccbc18, 0xeda25c63, 0xe6b327ca, 0x73b8aabd, 0xf494d03a, 0x54d72b61, 0x590513e7, 0xb98902d5, 0xede9545d, 0x7c23ea29, 0x8fe96157, 0xdf60bc0c, 0x00014d }, { 0x20658f6d, 0xaa424907, 0x1d936b18, 0x8745dfac, 0xb639a727, 0x8145c86e, 0xbf946a0b, 0x5a9b5b3, 0x5aca53fc, 0x230f8eb4, 0xb6547114, 0x57a3275b, 0x844b01f1, 0x2b6c2b83, 0x41f4b2a7, 0xf4e1e300, 0x0001b6 }, { 0x8c8d5550, 0x8967757c, 0xf5aa26cc, 0x16365ddc, 0xb01e6250, 0xd23538c7, 0x7885c94c, 0x202cddf, 0xf6f218f2, 0x88b6f708, 0x2c03f230, 0xe3bf5d30, 0x6c341f10, 0x11b41496, 0x45a0e55c, 0xfe6b2be1, 0x0000b1 } }, { { 0xfdf139e8, 0x402a766e, 0xd037a52e, 0xbfdd95fa, 0xe0c6f2e8, 0x93e64f0b, 0xd6ccbc61, 0xfcb75ddc, 0x6bc68983, 0x878522a, 0xe377eaeb, 0xd467a2c2, 0x4335687f, 0x7be74034, 0xa89f53f, 0x7d1bcfcc, 0x00014a }, { 0x693a0602, 0x8d924f30, 0x55b107cb, 0x78fe2735, 0xbeb2c16f, 0xf177d6d9, 0x63a3433a, 0x816d29a7, 0x5c6a114c, 0x262c5586, 0xb99d605b, 0x7891a563, 0x7cc62720, 0x1479d1f1, 0xe1e27ea0, 0xd26dafcf, 0x000028 }, { 0xf6852f9e, 0x48c86e6f, 0x4cd1f8d0, 0x50f6dd9c, 0xa68417c, 0xa4d4df76, 0x31e50916, 0x19f301fd, 0x84a95fb4, 0xecf289ca, 0x1e54cffe, 0xecf073f9, 0x3745638c, 0xb194821a, 0xc06af540, 0x8b27fb6, 0x0000dc } }, { { 0xf4ce783e, 0xa78051fc, 0x19305626, 0x766c7f53, 0x20814cb7, 0x445df77e, 0x98f047f0, 0xb4ee2866, 0xdd7ad320, 0x4ce4161a, 0x5fa9f014, 0xc55e57af, 0x627fe285, 0x5a73c6a3, 0x67d06c5e, 0x6f39b2ac, 0x0001fb }, { 0x11beea79, 0xb127955, 0xb1dc5917, 0x3444a544, 0x10c6c667, 0x6c44465b, 0x88b971d3, 0xfe449169, 0x5a2547c7, 0xed6673f9, 0xa0c7802a, 0xd692426, 0xae1198c8, 0xa39d8104, 0x9614a373, 0xc7fcca2f, 0x0001d1 }, { 0x22c6af23, 0xd0b36b66, 0x33a52ac3, 0x46e6a9e, 0xb2a5175d, 0xaaf716bd, 0x2678cb53, 0xe52cbce8, 0xe1f087f9, 0x86f7ee38, 0x1e805ab8, 0xb23c1315, 0x12dcc9ac, 0x1e056724, 0x387131f, 0xd406885b, 0x000173 } }, { { 0x95b99483, 0x28226772, 0x415c188e, 0x29bc5f1c, 0xf34188e0, 0xd63dd50a, 0xa35418ef, 0xb43eecef, 0x5f5aaad5, 0xded228fc, 0xb52e3ace, 0xe53a2431, 0x7886618, 0x7b430e3e, 0x37eebedc, 0x1922b2d6, 0x000148 }, { 0x6fb842fb, 0xeba16523, 0xdbd4d164, 0x978947c0, 0xedb3d95, 0x15113e15, 0x89d61064, 0x1f27e112, 0xe015b04f, 0x776b5dbe, 0xcdb41bd2, 0x55884b9d, 0x6da8e7db, 0x253c6027, 0x8264db1b, 0x4d2d1713, 0x000146 }, { 0x5518c2f0, 0x9a250409, 0x24679c8b, 0x7039c3d5, 0x45eec30c, 0x33d9c1da, 0x7143cbd7, 0x88f8d3d7, 0x885f7a07, 0x59b644cf, 0x12e79230, 0xcec01b46, 0xd1149fb9, 0x3464dd2e, 0xbc22b770, 0x2aeac498, 0x000027 } }, { { 0xdfc67bb3, 0x25180da3, 0x830daad2, 0x5a0b3268, 0x3cffe9fb, 0xbc79d47f, 0x9dfb6fd1, 0x1d725742, 0x9d6315d2, 0xc231ca05, 0x4667fb75, 0xdbffc696, 0x78e8ca92, 0x331c6f32, 0x5cd2e1b2, 0x3136c9ca, 0x000174 }, { 0xc717d11a, 0xf254360a, 0x9ed4f644, 0x10a577c8, 0x299b42f8, 0xe2e7e055, 0x7d9c6a2e, 0xcb397f59, 0x50f6b608, 0x63172e07, 0x260f1daa, 0x4e0c6c8e, 0x5e06ee53, 0x991851f5, 0xc354e703, 0x5490bfe0, 0x0000a3 }, { 0xf702e480, 0x198f8b23, 0x65baefcf, 0xf2f843bd, 0x4e4ccd5d, 0xde1f2435, 0x4bf396f, 0xba3a7c8e, 0xdd75fdab, 0x6501d54e, 0xdf8439d9, 0x4075e02b, 0x1d58864b, 0xb874b61a, 0x81957e55, 0x6c8af426, 0x0000b1 } }, { { 0x16cfad6b, 0x414f14c3, 0x877a2eff, 0xe0958682, 0x201fc4e9, 0x3f290dca, 0x687c7fac, 0x678d3f22, 0x2ffed8fc, 0x3150998f, 0x6630f278, 0x47ba72c7, 0x7a1a4579, 0x3d190808, 0x767242bf, 0x728d30dd, 0x0001e9 }, { 0x34808d7b, 0xdaf4ec90, 0x784a03fa, 0x3aed4e56, 0xca997623, 0x4e9ab94e, 0x884c313a, 0xbd7fa190, 0x154d709d, 0xfd0e3188, 0x16d847f1, 0x5a42856, 0x7ce43cf1, 0xcc58e87f, 0x7b63b666, 0x177cc375, 0x0001e1 }, { 0x8095a657, 0xf2197952, 0xff350a5, 0x43152795, 0x9e5fee5a, 0xcfbb0bf5, 0xc9013396, 0xb632d645, 0x290cbc82, 0x283cdcd1, 0x1fd1f3d6, 0x5cefd1a7, 0xc940f798, 0x25b316cc, 0xbdb554c6, 0x537a2d4d, 0x000073 } }, { { 0x9e9914b8, 0xbbec1148, 0x50c2bb12, 0x6aae3602, 0xba5b825a, 0x9461d547, 0x8f3db6bb, 0xc436c198, 0xb7019ebf, 0xc05ea181, 0xdbc93fa7, 0x978e092f, 0xf5340dc, 0x954398fa, 0xfea6a855, 0x20badd86, 0x00012c }, { 0xede3dbfc, 0x5daf0917, 0x5d1f283a, 0xc8ab1a02, 0x20af6ab3, 0x30646702, 0xe59a184d, 0x781db506, 0xd958b33f, 0xf1104f4e, 0xbd65a87f, 0xccc9f77, 0xdc23d6b3, 0xdf20666c, 0x3136c553, 0x9380132e, 00000000 }, { 0xf636dbd2, 0x5bab2908, 0x28f49127, 0xb194793b, 0x4962bdcf, 0xe0488bfa, 0xbfb2d197, 0x6c7821f1, 0xa1d705d9, 0x76a63548, 0x163acdb5, 0xccb3da78, 0x40663099, 0x72c14ee5, 0x55bfca0d, 0x97e39f24, 0x0001bf } }, { { 0xab607775, 0x14ba981f, 0x6f22c172, 0xf1ddac62, 0xb42d80a0, 0x89f94d4f, 0xc6ce5d3c, 0xde1a241a, 0x8939ad7d, 0xa38fe90e, 0xe7c3334b, 0xcda6087a, 0xe408e12, 0x2940fe01, 0xc029a35e, 0xbb8a79ae, 0x000120 }, { 0x10b4a25d, 0xaf975fe5, 0x1741e6cd, 0x987ebf75, 0xbb1b4bd0, 0x262de2d, 0x60700168, 0x7dea198d, 0xb37e5c5f, 0x7c529a53, 0x62488de3, 0x2da40e35, 0x1fed9e54, 0xb600781f, 0xbaf42e69, 0xab55cdcd, 0x0000fa }, { 0x2e9842f8, 0x1d6cdc99, 0x5ad3650d, 0xfff1c303, 0xc89374a1, 0x6cbc9991, 0x4dd3cfae, 0x9302bc74, 0x42402b84, 0xe4d5651a, 0x87ebffb9, 0x7f94b451, 0x118836d4, 0x7f55bf37, 0x63c83b4d, 0x3068ff06, 0x000109 } }, { { 0xbdc3cdb5, 0xb6daceb8, 0xefc52151, 0xe178ba67, 0x286ee606, 0xf35423bf, 0x10f8f78, 0x1cfeef5a, 0xa8b88a5b, 0xb8ed1df7, 0x36de925, 0xd6bca315, 0xce29b57d, 0x6ec2de7d, 0x67c2f55f, 0x78d9ead, 0x00019f }, { 0x1bb8db05, 0xf7f83d9b, 0x28f5efeb, 0xd8168118, 0xacd8c504, 0xeeb8770, 0x1db48a30, 0xbe7d6559, 0x81c89751, 0x8077ca3, 0xfeec6472, 0xc7172749, 0x4ffa8d66, 0x6ba161e3, 0xc14ba275, 0x4da26e5a, 0x000169 }, { 0x34ce872b, 0x2a1c408c, 0x77381933, 0x2b82f765, 0xf0f53e59, 0xba9b80e4, 0xeb952fab, 0x2e4194b3, 0x2666c53e, 0x44403622, 0x40cb69a1, 0xb2f21635, 0xac962b66, 0x53da5756, 0x87717192, 0x5a9a0704, 0x000031 } }, { { 0x90da78f5, 0x7c7ff529, 0xb97474f9, 0x79eb0969, 0xc104ca01, 0xf544246a, 0xc08b3cfa, 0xe2a8a1e9, 0xfcb7b8bd, 0xaa266947, 0x8eaa8a2d, 0xa891a96b, 0x831f66b7, 0x90e1e8, 0x94c76215, 0x4924ee6a, 0x000121 }, { 0x2be13e7b, 0x9295f487, 0x522677ab, 0xe9adf3aa, 0x1c16e1a, 0x21eaee15, 0xafa57c9b, 0x763717d9, 0xb79b2ee8, 0x54a91203, 0xf2ff76a9, 0x6e6c1fa7, 0x217d7236, 0x9cf87803, 0x65f158d7, 0x8023daaa, 0x0001e4 }, { 0xb25c02a5, 0x78e0a5d1, 0xa9bc3fc4, 0xbeaa3e13, 0x87f471f8, 0x45c7bf8a, 0x7b29c759, 0xe3befbca, 0xae6306b1, 0x4aafb50e, 0x9a80ead1, 0x78c8e033, 0x649f2bb1, 0x43dfa11b, 0xe3aee254, 0xae56e3df, 0x0001e9 } }, { { 0x69681ffe, 0x4026fcf3, 0x96d20c5c, 0xb4cdf6ac, 0x1f65c9c5, 0x21873e2e, 0x59505ce2, 0xc87604ec, 0xc776277, 0x944e4e58, 0xfd9b7aec, 0x79efeda1, 0xa5414c0a, 0xc5260491, 0xf3ceaf24, 0x8675f4b4, 0x00010e }, { 0xb8a5b734, 0x8f3ba979, 0xafd35072, 0x3167c53b, 0x1dc99f63, 0x683c8ee7, 0xbbb49dc, 0x6dfc8194, 0xccab517e, 0xf31ee8e5, 0xa97412b, 0xfb197bee, 0x2dcd88fc, 0xf191b178, 0xe6cd56bf, 0xc3653fa4, 0x000023 }, { 0xca57bead, 0x79ba8ea6, 0x4869b321, 0xa40819e, 0x9e3f04b, 0xbed602ae, 0xe608de, 0x3116384e, 0xccd984f8, 0xfbe495d6, 0x1a76f929, 0x4d260a8b, 0x5824d497, 0xa1a4bdef, 0x15d09c89, 0x57d4f329, 0x00017b } }, { { 0x373fb4de, 0xb97fb1e2, 0x26a95b4f, 0xd611a17a, 0xfaf0bff, 0x59cc5b4c, 0x66830abf, 0x56a3cd29, 0x37e4b948, 0xa0169e03, 0x8a14ba11, 0x7c2ae1e9, 0x9ae8dfd9, 0x1f365d86, 0xc3ac3e1c, 0xd3ce7f42, 0x000090 }, { 0xe95654a1, 0x7aeca051, 0x2127b19f, 0x779d2a8f, 0xa370d5d, 0x9adcb710, 0x68cf085, 0xcd1c1635, 0x8e567e45, 0x8fe9aa5e, 0x8db592cf, 0x72f94eb5, 0xc8d16005, 0x72b3787d, 0xf41d20e6, 0xade9bac2, 0x0000d8 }, { 0xa53ed737, 0xe45ce77c, 0x5ff594ec, 0xd9ab950d, 0x73bebcf1, 0x67aca81f, 0xed109ece, 0xd5735bec, 0x6e28586c, 0x9a7625d8, 0x7d1ce95b, 0xefd498, 0xc1dadf6, 0x212077d3, 0x54d03089, 0xd0b32849, 0x0001fe } }, { { 0xeb2e2ee0, 0x9d8c8273, 0x1a348fa0, 0x958315ae, 0xd55fb5b4, 0x11598153, 0xcd31ddc7, 0x30f339c1, 0x1259130a, 0xd4301110, 0x114f1426, 0xbc8d295c, 0xe9ab033, 0xa533938b, 0x727d313, 0x89bde001, 0x00000a }, { 0xdfc8b5ed, 0x92cf9bf3, 0xf06ee677, 0x1e9bbb80, 0x3d24dd4b, 0xd24b5e57, 0xee4fb8c6, 0xc0acdfc, 0xc5a5d863, 0x4359ebba, 0x911e0fb3, 0x3c9182a4, 0x2b403ef2, 0xaf97f660, 0xb6c1f69, 0x555ff3ee, 0x000172 }, { 0x31c02353, 0x184e6e17, 0x4793637, 0x3c4144fb, 0xbc517c55, 0x602588ab, 0x2b31f5ae, 0xc0dab00b, 0xf252e139, 0x1a54e60a, 0x74fc1d2b, 0xf0c1b90e, 0x22955a27, 0x35475fd6, 0x838b5848, 0x2e8e9c64, 0x000193 } }, { { 0x778d77cf, 0xc6809964, 0xdef1a926, 0x2cef9e10, 0x696bb737, 0x97adb6a1, 0x23b650fb, 0x7714ad92, 0xfc1bc83c, 0x89d5951, 0x81768d7c, 0xbbb880d9, 0x4392292b, 0x53dee004, 0xda97d4f1, 0x2ea39cf8, 0x0001ca }, { 0xb5f24e7c, 0x28b9aa0f, 0x2c979c54, 0xb598cc16, 0x1f812f1c, 0x7eb6e7fe, 0xc3309d52, 0x124bd762, 0x849bfca, 0xb17fd4b6, 0x3e4cda82, 0x91c2f6eb, 0x47ccf191, 0xc5262a2d, 0x64124936, 0xe8506d5d, 0x00003e }, { 0x55e217be, 0x6d2cbb9a, 0x2782e716, 0x73fc92b8, 0xaa1c0d56, 0xbf66da38, 0xc3ffbf35, 0x88aa989, 0xbee41dd0, 0xc14c23b, 0x7f62fa01, 0x3be8b1a8, 0xc2e97323, 0x857dce96, 0xddc7e5c, 0x9bfa6b08, 0x000169 } }, { { 0x659254b5, 0x7a88763b, 0x7d06ed51, 0xe2a4d27b, 0x1dc6e2f1, 0x503ad4d7, 0x8e350323, 0x52c2b41, 0xd87cd175, 0x545924c6, 0xfe29e3b2, 0x2ee664a0, 0xfddb94e3, 0x4a83363e, 0x1d0f4310, 0x3f104226, 0x000153 }, { 0x193d34d9, 0x987ff353, 0x160b1ba0, 0x718d31ff, 0xe311164b, 0x14aea6c8, 0x41fbff69, 0x8ffefd5e, 0x8558a57f, 0xf80afd06, 0x4189e1de, 0xf563484c, 0x7603d5b9, 0xc099328a, 0xb98b3560, 0xca2a9f7f, 0x0001a5 }, { 0x2cefe648, 0x9246e4f8, 0x7f6c0b21, 0x21c92781, 0x24f4dcda, 0x52e845fe, 0xa67b0bf5, 0x89471dab, 0xc466ca33, 0xa014640d, 0xf253f356, 0xdea2fde2, 0x5577f9d1, 0xa2108d28, 0x5e000a70, 0x29a0b33, 0x00012d } } }, { { { 0xaf7c29bc, 0xfef6acfe, 0x775ebdad, 0xa5a67b91, 0xc20dae7f, 0x661adbdd, 0x50440376, 0x1afcb592, 0x61a52ae0, 0x43885028, 0x7741812d, 0xd9de3779, 0x8213b8b1, 0x27306049, 0xd1aabf54, 0xea3238f, 0x0001ed }, { 0x94abfb23, 0x6582f840, 0x166b81fa, 0x1c830056, 0x295524b6, 0x357f8eb5, 0xe68226bc, 0x1dd92454, 0x6d0b594d, 0x382a812f, 0x9f417f27, 0xbca554af, 0x5c02ec50, 0x89a50523, 0x7ef40528, 0xa7ff662b, 0x0001ba }, { 0x7d4d6482, 0x6449eb9c, 0x38ccec93, 0xd6073955, 0x795b29fa, 0x85b6ae96, 0x6e7e0c63, 0xeeffb56a, 0xde0c0b92, 0xab75944b, 0xf41ea11d, 0xc91d1237, 0xc153353d, 0x53a57df5, 0xa5d18909, 0x9c1c6e1, 0x000063 } }, { { 0x4b1cf68e, 0x959723fa, 0xb86ffc2d, 0x69837cea, 0xd6ff905d, 0x41920fcc, 0x721c9879, 0xc45d2a95, 0xbd013703, 0x7a242d42, 0x765441cb, 0x6b1d3a73, 0xe2bcc6ed, 0x1e53d599, 0x9ec84100, 0xddf242a9, 0x0001c8 }, { 0xb7d50b3f, 0xe78bb566, 0x52138bbf, 0x15adabaa, 0xa760a8e0, 0xd77231e8, 0x42ca3447, 0x1b81e177, 0x6b348ce1, 0x5fe0e4cf, 0x5c8e3434, 0x8ff04f72, 0x9663b9fb, 0x48fd5183, 0x9c259bad, 0x602dc13a, 0x00016d }, { 0x9add267d, 0xe47bd09e, 0xa4a80ba9, 0xc3c1eff9, 0xcd31b76a, 0xe0ecc35a, 0x82ae2703, 0x72127063, 0xa5cb7f22, 0x36bbfd42, 0x5b1ebea3, 0xd4deb3e3, 0x4ddf8373, 0xba70c2, 0x84a935b7, 0x803bcc0c, 0x0001bf } }, { { 0xe3920b7f, 0x2db39728, 0x58d97aa4, 0x52d2c84, 0xd1df8281, 0xf0f8efa5, 0x69a9eb58, 0x23842931, 0x4b98c372, 0xef2abe57, 0xfa58cd36, 0xa71707d0, 0x4693c4ab, 0x7babf22, 0xbecffa33, 0x9193cf11, 0x0000c7 }, { 0xb267431d, 0xc4b48045, 0xee6f6b0c, 0x6d3931c, 0x25c07050, 0x2ba21983, 0x858e7e6c, 0x47d6b873, 0x2850a9f5, 0x86f40e2b, 0xcaa1efa0, 0x8461889d, 0xa620303d, 0x17dba9a3, 0x77f90e9d, 0xbb8c671d, 0x0000ce }, { 0x97187d18, 0x2bfc1382, 0xe1c0f898, 0x45fb82f, 0x287d0d47, 0xeb3da20d, 0x4ba0b845, 0xfe5b917e, 0x289e6842, 0x758b832a, 0xc97d80df, 0xa427cc65, 0xca42a3db, 0x919ec446, 0xd1b055e, 0x4aea42b8, 0x00015a } }, { { 0x447866a1, 0xd83edffe, 0xcbd24965, 0x4e52494d, 0x65192cfe, 0xe68c7f44, 0x51cf575c, 0x4f65f4ee, 0xb48e0642, 0x17b2436d, 0x42be0e3c, 0x28c6e059, 0x64294781, 0x80cb6e8a, 0x329bd9f, 0x2ca120ae, 0x0000a6 }, { 0xbc48ea36, 0x366b6c98, 0xfa60e53f, 0x1ab3c052, 0xb6f7216e, 0x2bce5332, 0x79949807, 0xb8a8e083, 0x79fd2489, 0x8c10ccfa, 0xd5cb243c, 0xc3494406, 0x8f1260f9, 0xbb4c5f09, 0xf3a1d890, 0x31c10202, 0x000113 }, { 0xe1a0f3b8, 0x634db8f0, 0x65c7e9a, 0xb80f3889, 0x85e2954e, 0xc7fad8f8, 0xd671e2c8, 0x10dd6497, 0x73878137, 0x4125c462, 0x9862b78e, 0xe76facb4, 0x1a2aa18a, 0xfaabc3a7, 0x61ec1645, 0x6d0e86a1, 0x0000b2 } }, { { 0x9f890b0e, 0xa051c1f6, 0xa9b4455b, 0xba3f531f, 0x7cc14c78, 0xf3efce1a, 0xcd36a122, 0x5bcf1d85, 0xcf1ae907, 0xb10986ba, 0x71385e7a, 0x926fdc4, 0xe07af79e, 0xcf23103c, 0xbb932679, 0xd385d3bc, 0x00007e }, { 0xcf2504cf, 0xdcd39a7e, 0xd1ad9ab9, 0x4ecec482, 0xe9918050, 0x544eb414, 0x3335f070, 0xa269ef6e, 0x10c2634f, 0xa2a56cbe, 0x86ebe6ac, 0xf796ea27, 0xb1eb454f, 0xb3264219, 0xc07e4760, 0x2dd9b4dc, 0x0001bc }, { 0xd6a63996, 0xabe3641a, 0x4fa6d15f, 0x8c527fca, 0x830c9c48, 0x95e07dce, 0xa8e75a9c, 0xa59a4f22, 0xbbba6c12, 0x39a25359, 0x422c65b8, 0xaec2cdef, 0xba39b62d, 0x21b801d1, 0x58f3248f, 0xf23e67c0, 0x000016 } }, { { 0xd3c96aba, 0x91e63f89, 0x6d37e3fb, 0xeeb7bb85, 0x9f5e9b10, 0x1e177f60, 0x755ba597, 0xbbcc6c0c, 0x6e7d017c, 0xa72b4231, 0x992da89b, 0x602ac11b, 0xb24c8a7, 0x89d0718c, 0x34cd31f0, 0xb1680cc0, 0x000123 }, { 0xf2aec7e3, 0x2b55d0a7, 0x7d552586, 0x49e3f466, 0x4c77e438, 0x5a3141f5, 0xc7742f81, 0x80e4968c, 0x8823efba, 0xfc11ef4d, 0x47d3b345, 0x77ab22b9, 0x5ddb5d35, 0xc5867fe6, 0x41eea104, 0x9f6ad36e, 0x00017e }, { 0xae313af4, 0xfe3f0eba, 0xc333161e, 0xba0d56d5, 0xd0ac763b, 0x999e61c6, 0x3f31c58, 0x63580833, 0xf9050679, 0x2d6645a8, 0x766eed25, 0xf156def5, 0x977a56a4, 0x6338db00, 0x62794f37, 0x6e83656a, 0x00006b } }, { { 0x1b38d218, 0xb3bea7f0, 0xbd60b955, 0x1501a5b7, 0x95375291, 0x9efa1eef, 0x8d12bfac, 0xbcf60590, 0xd0983f4a, 0x198b974f, 0x93f1b01a, 0xfbb50f7, 0x84a5c94c, 0xdf787254, 0x886552b6, 0x70ccdac9, 0x000165 }, { 0x5472c05c, 0xeee28f5d, 0x10d4ecd7, 0x66be8b37, 0x26201c7b, 0x5641315c, 0xa75a334c, 0xff718ba9, 0x55f17fbc, 0x40ba1ded, 0xdcaff711, 0x85153dff, 0x75c94443, 0x1a4d1798, 0x12153b59, 0xb74bceb4, 0x0000d5 }, { 0x1319d557, 0x37053623, 0xad1f4fa1, 0x941efe5e, 0xaf30c55f, 0xfb31e6e2, 0xa2e5a30b, 0xd58b19f5, 0x91e175d8, 0x4bf9972d, 0x696fb90f, 0x8af9830c, 0xec57f07a, 0x8c19a69d, 0x46b5fc81, 0x5730ef9c, 0x0000e1 } }, { { 0x806e0f68, 0x1bd6cc7e, 0x15fa0365, 0x50727b1f, 0xbb9813f0, 0x997546bd, 0xe81a9012, 0xc2743bd, 0x68f6c656, 0x5ae7c300, 0x12d55a32, 0x9836d309, 0x3dececca, 0x8cf0b0bb, 0x7bba4f38, 0x64c384b, 0x000061 }, { 0x6eba5199, 0x5e141d3d, 0x435ce0f6, 0x52ab40b9, 0x6c7e21e1, 0x6a05cd63, 0xb6f24ebe, 0x43d9bf75, 0x95fb21c5, 0xf160dafe, 0x7cdaa815, 0x26cf6962, 0x7139dd61, 0xebc3edf8, 0x32af35c4, 0x9fc53123, 0x0001dd }, { 0xbea9c25a, 0xd4c9d64c, 0xa8c1ee94, 0x19be1c2b, 0xde02f3b6, 0x7b36bb8c, 0x6112e01f, 0x9c668219, 0x5ad3d68b, 0x971ae308, 0xdf17bb25, 0xf7319efe, 0xbfc9aa7a, 0x9a7a3f5b, 0x9eab96ac, 0x21e99539, 0x00005f } }, { { 0xb4af7f30, 0x2766eb36, 0xbe4592e6, 0x34c3584d, 0xc0ae2515, 0xc98da992, 0x2afebfc6, 0x39f9327, 0x1e93cb01, 0x8ea836a8, 0xac2bb6a7, 0x8ab427a5, 0x982be583, 0x2242369c, 0x67030401, 0x53f24e5c, 0x0000b2 }, { 0x18c47d73, 0x99a21f77, 0x99e28ed, 0xc49d80c9, 0xbe04e2f7, 0x8c2e3336, 0xf6d2c73a, 0x41c1189b, 0xa21d578a, 0x508bf130, 0xf9c6d1bc, 0x9fb0e16d, 0xbacf295d, 0xcbcf2ec8, 0x4776ba9a, 0x4677b5ca, 0x000062 }, { 0x9e561bff, 0x44b0ae84, 0xa718e893, 0x525f00d8, 0x8c5749d0, 0x3c5b3d1c, 0xced9a50, 0x4c243689, 0x8c217fdf, 0x2ebe7633, 0xf7bb1f6c, 0xc1e82c2b, 0x24a21521, 0x95484889, 0x8e0a9ded, 0x5b4a9260, 0x000105 } }, { { 0x2c75fde7, 0xdc31e236, 0xcbf2f558, 0x9787f7b4, 0xbc7c6e2b, 0x71d303d9, 0xde1d5320, 0x1af510e6, 0x409fe937, 0x81080a6e, 0x8a97e8e4, 0x39f01d80, 0x48f4440c, 0x2484ddbd, 0x59863c7b, 0xffc5ca61, 0x0000df }, { 0xe70de732, 0x342e2213, 0x3fc5ed31, 0x35004358, 0xc54e2231, 0x26de2098, 0x4bdf39dd, 0x8e21b5f8, 0x947e1988, 0x816d90bb, 0x925d45f1, 0x8bc1b474, 0x24509799, 0xb5dfb0e3, 0xfe3b9255, 0xe6027414, 0x0000bf }, { 0xd92d5114, 0xfc6f511a, 0x5937fee8, 0x5d767f01, 0xec17b6c6, 0xc4b29bec, 0xfd9ea237, 0x40f46bbd, 0x5aa1fe4e, 0x5d431c49, 0x4eef69b9, 0x6b061ff4, 0x9f4eab7a, 0x5c968afc, 0x55955988, 0xfe4d782b, 0x000180 } }, { { 0x1676b5f0, 0xa2a8f84a, 0xf5bb564b, 0xf27e08c7, 0x65d734c0, 0x60284384, 0xbae4ee1a, 0x3cb1eac2, 0x9fdd7f04, 0x712556d3, 0xbb1a69f6, 0xb0e0da68, 0xf26c2a02, 0x50f79423, 0xbc1d156b, 0xa4b08bb0, 0x0001c3 }, { 0x65aacc1f, 0xb9192aaa, 0xc69470f7, 0x2ba15136, 0x2a1471b1, 0x166c4d02, 0x9e8e335f, 0x197dca10, 0x14ea4380, 0x3ed1efeb, 0x9855860d, 0x35e11dee, 0xe16a018d, 0xfa6cfe2b, 0xcda842dd, 0xfe64e916, 0x00016f }, { 0x120a9ce8, 0xf7741310, 0x4d5362c9, 0x99afb94f, 0xee5c7eac, 0x85744d60, 0xa17e436c, 0x182b3eca, 0xd2ed2019, 0x3cdd7086, 0x1bcc62f, 0xac2953a5, 0x4756429f, 0x4eef010d, 0xc227db1e, 0x457c28a5, 0x000164 } }, { { 0x5e0a6d7a, 0x355f7419, 0x956a8e58, 0x4d5e7b55, 0xe471d8a6, 0xf899d947, 0xa90ac340, 0xeb36e526, 0xbb887206, 0x4fabd381, 0xde0341f7, 0x261d0e61, 0xed1da1f7, 0x84081389, 0x4b04b58b, 0x31130b22, 0x0000a8 }, { 0xa5a9e212, 0x3fb07f0b, 0x49f26afd, 0xe2f90c25, 0x221bbc1e, 0x25883161, 0xbca5bc2f, 0x1fee5e52, 0x987b7e7b, 0x2f9588f7, 0x5529c262, 0x6854f998, 0x4ce1ed18, 0xee47ca2c, 0x716c6428, 0xaa1e4ab5, 0x000186 }, { 0x23e21754, 0xb96955e8, 0xd663a4a1, 0x61b7caf2, 0xd013a154, 0xbaccd8f5, 0xb26390df, 0x69cdcebe, 0xdf01c7a2, 0xcb2e99af, 0x1a6736e, 0xca7b3576, 0xb4192d8, 0xef98bbf2, 0x9cf54138, 0xd44a4da2, 0x000177 } }, { { 0x352e06f2, 0x58bf2db7, 0x56fee6d, 0xdc13bf49, 0x8865b1f, 0xae4f3e65, 0x63ef9c31, 0x90d4894a, 0x98f1d3d5, 0x8a3d8f64, 0x30ffc3cc, 0xecbb7bb5, 0x753a9a6a, 0x7525278f, 0x8a8532e2, 0xf9f10e3, 0x0000c2 }, { 0xad05f30d, 0x502a95e5, 0x9df3119e, 0xc5d01daf, 0xcf689af3, 0x4ad15e4, 0x9b148a17, 0x35dd9abf, 0x11951875, 0x4a875d0e, 0xed1ba36a, 0xdd84dd4f, 0xb1adda1a, 0x8db31d60, 0x9a016f89, 0x2267ab3c, 0x000050 }, { 0xbad17d4e, 0x6b1b43d1, 0x1c40a76a, 0x3cc1488e, 0xb4e34d24, 0xb2ab3ee5, 0xc0641087, 0x9d0f5684, 0x2b4b6360, 0xe47e4851, 0x81e6f23c, 0x509f4a63, 0x60fbc5a6, 0xe3605b99, 0x16126f6, 0x44c9f02c, 0x00013a } }, { { 0x7efd24ab, 0x574e83df, 0x2048acb8, 0x52e7d93, 0x9c1dbd4f, 0xce3232e5, 0xa796f35, 0x37f1e9e1, 0x98165f82, 0x60f34d56, 0xec0f4058, 0x56d77128, 0xd34d606d, 0x9a57c113, 0xafe62ceb, 0x2e79b5c4, 0x000110 }, { 0x4a979090, 0xe36eb44, 0xf5266021, 0x19cc98bf, 0x5c9f9127, 0x7b84d376, 0x3f6b4371, 0xb9444b3f, 0x99637f4f, 0xc4911b92, 0x1159ee6d, 0x7d73459b, 0xb728874b, 0x4326f268, 0x9c11e0a5, 0x83d77f97, 0x000163 }, { 0x3c876c0c, 0x2dfa13c3, 0x5e3b39cb, 0x71f781c7, 0xf4d70aa6, 0xf0ad66df, 0x9fab3bfc, 0x2bce14d9, 0x905cef25, 0xef934e94, 0x7f381ede, 0xbedcefbe, 0x26696ca, 0x92fd742d, 0x63989d09, 0x3bc22c4d, 0x000061 } }, { { 0xdced6d0d, 0xc3b17f23, 0x6faa406a, 0xdfc0a705, 0x463821b, 0x653aacb5, 0xb5654d31, 0xb9a18176, 0x9ddd0daa, 0x3e6f8d43, 0x9f11fa67, 0xf6ad2af, 0x463c4af1, 0x9f561ea5, 0x365dca19, 0xe12e4135, 0x000097 }, { 0xb1716505, 0xe77e6340, 0x698cfe9, 0xdf05bbbd, 0x9d88d4cc, 0x5be36be6, 0x63fd772, 0x1f6901b7, 0xbb1fcd1a, 0xd0e83a8f, 0xcfad23c7, 0xe35cac5e, 0xe3ee7217, 0x80920288, 0xac6123d3, 0x7912f12a, 0x000188 }, { 0x8c0daa99, 0x6842887b, 0x547e4977, 0x7ee13edd, 0xb929a70e, 0xe6131a73, 0x291fba5d, 0x87047c31, 0x26a309e9, 0x6d4166d8, 0xb82a6afe, 0x2c7860bb, 0x6c7a6bcd, 0x65ed603e, 0xc5bb71a9, 0x71c9e30b, 0x0000d9 } } }, { { { 0x8dec2596, 0x4a18f283, 0xe36223fe, 0x2764f92f, 0x84264340, 0x91548b3d, 0xd69af045, 0x90509381, 0x79f187fc, 0xc22956b4, 0xf52ee21e, 0x80098626, 0x3a6b8415, 0xcaedf8bd, 0xd3023a26, 0x457d30be, 0x00012c }, { 0xb1f70994, 0xe2541c98, 0x11bb57b, 0x83ebce15, 0x7f26906f, 0x5bd9248a, 0x34cafa64, 0x5af9cedd, 0x54d8efd8, 0x26eca65e, 0x2b98a482, 0xd3bb564f, 0xed22fd2f, 0xa5a8a185, 0xd2a2db42, 0x93d8a92d, 0x000128 }, { 0x28776ad6, 0xc46a79af, 0xf07983bb, 0xdc3b11c0, 0xd21ac7da, 0xba7af580, 0xf010ac50, 0xd809d4a4, 0x9017cc53, 0x98364f61, 0x9de7945, 0x8b0b44fc, 0x5d91cd94, 0x772c40f3, 0x78650efa, 0xfcc8d74e, 0x0000ce } }, { { 0x2b982aca, 0xfbc5120d, 0xf3569e92, 0x1e59d9b9, 0xc9b444ee, 0x4846aeed, 0x43bdf652, 0x81c1271, 0x17ad9afb, 0xe48a27e7, 0x5b22822a, 0xeeabf1d8, 0xc14ff7bc, 0x151773ae, 0x2c5b914d, 0x801b8637, 0x000038 }, { 0x77704759, 0xc476ec45, 0x5fcd0d2, 0x9fd7fb6c, 0x68801b17, 0xba8e22d0, 0xbf67a679, 0x3d6fbf18, 0x4bd801ab, 0x94b0dbde, 0xf302aafa, 0x1ad3340b, 0xd7d894a5, 0x70490e81, 0xb66a0409, 0xce4ed598, 0x0000b8 }, { 0x76447ee6, 0x5a1e506, 0xf5193c18, 0x4df466d5, 0xa85c00d0, 0xc1e89cd6, 0x3d7d76c8, 0x507f0a22, 0x83960409, 0xdd86ea53, 0x78ed2251, 0xe9db7138, 0x6235ccf7, 0x3d1001e4, 0x55d11b9f, 0x5c67e579, 0x0001ef } }, { { 0xe513b713, 0xa585d2d4, 0x1a5dbce8, 0xb1ac5251, 0xedf840fa, 0xaad0b66e, 0xac1c9e93, 0x4c151a91, 0xb98258df, 0x7ebc42af, 0xec1c4eb8, 0xb668720, 0x4a50757e, 0xaaa4ac8e, 0x1f598efd, 0x2226d2af, 0x00013e }, { 0x29560664, 0x24a20f14, 0x9249d4ac, 0x1804c6df, 0xd221dc8b, 0xda678418, 0x225bfdbf, 0xd49f8d5c, 0xcca733eb, 0xeb783c9b, 0xfccc80b6, 0x44e57024, 0xff7089ff, 0xd791abd, 0xae18f3bb, 0x86b768f9, 0x0001b4 }, { 0x24f85da4, 0x843f0bf5, 0xa15a87bb, 0xd1992039, 0x648d64f0, 0xab64a5d, 0x6d2381cd, 0x6fe6f829, 0xea5b7667, 0xef204792, 0x4cf7a8fa, 0x2e033005, 0x38e45343, 0xff6df800, 0x661905e1, 0x9c9638b0, 0x0001d0 } }, { { 0xc858b752, 0xbf828d, 0x6e18a98a, 0xd0176529, 0xfedf29b3, 0x54a4a4e8, 0x935e1abd, 0xef2c5271, 0x6c26700, 0x382a3682, 0xcafcf9ed, 0x5a9ecaba, 0xe0c04231, 0xd0529cd, 0xdd05348e, 0x85d2bfc5, 0x00002e }, { 0x3b81d410, 0x678c25aa, 0x8afca8d, 0x59337b7f, 0xe8ca7672, 0x6c64afa3, 0x2862834e, 0x60175668, 0xd8876482, 0x370d446b, 0x5928420c, 0x9486cf05, 0x98be35a0, 0x5d9d2f85, 0xb73ff0a9, 0x91c6f2e5, 0x00014f }, { 0xf00d6dd9, 0xd0b5b2ce, 0x25cfc4dc, 0xafb6ca17, 0xfcc1e08b, 0x31771f52, 0xc09044e6, 0x391eac19, 0x569e7c11, 0x5ea10edc, 0x682384e7, 0xcc4de4f1, 0x1ee97759, 0xdba90b4d, 0x55536be, 0x7cccbd53, 0x00009b } }, { { 0xc96581ae, 0x7b9aca53, 0x5da911b4, 0x20a913c8, 0x2bf39c4a, 0xd1f71f7d, 0xa4825660, 0x734d8ba2, 0x1832525d, 0xa164bab8, 0xf4d64f17, 0xf31b1b70, 0x2c31b539, 0x64137c10, 0x46e2b4a3, 0x5b941f01, 0x0001a1 }, { 0x985d7628, 0xc940093c, 0xa331d982, 0x3488ad15, 0x5d4a51b4, 0xf24752ff, 0xd85febed, 0x20bfe84a, 0x6f4f73da, 0xacfd411d, 0x9a526b0e, 0x30a19ddb, 0xb8d91850, 0x52b79fee, 0x4494bd75, 0x9df80fa, 0x00004e }, { 0xe4172878, 0x488c9db8, 0xb3fba5ae, 0x6949f009, 0x6b2d4e8f, 0x7ff2fbce, 0xbbe9bc6, 0xc305d4d5, 0x436919e3, 0x54f919f3, 0xa8aedca6, 0xab4a7a21, 0x6a2b005c, 0x93507c06, 0x22156028, 0xd57cdaf2, 0x0000dc } }, { { 0x9de90bfe, 0xe0939177, 0xecdf6403, 0x2052314a, 0x1cf30f59, 0x72c3ec39, 0xd9ba6cde, 0xf45bdeb1, 0xebf8b464, 0xb28a9b82, 0x6aa55da7, 0x6c6d6be2, 0x7b5351ad, 0xdfecffd0, 0xf1fa8a71, 0xc4410fa8, 0x0001af }, { 0x6121bbdf, 0xee6a36c5, 0x76a841cc, 0x94b33b3f, 0x58ddc5da, 0xa8d5285b, 0xf2064317, 0x3109552f, 0x5b8b6d09, 0x1261d50d, 0xdf82ec8f, 0xeb8e3389, 0x3f8e62df, 0x15037450, 0xf3627496, 0x4415a2db, 0x0001ec }, { 0xe69cce63, 0x32371dec, 0x962f85b8, 0x79e1db51, 0xf9b4e581, 0x14f784ac, 0xd9a30154, 0xe7fe30fa, 0x161f52d1, 0xc729c55f, 0xf50f62db, 0x814fcbdb, 0xc6e32b27, 0xc03488c4, 0x6e4e95c6, 0x678bbfcb, 0x000096 } }, { { 0x951507c6, 0xf8e2c661, 0x49b5beca, 0x54c76344, 0x832c03bf, 0xa394c095, 0x98ba8832, 0x55e95b00, 0x2601863e, 0x9e786652, 0x3f97bae0, 0xe8448d5d, 0x4ac42be1, 0xc2f352d4, 0x46763f43, 0x185b4b31, 0x0001c7 }, { 0x7da2c75e, 0xd395e56e, 0xc9907cee, 0x6e0433c6, 0x9c83d2ad, 0x4b135856, 0x4ab1d95d, 0x65a5b3fc, 0x48973b66, 0x96c00d63, 0xd274662b, 0xeefae0d9, 0x58ddd61c, 0x34fd24ac, 0xfe19f58a, 0x57fce60b, 0x00018d }, { 0x6964bdc4, 0x49714573, 0xe310028e, 0xe2860184, 0x8b4adbea, 0xab971743, 0xc8e46040, 0xad4f547e, 0xcc7d95e1, 0xfdefa37, 0x8a10d2c6, 0xcace8076, 0x6f039bbe, 0x65e3a371, 0x49f891f2, 0xa6594c6b, 0x000013 } }, { { 0x33e5e9f7, 0x680cbc36, 0x98e19902, 0x9bc0f54a, 0x7637005c, 0xb52a310f, 0x23e63dbc, 0x67806e68, 0xe6fcef30, 0xdc357fd9, 0x75faa228, 0x83d13c9b, 0x6d92f780, 0xdf67b9b9, 0x69b6b7c4, 0x6545d83a, 0x000116 }, { 0x8fa37016, 0x4000f49c, 0x8e65bffc, 0x3a0a43d, 0x2a5763e0, 0x237f92d1, 0x1fed9b3, 0x192ed964, 0xa2e137e7, 0x9480eff9, 0x11eeaa8f, 0x20c4ba32, 0xab4f2cc9, 0xb7250a57, 0x5a68e33b, 0x2375fc37, 0x0000a4 }, { 0x1e19f149, 0x62cf6183, 0x6664c7c9, 0xab0a7392, 0x6308bf38, 0x6f7a4c1e, 0x51a32fbd, 0xf640acaa, 0x6d249a35, 0xb65d54ea, 0xd022099b, 0xa2de466f, 0xa55c9c14, 0x34e191bc, 0x1cceb9b9, 0x479bbc09, 0x00001d } }, { { 0x51f2efde, 0x34e7fdbf, 0xd2ea7f2b, 0xda0633a3, 0xbf8b917c, 0x4fab6ffd, 0xa771cbb5, 0x57831e84, 0x4ebe952a, 0x3168d799, 0x2a39386, 0x80c359ad, 0x7a9248de, 0x6bf4d35f, 0x93993b23, 0x6058d895, 0x0000fb }, { 0x8f6fb79c, 0x6f813cca, 0x96e115ac, 0x3dba6c3e, 0xf718c45d, 0xeecdc809, 0xd0b89b17, 0xe075a8e2, 0xd3472fd6, 0x475196a7, 0x2236902, 0xd3164bbf, 0x3961beb2, 0xb10fdd40, 0x30c49b90, 0x37f51ee3, 0x000107 }, { 0x83d23071, 0x8c188710, 0x8b013555, 0x675a2827, 0xba93ec68, 0xbda55955, 0x42ef0a47, 0xdf0637ae, 0xc7f72345, 0x5cf5eba2, 0x627d9f45, 0xbb503898, 0x76effc3b, 0x58dd228, 0x42a23bf9, 0x16428cf6, 0x00002b } }, { { 0xfd1247b0, 0x296ea648, 0x82f1357b, 0xf65e1a37, 0x8f2ffaf0, 0xcb00225, 0x1b32a003, 0x8f87e84e, 0x85eaa50a, 0x2736e2cc, 0xa935a8ae, 0xad1cdc16, 0x9586f306, 0xd9e7b620, 0x1708bc82, 0x5b8f9699, 0x00012f }, { 0x2c62923d, 0x42d6e4a, 0x1cf9c0eb, 0x425c4310, 0x4b271c97, 0x7b2e1dd1, 0x6f6584b5, 0x741cc6bb, 0xba61385d, 0x7711f42f, 0x52c3c394, 0xf0dfc095, 0xe093486f, 0xc6e74f0b, 0xe6254003, 0xe5e8a05f, 0x0001f2 }, { 0x9913a9d7, 0xe78f2676, 0x1ae4549a, 0xf979753b, 0x6c30812e, 0x865116e2, 0xd0f56fbb, 0x994fa052, 0x5700a7c4, 0x7856e782, 0x8ed272d4, 0x19168c80, 0xf11106, 0x6301a2f, 0xd0027f55, 0xb999ac4a, 0x0001f4 } }, { { 0x28d6ea9e, 0x3416f5d0, 0x51f23e54, 0x73af911a, 0xb6969d6c, 0xed95b51e, 0x2289363f, 0x85ddcadd, 0x1c152872, 0x44f6480f, 0x1af6a6f4, 0xb1ef379d, 0xae9aec06, 0x4adc1c39, 0x6a4b681d, 0xd1434f25, 0x0000b1 }, { 0x321044a9, 0x8d3d13b2, 0x75042b15, 0x447e0d4e, 0x26f87012, 0xe771f1a3, 0xb7b2e4cb, 0x4063198a, 0xfec61dbe, 0x98861786, 0xcaac175e, 0xac71fa99, 0x1b7a0d2b, 0xd2bff56a, 0x80f108fa, 0xc51e6534, 0x0001a0 }, { 0x5c47fba8, 0x4d9063ca, 0x795dd989, 0x38bcc5c5, 0x218459f4, 0x84656961, 0xad656eae, 0xae010398, 0x2e5adbfe, 0x5dd0dee3, 0x2ac482ca, 0x51501ad7, 0xeb246d86, 0x839d084c, 0x118d6773, 0x342d6e1e, 0x00012d } }, { { 0x14832416, 0xb91031e8, 0x1d6e485d, 0x191a460a, 0xb1b03350, 0xb2644832, 0xff6999ad, 0xae1c0621, 0x4c7a26c2, 0x9662f4a8, 0xa08381b1, 0xf06301, 0x6630709c, 0x12e612c5, 0x1477ebf8, 0x5ff0107, 0x000185 }, { 0xcb3f30fb, 0xd56de845, 0xdb9e112f, 0x9940ed85, 0x74d3c3f9, 0xa3763c90, 0x8ffa31d1, 0x92171cc5, 0xdc396186, 0xc75466d5, 0x9a3cd092, 0x4b5e1f3a, 0xab7e107d, 0x3eb89f89, 0x7943a63f, 0xf0ef546b, 0x000059 }, { 0x6661a72d, 0xec65d949, 0xa07ea549, 0xb1f116c4, 0x7afdeea6, 0x556752de, 0x362bf677, 0x689fc2fc, 0x928d7715, 0x22b1eff8, 0xdac5621d, 0x53ffec90, 0xcde02249, 0x6e54b6d0, 0x2a70e6db, 0xb1a709d7, 0x000042 } }, { { 0x9a4d0d0e, 0xac514031, 0xdf2177da, 0x807a3633, 0x4436f9b, 0xecf5e48c, 0xd4ac8a90, 0xbd595dbb, 0xce92365, 0xff4802c3, 0x3e133265, 0xc69e6d7f, 0xc280ba0, 0x8f6948da, 0x566a17c5, 0xddd345f1, 0x000127 }, { 0x3e5c8ff1, 0xb30d9ded, 0xa441c16, 0xa8b99dee, 0x953f8103, 0xf912acc5, 0x4aba9f41, 0x1a93867b, 0x234bd65d, 0x9b4ee199, 0x6ad2dc0a, 0xe01a15a5, 0x4b40c13a, 0x5a30f8ab, 0x322c3267, 0x86114877, 0x0000ed }, { 0x12bf7e7b, 0x384523ca, 0x6fbafa8b, 0x74a854c4, 0xbe6a95, 0x41906bf6, 0x3b505b3a, 0x62f8b719, 0xb0dad0e1, 0xa859b5d9, 0x57670326, 0x34a13489, 0x720a65e2, 0x52e81215, 0xe82dffe5, 0x46758a46, 0x000040 } }, { { 0x5fb58dbd, 0x3c789aa4, 0x65dcdf52, 0xb07f6e3a, 0x103747ca, 0xc7f3cf47, 0x952eb1dc, 0x7ff9612d, 0x39e44135, 0xecaf17df, 0xcae077a, 0x7f5d95bb, 0xb4f6fec9, 0xd81ce8f3, 0xef820d80, 0x1f5084c4, 0x00005e }, { 0xde468cb0, 0x1cf38806, 0x1d3e15ce, 0xb3ca0b7c, 0x52e67c47, 0xb0131c2f, 0x828df532, 0x4dc4f8b5, 0x731b979c, 0x4db6efcf, 0x329873d, 0x65a271ce, 0x1ef6bc43, 0x26748d4, 0x601c3150, 0x664ee1ff, 0x000167 }, { 0xa8702674, 0xae95d98a, 0xd62df8c0, 0x1c65bdac, 0xa2562967, 0x91073e0d, 0xefcd116b, 0x695bf811, 0x2942517, 0xef533d0a, 0x13e71d3e, 0xac53999f, 0x11b67ba2, 0x9ded57c4, 0xa8e983fd, 0xe6c01626, 0x000002 } }, { { 0x4390cd83, 0x4c03ddaa, 0x51d1c5c3, 0x9ce00674, 0x82a5934b, 0x4bbdaaa3, 0x60fa211f, 0xf7bbf33e, 0xc468ff2c, 0x3aa55aba, 0x76a57010, 0x0336ad, 0xd8e6f876, 0x30881de7, 0xf9430f8c, 0xa4809409, 0x000183 }, { 0x91d15586, 0xec5d1dde, 0xabd45c05, 0x3b088b14, 0x9acde4f5, 0xa641fc25, 0x14125ebb, 0xb0b187b4, 0x9f325681, 0x303d9982, 0x268da979, 0xc7dd10f6, 0x4e2cd0ef, 0x592f6120, 0x5ccb19ee, 0xe60b54ff, 0x00007f }, { 0x490ff2cf, 0x4bf36cb0, 0x2df528f8, 0xf319a904, 0x40c2ae7b, 0xe6723b57, 0xe1ebb943, 0xfc26615c, 0xaea36f21, 0x136627db, 0x22746e33, 0xf44a1145, 0x74c38ad1, 0x4998502c, 0xf9668d19, 0x89eaf5c5, 0x0001eb } } }, { { { 0xc91e34d5, 0xd72e9da9, 0x3c6c23e0, 0x2444d98, 0x2722e923, 0xbb0303eb, 0xa84c52d6, 0xf94b1f79, 0x226f6fa6, 0x5a287b5f, 0x2e5dab5e, 0x11bd6979, 0x70ab823e, 0xe3b47677, 0xa1c65121, 0x7d17f9a1, 0x00010f }, { 0x86bc0c95, 0xf4d173be, 0xb0449fe1, 0x6f2347d7, 0x74d0a764, 0xbebdac24, 0x87af421e, 0x10610178, 0x6308891a, 0xc6af24db, 0x45a3de91, 0xc79cef44, 0xdcd3da3c, 0xc21cbb56, 0x39d97320, 0x4ad8831f, 0x00008b }, { 0xcef1aaf8, 0xc9d87b13, 0xd841c3b, 0x7ffe4e63, 0x33cab8a9, 0xc7fcdf65, 0x377f5cab, 0xd0f2831f, 0xb5635026, 0xee6e1de, 0x68d01448, 0x268c74b0, 0x895674eb, 0x48d837e9, 0xbae5a5a4, 0x97ef2064, 0x000062 } }, { { 0x5a00ed4f, 0x94ec1ed, 0xb8d8711e, 0xbf70fa46, 0x54e7a23c, 0xe168c33e, 0xa542be02, 0xdd508ccb, 0xbc9d5d61, 0x13825f5e, 0x3d54a5f0, 0x4990ce46, 0xf95853b6, 0x92d26367, 0x781ee4ff, 0x593a9a3a, 0x000192 }, { 0xa231c0f7, 0xf1a74d72, 0x3483a7e2, 0xecdcf772, 0x61f71a62, 0xf8ddf276, 0xd92ccaa4, 0x15d07a44, 0xb87ab839, 0x8f91d6e2, 0xf7c22341, 0xa543dbfd, 0x6538e569, 0x1ad7af71, 0xd0b2af90, 0x805d707d, 0x0000c5 }, { 0xe910dfce, 0x4461831c, 0x88e42e28, 0x81711f3a, 0x6a2a1613, 0xf05b8cf5, 0x6b0ed3ea, 0x52b7733a, 0x25cc5d42, 0x5abf97bd, 0x551b8af, 0x5d4e36a1, 0x799dba91, 0xb69e5c46, 0x62f56a8, 0x2c77c4b2, 0x000022 } }, { { 0xa3cde53d, 0x796a1d0d, 0xdd2446d5, 0x83c53009, 0xf554c776, 0xb6013c01, 0x6d316d5f, 0x1c5c2395, 0x4efb90fb, 0x3c9fc3fd, 0x95373cee, 0xceb04e1c, 0x3442ed3, 0xc470fa50, 0xece0f782, 0xeef6330b, 0x00006c }, { 0xc3e053bd, 0xee2f5a2a, 0x723943ab, 0x403566fb, 0xcdd3786c, 0x784362c2, 0x2daf08fc, 0x54b57d8, 0xc213b9c7, 0xd83b049c, 0x1c72f74b, 0xa2e93bf6, 0x84637aa2, 0x948d5348, 0xa83dfaf9, 0xd2a58c90, 0x00011b }, { 0xcb167591, 0xfdfb3bfd, 0xdd2ab653, 0x4d9b19c0, 0xcaf365f9, 0xd45ebfc8, 0x72d6f926, 0xf3fd1b1a, 0xbf759131, 0x4dfda55, 0x27a211, 0xaede9b13, 0x455d00cf, 0xe728e7a3, 0xbcd93a85, 0xd80f8b77, 0x000164 } }, { { 0xad20b62a, 0xca32f137, 0xc26ec23d, 0xa40d2c39, 0xa9ac854a, 0xa0899a0b, 0x80c8d2a5, 0xba7730f3, 0xfc819f8, 0x99e55384, 0x7e4c1b46, 0x5816fab1, 0x796b95e3, 0x49a995c6, 0x2c8a7b17, 0x12653d1c, 0x0000b3 }, { 0x9b1f7115, 0xb2ebd1da, 0xb30a838e, 0x8c9ea3b4, 0x480335dd, 0x612da8eb, 0xadeff71b, 0x3dd50ea8, 0xdaf582e0, 0x371a96a6, 0xadbde08e, 0x3810097f, 0xd76da5c9, 0xb4376e04, 0xc2a47a60, 0xc6f1c33a, 0x0001e6 }, { 0xfaf4840, 0xf9d66844, 0x2431da84, 0xd0e823a7, 0x6009b03f, 0x767c35c7, 0xc5089fb4, 0x326b8a17, 0xf0faeff5, 0x4ebba1d1, 0x956c7460, 0x89dafe38, 0x521fc529, 0xc28f5bc7, 0xd9f10b9d, 0xb379a6f1, 0x0000ec } }, { { 0xfd17667b, 0xae553383, 0xca2f1af4, 0xf545bace, 0x7e869de2, 0xab3290cc, 0xe894a81, 0xadaac854, 0x32c4fd02, 0xa13d9a7, 0x46c2ce18, 0x710b9852, 0xcca5f3cd, 0x222a134e, 0x144ff5fb, 0x908d5f41, 0x0000a6 }, { 0x928e4bf8, 0x2098d09a, 0x29e87b9a, 0x901c517c, 0x558a2ac7, 0xff99c9fa, 0x16c47e9c, 0xa3d99a3b, 0x1b0654f2, 0x17966df5, 0xec4ac666, 0x7e3b9935, 0x2bcbcf80, 0xdfa55fef, 0xc509339c, 0x2e8f854e, 0x00007a }, { 0xe55b706a, 0xd51c7bd2, 0x8ca96c, 0x29c9f18a, 0x43119925, 0x50bbaf38, 0x18db0da5, 0x5692fc85, 0x200e38fe, 0x4654ac5e, 0x414e31fb, 0x54721dbe, 0x4c62bca9, 0x382492c9, 0xb9cd749a, 0xa5a3d79c, 0x00011c } }, { { 0xe4db05f1, 0x678de934, 0xd6fa2d12, 0xab7979d6, 0xdfab5221, 0xc0c8d08a, 0xef9d5fa6, 0x26deacb4, 0x859d0e55, 0x66fc908c, 0x35f7d94e, 0xac5d9c5, 0xcb932a32, 0xea083868, 0x9b3ad7c0, 0x152a5b35, 0x00016b }, { 0xcddc6e23, 0xd08533db, 0xbe6ea27b, 0x4245a9d4, 0x9012555, 0xe794721d, 0x3cd64aa4, 0xd2fd1c05, 0xfd124adc, 0x1ade4e6b, 0x17360a19, 0xe294715d, 0x463c98cb, 0xfe9249a6, 0x52e55a43, 0xe779305e, 0x000147 }, { 0x9270438b, 0x69e5f7b9, 0xd99acafe, 0xf98c4232, 0x5580f8dc, 0xe180dbd7, 0x7f005ef4, 0xdedbb65b, 0x793b1597, 0xc519bed1, 0x60d6259, 0x2a8d93e1, 0x86dc02f9, 0x6029911d, 0x19c4bb95, 0xf6b630d, 0x000051 } }, { { 0x91e609e8, 0x37920849, 0x4fecffe9, 0x23fee36e, 0x7e2e3b96, 0x49a0277, 0x946429f6, 0x3fd5e33f, 0x52a09533, 0x638c59df, 0xf35c84d5, 0x3ef3ef7a, 0x64d44480, 0x8013df89, 0x21935a80, 0xd6e61794, 0x0001b8 }, { 0x670ab682, 0xf0fc85ea, 0x7b2956a7, 0x16871357, 0x43fd331a, 0x75180459, 0xa2171fa7, 0xbb18f601, 0x5f719466, 0x1308faf1, 0xb67a32fe, 0x62b5bf60, 0xa9987b0c, 0x8613ce27, 0xc830eedf, 0xff62603c, 0x000143 }, { 0x48d57cdb, 0xe0ca1e76, 0xd3a0967d, 0x549dcf4a, 0x96b10b79, 0xf5b8c669, 0x133869b8, 0x82e22c3d, 0xbb0b328d, 0xaf3b17de, 0xe10a9f06, 0xdd007045, 0x1f60e534, 0xc2770c5d, 0x977d2f18, 0xbabdb00b, 0x000090 } }, { { 0x95060555, 0x8967f546, 0xbf9f4969, 0xbdc0c2de, 0x6781f242, 0x2509f11, 0x63b04fac, 0xa12cf231, 0xfd500a06, 0xe759454, 0x97b7c945, 0x28801717, 0xb4eeb88c, 0x4bd8302c, 0x5b62463f, 0xdd970df6, 0x00004c }, { 0xfe7662cd, 0x6c8adce0, 0x7f78fdf3, 0x58f6155f, 0xbc803982, 0xca39e283, 0xd6ced92f, 0x304130e9, 0x678c62c6, 0x928c599e, 0xb8edb729, 0x6081b3e7, 0x4e80c0, 0x401341cf, 0xc4202bdb, 0xcac97c90, 0x000187 }, { 0x5260e04f, 0x5dad25d6, 0x1bb3ae93, 0xc00c3da3, 0x57053421, 0x2bfbd5b2, 0x70bf6823, 0x7b9da5ca, 0x4536e3f, 0x27d5c991, 0xb401b8a2, 0xede2c4ff, 0xa8669956, 0xc3f742c5, 0x20244527, 0x6146f0e1, 0x000158 } }, { { 0x9138000e, 0x96c82510, 0xcbc06d03, 0xc27d4d3d, 0x8620e691, 0x65a08683, 0xc44af0f, 0x784f56d, 0x4b1445eb, 0x8e12fe11, 0x54cfe784, 0xeffcb300, 0xd874604, 0xf311ca40, 0x955669c6, 0x881b726d, 0x0001ff }, { 0x423d121d, 0x573cdd39, 0x1d05841f, 0x806d31ac, 0xcae66e1c, 0xb3ee00b8, 0xaff34947, 0x80ef976b, 0x29ac6ba, 0xe7c9aa56, 0x3395f988, 0x22b05a3b, 0xa557daf3, 0xc65cada6, 0x944b9404, 0x2b710085, 0x00005a }, { 0xc2a7fafe, 0xbdf3c265, 0xf552d86b, 0xb5e930df, 0x1019f3e7, 0xd86202b0, 0x5aaf816c, 0x1a85c2f2, 0x8e0e831e, 0x32c0fb99, 0x040722, 0x7ebe2606, 0x22a34df2, 0xf7082dbc, 0xc187150, 0xce79a36, 0x000001 } }, { { 0x6ba06e55, 0xfb294d45, 0x8727faa3, 0xd39500b, 0x78480326, 0x24dd966a, 0x76e3065d, 0x8824a93f, 0x7ff7ad9d, 0x9ee39551, 0xc90338ac, 0x92ad7534, 0xef649f11, 0x9a76df37, 0xa9e8596a, 0x2b7c6821, 0x000121 }, { 0xafa35c58, 0x709ff012, 0xaa7f9a2, 0x676976a, 0x1ad87a2, 0x7764684d, 0xb4157f5f, 0x7e2375b3, 0x28bc72d, 0x6cbe63fb, 0xae187aff, 0x48c3d115, 0x13d1f869, 0x51999ca7, 0x6d8704e4, 0x93304c1b, 0x00012d }, { 0x5243d6cf, 0x5b20bcb9, 0x2aca3373, 0x6718dea1, 0xbcb2444e, 0x4c4bb8f0, 0xb5d8451d, 0xe1ed74b8, 0xc5ce5961, 0xc85ce101, 0xbe87e47d, 0xf3d1b674, 0xb9623db4, 0x81755f90, 0x51796aa8, 0xb30cbc2b, 0x000081 } }, { { 0x33b7d501, 0x3c1f5c6a, 0x19914157, 0xa864de00, 0x3d8054f, 0xabb85073, 0x5caee914, 0x2cdb9bc8, 0x4a62b321, 0x6b9bc18f, 0xdf848516, 0x95734015, 0x5cfed06a, 0xa6f1af1d, 0x701b07e0, 0x556b2a15, 0x0001d0 }, { 0xcf0561e0, 0xeadecd22, 0x7ceab9d6, 0x87b23165, 0xdd1f08e3, 0x179782bf, 0x1fd1715e, 0x3079e9c3, 0x9326bc04, 0x447faeee, 0xf620aac, 0x7957950b, 0xa132f91b, 0x98c993b1, 0xd9a33365, 0xf2c57d81, 0x000180 }, { 0xecb8933, 0x2da4f156, 0xa59b5e47, 0x7d95a448, 0xae128686, 0x12c9cf33, 0x99404168, 0x56875a16, 0x4191a73c, 0x93f80573, 0x3049aa86, 0xa1ce2b9, 0xbdfdd501, 0x4db4b128, 0x1544e0a5, 0xb62008e7, 0x00003d } }, { { 0xbe9f922a, 0xc6a8749a, 0xa82fb255, 0x9217b6b2, 0x147057ce, 0x2bcbe59f, 0xe5a609c4, 0x55b68021, 0x9ca1210f, 0x8ae3c399, 0x4f1a759, 0x24d2fbef, 0xd08711ec, 0xda156087, 0x3a2496e, 0x1d6c5677, 0x0001fd }, { 0xca3443fb, 0x64a5c5d0, 0xa529459e, 0xab239072, 0xffd3cdd, 0x6010d666, 0xcc22a8bc, 0xe925bd39, 0x5080e4a, 0x3cbceba5, 0xb85c6585, 0x19b41393, 0x908cb4b4, 0x9b13c9c5, 0x967fc5bb, 0xdc8ff01b, 0x000149 }, { 0xd7ce31ec, 0xd5b8d977, 0x19925b61, 0xcd85c6df, 0x57ef534f, 0x19507760, 0x2554f9c6, 0xab69d8cf, 0x2a4c0894, 0xa9042bf, 0x7377469f, 0x53acd896, 0x419ac34e, 0xfb2e4a43, 0xceaeb78b, 0xdcf84837, 0x00000e } }, { { 0xaf192cb5, 0x35db7434, 0x2243548a, 0x1f4ca3b9, 0x95efbb4d, 0x144fb5f5, 0xe95c8043, 0xc5a98fd2, 0x45d14869, 0x6ccc22f3, 0xb2cacccf, 0x9c42dae3, 0x2ade6439, 0x7eba09bd, 0xc95c6228, 0x3b605846, 0x0001c2 }, { 0x2761bab5, 0x6cb87040, 0xe77979b8, 0xf30bb710, 0x33841ef1, 0x51dbdf47, 0x51fada7e, 0x52c7e5d2, 0x4f02f5b1, 0x77c453bd, 0x6a51a618, 0xb8cdf91, 0xed581b60, 0xba3c4ba4, 0x653d9a89, 0x8b5caa81, 0x0001a2 }, { 0xc4b938ab, 0x34080e0f, 0xf47f2247, 0xc6802da8, 0xe0882e29, 0xf2da3f9e, 0xda08040b, 0xd70223f, 0x38cd5c81, 0x1809226c, 0x54a78a9a, 0xc8797490, 0x445dfe47, 0x230d3163, 0xc7151353, 0x57c06a68, 0x0000c2 } }, { { 0xd321025d, 0x6d27721f, 0x91878060, 0x1c8fd1b9, 0x90ce3be4, 0x5e4b0210, 0xf353b675, 0x573bdef0, 0x6a1f7092, 0xeda794c2, 0x4bbf4a71, 0xabce322c, 0xad9867a5, 0x2a553cc9, 0x832412c0, 0x191471c7, 0x00010e }, { 0x6ff8be37, 0x7ef13a87, 0x4afeedae, 0x474b2669, 0xc683f86a, 0xe006cad8, 0x3bc8bfb9, 0x4c901fed, 0x6ad7300e, 0x83c1e82b, 0xbd439a33, 0xef9b6236, 0xb584e69f, 0x8172a0b, 0xce1c41c5, 0xff0ed198, 0x00008e }, { 0x5ca8f26b, 0xd98c5d5b, 0x4f5642e1, 0x6210dfb6, 0x377db988, 0xf52ed72, 0xbc8079f2, 0xd4d99fe8, 0x7944ed96, 0x221d8556, 0x33fe82b6, 0x10257ba, 0xb0c8a606, 0x92fdcf2f, 0xa20c2114, 0x31201b55, 0x00007d } }, { { 0xd06193ab, 0x5a07be9c, 0xd4f96062, 0xc3392987, 0x5a53017a, 0xe3594f46, 0x77aabecf, 0xb78a8613, 0xc5629f72, 0x445bd61, 0x3044db21, 0x5c581fe5, 0x6db02dd3, 0x7c0309dd, 0x339739ed, 0x932d0ca5, 0x0001cd }, { 0x148538a9, 0xff62268d, 0xd4c7c05c, 0x74f7d4aa, 0xf08733c9, 0x5a7a532, 0x1a940ab8, 0x6c0cd6cf, 0x62cf3e41, 0x4b9429ee, 0xa72b6bbf, 0xc3c01915, 0xf2c5b18f, 0xaf462041, 0xdb625c40, 0x1a1720a7, 0x0001e7 }, { 0x28d803a7, 0x559d6205, 0x4f0b18ba, 0x841361ca, 0x17eb2a57, 0x684706c3, 0xfac4bab0, 0xd167ab68, 0x696c0b7a, 0xce45d94c, 0x8d2ad7f, 0x905571a0, 0xed30ed33, 0x838dc3e4, 0xfc92334b, 0xb3e073c6, 0x00013c } } }, { { { 0xd1ccb6f1, 0x694a2f96, 0x28e7db85, 0x1c5e5421, 0x802e7d77, 0x3532398, 0x7f185448, 0x8cce7a4c, 0xc6001519, 0xc9ae9479, 0x2aea368e, 0x77df1483, 0xeddea55b, 0x5f794313, 0x6b7da80b, 0x78e1bdba, 0x00000c }, { 0xeb2f2ebe, 0xe96c5268, 0x4f340dbd, 0xd14a99ca, 0xa4a8fc9e, 0x838e5735, 0xa7895baa, 0xd44b743a, 0x310e3943, 0xb5b01d04, 0xd582a1ec, 0xf87fb314, 0xc3a8af2, 0xf29e4f89, 0x40f5b44b, 0x82c6e663, 0x000195 }, { 0x381dd304, 0x4c3ff851, 0xaee7b443, 0x6d7b21b2, 0xfa0555fb, 0x206433c6, 0x314e6176, 0xb6938e41, 0x19c92662, 0x37f73976, 0xdf928186, 0x370020c5, 0xe0c9cd77, 0x6fe89b86, 0x896b206d, 0x5d88e508, 0x00012b } }, { { 0x65f2743c, 0x298471ab, 0x3faad79a, 0xcbfe40ed, 0x618a15e1, 0xd8aab5e4, 0x5c2c40f6, 0xbb2b00dc, 0xf4265646, 0x90b7f867, 0x20957438, 0xeed3b7df, 0xa5f2fda5, 0x4f1c36e3, 0xa743e184, 0x321fc4d, 0x0000a7 }, { 0xc4f05ad3, 0xd62a65bf, 0xdff0a520, 0xf5e66589, 0x472c308a, 0x7661ec4e, 0x70e8e027, 0x354c5c3b, 0xfd366ec0, 0x74163828, 0xcd6620d9, 0x66b458b3, 0x2d05a10c, 0xc0e18a14, 0xfb01f1d7, 0xafcbfc41, 0x00015a }, { 0xd10bcb29, 0x99e10c32, 0x2d39c2c7, 0xbb3cdbac, 0x4da04d85, 0x1bbb671, 0xf6687993, 0x6133e04, 0x8f45cb0d, 0x9eaee4ab, 0xd5771d72, 0x17c48082, 0x2645ac5e, 0x8885f958, 0x58d2fca, 0x2510eec2, 0x000054 } }, { { 0x790177e5, 0xd8150337, 0xa0a0e19b, 0x2c4d91d8, 0x23a3c87f, 0x9f64bdc3, 0x77bdc078, 0xb590da37, 0xcf3d8e3, 0x7abeb7c4, 0x73f63905, 0xe7c5dd0a, 0x5405fab8, 0xca426746, 0xe7d454de, 0xaf1d34e6, 0x00007b }, { 0x8498cc45, 0xdcda804d, 0x454d9cab, 0xf414a407, 0x1a53871c, 0xf1aa2938, 0x9e2cc2e, 0xda207d8e, 0x6cb9330, 0xb6a06a22, 0x3f3c1d10, 0x809b6dbc, 0x82d007b0, 0xcab5e80a, 0x6b326e1d, 0x33ca6f93, 0x00016c }, { 0x24684172, 0x675e7d13, 0xc9a5d0db, 0x1366d742, 0x868562a8, 0x9dab65c6, 0x54de4219, 0xdd9d3d2a, 0x194b8d84, 0x19093735, 0x96eb1c3c, 0x2f640afd, 0x4e90b37a, 0x6479d043, 0xa32067d3, 0x1d67866e, 0x000178 } }, { { 0x539d4f21, 0xdd9314f6, 0xaade9dcb, 0x40da808, 0x7a9ab115, 0xea8d0733, 0xd2c0e353, 0xd44c02c3, 0xe504547b, 0x6707fe2c, 0x21465bf7, 0x35296568, 0x4b92e0f9, 0x1f46467, 0xf2e82cd8, 0x181d075, 0x0000ba }, { 0xc45efbd1, 0xfb74cb, 0x6cbc04f6, 0xd7cac1cc, 0x54ca8022, 0x1f0c5035, 0xe75cefb9, 0xdf1a199f, 0x71da4967, 0x6c18c496, 0xb37e81fb, 0x68ccf014, 0x3146017e, 0xd498a2b6, 0x8f4fc485, 0xa6cab3d8, 0x0001ee }, { 0xfc8966d8, 0xc0571760, 0xe7bd7024, 0x970b55fe, 0x1dceee72, 0xd4a1cb9a, 0x3dbec36d, 0x8ba33442, 0x30bc0edf, 0xe7708b08, 0x6be5585e, 0xbdfc1e92, 0x5f45ba6f, 0x8bcb6327, 0xa820fc95, 0x439ad8b0, 0x000104 } }, { { 0x7e2acc9d, 0xa2d2658c, 0x5d52487c, 0x9977c66a, 0x810fca63, 0x9ab1cd83, 0xfa5ed253, 0x883dbb9c, 0xc4689277, 0xacd942b, 0x5777f8d2, 0xe8a8ab70, 0xef871fc2, 0x4c29938, 0x9fe21f27, 0x8598051a, 0x0000f6 }, { 0x90a58146, 0xbe16629, 0xe27fb4c4, 0x3de2d046, 0x617791b6, 0xd1858a8b, 0x9a5a33fc, 0x58db41c7, 0x93b3a7c4, 0x783a2a84, 0x82db40d3, 0xadc10fc0, 0x424a5408, 0xa7c28746, 0x845a154e, 0x9305f3ff, 0x00017a }, { 0xce02014d, 0x64d9e5eb, 0xd78f77d5, 0x2efc932d, 0xff24e621, 0xe41d3393, 0xdd42f23d, 0x7ddb55f, 0x1293c558, 0x9e5b97ae, 0x516c04b, 0xe0672168, 0x5ea9e87f, 0x186ffdc8, 0x167bd798, 0x2ebe6b5, 0x00000f } }, { { 0x410ed035, 0x6faac891, 0x6a1b9d14, 0x8aef8baa, 0x68fa4e8c, 0xd0fcbb12, 0x92c28ac3, 0x9466b97c, 0x1bdc178d, 0x9d695a9e, 0x41d27729, 0x6f7164b1, 0x3d5f6d9f, 0x7d031c3c, 0xcc5111fb, 0x238a376d, 0x0000e9 }, { 0xb9fcf72d, 0x48ff9cdd, 0xb8a07a08, 0x98494000, 0x4fefaba8, 0xf1330300, 0x49f76b5d, 0x35ae0038, 0x40e1c048, 0xb0cdd109, 0x144d5b52, 0xd8b1618b, 0x3047f00a, 0x852fb324, 0xa775924, 0xcbf6d0e6, 0x000197 }, { 0x9a2320db, 0xa2b8c286, 0x74f41dd2, 0x91e08d6c, 0x14c4235f, 0xbc8d5738, 0xf75df962, 0x895eafc6, 0x73e2e5f4, 0xe91634bb, 0x48289ae1, 0x9b9b254e, 0xb758be49, 0x4b9de73d, 0xed8fab84, 0x7ce36eb2, 0x000178 } }, { { 0xd8e19f14, 0xe3f8b9c0, 0xf8fdc1ea, 0xf311cbd5, 0x8aa9df0, 0x136a9bc4, 0x6f0527eb, 0x6491d352, 0xd4eba9da, 0xca9ec5d9, 0xb735d170, 0x530b65ac, 0x50763fc5, 0xd8cef4bd, 0xe0e26d95, 0x129b11af, 0x00017f }, { 0xed0de3ae, 0xa2c18e60, 0xb649930, 0x6803994, 0xe47573bb, 0x647d4a6f, 0x67cbcde7, 0x12d63035, 0xbf3ec6b0, 0x71706d0d, 0x603174b, 0x4e79b3c4, 0xdaea95f7, 0x82423465, 0xc60c8a10, 0xfa6622d8, 0x000114 }, { 0x8dd579d3, 0xe4de2314, 0x909e4609, 0x9edcff7c, 0x8c353b4e, 0x1edf05b, 0x489ca6e4, 0x2825b3f5, 0xe17e5271, 0x19b76a5e, 0xaf59aa06, 0x3302e937, 0x374fb2e8, 0xec3f2ef1, 0x65e4d74f, 0x38dd05d9, 0x0001ad } }, { { 0x2b4cd2c1, 0x80127376, 0x5fff6826, 0xc1fdcd6d, 0x6acc0441, 0xc2175162, 0x3b1bfdcb, 0xad5747e7, 0x4f52c019, 0xf605bfc4, 0x9be01b50, 0xe6bf8a4c, 0xdfa66c22, 0x5c1b6c07, 0x1cc8e01d, 0xac65fc62, 0x000061 }, { 0x282d0a68, 0x68854f34, 0xb8453aea, 0x57f22aa6, 0xb761e8c8, 0x4560e8da, 0xdc4e803, 0xa4e64061, 0x14837dce, 0xeae6eb16, 0xe8b9b6b5, 0x10bbb6cc, 0x26a8b309, 0xcf89f2dd, 0x75964627, 0x16bd2d6f, 0x000141 }, { 0xa36f8560, 0x7565ed3a, 0x5c7d04c0, 0xc4e7ae3f, 0x5376bf0c, 0xbe06836a, 0xfa4df42a, 0xbd5d58e5, 0xa0d52478, 0x508762bd, 0xabf81e17, 0x3fbabf2a, 0x76db5bfd, 0xed51033b, 0xee322f0f, 0xca11a3e5, 0x0001fb } }, { { 0x5fb72bc8, 0x25b8c1a3, 0x63a17b9d, 0xd178bcf1, 0xd90b004, 0x125d7f89, 0xf609379a, 0x1c4c399f, 0x965c442e, 0x12b1e078, 0x2328915c, 0xa4f43b41, 0xb59f4b54, 0xc4bc169e, 0x4f293219, 0x9de60eb8, 0x0000ed }, { 0x7586b461, 0xebdd3c32, 0xe0c179bf, 0xeb36fed, 0x2d9b35cc, 0x7ae25182, 0x6aecdf1, 0x457ac811, 0xb3d6125f, 0x4f6f7967, 0xaa7ddbcc, 0x5700f8e6, 0x13390a0d, 0x3cedff55, 0x300b4bcd, 0x792b4759, 0x00006b }, { 0x5e4d6f35, 0xddf67607, 0xb1314c72, 0xf09cf46b, 0xf1d3b7ca, 0x55535814, 0x71d70592, 0x466341b5, 0x13679c52, 0x8abaff1d, 0x32ecb2a1, 0x406fa03b, 0x190a3322, 0x8297d46b, 0x1030697f, 0xf669705b, 0x00016d } }, { { 0x8d8e8d4d, 0xd909a242, 0xd7b1449b, 0x5e9615fc, 0x29145ace, 0xe500857c, 0x75d52022, 0x21844f6e, 0x704239df, 0xb8fe0464, 0xc623867e, 0xda472048, 0xdfcacd70, 0x9373a196, 0x137f73, 0x5e213fe0, 0x000150 }, { 0x6693e7ca, 0xdbd6050, 0xa521b24c, 0x2fdff4a8, 0xf20f7271, 0xe18931ff, 0x5abd5abb, 0x41b70919, 0x3bdf1eb2, 0xe8fe21c9, 0xd97cb739, 0x6027fa9b, 0xd5226d0b, 0xa9ea5cca, 0xddd3eae8, 0xb072d768, 0x000126 }, { 0xe5f24704, 0x552aaa90, 0x1d853534, 0x74e5530f, 0x1d1d954f, 0x6f56df03, 0xacbc53b6, 0x21bb9c5f, 0x65fd95c6, 0x9bad502a, 0x443f30f2, 0xe2ed9f4e, 0xd9d77d3, 0xe7270d3b, 0xa9622a6e, 0xff58054d, 0x0001e0 } }, { { 0x3853821, 0xdaea1821, 0xe4107ebd, 0x25bd1e47, 0xa7754346, 0xf45c7bc5, 0xcad179ae, 0xf0802a2d, 0x8cb30915, 0xd1d070ae, 0xb3750b24, 0x4c68d913, 0x204fd576, 0xcdddae8, 0xcb425df1, 0xa987cb9d, 0x000060 }, { 0x69854531, 0x4ea67500, 0xad53ec8d, 0x51e9856c, 0x820f89b1, 0xa05cadac, 0x31ede324, 0x3b6f23b2, 0x4221575e, 0xb502d486, 0xac7937b0, 0x81f8534d, 0x4a6ebdd, 0x442f993a, 0xb935fa41, 0xfc1a6b24, 0x00008c }, { 0x9aca8c44, 0x7c883050, 0xc5d36e0e, 0xb9e74982, 0x72cdd2d2, 0x9b789216, 0xb07d63fc, 0xe371ed96, 0xa46cd76a, 0x59bb9a20, 0x9ccd2e25, 0x4f92797c, 0x2ea194b1, 0xd451c4f8, 0x4c170e14, 0x32bb616e, 0x000095 } }, { { 0x190e0946, 0xbd418c8d, 0x62464da0, 0xd0412548, 0x943ce354, 0x5612a3f1, 0xdbdca372, 0x9aafaa45, 0x65348f30, 0x3a23162f, 0x2cffdf6d, 0x4af04d3b, 0x76f5a5c9, 0x68f9e664, 0xfd84d0fb, 0xd8ec870e, 0x0001df }, { 0x5d3349b4, 0xbe67c17e, 0x69a69601, 0x930f5990, 0xa85585d8, 0xa66bf340, 0xae72add9, 0x73f39a1a, 0xdef269cf, 0x58781f95, 0xb6224ade, 0x409455d, 0xea573457, 0xe290b50f, 0x3e7d704, 0xa0232d37, 0x000171 }, { 0x1e7af0aa, 0x5f82e0b, 0x7e3f97f7, 0x3eb5b75a, 0x6f66a66e, 0x7f00bd56, 0xa62d0aba, 0x90d8a247, 0xabd3e340, 0x961fd90c, 0xc84898ea, 0x4f55c656, 0xcb857fc3, 0x194fe454, 0x8e9c868c, 0x4655fb6f, 0x000070 } }, { { 0xa3ac06a7, 0x384da226, 0xad9310a, 0x7b4bba26, 0x7db241e9, 0x45ad784f, 0xe8460845, 0xd7f0421, 0xb84de7ee, 0xd2da5427, 0x4f210535, 0x54cd1fca, 0x796395de, 0x4aeb732d, 0xf56eeb7f, 0xa101810b, 0x00010c }, { 0x19b56476, 0x56eed336, 0xf03eda0b, 0x736fadd1, 0xf55498eb, 0xeb078d09, 0x28da529e, 0x8302bdb8, 0xc05e6a42, 0xc12e9e2a, 0x5d3532bb, 0x3501e8cc, 0x6295a806, 0x26d4fda9, 0xf3e2fdc, 0x8ca9ff4e, 0x000055 }, { 0xed90e862, 0x51236a25, 0x78a816ae, 0x5e24ee49, 0xb834a317, 0x7d83ce76, 0xf0f5d3ba, 0x4b52feb, 0x453e9d05, 0xe1f8016a, 0x969e1186, 0x39fbc901, 0x68c70563, 0x646aecf0, 0xb08de98a, 0xd2d3178a, 0x0001c0 } }, { { 0x58100e7d, 0x536d6102, 0xd1f9317f, 0xa11cc91c, 0xd3a35ce2, 0x41530ae8, 0xe28e01c7, 0xa2f03a7, 0x1b553f6c, 0xf98a3b94, 0x1aff9b88, 0x7d66eae3, 0x1167fcca, 0x4a0ce0ed, 0xc3537007, 0x36564756, 0x0000dd }, { 0xc0f765c9, 0x217dca99, 0x3b7bdb80, 0x12557a93, 0x13cbf966, 0xc1e166a9, 0x9634d9eb, 0x641d30ec, 0xade8dd7b, 0x408643a4, 0x641d567c, 0x6054b35, 0xbbc7a066, 0x25b0ead7, 0x5e477b, 0xd12995bb, 0x000174 }, { 0xadddaa73, 0x5876fb07, 0xff3a67e0, 0x2614678d, 0x95ac19e5, 0x520c7a20, 0x442c2065, 0x2e00b6a9, 0x1f78bfb3, 0xe3f99a78, 0x885f7435, 0x3bc66744, 0x96a9397b, 0xfcd511c0, 0x751f3c97, 0x3ea40e30, 0x000037 } }, { { 0xbf42f930, 0x639141ea, 0xe67a3885, 0xa2c97e53, 0x409840bf, 0xbaed6972, 0xd3255e34, 0x11547638, 0xcf0e4f42, 0xab65c525, 0xb2b631d1, 0x99446301, 0x32fa6a6e, 0xd27e9b1b, 0x212eee37, 0x749d10db, 0x0001d4 }, { 0x67241ea3, 0x6c86eacf, 0x1e3d8541, 0x95c3e368, 0x432a15c9, 0xcc155c59, 0x4a461c99, 0x235523fb, 0x6ad11ea7, 0xb43f61df, 0xde492f98, 0x323184d1, 0x47eda25d, 0x2c4a3924, 0xef224508, 0xefdeef00, 0x000178 }, { 0x4f5ae39c, 0x15853078, 0x62693273, 0xf810f8a2, 0x81216343, 0x74b7fd63, 0xafbbd653, 0xc42f2efe, 0x8e8738f, 0xfe43a480, 0x1a8525f4, 0xa7bf2b09, 0x5e733f0c, 0xe4c60911, 0x7bf8036f, 0x42ca52ae, 0x00003f } } }, { { { 0x7c1b5af7, 0x1d855edf, 0xc97f045, 0x5ec7bc72, 0xef3a19d1, 0x861c2adb, 0xb6029a8f, 0xf84835dc, 0x21567cc2, 0x798f6448, 0xcbf082d6, 0x7d4b54af, 0x718f1ce0, 0xdb9019de, 0xc18c05bd, 0xd9bbfaf2, 0x0001dd }, { 0x5c804a5f, 0xf67703e1, 0xea08d782, 0x585e9173, 0x396efa36, 0xcbf5ac8c, 0x5a247750, 0xfe6b3899, 0x35af022f, 0x3bd689c, 0x95910fdb, 0xabc65209, 0x9b5dd83d, 0x178e504a, 0x944d87fd, 0x7700cbe8, 0x0001d1 }, { 0xe991c215, 0xb52507f2, 0x3242fb36, 0xe4bc1151, 0x9903f208, 0xd16c0e49, 0xbaec7ea0, 0x394769b, 0xf8acd20b, 0x28e5ed77, 0x5c3c4f54, 0x6499a82d, 0x9763d080, 0xd5a3b2d6, 0xa4996a58, 0x79e06a35, 0x0001b1 } }, { { 0x6fb353a5, 0x3bf8bc0d, 0x851f611b, 0x3369e00a, 0x367110be, 0xc1109f26, 0x2e033d29, 0x6a83dd5d, 0xa147baad, 0x40094620, 0x6aeee06f, 0x2bb68596, 0x15e4b4be, 0x83fe49fc, 0x452af05, 0xa67c9ab7, 0x0000b1 }, { 0xbeb4d1b1, 0xde1ea337, 0xfb45a576, 0x3b7ac80f, 0xee51214c, 0xd99a16b8, 0x42048c6e, 0x47c6c4d1, 0x395b97d6, 0xf31c347c, 0x208c96b7, 0xc259120e, 0x44774c82, 0x8e277ff6, 0x9e8e510e, 0xc171d411, 0x000078 }, { 0xb79a6ce7, 0xdb1b509c, 0xd47b43b7, 0xaabc847d, 0xc0ee84fa, 0xb310c432, 0xe2e4085d, 0xb24ccc84, 0x96281eb8, 0xa3b1a6b, 0x930f01a9, 0xb18cb20c, 0x9e8f7940, 0xde1a8c07, 0x926653c1, 0xac9f375e, 0x0001ce } }, { { 0x1bae4e03, 0x56dec8e1, 0x211c7086, 0xb777d983, 0x35f112f0, 0x9c65d434, 0x558d82e7, 0xbcce235d, 0x4aebf7c2, 0x976af93e, 0x4d245c43, 0x41da73a9, 0xeaef182e, 0x8477b468, 0x32572e38, 0x1a71c3c7, 0x0000dd }, { 0xf586635f, 0x8b67ece3, 0x684b7496, 0x28b009c4, 0x1f873911, 0x5c20572b, 0x769fc9a6, 0x65b4f95d, 0x628627f, 0x48e2fd68, 0x4aa7f121, 0x59308d67, 0x78ffeb92, 0xa4e49528, 0x5e48052b, 0xfe225fbc, 0x00017d }, { 0xa0959b74, 0xa4089ed6, 0xc40f285d, 0xbf003ed1, 0xfa87d01d, 0x3cb78683, 0xc9a48819, 0x3deee335, 0x44a70ae, 0xeea532d, 0xd166f500, 0x8b10a171, 0xda2f4db8, 0xacde1cb3, 0xfaca88be, 0x697a4a72, 0x00004e } }, { { 0xda93cc77, 0x1be851ee, 0x58b2f3ec, 0x9456477, 0xa5bec66a, 0x56ff570b, 0x4c5a8fd6, 0x45e1c0c6, 0x95423140, 0x15479523, 0x29e73be7, 0xc36e7109, 0xdf7e77a9, 0x98fc4376, 0x47f42fd2, 0xad65ef2c, 0x00015c }, { 0x1db6c036, 0x285ee839, 0x542e9ea, 0x20b4ab5a, 0xc65afac1, 0x18c11b6b, 0x666b8fd4, 0xe1a43bdc, 0x6b64fe57, 0x80455e4e, 0xb78f91c8, 0xee06fc55, 0xff5a1d23, 0x16bc225c, 0xfe9c9956, 0x86471c9b, 0x00002f }, { 0x798ba81c, 0x31d3d963, 0xf78200fc, 0xf6c879, 0x5c5c2f49, 0x746d76e4, 0x5fb5e5c0, 0xc2680444, 0x44373531, 0x1ccc683b, 0x1e2afee7, 0x657cb1cd, 0xe5ea0243, 0x5e213a45, 0xc9fc3123, 0xfab18b66, 0x0001e3 } }, { { 0xf9480b6f, 0xc122b97b, 0x6053c097, 0x7d7efa6f, 0x8684968b, 0x3bf11e21, 0x3003454, 0xdeda0961, 0x971f25f9, 0x4ad88054, 0xf5af13c8, 0x8e672014, 0xe11eea5, 0x33767ad2, 0xa44ba039, 0xde60de0b, 0x000064 }, { 0x780bd050, 0x304bb603, 0xefcac6, 0xa055db69, 0xdbfc42cb, 0xa8e6cf1e, 0x9db3c94e, 0x4caca599, 0x1085b37f, 0x1d5af693, 0x45882678, 0xba05491f, 0x18f832b, 0x5e8cff9a, 0x44a304f, 0x6cc8fb4d, 0x00002e }, { 0x26a15146, 0xbd69e53c, 0x275d5260, 0xa29f3bcd, 0x111a3a1a, 0x4235893b, 0xa01ded1f, 0xdb480d76, 0x2fb13f66, 0x146b803d, 0xf4926a77, 0x21661767, 0x2a312855, 0x8b49da36, 0xbbf8445c, 0x4531e744, 0x0000a1 } }, { { 0x3b097485, 0xbd8888e5, 0x37e02ab9, 0x43602657, 0x282ddac0, 0x200a0a10, 0x9176904a, 0x70772dbe, 0x98ce78a, 0x9d9ec9eb, 0xac080f63, 0xa6fd152d, 0x556b787a, 0xabc5edb5, 0x8fbc0a7e, 0xe3453fa4, 0x0001eb }, { 0xe92ed9c4, 0x5dd45dc1, 0x5d5a2211, 0xcdd88e75, 0xd0055fe5, 0x41b8d05f, 0xc4aa8e5f, 0x8f65c560, 0xa19b01e1, 0x29f34cf6, 0x3ee3bcbd, 0xbbc5d58a, 0xf37f3c39, 0x9452bd7, 0x1e50d738, 0xb65a09cb, 0x000119 }, { 0x28d78966, 0x2446eec5, 0x86053ab5, 0x8fb89b3a, 0x964b47ff, 0xc189557f, 0x8d794861, 0xa52a8f2b, 0x67d1a9fe, 0x6ce47ccf, 0x7096fd2a, 0xd3a62a4c, 0x631d524f, 0x6c7fcdc7, 0xc093cc98, 0x8887ab8d, 0x0001bc } }, { { 0x73f302a7, 0x5aec8f42, 0xd46cef74, 0xdf5263d4, 0x211383bc, 0x534f0407, 0x35ef21d5, 0x4178a46a, 0x1efe3175, 0xc2cd352c, 0xd26d0c40, 0x6bea88c8, 0x5309044, 0x5f747cb6, 0x9e96efd5, 0x8b72649, 0x000013 }, { 0xe76dbe06, 0xf0b8b68b, 0x34a7f61b, 0xdb18984c, 0xbe0fec0e, 0xb749a0c8, 0x246c3a32, 0x613af3d6, 0x6b5a544e, 0xae80816a, 0x4523b94a, 0x47e0cb72, 0x84375a8a, 0xc2c05408, 0x2cda6385, 0x5dfb6f33, 0x0001e7 }, { 0x5d894586, 0x74536c1e, 0x1f30f539, 0x5805a375, 0x33ddaa27, 0x11b6f406, 0x6dd8628c, 0xb62be955, 0xe60062c3, 0x850dbbb5, 0x2365e89b, 0x121864af, 0xae73f61f, 0xfb19a54c, 0xb02e754d, 0x6cbf9d4e, 0x000156 } }, { { 0x3a22545c, 0x1601e609, 0x59fcee3b, 0xad312e, 0x4d6d9a6a, 0xc36cbd86, 0x90b7d9ef, 0xedec8f21, 0x6fc37170, 0x90718e8a, 0x26a80a01, 0x6077a04f, 0xe0e13d75, 0x6bd127cf, 0xeff5e00a, 0xdae3c8d2, 0x000151 }, { 0xc079daa, 0x54e5099c, 0x7eaa113d, 0x2b87df78, 0xb780c44e, 0xfd673184, 0x972527ff, 0xdfc0bb61, 0x784c3ea5, 0xe0384051, 0x76501818, 0xa2a2880f, 0x184f2112, 0x6a8e7e84, 0x41864412, 0xaa4656fb, 0x000065 }, { 0x58641f71, 0x2c50c31b, 0xb302491, 0x4039f92f, 0x3aa35d39, 0x58af1429, 0xb6400409, 0xa0a114ae, 0x45752e76, 0x65e07dc4, 0x5f0ab723, 0x8e5dd1c6, 0x5135683b, 0xf0c4e7cf, 0x8dc10bc5, 0x12500df2, 0x000175 } }, { { 0x66cf08e8, 0x393d3bf3, 0xd1098970, 0x94132891, 0xe97a5ffe, 0x1b361e75, 0x7e5274db, 0x9a6d8716, 0x615b338b, 0xc1831666, 0x7c74b70d, 0x40b5a197, 0xf3463a1b, 0x6ef339a6, 0x3f1f032f, 0x4fa49709, 0x00018d }, { 0xf5097ef3, 0xefc74494, 0x1da51c9e, 0xc4da3fca, 0xf897e887, 0x17bd46dc, 0x65329257, 0x5094c28f, 0xfebbf10d, 0xb240f49d, 0xebee5408, 0x42f13031, 0x38e482df, 0xc58a15e5, 0xe63c1b94, 0xb45236e0, 0x000072 }, { 0xc6e16b0e, 0x90d4efe8, 0x50298496, 0x40922903, 0x5bd0e80a, 0x61a39ff7, 0x5c1d1606, 0xd12616be, 0xcd3792c8, 0x87113df1, 0x468fe13a, 0x92f5b3, 0xb794b63f, 0xcd0d07b5, 0xc3263a0e, 0xd15c8d02, 0x0000b5 } }, { { 0xd275d588, 0x1bdd27a9, 0xce714e4c, 0x9d946683, 0xa5e5d5a, 0x2439bf42, 0x248b44e5, 0xb17239c6, 0x83808909, 0x95684c57, 0xf898cb1d, 0xf3646bf4, 0xf1d8e72b, 0xbd6e9387, 0xf1554c90, 0x39d71c27, 0x00019f }, { 0xb1d2f4e6, 0x1975eb9d, 0xafdfc23a, 0x1ccbc057, 0xa7b8ad1e, 0x70119060, 0xb12bc39, 0xcb305445, 0x661fdf26, 0x1ecd82cd, 0x2ae8778f, 0x5822502e, 0x7569652, 0xe3e9d1f, 0x5dd646b3, 0xc14eb326, 0x0001a4 }, { 0x6ef4bd09, 0x62ea8afe, 0x15d1e421, 0xff53b74f, 0x8afb2c9b, 0xbf920c1f, 0x2969fd2a, 0x4ce38c48, 0xf2acafb8, 0xa203e74, 0x66fcb629, 0xaadfdca5, 0x1add6e3f, 0xb5afa745, 0xa08ff94a, 0xa7cce399, 0x0001d2 } }, { { 0x9797e5fb, 0x5d715067, 0x8bcc9354, 0x8c185c0a, 0x36780094, 0x3db7de8a, 0x88d43547, 0xf8f0c994, 0xe23a6480, 0x557546c7, 0x78e96d3, 0x18e258e0, 0xd4ec461f, 0xa1789064, 0x75a46eb5, 0x9ea1642d, 0x00017d }, { 0xe6d254e8, 0x5d981d51, 0x229b25d6, 0x67d5d346, 0x7b7e317e, 0xbb735273, 0x855b97dd, 0x1505b4b, 0x368ec1cd, 0x8a651237, 0x481f9330, 0x122aa46a, 0xb46dc7cb, 0x269c7ea3, 0x499119d6, 0x8d2d13b9, 0x0001d7 }, { 0x67829b20, 0x6b3756e3, 0x190f003, 0x63ada3b7, 0x54c4de6e, 0x92218c11, 0x30e81600, 0xa497fc55, 0xa82c02c4, 0x6f42927a, 0x3a264e96, 0xf2b2f0bb, 0x354bf691, 0x7f437b0b, 0x2b24a991, 0x7f00cfef, 0x0000d8 } }, { { 0xf88993ce, 0x50b3ec7c, 0x90831c1c, 0x6e8862fc, 0x69526bf5, 0x9fe3cdc7, 0xb790ed58, 0x4e662b00, 0x538bfe4a, 0xc3c55385, 0x8f29167e, 0x312ccd4f, 0x5af878ad, 0x794f69aa, 0xed7040a1, 0xb57678d8, 0x00019b }, { 0x2fd9ebc, 0x1618a401, 0x29ef1296, 0xd2566caa, 0x8c8d9c80, 0x8d73d1e9, 0x7b780dc5, 0x1e151d69, 0x4ac82d8d, 0xf1d341c0, 0x5f4ef96, 0xe3d2f846, 0xf2093f23, 0xd36406c2, 0x7eac6e54, 0x96ebd5ea, 0x000174 }, { 0x2711ad38, 0xd28ec5ad, 0xb5d4cfdc, 0x18b1674b, 0x7fed2922, 0x5d853123, 0x4e671a78, 0xe1de63b1, 0xd0a727cc, 0x902fe46d, 0xb88ab44, 0x4fe7f8d4, 0x231b3ec, 0x6fb65591, 0xf0e91cb7, 0xa8772309, 0x00000a } }, { { 0x241724b, 0x5eb17257, 0xd45a003c, 0xb604ee29, 0x45ed3308, 0xafbd0216, 0xc3c57c81, 0xafca70e8, 0x20c511f0, 0x14c0ed8, 0xa9562bb8, 0x330984e0, 0xe761d933, 0x3fba6685, 0x6550298a, 0x2a78fdaa, 0x0001c3 }, { 0xc9f9ec81, 0x31cf060c, 0xbc8ec54f, 0xa64e667d, 0x7da2af44, 0x7a24197b, 0x60e77241, 0xaea16386, 0xd4feb399, 0x2025b25d, 0x80d43c98, 0xd5a8c895, 0xad18fa4f, 0xf1e0bff2, 0xb428938, 0xd6f76158, 0x00005c }, { 0x4a29060e, 0x2329f8bb, 0xe18ab2ca, 0xdbf102ec, 0x11efc9fd, 0xf414acd3, 0xd9421809, 0x9616c497, 0xae25a17b, 0x71dc06f9, 0x92d2763e, 0x377b1e1e, 0xc245656, 0x11c58b38, 0x9a9ec3f8, 0x5f9d463f, 0x00015b } }, { { 0xcac18053, 0xcb65a8f0, 0x57de4fa6, 0x9746670e, 0x15276e6c, 0x90b28fae, 0xeb4cdac1, 0x5056e0ea, 0xd9492e93, 0x5ab3a355, 0x807f1cc3, 0x217e6cf2, 0xd26c0643, 0x32ed4e30, 0x499341de, 0xa36ff71, 0x0000f5 }, { 0x4c13f104, 0x37648baa, 0xb7d69ebf, 0xee006429, 0x85d1d104, 0x1c17237e, 0xb60c9039, 0xc8623a41, 0xbc7bb04d, 0xd129943f, 0xf508e54c, 0x2294d986, 0xbe04435a, 0xcfd296c8, 0x7d14bf3c, 0x7271834, 0x00007a }, { 0xa0cd9af2, 0xebf8d948, 0x3937822, 0xbaee5b15, 0x86566e4b, 0xa601716f, 0x373e8dd8, 0x6cd121e8, 0x3d1e7b2, 0x470604aa, 0x58c71561, 0x9eac6ab5, 0xb4af3159, 0x2c8cd001, 0x9bde2f60, 0x56ba70e7, 0x000154 } }, { { 0x46ce1ae1, 0xf5ea633b, 0x6602fdb4, 0x1f217b31, 0xad678798, 0x266f7e11, 0xc81cb0bc, 0x86fe74d9, 0x49fc6017, 0x6c028af5, 0x8801b358, 0x81b2fd98, 0x2034a493, 0xea28e98c, 0xcd5e0783, 0x7175e269, 0x000124 }, { 0xd5a21025, 0xfbe20b80, 0xf8e0d506, 0x4dec8ef7, 0xd752cac1, 0x811ce1b3, 0xcfee9a25, 0xa177642b, 0x3e20fb5d, 0xe042a50c, 0x2b8986fe, 0xaae6d540, 0xdc52e4d3, 0x3067098b, 0xed2ab898, 0xccdf4b4e, 0x000137 }, { 0x18a3a8a3, 0xd0a719c1, 0x30a86e5f, 0xf1049e0c, 0x9cd49b09, 0xf649efa3, 0xcf9b4c25, 0x15552ac7, 0xce28254d, 0xa65f0f8a, 0x67fe8d64, 0x6157baf, 0xf6e43524, 0xa7fea26b, 0x3fe6187d, 0x13d84979, 0x000089 } } }, { { { 0x69ce1a53, 0x47ccc19b, 0x3956a553, 0x2be7cebd, 0x847c6c4a, 0x3bc4f1dc, 0xa29bdeb2, 0xf8c0574e, 0x2e11dd5b, 0x9aebbf6f, 0xe76a9dc5, 0x37dbdfc, 0x5c5e7412, 0xb5f84eee, 0x7136182e, 0xcfb1c559, 0x00001c }, { 0x5c47e566, 0xcf275144, 0xc508c865, 0x59a6cdc6, 0x98a278b2, 0x464eced6, 0x7af51797, 0xb90dcc54, 0x6b3c88d5, 0x1bd21f6f, 0xcc72f2cd, 0x5db67ebb, 0x9c88a564, 0x6fd4c96d, 0x1cd4c6a3, 0x292eae8a, 0x000178 }, { 0x3342f9e3, 0xe1a9a912, 0x998f42c6, 0x7bdd1f81, 0x2ceb786, 0x6b4afe72, 0x856d7fe9, 0xd5a5b9c9, 0x772a6bd0, 0xb2d70b47, 0xda7be923, 0xeeefd373, 0xa9c65ec0, 0x373fbb5a, 0xf61ac93a, 0xb7afbdd, 0x00019b } }, { { 0xa73a0d40, 0xf5b2b18, 0x7f3af9de, 0x80bef77e, 0x339c636a, 0x601eec56, 0x9c3cd901, 0x82dd797d, 0xf57eda43, 0x8e25a6dc, 0x93cbdc35, 0xda1a96a0, 0xc19a6c11, 0xe97961e, 0x630e8487, 0x8d70101b, 0x000087 }, { 0xecb22a69, 0x670cd799, 0xdcd48b28, 0x9b365144, 0x12483970, 0x52ac489d, 0xbfffe1cc, 0xe12ba354, 0xeda50071, 0xc0a179e9, 0xed5ac3, 0x40b027b7, 0xf3934644, 0x5d7cf748, 0x30596e8d, 0xdcd2a4da, 0x000107 }, { 0x5c9f1764, 0x9d883720, 0x42941a0a, 0x99de655, 0x6c05d313, 0xf4ab3a8c, 0x8e4ea18c, 0xf8d0a61f, 0x3fc600e9, 0xd33e24c4, 0xc4cb6872, 0x47657158, 0x540e589d, 0x3b50a41e, 0x109940b5, 0x61bb7e56, 0x000073 } }, { { 0xc4e2de3f, 0xf8e05e60, 0x3e063c1e, 0x52418f93, 0xddec870, 0xfba5b0a0, 0xb2d5a796, 0x35e2db74, 0x1bf9df6, 0x22b3a6e4, 0x73dc46b, 0x52dd344c, 0x4469bc31, 0xa79c1c2f, 0x20d6204f, 0xcd8556c9, 0x00009e }, { 0x711c03e9, 0x4ade62e3, 0x6f3d65f5, 0x4783b9f9, 0xebc1738a, 0x42108abf, 0x2f0f709d, 0xacdbed74, 0xe3e2a59a, 0xe2f348db, 0x4f1b35e8, 0x36172e09, 0x1a884dd1, 0x7eecc07e, 0xb14185fd, 0xfa70af05, 0x000094 }, { 0x5bdb8fad, 0x2b65f454, 0x304929eb, 0x95f0b2cf, 0x4b40712f, 0x4d90d13b, 0xbce4b4c1, 0x62af26ab, 0xb1412353, 0x1ff59a2, 0x934192a4, 0x7cc9cf25, 0xdc5609ac, 0x36c4b86d, 0xa0dea5b5, 0xdfd44727, 0x0001d6 } }, { { 0x84c163fe, 0xe0afba94, 0x40ea89e8, 0x1e85cc2c, 0xdeb445ec, 0x3b4daf23, 0xfd0d2f15, 0x54a6be45, 0x388403e5, 0xaa2230e, 0x8fc1b472, 0x2f18d1b0, 0x88fbc2d, 0x1301b0e7, 0x376a8b3f, 0x8aba557c, 0x0001bb }, { 0x221bc8e8, 0xaf07124f, 0xc865c12, 0x588cfcc6, 0x8ab778ad, 0x38af4b28, 0x3a53e15, 0x232889cf, 0xe60f431a, 0x4ddfce7b, 0x9b8c13d4, 0x94c74b49, 0xdaf90744, 0xa98defce, 0xef784742, 0x12fcfa95, 0x0001f7 }, { 0xcf6882e4, 0x8bf3aedc, 0x9f8fc284, 0x42ece56c, 0x71a69de5, 0x649c5e33, 0x6f993a9e, 0xeef3565, 0xc65aebc9, 0xe1357c23, 0xf537ffb0, 0x29ef8727, 0x58452319, 0x5318f100, 0x5bf8fdfd, 0xd20cc216, 0x00016a } }, { { 0xff7c6307, 0xd6ca8c18, 0x6a6c937b, 0x99ee569a, 0xdcb39933, 0xa3262220, 0x41357670, 0xe8f55485, 0xb55c009d, 0x4348a216, 0x1498783e, 0x8377005d, 0xeceb7de7, 0x2f4be501, 0xbed17523, 0xbc818aa8, 0x00013b }, { 0x53ef8075, 0x48c8b6dd, 0xe8999661, 0xd8c43af3, 0x8554c299, 0xcda0fa6d, 0x4ad76337, 0x4543463b, 0xd38e453c, 0x267cada6, 0xf6c8694e, 0xe30a45fb, 0x7c763ec, 0x654ac5c3, 0x313e5ca6, 0x437e055, 0x000073 }, { 0x30982c75, 0x93239eb8, 0x6d9445ec, 0x7648e59c, 0x99eae5b2, 0xcb451e9f, 0x5c23591b, 0xc28bb1a, 0x1e4d0300, 0x24125c2a, 0x3a0dff00, 0xfc63aa5d, 0xcb14a6bc, 0x38a02db3, 0x9e15be08, 0xb5166ec4, 0x0001d9 } }, { { 0x622a7ee, 0xf35f83bb, 0x9020e9c0, 0x26d94ff0, 0x3ec97ee4, 0x894849eb, 0xa2f8a13d, 0x920bcda7, 0xaa480f5f, 0x17066107, 0xb878cf94, 0x2680963a, 0x898e60cf, 0x1829615e, 0xdf56a71c, 0x923f8d0f, 0x00004b }, { 0x919f828, 0x33ce5a2d, 0xeae24811, 0x12fe5c1b, 0x373fb036, 0x1be555e0, 0x7a0b441c, 0x911967ea, 0x50d56818, 0x8f6b6ca7, 0x6b4468d9, 0x7bfee84e, 0xbb3bc209, 0xd5651dd, 0xcb8efc9d, 0x77a1911e, 0x0000b6 }, { 0x9af359c5, 0x9122b5f1, 0x81081c7b, 0x1b8727ea, 0xd9b64cb, 0xd0e42c7b, 0xe18f93ab, 0x8ead2096, 0x1d1c340f, 0x85135c8d, 0xc9b59891, 0xea5f1d99, 0xa839a35c, 0xe53edf79, 0x2dc6105b, 0x5e9cfcaf, 0x000004 } }, { { 0x2fa723c1, 0x1f3b60fb, 0xd7494343, 0x32eba59c, 0x19b69876, 0xcb66260e, 0x67585607, 0xaaecaac2, 0x2812fbec, 0x5a16a23e, 0xf307a4b9, 0x771b493c, 0x5590ae38, 0x3fc7300f, 0xb3ae5cf2, 0x80bc9c95, 0x0001d7 }, { 0x62c28561, 0xd6b1e946, 0x78423755, 0x185c960d, 0x2547606d, 0x7868313c, 0x27b9547f, 0xe2ebea71, 0x25e9aa62, 0x178e2496, 0x8c00710c, 0x2cadcc28, 0xca634782, 0xa4577757, 0x7c403b29, 0xf259b7de, 0x00017c }, { 0xf8b31240, 0x71d5c36a, 0x8bb1801b, 0x4e6e5087, 0x2f3b47be, 0x150c3792, 0xf7a13b9b, 0x27e70bda, 0x499cc84d, 0xe3026b35, 0xd51f27c3, 0xe29528c1, 0x7295f021, 0xc4735b37, 0x6910e271, 0x15039253, 0x00000c } }, { { 0xd75799b2, 0x7a6b1efd, 0x44273646, 0xba93f8ea, 0xd4fc51b1, 0x4eb48488, 0x93047882, 0x8f74ea97, 0x41685cbd, 0x96595008, 0x7672a8e7, 0xf95d364e, 0xbb82415c, 0x65dee611, 0x3bbb6005, 0x47053501, 0x0001ce }, { 0xc29fa6fd, 0x34a6e89c, 0x86c4bf4a, 0xf9a033a3, 0xbb9026f9, 0xd294bd07, 0x454a088e, 0x38265500, 0xcc6f0214, 0xf55638c0, 0xee4099da, 0xbf1061, 0xcf63a76e, 0x2c581e7b, 0xaa6422d0, 0x71ae6422, 0x000174 }, { 0xa7b7d1e4, 0x6b7bb4ec, 0x3107f2a3, 0x5ce41b27, 0x224c6120, 0xd9c5061c, 0xd3d269b0, 0xca7734b0, 0xceba2f5b, 0x9c7c1cc8, 0xa7f0c6b9, 0x8d0ee39b, 0x43100199, 0xca574eaf, 0xd6147582, 0x7af97346, 0x0000dd } }, { { 0xccb5d880, 0x30847a8d, 0x12549deb, 0x1d6eb7c3, 0xebb08c7b, 0x24888d7b, 0x486efb9a, 0x241b7501, 0x445b2013, 0xc99be71a, 0xb538fec1, 0x4e0c685b, 0xd94cbe93, 0x893c94cb, 0x9c32243, 0x8300afd1, 0x000026 }, { 0x7de518c8, 0xd21b606d, 0x846fd517, 0xa6c40794, 0xc913f65a, 0x61825f30, 0xed84ea87, 0xa4a2b753, 0x6d5f7d2b, 0xdf9ffcfc, 0x27898e0a, 0xef7fb8bb, 0x29681f13, 0x4cfa1819, 0xadd73919, 0x42d35680, 0x000100 }, { 0xf9e2dcf5, 0x8559cc2, 0xf0d044f7, 0x3c630836, 0x222510ce, 0x214fef4e, 0xb7fc8e86, 0x674b651d, 0xfbd43efe, 0x43975bba, 0x2110b6de, 0x2d98bb8f, 0x749efd36, 0xc22629e1, 0xf010d7f8, 0xabc71a3f, 0x000178 } }, { { 0x95abb692, 0x394290cf, 0x708720, 0x1b7966c9, 0x91c9165b, 0xf0f5da6d, 0xd7ac348a, 0x81019186, 0x8db10ed8, 0xc6834782, 0x4a2b8912, 0x5b9a43e, 0xf73aabae, 0x9254e5b, 0x6c79284c, 0xf7072a85, 0x0001d4 }, { 0xe9d5b488, 0x70982839, 0x7f51d027, 0x8815d334, 0x3a4ecb03, 0x7dc161df, 0x8f1e23c4, 0xcd24f70f, 0x5f7edcce, 0x67e3362b, 0x2861d770, 0x81bce065, 0x9556ae2f, 0x92aabae1, 0xdc28400e, 0x4d5776ac, 0x0001b8 }, { 0x1c0a5771, 0x3fb5cc36, 0xf75af5d7, 0x9eca345, 0x2ef9beba, 0x4b217e64, 0xcf3eb46d, 0x6a29517, 0xd44acfb, 0x888b14e, 0x1336a7e6, 0x6eb22faa, 0x8a118cae, 0xaa354e9b, 0x221da459, 0xb91e27ee, 0x0000c3 } }, { { 0xd39c92ed, 0x6df69a78, 0x1efa5033, 0x3016e519, 0x40bf1281, 0xf0a9e723, 0x5e71f9e7, 0xe5ab493e, 0x55e3675c, 0x2ef94b37, 0x39b50a44, 0x197bb7a0, 0xa86b16dd, 0x43b303ee, 0x5514b73e, 0x91a731f1, 0x000034 }, { 0x6152f7d0, 0xad9115fc, 0x86238c25, 0xf5c4f9a8, 0xca9cb1ee, 0x604b5c3c, 0x1e649fd0, 0xffb6b673, 0x43f6973c, 0xf05842dd, 0x9270dd19, 0x7ed9032b, 0xc9d65001, 0xc0f13ecd, 0x8a0b1415, 0x15b63bba, 0x000056 }, { 0xd808a9cb, 0xb7567739, 0x6d4c0a7c, 0x51974d53, 0xaac747db, 0x29ab5a09, 0x25a38b84, 0x33e96a7b, 0x19c57d8a, 0xcfc8166e, 0xc664754f, 0xe3fb24bc, 0xe2f22c91, 0x16c06fb1, 0xc4cc40b9, 0xc59b27ff, 0x0000db } }, { { 0x676cb85b, 0xf9c0481c, 0x2d694405, 0x8603216c, 0xa731ecb1, 0x9892121a, 0x16c2bafd, 0x1548c2fd, 0x95039b5c, 0xeb7ccfb4, 0x524550e0, 0x2a8f8e74, 0x501ead14, 0xe7b8e24d, 0xb75daff7, 0x700964dc, 0x00004d }, { 0x6b5362c, 0x347f5f7e, 0x966633d5, 0xa0033c61, 0xdfd72393, 0x8a6ddc8e, 0x56f60e10, 0xf44eb9ac, 0xb18210db, 0x684082dd, 0x9455014e, 0xe0e182d0, 0x74455ac0, 0x42d79e70, 0x8354c137, 0xa5005db3, 0x000064 }, { 0x9b9f2d5a, 0xdefc44d4, 0x9fd8fed, 0x78f02ecb, 0xe19ccb80, 0xd196b86e, 0xee49d24e, 0xa4396232, 0x756b9e60, 0x7a359822, 0xe01388e0, 0x6915ae4e, 0x83c879e1, 0xb968b8e7, 0x9792b49c, 0x7f6ef345, 0x00005f } }, { { 0xbdb17836, 0xcccdf8bf, 0x44271eeb, 0x9b74e3c8, 0x9a3e875a, 0x25aa13c8, 0xe622e42f, 0xee807b5c, 0x2036fca7, 0x2a23175f, 0x24282c93, 0x39f67cde, 0xce5a5f62, 0x46c59aa8, 0xf1ba8b20, 0x78ce6a1f, 0x0001e1 }, { 0xe4f3d8c2, 0x1b1714fc, 0x1ebbf7a2, 0x24396683, 0xea039a0a, 0xedcc8c29, 0x5297a91f, 0xdd37e715, 0xe9af0868, 0x7e4e4ff5, 0x2b17b1de, 0x4337f80f, 0x44db612f, 0x3722b93b, 0xab6a14d9, 0xcc53a583, 0x0001a7 }, { 0x8feb4eb0, 0x30aa3d39, 0xbe5ce7b, 0xc6d02a62, 0x9a2adfb, 0xd2676c50, 0xc62dad47, 0x5bd67d38, 0x5d81bed7, 0xa639b2b3, 0xaaa403, 0x137fb89b, 0xe4c27438, 0xebd8052f, 0xdf4401c2, 0xf319d254, 0x0000e2 } }, { { 0x177ed7f5, 0x1bd0e7ac, 0x5449cd16, 0x25770da4, 0xefcd87ca, 0x547075ad, 0x975b340, 0x7ac95ae1, 0x98634978, 0x2a520a66, 0x848a3dab, 0x567de41f, 0xedd0413c, 0x8e9d18d0, 0x2f966fa7, 0xc50bf1ea, 0x0000ce }, { 0x85c6a40e, 0xcdab852b, 0x5e4f922f, 0x45ea1ea1, 0x2cb241bb, 0x10fd9fa0, 0x2362a5c1, 0x25c43872, 0xb05e11a1, 0x207655e5, 0x12d7ab19, 0x8478b778, 0x4a997b72, 0x922993da, 0x9db6592d, 0xcefc14c3, 0x000095 }, { 0x9c6d6727, 0xf860ca0d, 0xdb1ec130, 0xf148ab2, 0x5d390993, 0xa174e71f, 0x8e8a0087, 0x1d5c54ed, 0xc8fe5d2e, 0x6bd7bb20, 0x26c302c7, 0xc423d5f, 0x930e89a, 0x90ff5434, 0x68e462d4, 0x20515d2a, 0x00001b } }, { { 0x5522ed28, 0x6aa13dd7, 0x594a558d, 0xca70f00b, 0x9ab00264, 0xd7030f98, 0x615f264, 0x7defe079, 0xeb8df894, 0x3e987daa, 0x44607afd, 0x2e3ff2fd, 0x606afc3b, 0x7a22753f, 0x65cd3812, 0x8d932c24, 0x000146 }, { 0xa0f9dae0, 0x860c11a7, 0x3b9f8a87, 0x8be3192, 0xdcf9ec7f, 0xb44dfb3b, 0x5f281ea8, 0x904b2a94, 0x4587687b, 0x2f6e3eae, 0xcfeee646, 0xac346f72, 0x87a52070, 0xc4c3472c, 0x8986f638, 0x40953b5d, 0x0000b1 }, { 0x1b41e5e6, 0xf8fcb6c3, 0x9609b943, 0x36edc57a, 0x83dea9cf, 0x8b924b3a, 0xfdfd59a8, 0x6dccc7ac, 0x4b27da1a, 0x5a1025a2, 0x47dea63b, 0x1309233c, 0xb9977b8f, 0x933cf182, 0xcc2bd1da, 0xa1f50fd9, 0x000127 } } }, { { { 0xacccfa6f, 0x568a1408, 0xd49562c3, 0xa919e4fc, 0xc940885c, 0x9613c5ed, 0x11220e, 0xf51b0524, 0x7cd16292, 0xc2765736, 0xf66600ca, 0x8b4f0526, 0x287a1d51, 0x79a1e04e, 0x5974b385, 0xc3e5ca7d, 0x00015b }, { 0x72b80606, 0x718562bc, 0x304f3511, 0xd6bebdd, 0x1964313b, 0x65d7998, 0xef624934, 0xe21a67e, 0x1a20ea45, 0x7a447c5c, 0xe724cc25, 0x3b9a251f, 0x12db9208, 0xecaf4727, 0x243d46bc, 0x94fc4b24, 0x000024 }, { 0x41320b86, 0x70ab2aec, 0x8ad6bfb9, 0x572876e0, 0xe06d9431, 0xf4625818, 0xb956d0af, 0xa822fbfd, 0xe9543504, 0x7ecb86b2, 0xb12f1636, 0x9cae1ae2, 0xbc86e234, 0xaec5da19, 0x231e03fd, 0xba479349, 0x000115 } }, { { 0xfe2118b, 0x7f177ba2, 0xbd5c267e, 0x40a373d, 0x32af6284, 0x26dbdd40, 0x64bc9afa, 0x48100a6, 0x3ba5a063, 0x57b68f20, 0xac31a93, 0xcce52db3, 0x8e00b42c, 0x20f68f41, 0xa8331fe6, 0xe12a753, 0x000081 }, { 0x41628980, 0xafd9d6cb, 0x64c9e9cc, 0xf324b5ea, 0x86442864, 0x41a432ca, 0x8497119a, 0x4cb5e0ab, 0xe2a6cf08, 0xfdf390a7, 0x14b031ff, 0x47d60bcb, 0x40ee094c, 0x47397eb5, 0x55cca391, 0x91ed6c1f, 0x0001a5 }, { 0xb75597d5, 0xb61612aa, 0xfc3593ed, 0xd7b63bc1, 0x92cd68e1, 0x9e089d53, 0x8c70d542, 0xce743fb9, 0xc8c77a20, 0x52898d92, 0x10b3c12e, 0xd24cbc9f, 0xf5033a6a, 0xf6fe4f54, 0x58ef914, 0xece08497, 0x00001b } }, { { 0x24a70465, 0xc0c19e75, 0x3bf055, 0x32001e36, 0xc6c9940, 0xf14dbbec, 0xb74c9e84, 0xfa81163, 0x36683d85, 0x2d20b4a6, 0x56384749, 0xc5528922, 0x7b23a4d9, 0x2de6b276, 0x4082bd2c, 0xd7e8b863, 0x0001cd }, { 0xb19c200e, 0x2b15dfa6, 0x3c11ee0c, 0x67f14b57, 0xc44cc261, 0x7d307b7a, 0x168b3833, 0x6937c8f1, 0xb50dfec3, 0xfbc3e9da, 0x401cb7bb, 0xe9bd437c, 0xbe61aa09, 0x32293255, 0x1f42f5b7, 0x9933bf2a, 0x0000ce }, { 0xad17b498, 0x33fa5b12, 0x385ad442, 0x959878fe, 0x4bba0f2, 0xe8b09cf7, 0xc0f7549c, 0x4a9f18f5, 0x29bbab12, 0x5106e2fd, 0xd9d4d27a, 0xcc3c9c25, 0x8927777f, 0x7d608282, 0xbfd14d2f, 0x38cde81c, 0x000197 } }, { { 0x28be2717, 0xa843d855, 0x1df6b6d0, 0x25eb04b, 0xcf756c64, 0x8c0b5cc4, 0xb250e3c6, 0x98de27d2, 0x9a3fc312, 0xef7029ce, 0xcdddc6a8, 0x49681554, 0x1252ca09, 0xf3a3c156, 0x310ebbad, 0xb41e7af7, 0x0000eb }, { 0xd3826cd1, 0x56ec4e87, 0x903543a8, 0xc84c55e1, 0x237e177c, 0x9610ceb5, 0x5d39c513, 0x15774365, 0xa397dbfa, 0x767a5b4f, 0xbce260e8, 0xec02f245, 0x4886e68f, 0x207956dc, 0xcaa978bb, 0x22820d0c, 0x000047 }, { 0xd9e5063e, 0x152f75df, 0x29d513b6, 0x6abba2e2, 0xc99e674c, 0x353d3197, 0x5788ed0b, 0xbc9d87d5, 0xa77f0823, 0x37f459af, 0xf63dc224, 0x5db30642, 0x60096ec0, 0x70fbcda7, 0x3ae47711, 0xb13dd308, 0x00014c } }, { { 0xf0d7d33a, 0x3d378cc4, 0xc73a3fd5, 0xafce32d9, 0x8e6991ea, 0x830600ca, 0xedca4eaa, 0x5ffd999e, 0xc4fc0b64, 0x12bbe7f5, 0xc3e9dace, 0x6a904ef2, 0x8909e756, 0x8bd77c26, 0xf8d78796, 0xb80a0e60, 0x0001d0 }, { 0x78387d9c, 0x9bc66cca, 0xbb58c055, 0xc0b777ea, 0x2a9aab8e, 0xddaf6daa, 0xf84c5770, 0x95e284a6, 0x34616705, 0x8b033338, 0x2c1d5c8b, 0xabdb8fd, 0x86bc853e, 0x4e623ea5, 0xc99b4960, 0xa0d94b7f, 0x000129 }, { 0x8ac75cc4, 0x4b55fbe0, 0x5a3def8b, 0x601212be, 0x12e48bee, 0xf94796a1, 0xd90f2ff8, 0x4f550343, 0x75266b9d, 0x275c9e12, 0x53533743, 0x67b6e592, 0xd1946ee4, 0x493df6d0, 0xf165bd27, 0x9e73baec, 0x00018b } }, { { 0xb921550c, 0xd9b14f56, 0xed22e981, 0x317e8a12, 0x7afbb8c0, 0x36f3f56b, 0x683f3dba, 0xa0749d6c, 0x8acc5d8f, 0xefdb3cb0, 0x40b98a0d, 0xd46b28f7, 0x4563f8f7, 0x53137f5b, 0xd91256ee, 0xdef9f208, 0x00014f }, { 0xeb495e0b, 0xcd00b33c, 0x8004f379, 0x324a42b7, 0x10b7264b, 0x646e0de7, 0xfc6db260, 0xc8fc4938, 0x50ea1381, 0xa4f347c0, 0xc2809181, 0x3df75f76, 0xef2e8fb1, 0x710b31bb, 0x80302e92, 0xc7bf7a3d, 0x0000ea }, { 0xbfc5d1b9, 0x5900d4ae, 0x892a2ea9, 0x4ae498e0, 0x55c9d52e, 0x5770208e, 0xe49f4190, 0xad5b358e, 0x6619a67a, 0x918479ec, 0xcd88ed48, 0xa0fc84c, 0x87ad5734, 0xe9687aac, 0xcf663983, 0x83a38495, 0x00003a } }, { { 0x1aef0e2e, 0xc81151e4, 0x62723343, 0xb0101523, 0x5a4745e0, 0x855c07d5, 0x2242b4be, 0x11a6abf0, 0x46d6d65c, 0xdcec9775, 0xe35cdf38, 0xa26d0df6, 0xa78f2717, 0xdb7b58c8, 0x3583de8a, 0x56161f5, 0x00015d }, { 0x179e8703, 0xc82a85d3, 0xed439b79, 0xffadd8bb, 0xd97bbc8e, 0xcce53b9d, 0x6da2cd00, 0xdbf5eed, 0xe5aa79fc, 0xf7f4cb79, 0xde985174, 0x28869611, 0x17a370ea, 0x86f3eb22, 0x253cdb6c, 0xd796203b, 0x000190 }, { 0xaf27a66, 0xb5a81783, 0x277ecb10, 0x2d04a463, 0x5807efec, 0x7855b1e2, 0xd4c8d40, 0x6d065e62, 0x7effff79, 0x9d3170ba, 0xdf63d63a, 0xd059aa01, 0x9dd460c, 0x84e110f8, 0xad4a2ab2, 0xdc9fd29b, 0x000166 } }, { { 0x3430b0, 0xfea6253f, 0xc4ee116a, 0xf3e3764d, 0xea1b27ae, 0xfd3dc2b5, 0x10ca32c, 0x1450e3f, 0xbad4cd40, 0x5ba9914d, 0x6c8c46d3, 0x3b26b286, 0x75516aae, 0x89007518, 0x1c863359, 0x4bf42800, 0x00008a }, { 0x17f9f0c6, 0x421c5069, 0x10393881, 0x32dc2cf2, 0x2a6e19b4, 0x1f79d6c4, 0x2c3a9e71, 0x81f0514e, 0xad2ae6c4, 0x39005296, 0xac2271c6, 0xa5de98b8, 0xc7048f37, 0xec3ba20d, 0xc580ffea, 0x804511cf, 0x0001f6 }, { 0xb5b3a4e7, 0xf11db475, 0x8bde9190, 0xfefff119, 0x486a9a7d, 0x39b42827, 0xfc5d9dfe, 0xe3da1d01, 0xccc39fab, 0xb56d3491, 0x4b5215c, 0x7b3f969a, 0xb9f371de, 0x33933ccf, 0x6649d5ae, 0x5b3887bb, 0x0000ef } }, { { 0x99def33b, 0xf16a3514, 0xa7882379, 0xdccd2ec9, 0x5a5d9648, 0xccedad4, 0x6eea2f9c, 0x35d8fab0, 0xf25ed496, 0x73bac83f, 0xd3e50044, 0xde586826, 0xce7b1e4f, 0xedead4c8, 0xbbc7f488, 0xcc80db46, 0x00015b }, { 0x68711663, 0x2e5859a7, 0x6e3e1518, 0x6625228b, 0xe88e953c, 0x697da3e, 0xc55dee95, 0x1615bf44, 0x7faf1314, 0xbf61ea13, 0xa4a31ed0, 0xf772a727, 0x45c13c2e, 0xd4a2e8d3, 0xdfb59259, 0x84bf862e, 0x0000d3 }, { 0xc94dbd9b, 0x9366be47, 0x2650210c, 0x8a5ffb71, 0xbd75004, 0x97de51b0, 0xcd7f7394, 0x7bedaff5, 0xd705c265, 0x7f668f1a, 0x97f05a2d, 0x4643e423, 0x8cbe5d71, 0xae3f3292, 0xba0066d4, 0x485af43, 0x0000bc } }, { { 0x458119c0, 0x19ba2c2, 0x78f27473, 0x29bc35a6, 0x452885d2, 0x61f6e1fc, 0xc0cf1f14, 0x7e895dc, 0xdcd371fd, 0xa195830c, 0xe3ac50e, 0x7d62f774, 0xf57b8dcc, 0xe6b4e7bc, 0xba6579a, 0x119c67cc, 0x0001fc }, { 0xf6f5d1b9, 0x861d5e2e, 0x74232fa9, 0x6d7e4834, 0x44fa873e, 0x55bd57c9, 0x6f4b7017, 0x1f295f08, 0xe1d42ff9, 0xa9b0e1ac, 0x3d639eb4, 0xcb5b1273, 0xaed4e729, 0xb07f2736, 0xcb0d224d, 0x26c8413f, 0x0000a8 }, { 0x93220b00, 0xae883224, 0x63f69761, 0xc8bd53b9, 0xc091f91b, 0x48014da9, 0xbdcb62a7, 0x53b4e3cb, 0x4908a924, 0x73955198, 0xa17745af, 0x5a4e2528, 0x9a60cf11, 0x795c8dca, 0x79daa6c3, 0xd9cac36a, 0x00007c } }, { { 0x7766034a, 0xfe5bd834, 0x4541a87d, 0x1ae97b0, 0x127f8177, 0x4151c954, 0xa36413f4, 0x874efcd4, 0x2505dfa8, 0x7a869924, 0x9274b8dc, 0x575f6e61, 0x69688fa6, 0xc7127b1d, 0x62dacd6, 0xa8931a3a, 0x000107 }, { 0x9b753b4a, 0x9fdb2f9c, 0x439a2f26, 0xd954a6ae, 0x5b731929, 0xcc37c09f, 0x53c0b7a4, 0xf94079c1, 0x8a4258e4, 0xeb9560cd, 0xe1930748, 0x24361160, 0xb6bd20a0, 0xa2aa86b6, 0xa0fe8163, 0x1fd66c05, 0x0001fd }, { 0x5d42d896, 0x124cc432, 0x154e843f, 0xf39f43a7, 0x3a55361a, 0x728dfbda, 0x77c2e421, 0xd3652bc0, 0x2d36248b, 0x7cf8802, 0xa82f0bfe, 0xa0dcbf9c, 0x92d1b0b1, 0xccd61133, 0xa9013682, 0x3d8453e4, 0x0000ac } }, { { 0xeb886a7c, 0x3d05c88b, 0x591479b1, 0xcc5c824b, 0x6cb719ed, 0xcbe47188, 0xb9872b84, 0xc582ca49, 0xdf923636, 0x51c50c45, 0x316678b9, 0x3c1bf646, 0xef7b58da, 0xabea1d95, 0x3c0934f5, 0x72ef208d, 0x000075 }, { 0x40601171, 0x90a2c87e, 0xb1bb0afb, 0x8c4b46e7, 0xb1333652, 0x6d0ca3c0, 0x2fe0b210, 0x5d0db1bb, 0x2c195e25, 0x6da73e69, 0xe4f86ef, 0x1dc88691, 0x5206ff7b, 0x5a27b3a5, 0x94fbfff2, 0x60b1118e, 0x0000c8 }, { 0xdd24afb6, 0xb7687a30, 0x780903a, 0xd59d74a5, 0xc4d5dc0f, 0xd9d8bc77, 0xea7a06f1, 0x309be3a0, 0x72caa0a2, 0x6b0bb324, 0xc6d0a335, 0x4ed62c6f, 0xf9b70a2d, 0xaa1fdc3f, 0xb4ddc021, 0x7abb2bfb, 0x000190 } }, { { 0xdddb8f46, 0x5c299428, 0x9168817a, 0xda2999b0, 0x13d2ac64, 0xff93b13f, 0xaf50d1df, 0xb5f61107, 0x46a95d3e, 0x880457b7, 0x441f5be0, 0xe5f852e8, 0xa2890296, 0x852b3b1, 0x5d7ff003, 0xaf6def93, 0x0000fe }, { 0xa2f08458, 0x4dbf597, 0xb0f324f3, 0xeca63d12, 0xa9ce252a, 0x25cac7a1, 0x3a7ec9e7, 0xf9786a, 0xcc63060c, 0x637c486b, 0x2ad1858a, 0x374d53db, 0x6e265f16, 0x81976844, 0x2e458041, 0x6dba409f, 0x000175 }, { 0xad7d2f0b, 0x4da211db, 0x5623edf7, 0x4a3a76d3, 0x5cf7f156, 0x3ed6d49c, 0xc8444155, 0x980d7483, 0x651a0c1c, 0x9aecd788, 0x740b2d96, 0xedfb8885, 0xf126c1da, 0x8242815e, 0xc33bd69c, 0xaca181c4, 0x0001bb } }, { { 0x4947077a, 0xbb4e899c, 0xaca5a28b, 0x8c68222e, 0xb0045047, 0x7ae4c3e4, 0x8d7b69b4, 0x51e91b75, 0xdb575fe, 0x372dc04e, 0xd413f2c8, 0xa3611d27, 0x715fac6, 0x6d2bb54e, 0x98ff59aa, 0xd3d78bdd, 0x0000a4 }, { 0x871f01d4, 0xe50f077b, 0x91380f2d, 0xeeda088e, 0xf48c3d09, 0xa0c0b59a, 0xbc8e2acb, 0x49615a1c, 0x597d8a42, 0x86c5e250, 0x922da154, 0x733fc2e7, 0xfa78dc15, 0x688d2fa4, 0xa8e4b8d4, 0x4f60fe6, 0x000058 }, { 0x41d8441, 0xeab65793, 0x67d97850, 0xc87fbd65, 0x7fffc3b7, 0x9e03df70, 0x31fb5db, 0x108a5d0b, 0x6e7e197b, 0x3b9ff46, 0x77a777cf, 0x406a8a34, 0x3fdb0e80, 0xb2b378bf, 0x1973c123, 0xe7cc2b54, 0x00012d } }, { { 0x6ce289bb, 0x31b6b297, 0x5d6ec524, 0xb461f63d, 0xd7a8b851, 0x4281c4f4, 0x364593fa, 0x538a4cc2, 0x24b9ffc5, 0x3793e650, 0x6b8f00b5, 0x4d82862b, 0x3b9044b2, 0xd1f5f621, 0x7754ab2b, 0xc5096469, 0x00001f }, { 0xfae832e0, 0x2d920cc2, 0x8f5a97d9, 0xcce6c9d4, 0x8721a1ec, 0x9f5a9a5b, 0xf58b854a, 0x673d6ee2, 0x5d98c71e, 0xa6b4520c, 0xa941a6eb, 0xc7755143, 0x6b180818, 0x824f68a0, 0x79c7e49d, 0xe45d465f, 0x0000c1 }, { 0xb786ab2c, 0xe07d70d5, 0xd80f1708, 0x8b3731b9, 0x4a26deef, 0x75c66c53, 0xaac00a00, 0x66f041d5, 0x7adcb7d6, 0xcb6fd87c, 0xcf93fd64, 0xff5cd5e7, 0x7247ef37, 0xf3242489, 0x358e9425, 0x8f8b1d5, 0x0001ca } } }, { { { 0xf95b6557, 0x9d81f97, 0x95cc2b3a, 0x155d674d, 0x1d4cbbc1, 0x995a063a, 0x6abea12, 0x121c83af, 0xa1008767, 0x13fb5ed4, 0xc0aa5eaa, 0xbf435510, 0xcab20d85, 0xa6e539be, 0x555c98ef, 0x9c02c427, 0x0000fe }, { 0x7cdfc1d7, 0x8793f10b, 0x9bd2d460, 0xeb3317f0, 0x29831337, 0xe0312f1e, 0xf6e9b06a, 0x4c8c172d, 0x9d1332c1, 0xd523425f, 0xecaa7f09, 0x26263759, 0x1f777949, 0x48eea12e, 0x21eec735, 0x4de01c43, 0x000029 }, { 0xfbf87cc9, 0x3483787, 0x4076dead, 0x697aee35, 0x4d59295a, 0x206ca176, 0x8d32daaa, 0x5a783a9a, 0x1002ede7, 0xe149ea8c, 0x9b0059f, 0xd5c5f8a9, 0xb92ec0d1, 0x36fbbf0c, 0x7f31d10f, 0xab625bf3, 0x000015 } }, { { 0x81149d2d, 0xcc32e5ba, 0xefa3151d, 0x1085ddf2, 0x791f1012, 0x72bcc370, 0x73707aa8, 0x16d26991, 0x2a43b2c4, 0xcc22eb84, 0xb68727d3, 0xdc5700e6, 0x68b793ac, 0x914d750b, 0xe309041e, 0xd2caad98, 0x0001cf }, { 0x32050e84, 0xa2bb73c0, 0xb19308a, 0xf47dfef6, 0x947fbcfc, 0x26f2e80d, 0xe4ab3d56, 0x985bed64, 0xb08b2f4b, 0x5afbf613, 0x2daccb9e, 0x545b9770, 0xb6aefc65, 0xc560907e, 0x115bcb34, 0x165df38e, 0x0000e4 }, { 0x54c5e7d3, 0x8c4d8a2c, 0x2fb84f42, 0xf42c6c20, 0xb51c571d, 0xd9939b6e, 0x2dc4fe27, 0x4a3badc9, 0xd73ba0b8, 0x666f4270, 0x71a72469, 0xcac96c22, 0x148829d, 0x822dd7cd, 0xea5f97b2, 0x2b53af87, 0x00012e } }, { { 0xa34ddd8, 0x8a220851, 0x42cc1130, 0x2c0c4a6c, 0xde694dc, 0x23f39d31, 0x72825a34, 0xf99e27c8, 0x66bf0c9d, 0x1a9a7579, 0x811812b2, 0xfc1cac25, 0x6d2848c, 0xdb45aa48, 0x99b787af, 0xf44e3cc8, 0x00012d }, { 0xe8c19ac3, 0xe4629f0d, 0x9cdc9099, 0xfe0201c2, 0xe1b29b45, 0xbf49528, 0xe5257e85, 0xea7bc458, 0xd756793f, 0xeea333ff, 0x961363be, 0xe9ed1822, 0xd71730a0, 0xe74b60c7, 0x87cd9aa7, 0xd7c69a39, 0x0000a4 }, { 0x9a990e0, 0xb3400375, 0x85fdb451, 0xb425befe, 0x9a1fbc77, 0x396661e, 0x847b5992, 0xc6568eb, 0xffcb5637, 0xf773772e, 0x36e78512, 0x2a92ee7e, 0x4374e9f5, 0xc945a9d5, 0xcb9e0c7c, 0xbed28332, 0x0001b6 } }, { { 0xea25c05e, 0xfef9a280, 0xce7a8a80, 0xed15c363, 0x57af6935, 0x34b023a2, 0x38a572dc, 0x51888c22, 0x40c9221a, 0x9e532860, 0xbd34717d, 0x538c7382, 0x35560f08, 0xc487b421, 0xd7953ef, 0xc582e423, 0x00008b }, { 0x2ff6cede, 0x9c4bd456, 0xfed490c5, 0x9d524f61, 0xb8999518, 0xde6fe5fc, 0xdf1a8be, 0x9f1c67f, 0x4fa3da57, 0x870e7d32, 0x5f5ecb1a, 0x83f52dba, 0x3e13580d, 0xd3dd3d2c, 0xc1165829, 0xd8b21f01, 0x000156 }, { 0x32372110, 0xb1d03c55, 0x9ae0beab, 0xea59436a, 0x7d9635df, 0xae6d3634, 0xd122ea60, 0x71bd454d, 0x2d9b448b, 0x8e3a1365, 0xa9a67da6, 0x51d87ad9, 0x9d6884c9, 0xb859e240, 0x2552328d, 0xab10fa1b, 0x0000a6 } }, { { 0x2c008e89, 0x78e45231, 0x2818e59f, 0x6c8e50b5, 0x4ebb0aef, 0x5708d841, 0xed768330, 0x66ccbc90, 0xca38ea52, 0xc4fa71fc, 0x78ed8df5, 0xd295b5df, 0xf41869a4, 0xd48b0b10, 0x37dfd7a7, 0x6f4fc9e8, 0x00010b }, { 0x95365a98, 0x47100939, 0xa1b0d13b, 0x77ba28, 0x111c3c8c, 0x7d14103a, 0x582ec8d0, 0x1cb90f8a, 0x4c241919, 0x83448648, 0x2396e17f, 0xb883119f, 0x52de4d06, 0x3400e000, 0x74161829, 0xc7fc1fdd, 0x0000ac }, { 0xd5df75cf, 0x79d6d908, 0x8e16f32, 0x6edfdf89, 0xc3869e97, 0x9974609f, 0x6ae0ba8b, 0x18ce367c, 0xb2baa02c, 0x2439c172, 0x27824a2a, 0x3ffcaf9b, 0x470af7ea, 0xd8b6f264, 0xa47c41d6, 0x8d7f049c, 0x0001ea } }, { { 0x1390b208, 0x94e7136, 0xbe65f561, 0x202ba3f8, 0x21adcab4, 0x9f0a7ce, 0xc03918f1, 0xc48870d5, 0x34dbce57, 0xed1bfd5d, 0x7729f36a, 0x77e22b77, 0xad2460c2, 0x3155c8b8, 0x1bf6e69f, 0x271daed, 0x000165 }, { 0xfa4454e8, 0xe1d956c2, 0xb83d4f75, 0x2f44ff06, 0xffe1f93b, 0x4fefdb80, 0x3398a318, 0xf1579dfc, 0xb31da78e, 0x964515a2, 0x82a8bfa4, 0x59b2b2ab, 0x3128aec0, 0x55ba271f, 0x6015ee, 0xcac6dfbf, 0x000113 }, { 0x73265e3c, 0x26ae6d81, 0xc24bbc54, 0x48a2a78, 0xbdda227b, 0x59813c1a, 0x4475f52a, 0xcc651bba, 0x929d18f0, 0x54f9b8e1, 0x8a2ab6fd, 0x5cde49af, 0xa797bf63, 0xf9fb0fd3, 0xf25a1e16, 0x72aa426c, 0x000141 } }, { { 0xcbce32f8, 0xea0dfe8f, 0x3dcfb16, 0x225901c4, 0x96f881bf, 0xe4b98a0f, 0xcccbc357, 0x78bbd591, 0x75d6dfac, 0xa27c30d4, 0x773128ac, 0x814e00ee, 0x4fe32783, 0xa0824396, 0x7470097b, 0xa33bacf7, 0x00003b }, { 0xfde339b5, 0x6b5fa578, 0xb9ffd8ab, 0x3d2f1261, 0xf2f71791, 0x5e2f0f3b, 0x6081f5b2, 0x1196ad02, 0xec438d0c, 0xf05ff5a1, 0x9327f463, 0x63e9201c, 0x97a58793, 0x14c03b66, 0x66b8a172, 0xe1824b6b, 0x000067 }, { 0xbf961b24, 0x7d99b8bc, 0x71be9bf9, 0xd638b742, 0x6dafdd33, 0x897fb7ca, 0xd6689f90, 0x5eadfddc, 0xe399be6b, 0x36a42d0, 0x6655c72b, 0x970b7358, 0x7aa03046, 0x1301b24e, 0xcc1f3700, 0x5ecb2e84, 0x000027 } }, { { 0x2f70e2ee, 0x8e0937d0, 0xb0cf420a, 0x8549c1f3, 0x3e3b6f87, 0x2f50eae0, 0x62cbc24e, 0xab49fd43, 0x7c04507f, 0xabd7f9d7, 0xaf3bca2f, 0xafdac192, 0xec219527, 0xc2941843, 0xa9e0a6eb, 0xe9d1c21f, 0x00015d }, { 0xcbc02287, 0x93384648, 0x69b4adaa, 0xa94d4e92, 0x48f1c8b8, 0x4da139e7, 0x62858557, 0xb7d2f0c7, 0xc173be97, 0xf06471e4, 0x2df00712, 0x4002f94e, 0x920f6871, 0x2138e2e4, 0x2582b3a, 0x2707ab3f, 0x00007d }, { 0x6613e71d, 0x94e59635, 0xe18837c5, 0xbf20c3b9, 0x37dcd556, 0xcc480ac6, 0xc52f33f5, 0x408f236b, 0xfc7e1d79, 0x4cc2da34, 0xdc309382, 0x6089f8cf, 0xb3f724bc, 0xa560735e, 0x6d063d1f, 0x85415bbb, 0x000150 } }, { { 0x2cfd3365, 0x3f15ca47, 0x54532fe, 0x48a5348e, 0xe60a9630, 0x399c8fda, 0xb29ea4ac, 0xaac9e8f6, 0x3b8aa631, 0xbd6774de, 0x4b7182e0, 0xad1ee500, 0x8fa650bb, 0xd9186a75, 0x6258fc01, 0xd1d90e58, 0x0001d0 }, { 0x9cd4de61, 0x38e64baf, 0x256024dd, 0x55197b38, 0xa1d31b6b, 0xe76ef91f, 0xeb94c9e3, 0x511e50fa, 0xccf71ec3, 0x25cf683b, 0xd3c540cb, 0x4136a89c, 0x3cb3c7ae, 0xcd917ad0, 0x9d4420ef, 0xb41b8604, 0x000199 }, { 0xa056dc1c, 0x4ad0c3ae, 0xde44678f, 0x7f58a5f1, 0x8be4f6a3, 0xa6c3c224, 0x3ea53e9d, 0x263c9513, 0x25b89b86, 0x8755e883, 0xd771e6d2, 0xa26300e1, 0x23746106, 0x22178a97, 0xbef959a8, 0x714caef5, 0x0001a4 } }, { { 0xba1f85c2, 0x5679d89e, 0xf1e3252e, 0x88023089, 0x9025303f, 0x30817587, 0x2f829ce3, 0x2d42fcc6, 0x23e67a61, 0x871b9199, 0x1151f3a6, 0xf37430ff, 0x7098070d, 0xea624313, 0x821f9ed2, 0x8f47d097, 0x0001e9 }, { 0xd885066d, 0x64f572a9, 0xc642c7d9, 0x4d86857e, 0x4d448903, 0x1fd87403, 0x28159d6c, 0xd0791056, 0x39deecf7, 0x872c119f, 0x485b3fa6, 0x56159619, 0x13551085, 0xc239ef54, 0x84e24b43, 0xcf50c852, 0x00019b }, { 0xf2c7ffee, 0xc2bc587a, 0xd51c418c, 0x3e32e66d, 0xe4ad701b, 0xae4f7f65, 0x5382a8e1, 0xc04ef998, 0xfce4c06d, 0x2b620ba2, 0x6f7e852c, 0xeb7c3e2c, 0xc183badc, 0x56928af1, 0xc9375443, 0x7ac91aad, 0x0001f5 } }, { { 0x8780fed7, 0xc4ab513b, 0x44864364, 0x21bac1c7, 0x33fe9668, 0xaecc712b, 0x70187d67, 0xa9a8ba39, 0xfa967b9e, 0x6f858032, 0x31922ce4, 0x34f3a480, 0x7c6e3968, 0x7f38a33, 0x33001ddc, 0x4780f623, 0x000135 }, { 0x3c87740d, 0xfe4ef7cf, 0x922ace6f, 0x69f5a1c6, 0xad4ca351, 0xc976dfa3, 0x3b4dd7a7, 0x261acea3, 0x51e765d0, 0x9e946213, 0x7c4d31e3, 0x1267e40e, 0x266e692d, 0x6c7413a6, 0x7896ec1a, 0x2379a570, 0x00019e }, { 0x297add7e, 0x359b76cb, 0x750a203, 0x9112b052, 0xf444dec6, 0x462052b3, 0xb22fed09, 0x4ce62065, 0x4f56088b, 0x80137c5a, 0x2c52da9f, 0xd74b158f, 0x5b13a444, 0xa76402c1, 0x60ff847f, 0x77291825, 0x000179 } }, { { 0x7c549f3e, 0xb2592464, 0xa676e77c, 0x3193643c, 0x6f2ba2f5, 0x5a45f47f, 0xe5c78ea3, 0x19a03940, 0xf9d9244b, 0xbe3e4d1a, 0xf437853a, 0x2b1071bb, 0x6572f0c, 0x7237b9a6, 0x9f4d0267, 0x1d77de73, 0x0000e0 }, { 0x341cc142, 0x9d209bf6, 0x71a0696a, 0x11eda624, 0x9c4a6cf9, 0xfa03753, 0x3625847, 0x9afadf8a, 0xbbaf3e37, 0x32b89f63, 0xb51ce9c4, 0xef94cdf6, 0xfb309c39, 0x6770a123, 0x880568, 0x55834f26, 0x0001cf }, { 0xdf0ed007, 0x5f98714, 0x35fd2953, 0x20b52b96, 0xc3e72f84, 0x238d4f5b, 0x9deb4cf8, 0xb9d4a0b7, 0xe6a0e949, 0x707a753b, 0xaa1a3f6, 0xe1fd6cda, 0x99de798e, 0x9f798a33, 0x58d35e6e, 0x7f2df691, 0x000072 } }, { { 0x1c70b612, 0x895bcf65, 0x1146295a, 0x9fad5019, 0x3c932dfe, 0x8fe93a30, 0x84ece384, 0xc5acd7c4, 0xcd236ca9, 0x23d0cc71, 0x895db266, 0x51f60fcb, 0xd2d64524, 0x8bcc64d3, 0xe3f6b651, 0x46179c8b, 0x0001be }, { 0xf8c6c063, 0x62ff4968, 0x5064ffd2, 0xf8349fb2, 0xf5885b87, 0xb88764a1, 0x7967be10, 0xf127ba14, 0x80b6dad2, 0xb13e34e1, 0x9742f01, 0x6bf9f1d6, 0x7dfa82a7, 0x95cb0acf, 0x8bfbbb57, 0x3803563d, 0x00009a }, { 0x1189953f, 0xa10fd88f, 0x461f8118, 0xf3dc8f21, 0x4e824983, 0x74ab7b47, 0x3fd0347d, 0x5db13ca2, 0xb5fe3ffd, 0x2d6bf11e, 0xf534a98f, 0x56bcb9e1, 0x782f3f8, 0xa78a55b0, 0xca39d0bb, 0x23dd8377, 0x00005d } }, { { 0xb6a56d51, 0x35eee870, 0x806d1371, 0x3f6acd80, 0x55a0ced5, 0xab6ff527, 0x7314eddf, 0x9f56c80, 0x2e0a70af, 0xc4dee65c, 0x3ceda63d, 0x1dbedf5f, 0x72ecbfd5, 0x1e571095, 0xca8694e2, 0xd6e7ec39, 0x0001c4 }, { 0xf53dee4c, 0x9ad110, 0x6eac9352, 0xfd63d364, 0x44b6b686, 0xdfeb5a96, 0xefdb18fa, 0x6b9c7aec, 0x99c5add, 0x6b59f385, 0xa6a97321, 0x8ed28e46, 0xf833504b, 0x2f065fc8, 0x757eb572, 0x71197041, 0x000049 }, { 0x226d224b, 0x48034e33, 0x6ee6885a, 0x3d2f0ec0, 0x2097b08e, 0x30f34dd3, 0xbf7d80ce, 0xb032bcbd, 0x9662fdef, 0x2d4327c7, 0x9482ff17, 0x8bbafbc9, 0xc939dca0, 0x52945419, 0xa7eeb6b8, 0x660d439b, 0x000109 } }, { { 0x116e7532, 0xdd1b92fb, 0x17a9cb27, 0x1ac99be7, 0xd520025c, 0xcde3dfb4, 0xbee42415, 0x666d48d3, 0xb39ef93e, 0xad92b21b, 0x7343e548, 0x10a15098, 0x1b8c5760, 0x4cbd4111, 0xd1cd9ea6, 0x1d52ef65, 0x000173 }, { 0x29d84e5d, 0x675383c3, 0xe5cb4bba, 0xaf744257, 0x81bab1d0, 0x97129b79, 0xeb5de81f, 0xb7e3baff, 0x3a37172f, 0xac4cdbe0, 0x34743ef2, 0xb5c16cb3, 0x130d8592, 0x575e1ca5, 0x5a35a40f, 0x5a0478be, 0x000037 }, { 0x8279e007, 0x1e87bda4, 0x87648ce, 0x1d39038d, 0x8da56b8c, 0xb5bdc4a8, 0x76d7a5fc, 0xb2decbea, 0x9938034b, 0x6c4717da, 0xdabee992, 0x12dd3f20, 0xa09f24af, 0x3275104, 0x52ba22ef, 0xfeb57902, 0x000160 } } }, { { { 0xb8c7a48e, 0x442dd978, 0x8e786bbb, 0x601b7c8b, 0x6812a57c, 0x54d970c4, 0xf8a6e461, 0x174d0681, 0xa537d7a2, 0xcb1e3c48, 0xc9434144, 0x113d80b4, 0x1babe14c, 0x3bfd6049, 0x97a62104, 0xad33408d, 0x00012d }, { 0xf51554bb, 0x3808a9db, 0xf5f856b4, 0x549cd161, 0xc7810e02, 0xd9b07645, 0xfc1726ef, 0xe39f6eb6, 0x7635c379, 0xaa94a79, 0x75e793aa, 0xcb680ab9, 0x95f85594, 0x4a3abb03, 0x17cd8169, 0xb2666331, 0x000052 }, { 0x7b86c01b, 0xb5f3ee04, 0xc91e7189, 0x47438d98, 0x4c50d5b8, 0xa7c46220, 0x2f1e819b, 0xde25cd95, 0xb321667f, 0x301742a8, 0xfb6fc88f, 0xe2f81101, 0x401082fc, 0xb0cc1918, 0xe62b0d75, 0xad180323, 0x000116 } }, { { 0x9dbd36b3, 0x1012fdd1, 0xf4c7c365, 0x500aaf01, 0xc6d73824, 0x2a8370d1, 0xd2032db6, 0x42c3cab, 0x59e4c42f, 0xb3ddc261, 0x31df6672, 0x571f2394, 0x218d2a52, 0xd566d6b8, 0xfcaeb9fb, 0x8a9dc2d, 0x000007 }, { 0x8926f642, 0x38e06276, 0x1b058f42, 0x267fd044, 0xfa7d2665, 0xb8f4f26d, 0x29a64d94, 0x2915eb1c, 0x8921672, 0x1d6d6b40, 0x51dacdbf, 0x5d57b29, 0xd33b43ee, 0xf4a3bdf0, 0x6af29c73, 0xb3a6866e, 0x000106 }, { 0x5006e687, 0xc41cbb7, 0x73a1f4a, 0x3ae2a74e, 0xdec8572f, 0x3b5dfafc, 0x243e893d, 0x5e5fc007, 0xf9e58748, 0x70ba5ebc, 0xc0ed986c, 0xc3e3044d, 0xa240da8a, 0xc1f51047, 0x778b170, 0x3a7ac662, 0x0000ee } }, { { 0x2fe2f276, 0x664cbfc5, 0x29cc9f52, 0xa8840905, 0x72117f7f, 0x5108fc83, 0x7e9777b, 0xba16fef6, 0x539417f2, 0x7e26912e, 0x2c75e61, 0x3dee8cd5, 0xee3b0b83, 0x5ba4b714, 0x69efb75d, 0xdafd3766, 0x0001ab }, { 0x49c4e8ed, 0xe86ddca3, 0x3cecf508, 0x22cc7c85, 0x4f0dc1bb, 0xd7c47521, 0xed0987bb, 0x5df462bb, 0xc533b28f, 0xfceecd3a, 0x12b4ff8a, 0xe9d241ae, 0xcc8e2a5f, 0x4dff980f, 0xaa1bfb52, 0x26a290ce, 0x0000a6 }, { 0xed7506b0, 0xc6ec4494, 0xe200d422, 0xc2f83646, 0x91044f42, 0x374a99f2, 0xb02dec44, 0x3cb50bcb, 0x54b17efb, 0xfc02953, 0x6499843d, 0xa3df7fc1, 0xe95c56ae, 0x18b03a04, 0x108c3b96, 0x9f398f31, 0x0000b0 } }, { { 0xe50018b2, 0xe1f19cd9, 0x1edac53d, 0x7aa5653c, 0x48f51a89, 0x6972cbe8, 0x2b2a973, 0xdddc39a7, 0x5d276fd3, 0x6be223fe, 0x515f9ce7, 0xd8237ac6, 0x67f6a790, 0xe271a204, 0x982d8063, 0x329be109, 0x0000d0 }, { 0xa657098d, 0xd1bbf271, 0xfbed3f04, 0xdc897032, 0x6fa6576e, 0x4b1ed548, 0x60c74873, 0x233ba131, 0xbfb33aa, 0x9702f5e4, 0x79657e2e, 0xe8fd59a, 0x94e1f72b, 0x16d2bd47, 0x6de92d29, 0x37c35e30, 0x000124 }, { 0xf755cd56, 0x58e79ad3, 0x1db135c3, 0x53bf4055, 0xb513e8cb, 0x607574b7, 0x55e20369, 0x8bdd7a92, 0x15c62792, 0xc78ce2dc, 0xc95b9357, 0xff0e82bc, 0x336c5e00, 0xa34093ad, 0x1814bb1c, 0x34e7b43a, 0x0001a8 } }, { { 0x86fe92ae, 0xc8ec3648, 0xd752b898, 0x7fb16af5, 0x99b8b545, 0x18f67b1a, 0xa5525edd, 0x6fa83b03, 0x726f715a, 0x1481ad9f, 0xcb26d116, 0xa4c31ba2, 0xe6686ba1, 0x22712d1, 0x26f2391d, 0x2f1daf27, 0x0000fc }, { 0x5d0919e1, 0x4d81ec81, 0x99e80743, 0x8af85750, 0x7218d147, 0xf683e286, 0x261addf2, 0x7631a897, 0xba0b38eb, 0x9095030e, 0x8d275ecf, 0x2aa4f9d7, 0xd75343bb, 0xcf8916dd, 0x2c54c42d, 0x80659569, 0x00013d }, { 0xe3e5c0ad, 0x9337cc85, 0xd85e55a3, 0x61a3e056, 0x4a0eba20, 0xf9c3a0d7, 0xfe704c51, 0xa77e5a4f, 0x4c8224cb, 0x72926c6b, 0x57592331, 0xcde7593b, 0xeb09aaa2, 0xdcd32881, 0x2b1c415f, 0xc39d5117, 0x0000b2 } }, { { 0xffdf0a18, 0xa7c9cd10, 0xd87900a1, 0xa1e4547c, 0x25e929ae, 0xeea755cb, 0x9f7776cc, 0x85b753f, 0x5802c268, 0x827ad621, 0x5e47889a, 0x5fc822ea, 0xf7bd2959, 0x68e99890, 0x50a345dd, 0x106b435, 0x000022 }, { 0xebac6ae8, 0x67079b49, 0x33de7267, 0x80942f7f, 0x9aa6bfd, 0x2ee62b1, 0xa8023d5e, 0xa87efbf3, 0xe06a54a5, 0x3d8bcf57, 0x9cc1e56b, 0x6cae7672, 0xf5147bf6, 0xe3d71eee, 0xfc814fad, 0x2ffc3caf, 0x000199 }, { 0x765fd850, 0x98d982f6, 0xa1b45612, 0xaac67fb4, 0xcb51f77, 0x426e01e1, 0x93676ce7, 0x5f9475df, 0x700331de, 0xf60024ad, 0xbac55f0, 0x587ac379, 0x67abd292, 0x75950d27, 0xbc418240, 0x60f17821, 0x0000f1 } }, { { 0x8eed1d46, 0xb03b4de3, 0x863e47b3, 0x4c600941, 0x9f8ce510, 0xa199c61d, 0x824d298, 0xdd57a931, 0xd4782d45, 0xd18a29e5, 0x11fc71e1, 0xddcaed3f, 0x5d6ed61c, 0x5d6a5562, 0xbb5c4fe2, 0x6f3f6100, 0x000106 }, { 0xfcf5dba5, 0x3aaf3f87, 0x77a4150e, 0xd3467d00, 0x2412fe9c, 0x9bfb1ee6, 0x29fdc4e7, 0x62773d33, 0x76fabf42, 0x7dcda91b, 0x2085df39, 0x6f287bb5, 0x5250c831, 0xa7dbfc91, 0x605c38a0, 0x5d14a08b, 0x0001c0 }, { 0x6c209e76, 0xe51b34fa, 0xa305dc97, 0xc768ad34, 0xac9045d4, 0xd5e3a3b4, 0x3de3cda4, 0x6e659896, 0x57792a5f, 0x7ca3855a, 0xec359d80, 0x603ae6d3, 0xb743ffe0, 0x6ec24b9, 0x8ae3d182, 0xc02043c7, 0x000122 } }, { { 0x890ad98, 0x70348a3d, 0x6d520da5, 0xf9859595, 0xe4110ec9, 0xbd2c752f, 0x1822b09f, 0xe1baa079, 0x70c626d9, 0x6851ae2a, 0x3c946e00, 0xc4f40bf6, 0x31ee321e, 0x32cde0fa, 0xe72c0ad1, 0x95585832, 0x0000be }, { 0x7d7b4532, 0xb632f46c, 0xbbab2fc0, 0x5f11734c, 0xbba977d5, 0x1cb120f5, 0x81190b37, 0xe5d09469, 0xcf63cd9a, 0xfbe2d6b1, 0xa076116f, 0x4066ff2a, 0x40ef4f1b, 0x833ecfe7, 0x3c330d0a, 0x2ce979fd, 0x0001e8 }, { 0x92f918c0, 0x717b2491, 0x1c77e386, 0x74d890a0, 0x52dd4add, 0x976f9049, 0x45f76302, 0x2447e100, 0x3237631f, 0xc785eeb8, 0xbde6035, 0xee5925c1, 0x4969b861, 0x3594dfa3, 0x88060567, 0x198af881, 0x000133 } }, { { 0x239ba6a1, 0x98dbf038, 0xaeb7e3d6, 0x2fb8bd0c, 0x2bcfd450, 0xb9451782, 0xbdb92ce1, 0xd693ea67, 0x6d2d4da9, 0x65198a5f, 0x84dc5259, 0x2391e79d, 0xc85d8aba, 0xa5a17d11, 0x74bf1008, 0xfc784ea, 0x00013f }, { 0xffb19453, 0x612a1c9a, 0x4019dffd, 0x55d98814, 0x65df8475, 0x18b011c7, 0x36940ef0, 0xabb26201, 0x519e6019, 0x99f19f78, 0xdfdb3e1e, 0x340fa32d, 0xbcdd7dbb, 0xc89d006, 0x7055c1bb, 0x1c6dca75, 0x0001c1 }, { 0x51383c0c, 0x26f5878c, 0xe59b34a4, 0x145f5ff6, 0xa595f015, 0x73f2ad98, 0x74f3b7a3, 0xb14e8a89, 0x74c93138, 0x5cd13945, 0x6aa69bb5, 0x7ce09c07, 0x2a3a821a, 0x39dfdb8b, 0x47688058, 0xf012c1b9, 0x0000bb } }, { { 0x3562336d, 0xcc914e4e, 0x42930500, 0x48c19b7a, 0xd1050a55, 0x99eeacef, 0x5ba00a58, 0x610c68ff, 0x2981d461, 0x3b709e49, 0xb30c8156, 0xe90c8b85, 0xcf300b56, 0xebaada72, 0xa8e27b2e, 0xfbd3edba, 0x0001e1 }, { 0x1125c8e8, 0xb6e22cc7, 0xb5013595, 0x66c59523, 0xa931a8b0, 0x9d1c5ba1, 0xa8561749, 0x47f9bf9f, 0x7a1fdbb2, 0x75fef48a, 0xf13a501a, 0x42a5e2c6, 0xb4ad201b, 0xa9f49c56, 0xd2664e9b, 0x6c9a5e2, 0x0001a2 }, { 0xb513119f, 0x9cc82c78, 0x475f7e0f, 0x15cc5740, 0xbad3a101, 0x3f53c5c1, 0xfa87c5ee, 0xde5fe8e7, 0xd2e5dc9d, 0x44b4f5c4, 0xe9750ef8, 0xa5ef1728, 0x2f323298, 0x9557aef2, 0xd4b05b4b, 0x3969e7e2, 0x0001c8 } }, { { 0x3c12d3b3, 0xb138e861, 0x2d906eb5, 0x8e364103, 0xb6d2d553, 0xda8f31fc, 0x699d7bc0, 0x96a0ef4e, 0x9dd042b7, 0x8f650daa, 0xf3daefcc, 0x6f22d321, 0xc216b288, 0xd8290365, 0x8b8d9926, 0xfc520711, 0x00005f }, { 0x974f436, 0xc0c94a42, 0xf88c59b, 0x841a2e9c, 0x8dea2123, 0x1d7d6db2, 0x523a2453, 0xf30edca2, 0x8602459e, 0x1a3ab81d, 0xac8e8c01, 0x67d9edc5, 0x1762ff88, 0xab974242, 0x51a840e, 0xbc0395a1, 0x0001c2 }, { 0x8be9093d, 0xc5e1a6ba, 0xaa00fc97, 0x4a1e2533, 0x1ce3c99c, 0xd3c289c0, 0x62b66289, 0x80dc6416, 0x9ab06fb8, 0x869b810d, 0x4c7a9581, 0xab54e8e1, 0x618cb783, 0xa6c132d7, 0xcbadd741, 0x9fc04293, 0x0000e1 } }, { { 0xc4ccae66, 0x2619e0ae, 0xaad3a9ae, 0x8e19af3f, 0xafbdd42b, 0x6a3b3449, 0x99f0db47, 0xcb35db9a, 0xdd08d8c2, 0xd6e613d1, 0xcf7e88ea, 0x8cd0b153, 0xd7afd29b, 0x525d43f2, 0x24273ad3, 0x5cdbf2c4, 0x000139 }, { 0x58620792, 0xe33a1383, 0x5b19bee9, 0x72658939, 0x667641c4, 0x8d42f973, 0x5a5ee1c7, 0x414e7c, 0x6e85c1e2, 0x313f2841, 0x240f61f, 0x7eb07a1a, 0x96843cd1, 0x7c73e096, 0xe9a980f0, 0x913fd7a5, 0x0001cf }, { 0xd065c5d1, 0x7eb1b01e, 0x3d9bd1dd, 0xd0cc0cf4, 0x138b9ef, 0xe5ec9ccc, 0xf084f8a4, 0x85c28e23, 0xbdcc70b8, 0x56e15b00, 0x2c9d756e, 0x9ee121d9, 0xf0315ca, 0xd3ce6ddf, 0x2d8e04f9, 0x740e15d, 0x0000b6 } }, { { 0x403e07e, 0x718de3f, 0xd0e23b92, 0x6c01363d, 0xb0d2b661, 0x3470a76f, 0x4962d9ec, 0x3fa96f3, 0xddac75ae, 0xc5582047, 0xa914d6b, 0x1a16dcf5, 0x249d2f44, 0xc442e4a5, 0x4915e285, 0x8b5c8c74, 0x00011e }, { 0x3480d716, 0x1fe3343a, 0x40ff4733, 0x6b38ecc0, 0xcd6a6a0, 0xf0dd9e5e, 0xe857f090, 0xef498f75, 0xb5b529b6, 0xb58e6aec, 0x16f5672c, 0xbd02bf26, 0x39e40068, 0xcb656a6f, 0x39b43a01, 0x766d3574, 0x0000d9 }, { 0xad58ec13, 0xfa604ea4, 0x5cc7331a, 0xa1e407d1, 0x7106c409, 0x5a4a32d3, 0xab96bf78, 0x4244d8f5, 0x6b2ed2c0, 0x9d582101, 0x433f7a7c, 0x889e73e6, 0x80f8d14, 0x517de85a, 0x7a97bbda, 0x9396ddb2, 0x000075 } }, { { 0x8a7371c4, 0x83ed4660, 0x32299d93, 0xebd9a017, 0x359f21a3, 0x66589e2, 0xdd7cc8b5, 0xb84b94a1, 0xbe70633a, 0x2bb9dc39, 0x9830d085, 0xb959bc2a, 0xab649239, 0x878439, 0x4f871206, 0x2d50f2a0, 0x000059 }, { 0xe314c968, 0x4988bf98, 0x6ee1b2b2, 0x1efde419, 0xf017c803, 0xef6dc0b5, 0xa8f6a185, 0x13de2180, 0x6df4a801, 0x310753b3, 0xbb73f8d0, 0x601bfe93, 0x87ece658, 0xa6878590, 0x602f729c, 0x6373121b, 0x000003 }, { 0x3a6a2ec7, 0x99071da3, 0x8636b0a0, 0xe9c3b5d8, 0x94706548, 0x5b7d352, 0x6afeb22b, 0x2dbfd7b, 0x2157cced, 0x1c39bdaa, 0xc247fd16, 0x815a9ce7, 0xdbe93cb9, 0xadee60e9, 0x3f56ba0f, 0x688fb0a6, 0x000089 } }, { { 0xcc1871d0, 0x16bddd5e, 0x32f35476, 0x51f15162, 0x3807e0d3, 0xf8b21227, 0xcfe58a32, 0x9f037781, 0xa3b6c7d, 0x8fcfb0f3, 0x3bbc2df9, 0x340874d4, 0x9dd101d5, 0xb4e237f9, 0x66604ed8, 0x1191a4a4, 0x000060 }, { 0x7cb2244b, 0xc94beccd, 0xa767222a, 0x2502c508, 0x63ce64c4, 0xdddd8b8c, 0x3abdc7a4, 0x2b291a69, 0x6e221b6, 0x851bc6da, 0xbac1c947, 0x1a732c41, 0x46f06b3d, 0xa37b9c71, 0xecb52ba3, 0x26b6461d, 0x0000ac }, { 0xfec29eb, 0xd91848db, 0xa5f83ca4, 0xdb3324, 0xb5f82b7a, 0xc3c5b64f, 0xd4ff6435, 0xcbcf4085, 0xfb147e2, 0x69bef228, 0x948fe46f, 0x3658a6ab, 0x216dbd23, 0xd82f46b3, 0xe38faf17, 0xbcb71a79, 0x000170 } } }, { { { 0x26443585, 0xb3cebe59, 0xcedb2c0b, 0x42541570, 0xa0cf8e4a, 0xd0548e5, 0x2cca1604, 0xe26b757c, 0xeab5e6f9, 0x575ac1ed, 0x8ca692df, 0x4c7e09e8, 0xdca8caa1, 0xc4fe8332, 0xd01c3693, 0x1f4ee5e2, 0x00004c }, { 0x6854549c, 0x9c614e45, 0x39d93e55, 0xda792e21, 0x81c521c1, 0xf22bf601, 0x602aa227, 0x5f32203b, 0xa28db2b7, 0x523df699, 0x317f0bcd, 0xeaea7cdd, 0xa2af7925, 0xac9a329f, 0xadbafca1, 0x63914f3b, 0x00013f }, { 0xa17436db, 0xdc4d7c5b, 0x2ae5121e, 0xd747acab, 0xcb4c5d7e, 0xf335d473, 0x62b87f7a, 0xaf8888a5, 0x707c4e95, 0xfe5a86fc, 0x529f2948, 0x326b444e, 0x357cde3a, 0x69a84368, 0xcde6ceca, 0x8b990abf, 0x00009f } }, { { 0x7f09be55, 0xd068c606, 0x26e05220, 0xd031c424, 0x75afd431, 0x3009d5d5, 0x493206ab, 0x97251bb5, 0x3bc46435, 0x8db1e9f3, 0x2dc8c43, 0x6390d16f, 0xc28b6566, 0xcb03fa7a, 0xec74ec56, 0xe5cb4424, 0x000188 }, { 0xdd2818e9, 0x28f523e0, 0x61638bad, 0xbbab8d66, 0x1ed57fbd, 0xa325dacf, 0x840d06d0, 0x4e66330f, 0xfd39b383, 0xc4c96b0f, 0x3d4071d4, 0x4addaf25, 0x29c6c30c, 0xbb794758, 0xa325f25c, 0x810c4e29, 0x0001a5 }, { 0xd086d186, 0xda8c8e14, 0x98c9eb31, 0xbdcaa264, 0x513be8a0, 0xdef3e238, 0x93d4d8ab, 0x7eb2ff42, 0xa84dac63, 0x722974e4, 0x35921ce7, 0x7330bfb6, 0x7b2a9bc4, 0xbd3ddbb5, 0x51b5d639, 0x39297974, 0x0001b5 } }, { { 0xcf0494e2, 0x2163d538, 0xc02d1244, 0xd0f253d0, 0xb3095479, 0xa06fd98, 0x2405c0a8, 0x2331f428, 0x902eb963, 0xe0420bdc, 0x80e4264f, 0xf04b7829, 0x6eb1b47, 0x488acdf5, 0xf393ab57, 0x559f2bbb, 0x00005c }, { 0xcea4b486, 0x47ffbf84, 0x37569970, 0xe2b1c689, 0xf0c90b16, 0x55ba7d98, 0x860ab68e, 0xcf0466e8, 0x6fc2f71, 0xcf1936e7, 0x5f856586, 0x5653139d, 0xa8d330df, 0x69aaff6, 0xb0d30261, 0xfa5bda63, 0x000044 }, { 0x28b68f62, 0x44ff4ea9, 0x2b850c3, 0x14a71d4, 0x9b3749fd, 0xdb145cbc, 0xdb720926, 0xeb38ba8, 0xa116fd9e, 0xae0f624c, 0x242f87f5, 0xf689ff15, 0x9eb03ce9, 0x9b044410, 0x2ef58589, 0x441c53d3, 0x0000bb } }, { { 0x5ac3a359, 0x4319340d, 0xad819cd4, 0xb92d864e, 0xd5506564, 0x60937f4e, 0x30244b5f, 0x644cbe65, 0x9fa47fbd, 0xb1111b9a, 0x27916461, 0x654dc3ce, 0xfee9986b, 0xc9b94fe5, 0x1ea8f412, 0x27b07281, 0x0001a1 }, { 0x4763b34d, 0x3e10b3a9, 0x84eebe2c, 0xf15b7978, 0x9b94d787, 0x162878bc, 0x2482d1ba, 0xe859ce92, 0xd29d91d3, 0x33c1e414, 0x9729092b, 0xf62270ed, 0x79faffa7, 0x86d599f9, 0x78e53cc9, 0x9bbe4b0b, 0x00001f }, { 0xb407d351, 0x443ce811, 0xb14175d4, 0x18ff1240, 0x6c535aa, 0x42c3411, 0x81db098e, 0xe0cbe0cb, 0xc3c8d1e8, 0x3919641d, 0x4818d2d0, 0x38456435, 0x81b405d5, 0x6bb27985, 0x9ed1d59, 0x44afdf86, 0x0001bf } }, { { 0xe6ef35ee, 0x74ff2071, 0x79c8312c, 0xcbe7abc6, 0x3720c0ac, 0x9bddb21e, 0x63166fa4, 0x571a3299, 0xf03deb40, 0x47904733, 0x195df5ce, 0x908d815a, 0x26e5197a, 0x547626df, 0xa2f78621, 0x86386fcb, 0x0000ba }, { 0xcb4afee, 0xb496ca87, 0xea0bc2c5, 0x636743e7, 0xdf9e0286, 0x35427ca9, 0xcb747e3d, 0x741d15c3, 0x6da51dad, 0x5557de16, 0x6f1a5d24, 0x80c4d70e, 0x9c260b43, 0xca750952, 0x9a8dc4a4, 0xf2fd5cf4, 0x0000d3 }, { 0x59033b6c, 0x5aa0a92f, 0xce3db2a2, 0x31c9853, 0x6c5fce60, 0xd652ada7, 0xb338084e, 0x289e1694, 0x3080401a, 0x920a657f, 0x6e74b43a, 0xffa39bd, 0x61216d06, 0xd8e1d6a6, 0xd12543d3, 0x1bb73879, 0x0001a0 } }, { { 0xa9bd31a0, 0xcb432107, 0x2143fced, 0xa59df7b1, 0xf79cd41d, 0xa5cb0ab8, 0xdc486ca1, 0xf4196868, 0xb32ab4b2, 0x8cbab8df, 0x786c5e6a, 0x2e4e82cb, 0xb72063a, 0x7892aece, 0x52419e12, 0x1f882e30, 00000000 }, { 0xf498c30c, 0x2d9632b3, 0xc8bee905, 0x4e3d0c31, 0xffd49a4e, 0x6d5a948, 0xad9bac4d, 0x8ee2a540, 0x26013611, 0xb3d06d99, 0x12622f71, 0xae97afec, 0xdd748448, 0x9a2fd9, 0xa37f554b, 0xef24fc7e, 0x000023 }, { 0x25d29322, 0x60c94c79, 0xbc8b6def, 0x76af2ac6, 0xcda17a7, 0xe75bf0df, 0x8524fd63, 0x90371db5, 0xc2058ba8, 0xf3176a37, 0x1407f6e7, 0xb53c38e3, 0x97f42aae, 0x16864eb5, 0xe9de00f8, 0x1443f6fa, 0x000114 } }, { { 0xf9e0e38d, 0xc0cfd46b, 0xb58b06a5, 0x47a11775, 0xf485a995, 0x60de3c98, 0x5e924438, 0xd5350ebd, 0xad2f38df, 0xf374140a, 0xff73e0c9, 0x98ea94c6, 0x812e9ac4, 0xbe9f0673, 0x3823a314, 0xb9cfec2b, 0x00010d }, { 0x90023118, 0xb162482d, 0x9e6b5df3, 0xb799ef1b, 0xade745f9, 0xa761ecdd, 0x98c57620, 0x7b3e0350, 0xf81396c8, 0x4c6c4d66, 0x9d67c0a7, 0x60981fd7, 0x28677c57, 0x6d345502, 0xad17fab7, 0xafc54e60, 0x000123 }, { 0x7330768f, 0x36337fd0, 0x42b2d915, 0xe320bbd8, 0xf5462d82, 0xfbcd19ac, 0xf4e588eb, 0x3cd13060, 0xc370acd2, 0x727deb96, 0x76d80ef2, 0x328306c3, 0x980dc5ff, 0x366e848a, 0x36556e33, 0xa7277ffe, 0x000023 } }, { { 0xa71ea5ed, 0x4a0b27b4, 0xbb7e8423, 0x8565ffc9, 0x71ff59a0, 0xd6f3f2bd, 0xd7f4f5d1, 0xdde3ca8c, 0xc7f02247, 0x3642b13c, 0xcd747049, 0xf3a79bef, 0x9cc0f81c, 0xd858c058, 0x53a81fed, 0x23a268b3, 0x0001dc }, { 0xa5c3e073, 0x78b6d9fa, 0x855e5f2f, 0xd38d4107, 0x77c66eeb, 0xc9f502c8, 0xd2f37d58, 0x92fd54d9, 0xa3c6750a, 0x18265753, 0xaf217d13, 0x90e3269, 0xb9aa1908, 0x7b26130c, 0x858624be, 0xa914014c, 0x000041 }, { 0xf473037d, 0x5bcde1bd, 0xa82305a6, 0x16b32e74, 0xc32139f2, 0x1a700ed7, 0x60fb2f0, 0x814ec7fd, 0x75383760, 0xe3712a39, 0x117665ee, 0x46238887, 0x5130e17, 0x7bf1cd51, 0xf3e8f02, 0x40ea6860, 0x00000b } }, { { 0x739d9bd3, 0x9e37b9de, 0xdd282aa3, 0x813c6c5e, 0x5b64af73, 0xb4bece94, 0x858f5c32, 0x5a7c7a20, 0xc932e352, 0x6c761939, 0x7da58b2, 0xb430bfb2, 0xdd83d9b6, 0x41b740b6, 0xf5790e7c, 0x4dd6462a, 0x000139 }, { 0xf7ad492c, 0xa50946e5, 0x87d9c89c, 0x25176695, 0x1f0ee25e, 0xbbc99854, 0x64c0671a, 0x8b169880, 0x34333428, 0x2b07b494, 0xf2d5e0ee, 0x5188de85, 0xf0bdbe73, 0xd1201016, 0xb68b2402, 0x658c181b, 0x000135 }, { 0x5a15081d, 0x8e628e3, 0x6d521592, 0xad6f46fc, 0x5b8e01d3, 0x610bb1f0, 0x87d516d6, 0x6330b2e8, 0xd0206002, 0xb5497be7, 0x54a8d971, 0x4d2155f9, 0xb6380346, 0x32c5a407, 0x112b91f2, 0x915768af, 0x00004f } }, { { 0x8c38cda6, 0xdd62bc3b, 0x70a47604, 0x27614e0e, 0x26daf866, 0x6d67053f, 0xa0df1893, 0xb3d5e903, 0xb3af0fb9, 0xde9bfce4, 0xcb397080, 0x7ee7cee2, 0x757c8294, 0x250b61ee, 0x11c3c769, 0x7bb56e20, 0x00005e }, { 0xe25f3fb8, 0xe593ccf6, 0x18d4a0da, 0x3be2d468, 0x83f49f1e, 0x14945729, 0x18acf492, 0xbc3ddf7, 0xecef5702, 0xf3e52d9f, 0x3e97fc7c, 0x33645ef, 0xdc49fde5, 0x2bd8c81e, 0x3b7e5351, 0xa9755824, 0x0001e5 }, { 0x3d65e174, 0x37c10ff3, 0x7bac4e5f, 0x2208edcf, 0x3b08ed69, 0x5e7f767b, 0x8cc7adbe, 0x420918c, 0x7fd173b9, 0x7e1b31c8, 0x211b008b, 0xbc035fc6, 0xd5262413, 0x5307d98f, 0xca06524, 0xfdcf691c, 0x000147 } }, { { 0x315737e5, 0x71a3dd5, 0xe9e37089, 0xb7ff2d97, 0xe2838ea2, 0xa92bdfcd, 0x7a3c50d1, 0x900cf177, 0x7050f53f, 0x44e4fc00, 0x2d7c4fdf, 0xb125042f, 0xdd0b6913, 0x28b7928c, 0x1dac3d59, 0x53edf6bf, 0x0001d2 }, { 0x71747b13, 0x6b9a1918, 0x9ccee3d6, 0x6861d0c7, 0xf61c295e, 0xfdcc4656, 0x47a01b3, 0x2b2a9c5a, 0x2621fc80, 0xf2a4b07d, 0xd92025df, 0x99a42036, 0xeacb4458, 0x3b778a04, 0x585131b4, 0x4bc620aa, 0x0000c7 }, { 0xca8f6688, 0x74911640, 0xab047987, 0xef72ef4e, 0x34807dad, 0x3deaaa7b, 0xa06aa311, 0xba2a98c1, 0x483fc52d, 0x89a8db82, 0xe2a9889e, 0x5d4cc280, 0x2fd928f2, 0xb5aff87f, 0x62f82ba, 0xaebd88e3, 0x0001b1 } }, { { 0xf2801be5, 0xc840cc99, 0x423b581e, 0x6e03e06, 0x482181b2, 0x57d3ab56, 0xba77553a, 0xc4b867f, 0xeb395045, 0x10b53b93, 0xc84a19a1, 0xe4cf5e4b, 0x9a4bd3d6, 0x3ace1ecc, 0xc281c8ed, 0xd1a84ae, 0x000114 }, { 0x26608994, 0x965f3c74, 0xc392fd1e, 0xdaab849, 0xd9d1f4a7, 0x43ab3115, 0x79504fc2, 0x318e1af0, 0xd118ad7d, 0x89635aee, 0x6a7d4bb6, 0x4a994c68, 0x2ef181cd, 0x1787c242, 0xdd742006, 0xb0e608ac, 0x0001d0 }, { 0x9d488d35, 0xf36dc5b7, 0x889724dc, 0x14b69b5c, 0xf5fa6aaa, 0xc2ba7a83, 0x419e9f4c, 0x86fd0c99, 0x12c6bb2c, 0xf5697cb4, 0x340c495, 0xbf3cbb8, 0xe01796ce, 0xa746638d, 0x49f1ecc1, 0x5238e241, 0x0000d6 } }, { { 0xee4cb7eb, 0x3d0f83b5, 0xd3c75e45, 0xcd154792, 0x1cfff88c, 0x871e2fff, 0x6afb1123, 0x8234acb, 0xdc07617e, 0xa0f66942, 0xd2ff0baf, 0x78ebe88b, 0x40f0efef, 0xa4241720, 0xddd8ada6, 0xa883f88b, 0x000184 }, { 0x266aa35d, 0x7867aa91, 0xb90cf57b, 0xd53f4b99, 0x9ad7e549, 0xbdfda042, 0x4bfa79e, 0xca19e464, 0x380863d6, 0x9f418440, 0x22511d5c, 0x9555e6e4, 0xc81735a, 0xd54b6f36, 0xdc7def77, 0xfc98fac6, 0x00007f }, { 0xfce029e7, 0x3648b015, 0xa16b0345, 0x85f2c0d7, 0xa05ce190, 0x53f46865, 0x6069ef54, 0x3b995826, 0x4b80983, 0x841e008e, 0x61067ebd, 0x80b88829, 0xc750799c, 0x398c99ae, 0x89e022d, 0xd3907198, 0x00004b } }, { { 0xee8804bf, 0x5860ecab, 0xc161f222, 0x26087f4e, 0xcb79dc75, 0x53da1a93, 0x6723476b, 0xd3ae57ba, 0x1e1ce3a7, 0x86a5f2d8, 0x332737c0, 0xc3a61fd, 0xcb4f8e8f, 0x37d83b3c, 0x5831b70a, 0x4d0fd273, 0x000133 }, { 0xdd2e7a7c, 0xd483ca5e, 0x5a803f0e, 0x770db15e, 0x23625f57, 0x71eec1c5, 0x127a2cae, 0xe032f501, 0x386035f6, 0xb2f8e135, 0xd1df3d9a, 0xa1861ac, 0x26bf4867, 0xfa6b8748, 0xba664a53, 0xb037d99e, 0x00012f }, { 0xec4fb2c, 0x562d798a, 0x3a6c12bb, 0x109b7b24, 0xb9b6cfb5, 0x2d11399a, 0x4db40f4b, 0x62bf52a, 0xdb751e2f, 0xb03366db, 0xd5a17a5d, 0xaca7019f, 0x2d1bb6df, 0x46edfe78, 0x2b702681, 0xbfcb0e52, 0x000109 } }, { { 0xb6e5b404, 0x8fecf7d0, 0x68ac2692, 0x616ce51e, 0x3b65bdad, 0xf6b3f9ef, 0x1c0db8c2, 0xd2af925e, 0xbf76cc1f, 0xd930ffb6, 0x437b1075, 0xb4c79b8c, 0xe13b7a87, 0x8b3c1e63, 0xdea1e420, 0x1f381547, 0x00017b }, { 0xe7f9584f, 0x8cd3da6c, 0xdbb9c112, 0x8fe10d9a, 0x7d406e42, 0x6055836f, 0xab7aacd, 0xd0742d1f, 0x4cf57b0e, 0xb3d18f8f, 0xad0ad4d, 0xbc3bbbb6, 0x594e3bc7, 0x7d0e61c8, 0xe4c2524f, 0xd579bb68, 0x0001a1 }, { 0x46451570, 0x39a22199, 0x98c28dfe, 0x28b5534b, 0xa1d60648, 0xcd94b495, 0x41331317, 0xe1c754d, 0x9f975aef, 0xa04719a5, 0xfa8dc956, 0xe4e8da, 0x2c2b918d, 0x55fea0ab, 0xafded518, 0x892c4ef9, 0x00008f } } }, { { { 0xd7aa71be, 0xf5aab75, 0x9bc85c9, 0xdf8b993e, 0x1eb0dec7, 0x837d67cf, 0x5b210ce8, 0x358ce288, 0xcf37d96d, 0x61db83e5, 0x8f018bf7, 0xafb14169, 0xb4580439, 0x96a411f4, 0xefdcb6a0, 0x4721fc21, 0x0001be }, { 0x44e51197, 0x255fabfb, 0x24a93b62, 0xcd30a361, 0xc709f071, 0x8c96276, 0xbe18e376, 0x5ce5ae9b, 0x2566329d, 0x6f384098, 0x64e4cffa, 0xc887a4e4, 0xdfd0c96a, 0x20e7698a, 0xa1e61b9, 0x4b3dc0e, 0x00018f }, { 0xede72111, 0xdd7f6846, 0xdf80a81b, 0xd001bca5, 0xb3e33052, 0x58533024, 0x87e983ab, 0x456302df, 0xcd2af084, 0x8ed04a70, 0x2ae4995d, 0xdf463cf6, 0xf7b7a063, 0xdde88fa2, 0xfb1df2fa, 0x9ce6405a, 0x0000a3 } }, { { 0x7cec9abf, 0x19c75e5c, 0x2d7ef84a, 0x8f11d83f, 0x2c4da8c7, 0x49645b74, 0x2fbd62b9, 0x898d7b2, 0x18a3f330, 0x4c8fcd1, 0x3e698b0b, 0x79eaa326, 0x9367039c, 0xde614dcd, 0x4ecf0086, 0x1430dfce, 0x0001be }, { 0xa55a0e37, 0xcdafb6ca, 0x24375601, 0x2df69c74, 0x76bbacb4, 0x83870df7, 0xb9ce5004, 0xadf1025d, 0x9aa401a7, 0x1ed167ac, 0xfd19efc3, 0xb5628092, 0x6cc88a40, 0x18ef885c, 0xc15d62df, 0x91ad4809, 0x00014e }, { 0xe706e4e4, 0x8eced33c, 0x3c13cbe0, 0x3b11edfd, 0xae0d7b48, 0x94603de9, 0xc0f18a36, 0xb620bcd8, 0xb9762061, 0x19208bb, 0x8021c66b, 0x2020781f, 0xf0857423, 0x697f4b9b, 0x35d81507, 0xa95a3fa1, 0x000014 } }, { { 0x8a7cedbe, 0x1a2b7b94, 0x651531d7, 0xaa85598e, 0x3eab82ad, 0xa1a76f68, 0xdccb4e65, 0x2f77bedf, 0x8024e01b, 0xef40a838, 0xccebdfa3, 0x5e9fcef0, 0x50f52ee0, 0xddd77e99, 0x786c82c6, 0xc03a2d61, 0x000186 }, { 0xf6f3791e, 0xb57faa8b, 0xcde67b31, 0x7af21744, 0x8c412561, 0xc0922936, 0x1d9d3c09, 0x9c770fae, 0xcc20a231, 0xf0f20b65, 0xce6c37cf, 0x154d79cf, 0x9db83c03, 0x719c265a, 0x3433df97, 0x448624d9, 0x0001d2 }, { 0xc05c6670, 0x2a1c667f, 0xeb59c75d, 0x81666e60, 0xfb790187, 0x6746b105, 0xd80ba38d, 0x1b9607a0, 0x2ab328ea, 0x54881e25, 0x730183ab, 0x7dee8326, 0x4f9ee906, 0xa72c54c2, 0x15967ad4, 0x2baed86e, 0x00012f } }, { { 0xedd4fcb, 0xd4e5907, 0x6ab1b6da, 0xc90186d6, 0x1e009f32, 0x1b4415e4, 0x410c791c, 0xf4a4bb32, 0x3e9054cf, 0x7a49a265, 0xcc5d7b98, 0xbaffc1ae, 0x37cfc07c, 0xb4813b17, 0x615c5b16, 0xb6d4cef4, 0x0001b7 }, { 0xd11917ad, 0xf11eda06, 0x15b1e4f9, 0xb8a4c5e8, 0xaa5161c4, 0x9d0fb5b9, 0xae515c1, 0x75acc784, 0x4c8196b7, 0xefabcb51, 0xeacfdd9c, 0x90d3aa6f, 0x9578a487, 0x836404e5, 0xb23f7bb6, 0xc751b5d3, 0x00016b }, { 0x65bff2be, 0xcdc8e5d, 0x85d872f8, 0x9ad040f6, 0x42927efc, 0x358ec580, 0xe3bf78cd, 0xc4c423bb, 0x95b63f1a, 0x80defd92, 0x5032f9f4, 0x8e742ddb, 0xd4c35a92, 0x915a00b2, 0xfb446fd5, 0xfdaba0b5, 0x0000b2 } }, { { 0xb15fbb2e, 0xaed0c026, 0xe75dbed9, 0x169fa786, 0xb108fb07, 0x5d111a4b, 0x706f7a2c, 0xc23cc00b, 0x69174182, 0xd053aeb1, 0xcd6756fc, 0xf176130d, 0x5281919e, 0x72d896a1, 0x1c3ceed0, 0x841b2cc1, 0x0001e1 }, { 0xfd8757a9, 0x83dae055, 0x7f90f82b, 0x65a89273, 0x96877e45, 0x2bae1b32, 0xe8d0c983, 0xa6ad7c08, 0xdee5d80a, 0x4fe708c9, 0xec1b68d7, 0x8e980673, 0x151d1642, 0xca998d76, 0xa0e56a93, 0xa35b3c99, 0x0001ba }, { 0xb257c494, 0x7ccd5765, 0xa51e048d, 0xed48fbf, 0x7a6be51, 0x4db1d9ec, 0x71a55234, 0xff9d369a, 0x84efcdb1, 0x419ae8ea, 0xf188d1dd, 0xe1575a31, 0xc90d4ec, 0x316bcaa, 0xf212d681, 0xfa0af795, 0x0000fa } }, { { 0x2daa7abb, 0x2056de09, 0x1bff6e8c, 0x3f679393, 0x8c2146bf, 0x99939112, 0x53dbfec7, 0x57ae7975, 0x9a383b73, 0xb3d66173, 0x7787c7ab, 0x3b46e706, 0xe2aa4aa2, 0xe2504263, 0xdd201ff6, 0xe0605df9, 0x0000a1 }, { 0xbbe39faa, 0x86b1f759, 0xec33246c, 0x95e8593c, 0x931304a3, 0xcaac3d3b, 0xaaad69d0, 0x38caa27e, 0xc497691e, 0xd85e0320, 0xa3b07033, 0xefdba1c9, 0xe2b317d7, 0x183c1636, 0x5e549e54, 0xec078e90, 0x00008e }, { 0x69b38a44, 0xf09a0cef, 0x2407c257, 0x2b1a6adf, 0x62eb6d5e, 0xabc488e8, 0x120ea982, 0x2d2219d0, 0x2ad40fa3, 0xaff13573, 0xa5833d1d, 0x56057b11, 0xda9bf248, 0x7412be4, 0x80df576b, 0xc4798033, 0x000054 } }, { { 0xb11e3823, 0x663149a9, 0xb384189f, 0x6355ee36, 0x897738d8, 0x416a5118, 0x3e8222c5, 0x793d8e88, 0x2687b4f6, 0x6b197f7c, 0xebd0549e, 0xa74206f3, 0xec647d44, 0x375bbdf5, 0x1c77ae20, 0xc6c3060a, 0x000100 }, { 0xbd3846a5, 0x8e48dcd8, 0x233bf39a, 0x98914570, 0x63576f60, 0x72a59eec, 0x71832f42, 0x34cd1aa6, 0xc6c8ce44, 0x46b1bda, 0xacdc9c7e, 0x8ac41ebd, 0xc77fc216, 0x47929dee, 0x805e5bd, 0x87570755, 0x0001d2 }, { 0x2bb1818b, 0x90ed46d1, 0x54b61b18, 0x744887e2, 0xd6e9773a, 0xd95b903c, 0x31bc43bc, 0x7b8c33bb, 0x242441ad, 0x51e383ba, 0x8037fd94, 0x44a6c6d3, 0x651e3027, 0xccb077fd, 0x828a133d, 0xd13962be, 0x000060 } }, { { 0xc4414c09, 0x80696447, 0x76ae355a, 0x31059db8, 0x4d38261b, 0xcb772ea, 0x423b0683, 0x9f50f38f, 0x85e380cf, 0xde420a7f, 0x67b35df5, 0xea47fbfa, 0xafdd6ccd, 0xde02a16d, 0x7b9a34b2, 0xd8d19ee6, 0x000033 }, { 0xe8f67373, 0x628245bf, 0x8f3bc88f, 0x41db44a3, 0xfc7db1b4, 0x2291a5d9, 0xdc96ae07, 0x4a6f4d96, 0x66b43d0e, 0x3831abd3, 0x7239fc02, 0xc27bb061, 0x681c45d8, 0x3e15584c, 0x666666b6, 0xa7adaa6e, 0x000112 }, { 0x8dbfe1a2, 0xd66676a9, 0x995291e2, 0xf23fdf13, 0x221ab7a7, 0x354bb15d, 0x2fd09a5d, 0x1be95c7c, 0xd2a695f, 0xd8d3ced4, 0xcca69bed, 0xe3fbc40a, 0x714c86ce, 0x3aa7daaa, 0x4a5dac38, 0xf2229048, 0x00016c } }, { { 0xddd53c3, 0x429d1a57, 0x105588d4, 0x704dbf6b, 0x9d68a7c1, 0x4da2815e, 0xeb9d9d32, 0xa515a6a3, 0x678c25fb, 0x74aa8b49, 0x80d6ac6, 0xbe3bf65e, 0xed1bd1f5, 0x31dce2bc, 0x8a6b4d3f, 0xf5c41010, 0x000017 }, { 0xd739ce2f, 0xc577ea21, 0xd0060624, 0x62fc7094, 0xdb2f2c91, 0x5e51af37, 0xbbf5ef, 0x374795bd, 0xd370691c, 0xc622fb03, 0xd7bc25d6, 0x2ecc07d2, 0x39652fae, 0x465df77a, 0x14e5bed2, 0xf0e9930a, 0x000199 }, { 0xb84daf34, 0x5fe4b65f, 0x379558be, 0xd4d1c548, 0x4e3a86a9, 0xb5e7b06, 0x7c9e430e, 0x3c288b01, 0x885cbc31, 0x8a7f63eb, 0xd8d77a8c, 0x2c1136ae, 0x4c90e282, 0xcc46603c, 0x80f95eb1, 0x3e00464f, 0x0001c2 } }, { { 0xc7bae3f0, 0xca18ba46, 0xca7b25c1, 0x87220943, 0x73a3c248, 0x3e23bcf7, 0xa61d8cb9, 0x133386cf, 0x1b7ed50d, 0x90f409da, 0xe5505600, 0x60233ce0, 0xb7e1cf21, 0xa3b1c4ad, 0x9298e0d3, 0xb2b6e675, 0x00003a }, { 0xb2635ad6, 0xf926a05e, 0xa6885064, 0x63f9d242, 0x3c6f0c51, 0x51fc470, 0xc435051b, 0x73aa8a51, 0x99b0cee3, 0xa7609763, 0xddc5aace, 0xb00cf4df, 0x30e0d792, 0x544d179d, 0xa13bc96e, 0x6dedc7f5, 0x0001c8 }, { 0xb40ed51, 0xd003b5e3, 0x12495ba7, 0xbee9a7bd, 0x8dbcb027, 0x20d44f1d, 0xc918449, 0xb69e1676, 0xa54b8785, 0xe81673d5, 0x621cd724, 0x1b3a88ba, 0xd396d522, 0xd6acb1, 0x5a74bab, 0xc7686cbf, 0x000177 } }, { { 0x6116fe3f, 0x21db5b34, 0xbbb9e624, 0x33d0ebb6, 0x768820a3, 0x7b88097b, 0x3f6fa38, 0x2c0d3a73, 0x6f5115f5, 0xe4ce062d, 0x4ce3f831, 0x2f0363bf, 0x1aa3c079, 0x83cf7b1a, 0x1c7f375e, 0xc6f9938, 0x00010a }, { 0x6f97f3b9, 0xb93d8635, 0x607ccbe8, 0x186e8914, 0xe00b54da, 0x54eab003, 0xac95d1fb, 0xfbb11626, 0xb803f47b, 0xb7a0bf67, 0x78b206f6, 0x8d1aa0a7, 0xa2c1f904, 0x8ccf4855, 0xa8647d21, 0xbc82e0a8, 0x0001b0 }, { 0xbd54bb4e, 0xb06105c6, 0xde91aa03, 0xa9000f1f, 0x3f8acb76, 0x7cd92ed1, 0x6e53eef7, 0x6da4d142, 0xf1afd051, 0x2c34f499, 0x3fa73886, 0xf947e401, 0xda8902b, 0xae1308a3, 0x5967c8c6, 0x730524b5, 0x00013f } }, { { 0x700ec787, 0xa159dde5, 0x50075bd6, 0x1ec6212d, 0xb53f368c, 0xbc10280f, 0x79dfa0b6, 0xc88df07d, 0x9c529757, 0xb1cd5fe2, 0x1addd426, 0x96e104ca, 0x5304ad69, 0xb8922f15, 0xcad1d93d, 0x2c4adb34, 0x0000e5 }, { 0x369ba7cd, 0xf178ffd4, 0x75a19e79, 0x14cf6944, 0x6b9ed83f, 0x29508a25, 0xfe0523, 0x9d408b62, 0x24364cdc, 0xbca4e6d9, 0x4f2985b9, 0xdbacbf57, 0x8e6faf9, 0x53e2b578, 0xff613ef4, 0xc365e2d3, 0x0000d7 }, { 0x4986cce8, 0x53ffc51a, 0x5010807c, 0xf85adee9, 0x51ecaeb1, 0x4bb1ce3b, 0x81607f3b, 0xf5956ab3, 0x2c6cdaef, 0x97c0d1f9, 0x83e78c5a, 0x7a681f3, 0x7bf5df40, 0xecf6d7fc, 0x953bb411, 0xb2c15799, 0x000038 } }, { { 0xf2cae3e8, 0xae57afa7, 0x279551cd, 0x88d6394a, 0xbf734d73, 0x2730a2e9, 0xa2f5386c, 0x1a0f6fee, 0x6be843a1, 0x4b86bb85, 0xe69bccde, 0x1567fbfd, 0x4cc58a25, 0x1ea68640, 0x318bc615, 0xcd213817, 0x000164 }, { 0x6b539128, 0x5ffa59d8, 0x40800724, 0x55014468, 0xc2aff174, 0xa9bf911d, 0x6cec0b9, 0xdab1fa6e, 0x61e9e76f, 0xe4f12a87, 0xaba5868a, 0xbf9e3107, 0xe9566148, 0x40f304a9, 0x8bf6a4c3, 0x2242330c, 0x000114 }, { 0x520f7e5a, 0x860a8dcb, 0xb8de180d, 0xb3d7a2e0, 0x52531f47, 0xcec2afaf, 0xdb2a4c3, 0x967cab60, 0x910bfc32, 0x12ff4890, 0x1c785af3, 0x1723ebfd, 0x221558c6, 0x882cfea9, 0x9e9557b0, 0xc3d0b229, 0x0001f7 } }, { { 0xd6cdb378, 0x580116c3, 0xdffde49, 0x84451411, 0xe185e38, 0xbbe4b7ab, 0xd89609ae, 0x41de0751, 0xde8533c2, 0xd823a868, 0x27341ee9, 0x28c8f2d5, 0x902cd8bd, 0x2c8b7065, 0x57fcc042, 0xbf1e46ee, 0x00000d }, { 0x8e78be23, 0x16bf1444, 0x507a8b7f, 0xe1853e74, 0xb763db61, 0xc5a2ff15, 0x6cfd3a43, 0xf349338b, 0xb75dd979, 0x2a8078ec, 0x5b0e2264, 0xc2f516da, 0x3cfcda24, 0xb52fa10f, 0xd2a8fbb, 0x5f0b4bb8, 0x0000ee }, { 0xd3a718d, 0x987ff057, 0x2d33fa2a, 0xccb2bfe7, 0x9bb61c7f, 0x4dd7d1fa, 0x8a3bf597, 0x84f3db87, 0x212bb217, 0x684dd1da, 0x6c8ae89c, 0x3a9f3ef5, 0x8e14e513, 0x421ce811, 0x17c42130, 0xa53bb68f, 0x000181 } }, { { 0xa7820858, 0x1e4cb412, 0xdc7f35d4, 0xcff6457, 0x1f6201d6, 0xb01f8e0, 0xe0d680f3, 0xd80eed8f, 0x249a4281, 0x16fbfde, 0x35b41307, 0xe1a23801, 0x6b818298, 0x8ef70dde, 0x21a1cfa1, 0xd1eefda5, 0x000185 }, { 0xb9f3ce8a, 0x1ecd9035, 0x375ac80f, 0xcabe74d7, 0xcc41f417, 0x32ce550c, 0xc6d46eb0, 0xdde1fdd, 0xb97ee8d1, 0x8d87ee85, 0xbc114192, 0xa6c1d42f, 0x8406011f, 0x57938454, 0xb751c682, 0xb8e58b13, 0x000143 }, { 0xb895fb2e, 0xd4bf866b, 0x65392348, 0xa40dceb5, 0x7532f17a, 0x26726add, 0xdebeca9b, 0xe7d994ee, 0xf3ce1d39, 0x9bcd3ed9, 0x2117ca0c, 0xb542dd83, 0x2ca9b236, 0x3db29878, 0x5ec14839, 0x21f72835, 0x000191 } } }, { { { 0x9d4eecec, 0x182191d2, 0x5d1e1b4b, 0x302801d5, 0xcdc502e0, 0xa059e9d7, 0xd07f2cb8, 0xd7e2178e, 0xe54e315f, 0xc784ff03, 0xc4e4490a, 0x7a9100e5, 0xb6ff51e7, 0x87d0f4e3, 0x394134b5, 0xb11ad35b, 0x0000be }, { 0x88635725, 0xe07c9278, 0xf21b1285, 0x6e9989fb, 0x235c639, 0x983af03, 0xd8239144, 0x67827346, 0xc4a34852, 0xb0edbbd8, 0x99220d86, 0xfac4f47b, 0x3531b8f2, 0x5bb9236f, 0xb849a99f, 0x725e597a, 0x0001e8 }, { 0x6bf2f66c, 0xa9535e9, 0x63960194, 0x1547394b, 0xbc00c5fc, 0x3595725a, 0x4c5409b8, 0x9f8d3e15, 0x6d2a1aca, 0x1f9f4c46, 0xd390cc6f, 0x7955be22, 0xd08725db, 0x7691736d, 0xd6ee78f9, 0x10f6f51e, 0x0001a3 } }, { { 0x89d1108b, 0xeeccbbf9, 0x4ca62c7b, 0xb7bc7a5f, 0x9cd867a1, 0xb85cfaf9, 0xa8251bdd, 0x7b807332, 0xb6505434, 0x441e93f9, 0x91f7b78b, 0x5541a060, 0x1d51a4bd, 0xd11a39db, 0x3f1d732c, 0x873859fd, 0x0001dc }, { 0x1f625207, 0xf0785f49, 0xda9f352c, 0xbffef8f2, 0x297c034c, 0xf316a4a3, 0x78d3c155, 0xf6864403, 0xf1e25fd0, 0x5a90b11, 0x7fc31cf8, 0xc07e0385, 0x361c574f, 0xcab0bf36, 0xfdd7d456, 0x8e9823bc, 0x000001 }, { 0xd05952ba, 0x5ebefef8, 0x63117ab1, 0x85f805bc, 0xd3147d33, 0xe7a2a5c1, 0x10d4795f, 0x91b528c3, 0x5b3bb3aa, 0x339a7b33, 0xe21a2df6, 0x621f25aa, 0x33040205, 0xefa4b960, 0x19d32d7, 0xd72abf56, 0x000086 } }, { { 0x72244cac, 0x20d81b71, 0x90a0a9bb, 0x6f3cc94d, 0x48b3051d, 0x77c985f, 0x6ce65f90, 0x2dc45c4c, 0x2f97de25, 0x9d9f4ff7, 0x9144434c, 0xb4a1aeac, 0x80d72223, 0x4f10b458, 0x3b3fb401, 0xba1e8c22, 0x00016a }, { 0xfff396ea, 0x7010b5e2, 0xbdff0732, 0xac66403f, 0xc8e3e8fd, 0xcd24746a, 0xede65dc0, 0x9ac01ea9, 0xa2f77823, 0xbc162f0e, 0x35730d21, 0x29930ad1, 0x97024f6, 0x58d1ad99, 0x80fd9d39, 0x2530d7bc, 0x0001d2 }, { 0xec0b81cb, 0x6e3a5b71, 0x825d8795, 0x782ce608, 0x2cd2f034, 0x65442b7a, 0xc4b2b74e, 0xa496ef8b, 0xfa820df5, 0x75c050cb, 0x29555f4d, 0x21737ef8, 0x9f78729f, 0xeac12679, 0xb3ca6ca2, 0x504eec6e, 0x00010f } }, { { 0x87da9bd5, 0x9e51bbad, 0x838370ad, 0xf064356e, 0x2c343f90, 0xee12fba8, 0x555e17b7, 0x62925d76, 0x78eae308, 0xf093bc6d, 0x5232a376, 0x187d8749, 0xa28fe6ee, 0x8189f726, 0x4d62d132, 0x79d58639, 0x000002 }, { 0x8b7f0986, 0x1f92c42, 0x4654c74e, 0x58e9e305, 0x1c973624, 0xd27900b7, 0x606ce500, 0x78f5d712, 0x5b3d0cd0, 0xad000c9f, 0xcf27a55f, 0x9b4d9008, 0x6af1dd27, 0x8f31de5b, 0x97912145, 0xce419045, 0x000141 }, { 0x9f50ba79, 0xac7248cf, 0x4ad68b95, 0x9f18d788, 0xbb5721d0, 0xadd5a83d, 0xb3382784, 0xf4f14a72, 0x5fb9da92, 0x47aaf8ad, 0xab79e23f, 0xcc85efe7, 0x3dda8148, 0x3768364d, 0x789e8e54, 0x33c994d0, 0x0001bc } }, { { 0xa2c59cd7, 0x76d1dfee, 0x81ae127a, 0x4bf4ff15, 0xf25ce90, 0x6335888, 0x29052143, 0x3b5c6e9a, 0xaffe8449, 0xa6c7a64c, 0xddbe7c07, 0x8be7b45f, 0xc62322de, 0xa4297644, 0x458707d8, 0x3d4e596c, 0x000022 }, { 0x8d98f38c, 0x8fa84a79, 0xccd1430c, 0x8e066b2f, 0x3eb7632e, 0x36e06d84, 0x1ba0b31d, 0x1a19b5a4, 0x46ec6e3a, 0x70e0e2fa, 0xc3865876, 0xdf694c54, 0x19f90a2, 0x43547c40, 0x335887f2, 0x17da70f3, 0x000043 }, { 0x65f2d62c, 0xc47d7a2e, 0x46a42dd2, 0x955f49e4, 0x32155906, 0xb236aebf, 0xc40eb831, 0xd24b0bda, 0xd956cf7d, 0xc84fc9b, 0x63ddfe85, 0xab2a926, 0xbe1792b8, 0x9f4f45b8, 0x69f1a1bd, 0xd11b4ff3, 0x0000db } }, { { 0xfb420bf7, 0x333bc38a, 0x29459329, 0xc98da193, 0xf1b22637, 0xcb1a1dbd, 0x809d74cb, 0x4fc63c50, 0x10fd20a8, 0x6452675e, 0x7e896744, 0x7d6d418a, 0x8a4f34e6, 0xcad5f3c9, 0x420f318f, 0xeb8e9699, 0x000188 }, { 0xb3a97ac5, 0xce328fcf, 0xd65fe368, 0xedde6ce3, 0x12327afc, 0xfdd2feea, 0x4680cb79, 0x50c21140, 0xbc133248, 0x6fd6ced7, 0x7fde6263, 0xd2522d44, 0x3d5ca1e9, 0xec407cc0, 0x4e89da79, 0x25b70060, 0x00009b }, { 0xade25360, 0x2ff3c217, 0xf760acd7, 0x1c4072e0, 0xa5b230b0, 0xe29d28fb, 0x304284ba, 0xd93cff4c, 0x761e1e21, 0xcee47024, 0x8445baef, 0x3df2a63c, 0xc6c0e72c, 0x1e5843e5, 0xbc45de2b, 0xe497809f, 0x000136 } }, { { 0x9c2b7228, 0xb38d8148, 0xe32bc4fb, 0x18eb6f9b, 0x745f8cbe, 0x23626a5c, 0xf7f6335e, 0xc1b8865c, 0x6d860aa1, 0x911337d5, 0xe9afa1dd, 0x6024c291, 0xb1568cf7, 0xf25a6a8a, 0x4388699c, 0xd12c7b6d, 0x0001d4 }, { 0x6036969e, 0xb4fde030, 0xaa9044f, 0x5eda6d89, 0x2f9f528a, 0x79dc830a, 0x1ed45c12, 0xad13b7a9, 0xc093890c, 0xd7374653, 0x33351d45, 0x29aa84d6, 0xac3cb8b0, 0xd644b24a, 0xd5e7825d, 0x7c31d9c7, 0x0001ad }, { 0xfed66d9d, 0xc6b8e053, 0xe784ab9c, 0x466ede07, 0x952477a6, 0xbdd1e6ac, 0x93e55a19, 0x402c995f, 0x9615d42b, 0x2de632d0, 0x2dcd48ee, 0x5d79eceb, 0xddaf86b9, 0xd2e3f330, 0x36d42590, 0xcdbaa6a6, 0x0000f1 } }, { { 0x2f6b2bf6, 0x68cd5271, 0xa1fa96e4, 0x1514bdbd, 0xf25c4163, 0xcb74b4e5, 0x8c09a9db, 0x696df95d, 0x4ee6ff72, 0xbda88fa4, 0x684e3f3, 0x333ea014, 0xa05e442a, 0x8b9abc85, 0x21d05936, 0xd4757abc, 0x0001d2 }, { 0xcc71e5cb, 0x39e204f2, 0x78c6e8da, 0x3c7dd7b2, 0x27a0eb8a, 0xcedac18, 0xf6e284d2, 0xbda17953, 0x9d46bebb, 0x900c72a8, 0xcdf4adb4, 0xa627c271, 0x1564c074, 0x4dddb91f, 0xe5dd97ac, 0x17cb0f94, 0x0000d9 }, { 0x227986b, 0x460e2f48, 0x9b9198d0, 0x3f83252d, 0x39bfbec8, 0x5fbc8c6a, 0xfc8ae2b9, 0x4922add2, 0xfc49a642, 0x321771c5, 0x753f453f, 0xfd9d0e25, 0xdfac045, 0x901dfa3f, 0xdcc076b3, 0xa4ef7797, 0x000102 } }, { { 0xc856d2c1, 0xedd251f4, 0xb36fbf83, 0x9aee05d5, 0xfced1850, 0xe06fae43, 0xd91d017a, 0x3c864a2d, 0x56245304, 0x36249053, 0x85932172, 0x8fc85e3c, 0x86a89b89, 0xecc51a45, 0xfc40976, 0x19a58db3, 0x0000ad }, { 0x9a5575b5, 0x98fd6cc3, 0x6626663e, 0x907e647b, 0x18184523, 0x3af526cc, 0xcbe163ba, 0xc73ff6f7, 0x58498ee1, 0x43c77100, 0xc2b7f20b, 0x9595bc52, 0x78d61dd, 0x4de9d705, 0x7d92530d, 0x62989fa0, 0x00013c }, { 0x61c2eef4, 0x7aa4f38f, 0xd5dff8e5, 0xeccdb8d0, 0xedf00b4e, 0x894e0904, 0x9e1f56da, 0x5c106b6a, 0xcba39a8e, 0x6fcdc5b3, 0x454f40da, 0xe66e0940, 0x488d0b0c, 0x4eafa120, 0xf3b623bc, 0xa853afad, 0x000017 } }, { { 0x504eeb66, 0x437be022, 0x3179038, 0xc55c6502, 0x9602d31a, 0xb3a8e1e6, 0xa74110aa, 0x49e30243, 0x58f26d4e, 0x43bbe02f, 0x916d7877, 0xee4109a0, 0x73f72372, 0x8731e008, 0x2fa99d6c, 0x985b112, 0x0000b3 }, { 0x2d5dfe8f, 0x53688c6c, 0x3dd302ec, 0xc2825fc, 0x6c79b983, 0xf1cb3d7d, 0xbf4328e, 0xa9e12851, 0x2d1572ec, 0xd59d1be1, 0xec1fce06, 0xe41498e9, 0x859b6b8b, 0xa3d6e7c3, 0x72139cd9, 0xba245b33, 0x000111 }, { 0xc9ec62e9, 0x2e5fcf60, 0xd527601, 0x38145386, 0x5e78ad94, 0xcd3c2b2a, 0x26fe1a46, 0x2d95d739, 0xa2331216, 0xb4d8dd1f, 0x70f2e731, 0xc14372bf, 0x3175dac1, 0x1d3e0b40, 0x7ab4403f, 0x1206414a, 0x000041 } }, { { 0x8faff7b1, 0xde80529, 0x3da71e26, 0x69d84f86, 0x318fce5c, 0x872f1b47, 0xd002e887, 0xf1153ea8, 0x5584f757, 0xcdf86c68, 0x694747bc, 0x58447be7, 0xe78b760a, 0x6b328550, 0x4d422db5, 0x8285dcc0, 0x000074 }, { 0x29602d26, 0x6662eba7, 0xdb292a6, 0xb01a7118, 0xf4d73158, 0xddf99762, 0x8e9a8637, 0x64388f15, 0x8195b5b1, 0x3aa4597c, 0xfcf2330b, 0x1628ecc9, 0xa9fba218, 0xe7bc44c2, 0xa59d3ee0, 0x81234cf0, 0x000164 }, { 0x37f5e758, 0x3def7406, 0x14301aa, 0xdf26bfa3, 0x1c085536, 0x73c600db, 0x9dedb780, 0xa570691b, 0xc388d654, 0xa68e1a52, 0x2c2e2eda, 0xeb0eb808, 0xbde43590, 0x5d816337, 0xb245b924, 0xc770aeec, 0x000011 } }, { { 0xd403061f, 0x1f664b9, 0x7fc6d3cb, 0x170f5c9a, 0xb208b4d9, 0xb4f1c72e, 0xa8d12f92, 0x32f21d36, 0x7944d188, 0x277fe75f, 0xf3ff2e28, 0xb1eb79b8, 0xbbd1655b, 0x5695b3c4, 0xd4fd6a9e, 0x2916c2cf, 0x00018a }, { 0x51374bc8, 0xff4ed8be, 0xd25ad654, 0xc254afdc, 0xc474c93a, 0xa8bfc40c, 0xd927f2db, 0x30fb6b2e, 0x5b80e223, 0x37fad31d, 0xc7d76ff4, 0xc51d52a6, 0xb1ca695e, 0x7be65254, 0x4ddf001f, 0xf99e312a, 0x0000f2 }, { 0x670250e7, 0xf84f9b37, 0xeb7fa23d, 0xeb11b47a, 0xaae71cee, 0x4344ded, 0xe4c5084a, 0xd1dcbf3b, 0x54dc5d7f, 0xf9426667, 0x1feaaece, 0xaa36bb64, 0xbd74d8f1, 0xbff0c904, 0xab3c2aaa, 0x1b0f208a, 0x000170 } }, { { 0x6db7e684, 0x149ee3f4, 0x59319a46, 0x62d090d5, 0xc1f1ccda, 0xab27808f, 0xc4529690, 0x9b502444, 0x12264d93, 0xce2ed3e, 0x4500268a, 0x36aa56a9, 0x2703e44a, 0x79862c52, 0x6b3bc09e, 0x52bc144d, 0x000103 }, { 0xd70a293f, 0x59abec6c, 0xe33c69c5, 0x9601b9a1, 0x8152999e, 0xe59ffd12, 0x5a0e9097, 0xabb605f7, 0xca4aba5a, 0xdeae6a03, 0x330034cc, 0xbaf0a59b, 0x314bb311, 0x4f6ffd24, 0x753e75c5, 0xdb2f5fc3, 0x000128 }, { 0x4e6cf238, 0x8f0b7c0a, 0x59f6492f, 0x3f3c63ad, 0xa6cbfb43, 0x43d8563c, 0xb6de1980, 0x2ca5d5b5, 0xaf8748b4, 0x2ea75898, 0xde698905, 0x9721a019, 0x3c5d607e, 0xf28aae64, 0x45b37f68, 0x3d295fc4, 0x00016e } }, { { 0xe3cf5cd9, 0x2da4a98f, 0x5c923682, 0xc8ca618d, 0x1ce5b48, 0x8f714d89, 0xc0310664, 0xd2b10baa, 0x8535044c, 0x3c989f23, 0x138fcf39, 0xc3c6aeb2, 0xaa07f265, 0x64befb7, 0xd56f6e4f, 0x7f93f178, 0x000044 }, { 0xecbfcfd5, 0x1cf6016e, 0xe50e0c50, 0x8535fbd4, 0xc85c0cf7, 0xe9b7ee8f, 0x86a40ef7, 0x565fc261, 0x4235dab1, 0xcb9c32a3, 0x54ae3bf9, 0xf001cfd9, 0x2ef940cc, 0xd34c1d88, 0x9719d1c2, 0x7761cbe2, 0x00019f }, { 0x9cc8979e, 0xae8641e0, 0xa6583611, 0x8a5450ba, 0xaa724f02, 0xf65aa67f, 0x11854e00, 0xc023c91b, 0x57ba8247, 0x29cd3173, 0x9f35772c, 0x8d077fa0, 0x675ca1fd, 0x250d48f8, 0x750e32f7, 0x62a4ac73, 0x0001d0 } }, { { 0x95ae99c7, 0xfc3c978c, 0x118f3f11, 0xe3728fe9, 0xd9371ba7, 0x75bc18db, 0x6e2620c4, 0xf1e555a7, 0x6d6be88d, 0x738bffaa, 0x753fb965, 0x803ac52e, 0x31711d8, 0xcce837cd, 0xd26fa4e2, 0x806f2320, 0x0000ad }, { 0xe95b2ba6, 0x6c5439fc, 0x903fb976, 0xdf29f279, 0xd5c66b19, 0x206a22c4, 0xca3f15b3, 0x4457148c, 0xc1a84a54, 0xc25c8833, 0x8d9f8f60, 0x40c50b95, 0x44307945, 0x8e16a8ca, 0x25e97c41, 0x718762ac, 0x00003a }, { 0x26ee4f8e, 0x5b98a444, 0xe5e7e44, 0x117032f2, 0xae2bc22f, 0x6faefb1e, 0x13dd4620, 0xb16ddaa4, 0xdd7a0b71, 0xfe6499a4, 0xbd1c1024, 0x5d0e3d5b, 0xdbf2fbb2, 0x4a6e53f, 0xbfdbf206, 0xa4cc28bd, 0x00008c } } }, { { { 0x5ec47425, 0x6e0d0dfd, 0x4786a592, 0x1ef8c8ca, 0x7d2e18da, 0x99209529, 0xaa9bbdca, 0x9805eddd, 0x6731965b, 0x83e9a438, 0xb8969ab4, 0x21c7e874, 0x9b977062, 0x974a8bfb, 0x4288b5e4, 0x5733bb05, 0x0001cd }, { 0x431462e, 0x306aa082, 0xff108865, 0xc167dc72, 0x684b2e13, 0x66b49858, 0x9f0d20b, 0x800b8d7a, 0xb8757df0, 0x61ea3d4, 0x929e2426, 0x192014c, 0x5f262737, 0x528bc559, 0x448f2856, 0xe63a15c7, 0x0001b1 }, { 0x9d76587f, 0xf071a7b3, 0xa0d8080e, 0x94e34f44, 0x5e365df6, 0x2708fe99, 0xd597e39e, 0x902861db, 0x63f66fc9, 0xd3e5bc64, 0xdd3d8ed8, 0xb1194830, 0x85fa75b, 0xf1f2cc43, 0x19add63b, 0x3e328503, 0x0000e2 } }, { { 0x4b8586f1, 0x1d6f55bd, 0xb0c42abb, 0x9ed8f89d, 0x89a838bb, 0x8de176b0, 0x9ef661f7, 0x1b3aa625, 0x90ab0a04, 0x52b4d8d5, 0x6b7ee63b, 0xd371e2ea, 0xb61ffa53, 0xeb20545, 0xd13b4418, 0xd191aa60, 0x0000a0 }, { 0x4f39b2f7, 0x55e00f03, 0xd8b823f3, 0xfff6a981, 0x8e33301e, 0x22eb04d7, 0x50d3fc2a, 0xc4343238, 0x95553406, 0xacc31750, 0x1d335249, 0x2f8059da, 0xfacdffdf, 0xa48ae69c, 0xe64470a0, 0x7057a87c, 0x00012b }, { 0xb5aafeb4, 0xd3d8502b, 0x77c84475, 0xdd045d72, 0xae750252, 0x6056245f, 0x5867ad7c, 0x35b4f33a, 0x82f50dda, 0xf0aafc31, 0x76e5b58f, 0xcffc76e7, 0x471b59ac, 0x6a5270b0, 0x4bdba71e, 0x49228d5d, 0x000057 } }, { { 0xad1ef8a0, 0xd71517f4, 0x43e0c130, 0xa55fe409, 0xf2167369, 0x31a982c9, 0x5dcd6176, 0x45464c1, 0x29ee5f6, 0x6490d96d, 0xe9d62864, 0xe72342db, 0x9e17f686, 0xd0d6502a, 0xaacd588d, 0xeaa956de, 0x00004a }, { 0x82cf3d1d, 0x2c5733b2, 0xd91ae40e, 0x66be22c3, 0xe0d34003, 0x1d085edb, 0x8337fadc, 0x5492adbf, 0x2e4e7619, 0x3e282044, 0x1da135b4, 0x1620f94a, 0xdf034a8a, 0x3d3d4322, 0x38e6c1a4, 0xbeeb337e, 0x000175 }, { 0xc3460913, 0xeef3b987, 0x20a9b273, 0x98edf312, 0x1c67894f, 0xe7686e5, 0x84cbc7da, 0x89719f5e, 0xeef51187, 0x59854744, 0xaec9e6cf, 0x3d300e23, 0xc3bc1c98, 0x530e887c, 0xef6bbcad, 0x976a2680, 0x000025 } }, { { 0xa240df96, 0xc7324415, 0xd9a139f7, 0x5a8ebda4, 0xcb706534, 0x28c9d456, 0x63636f05, 0x73d0df02, 0xd65d9377, 0xc916c784, 0x35300636, 0x29f2a5a6, 0x229bce33, 0xfaf552a3, 0x3540503c, 0x733fdf3c, 0x0001e3 }, { 0xade111eb, 0x97f30489, 0x6ef5a8ac, 0xbff2f045, 0xb0426a0b, 0x3ba9091b, 0x454cf51f, 0xcd41a2c3, 0xd36411fe, 0x93417b7a, 0xb20bfdb5, 0xbd6b7286, 0xa0fa80bf, 0x1831c094, 0x7cc37cad, 0x2fb444a4, 0x0001f2 }, { 0x5a073d22, 0x53bf8df8, 0x653b8b45, 0x47dc3b66, 0x6df12d4f, 0xdc346463, 0x7abdaaaf, 0x55476ecc, 0xd317894b, 0x6ad7eed3, 0xb686caf2, 0xb678c65b, 0x45f8f710, 0x33f3cad, 0xd8f7d134, 0xccc89d2c, 0x0001ab } }, { { 0x8babed47, 0x36ff3fb5, 0x6dec1af9, 0xfb270534, 0x1433bfc6, 0xc8810238, 0xd6f077df, 0x193d7008, 0x2eccead7, 0x56d0efe0, 0x6c092cbb, 0x59ae9a74, 0x1c94c587, 0x93979746, 0x8df23084, 0xd0111747, 0x000155 }, { 0x8b43b0bb, 0x8b70c93a, 0xa6fc1b10, 0x7bfee7f6, 0xa30aa05f, 0xceba1e57, 0xc906b2bc, 0x39975a3b, 0x9562de2d, 0xf49c3eed, 0x3d4a06f2, 0x1e6fdc16, 0x4c4189cb, 0x992403d6, 0x6eea1155, 0x968601cb, 0x000144 }, { 0x1aa620af, 0xa74ef382, 0x250610b2, 0xb631b651, 0xbe1fd30f, 0x92db4f50, 0xc582a3e4, 0xb897d5b5, 0x1c044d5d, 0x93987644, 0xe4bb3fcf, 0xc8dba5c5, 0x3a33d59d, 0xb70851ae, 0x28e3837b, 0x3bfd43b9, 0x000135 } }, { { 0xe64b833e, 0xf7382911, 0x7dd800ec, 0x5119dc5c, 0xbf998db, 0x579abca4, 0xbe40930a, 0x8c3dc32, 0xed750ff3, 0xa769b551, 0xd494af1e, 0x43e7525, 0x6f1a1af0, 0xdfbf7c32, 0xc02e2735, 0x75413521, 0x0000e6 }, { 0x92232b3f, 0x8ed06ab3, 0xedc9bcfa, 0x28651f9b, 0x74742b26, 0xb422af16, 0xbb06ff9, 0x6b49b63, 0x29d14fa3, 0x35ddff00, 0x5be90175, 0xfd3e8cec, 0x5f589347, 0x74f54756, 0x60e603f9, 0x93d1610c, 0x000181 }, { 0x2f281f15, 0x3e566710, 0x937d7bcc, 0x8c119dfc, 0x975560cd, 0xe236335, 0x4b07d0ee, 0x16b647de, 0x81ee9403, 0xd192697e, 0xf311af85, 0x28563101, 0x6d7cc1e2, 0x3931d878, 0x661ccff, 0xd16cb8ef, 0x000103 } }, { { 0x68f99768, 0x1d6ea765, 0xc3064494, 0x8de1e187, 0x8851cb10, 0x8e0dfec, 0x84956dc0, 0x770172ab, 0x579083c2, 0x653dac2b, 0x477f20ad, 0xa29022a4, 0x5d9072b3, 0x72c7379c, 0xad0a418, 0x25727f13, 0x000067 }, { 0x8ebdd435, 0xdb84a4ee, 0x881fe2ba, 0x481e6549, 0x3d9abc09, 0x512b21e9, 0x844ff477, 0xb4747b5b, 0x31772f1, 0x77dfd824, 0xed6e2cba, 0xac3e3ebe, 0xd57f661f, 0x81e44711, 0xdc01dd37, 0x1755564a, 0x0000eb }, { 0x25a6ecf, 0x88f2c7ec, 0xd08dee32, 0x4b369ae5, 0x768cf6df, 0x798e2edc, 0xa5741534, 0x8a28eb2e, 0x464999bd, 0x80dec674, 0xd3539ca, 0x78961e6c, 0x9d17a7db, 0xa443addb, 0x5074667a, 0xc247997b, 0x000036 } }, { { 0xbca87525, 0x32266410, 0x3e99371f, 0x32fbd5cc, 0x939d9e94, 0x811a88a2, 0xda504a89, 0xdc6d5dd5, 0x88911f40, 0x7a59bf25, 0x7db0ea1b, 0x43e7647c, 0x6882917c, 0x7714d62c, 0x1519dad1, 0xd12a95f6, 0x000143 }, { 0xb19647b5, 0x63f0f0a2, 0x90b138e4, 0xb0cd7134, 0x222ed989, 0x7e66c842, 0x74efdd8f, 0xa5ffb3af, 0xbed6d522, 0x3e41f947, 0xc3344b76, 0xfb84776d, 0x95fde6d6, 0xa1627df5, 0x3646d2ea, 0xe523ed02, 0x000006 }, { 0x474363c5, 0x4b7b8f9c, 0x424ad3c4, 0xad7737d2, 0x69777b0c, 0xd7e17255, 0x3cb398d3, 0x2670f87e, 0x6d081a0, 0x65d830b2, 0x22337aef, 0x6818ef15, 0x50655077, 0xa80b48fe, 0xb78154f7, 0x5b1252f1, 0x00001c } }, { { 0xfaaf7167, 0xf5c3a3, 0x64d59f79, 0xc04d038a, 0x8586b016, 0xc9aa0ffb, 0xace6b5e6, 0xdadb5608, 0x22a0f3c8, 0xa71495e8, 0x6a4bacf0, 0x94d688d9, 0x284a6d10, 0xfc901101, 0x9eabbfe0, 0x92b51cef, 0x0001e3 }, { 0xbaaa4888, 0xd2c8b38b, 0x3fee5037, 0x41988c8f, 0x7c7e9d20, 0xe68472ee, 0x15f70931, 0x9735cab7, 0x24ff964a, 0x5dd05800, 0xe40c7147, 0xc166f63e, 0xe7798d88, 0x5edf679a, 0xc6e647db, 0x26c18b46, 0x000025 }, { 0x1a6e8ff1, 0x4c75ed67, 0xa23994d5, 0x38dca52, 0x149cb406, 0x270003e7, 0xffe9d4bb, 0x7c10f84e, 0xf4af4a7b, 0x8b22c029, 0xe3d86014, 0x6bf296d9, 0x2b1ba2cb, 0xdb54161e, 0x710ffc97, 0x94fba383, 0x0000ff } }, { { 0xe7107224, 0x6168a85b, 0xf9b2e79f, 0x5722303d, 0x135f256b, 0x3807b764, 0x6e76c13d, 0x8b74457f, 0x51a77073, 0xc9d5d1b6, 0xa5fd7458, 0xd6eaef62, 0xf4fd5dd, 0xb23f27d5, 0xdafb2e95, 0x90898c93, 0x00016a }, { 0xb471fb91, 0x3721a3a1, 0x91f8d332, 0x810ce68b, 0x1a98a188, 0x151a8a9b, 0x1e6c703, 0xcfc946eb, 0x96670bc0, 0x4b9f0de0, 0x19e267ae, 0x9cf6638d, 0xedbcdde8, 0x5c18f7bf, 0xf342a603, 0x3a21c65a, 0x000125 }, { 0x97299aeb, 0x6f17864b, 0xbd8f6e06, 0xb2102c70, 0xc23987a8, 0x6a216f92, 0xb349492c, 0xffbeb640, 0x11628b73, 0x244d49d5, 0x1df49678, 0xe210538d, 0x7dbc620c, 0x6ce404bf, 0x40b2af8e, 0x798881d1, 0x000134 } }, { { 0x3594bf1b, 0xadf30e15, 0x7f9ce275, 0x7dbab612, 0x95af8c5a, 0xc81b9f73, 0x892d2083, 0x4ba3a1db, 0xb36fb85f, 0xc8ef185b, 0x5922aae7, 0xbc23b096, 0xe93cfcca, 0x7b4b9424, 0xf4c1616d, 0xb280191b, 0x00018f }, { 0x689ec1ea, 0x126dab6d, 0xabcaf6e3, 0x91b47843, 0x2270807d, 0xf7be2871, 0xa44ca76b, 0x881046b1, 0x5838e5ef, 0xfd57bd12, 0x4e2c8287, 0x9e1834f1, 0xd41324de, 0x4bb8b8b3, 0x26104e7d, 0x23fc452, 0x000139 }, { 0xd549890a, 0x15091a57, 0x323c5cdd, 0xed0d0d51, 0xa9a6fb7, 0xd699c454, 0x34d350a4, 0x4c0b8655, 0x485a8c35, 0x7a2de717, 0xeef49849, 0xc245945a, 0xf683009d, 0x58fb3bc4, 0x57713ec6, 0xdc84de3e, 0x000108 } }, { { 0xb7378a20, 0x9835a173, 0xaeeb4cf, 0x743c8325, 0x4a71e0dc, 0x301e3589, 0x7a04728, 0x237b3063, 0x7d02896, 0x10cde3e5, 0xa71b1786, 0xe87a61e7, 0x4296fac7, 0x7bcb130e, 0x4cf43e49, 0xbc1dc1e6, 0x00015b }, { 0xb132a245, 0xd959549b, 0xf6d7e2f6, 0xfc389b0b, 0x30ed6ffd, 0x85d8be63, 0xb86074be, 0x97855ca8, 0x3acb23eb, 0xc447160f, 0x90b237a3, 0xd450a0b8, 0x6f363d11, 0xa6001e51, 0x6ff9e39f, 0x9817aa83, 0x000193 }, { 0x883cbdbe, 0xbddf41d8, 0xf0a69d65, 0x8ec598ef, 0xd67e9ed2, 0x44fb6c45, 0x1875d8d6, 0xc1639d5c, 0x8c63cbc5, 0xc52b85b6, 0x5b4cd527, 0x236c0d15, 0x56f73c09, 0x70e2c800, 0x180c3c24, 0x8d199be7, 0x000019 } }, { { 0x9c0d96d3, 0x2ab3d243, 0xeb27de85, 0x642afc24, 0x78e69a66, 0xd4dfe310, 0x40fdf818, 0xcd2779dc, 0x9aadc215, 0xb585806d, 0xef8dd044, 0xcbb389fa, 0xc4c7c3f1, 0xf94b73b, 0xec982286, 0x15f20f38, 0x00016e }, { 0x8a2fa88c, 0x8838230b, 0x8c94a252, 0x8ac4814d, 0xfdd3a952, 0xc0909c50, 0xa54fb25, 0xbb44c790, 0xf718a57d, 0x6e32a714, 0xba7d59a4, 0xc0c95385, 0x4cf255b1, 0x12f4551, 0xe59df480, 0x54064ab3, 0x00016a }, { 0x3a454bdb, 0xb39080c3, 0x2531cb7, 0xf780d100, 0x25369dda, 0xe042a09d, 0xad59e679, 0xdabc6aa9, 0x22579075, 0x5b1bc32, 0x9dd2d3cc, 0xb564d424, 0x53c0046d, 0x8fbdb2c5, 0x17c9ae1b, 0x5d54d3de, 0x000128 } }, { { 0x8b3b104b, 0xe82e96b9, 0xffd1951e, 0xac935e13, 0x8217f4b6, 0xa476ff56, 0xfb2f63e, 0x3c3dcbbb, 0x46e97a9a, 0x92c5a300, 0xc1a73670, 0x4914e8cf, 0xe7313251, 0xa0ed2457, 0xbf3aa482, 0x4f1a7cca, 0x0001cf }, { 0xbaba9e8b, 0x4d376253, 0xf00e5e9d, 0xf78cb54a, 0x298c8f02, 0x6aa8d5c4, 0x990a4c5e, 0x231c2598, 0x50164b23, 0x8894788d, 0xc08fd704, 0x3e37d51, 0xbd30c516, 0xcb25e008, 0xda9ce781, 0xa295dbb3, 0x0000eb }, { 0x11de310, 0xf5676035, 0x47cc94b0, 0x86dc6251, 0x95e44cda, 0xff8114b8, 0xcec80012, 0xf3b18462, 0x3167aeab, 0xf1f57ffc, 0xbccdab3a, 0xa1427590, 0xafdd18bb, 0x1147d3fb, 0xec7266bc, 0x41d64c16, 0x00004f } }, { { 0x62163e83, 0xc5af741e, 0xf4b88726, 0x257c308a, 0xf94e04ca, 0x2b768f20, 0x52783004, 0x9936667e, 0xe89b11d9, 0x5fef0780, 0xa031a02c, 0xded914ed, 0x3211a195, 0xd18bd097, 0x1fb95949, 0x6567081d, 0x00006a }, { 0x153c8541, 0x2736be48, 0xd99ae7b0, 0xfc3a82a4, 0x73f4bd4e, 0xfd2cc94d, 0xfeed59f2, 0x972cedd8, 0x16b86489, 0x511cfda7, 0xa6a81e8, 0xe679854a, 0xc45101d5, 0xb0cecded, 0xd93512eb, 0x4af1c8e, 0x000189 }, { 0xbb90bfa8, 0xae036389, 0x9186fdd2, 0x2c69ac7e, 0x1e7db367, 0xa6fbf63f, 0xb0ec030, 0x1a9ed741, 0xe65054f1, 0x8ed1b525, 0xc7a1fd17, 0x47ba5e7e, 0xcf3cb9fa, 0xc741532a, 0x4a979f11, 0xdc5d3ab9, 0x00012f } } }, { { { 0xab94c324, 0xfee2bd1a, 0xc9575d8f, 0x8e29bc47, 0x34a9c3dd, 0x556a97c9, 0x3cad51fc, 0x6b084b91, 0xc464a9f6, 0x4f0174ba, 0x433690a1, 0x6be7dd29, 0x4746b3af, 0x75b49875, 0x17878207, 0x642c6083, 0x000044 }, { 0xd12f8f42, 0x1fd66134, 0xf26165b2, 0x74138395, 0x7245891f, 0x432c2984, 0xa72c4af0, 0x4e3cdfb5, 0x3c8f31f9, 0x95c3f389, 0xfbfaef2a, 0xd37379e2, 0xa54c611c, 0x829b4d8e, 0x1a2af0c9, 0x13f2aed0, 0x000095 }, { 0x7ea509e2, 0x70763283, 0xfda1966b, 0x551d2021, 0x8c67278b, 0x53feff9c, 0x39725196, 0x5d31a79, 0x50115be8, 0x411fe076, 0x4f26b68b, 0x8fc48c2, 0x410028aa, 0x6e1d35e3, 0xd84c76e0, 0x16e502d6, 0x00000a } }, { { 0x5a9e69a6, 0xed4978e6, 0x9e056f8, 0xb9e18634, 0x533491e9, 0x813ea1b4, 0xd55aed13, 0xf8d140ea, 0x1cccafe9, 0x11c7c80a, 0x2e560ddd, 0x2d108299, 0x9fbed0cd, 0x78d82e04, 0xbb8c4c2a, 0x5f481ce7, 0x0000cb }, { 0x13b6d774, 0xd13824f9, 0x5d7f216b, 0xf7190763, 0x4361e2a2, 0xd6ae145f, 0x32f730cb, 0x7ae4a0c3, 0x58c6b034, 0x9a0ffabf, 0xfbdf0367, 0x231fbca8, 0x2a2e671b, 0x189dc6a0, 0x1980b673, 0x86bc8295, 0x000041 }, { 0xbafb5dd3, 0x32bb2b63, 0xcd7ca3ff, 0xa9391a0a, 0x83626c3e, 0x476b88b, 0x5e7eddbc, 0xf4aa221e, 0x837dc4be, 0x2e0e075d, 0xb208f860, 0x8d0c390a, 0x136f0c55, 0x686ae319, 0xb058052f, 0x964f4a78, 0x00012b } }, { { 0x9f4e9cc5, 0xda1c9d32, 0xf7627034, 0xd9b68d68, 0xfac33dd0, 0xd4b92847, 0xd9dde0eb, 0x20647c3a, 0xccbb9a03, 0x1694e5e5, 0x256062d, 0x5a0c8c8e, 0x5f443f21, 0x5372f714, 0xf2b2fed7, 0x7f92a9e5, 0x0000e3 }, { 0x6fd8098e, 0xf487aa8c, 0x88268316, 0x5073a236, 0x5b831130, 0xe7dccb1c, 0x289740dc, 0x5356661f, 0x6cf387e9, 0x54036e41, 0x313ac961, 0xaf15b8, 0xa8ac7730, 0x3ff6d68e, 0x52be063a, 0xc6b64249, 0x0000b9 }, { 0x65a49a0c, 0x8bd302cc, 0xc4f0dea, 0xc43f8796, 0x713c8841, 0xfd6691c9, 0x1da7cced, 0xcc611c35, 0xc8009681, 0xda5922af, 0x29607aed, 0xed4ffe53, 0xcdad2a8f, 0x5c5a59ac, 0xa98637a3, 0xbcbda6e9, 0x0001c8 } }, { { 0x2fdd1fbf, 0x44126ad2, 0xd40ec292, 0x54e7f324, 0x537535d9, 0xbccc1b5, 0x5bba4fba, 0xd4872af9, 0x465e11f2, 0xc5eca8d5, 0xed075f86, 0xfcc4e467, 0x41b59467, 0x35de35ce, 0x8dc0cf82, 0x101152f0, 0x0000c9 }, { 0xb6c80472, 0xe23dd6b3, 0xf69b6a36, 0xd506a363, 0xa7f640b3, 0x951eecb4, 0x1375b756, 0xb317bbbc, 0x4cde2c64, 0x25964538, 0x937a5334, 0xddd5d12f, 0x1975bc30, 0xc6117b8a, 0xd8d84288, 0xb389618, 0x000007 }, { 0xd17e2d91, 0xd8587cbd, 0x9844bade, 0xa27f08ff, 0xb6497b6c, 0xbf7ab8a1, 0xeaeb008b, 0x3bfc88cd, 0xdc2a476, 0xf96107b8, 0xb2d95e38, 0xfd5e2086, 0x523eb624, 0x66cf3394, 0x5fdb34e8, 0x92c3aea1, 00000000 } }, { { 0x6eb6c88c, 0xf7fb5a83, 0x7d9b83bb, 0x1ca56809, 0xc3e616, 0x570adcb6, 0x8954ae43, 0x3260707e, 0xc29768e1, 0x3b3c22a7, 0x54b2508c, 0x11a6ef68, 0x2f68d3b7, 0x8c5e0afa, 0xe46d7cb4, 0xf3b24bbf, 0x000129 }, { 0x85bfc183, 0xdea600f9, 0x64e11873, 0xa999bfb8, 0xd44abbff, 0xa2f03f41, 0x39e12a2a, 0xddded85, 0xf30ff9db, 0x9606cce2, 0xfdd8b3c5, 0x2367cfc7, 0x907f1f5a, 0x71535ffc, 0xf40ac475, 0x3e6b206b, 0x0000df }, { 0xf0827375, 0x35080d13, 0x2cfaa56c, 0xc6a7b6ed, 0xbeea5985, 0x279beb0f, 0xa506fd56, 0xa1a87b1b, 0x3f5b4639, 0xca1f6c0d, 0xf3809d9a, 0x9622ded1, 0x5062a099, 0x6afea13f, 0x96c0eece, 0x1986e06, 0x0000a1 } }, { { 0x225fc058, 0xe2654fbc, 0xaec2bd98, 0xc1e594e4, 0xd2bc8ab, 0xd0c7961d, 0xee8ce42e, 0x840a514c, 0x9255f12a, 0xb1773f5, 0xaf1bc94c, 0x97f15e70, 0xdb730c9c, 0xf6ae91e0, 0xe820429c, 0x7762e63f, 0x000046 }, { 0xe7d0f703, 0x37cd4c44, 0x3bdccb57, 0x72c6a63b, 0x45e1e171, 0x5ef63844, 0xc13a9b4d, 0x32d09f82, 0x321ff650, 0x2833fdbc, 0x3245c8bf, 0xdbcca5c3, 0x924b2fc0, 0xcd2acee5, 0x7993205c, 0x39b31748, 0x000087 }, { 0xcd700ead, 0xdf9cd728, 0x3cdb140, 0x7fb02d2b, 0x89a71ab0, 0x144a42cf, 0x4a2bdff7, 0xcf70c9c0, 0x94a589cc, 0xf716efcf, 0x74844af1, 0xd685530c, 0xb07ff1a, 0xfef084fc, 0xd27df7af, 0xeef5b12, 0x0001f2 } }, { { 0x56a3ee44, 0x7e942215, 0x7abe4fd8, 0x9edb9e8, 0xaf0a878d, 0x522df397, 0x777287ef, 0x22527cc0, 0x1f7a8e97, 0x75d9eb2b, 0x463b893a, 0xe077c971, 0xee184183, 0x989d2e62, 0xbbee7d78, 0x8bce4339, 0x0000d0 }, { 0x8bb6f052, 0x37737282, 0x5ffe03df, 0xee23b58b, 0x1e851a2f, 0xb78d6330, 0xb52d3a99, 0x59cede2, 0xd5f64dee, 0x9bd8e5c3, 0x3bdcc801, 0x87bc7c72, 0x1b982d8f, 0x7f0b4eb9, 0x4a43a8a9, 0xf4008e22, 0x000123 }, { 0x3c809c3a, 0x5caa69c6, 0x45891ecc, 0xa1524dcb, 0x54b004f1, 0x123f257e, 0x64856f66, 0x43eb0807, 0xb231732f, 0x6e25bfca, 0xfc27bb47, 0x7e30a743, 0x7fd6edbe, 0xa1385de3, 0xa915bda6, 0xd46431b1, 0x0001f3 } }, { { 0x32231c, 0x71cce080, 0x48eb8601, 0xcdd27ebf, 0x3d0d1f0d, 0x4683ebd8, 0x915ddb3a, 0xce5c3ed7, 0x7500136, 0x6582ed4f, 0x7f59f498, 0xb40c02c4, 0xe108ea1b, 0xf3b5427c, 0xaea8d135, 0xb8c1d82d, 0x00006c }, { 0xaa7d21fd, 0x805e4273, 0x7c67e1c0, 0x43d6157b, 0x76de6baa, 0xf4148975, 0xed1c9929, 0x718b550, 0x10dee5a5, 0x1a8d9014, 0x43aae95d, 0x599111bd, 0xd92c93d1, 0x1e6749e7, 0x90668997, 0xc0b65125, 0x0000fa }, { 0x52108f5c, 0x33284a0e, 0xc1d64a10, 0x8bb42448, 0x5efa87ad, 0x3bdbf6ee, 0x5b7f46fc, 0x5428fc46, 0x150a228e, 0x3687914e, 0x8ac2dcd6, 0x8ec794ba, 0xf24ad1f8, 0xc5d64f79, 0xf9c3109f, 0x5a9c0a30, 0x000009 } }, { { 0xa182c473, 0xa31ae0ce, 0x1196e608, 0x1f1f553c, 0xedbaa339, 0xcee58599, 0x542a7e58, 0x8259c0ff, 0xdeed0028, 0x61264516, 0xeb0591dc, 0x89192a6d, 0x801cba79, 0xa4432fc9, 0xdfb68da8, 0xa688d166, 0x0001c5 }, { 0xaec51eb6, 0x6af3434e, 0xd742ba5f, 0x51383321, 0xb002162d, 0xdeeacd66, 0xb8f1b8cf, 0x2cdee0c0, 0x81b50ea6, 0xad9955d4, 0x9ce669bb, 0x9dd59b52, 0xcc967f84, 0xcc702e35, 0xb530f469, 0x57b32c74, 0x0001db }, { 0x59797a8e, 0xa1e9c2dc, 0xbc4e21e, 0x35614213, 0xf41bc5c1, 0x49ea940, 0xbfce67c6, 0xd779daa5, 0x933ef21f, 0x706219a, 0x72d4cfb0, 0x366216f7, 0x223e135f, 0x50d61fb2, 0x33adec39, 0xab044a9f, 0x000076 } }, { { 0xf1e09422, 0xa0234d4f, 0x2b736ba7, 0xc82e8794, 0x8404f1a9, 0x3af81616, 0xc563f98b, 0x60734a4d, 0x5de74635, 0x6184ccc1, 0x923d8b6a, 0x501c00fe, 0x45ae5a88, 0x4b8e3a84, 0x561be3cf, 0x849dfab8, 0x000111 }, { 0x4e837d4c, 0xdc0a1d, 0x18e888ae, 0x8e60d2dd, 0xb892cce, 0xcb088016, 0x3bdd829f, 0xe9132615, 0x85b33c7b, 0xac06fa06, 0xd962e999, 0xf743075f, 0xc1707297, 0x892d177e, 0x971d2f0, 0xf7b8a39, 0x000057 }, { 0xb53567b9, 0x524e50be, 0x749e27e7, 0xffbba66e, 0xe8343bd8, 0x977b5beb, 0x2a12726d, 0xa8eaa58d, 0xa839fc21, 0x1af036ad, 0x6795bcc6, 0x31413031, 0x64dd2c5e, 0xef32fc06, 0x988d650f, 0x23ac9e80, 0x000116 } }, { { 0x78213762, 0xfdc3c26e, 0x932bacf0, 0x3dcc0bae, 0x3883a5f5, 0x47a53434, 0x29069416, 0x8716b785, 0xda8019f5, 0x20992405, 0x1cd2233a, 0xaa566562, 0xff4b788f, 0x3d3656b3, 0x416eb51d, 0x62914a29, 0x0000a9 }, { 0x764430f2, 0xaed7ffde, 0xb4b5ee85, 0x71f095c3, 0xd5d27072, 0xd035096d, 0x9b805a2e, 0x63d9606b, 0x5e50e805, 0x45d8c887, 0x3d023d8b, 0x3e448551, 0xe803bfc4, 0x8b5e97d4, 0xafa989c9, 0x2d3693f2, 0x0001a1 }, { 0x25457d26, 0x642afee9, 0x28cc25c8, 0x2b693cc1, 0x8f0ca1d5, 0x253a5fa7, 0x92c54ad8, 0xd7342b96, 0x76035bd1, 0xc3e992e5, 0x1ba6bc25, 0xd33d684c, 0xbc229002, 0xe64ffe68, 0xd41d2e9e, 0x2277f9dc, 0x000084 } }, { { 0x12531fa1, 0xa6fe8da6, 0x1ee27e4b, 0xc920c710, 0x984225d0, 0x89124583, 0x4095db9b, 0xd0175f90, 0x9914a368, 0x521319b5, 0x55121562, 0x20d77dde, 0xe6f1f48a, 0x9a337baf, 0x529ea1cb, 0xbb3529fa, 0x00007d }, { 0xee85ac4c, 0x6f09ec45, 0xf2f8e038, 0x542f2045, 0x7f05d284, 0x9e2d510, 0xc05870a7, 0x8b14e6be, 0x648c27be, 0x880e1ac5, 0x72830266, 0x4f0fba9e, 0x91355679, 0xcaf135c6, 0x9e632744, 0xc688e620, 0x0000db }, { 0x3a449716, 0x6c72430b, 0xa8a90482, 0xbd1c399, 0x69133555, 0x845ec211, 0x216ca5a9, 0xd7be0362, 0xd11444e4, 0x98a99f69, 0x57c6e9b9, 0x4de2721d, 0xc1ea2b85, 0x838fdd04, 0x9686438, 0xf4f4f72, 0x0001de } }, { { 0xd81fb7ec, 0x12a43647, 0x37adb37f, 0xf3529d87, 0x25ef9e3d, 0x463defc8, 0x14ac93f7, 0x1c59b57e, 0x90e97fb8, 0xefd6cc1a, 0x7a6f9048, 0xa4cf9354, 0x2c780f89, 0xba8cd478, 0x6e41c140, 0x6dea6ab6, 0x00012c }, { 0xc704446c, 0xff16d11f, 0xda5d74fc, 0x7e00bb66, 0x9f83df2a, 0x6a98b5fd, 0x2ba89bf2, 0x6dea9f28, 0x853ed0ed, 0x956cf332, 0x1ae53271, 0x1d1a16fa, 0x948aac34, 0xbaca5d8f, 0x3b853ffd, 0xed4dfd0a, 0x000082 }, { 0xcbc36d4b, 0x997678d2, 0x2441b4a, 0xa012c37e, 0xd29306a9, 0x81f0b642, 0xe9269865, 0xb563c303, 0x64cde2cf, 0x945bec61, 0xc4d5a287, 0x96810b8a, 0x5f870892, 0x307ce0f3, 0x61409471, 0x1cacc745, 0x0001eb } }, { { 0xa93c3a77, 0x625823e1, 0xb79ee19f, 0xfd35e23a, 0x2b65b9d3, 0xd896adc9, 0x38d74471, 0x72290af7, 0xfb698f24, 0x6f7b5b80, 0xcbb5b1ac, 0x85535e60, 0x4e401301, 0x881bd2b4, 0x606b2613, 0x7956b4f5, 0x000065 }, { 0x4005600c, 0x3924c988, 0xb6916147, 0x84358e09, 0x45b67349, 0x5a595981, 0x4c2a2f02, 0x5889d7da, 0xea974060, 0xaf5233f7, 0x3c6646f8, 0x93f82132, 0xf07d7d4f, 0x416f131d, 0xe336bc36, 0xff778e82, 0x0001b0 }, { 0x2c4f6876, 0x856895e6, 0x15af92df, 0x8b323c8f, 0xdb6ff250, 0xedd46d4b, 0x8290e777, 0xcb6e3e20, 0x89885f3d, 0x6cc3c20a, 0x37132aaf, 0x71096b67, 0xc76b93d7, 0xbc7fa221, 0xb50580f9, 0x9a6298f3, 0x0000aa } }, { { 0xab7a1668, 0x2872b124, 0x65117a6f, 0x832292d3, 0x25c6dec0, 0x7cd3cebd, 0x6867ba27, 0x92ba952f, 0xdd1310ec, 0xb133ddb7, 0x711e6eb4, 0x35117587, 0x1a763724, 0x57a94acf, 0xe1813ae, 0x83c1f45b, 0x00012d }, { 0xa65ed900, 0x52ad2b49, 0x1f68dda1, 0x2bf352ea, 0xd525c60f, 0xcee1408b, 0x643725b6, 0xd8096e63, 0xa7754452, 0x93661518, 0xbd70c577, 0x5cb63ebe, 0xa1ebfbb8, 0x6f9fcea6, 0x6941fe92, 0x8fb3daf1, 0x000187 }, { 0x8ac68547, 0x799eb74b, 0x3276af61, 0x7400d0b0, 0x30312ae6, 0x64ea84ad, 0xe0ca1213, 0x9d2c10a, 0xcb328596, 0x2f6cfed2, 0x60ec2c1c, 0x72b841b2, 0x782b553a, 0x97cc417c, 0xde4af77, 0x829c3c44, 0x000025 } } }, { { { 0xc059344c, 0x39e879de, 0x167369f8, 0x426e43df, 0x5a4078b0, 0x6bcb054, 0x757df16, 0x4ce2ae09, 0x5bad2fc2, 0xec874600, 0x7b7c44a8, 0xd1ba62f0, 0x6108ab0e, 0xbfdedc07, 0x792748c5, 0x98150d74, 0x0000e1 }, { 0x7f35e100, 0x964c650c, 0xa97bbadb, 0x2ccd4032, 0x62790321, 0x2be2c0f5, 0x92cb6494, 0x25fac0, 0x9c726736, 0xe6164d2b, 0xe8f17201, 0x2f5e84f, 0xa1ed7b72, 0xcfe4d424, 0x5c54452a, 0xf7e49351, 0x0001b1 }, { 0x54a60ac2, 0xd0277b8b, 0x6038858e, 0x6d9f6bec, 0x90f250ec, 0x7453ccad, 0xe7a1b5b3, 0xf6f3ac5, 0xfa20b468, 0x824d5702, 0xda94c739, 0x93feece1, 0x7de4a579, 0x4255422a, 0x86f27b5a, 0x94885a, 0x000107 } }, { { 0x7de750fb, 0x5ce081da, 0xb26d284c, 0xf8b5c560, 0xe9b754e9, 0xfe36b65d, 0x958070b8, 0xb1cdf0e5, 0xb954da3b, 0x159a0671, 0xf883dedf, 0xfb443c66, 0x84ea179e, 0xde475304, 0x3d7a814c, 0x3038d3a, 0x0001fe }, { 0x93ea7285, 0x292bbc3f, 0x31590683, 0xf42346f6, 0x61bbb761, 0x7378daaf, 0x1ad96fa0, 0xc3c71549, 0xe2778087, 0x7bcfd4fd, 0x83588e76, 0xf5c117e9, 0xb9cebe99, 0x511b8223, 0x7a834400, 0x9575e9a8, 0x000033 }, { 0xf38083dd, 0xb698ba7a, 0x20c9ddcf, 0xd5f7e04d, 0x2825e058, 0xbd5cbb31, 0x88f42477, 0xa73363da, 0xc9b6ad37, 0xf85715eb, 0xee5624f1, 0x131b4053, 0x81d18584, 0x590b34, 0xa0d13758, 0x12a8ec14, 0x000077 } }, { { 0xbd342b40, 0x2599fc02, 0x1d4de614, 0x9f14321c, 0x3d6af51d, 0x397f5daf, 0x2d34a57c, 0x4bf3a9cf, 0x8531eb59, 0x8b888867, 0xa3eec61f, 0xc766f404, 0xb249b9b7, 0x1fe7fd0f, 0x32474c80, 0x19627658, 0x0001be }, { 0x854dea94, 0x3e900725, 0x29863a73, 0x863bc015, 0x40c7dd5f, 0x3d3b5e23, 0x16538f6, 0xaf14e63, 0xe34864b4, 0xe479afe0, 0x98f401c6, 0x284002fe, 0x75bfb264, 0x53b80a4e, 0x7f524f31, 0xa506e84e, 0x0001bb }, { 0xa71597cb, 0x25e92a0e, 0x5b41f34a, 0x8268294c, 0xdda62627, 0x2c2dd98e, 0x16c76e94, 0xb4b83598, 0x3243c23a, 0x6820d7ae, 0xda47b0be, 0xaf8bdd07, 0x3c3eb98, 0xa6784a16, 0x9743bd5f, 0x145df784, 0x0000b4 } }, { { 0x42d3351f, 0xe6ad3e50, 0x6b73b717, 0x4c2187ea, 0x24029f16, 0x78abc750, 0x7097fa77, 0xce3c010f, 0x27f32f9d, 0xa46dc76e, 0x51614bc, 0x9e879eb7, 0x1323407b, 0x6c0fc7da, 0xceea74d6, 0xba71ad77, 0x000144 }, { 0x9d343796, 0xc7ebd80, 0xebd403bb, 0x22f3c08d, 0x76770fad, 0x6d5b0e66, 0xbc5d75df, 0xcc2c22aa, 0xea0d99bc, 0xdb9dfe24, 0x97ee3f02, 0xe0a2bb2b, 0xcfe00327, 0xcbd15da0, 0x98d21011, 0x18937961, 0x000188 }, { 0x49b377fa, 0x5f0ce2ad, 0x2454d963, 0x2e9a48a3, 0x26cb2fcf, 0xd341735f, 0x703ee5c7, 0xdf0853bb, 0x40d3372a, 0xed8224c5, 0x713647e3, 0xfa25eaee, 0x1a45a8f8, 0x82bfb6a9, 0xa44c5c0d, 0x50dfba27, 0x0000a4 } }, { { 0xaf60c8b, 0x24824eb4, 0x38102113, 0x8b540a67, 0x78cced39, 0x5a877077, 0x5d3d8b58, 0x8e0c8c36, 0x4b8c9be6, 0x79b072cd, 0x27d40301, 0x7de1e30d, 0x4bd15d90, 0x43262f6f, 0x3400ccdf, 0x57eddccd, 0x00018d }, { 0x822c41e2, 0x8f635277, 0x7ad885cd, 0x833f60dd, 0xef83be41, 0xb3a0c8b2, 0xb135811c, 0xe2e079ad, 0x2b948fac, 0xb1ba08d0, 0xdb48c8de, 0x7e5b4f51, 0x21239637, 0x8327d5b7, 0xcf0ec2db, 0xc6c84864, 0x0000f4 }, { 0xd1f44646, 0x8f5d344f, 0xd3fe5d5a, 0x7fc494f, 0xf2d2fbf3, 0x69210b24, 0x870f3c25, 0x20e4eecf, 0xd286a0ee, 0x6b17b7bc, 0xb84ae00, 0x13e122ba, 0xc8234cb1, 0x8c427a5, 0xe3cfd0d9, 0x3aa8547f, 0x0000d8 } }, { { 0x141f7bf1, 0x7504eb37, 0xe4ed8791, 0x42cd32d0, 0x2a06f836, 0x6847a9f5, 0xd97623cd, 0xf124b0a4, 0xf160f076, 0x76522d1a, 0xd65481a, 0xdec7de4b, 0xac6c1f46, 0xf2b09a89, 0x5962f7b3, 0x2c6082b8, 0x0000ec }, { 0x33144ec7, 0x76720a79, 0x93d6b763, 0x3b31cb05, 0x4dc5c1c9, 0xf080fb1d, 0x77bb60a2, 0x336cf8e0, 0xe60b6629, 0xf0788b83, 0x400ba0fd, 0x3fc687c6, 0x8c84359e, 0x9b156bb9, 0x2d680c3c, 0x61f19499, 0x000094 }, { 0xa0c60539, 0xef154196, 0xeabedfae, 0x3d5345f7, 0xb95940a1, 0xe9cda8aa, 0xb74a5841, 0xea451277, 0x77e56375, 0xdc0881f4, 0xf37f509a, 0xb9c61a77, 0x57dc5b10, 0x4c7361c2, 0x1e1892e5, 0xf78a14de, 0x0000f3 } }, { { 0x14895046, 0xe94f90db, 0xab3bd2b, 0x7cf345ff, 0x949324d1, 0xe0a1fefd, 0x16b460a9, 0x37ef0ea0, 0x587a2e9e, 0x9076c9a6, 0x700a14e2, 0xe9a3b3b5, 0x941eacf9, 0x497f68ac, 0xc6d2c2aa, 0x6979d8cc, 0x000190 }, { 0x756a46ea, 0x7e58557, 0x94a47b6d, 0x5fa1b3cd, 0x3f534ac7, 0x5db758a, 0x574169c6, 0xdf42f35c, 0x6b81853b, 0x4ab2af1a, 0x5dae9086, 0x10b0ea9c, 0x81152cd0, 0x7521b55d, 0xced4dcd9, 0xac1e2644, 0x0000b5 }, { 0x5bed19eb, 0x8df5f9e3, 0xbe05bd2a, 0x3efdb2ca, 0xeb9345a, 0xe0336ae8, 0xf3eaf841, 0x766b71ac, 0x6a4f70ff, 0xe95c9593, 0x9f31a160, 0x511837a6, 0x346a3993, 0x8078f4c8, 0xb21a490b, 0x6d567cca, 0x00012a } }, { { 0x114e416e, 0xebc2281b, 0x8847abdf, 0x942d6de9, 0x1d51e39e, 0xec09fba, 0x563f6900, 0x7d0fb337, 0xd0dc4e2d, 0x3df51f2c, 0x5e2282c3, 0xa3eefd0c, 0xa6565441, 0x46c4642f, 0x61f79d31, 0x68e56606, 0x00014e }, { 0x6d8db908, 0xb5630178, 0x27ee5d90, 0x368634c0, 0xbae503ac, 0x4e5620f4, 0xcb5f6c21, 0x50371691, 0x5070c1d1, 0xf0e58d87, 0x87e67c48, 0xf17ce8ee, 0x5e2c589e, 0x648862a9, 0xe11a135, 0xc5bb8e12, 0x0001af }, { 0x82e564d, 0x8326635a, 0x635ce76e, 0xbfdf743c, 0x1d5ca079, 0xbecd1093, 0x8e8ec588, 0xcc755be6, 0x9156dec, 0x430c239b, 0xf8b37136, 0x732d57bc, 0x1c3f7ae3, 0x6b7f0879, 0xaa52659e, 0x951ff7b5, 0x0001be } }, { { 0x8614efe2, 0x8cc7fe0, 0x13f4791d, 0x57ddc9ec, 0x2ffcd488, 0x36cd5967, 0xcd6e41d8, 0xf71966ce, 0xcf2c7563, 0x99469e63, 0xf4259aa0, 0xd991769b, 0xc75ae96e, 0xaee1229a, 0x40b33b27, 0x4ce5437b, 0x00001e }, { 0xd343599, 0x2612c793, 0xbc609b54, 0x28cc8ce6, 0xebb1fc08, 0x2abd3628, 0xccecc271, 0x8f8cd41, 0x26c38556, 0x7ad44ffc, 0xf3a77554, 0xd843cfe9, 0x765e99d1, 0x97f4814d, 0xcd2e9513, 0xbeb91239, 0x0000e8 }, { 0x6026f565, 0xbc503c10, 0xe5cb8e1b, 0xab398668, 0x4591edb0, 0x646ecaaf, 0x4e0f3be6, 0x98be6069, 0xa66ca003, 0x6093ce04, 0xb86c9c8, 0xc36ec8c9, 0xcdb1c50b, 0x92c031bb, 0x61b07d3d, 0x1f3c1b05, 0x00007b } }, { { 0x9d522115, 0x6e269fe0, 0xf27496e3, 0xcc0b9539, 0x4b876762, 0x91befdde, 0x213fa72a, 0x927c40e, 0xaf05ea6b, 0x7b85a11f, 0xf9877c5a, 0x51212e9c, 0x5da60d4a, 0xb55c716b, 0x3c9cbbf8, 0xa03fc4b1, 0x00011f }, { 0x6434e636, 0x451affed, 0xf41cc8b7, 0xb5b84b9b, 0xa1d9902b, 0x136cc12, 0xc82c951d, 0xfae0c1a8, 0x89205e6f, 0xe443a9b8, 0xa47e0911, 0xb28f392, 0xd3d15d3b, 0xf9d19d53, 0x28c58bde, 0x20f129e0, 0x00013c }, { 0x41efbf80, 0xa8350ea4, 0xa52fb734, 0xeabc157b, 0x7e922678, 0xbffe5b80, 0x2f4953d9, 0xf0d17f6d, 0xc32e2d1b, 0x6ab5f3b2, 0xcaaa2379, 0xe3f84cac, 0xa639c228, 0x9b3ed098, 0xf0d5cc25, 0x6398520b, 0x00006d } }, { { 0x2a97bdde, 0xbbc5c478, 0xcd8cdf9b, 0xfef555ca, 0x25bd9bd2, 0x4a9709c7, 0xe2f248ec, 0x353505c3, 0x514f64c4, 0x884262bf, 0x1637282c, 0x35587837, 0x31aa5d5e, 0x7064d913, 0x4fac0b7a, 0xd1f8dfb5, 0x000048 }, { 0xe34c0fa7, 0x918a3be5, 0x724e9398, 0xe1f4ed81, 0xf60d68a8, 0xe44ce2dd, 0x590eb831, 0x171ab5c9, 0xfdd69a1e, 0x2a788a34, 0x4da55141, 0x1ea0d789, 0xb7221486, 0xc7c39c1, 0xfe3d592a, 0x10ba9e37, 0x0000b5 }, { 0xcc5f61, 0xb92cfd00, 0xd1d86d12, 0x9f40d0dd, 0xab359634, 0xab2e4de7, 0x966dc859, 0x50d01ec0, 0xff01257c, 0x936fba90, 0xd63ade37, 0x6d66025b, 0x6b8a1509, 0x157af6f6, 0xbc02a174, 0xa4297b79, 0x0000c1 } }, { { 0x58062582, 0x9d6e5f9a, 0xff8a17fc, 0xb1e774a1, 0x5c10fb86, 0xc48ee5eb, 0xcb8ff4aa, 0x32eb0b81, 0xe0d86221, 0x366a63d1, 0x7e4e0188, 0xd100ef6d, 0x7cef34c, 0x2c4971a7, 0xd58ba6d6, 0xbaf7c69f, 0x00001e }, { 0x717bdbc4, 0x82bca5d3, 0xc9580d16, 0x26cb5b3a, 0x2c93b2ac, 0xe6aed9b3, 0x8b86ab31, 0xc4c6bfd5, 0xda69f405, 0x2aad20de, 0x54262c12, 0x5e4e24bd, 0x200f6cfc, 0x79920a64, 0x6dd9d1d3, 0x2b67e8e1, 0x000130 }, { 0x559fc596, 0xbebfce7a, 0xb8ef1b2e, 0xe5ca505b, 0x9d8506ed, 0xb90a7fb4, 0x6ea08144, 0xa31b673c, 0x484ad2ae, 0x3b077b6d, 0xcfc72f9e, 0x3598f330, 0xb6ce6dd5, 0x77eb84e8, 0xb9e2b02b, 0xbdc5258c, 0x000137 } }, { { 0x9930652, 0xa9007016, 0x62f719dc, 0x9bdb2f8d, 0x9fcaafb6, 0x63883c8d, 0x7c99936e, 0xb281d143, 0x799a868a, 0x2e4e98a2, 0xae71ee16, 0x7382b696, 0xc9701380, 0xd40dcd6f, 0xe0aa2a7c, 0x892bdfd, 0x000091 }, { 0x7a71c2dc, 0x22ec89f1, 0x362de095, 0x6c86627a, 0xb51a894c, 0xe3e84c6a, 0x8e5583c3, 0x2a89b9df, 0xb1849853, 0x6f4c2810, 0xefb74ad6, 0xc76352ce, 0x77712476, 0x7cc5869d, 0xf7156863, 0xdc6641, 0x00006c }, { 0x869936e0, 0x7291d024, 0xb15ee42d, 0x7f8ee116, 0x9555f9ad, 0x5fbb299a, 0x9ffba665, 0x8e59e52b, 0x8a7a82c5, 0x4690af95, 0xf3275067, 0xebc05f6f, 0xac8be643, 0x56a0375e, 0x867c7801, 0xc8dbe1d1, 0x000146 } }, { { 0x5451d2cd, 0x118027c5, 0x652f3dcc, 0xe41595ae, 0xa68f4036, 0xb49039d, 0x7f00e239, 0xbce3d3a7, 0xb3ca3fd9, 0xe78226f8, 0xccc36f76, 0xd392852d, 0x6dcbb8d5, 0xbcb1a10f, 0xb07a1f17, 0x6a08f7d0, 0x00018c }, { 0x53561f52, 0xe2975baf, 0x2b92a751, 0x5959a8f4, 0xb8d0425d, 0xf2d94191, 0x38e09d66, 0x9f5fecb7, 0x125f0c0f, 0xbf5dada9, 0xd635adf7, 0xec2b3a5e, 0xbdc87d3d, 0x638135d6, 0x75b23835, 0xc24edbc4, 0x0001f3 }, { 0xca7dc9ec, 0x91eba63a, 0xaa72dc26, 0x2b9879c2, 0x7f947022, 0x910d3ae9, 0x303968fe, 0x2140d99a, 0x8d706f9f, 0xbba69c4, 0xb073831b, 0xa95251e1, 0x7d1df869, 0x66be8442, 0xc9002bdb, 0x744ffc52, 0x000019 } }, { { 0xd967b24b, 0xbe4453ef, 0xd0e5b0f9, 0x215bdb6b, 0xabab8db, 0x8247de74, 0xebf4c6bf, 0xac55d5e9, 0x7c77733d, 0x4f8a939f, 0xde895a4, 0x60e616e4, 0xa16c7949, 0x815f6a18, 0xc5332b9f, 0x52eaa273, 0x000197 }, { 0xc227fbc0, 0x9bd09f66, 0xe64347d4, 0xc8e1463e, 0x3f4043ca, 0x28bbd66f, 0xe778c458, 0xcda582c7, 0x62ea8063, 0xd48fb1b0, 0xe5cdebd2, 0xe87c29a3, 0x85e49f90, 0x518fa9de, 0x7d792ffc, 0xa627a481, 0x000183 }, { 0xebfc2082, 0xec25844d, 0x805dc4ad, 0xf251b857, 0xb45736a3, 0x5b4ca932, 0x7e6629eb, 0x90d37fc9, 0xaa59d833, 0xfeee64a0, 0x34e1f576, 0x56c7bf39, 0x94ec3a2a, 0xd8bb45a7, 0x707aa55e, 0xda581384, 0x0001df } } }, { { { 0xf454aee6, 0x504e597d, 0x40e6c0ea, 0x4b45f881, 0x8f48a414, 0xfc964161, 0x544af771, 0x557884b4, 0x3b925c2, 0xbdb56d4a, 0x12dcc24b, 0x7dcbada2, 0x2e646485, 0x503ccd1e, 0xef9de3da, 0xde9209a6, 0x0000bc }, { 0x5003a761, 0xc3ef1667, 0x4ae74af9, 0x7e3803b0, 0xf19dd20, 0x70dde886, 0xc2ca508a, 0x5e0d91c1, 0x6487ad48, 0xba6fd396, 0xe20b6e64, 0xa316cce7, 0xd20d4c20, 0xc452a734, 0x171c3cbd, 0xefa40299, 0x000079 }, { 0x623603a9, 0xb1c0b2c0, 0xda033530, 0xad1f373, 0x5538c9a1, 0xd64a67c4, 0x9ee0ab86, 0x2e240678, 0xe06dccf1, 0xf17a9fa7, 0x3d611dc9, 0x74221263, 0xe608fc76, 0x980b79b5, 0xf0ec1691, 0x9591d3fd, 0x00011c } }, { { 0x67b36b94, 0x2a3917e2, 0x11274451, 0xc643b261, 0x19f8b162, 0x3feaaf71, 0x58f474d, 0x11d73f32, 0x8d0107fb, 0x70ae7843, 0xedc3037a, 0x4c987146, 0x6e0a4038, 0x4b6c7e07, 0x67cf9f3d, 0xeac1c3d4, 0x000176 }, { 0xd85eb66f, 0x39750ae1, 0xb5c12b81, 0x104147fc, 0x55eeb708, 0xf049b98, 0xeec4ccc4, 0xcb293291, 0x30ef8a29, 0xb9189c1a, 0x31eba937, 0xb0427a54, 0x3fe3ca31, 0x551d1e50, 0xabb93b65, 0xb53bbded, 0x000139 }, { 0x1c38ed94, 0xbfafdd22, 0x198a8b92, 0x4fd92148, 0x3b021e74, 0x9f104c96, 0xc54a7155, 0x4fbfd983, 0xa301c79c, 0x45a8186f, 0x2e2b822b, 0xe8683fdb, 0x463bc46e, 0x6a496378, 0xe6f2f538, 0xd4916ff0, 0x00003d } }, { { 0xcc53ebd3, 0xac10450c, 0xe70d96d8, 0x448e6a4d, 0x6531d5e8, 0x97336582, 0xbf58e1b2, 0x31266bd9, 0xf8fc1a82, 0x694a4fcc, 0x681121d3, 0x82c6e65, 0x8b42aa24, 0xe89450d1, 0xe42a82fc, 0xdd3de8e1, 0x000124 }, { 0xb18d51d1, 0x14bfcfe9, 0xf61e7a39, 0x5960124d, 0xe27ab56b, 0x48a28509, 0xdc8b2f8f, 0x5d7f11cd, 0x776f74e6, 0x7e1a6213, 0x280d35a3, 0xdede7f76, 0xbc3a10d1, 0x6fbc9141, 0x25b27e3f, 0x1f043949, 0x0001e0 }, { 0x909245b4, 0x423ca1f2, 0x36cd2a99, 0xdc4a9216, 0xbe84a133, 0xeb7b6283, 0xaeaaecdc, 0x76c30693, 0x116f0f43, 0x9b89bc47, 0x5a4a31e2, 0x699d333d, 0x225c6c26, 0xad4b0d9c, 0xe1b1deb2, 0x1236a8a1, 0x0001f2 } }, { { 0x2fd869a7, 0x82ebfc3a, 0x218428c6, 0x9b4873bf, 0xebf8f84f, 0xe6b832ee, 0x2dd17453, 0x4f5c39a9, 0xe809b55c, 0x590ac55e, 0x7595b8c3, 0xe52ab76b, 0xa7fb1a70, 0xc81c1c2, 0x48b737f2, 0xab2fcc3f, 0x000074 }, { 0xf46df8f3, 0xaab08262, 0xf60edddf, 0xaef27049, 0xc867540c, 0xa943a860, 0xbb40387a, 0x51d11ade, 0x84b4c1dc, 0x75b07d46, 0x4ed9c239, 0x8a61bdae, 0x2e012012, 0x895916fb, 0xb47377fe, 0x707045cf, 0x000016 }, { 0x6acdb3d9, 0x75e981a1, 0x83896e0e, 0x14152352, 0x4beacdf6, 0xdc53c99, 0x6123e246, 0x24c3721, 0x9a731bbe, 0xda265880, 0xa6cd2fb7, 0x451925f5, 0xc6629b4, 0x8024be1d, 0x7ab5ccd5, 0x8cabdaf3, 0x0001e9 } }, { { 0xba06cc95, 0xa860c2, 0x5c8bb4ea, 0x186e66f6, 0x444bbfed, 0x79db892f, 0xb25579ce, 0x2abdae80, 0x933d926e, 0x893e9152, 0x904ed513, 0x1fe510e0, 0xf01a71ac, 0xe84d3715, 0x1c31929c, 0x726043f3, 0x000045 }, { 0x59d339da, 0x706ce483, 0xd5e353fc, 0xc1283787, 0xacd46169, 0xad3e379, 0xbe94a66a, 0xe092e801, 0xe5524f19, 0xe09e8f87, 0x873d5df7, 0x450ca2d8, 0x5fad11c4, 0x84836df2, 0x8eda283c, 0xfc6b35a3, 0x0001d6 }, { 0x1f919d48, 0xfecfd63b, 0x38dd7fab, 0x8f0adbb9, 0x7cf867ca, 0x47f9ac1b, 0x49478471, 0x5ffcdbb, 0xa2489904, 0x19feeccf, 0x356fa040, 0x5b93694c, 0xd2046c4, 0x55a049ad, 0x3eabbbbb, 0xafe08cf5, 0x000059 } }, { { 0x8c7fd0a5, 0xbbbf275f, 0xafa6c222, 0xcd17cf11, 0x9d81c2f7, 0xce270b35, 0xfc6c3032, 0x839900fe, 0xfa0db59d, 0x77cc15cb, 0xfd40d76d, 0xa867d6a1, 0xe8fe95c6, 0xb50cc5cc, 0x2c413016, 0x1c927245, 0x0001fa }, { 0x6506e65e, 0x2ed1f0ca, 0x903fea52, 0x8e7de4b4, 0x19c5afd5, 0xefba8835, 0xe695751f, 0x1ee87350, 0x83f361b0, 0xe828cb63, 0x9c7e0c2e, 0x53f07c8f, 0x373017f5, 0xb930ef94, 0x9ed61d18, 0x103e439c, 0x000079 }, { 0xabd9f9a0, 0x5eb82d0a, 0xa3a556bd, 0x946be386, 0x7375fe3a, 0x2d3ed67f, 0x4339b9e2, 0x3306b6bf, 0x608566eb, 0x99b612b7, 0xed2b011e, 0x3d3e1d5b, 0x3d110664, 0x351ef536, 0x3244ba49, 0x1d46fa3, 0x000011 } }, { { 0xde5c9b7, 0xfb9a449a, 0xeef1dc40, 0xfc19c66f, 0x7c4e34a0, 0x58e95a64, 0xef0e459c, 0xb9dead3c, 0x92ed74eb, 0x6b9b06a5, 0xb538c4c0, 0x2db7a055, 0x89a3ce09, 0x8dff0960, 0xe38a57b5, 0xac9e1a79, 0x000108 }, { 0xbd71017a, 0x86f188c2, 0x5cd2e765, 0x6f820e85, 0xd2289a1e, 0x5071a17f, 0xf126a9c4, 0xa58e1d78, 0x55a8aa6d, 0xa9b2ae94, 0xb9809988, 0xe7590f4b, 0x7147ba54, 0x3479da05, 0xcc55dc22, 0x70d80f97, 0x0000e7 }, { 0x4f77b072, 0x79f2d704, 0x3a46149e, 0xb1596e66, 0x94308514, 0x7b3c0bcf, 0x2642c794, 0xa3a82a4b, 0x90e874a, 0xa60fabf6, 0x7748c5a4, 0xe7b5ac0b, 0x4ebafbce, 0xb3b0e4c7, 0x17f961ca, 0x3dc5ae91, 0x00003e } }, { { 0xe6d26611, 0x6f7cc82f, 0x1e3830d4, 0xd8d370f4, 0x3d41cbd, 0x35086e3, 0x3f142bf8, 0x611d9bdd, 0xe76b7252, 0xdbf66a0c, 0xbe8fdd2d, 0xcc68d03b, 0xc463a004, 0x9d43d84a, 0xf61e1d7f, 0x46161d31, 0x000039 }, { 0x60e7e41c, 0x85c8ee98, 0x9c22c2ca, 0xd4f6d698, 0x165ac7ef, 0xfcc7c3be, 0xa61341e2, 0xfe14edb4, 0x279d04c8, 0x4ef9f7c, 0x9a837a00, 0xad2e34a0, 0x2be91c89, 0xbf21d39d, 0x3acadcd3, 0x61ace7bc, 0x000096 }, { 0xee6d5ea5, 0x8addd74c, 0xe0db4155, 0xb7960a8b, 0xa48d5f8a, 0xf8356ab2, 0xdafb10db, 0x86ffa34e, 0x174948fb, 0x6acaab3a, 0xf27cafac, 0x38db7289, 0x9ea3fb04, 0x24e18c88, 0x5453b182, 0xc749982d, 0x000094 } }, { { 0x576eede, 0xdbd40f43, 0xf3f49475, 0xf15b89ad, 0xa2b32eb7, 0x13d1d016, 0xfcf505d, 0x9164ab92, 0x834b5bfa, 0x1641906f, 0x5fa788d2, 0x3acc5b7a, 0xdcb584c6, 0x8c39bc3b, 0x302dcb10, 0xf0fad317, 0x0001cf }, { 0xa03f87d8, 0xc860f2e9, 0xa8111c47, 0x797abf47, 0xd485d085, 0xbc2f5c3b, 0x9b1c34dd, 0xde0d12af, 0x2fd0393d, 0xba2cbd18, 0x1398d203, 0xd4dad11, 0xefacd0eb, 0xfe926d09, 0x52317db4, 0x3183eb8d, 0x0000a1 }, { 0x3cb208e8, 0xb399d78d, 0x7b0f387a, 0xcf713bf3, 0xbe6e24b0, 0x6ff731d1, 0x7f51074f, 0x24f720e7, 0x2b20f35b, 0x3eac2c5c, 0xb62770e5, 0x47594ac1, 0x6f7e3704, 0x92dc545f, 0x2e671a25, 0x9423d761, 0x000024 } }, { { 0xe4b4eb36, 0xe8dc4634, 0x24a80245, 0xd67c5424, 0xde573c4, 0xdd93d988, 0xcafda10b, 0x6b665c53, 0x6c968b08, 0xda3817c1, 0xa246e93a, 0x93c2c40f, 0x9a8f089d, 0xce98baf5, 0x97713fc6, 0x80075097, 0x000165 }, { 0xee3a97f7, 0x2f8e5f96, 0x14a92f3d, 0xed8d87a1, 0x7e2f765a, 0x331b9557, 0x5e8308f9, 0xc1eb7d61, 0x951db0ed, 0x87fa845e, 0xf31f4208, 0x9966f567, 0xfc186add, 0xf56ada80, 0xcbd523c5, 0x58076de, 0x000008 }, { 0x95bb043e, 0x95afdef0, 0x29b4797c, 0x5c15fb28, 0xedac6520, 0x464bcec1, 0xc3a892c5, 0x8aff8664, 0xa02e6abc, 0x33a30da4, 0x58c46c35, 0x260b9212, 0x2be6ba86, 0x3c10e320, 0x17f340f1, 0xf79a66aa, 0x0000dd } }, { { 0x6d92ad00, 0xfc71a5f5, 0x8244dd0d, 0x11c45bbf, 0x6904853a, 0xb0ff55e5, 0x4c3434dc, 0x7c53bd7d, 0xc434d6cc, 0x99e11137, 0x366d4102, 0xcdd05271, 0xc6cab34a, 0x6fd32dde, 0x28ada0a8, 0xc5ca543d, 0x000063 }, { 0xed0f403c, 0x30a96ef1, 0xcfbd4731, 0x1e5b97dc, 0xeee7d6d5, 0xd9be76cf, 0x54a7851f, 0x709e6bf4, 0x48e69f3f, 0x61f21782, 0x4d55819c, 0x6a286ef2, 0x25afca29, 0xd95df4eb, 0x571013b1, 0x38bb8408, 0x0001da }, { 0x5942fc47, 0x6bf2024b, 0x52c31786, 0x49f43360, 0xadc1197e, 0xe173ebb3, 0x34b2c3b6, 0x7205b61a, 0xd15b2bac, 0x6f822f1f, 0x55745850, 0x9c1a1179, 0xd4a4a235, 0xfada4adc, 0x734c354d, 0x2b9e8474, 0x0000a2 } }, { { 0xd7211481, 0x397b7d39, 0xbe7ba015, 0x2779ef9c, 0xdd65d1a2, 0xdfbaf66e, 0xdebdb1c2, 0x71ad3bdd, 0x81fbe777, 0xabbb712d, 0xf050057f, 0x9dab9c7c, 0x2fb4f8b1, 0x6f6859c1, 0x8f152138, 0x76d547f, 0x000039 }, { 0x23c61fd9, 0xdd1b80fc, 0xa76e76e0, 0x64f237c5, 0x31f08987, 0x9c5b871a, 0xe7f9b069, 0x2d7e4c36, 0xd6e1ba47, 0x87f2cbe4, 0xbbeb9faf, 0xec1d13e6, 0x56f89342, 0x6002e392, 0xb3d3f1b7, 0x184e6d42, 0x000148 }, { 0xf1ffb969, 0x9b34ded8, 0xb17be6f5, 0x66498355, 0x6361b613, 0x22f47059, 0xa1b0eeb9, 0xd15b503e, 0x37cd9857, 0x4ecb8dfd, 0xd262311, 0x654ea7ee, 0xbbcf3aa5, 0x3fede0d7, 0xfc5db512, 0x54709c1d, 0x0001ba } }, { { 0xb3adea24, 0x4eb3f866, 0xa83562ca, 0xad1d37e1, 0xd480777d, 0xf61c3a89, 0x41be0ef5, 0xd425579b, 0xb3e37b27, 0x82a46f8d, 0xaf78fd4e, 0x5c8deee6, 0x6922ee51, 0xbc7ec6da, 0xd210a22b, 0x7ec627b0, 0x000075 }, { 0x62414f7f, 0xa50bb47, 0x4091d957, 0x6acd4733, 0x188968bc, 0x3e3ee05a, 0x7f999a93, 0x68da0f0b, 0xae82968b, 0x860d6a5f, 0x59c67b39, 0x4092e926, 0x834060a9, 0xcfb36a5b, 0xa02d3b24, 0xc6ca805a, 0x000119 }, { 0x8c34f1a5, 0x71a612d7, 0xcc0ae0c3, 0x5e0d3501, 0x54cb47ae, 0x571310a6, 0xe2309ed2, 0x625c5584, 0x5a5e9d81, 0x350678e9, 0xd169e1ba, 0xd130ee64, 0x6cc58168, 0x6d82a3df, 0x409b4fe4, 0xccdf8a0c, 0x0000cc } }, { { 0x326835e0, 0x37a0ba08, 0x3b7e1c14, 0x2be502ce, 0x47b5e8e0, 0xdc7fbcab, 0xc02de693, 0x5ac24440, 0x87d5ce13, 0xb39c8523, 0x29585791, 0x3c87e62f, 0xd86063ab, 0x33756087, 0x3d0e5a96, 0x763ec8a5, 0x0000b3 }, { 0xf4102b79, 0x5ea07690, 0x82b324fa, 0xc5e08aa1, 0x52acdc97, 0x409fe109, 0x6379db17, 0xa15d2042, 0x3d9c3a28, 0xa0d54399, 0xd782a007, 0x8dc44432, 0xeb905ccc, 0xc8fa4538, 0x9d26e8b, 0x45d49c3c, 0x00013c }, { 0xfdd816b1, 0xfc6d68c9, 0xcec82842, 0x414ae8ad, 0xe26f8f78, 0xa03eacf3, 0xfca18ccc, 0x963fb5ae, 0xedb1b5e3, 0xc0fa203, 0x2afa54ab, 0x2477f0c5, 0x4815bb6b, 0x79cf5b66, 0x6205429, 0x80fdd0d6, 0x000195 } }, { { 0xcd69e677, 0xb714c80a, 0x4b204860, 0x24838d0b, 0x770bd776, 0x4ac4bcd9, 0xf63d1378, 0x88bdf200, 0x9fa640e8, 0xe87467b3, 0xbb1668c2, 0x13dce618, 0x67204b27, 0x88e178cf, 0x57f37e99, 0x2fda6963, 0x0001c5 }, { 0xb00f2717, 0xff4e1cff, 0x3517796d, 0xc88bf506, 0x226fb4f4, 0xbba59dc0, 0xac936807, 0xc7f12fa7, 0xa9e3d201, 0xac02480b, 0xf4fc5c95, 0x67196339, 0x8800fcfc, 0x8f3553a6, 0x295d639e, 0x4ef6d753, 0x000175 }, { 0x7e37ba58, 0x48e0f4f7, 0x7de2a038, 0xf28b1851, 0x3867f6f3, 0x1677b11d, 0x980def0f, 0xf5b060a3, 0xa5db28a0, 0xe2e51acc, 0x259816d9, 0x8568fc1a, 0x8899419, 0x898b3954, 0x9ce257f7, 0xb730ee6b, 0x000150 } } }, { { { 0x941d8ef5, 0x789d71f6, 0xd28638e4, 0x1c0a960f, 0x1b57d4e4, 0x4beae94b, 0x61a1513a, 0x635bc51a, 0xd2456c56, 0xbcc7de08, 0x41b23852, 0xb74c631d, 0x4b804078, 0x12d8c216, 0xf2f6b960, 0xddb3574b, 0x0001e1 }, { 0xc74e3825, 0xe1bb191, 0xbd8910f, 0x1566e2b2, 0xdf23c7df, 0x4997bd6d, 0xf5452b22, 0xa7c3b5ef, 0x84e1b692, 0x188208a9, 0xe6a70af4, 0x9b6a99cb, 0x3f589759, 0xeff015ad, 0x5084c80c, 0xb0f6e209, 0x0000ec }, { 0x72120c67, 0xe91c1678, 0x3c9e6dde, 0xa8419d0b, 0x5daa6ab3, 0xb34bfbc7, 0x8b283560, 0x43f30f13, 0xce634e99, 0x389eb6b0, 0x90c130d6, 0xd958a7cf, 0x2ef2ac53, 0xa70d8762, 0x53e1d280, 0x6fd61eb4, 0x0001d2 } }, { { 0xef0c21ea, 0x970fd904, 0x6870b74b, 0x9c2105a9, 0x49f4cb8b, 0xcf87265a, 0x2bb1df46, 0x81388ec, 0x2dc7d123, 0xb2930827, 0x465a35f9, 0x261ab66d, 0x4b760076, 0x3c40aa34, 0x865a4768, 0x63101a75, 0x000093 }, { 0x7ebc9926, 0xdb231477, 0x85376ea5, 0xb31a8b94, 0x52d9ab16, 0xad501fb9, 0xa3d88d54, 0x37a1f057, 0xab9a69df, 0x7c533e5d, 0xe4823837, 0x2c2f6cf3, 0xb799e4f5, 0x70a7a9d4, 0x15ea588c, 0x8c5176e5, 0x0000e4 }, { 0x7a9bcd09, 0xa318db3f, 0x72d40cc5, 0xcae1aeb6, 0xd5056c3c, 0x15b4cb38, 0x6305260f, 0xe0363b46, 0x3c8226fc, 0xba3395f, 0x1f88e8c8, 0x31b20866, 0xc630b5b5, 0xdb0b1a35, 0x31ab6678, 0x531e08a6, 0x00018d } }, { { 0x7154aa92, 0xb46c64db, 0x5350c6a0, 0x36c1131d, 0x1c442133, 0xc4e04487, 0x446af4da, 0xfcc8aa9d, 0x75a94d69, 0xe218114f, 0x7189d7f2, 0xbc41f1d6, 0x3dcae711, 0x79d4391d, 0x87f8522f, 0x49e6a506, 0x00015a }, { 0x5fca8b3e, 0xda061f3d, 0xeca290e7, 0x3bcd3d3c, 0x87f64b40, 0x6e2bd48a, 0xf8e1ca24, 0xdcd2ebae, 0xa80735b8, 0xda223f8a, 0x1cf1bc74, 0xb553e44c, 0xa3d5791f, 0x13d7b3ed, 0x30212837, 0xcfe858f4, 0x00005b }, { 0x16592e0b, 0xa8f37804, 0xd4fbe5ad, 0x308252b5, 0x42208ea6, 0x65736322, 0x76b6af2c, 0x6855574, 0xb1637bc5, 0x73404eb6, 0xf98731d3, 0xe7d6cadc, 0x3b0bae74, 0x887a6bf2, 0xddef2fb4, 0x644bd75e, 0x00019c } }, { { 0x3b83d139, 0x9717b776, 0x82a47e56, 0x148770f4, 0xfef03913, 0x46e36728, 0x1041b2d, 0xe1d3db8d, 0x2b19bb59, 0x783170f3, 0x73a9c5cb, 0x839e27e, 0x5e5737e9, 0xa38bed3a, 0x52275ce9, 0x967c7a2d, 0x00017c }, { 0xaccac1, 0x591fd39a, 0xadae34f8, 0xaf72b48b, 0x87c05d65, 0xe9ce8afc, 0xfb78474a, 0xae927ab0, 0x33cb302e, 0xace3892f, 0x9a47f73a, 0x19d18836, 0xb3fb1911, 0xcf337483, 0xcf757117, 0x3110ec6, 0x0001d9 }, { 0x149a445c, 0x96c28ff2, 0x353a047f, 0x7844513f, 0x5d9e736a, 0x72db24b2, 0x355b02cc, 0x65145908, 0xd3d9c56a, 0x80910095, 0xfbb2124d, 0x58ae24e9, 0x1f57d8d1, 0xeb317e7c, 0xb1d5736d, 0x5e6424d6, 0x0000fc } }, { { 0xf3125ea7, 0xc627eaf0, 0xf1153ba9, 0xdf151b5b, 0xd3acd33b, 0x2fb8de9d, 0xad9ab14f, 0xa76540c6, 0x90b472c0, 0xecf57c10, 0xaf5dd4d1, 0xd8ebf743, 0xedfe87ef, 0xcdd83007, 0xb7aaf030, 0x6a7ee00b, 0x0000b1 }, { 0x498bdb07, 0x3bcc0c81, 0x9b3e1c4d, 0x27cd16a8, 0x2ab5659, 0x9518a052, 0x1c05873d, 0x8a77a0e6, 0x41edb5a2, 0x7926bc6d, 0x84622631, 0x932224bd, 0x50dc2c20, 0xda2cef89, 0xc73241d4, 0x8c1d5f72, 0x000142 }, { 0x7886a436, 0x97e9814f, 0xecf1f88, 0xda6bf8c, 0x1ed694a9, 0xeee1ad43, 0xef583f14, 0xb2de367, 0x32c3d8fb, 0x9cc9ceab, 0x95360b1b, 0x53d6a0e7, 0x6f3473a1, 0x2ff83531, 0x570267f9, 0x473b7c1f, 0x00015a } }, { { 0xbc06cc75, 0xb80bf57a, 0xa943922, 0x821726c3, 0x90916589, 0xc9cac403, 0x62a57b96, 0xcd738164, 0xbfe2b18c, 0xc043498b, 0xe2e60837, 0x2dedb282, 0x5165b830, 0xc8a2248a, 0xcab95031, 0x2f4db251, 0x000093 }, { 0xe7a94550, 0x4d99a734, 0x13fd0606, 0x9b88c9c9, 0xcd0fc0e4, 0x165672c3, 0x54098bc3, 0xbc10fc48, 0xecb97e68, 0x25f5bd3e, 0xc441b8c7, 0x955d64b9, 0xcd32d7f8, 0xd9c0736b, 0x8a190ef2, 0xe0d92a2d, 0x000087 }, { 0xb08c5fdd, 0x42dfb230, 0x68c2d582, 0x39726f6c, 0xf32ce64b, 0x883b8dd4, 0xd7ce6d31, 0x6523a54b, 0xae0f29a0, 0x8f2e6a9, 0xbd501d55, 0xd06dff54, 0x73ae3072, 0x5a8171fb, 0x1835a72e, 0x9b7f3f18, 0x000146 } }, { { 0xd91a0adb, 0x3f36fb06, 0xeba8bd29, 0xc60cb0dd, 0x2602223f, 0x4b4fb5da, 0x35b59f6e, 0xdd3fe624, 0x4e0ff275, 0x4945ac14, 0x67e90fc3, 0xd88ae908, 0xb306e453, 0x3f2f3758, 0x3aeb3ad7, 0x87a12fa6, 0x000037 }, { 0xe4f143e7, 0x84c10b36, 0x236fb364, 0x2425bd00, 0x36ba9056, 0xfbea2f9d, 0xcbb91948, 0xa58e5cae, 0x6776935, 0x3f6779c5, 0xa8f5c6e3, 0x9fd574cf, 0xbb8edc3d, 0x6139ac35, 0xded6e73d, 0xf990ff95, 0x0001c2 }, { 0xc7b7e036, 0x32d35357, 0x7fc65b8b, 0x43010898, 0x5745cb8b, 0x20fbdbca, 0xb3c0f518, 0xa7bf1928, 0x8ed18f15, 0x60ddf216, 0xfd097e26, 0xe0bc953c, 0xf32a558a, 0x16eba386, 0xcf3d1389, 0x3a495c88, 0x0001b6 } }, { { 0x35a87dcc, 0xaa0ef863, 0x4a4a0670, 0x270b0393, 0x4d0ea394, 0xbe49fde9, 0x631ebf60, 0x7139ca80, 0xcb9e50a4, 0x7a4cdc68, 0xdb5bbc5e, 0xe6acb60d, 0x43654b2d, 0xd9811ef4, 0xb9e6ce85, 0x6b4e35cf, 0x0000df }, { 0x55d0df51, 0x469488, 0x5d8a3520, 0xf02cdb28, 0xe386dc34, 0x3e38502a, 0x32455e5c, 0x130032f4, 0xb1b38301, 0x970fd769, 0x91a926da, 0x3139e0f8, 0x1dfb1c3b, 0x86fde7a, 0xd6768b46, 0xb5639b1c, 0x000145 }, { 0x6f28b539, 0xfa84122, 0xc233ef04, 0x8b563544, 0xfffeeff5, 0xdbe745eb, 0x52cee3d1, 0x39ce4cc8, 0xa83aab7b, 0x8a68739, 0xe65bec03, 0x9159aa32, 0x9208758f, 0xbaf1ae42, 0x806138e5, 0x882e041f, 0x000009 } }, { { 0x7ab964bb, 0xc65ecb3d, 0x74e574b6, 0x8b715bb3, 0x783105f5, 0xfdc643e3, 0x2fcacb4c, 0x108dce0d, 0x7e81120e, 0xb578751f, 0x7ddf6509, 0x81fa573b, 0x6a2eb35f, 0xca8556bd, 0x33f0a51, 0xe1ee60ce, 0x000184 }, { 0xe7675f72, 0x85bdd32d, 0x4149cad1, 0x5a70e9ad, 0x2b715dea, 0xb511536, 0x198085b1, 0x909d318, 0xcf6fe6d3, 0xb84fde61, 0x94102adc, 0x89210d50, 0x2386c9e2, 0x8023e087, 0xe19f8de6, 0x8ac8769e, 0x000051 }, { 0x4512e171, 0x2238cd32, 0xe28779f5, 0x65cf0d29, 0xe3fa25e1, 0xacdfe6ba, 0x4486ea21, 0x8d6df11c, 0xe14dc029, 0x2621bf4d, 0x562af13f, 0x70642e13, 0xdc52f9e7, 0x23175856, 0x39f8ff14, 0x4dc9a609, 0x000130 } }, { { 0x7c355507, 0x3a9899ff, 0xd8da3322, 0x460b11f6, 0x5fedf762, 0x1c12dc93, 0x9d82fe99, 0x7b68b6da, 0x12598637, 0xe6dd8109, 0x3ce62a58, 0xc160c8c0, 0x6c1d7ae8, 0x9545425d, 0x4418ae07, 0xf2ffa42c, 0x0000aa }, { 0xa973b984, 0xe70708c1, 0xde70e881, 0xe9e93c7f, 0x6c0075f7, 0x4672166c, 0x8bb39cba, 0x161a54ab, 0x6c211a52, 0xcd44376f, 0x45c2839e, 0x36fc749c, 0x4f442a2a, 0x12fc7e71, 0x4c7bf790, 0xb4bdb5ba, 0x000050 }, { 0x27fce418, 0x261dd63, 0x77e08d39, 0xdcdea9d5, 0x8f93fcd5, 0xa5ddf966, 0xf5e8fd7c, 0x7525ae2a, 0x38d2e959, 0x47696e49, 0xd92e74c8, 0xf7ce8c5a, 0xdfe14f3f, 0x79b7744c, 0x22b85ae4, 0x40de2105, 0x000016 } }, { { 0x602342de, 0xc5edd4e6, 0xe7e2e1fb, 0xd6ba1588, 0x844d8a99, 0x996ed68d, 0xb90ff44c, 0x593f7af1, 0x3a75c5c4, 0xa4e8cd5a, 0x883e402c, 0x47dcdbce, 0xefb98dc, 0xe112aebe, 0xf7c753b3, 0x9953f63d, 0x0000e0 }, { 0x4b035c4d, 0x87d472bf, 0xdc6c3f7c, 0x772d8adf, 0x3425fe25, 0xb6f977b6, 0xb0ee8c75, 0x121da173, 0x66c843fb, 0x2f1cdd0b, 0x8d6d6296, 0x64da545b, 0xe560fcce, 0x5966f35c, 0x4b573c06, 0xf42e2e0c, 0x0000fe }, { 0x3925d8e, 0xa14ece14, 0xc6f8a3b6, 0x8896fba1, 0xf2261a7d, 0xfb4c9b5e, 0x66b61f83, 0x934a4706, 0x2fefbef1, 0x553ccdae, 0xf1908dd8, 0xbf17e8c0, 0x5502be91, 0x8df81342, 0xa4ce6212, 0x850f99c9, 0x00000e } }, { { 0x14f45d26, 0x9c78c42f, 0xe716eacd, 0x1b5356df, 0x8aec65e6, 0x5d4fc874, 0xb1162afe, 0x2a341e04, 0x4d50f0c0, 0x8af3a601, 0x54dd99d, 0x8cfc9eee, 0xa5ba806b, 0xeff54d1c, 0x521d655a, 0xca87c435, 0x000054 }, { 0x65fddfa3, 0xecd3ffb1, 0xf056c503, 0x3fcd2395, 0x7c14c419, 0x41e0a10e, 0x78e312d4, 0xb3473278, 0xc11bfffc, 0x69b21d62, 0x9739c3d2, 0x6904b261, 0xa1fa6b4a, 0x4d2c2e46, 0xf8926718, 0xd420c06b, 0x00007b }, { 0xea7e6695, 0xddc2c708, 0xc47477ec, 0xa91b455d, 0xa22991b, 0xe75a90d0, 0xdae52727, 0x23b05d1f, 0x184b3943, 0x8e6e97d8, 0x9cf4ccf3, 0xd6b181ee, 0x95550e00, 0x77e0c0d4, 0x7ffbd70f, 0xa79c8af, 0x00007c } }, { { 0x582774f9, 0xb7340b6c, 0x2a73d170, 0x3520892e, 0x887f4391, 0x53a1b944, 0x45bfdb1e, 0x473f221d, 0x85228a18, 0xd3e84c83, 0xc962cdb2, 0x247fff80, 0xa65122c9, 0x955fa8a8, 0xf2b67991, 0x784d5d15, 0x00009f }, { 0xc427ceee, 0x7ea16bc1, 0x40fd2ec8, 0xe6eac082, 0xbfd89e19, 0x7cb70f96, 0x1f732876, 0x8a2f95e3, 0xbbb7b7f6, 0x38d4edef, 0xb9a573bc, 0x6cfd257c, 0xffeef052, 0x652b696, 0x5cffa973, 0xf04eb4c2, 0x000117 }, { 0x2a6d9cae, 0x79791a67, 0x97d8bb06, 0x1198a991, 0xb98a5524, 0xd8973f88, 0x655db92b, 0x96dc8525, 0xcd4c7cbb, 0x77a3a4ea, 0x9e28e342, 0xe8d286b3, 0x12cbaf4b, 0x81bbe3e4, 0x34bdc304, 0x25fd3fcb, 0x000094 } }, { { 0x7d5eb3be, 0xa7478ed2, 0x97f2eff0, 0xf73e0d09, 0xa9284871, 0xe1655d86, 0x26ccec07, 0xafb8509d, 0x6f1b4bd4, 0x9d6bba84, 0x58d45e98, 0xbd35e0d6, 0xdce9a877, 0x3dd5af84, 0x80215ddb, 0xb502ac8a, 0x00019d }, { 0x95f0415a, 0xc365692, 0x73d9fa80, 0x4ebed60d, 0x2ee7faeb, 0xcf72faf9, 0x4e120f3d, 0x67c3c14c, 0xc78423e1, 0x92fbe0ee, 0x9f2f2aee, 0x7e9160d4, 0x5e374f15, 0x430ca594, 0xd397c565, 0x82e8083c, 0x0001ce }, { 0xeb7fb8e6, 0x1210e159, 0x6d82503d, 0x62a21d87, 0xc109a173, 0x152b832c, 0x623d6519, 0xf1b02adb, 0xc5ef912b, 0x7688b9a8, 0x57527ff9, 0xb4e39f77, 0xc43faec5, 0x5c32f560, 0x86e53118, 0x40cc5fe6, 0x0000c4 } }, { { 0xfd0e815, 0x327f42d9, 0xa756141c, 0x57800c33, 0x6ce66efa, 0xe08077b, 0xb39c36e4, 0x4a9bc945, 0x16219948, 0x9c6067b2, 0xf111ee04, 0x1c395711, 0x8be9791f, 0x6b143f86, 0x7145e7c5, 0xb38d2db4, 0x00013f }, { 0x3cbcc029, 0xba03371, 0x8a0f25bf, 0x59fc7abb, 0xed204df1, 0xab361e00, 0x827d9212, 0x1fefcbe3, 0xcdbf8efc, 0xdcec1647, 0xbda6164b, 0x9e348fd5, 0x4a2267eb, 0x7b33430d, 0xdb3544b0, 0xbd8ab26f, 0x0001d0 }, { 0xfb4885c1, 0x4ef939ba, 0x52ddf4b3, 0xe31ca275, 0x2820d8cd, 0xb7b3e91, 0xcc029a94, 0x7af53709, 0xc6fa0c5, 0xd5d06ad0, 0xd7ef5b04, 0x204fd46f, 0x6a4c1443, 0x687a2abc, 0xa2758b26, 0x7de26294, 0x000143 } } }, { { { 0x1e6c7be8, 0x741cbcb1, 0xbfc759ae, 0xecbe79ae, 0x7275795e, 0x53fbbb04, 0x381ded, 0xab74a477, 0x61e793da, 0x121e9514, 0x3ffc5ba4, 0xd4d8ec9d, 0xf8bcc1cb, 0xcdae980f, 0xc074f4c8, 0xb6230ccf, 0x00007f }, { 0x40a190b1, 0xe9936258, 0x171aa46a, 0xe165272d, 0x678ce190, 0x7831d840, 0x4d92b5a7, 0x41ecc66f, 0x8492ea3d, 0x6240913b, 0x43d9da8f, 0x435980f0, 0xb3da1e79, 0x1ccba9f9, 0x16c701ad, 0xbcbb0809, 0x000027 }, { 0x48d67980, 0xd7f9e9ee, 0x95fdc7e0, 0x64e199da, 0xbf214e89, 0xb0cdc0c2, 0x2a36f884, 0xe9e4bd82, 0xf0690701, 0x9db6f7bb, 0x482b31d5, 0x5ff33a8a, 0x293d3cf1, 0x2e722de8, 0xa6158160, 0xb4c796b5, 0x00010d } }, { { 0x8a13236, 0xf4ccb5b3, 0x486a945b, 0x87fdc6c7, 0xb5427b6e, 0x38c6752e, 0x9f4ce7bf, 0x97533b8b, 0xf12957ab, 0x9146ff9f, 0xbb3ad66, 0x8ef59f5f, 0xd6f1360a, 0x6ae7359b, 0x936e021, 0x94749478, 0x0000fd }, { 0xb194058, 0xad92657b, 0x57b08860, 0x273a2f49, 0x64ad2662, 0xf822821b, 0x685e2f6e, 0x6ce027a7, 0x6ce6052, 0x87c8201f, 0x29a9eed6, 0xdd5851ff, 0x6bcb40d2, 0x5c72124e, 0x1e667789, 0x506502e7, 0x000050 }, { 0x422e328b, 0x315338d, 0xb77fb2b5, 0x3e4e3f71, 0xa95d514f, 0xef0b7d7c, 0x6e978ef, 0x483e5634, 0xe6d009f2, 0x2bcb3fbf, 0x88edb6ff, 0xe61f8d90, 0x8bb25b94, 0x6a6ee24, 0x3422d547, 0xeffa70f5, 0x0000d7 } }, { { 0x5a5cfbc2, 0xd06e8ffe, 0x3a335700, 0x1139c5ee, 0x995e6f87, 0x626480ed, 0xf208fd45, 0x6f31d6fb, 0xa4909a08, 0xfc22b98b, 0x83970a76, 0x832f0a93, 0x9f7d6750, 0xcfecc1f6, 0x9c824f65, 0x22b1258a, 0x000003 }, { 0xbbd87113, 0x90084018, 0x9eb706b4, 0xbba7fa6, 0x94e49073, 0xcade8b6b, 0x81c403d6, 0xb2838b09, 0x47c367cc, 0x4959cde3, 0xcb490df2, 0x7cd66f7, 0x86025441, 0xef38ce1, 0x23cbe322, 0xe0bf2dcd, 0x000025 }, { 0x90ea0d28, 0x90a3d060, 0xcb0975a6, 0xa1837f38, 0x78e4948a, 0x10ea768e, 0x3d69a3be, 0xdec0a23b, 0xe0044969, 0xd20bdf5, 0x5e4cb6e, 0x1f051fe4, 0xa4bcafa2, 0x2a238dca, 0x13d666d1, 0x5356d595, 0x0000c6 } }, { { 0x9e4df00c, 0x656183a3, 0x4a7c6374, 0x4f90eff8, 0xbc1d1bf2, 0xb9f7e195, 0xbc43fd00, 0x1869ea8f, 0xd1f5ce65, 0x90528d8a, 0x72b4b52a, 0xf372123f, 0xff95a04c, 0xc71af196, 0xa5143a0f, 0xdeebbf04, 0x00006c }, { 0x72bf0062, 0x4ad645c7, 0x2dab3d7e, 0xf6066dde, 0xda469c02, 0xc2392efb, 0xe06dbf86, 0xbfcd7207, 0x35254c21, 0xdc532eeb, 0x77fef24d, 0x6b112d29, 0xdcf2999c, 0xb8707148, 0x9a111e0c, 0x91da185c, 0x0001a2 }, { 0xc5402b53, 0x2444cbba, 0x48b1e934, 0xf5e3082d, 0x43e7d183, 0xd4c86f10, 0x96bd3146, 0xbad7b684, 0x8bfb1435, 0x9cb1117e, 0x34455fd7, 0x63867841, 0x1dd78af0, 0x6e507cc4, 0x1313e1b1, 0xa2bdb09f, 0x000149 } }, { { 0x4fa8b2e5, 0xe34ae67a, 0xa37e9e94, 0xa8186baf, 0x1b24b062, 0x79472ba3, 0x78f79417, 0xa1cd8739, 0xeae81b22, 0xc634bcaf, 0x7c7b68f6, 0xf3c0ef05, 0x442243cb, 0x5b82c9d4, 0x26a88458, 0xcc163566, 0x0000e5 }, { 0x1b34872b, 0x17ad90f9, 0xbea1935f, 0x6e02da32, 0xc87831a7, 0xf996d4dd, 0x7ab06021, 0x18c79020, 0x1c694ad5, 0x832f2095, 0xf97bf56a, 0xc963dc31, 0x38c68673, 0x474b2a36, 0xaa1f9332, 0x69b53f2e, 0x00013c }, { 0xce3ffa40, 0x85ad676f, 0x7517dbd5, 0xa49dafb7, 0xe911bf64, 0xa0c2690a, 0x30d5237a, 0x6ed42b0c, 0xbf5a34d8, 0xc4485377, 0x44709f46, 0x793ee25b, 0x2d9f7665, 0xbc24bc5f, 0x82a2e3a3, 0x6914ca00, 0x000181 } }, { { 0x79fb8515, 0x58da0309, 0x79970c7b, 0x93ca8e1b, 0x6840531c, 0xc4c07da1, 0xe1b06a77, 0x185d0210, 0x3eb67d8a, 0x12e7f505, 0xe49fd4fb, 0x8961d9b4, 0x230d7e74, 0x414dccf5, 0xc6dba4f9, 0xb4dd9fea, 0x0001e0 }, { 0x87815315, 0xbfce37a5, 0x4a4ba9d1, 0xdfd4d0d2, 0x210c62d0, 0x4e5a6f84, 0x7c6ce54d, 0x67f519c4, 0xd641e016, 0x31eaea41, 0x4604931b, 0xb0429bf2, 0x440c5452, 0xc3e59ffc, 0xb3241de9, 0x1f82c862, 0x000087 }, { 0x3ce42581, 0x4409c0b8, 0x14193986, 0xc7d34155, 0x503f9275, 0x9260650d, 0x9b80e522, 0xa635de83, 0x7e7378c4, 0x503b8966, 0x179e94c2, 0x96acba8e, 0x2661c3dc, 0x7666f31a, 0x3b8dffe4, 0x9c7ff27f, 0x00009b } }, { { 0xa872fc75, 0x6ca45baf, 0x88af3d0c, 0x1390cb09, 0x8fb41914, 0x4eb701c5, 0x96ee0235, 0x1078e06, 0xbef36a28, 0xaab8f1ea, 0x1a761ed, 0x556c8db2, 0x518783a9, 0xaaa1183b, 0xdb8e6b2f, 0x806119ed, 0x00006f }, { 0x5b825c5c, 0x330d2d9d, 0xb96ee51f, 0xbab131df, 0x67459071, 0xbfb73014, 0xc6f1e038, 0x7e71d8f0, 0xe7fdcead, 0xae1fdefc, 0xa9ec1b82, 0x62f26db4, 0x9d6e51c, 0x170162f0, 0xeb85cdf1, 0x330e9e5f, 0x0001df }, { 0x84d8d11c, 0x99d26f95, 0xbb6ca19c, 0x11f8eb13, 0xb9c6b2c1, 0xe5afbdd2, 0xf3fcb124, 0x66c8d946, 0xf459dd0b, 0xb3881560, 0xab51b8c, 0x240f3545, 0xf0d72e7f, 0xd88d1ca1, 0xbcfb97f9, 0xe479640a, 0x000116 } }, { { 0x424cfa69, 0x6553185e, 0x21922c80, 0xde4c9fa7, 0xcc4eb20b, 0x80f0a0e1, 0xb45b6422, 0x41d3fbc8, 0xb94dcd54, 0x504b7d77, 0x442fdd25, 0xb332b0da, 0x75fc3a6c, 0xca25b612, 0xbad1e584, 0x6f70f8de, 0x0001b4 }, { 0x97d9cb6f, 0x29ebe175, 0x56962aac, 0x932cb367, 0x6d86c891, 0x58549ca7, 0x458daa91, 0xcdb9fea2, 0xc5217cca, 0x696c8d67, 0x2c2739bc, 0xb1afb7f9, 0x96ead9f9, 0xe18603a5, 0x26856f60, 0xc191f3ed, 0x00013c }, { 0xd82556a1, 0xa33a2243, 0xc9e68e18, 0xf442d573, 0x68eada3e, 0xa1061ce9, 0x99133c07, 0x1cef76e7, 0x173e20c8, 0xb001e6f6, 0xa815900c, 0x76504fb1, 0x7fd2fc44, 0x4766041f, 0xb6cbc825, 0xf28dee22, 0x000018 } }, { { 0x46fc0b89, 0x9cb45740, 0xc6e701d1, 0xac129056, 0xd74ee101, 0x155af6d9, 0xddf871ab, 0xc4b8e303, 0x8527ef55, 0x4a6dd8a3, 0xe900e04, 0xc6ba2f42, 0xcfdf0ed, 0xad5776dd, 0x36c1fe72, 0x20ded97, 0x0000fb }, { 0x295b60a, 0xb9f12cac, 0xdb888c11, 0x2b3bea5b, 0xe771579b, 0xc1f3a057, 0x8251fcab, 0x872a0e51, 0x57b026b5, 0x851252f5, 0x1bb35a99, 0x505cd766, 0x7a5ae2b0, 0x5176ab58, 0xdc6ed422, 0x7cd217af, 0x00015b }, { 0xd4e353e9, 0x42290a64, 0x75e26ded, 0x9b86881c, 0x3d392b2b, 0x59293fe4, 0xbcc3b325, 0xf7029249, 0x17174bd4, 0xa786e4bd, 0x586caff6, 0x14eaa4aa, 0x4670d1fb, 0x9c711e58, 0x96b653a3, 0x36f4a81b, 0x0001d4 } }, { { 0xe4d9e758, 0x1d0c000c, 0x7bd4aba6, 0xff9b6da4, 0xe072ff63, 0xf2876be1, 0x4f2ce735, 0x2267d887, 0xc2407403, 0xfeaf292e, 0x32d155f8, 0x8a30ada2, 0xaa8d5af1, 0x4ecd70b6, 0x998468d8, 0x1ed28fe8, 0x000140 }, { 0xd6f798bb, 0x9d4261fd, 0xcd123b4b, 0x959e3fff, 0x55db17ec, 0xab147dc3, 0xd11fef6b, 0x2dd54c50, 0x84310f01, 0x3292d6ac, 0x9537d08b, 0x72c0144c, 0x6f523a06, 0xb627802d, 0x48a66b13, 0xc691bdf8, 0x0000ce }, { 0x904b68d6, 0x144aaf8c, 0x3cdb775e, 0xf5e9f885, 0x715ca74a, 0x856a50c6, 0xeae4a1b0, 0x5e8753b3, 0x8a375a4c, 0x1bfa15b1, 0xe832a03, 0x482fe25f, 0x49ddcb1a, 0x171e8709, 0x4711ae91, 0xdc2d273d, 00000000 } }, { { 0x463685f2, 0x106292ab, 0xb0113ff3, 0xba872321, 0x303f1af, 0x5cab129a, 0x794e2284, 0x20feed59, 0x2850ec6, 0x53f6657c, 0x6d5cd0df, 0x843200b4, 0x1a097ac1, 0x5404b247, 0x8d63121f, 0x6ef1b124, 0x00005d }, { 0x1fbdbb70, 0xba6c0b31, 0xeb4451b3, 0x8abf26a4, 0x40468131, 0x56b3e4ba, 0x8e01d85e, 0xba7dc3c0, 0xe1b438be, 0x289551eb, 0xad646fd0, 0xf5accf85, 0xbb1797f3, 0xd83c347c, 0x78167934, 0x61787633, 0x0001a6 }, { 0x8ccfbbd8, 0x87d1c894, 0xb64c8b5c, 0xf3ad8869, 0x6172a4f, 0x79944cc4, 0x3546d022, 0xf5902fe8, 0xd6f8a2b6, 0x4f4805c, 0xe5b067c3, 0xcc7a7011, 0xa947da16, 0xc6e92345, 0xd60e84da, 0x9aa0b864, 0x00016c } }, { { 0xe66c56c0, 0xbe2e18f, 0x27e49590, 0x4bf252ff, 0xb5a8e71e, 0x4477168d, 0x89d56a85, 0x3f5ba205, 0xbb59256a, 0xaa854dce, 0xbcf2dd66, 0xb4ead200, 0x2efc18dd, 0x1b8bbfc2, 0x1e8d602c, 0xfa47dd11, 0x000159 }, { 0x4a5b61d6, 0x1ea481a8, 0x6874fded, 0x8bd1ec42, 0xc2bed55f, 0x3886ed5, 0x4f5c07d8, 0xd1d7063a, 0xe9893d05, 0x835e20fe, 0xb34ceb5, 0xc8156073, 0xeb376da0, 0xaeb09b2, 0x4de1e4be, 0x18ac3d0, 0x0000b9 }, { 0xbb237e5d, 0x953f404b, 0xa040766c, 0xdf2e9a64, 0xe515d2ea, 0x462b3a56, 0x14cffae8, 0xa13fc87a, 0x2e779ca5, 0xc23bde20, 0x75fe64e6, 0x63429a60, 0xafdec86e, 0x110a4f54, 0x9b878196, 0x1e803cc6, 0x00015a } }, { { 0x55b3bcaf, 0xb2787d24, 0x2fd21452, 0xa73cd351, 0x24989727, 0x60469f50, 0x100abd97, 0xaf5ef739, 0xc753f0d, 0x87e6297b, 0xee76e3b9, 0x9a6492fc, 0xce3f7c8a, 0xf08eb228, 0xc4bb1371, 0xdd7c1c33, 0x000188 }, { 0x9979840d, 0x905876fc, 0x5d9dc0dc, 0x3062fb33, 0xd42546fc, 0xc3962a4f, 0x4d49033e, 0xd1756994, 0x2ca1122a, 0x41cd4050, 0xc318b23f, 0x9f3f9711, 0xa61483d7, 0x828a772a, 0xcfee86e5, 0xcc81972c, 0x00018d }, { 0x9e704fbc, 0xf34a0235, 0xa0869190, 0x3f6c8940, 0x4c2b9ae5, 0x2fc3a7a6, 0x11702ade, 0x4e2f50cc, 0x4be17d16, 0xff3db329, 0x41517de, 0xbcfd2330, 0x46cf71a8, 0xd33ee8e5, 0x9f56db7e, 0x4f32bf57, 0x000009 } }, { { 0x5fcddc7f, 0x92e4765d, 0xe0548b68, 0x8d1cb107, 0x61266ddb, 0x83ce4124, 0xc0db285e, 0x26c77192, 0x41bd7afe, 0x8dfb7f47, 0xbabe5e13, 0xc3cbfea6, 0xb1f88fa, 0x5d9c8924, 0x8fb99ce, 0x2c147e6a, 0x0001cf }, { 0xe4090b82, 0x435e5961, 0x3d0356bc, 0x6bb959f8, 0x49e80536, 0x65aa0602, 0x6d31b77a, 0xf22c96bd, 0xb6eafaa5, 0xc8fe66c0, 0x4d55f79c, 0xef22d39b, 0x2a01b7d1, 0xff75bcf1, 0x645e76e9, 0xeec0bab0, 0x0000ce }, { 0x27c0a46c, 0x3e537d26, 0x651a60cb, 0xbf63be1f, 0x4afac0c7, 0x31693e18, 0x80ab06bb, 0x7db05229, 0xcdafedbd, 0x413df0d4, 0x10c18d80, 0xbba65dcb, 0xf183b81b, 0x95b42132, 0xd077122f, 0xe6107259, 0x0001fa } }, { { 0x3b9b836c, 0xb16c476d, 0x821616d1, 0x8d536f1d, 0xbd8002f8, 0x7ca75c5b, 0xc7106ea4, 0xb0222083, 0x288ba5bb, 0xb9f92f81, 0xb1594788, 0xc8ab7bfa, 0xd52ebf41, 0x12e5bf2d, 0xaeff78a9, 0xdefc9b1f, 0x0001be }, { 0xf0034fa4, 0x75d94abb, 0x3e5d8b3d, 0x5702d329, 0x25891db6, 0x8c5b9585, 0x2acf975c, 0xf841140, 0x1bf226a5, 0xabad2fde, 0x26c1aba1, 0xf56ec550, 0x43694d63, 0xb32fc8fb, 0x1bfcbed3, 0x2a751046, 0x000138 }, { 0xdcdcb4ae, 0x74c0d504, 0xf332b0f5, 0xe438c6f2, 0xf8c9f9a5, 0x94671199, 0xea94905, 0xf414f451, 0x5d812a6a, 0xb9999ebd, 0x86d235b2, 0x1c9c8e43, 0xedf5f0f2, 0xf5db2990, 0xab47b5e9, 0x2e3e5a69, 0x0000b2 } } }, { { { 0x8e4a037c, 0x56957e5f, 0x8191c292, 0xa13208f2, 0x4813bdeb, 0xa917ef52, 0x843df579, 0xec29c737, 0xda67d265, 0x54a1364, 0xca9280bf, 0xdeaa2a2b, 0x802afadf, 0x107d4d99, 0x99b2afa9, 0x861e2384, 0x000128 }, { 0xe2e60bf2, 0xd99a1d05, 0x21c5dc89, 0xd1e40569, 0xf1f1b9a, 0x1b0cf35c, 0xd0013c53, 0x2f44ea97, 0xaf4acd9c, 0xeeb18050, 0x7431efbc, 0xbafb26ea, 0xd608825f, 0x17fd489b, 0xaf057f07, 0x8c5aef32, 0x0000fc }, { 0xab6d30b5, 0xd2757397, 0xef03d518, 0x8fb75d5, 0x57129c67, 0xb15ea588, 0x62b59c79, 0x92eb6cd9, 0xcc47f06d, 0x3156d52e, 0xf5e62b0f, 0xf9a1e7a8, 0x7d60b336, 0x24ed55a9, 0x48200175, 0x637f1f60, 0x000082 } }, { { 0xfde87b7a, 0x7bc2b4f7, 0xc8ae7125, 0xbe3e80a3, 0x38ec8125, 0xb8f3ef5a, 0xf9f29f33, 0x9fe054fb, 0x73fe82da, 0x8b8f1238, 0x2a8efe1f, 0xf6198ccb, 0x2e7e1d42, 0xdfd132ae, 0x5e037089, 0x64c07570, 0x00000e }, { 0x198314c9, 0x85c94c95, 0xf768d242, 0x112ae68f, 0x4489712e, 0xd6c226cc, 0x939f356c, 0x6d60267b, 0x6b9170b2, 0xb86159d6, 0xcd842e5e, 0xf3bf9622, 0x19b6414, 0x396a5c71, 0x495b559a, 0x40cff5d7, 0x00010d }, { 0x16a7a6f9, 0x5b197ef2, 0xf4ea81d5, 0x52ac8a64, 0x9d7e2131, 0x36fb673, 0xed62fb03, 0x3356e019, 0xbba88586, 0x5ee9f0f6, 0xe4523db3, 0x72a8c8ba, 0x77387c31, 0xf2fb7f2a, 0xc015fcd5, 0x992cec1e, 0x0001c4 } }, { { 0x22c6151e, 0x3dddcabf, 0x58c14f76, 0xd24184b7, 0xd7129e72, 0x22bdfe6a, 0x7a22bf26, 0xe4954adb, 0x86b3ec92, 0xa034ffa4, 0x71411564, 0xe246c32d, 0x9b7f8971, 0xccb8fe22, 0x5fc4caad, 0x16dc6733, 0x0000cc }, { 0xd29fcf33, 0xeb7138d1, 0x6e0e5c22, 0x2fb48f2, 0xa13b8a20, 0x4afc72e3, 0xf4c1b129, 0xd8c025bd, 0xd4315a4c, 0xbf92c437, 0xe50bfd8c, 0xe3a6e93, 0xa3051c2a, 0x1f8f1d95, 0xdfde67cb, 0x1892e070, 0x0000b3 }, { 0x38d62c2e, 0xebfa3bfd, 0xd5083ef5, 0xae7a9b9c, 0xa5d32bd7, 0x3c3e5435, 0x8a7195b9, 0xac5ade6e, 0x5742093d, 0x54bd98ea, 0x76644517, 0xaa823766, 0x732edc54, 0x5a356d3d, 0x936849fd, 0xc03d6e2b, 0x0001f2 } }, { { 0x8b96ccbc, 0x216c31ca, 0x42668a2d, 0xb495beca, 0xd5f96c75, 0x83e4d695, 0xe0c1deac, 0xada26ffe, 0x488deb2d, 0xbdd9d16d, 0xa06ad0b4, 0x773636b, 0x164f79b2, 0x32a07265, 0x3fecba7, 0x8d5413bf, 0x0000f2 }, { 0x4afc8171, 0xa9f2075c, 0xbe471ef3, 0xab8538e1, 0x1bdaeaf0, 0x13e61d25, 0xc56ce30a, 0x89a8b93b, 0x78e2ca56, 0x1124db52, 0xd5ce7251, 0xee33510c, 0xb6e581e8, 0x15cda349, 0x168b2cf1, 0xe381af51, 0x0000d4 }, { 0x2c84862c, 0x4f1407d5, 0x10297f47, 0x9d39beb1, 0x46c11609, 0x8b413ea6, 0x23f29309, 0x76bd7e30, 0x14d182ed, 0xbd0b52d7, 0x61d16682, 0xd7b88525, 0x2c9288a8, 0x45149153, 0xb21a9a0, 0x49ba435d, 0x000057 } }, { { 0x581e6c1b, 0xd626abf5, 0xf0f673fb, 0xdcec2525, 0xacddf2b1, 0xcd43ab17, 0x7c64d055, 0x818ea4ec, 0x7dbd2938, 0xdf37ed3c, 0x9afa4664, 0xedbbf775, 0xdf1e4de, 0xb76238a0, 0x6e41eb59, 0xbeca2a04, 0x00012f }, { 0x9162b230, 0xeea1d492, 0x1aeb449c, 0xeb6dccbb, 0xb69749e9, 0x7230a71a, 0x352a2128, 0x178e6108, 0x504d99f6, 0x48b9fa5e, 0x1d6439cc, 0xbe8f263d, 0xf6643c40, 0xbfc7b8b7, 0x427f4226, 0xf4fce5d2, 0x000131 }, { 0x8e37c79f, 0x934aded0, 0x44a92f81, 0xffe14c83, 0x4575c250, 0x2ec3dceb, 0x1173997c, 0x5aba622b, 0x91318630, 0x812fbb26, 0xe6adcea6, 0xfd5c239, 0x2d22724a, 0xf9c9d977, 0x7e8ce576, 0x2fc3702c, 0x000155 } }, { { 0x851ad08a, 0x7f16671d, 0x11164ab6, 0x44a69268, 0xaccc0fdb, 0xc2d21ab5, 0x60f40590, 0x20a2afad, 0x23235b12, 0x2c188113, 0x39edaab0, 0x6407c190, 0x2d24b287, 0x6576084c, 0x5ceec8e, 0xafb65217, 0x000122 }, { 0x3b6159eb, 0x942f3944, 0xb5b9b3fd, 0x69115155, 0xcc655149, 0x12b2ad6c, 0xac888015, 0x3c5488d5, 0x85d1c66f, 0x72452bed, 0x630957c8, 0x49d0e7d3, 0x4b0350e2, 0xa2b918d1, 0x69496469, 0xd8d8af69, 0x00005e }, { 0x56991184, 0x78eda4e1, 0xcf63bf0e, 0x3111c50f, 0x9ffcce7a, 0x685e1842, 0x54934076, 0x60d47e7a, 0xa7cdba49, 0xdf0bfcba, 0xbacf7ef3, 0x89ba2323, 0xb17ec85e, 0x6a28b0e8, 0xb87da1d4, 0x38356f03, 0x00014c } }, { { 0xae5befe6, 0x5f4a3d31, 0xf645b219, 0x4f11675f, 0x1833067f, 0x972ca976, 0xe8446b44, 0xf37a247, 0x62c92bc6, 0xe83a1cc, 0x74e8c44, 0x1a9c9a4b, 0x361a3372, 0x771b22aa, 0xb6f4d5ae, 0x96438e61, 0x00009b }, { 0x20fa4eb7, 0x872f455d, 0xd70c2536, 0x9f22d877, 0xb58e30f9, 0x4a2b8162, 0xce8b5503, 0xa70a7b13, 0xeafc371c, 0xe92c27f1, 0x8d67b6dc, 0x860bd1f4, 0xfc94b5c7, 0x7c7e27c, 0x930ac8d0, 0x28d5e8f3, 0x00001f }, { 0xe9b9bb98, 0xc00cf730, 0xd4b692d2, 0xd59b91d8, 0x738a11c3, 0x1f5de28, 0xcc88fc0b, 0x2af463a2, 0x3bdbcec1, 0x468d94ea, 0x3bf0118f, 0x4a13022, 0x1796942f, 0x444c023a, 0xcece0aee, 0x11228be8, 0x000054 } }, { { 0x959bc13f, 0x94f23a87, 0x5417d26a, 0xb6ac5965, 0x5c7058ef, 0xff0b801e, 0x68f0e779, 0x167be012, 0xe12e5e90, 0x8ef24847, 0x7129b452, 0xef756166, 0xc5d28158, 0x147d4ed, 0x152ed940, 0x874e7866, 0x0000ca }, { 0x42f6950d, 0x90b8aa4d, 0x5202f082, 0x64bd2225, 0x6f6c2ca2, 0xae4d37ce, 0x87b7495c, 0xca399fdc, 0x40520fd6, 0x50b200e7, 0x2f874395, 0xda0279a0, 0xb232f56f, 0xb919314, 0x35f8d973, 0x6d9ff30c, 0x000048 }, { 0x33aa3148, 0xd1f4d11f, 0x561b1dc7, 0x5d0c533c, 0xb57abd7f, 0x77b634ab, 0x8363572d, 0xcbf1c7e3, 0xfa327ab7, 0x18e66f11, 0x2d3ca35c, 0x7ef70ab5, 0xc39aa10b, 0x967e503f, 0x71cfb1bd, 0x3a850e9d, 0x0001c9 } }, { { 0x233d4856, 0x20ebcf29, 0x902c379e, 0xacbd8702, 0x440af0a6, 0x7dae4411, 0x597f0429, 0x7ba59e86, 0x7e40d41c, 0xdceaf7e5, 0x469f80ab, 0x8beaba1e, 0x70db0c99, 0xb659bf1e, 0xca24b502, 0xdb3bab99, 0x0000b4 }, { 0xbf771460, 0xfee31906, 0x34bef6cb, 0x658c9e44, 0x962a672, 0x39c1c3cc, 0x9af3c179, 0x2a5f7675, 0xebb95a7, 0x49a3323b, 0x9d290908, 0x9958de88, 0x58f0ba7d, 0x7bafdc78, 0xa8ee0b9c, 0xd6bd45d, 0x0001c7 }, { 0xe350f88, 0xb5e0301d, 0x60e7eecd, 0xb6491e97, 0x7040ba7, 0x316e37b6, 0x92249020, 0x134a7ae3, 0x81e67549, 0x12894919, 0xab8b0f33, 0x222e53b6, 0x75422511, 0xf7ded9c7, 0x20f82a4b, 0xac6ccdc0, 0x000098 } }, { { 0x4271478d, 0x89756a77, 0xa4718d3d, 0xd0f191d8, 0x4f47c0f9, 0xd8d7a5b9, 0xc6dbfac6, 0x525d38e1, 0x32e824a8, 0xba4089d7, 0x3bd03381, 0x2b07eb46, 0x78e6cde0, 0x8924b46a, 0x6d916c03, 0x364b80e7, 0x00018c }, { 0xf4aceff7, 0xea3d0eb8, 0x160a0cd8, 0x3eedd5c0, 0xfebbb9f5, 0x9364a981, 0x2a791763, 0x2f99e555, 0xb64648ee, 0x6e7484a3, 0xc584efe3, 0x469a52a9, 0x668fc0a3, 0xbc4872c9, 0x433d445e, 0x346cf726, 0x00018f }, { 0x24a8bc42, 0x587f1c9f, 0x3ddfed38, 0x4ae96930, 0xfd14064e, 0xa73ab65c, 0xdc8521a3, 0xfffda774, 0x8d8c2d96, 0xf2732762, 0x8aa748b, 0xb93a164f, 0xc19db3b, 0xe9940ad3, 0x9b6387bc, 0x39cb2903, 0x0000ef } }, { { 0xc15292f8, 0x37050606, 0x9630ddeb, 0xacb089d2, 0x7993f43, 0x8d585dfc, 0xf49a1bd6, 0x54089751, 0xa8f1d2f9, 0x50a49c25, 0x28847aa0, 0x999dda47, 0x29e6db69, 0xf0e92a, 0xc3b07122, 0x63b911a, 0x00017c }, { 0x6831db90, 0xc2c0b962, 0xa0da8448, 0x917b89fe, 0x716b8b10, 0x8c312d1a, 0xf95f65c3, 0x335dad59, 0xa06c0b83, 0xfc1efbb9, 0x358214a7, 0xdcb94af5, 0xe75b2cf6, 0xc542ff9b, 0xa46ba384, 0xe08f12e2, 0x0001c6 }, { 0xb783733d, 0x7826dc43, 0xb6485abf, 0xee8a27fc, 0x8618b22e, 0x9a99fdd1, 0x690f2d88, 0xeabfe98e, 0xcdc8fbe6, 0x8184c57b, 0x5e8a34f4, 0x4622dd78, 0x1760dd70, 0xf7f801ce, 0xef1a002b, 0x8b468d26, 0x000066 } }, { { 0xe5600ec2, 0xff423607, 0x59405906, 0x45e497a1, 0x97887652, 0xaf14caab, 0x9e3c417d, 0xe3e7e375, 0x5f4033b, 0x31b8700e, 0x7951373c, 0x7649819, 0xd2af12ba, 0x8fdcb076, 0x367571f, 0x740f70c5, 0x0001fb }, { 0xac3d09ee, 0xdc53d146, 0x7447ec71, 0x32df3055, 0x373684d6, 0xcf4881ca, 0x913b7161, 0xcca80205, 0x4d6417c, 0x85cf45b2, 0xc3fb0094, 0x9d68d84e, 0xd3e8e336, 0x285b7e9f, 0x6bac6492, 0x58783fe9, 0x00018c }, { 0xd65c1beb, 0x132e7e5b, 0x876fc56d, 0x55461d1e, 0x33b7ce47, 0x5c963e58, 0xf4c5610b, 0xb28cf07b, 0x1becf502, 0x5dad2624, 0xf4e132bb, 0xc0daa1b3, 0x48376ec7, 0x93a23230, 0xd34460d2, 0x77247c4c, 0x000094 } }, { { 0xb4978a07, 0xda5a8be1, 0x58b27483, 0x76f10605, 0xf7d43b8, 0x5b7943b4, 0xa3c68c00, 0x81909d0d, 0x95ed2d8, 0x4c3b3095, 0xf6a63df8, 0xc17bc668, 0xb22d7222, 0x5c11f56, 0x88f3cbdc, 0xaa858a33, 0x00009e }, { 0x70ce8b05, 0xb847b823, 0x44d4a73e, 0xd4986636, 0xfcb0edf2, 0xac068ff5, 0x1676a79f, 0xe4087a0, 0x16f949dd, 0xe3b15e69, 0xbea2e47a, 0x91bcde20, 0x4df363bb, 0x665ac199, 0x4febc5d4, 0x729dc827, 0x000021 }, { 0x20dedd7, 0xe6c4661, 0xdbd6336f, 0x3a10d744, 0x98f8e49f, 0x1394974e, 0xc4533ec9, 0x53cbbcd2, 0x109d6455, 0xbb20267d, 0x138494ae, 0x2cc91775, 0x7c58f7af, 0xaec6be3, 0x22b295cf, 0xdbfc8b7a, 0x000002 } }, { { 0x58d3cba9, 0x37ba3deb, 0xc7d3592c, 0x621f2279, 0xb1d627ff, 0x66ef75eb, 0x73167923, 0x355d8aaa, 0x6f356631, 0xe3ee9fa9, 0x9c4e77a2, 0xe6a92c57, 0x6f3391c9, 0x86ce9e49, 0xa4eb68fb, 0x760c7b53, 0x000101 }, { 0xac643104, 0x7c72dc8b, 0xa415c451, 0x7f66b917, 0x41f9322a, 0x8441d8d5, 0x89dff1e, 0x5607db2c, 0x37a2b2fa, 0xf3ce7524, 0xea659961, 0x2f9974a8, 0xee5987c1, 0xd7592598, 0xb0949db8, 0x311ea577, 0x000025 }, { 0xdc7d534a, 0xb565b9a5, 0xb132051a, 0x8cb3e82d, 0x30f67f7c, 0xcc6a553a, 0x2455ec9b, 0xd30f18d9, 0x7dbbc0da, 0xc0764470, 0x96ced6d3, 0xf7cbdbd9, 0xf5880954, 0x851655e8, 0xb8e015a6, 0x11b6a4b5, 0x00012e } }, { { 0xf020f62c, 0xe190ef32, 0x4732ca91, 0xc6ff72f7, 0x32c8da82, 0x63763108, 0x98290aa1, 0xd094002f, 0x72f781a2, 0xfb31d459, 0x8208a41d, 0x51a42cb9, 0x10da20c5, 0xba386f91, 0x37280e7f, 0x781112ef, 0x00017c }, { 0x700db4a5, 0xe330e753, 0xc30a91df, 0xe5665fab, 0x3335b2f1, 0x57f57397, 0x8d2ec829, 0xb498268d, 0x16a5ca6d, 0x39a6e5e5, 0x2c2c3c5a, 0x53863f28, 0xb27d4061, 0xebe6ddb8, 0x34e94941, 0xc71225d8, 0x000156 }, { 0x8f1f5808, 0xb4c1697a, 0x34a2f291, 0xa4b3d3ab, 0x9af3dd71, 0x6cfc7671, 0x838368e6, 0x77a80831, 0x4b98e7cd, 0xa4b31b89, 0x1315a003, 0x167302b3, 0xbab34f82, 0xcb09a38c, 0x5d31d27, 0x3298a399, 0x000011 } } }, { { { 0x63537a2a, 0xb03daed0, 0x7dff3d3, 0x5a443953, 0xf042700b, 0x3165b339, 0x8bbffc9f, 0x4523fd81, 0x2ea480a, 0xfe5eb0b3, 0x5e9b78d3, 0x4904cb68, 0x26d7390b, 0x47b54522, 0xa0c0c5fb, 0xbb64522c, 0x0000ce }, { 0x5c26c65b, 0x536aa882, 0xe5587594, 0xc4fb228d, 0x22136909, 0x88860a7b, 0x8a0ab5b0, 0x98269814, 0xb553fbfb, 0xf375f7b, 0x9a7e721e, 0xad8ef24c, 0x1a012603, 0xc23bbbc8, 0x6a15c048, 0x959b9bb5, 0x0000ba }, { 0x4cff9562, 0xfa87da2d, 0xfcaadb28, 0xd07a0aae, 0xc406f634, 0xf2412bec, 0xef0b44d5, 0x893d40c4, 0xb2ebc90d, 0xf4b13be9, 0xbe973c1a, 0xf04dc08f, 0x28c54618, 0xccef3b2, 0x53e1b5a9, 0xe38d531f, 0x00007b } }, { { 0x64f8bc01, 0xc8e74838, 0x99d2a8f7, 0x20e866e3, 0xff6ebd35, 0x12a84840, 0xd9889d74, 0x1f8b1611, 0x94a83a0d, 0x7fd4bc97, 0xf924d2c8, 0x8ad45483, 0x6bb6a9b9, 0x6465f8bc, 0xa9ddc14f, 0x48bd099a, 0x0000e8 }, { 0xa56f004a, 0x4be8780a, 0xe5d57866, 0xeb19a82c, 0x42b1f31d, 0xc85ee90a, 0xed9f34fb, 0x4b582755, 0xa2cb1405, 0x147df71, 0xe6ca1858, 0x4b40a676, 0x5fdce19d, 0xa2dd6f7, 0x2269261b, 0xdc72a09a, 0x00002d }, { 0xc56b3cd5, 0x903023f8, 0x5d409747, 0x21d05712, 0xb644d65a, 0x2473554a, 0xce2a106b, 0x655d78af, 0xdeb1126, 0x7e35e4ac, 0x3b1a24f5, 0xbcf218f1, 0x71c2dccc, 0x1936c756, 0x207e3084, 0x5166a0a, 0x000052 } }, { { 0x17a02759, 0xff06eece, 0x6a688069, 0xb207c3e8, 0x260ea394, 0x9925770, 0xcfaa4988, 0x6bb51135, 0xb26344e9, 0x2bc9e7e2, 0xcd669399, 0xf69a4804, 0xef0cf94c, 0xf83e88ed, 0x8720236, 0xf55e50ca, 0x0000ce }, { 0x99beb624, 0x467570e3, 0x58377d0b, 0xe3887e38, 0xf4eb7702, 0x697bb48a, 0xfccfb167, 0xc7365622, 0x14289786, 0xeefcfd8b, 0x9fdddc12, 0x6db4f5a0, 0x8604c301, 0xee5a38a9, 0xffa031b9, 0xfb394107, 0x0000c6 }, { 0xfb961f77, 0xae882d24, 0x49fe94d6, 0x3dae2c04, 0xdaadf04f, 0xe255b385, 0x57db5d72, 0x590c43b6, 0xd3114011, 0x439a99b, 0x44c801ca, 0xbe4ae651, 0x564727f4, 0xaba96744, 0x874d0658, 0x697693c6, 0x000111 } }, { { 0x7203b736, 0x3b55f231, 0x732327a9, 0x25106dd0, 0xb288c62e, 0x367586f7, 0xce0737d8, 0xf0ff5468, 0x7b47efdf, 0xe96c4916, 0x603113b, 0x7bfc458c, 0xa88e8fe4, 0xc9763cf3, 0x4a09a469, 0x649011f8, 0x00006b }, { 0xc0d5b1a8, 0x88a258a, 0x892db6c5, 0xd2e5e8b3, 0xf7a8f7c7, 0xec51daf2, 0x89f536ab, 0x1a8e0ce3, 0xef649f32, 0xc9343c29, 0x7e673845, 0x3aa1c98c, 0xae41a74e, 0x30a203e8, 0xa92aeb7b, 0x7ad29e64, 0x000196 }, { 0xa3afd477, 0x7395f04b, 0xc8502223, 0xcfe7fc83, 0xd8989c0d, 0xc3d9d613, 0x38a41c0f, 0x57465009, 0x44381541, 0xa16eac53, 0xb4f0e3e, 0xd11e4a1d, 0xb5eaaf7e, 0x4d2a21e8, 0x38038a77, 0x2ec45d4f, 0x000032 } }, { { 0x4fc86233, 0x73cc9138, 0x58189352, 0x3e557a24, 0x206a09ff, 0x4fe6e6e8, 0xb568edb7, 0x34096ebe, 0x635873c1, 0xf7122a9d, 0x72cc590, 0x55d2c3a2, 0x888be407, 0x35b7c22a, 0x6fc44781, 0xd1ac9984, 0x00009c }, { 0xd3e3c61f, 0x1808f743, 0x890c92f, 0x26af262, 0xdb3ed78b, 0xd9e35096, 0x4f7d3ef5, 0x974879be, 0x9278254e, 0x9629de10, 0xc01a2b89, 0x78e57959, 0x50f3330, 0xe295078a, 0xb705f4ef, 0xee661eb7, 0x00011b }, { 0x9ed60c78, 0x1c4c4845, 0xaf1ba5d0, 0xd054cd89, 0xc3ba1ff1, 0xe94e150f, 0x71bb589a, 0x8784ab6a, 0xa4d2186a, 0xaf57d8ab, 0xaded918e, 0x240ac9e5, 0x4b55e16f, 0x26a0d15c, 0xbc14d090, 0xa199c1c6, 0x0001ae } }, { { 0x6fec0ed5, 0xcf9fc593, 0x4050f768, 0x9e515a9a, 0x9530d07f, 0x40b21a31, 0xf22a51c2, 0xd3dd1d5, 0xddfe52e8, 0xf603f099, 0x4f1933a3, 0x23fbbaaf, 0x38d02e56, 0x92c4d3c8, 0x4f159289, 0xa0bdac6f, 0x0001a7 }, { 0x8cbd2fe0, 0x1e3fc712, 0x79e2d71f, 0x67383269, 0x1dda6fd9, 0xe045f4c1, 0x220a8deb, 0x8bdd31a8, 0x2af7ab5f, 0x2cf3470, 0x61345b82, 0x70cedcd2, 0xf8263248, 0xc40aae79, 0x6a01c32b, 0xeab86171, 0x00005a }, { 0xf6840a1f, 0x4f15d4e8, 0x2f61cf61, 0x855ea95d, 0xf55ae237, 0x502ebcb2, 0x87d36ae9, 0xbcf96a2b, 0x3250c5b5, 0x1bd2c91a, 0xf581d200, 0x14a507f4, 0xabb2be29, 0xa3d0826d, 0xaf5cb665, 0xc09117e0, 0x00019a } }, { { 0xabe16479, 0x7820abc0, 0x5bade9b4, 0x9b528b58, 0x30faae7c, 0x50bcb45b, 0xdcb5d166, 0xa06d602, 0x33f7852d, 0xb36006f7, 0xd5bff068, 0xba7a3d42, 0x75dbbb7f, 0xc9424a2f, 0xe6ac1da6, 0xc258fe1f, 0x0000f2 }, { 0xead20d04, 0x7f3e35cd, 0xf650a745, 0xc00c96d, 0x37fe58da, 0x54d49f25, 0x4822122c, 0x26cccc8, 0xe5a60270, 0x1774672b, 0x21dc565e, 0xf3a47dc9, 0x33e4e82d, 0x6e3d790f, 0xb31f16a6, 0x20da6735, 0x0001ca }, { 0x25ba1678, 0x213fdbc1, 0x6170f330, 0xfd5c2442, 0x6bca3310, 0x21bdf29, 0x8a2c85c4, 0x55f89267, 0x7b7917f8, 0xc8e92aa, 0x947e8db, 0xbc31f9b2, 0x4433907f, 0xb496ac3d, 0x4a3b1c18, 0xefc93f43, 0x000110 } }, { { 0xda05a6a1, 0x46bfec68, 0x28901fd2, 0xd95424eb, 0xcf3a7b98, 0xc27cb72d, 0x7666cda2, 0xec0cca96, 0xef58481d, 0x77717ef, 0xc387bfc6, 0xc1510487, 0x33c40847, 0xe1457520, 0x2d77e5d8, 0x7674b69, 0x0001c8 }, { 0xc5525435, 0x34ce759f, 0xe6446341, 0xcfaa8f41, 0xd10b5029, 0x7f426386, 0x8ed0b6df, 0x3c217304, 0xd740a600, 0x81774775, 0x7376ed54, 0x2d6daae5, 0x6b58b33c, 0x79783b5a, 0xf464414, 0xe23069b6, 0x00001f }, { 0xca579df1, 0x12dd7a84, 0x5b3d4d32, 0xdc936859, 0x9cd87f77, 0xc7888028, 0x6c151262, 0x2d9657fb, 0xb417d402, 0xe41f2180, 0x37e2abcb, 0xc5ab403, 0x8f87cc31, 0x5c534bed, 0x734d4ffe, 0xc436c0f, 0x000158 } }, { { 0xc94e5027, 0x7cb10279, 0x5a3be683, 0x78c1f5d, 0x2e6d7936, 0xf2ed6954, 0x86b483f8, 0xa56c2c29, 0x2d1d51f5, 0xa073446f, 0xd8e4b114, 0xde5f503b, 0xf3f1fc5a, 0x6db3ec27, 0x46a8aa42, 0x812ab19f, 0x0001fc }, { 0xa31f80df, 0x30f9091e, 0xaf880325, 0x8b55254d, 0x4a50b4ea, 0xb9f919e9, 0x1d1ee9b5, 0x198cffaf, 0x1f2b4037, 0xee4eb0c, 0x3708c60f, 0xd892f29e, 0x63ee730f, 0x160e9528, 0xfcebed62, 0x42daafec, 0x0000b1 }, { 0xab508308, 0xb87b07cf, 0x9fb489fc, 0x80490b75, 0xcc5c3c2e, 0xe230c9e7, 0xb8ce4d53, 0x4fbeeae0, 0x4b0c54c1, 0x74487d0f, 0x7a54f0da, 0x7cbd5cf2, 0x6509729, 0x4a632d70, 0xaacef4b1, 0x46f4d7d2, 0x00003e } }, { { 0x5aec38a8, 0xb93cc46a, 0x3f91397e, 0xdbbcbe20, 0x32b490c0, 0x88a49829, 0x925aac48, 0x6a3a3da3, 0xdef83782, 0x42e21316, 0xba0914ed, 0x6ae85120, 0x9035669a, 0x9f365659, 0xe8b44231, 0xba2d95fd, 0x00005d }, { 0x344db651, 0x31761dfe, 0x6026848a, 0xaf399e39, 0xba85c44f, 0x40ac0b9a, 0x9e8aa0af, 0x808bd1b5, 0x260f169f, 0xe3e514a, 0x82abdd81, 0xfca73230, 0x79513c6a, 0x1b2b6e6a, 0xca32eb51, 0x6a20749e, 0x0000b8 }, { 0x9793cab0, 0x35735dcc, 0x17d97d33, 0xec376cba, 0xf3ae026, 0xcde4104c, 0x756343f, 0x4292d5a7, 0x39baa5b5, 0x5961a5dc, 0x66e11c50, 0x359d48f, 0x56f6e8ec, 0xbd72df04, 0x558d529c, 0x19fcc77a, 0x00007e } }, { { 0x520a9045, 0x103edb72, 0xd6f6854c, 0x3516b8bd, 0x5cd6edb3, 0xa2c64423, 0x3f938e83, 0xea308c49, 0xff658f32, 0xe5083fa0, 0xa980991b, 0x5eb76df7, 0x3ef71568, 0x3cead37a, 0xe926bc7e, 0x99d74d92, 0x00017b }, { 0x24030498, 0xdbb953e5, 0x9b387bf2, 0x1cf76afb, 0xc89b211b, 0x8d3ba92, 0x7ce8f876, 0x3e5fa48b, 0xbb67f21, 0x364466d2, 0x983d44fe, 0x46739757, 0x716d51ae, 0x54674017, 0xdaecc97b, 0xb72f258c, 0x0000c0 }, { 0xbc1fc644, 0xbffdf049, 0x15b9976c, 0x8ce57fed, 0x49c0f875, 0x3f19ce57, 0x8cda2621, 0x9cd79411, 0x4b1bbe72, 0xc517ba52, 0xbada7fd5, 0x117bcc15, 0x6ccaa957, 0x448465a9, 0x3212569e, 0x8083f7e7, 0x000184 } }, { { 0x564e3d9b, 0xbe284df1, 0x36844aa1, 0xaa705e8c, 0x72efa73e, 0x9153e56, 0x4b797bc2, 0xb94573fc, 0x6c63daf1, 0xfea8f339, 0x17c32895, 0xacf5366a, 0x11be33c5, 0x18af0c5a, 0xaa3d8da, 0xd025f4b4, 0x0000fc }, { 0xaf72dcf9, 0x57926917, 0x30e1b475, 0x8e9e41e5, 0x6bf98cc1, 0x6d2b2b33, 0x53b9fc9, 0xcf3bf904, 0x216afb64, 0x2591a246, 0x1a884dfe, 0x517e2d59, 0xc3b60d6a, 0x17a39eb0, 0x8d429fba, 0x7e6b6565, 0x0001c9 }, { 0xe03455ce, 0x72543309, 0xf81ccea5, 0x95a6c7b1, 0xe7dcb7db, 0x9bfb2239, 0xf564cc0e, 0x2205e2cb, 0x362cc460, 0x562770bf, 0x35a3e2e3, 0x6ceb6274, 0x73d82069, 0x7bdf62e6, 0x18e7a83f, 0x20cf3f58, 0x000130 } }, { { 0xc115e2aa, 0x1ff23065, 0xae6afc95, 0xcd9c018b, 0xd317f02d, 0x1f43adba, 0x41a60f5e, 0xfd5b2383, 0x28436c91, 0x28f6962f, 0x7812bfa6, 0x7fe7813f, 0xbfa42a16, 0xec630c92, 0x94a1a1a2, 0x89969366, 0x000026 }, { 0xd3d979d4, 0x5b32e8fd, 0x3a8a4b8, 0xec86606b, 0xaf35c358, 0x124508b7, 0xa08680d6, 0x249993f3, 0x79e06c2b, 0x61736ebd, 0xa39c2b64, 0x4d39b5e8, 0x7a32aefe, 0x2fb5bb82, 0x9ed880c8, 0x4304fbf8, 0x00019b }, { 0x1db98377, 0xbd0457cf, 0xd5d48df6, 0x6b5f3d9e, 0x8401e210, 0xd8bdaf5f, 0x72e50954, 0xc60d0e0c, 0x93a53426, 0x4c5a4209, 0x14f39761, 0xdfdf06fb, 0xfa74d574, 0xa3fd91dc, 0xe4db26f5, 0x7bfe19e8, 0x000179 } }, { { 0xef8e1ad2, 0x3dcb42bb, 0xf39d3c43, 0x84844e19, 0x10392b08, 0x6744bed0, 0x83120d4d, 0xed09baa, 0x8a56f53, 0xabd66f90, 0x9fc3be07, 0x589df62d, 0x2e0eb47d, 0x66d54850, 0xa3415362, 0xeb914632, 0x0001fb }, { 0x67cce11e, 0x78ab6b77, 0xcc81bcb0, 0x13929d63, 0x900bfc7, 0x516f40db, 0x44d5168e, 0xb43280db, 0x4f55440e, 0x85ff1e99, 0x23dc624, 0x55d67df8, 0x23ce8d94, 0xc18e96bb, 0x2b13f9d2, 0x32bf88f7, 0x00001e }, { 0x1217ae59, 0x92f7ffd3, 0x58902b67, 0x6c4ad2fa, 0x1f2db2a9, 0xdb0c9263, 0x35a90984, 0xb0d1be3b, 0x655d8805, 0xc10e7675, 0x187d5b96, 0x9adc9b16, 0x91126d4b, 0x8f6fc6d, 0x5493fddc, 0x6bd29351, 0x0001e3 } }, { { 0x9bce6a4, 0xeebad3c5, 0x457d4091, 0xd96135bf, 0xebba5db2, 0xb8840d4, 0xb41923c7, 0xfa4e1df9, 0x375cd0a1, 0x5ed71827, 0xe478a225, 0xd1ae6893, 0xb7dcfbe0, 0x447f2075, 0x5c8219cc, 0xba2b2dc0, 0x000104 }, { 0x9a8d1556, 0x55d1ea63, 0xa9992f9b, 0x6d35464e, 0x606a75f2, 0x8361a697, 0x66d5bcf9, 0xadb7ca5c, 0x538c32e8, 0xaceb5f91, 0x354bdea8, 0xfb1629dc, 0x3b19a2a1, 0x443495bb, 0xcb0a9aa5, 0x3e8e1c90, 0x000045 }, { 0x9573c4a9, 0x3dbdd355, 0xd4f65627, 0x16709266, 0x81991afc, 0xcf896ac5, 0x275ff499, 0xe69b31ef, 0xd8c8bce4, 0xda57d5a, 0xa0396f1, 0xccc72c96, 0x101e38ee, 0xed53e6cb, 0x26554f11, 0xda383663, 0x0000e5 } } }, { { { 0x72d6a396, 0x575c84e7, 0x601b6c9a, 0x2e41d8a9, 0x3458b727, 0x85b1b1c, 0xbed9287d, 0x8ce94995, 0x31f41e9c, 0x6a4137b4, 0xe650a5ab, 0x584d64af, 0x5727cfeb, 0x9afd37a6, 0x8ba97c37, 0xe7516313, 0x0001c3 }, { 0x12d480a8, 0x2fcb9d84, 0x5a58588d, 0x6cb0b08, 0xf3b55e6d, 0x26b1882d, 0xd6edc1ff, 0xbb0bb43, 0x45a4f6c3, 0xae4dddf9, 0x88e7f244, 0xb5b70e93, 0x7fb06d4e, 0x7a1cb5fd, 0x68a78395, 0xe89f067d, 0x0001ae }, { 0xa9b60d81, 0x4d8089ee, 0x145bdddb, 0xf9ca24bc, 0x299f8762, 0x8b6e5d2f, 0xfe483e03, 0xe373f407, 0x6cc63268, 0xe0f496f4, 0xd13123dd, 0xf9d879c2, 0xea1e980c, 0xcf486b70, 0xfb91d92a, 0x6f92823b, 0x0001ee } }, { { 0x917ac30f, 0x39cbcfbf, 0x42259259, 0xc30cc344, 0x34f598da, 0xaff18e6b, 0xd07d7dd1, 0x4d59f7b6, 0xadc96036, 0xb5db448d, 0x173619aa, 0xe510bfed, 0x9b3bce45, 0xe70c914f, 0x1b6779a1, 0xb70f06d9, 0x0000c2 }, { 0xd1c59f2e, 0x6695e432, 0x75792cbe, 0x7bc75c36, 0xd9e47c9c, 0x3d2777b1, 0xa91adc04, 0x6218ecf4, 0xffde7fb0, 0xa89b5ad, 0xcadbc9b0, 0x5e0e5626, 0x774edc8, 0x74a7d55c, 0xde82c8d1, 0xe577d765, 0x000021 }, { 0xc9d58438, 0xc18f27a8, 0xc7f143ef, 0x91243e61, 0x5d31e5cb, 0xcc291389, 0xde40cc6, 0xcbc56d41, 0x5171bbca, 0x486df39e, 0x10fab55, 0xda92098, 0x15ed97e1, 0x58cdacbb, 0xec68052a, 0x9a6714bf, 0x0000d2 } }, { { 0x1e7fb4e1, 0x881ecd0e, 0x8296934c, 0x760b48, 0xcc4bc73a, 0x6a26873a, 0xfb12be0c, 0x42610f7a, 0x70530b3c, 0x41007d48, 0xf97dbb1b, 0x5a62559a, 0x3e3db14b, 0x3cdfa0e0, 0x5e02533d, 0xd08a810c, 0x000199 }, { 0x9ce06683, 0xd6793982, 0x67bce859, 0x9ba7d3c5, 0xed731093, 0x40c9f8b6, 0x80117377, 0xb575dba2, 0xdf82445c, 0x1982fbce, 0xea902b4, 0x2c0d44f8, 0x3a266f5c, 0x328951c5, 0x86c4a94, 0xd92828df, 0x0001f7 }, { 0x347e3c60, 0x721cc317, 0x84fdde49, 0xa6f41e5d, 0x9318d8b5, 0xe6f75ee1, 0x720eb0ae, 0x23cb218a, 0xd5f7e00f, 0x48cd033c, 0x7dca4542, 0x6d9eba9b, 0x74405fd8, 0x7d0696e3, 0x17067d17, 0xad45430e, 0x0000ed } }, { { 0x4248b247, 0xe2947058, 0x8135acdf, 0x93315416, 0x1d9875e6, 0xa4e99b70, 0x114d58cf, 0x2543f089, 0x918c02e4, 0xa1427e83, 0x6a398c14, 0x55489c97, 0xef79aa07, 0x7f523f9b, 0xa1cd54c7, 0xe7b047b9, 0x00013f }, { 0x20feae2b, 0xf8b29076, 0xeb67a2f9, 0x8e3c46e8, 0x8a50a01d, 0x154001e4, 0x81496d5, 0x2a0eb35d, 0xde20e9a2, 0x58e21689, 0x2e7711a7, 0x27bc1397, 0xf3bc6f08, 0x33d1d8a5, 0x95fe42fd, 0x3b8c5af4, 0x000195 }, { 0x839d8a00, 0xad9ce742, 0x92c585fa, 0xbacd0a77, 0x89e22ca2, 0x4c8669ce, 0x3b4417ee, 0x9518fdf7, 0xcce4692c, 0x2c381bbf, 0x29657b74, 0x70088366, 0x4b077bf4, 0xddb2fa20, 0xda475bec, 0x9dc2c220, 0x000053 } }, { { 0x9541de30, 0x83a46728, 0xbb639a68, 0xfe0e19ab, 0x73811619, 0x869aadae, 0x434e6838, 0xcfd09c75, 0x82934489, 0x334d9689, 0x4c8c65d9, 0xa31bf922, 0x47151e42, 0x3d387c3f, 0x41671187, 0xb84caf66, 0x0000e8 }, { 0x9b741be9, 0x7d96734, 0xb41f92e0, 0x79cc22e, 0x62eed33f, 0x6b314e0c, 0x72bbc1a, 0xa41157ce, 0x68f88d13, 0xbfce25fe, 0x9042fca6, 0xd7d31c47, 0x12cda3a4, 0xce6803f2, 0x1d56efac, 0xa6e8bef7, 0x0001b3 }, { 0x6afc4f78, 0x5da60e2c, 0x19b79e2c, 0xde3f87f8, 0x338ed9d5, 0xb367a48, 0xd7e3098e, 0xd45fbce9, 0x2aad2082, 0x7137476b, 0xe7acac38, 0x2672fb57, 0x25e2a6ad, 0x768d5545, 0x7b261ec, 0xadae85f, 0x0001cd } }, { { 0xfbcf4490, 0x56f9c896, 0xdc5d1be3, 0x5616bb86, 0xe8d72253, 0xe63d37d3, 0x69312b8e, 0x68ff5f59, 0xcb45d5e3, 0x67c13a75, 0x63150aab, 0x1c6e3b88, 0xcde475c4, 0x1f7e9643, 0x1c5e53c8, 0xf4884c7d, 0x000109 }, { 0x2bfc638f, 0x725ef606, 0x6cd4908a, 0x4e3a323d, 0xc498c1ef, 0xc4fc092a, 0xd3e44c67, 0xcd62d5f8, 0x9d45a9dd, 0xe2130a82, 0x977f913c, 0x3e540864, 0x65825b25, 0xe40f03fe, 0x2bf19b39, 0x91d394d7, 0x000023 }, { 0xa4a7ef8c, 0xd1b5db9e, 0x4869c857, 0x86c11a95, 0xca074175, 0xb6bae877, 0x621af3dd, 0xfb0a7a53, 0x872998ee, 0x27c8a015, 0xc2fff692, 0x8edbda9c, 0x7204180d, 0x764dbfcb, 0xd81885b6, 0xd6169b72, 0x0000c4 } }, { { 0x1cf0608e, 0x23fc84bc, 0x7ca64437, 0x781902f9, 0x4530568c, 0x7bdfa270, 0x9a243bbb, 0x21e0952a, 0x4c76f6e5, 0x1af4551b, 0xaba516af, 0x398c739d, 0x6bee73d1, 0x307be96f, 0x46d73a8d, 0x3688773d, 0x000153 }, { 0x315a69a3, 0xaa1593e3, 0xb0152135, 0x158c1a76, 0x5fa2b7e0, 0x2c2202e8, 0x4e0ad892, 0xd4d83fd6, 0x86cd7c4b, 0x394d686b, 0x98181a23, 0x9e54d79c, 0x50b0b260, 0x78f8f0c4, 0x8a23bf17, 0x9fe00dfa, 0x000186 }, { 0x5d530781, 0xef7578a7, 0xf8cbcfd3, 0xda60d0d7, 0x6f6af941, 0x80fae75d, 0x7605bc6b, 0xcd1fc97f, 0x8827dade, 0xb637290b, 0x2bdd7452, 0x1394df6, 0xe27a72a3, 0x3c0429ea, 0x329de147, 0xef110a1, 0x00003a } }, { { 0xf6d07f8b, 0x87e7b284, 0x67aa6847, 0x92217992, 0xc71f692a, 0xc5885325, 0xf7b1a53d, 0xa424af8, 0x86a62706, 0xac82553c, 0xb4608792, 0xa585dd0f, 0xd0f877ea, 0x57a23cc5, 0x801ce467, 0x5148b27a, 0x00006c }, { 0xb9f8cff4, 0xdc17bad7, 0xa1d52cdc, 0xfe44b51c, 0xe4e2faf7, 0x8c294d3a, 0x7ab2fde7, 0x66af8333, 0x5a49c2a5, 0x163b9ecb, 0x582295d2, 0x730edc1, 0x93a21175, 0xa384e849, 0x9efa409, 0xaa077852, 0x000138 }, { 0x802348ab, 0x472355, 0x37ebe8fd, 0x2ef41050, 0x6f4c0938, 0xcb8cb86, 0x775688af, 0x12603104, 0xf941c869, 0x367e3d72, 0x3be1551f, 0x2cdba54c, 0x94cccd3d, 0xca0df592, 0xcdf09373, 0xe9fb89b0, 0x00016a } }, { { 0x60bfe422, 0x6d8953c3, 0xa74d6e41, 0x16acd072, 0xead32ca6, 0xb9ec284e, 0x53b31727, 0x684c9a59, 0xd0c31f4, 0x8200baff, 0xf9b08f11, 0xdb542796, 0xa7faa53d, 0x527cc0b0, 0xe1813944, 0x204c78f, 0x000156 }, { 0xebc2dc2b, 0x3f29830f, 0xd6ae0a67, 0x56a52ea8, 0x221137a8, 0xf29b54a4, 0x1628e2d5, 0xf0242592, 0xe10e9d71, 0xd8ef5388, 0x985f80ac, 0xdc35e2, 0x5123d092, 0xade824db, 0x93a23bd8, 0x933c07d7, 0x0001a5 }, { 0xa9d0e750, 0xfe4b8165, 0xae075316, 0x6901e8, 0x5564f126, 0x5ddbb4f, 0x4869b887, 0x2fd2b6ae, 0x4a5157ac, 0xc1e4b06, 0xedbb6a5f, 0xfbb75d26, 0xc3758b11, 0x5ae32c68, 0xce6ece21, 0x7b9ac221, 0x0000b7 } }, { { 0xf2d5d90b, 0x67058cee, 0xd7d61400, 0xff03d5e5, 0xeb1e2c07, 0xb9c7a216, 0x88de46d2, 0x98ac73e9, 0xc8aada8d, 0x56581eb8, 0x63262483, 0x512a38df, 0xd479d8a4, 0x6be66893, 0x36930e4c, 0xc87bb549, 0x0001f5 }, { 0xd407590a, 0xfa4e9bcc, 0xce313277, 0x4f51559, 0x64515ea4, 0x1402de90, 0x487be251, 0xd63dbc39, 0x57f69153, 0x5bd06b69, 0x7a32c6f, 0x43084431, 0xfe5e72e9, 0xc1826b4, 0x604d490d, 0xffe2da37, 0x0000f0 }, { 0x5299df4b, 0x6ad6e6d8, 0x6de7537e, 0xb75f8955, 0x8df52dda, 0x392e254d, 0xa0f21641, 0x2ab89d17, 0xec875c9c, 0xec825120, 0xb529b1d5, 0x44098714, 0xafe14334, 0x5a484103, 0xec7f36a2, 0x657bc917, 0x00019d } }, { { 0x1534ecd, 0x2bcc6245, 0x63908b7b, 0xce2eb4d5, 0x3fff8b12, 0xc13bc6eb, 0x28ad839f, 0x520d393d, 0xafddf727, 0xcea0a2a5, 0xc1e73824, 0xe0445cc3, 0xdfd4a7d6, 0x87f37f33, 0x8d722e89, 0xd982e682, 0x000004 }, { 0xdc07f891, 0xf226ff44, 0xb65488f5, 0x3e0ed1e, 0xea0c2e49, 0x3f02bba5, 0xa771dee8, 0x8f8fa43, 0x798c8342, 0xb1ebcef3, 0x86e0c24b, 0x5f4568ca, 0xcb6d649f, 0xa405a91a, 0x9b22ee6a, 0xf3ce59d7, 0x0001f2 }, { 0xfbbe378d, 0x58459cf4, 0x17db2f7c, 0xc58d25b2, 0xe15b04db, 0x6c0bcd19, 0x9604e779, 0x535d4d03, 0x5103433b, 0x7f776009, 0xfd36bd25, 0xe623479, 0x9d4e4321, 0x5309a9a2, 0xfbc2bae7, 0xde89830a, 0x000173 } }, { { 0xa5bbe67a, 0x80112cd4, 0x21a56963, 0x75d6553c, 0x751c2f1d, 0xa54ba3e0, 0x5d5b4d9, 0xb6c71a02, 0xd5ad4821, 0xc687f16e, 0xd08983d1, 0xc65e6f4b, 0x6ae66e71, 0xeaf69692, 0xb91c7abf, 0x5564bfdf, 0x000046 }, { 0x38f14743, 0xec929ef2, 0x6465ee1a, 0x7bccc101, 0xcc1438c2, 0x5faab2b2, 0x70991a66, 0x405aa330, 0xf7bee3e8, 0xab5f08bd, 0x6e56ba70, 0x617d83f3, 0xb073be44, 0x4feac165, 0x7c911e95, 0x5d73427b, 0x00018a }, { 0x9d32609f, 0x9f25ee75, 0x6ab8d54a, 0x46d56b16, 0xc6a65b63, 0x68fc2676, 0x4f9552c, 0x87e3aa8d, 0xac306cbd, 0x43f22969, 0xc34a0fc8, 0xd26e8c81, 0x586075e7, 0x2a192a92, 0x2ba9de7, 0x691f351f, 0x0000bf } }, { { 0xb3052ecb, 0x58e83225, 0xedfe116b, 0xda8818a6, 0x53ef9ad1, 0x2818fe42, 0xc40ba309, 0x6b322617, 0xef5881d9, 0x28f92bf0, 0x6c17d106, 0x40f7dad7, 0x1788ea48, 0x7633e296, 0xe2e68455, 0xf6ea1442, 0x00012a }, { 0x9a669802, 0x62ad42b6, 0xc64ca729, 0x691ffeea, 0xc123a962, 0x89e1f70d, 0x17122ebd, 0xe65f121a, 0x9df1addf, 0xc08c930d, 0x26b11ef8, 0xa8ad867c, 0x290c5a72, 0x766216d8, 0xd2bef852, 0xea22c6ac, 0x00004b }, { 0xb13b3c24, 0x8eccc29f, 0x8855cf07, 0xc8625079, 0x78ceceaf, 0xdfe1ea34, 0x9f51124d, 0x2b5755de, 0xb26a11de, 0xf8b297a8, 0x339d45a1, 0x3a9f5ae8, 0xe6fa9c48, 0x99a5c7ec, 0x496727a1, 0x9cc1f40d, 0x000055 } }, { { 0x975947d9, 0xe91a2432, 0xf658b2c5, 0xe3702d75, 0xf6bd0ec9, 0x13107fe7, 0xccedb0ba, 0x1a3e401b, 0x107d6aa6, 0xeb376678, 0xf3a2eb75, 0x1fdeff89, 0xf172c2b8, 0xdd68b467, 0xa93a7a50, 0x18e0d80f, 0x000064 }, { 0xf51e04bd, 0x75d2d672, 0x34971bc1, 0x101dc460, 0xddf13e35, 0xb2b1488c, 0xcc5d1033, 0xa01528ba, 0xb8918c87, 0x3346362d, 0x63b2a80e, 0xb6dc9313, 0xd9461111, 0xabd77093, 0x3a3dde44, 0xa5b2d68e, 0x0001f6 }, { 0x7d967666, 0x42688b7f, 0x14ad06dd, 0x8a4f988, 0xfd102a6f, 0xe3b2abca, 0xb428f5a8, 0x5fcf2701, 0x3d59a10a, 0xcc70ab0e, 0x56c7c7ba, 0x9810d689, 0x2473d5e, 0x8783cc0c, 0xf64d3ead, 0x23dc4bcf, 0x000126 } }, { { 0xbb27b9b6, 0x8051805e, 0x42e7e1f9, 0x7924f6, 0x58ac508, 0x4fde7944, 0x6091e200, 0x7144d54b, 0xd30f439b, 0x332ae813, 0x333a7205, 0xa10415c8, 0x6a45e53f, 0x5fa7f038, 0x8b7343b7, 0x942dfb73, 0x0001d9 }, { 0x9e5f46ce, 0xd8bba51b, 0xd5d58e17, 0x1f53a94d, 0xc07bc752, 0xc409c08, 0x52061974, 0x13f88306, 0xb73cb505, 0x384ca01b, 0x7f964210, 0x9728a592, 0xba82b524, 0x19c14585, 0x7b7a0741, 0x9acd25cd, 0x0001bf }, { 0x3510445a, 0xec08d0e, 0xbbe96b7f, 0x4cb37375, 0xc810c756, 0x71a1cc29, 0xd1cd5ffb, 0xeebe02c4, 0xcdef7700, 0x9e26cf6e, 0x9e4797fb, 0xe26d48b0, 0x4df1a665, 0x94b8f362, 0x4565e09e, 0x454de491, 0x0000fd } } }, { { { 0xdc62fca, 0x66316877, 0xd12abace, 0xa7d4f687, 0x6490876f, 0xad145286, 0x6fcead9c, 0xd1179022, 0xc4b45bf2, 0xaa507db, 0xd4765d4c, 0xfc2b48a0, 0x27402ab4, 0x8fb8c2ba, 0x246e1904, 0x5875c6f8, 0x00005d }, { 0xbf9eaf14, 0x9387a9d8, 0xd93d4602, 0x2746aef, 0xd8b59ffe, 0x73e6f440, 0xe45b56a0, 0x50fa5c1b, 0x32d460c4, 0xf803fc37, 0x548ffe82, 0x205e16d, 0xd3d4abcb, 0x1fdf830d, 0x668fce4, 0x87d75e40, 0x00015c }, { 0x7536b3d3, 0xea690338, 0x810ef555, 0x4bee1491, 0x4742f529, 0x676c7400, 0x7e4caa56, 0x5f298116, 0xf4881d1d, 0xde17d806, 0xfbd31a65, 0xbaa040ea, 0xcb435bb2, 0xc8a90911, 0x3542cd2b, 0x188c38bc, 0x0001b6 } }, { { 0x3639e723, 0x33d902bf, 0xaf6fcc57, 0x788712, 0x86c5bdbc, 0xc1f0a990, 0x1a60f4e8, 0x59ef3c17, 0x70790823, 0xcb853f0a, 0x8c6c11de, 0x4341e06, 0x2a64bb3a, 0xd2db706, 0x5bb04f0a, 0xe139a8d6, 0x0000fd }, { 0x1cb4ba7e, 0x8137db83, 0xbe423c39, 0x64735e1f, 0xb675d60, 0xc81effd0, 0x17447ff0, 0xac1cb81b, 0x56b1c552, 0xdc4423ed, 0xbaa4ad20, 0xe677a581, 0x2e034aef, 0xc410c71b, 0xe99b1ab3, 0xe4a5a675, 0x000022 }, { 0xd133a3f2, 0xe5ea69d9, 0x11c7e00e, 0xcb7b1789, 0xb3ebdde, 0xfd6e571f, 0xd777cc37, 0xffa5b3ca, 0x74aa22f7, 0x21db034f, 0x69feb165, 0xb433e7c8, 0xbe5cd503, 0xc1345fd2, 0x5ad9f9f7, 0xf3744d8e, 0x0000aa } }, { { 0x8d12d636, 0x2d2ef768, 0x28b55be5, 0x97421cd3, 0x18cf4dd7, 0x827ac10, 0xc7ba007e, 0xa2af2fd1, 0x7e5b4808, 0xe7c648d3, 0x6a76a3d2, 0xdde2d6b9, 0x3a47ac6a, 0xab915d80, 0x48ba4a53, 0x21574378, 0x0000e2 }, { 0xadd85bb2, 0xfbc17ba9, 0x19ded4fa, 0x7f17cebe, 0xfa585846, 0xc53383cc, 0x1417789d, 0x4575f5c0, 0x1b1e6363, 0x53b0b65a, 0xdb990fcb, 0xe13567a9, 0xbd76f858, 0x92c8791d, 0xb030112d, 0x155f9267, 0x00007a }, { 0xbadc935c, 0x8133bb0d, 0xf9b9baa1, 0xb3588442, 0xcb00b6ec, 0x30b7748f, 0x4400a2e1, 0xb4505118, 0x133da927, 0x9435b263, 0xa0371178, 0xd6466d0e, 0x855b1246, 0x4d186b34, 0x9e4cdb0d, 0x587688d4, 0x00018b } }, { { 0xb012b5d9, 0xcaaa3d67, 0xc833008f, 0x9143e730, 0x111d43ac, 0xf8c3b8dc, 0x945cf2db, 0x7fd5f6bf, 0xc57858a5, 0x27425c06, 0x9907442d, 0x810999fd, 0x93b4c01b, 0x6e67adc7, 0xf5f1ae60, 0xaa761e87, 0x000077 }, { 0x84c86c35, 0xe6e7c013, 0x795b9dc9, 0xe30b732f, 0xa66d4126, 0xd3e1ff5, 0xce05900d, 0x33fc0f57, 0x817ce010, 0x32d6261e, 0x1667a4f5, 0x38a23278, 0xc661561a, 0xe18c372d, 0xa0c42c56, 0xd28e1d22, 0x00007b }, { 0x5e05b111, 0x6b012542, 0x87c40d06, 0x29700b36, 0x81ba5c2d, 0xa91d69ee, 0xbc58ab8f, 0x2e5bb321, 0x922ba9ae, 0x1cf09db2, 0x85d05aad, 0x27ab80d2, 0xa4aaa6c9, 0x3635fbfa, 0x26ce5283, 0x876e7f32, 0x00006a } }, { { 0xdf444381, 0x4af9d49e, 0x228e653e, 0x8a5732e1, 0xd4f8359d, 0x6b6c706e, 0xbde51f20, 0x661403bd, 0x838b8ed1, 0xf91fb9a7, 0x2fde6fc5, 0xd0fb5fd3, 0x7e0acbaf, 0xf0308f68, 0x7d8f3415, 0x6141b1d0, 0x000043 }, { 0x4ce9272f, 0x546203eb, 0xa48957b7, 0xf4ddb15f, 0xc973ce54, 0x68673b36, 0xefc0b8d1, 0x3dbe9fa8, 0x5b5302f, 0x24db2111, 0xbf049e5c, 0xa66ace6f, 0x9a4eda8e, 0xa767e6a1, 0x2a1a44df, 0x76c64372, 0x000007 }, { 0x6c4e808e, 0xca45a129, 0x4fdd44ca, 0xee2714b4, 0x8f353a6e, 0x618b5c48, 0xcafb9d5b, 0x301ff964, 0x730a9553, 0x806c9eb5, 0x1e1c0199, 0x2c8526b5, 0x9ccfc8a1, 0x6539c7f5, 0x892ae4f2, 0x5a1ff249, 0x0001d5 } }, { { 0x484141bb, 0xd00d9bfd, 0xd30c4638, 0x9c8fc3a7, 0xb382ccee, 0xc24b80be, 0x52733879, 0xfd8f2d69, 0x565a8287, 0x5f20f533, 0x7973660, 0xb1f88096, 0x6a64e7e5, 0x46a7bac2, 0x4c14d523, 0xcb4a634f, 0x0001d9 }, { 0xb9abd1e, 0x2e4ef750, 0x46d1c36a, 0x8274d32d, 0x886d8553, 0xccb40180, 0x46cf3d0d, 0x4c3e97dd, 0x7abe02a7, 0x8d95e680, 0xffae699f, 0x8cd03bdd, 0xbb1b0631, 0xa08ebb9f, 0x59468b1f, 0xc684dc6a, 0x0001a3 }, { 0x34a3d4dc, 0x18e017c1, 0x651fc551, 0x60ec611e, 0x10c92324, 0x6276dc7d, 0xcf600903, 0x2cfc050e, 0xdf14634e, 0x7fb15b20, 0xe3bdd4a8, 0x468a4201, 0xb38bd38b, 0xab9cd31f, 0x958d2a99, 0xf5a45063, 0x000183 } }, { { 0xf266775b, 0xac82c4c, 0x6da0e8ab, 0x89da02c7, 0x6e44205d, 0x73591ef1, 0xdbc7cfee, 0x32fb2cbf, 0x4d532171, 0xe3b3d831, 0x3b680005, 0x7b868fbb, 0x77b7bab8, 0x99b70909, 0xec984c02, 0xad0ca93e, 0x00018e }, { 0xb2ef60ed, 0x3717832e, 0x75d5bb6, 0x58aca1f5, 0x10926982, 0xd9986d0e, 0x6d6c4260, 0xa4765a2e, 0x2e22bd88, 0x760af764, 0xa0836b3, 0xed58268d, 0x76e9cc38, 0x83524306, 0x5eb53dfe, 0x228a86c8, 0x000187 }, { 0x1ea87068, 0x6fbebcd, 0xe5b65199, 0x43f1c710, 0xc563dd20, 0x6fa1f064, 0xddbfe14a, 0x59cd38c0, 0x41cea598, 0xb6f62d20, 0x9bd02d91, 0xec450d2c, 0xd2430920, 0xdd651843, 0xdfe6d0c, 0x77cf6f5a, 0x0001a9 } }, { { 0x924bca3d, 0xb4e371ef, 0x30f623ec, 0x2c12d8e0, 0x45da945a, 0xe4402355, 0x6ae7e0b8, 0x9682714e, 0xe786693c, 0x8e4f5c30, 0xc2e30d6e, 0x8c46b81b, 0xf21f10a6, 0xe8112b06, 0xfdc74266, 0x101690d6, 0x000158 }, { 0x2ff983b6, 0xe7f3594f, 0x6b7e4584, 0xd2fb668e, 0x9d9058e1, 0x7521d3d1, 0xcd0ef50, 0x1430688c, 0xac1f852a, 0xab56bff1, 0x79e07445, 0x1be8d955, 0x2e31fe4e, 0x6c4967e5, 0xdf57eaf1, 0x9828e33d, 0x0000f1 }, { 0xaac36503, 0x3b8329b, 0xeff79b5f, 0xc26ddbdb, 0x4ef7e1b0, 0x23051710, 0x24a7dfc2, 0x8a3b0eec, 0xc97f6e0c, 0x4801ba46, 0xb308de99, 0xf311bca8, 0x8908f91a, 0x8b177ec8, 0x7af18e19, 0xd828f4f2, 0x00018b } }, { { 0xd82eb739, 0x43cf4320, 0x15291264, 0xcdf3a465, 0xd3fe244, 0xf7341fa6, 0x4a7b8cf9, 0xf5524765, 0x184d215, 0xfd94d7a3, 0xa502ff77, 0xca7d9a6a, 0x9a5a0bbd, 0xcb18881c, 0xa4f85fdb, 0xc94261d5, 0x0001a7 }, { 0xbc22a780, 0x44c6581f, 0x7ba1ec0e, 0x52f18d0a, 0x21c52c23, 0xd3ff96c4, 0x43a6d0e, 0xad4f7bd3, 0x977d0812, 0x4249d37d, 0x59ee9042, 0xd2757f9f, 0x246273ba, 0xe3a89286, 0xbeb01d7b, 0x5d61cabd, 0x0001c8 }, { 0x643f1ae9, 0xab48fa28, 0x51f14af, 0xfe04294d, 0x57a92980, 0x4bec3cd9, 0x2b1e1adc, 0x536e7576, 0x75295457, 0xbbd2b846, 0x9edf6038, 0x8b5f67e0, 0xde1d2f1f, 0x5b80bee9, 0xf7e868d4, 0xc9d1daeb, 0x0000a4 } }, { { 0x5e93a846, 0x8b9de392, 0x4224a6a3, 0xb9dbd780, 0xfa2f42d, 0x7682c04c, 0x30ee5e66, 0x4d33256d, 0x86e03285, 0x67577d77, 0x41f6705a, 0xc38945f7, 0xb7b7127f, 0xd139cdbd, 0xf8a708b2, 0xae95635e, 0x00018a }, { 0xc7b65127, 0xf87a3645, 0x4af522a3, 0xea6426f5, 0xaeaefad7, 0x88138e8c, 0x3dc31bf6, 0x5e8fce82, 0xcc94e847, 0xedea35a0, 0xfd415477, 0xa47f7f33, 0x594a5101, 0xb63105fa, 0x12248623, 0x7a80bcca, 0x000179 }, { 0x6a5e7b67, 0xe39a6f27, 0x1dac9ca2, 0x12b36cd3, 0x5ad15d1b, 0x6f9e3751, 0xa31346f0, 0x93945143, 0x62923bee, 0x621be558, 0xcd676ad, 0xb9f14de6, 0xed8d352b, 0xd08af457, 0x76308e5d, 0xf22e4ba9, 0x0001cc } }, { { 0x75957feb, 0x67e90c9b, 0x6f5d048e, 0x77a37db8, 0x1ddbfc10, 0x6f01fb9, 0x2511ae4b, 0x1092bf8d, 0x3dedcb62, 0xb8196d0e, 0x134fdf5c, 0xcbf4e985, 0xaf5ceb50, 0x977552dd, 0x5b83c418, 0xb8a6f87, 0x0001cf }, { 0x534aa39f, 0xbd11661c, 0xd242b425, 0xdb0b0f96, 0xe8865c24, 0x1dd22585, 0xa0c5cab6, 0xbf550471, 0x6fd8776, 0x4b09d5ee, 0x36da46b, 0xd7268253, 0xbc5fe46c, 0x5101c693, 0x7d389ba, 0xe295842b, 0x0001f3 }, { 0x60646b2, 0x9d7f333b, 0xbffb3c16, 0xd50c313, 0xf3b37a2f, 0xcea68f96, 0x6124ca09, 0xd346fa3b, 0x87fe82a1, 0x88f26bde, 0x20dbf85e, 0x23a3a632, 0x3cd3b7f7, 0x9a098310, 0x1737e680, 0xb10c83a6, 0x00019c } }, { { 0x5a96050c, 0xb8c0fb4e, 0x2d215afd, 0xce7b657f, 0x131659af, 0x322edb34, 0xb98f8156, 0x22a7a816, 0xa7f57a74, 0xe5ef71d0, 0xc10d538e, 0x6625d37f, 0x7bac3c25, 0xa8e98100, 0xce5647cc, 0xa8173026, 0x00004b }, { 0xa619c587, 0x637901de, 0x485be8f6, 0xed0a5060, 0xb992b756, 0x10746756, 0x677c18aa, 0xc4f5f5fe, 0xf39b7db6, 0x965d9521, 0xe64b6653, 0xd2fe4c51, 0xd73cc4bb, 0x5b75c591, 0x5eb83d03, 0xfa84f38, 0x0001ff }, { 0x17982c03, 0x8678488c, 0xf681feeb, 0xd612d75e, 0x9ba268d0, 0xfd1ce127, 0x3ea79c5c, 0x592ca56f, 0x92516b29, 0xc62da403, 0xd6de50b2, 0x329d4647, 0xaa8f4c23, 0x4962a321, 0x6abac561, 0xd890fa70, 0x000139 } }, { { 0x9d597dea, 0x71631984, 0xce0689d, 0xcf01b29d, 0xca8a45c4, 0xa9c6254c, 0x442a5bab, 0xe9c30a0d, 0x3632264, 0xdacb0041, 0x7769932e, 0xd0570a21, 0x38f941c0, 0x8ac12d45, 0x29b6903f, 0x13526416, 0x0001c3 }, { 0x841e4842, 0x2e5294, 0x58b9d70d, 0xe0645b20, 0xaa8c78c5, 0x2289f0ee, 0x31a6a720, 0x1564de25, 0xb6e52aed, 0x60766e09, 0x47e328b9, 0xc4853899, 0x9baee250, 0xc66a85a9, 0xf370f547, 0x94d407a3, 0x000198 }, { 0x2ee66afc, 0xf6e0592e, 0xf543f1fa, 0x788f02c5, 0x9eeb02c, 0x38315747, 0x99de556c, 0x6e238c2c, 0xb88025ad, 0x8c306ea1, 0xb582b509, 0x9fa1fa37, 0x3aaf560b, 0x9f495373, 0xf73dac3a, 0xfbd1ba9b, 0x000074 } }, { { 0xdc2a9be2, 0xec838d5b, 0x15e86d2d, 0xdb696147, 0xa96c26e, 0x4b51c3b3, 0x79dad526, 0x17bd2255, 0x373d96dc, 0xe422515e, 0xdbe81def, 0x817ee060, 0x794519c0, 0x6269b0e9, 0x7e177012, 0x9cf1c0b4, 0x00014a }, { 0xbaa0c049, 0x8213a947, 0x2da34e54, 0x28152629, 0xdfe59862, 0x3a7673a6, 0xae3f9d6e, 0xfc55eab8, 0x113c2acb, 0xbcd9cec6, 0xdf582722, 0x29cda6df, 0x54eca3a4, 0xdf2154eb, 0xe94db449, 0xf2197cf3, 0x0000bd }, { 0xd4d232dd, 0xb7ea88db, 0x4f83f703, 0xabe1b8a0, 0xab663b5b, 0xadfcb3c9, 0x79691af9, 0xa1517953, 0x505a6d4c, 0xb88c5454, 0xbb0ac32f, 0xd7574c0, 0x4890e451, 0x16633482, 0x77564197, 0x834a50a7, 0x000160 } }, { { 0xe425d5b2, 0x4e50832e, 0x3d3ed26d, 0x535bfccf, 0xe077cbbd, 0x9d0e4559, 0x410d79e1, 0x37eb7b3a, 0xb0bab1a3, 0x92d57e78, 0x314ffd37, 0x28ac0092, 0x29bb68bc, 0xcb710f0f, 0xc375c428, 0xb60ce378, 0x0000aa }, { 0x60cca254, 0xd6a850d2, 0x66c7fff1, 0x6f6b5985, 0x8809947e, 0x876f23bd, 0xff941ce9, 0x748d018b, 0x214f9048, 0x435e78e6, 0x98d4de7d, 0xe9d9b990, 0xc6b76fe8, 0x12286a3b, 0x6b19398b, 0x43c26e3, 0x0001ee }, { 0x21a4509c, 0xcdf87033, 0x804ec730, 0x4be2461a, 0x73d9c9ef, 0x2fc113fc, 0x7162d111, 0xb5e0eee, 0x704b9cad, 0x9002ef7d, 0xd647991b, 0xb4675c32, 0xfbd5501e, 0xf914911d, 0x39975ce0, 0x50dabf83, 0x000006 } } }, { { { 0x10a0a143, 0xf42bb83c, 0xabbfd755, 0xc61f4731, 0xd0523468, 0xdf3ccc78, 0x96666a53, 0x760e9277, 0x67d4f282, 0xf47c090, 0x45bd2ae1, 0xf86952d7, 0x82952c95, 0xaf0a88a0, 0xe7c3de54, 0x2a984580, 0x0001c9 }, { 0xa05ec456, 0xc3a685c4, 0x485c79fe, 0x2f11e086, 0x91b14f5f, 0x667b5b5e, 0x441230ec, 0xce6fba35, 0xb8197806, 0xfba43c58, 0xff065c9a, 0x224546d7, 0x47dbb6db, 0x2d71d1e0, 0xb5cbe628, 0xc0c75080, 0x00014e }, { 0xe21d96a8, 0xe0fcdfdd, 0x619c42f5, 0xf1495a22, 0xfd91e962, 0xb02605b5, 0xc73e6cb9, 0xb3536a6b, 0xd2cea7f0, 0xddc5dd52, 0x7bbff8de, 0xff5c4126, 0xe9c9efb8, 0x2d871300, 0xc2c593e9, 0xd3faafcb, 0x0001df } }, { { 0xc5ddb583, 0x62e3e0f6, 0xfe67c084, 0xc1264ffc, 0x582b4bc8, 0xe1149857, 0xd16ecce5, 0x10509c36, 0xcd11416, 0x864a7244, 0x837a48fd, 0x2d17e0bd, 0x14fbed2b, 0xcf5c1516, 0x6c68688d, 0x5083954a, 0x000114 }, { 0xa929ec0f, 0x7152abea, 0x39939022, 0x5b516ce9, 0xbd34aa46, 0xb6ea722b, 0x1085a150, 0x3e0ddd09, 0x29de8a3c, 0x7287a2a, 0xc672b512, 0x12adc8e9, 0x48af68f, 0x3f958ce8, 0xac9080ab, 0x52d210fc, 0x0000d5 }, { 0x7ff76db0, 0x9027df04, 0x9b8ff7da, 0x6e291191, 0x7e68d64d, 0xec569609, 0x9c02629e, 0xe79135ec, 0x1fb3ad9e, 0xb536f9f8, 0xef84d41d, 0x752c21ba, 0xee5b409d, 0x70aa8596, 0x896f4cc8, 0x6e696d9, 0x0000c7 } }, { { 0x1c6d2e24, 0x105dc4c1, 0x38c46a00, 0x3490fe5, 0xcd3d37ea, 0x1cde67ea, 0x8a83555b, 0x6bee43e, 0xa6a3e469, 0x8f0d9d6a, 0xa335649f, 0xa679067, 0x3bfb238c, 0x7ed90ad0, 0x3854173e, 0xe6e4575d, 0x000019 }, { 0xb04d4757, 0x705ed270, 0x90e974e8, 0xaa37fc1a, 0xe296acf2, 0x55e71a6d, 0xd4cd68af, 0xf3e824ad, 0x9fb1eb40, 0x3d69e13, 0x271b600a, 0xd2af095f, 0x80f679f4, 0x1db3a680, 0x4edb8445, 0x2805e3ed, 0x0001d3 }, { 0xe7f3af03, 0xd74b9a67, 0x1d65dcc1, 0xef5de67a, 0xff9e0621, 0x35fa8f23, 0x5992e594, 0xb9ef0b67, 0xf217a902, 0x1ed6e16a, 0x13cb658f, 0xea4825d0, 0x5a997ee3, 0x56b5fa7d, 0x5544b40e, 0x68e60681, 0x0001f3 } }, { { 0xcfbfd94a, 0x142a5b4e, 0xd989b7eb, 0xb7a74017, 0x3b60b425, 0x263b33c, 0x735f53b4, 0xc59913a1, 0x98535d5a, 0x18588f14, 0x836b61a0, 0x582675e7, 0x5c25f9b4, 0x4919e32, 0x755f0b66, 0x1e08e11b, 0x0000a8 }, { 0xebfab429, 0x8b73f22d, 0x5cc34e67, 0x8cf905a7, 0xa3bf69c2, 0x7a22a686, 0x78ffefc3, 0x5e8df685, 0x30ceae2b, 0x4d8e2a60, 0xacdf6db8, 0xe1b88e71, 0xf665a1fb, 0x72f082f1, 0x13cf38dc, 0xdfbed336, 0x000053 }, { 0xe178ce68, 0x5df50038, 0xc795e39d, 0x961695d6, 0x4af7f273, 0x31b53319, 0xc7274f15, 0x46dd6c13, 0x67d54c01, 0xd1d5c755, 0x39d0a725, 0x3d2a6ea7, 0xe392a288, 0xacf69106, 0x14ce7ffb, 0xc4ae8f75, 0x0000af } }, { { 0xbfc35b0c, 0x30f9d34d, 0x875705a8, 0x7e95fe76, 0xb49da074, 0xe50ea4a1, 0xb4a7429d, 0xf455fcd3, 0x7d34dd80, 0x417bd4a9, 0x596688d8, 0xca6cf214, 0x9c6ed5d6, 0x183c13f8, 0xc8f1d419, 0xa13f15b5, 0x0000ce }, { 0x74f7419, 0x17bea62e, 0x2942ee20, 0xa263c44a, 0xbc9b23f1, 0x1b1e38d4, 0xcfe4b7cc, 0x6741f7e, 0x947f0212, 0x1fa7a36f, 0xab473011, 0xddceddd6, 0xd1094fdc, 0x593c8141, 0xd930044d, 0x4124ba16, 0x00010c }, { 0x8da09497, 0x1af6a083, 0x13088233, 0x259e9fdd, 0x1f0111bc, 0x74b3cf7a, 0x6daaea99, 0xf070136d, 0x27f6753, 0x90a73208, 0xbe09beba, 0x186cbb00, 0x264a70ac, 0x8cd4466d, 0xc028c7a4, 0xbc12d520, 0x0000c9 } }, { { 0x1986bbb, 0x6fe51d2c, 0xbf3be834, 0xebe53b32, 0x4a01399d, 0xa3f81261, 0x39fa8b84, 0xc9123e7, 0x61a85ea5, 0xe0aab91d, 0x8bd47ee3, 0x4e49aa53, 0x4741b58f, 0x18ebfd33, 0x6272ae6d, 0xfbc49eb0, 0x0000a0 }, { 0x4195b434, 0x4520dd2d, 0xddf00a33, 0xa690da78, 0xd1061dfa, 0x57088ab9, 0x83262bf4, 0xb88e559f, 0xa5696f52, 0xb4d43341, 0xe33940d, 0x7f8a7def, 0xab863274, 0x8c361ef9, 0x92961013, 0x822beeaf, 0x000044 }, { 0x38223f30, 0xe16febe7, 0xc258be1f, 0xcabe7b55, 0x144c60ff, 0x13506d65, 0xbbb0459f, 0x4ba29247, 0xfa135ba7, 0x5d4fd0f7, 0x9ebe7901, 0x63082ca9, 0x1c6f869, 0x9c5d10f5, 0xcccfc704, 0x665c3e24, 0x0001ff } }, { { 0xee532a78, 0x19aa3c6d, 0x418cb540, 0x35619803, 0x3b0e44fd, 0x7f2ec36a, 0xdb761870, 0xc816e3e0, 0x7568537b, 0x52d0dfa9, 0x32d4cc0f, 0x472fe65a, 0xd75030e2, 0x98a14c43, 0xdcea7e3b, 0x187c9929, 0x0001a2 }, { 0x25d99f26, 0x8f575141, 0xa1057d24, 0x58d6323, 0x1cb40d27, 0x822c17e5, 0xc0efe07, 0xe17d9220, 0x420c67fb, 0x2eac366c, 0x50aabecb, 0xbe2c1b8f, 0x7be1c0f, 0x2bc10754, 0x5c97d737, 0x92530063, 0x0000bf }, { 0xf07d0918, 0xbc60ed75, 0x560153eb, 0x311b111d, 0x5301bd6e, 0x4039f9cc, 0x509c2dbf, 0x96048789, 0x9bcb190b, 0x40367bdc, 0xca56461e, 0xb556716b, 0x3675a638, 0x64a9cb9a, 0xb9260a4, 0xfca3d954, 0x00005f } }, { { 0x25cfd3a1, 0x81175cbf, 0xf3b85b3, 0x9a8c44ff, 0xed16231a, 0x5a0b8bf4, 0x14515862, 0x10c97ad9, 0xf4340844, 0xb74f8a11, 0xe972f51f, 0xd546927a, 0x257f6fff, 0x1d845976, 0x5bc630ad, 0xb5c881f0, 0x0001d1 }, { 0xef7032ea, 0x1cef1777, 0x10a8aa0a, 0x39ddab27, 0x5d80de85, 0x297c28c3, 0x12aa4e1c, 0x1a34ca0b, 0xdc01d2ac, 0xe68fffab, 0x55d57397, 0x27661a1c, 0xde1c7137, 0x5357b731, 0xed23764, 0x9fb7fab8, 0x000179 }, { 0x8fc9a4e0, 0x6e97ff0e, 0x7202b5b0, 0x6d451860, 0x4a6a9dc1, 0xf8843f13, 0x9f362980, 0x382576c, 0xdc241aaf, 0x86faa756, 0x5264ea35, 0xda25e016, 0x54c6cf7a, 0xa82b7e86, 0x1d391c2e, 0xa41639b1, 0x0001f4 } }, { { 0xd191be63, 0x4d2da6a2, 0xca612494, 0xdf37d32f, 0x1ee716bd, 0x8fd1b17c, 0xf942399c, 0x398b07ca, 0xde75df63, 0xb2e2ea71, 0x363fa8c5, 0xe501b749, 0x759fef4b, 0x21c6d231, 0xcd837658, 0xd6e43767, 0x0001cd }, { 0x50db77b1, 0x7e7af420, 0x54a97d04, 0x6ba080fe, 0x719cc93d, 0x58f09934, 0x2e96d80b, 0x462bf9ac, 0x6f7c942, 0xd0fe51aa, 0x7810f36, 0x10461aaa, 0xb3084b39, 0xb1b3df0c, 0xbab03056, 0x19e83e1, 0x000147 }, { 0x610c983f, 0xd83a35f0, 0x89c9d92f, 0x4f5e6d46, 0x832b62ee, 0xb7462e1c, 0x945407f7, 0xff63eada, 0xb73dd363, 0x2cb7854e, 0x3dc5999, 0xd41dddd6, 0x4911b7c9, 0x99e61678, 0x4bb573d2, 0xba5fe035, 0x00019f } }, { { 0xf3ddb090, 0xba1215b9, 0x2e7365e9, 0x88e6e79a, 0x55763da8, 0x33567f4b, 0x8e19a9a, 0xcc409d9d, 0xd7caf0ab, 0x15c18cf7, 0x2bfbcddd, 0xdec180a8, 0x83a31e23, 0xbbe1e6d3, 0x9159c97c, 0xc7a33539, 0x000003 }, { 0x24c6529b, 0xffcd505b, 0x2c771b3, 0x52466761, 0x4a02040f, 0x19fc320d, 0x488eb1ee, 0xfc81bac9, 0xa03a7a84, 0x1f5fe624, 0x82d90446, 0xc92d2c19, 0xcb5e1377, 0x9e9bd06c, 0x91c55c84, 0xbb682ce4, 0x0001f1 }, { 0x1e5ba92b, 0x3d9f232f, 0x7d898fb2, 0xb6366999, 0x2a2e737d, 0xe51c167, 0x34a77e1e, 0x4ce6ca2a, 0x5e7bb0b, 0x1512d044, 0xcc575c01, 0x2c528cfd, 0xe7f92b54, 0xc4c0cc2e, 0x33a76c6e, 0x6f695456, 0x0000e1 } }, { { 0x5991cc1e, 0x97edcb49, 0x9cd5cfc2, 0x2834dcd1, 0x840968e2, 0xbebbf7e9, 0xec4921e4, 0x96fdc117, 0x726eb2a9, 0xde460e8f, 0x7c8faf7, 0x160a149c, 0x4cca6265, 0x2e33410c, 0x6ac091f6, 0xc342108e, 0x0001d8 }, { 0xd2bb52ff, 0x7251776a, 0xdfb2be8, 0x782ce2e1, 0x1502c62c, 0xa1ff2f4a, 0x2baf08a4, 0x27e13c27, 0x314c3901, 0xbdb775e2, 0xf61f0279, 0x9bae9795, 0xb2447fc0, 0xb36f0eae, 0x83e39b56, 0xf0138943, 0x0001a5 }, { 0xb88c1cc7, 0xfd685eb7, 0xf049562, 0x225e8f96, 0xbe382242, 0x4f4765bf, 0xfb4e007a, 0x6c40b3f, 0xf5e9db9c, 0x12e744d6, 0x5c3d8af9, 0x1d06c866, 0x8364ad7a, 0xead41f0f, 0x49eb8e9d, 0x5e09a64d, 0x000199 } }, { { 0x698084fa, 0x740eac0a, 0xb3f46b5f, 0xd8c16a07, 0xd4ea92a8, 0xb5216f71, 0x92459469, 0x2362453b, 0x3180f983, 0x929b1811, 0x6b5b6e74, 0x2a669ae7, 0xe956144, 0x6b9e0d73, 0x9cc369b5, 0xda7404fd, 0x000049 }, { 0xe4407260, 0xb97ed7d2, 0x5ae33b55, 0x99fd1611, 0x4d3e026c, 0x15681235, 0x92aa7158, 0x2b420af, 0xd318ab62, 0x971db610, 0x703f28ce, 0x8d4a5cb8, 0x2e89f00, 0x25edde6d, 0x563dee1f, 0x61f497d, 0x00004f }, { 0x53aaec41, 0x400736d5, 0x8b773f8c, 0xe377ff55, 0x4a8d2b60, 0x70920342, 0x4d9860cb, 0xc8ecce59, 0xfea713f1, 0x83526614, 0x3d737a76, 0x51f57b5c, 0x9f6a718c, 0x73255896, 0xafca1a36, 0x61919ad9, 0x00016a } }, { { 0x80478130, 0x732508ef, 0x3e6a8f63, 0x47c858d6, 0xb9aac56f, 0xf2ac2cf1, 0x14cac218, 0x8fdd7c1c, 0x402384da, 0x9d618e66, 0x74e798d8, 0x906f5594, 0xc9c2d694, 0xe0ad7384, 0xffb9e017, 0xf174df2b, 0x0000be }, { 0x556bf316, 0x9a73c0ab, 0x810403d5, 0xd5f5888c, 0xc0959e76, 0xd28296b8, 0x26dbc7, 0x6207511f, 0xea558afe, 0x23ea92b4, 0xcc235e59, 0x26d55673, 0x18fda5af, 0x3c6fd82a, 0x7386e69c, 0x84b515b1, 0x0001b3 }, { 0xa12ab3ba, 0xe6606e3d, 0x1f6ab34, 0xddee1481, 0xb34cf21, 0xeafe148b, 0x5c855ed3, 0x28201c8b, 0x52ab4763, 0x680e8356, 0x6ca1bafc, 0x9002650b, 0x38fd3069, 0xbe1b8fb9, 0x82ee3f62, 0xbfcb8e10, 0x0000b9 } }, { { 0xab81c2ae, 0x73c3e334, 0xcdd96290, 0x90258784, 0xe891b5dd, 0x83a5cd03, 0x9f60d862, 0xe4c47fe6, 0x759d520c, 0x341e97c8, 0xf2b42c6, 0xc0387c6a, 0xc5923a77, 0xa38dd439, 0x3f05c143, 0xe63738ef, 0x0000ce }, { 0x32ce08b6, 0x79d790de, 0x6f19a582, 0xeb4d3395, 0x2374ad51, 0x37c84703, 0x23736dbf, 0x1ab2b68c, 0xdf015b8c, 0xcffc31fb, 0xc66a286e, 0x3deab741, 0x868d2a96, 0x179adf2c, 0xc3881c91, 0x9ee4cad6, 0x00003b }, { 0xcdc876a9, 0x16c102e6, 0xda184bcb, 0x8fa50c04, 0xd8a8cfb3, 0x9eb8e05b, 0xe8f1f8f6, 0xc8220802, 0xd425d437, 0x1fdf72ea, 0x7eb8092, 0x3d929303, 0x54465b54, 0xbaaa4f70, 0xb1faa943, 0x9a287ec8, 0x0000e1 } }, { { 0x346d34de, 0xaac36458, 0xf2ce0739, 0xbadcabbf, 0xb6c50da9, 0x733d7c15, 0x8e15db55, 0x89660fc4, 0x7edc07ee, 0x418044fb, 0xe07812e0, 0xc805ff54, 0x4e0230b1, 0xc53281fe, 0xddd7762f, 0x48706f47, 0x00000d }, { 0xcc51ff90, 0xd7a156ac, 0xb01f59f0, 0xf23bc1b6, 0x995bba74, 0x109e60f, 0x84ff1f53, 0x7098f019, 0x837e1bd5, 0x791ccc30, 0x15244aff, 0xcfaa66df, 0x3948734d, 0x2b629ce1, 0x10953193, 0xbcc6c99, 0x00017a }, { 0x2d9204d9, 0x1579ac94, 0x548c351e, 0xe8b941f6, 0x543ffb66, 0x26dd60a0, 0x8bc26c83, 0x82566e3a, 0xb4fee3e7, 0x89f69642, 0x895d1f52, 0xa8e6954c, 0xdfd60905, 0x87acf317, 0x4a8e970, 0x11c73dc7, 0x0000cd } } }, { { { 0x8663e29c, 0x4c70da33, 0xa703eaa2, 0x5d6e092e, 0xb8a30c6a, 0xf81da4e0, 0x39add9ee, 0x95777511, 0x6b6756ce, 0x3f14966d, 0x8be5526d, 0x4ebefc8e, 0x685c1895, 0x38fcfb0d, 0x321849f6, 0x9ee91cd8, 0x0001c0 }, { 0xae435695, 0x3f1d4e1a, 0x104fa960, 0x7ac61576, 0xa4a46d3f, 0xb3a0eea3, 0x5e349fdd, 0x5d95ae21, 0x2a90233d, 0x4cc6f5a9, 0x2dcb5b4d, 0xb508971d, 0x1dfe6c2d, 0x6d2fee65, 0xb9485b18, 0x725b4849, 0x0000e3 }, { 0x81e3e566, 0xce29e114, 0x2e57756f, 0xc270f17f, 0xcdbd3570, 0xa7c37ec1, 0x1cac9ef4, 0xf2f99b6e, 0x1031ad00, 0xb29e153d, 0x2f77dd1d, 0xb494911d, 0x616abe0d, 0x68c97c5, 0x7d419054, 0x8549f84f, 0x00017d } }, { { 0xd4dcbb7e, 0x820e37c9, 0x39ba9cf7, 0x11d9fa79, 0xcb8e4a2e, 0xed15b520, 0xf8f64b47, 0x2d17bab4, 0x453a684f, 0x66805def, 0x50e8a87a, 0x54dbd6ae, 0xcaa31427, 0x630984ec, 0x4c52b0d3, 0x3a861da0, 0x00008b }, { 0xe60d3fd7, 0x96d382bc, 0x2b9b0edb, 0x6cb0c770, 0x4d8bb37d, 0x118bab18, 0xbbd028c9, 0xff74b9ea, 0x3cd40c42, 0x3754f2a8, 0x74b73591, 0x2e34f4d0, 0x9b39476a, 0xb8edb19e, 0x3c679127, 0x593143c0, 0x0001df }, { 0x8bc17b89, 0x8f8e369f, 0xea74131c, 0x7bfeabd7, 0x97a7e46, 0x4d65eb7e, 0xc82d17ad, 0x521b4683, 0x198c444, 0xbb6bca51, 0xbbe4c3ae, 0x18814fbd, 0x1a143bb0, 0x970ba91f, 0x682b8ea9, 0xdadb7d7a, 0x000015 } }, { { 0xd580f22f, 0xcee7b95b, 0xe92e5f1e, 0x6cf711dd, 0x42cf6ad6, 0x8b63b758, 0xd6b0bd66, 0x1e7de3, 0xe50b294d, 0x335e76bf, 0xcd420a34, 0x133970d2, 0x142d4647, 0x66d05a85, 0x648c5395, 0x3d9db45a, 0x0001ee }, { 0x90689d93, 0x8b16b066, 0xe0780a8b, 0x494d407e, 0x6fffb646, 0x681e6e93, 0xd851d034, 0xff9e237, 0xadc07c3e, 0xa53b8e89, 0x1cdc1b3a, 0x4ed2215b, 0xe16b60db, 0xfae9f852, 0x936efce1, 0x76e5420f, 0x000053 }, { 0x74e864fc, 0xbb6186d, 0x2d4cd0, 0x8ec12756, 0xdc99329f, 0x85597c, 0x1f17358e, 0x47c603e0, 0x6f2dd266, 0x134f1d69, 0xefa8add7, 0x710adb4, 0xaabe9cf0, 0xeb56816a, 0x17ef6052, 0xdf2e2f8a, 0x000163 } }, { { 0x380c130c, 0xa9c1b853, 0x7a85a05e, 0x530a14a5, 0x217584b0, 0xfef6d55a, 0xa228a837, 0x76459ba6, 0xe6b4782e, 0x5ef5d4bb, 0x98af7533, 0x5a0bd841, 0xc837d328, 0x30785ff3, 0xf9df344d, 0xe8c7068c, 0x00003b }, { 0xb1771e82, 0x970e4166, 0xf2e1534e, 0x85109aee, 0x403665be, 0xd32a6a12, 0xc864925d, 0x783c14b8, 0xde6cd988, 0xb364f8eb, 0xaec99de0, 0x1d04ffc4, 0xcab684a3, 0xa31888cb, 0xe01fb279, 0x5e3d6236, 0x0000e8 }, { 0xe8fdaded, 0xffaf9e51, 0x2e682a30, 0x2ec5ed51, 0x1e677df9, 0x8a857ab0, 0xb9367098, 0xe11e0203, 0x866c2cb9, 0x751e27c8, 0x27fb1be6, 0xe22e1bd7, 0xd386fec8, 0x8317cd3b, 0x8f0d65fc, 0x786b8ca9, 0x000151 } }, { { 0xe0eb629c, 0x90e97cd2, 0x7d5c4f85, 0xfc597983, 0x9f084e39, 0x732f144c, 0xf4fbccbd, 0x76e10762, 0x824acf45, 0x1f0893da, 0x9c87329d, 0x3eaadfa6, 0xcec9ec04, 0xb2e6eb5e, 0xdefcf89e, 0x199c6d55, 0x00008a }, { 0xe4847060, 0x21432327, 0x2644be3, 0xfb1aa376, 0xefe1621a, 0x53de828e, 0x58b7078, 0xd762278c, 0xfcc8a73b, 0x3f085565, 0x86cbe8e8, 0xe46696f, 0x90e9359c, 0xd6dcb85b, 0xb501e51f, 0x5c5b214c, 0x0000d2 }, { 0x4acd942c, 0x47b87553, 0xb74664b9, 0xa961c605, 0xc865781c, 0x3229550c, 0x43008f5, 0x5395ead6, 0xb32f0d3b, 0xd001ef96, 0x19e69740, 0xa0261941, 0x17d7dc4b, 0xe911c7c3, 0x813b8090, 0x1937afad, 0x0001bf } }, { { 0xad075a44, 0x74a8ce0b, 0x1e3f876f, 0x4a33c65, 0xa7c5645c, 0x9eac3bfb, 0x7e812c36, 0x2c1b6040, 0x2cc819be, 0xf2c0e086, 0xb1b22f31, 0x9a0189a4, 0x530927d7, 0x606be406, 0x2c591532, 0x43c857f2, 0x000162 }, { 0xbd308eee, 0xe51090c9, 0x48fdb516, 0x8a0a9e5a, 0x1ba9355d, 0x6a4facd4, 0xb3f42302, 0x291fb4a3, 0x84b9d1c3, 0xa5957a22, 0xf964f0b0, 0xa65e4054, 0xb46bedfd, 0x2eb02851, 0x6e649ac0, 0x8c2510bb, 0x0000fa }, { 0x4f11b6f0, 0x42a59827, 0x1a135708, 0x1e8c52ed, 0xcede0d6c, 0x602cce5f, 0xa0d1fef9, 0xeb20f49a, 0x6496c495, 0x4ab8dda0, 0x119e7be2, 0xf183c384, 0xa016ea8c, 0x8acdd87c, 0xeed53f9f, 0x19acedaf, 0x0000d4 } }, { { 0x7c8be858, 0x7f9269a2, 0x34f6bcf7, 0x8ac2431a, 0xe25061a6, 0xa4a06bd1, 0xa42e01cd, 0xd7596729, 0xa187a976, 0x70f868c1, 0xf2c78c6, 0xda39e3c7, 0x2a1aeb8, 0x1ea48820, 0xdcb6c9da, 0x44e6670d, 0x000050 }, { 0x67d019c7, 0x4e08b85d, 0x896b1ead, 0xdbde9650, 0xd8a2605f, 0x1594960f, 0xda7e9795, 0x953a6363, 0xa0e596cd, 0x8128f1f9, 0xa4f59ae5, 0x1d761ca8, 0xd8496c5d, 0xceb6c6a3, 0x9446b6ef, 0x6b1d9782, 0x00009c }, { 0xbb3ebec0, 0x6b361de5, 0xc7d2adba, 0x607d1504, 0x73801241, 0xcf4cb1cd, 0xd53e1174, 0xfc576a01, 0xee44582f, 0x16d35376, 0x6885166, 0x6f4f7d12, 0x5c4f9e95, 0x2d128367, 0x76b8ac68, 0xbec49419, 0x00012a } }, { { 0xafc1c274, 0x53c835f7, 0xb047cb2a, 0x4c2335a4, 0x4776ff1a, 0x8c2f3b05, 0x973d5dc8, 0x65dfc1da, 0xe40b463c, 0x3d9d4375, 0x874293a9, 0x396c1c44, 0x9690e5a1, 0xdd64af25, 0xbe97ea5d, 0x854dad23, 0x000002 }, { 0xe8673da4, 0x7988b4ca, 0xd80ce2f, 0x4fae5c26, 0x219f7da2, 0xdd5afda9, 0x99b1228e, 0xfd20034, 0x67f8cd83, 0xac4c00aa, 0x7187aa74, 0x14c9f674, 0xf35c5904, 0x9443020, 0x396085ae, 0x9e57c265, 0x0000a2 }, { 0x7e9defdf, 0x16aec848, 0x73b5ca86, 0x5bf3d159, 0xe38cd973, 0x14a832ae, 0xde967cba, 0x171f47dc, 0xa675d7bf, 0xce4124d8, 0xeccfe33b, 0x239cb581, 0xd47700ea, 0x8113858d, 0xe1fe1e4f, 0x21f252f3, 0x00007a } }, { { 0xb895ee84, 0x3e1c881f, 0x482186f4, 0xc77a5369, 0x14ff7cc0, 0x8411b05f, 0xac53d331, 0xccc0fd9a, 0xb30b9488, 0x37ff8f84, 0x1395ca19, 0xd601da6e, 0xf9a6969a, 0xfc2b6158, 0x152c72b5, 0xe4e2f2d9, 0x000191 }, { 0xe60a778b, 0x3eb419af, 0xd39cf72d, 0xb8ddeb81, 0x908ef451, 0x510177f6, 0xfe04dc02, 0x7bc85bdd, 0xa43ae8c4, 0x5882a58e, 0xb4648514, 0x47030c49, 0x830f8b09, 0xd047b00c, 0x5a75df9e, 0xa26bd6b5, 0x000018 }, { 0xebc4b5f7, 0xcd1b6dfe, 0x19ff276e, 0xd6b0ddf2, 0xb830e6e0, 0x47340bb9, 0xeb7ca3c9, 0xa45f6954, 0xb2d21c37, 0x3e26c32e, 0x86a951cc, 0x24e72dee, 0x6f1cd423, 0x2da17b5b, 0x7313828e, 0xc6e31d2a, 0x0001eb } }, { { 0xdee2a831, 0xc7c74bc3, 0xd3f8a354, 0x7b414bab, 0x4f52f28, 0x595b20e4, 0x2ff157b4, 0x5fcd40cc, 0x1653e5d8, 0xe0d258bc, 0x9fdf5b3b, 0x7425e5eb, 0x4edf7280, 0x80007f7d, 0x4abbf1f4, 0x150b915f, 0x000111 }, { 0xcaef9ade, 0x428bb3a8, 0xbedd050f, 0x202b7326, 0x962b1c6a, 0xef7ecd2, 0x40afd9ec, 0x5095b4be, 0xdadb9300, 0x55d4aa2f, 0xe26fe626, 0xbfa726ca, 0xc9eba6d6, 0x3e82b355, 0x49b3bb40, 0xf53fcbea, 0x0001b7 }, { 0x3c12ce24, 0x65568b17, 0x3071a5cb, 0x35e87566, 0x207178de, 0x9c881667, 0x402ac665, 0x29e3ef1c, 0x59e5263e, 0xc77fa44c, 0xe65003fd, 0xf578a373, 0x1529b196, 0x1ebb4d62, 0x86495f51, 0x5b7c4295, 0x0001f0 } }, { { 0x3e217c8f, 0x5d92cef3, 0x8d81ac66, 0x9d1c15ca, 0x96980a01, 0x67bba833, 0x9ee33444, 0x4549bbba, 0x508e93, 0x32f1d181, 0x3d16ef80, 0x421f6bbc, 0x778b2936, 0xd1e60b6d, 0xa5015db1, 0xc4a51f3d, 0x0000da }, { 0xbb9e9eb8, 0xfd41b641, 0xeec5ef54, 0x8b8e5c41, 0x636b537c, 0xb92406f7, 0x2684e944, 0xa0f1daed, 0xbaef63b7, 0xcac36459, 0x184f952a, 0xcd4e8790, 0xc1fbe0de, 0x26b3cdb1, 0x8241c22e, 0x70f0ca63, 0x000154 }, { 0x6d639a7d, 0x18ba2ba, 0x7e61ea57, 0xf8f3a190, 0xcfd8912f, 0x6d5ed801, 0xb6d7d984, 0x238ec084, 0xf04b3d7a, 0xc48554e, 0x83968bf9, 0xb8c2996b, 0xa521cd45, 0xeb7f3682, 0xd5df35e0, 0x4332e44b, 0x0001f4 } }, { { 0x43de5049, 0xb6b24a4a, 0x8b2bc7dd, 0x7bbcc612, 0xfae24c21, 0xd6d98529, 0x61de6ad4, 0xc89f6ca1, 0xe46c94c6, 0x946067bf, 0xf08d2c2, 0x713dc065, 0xea2e6083, 0x26557b3f, 0xef79ea4e, 0x18227633, 0x000145 }, { 0xb515ba57, 0xc5e3ba15, 0xf3ab9f7b, 0xdbbe7fd7, 0x26332d5c, 0x391ae819, 0x82216a2d, 0xf3598a5d, 0xdfcfadb9, 0xfbe9520, 0xb7cd46b7, 0x9ac95375, 0x811dfa75, 0xa08982c4, 0xe864582d, 0x3af10460, 0x00004f }, { 0x366f4211, 0x6eea4ac7, 0x899afca5, 0xc33006a0, 0x31962397, 0x9e77cd1f, 0x1de2e289, 0x62118520, 0x4e7ab193, 0x5de52e1a, 0x2b21fc94, 0xa10c894, 0xe9b30a77, 0x85b4dec6, 0xa31ea8a5, 0xc622ddf1, 0x000124 } }, { { 0xf1c48be2, 0x9fc67172, 0xa2c3feb8, 0xf0c66133, 0x184a87ad, 0x64ca299a, 0xa1a9e101, 0x49fec449, 0x804b4afe, 0x2361f120, 0x1f1ccf1d, 0x5765b265, 0x4d819ea8, 0x12524613, 0x4f7b80e6, 0x9e1f123f, 0x0001f8 }, { 0x110ece4d, 0x375ff2d3, 0x9471ac0, 0xb35c9adb, 0x5a5dc6b, 0x9dfaade9, 0xde2fdd3c, 0xd2611842, 0x92156aab, 0x9325e011, 0x52d665ec, 0x168dc38c, 0x3c4b9b5c, 0x31b2418d, 0xd3b515c5, 0xedc2ebf7, 0x0001a0 }, { 0xf7dccb87, 0xb1767e2, 0x1c1f41c7, 0x3f6f58a, 0x8393f037, 0x1f5abd4e, 0xfdb8496f, 0xfe1f0667, 0xc79e7a52, 0x75796dd3, 0x35da0629, 0x765ef47f, 0x8eaf42ed, 0x9fded1fe, 0xedd291e2, 0x2be7c94c, 0x000020 } }, { { 0x67f540cb, 0xfb7d4b55, 0x4f2cdd3c, 0xd068120d, 0xaf2f25ae, 0x56335a17, 0xd1a14480, 0x50940a6a, 0xe16b935b, 0x9864ca4e, 0x288ae054, 0xfd507275, 0xf2728ff9, 0x7e53112f, 0x374ddc26, 0x3e311b96, 0x00006c }, { 0x2a8ea0ff, 0xa2e817ee, 0x2b941d7, 0x2678bc5e, 0x3c8f4ee9, 0xd2f88423, 0x4301bfa7, 0x83a3a8dc, 0x8ae29f4e, 0x23c34290, 0x5b13ef08, 0xb36907f0, 0x26fb2c4b, 0xa28d5f2e, 0x1c3f4301, 0x4c4263e4, 0x000190 }, { 0x1f342509, 0xfc4b51dd, 0xe65e683b, 0x369a360b, 0xbb02f42b, 0xa2ef9577, 0x5b40958f, 0x6b0386c4, 0x1ebd9a42, 0x5e1e6ccf, 0x2ff3125e, 0xf71ad903, 0xd3472ccb, 0x66c2852c, 0xb0152cf1, 0x9bd05f94, 0x000128 } }, { { 0xe6d15f3c, 0xcf39e8e, 0x55b55b7a, 0x74ca41de, 0x439d3a39, 0x3aa12763, 0x8f47285, 0x7c76b328, 0xcdcef9e, 0x44f31cd9, 0xc1992fd9, 0x2ab4658, 0x1f1b8853, 0x585ba1fd, 0xa8d0828f, 0xd2d7924f, 0x000127 }, { 0x17b8aea7, 0xb91844ae, 0x1dae41ed, 0xf2dbf111, 0x19e96147, 0xa82754a, 0x6a0475b7, 0xd1a4467, 0x75ad00f8, 0xd9f88106, 0x64eb8b97, 0xf3062fc3, 0xfa325c81, 0xaedbea7b, 0xb6972b7a, 0x4a10fddb, 0x00015e }, { 0xfbf0452a, 0x910d6dd5, 0x72daac5e, 0x95e68434, 0x2c2e823f, 0x852f5f3a, 0x38443660, 0x2903989c, 0x1dcac076, 0xb00085ce, 0xb2c24fd8, 0x22b52585, 0x6f4fbe70, 0x77b40174, 0x6ea9b83c, 0xf001d9e3, 0x000004 } } }, { { { 0x3209558a, 0x3b1d80fb, 0x662edc72, 0xf9c3b0fe, 0x8b7710ea, 0xdf3244f5, 0x297e5461, 0x16e384e8, 0xb2588ea3, 0x8473a8ba, 0xc0e0d510, 0xf1703ed2, 0xf1660ac5, 0x5a1a4d40, 0x6cd6f3dd, 0x3c8b1258, 0x000011 }, { 0xeab84a02, 0xac6b3139, 0xcb62f5a9, 0x7e71d5c4, 0x49e065fa, 0x3aff9e0a, 0xe1c1b81d, 0x13628127, 0xa5d5ddc5, 0x70766c0a, 0x9c31ad84, 0xf6ac8e04, 0x9085ead5, 0xa95a28c2, 0x6124e00f, 0xfeca8df3, 0x00001f }, { 0xfe50e11c, 0xc484a20, 0x91ed5a4b, 0x3f8f917c, 0xbc10df94, 0xe4fd8ce7, 0x313b52ec, 0x9424192a, 0x701a6739, 0xefc68ad, 0x800e2e8f, 0xa5cdf9be, 0xb1d4668d, 0x7566d890, 0x9f4cca90, 0x5dfb2de, 0x000046 } }, { { 0xa3db0aa9, 0xae930bd5, 0xe7c58176, 0xb74ee113, 0x217e1f09, 0x98bd7467, 0x5b31a440, 0x1def7944, 0x74c2e875, 0x7742f04c, 0x1f0ed6c6, 0x9f0a1225, 0x2dafce4c, 0xb5a14439, 0x8c526efe, 0xdb589844, 0x00003d }, { 0xa83f6f9b, 0xbdb8d439, 0x16949b9c, 0x3807fdd9, 0xf2ed1ed6, 0xd74500b7, 0x6c2c1aaa, 0x82cf1f52, 0x657b9111, 0xd14a142, 0x1f6cfa57, 0x49b126a4, 0xd37b716b, 0xbfd8bdf2, 0x8d435eec, 0x79245432, 0x00007d }, { 0x63027b7e, 0x1bd116ac, 0x7a635ddf, 0x180a628c, 0xcf30bbac, 0x3f45b86d, 0xc11c955c, 0xf40dad5f, 0x3c5dd71e, 0x611d5ed8, 0x3750c21, 0x8e42cd66, 0x536f13b5, 0xfbea1f35, 0x69745b46, 0x9205095f, 0x000071 } }, { { 0x7c313780, 0xaf460900, 0x3a3832aa, 0x2c9a9a4c, 0x24ac5ff4, 0xf8b8b9d6, 0x67f7ad63, 0x96eaaea1, 0xec2aba95, 0x9cb2be5c, 0xa649ac02, 0xeac135df, 0x81232d88, 0x9eada16a, 0x924f3bb3, 0x21e25697, 0x000178 }, { 0xdee4a26c, 0x507c72ef, 0x6730c128, 0xba8944a8, 0x3b8e11be, 0xd255c916, 0x714fc44b, 0x9ec9dec8, 0x562c3d08, 0x38eca9a2, 0x2e4989e6, 0x9f4fb05f, 0xb8f3b13a, 0xfeb31725, 0x84b9f47a, 0x4b15b799, 0x0000b3 }, { 0x3bef3750, 0x119ec564, 0x28f202be, 0xba310b1d, 0xec330c24, 0xaf787c53, 0x773ae7df, 0xac6f93a4, 0xf32834f5, 0xf1213175, 0xff638296, 0xae41351d, 0x18d1541, 0xb6c6d808, 0x14e58edb, 0x9043a540, 0x000040 } }, { { 0xb5970262, 0xc0660431, 0x87b18d3, 0x81c0ee9, 0x23602191, 0x9d6c8716, 0x41fcabe7, 0xc93d6e9c, 0xbff7d90d, 0xe3ad26aa, 0xd86be037, 0xdb84f5db, 0x32183346, 0xfe01d722, 0x6d889b25, 0x9705e408, 0x0000cd }, { 0xb681ab27, 0x38115542, 0xa9a1954, 0x485938c0, 0x16b0c408, 0xcdbe7e8, 0xa9ff1fbc, 0xec3bae12, 0x24d270b, 0x2ff9627d, 0x76da2242, 0x24904547, 0xebc6062f, 0x32ffbf79, 0x583b8d6a, 0xf73ac66b, 0x0000d7 }, { 0xdcd5a777, 0x44e5e9c1, 0xf32c558, 0x4cf184fc, 0xf68c5d99, 0x9cf6e468, 0x7b253c70, 0x943dde79, 0x7e90714a, 0x35077cf1, 0x82694eb, 0xc7dba74d, 0x178ffc6, 0x5170179b, 0x839fbd21, 0x5d423c59, 0x000024 } }, { { 0x3916650b, 0xd1f563e6, 0xc9b304fe, 0x9ac490fc, 0xeab3f9b9, 0xbf8806a4, 0x6e2e77c4, 0xb7e2dbf2, 0xe6dcd03e, 0x9e7bca11, 0xd4dd57b2, 0xfcbc7c41, 0xcb74b2ea, 0x4a9fe39f, 0x99ab34ce, 0x1c748535, 0x000129 }, { 0x2aad0675, 0xd510b2a9, 0xe82b72ea, 0xf5be844e, 0xe8171247, 0x9c64ce3f, 0xef062688, 0x141848c7, 0xb9ae8bf3, 0x71402783, 0xe79f057, 0x30a8258f, 0x7a6ce972, 0x946d80d9, 0xeb1b84a9, 0xa5deae5f, 0x000039 }, { 0x18ca99a6, 0x37f53387, 0x4cf1e719, 0x962c37d6, 0x78133ae4, 0x92812c73, 0xc3b0b3de, 0x30ce5fc7, 0x969b1b4e, 0x77e226b1, 0x459599e2, 0xdb3833d8, 0xbf347c38, 0xb8c339bc, 0x5e8b91b4, 0xe1a5f6fe, 0x0001c9 } }, { { 0xd68ab4f4, 0x6ad424ac, 0x44ee470f, 0x3f017bad, 0x45015465, 0xfb68e86a, 0x2697459f, 0xc8e1ae9a, 0xec407a54, 0x20362885, 0xf2f39d8a, 0xa4176b1d, 0x49217e96, 0x67be2b4c, 0x134509cc, 0x30f58a00, 0x000021 }, { 0xcd04309c, 0x14117327, 0x468ea520, 0x40c3440f, 0xcf1bce7, 0xc092a9b2, 0x8db52fd4, 0x919da237, 0x41e4046a, 0xeb10b587, 0xe046b37f, 0xb788ca09, 0x9cade631, 0xc6d0e9fe, 0x284c347b, 0x87fd3826, 0x0000d3 }, { 0x7ee0515d, 0x10d4c366, 0xd1442800, 0xa974565d, 0xc5de0ecf, 0x9f5bc88c, 0x40ca8262, 0x2be9ca2d, 0x50c11b6c, 0xc43a6d1f, 0xe6898c16, 0x6cb0d410, 0x68c7a470, 0xbdf49112, 0x6cf4dc1c, 0xf793a291, 0x00004d } }, { { 0x419b7e55, 0x98d36394, 0x1b2f7224, 0x84365d54, 0x90d78628, 0x6bec2574, 0x6ebc3ab, 0xa57aeb3a, 0xc731c8ed, 0x6e4e0b1f, 0xf464404f, 0xb4475174, 0xf1046d9c, 0x1feb9925, 0x891a44b9, 0x6e9a534f, 0x00008d }, { 0xcf31126f, 0xd922a1ec, 0xb59309a1, 0xd8226031, 0x35afe9c0, 0x2c91a9ce, 0x84fcd39, 0x7b7102, 0x4751655f, 0x916247fb, 0x2a5263c1, 0xef3c13a9, 0x72010649, 0x6283e0c2, 0xb8b49835, 0xf7918631, 0x000008 }, { 0x6f8740d2, 0x3dfd8cd3, 0x8ef6f25, 0x461f552d, 0x53a6de6c, 0x66590229, 0xe20b52b, 0x109fa345, 0x58b6cf21, 0xefdd2358, 0x7cc5cb76, 0xb599eb8d, 0x7fe7a7e6, 0xacd9446b, 0x41886a69, 0x1a59c696, 0x00005c } }, { { 0x13ab93a3, 0x9d716680, 0xc0611698, 0x886607fb, 0x9ffee995, 0x206c94e4, 0xe4e9dcb6, 0x3e23ac7c, 0xa9fe7d35, 0xc336dd95, 0xaabdbec2, 0xbb855961, 0xfe3fd13d, 0xf0e8bd2b, 0x366ac60e, 0x9178a64f, 0x00010f }, { 0x885325ef, 0x1fe4b0ae, 0xf4b9788c, 0x675f38ec, 0x2ab61610, 0x5fe0f2c6, 0xd76d19d9, 0x5a6d536c, 0xeba06923, 0xfdb2a0a3, 0xa025f441, 0xa86fe600, 0x1394f33f, 0xe0303a8b, 0x37301f8, 0xa79cbb85, 0x000129 }, { 0xf0dbef4d, 0x8006d6f3, 0xf2efdba2, 0xb4e86c1a, 0x4bb52139, 0x69c13fa6, 0xae87758c, 0xc7605b60, 0x6abb6d6c, 0x73620145, 0x9068ea4a, 0xd32ca45a, 0xda8090a6, 0xf9d2c916, 0x1f931d54, 0xf52404f5, 0x000126 } }, { { 0x496341d3, 0x91dc50b8, 0x10db164a, 0x50e6abb6, 0xe4172df9, 0x3af2c25e, 0x9877727a, 0x50270ec8, 0xf71256ba, 0x9a3c5e9f, 0xc088325c, 0xdf2de6be, 0x7497e9f2, 0xd5344dac, 0x13378ab6, 0xddaf6ac, 0x000012 }, { 0xce1cc4db, 0x514ffc8a, 0x6791a191, 0x2cfbe7b8, 0xa53ef683, 0x89b920d5, 0x5a7af1d5, 0xf998d160, 0x7cad9ec7, 0xcb8a7936, 0xae00666c, 0x532297cb, 0x762c2e6d, 0xddbf8a07, 0xf8dc6373, 0xcaa96093, 0x0000aa }, { 0xd1901e75, 0x3b0e864a, 0x8dd7d885, 0x262938f, 0xfb393417, 0x8a10deff, 0x5e2df262, 0xd04b8ad7, 0xb048317d, 0x2bcc6ece, 0x42f86de2, 0xac60d54f, 0x7fae7c26, 0x7ddf3973, 0xe4a5317a, 0x113fb626, 0x000104 } }, { { 0xd473c1bb, 0x8d5a61d5, 0xcd15d057, 0x1bab8d0f, 0x90091d8d, 0xc95c2b54, 0x581e6103, 0x1f43590c, 0x4b646826, 0xa58df711, 0x48d4774d, 0x960b5f57, 0x3ffeb4f5, 0xb0f198f2, 0xebfdcf26, 0x861c55ab, 0x00009e }, { 0x136efd, 0x29e29e2c, 0xa5c3b9e9, 0x36aa716a, 0x3ee7f465, 0x58a21ef1, 0x7e26bebe, 0x8366bbf9, 0xdd291892, 0xd9d2ef7a, 0xbc8422d7, 0x448dba86, 0x8532674a, 0x767d1321, 0x9f1ea6b7, 0xe43c5b5, 0x0000ac }, { 0x17db2da6, 0x78bb37b4, 0x2550ef11, 0x24d98de3, 0x8bd6c41c, 0xf304ea20, 0x3b6aa952, 0x9da5f166, 0x4dcc0761, 0x33f9d8cf, 0xfcdc416a, 0x62c83a99, 0x7c7f0682, 0x3cca9e41, 0x53e17a28, 0x8428e4e5, 0x000085 } }, { { 0x64ca7ad0, 0x356919b9, 0x648cc6f5, 0x6839bea2, 0xa1b76ebe, 0x6f2c294, 0x3b577f5d, 0x3e578ce5, 0xb6e09c7, 0x6f72c497, 0x41e1a1ba, 0x37e02300, 0x7c755f76, 0x7f1ce80, 0x1096e17c, 0x235228a5, 0x000153 }, { 0x4c5d5e3d, 0x63659b98, 0x4761adbc, 0x50c61f12, 0xa1e663ac, 0x8e19f7e6, 0x9f84671f, 0x83e44e28, 0xefe0a669, 0x35735111, 0x96078b9f, 0x4b7b1ef1, 0x12d02185, 0xe3161521, 0xd10c18c6, 0xaf17161e, 0x0000e2 }, { 0x84937ed6, 0xa9b6c049, 0x9b4b893b, 0x945d67a0, 0xf9f88cb6, 0x9f9e9c2d, 0x1fafe888, 0x286a3e4a, 0xa8257249, 0x2db84ec4, 0xdf228681, 0x4748b234, 0xe1e12f12, 0x2a86a7e5, 0xbf7771d, 0xa0f7a4e5, 0x000007 } }, { { 0x81f44468, 0xacaee329, 0xd45aab6c, 0x222d47be, 0xf10d4607, 0x4a79b585, 0x24eedcd8, 0x261422d3, 0xb034ff1d, 0xeb5b0f51, 0x656941ce, 0x824360d, 0x39f68bbf, 0x2251af49, 0xa1a5a1ab, 0x49fff22b, 0x000043 }, { 0x9a0cf7d4, 0x1f31ed05, 0x31fe79f6, 0x9f3bb2b8, 0x9d35d339, 0xf5a276df, 0x401ab3c6, 0xc213ddb6, 0x7438b754, 0xd1741a19, 0x5a4dc7bd, 0x315f5251, 0x90060367, 0x7ee6b358, 0x27635b76, 0x29ef5be5, 0x0001f9 }, { 0xb9ff2830, 0x685c3b77, 0x352652b7, 0x2f9de293, 0x395f97f4, 0x9a92fb75, 0x7547c410, 0x4acafa39, 0xf7c15235, 0x873c6ca6, 0x761d869f, 0xa018ba15, 0xdfe571bb, 0x99912a71, 0xd98cf146, 0xd369907d, 0x000122 } }, { { 0x11b58c5e, 0x37c4dbd0, 0x3b10508e, 0x7230bcf0, 0xddeac732, 0x3555bc24, 0x40560b25, 0x74fc21e4, 0x1acc9c2, 0x24b2ce5d, 0xf3645377, 0xc009d593, 0x8455547a, 0x953e3d50, 0x9f488f2b, 0x2c3f9bf4, 0x000139 }, { 0x54e3606e, 0x457e5e28, 0x8d3c5cc, 0x86766ed6, 0x91be1ed8, 0x84c8e657, 0x76ee55ae, 0xab6777f5, 0xd9a835ad, 0xccb6865b, 0xb7ec491, 0x629183b5, 0xa3b16c6a, 0xa4d3a983, 0xfc885b8b, 0x50e3cfb6, 0x0001f9 }, { 0x48eda7c5, 0x8f0b940a, 0x8d03acb5, 0x1fb35ba1, 0x72182a8e, 0x66c9f4fd, 0x775a2eef, 0x34066984, 0x3384ddbd, 0x826ee61e, 0x1b9e3f3c, 0x8ece69e1, 0xab259653, 0x5f1a1421, 0xd5936a0b, 0x546e3e95, 0x0000ef } }, { { 0x2c14aa64, 0x2fca6cfd, 0x5cb50888, 0xc93a214d, 0x1ef247cd, 0x45e41760, 0x2fccee83, 0x7cbc2ea1, 0xe5464a01, 0x68e7b651, 0xf5520d12, 0x92c3b86e, 0xe48a6ed2, 0xcfa25897, 0x50fb57fa, 0x486fa3ec, 0x00006e }, { 0xacc95c4a, 0x9560c28a, 0xba8d2fc5, 0x7420f584, 0xed6d5980, 0x2357c556, 0xb57ef81, 0xeba0608c, 0x689fec58, 0x6a28ed30, 0xdc1f98b5, 0x65f26890, 0x10d5f7cf, 0xe843c39, 0x215dec26, 0x1e2f9ea8, 0x000168 }, { 0xb56ce17d, 0xc891b6f9, 0x3b44265e, 0x9b6d363d, 0xaf35367e, 0xc6dd0709, 0xf68f6723, 0x32a7ca53, 0xb763c6f4, 0x6d6174d7, 0xa483eb56, 0x1cb698a5, 0xd6380f0f, 0x5f626835, 0x2fe7f877, 0xe608d52d, 0x000193 } }, { { 0xfabe4315, 0x44a2a693, 0x33208267, 0xbb8ae926, 0x6916a8d6, 0x26b842df, 0x8ff80836, 0xb9210fa, 0x5f204207, 0xaab277e8, 0xb48a6971, 0x3023717d, 0xd5a482ba, 0xf0eb4fb0, 0xfa03a1b0, 0xa1947054, 0x000129 }, { 0x4310b203, 0x12ef83b8, 0x281d63ad, 0x31c8b0eb, 0x3f13296e, 0x7b4056f3, 0x38feb8e5, 0x6e1db5a5, 0xdbd0d21b, 0xd0b910a2, 0xc5b313e6, 0xac39d9dd, 0x95030c6b, 0x806dab46, 0x1e212c28, 0x80ce015, 0x0001ab }, { 0x34b2685e, 0x73e85081, 0xbd66b0dc, 0xcb17f5ae, 0xedb582c5, 0x3d38afd1, 0x400aa57c, 0xa0dda88b, 0x1a80d1a7, 0x27b4b419, 0x13ab8a7d, 0x44d80392, 0xb7cd3b8f, 0x873f8597, 0x2c6b91d, 0x4a084737, 0x00014e } } }, { { { 0x2e3a5406, 0xab075b1c, 0x80c1b24e, 0x9b173d2a, 0x69d1793f, 0x85bbe87f, 0x7cd6e25c, 0xe4fb367a, 0xfd909ea5, 0x678492b1, 0x14d6f891, 0xfbe6ec59, 0x4a12ef, 0x6354eb, 0x90d07c92, 0xe3c0231c, 0x0001af }, { 0xc51ba4b7, 0xdf7ac90d, 0x12a80f12, 0x32a9d581, 0xd3115c96, 0xde0d561f, 0x367c6c4a, 0xb6f6e141, 0x6031c478, 0xb691168c, 0x7fee4c21, 0xb3136741, 0xd58158bb, 0x7a15f906, 0x34b78967, 0xd0de8ef, 0x000143 }, { 0x8984cc7, 0x2b667c45, 0x2e7b37d6, 0x4898a005, 0x9a3b58c7, 0x72ecdd32, 0x893b6e2e, 0xa9a418cb, 0xce539b7b, 0x691d8d70, 0x9a27807b, 0xfb831488, 0x2603dcb2, 0xf2bf8a1, 0xdae148fa, 0x724c5036, 0x0000b3 } }, { { 0x25c2c23, 0x351724a4, 0x18ffcf17, 0x7c9bc5db, 0xec5603c8, 0xd4c1a09f, 0xdb968345, 0x9697628f, 0xbbfb79ba, 0x24a2dfd8, 0xb57d05f1, 0xede6bd4e, 0x26f5b380, 0x3ddaaada, 0xa4ca404b, 0x7a0a9b26, 0x0000e3 }, { 0x4d079e59, 0x9c454ffe, 0xa0c1624e, 0xa1920384, 0x533a9b6e, 0xc8c12ff9, 0xbc39c4b5, 0xf90b9ecc, 0xe1ed4213, 0x14d2a55c, 0xe1106375, 0xfa45051, 0x9b942f90, 0x6f04e0e, 0xb575fdd1, 0xff084685, 0x0000ad }, { 0x3e1bce, 0x39750bcf, 0x6494d55e, 0x20b5edab, 0x89af2d30, 0xf23164c9, 0xe00b5d02, 0x78923f10, 0xed2cadc4, 0xebffaf7d, 0xcf301e6f, 0x2b3897ba, 0x1292c255, 0x62a99103, 0x790427ce, 0x1a9b49b0, 0x000025 } }, { { 0xe4db49d1, 0x1a4b0e56, 0x6c323a81, 0x8e3add69, 0xb6e2294e, 0x9aae3863, 0x2c506627, 0xd228a34a, 0xb0fb1a5e, 0xb11f376b, 0x525a5287, 0x4ee9ca7, 0x8b29cd87, 0xfbfd2259, 0x2352ee89, 0x48dd77f1, 0x00002f }, { 0xf71f8797, 0x725cb290, 0x7085b5d2, 0x988a0e25, 0x49a4a5b, 0x716c62c6, 0x124ea52c, 0x1919f8cb, 0xfcf41793, 0x29aa35fd, 0x819acc6d, 0xd054325f, 0xdbbf7781, 0x60ec81f8, 0x2860f196, 0xa42518c1, 0x000014 }, { 0xc8b05be4, 0x5193295a, 0x7ed0fba9, 0xe7a64c29, 0x5d72aecd, 0xc7e00509, 0x88b19be0, 0xde7b14f6, 0x4acf3771, 0xce1c7cce, 0xa2ff90aa, 0x14e19cf9, 0x8a3022e6, 0x82ec14df, 0x7b960515, 0x175e244c, 0x000003 } }, { { 0x8554f4c, 0x439cde9e, 0x5917d5f8, 0xb1e926f1, 0xf50f29ea, 0x8723a9d5, 0xad89d071, 0x98e984da, 0x499dddc7, 0x58d80155, 0xa820ff2b, 0x379a0561, 0x88ff3502, 0x972cb5e1, 0xd6e58c6f, 0x49d569b1, 0x000114 }, { 0x1a255a92, 0xc2778115, 0x638c5418, 0x943ebdd2, 0xa5adb80, 0x67461e49, 0x5d1758fd, 0x327f22d2, 0x6514ca9c, 0x843d1c65, 0x665b9ceb, 0xb31dccbf, 0xa2c86253, 0xee7bf6f8, 0x3eacd2f3, 0xb725b709, 0x00008f }, { 0xdc480314, 0xe5fc3e75, 0xee4890b1, 0x8bbe6d72, 0x93c2dce7, 0xa60a5b31, 0x1c078133, 0x2b465b0f, 0x80561fbf, 0x4c1bfcf, 0x7513e37a, 0xba304077, 0x42263c6d, 0xbf8277f9, 0x6e84f293, 0xe9e64504, 0x0000b4 } }, { { 0x684d2c8a, 0x4f39e17a, 0x9fa8f61, 0xecf143a5, 0x341ac162, 0x9817a0d1, 0x724eb68d, 0xa16c1a7a, 0x6fcd70fc, 0x7a089811, 0x29849fa3, 0xd76f754a, 0xdf734992, 0x360d0223, 0xa2345510, 0xa0ea7b5c, 0x000153 }, { 0xe62f9499, 0x9e23afe, 0x71cc4934, 0x70f125e6, 0xbe0b9946, 0x2f3b0b14, 0x40884abe, 0xd33346a, 0x884bdcb1, 0x5839ecf6, 0xf9be7996, 0x174ff579, 0xd5184b3, 0x94788a0f, 0x7bb4175b, 0xe81ad142, 0x0000ca }, { 0x3ad361cf, 0xa28b3a6a, 0xbba9783c, 0xd2e6d4f8, 0x5056e803, 0xf3cbc88a, 0x97cf686f, 0xdedc428b, 0x3d1f0232, 0x7195e096, 0xbd9c8d6b, 0x25c2764b, 0xbefd8a56, 0x74c873e1, 0xf53de236, 0x1e09ca22, 0x00015a } }, { { 0xe593c504, 0x40752da1, 0xb0341cba, 0xd8da1cad, 0x293f8375, 0x638ce46c, 0x7399b8e3, 0x884165ca, 0x9192256d, 0x6279e9cf, 0xd38f74bb, 0x29d9f43b, 0x8ec7e254, 0x90a86b90, 0xf2e18238, 0xf5e3db50, 0x000063 }, { 0xb027c6eb, 0x673f4f12, 0x11c25504, 0x70190eb3, 0x7900a9c5, 0xc0f4fc05, 0xaf79a90, 0x55e634d5, 0x76ffdb22, 0x543b60d7, 0x4123b134, 0x1650dd07, 0x844a660d, 0x572c488f, 0x3eaa47ee, 0x34202104, 0x000097 }, { 0xb57bab97, 0x716a40fb, 0x801405d, 0xe34a432f, 0x72e2dda7, 0xfb46650d, 0x4fcdc9c, 0xa8b41289, 0xe9db348e, 0x6ccbf82c, 0xf68e07be, 0xf36f0975, 0x1280dbf2, 0x4b734106, 0xbb116970, 0x2d9877b3, 0x00017c } }, { { 0xaf12f0ae, 0x76cc7f3, 0x24ba44b7, 0x28381388, 0x155dfc36, 0x456f2f1f, 0x882a9bab, 0x1b4e6e02, 0xa22ac474, 0xe709b5dc, 0x7353363e, 0xd9053c89, 0xb78f2487, 0x7bc0a076, 0xbdefb046, 0xcc60b027, 0x00018a }, { 0xb530e50, 0xa7418450, 0x2211ebc8, 0x6a34ee8e, 0xea14a931, 0x4bfad0f7, 0xb60f9f73, 0xa85f4a1e, 0x2ba74e5c, 0xd7dfc9b2, 0xbcd432e8, 0x8dabcd0b, 0xaf0c1fbf, 0x1dfabed0, 0x276127cf, 0xf42cd970, 0x0000e8 }, { 0x92b1ab1, 0x4436823c, 0x9d02987c, 0x88637e44, 0x501eba70, 0x782d1dc7, 0xdd1229a5, 0xc28e37b1, 0x37f0c9ef, 0x64e9b3c2, 0x4bacd798, 0xee450cff, 0x9cb0f635, 0x65cf8a51, 0xab9dfa81, 0xe7704879, 0x0001fd } }, { { 0xd4a50bd9, 0xb5c990a4, 0xf0b0b459, 0xa2a8f2ef, 0x50145591, 0x4c37c56b, 0x25e76e75, 0xb5f5040b, 0xdc750b4f, 0x84b2843, 0x53d0ee60, 0xe5fdfb92, 0xd62b9368, 0xd520d72, 0xd2e4c00a, 0x3c4aebf8, 0x000027 }, { 0x4f5078c7, 0xa0c202b8, 0xa86edbc7, 0x7d1aae8a, 0x34c16fc4, 0xfea18fd4, 0x32abcdad, 0xbb036c8e, 0x72787311, 0xe971910d, 0x7a61adae, 0x9fb418e1, 0x4fe4f55e, 0x69e882f5, 0xa6aa3ca, 0xfb2d57f5, 0x000160 }, { 0x489b1527, 0xd94d5a09, 0xaf1861ed, 0xf3a4178c, 0xc00c76, 0xc013c45d, 0x9faeb906, 0x7e38025a, 0x9df4ace5, 0x60afdfc4, 0xbd0e0e8d, 0x8fc44e2e, 0x2c9c9fdf, 0xa161338f, 0xe29e1fda, 0x4ad2568d, 0x000168 } }, { { 0xb6ec1d81, 0xb1878468, 0x568c5bb2, 0x1e045bd6, 0xe17d6fe6, 0x3986ce7, 0xd1f4d885, 0xf329240d, 0xd3cde19c, 0x393203d2, 0xb9840fe5, 0xae71ce67, 0x58f350e3, 0x61e95999, 0xa776e479, 0xf672aef2, 0x0001b8 }, { 0xa8053974, 0x912be923, 0xd62a32e3, 0x2f2fd484, 0x1ccce583, 0x4fce920, 0xc1c73c17, 0x491bbe15, 0x3307114a, 0x28aeeea7, 0x9b0b8091, 0x34562c1b, 0x960e41a7, 0xa24eb639, 0xd109e06b, 0xf31d3561, 0x000052 }, { 0xe4e38f62, 0x63ab910, 0xc22a11a9, 0xa3daa761, 0x2428cc4c, 0xa2cba073, 0x95ef7ad7, 0xbe86be7, 0x8d5d70d3, 0x90360a69, 0x8f052c7, 0x8a4d8d0e, 0x28a94b56, 0xd51d779b, 0x369b7cda, 0x872aad6c, 0x000116 } }, { { 0x58e6439d, 0xe3a45bad, 0x655d8e32, 0x61f3505c, 0xf380b7c1, 0xf5cba69a, 0x801daa99, 0x9e524a33, 0x5c4cb900, 0x8ba2164f, 0xfd002b7, 0x794bbb06, 0xbec5b418, 0x659e26b1, 0x165330a9, 0x55a22eee, 0x000098 }, { 0x9a95da2a, 0xae8bc79a, 0xa631c3ec, 0xa4364316, 0x5e8f63fc, 0xc016bce7, 0xc11c9d87, 0x3d55c62e, 0xff5f6dcc, 0xcf7271f2, 0x3f04f5f1, 0x6651de37, 0x5c8f56d0, 0x349d0d07, 0xa91fd0f0, 0xf4a9a764, 0x000154 }, { 0xeebb7574, 0x9a9fe05c, 0xf150265a, 0x2bab0f38, 0x12410e8b, 0xc6a8ea48, 0x93737838, 0xf2be8f90, 0x9184581f, 0xbfa4374b, 0xe91c74cf, 0xb3a0536d, 0x1a7059ff, 0x9cd5421d, 0xc319f3d8, 0x16a03c1b, 0x0000ab } }, { { 0xfb76a3a1, 0xbd0c5cda, 0x92ccd6d4, 0x12b1059e, 0x9ec6c35d, 0xa4d72ca1, 0x911296f0, 0x74564c1b, 0xc435dde1, 0xd622a04, 0xdeaa1ae5, 0xa78176c5, 0x7eb617bf, 0x4ca49dd2, 0x53bb95e2, 0x705e2c4d, 0x00013d }, { 0x68a234e2, 0x4a1072aa, 0xe2af9ab7, 0x3742e31b, 0xffcf5fbc, 0x264f273d, 0xc2f83701, 0x7b3eab6d, 0x007bb3, 0xd09a4af2, 0x9530b426, 0x9e895a88, 0x416fe4d3, 0x68d55d1, 0x251ed540, 0xde8b4814, 0x00016f }, { 0xbfaf4ad, 0x85ef906b, 0x8a270faf, 0x9d483ef8, 0xd8a4c6d0, 0x757d1a0e, 0x29c318a5, 0x75a2ef48, 0x81ee2a1, 0x8a0a02b0, 0xf464f999, 0xf5384a4d, 0x61e7ae96, 0xe479c827, 0x822d1b42, 0x94d97f50, 0x0000f5 } }, { { 0xb258a74d, 0x23702119, 0x2f78cc8e, 0xd3543ed4, 0x3baf1756, 0xa4fc9ff4, 0x2e78259f, 0xc7892ef8, 0x6079a636, 0x7409251c, 0x4d0c4c41, 0x6b6753c2, 0x5f73a8a3, 0x175a5cff, 0x4d4cc381, 0x17c1ac0e, 0x00009c }, { 0x9b8b469f, 0xe8dd6323, 0x9f95d0d5, 0xa36c1fcf, 0x371ee88, 0xb89a8802, 0x4dea5cf8, 0xf0dfddc3, 0x898d6f47, 0x1961aea6, 0x382f698a, 0x83c4d96c, 0x6af5347e, 0x46717926, 0xc149257f, 0xa0de477b, 0x0000dd }, { 0x765a7a97, 0xee0bef3f, 0x19b389d2, 0x2fab2a19, 0x274f01d4, 0xfad98920, 0x6dea2b6b, 0xc277658d, 0x98002c68, 0x7b541eec, 0xe22f4017, 0xc7b87f14, 0xf6e7ac6a, 0x304bf8b5, 0x17631c4c, 0xc0b5a4ba, 0x00002f } }, { { 0x85f2f671, 0xa77bdca, 0x720d44f6, 0x1b32fad1, 0xfb0f1397, 0x74319476, 0x2e3b45ca, 0xa9ca8e0d, 0x1567fd2d, 0x156898ad, 0xe6b01641, 0xdfef099, 0x55014b93, 0x87c3ebec, 0x8d5690dd, 0x9ae6bd64, 0x0001e5 }, { 0x7349b63e, 0x513d1999, 0x8ebee32f, 0x2c2cac2a, 0xbefc9654, 0x9a31c29f, 0x68cca7a8, 0x5931d67e, 0xf3ec2c02, 0x3e2ee5e, 0x9047b266, 0x3acb4225, 0xef648f1e, 0x187f736a, 0x89afc070, 0x7e905a61, 0x000122 }, { 0xee9f1231, 0x1fca30f2, 0xdbed1322, 0xe905646b, 0x6c740947, 0x20ad1ad1, 0x4350b1f, 0x69c280c2, 0x6ab59546, 0xa38b2f11, 0xce6e58ed, 0x6824aea7, 0x1710310c, 0x5ef79bb8, 0xe41298ec, 0x79a4a301, 0x000071 } }, { { 0xe9c8b336, 0xa0c04317, 0x21b037ea, 0xad9a7ec3, 0x31563f1e, 0xba1334f3, 0xce6eec81, 0x827f6e9c, 0x905dc26, 0xbc41636a, 0xe99750b1, 0xaaaff5de, 0x2656eef1, 0x239008af, 0xbf5cf37d, 0x6e8f713, 0x0001a8 }, { 0xeda8b35e, 0x30f6eca7, 0xa80d9065, 0x515ea97, 0x8e665ced, 0x18ad6feb, 0xc5ea123c, 0x42237fa2, 0x50db8cc7, 0x8fb78c8e, 0xb3a719ef, 0x86c4bc78, 0x36129eb8, 0xd733a146, 0x36f0a2f3, 0xd6af98d, 0x0001d2 }, { 0x54873b97, 0x68ef9d13, 0x6f5a2930, 0xc0b11f82, 0xf47c0402, 0x6f219ddc, 0xc208bc61, 0x20faeff7, 0x1b965fe, 0xde6c843b, 0xb0ed316b, 0xd83f0359, 0x17c48b8b, 0xbac870e8, 0x9e5b9820, 0x60af14e2, 0x000198 } }, { { 0xead6ae18, 0x2367ce72, 0x8764effa, 0x65eb15f6, 0x84321970, 0xd3da11a, 0x3aa89ae6, 0x51f11de6, 0xd5ec5c45, 0xa14c1c53, 0x6e17b4a4, 0x38cf4357, 0x9691d6f9, 0xd26ec11a, 0x3c41b0de, 0x1bc54e89, 0x000111 }, { 0x4806aa77, 0x3fb3fcd8, 0xd2a8ad1b, 0x248b7559, 0x757b4b8a, 0x199ed26b, 0x4ff82f9a, 0x257930fd, 0x414a076f, 0xb1b04d57, 0xc080f84d, 0x14b0112b, 0x2bda0279, 0xae0bbdb, 0xb3dbbea4, 0x8567597d, 0x0000be }, { 0x93fa7194, 0xefa532e9, 0x1efd720e, 0x7cac16e, 0xf5241887, 0xefdc97cd, 0x7b876252, 0x258e5ed0, 0x639ad33f, 0x715bded8, 0xe5f5557c, 0x8d60d7a5, 0x9b39bba1, 0x5ef33532, 0x5d7dd690, 0xd927c0f8, 0x0000ad } } }, { { { 0x82f40b99, 0x3560e4f7, 0xe22e9c8c, 0x1860aee2, 0xcee9228d, 0xb51eb53d, 0x437f957b, 0x2d252970, 0xdbccbf1f, 0x6867506e, 0x7097a411, 0xa2662642, 0xdf8374f2, 0x9b006ed, 0x6eeb7eed, 0xc3b6a7b8, 0x000056 }, { 0xa9bcb332, 0xdb974928, 0xc04b25b2, 0x5f6bad91, 0x96339d96, 0x673047e8, 0xaf479423, 0xf91d04ef, 0x300d6c94, 0xfd256445, 0xfa7cb0b, 0x11f0f54b, 0x6df4844f, 0x3efbc19a, 0xb8e74932, 0xad3df8c8, 0x000105 }, { 0xdb4760e4, 0x89fc2c72, 0xfeeeae83, 0x37c33db, 0x33f0c281, 0x5eea5448, 0x6cd6b2d0, 0x3dd6a161, 0xd65a1b2, 0x31f724f1, 0x7b4ea37, 0x7c21ee3d, 0xfea025d8, 0xc8d7d6c2, 0x2d85735d, 0xb09f6bdf, 0x000023 } }, { { 0x5dccb62b, 0xdc288655, 0x8fce44dd, 0x4c3237c2, 0x7752bfa2, 0x47a35264, 0x20397d31, 0xb830ee7c, 0xa52f6b0, 0xd003701c, 0x33515d1f, 0x1db348e2, 0x7104b770, 0x82abab20, 0x76c3df6c, 0xe064b20e, 0x00016e }, { 0x83db49c9, 0x3a5cfb2e, 0xd6d2d8e8, 0x9515329c, 0x6949671a, 0x7f3d42b, 0xb5abff31, 0x5befc460, 0x7db2336b, 0x2fd79340, 0x1272df8b, 0xaac7f9b9, 0xe8ccfed7, 0xb49a183f, 0x4849837f, 0xa44b910e, 0x00006b }, { 0x38bc7ac7, 0xb5fe5e74, 0x1c33921, 0xc822a22a, 0x7d3787c4, 0xd2369691, 0x3b524649, 0x1f3fd1ec, 0x444925e2, 0x6d2affc1, 0x5e1555c9, 0x8ba5e79e, 0xf15a4b18, 0x192e2c4d, 0xd9b0746, 0x7ff0b590, 0x000179 } }, { { 0xb6b0eca8, 0xa02a856, 0x65b405ad, 0x6742e730, 0x10bb7ce, 0xabf6e350, 0x33078585, 0xf18374b1, 0xb17e1388, 0x4057c59d, 0x8eb301d4, 0xfceb1c60, 0xfaac67d9, 0x30d89773, 0x88fe2f21, 0x15c65349, 0x000076 }, { 0x1e4ed8a5, 0x2f6af60e, 0xac13c48a, 0xdec55b8, 0x581e255f, 0x60d581b4, 0x1799f01b, 0xad5f5a92, 0x95249042, 0x501ba7f3, 0x18d9bb34, 0xeae273c1, 0x20ae4b4c, 0x1bd72023, 0x9472691d, 0x7348593d, 0x000065 }, { 0xd4c02da, 0x627a37b9, 0x69d49da6, 0xf9ebccb, 0xa1f461ae, 0x70607b58, 0x780e269a, 0x4b4e18c6, 0xf0bc139f, 0x17e5468e, 0xe6a8e864, 0x39a35f2b, 0x3dc083f9, 0x6b3171ca, 0xb06cd404, 0xe2bd4990, 0x0000ee } }, { { 0xd96b8942, 0xefa76a95, 0xcd9141e0, 0xb3ab407f, 0x6e8ff26e, 0xfcaf37e9, 0x4a57c7b2, 0x4f060dd9, 0x673c18a2, 0xffbc98d3, 0x59b40917, 0xc8a4ca42, 0x722fc716, 0xdc12ac7, 0x58a98656, 0x6f054280, 0x000111 }, { 0xc474f7e8, 0xf4a158c3, 0x138a47df, 0x129615f7, 0x37c3ce33, 0xef4af4d3, 0xd0a1bc0d, 0x5518a548, 0xf167a34b, 0x7b4afaee, 0xcc6a93e6, 0x4e993fd2, 0xc1afec5b, 0x35f4e787, 0x2e97ba08, 0x82eab419, 0x00018c }, { 0xdc07586a, 0xbb2bcd78, 0xd9092125, 0x8d20aa65, 0x8d7be244, 0x7dd879fe, 0x18327bc3, 0x64c3bd74, 0x6a945018, 0x95d5032a, 0xcad3c423, 0x1ef0b3b3, 0xe4465ee8, 0x1425dca1, 0xef15e321, 0x6df34707, 0x000072 } }, { { 0xf13f643c, 0x91435a5d, 0x76b9a65d, 0xdf2af4b8, 0x99bf3d32, 0x1849c3d1, 0x6f105d72, 0x17cde796, 0xd33e2d40, 0xa8ae6fcc, 0x4860374f, 0x6d2b1821, 0x695935a3, 0xee441fc1, 0xf4f7a830, 0x719410c1, 0x0000be }, { 0x1ed6cd32, 0x255422d5, 0x41b71b7d, 0x4f884938, 0x448ea5c9, 0x33978580, 0xefc7e06f, 0x5672b3dd, 0xe1147a, 0xde59d203, 0xbba0cc9d, 0x705fe975, 0xbda754a3, 0x806e316b, 0xfc533492, 0xd51a6771, 0x000066 }, { 0x735649c9, 0xd4a933f0, 0xa0de90c9, 0xe3f1b889, 0x6b6344f0, 0x37c01f43, 0xbe211aec, 0xa2bbcb6f, 0xde5cdc8a, 0x1f204405, 0xb5ed7c9f, 0xdf9a580f, 0x1be6c326, 0x3b3ee9ff, 0x40543009, 0x5773e236, 0x000166 } }, { { 0xdefa57fb, 0x2b5aeaff, 0x1bf9fead, 0xde990555, 0x7748e0f1, 0x193385ea, 0x6b1f6d2b, 0xff34bb18, 0x75f47a24, 0x4b1c8c4e, 0xa05f5bc9, 0xf9b0b5a8, 0xe12ca902, 0x81e108b9, 0x3ac901e9, 0x9c18e33f, 0x00002a }, { 0x4a6a0ee4, 0xd435d420, 0x35eb59f2, 0xe580ea59, 0xec8560cd, 0x5be5965, 0x51bbab69, 0x9237f741, 0xb9c6d298, 0x50ce59af, 0x9decaeac, 0xb51d75a5, 0x52c4dea7, 0x8ed45ec, 0xaffdbe6e, 0xd2d8714, 0x000046 }, { 0x274b37e6, 0x98785644, 0x7d488d6c, 0x2cc241de, 0x9e4354fb, 0xafa2abed, 0x7d2f5ac7, 0x539b07e8, 0xe6f6b5ed, 0x3fca314e, 0xad85d68c, 0x7ea2f5a6, 0x7f8fae4d, 0xb84788f, 0xe42c061a, 0x46ea3dd, 0x00014d } }, { { 0xc532c3c1, 0x80565188, 0x62888ec2, 0x17133d28, 0x659d7225, 0xdbf895c2, 0xd587a27a, 0x80a955e4, 0xee6cb5cf, 0xcba7f673, 0x355bf65a, 0x430423ae, 0x7405c49d, 0x532f1f24, 0x171c1642, 0x432abe59, 0x0000df }, { 0x51d78e2c, 0x3899e6be, 0x66411f6f, 0x5cdab34c, 0x4825213e, 0xe32b48b8, 0x4f50fdbe, 0xa2a358d0, 0xe64e5ba7, 0x8e4481da, 0x9ed6673a, 0x5cf2f7fe, 0x92d13d03, 0x74f60ef6, 0x6ae72100, 0x85b85507, 0x0001fb }, { 0xa59df45d, 0x5d12690e, 0x706fe0de, 0xea9a99e4, 0xb96a5a17, 0xb4579d10, 0x817627e9, 0x1eda2232, 0x2c3d2610, 0x1270e182, 0xd78a7abf, 0x9e75b423, 0xa3597076, 0xac2009d1, 0x8db05048, 0xae5edf6f, 0x000008 } }, { { 0xa2a31008, 0xb848d9ac, 0xf837f51a, 0x93b300ad, 0x6034553f, 0xbd236cf1, 0x87beba74, 0x6853c349, 0x6790c33a, 0x10ee125e, 0x4ae936e0, 0xc00583b0, 0x6f20ced, 0x76625fbe, 0x126ebb62, 0x7d21d278, 0x00007a }, { 0xc5aa51ea, 0x47cbfc1d, 0xe9e6f5a3, 0xeb4accb1, 0x5449612d, 0x54c91036, 0x96d639f7, 0x1422e649, 0x5f650b52, 0xef2c369b, 0xda1f69ed, 0xee250c10, 0xfd6c2f5a, 0xa69ca674, 0x53fc7ce2, 0x46194bb4, 0x000077 }, { 0xe438e6dc, 0x28e7ec59, 0x92629c54, 0x23255268, 0x7e1027e1, 0x67748e9c, 0x2198b380, 0x541d191c, 0xdfb95a2a, 0x5df37557, 0x72aab94c, 0xe0bf1b22, 0x88d5467b, 0xc0a0ed25, 0xd04edf34, 0x891607b9, 0x0001ee } }, { { 0x69e1d63c, 0x26d8fb80, 0x8e783056, 0x5efc0833, 0x7c4bb4f9, 0xe35c69b8, 0x3d917d0c, 0x80cdca20, 0xa5381776, 0x14e4a730, 0x65162f7c, 0x3b20684c, 0xf2c6084e, 0xa457246b, 0x7b16f40c, 0x11712666, 0x00008b }, { 0xeeb014da, 0x96db44b1, 0xef82b6ec, 0xe7949891, 0xa2932bd4, 0x438da812, 0xe332f6bf, 0xdb5b49d5, 0x4c06545d, 0x1605e6dc, 0xf8230f70, 0xb3705cc0, 0xdec79d25, 0xa38c7ddf, 0x5c50fa90, 0x484dfea1, 0x000100 }, { 0x1b012938, 0x4feab920, 0xee71ef5a, 0xd22fa8f8, 0xec82a498, 0xb01e9154, 0xca2f41db, 0xb9e88bb, 0x1afa40ce, 0x41b4f984, 0xa511e15f, 0x715f4972, 0xb1ad5425, 0xa27c9a5d, 0xfd5d1383, 0xfa7521cf, 0x00015c } }, { { 0x5eb1f4c7, 0x208e6864, 0xebbf4153, 0x6800f4ec, 0x58f2b632, 0x9c638190, 0x66929046, 0x59ba1b7f, 0x7d56f60c, 0x6dc398b0, 0x75e74ee, 0x97b4144f, 0xf47afd0e, 0x7a2c470e, 0x9aaf40d, 0x49deb905, 0x00009b }, { 0xc1af745e, 0xef71f73, 0xe185015a, 0xb173a91e, 0x50639e16, 0xb852db10, 0xa4ad142f, 0xb1d43881, 0x88ee4fed, 0x7a062127, 0xc874dc19, 0xbd9b8129, 0x90c5748b, 0x4a838c87, 0xa9a8b75a, 0xc26c20e3, 0x0000ca }, { 0xacd93b13, 0x653da5c4, 0xb2e53b90, 0xa5d624e3, 0xc0991fd9, 0x10a5f890, 0x93f9f98e, 0x47475fff, 0x70a79224, 0x630bd2ad, 0x845a6efe, 0xb8446e60, 0x1782c540, 0xe4dde082, 0xb6e165d3, 0x1ec5a5f9, 0x000149 } }, { { 0x6687619d, 0x9135c537, 0x8983f4f, 0x952878b5, 0xb5214b11, 0xc227a6b0, 0xb76bf11d, 0x8986abb3, 0x96f2a28d, 0xb2b6988b, 0xedb8b50, 0x5cc172c6, 0xa3875302, 0x92dada0b, 0x7559dc1d, 0x6530f343, 0x000051 }, { 0x9a0cc3f5, 0x597b7b8d, 0xf01c943e, 0x5925b991, 0x46b16d4c, 0x71c2df16, 0xd3ff4c0c, 0xa314397d, 0x9f1e07cb, 0xbe50b8f5, 0x6891c095, 0x29bb38cd, 0xbf697129, 0x21f89700, 0xe96d6b05, 0x86ecaf22, 0x00006c }, { 0xbd215556, 0x56e0cc37, 0x81008bd3, 0x89f0652d, 0x8529917a, 0x630fd4f9, 0xb8cb4c1e, 0xf78ab44, 0x5a33194c, 0x44fe1a48, 0x8145715, 0x1480f44, 0x10c5e06a, 0x239ff2b5, 0xc36508a9, 0x4af87e49, 0x0000ac } }, { { 0xf3642d30, 0x3b0e4f1, 0xb119a77b, 0xc5d8286e, 0x865438ef, 0x34e31cc6, 0xf02233f, 0x4cfde3dc, 0xcc2fe0b1, 0x924dd94d, 0xb68af5d0, 0xfdc0d50b, 0x93dbc0dd, 0xaf8f4ef3, 0xf4c6645a, 0x30aa390, 0x0001de }, { 0xb3745776, 0x9af326a9, 0xeac215d3, 0x48a4a294, 0xae57b194, 0x16335604, 0x95d3bd0d, 0xc3ff17cc, 0x7cfd65e1, 0x1660521d, 0x2a27ebb2, 0xc020c5fe, 0xa2d4427e, 0x16983864, 0x38cd40f7, 0x1394946c, 0x000185 }, { 0xb7ced268, 0x9792cb4, 0x4693d172, 0xbadf6db6, 0x763220be, 0xe47997bb, 0x9045b85e, 0x91bea7c3, 0x9977703a, 0x958d6034, 0x5da64a5f, 0x9fa228af, 0x9c0689de, 0x16f5a8b3, 0x8bdf215d, 0x1e32b5c8, 0x0000a3 } }, { { 0x6126ccd9, 0x8aed31a4, 0xce83c630, 0xec115f3e, 0xa8086b94, 0x5b8e6510, 0xbefaf506, 0xbc47994b, 0x68ca79e3, 0x4a34ebfa, 0x2de63dae, 0x8f8c2ab6, 0xcb72cbc2, 0xa7906235, 0xb1c6dd24, 0x18f2f1f6, 0x000150 }, { 0x988af6cb, 0x8dd23f41, 0x17164831, 0xdb222d59, 0xbbad48a0, 0x562d89f1, 0xc267e4d2, 0xbe557c2e, 0xacce069e, 0x2a2ca92d, 0xd6d331ed, 0x6903fd0a, 0x22f5a55e, 0xc5b8f7a1, 0x55a3b6bb, 0x3f298786, 0x0000b5 }, { 0xb5bd9f4a, 0x370d450e, 0x2bf00b01, 0x971b6b88, 0x6c14f2f1, 0x8e55b2f4, 0x854ff4a2, 0x397cc721, 0x879dada6, 0x4183aaf5, 0x1a9409b9, 0x5dbe0b00, 0x3769912a, 0xff71057e, 0xf4aa4134, 0x4b4101ef, 0x00009f } }, { { 0x1aa9a5ea, 0x8647d3ce, 0x3dc595c7, 0xb21f371f, 0xd28fe974, 0x4f1ac604, 0x11f23ccb, 0x300fd73e, 0x61adac84, 0xc53fd063, 0xbb33d2ce, 0x550aead9, 0x757abf20, 0x1a3fbf1a, 0x21c72fe0, 0xcaeff3c0, 0x0000e1 }, { 0xe57fc7f6, 0x4ff6b300, 0x4abd7cc2, 0x7a8ed910, 0x8fed7fdf, 0x7c67b9ea, 0x72ae1cb3, 0xab0ae68, 0xd124ea09, 0xf5356848, 0x315618d0, 0x83219e47, 0x44aea38d, 0x9e03be31, 0x73140521, 0xc85dc27d, 0x0000ca }, { 0xfcdb2166, 0x2d530c59, 0x74c6933, 0x820b1c42, 0xc1be6ae1, 0xe94f67a5, 0xf38bcced, 0xeab6724f, 0xbf5e0c6f, 0x8ef06517, 0xbb3ef6ba, 0x3181f56b, 0xa37df9ae, 0x5fa99879, 0x99f09b43, 0x48358961, 0x0001ed } }, { { 0x31f9c92b, 0xab47ffaf, 0x3c11115c, 0x650eadee, 0x9684107d, 0x67d5904, 0xe5d75181, 0x9ddb5959, 0xb759805c, 0x23a946ed, 0x6948959d, 0xeb6e3d69, 0x544bab1a, 0xcf59e667, 0x4ec29d4a, 0x73178005, 0x0001aa }, { 0x60771294, 0x5e675251, 0x8a15c21a, 0x99432168, 0x71639aec, 0x3c9750f5, 0x49c6fb50, 0xa7a8fbaf, 0xdb85873f, 0xc8bb97b3, 0x43921e3d, 0xff91fc03, 0xd31b2e72, 0x29b33622, 0x336631fa, 0xc409cc14, 0x000020 }, { 0xb4837a70, 0xbf1ea237, 0x300d0b7f, 0x206001dc, 0xca157c54, 0x780f1b26, 0x7a082d6e, 0x6ad5c739, 0xd024c02d, 0x2daf90af, 0x964bf413, 0xad59e0fa, 0xa288c647, 0x8c1f37b6, 0x1ec4fb41, 0xd2fa2069, 0x0000ec } } }, { { { 0x3231de36, 0x1ff816e4, 0xbca6ca5, 0xf8cfc60d, 0x1e7cd25e, 0x8bef4ef7, 0x8d9aec94, 0x90f60405, 0x55ac70aa, 0xb5b170fa, 0x29bca383, 0xd8d60a16, 0x1678f74f, 0x5679e65e, 0xb0283db0, 0x8438df5, 0x0001d1 }, { 0x37738ce, 0x18707e96, 0xc9528052, 0x5804cee0, 0x72852c70, 0xc8b80c91, 0x20eed7fc, 0xb297b1cd, 0xbe9b438e, 0xa4b139f3, 0xe4027a77, 0xb370c44b, 0xd71d34b8, 0xab2f582d, 0x8ddd1ca6, 0xfbac9856, 0x00017f }, { 0x76c8e540, 0x81893d29, 0x98b729d2, 0x20a922c1, 0x97ef33aa, 0x4b6bfc64, 0xb1d558c4, 0x51f186f4, 0x1f81d2d1, 0x17b60f28, 0xab06891f, 0x366c7f50, 0xe9c86e22, 0xc78d82a5, 0x3ff97bfc, 0xc3a285cd, 0x000197 } }, { { 0x47c6ff5b, 0x5acc3558, 0x90864ff5, 0x16eae1cb, 0x8c0234b8, 0x2d18a500, 0x17cc8f6a, 0xa0e00838, 0x95dc2b4, 0x2e62e11a, 0xbc60995, 0x9527c0af, 0xd8ef94d4, 0x6cb3e15, 0xbd7be5d2, 0x9c9579f0, 0x0000ad }, { 0x30a441bb, 0xceaf1664, 0x8a78d223, 0x2fbe97eb, 0xa9fd93ba, 0xf64ef770, 0xd32cbd80, 0x31744346, 0xd1e2f186, 0x1d121ebd, 0x387a308e, 0x880678c3, 0x540aec6e, 0x1b1191dc, 0x54838024, 0xb6074990, 0x0001c5 }, { 0x80dfbb5b, 0x427eae83, 0x8fd753d8, 0x51ac7efc, 0xe26d84af, 0xa3569fc3, 0xb346bd72, 0x6ccf88a4, 0x9183f443, 0x96162af, 0xce0e722e, 0xc69126bb, 0x33d9926c, 0x500af21, 0x9ce4743e, 0xdb7c511e, 0x0000bb } }, { { 0xc01fb913, 0x7b76be21, 0x433b1589, 0x5fffcd98, 0x5a3ceab9, 0x6122e89a, 0xd3a49cf4, 0xbe98dd0e, 0x24fc316f, 0x6eb2127a, 0xd62624e7, 0x780f08cf, 0xe7a9e7f, 0xbca9b4a7, 0xdd9d3432, 0xc0c56d7c, 0x000092 }, { 0x937ff6a5, 0x42fa6175, 0xaf105e2b, 0xe86fb09c, 0xe91b6688, 0xe2461633, 0x1778e6c1, 0x871a0247, 0x32805af2, 0x5f83d81f, 0xdaad2298, 0x5580369d, 0x46744078, 0xbb86fc92, 0x8104d4e9, 0x59add73a, 0x00019b }, { 0x22f8a313, 0x3872ef3, 0xc89a0997, 0xcd19ba4, 0x785889d3, 0xf9a91de9, 0xd841194c, 0xe95146af, 0x4e27af0d, 0x7ad3fe05, 0xbfe086db, 0xbae1b040, 0xf13aea7c, 0x27dd9319, 0x43c5fd4e, 0xc0bea83e, 0x000168 } }, { { 0xa7782565, 0x4ed48046, 0x88a76515, 0x99da3181, 0x6efaba0b, 0x3e68bdb8, 0x18a46102, 0x4ea9e8e7, 0x57a75797, 0x5361d95d, 0xbe944514, 0x5ecd96f4, 0x7c34c5d, 0xc9d35b26, 0xc4fa051b, 0xb958b173, 0x0001a9 }, { 0xfd024331, 0xd10470eb, 0x733f08ea, 0x6373cb6c, 0x70139e48, 0x83848cfa, 0xe31afe48, 0xf2c0dac3, 0x6f7dc64d, 0xf5d5fe84, 0x681afe8d, 0x37218cbe, 0x920beb60, 0x1ffe4e2e, 0x9d4624, 0xab9d2767, 0x0001b6 }, { 0xae3ad3b4, 0x80fa5937, 0x14397ace, 0x3f061c14, 0xb02ea170, 0xfe8b3efd, 0x21e8e42f, 0xad0de109, 0x49d7082a, 0xca3bdf37, 0x5de41783, 0xde2ccb8e, 0xaca21dbf, 0x90725869, 0x87aa6600, 0x4fafbcf2, 0x0000e4 } }, { { 0xbf148f8e, 0x67e93612, 0x1a9de5a7, 0xb684dfdb, 0xfeaddf1b, 0xa7cd69bf, 0x67573a32, 0x55c8b469, 0x492b0048, 0x408a2775, 0xd43c5f00, 0x85843489, 0xdd64cad6, 0xa63cf0a4, 0xb5883715, 0xb007e035, 0x0001a5 }, { 0x6cb0066e, 0x83f23937, 0xffa3010f, 0x55fd3708, 0x4f8b6865, 0x5b1e9e40, 0xcdc8b5, 0x97157544, 0xcfd4c5bc, 0x23e56f87, 0x3ce08cc1, 0x8932a790, 0x63310110, 0xded53013, 0x9b2ba17f, 0x43380fcb, 0x00000b }, { 0xb6a9bead, 0x98e23438, 0x3dd8fab0, 0x2c487313, 0x731ccf1a, 0x58b7bef8, 0xa7e5d7d5, 0x5a06fd12, 0xc8fa37eb, 0x97bf04d0, 0x355e87c2, 0xb01891b, 0x7aea821e, 0xebe710cc, 0x32de3e1d, 0x7cc836cb, 0x0000de } }, { { 0x91b3cb66, 0xcfadf9c2, 0x26ecafd5, 0x52a4212a, 0xf9d528d0, 0x56d21ed1, 0x5e535027, 0x9b543195, 0xf340acf5, 0x945625c9, 0xa848f8a0, 0x4ca4aabc, 0x78e2e6ee, 0xcb0639c8, 0x83f4e6e3, 0x5495cd82, 0x0000de }, { 0x7b511d4a, 0x6e2c6ec5, 0x8039ea3f, 0xf725224c, 0xc99bbfd8, 0x1ae3ccd7, 0x302ecca, 0xc9b62bde, 0xe8674c25, 0xaa9d50a3, 0xd3c13aa9, 0x1c536b80, 0xbadf6ff, 0xb90c1e30, 0x36aae2bd, 0x5b6dae40, 0x000117 }, { 0x139b2c95, 0xd0e2e085, 0xc574d110, 0x1d156f15, 0xd4c150c0, 0x3c8b31e2, 0x8520ded0, 0xf117b287, 0x38d4c526, 0x70f6cfa1, 0x5e9e1fc9, 0x95fa9468, 0x9e6f76b, 0xc5c32145, 0xe5df11ae, 0x6d986212, 0x00019a } }, { { 0xef3a297b, 0xa72f57f4, 0xd4b6ce00, 0x1d329730, 0xf38c8d4d, 0xb1f62929, 0x3fecb8b9, 0x547fa742, 0x178ba912, 0x86a18a8a, 0x63e6a1d1, 0x51f42280, 0x580b396, 0xcc11dd7, 0x6c4375a1, 0x2b9d75ec, 0x0001fe }, { 0xfab859c2, 0x7f540050, 0x6ce5f15f, 0x3e6ce4ef, 0x659a99b2, 0x11cf8ba1, 0xa50af87a, 0xa7e4d283, 0x4a3997a6, 0x3c2d6f2e, 0xa5a988e5, 0x2ac9a47c, 0x77cc3c9d, 0xf6ca6e5e, 0x69453a60, 0xeaecd985, 0x000117 }, { 0xc5edb627, 0xa0820b0c, 0xc5afb3fa, 0xd07701ae, 0xf0c2a56b, 0x5c772131, 0x96c74049, 0xa125845c, 0x3d06bcf4, 0x36b8ad6b, 0x3e8c73a3, 0xa85589e7, 0x27c98965, 0xa8ced61f, 0xaca80341, 0x89d70d3, 0x000062 } }, { { 0x8be95bc5, 0x63c9655a, 0x5e4fe0e6, 0xf4c34bba, 0x3a5c7cee, 0x1a062f57, 0x4cc50232, 0x5b82a35b, 0xffde0a49, 0xd08b5115, 0x93ae50b0, 0xc6638b5, 0xd9a29d05, 0xb71cd2f5, 0x8a6a7827, 0x8338f92e, 0x00003d }, { 0xf6a2d89c, 0x7a283edb, 0xe435f97f, 0x98a48ff9, 0xce5282b6, 0x6cad1999, 0xba4d80d3, 0x7357c0d8, 0xc32b5d19, 0xca9ea8fc, 0xa450ce76, 0xf83bab82, 0x390e286e, 0x3a99ca0f, 0x2cc4d458, 0xc283ed50, 0x000167 }, { 0xc8e2b066, 0x172dbca5, 0x58014bfc, 0x3e1ea652, 0x4442e313, 0xd620aed7, 0x4b9b8b89, 0x16610e99, 0x75adebb9, 0x8e04d911, 0x2109e44, 0x94d7d525, 0xc54d3933, 0xa794e7f9, 0xf3644b96, 0x2ae1450, 0x000072 } }, { { 0xbceef8a9, 0x38bca8bc, 0x755fe0c7, 0x865e02b4, 0x274dba5c, 0xe3e8e210, 0xb0ffb1b2, 0xdfd9bdfa, 0x91044f76, 0xf850011d, 0xd7bdbe79, 0xe66c402, 0x965efa32, 0x43cf7cf5, 0x85f2e144, 0x6a1527d1, 0x00000e }, { 0x48c7a8bb, 0xf0cfebf0, 0xd5c1e02c, 0x237db974, 0x8336d7fd, 0x7ec662eb, 0xed970271, 0xffe52a73, 0xf9e057a, 0x4f0471a8, 0xdf8482ce, 0xa0f492b6, 0x8dabc28a, 0x24179853, 0x80a072a3, 0xfcde17ae, 0x000102 }, { 0x1cbb7b77, 0x5ddd081b, 0x6dce15ac, 0xbe6518e, 0xf43f08d1, 0x812ee591, 0x6dffabba, 0xfd8337ca, 0x66fbdd87, 0x61785a0, 0x4fc9a218, 0x3e4741e2, 0xe70c8ec2, 0xc9530e6b, 0xa6e52d47, 0x6e765df8, 0x0000f3 } }, { { 0xbaa5242b, 0x4ab1b18a, 0x3c3dcc3e, 0x76ada1c4, 0x8ac91e08, 0xc0b6f379, 0xc35da930, 0xee2427a6, 0x8ee3a9d0, 0x4f716912, 0xbf7622ef, 0x204ad331, 0xf8e756c5, 0x397a279e, 0x6237981b, 0x411459d3, 0x0000fa }, { 0xf3458ed9, 0x50d92423, 0x67c87e43, 0xb5b37de1, 0x2262a22c, 0x9da86130, 0x9dd986b6, 0xb24ddc52, 0x5a15bcb7, 0xc7579526, 0xbf3245a9, 0x95e674e7, 0xbb548af, 0x54baaf29, 0xda54dab, 0xaf1f14b, 0x0000ac }, { 0x897bd654, 0x3d814665, 0xfaf8d8f0, 0x2169b5b1, 0xd50c3c5b, 0xfaa98daf, 0x3e4ef6b3, 0x4782dbb0, 0x3d5bcff5, 0x11b60258, 0xc7242bce, 0xd6db29a1, 0x678d22e3, 0xb4555ced, 0x880a1654, 0x38f76ae, 0x000165 } }, { { 0x81e2fcc3, 0xc1371529, 0x5e59fb4c, 0xd7041db6, 0xda41ea9d, 0xb055e17d, 0xc07d5224, 0x8b8cea78, 0x279132e5, 0x47a91c80, 0xd6697bf8, 0x49013346, 0x56152b7b, 0x648f623b, 0x51144b23, 0x8f12fa3c, 0x00004b }, { 0xdb2c5312, 0x8cc0a254, 0xcbbcca54, 0xd48cea0c, 0xe9a99e22, 0xbb9db456, 0xbf8a4bb6, 0x716de811, 0x3367ad8, 0x8177d9b8, 0x983ffc6c, 0x441ed23b, 0x2f0525b1, 0x483f7912, 0x427c3c57, 0xc35e82d3, 0x00019c }, { 0x39c2efe5, 0x969ce642, 0x5e5a5a70, 0xf721089e, 0x788d4875, 0xe0439434, 0xe88d9fc1, 0xd407f2f, 0xe892e0ba, 0xa6e860a3, 0xa3089406, 0x34e4734, 0xc0109cc9, 0x5138f385, 0xd88089d9, 0xff985b33, 0x000001 } }, { { 0x7b2eef27, 0x41786a98, 0xd12830ff, 0xbd2b9995, 0xd3028cc6, 0x9dc1b7aa, 0x8fb98fdf, 0x44970d6e, 0x2cdcee8d, 0xf8a4ea6f, 0x63972373, 0x826649cb, 0x9fda2008, 0x4332b91c, 0x160e1479, 0x582bee7b, 0x0000ff }, { 0xd7f40f43, 0x7a9eba86, 0x1324034, 0x5cb5d2e3, 0x207e178c, 0xf7489eff, 0xc5c22863, 0xd887f896, 0x5d1e7ca, 0x9dcc15d1, 0xe6e3ad88, 0xa0bb6cd6, 0x10c2afb9, 0x1696f2c1, 0x757d23cc, 0xfcfdb09, 0x0001d9 }, { 0xbab2dd24, 0xa6d26953, 0xef3fb76b, 0xa8f8c0e7, 0xc9e7c3d2, 0x8e486f81, 0x84d1531, 0x9289ea01, 0x4e6b0ba2, 0xd7afd09e, 0x2448945a, 0x6b7f317, 0x2e7ed6fe, 0x7cfd5ec4, 0xe0b82421, 0xe5de7e7c, 0x0000e9 } }, { { 0xf5b708bf, 0xe0299222, 0xda9530c7, 0xefe7765f, 0xa39aaa0c, 0xb090b517, 0xdc550e09, 0x62537343, 0xa4c5990d, 0x9e4a5a04, 0xc40dc0ff, 0x9ac10f7, 0x1b880699, 0xe0a3fa59, 0xc6953f60, 0x8ff06bf2, 0x0000ec }, { 0xd3232a88, 0x73f9776c, 0x123d7b73, 0x3f59cae6, 0xf756d0c6, 0xa1acc43d, 0x532847be, 0x29b5d3f9, 0xa690ba5e, 0x757fedfb, 0x89b71472, 0xf9a5642b, 0x8613e330, 0x8a33c987, 0xde2ac46, 0xa6a73877, 0x0000df }, { 0x879f0b97, 0x9ae17117, 0xf762787c, 0x94f577a6, 0xfdcf47d6, 0x4c886121, 0xc4fe2db0, 0xd79c3e16, 0x75312043, 0x21c4514a, 0x21d0eb2, 0x43d0a3fa, 0x5466673a, 0x6ba49cc8, 0x1c8d809d, 0x8f190275, 0x0000d0 } }, { { 0xf722617, 0x832995d4, 0xd560d20b, 0xf33d72e1, 0x81640e19, 0xd8381592, 0xd064b678, 0x286f99f8, 0xb723e121, 0x87a6d615, 0x17975cd7, 0x42cf98b5, 0x2385ed99, 0xbd4ebca7, 0xc79d5d96, 0x48db9dca, 0x0001eb }, { 0x9d0bbcaf, 0x95034195, 0x525f21f, 0x833cce3f, 0x52f8494a, 0xa33fefd3, 0x754f611e, 0x366c68c9, 0xe6739ad4, 0x2d8e141b, 0xdf1ccd8f, 0xa25dc7f2, 0xac47e92a, 0x8a61dc4c, 0xac07835f, 0x144cf2db, 0x00017a }, { 0x1a5a343, 0xf9312998, 0x57731d94, 0xd8f64c47, 0xf0fc3d04, 0x94d2b704, 0xe9a82e63, 0x3b701e73, 0xec4e9642, 0x857b8014, 0x95c55ec3, 0xca9dd9bd, 0x4ef1d6f0, 0x3ca929fd, 0x1930726e, 0x2138a91e, 0x0000ef } }, { { 0x210bdd17, 0x8855e062, 0xbaff54d8, 0xd950391b, 0x2af99c77, 0xe805f070, 0x597fc5b, 0x1ad9a4db, 0xf2b46774, 0xca8d01c2, 0x266439b0, 0x8bd9e9e7, 0xdcc067b0, 0x389a0eb4, 0x8dda95d5, 0xca1b5db3, 0x00004c }, { 0x440d595, 0xea64aaeb, 0x8a7e79e7, 0x626d64cc, 0x456cbb38, 0x6054ff6a, 0x3e1041f6, 0xfd280c9d, 0x74ba4927, 0x2d626b66, 0x948b0db5, 0x3fef10cb, 0x9c1e1cc5, 0xd61876b9, 0xc5650bed, 0x62a44679, 0x0001ce }, { 0x95dfe65b, 0x3c5bfc9f, 0x6350bc03, 0x4707c576, 0x5817edaa, 0x34428aa6, 0x7b6cf623, 0x6271b11f, 0x1ce691bd, 0x5d592f98, 0xfeb75ef4, 0xa9218045, 0xca625f27, 0x2f3ae8cc, 0xf77f7a48, 0xc179fe04, 0x000047 } } }, { { { 0xc8086b73, 0xf355e893, 0x23ab0042, 0x21c61d7e, 0x60c14e67, 0x3f2442a3, 0x8f315e80, 0x1f493735, 0xfa587bf6, 0x4b606bec, 0xd7077d08, 0xf38343c3, 0x89881a7b, 0x2519ba6a, 0xacd1ab0, 0xccd894d3, 0x000083 }, { 0x2484d6fa, 0xc5bca6a5, 0xbd35567a, 0xd0419505, 0x90173d62, 0x75386b18, 0xdd6f2067, 0x409607d4, 0x99943180, 0x9b171db1, 0xb436b5b4, 0x672df6d9, 0x38a8c02f, 0xac041f5b, 0x545a9450, 0xef6f92fe, 0x0001cf }, { 0x9b33384c, 0xd356ca1e, 0xbeaa8d81, 0xc67d2264, 0x2bb17984, 0xfdc0a823, 0xb12c781c, 0xdef0758c, 0xb7eb6afe, 0xfd93009a, 0x47041f56, 0xda491086, 0xd61064f3, 0xd71d2b4, 0x97adea7, 0x719fed70, 0x0000c3 } }, { { 0xa1171df0, 0x203de8e0, 0x79d08113, 0xac23c0a9, 0x9117e6df, 0xd47e77b3, 0xa0d4c978, 0x2ff9982f, 0x461cbaa1, 0xdf60359a, 0x366e79f, 0xef68cf5a, 0x9f9628c0, 0x9aed6266, 0x6c78a1aa, 0xd6593141, 0x000151 }, { 0xdf9e4cb4, 0x927539e3, 0xebb735eb, 0xbb91cb5a, 0xc6fd591, 0x6ae4227a, 0x2e482c03, 0xe1c1d81c, 0x4304fd25, 0x95699605, 0xe4ae4692, 0x3a91c7ee, 0x294f9cac, 0xd1937f86, 0x832c89cb, 0xa8dba771, 0x000013 }, { 0x336514ac, 0xcd04a62a, 0xee751ed8, 0x396858f6, 0x69b0e7b5, 0xe41d2a52, 0x585e730e, 0x29d725f, 0xa30c474c, 0xe3e11341, 0x83b5b41b, 0x3d7c4bd7, 0x8e1ffbc5, 0x94ea312, 0x509924ee, 0x2fc666a6, 0x0001e1 } }, { { 0x22fafe36, 0x8f11f381, 0xd3c75f3, 0xa92787ef, 0xa5828f3e, 0x6700a19b, 0xd515b67a, 0xae6c8cbf, 0x6dd43878, 0x5e4f4a09, 0xc8d193cd, 0xa9f86196, 0xfe930f22, 0x5a57e61c, 0xe7d82e0c, 0xbfa58ca, 0x0000f7 }, { 0xcc681afa, 0xb7813836, 0x7b9543ea, 0x35068ad2, 0xfa31afc, 0x883d06e7, 0xdaed3e9d, 0x4c00700b, 0x5f06453d, 0x8d011c99, 0x516eb174, 0xe3174e6a, 0xedc4dd8c, 0x3b8d3fc5, 0xee775806, 0xe9557ff8, 0x000077 }, { 0x236cd906, 0x8370aa5, 0x6165ac2f, 0x1a2ae511, 0x1241ab58, 0x8ae089cf, 0x20c810db, 0xf641c396, 0xc43591f, 0xd21649a, 0x3d1d8db5, 0x212fa5ae, 0x5b5522da, 0xb0f12923, 0x41d74270, 0xd84bb452, 0x000115 } }, { { 0xf9ba2fe9, 0x972ada1e, 0x8a088d42, 0xaca2544d, 0x2321175d, 0xe9432a79, 0x16b7b954, 0xa107e27, 0xc69d2a89, 0x44939e6, 0x1901fc61, 0xc8dd11ee, 0xce32fc08, 0x4c20da9f, 0xdeae841f, 0x69742764, 0x0000b9 }, { 0x42f60660, 0x3e2808d4, 0x20ed7253, 0x2cef86f6, 0x871b394, 0xc230c0af, 0xe9da846e, 0xd520f629, 0xcd61756a, 0x4cd54439, 0x5158b60c, 0xa07be827, 0xaa981142, 0x3a1af55a, 0x351d66d4, 0x7360dba3, 0x0000fc }, { 0xb8d7c458, 0xf63eab80, 0x3a02a8b4, 0x3e7d8ab2, 0xbbbed242, 0xb259cbd6, 0x88b9ecfa, 0x3aa0f9f5, 0xad54da11, 0x62993b31, 0xe5d142dc, 0x304994e1, 0xb265f305, 0x829fb6ba, 0x38364d6c, 0xdf9b9038, 0x0001c8 } }, { { 0x61cfdab8, 0x9feb28ed, 0x6b36538d, 0x934444b5, 0x6778f144, 0x400794d1, 0xe538e18b, 0xa7fb1aa3, 0x1799191b, 0xafd9298f, 0xa874c577, 0x486a0a85, 0xc3cda90, 0xecfb0a1f, 0x21218d4a, 0x3b7dbf48, 0x000112 }, { 0x9ff0ffb, 0x2ca08898, 0x63c14905, 0xd7883617, 0x7d04033d, 0x302af536, 0xcce70ff0, 0x4c670cd5, 0x318877b4, 0xce8af8e8, 0x56e4594a, 0x3b0f65e9, 0x14814a62, 0xa9979132, 0xd20134ae, 0xd9f4fb2, 0x0001da }, { 0xb8a41d6f, 0xfbead28b, 0x4beb3cb, 0x564fea34, 0xbf428c65, 0xe9640526, 0x9ddceb23, 0x6dc5d681, 0x90c0b276, 0xf551f6ee, 0x54a44de1, 0xe2f5b998, 0x302ccee, 0xf7cde009, 0x5fa78d01, 0xa60ade89, 0x000160 } }, { { 0xcc2c10d9, 0x3243d640, 0x86d44d7d, 0x7608765b, 0xae4ce593, 0xe3d0de18, 0xee5ba263, 0xcf58cb5e, 0x7d79a2e7, 0x258a9e89, 0x85ed1534, 0x15d5feda, 0x1f381a5a, 0xe3992c6e, 0x10671a5d, 0x1a5c7bd6, 0x0000e2 }, { 0x1daaefba, 0x18f98c4b, 0x6d365495, 0xd8a265b9, 0x93f50a93, 0x1cf153c6, 0x7156f73a, 0x7a5fc24, 0xba9924be, 0x8b229b59, 0x993fa70b, 0xc08d70ff, 0xdcecc88d, 0x8b5cffe7, 0x517fc61, 0xdb68f55b, 0x00017f }, { 0x8114cee8, 0x3fa342eb, 0x4040d11e, 0x6f0ccb1c, 0xf8b46873, 0x9a618b6d, 0xa66d9ad7, 0xb1e25813, 0xe3d9fffc, 0x7013eba, 0x4ef41587, 0xbc2419b7, 0xabf3d493, 0xf26e2a3c, 0x64accf34, 0xa9576380, 0x000017 } }, { { 0xffe6dcd1, 0x805f41e9, 0xbf0fcb00, 0xe0bbe3cc, 0x238f25f2, 0x46203f31, 0xe36f366e, 0x9996849, 0x25a5e379, 0xdcf3bf00, 0x5dcd9937, 0xe89e2935, 0x17f6837e, 0x2b75faba, 0x309fd0aa, 0xdb0c75e2, 0x0000f1 }, { 0xc7f70f14, 0xd902234d, 0xeb6c4c45, 0x96691bae, 0x436cea8f, 0xa196efa5, 0xd1d4a9a8, 0xbac8e21a, 0xa6b47bbd, 0x8be50a09, 0x15c6ab78, 0x6b1d7735, 0xf82e4b3b, 0x984b07a2, 0xdd6e78db, 0x4349f58d, 0x0001f8 }, { 0x7c2a4679, 0x137001ea, 0xe4f1210b, 0xf646153b, 0x2853b3a1, 0x1fa413ee, 0x1039623a, 0xf5b5679b, 0x284a1ad4, 0xd14325e, 0x931912d4, 0xbef7d52b, 0xbbcec17e, 0xd303279c, 0x8905bb6b, 0xc7244cf6, 0x0001d6 } }, { { 0x3010e7c3, 0xa51cf96d, 0x69380a79, 0xef66e227, 0x6e8cf59b, 0xfbc6d373, 0x50fe4dbb, 0x5984cc51, 0xe531ba51, 0xef0bef63, 0xddad2533, 0xa52eceb8, 0x45db7242, 0x1556dfb3, 0x580ee754, 0xa93ea4e9, 0x0000db }, { 0x885658a3, 0xfcb082ee, 0x7fae8d24, 0x7ad8f741, 0xee0707ee, 0x732053e1, 0xdc688e6a, 0x52f68bb9, 0x89bc311e, 0xb60b2e57, 0x37e54e0a, 0x8d9252f3, 0xa3f28e0f, 0x8c50da5c, 0x50dd1336, 0x15e3f5e7, 0x00009a }, { 0x553a5fc8, 0x647e8e76, 0x4b11a1db, 0xa3fbfe63, 0x1e904b3f, 0x2cb56248, 0x1836de15, 0x27362836, 0x33eda14c, 0xab45d5d1, 0x30f36c1, 0x6f87e757, 0xeac4a61d, 0x1e7f409c, 0x964f3943, 0xf528af0f, 0x000196 } }, { { 0x33519072, 0xfe45e4ee, 0xc6e6162, 0xd2d14572, 0x300c9529, 0xe463628, 0x3d5f75b9, 0xdd39a96c, 0xe71f0e5b, 0x5549ea3a, 0x61f18f06, 0x5872e08a, 0xf2dcb500, 0xda4c9ac7, 0x9f96af9d, 0xf7e90f35, 0x00019e }, { 0xba8c03a5, 0x9511bc66, 0x7dd41c55, 0x60642a53, 0xfd3ed631, 0x23f05efe, 0xa3734574, 0x67c1db26, 0x5e476765, 0xdb1de5c3, 0x4fe62ef8, 0x1490f56d, 0x163b3818, 0x85433350, 0xede9ae3e, 0x58d90214, 0x0000b9 }, { 0x3f3df19a, 0xa88338ba, 0x21910261, 0x77e8ed9e, 0xef384e69, 0x7bb91ff6, 0x75028851, 0x33afbf21, 0x3cb9e170, 0x5fa84651, 0xcddf71ad, 0x2e03149d, 0x95d7e8c, 0xb54fdd82, 0xeb0fc745, 0xeeae6381, 0x0000e0 } }, { { 0x970c538c, 0xfad65195, 0xa723dc18, 0x35c752de, 0x3c6fee19, 0xe4a15484, 0x7b27053e, 0xae902b50, 0x90f71a4, 0xfa9b57d2, 0x22bd4d5c, 0x47de0ed7, 0x2b0b3a85, 0xe52fb259, 0x4c46d0c, 0xf011ebe0, 0x0001ef }, { 0xac663903, 0x9fb2dcbc, 0xad4c0a72, 0x26a088f5, 0xc3503946, 0x37554e50, 0xbfd152c8, 0xe02e2024, 0x6327a82d, 0x2e0d1d45, 0x13ca8ff3, 0x249650aa, 0xb2a32690, 0x204ace79, 0x3506bef3, 0x69ac9379, 0x0000c3 }, { 0xf0d694bf, 0xccd48bbb, 0xf368c9d0, 0x3ef0b89e, 0xa40b138a, 0x4502af75, 0xb3dbc2c1, 0xeba7d898, 0xbc1f960a, 0x9091e34f, 0x3b2b8f01, 0x5a947bcd, 0x373c9cf2, 0x4df323c7, 0x13e00fdb, 0x9e43c254, 0x0001bc } }, { { 0xfb4f098, 0xfd688a8f, 0x4745bf5d, 0xe493a0e6, 0xac7faa5e, 0x45b81f4b, 0x9e0fd03d, 0xbd0c3a8c, 0xdad081ca, 0xddd779c5, 0x4d053901, 0x88c12be9, 0x41cb5ae4, 0xdf49a537, 0x752e9293, 0xf5f2e695, 0x00006b }, { 0xfb0f1054, 0x6dc38fbf, 0xd14f0994, 0xbe28302f, 0x62f49d30, 0x67aa61e4, 0xb6284d9f, 0x660eea1d, 0x1525eefd, 0x9bd84790, 0x8f2bdda3, 0x338b0dc2, 0x4184415b, 0xc80b4d59, 0x49d00179, 0x1dd8a52b, 0x000113 }, { 0x918964b, 0xb6e0c215, 0x30b01d17, 0x5e18cd0f, 0x4357356f, 0x97eab00a, 0x891c37d2, 0x9fcfbcbb, 0x182ce20c, 0xc8decb78, 0xfdb592e8, 0xf442b1b3, 0x2433ff10, 0x7dace168, 0xa2bb3fee, 0x7b668026, 0x000077 } }, { { 0xdc68c7e2, 0xea0460e8, 0xf7a8156d, 0x7e097bf4, 0x3536bbe7, 0xe3994a71, 0x7397322b, 0x10ec6b3, 0x7d13e7ec, 0x5dcbb46c, 0x182834ea, 0x4273769e, 0x2a31995c, 0x9233c49c, 0x22f56f7d, 0xf4978776, 0x0001eb }, { 0xc3cbdd11, 0x5157ce36, 0x63052dcf, 0x507f7f17, 0xeacc9bec, 0xe08b22e8, 0xb57e6eb1, 0x33d9bbc9, 0xe09c1117, 0x73512a36, 0x79053d24, 0x89f131c3, 0xf325a3f7, 0x360080a5, 0x95a59fb8, 0x439cb544, 0x000027 }, { 0xfcb61238, 0xe2f32aab, 0x9458f553, 0x544e0cde, 0xb02ef13e, 0xa8dbdb08, 0x55675efd, 0x8f31c4eb, 0x33afa069, 0x147de4ce, 0x929148c3, 0x98d212d2, 0x9e32e635, 0x57e91cf1, 0x60d4fc9d, 0xbbf47b3f, 0x000151 } }, { { 0x7c5ac08d, 0xd5a13e5e, 0xaa356584, 0x52ed176b, 0xc1428032, 0x9d8895a0, 0x5681d17a, 0x9aa7a283, 0xe5cfa75a, 0x87940625, 0x75d0c01a, 0xceb279ed, 0xb7475132, 0x99cc2e, 0xfbd4d489, 0x369a86d9, 0x0000a9 }, { 0x8c22b6ab, 0x1d786c66, 0x13f661ec, 0xc84a13c0, 0x5b57d10c, 0xbbca481c, 0x4080beee, 0xd38a5c58, 0x7a587a33, 0x28f52905, 0xbd1078d1, 0x59310618, 0xb624046c, 0xd0dea26a, 0xdd857dad, 0xee306453, 0x000044 }, { 0x54b7be75, 0xbf3486db, 0xfc1c08bb, 0xb1d819d2, 0xe5092beb, 0xd1fab71b, 0x43c49eee, 0xf4592b21, 0xddaf075b, 0x3d568449, 0x257053fb, 0x9c8a1383, 0xcc1c6792, 0x1b7640e0, 0xba52388d, 0x85a7c7c1, 0x0000df } }, { { 0xedabe7eb, 0xee6118c3, 0x305212bd, 0x2089707d, 0xb1bfa91e, 0x4a25f7fc, 0x332bfed4, 0x61d10430, 0x6bc5b523, 0x75f2a2f, 0x4ae35fc2, 0x27496d44, 0x83eccc9d, 0x9040785f, 0x7240edfc, 0xd6d64bbe, 0x0000ba }, { 0x17d0b252, 0x1637f6cc, 0xf0581d0a, 0xe5855ed5, 0x2384ea7f, 0xdf809be0, 0xef96fc3b, 0x1d1abe62, 0xe39777f3, 0x6d5dfb8c, 0x51f1dce1, 0x30339de1, 0x8e45fc9b, 0xd2a2f703, 0x55818ac6, 0xcee97af8, 0x00007f }, { 0x79dea0b0, 0xf9c919b1, 0x87e1b2df, 0xc9f52f8e, 0x588f223d, 0x75fef17f, 0xc02ce0ae, 0xdc5d0edb, 0x1041573e, 0xafe253f1, 0x9c5b1d08, 0xaf90ebd6, 0x80d4c63, 0xc99e7466, 0x4c69bb1c, 0xc8569196, 0x0000d1 } }, { { 0x97c6c421, 0x399f0750, 0xb6317e6d, 0x683ec583, 0x2c391666, 0xeee52c3b, 0x32d62a9a, 0xf28c25ea, 0xf358b09f, 0x686dc899, 0xe8157fec, 0xe84a6242, 0xb8b88516, 0xc5359020, 0x4c50ba45, 0x2c6b18b2, 0x0000a8 }, { 0x91d35847, 0xd8683c6, 0x9dd9857, 0x697531ec, 0xc82226d3, 0xa909528b, 0x831016e0, 0x352cba62, 0xaa1e37a3, 0x8b63345f, 0xf247c8d3, 0x6d0e73db, 0xc2cbe8e2, 0xd605bca4, 0xbe04a250, 0x3721deee, 0x0001ae }, { 0x9761c71a, 0xbf2936d3, 0xa2feabcb, 0x11da4393, 0xfe3df6e1, 0xc338a921, 0xba8b869a, 0xf999ff9f, 0xf9d25355, 0x21213e02, 0xc1ccc8dd, 0xc4a417c5, 0x4e3be1bf, 0xd886105, 0xb00e6324, 0x81a4e165, 0x000102 } } }, { { { 0x7626d538, 0xf1c20fa8, 0xe98e397d, 0x9684eeb5, 0xafbbf872, 0xb80db22f, 0xbe613ca1, 0x207e14a6, 0xb89ce2f6, 0x160fab2f, 0x2e66334d, 0xfa6c952a, 0x50b95f82, 0xa1ec166e, 0x27d54b84, 0xf92fd71f, 0x00017e }, { 0x887a96e2, 0xf90cee2e, 0x46cb612c, 0xdcc9b504, 0x9e2d7b5e, 0x52c839ae, 0xd01ef9f1, 0xcdd2558, 0xdab59adc, 0x1dade6b3, 0xece12ee3, 0xaec41ba9, 0xa8ec7497, 0xb7684c84, 0x5c538d31, 0x8eaf7c9c, 0x000107 }, { 0xbed594cb, 0x274a955d, 0x766b4662, 0x89290374, 0x832b1027, 0xf8cb9d82, 0x297d819d, 0xd9569451, 0xb81ce551, 0x2c72d906, 0x11e1478, 0x96f6f699, 0x581f5f2e, 0xda2f474, 0x6ec0f871, 0x7f0293fa, 0x00004a } }, { { 0x3d04f446, 0x46b59126, 0x80da4542, 0xb1f429b5, 0xdf4e6e53, 0xeac649db, 0xd9f5dd2b, 0x95beb495, 0xcdecda70, 0xc17d2664, 0xdaf6aa75, 0x9fca3c9d, 0xefc365c0, 0xa2c724dc, 0xfb2f7780, 0x1b548c32, 0x0000c9 }, { 0xcf5a6af1, 0xe2ea38d9, 0x1bf1e50, 0xd5504bbf, 0x1e5bfe38, 0x87607a8c, 0xdc78104, 0xaca76fd0, 0x3fe57294, 0xcf4c3b4f, 0x47c5691c, 0x1eba62db, 0x2c5b5fff, 0x4f3067bb, 0xb3ceacb8, 0x14a045d7, 0x000109 }, { 0x4cdb9be3, 0x39fe61d5, 0x1b825bbf, 0x5244c212, 0x4deb6b61, 0x6cea3ea1, 0x7084523a, 0x7c6941b1, 0x2d782cdb, 0x6613a405, 0x16d68a1c, 0xb9abf103, 0x1f6cd8fe, 0xcf053492, 0xe0936520, 0x269bdc13, 0x000120 } }, { { 0xff65dbde, 0x47acdef8, 0x9c76cde3, 0x49737ad2, 0x1983cdde, 0x1a209fa9, 0x2a758362, 0x2f55aee1, 0x1fa6b402, 0xdc698052, 0x53a6d3d9, 0x95adcdf8, 0x527ed615, 0x7d1c3057, 0x9d1d817e, 0xca83e99b, 0x000076 }, { 0xa50ec679, 0x595f2a31, 0x9a484de, 0x6f9e0ff1, 0x5b007a99, 0xe6e7af2b, 0x8117e69f, 0x948be9e6, 0xe9661900, 0xbc6e0fb3, 0xaceaa7b8, 0x44b421be, 0x4d5a9c3f, 0xc5c7afa, 0x72b2f0f, 0xde600f07, 0x000080 }, { 0x2acc78a8, 0x114409ef, 0x582653ec, 0xf83c6daf, 0x2f992d91, 0x9747bf3d, 0x6bdbee44, 0xfdae1c7d, 0xef2f369c, 0xea1b7eac, 0x12a93966, 0xce1c833d, 0x5d037a48, 0xa579e534, 0x4400a256, 0x96eb04df, 0x0001c5 } }, { { 0x5d61db8d, 0x96836da1, 0xcb7552c8, 0x6d3d23f, 0x2cb22717, 0x85196499, 0x8b1438ba, 0x5a984ccc, 0x5ed76761, 0xfcf80738, 0xc86da46f, 0x7c8977f9, 0x5e03d6, 0x10ee75f0, 0x89ecd6b7, 0xbfdad29a, 0x0001b4 }, { 0xa9381916, 0x9f0550e1, 0xbb065388, 0x5c4bf680, 0xa3a9991b, 0x276d214e, 0x2203e23a, 0x696d0568, 0x5707fb4c, 0xc3be5f98, 0xc05f3c67, 0xc52c78e5, 0xa9a2f848, 0x3d15b923, 0x6e844492, 0x10669947, 0x00007e }, { 0x6e5b00e3, 0x26498b42, 0x905924aa, 0x72a5ff13, 0xacf0f00, 0x3a3e96bd, 0xd7900bc1, 0x2757b6bd, 0xe7b06e9d, 0x2dc515a9, 0xf2c97be3, 0x677c836b, 0x36031be9, 0xbac8afc9, 0x5d8b157a, 0xcd357856, 0x0001de } }, { { 0x25cfa6a3, 0xe34d2c2e, 0x7876d0b6, 0x982cc5b6, 0xfae51c73, 0xe944c06e, 0x225b667b, 0x29bebee6, 0xc26b41e7, 0xc0447a38, 0x4ce5354b, 0x28fe3481, 0xdc8644f0, 0x60f3f0e3, 0xe3583d20, 0xf81231e5, 0x000088 }, { 0xcf4c7dbb, 0xcde03930, 0x9668ee20, 0x4f5b9f87, 0x937e49d5, 0xe431fbfa, 0xd3634a6, 0x9ab75ffc, 0x708d8e3f, 0xf247da71, 0xce65e0cc, 0x772261d2, 0x546dbfa7, 0xff802a9e, 0xbcce11f0, 0x58268481, 0x0001d1 }, { 0xde08b413, 0xce1c8f0f, 0xaa2d6bca, 0x208bd36, 0x4f051628, 0x6b91a36a, 0x8e575207, 0xfb5a8552, 0x9ac760d3, 0x6224abd8, 0xa328d1a4, 0xae21825e, 0x9a31c8b7, 0x3d614094, 0xc2ed4440, 0xeb8e69af, 0x0001a4 } }, { { 0xb71ef47a, 0x496f0299, 0x54f7d744, 0xb1ea1426, 0xdf0cd04b, 0x369f2c92, 0xdb0a9a44, 0x860c2465, 0x999f8798, 0xc219997f, 0x94cac0bc, 0x366772a5, 0xfa63555, 0xaead22d0, 0x8ca0d2c1, 0x38605c7f, 0x0000cc }, { 0xe6f446aa, 0x969d3c58, 0xa28b70ae, 0x76aeef16, 0xdb1f4097, 0xbf5952c0, 0xfe68a93c, 0xe8d9703f, 0xdd6d088d, 0x471d6084, 0xf56b2adb, 0x9fd37dd9, 0xcb684a94, 0xf8d766f5, 0x9c0f9b2a, 0x81ade44d, 0x0001b3 }, { 0xe0d5ce57, 0x8cf902a8, 0xad2c0cde, 0x293b14d1, 0xbab7d43, 0x4047223e, 0x28ae7406, 0xdc0601a, 0x5f89ba7f, 0xc6778a7c, 0xa5132eac, 0x5d024900, 0x7575fef1, 0x32581084, 0xc8e1ca8c, 0x77d31a78, 0x000014 } }, { { 0x3a9f1e90, 0xc4d7df9d, 0x1f4e4be, 0xbd0c7083, 0xf740af10, 0xcf37e964, 0x58bcc221, 0x6732fbed, 0xdf3c4db2, 0x93e13c7c, 0x2351ee33, 0x60346f36, 0x76650cbe, 0xdf9508cc, 0x59c139ad, 0x4efb7801, 0x000178 }, { 0x5d314499, 0xd4ba969, 0x497df998, 0x4773ad0f, 0x3883c19, 0x15785ff8, 0xdd1fc46d, 0xc1af6e1a, 0x17352d38, 0xa81e6473, 0x321e8592, 0xe9d0453a, 0xe258965a, 0x119758d4, 0xec45ae05, 0xefe4bc53, 0x00004e }, { 0xeaf0a039, 0x28ffe0b, 0xe261855b, 0xb6b88eed, 0xd776a7a9, 0x74bc85b1, 0xcab5b3dc, 0x1f266fe4, 0x282f70fe, 0x36964cd2, 0x51866fb, 0x200fde46, 0xcec6bfe3, 0x4a067c6b, 0xeacfa78e, 0x6564d296, 0x0000db } }, { { 0x6797b675, 0x99fa7d5e, 0x72af14b, 0x4b3adf7e, 0xb97193c8, 0x7d219ef7, 0xeec0b6ce, 0x27bc5a8e, 0xd6c683ac, 0x6d716848, 0x351a9f72, 0x8e5a821c, 0x460ff0cf, 0x572d55e4, 0x10543f29, 0x66158709, 0x0001bc }, { 0x4cf05e7, 0xc66545b8, 0xc9fa5b44, 0xc706d42a, 0xef608df6, 0x1d142ba7, 0xd255468b, 0x1483a3d4, 0x1a65d9a5, 0x4a0a97d2, 0xbc171806, 0x49985531, 0xbea10a92, 0x304f4437, 0xc6cf9f0a, 0xd07fcb3d, 0x00019c }, { 0xb212619, 0x3bd233fd, 0x1dcc5485, 0x677ca3c3, 0xe69f3cf8, 0x5cea12ad, 0x5496cb1d, 0xf8896a80, 0xa3e2d480, 0x82e7c3bd, 0x6601b955, 0x109a52f, 0x4b1a9666, 0xfcff66f3, 0xddaa2ca, 0xb4cf46da, 0x0001fb } }, { { 0xb825aa15, 0x806d69f6, 0xe4e0dd04, 0xa6dc2ae9, 0xffe38b9b, 0x9e31523e, 0x9519c7f8, 0x1a64e3ce, 0x62924fbc, 0x2ebda931, 0x559dbf8f, 0xcac5ec4d, 0xd8a949ba, 0x728b4bdc, 0x6913e537, 0x95d1a903, 0x0001d6 }, { 0x2500783d, 0xe912c43b, 0xc7b6e701, 0xc50b9308, 0x43c08305, 0x5de7b03e, 0x51e18207, 0x8b4b9c5f, 0xefbefb41, 0xce6f5e9b, 0x67a59e37, 0xd196a50c, 0xd58fddae, 0x75ef88ae, 0x1dcc92ae, 0x8239879, 0x000034 }, { 0xcb8fcff6, 0x6d2925b4, 0xcaa42036, 0x8f9529c0, 0xf8a6c948, 0xce0c5091, 0xe5e0e4ea, 0xab85b1c0, 0x45500a63, 0x7178dc81, 0xdca450c2, 0x86e6b55f, 0x7dc37424, 0xc3e95d4d, 0xf385652c, 0x2aac6af0, 0x00014c } }, { { 0xdcf711bd, 0x67f5abcf, 0x7d02025, 0xb4a258d0, 0xa14cf2d9, 0xb6470b6c, 0x4cf6e1c4, 0x1ddce7fd, 0xf436fa2b, 0x43faf0f3, 0x64d2cba6, 0x3d3d38dd, 0xd7e1d3a8, 0xab0fac1c, 0x368f0590, 0x83303a30, 0x000010 }, { 0xbb888fa5, 0xafad48d5, 0x580e9bb9, 0xe9625bb, 0xf24b2071, 0x2ed38ad6, 0x8929c831, 0x12faf297, 0xe509131d, 0xa10977f9, 0x63d901b0, 0x1eec8446, 0x5fa92e37, 0x4aa6bc93, 0x437c0e91, 0xdc8d297, 0x0001f4 }, { 0xa34f8305, 0x40d35247, 0x5928815b, 0xde4a859e, 0xb85e7809, 0xf0b75ce9, 0x6bd503f9, 0x27a931f7, 0x87e7b21d, 0xc5b3244e, 0x6849002b, 0x98a7ce50, 0x59eb416, 0xd6ab634d, 0x99dd8e1f, 0x59143b42, 0x0000e4 } }, { { 0x1685e1a0, 0xb28b8dca, 0xd7630d11, 0x2bd89f36, 0xcb3fd866, 0x6a2ec7e8, 0xc05e8279, 0x12236b7d, 0xca61a5a8, 0xf5d6bff1, 0x331c9dce, 0xeec385cd, 0xb22b446d, 0x27386d8a, 0x3a19acf2, 0x98e5d9d0, 0x000024 }, { 0x2f5dc54d, 0x3d39fa8, 0x56629dc7, 0xd60f447e, 0xcb5a13fa, 0x70f4d628, 0x928ab816, 0x849f316f, 0xc23bc2aa, 0xbf08f1a6, 0xfa66e51b, 0x3eac8691, 0xf034e40c, 0x99bb6cb, 0xb05d35cf, 0x355a1fe1, 0x00010e }, { 0x5a38b1dc, 0x1d75279f, 0x3b83e528, 0x62d73385, 0x7e711200, 0xa2d9259d, 0x16be631c, 0xd1b4c963, 0x48cd09f5, 0xaeeae0a, 0xb7cf1692, 0x2b1156c9, 0x472f6161, 0x4a84579b, 0x7ea007fb, 0x2617bfde, 0x000010 } }, { { 0x24513494, 0x34c7ef03, 0x4bb8f9d4, 0x8953b9b8, 0x29270dd7, 0x65c4e3fb, 0x469fe626, 0x52434c7a, 0x7dca993d, 0x8204bfaf, 0xb25ab11, 0xb406de7e, 0x166014e8, 0x20266412, 0xa29b1935, 0xaeed0832, 0x000076 }, { 0x3035960d, 0xec1f738d, 0xb3b07836, 0x18869c6d, 0xf3d29802, 0xc1d598a5, 0x83bc3810, 0x1f546cc7, 0x9b111045, 0x4268334e, 0x1f593997, 0x6199986a, 0xfef9812e, 0x6ab52bb8, 0xb6eaf90f, 0x5102b4e4, 0x000196 }, { 0xad0148e5, 0x8f76f2ea, 0x3d67344, 0xf45494e5, 0xead550bd, 0xbd5d5117, 0xfd193aa1, 0x65e399a9, 0x9b990c6e, 0x2fbd5a96, 0xb362a826, 0x23329fb4, 0x49f30a62, 0x7dcd1c33, 0x9fa55cb, 0xacc5350c, 0x0000af } }, { { 0x9abd6457, 0x1174f345, 0x437c7d2, 0x8c177c8a, 0x374661b5, 0x4e85ef6b, 0xa55e73c2, 0xe988a471, 0x481ea373, 0x6f9466f9, 0x35cde86d, 0xafea3280, 0xc7209f3e, 0x2843f13a, 0x9f91d602, 0x925d44ae, 0x00004c }, { 0xb5b4ba62, 0x1b145f1d, 0x9ccbc16f, 0x295920a8, 0x23dcdf97, 0x8812756b, 0x8a0b9205, 0xbbbe7bbc, 0x9b6de850, 0x3c47ef5f, 0xc817ec58, 0x32b8ee16, 0xc758d9fe, 0x16f45069, 0xf5d7fcd5, 0x943a89be, 0x000160 }, { 0x8377aac3, 0x32113b9, 0xdcf82160, 0xba009459, 0xfd7f7b72, 0xe7c4b466, 0xcc00c001, 0x7b94f1bd, 0x660a87b4, 0x107edf9, 0x2f87a476, 0xc7df04ed, 0xa8fb5cfe, 0x9ecb8eaf, 0x273e4ba0, 0xb5671daa, 0x0001de } }, { { 0x6730bb62, 0x634b068b, 0xe691ce18, 0xf75cee7c, 0xd4af17af, 0x758942e7, 0xe6abf575, 0xd5730ed1, 0xe935d236, 0xafc8b6ee, 0x9bff8460, 0xfcba88e5, 0x30e9364c, 0x84562c98, 0xcd1ae322, 0x605b958f, 0x000067 }, { 0xb21349f2, 0x41b0a9ee, 0xdcac9a63, 0x9ad85d6a, 0xfc927d01, 0x842c4171, 0x89e0ec66, 0xdcb627f3, 0x16baadbb, 0xc3ff141f, 0x4c07c28e, 0xe892594a, 0x427196ef, 0x11274894, 0xa492c125, 0xd5afc9e2, 0x00003b }, { 0xee739307, 0x69fd7af0, 0xd409e4ba, 0x219ead94, 0x6abf61e, 0xc875ef5e, 0x2dfc2a9b, 0x77b36d7c, 0x79611dbd, 0x3c343880, 0x831f163a, 0xad729749, 0x3c666639, 0x61caa621, 0xe44fba57, 0x1a2869b8, 0x000057 } }, { { 0x6604a4dc, 0xe0fe20bc, 0xf678a1a, 0x7ff46909, 0xa94e0001, 0x52cf4ed3, 0x5a3ed8ff, 0x8ff8b904, 0xc7475e60, 0x53697308, 0x31296066, 0x2299d6fb, 0xb52ef97c, 0xb3e85e64, 0xf3dfd0aa, 0xc25cd3a4, 0x000119 }, { 0xc711af53, 0x540664e9, 0x81868500, 0xddd205b7, 0xd4ba4f07, 0x41e0857b, 0xd58e1e9e, 0x3df788f0, 0x81557100, 0x323509e1, 0x487b9df0, 0x28e05a78, 0x7fc55b8c, 0x33b0dd92, 0x63192dbb, 0x2e02ae70, 0x0001f2 }, { 0xee969a0e, 0xa768d5c1, 0xf1cd8c53, 0x474e7123, 0x1f52819c, 0xe66c4142, 0xce4163fa, 0xc4dd83c6, 0x96aee28d, 0x92c6be40, 0x24c51d27, 0x9c8a4fc9, 0x14d81d15, 0x8f9ba228, 0xcd9e1b00, 0xddf8922e, 0x000186 } } }, { { { 0xc35fa86e, 0x2ac00ab0, 0xa70b3f8c, 0x25c6dfe4, 0xbdf6c885, 0x9813144a, 0x3c5029d9, 0xb41a31db, 0x37555963, 0xfa042aac, 0x510c93b0, 0x81b869c8, 0xd7280405, 0x604d572d, 0x70242890, 0xd3dc68a4, 0x00004d }, { 0xa9a6404, 0xa77de222, 0x9d86a70f, 0xeae994e1, 0x41683f80, 0x3732c0a2, 0x239b75f5, 0x75657b8d, 0xfde1799f, 0xa662fdc9, 0x6d9e87d4, 0x51336200, 0x21218975, 0xd3178617, 0xd7786f31, 0x49e2480f, 0x0000ce }, { 0xc05b306b, 0x52f0210f, 0x63afc045, 0x6d522c87, 0xe72072a0, 0xb2ab8d10, 0x981e2604, 0xb237bf62, 0xa5d6a84d, 0xfdc790a6, 0xd313401f, 0xc09f16ee, 0xd5f6ddbf, 0xb9643670, 0xfab8680d, 0x295e19ec, 0x000087 } }, { { 0xc8ddfbc2, 0x674d2a3, 0xf3b82108, 0x7e80cc3e, 0xdd16cd8a, 0x3128dde0, 0xb2c87af9, 0x974df6cc, 0xe33dde9d, 0x84eee40f, 0x33b7e020, 0x669a88b, 0x8e7911d9, 0xcee3fb61, 0x5e2eba6e, 0x5a2ce715, 0x000037 }, { 0x4dd2e39d, 0xfff45ed5, 0x261d9988, 0xf6d67e97, 0xe07c1b06, 0x7a0762cc, 0x85543b2e, 0x3c90b396, 0x35633606, 0xd82bd489, 0x3cfe3e4b, 0x97c5c10a, 0x2151cefe, 0xed752fe, 0x92a85e02, 0xaef5c308, 0x00013a }, { 0xe8b712df, 0x177627a0, 0x6f79e2f0, 0x3098fcb3, 0xd664f5a0, 0x1b6bb58c, 0x3a8d0e23, 0xce905430, 0x93a5189, 0x30a1a438, 0x83c7d02c, 0x9c1e94d5, 0xf2044743, 0xe5586850, 0x38916faa, 0xa6d50699, 0x00018d } }, { { 0x17a96a32, 0xf8f38944, 0x7900899c, 0x74c1516b, 0x6e6bcce0, 0xa835b987, 0x5f16887a, 0xe562ca2a, 0xcad1ca69, 0xdf0f2eab, 0xafd03821, 0x57b94f65, 0x74f68c7f, 0x5fd93338, 0x61d469d2, 0x637fed0c, 0x0001f9 }, { 0xfd11c272, 0x53647918, 0x782fb9b, 0x536e9c28, 0xf4323242, 0x2f91498f, 0xb90b7813, 0x4ec3c535, 0xb6c883b9, 0x8b683115, 0xf825a337, 0x561fdcd, 0xaf66430f, 0xce39e350, 0x7342f875, 0x2bbceaa7, 0x000172 }, { 0xd07afed8, 0xf0a55e78, 0x23df141a, 0xfba54031, 0x68a60a94, 0x97cb5451, 0x3b2bb649, 0x440770a, 0x8f60744b, 0xdfbf3f66, 0x8911bfff, 0xf127c16b, 0x14682caa, 0x31de01a5, 0xf74a261f, 0xca21bbcf, 0x0000d8 } }, { { 0x663aaee6, 0x90290aa4, 0x31b20414, 0xd2d10752, 0x37af86f7, 0xa7b01743, 0xd6dc067a, 0xef4bb16, 0x874e51d2, 0xb4475d8a, 0x20f1b559, 0xc1285c00, 0x146d7757, 0x3fc9b7f5, 0x284c7024, 0x6587a63b, 0x0000c7 }, { 0x8993bf6e, 0x14556c5d, 0x95c84a3b, 0x45dacefa, 0xc23f4f4c, 0x8440462, 0x9f48df1c, 0xcbb499b3, 0xed03d022, 0xe77b4a01, 0xca34d30c, 0x537ac90c, 0x6a79f6c3, 0xaaad1b2f, 0x1af9acb4, 0xc0fc8630, 0x0001e0 }, { 0xb79a44a4, 0xe30bb9e7, 0xdad65f6, 0xb1b9804a, 0xc3ef234b, 0x2d78876b, 0xd6de2661, 0xf1624705, 0x23ffea4b, 0x97d9ae05, 0xc2900bfc, 0x79e5f602, 0xca4ea715, 0x3c08bb07, 0x7cf7a90d, 0x38379e9d, 0x000133 } }, { { 0xc5492ea8, 0xfff4fa69, 0x789d0d19, 0xd1d49b68, 0x4359d20c, 0x411b7d21, 0xc8ba2b23, 0x3017a40a, 0xccaf672, 0xfe34c8c9, 0xd5ca2efe, 0xadd962bb, 0xce7e9207, 0xa13959ef, 0x55c4c1ba, 0xb55184ab, 0x0001d2 }, { 0xbfd1c79c, 0xb497384d, 0x1685ff3b, 0xe1c823d7, 0x9c80f5b3, 0xe59013af, 0x772bc7b3, 0x668b7ae9, 0xdea78b42, 0x9c625c6c, 0x256a54a, 0xae99e8a3, 0xdae038ea, 0x37f7518d, 0xc21cc27b, 0xe600d8fe, 0x000078 }, { 0xd268ac04, 0xb82ba814, 0x95368bd2, 0x98ad0bde, 0xc92a2f4a, 0xff09c5b3, 0x7bde4cc7, 0xf38cf943, 0xba38a38, 0xb8759504, 0xa50f1e43, 0x290ca60d, 0xfa5782e1, 0xd843b139, 0x31b60240, 0xd1e6b4b2, 0x000113 } }, { { 0xbf840797, 0x595582e3, 0xa101fde4, 0xf938962f, 0x31914db, 0xa0a69fbe, 0x167cf06b, 0xd3cb5a15, 0xc3dbb15d, 0xe58af8ef, 0x693195e4, 0xea637c62, 0x24eb26f2, 0x4a1b2879, 0x9f303585, 0x4c7c8086, 0x000052 }, { 0x485e2e7, 0x54f0c060, 0xaeb4979a, 0xc694d630, 0x56562c8e, 0x9d180dbe, 0xf138bb35, 0xd7d0b27, 0x93210157, 0x704a2798, 0xb91dffc5, 0x3f292c72, 0xeb5e0700, 0x278dec93, 0x2aaca7b7, 0xbc049536, 0x00004a }, { 0x5f3ec054, 0x6b091485, 0xdad1fcaf, 0x352f32c3, 0x494402a7, 0x6946de8d, 0x3fee5c5, 0x85724b50, 0x8dd89e65, 0xa66340b2, 0xea53e6b4, 0x94f8f09d, 0x59323cc, 0x2daf69ba, 0x19e28515, 0xfa663b15, 0x000066 } }, { { 0x8ed44b07, 0xc8b9e51a, 0x26df842, 0x6fefb16f, 0x5772c7dd, 0x152b7aa3, 0x95b338bb, 0x10004262, 0x16853019, 0xd3ac716f, 0x4364a6d9, 0xbbcbfa00, 0x82a888cc, 0x58f6197, 0xff51b3ac, 0xd75a1fd3, 0x0001ed }, { 0x98489629, 0x5daf593a, 0xc2dbbf4, 0xfcf9b7d8, 0xf6eb1ad1, 0x582906b9, 0x2fdad226, 0xb0580540, 0xc203b8bf, 0x708c3032, 0xdd01398d, 0x5a5608aa, 0x96d1747b, 0x7db6fa62, 0xbd153f43, 0x115fe032, 0x00011f }, { 0x45039422, 0x7130ff7b, 0xc2f396d, 0xe59a547, 0xd9aa012e, 0x47676464, 0x32f2e2a1, 0xc65bc750, 0x4c3fecaa, 0x9d070fda, 0xf8f13595, 0x1e8fe3fa, 0x611b11e4, 0x82830dd, 0x4d10e556, 0xb53bd162, 0x0001b6 } }, { { 0x3825b3c4, 0x40fbddbb, 0x59645540, 0x32406a36, 0xdc0bf09f, 0xb2a34c01, 0x8d60263d, 0x34a76a79, 0x9e97ae87, 0x6d027d1a, 0x578955, 0xdbd52e4c, 0x43fdb644, 0xee0a31ea, 0xf7a02982, 0x44d0fe9a, 0x00010c }, { 0x689ea60e, 0x3a12b6e7, 0x50506488, 0x676cc016, 0x2ab065ee, 0x3a2fd911, 0x2e3e08c0, 0x197e55fa, 0xa8d5af1d, 0x8d999fe0, 0x6c5cc3db, 0x718c0950, 0x3eddfe74, 0x7e7215f8, 0xc6e9e43b, 0x77a717c8, 0x000065 }, { 0xf075fd26, 0x4535d317, 0x5ad0afcb, 0x9f70759, 0xf1b09e64, 0xff3c8963, 0xc4ea76da, 0xc4f891db, 0xc97aa6df, 0xbeec56e8, 0x67e5eb45, 0xbd778a29, 0x90e81848, 0xe4d87017, 0x682bcf78, 0x6023ee9f, 0x000021 } }, { { 0x6edaaa8a, 0xc92ee51b, 0x580e6bd6, 0x70d0463c, 0x56d5ef07, 0xf4dad4d0, 0x28a9650b, 0xdfa1f9f7, 0xbf6227b5, 0xb2689555, 0x25c89899, 0x8c2a816f, 0x8e5824b7, 0xcf60c312, 0xfb485dad, 0x63a9469c, 0x0000f5 }, { 0xd6288066, 0x4a5932e9, 0xd77bbe54, 0x7af301cd, 0x305b8c39, 0x160132a1, 0xf7f377ac, 0x97b2a394, 0xe06a71fc, 0xfbb2062d, 0x2e8bc88a, 0xea895dd4, 0x808ec6cd, 0x91ea476f, 0xd3bf46c5, 0x61751389, 0x0000d9 }, { 0x768929d6, 0xb23a5f1d, 0xc8fd4b0f, 0x51046cc, 0xec69e010, 0x1edcbf4f, 0x61e76ff, 0x49708982, 0x63eadc5f, 0x808b5ff0, 0x6df4fffe, 0x2448b30d, 0x7008707f, 0x682872d4, 0x41efafa9, 0x84a1a10e, 0x0001a2 } }, { { 0x28284bb1, 0xc7859726, 0xc22249e2, 0xfb571f25, 0x699ff236, 0x97bec308, 0x67d5e765, 0x88c98d33, 0x97a0b763, 0x25e3c99f, 0x5c10118, 0xe86db5cc, 0xe2b4c1ac, 0x4bb3b3f2, 0xbfe1caf7, 0xec39cf7b, 0x000077 }, { 0xaa06ac1a, 0xe40266a7, 0x663f3f94, 0xf2285ee4, 0x5f5f332c, 0xe6ad858, 0xf52460de, 0x4cefe15f, 0xa06849f7, 0x220eb787, 0x9f627a8c, 0xfa5e776, 0xec5892ce, 0x33bc869a, 0xc0dc02f, 0x6ea21461, 0x00007f }, { 0x11375d02, 0x14526d95, 0x47675dac, 0x41998b0b, 0x77f9e37, 0x3c4da289, 0xcd63f0b4, 0xdc52ef9, 0xaf9df5a8, 0x48087406, 0xe0707b54, 0xea222bea, 0x4dab321b, 0x9369d2b0, 0x56ccf4f7, 0x8ba0e6ef, 0x000028 } }, { { 0xf73ebe25, 0x27221f9, 0xa422536f, 0x9f429888, 0x9819a89d, 0xb6585159, 0xbfb0a821, 0x73197bac, 0xef558ea1, 0x4ec18101, 0xccc4fe60, 0x52a86938, 0x80d53e04, 0xc4719ac4, 0x168c817a, 0x1a2e7bc3, 0x000021 }, { 0x62af0ea3, 0x606da84e, 0xab8de99d, 0x968fd78a, 0x86f09966, 0xa382ab28, 0x108d554d, 0x67e62110, 0x98074850, 0x783e920, 0xa509fae0, 0x288a08cd, 0xd862110c, 0x1df7203e, 0xcd861023, 0x5ecb7476, 0x00001f }, { 0xe3c54086, 0x5bb6d97b, 0x9bd467cf, 0x7d59dc96, 0x14d8f38f, 0x59718d41, 0xc093d276, 0x5e6ba746, 0x8721ef6d, 0xfa52792d, 0x96aed683, 0x989c92b7, 0xa4ff632c, 0x6439c9d8, 0x5bf2bdbe, 0x9f835a2a, 0x0000b0 } }, { { 0xb54d1fef, 0x87a34471, 0xeebfbaa2, 0x20f91057, 0x2f917106, 0xe8372ab, 0x129ccde8, 0xf60655e6, 0xa1078850, 0x128cb9e0, 0x946526fc, 0x32ec1e79, 0xff3bb66e, 0x514c0b36, 0x96471b53, 0xed8e27c0, 0x00007c }, { 0xc12178d1, 0x5c9ae37c, 0x8b88f338, 0x10bd92ec, 0x5377de81, 0x71ccc361, 0x56a09740, 0x2c5c8009, 0xa510c1de, 0xf0da195a, 0x1bc7970c, 0x27df0612, 0x62448f14, 0xe4491c4b, 0xde3f56a8, 0xe5019c23, 0x000162 }, { 0xde9131bf, 0xb6797916, 0x655090de, 0xa4b0be8c, 0xaf82c46, 0xcbc2051a, 0xbebf0c0e, 0x615f2ea5, 0x81b76f7f, 0x8d3e80e4, 0x2f8e62ac, 0x786e486b, 0xbfc32173, 0xf393e0a, 0xa153b6eb, 0x9c76bdf9, 0x0000ad } }, { { 0x3b37f2a, 0x423151d1, 0xc84ac09d, 0x68ffc30b, 0x906bd5a9, 0xadff1e2, 0x3c1be80d, 0x9e414e56, 0xaf09160d, 0x9697743f, 0xae68fbcb, 0x3ad249de, 0x75e3f39a, 0xcf537b73, 0xcd4d7776, 0x7b2e7806, 0x00012b }, { 0xfa0ace53, 0x1d5dd1b, 0xb355423, 0x24f65cd2, 0x8f265b6f, 0x543729fb, 0xc613b280, 0x5c727269, 0x7236db8, 0xe08bd0eb, 0xfba26575, 0x9889da16, 0xf046b4e9, 0xa5279421, 0x923aea26, 0xf17d857c, 0x00007e }, { 0x291cba4f, 0xe385a68b, 0xc2ea2902, 0xad95fa99, 0x4b94a7df, 0x4a1485bb, 0x975446e1, 0x596718c, 0xf9f316ed, 0xe278b0ae, 0x8316a541, 0x988e40f7, 0x65072e4f, 0xbc12d53, 0xff3d51de, 0x48d420e1, 0x000076 } }, { { 0xfb7e831e, 0xf8b4b06c, 0xb0bb78d9, 0xa9ac15b9, 0x290e42e6, 0x305434b0, 0x5c253090, 0x5017f5aa, 0xe75401ca, 0x99038a21, 0xf984dd39, 0x5c46a61d, 0x84b9e91, 0x592cbc06, 0x8e537bf9, 0x1f364a2e, 0x000114 }, { 0x4c1459bb, 0x95cdda87, 0x306629a8, 0xb2647172, 0xf616a7a8, 0x568fc18c, 0x30f3ffa1, 0x328098af, 0x4ba53eb8, 0x6a110e9, 0x4cd48bce, 0x1109b294, 0xc194b4a7, 0xd4b2971c, 0x6f5482ec, 0xc6d17f05, 0x000101 }, { 0xe946e757, 0xb72dcc1c, 0x99935ee4, 0xf979297c, 0x1e6e9864, 0xde9fb17, 0x800455eb, 0xd889db0f, 0xb85ebc5a, 0xa1dfa93b, 0x68902704, 0x7b3dc0f4, 0xc1adf354, 0x7c7abbb4, 0x5be7e499, 0x8c3b17d4, 0x0001a5 } }, { { 0x4fba9f3b, 0xc8c87465, 0x14c4c3f7, 0x72a35689, 0x170e2ae1, 0x89db47fe, 0x3a90f970, 0x3cda8bae, 0x9a0e221c, 0xd1ea6bd1, 0x4511db09, 0x9ca28c40, 0x41c39769, 0xe9c8bfd4, 0xaa18d305, 0xde8b45d0, 0x000178 }, { 0x32cced91, 0xc213287, 0x593836aa, 0x15657e8, 0x2a31f4cc, 0xfb3f7cf0, 0x822440af, 0x772539f5, 0x5b176078, 0xa5e9b724, 0xcd0d511c, 0xcf3b1c5d, 0x45ee27ed, 0x43e2e5dd, 0xb6677c9e, 0x5c27e997, 0x0000cd }, { 0x4f93ea60, 0xb9a4b68a, 0xea84cc93, 0xe027a46e, 0xe2f8e49a, 0xb426967e, 0xd1ad81f9, 0xedae270, 0x6d462fc3, 0x8e7f391d, 0x936bfedd, 0x2524816d, 0xb163c656, 0x77b541e4, 0xa148a715, 0x4db950dc, 0x0001f7 } } }, { { { 0x19e35595, 0x9e6d8a60, 0xc0dbb6d2, 0x4bfb09a2, 0x41f42428, 0x80dab4d6, 0x21fab3eb, 0x1d05521c, 0xbdcdb2c3, 0xf55767fa, 0xbd3d0d1b, 0x8fee0ab8, 0xa51864b8, 0x9208f579, 0x78ab3d72, 0xbc683e72, 0x000098 }, { 0xdbc6235, 0xf8067e3c, 0xc1a0557c, 0xf2f9113a, 0xc18d994a, 0xcb0632d1, 0xab036bfa, 0x22a2d392, 0x3440ef8f, 0xa1b28e10, 0x272b9a6, 0xc44b2c0d, 0xf2d7a45f, 0x4b2c1987, 0x7a52f63e, 0x878f6cd7, 0x0001f1 }, { 0xbbe8dacf, 0x14ac5b44, 0x43b0e70b, 0x1a8e170d, 0x81bf00ec, 0xc6d22034, 0xd473d108, 0xc22a7bfe, 0x2a7b4b20, 0x5ddeba4e, 0x91324cc4, 0x60deb513, 0x1a4041ce, 0x174e66d0, 0x802722fb, 0xd3d4ecf1, 0x000043 } }, { { 0xd0f76925, 0x915db92, 0x38d09601, 0xb824c025, 0xf313537c, 0x3f244c5, 0x64cc4998, 0xe39306ed, 0x9983500, 0x299dab39, 0x377469df, 0x84a2f69, 0xe0eea2a9, 0x9e772775, 0x5a3ea927, 0xc3fa8f3c, 0x00019f }, { 0xa6d468db, 0x8cd0e88, 0x438f42a2, 0x7d27310c, 0x15e22995, 0x6ba0092d, 0x268feeb1, 0x4fe67873, 0x19488452, 0xbca13c91, 0x7e712073, 0x1cf31aad, 0x1bd3b274, 0x10c51e43, 0x631fb68f, 0x8657e015, 0x000053 }, { 0x51725188, 0xadb09a89, 0xb20e7357, 0x2923c98b, 0x5ad0a701, 0x5f19266d, 0xe0d98992, 0xfea63100, 0x49381ce3, 0x2da99f95, 0x3b2970ce, 0xd20998c3, 0x1b554668, 0xfe3e7e1e, 0x44409722, 0xa5160844, 0x000167 } }, { { 0x3a0e6a22, 0x69bde760, 0xd75f7ca5, 0xbae03e13, 0xcd8244df, 0x28fb6849, 0xb4ba9715, 0x6cc09fcb, 0x37292799, 0xf5f6a99a, 0xe3800c61, 0x20e133d8, 0x98c88b83, 0x47bd3961, 0xf31edd87, 0xcf80142b, 0x000138 }, { 0x7c07b605, 0xbfce17d9, 0xe0f63993, 0x6f0fff24, 0x1707b600, 0xcb1f0c24, 0xfef455c9, 0x696df367, 0x4720cd42, 0x403a9658, 0x1f00a219, 0x2378a9b2, 0x1cc5ef34, 0x8701e89e, 0x4f67f721, 0xead4f0ca, 0x00018b }, { 0x60301be8, 0xde824e63, 0x45f6a2ce, 0xfa6d5fc7, 0x23138630, 0xa55a7b2, 0x8dfee3ad, 0x464dd7f0, 0x2fc7d0a0, 0xb69959d3, 0xa5b7a262, 0xc13dbef1, 0x62b63af, 0x698851cd, 0x916868c2, 0x76482308, 0x000194 } }, { { 0x2a8a296d, 0xf9e2169b, 0x4ec064d6, 0xf21df14c, 0xd60c4352, 0xeaeec9be, 0x54f5f9fc, 0x41bc7a89, 0x8e209022, 0x6df3d67a, 0xd89763e7, 0xdded0337, 0xab1fc269, 0x14e37e50, 0x5c893111, 0x46b6de93, 0x00018f }, { 0xd2b5f826, 0x1e7b95e9, 0x5c2bc9bb, 0x5f1d589d, 0xb3dc8513, 0x163e4708, 0xb09dea0c, 0x5b3fdcfe, 0xd9f53cd5, 0xbd050375, 0xb65469af, 0xc7aef191, 0x925988ea, 0x77016b4d, 0x20a30565, 0x993fe7e8, 0x0001b8 }, { 0x444922ac, 0x5e1a350b, 0x28f29570, 0x14bc4834, 0x350d84e8, 0xae994aee, 0x367ebe75, 0x802ba061, 0x843f0313, 0x1c91ac34, 0x9cac25e2, 0x3b2bc06f, 0x7b1c7f66, 0xf10a0db5, 0x67b3ffd4, 0xd655da26, 0x0000bc } }, { { 0xe1b129bf, 0x1a671e0a, 0xc1e46b5a, 0x7289d0dd, 0xc04d3783, 0x6735d66c, 0xf0841a51, 0xa949769, 0xdf799392, 0x7e577e4a, 0x88652704, 0xd3c7508b, 0x429ba7de, 0x8617b85d, 0x6714edee, 0x43844bc7, 0x0001ce }, { 0x7ea12ef6, 0x484cbd45, 0xf70deca4, 0xbd77d8df, 0x3ef0edfe, 0xd154a886, 0x98474eff, 0x6ee4f63f, 0x519b716e, 0xce9a6655, 0xc0c192dd, 0xf3e20b5, 0xff33b90c, 0xe561e385, 0x155b0dd6, 0xafe0d9bd, 0x000075 }, { 0xb0e42d68, 0xa40e4f60, 0x950ae5d, 0x966535ef, 0xc046b531, 0xeff577c9, 0x519b894e, 0xe596ef78, 0xa11f9aa6, 0x99f1236e, 0xa5f084a, 0x26a0e16e, 0x7d1ea330, 0x4d736a42, 0xdd9fc577, 0xad05f7f9, 0x000098 } }, { { 0xd18edc91, 0x18658f5a, 0xf7a53f65, 0xfd806a8, 0xfdfd40f7, 0x53ced3ca, 0x81025a5f, 0xa0d9d5c, 0x7b5d2736, 0xc54010de, 0xa6fd5924, 0xb9488396, 0xb7181883, 0x4ba13ea, 0x2679f744, 0xd65f17db, 0x00019e }, { 0x2c627098, 0xf85fbf3e, 0x30feb493, 0x210e7b3a, 0x3767a898, 0xb5903777, 0xb9586818, 0xd1846390, 0xe22b5037, 0xb3311333, 0xa7e45d9e, 0x92a8e862, 0xd6fb4bdd, 0x2acbbc06, 0xbb013ebc, 0x838add87, 0x0000ce }, { 0x0ea130, 0x5984313e, 0x5fb18187, 0xb4dee636, 0xbb94f8c9, 0xf1435ee5, 0x7ca442b4, 0x38d740f1, 0x2fa96630, 0xf87d3ba6, 0xe16f14c8, 0xf7426ca6, 0xfe04147b, 0xab7e7a01, 0x3286e69d, 0x20dbe5d5, 0x0000c0 } }, { { 0xb0e7ee82, 0xd13ce186, 0x1d0472cf, 0x1d2de2d4, 0xbc87ce1a, 0xb81cf75c, 0xfe33236e, 0xe99f8a43, 0x292a9bd2, 0xddcedc1e, 0x36e33157, 0x54e10c5a, 0x7f0f377e, 0xc7386422, 0xef87017b, 0x4877e7cb, 0x00006c }, { 0x3fc1f544, 0x89fe00d6, 0x343b96ce, 0xadcedbb, 0xe4ecbb84, 0x74b6ae60, 0x574c854c, 0xa5148524, 0x46c87bd7, 0xe5b5aa81, 0x764e0cec, 0x7136a119, 0xbffb07d8, 0x1047437c, 0x957c7626, 0xf8433113, 0x0000d8 }, { 0x947e1c8b, 0x87bd2661, 0xc67b0db5, 0xab4da635, 0x3a5301ec, 0x37e22af7, 0x5d95bfb, 0xd59f2f40, 0x7a9553c2, 0x7bac3c5b, 0xb738eb31, 0xc118ff19, 0x701d446f, 0x8de391f8, 0x592007e8, 0xf2673978, 0x0001ce } }, { { 0x9a4e436c, 0x4fec54d8, 0xbbbf35b9, 0x1ffa1e3a, 0x9963d493, 0x9820dbe, 0x4c6ed176, 0x52cd31c6, 0x4e03e7a, 0xe9d6193b, 0x2f7cdb67, 0x18ae069a, 0x28be0eb3, 0x1d4d3d11, 0xf2bf74d3, 0xa842cd2, 0x000158 }, { 0x85945e3d, 0xdb7bd0c1, 0x68a5324, 0x3ab8f477, 0xe3d87cf5, 0x8487285e, 0x35579301, 0xfb79447d, 0x5887eca5, 0x2a39d2b7, 0x1498a44d, 0xb1a94c2e, 0x5eca55d6, 0xef915f83, 0x1843c554, 0xfea210a0, 0x00019b }, { 0x3efa3e2a, 0x49fdba56, 0x7faa3ea2, 0x8e84ddf1, 0xe1c33659, 0xa8c2ed7a, 0x9e980d3b, 0x46cd8278, 0x997477e1, 0xb4762da0, 0x3a7c0046, 0xc238ff53, 0xa5c1dc9f, 0xcfd8eecf, 0xcd01258f, 0x60b729c7, 0x00005b } }, { { 0x66f0dff5, 0xfcfaa0a0, 0xd5e455a7, 0x3d28ef21, 0x8424ccf5, 0x22ae7ae4, 0x4d75bbc7, 0x71157198, 0xb4b52add, 0xd5ecff6b, 0xc90d733a, 0x3a5fb002, 0xbf5e5941, 0xd0fdc92b, 0x69e3be1f, 0x1928d11b, 0x000116 }, { 0x7bbe8242, 0xd2e90884, 0x3bdd5a1f, 0xa411a297, 0x8b31fe4d, 0xbe2617dd, 0x39aa0987, 0x66c17079, 0xa17b5c5d, 0xaf2cae3b, 0x5a0d5945, 0xbd36965f, 0x26ed6242, 0x53d5cf1f, 0x74dc1b1e, 0xdc21d595, 0x000069 }, { 0x786f52e0, 0xfe1f0227, 0xce926ae9, 0x2b4e6f7f, 0xafc64dbb, 0x37d7ab43, 0x6e580dfa, 0x34b8a3a6, 0x38524126, 0x1df375e1, 0x5af8735f, 0xe6dc917d, 0x56f36273, 0x2c7e97e4, 0x46db4d4d, 0x7236a2d7, 0x0000ea } }, { { 0x54b135b9, 0x13617745, 0xb2ddda83, 0xc9d64e4f, 0xfa22a30d, 0x60d4f2fa, 0x6cc92d69, 0xef065458, 0x9cadf2a7, 0x803eedc2, 0x885b6885, 0xdd22a883, 0x596cf1b4, 0x5ca162a0, 0x8abdb916, 0x80c761bc, 0x0001ea }, { 0x1a804fd0, 0x554faadc, 0xc9113198, 0xbb83b335, 0x7ab19b10, 0xdae0e47a, 0xc4115914, 0x80d5b34f, 0x13479da4, 0xeb66146f, 0xa0b3d75, 0xfcc45fd8, 0xacd1839d, 0xfcb4ed7c, 0x63fcbfef, 0x78fa4320, 0x0001d7 }, { 0x902fc7d, 0x7c833f35, 0x73021e05, 0x4a17e45e, 0x415599, 0xc50639e3, 0x989cdd09, 0xffdee8bb, 0x8d1fb8fe, 0x774bad58, 0x17ce13bc, 0x79175c51, 0x6e11f827, 0xbdfd0878, 0xb560e6da, 0x6374490f, 0x000071 } }, { { 0x3adf17ab, 0xdf0524ae, 0x7473eac3, 0x3c3f429f, 0x157ed4b8, 0x7f69c911, 0x67c2dede, 0x39c1e45d, 0x4f7af29e, 0x93a90ba2, 0xcbe6f9c8, 0x4cfcc57b, 0xe37ccd05, 0xaf278b9f, 0x21f478e6, 0x253865df, 0x000068 }, { 0x62bda312, 0x50e84f79, 0x26f0333b, 0x4c480b33, 0xa38c8237, 0x2d51058d, 0x22742b5e, 0xffcf78fe, 0x147cf2a1, 0xd0d55f7d, 0x1b393fa5, 0x6cd9f625, 0x1960284c, 0x9c5debd4, 0x6fd08093, 0x3186c29e, 0x00015d }, { 0x8902415e, 0xfa414fa, 0x6a403561, 0x42a97775, 0x51248e67, 0xf6d07455, 0xd99d9642, 0x8365f040, 0xeab86487, 0x532f5cc4, 0xe830cffc, 0x16843b03, 0x705d382d, 0x7d562c97, 0x80a726ea, 0x2f3ca107, 0x00019c } }, { { 0x81258816, 0xe3abec05, 0x9e22a600, 0x3597f08b, 0x4efdcb26, 0x9387e067, 0x392423a5, 0xf971ea7, 0x3aafef9b, 0x3298caed, 0x7290a703, 0x480c62bc, 0x2e9a24cf, 0x68f2411b, 0x6605c65f, 0xebbbcd89, 0x000044 }, { 0x86e53e51, 0xfda3daad, 0xc2c8e5f, 0x5b80818b, 0xec5de146, 0xa1663c28, 0xaf2dde21, 0xb96ac111, 0xedd57159, 0xc331d9fb, 0x803fac37, 0x9a1d5914, 0xd012b899, 0xde39f842, 0x607a0e3c, 0xc34a78c2, 0x0000db }, { 0x790306c8, 0x3d3fe967, 0x709d6639, 0xe15f56e5, 0x5508025f, 0xa89ec760, 0xe417bbbb, 0x97fffefd, 0xbc9ec470, 0xa0bb68e2, 0x8aace0e8, 0xceca7510, 0xcabbcced, 0xae7440fc, 0x917420c0, 0x9a737547, 0x0001eb } }, { { 0xa49d9bcf, 0xf238be29, 0x8499acb4, 0xc0e2a22, 0xceecc431, 0x814a15ae, 0x4039ed35, 0x49a7f515, 0xb6b4959c, 0x602bf6ff, 0xce85c357, 0x51e19962, 0xc01c3d57, 0x565b7044, 0x9ee9bf79, 0x5d80b8c8, 0x00003a }, { 0x63dc305d, 0x50a46fa9, 0xda6c6092, 0x1e48e3e7, 0x7145aae6, 0xddfc88b, 0x3da4b05c, 0x76223b62, 0x6c32c74a, 0x6f1928bb, 0x593f5d13, 0x101a2148, 0x8645a33a, 0x5556246a, 0x873c767e, 0xd00701fd, 0x00000c }, { 0xe1420d79, 0x209f5c87, 0x29052a6d, 0xccefd953, 0xe44b1899, 0xf54bad9, 0x86ce511e, 0x22b82258, 0x5469793a, 0xb457e479, 0x8aaf2384, 0x7e3c7d77, 0x14257791, 0x47a35829, 0x5377f869, 0x5983ce0b, 0x0000c2 } }, { { 0x3d412d02, 0x83eda405, 0x5369e32d, 0xb1921d0b, 0xfd150485, 0xad3b526f, 0xec5ff56c, 0x9f53d69d, 0x25df4cb1, 0xe01e54e1, 0x48e67a61, 0xe96e9d8b, 0x488f6a58, 0xcea22523, 0xacafe55c, 0xb218bd1e, 0x000071 }, { 0x9783c471, 0x425341e5, 0xc630fac0, 0xb897dd32, 0xc82b5015, 0x8a472795, 0xc7ac2dbf, 0xc2bb55d3, 0x5e217e77, 0xad4ca8e8, 0x1ce8e018, 0xffbbd5e4, 0xe30b559, 0xf2b43d0e, 0xf617554e, 0xa25fdbd8, 0x00006a }, { 0x623a03cb, 0x5cfa944, 0xd95189f4, 0xb693499d, 0x1cea5dc6, 0xb84af135, 0xa87934f1, 0xf3f5949f, 0xacb2b99f, 0x8c5c6d2d, 0xd30944a7, 0xa4b350d7, 0x46020846, 0xd82762c3, 0x4294330a, 0xf9f0d8c1, 0x0001bc } }, { { 0x4b189d2, 0xb3d6e198, 0xf57a93ce, 0x10eba0d9, 0xbf4bdf3b, 0x2e098849, 0xe7de6999, 0xb699033f, 0xa2005805, 0xc18076a0, 0x70852cd2, 0x2f804b1d, 0xff5b772, 0x9d83d7a6, 0x4056f94f, 0x6f9a0a21, 0x0001fb }, { 0x3aead4e7, 0x804a0ca5, 0xcd2e38fc, 0x3038886e, 0x78bac172, 0xd4b655a0, 0x1a94dae1, 0xd44e5beb, 0x3ed23d6b, 0x7da3304a, 0x5941b18b, 0x16bddba4, 0x872543da, 0x93a3da48, 0xd9197ef6, 0x10631776, 0x0000a1 }, { 0xc59247bd, 0xb85d1287, 0x33cd350d, 0x9a7be941, 0x9d7cf8f6, 0xcebfd259, 0x41b93389, 0x553487a, 0xb0663f54, 0xc58e4ac0, 0x20e8f6b1, 0xcec3b215, 0x317b6bb9, 0x42398c1d, 0x772f3528, 0x8a7c547, 0x000103 } } }, { { { 0x44210b46, 0xbe28393c, 0x3844d6ee, 0x2e2dee8f, 0xb60220c7, 0x38736e3f, 0x9a95e1c1, 0xdafd4103, 0x603a0edf, 0xf289f520, 0x39329362, 0x8f6355cd, 0xb80b1a38, 0x8b30a374, 0x1d898d98, 0xf77862f3, 0x0000cb }, { 0x73642271, 0xf0ca8dc, 0xe172be1f, 0x80b615ab, 0x57930849, 0xc336059e, 0x2423fa2, 0xa9e01c5a, 0x96b4f69d, 0x4306cf31, 0xc279db78, 0xc3b069c6, 0x21a1bfbc, 0xc59ab678, 0x4b18ceff, 0x64256815, 0x00014f }, { 0xe65661b, 0xa0f7ae24, 0x4b0d1586, 0x7c3b152c, 0xca6b16f7, 0x3dd13b86, 0xf4353731, 0x13e23dca, 0x20dcfea9, 0xd7c81983, 0x40f23ec6, 0xbb2e9fad, 0x451be799, 0xd23cf11c, 0xe3da8072, 0xd31dff6c, 0x0000ef } }, { { 0xa60d9bd0, 0x2727ae4e, 0x3698b269, 0x2becd4e9, 0x54d77c59, 0xfb53d8a7, 0x3892fc36, 0x155a87f1, 0xa7ebe027, 0x6d5e6d63, 0x8558adc4, 0x45d5eec3, 0x85d58dd4, 0xf1b274fd, 0x60911747, 0x2b6c136d, 0x00007b }, { 0x4b5f58a3, 0x688318a5, 0xde7fb5e8, 0xd289c6e7, 0xbeeb059c, 0x5968b56d, 0x21e0a3d2, 0xa54b8702, 0xcb842bbc, 0x8c6e0844, 0xc87fcdda, 0xd0e942c7, 0x24fc0cca, 0xa7cbe12c, 0x54868d1c, 0xd583773f, 0x000136 }, { 0xc593990a, 0x92a55364, 0x61771069, 0x52846edd, 0xb289ff11, 0x87bec43f, 0x1be5fc08, 0x3d507e2b, 0x60f980d5, 0x7660c581, 0x657789e6, 0x3d97c5c5, 0xb9a24f1f, 0x3e25cfb, 0x775035de, 0x44e69341, 0x000161 } }, { { 0xdf14b605, 0x68e8e0b8, 0x7a5e0697, 0x8811cebf, 0x6fb89211, 0x715a8cef, 0x4440be89, 0x450a58db, 0xeb4812a1, 0xa51960dd, 0x84cee1ef, 0x4dbfa47c, 0x62f871fa, 0x1618f9c9, 0xf50dddb3, 0x2d31f687, 0x00009f }, { 0x29d7431, 0xd0610304, 0x69da6852, 0xc5f3b965, 0xb524dfb4, 0x3aeba73a, 0xb984e472, 0x68b49aa6, 0x11aa590d, 0xed242c8c, 0x6221f69, 0x9809b2af, 0xb050e503, 0xce21ec08, 0x7be160ed, 0x2a42cd49, 0x000042 }, { 0xfee91f10, 0xe33088be, 0x246a9dc3, 0xc84167d4, 0xd2ce60a1, 0x4feef81c, 0x8bbdff9e, 0x10f1619c, 0xf6e78fe1, 0x80ead0d9, 0xf9e28eef, 0x56bd8e81, 0xcdee2b6, 0x3dfbbab1, 0x4f202e36, 0x9ca5af22, 0x00008a } }, { { 0x166eb434, 0xa75bf436, 0x780bd090, 0x5aa46363, 0x60cdd3ac, 0x66ac5a69, 0xf85b7036, 0xf2ee4bef, 0x235d2bb3, 0x8bee8e99, 0xe320d98, 0xabfaf847, 0x31db74ce, 0x1e0baefb, 0x6bf6043e, 0xb58593bb, 0x00002c }, { 0x114908a9, 0x2b2db432, 0xcd506f86, 0x9c8913d0, 0x3fc56e5a, 0x3c5b091f, 0xb416b064, 0x8ce00f9, 0x697e606b, 0x2c5f62b4, 0x5f9a1d5c, 0xd00c4de8, 0x84386478, 0x74cb9c5, 0xbd576e5d, 0xe5608093, 0x0000cb }, { 0x59ad2632, 0xbda22002, 0xd78fcccf, 0x66546a63, 0x91029a16, 0x3b008431, 0x1ac04abb, 0x61f02871, 0x5c85f725, 0x577eb9b2, 0x7e66fc61, 0x7ef5d58f, 0x55e6681a, 0x50498dba, 0x8ad17ed, 0x41656675, 0x000041 } }, { { 0x9b47e9dc, 0x7e894815, 0xe16b96d4, 0x1a1603cc, 0x91c3b817, 0x7b2a12b8, 0x665d2a62, 0x7eec1e60, 0x28ab1e1a, 0xcc996297, 0xa3e4bc03, 0xa1b21ead, 0x22689a6f, 0x9a9222db, 0x93ca8ce5, 0x57c98a5, 0x0001ad }, { 0x563b77e0, 0xf022676b, 0x67e30fdb, 0x9454f144, 0x805cbb01, 0xcf6370f2, 0x6e740bd5, 0x928585b4, 0x908c161e, 0x26d68265, 0x1c00aab3, 0xccae1ab1, 0x90b1e647, 0x7736ca10, 0x99163335, 0x6dda54ac, 0x000121 }, { 0x92d491ee, 0xea3fd630, 0x82b017c, 0x1aaf3607, 0x212f13db, 0xe76e2d42, 0x7e157804, 0xce9f22c6, 0xa3aa9279, 0x639b1131, 0x6b1e81c9, 0xd054b47b, 0xb359fedc, 0x833cd60a, 0x9f16c9d3, 0xd5e3d4a9, 0x0000a8 } }, { { 0x7f70aa54, 0x39bf0e, 0x44c6794, 0xfc653c6d, 0xce353391, 0x727eb075, 0x99316c0, 0xf12f81c3, 0x73d184d1, 0xd3f1d261, 0x58592400, 0x56f50793, 0x41271f1b, 0x9d3485fe, 0xd5597e44, 0x18cc21f0, 0x0000d3 }, { 0xae92af37, 0xf7cf46e, 0xb6638743, 0x265111d1, 0xe83eb24f, 0x2c361578, 0x8d2364b5, 0x89934599, 0x7125bc, 0xd3d0ab24, 0xb4fb020c, 0x71dd407a, 0x573f6784, 0x6a4f8254, 0x51ae90c8, 0xabf8fdc0, 0x000174 }, { 0x23a716a3, 0x33834bc0, 0xeecd009, 0x395696b2, 0xaca5e2f9, 0xd47ff460, 0xefd1b3de, 0xde84aa76, 0x3b1c7c11, 0x63ff8f8, 0x3eabfbb0, 0xde7c839e, 0x2ccfec31, 0x59ac07e5, 0xa4017cdf, 0x21d4d1ce, 0x0001b3 } }, { { 0xa27dac52, 0xe3421e93, 0x5ad1a3d8, 0xc4b54c86, 0xda607a0c, 0x673ffb32, 0x6ff22eb5, 0x26001d09, 0x7b04a322, 0x18613565, 0xd811d667, 0xcc571f5e, 0xa0e8fb49, 0x832f361f, 0xbbc91dd9, 0xe83b9623, 0x000060 }, { 0xa7dc2d5e, 0x9a34f975, 0x444bfe6d, 0x92b198ca, 0x301ab161, 0x1c4541b8, 0xeb21f283, 0x13d67911, 0x4e465174, 0xc38f5ba5, 0x6a9122fd, 0x76ffb356, 0xb8f089d0, 0xe8f173e5, 0xace443e8, 0x8d60c9e6, 0x00002c }, { 0x5729826, 0xbf9410ae, 0x624a6f3f, 0x7cb36f49, 0x4a4e0ff4, 0x3bf6faa5, 0x8fe4f760, 0x644088be, 0x5343edee, 0xd129f62a, 0x1b7e727d, 0x240d0f57, 0x502cf3d0, 0x8e6ddba8, 0x271937f0, 0x86050cae, 0x000026 } }, { { 0x1db9cfd9, 0x4b57930e, 0x60a0ede2, 0xa812b38b, 0xb4de832f, 0x66dc2a62, 0xad539ec2, 0x8fa53f65, 0x9a4101b, 0x1f30f800, 0x2fc451e0, 0xfbe2bcbd, 0xc454d48e, 0xc6a834d, 0xb1455c3a, 0x6eb8bf86, 0x00013a }, { 0x627cd995, 0xb214aa54, 0x3d5da5c2, 0x5d5c89c0, 0x1c531b1d, 0xbcc0bb70, 0x6c0c4c3c, 0x49f3e79b, 0xd8df9b09, 0x1f7508c6, 0x7640adb4, 0x32d5395b, 0x55c2d64b, 0x9061bbaa, 0x62d12ffd, 0x2bfa3ba8, 0x0000fa }, { 0x7b59c16f, 0x3e930f9e, 0x11fa3b0b, 0xb91de126, 0xcb345053, 0x524cfba8, 0x84bd59d7, 0x5887d3f8, 0x53e97ed0, 0xdd6d262f, 0xbc78cc88, 0xc61c2763, 0x3adcffd8, 0xf05c8ee9, 0x71c846bf, 0x8d21e8c8, 0x0000b5 } }, { { 0x60236bd8, 0x4aa89465, 0x22d5b269, 0x677d85e8, 0x8d356a3a, 0x3962edb6, 0x1a1af94d, 0x82321bb9, 0x3d7cd3e1, 0xfbdeaa8, 0x2db6b75f, 0x2725c44f, 0x50105f3b, 0xa349866d, 0xa144f680, 0x72e9107c, 0x000152 }, { 0x89a24bb4, 0x6f5c0ac, 0xc5e68442, 0x9939809, 0x45e3f9af, 0x4ed2c88d, 0xd3ae206b, 0x444f64bf, 0x665b2a91, 0x4e0fc843, 0x48211f2e, 0xbb39c80f, 0x36916e36, 0xe483c2fe, 0x7ba7ff77, 0xfa78a0ea, 0x00011b }, { 0x3a4ffb05, 0x567ceb10, 0x2e3c06d4, 0xfc50a7f4, 0x3f6e8469, 0xfe72a17d, 0x3784d569, 0xdb5601f5, 0x332a841, 0xaa8fff53, 0x925c085a, 0xb60df9db, 0x878f72e0, 0x9be077de, 0x2c067d88, 0x74a91617, 0x0000ec } }, { { 0x953b5f90, 0x13d367b4, 0x3c6acb0c, 0x76e8c46d, 0xef7ebf16, 0x25d36f2a, 0x31510eb4, 0xab04e691, 0x48d7e4ff, 0x64fcc35f, 0xc42e7bab, 0x8dba31ad, 0xeca76452, 0x5a3f2246, 0xbc5a9114, 0xad18486, 0x000058 }, { 0x667c767, 0xc19a1aaa, 0xc98fe551, 0xca073372, 0x9c8b3982, 0x1f9fc474, 0x2884b404, 0x361f151e, 0x84607fe8, 0xe3959735, 0x41d20bcb, 0xb9c6fe90, 0xcaba58eb, 0xea4cca39, 0x3d449350, 0xa164d37f, 0x0001a9 }, { 0xf87edadb, 0x6011a534, 0xb715d585, 0x65e9ce5c, 0x2fb965a5, 0xe176ae67, 0x18fc5aa0, 0x8aa8ff8f, 0x4d88e2e8, 0xbc673e68, 0xf26c5692, 0xc85f636d, 0x6ec9e205, 0x998df66e, 0xe59c5f38, 0x94809d13, 0x000020 } }, { { 0x3da80587, 0x9c19b837, 0xe6c968ca, 0x2cd09738, 0x7025fd06, 0x67576860, 0x49d97ffc, 0xca638afa, 0x13d8238f, 0x1d1cdf07, 0xbb29ac96, 0xcb6ebded, 0x5d684ea4, 0x39231992, 0xc18e19de, 0x88a58729, 0x0000d1 }, { 0xf16e20f5, 0x3f5d30, 0x990b68a5, 0x88aa9722, 0x8a3f1a9b, 0xebc1d861, 0xf4dc5dc0, 0x1005e6a4, 0xa8452788, 0xc48ff42c, 0x998cf2d0, 0x1cdec2b3, 0xeec77e42, 0x950371c7, 0x11b4743e, 0x84be43be, 0x00001b }, { 0xfb6aeb3b, 0xba680ba3, 0xac872b42, 0xf2e026bd, 0xb0a8408e, 0xd4924b14, 0xc66f1412, 0xc6b5b473, 0xbf30a440, 0x7fb0db59, 0xa79b198e, 0x279c5dea, 0x53f545d4, 0x99ac159e, 0x2fab201b, 0xee5d1229, 0x0001f7 } }, { { 0x90bfd638, 0x8a0f8d09, 0xc1adf0c6, 0x90214c15, 0xe08c15c5, 0x98262e23, 0xc1af78d8, 0xb5750868, 0xae26d89b, 0xffd486f, 0x2ab4e6ac, 0xf5072e9d, 0x3ec2bd7f, 0x8e022ef6, 0x52918136, 0x6862beea, 0x0000ca }, { 0xf9e2af4c, 0xe56e4e6f, 0x6dc483b8, 0xae1031ff, 0xe3448dec, 0x3865b194, 0xc31e7643, 0xb6f068b, 0xd75f0763, 0x4865f122, 0x6c3f2a5a, 0x6530c9a, 0x49154c85, 0x520c9b83, 0x3b117f69, 0xbd00368f, 0x0000c7 }, { 0xa17c088a, 0x4b613219, 0x726e6df0, 0x43073207, 0x25a58340, 0x6d67ab10, 0xcfa44b07, 0xaddde6c0, 0xdb42cc60, 0x3e0d746d, 0x749f4144, 0x675ff091, 0x3a6d73e6, 0x825cca33, 0xf827d045, 0x3ee77e66, 0x00017e } }, { { 0x120bc2fa, 0xd3ad9dc1, 0xa49708ef, 0xf805b6e0, 0x5d37c913, 0x1f31600c, 0x1279aef8, 0x4ad3e2c0, 0x7a0f4402, 0xf48bb514, 0x327f996, 0xf9d4e799, 0xa26fbf05, 0xedb96471, 0x76b9a52f, 0x41112e41, 0x00007f }, { 0xeb72bc06, 0x9461237b, 0x60e7e7bb, 0x5b4bbc0d, 0xfea77551, 0x38dfb639, 0x27d1b745, 0xd967c70a, 0xcdf40822, 0x85078c5f, 0xad13f8ee, 0x910e1c5, 0x24995265, 0x3c0f379f, 0x74a2e764, 0x20280f94, 0x000022 }, { 0xa0bbca8e, 0x7b4e3315, 0x626c264e, 0x882c9ccd, 0xa67aa754, 0x61d52841, 0x978e4e41, 0xea145c32, 0x91c4bd01, 0xa9de37a1, 0xa95b1071, 0xa60abcd2, 0x8d6a8db3, 0xf0eb290b, 0x2eba0be5, 0x257f658a, 0x0001b3 } }, { { 0xeada0bd8, 0x655da711, 0x7c952298, 0x7cc17527, 0x6981e492, 0xba814e39, 0x73d675c4, 0xde7c9c9d, 0xe9dfd80a, 0xed46873d, 0x211c5393, 0x30b8b238, 0xeccee937, 0x8a2e4139, 0x4f12695d, 0xd25be839, 0x000160 }, { 0xa9d5d431, 0x53886856, 0x73a5e07e, 0xb26dc8f6, 0x89f9e773, 0xd2c501a3, 0x175ca5f9, 0xe734a57d, 0x15c8d7d8, 0x281e0b6f, 0x92259af3, 0x3bd517b3, 0x1e4af371, 0x644aebfb, 0xa815b1a2, 0x49ad60dd, 0x0000ea }, { 0xe04a8f23, 0x17ffb3d3, 0xbf36b71b, 0xf18e6369, 0x7fad71d5, 0x97b5981b, 0xee723328, 0xf36b6d7d, 0x19fc2bb9, 0x4fd5d276, 0x276a5820, 0xdb2ae2b0, 0x45e2497c, 0xb852f3ae, 0xa8526996, 0xb10818ff, 0x00016b } }, { { 0xd423de9b, 0x2ac90128, 0x729bac29, 0x71cfde36, 0x473bd4be, 0x6530b31d, 0x9bb34b79, 0x6c79cc8, 0x230fd195, 0x95b3535, 0xf8e61f6f, 0xe8ffac40, 0x96fde323, 0xfb7e1677, 0x4a4aa2f6, 0x71f55d2c, 0x00016c }, { 0x3b61bdf2, 0x8886e8e0, 0xde98aaf8, 0x1d296e86, 0x3f8907de, 0xe5b29367, 0x39249603, 0x620c28b8, 0xd6cd1406, 0x2ed31523, 0xc097c9c2, 0xf8be8286, 0x7e75bb25, 0xeba725f, 0x9b3c08bd, 0x193a68b1, 0x000188 }, { 0x89431e4f, 0x864af1b3, 0x3230d097, 0x75531493, 0xcb5f9b68, 0x7206c331, 0x29577a5b, 0x1c451c34, 0x90a8b246, 0xb89bd408, 0x904e4eb4, 0x1ba3d498, 0x1e63e2c, 0xfcea667d, 0x4da0ad7, 0xbcebe963, 0x00014a } } }, { { { 0x77a6755, 0xcf219297, 0x73311924, 0x822854a6, 0xe0742886, 0x7cb16e9e, 0xfbdf623, 0x5e85f4b3, 0x6a950cb6, 0xd5c8ddd0, 0x7da407f, 0x7f5081bd, 0x5586d067, 0xf6bdf243, 0x99e8524f, 0xbebc306f, 0x000187 }, { 0xed0dc7f7, 0x58555257, 0xdab0a0b7, 0xd698d462, 0x4febb17, 0xf359492b, 0x279584bb, 0xe9ef66d, 0xc303652a, 0xd2b89f9c, 0xf38d967d, 0x3c6a5ab0, 0x4fbfdc86, 0x29ce6385, 0xfe8029aa, 0xb3bf7581, 0x000168 }, { 0x62bd3a9, 0x8dbf56a4, 0x895eae93, 0x99def98c, 0xbd2d199b, 0x5899d360, 0x6b0c539b, 0x98714b26, 0xb7995c36, 0xb2ea3fa9, 0xa8e37a22, 0x70ef4de8, 0x7acffd62, 0xa97fc619, 0x805907cb, 0x27fbc17e, 0x0001e9 } }, { { 0x1cfea72c, 0x6affe04e, 0x71c0a0a5, 0x1374fa5e, 0xce18d4fc, 0x7b47c461, 0x1d015392, 0xc5eff9f6, 0x7e4fca02, 0x3cad3fe9, 0xaf345df1, 0x8a336eb5, 0xfa177263, 0xb5d12f96, 0xccf5599a, 0xc300eb97, 0x00003b }, { 0x62c8c9c6, 0x8ac4e8c5, 0x8aa78926, 0xd98d715e, 0xa416110b, 0x9597390b, 0x90fb45ee, 0xafe17771, 0x88b8e7f9, 0xaa5da178, 0x23245115, 0x5a324d21, 0xf9544a04, 0xc03d913, 0x7c915248, 0xbca95db, 0x0001c1 }, { 0x3d004aae, 0x7ed97815, 0xc4bef325, 0xa2affddf, 0x2047883b, 0xc1849575, 0xeab830d, 0xeb8ae566, 0x32455592, 0x3d6a6fc7, 0x890e86bc, 0xa3d797d6, 0x33caaaa4, 0x53df1e94, 0xa39b835f, 0xe2b44253, 0x000046 } }, { { 0x5f215cf3, 0x8a29b525, 0xac13eef1, 0x8ed7c719, 0x2c7c2a94, 0xb4121447, 0xe41bf58c, 0xde259423, 0x75e8eb0b, 0xbe0183b3, 0x9b13ee7a, 0x38ed4bc5, 0x845a724e, 0x588b9260, 0x6dfdd13f, 0xaededa19, 0x0000a9 }, { 0xe9b51c55, 0x12f724f3, 0x7428bc13, 0xda423590, 0x464b134b, 0xba552448, 0xb010b5d2, 0xcbdaba56, 0x6d210b89, 0xe4f69cbb, 0x93abb0fb, 0xac700e65, 0x307b10ee, 0x8b1569ec, 0xa8f6571d, 0x711e1c18, 0x0000ff }, { 0x14ad7bea, 0x978ea8d8, 0x21115d6b, 0xb0d8f5e8, 0x22b86c93, 0x7d0a5ad1, 0x25ec8481, 0x45e2dd3e, 0x9aee3bf5, 0x96d2406, 0x4b6d51f6, 0xb785fd4d, 0x788c8be3, 0x69e787b, 0x88d220ed, 0x8bde523d, 0x000011 } }, { { 0xbf86956c, 0x7af046fb, 0x60c436f5, 0xa00715b4, 0x43ab0e5a, 0x5ce9dbd2, 0xff1b4f9b, 0xbf8f3ddf, 0xdd705a6e, 0xa2aa6eea, 0xb164f9c4, 0x4fda1665, 0xfde62a83, 0xd010cbf, 0x4cbb995f, 0xb7fbcaa3, 0x000057 }, { 0x654a1f96, 0x9de364fc, 0xd80f29fc, 0xcb7f0f27, 0x4be12f4f, 0x9e3cce18, 0xf9818d5f, 0x9ba6869d, 0xef3fa7b1, 0x9c44a78e, 0xb3a9dd75, 0x193c489a, 0x8260f558, 0xfc8cfa61, 0x7a8af7dc, 0xd5da9821, 0x0001aa }, { 0x610d670b, 0xf3cccb28, 0x53123caa, 0x4fae619f, 0x6643d4b9, 0x976735be, 0x493507f2, 0x393e9cb5, 0xdfca2b42, 0xfe31da79, 0x69c5ea32, 0x5c854c96, 0xf9f9b9e, 0x7897c09d, 0x98db67bb, 0x7646429f, 0x0000bf } }, { { 0x583959b3, 0x90248afe, 0x5e5852dc, 0xadf5ac62, 0x221e7946, 0x44a4ccc6, 0xb62da095, 0x13ccc38, 0xe2566bcb, 0xed261eda, 0x84826e4d, 0xaccf8307, 0x31355d45, 0x61bfb021, 0x21f47a47, 0xb8477ee8, 0x00019a }, { 0xae7ab021, 0x51419ecc, 0x31c71d6c, 0xdf28a516, 0x524a297a, 0xdf52557b, 0x3a8e9742, 0x61e44906, 0x7af6e57b, 0xacf0a51, 0x764bad1d, 0x6a11fb72, 0x9cd6b67f, 0x423e9f0e, 0xfbac8465, 0x889c3fc7, 0x00004f }, { 0x849d5d6, 0x1c16d606, 0xb9697628, 0xc4a8ad9c, 0x3ce9dd03, 0x3d81f3cc, 0x48c54184, 0x6215be1e, 0x7ae522e0, 0x65fd07eb, 0xd98f7f07, 0x503cfdbe, 0xf375760a, 0xd3a9e3bb, 0x9ebd1a36, 0x29bacb4d, 0x000166 } }, { { 0xe2375039, 0x3f0e6ee8, 0x72ffa531, 0x9629b8bf, 0x1e0dea4f, 0x240dd85a, 0xbd12aed2, 0x2810175a, 0x8a71ef78, 0x58d33d66, 0xcc32dc22, 0xa0f3eb4e, 0x8b68a380, 0xfc7215a3, 0x1d042704, 0x668b057, 0x00012b }, { 0xf96c51bb, 0x24e250d7, 0x3af3afde, 0x9b041515, 0xe8f3b4a9, 0x906443c0, 0x1df56057, 0x16bf7f30, 0x8ab644c2, 0x341700bf, 0xba942649, 0x114998ae, 0xce91d4de, 0xdcec09f6, 0xf5925d1a, 0xa1394c1e, 0x000091 }, { 0x6a6e291c, 0xe7ec4bbc, 0xe1197743, 0x1e8e9a37, 0xf4b2fe81, 0xcc304cae, 0xb5f0256, 0xaa56dfd6, 0xe23c024b, 0xb15a177b, 0xfcbc431c, 0x21551eee, 0x578579f2, 0xb0b0e92e, 0x608f0ee9, 0x736402b9, 0x0001a7 } }, { { 0x7e2d65d8, 0xa9ee4374, 0x48d577fe, 0xf9b682c4, 0xc273cae4, 0x7da43e2e, 0xc517298c, 0x6711e25a, 0x478ce33, 0x90347168, 0x32c995d3, 0xb58e491f, 0xdb2b50ff, 0x97d71519, 0x22e8d549, 0xf4ca968d, 0x000074 }, { 0x326a942d, 0x6b718e3e, 0xc4955a3a, 0xe82f18f7, 0xcf9b97f, 0xa85e6dc7, 0x536a8950, 0x27f8bc0, 0x34c3d201, 0xfc018dfe, 0x317d12da, 0xe9bc9fb6, 0x50f66a29, 0x2c5d5390, 0x52b293f5, 0x9afe0e06, 0x000126 }, { 0x7fd65a93, 0x35405cbe, 0x13cf627, 0x2172f433, 0xf32a3838, 0x96ad37a, 0xb52922e8, 0x59d9e238, 0x1ebcfab4, 0x5031c28, 0x761be973, 0xc3e0f11f, 0xd15c55d, 0xb324808e, 0xe0977339, 0xa1dc31da, 0x000130 } }, { { 0x17709fbd, 0x78ec6c42, 0x17b29a5b, 0x95e709b9, 0xa1199e9f, 0x4451919c, 0x7f8ee764, 0x2c1173fc, 0x7b89171, 0x73750663, 0xb4b96719, 0x5ef14a6b, 0xfe08e2cd, 0x2bb91ae4, 0xfeaac4dd, 0xc3cdff60, 0x000145 }, { 0x2059fc1b, 0xee24ed3d, 0xea9d3324, 0x43daf82f, 0xba1207d5, 0x91ee84f8, 0x4dc27cbc, 0x1fa198b7, 0xf715fc3d, 0x55be48ad, 0xb820c4fd, 0x7ff73395, 0x4571bdec, 0x82050b4d, 0xe4aab02f, 0x745363, 0x0001b0 }, { 0x7610f2db, 0x8dc250c1, 0x4540e998, 0x2d62146, 0x1114b912, 0x89f3ebdf, 0x5f63edf6, 0xafbfb248, 0xd6072449, 0xb5ae95b7, 0xff92b649, 0xf0801d7a, 0xa56867d, 0xc09ecef8, 0xd1b4b32c, 0x5b9bf4bf, 0x0001dc } }, { { 0xd3687c10, 0xa7bac0f5, 0xd9a3a140, 0xdd2a3b58, 0xfaffcd22, 0x6f59f459, 0xfe55cdc3, 0xc2d37c65, 0xae9e7cbe, 0x3b420827, 0x6115d05, 0x42466224, 0xb8b58f77, 0xf9d325e4, 0x23795048, 0xdda179a2, 0x000032 }, { 0xf53734bd, 0x305cb64e, 0x3b0db414, 0xca728e50, 0xe6763fd6, 0x6c8d8a7e, 0x56a5f70b, 0x851def11, 0x8688a5cb, 0x76879872, 0xcc949c98, 0xde92702f, 0x9061e67c, 0x2adab913, 0x63db0874, 0x9107add3, 0x000060 }, { 0x3eb2d89a, 0xf9eba30, 0x3fb94366, 0xd4e9389f, 0x51f3470b, 0x8f7e115d, 0x5fe2bd57, 0xa667ddb8, 0xcb5fccb9, 0x6e1c6836, 0xca8a1296, 0x75d1f562, 0x4eef1048, 0x2acd8e15, 0xa432e542, 0xbf13b3c0, 0x00018e } }, { { 0x693cd33b, 0x80625eeb, 0xff75ce31, 0x740c1831, 0x299d0cb6, 0x92988543, 0xe55878d6, 0xbb540b78, 0x9aeb0b78, 0xb73765cd, 0x9513ac0b, 0x6abed237, 0x4eba51a9, 0x7aefb5fd, 0xbd1cac54, 0x5f38d8d9, 0x0001f9 }, { 0x30e5654b, 0x65b75404, 0x98bac9de, 0x1a2d030, 0xe9b3503d, 0x9bab3b71, 0x96129676, 0x8a683c11, 0xb56778ab, 0x5c6f3254, 0x8fb0b3a2, 0x1cab86b1, 0xab98ed37, 0x2b8606c3, 0xd37eabfc, 0xb1138613, 0x000191 }, { 0x20918511, 0x44994453, 0x2e808495, 0xdc96f9fa, 0x26b01281, 0xd5592311, 0xecb0b352, 0x91992760, 0x1b438758, 0x94486fed, 0x15b72c9a, 0x36f319b9, 0xd8cec855, 0x619e8e54, 0xb478f1f9, 0x5771dc1d, 0x0001ef } }, { { 0x8d2d3407, 0x94e64f79, 0x2b1fcd1, 0x4e208fdd, 0x911ab91d, 0x1073fd61, 0xf7bff051, 0x31c09659, 0xe452eaca, 0x99ac5c0c, 0x18a3798, 0xca2b58dc, 0xf88a0517, 0xd1b7909f, 0x814d2500, 0x9ff577df, 0x00000e }, { 0xb5a2fb77, 0xddce991d, 0x2274a56b, 0x8ec4a8fe, 0x71f7be8e, 0x4b003365, 0x474139c3, 0xa15f8290, 0x56c4ee0a, 0x3fc5d632, 0x6882f30d, 0x1f83b0a8, 0x87e5c542, 0xaf3eb14b, 0x93558708, 0xd98b584d, 0x000185 }, { 0x9f7dc0eb, 0x94cb58c3, 0xa0a08b3, 0x139862cf, 0x7dc6ed47, 0x4d052ff0, 0x2b6afd20, 0x8b54fbf6, 0x387e79da, 0x105dd059, 0xba2d4ce2, 0x48f4273a, 0x24cd78e5, 0x3dc54148, 0x617ec8e1, 0x534ed3cd, 0x00003e } }, { { 0x55a88151, 0x80ffc9f, 0xe397e0d6, 0x3add875, 0x2f1f025f, 0xbbdf1cf1, 0xab61d33c, 0x91c8191f, 0x30780ed9, 0x27115fbd, 0xfbcbebe3, 0x34908f46, 0x6309ae30, 0x6d708746, 0xa6349f33, 0xd22fdf56, 0x0001de }, { 0xef004e76, 0x1d059bba, 0x19ab374c, 0x408be1c8, 0xf6dc6a71, 0x4bb7c69a, 0x95d92849, 0x6828bd24, 0x2479aee3, 0x20ef4053, 0xb40a0af2, 0x99cf57e9, 0x4b02fb88, 0xe0edc50d, 0x30cd16e9, 0x9c42217e, 0x0001fd }, { 0x1803ee3b, 0xc14352e1, 0x397278fc, 0xbf1db490, 0x989d2eac, 0x1aa073d2, 0xfa10ef31, 0xb6dbbfba, 0x8f36ba59, 0x53d76dd4, 0xb0fda6e4, 0xd2b10967, 0xbff13aec, 0xc05e1d46, 0xfe25a6a9, 0x62af695, 0x0001c4 } }, { { 0xee49086c, 0x3a98e93f, 0x692d8034, 0x4da7e9fb, 0x5812bf05, 0xa4a3fe2d, 0xdbdd5e39, 0x660e0df8, 0xa71c9c93, 0x626981f8, 0x17e6c020, 0x87f03275, 0x67c26439, 0x5ba8eefc, 0xf79074ad, 0x6b39cc9a, 0x00006d }, { 0x69a0f2c5, 0x295c6f90, 0xb45c268c, 0xd1026c22, 0xa829ec1a, 0x7e4596ea, 0xc711c66, 0x2afe28d9, 0xea83a4b0, 0x12a5f559, 0x98b2ab61, 0x2b7a586, 0x21602964, 0xece45def, 0x737588fe, 0x26f86b2a, 0x000104 }, { 0x3add9928, 0xd38568af, 0xbfa56348, 0x4448ddfb, 0x97a222e2, 0x8be370d7, 0x74c1e72d, 0x2221b886, 0x311a12b9, 0xfa42c906, 0x870b2992, 0xc2e4e0be, 0xd1f37ae6, 0x45ca4c11, 0x5eb1b76a, 0x24caea95, 0x00005a } }, { { 0x5dfab355, 0x403b7988, 0x895f9f96, 0x123c85bb, 0x2a174496, 0xf5666f33, 0x79781c5b, 0xf5fcf63, 0x10cb5064, 0x52ae6a7a, 0x1281ded6, 0xa6eac09a, 0x44428db6, 0x98ae8a4b, 0x604c9fac, 0x855c8859, 0x0000c5 }, { 0xe522c34a, 0xa798d3b3, 0xff26d647, 0x982578ac, 0xee1ea519, 0x8f42f54a, 0x37ab9572, 0xfaae1ce5, 0x8ac61c67, 0x1d278045, 0xfbd4df26, 0xdf482190, 0x8ee949d3, 0x7f173b93, 0xd1c79a28, 0xe9724908, 0x000136 }, { 0x977f8809, 0xf0e796c6, 0xce8664a3, 0xc4940af0, 0x7c726aeb, 0xb9863515, 0xe48e75af, 0x564acf9, 0x288abc06, 0x324e713c, 0x96005e0a, 0xa91cf7d5, 0x7f4dc21e, 0x11dea78a, 0x7fa89d55, 0xa396afc5, 0x00018d } }, { { 0x4b605be6, 0xfcb9b5f8, 0xaab1836d, 0xca095839, 0xf486dc8f, 0x4a585e9f, 0x7ab5d4ab, 0xcb6db01d, 0x51b0e5df, 0xc1a2fcd7, 0x29eff92b, 0x34cbfa69, 0x9345cfd3, 0x6c42a052, 0x4d955ee4, 0xf5d754, 0x0001bb }, { 0xed387a88, 0xd4dddd17, 0x12816666, 0x8655385f, 0x9f2bd842, 0xad2e49b, 0xbb71e43e, 0x6b83252f, 0x1cfad716, 0x1a31dc2e, 0x3ab1b35e, 0x4a891679, 0x9f99f301, 0x138f809c, 0xbe13c06c, 0xce9a89c8, 0x000030 }, { 0xd872d441, 0xae8429f7, 0x3125daab, 0x2d5b1f3a, 0x1826fd69, 0xbdb3ffda, 0x61bed0f4, 0xb8d6ebcb, 0xd10395d8, 0xe0a7ffed, 0xe0f26e79, 0x84b3609d, 0xf7232c9c, 0x1bb53c71, 0x4a5af364, 0x9deb36ea, 0x00000e } } }, { { { 0xf239c418, 0xa342403d, 0x5c38ffef, 0x1b14b6b9, 0x66518f31, 0x3afef1af, 0xd5dab26b, 0xc45dc2c6, 0x44782ada, 0xf1e1dd01, 0x9626e2dc, 0x28431544, 0xe5f84dc4, 0xe40f479f, 0x528b70be, 0x35981d15, 0x00017a }, { 0x157d1890, 0x72e19ab0, 0x43e225cd, 0xc0794afc, 0x990ac6e8, 0x28dad150, 0x9306edae, 0xcb1618b3, 0x4a7526c2, 0x1e2f4d, 0xec240b2e, 0xb01e2493, 0xd3c09882, 0x56ad800c, 0x64baf4ba, 0xf997a1fc, 0x0001f7 }, { 0x88b2f5df, 0x29315ee5, 0xee6db303, 0xd5084c4b, 0x3e6e280c, 0x251889b9, 0x95446cf0, 0x1f83622f, 0xe839f6a3, 0xa69fd47f, 0xa207a02a, 0xd15a00fb, 0xc094da8e, 0xf8b12d91, 0xb77f8114, 0xed318862, 0x0001a1 } }, { { 0xc235541d, 0x42fd58b5, 0xfc1ddb12, 0x1a9b0a65, 0x9149407e, 0x84eb9c8, 0xb8d3d12e, 0xf36317a1, 0xe00bef49, 0xdd60e2ea, 0x9dbcb35e, 0xba390f80, 0xa29fb1a1, 0x4af84238, 0x951e016b, 0xad019f45, 0x00004c }, { 0xb4b41415, 0xc808486b, 0xbefbb776, 0xaf73645c, 0xcb937c52, 0x98c1403c, 0xd58f73e5, 0xe254af4b, 0x57093a26, 0x21eef047, 0xb73fa0f8, 0x26ea9382, 0xd978bb17, 0x1d8d26cf, 0x298f6250, 0x10bbeaf6, 0x0001c6 }, { 0x27be487b, 0xad2b41c3, 0x6096c7b2, 0x1c269b7b, 0x2e389e11, 0xbbf2ca58, 0x9121d304, 0x3579b965, 0x758452ba, 0x401c541b, 0xc40bd75, 0xbd8041a8, 0x2b444a91, 0x69170416, 0xe91a94a3, 0xc5fa8b4, 0x00006d } }, { { 0xbaf1f983, 0xd3c6b265, 0x88630e94, 0x1ae0e325, 0x57a07e87, 0x538e99b2, 0xa4ebfd13, 0x8bd791d5, 0xf9f49995, 0xabb50206, 0x2ad9121d, 0xe9a42495, 0x913b4381, 0x3cf2f4c3, 0xe712b629, 0x1b1ff792, 0x0001a6 }, { 0x52b5a5c3, 0xb08134be, 0x666b783c, 0xbf69f2f, 0xaa620afa, 0xefb589c8, 0x51582b06, 0x5a86035f, 0x6405062c, 0xb3f94dad, 0xc26c4d05, 0x32ddf163, 0x6a70699c, 0x2cffed9b, 0xc35284f2, 0xc3819327, 0x000021 }, { 0x74c35b12, 0x1369e4a8, 0x59a0d8c7, 0x8d4b23f3, 0x72065643, 0x4ab08eff, 0x72ba245f, 0x7a230ae3, 0x9e9b905a, 0x4efd34bd, 0xbf1ef995, 0xb99d86ce, 0xea9b6847, 0x39db1ba8, 0xd19d53c2, 0x1f2ad2f, 0x00014a } }, { { 0x7dcca585, 0x7c9e2f1c, 0x126cd3c5, 0x93b25ab0, 0x40399ce7, 0xf727a25d, 0xaef851d7, 0x7f7f95c4, 0xc7d06817, 0xbb2a4e1c, 0xab64a08b, 0xabed6ba4, 0xc6ac899e, 0x945253c0, 0x45b03a03, 0xd5aa9b35, 0x000067 }, { 0x77a02cdd, 0x3a8dcebe, 0x2dd142ff, 0x59ae60d3, 0x2c3a096a, 0x170d714b, 0xfc088a1, 0xac6709e9, 0x91aa12c, 0xabdd9535, 0x3b8f5e6a, 0xc98194a4, 0x498aadba, 0x4cceb67c, 0xef71fb57, 0x2f4c158f, 0x000007 }, { 0x2a85a5d4, 0x5b8c1ff, 0x7f3c5555, 0x26a9d533, 0x69e6489b, 0x60e3ac8d, 0x5865b0eb, 0x1349d719, 0xc6ac922, 0x4b5fb362, 0x8f4e4d52, 0x20eb5aaf, 0x6bc5a6b3, 0xc734b7ab, 0x4e3972f, 0x28cf88ef, 0x0000c9 } }, { { 0xe0a11c5e, 0xc91e06b, 0xfd657963, 0xbb7de49b, 0x26ae8f6f, 0xd0e3cb15, 0x4a67ef8b, 0xd2cb80ad, 0x162745f4, 0x63aac678, 0x433db96, 0xa5fcf24f, 0x172b7603, 0x9dcb0d19, 0x46a2740a, 0x1a2bada6, 0x0001e0 }, { 0xaf98976d, 0x91e9c2df, 0xc3e0f624, 0xc414fedd, 0xefb04a0b, 0x3dba1ef6, 0x8e6ea06c, 0x8ddb9cb5, 0xfbc06079, 0xd71ebcfd, 0xd184a0b, 0xd3f7be7f, 0x5848f9b4, 0xfb2dfa59, 0xe55276e7, 0x3123a45c, 0x00008d }, { 0x9c4fa8e3, 0x5ca64d60, 0x8e0d20ff, 0x3e28dab4, 0x4ad71ce6, 0x5d362fae, 0x209ac212, 0xa7826b91, 0x974bd2a3, 0xda943bdd, 0x6fee24f0, 0x2d89f4ed, 0x4a524f50, 0x31fdeb25, 0x9b2ee02a, 0xb21dc84e, 0x00018c } }, { { 0x767593b4, 0xd3bd65f8, 0xd54fd196, 0xd72e6780, 0xa74dbff5, 0x8d6b6275, 0x20908c9b, 0x4265a4cc, 0xa0c69538, 0xc31b0c06, 0x91d73ca0, 0xe4f2a4de, 0xdadbf715, 0x71247a11, 0x35b48c70, 0x6e452e02, 0x0001dd }, { 0xc1e813d4, 0x8df93daf, 0xc8d7b80d, 0xcb66f8b1, 0x3d2af9e8, 0xfe9b9963, 0xda38caab, 0x6795df8c, 0x7c7bb6d5, 0xe936f7e, 0xa8cfbf2e, 0xed80bd21, 0x89b3d6d3, 0x8466ceff, 0xd679a2a2, 0x697bcfac, 0x000079 }, { 0x66bc9bbd, 0xf0d9cfae, 0xde1c5de7, 0xf2914dcf, 0xcf174d2f, 0x700dc135, 0x49ffce3a, 0xd1ff414b, 0x7b9e2654, 0x919999a2, 0x71347a3d, 0x61254541, 0x19d45844, 0x61577437, 0x149ce89, 0x2148cae4, 0x00013d } }, { { 0x2551b478, 0x58df84b9, 0xa668edda, 0xc96cbb56, 0x58551885, 0x47b37cc1, 0xbf44cf6a, 0x84003d04, 0xdbadf57c, 0x2588d63e, 0x9e869e75, 0x1c532634, 0x7c106c2c, 0x963ecb54, 0xedf82ab, 0x6fb8efa1, 0x0001d0 }, { 0xa5b63854, 0x5f723fe, 0xd6212d0, 0x28faf202, 0x4ad8e25a, 0x948a6dca, 0x9866356b, 0x83c0486d, 0x8dadc1de, 0xa1adbdeb, 0xfe0c755e, 0x444ff4f3, 0xe5b8fc63, 0xd887170d, 0xfb13c246, 0x2b6c4060, 0x000098 }, { 0x733269f9, 0x49cd4197, 0xb3b57512, 0x25e275e9, 0x401b8e95, 0x4082f942, 0x71a8d27d, 0xa011992, 0x56aba37c, 0x7451036e, 0x165725ce, 0x5abc2d1f, 0xda325dd6, 0xce0770e1, 0x89f24500, 0xa8c9ae1f, 0x00008e } }, { { 0x284f446, 0xad5a8b29, 0xf30fcda8, 0x9087e9d3, 0xb2fe47f6, 0x24adea02, 0xda708127, 0x704ffd0a, 0x7cdb8f5e, 0xc7398078, 0xdd7ab409, 0x1c22f04, 0x19d51645, 0xef201fce, 0xd02a74b8, 0xe424b4a, 0x00005d }, { 0x3da347b9, 0xcfddad8c, 0x54aefcce, 0x277b3ebd, 0xbd4463c6, 0xd31a9911, 0x7f206e02, 0xe116ac29, 0xe4ce0a16, 0xb550ce12, 0xa6619269, 0x36973c39, 0x7af60de1, 0x808fc337, 0xefc520a3, 0x64f75e8b, 0x0001de }, { 0x672dbfc5, 0x19e47f2c, 0xa1d6b7bc, 0x6d3e4850, 0x27158e19, 0x91aacaa9, 0x4a7ee83, 0x9f958551, 0x7137353f, 0x8f5d0eb8, 0x6788428a, 0x5f1dfcf4, 0x4cf752ae, 0xf4590e4e, 0xfecd1b31, 0x99338008, 0x0000cc } }, { { 0x198ff1ee, 0x9570886b, 0x5e2931ed, 0xda64a4b8, 0x8667501, 0x1068761b, 0x63af62d0, 0xa475fa4e, 0xa9fff0d, 0x69dc4ea2, 0xf454978a, 0x1a118570, 0x43e0621c, 0xd84b2db9, 0x2d798464, 0xadce25dd, 0x00017a }, { 0xb96cbf3c, 0x6f5f1301, 0x76047168, 0xda6a79ab, 0x9c391da9, 0xeb94e4df, 0x98bc6501, 0xb65bb335, 0xac672834, 0xe381143c, 0x9cdd3584, 0x5598ac18, 0x5a72fe99, 0x6091e1b, 0xe05ed74, 0xe042c1ef, 0x000131 }, { 0x56d5ebc1, 0x3a2d3062, 0xe00a7b5, 0xbfdde85, 0xf8aa7ae4, 0xe70aa286, 0x12f22d97, 0x11b3daaf, 0x9051192, 0x4909c975, 0x12f4372a, 0x40f2fc4b, 0x8665c147, 0x215e6105, 0x8b91e709, 0x5224e6f3, 0x000018 } }, { { 0xe1983bd8, 0xc6d2085a, 0xfad32a51, 0x60750fad, 0x56266426, 0x90bb368, 0xd9ed5128, 0xdbee5021, 0x1840f0a1, 0x397b365e, 0x881ea313, 0x35d9db9e, 0xabb7e750, 0x89142288, 0xe3a22a3e, 0x6f908c39, 0x000163 }, { 0x4277f10d, 0x3dc4bf2a, 0x584e247c, 0x13a69a15, 0x64e128a6, 0xd367602, 0x3eb34bd5, 0xb14ecc08, 0xe9d766b, 0xfb2b21b4, 0x16655fb, 0xd19c724e, 0x60d6334e, 0xcad2b497, 0xb346f117, 0x618e7e63, 0x0000eb }, { 0xc5b0f329, 0x19ed8890, 0x1e060e5a, 0x8538faef, 0xd02aadf2, 0x35dd32a1, 0xc75293aa, 0xb4a93962, 0x82a41d5f, 0xd11ac9b6, 0xd5e76c19, 0x32362258, 0xf5c09482, 0x36105cde, 0x8814e42a, 0x8321fcb3, 0x00017c } }, { { 0x33583140, 0x3a1344ce, 0x855ef53d, 0x8ae0c3fb, 0xc81433e2, 0x927f10ca, 0x13c2228f, 0xbc4da617, 0xa552ce3f, 0x4a387447, 0xdb5f3e74, 0x706a6a73, 0xecb38273, 0xcdb0da0c, 0x2277d5f6, 0x560b5308, 0x000078 }, { 0xaff68f28, 0xa0f7ad8b, 0xe1c5e1b3, 0xcd21aafb, 0x3c582bb8, 0x2fb83eca, 0x2776d812, 0x61b30b45, 0x31a4ba65, 0x13c98083, 0xfcdd9638, 0x92bb33e4, 0xbc04b0db, 0xbb292726, 0x434d4932, 0x22d4602f, 0x0000a5 }, { 0xd727ef3f, 0xcfff4dd6, 0x9c577234, 0x7857928e, 0xada597d3, 0x4a9cd89, 0x8157958d, 0xd5bbd25c, 0xe8e7579d, 0xdbbaf3a6, 0xee15448, 0xea02c437, 0xddb105bb, 0xdaf833bd, 0x3056880a, 0x46fb86d1, 0x0000a7 } }, { { 0x12103835, 0x1cfcfea4, 0xcf539063, 0x1d76bcca, 0xe08c5a64, 0x2e1574ac, 0x6f918697, 0x4d61851a, 0x6ba112c2, 0x3b2e7f9e, 0x77176af0, 0x47a6f325, 0x4ae42bed, 0x9a1a1139, 0x33763fd0, 0x773b423d, 0x0001e6 }, { 0xbcbb1674, 0x760b03e4, 0x29ffc683, 0x65913257, 0x613ffce8, 0x2234f52c, 0x350f4371, 0x324b051a, 0xe0b2ddfa, 0x7c817f98, 0x8bf78935, 0x547bac47, 0xc29ea72c, 0xd09aab2, 0xd92a5a9, 0x6e240f0a, 0x000144 }, { 0x24e07a3e, 0xada8e36d, 0x7f02145a, 0xcfa21c4b, 0xa8945d9d, 0xba3bdbe, 0xc9c4775d, 0x4b1c192b, 0x19db80dd, 0xa463c044, 0x393e9837, 0x15d7a8eb, 0xf9642d96, 0xbefa6f2a, 0xcf8846cd, 0x97e1d199, 0x0001dd } }, { { 0x9b8c006f, 0xa29d57b2, 0xf85b8462, 0x60076208, 0x5188db9b, 0xf38d3533, 0xfac91db1, 0xd07a652c, 0x871a711d, 0x7ffffcac, 0xd5ad306e, 0x3e764049, 0x7cef6357, 0x42d959d6, 0x5c318795, 0x3b704a64, 0x0001b9 }, { 0xc198e717, 0x90d70336, 0xe57208bd, 0xeaf86e93, 0x38c7c3e9, 0x39882551, 0x16fdc50f, 0xf36fbe94, 0x2edaa4d, 0xffc34f2c, 0xbb5a9b57, 0x683ba2bc, 0xd36ff539, 0xa69c5f53, 0xec52391c, 0x1a696c69, 0x000037 }, { 0x844954d4, 0xaa536011, 0xe0ef4e85, 0x11e72cba, 0xc3fe8327, 0x221e0772, 0xbf90fa24, 0x99102f63, 0xfd69c317, 0x1ff42947, 0x766a535e, 0x2bc86b01, 0xcddbb152, 0xe6feb97f, 0xd6691205, 0xc5cbc839, 0x000152 } }, { { 0xdff54d18, 0x121ef85a, 0x39544b20, 0x2f7c5c80, 0x89d8e625, 0xfee5d5c6, 0xf8434edb, 0x6c22ca0b, 0x67af3987, 0x50eed049, 0x229f5459, 0x4fd76acf, 0x8de2ba48, 0x72bb9f93, 0x5aaa7de0, 0x369e378d, 0x0000c2 }, { 0x2f8ce7df, 0x38af5a1d, 0x7ecdc325, 0xf5b3d51a, 0xab40bf14, 0x7af71f5, 0x492733b0, 0xa3b906ff, 0x1f38d1ac, 0x7f15f190, 0xf2520d2a, 0x76a5be6e, 0x5e36960e, 0x44b5ebb7, 0x4660c5f5, 0xbb8253bd, 0x000112 }, { 0xdb3dddcc, 0x3995d61a, 0xc7b4c9b5, 0x8c9a0eed, 0xef994b70, 0xeb5818a4, 0xb1dfe78c, 0x90c19d02, 0x7a46480b, 0x1d16ad3b, 0x4a23600, 0x7262a8f7, 0x5604f1a3, 0x9791cb54, 0xdc28f8dd, 0x64f10953, 0x00015b } }, { { 0xabfa9e2b, 0x5205bcd0, 0x959ce807, 0x1fbab41e, 0xfdc8c38, 0xa7777bc, 0xd08df9b7, 0xa19f21ab, 0xb2504840, 0x9b99539a, 0xcac0f2d, 0x2b4a080, 0x1b5f7771, 0xaf3864c0, 0xd6b90f26, 0x70380fe1, 0x000060 }, { 0xabf90639, 0x42f78e49, 0x9d065048, 0xad51aac9, 0xcc14ed8f, 0x263717b8, 0x134e1726, 0x4c0c7b03, 0xd112ac18, 0x607df4fb, 0x3a3e2f5b, 0x8855eccd, 0x95bc6296, 0xc6ce731e, 0xd462f7e, 0x1b810bde, 0x000082 }, { 0x95928f3c, 0x96e5fb7e, 0x6ed6297e, 0x23d3e60f, 0xb661588b, 0xa3e03fd0, 0x6059bed2, 0xfa5ada5e, 0x881abbdf, 0x833c9d98, 0xdd980ad, 0x99fed51b, 0xe4d972a8, 0xd19ae54e, 0xa29bed86, 0x896c9691, 0x00010b } } }, { { { 0x159bcbcd, 0x56fdd223, 0x51a944c, 0xce57fb0b, 0x92ac337e, 0x78906c42, 0x78ec927e, 0xf8186e63, 0xef0a7da1, 0xd9100d64, 0xbea0fb78, 0xc6b590f7, 0xac528fe8, 0x353cf5ea, 0x7395800, 0xd5a7daef, 0x0000ea }, { 0x49c53e0c, 0x5371ae49, 0x8e5dadd6, 0xeded815, 0xf8739c24, 0x2f365e9c, 0xb228b354, 0xebf1295f, 0x21ebfe17, 0x3888ad34, 0xd1cf685d, 0x3e766fb5, 0x34feb69, 0x99a997af, 0xa4fc57c6, 0x62081e74, 0x000027 }, { 0xe4ea75e1, 0xd3bda1fc, 0x27b36237, 0x7a81be23, 0x340e039, 0xbfb0712e, 0x66b76f1f, 0x3457500d, 0x76575bb0, 0x92d33d84, 0xa38296c6, 0xa8fcae26, 0x95e112ac, 0x9e57030a, 0x853e7e00, 0x2b662b16, 0x00001a } }, { { 0x86aaff67, 0xb97650cb, 0x1e997b87, 0x7d9208fe, 0x63e51cad, 0xc3fc3658, 0xd7b66152, 0xd6ed745b, 0xb3832836, 0x163e9c39, 0x557cb9dc, 0xc8c54a3e, 0x3c62df55, 0x8ed2c4bd, 0x65e6630e, 0x35e05369, 0x0000c0 }, { 0xd4781deb, 0x5a91b8e3, 0x91d33a73, 0x1dff328, 0x2b80bbb, 0x2d994872, 0xbcbdca3a, 0x6660a2a, 0x62cb99f1, 0x3021da03, 0x9c05d03b, 0x5e343ac0, 0xb155b115, 0x1bf868ea, 0x59e76baf, 0x3d702310, 0x000096 }, { 0x4e77e8b0, 0x7b5de942, 0xa5b9a081, 0x3cb09c94, 0xe1c2bbcc, 0x7a607560, 0xba074a67, 0x3656a40e, 0xd4921238, 0x3f13b9a8, 0xfc6eedd8, 0x67a4549f, 0xd67a3503, 0xb5f94dd0, 0x1c59d47b, 0x3a34b8cc, 0x00007b } }, { { 0xf39a41d4, 0x6b567e37, 0xee3d186f, 0xa44a34e7, 0xc5e0d127, 0x4114bca0, 0x18433533, 0xc7241064, 0xe7cc70bb, 0x90cad044, 0x347be146, 0xcc62bb7e, 0x2ea344a7, 0xff8c245a, 0xc6fe5786, 0x9ff469d3, 0x000173 }, { 0x35d4f9bd, 0xc5e91ee7, 0x1f72653f, 0x4259a986, 0x63647e4e, 0x7c97da01, 0x28abfbc, 0x68e82cc9, 0x264bb6c0, 0x7a5768b9, 0xa50fec48, 0x3dd139a4, 0x5c76ce0, 0x221d1484, 0xc3514d59, 0x33458965, 0x000178 }, { 0x81e3edd3, 0x2ae19859, 0x7d0a3349, 0x956e3e42, 0x751b289d, 0xaf558718, 0x88a015cb, 0x98de6f0c, 0xa21a5b1c, 0xa8866494, 0x2703af64, 0x6bf1c45b, 0xaddfdc62, 0x4ebc1d69, 0x7860984b, 0xc5005f11, 0x0000d5 } }, { { 0xe3842f6d, 0xe279c0f8, 0x4cf18a39, 0xfbc4abf5, 0x6c9360bf, 0x5240ae61, 0x6c1573bc, 0x3060ad2, 0x72f76f8c, 0x30fa4964, 0x1d8d2f0, 0xd65cfcd8, 0x593701ac, 0xa5e1ade8, 0x6d533351, 0xaba5a493, 0x000060 }, { 0x33011e82, 0x5d17dc87, 0x8195c74e, 0x4f7c4bcf, 0x84da9397, 0xfc5d0ca0, 0xa3e5685, 0xf04b3a63, 0x7f5806de, 0x2ec54113, 0xd2e64322, 0xb33d769e, 0xc3d7fa43, 0x53cc643d, 0xb5072aa8, 0xacff13dc, 0x00014e }, { 0xac1fa173, 0x8ce31a48, 0xa6eafc53, 0x360becc8, 0x139be90a, 0x7c1d0886, 0xabc675ac, 0x906a8f95, 0x6c0e5c2c, 0xe0fca0af, 0xf94ce0de, 0xd61a67f8, 0x57b127e0, 0x3879244a, 0xd4e0c4cf, 0xc945caca, 0x0001d8 } }, { { 0xe62ba0a4, 0x93bda74a, 0xc5a81266, 0x811ab531, 0xe7ecc42b, 0x35bf5c70, 0xd65897e9, 0x486fd74, 0xc917ce54, 0x40d2cb89, 0xd65be0ef, 0x43e8d9d8, 0x41b77621, 0xb847638b, 0xb519f029, 0xedb62890, 0x0001c8 }, { 0x53f45257, 0x50efe190, 0x65263fd4, 0x17d17ef8, 0xad89f814, 0x381ca67a, 0xc0e8a65a, 0xd434fff0, 0x89fc62ff, 0x8a19ee26, 0xde9cf9ae, 0xa31178fc, 0x405ffe62, 0xc88d92d7, 0x525473db, 0x3c83f62a, 0x000072 }, { 0x2c679595, 0x2057bd75, 0xe6f5b56f, 0xde119012, 0x7cd5b687, 0x27ea14d0, 0x62a53372, 0xa5d010ee, 0x3806de10, 0x73725c57, 0x6889ca37, 0x55c99f1f, 0xd72f2cc9, 0x2f0c209e, 0xd86d9d7, 0x2868f254, 0x000037 } }, { { 0xc842c107, 0xbede2316, 0x2cd0e28, 0x7c0491fc, 0xaebb84d2, 0xc7f1385f, 0x9112930d, 0x99dc57ed, 0xadbd6bad, 0x3d4999d, 0x3a214c0e, 0xc9f621c5, 0xc5264a3e, 0x103957da, 0x862ef120, 0x3ae9a824, 0x00002b }, { 0xcd86ceff, 0x2d7ffd33, 0xed18e48d, 0x35f0f189, 0x71e16d4, 0xe77d14e2, 0xf87afd07, 0xf3c38296, 0xacc7b037, 0xa78b5f1c, 0xfb181664, 0x9c9a29f2, 0xfc8134ba, 0x7d9934ed, 0xee49cdca, 0x98c03c5c, 0x000066 }, { 0xf12b7fbf, 0xddac9117, 0x467e173a, 0x189e1784, 0xe847a7, 0x8af8a175, 0xecd4388e, 0xebe9d653, 0xe215da4f, 0x74eb4c6, 0xba6aa572, 0xa3965fda, 0x24336306, 0x8c890a03, 0xa2334f76, 0x64348808, 0x00010f } }, { { 0xa3e04654, 0xe33d6b2e, 0x1de2bc10, 0xe80f71eb, 0xd1929719, 0x8f5542d2, 0xbe4a8f91, 0x56799982, 0xea8d1fd5, 0xa42bcc82, 0x24288006, 0xfcae34b8, 0xf952fe90, 0x4da474db, 0xdc6f3acf, 0xf17f294f, 0x0001ca }, { 0x136c2f9a, 0xb6c28696, 0xba076a6e, 0x63ed9662, 0x424f5ee8, 0xf34eca1a, 0xb75aeab8, 0xac74bf74, 0x4a2f5299, 0xdfce269f, 0x406c057c, 0x41c4c88f, 0x29b0c0, 0x70cc0fe, 0x9e8122b6, 0x2d10482e, 0x00013d }, { 0x7c252662, 0x6787f048, 0x5776bad2, 0x5af75964, 0xb8b3b25d, 0xac523b33, 0x82bdfa8b, 0x94857548, 0x38eb5798, 0xb124d886, 0x84469ae2, 0xdc6624c6, 0x8611a669, 0xa8a43461, 0xbf598dae, 0xa9bf5b7c, 0x000042 } }, { { 0x8d65f736, 0x6992b909, 0x820606fd, 0x9fc6cef7, 0x18b94732, 0x5fa344de, 0x20b4d265, 0x591ed201, 0xe6a96181, 0x47761ccc, 0xde96db41, 0xdbc5baf0, 0xd22deedd, 0x7a197e19, 0x33de7fe3, 0x6f5ce867, 0x00016c }, { 0xb431315b, 0xd9e46890, 0x3a35bc9f, 0x58fdd165, 0xc763490f, 0x26cd03d2, 0xee6be899, 0x108d2e77, 0xe199f71d, 0x43ed4be4, 0x8bbf1c56, 0x8e4af815, 0x8b7e10f9, 0xdeedd5dc, 0xd016eb12, 0x11fa8974, 0x0001e4 }, { 0x6d2c852, 0xb68bb115, 0xfdb888ca, 0x1c181d07, 0xb23bfb05, 0xf1a297c2, 0xe9272ef9, 0x23932cf9, 0x4c1bbc95, 0xc00915c3, 0x9f71f659, 0xcb4ae62d, 0x11f2126, 0x12857410, 0xbb393729, 0x6e5b8dd3, 0x00010e } }, { { 0x1f642976, 0xe67a87b4, 0x210de62b, 0xc1946577, 0x6de36db7, 0x8423d1dc, 0x79c6add3, 0x4194e299, 0x2734053e, 0xbe54f034, 0x667f1f0d, 0xc590870b, 0xa5083840, 0x53d8a503, 0x19769084, 0xda136cfb, 0x000045 }, { 0x76a74e3c, 0xd8aee82f, 0xc73c76a5, 0x6dc947df, 0xb804298c, 0x4edd39d4, 0x1e73ec4f, 0x5fd4b050, 0x3c7d4480, 0x25ddc8a3, 0x27a85c8d, 0x32404964, 0x43817b1c, 0xbb8b5e14, 0x22e8f04b, 0x1cd12e15, 0x000075 }, { 0x747186dd, 0xb191494d, 0x11ee28ab, 0xe52e4e66, 0x32292885, 0x6d450a46, 0x4b2257f6, 0x3faf1b13, 0x8ef2bbe4, 0x559d5d91, 0x5881839c, 0xf84cbdd1, 0xd95e3ff3, 0x3724bcdb, 0xbf480765, 0x30ff0e8e, 0x0001d4 } }, { { 0xd9aebc39, 0xbd0cb9d7, 0x9b2caa0e, 0x7961e7c6, 0x681e0c5, 0xd0c9ebb, 0x94bceed, 0x85e264a9, 0x4e30c570, 0x121b81ed, 0x57356341, 0xf657cae6, 0x97f558d6, 0x76ddafd9, 0x26bd5594, 0x90ad5542, 0x000040 }, { 0x5369a759, 0xe2aefd47, 0x6960798c, 0xff922dce, 0x72371238, 0x60329add, 0x7b0c361e, 0x63d6ac99, 0x89892a49, 0x35508e96, 0x5bb84a56, 0xeded4938, 0x353dfcfb, 0x5adce0ac, 0x85448498, 0xf164e56d, 0x000144 }, { 0x5a331004, 0x60ae7541, 0xc6dd24aa, 0x99d7412, 0x37584208, 0x5eab4692, 0x93c9efbe, 0x1eace536, 0xc38ed3ee, 0x2ee25298, 0x4bd53989, 0x78ade433, 0x9a31156c, 0xbb6b1863, 0x61632f48, 0xaab417e4, 0x0001b6 } }, { { 0xbaf17453, 0x1f5c938d, 0xa843864c, 0xca06ef19, 0xcbaf69b8, 0x7f4ca57f, 0xc0d3c5b9, 0x4fb6e59e, 0x6176ace6, 0x4883b228, 0x337b928d, 0x186ef045, 0xe69bd3fe, 0xf906d91c, 0x300482c6, 0xb7349ac6, 0x0000d4 }, { 0xd7bd9d8f, 0x4048d008, 0x38bcd5c6, 0x5d5fc8ff, 0x7b364faa, 0xcdae23c9, 0x526b6430, 0x91d1086d, 0xcba0e248, 0xa73973e0, 0x1412f662, 0x9704b950, 0xd0e66340, 0x560a11, 0xdd72baa1, 0x31591b86, 0x000018 }, { 0x8c7efa79, 0x3e521552, 0x8a1678c8, 0x53d5818b, 0xc94d7460, 0x7fa62b9f, 0x74e3b57c, 0x8504d465, 0x4f9427b7, 0xbcad91d6, 0xc94b06b2, 0x1ee59b5d, 0x802fba1e, 0x1b6fbb6f, 0x3b8b9f63, 0x3017018e, 0x0001b0 } }, { { 0xa80b0b50, 0x3c0d1189, 0xf8bf2b08, 0x378b7f25, 0xc36fc6c8, 0xc3df518, 0x200521fc, 0x3303bd38, 0xd487ae5, 0xf8539554, 0xd7aa3b3e, 0x5c442d5f, 0x995570cb, 0x69ed1273, 0xff2a0e69, 0xda49ff71, 0x0001cd }, { 0x15c174e8, 0x40318bf3, 0xe7eae6f6, 0xa8ef2534, 0x6c535b4b, 0x9fffa986, 0x82ba38a8, 0xe5ade80c, 0x1bee9fea, 0xd5bee352, 0xe7f5cef2, 0x6493b8f5, 0x242652f0, 0x4a0b48cb, 0x705e6326, 0xc91d2d88, 0x00010f }, { 0xb1b0ba9b, 0xf6757a78, 0x127f9bc1, 0x7fe166d5, 0x469e0b9, 0xb26645c4, 0xcb6dcd3b, 0x5a43e76b, 0x3e5932ee, 0x22c79936, 0x9454fea7, 0x32673c7a, 0xfeb79833, 0x9d93b8f1, 0xe1f2c1e3, 0x5be3c937, 0x0001e0 } }, { { 0x337ee254, 0xb3521b9c, 0x7f99ad1f, 0xc08b9bd6, 0xa8b4a1a4, 0xd0cb33f7, 0xaeada8ee, 0x6c8e34e8, 0xdd9fcc5c, 0xcd73498e, 0x8d7c59a9, 0x28142de0, 0x2125b37b, 0xccd95b8a, 0xc46e21f2, 0x2b65986, 0x00019b }, { 0xf91fb11a, 0xe52ec1e9, 0x30ab5f9, 0x28f1b02a, 0xc6cf8162, 0xe8389c2a, 0xf71f0c4, 0xa1f9ea31, 0x3b717e3f, 0x4631780f, 0x46dad0c6, 0x20428325, 0x78fae9e9, 0x1492ab73, 0x76c2e1f6, 0x5340953a, 0x0001a2 }, { 0xc8624b15, 0x96e87c99, 0x34d609f4, 0x2ef25cd0, 0xddd9c212, 0x595f6b33, 0xa22472e4, 0x28f0404, 0xb80492b0, 0x7244cbd4, 0x7348e46f, 0x2073871, 0x9b5236, 0x1b57c153, 0xdb1615c9, 0xe74b2115, 0x0001fa } }, { { 0xb30efc9e, 0x6cdb3068, 0xaf8e085e, 0xe7544b92, 0x7fea91f8, 0x3af67edf, 0x7c2e1e8d, 0x5a96fe0f, 0xb9bfdd7b, 0x1afbc623, 0x96bc7e72, 0xed6eb5c6, 0x7ff51641, 0xba47d4f5, 0x6eae0f9, 0x8da133b1, 0x0000a5 }, { 0xadfc4f19, 0x23515e0c, 0x8f3389e4, 0xcfa4966a, 0xdc09df41, 0x9f0dc020, 0xe6a19268, 0x989d80bc, 0x766cfea4, 0x2018da41, 0x57cd622b, 0xdf644d10, 0x83fc6cdd, 0x32ce19a5, 0x65e311a, 0x970af974, 0x000185 }, { 0x97b74485, 0x85361175, 0xe2071119, 0xefe4ab91, 0xd8cf2e3c, 0x1277e73f, 0x9f2b5fe3, 0x9e855054, 0xdc489983, 0xe2f884cd, 0x62c728aa, 0x9415de1, 0x6d10d203, 0xe4c20d0a, 0xe5573717, 0x433ce36b, 0x000134 } }, { { 0x757f9a02, 0x921039fc, 0xaf1a91b8, 0x45d9664, 0x7d29206b, 0x443eac99, 0x5a278060, 0x38871252, 0xdd12e68b, 0x95a971a8, 0xf865dc20, 0xd9fdf20, 0x1a428fb4, 0xc6d3dbb2, 0x89cb048d, 0x2371677d, 0x000152 }, { 0x57f2bdb1, 0x7fa74df2, 0x9f434d2f, 0x2d819f5c, 0x48779563, 0xdc2f192b, 0x8029e37c, 0xef1fb53c, 0x2fcef039, 0xee8bd680, 0xb7f01c16, 0xe0c0a2f1, 0xe7585f0a, 0xdf74e266, 0x438068bd, 0x635dbabd, 0x000148 }, { 0xb1d17767, 0x9c131874, 0xe9b10612, 0xf3543f1f, 0xc30e942e, 0x9bcbcf49, 0x554c7482, 0x2056bb09, 0x75c8aa6a, 0x5e5f622a, 0x1a082383, 0xc4581d4d, 0x1124db1f, 0xdaac7364, 0x21370319, 0x9b5ad197, 0x00018b } } }, { { { 0x950db504, 0x91ec33aa, 0x3a042992, 0xd7569077, 0x9ab0613e, 0x82e1bb7f, 0x507aba5e, 0x530912f, 0x117bb1cc, 0xdf99c9d7, 0xf5e09e65, 0x76c75bb6, 0x5f6d67ad, 0xad4d989, 0x173ac7e5, 0xc17407bf, 0x0000c8 }, { 0x83d97d7a, 0xdd85b45f, 0xd79a4489, 0x2327bfd4, 0x4f0bc141, 0xa949de8f, 0x91158063, 0x48ca61b2, 0x3990b855, 0x91eb557, 0xce8f1ba7, 0x2fa37ab0, 0x966b9fd, 0xd4c6ca85, 0x3863d484, 0x6ec2d175, 0x000017 }, { 0xe1157160, 0x29665659, 0x2c48f7f4, 0xb8f7784a, 0x20f1903c, 0x8f4e0a54, 0x465955b6, 0xfecbb392, 0xdd870aba, 0x6d7468c9, 0x687bb113, 0x60511b65, 0x815c06bc, 0x6e11ce9, 0x5c35c405, 0x13bf455a, 0x000061 } }, { { 0x6409ee3c, 0x415fba4d, 0x45f4d55b, 0xd91d5c02, 0xd97f30d6, 0x3674204f, 0xfeae831d, 0xdf7a3722, 0x667f043, 0xac40b3b1, 0xc9e5e9ec, 0x93972a26, 0x66ebb516, 0x9e1bad10, 0x57b145a4, 0x2818146c, 0x000042 }, { 0x3992aa4, 0x12e36561, 0x200fce78, 0xbe2440a8, 0x6faea2e7, 0x502cc37a, 0xdc3500fd, 0x9cb82eba, 0xc1ee6631, 0x6c102e1, 0x94e1adfd, 0x5c9e9a06, 0x6e8002a8, 0x906d2e53, 0xcb8a5488, 0xc4d0da5c, 0x0001c6 }, { 0x9c15f70c, 0xc5e445fc, 0x82c30a2e, 0xe2baa932, 0xc1b5d334, 0xb311a11e, 0xcda89553, 0xae3c8ca1, 0x4e65b851, 0x3e918ec6, 0x5ce51b79, 0x90550e98, 0x2a11e0bb, 0xb6a72f5a, 0xc7c5b139, 0xd729acf9, 0x000122 } }, { { 0x35984fc9, 0xa439a2c, 0x4babdb7b, 0x75505832, 0x483ebd2, 0x5b2fa7fe, 0x1d487556, 0x802d4e8, 0x4b0bb4a2, 0x1c02f728, 0x7f6e8641, 0x7fe981c5, 0x3ee6d7a, 0xc6f48edb, 0xdaf18244, 0x5cf4d5, 0x000080 }, { 0x8d1b4cbb, 0x721bff4, 0x84a80703, 0x271b9a2b, 0x9f2445a3, 0x4ba2cded, 0x5e04a0ca, 0x3ddd4a73, 0xfed48a2e, 0xed860b38, 0xfe52941e, 0xcb107752, 0x73e9674f, 0x7d5c605d, 0xcc627ef5, 0x9db37bae, 0x000111 }, { 0xf1d1ca1f, 0x5f0ce09c, 0x1e49c3e3, 0xbfefc0e6, 0x7b9104ef, 0x97d70270, 0xcbc43da, 0x2fe79186, 0x331b5944, 0xd3cdc9c2, 0x756db0ee, 0x2f02d5b3, 0x49edcd27, 0x81d87ac4, 0xa22de4f1, 0x9de69d5b, 0x00000b } }, { { 0x198ea8e9, 0x74cfb7fa, 0xc1779fbb, 0x99d046b3, 0x24f942d9, 0xd7c10311, 0x6844bb83, 0xea0de03f, 0x88fd7417, 0xa24b6821, 0x45e47027, 0xe38724b0, 0x364b51d7, 0x77f2442f, 0x795a8b1, 0xf60d9ab7, 0x00003f }, { 0xdea73a92, 0x6f53bcf7, 0x95da9b3c, 0x2dabf2f8, 0xdc1fa45c, 0x91f6dc89, 0x3a5ad432, 0xf6088661, 0xb07b729, 0xf9a9b452, 0xcc3d124, 0x8158b1cf, 0xe228f407, 0x102455b8, 0xf9c5f737, 0x16d031d3, 0x0001fe }, { 0x7c571508, 0x6eb951ab, 0xe0360bdd, 0xa2246456, 0x434134c2, 0xf621fa3e, 0xef35c313, 0x1a78c1d3, 0xb231805e, 0xed1411e1, 0xb803b9a5, 0xaacb20e7, 0x91f2e214, 0x86b3b9c1, 0xccf5f09e, 0x5cd729e3, 0x00009b } }, { { 0xa2c03695, 0x199fb455, 0x3851e2e4, 0xc5bac344, 0x944df3ab, 0xebc299ab, 0x4c7d5b90, 0xfc4858d7, 0x6b1ee029, 0x770fe0bc, 0x78d0a437, 0x15c2764e, 0x34895367, 0x7e493fac, 0x27d5452, 0xf436342f, 0x000124 }, { 0x155af688, 0x1810f70e, 0xc14af946, 0xf30342a9, 0x8c750614, 0x84d80d23, 0x880a095c, 0x83a7167, 0x7df4930f, 0x8633a49d, 0x4a5282bb, 0xdd899375, 0x236c20e1, 0x5642241e, 0x5a1dca92, 0x41a42cb, 0x0000a9 }, { 0xbf436f5, 0x3507f688, 0x1e13af20, 0x95f9135c, 0xbdf00d57, 0xa62c9de5, 0xa506418f, 0xe0ffb580, 0xd57b20de, 0x97dcd0f9, 0x3d4de19d, 0x9c9b56f8, 0xb3add31b, 0xe1413252, 0x2719f98e, 0xa1b13d4, 0x000153 } }, { { 0x5c9b6e94, 0xd8725a5d, 0x944636f9, 0xd2d152a1, 0x41a176d0, 0x395552c7, 0x75656036, 0x9ea32e7c, 0xf281bd0d, 0x56817e66, 0xc66dc070, 0xab1821a, 0xdb68fa7f, 0x52b62be3, 0xccdd50a0, 0xad17987d, 0x00002b }, { 0xeb395ae4, 0xf3aa347c, 0x556cef9e, 0x8610ef39, 0x1b50d224, 0x5328dd99, 0xc6e4e55, 0x20d39ec4, 0xe8481e50, 0x8c704c59, 0x6b458a51, 0x14fd3528, 0xe3dfff2b, 0x97a6f03f, 0xa347f101, 0xfbc5b899, 0x0000d0 }, { 0xbad9716c, 0xee0941f7, 0x26db8089, 0x920c85d3, 0x7d0e0fbb, 0x7642a49a, 0x8aec6b2a, 0xbda31405, 0x9d0789cb, 0xd6bd5c85, 0x39c6e1d0, 0xfea84f33, 0x8671ca19, 0xf5900ec6, 0x55227ede, 0x1704de64, 0x000048 } }, { { 0x2396b7b4, 0x1549b925, 0x93fe24f9, 0x8ebb4424, 0xe21fa3f5, 0x7a474fba, 0x4bedbd12, 0x63de3c9b, 0xa9bf79c5, 0xc7b363e2, 0xdae68046, 0x9342fd3f, 0xeb2a7731, 0x5f1bdf2d, 0x11281386, 0x2c5ab3b2, 0x000097 }, { 0xfbcda32d, 0x70f5aea, 0xe33b77df, 0xd4c4003d, 0x35ba45e6, 0x93df9d77, 0x3e49d8a4, 0x6d152af6, 0x70d7eff, 0xe25c146f, 0xa5c60741, 0x2983af0a, 0xdbffb193, 0xfe481064, 0x5eedc319, 0xdbdefc73, 0x0000a8 }, { 0xd51495d5, 0x7cc69da, 0x84eb3f23, 0x205b09b7, 0x1e128a71, 0x80bd7273, 0x1405cd93, 0x4621a8be, 0x70b2c342, 0x5cffa5de, 0xfd3c5ac7, 0xa725658e, 0xa2e1457f, 0xf31fbad5, 0xa95170a8, 0x14e17d47, 0x00007d } }, { { 0x1eac0e27, 0x916349b7, 0xb0ba9d28, 0xaa782617, 0xe7a03d95, 0xbbb5c75e, 0xc7afcf53, 0x8789dd97, 0xd6c523bb, 0x75feac6a, 0x5494e482, 0x7c3da52f, 0x1d1a08f2, 0xa56cff63, 0xabab7bfa, 0x5b31d6e6, 0x000063 }, { 0xc82bb958, 0xeded0b38, 0x72596294, 0x8e23a7f0, 0x908791bb, 0xb58ce9f, 0x4b08f45c, 0xc82a7d42, 0xbe14226c, 0x26e2175d, 0xd0d28820, 0xcc4495b, 0xaa51e583, 0x499062fb, 0x3a8fccaf, 0x13a017a2, 0x000092 }, { 0xe7043694, 0x7563083c, 0xe7cc442, 0x391ad13f, 0x3cc7804a, 0x2f64da7b, 0xd63f78fe, 0x8b32fb83, 0x88724d09, 0x86948707, 0x98e97e36, 0x632f378c, 0x84887ed0, 0x96a05ba2, 0xb7b287c2, 0xc3f2cac5, 0x00017d } }, { { 0x7473597f, 0x57a5bf1b, 0x97af15f, 0xcae6df2, 0x1bdef9a3, 0xe881636f, 0x5f808d38, 0x194be8ef, 0xbd69ead3, 0x46cdba9b, 0x2c727658, 0x40961ff5, 0xe0983c92, 0xd0c283c5, 0x2a1c1c9b, 0xde631401, 0x000107 }, { 0xde2569a7, 0xbc956e6, 0x572f8dd8, 0xcebeb8bd, 0x1b21997c, 0x88323635, 0x5576161e, 0x4fce9b3a, 0xacbcea48, 0x8017b03, 0xc94c2097, 0x906fa9a8, 0x6c07ff13, 0xe51ac56, 0x37602d4e, 0x90a8f485, 0x0001a6 }, { 0x61cfbc1f, 0xeab10483, 0x4cd613b7, 0x78be514f, 0x3caba7ed, 0x9b16208a, 0xaaf2f3bc, 0x771daca3, 0xb367b9be, 0xf2cf1c7c, 0xa3231517, 0x65d92edf, 0x697f3c66, 0x637aae4e, 0x86acba67, 0x6bf565d2, 0x00009e } }, { { 0xabea5630, 0xb5276650, 0x9bd99e04, 0x374d1cd6, 0x23bddaab, 0x1eac6a4a, 0x1920db9b, 0xc9dd988d, 0xd3c03669, 0x26eeddae, 0x1cc80387, 0xbb0cc975, 0x56abb861, 0x9ccd76c3, 0x780ae81d, 0xf40d192d, 0x00014d }, { 0x9ac09308, 0x853cdc00, 0x8984d6ec, 0x5c56a527, 0xc3ecedd, 0xe255d70b, 0x1032f23d, 0x457254d9, 0x85b2d89d, 0xfb6ed796, 0x469fdb9, 0x7ffb1aac, 0xc385c0de, 0x5342948, 0x76bb54fa, 0x179445a9, 0x00007e }, { 0x5bb78bb4, 0xbe765bb0, 0xb5dc52af, 0x758e8562, 0x53cb0e86, 0x8b47e5a1, 0xa0c6ec78, 0xe5e521b7, 0xcff962bf, 0xfd7605b0, 0xece9a49b, 0xcce1debb, 0x176d2409, 0xa5ba90aa, 0xea9fb98c, 0xfe0d1fc, 0x000152 } }, { { 0xaf14bd6, 0x18fc5819, 0x1b1d6629, 0xca841aef, 0x63d4b866, 0x6987a858, 0x883520ba, 0xd4b70dd, 0xc0ab0e37, 0xf0aca313, 0x9b0c6110, 0xab0c4a4a, 0x323a2413, 0x7ae2a887, 0x8bd11c87, 0xdd390db9, 0x00012c }, { 0x5d16f0b6, 0xc0b3e0b3, 0xc1c32b85, 0x774cf3d1, 0x7e2fc0e7, 0x4ee76053, 0xf2944d04, 0x97d2b1ff, 0xf841ff2f, 0xa3bccbcf, 0x9e98fbb2, 0x5922d978, 0xaf00f778, 0x48026213, 0x78354f78, 0xc40c868c, 0x0001ef }, { 0x4df61965, 0x9353e579, 0x800a3db, 0x6593d6b5, 0x89aa358f, 0xfdc9cbc5, 0x5ca70c70, 0x7f85189, 0x14fc1d7a, 0x6357a44d, 0x1139af55, 0xba39d09e, 0x5c4927f2, 0x7c803f89, 0x59dbd24c, 0x8e51af39, 0x00001d } }, { { 0xf2028b6d, 0xb7e9a166, 0x61156357, 0xdeb93b99, 0x996aaaf2, 0xfc1ff1e8, 0xb0ed117e, 0x7610ba41, 0x70b551dc, 0xad311bcc, 0x8f412078, 0x7b2c5ddd, 0x919ed1a, 0xcec709c1, 0xfb327fde, 0x9bc810c1, 0x0000b2 }, { 0x193d47d0, 0x216104cf, 0x717d42bb, 0x8f2e3e4a, 0x5c4bf67a, 0xafdf1b2b, 0x349268dd, 0x1a2011c7, 0xca4c0256, 0x7b87450, 0xd914b568, 0x37ac95da, 0xabe8ec3b, 0x8936d92a, 0xf129a107, 0x626ffe2c, 0x0000c8 }, { 0xc81e8aa9, 0xb9bb2499, 0xed9c788, 0x987733ba, 0x60a210d3, 0x7b9a96a8, 0x161d736f, 0xf8d66c06, 0x14b5c7d0, 0x379a1def, 0x404a4292, 0xa9eebf3, 0xce27b4dd, 0xe8d00304, 0xcbf559cf, 0xb1dfbd6d, 0x00002e } }, { { 0x5b10b32c, 0x3f9ed15f, 0x8db1cbf9, 0x11b41ead, 0x1981147d, 0x87066bda, 0x41cfee19, 0xa94e4c01, 0x2abf9c5c, 0x453084b1, 0x54dbe45f, 0x88c5c4f0, 0x9a833fc9, 0x258707a3, 0x691da70c, 0xd6d434a5, 0x0000fb }, { 0x833047f1, 0x985b8e47, 0x99613d42, 0xb6aca9be, 0x5ac0021c, 0x22a3a541, 0xfaca7817, 0x7d74191e, 0x6423096a, 0x261649f7, 0xd2c69e49, 0x9b75f7a6, 0xfbdfb23c, 0x72392312, 0x1b0f13a7, 0xd717c4fd, 0x0001dd }, { 0xc69e9b55, 0xbfc3da6d, 0x61a0835c, 0xfdf7e116, 0xbe6b2e95, 0x246105a4, 0xa256cc2a, 0x733358cd, 0x16720b63, 0xc33ce38a, 0xbc78dbb2, 0xf3da217e, 0xe25c1b94, 0xa1d23ebe, 0xd9eee644, 0x5c29efac, 0x0001bc } }, { { 0x1846b28f, 0x5deb2de, 0xa500258b, 0x26b4c9f7, 0x51a1da8, 0x50f91ce5, 0x3f3c5c76, 0xad253f1f, 0x1c4e4ffc, 0x847b66be, 0xa485751e, 0x2c8e3e4c, 0xf28e2f50, 0x56a8c191, 0x70df1d0c, 0x76ed1b37, 0x000007 }, { 0xb365e0dc, 0x8c3f620a, 0xddab491b, 0x6cf85c2, 0x13a74e0a, 0xf723059e, 0xe32a711e, 0x2875f72c, 0x5a9c40a0, 0xafd7f81c, 0xe654d121, 0x637ab89, 0x498febe1, 0x313a79bf, 0x7d6c0c73, 0xe6cdd426, 0x000008 }, { 0x50358ccd, 0x4449315d, 0xfd105208, 0xf091c2cd, 0x5f31827b, 0xb4f3faa8, 0x49f75059, 0xa2e1c8f4, 0xd6c0794a, 0x859cc0f5, 0x18c13391, 0xf4b93940, 0xeabb9a7b, 0xde9ee65, 0xfbbf7add, 0x82b5d907, 0x00004d } }, { { 0x7b1d811c, 0xdf508f17, 0xb73d2fbb, 0x35faff86, 0xd23f849d, 0x1dd4c939, 0xeeb9d7d2, 0xaeb73b2d, 0xac3e9250, 0x3f14bfa6, 0x74205f7c, 0xad69cafc, 0xe5185e0b, 0x8aada19b, 0x2a82e9c4, 0xaeeb34d6, 0x00010e }, { 0xa1e2cd70, 0xf4e5927c, 0x7162b965, 0x979ee219, 0x67d2ab45, 0xac4c53f1, 0x22c21ac1, 0x4c104e29, 0xe2362c59, 0x6609e8be, 0x4f9206e2, 0x631d20f1, 0xfd1ffbd3, 0x98bfab7b, 0xc53f3c2d, 0xa4c2aad9, 0x000082 }, { 0x781c62bd, 0x6a3c8d46, 0x6474706f, 0x3442b1c7, 0x8321f5bb, 0xb3ebfceb, 0x6edf9669, 0x722a7cf8, 0xbc2c55d, 0x93890085, 0xd8904503, 0x30e5e6df, 0xb01b833f, 0xd286efe2, 0xa7cc6891, 0x4b287843, 0x0001f7 } } }, { { { 0x52fb786a, 0x4e158b4, 0x13540e6b, 0x3a5b65b, 0x4dbc28d1, 0x47e25e3d, 0xc4e6aef0, 0x277f1ee7, 0x887138cf, 0xb66e3f83, 0x44e93208, 0x71054a52, 0xcf0fe811, 0xaa8b2ef3, 0xbfef5794, 0xcff89dca, 0x0001b1 }, { 0x3ec99f14, 0x396327d5, 0xcc61cfbe, 0xa33c8a0f, 0x41d76cee, 0x10daf6a5, 0xdd37c87e, 0x4bfbdbf3, 0xd3d3e5e8, 0x4aeeb8ad, 0x63398752, 0x9e518213, 0x15899bbe, 0xc9818de1, 0x2191f73c, 0x3e880906, 0x0001c9 }, { 0xa88b2159, 0x9223ca25, 0x5e4f5461, 0x9b45c068, 0x4ea3d695, 0xf5f02884, 0xb163c66c, 0x268649df, 0xed9a5c78, 0x3b174085, 0xf6215498, 0x17bc3ddd, 0x8226415d, 0xb7737e99, 0x31283293, 0x4c368f39, 0x0000c1 } }, { { 0xdb6c7dd8, 0xe6551bc6, 0xde81919c, 0x2b422aad, 0xe7904d94, 0xa48b581e, 0x798f8923, 0x61e38b36, 0xb421b59e, 0x629dfc63, 0x85cd2934, 0x78aa5348, 0x772ea921, 0x97df1410, 0xce58aafb, 0xcb49c25f, 0x000081 }, { 0x609b94d5, 0x410e3aae, 0x67717b19, 0xead1367c, 0x48a0ece2, 0x54015bf7, 0xaa685f5a, 0xac5f095, 0x340275d, 0x3dde5855, 0x48074cb7, 0xda5726ae, 0x86b12342, 0x90df5c5d, 0x90b6c340, 0xbf70aff2, 0x000015 }, { 0xafdc5f8d, 0x50e357c6, 0xe1fa5f02, 0x925c7cf8, 0x4a0a4b91, 0x22bea919, 0xb60b5a9c, 0x2c51271d, 0x77fa442d, 0xdda80439, 0xe402fcb2, 0x45b7fd08, 0x17da1a5a, 0xc25fd7c2, 0x99e262b3, 0x9a920346, 0x0000a8 } }, { { 0x88403181, 0x9d32e78d, 0x2672a433, 0x700bf0d3, 0xf6e8f9e6, 0x94853bfb, 0x35b807be, 0x293defbc, 0xa98cf6, 0xbde67f8f, 0xb7ea701f, 0x651d52fa, 0x4ebbe9e7, 0x7812af68, 0x3739da5f, 0x3a1e929a, 0x000183 }, { 0xd9a10aa1, 0x5a735ee2, 0xbc0566a4, 0x16902f4f, 0x753eb484, 0xb8a53fd4, 0xc3110feb, 0xca6dabe, 0x242e3071, 0x9f2a8336, 0xe000fbbe, 0xbb0de039, 0xf3be214e, 0x1a34afd0, 0xe5df3d63, 0x49cfae22, 0x000027 }, { 0x39bd14a4, 0xecb6614c, 0x5d157006, 0x11ff07c8, 0x631f21eb, 0xfcb78b79, 0x727fca08, 0x5f7dfe07, 0xd7993597, 0x281ac84d, 0xb0726a94, 0x437c6871, 0x9580e683, 0x1f44dcfa, 0x1db3d1b, 0xc7e3ea1b, 0x000116 } }, { { 0x2e030486, 0x66e971b1, 0x23b42ff8, 0xbad3effa, 0xfc1df68f, 0x1ff52319, 0xf11f46ce, 0x8a98217a, 0xb359ffbc, 0x8f65b053, 0x9db2ab84, 0xf4bd5dc2, 0xfc50734d, 0x764c5b7f, 0xcc543bf5, 0x25c712f9, 0x000125 }, { 0xd0a7913c, 0x2352fd7a, 0xd6128431, 0x8d4a02d8, 0xc5d41f39, 0xfad3f7ac, 0x282dcf84, 0x486ca67b, 0xb539154f, 0x9d518f36, 0xac2fda71, 0xd37c9cb9, 0x15a810cc, 0x2dfd7c00, 0x67798e26, 0x5cdc8e02, 0x000031 }, { 0xdd96e9dd, 0x23bea848, 0x1d2ca072, 0xb84baad5, 0x20b0cab4, 0xb5240ff3, 0x2ec483c6, 0xb222b1d6, 0x8cd47f06, 0x1125c959, 0xfcf1148a, 0xadc20bdd, 0x1148aadd, 0x12c4c05d, 0x4832906a, 0x79001644, 0x00003d } }, { { 0x7ccfef02, 0x7757e282, 0xe837155f, 0xe0e51549, 0x49fa0f72, 0xd59bcf29, 0x3d37d6d6, 0x37d409b1, 0x610acb7, 0x7fe37217, 0xaeb15ec6, 0xf713e899, 0x24d10737, 0x1f63c4a6, 0x6a42cf7e, 0xf8d779d0, 0x0000c7 }, { 0x40860d4d, 0x33ecd97e, 0xb32764ba, 0xf5c19560, 0x19790858, 0x7fa37065, 0x2e8edc69, 0xa8ad041c, 0x8823283b, 0x474a0f05, 0xb878fadc, 0xe8d0cdb2, 0x7b122b74, 0x75a81646, 0xb58da071, 0x9d257fde, 0x0000ca }, { 0xb9b7ba88, 0x857dc0d2, 0xad1ea682, 0xd69ee804, 0xd8134957, 0xdf6fa669, 0x251f0ba5, 0xa417849e, 0x19146750, 0xe9b9f09e, 0x773c2bb, 0xe5a4bae6, 0x1dbbd7d4, 0x125bae6, 0xcad05046, 0x889b7373, 0x0000d1 } }, { { 0x75ef827a, 0xa43fcf59, 0x95c4e77a, 0x1d2a97c3, 0xc7e2e711, 0xc78e4bba, 0xbd35892c, 0xf6699ac6, 0x1616b925, 0xee791f6c, 0x82e150ba, 0xbfe4a585, 0x5727bbe6, 0x4cec801c, 0xc3a55652, 0x50822ad4, 0x0001e2 }, { 0xf1e19457, 0x61b060e6, 0x3e220931, 0xda302945, 0x18c01bb7, 0x1376f70b, 0x32b9523a, 0xf48e7f27, 0xdea578ad, 0x31381aaf, 0x8f84ba9f, 0xf90ae502, 0x6dde898c, 0xa6c36cbf, 0x3706dd1, 0x7bc74dcb, 0x00011c }, { 0x5a597446, 0x1bcbe9be, 0x9a8f9ad2, 0x1ed9d580, 0xa5ebaf96, 0x910b6b1a, 0x4d80d8be, 0x92958349, 0x83c5ee2a, 0xfa3eecee, 0xd3a0f178, 0x5ac83395, 0x378cc1d1, 0x9d81e98a, 0x9549eef0, 0xaf95e754, 0x000142 } }, { { 0xea4f131, 0xc3d8c272, 0x13bcf737, 0x7a83c0, 0xac1fe9d0, 0x5719a1db, 0x521f2136, 0xa3b04c77, 0xbfe334b5, 0x97fbab2, 0xc8c00e40, 0x2aeeaa09, 0x27b039, 0xd3c9ede7, 0x6f61ee93, 0xd3b0b83e, 0x000067 }, { 0x47065cb6, 0xc6d98d68, 0xb0a25532, 0xad215fd4, 0x605f0aa8, 0xaba7e801, 0xd541ce08, 0xa00cc0e7, 0x331ba49d, 0x879be03b, 0x69df453, 0x11c3f88, 0x1d0bcbd5, 0xbd24bcf1, 0x6ef160da, 0x57ac8285, 0x0000b2 }, { 0x3371406e, 0x36f3d685, 0x36739f0c, 0x25b9e62e, 0x26fe77dc, 0x3d455e89, 0x751b7f11, 0xbc8f3fc7, 0x34d68e77, 0xdb5e110b, 0x5333eb24, 0xcea920cd, 0x2bfbf773, 0x2993a806, 0x6b651b42, 0xb8cd85d1, 0x000064 } }, { { 0x6901774f, 0x64cf1c9b, 0xee8a015, 0x9507f1d1, 0x97ba1207, 0x5a29386d, 0xa802e712, 0x14f9cee9, 0x32da5bfa, 0xb315dae8, 0x9d2ce245, 0x9bcf07f0, 0x97bce515, 0xdb1c6424, 0x21c03a8c, 0x55c00114, 0x00000d }, { 0x507594cc, 0x7594c746, 0x1f1e0f4c, 0x857196de, 0x5bb846c2, 0xdccad3af, 0xdfbe5f07, 0xbc711283, 0xea142a70, 0xd910dfd1, 0xc8cd25ac, 0xec3500af, 0xb8e25dd1, 0x26f1161b, 0xf88b7a21, 0x7db960c, 0x000036 }, { 0x4e3535e5, 0xb80d6c6e, 0x65a61ab5, 0xfeac4f36, 0xbf4f176b, 0x1259b640, 0x3f81c633, 0x1b22a03d, 0x686025fb, 0x7ce77fc6, 0x7a0e5b20, 0x4f9c2c1, 0x2c1ac451, 0xcbf47b0e, 0x2a1b4a10, 0xc4c8e50c, 0x000040 } }, { { 0x1406cc82, 0xc98332a3, 0xcc77a354, 0x4fb6f94f, 0xf244db6c, 0x663cbddc, 0xfe45dc8e, 0xcb5d92da, 0xade8f1bc, 0x1674a664, 0xd63f2432, 0xc768cd7e, 0xc40fbbde, 0xcded4766, 0x860f5bd3, 0xc5ca484d, 0x00006b }, { 0xd5c60bb9, 0xef6ee045, 0x2484b9a8, 0x41535b39, 0xfec1a5d, 0xe1a126c0, 0x44a5bb92, 0xc0ae8a9c, 0xdca69078, 0x8c7b796e, 0x837edb77, 0x8768f32b, 0x94170d41, 0xa5d946f2, 0x47245d47, 0x5647febe, 0x0001a5 }, { 0x92852c83, 0x6d2e787d, 0x810c7c0, 0x9ed8ce88, 0xf1cf4e4c, 0xc73a279b, 0x7d5d129a, 0x11560a1b, 0xba1a16ae, 0xa33461cd, 0xa5f0a15b, 0x209ed5a3, 0xe14a2499, 0xe589592f, 0xea7228a8, 0xb9b61ff5, 0x00013d } }, { { 0x5958c6c7, 0xc993fcb7, 0x49a1c97c, 0x962aca77, 0xd9123c0, 0x4c3c6a0d, 0xe7b1cbbc, 0xab1b5e30, 0x34ad86a, 0x2c805988, 0x8188a096, 0x56135e60, 0xc9b4f1b5, 0x8bb2b6ff, 0x9110250f, 0x3cdccc08, 0x000194 }, { 0x84d400e4, 0xbeb20a7e, 0x48f8cead, 0x7aaeffb7, 0xb25c579b, 0x9a7d3699, 0x91b51c57, 0xe0d8fadd, 0x4d93749f, 0x2b2512ca, 0x57015150, 0xaa79fb8a, 0xa6547646, 0x813b228, 0xe26a25a6, 0x4abfb129, 0x000042 }, { 0x480aba51, 0xb75c31bd, 0xd9fd045a, 0xf614b68c, 0xa301f68d, 0x5f62d46a, 0x63d3b6f3, 0x3bce979d, 0x991c6727, 0x850642f0, 0x61ecaee, 0x81134c5, 0x6d43aa98, 0x775deb42, 0x4522a1ff, 0x96cb2f6f, 0x000054 } }, { { 0x7c754fe5, 0xb192253a, 0xa3cc76ed, 0x10ee80ac, 0xf39c78bd, 0x8ebde7ff, 0x3819f441, 0xf1bcac9a, 0x4f90594, 0x8f2edfde, 0xa18aac7, 0x6112be61, 0x5fb4c89e, 0x6417a929, 0xd42c277f, 0x6196af2b, 0x000147 }, { 0xed76e48a, 0x86aa214e, 0x78692df9, 0x8786f433, 0xa5e51c69, 0xce7f2fd8, 0x69c3fd16, 0x3922689d, 0xcb090a61, 0xf39e91b1, 0x64b82c81, 0xe7650bba, 0xe541d806, 0x238d6731, 0xe6da48ff, 0x9a801f37, 0x0001a6 }, { 0x4ba55856, 0x93cda478, 0x22a64977, 0x72e550a, 0xd8731b20, 0xcf8b34eb, 0xfd2c7332, 0x48699e90, 0x95b148ed, 0x1d2cb8df, 0x36146435, 0x6925839c, 0x7e14ac9b, 0xba9c25a3, 0xa869c075, 0x78dad22a, 0x000198 } }, { { 0x5537bb20, 0xfba005a8, 0x46644be8, 0xdd02e296, 0x5f370d61, 0xa964f26f, 0x39720580, 0x2d65088c, 0xabc2974c, 0x96d0acf5, 0x66fd1db0, 0x33535d8a, 0x58259cf9, 0xe9d90e69, 0x1c35d436, 0x26a92183, 0x0000d2 }, { 0xc2974a43, 0x21bf03cf, 0xede816c9, 0xaf919e19, 0x606b8cd7, 0xa30a3724, 0x6c05e511, 0xf37744c6, 0xa8ad2da0, 0x8c75b1f6, 0xd666b33e, 0xb78f0a6a, 0x964827db, 0xe0ca8c08, 0x153c8083, 0xe758f158, 0x000103 }, { 0x82619446, 0x49f7ec86, 0x70f36715, 0x9ae609ce, 0x4843806f, 0xea97a368, 0xce76f009, 0xb7fb818a, 0xf8362cfd, 0xed130f9a, 0xf574277, 0xe720186b, 0x1763cc85, 0x8d0fdb18, 0xc578704b, 0x4aee9b91, 0x00018c } }, { { 0xc9706c92, 0xb5dff998, 0x44e0e03f, 0x12063445, 0xa85f152f, 0x9b75f1d1, 0x2644b344, 0x9cd20f1e, 0xdd1ae3, 0xc3e77ac, 0xc470a695, 0x975923da, 0x9b45b60b, 0xb54309b, 0xa966e8a3, 0x6c36b377, 0x00001a }, { 0x8d1669e, 0x98efbb2d, 0x29c66408, 0xca53e9d, 0x21f8ce8f, 0xe8cc5407, 0xd7c837bb, 0xd3ba2323, 0xc9945a12, 0xabc9806b, 0x8f0f9101, 0xaaf703b7, 0xb4145769, 0x3d01f560, 0xa9f2b76d, 0x1d499393, 0x0001b1 }, { 0xdb269086, 0xd609d80a, 0x747f13c8, 0x364225f5, 0x587c2ee4, 0x254af586, 0x6da46d12, 0xcb6f0e19, 0xe448af82, 0x92f36dac, 0xed5013a1, 0xed7d9ab4, 0x492111d, 0xca483d85, 0x1265090e, 0x7fa7ad, 0x000070 } }, { { 0xd183796c, 0xb2c9337, 0x4579defb, 0xc51b0a5f, 0x6898b42d, 0x934e897d, 0xd639a571, 0xcfc396c3, 0x15fb4ff0, 0x6c801e63, 0xe76c880f, 0xd4cfa175, 0x59c722f1, 0x4bcb9c63, 0x545e671e, 0xe641ce73, 0x0000e4 }, { 0x1e12f4ae, 0x3968c318, 0xab3bf7e5, 0xcfdcd4ab, 0x41f16aa0, 0x26ed644e, 0x2c4617f9, 0x874e6057, 0x86f294b0, 0x61078e26, 0xd1a3a17f, 0x2ba2ec42, 0x481cd9cb, 0x7685319c, 0xe8c57e70, 0x2467375a, 0x00008b }, { 0x7e211c16, 0x48d108fb, 0x208d3563, 0x9ce49efd, 0x2bb7d8c7, 0x24ff70e7, 0x5a4331b4, 0xaa049a9e, 0xd2da428d, 0x16099649, 0x760179a1, 0x726f7d85, 0x47ae46a2, 0x360e057e, 0xe67d8a94, 0xf4020562, 0x0001f1 } }, { { 0x8c44b7b6, 0xd78ec228, 0xa937c7a5, 0x59be6a65, 0xfda39836, 0xe203c528, 0x910551c1, 0xad26994a, 0xad163cdc, 0xcf6d3e60, 0xddb2fbf9, 0xa79ae923, 0x88f0cbe3, 0x843068ce, 0x1ed71e71, 0x174f2cce, 0x000042 }, { 0xe0f2ec56, 0xb7786150, 0xd030bc26, 0x17608970, 0xc6f8df56, 0xad92406b, 0x796826a0, 0x4ce03788, 0xee3b39df, 0xf665808b, 0xc2b9f78e, 0x4793ceac, 0x112e2381, 0xe4a5b839, 0xaf67a151, 0xee49939c, 0x00003f }, { 0xa9cad747, 0x9423e90, 0xa57f27c3, 0x7180e4fb, 0x68d841da, 0xfaf5e26b, 0x7ac9f16e, 0x83730032, 0x2879c17a, 0x3cc3e224, 0xe226e486, 0xb91c8124, 0x81720c31, 0xf9990a8f, 0xcaf72b20, 0x3fcd47a5, 0x000156 } } }, { { { 0xbe8170a1, 0xec01bad3, 0xd44de1b4, 0x20d3c457, 0x721f5556, 0x1285dd88, 0x9c952e7d, 0xf4118ad8, 0xea643510, 0xfcd02485, 0xe5b756a0, 0xa19680e7, 0xb0253172, 0xeb7f3592, 0x842b818e, 0xd6d3c286, 0x00014f }, { 0x2d23cbd1, 0xa311106d, 0x501d29f, 0xd1406a8e, 0xf5d691ad, 0xa955b1c2, 0xef8f4821, 0xe44af6e7, 0xac39724c, 0x27ca04a4, 0x5d9c7825, 0xa3f209b8, 0x3abfa465, 0xf10d8a71, 0x46ad6a6a, 0x1b9e796a, 0x0001fa }, { 0x3036532f, 0x14f5a292, 0x32737b21, 0x94dee329, 0xdc23b5c2, 0xe38e0a64, 0x29289eec, 0x57919a36, 0x258f24ee, 0xc87cfdde, 0x3db1b2fc, 0x4b431d73, 0x3fdbc875, 0x86842b68, 0x19230443, 0x5db6fc69, 0x0001b2 } }, { { 0x8af0b070, 0xf310d11e, 0xd3507b13, 0xda47b60f, 0x4de3c666, 0x3527ce40, 0xd328331a, 0x385f6236, 0x52462b20, 0x6bb4f8ed, 0xb4c2e3fd, 0x82bc49a, 0x13c511be, 0xfa0c1a9e, 0xfe805c6f, 0x4f67aca1, 0x00011d }, { 0x83ecb45f, 0x6f3f2aa9, 0x4187647e, 0x4c8d3f27, 0x26dae7cb, 0x715e6b91, 0x2246dca1, 0xa4d02328, 0xdec761b, 0xff8767b3, 0x6769ca3d, 0xf13c51c5, 0xbb7b90c8, 0x26442c4d, 0xe42cd0ec, 0xf9fc3a9d, 0x00008e }, { 0x3cccdb76, 0xd3c27d8, 0x185e0809, 0xb33d3b19, 0x1d80352f, 0x13eec9b8, 0x8ab3ddbf, 0xb2cafa5c, 0x6e09a5d2, 0xa5d960a8, 0xcd66c951, 0x7ecf8cd6, 0x2786ac64, 0x2a856d22, 0x4a38ccd7, 0x7f2e440a, 0x0001b0 } }, { { 0x82f0e97d, 0x16d36cf0, 0x837e1a0d, 0xaf19ed6b, 0xa0d232e7, 0xa321be40, 0x7692c148, 0x129c6931, 0xbbb810e8, 0x1d934156, 0x6345bb33, 0x4b100c85, 0x58e0a646, 0x7972a506, 0x4f80d1be, 0xf255830d, 0x000042 }, { 0x1ec565eb, 0x422ef620, 0x1dbc6baa, 0x7ac145fa, 0x2e05ad06, 0x6b0a4a5b, 0x406a4f91, 0x3bb148ab, 0xac80e4b1, 0x1fab3883, 0x44b00252, 0x55579cc3, 0xe14c99d4, 0x87c6579c, 0xde28a4d8, 0x943be8f2, 0x0001d2 }, { 0x8545e9c2, 0xb3e8cb56, 0x7faf1d95, 0xfcf50371, 0x36eb4ec7, 0x3721005d, 0x33736733, 0x2a8444dc, 0x36ef19ba, 0x5a8aa62a, 0x265c2350, 0x3c875023, 0xdf184ed0, 0xb9417b4f, 0x1dfb9e88, 0x20dc8408, 0x0001ce } }, { { 0xe0b88379, 0xf37d6f48, 0xb916afd6, 0xd4f73ec9, 0x3a5262b0, 0xea32067e, 0x7888fec1, 0x7225bc4a, 0x2701daac, 0xf568fc02, 0xcfb64dd4, 0x5be96365, 0xb9b50564, 0xfa44d269, 0x6b7afa19, 0xdc4b8387, 0x000038 }, { 0xa671f3d3, 0xf604a994, 0x8bdd493f, 0xf0e6078a, 0xa23eb6f5, 0x9434f5ea, 0x4e42d4a8, 0x5f75a2aa, 0x37592516, 0x3979ba29, 0x9546138c, 0x89764ee, 0x427c9350, 0xe5e3083e, 0xcc8b397a, 0x25704d02, 0x00007f }, { 0x273654b2, 0x11174bda, 0x1a909c9c, 0x3cdfe4dd, 0x23405fe, 0x5ca2ca2a, 0xfff40a1b, 0xf3b6c431, 0x29b9b311, 0xef149905, 0xd49cab00, 0x2aab092d, 0x97b95826, 0xffc5267d, 0xfa4bf25f, 0x49c3023c, 0x0000d5 } }, { { 0xdfe83132, 0xbda04d80, 0x4b0ec824, 0x60585262, 0x3f676725, 0xee840cb1, 0x9976f81b, 0xb65318b2, 0x7f4d7a18, 0xfc50a1b8, 0x47ae0af2, 0xb9b7289f, 0xe0ec9227, 0xe34e64f0, 0x31bed246, 0x2a53670d, 0x000096 }, { 0xd506ca01, 0xf853d43b, 0xd92f9a0d, 0xfa909290, 0xb8262167, 0x2a275c56, 0x9829995c, 0x66a8b638, 0xeafc0756, 0xcf75f7ac, 0x1a317c74, 0x3258de9d, 0x77b01e14, 0x8011dbb0, 0x1cba9ccb, 0xc54fe1c0, 0x000008 }, { 0x5a978b98, 0x7ad8d933, 0x160d5503, 0x8853bf97, 0xf1320881, 0x6ca95551, 0xe623a79, 0xac7309a, 0xa96d549c, 0x5897f804, 0xb0242b09, 0x82ac84cf, 0x4e715beb, 0xd812b00b, 0xec59f3f3, 0x9cd9bf78, 0x000165 } }, { { 0x8eb66a58, 0x1eea1686, 0x61c506c, 0x49fcecd, 0x225828b1, 0xa064c3c3, 0xd4a31dab, 0xfb2bc107, 0xb9c6c207, 0x7033f8da, 0x4915d2d0, 0x52d0448d, 0x3b17514b, 0x6c67081c, 0x586db37f, 0x66ad406e, 0x0001e8 }, { 0x23c4eae2, 0x98b43d17, 0x5e8ee962, 0x85fb6488, 0x76047b69, 0x9ef0ed4c, 0xae90bffb, 0xb4fd0504, 0xebe2e472, 0xe3c22706, 0x71ba0087, 0x550b3cf, 0xe1a48b23, 0xa8f35ad7, 0x17c67ced, 0x453c79d5, 0x0000d5 }, { 0xc7537a53, 0xfe1627c, 0x609c1474, 0xa883657d, 0x7c90d42f, 0xd29bc920, 0x80663494, 0x1c672c1a, 0x6e4d110b, 0x5aeac3f7, 0x9f54904e, 0x3736de7e, 0x7f9d6fa6, 0xab208770, 0x36563b1c, 0xc7559e71, 0x000132 } }, { { 0xcd00693, 0x100a37e, 0xde063feb, 0xa3d003bf, 0x954f331c, 0xc8d9a757, 0xc3b05d1d, 0x75c5ecf9, 0xf2edbe47, 0x1e7327e, 0x4c7a4d0, 0x12074733, 0xe0310f8a, 0xce888357, 0xbc08659f, 0x43ec146f, 0x0000e7 }, { 0x8ca28155, 0x1dd00216, 0xd7c91ea9, 0x409aad2a, 0x7a5603ab, 0x6799ccdc, 0x677cb66d, 0xe2ef961b, 0x1d01b4be, 0xbbfe2a2d, 0x200734ee, 0xdab17053, 0xfa51c9d0, 0x6f429e24, 0x23dc7e7d, 0x75e8f9d8, 0x00015d }, { 0xabdeb40a, 0xae29dd60, 0xab4364db, 0x3daf83e7, 0x6b80f2a2, 0x7b9ac3a9, 0xd6b9f17f, 0x76499c9e, 0x388f35d8, 0x3a21bc50, 0x643c7c33, 0x571677db, 0x7ee9308, 0x69cb4cf9, 0xa89b0206, 0x7e938870, 0x000170 } }, { { 0xea7e4f43, 0xba65bd8a, 0xd4dc366a, 0x123905b3, 0xc626f573, 0x972db9d8, 0xea6aee98, 0x24a11cad, 0x972184f, 0xf8e69802, 0x910b037c, 0x48c42862, 0x478d9a2f, 0xb612617a, 0xc22d3952, 0xfcb89bdd, 0x00013c }, { 0x2aaf61bb, 0xeabf3d50, 0xf3adcaad, 0x93b86761, 0xe211bff5, 0x1f9c32a1, 0xcf7a7db8, 0x6e44df32, 0xbce9ef90, 0x4b7c1ce4, 0x74e7bdf8, 0x3bb5fb5e, 0xa422b7c, 0x965af94c, 0x5dc582ba, 0x4c6df789, 0x0001a3 }, { 0x3828f8f8, 0x358180d9, 0x750b283f, 0x1cb6111d, 0x2152b49b, 0xca99bdf3, 0x44a2768b, 0x68469f4f, 0x4bbc8d84, 0xc84b651a, 0x968d7c48, 0x13120f89, 0x8721fdfe, 0xabb56ffb, 0xfd30e607, 0xdbe79b10, 0x00009e } }, { { 0xba8404fa, 0x28b2a1f1, 0x7e02363a, 0xa753abd7, 0x6791f99f, 0x38fecdfd, 0x3851c37a, 0x67901a7, 0x4f9a376b, 0x229b90e6, 0x9727e3db, 0xa910e99a, 0x27207c98, 0x85c0afe9, 0x561752a8, 0x88bd5146, 0x0000dc }, { 0x2bd0c788, 0x35caa74e, 0x9a700538, 0xadfb970, 0x5801156a, 0x54fd4402, 0x3393a894, 0x788d009d, 0xb7622f71, 0x87b5b1bb, 0x140cec1c, 0x1d4cf8a2, 0x30635c96, 0x39ebc496, 0xb195967c, 0x907fcf5c, 0x00019d }, { 0x2d4178eb, 0xcc1c0549, 0x7363fe07, 0xc343a7b, 0x24dbfb3c, 0x66b5686b, 0x6e2d32c2, 0xd7b75090, 0x1a7368a9, 0x8c5cc0b9, 0x642026a4, 0xbb280023, 0x8acf3c33, 0xb664e244, 0x56af4cbd, 0x913caac5, 0x0001b1 } }, { { 0xb783db76, 0x140ffb1f, 0xf2ff8c8a, 0xb8e4a067, 0xb8acd95d, 0x6c38fe38, 0x2859c015, 0xec562f35, 0xd147991e, 0xe244558b, 0xfbd25c70, 0x36a58122, 0x3cdf2df9, 0x45e31eb3, 0x79402c4e, 0x441fde36, 0x000124 }, { 0x5d7ac40e, 0x73db9c67, 0x3a65980e, 0x6a5fac48, 0x3895bd91, 0x911d5282, 0x8f2dd65b, 0xcb6ca5ca, 0x9d99b4be, 0xf743a7b1, 0xfd192ac2, 0x862da849, 0x354e7074, 0xbefabcab, 0x3bf1e4f2, 0x1b51f91c, 0x000084 }, { 0x66a2c035, 0xc9b450fd, 0xab4a1306, 0xbf86ecfb, 0xeca243bb, 0x2966a370, 0xb90aef93, 0xf2d67ee1, 0xb91589cd, 0x2f0ba2f0, 0xe4c95ade, 0x4409b614, 0x1a419c6b, 0xbfb598a9, 0xc7f4410c, 0xe4397ab3, 0x000123 } }, { { 0x2be3dba6, 0x170142f3, 0xfb87b008, 0x7a81fa7f, 0x68cbeaea, 0x4e4917d7, 0x864b690, 0x22da89de, 0x3ef6fa55, 0x271a36a1, 0xb159216, 0xdba3c6ee, 0xd56890c0, 0x6fb282e6, 0x5872b3fb, 0xed52091c, 0x00015e }, { 0xc9d32f25, 0x72650de2, 0x5ed22575, 0xadaf889f, 0x17e21cfc, 0x87e078a6, 0x996b96ad, 0x37ab946, 0xc1a5fff3, 0x22e34a01, 0xc039008e, 0x970928fb, 0x520c4ef2, 0x6ae1a626, 0xf6f98e1d, 0x67276973, 0x0001ec }, { 0x2da9ea61, 0x16cb8b55, 0x6a762353, 0xa71267fc, 0x6ba04a75, 0x5f6ac57b, 0xaa357a8c, 0x1c82a6f7, 0x511981ca, 0x0c53fd, 0x21b16027, 0x13807852, 0x905d6ff8, 0xbdac7963, 0xfc00a8d4, 0x5f9df404, 0x000144 } }, { { 0x97704d97, 0xa54d7fc4, 0xe493d01, 0xbb2f9bf3, 0xdb81fd0f, 0x4698d31b, 0x20b055df, 0x9deb11dd, 0xb532e0be, 0x9678fcf2, 0x4341abab, 0x6e600140, 0x948a5e3c, 0x70e1210e, 0xa6e6261c, 0x1e94cecf, 0x0001cb }, { 0x9c15863a, 0x4bdc90b, 0x563fce96, 0x52db6d90, 0x738a52c9, 0xc6b3d1e7, 0x3c52cb01, 0xfeb7351, 0x7db30982, 0xdfbfe2b0, 0xa0683c3c, 0xf4c4a8d2, 0x784800f4, 0x1b0595ad, 0xf38887b5, 0x120fce26, 0x000171 }, { 0xd420a95f, 0xe1cd0f93, 0xf076b13f, 0xfc52cd88, 0xc1a7150f, 0x5187aa8, 0x8983e1da, 0x4cd72337, 0x9ddff518, 0xd9097726, 0xe10b0976, 0xf7750227, 0x89a8ebac, 0x1c96dc85, 0xdbf92ed3, 0x630fd7ea, 0x000189 } }, { { 0x512b3d28, 0xcc7834e8, 0xdf751112, 0xaf9836a, 0xc1e9f943, 0xd034e551, 0x24a3add0, 0x5da7a1de, 0x55003bdf, 0x50db0ad5, 0x7128122a, 0x10f45379, 0xc1384dfb, 0x73860eb9, 0xc7aec140, 0x5e9b6432, 0x000108 }, { 0xf1c4d7fc, 0xa73d069d, 0xce370a39, 0xda384970, 0x62bfce87, 0x4319b2df, 0x6c03d885, 0x3467457e, 0xa3c6f6e4, 0x303bd0aa, 0xf6b85564, 0xcc40228c, 0x19c4301e, 0x4a96d89, 0xa84c6780, 0x36407b84, 0x00017d }, { 0x19359cf0, 0x23021b, 0x88964dac, 0x2b527074, 0xceba9500, 0xa977a216, 0x15f2497c, 0x370744b9, 0x96ce9c2c, 0xbf7fa82d, 0xbfc70498, 0xe4e44a6a, 0x7c276333, 0xd80aaa9f, 0xc36da182, 0x9ee04146, 0x000071 } }, { { 0x93ff7e65, 0x7b998900, 0x5a6b08a7, 0x995249da, 0x7cb56b88, 0x16407437, 0xb29d5af9, 0x9639c080, 0x65de2fe9, 0x679ea082, 0x4048bca5, 0xb99bb71a, 0x39162dcd, 0xd33214fb, 0x9f46310, 0x53df56e6, 0x0000f4 }, { 0x7b0bce8c, 0x520b6118, 0xb6f6830a, 0xf123f3f6, 0x4f5751b4, 0x2825349e, 0xaa651eb7, 0x1dd662a7, 0xae402499, 0x2c565985, 0x51833d99, 0x87b6d65, 0x5862bc06, 0x7991c962, 0xd5abea20, 0x3b867d2d, 0x00001f }, { 0x14beb6fc, 0xdef1599, 0x84bd4f0c, 0xe28ab410, 0xe0a8de7d, 0x1e147924, 0xfae9b925, 0xf82787d7, 0x28a1a881, 0xe1717c47, 0xfe7f9201, 0x3a56dbb0, 0x20f4a642, 0x532d9b7, 0x3cd72afd, 0x5958b951, 0x0000ee } }, { { 0x220f0839, 0xaf9768d0, 0x4cbbf8c3, 0x254ec8a4, 0x6987cff6, 0xf3dd1fa, 0x60367575, 0x44d685d8, 0xbec43a7f, 0x9f61e13f, 0x9d6d5e08, 0xcec92a54, 0xedac6c27, 0x29709c37, 0x166eae29, 0xfe69f884, 0x000196 }, { 0x971810eb, 0x2841fc78, 0x68859170, 0xb61827b5, 0x2c1bd691, 0xc7f045ca, 0x90632ec2, 0x4aab8de3, 0x64a925e3, 0x5388bd75, 0x3a4bba83, 0x193fe52c, 0x6e1c2a68, 0xe9362af3, 0x8f8aef33, 0x27d7e1db, 0x000124 }, { 0x53588a08, 0xe2d29c12, 0xe5af6fa5, 0xa3ff5bc, 0x1f73799c, 0x1104998e, 0xf289630, 0x48f6c808, 0x90daff15, 0xc5b2634c, 0xad3e666a, 0x2e3ed8a7, 0x7fdc0eae, 0x351d0e53, 0x268a02fc, 0x41f105ac, 0x00012e } } }, { { { 0xe58c942b, 0xbd3a57df, 0x8ad3cc5, 0x5dc62f3, 0x486520b, 0xdfecabd2, 0x13cdcb2d, 0xdbe9fb6f, 0x77ea3bd2, 0x28e9391, 0xcffc5a64, 0xe7c7e43e, 0xe42a1cab, 0xcc5494ff, 0x68033784, 0x4f3e462b, 0x0001a0 }, { 0x609b981, 0xa118ab98, 0x8460d302, 0x64c0153d, 0xbbe5063a, 0xae04cfef, 0x7941ceab, 0xa3a22179, 0xc1651fa7, 0xc3154da2, 0x581b5a12, 0xe3e6384e, 0x2d99ef01, 0x262419a7, 0xb3f3a2ce, 0x292415a, 0x0000e4 }, { 0x4473d9af, 0x2fdf8a7d, 0x54f665d6, 0x73a2f82e, 0x1ce307f7, 0x65d824cd, 0x21e0d03d, 0x6fbb9889, 0x8005b638, 0x49d6cd10, 0xe1909882, 0xe4fb0406, 0xfb3b6d66, 0x96935e8, 0x50c66091, 0x3a053a5d, 0x000170 } }, { { 0x5daaf279, 0xc8e29d3, 0x3427ab27, 0x336f7a9, 0x907a90da, 0x4bff74f0, 0x7cdb4ac3, 0xa5fcdabb, 0x9aecc50d, 0x56bb7f87, 0x619f318f, 0x4481c618, 0x307f61f1, 0x7a80125e, 0xeeac0dc3, 0x321f0771, 0x00002e }, { 0x2859b78c, 0x86348723, 0xc3d488bc, 0xdeb9d55d, 0xe62f607a, 0xce60d641, 0x58a27ead, 0xf530d2dd, 0x2a588337, 0xc841ea37, 0xdcaafce7, 0xb700a439, 0x366d93e1, 0x2a1bf91a, 0x94aa62d4, 0xf541636c, 0x000169 }, { 0x8cfac3f4, 0x6c55bffc, 0xbcb3e72, 0x1d42c371, 0xf7f8d309, 0xa64e1496, 0xc6218211, 0x5d8ef7f7, 0x610a4404, 0x8be72be4, 0x68e35d54, 0xf4dc6b2f, 0x186800e7, 0x43c78d3f, 0xf9f85e97, 0xededc73d, 0x000069 } }, { { 0xd99c14a, 0x43b534c6, 0xec492a07, 0xa9dc45d8, 0x8443711a, 0xfa83a891, 0x7f9115b7, 0x9a96972c, 0x93e37159, 0xda3770bc, 0xaf295261, 0xb6dc59fe, 0x277be790, 0x6363f1f9, 0x763e765a, 0x98d1be4b, 0x000044 }, { 0x86e0ab90, 0x7ecd9d10, 0x97540f52, 0xa0251c71, 0x5dbd87ca, 0x6f877cfd, 0x86fa1d3, 0xc2f768f0, 0xf8610b1b, 0x6f0c9f18, 0xca0c02e5, 0x4f0850, 0x734d5f07, 0xb6f9eb2b, 0x29f11439, 0x325b5c39, 0x0001d3 }, { 0xe0050575, 0x9dcee5c8, 0x8593a4b9, 0x481c0567, 0x908cc519, 0x87e37a22, 0xac95fcb5, 0xdd64de3f, 0xda46414f, 0xeb1d17be, 0x535b1b9d, 0x370a8200, 0xf669f852, 0x83551a60, 0x4eae7a37, 0x8c391581, 0x00006b } }, { { 0xaf46d125, 0x4c039a18, 0xc561047e, 0x48af5d65, 0x5e15f01, 0xc1fc1dd5, 0xd52f90ed, 0xd7bcb6f5, 0x98361a4a, 0x93cfaf14, 0x6227d539, 0x343e5e8e, 0x340edc5a, 0x459b5dd, 0x701d1af0, 0x95184cd9, 0x000088 }, { 0x898e38f4, 0x352023f3, 0x9563a215, 0x1beedfca, 0x536942d5, 0x9dd2b9a9, 0x56af55a1, 0x596db43c, 0xfccd2ab1, 0xa6461977, 0x653bbf5b, 0xa32ddf6a, 0xf9103adc, 0x9e4bae1d, 0x34baba5d, 0x474fc116, 0x000016 }, { 0xaa0991ea, 0x13879636, 0xe83b522e, 0xa0664870, 0x4558853c, 0x72a8823b, 0x79c56e25, 0x59dc8411, 0x910f4a57, 0xa550328e, 0x963b6d3, 0xb6257231, 0xc4b7907c, 0xe94efc0d, 0xbdce06dd, 0xb058f42a, 0x0000c0 } }, { { 0x2c23e998, 0x28aa3978, 0xd351abd3, 0xf596985e, 0x708dfc2e, 0x94c8187c, 0x52ae2523, 0xc6521043, 0xd04e502b, 0x2d505ebd, 0xf034c27, 0x8444f9c6, 0x58f6720a, 0xb40f104f, 0xb1813e93, 0x1a4b8f8f, 0x00007d }, { 0xca879eb5, 0x906986db, 0x77dee89e, 0xa7d36d5e, 0xf55b9045, 0xc9ad35e9, 0xaaceb682, 0x82668bd, 0xf511de3a, 0x924b4f24, 0x237d7ca5, 0x97444fb8, 0x18cbf6d8, 0x8460318b, 0x8d5f458e, 0x6bfd21d, 0x000068 }, { 0x2176dcbc, 0xfbb9efe5, 0x9058f800, 0xa379817c, 0x4b1b52fb, 0x694a1d89, 0xc03352d6, 0x367cbe33, 0x73cbb984, 0x4f6ad98a, 0x847bf5aa, 0x54622791, 0x6d944fba, 0xf675f9b3, 0x188b3d54, 0x94a6c1eb, 0x0000c5 } }, { { 0x18562514, 0x6e056809, 0x9645fae5, 0xbf08392b, 0xe1a835df, 0x84a7fc81, 0xab10cb13, 0x3df8200, 0x632d0ef3, 0x636797e3, 0x3b05de34, 0x262a3833, 0x86068e8a, 0x5e0717a5, 0xa515c691, 0x59014ba1, 0x000088 }, { 0xda9bdd86, 0x33876fc2, 0xd88a7211, 0x3ba7fd09, 0xb864b414, 0xc7e3bcfa, 0xba83b563, 0xfb99d809, 0x65e4f864, 0x937b9fe8, 0x18c57f4c, 0x502351da, 0x582774ef, 0xe73dee7b, 0xae3acadf, 0x74f2b031, 0x00014d }, { 0x52caba56, 0x9941169d, 0x6acdf832, 0xd001551f, 0xde36e248, 0xb490914b, 0xe2f7c693, 0x86e487d1, 0x41e93664, 0xf4b9bf8f, 0x4fe5ff3c, 0xe8a6c6e6, 0x5b872bf9, 0x51fa74ae, 0xaa59458f, 0xf17c0a96, 0x000141 } }, { { 0x27c7cd40, 0xee20b8f2, 0xa40023a5, 0xc0ff99eb, 0x4494b68f, 0x2d7f69e4, 0xc7d0cc86, 0xb1759040, 0xd8adb61e, 0xea7d3b85, 0x73dda23a, 0x15f43a8e, 0x96a7b1a1, 0xc27221c1, 0xa4c2a79a, 0x53edd0b9, 0x000188 }, { 0x3df485ba, 0xcb962957, 0x1a469b7f, 0x77d6b48a, 0x13428b4, 0xf25abaca, 0x90c656c1, 0x597da7c4, 0xe68ac2ca, 0xb2a74644, 0xe604f077, 0x17e87632, 0x36f445af, 0xcc188785, 0x3638b378, 0x852ec859, 0x00005c }, { 0x61425ef0, 0x8e5808a0, 0x3b510101, 0xc6796a69, 0x4e317187, 0x1c81aa8f, 0x90f1c18b, 0x651c47e3, 0x967d4d4, 0xc1c277eb, 0x6a419ef1, 0x8fee255e, 0xe13f274c, 0x42d4ff33, 0xb71b3e0d, 0x675ebc59, 0x0001e6 } }, { { 0x466393a4, 0xa6e44d2b, 0x7dc743ac, 0xb23eb5a1, 0x7f308f1e, 0x5ca00abe, 0x74bfa7ee, 0x672cb67a, 0x44932fd7, 0xb2027c96, 0x41b6dee7, 0x355c8036, 0xf983f451, 0x572d8109, 0xbef32266, 0x621c706a, 0x000188 }, { 0x8b4d58c, 0x5d44d74c, 0x4ad972f4, 0x8524190f, 0x407fd2b4, 0x47ab7015, 0x9452623a, 0xac6d1c66, 0xf742a2ac, 0xf72fc639, 0x3d40d859, 0xb3018a30, 0xef5bd131, 0xa84807e7, 0x218f6d85, 0x5726cb02, 0x00019e }, { 0x4c3d71d5, 0xb5fb5c4f, 0xdee5f845, 0x8360f413, 0x62adb2cf, 0xa1aed428, 0x37e1c247, 0xf73a24fa, 0x1259d0dc, 0x221ea459, 0xa44977a3, 0xf2f622af, 0x126bfc9d, 0x21d0d6dc, 0x59aa824, 0xdfa33dc6, 0x000152 } }, { { 0xc041f409, 0x5c0a03ca, 0x2ad322e8, 0x50e9cd3d, 0x73ed1df, 0x18bf9bfc, 0x82cdbe65, 0xf3ac504e, 0x640acaf5, 0x30510631, 0xc7bf9df6, 0xa0bdcfdc, 0xa6309fc0, 0xbd74ea8e, 0x8d705423, 0x9ed83c6f, 0x0000f7 }, { 0x1c1dab71, 0x34f50005, 0x2c7216f6, 0xa39fd271, 0xe35aabf3, 0xdb201d9c, 0x257e380a, 0xafc15214, 0x45bac98a, 0x5e212218, 0x1792bc7f, 0x446ad879, 0x958464c6, 0xe3adb71b, 0xc4945919, 0xbad37507, 0x000055 }, { 0x299ced61, 0x2528e9f0, 0x5fce1ca2, 0xfdb5c44d, 0xc3b3da5e, 0x5d92dad4, 0xa4c641b8, 0xa0a5eb4c, 0xaf4b4493, 0xa01121bf, 0xbdbdb23a, 0xb5c439e2, 0x6242a480, 0xaa81f13d, 0xdae7fa2f, 0x8d66891, 0x000065 } }, { { 0xfec2ac60, 0x8f0456fe, 0xf8164b14, 0xccfade74, 0x99f969b1, 0x7d9f37b5, 0x4aa7353b, 0xf2ebb7b3, 0x2e1b427f, 0xee78d362, 0x619bcaab, 0x134c37fa, 0x29904925, 0xbb16b4b0, 0x9a073c53, 0x94b0b27f, 0x000062 }, { 0xce177a3b, 0xf0c2fda7, 0xce2405b9, 0xc10328a1, 0x3b0de467, 0x16fdd429, 0xf565d9e6, 0x9832b3cb, 0xfd3cdc4f, 0x86add367, 0x34b9ed2, 0x66b031b9, 0x28ecd574, 0xf255a5cf, 0x19be103e, 0x1949213d, 0x000083 }, { 0xaeaaf258, 0xb80ca5d6, 0xad66fc6, 0x59788ee2, 0xb864561a, 0xe5c41b3e, 0xfc905382, 0xb03137b2, 0x329f4aa0, 0xe3234cb5, 0x22a4ed46, 0x71ddcdf6, 0xb934fa7, 0xbeb534b1, 0xc7200ff3, 0x2fd6bd53, 0x000022 } }, { { 0x985bc17, 0x4549f1a7, 0xc6b04e3a, 0x7ddf6239, 0xa7738676, 0x9f130999, 0x94410a92, 0x22609e95, 0x7cedcff, 0x4155e840, 0xe53e1fa4, 0x86757d71, 0xf302344c, 0xe271f248, 0xb5ad9611, 0x1b05d1e7, 0x0001b2 }, { 0x80fdb6c, 0xae781fb1, 0xba13a4e0, 0x330febec, 0x8cb510fc, 0xda33ac3, 0xe908d613, 0x65d80cb4, 0x743226e6, 0xe7072884, 0x84a3c127, 0x763508, 0x680ec5, 0x505e7756, 0x44a56b9, 0x89524a93, 0x0000ec }, { 0x5326885c, 0x11121f33, 0xf058fc1, 0xeee255e3, 0x5fcb6126, 0x47bfc36e, 0xad02e84b, 0xbdf91f4, 0xd391efa2, 0x55167bd8, 0xcd2e5526, 0xf921bbe, 0x5f84046, 0xbf41e967, 0xfb14cae, 0x503704a, 0x0000eb } }, { { 0xeed7682b, 0x31aac27f, 0xacabc9bd, 0xe170776d, 0x98e54af0, 0xd92a5faf, 0x2d5aecfc, 0x74e7149, 0xd5f224fa, 0xefc1a124, 0x165b6559, 0x7dec1916, 0x9e7907a7, 0xad0e5bb0, 0xe1fc7065, 0x2034b0d5, 0x00019a }, { 0x14e86fd2, 0xac3551ca, 0x13925305, 0x5507ea8b, 0x63aef84, 0x962ca5c4, 0x8b24c07d, 0x27654763, 0x6f5fa79d, 0xb4aa4556, 0x38b9c78c, 0xaf300517, 0x9d1f71d2, 0xb4a4c56b, 0xf8c8e20a, 0xa0facd8, 0x0000a1 }, { 0x2949d109, 0x79e0a272, 0x3433a3c2, 0x58c06ba4, 0x7a293062, 0xe4b0cb58, 0x316b281c, 0xf19c6071, 0x70270c6e, 0xdbcceb53, 0x59abb49a, 0x9db2f88e, 0x1faec868, 0xc7bca955, 0xfd64a0b7, 0x4f59315d, 0x00001f } }, { { 0x831f1a6e, 0xcb56df88, 0x73bc47a4, 0x79a8fe35, 0x12d642c8, 0x67526544, 0x5deb8013, 0xf5214d07, 0x1fddde92, 0x36016de4, 0x7efd32c6, 0xc2b65064, 0xfa0ccb0c, 0x8be03dcc, 0xe98091ff, 0x10ea67a6, 0x000158 }, { 0x49af6dc, 0x80dadcd2, 0x2e26931f, 0x3d56e53d, 0xf921003a, 0x27f99694, 0x662fba5a, 0x94fa05e9, 0xdc09dab4, 0xe0e904f, 0xfd1bc683, 0xca00d508, 0xfb025203, 0x425af0e6, 0x7cf091c7, 0xcc773b67, 0x0000ee }, { 0xade81e0e, 0x4d5c4401, 0x82cff096, 0xcb7823d7, 0xf57197a9, 0x8d8a8579, 0x97c52a23, 0x326bda00, 0x9d30ad88, 0xa38c19c7, 0x47e673f2, 0x7c8575d2, 0x568a6d90, 0x7ff0cdbe, 0xb190e93, 0xb3800577, 0x000119 } }, { { 0x2af96e1b, 0x9e6b309c, 0x57e3cc99, 0xf88a8584, 0x97f7e292, 0xf4361f26, 0x86a69eab, 0x40f7112a, 0x3207582b, 0x5ea6848a, 0xecb0b64b, 0x4c35a189, 0xc79cf045, 0x5f4af2cd, 0x51d1b7c3, 0xfda9c94b, 0x000011 }, { 0x348f4324, 0x71c2c595, 0x784c1804, 0x53ef8fd6, 0x4238a140, 0xe4e76396, 0x8209764d, 0x2e42aeab, 0x25adbff1, 0x42cd40fd, 0xb618b4a7, 0xb072b585, 0xffc426dc, 0x1e705295, 0x16c85a25, 0x5513e29d, 0x000092 }, { 0xfcfd3740, 0xa6a3d060, 0x27d42234, 0x97d0e411, 0x9c9d82d7, 0x9cee50a7, 0x8ac10a50, 0x1d859eb2, 0xee35c659, 0xacdee08d, 0x8560b8c6, 0x4b87183c, 0xa37b19bc, 0x17b71b8e, 0xbcf9326c, 0xa01d82b0, 0x0000b7 } }, { { 0x7e948ae9, 0x6c3ef637, 0x870748fe, 0x794b9de7, 0x95c6a0f8, 0xd3dad872, 0xc6b5a469, 0xece32834, 0x17abf84e, 0x5e711bc0, 0xc3266320, 0x3d5ecaa7, 0x1686a829, 0xdef6f8a7, 0xf0743e00, 0x619739e2, 0x0000f5 }, { 0x1b430b50, 0x91430dad, 0xf3e50332, 0x128c7f78, 0xd0fa879f, 0x305aea2, 0x81a06916, 0x8f4e8532, 0x78d7da81, 0xf3b4e82, 0xd5d6c80d, 0xced78ddd, 0xdfc6d4ec, 0xb155cc88, 0x9627fa59, 0x602cf816, 0x000081 }, { 0x946afd35, 0x4c207b16, 0x5e0e640b, 0x34c63521, 0xefacd6bb, 0xe69a11e9, 0xf4c8a3b5, 0xa033cf50, 0x2eb77802, 0x62c8423f, 0x12d13145, 0x997feae6, 0x494f792e, 0xbf5d450e, 0xed1296e7, 0x1e6c3210, 0x000122 } } }, { { { 0x6240deb8, 0x21284b3b, 0xb3ffe5f6, 0x80d01d05, 0x3cdce77a, 0x82b0f6f5, 0x31514fa7, 0xfc11e2c9, 0x858033d0, 0xd9f5b85d, 0x2ffd3070, 0x704e2e44, 0xc6c73a0f, 0x25244aea, 0x818b69a1, 0xd86a8b71, 0x0001ed }, { 0xfa6178d9, 0xabfefcc2, 0xd761e33f, 0xb6a00967, 0xaa22bdf0, 0xb21f80b8, 0x6c858015, 0x19614aed, 0x374fa282, 0xa01fd99, 0x329d1ba2, 0xf38b155c, 0xc1673471, 0x1e99a53d, 0x8b985cbf, 0x31ad6aa3, 0x0001fb }, { 0xdfbd4aef, 0x69508446, 0xc1f2711c, 0xf5ce0b97, 0x3979d3ae, 0xa41f9963, 0xb11c0b34, 0xb6f294dc, 0x62c27ee8, 0x92929700, 0x14fdd328, 0xdbe74636, 0x1ad98805, 0x30872870, 0x46ce3e4f, 0x32a93ed9, 0x00010b } }, { { 0xbb92ac05, 0x7278b81f, 0x41bff150, 0x474a398d, 0x6f4718af, 0x9654f112, 0xe4155c55, 0x9150a32d, 0x5baec8d8, 0x199d61ff, 0xe9fff310, 0xe6fe1ae0, 0x53af0b19, 0xa9d5f447, 0x5bfcdd75, 0xf6502215, 0x000105 }, { 0x2c000b1e, 0x6d97c7a3, 0x56edc4ef, 0x4f9f1971, 0x3f035d84, 0x7e9a2fe, 0x2e62462a, 0xa51fe4b6, 0x699f6fe7, 0x3985d208, 0x48d1ae86, 0xf06e99f3, 0x4ebef2e7, 0xc608a80d, 0x89a420b6, 0xf9c1c942, 0x0000a1 }, { 0x9cf1b750, 0x2457bbcf, 0x4c7b5214, 0xae3532ce, 0x83d38065, 0xd6786d40, 0xabbd9a86, 0xebf88bb7, 0xf9a24645, 0xfc50ab73, 0xd43c2527, 0xca525662, 0x444f4824, 0x1d4bfca4, 0x858bfe78, 0x3e60cf95, 0x00007e } }, { { 0xacc90828, 0x4806ba75, 0x5c74f6f2, 0x226a26bd, 0x1b4c206b, 0x5236a0b3, 0x637e4ada, 0xbe2766da, 0x42eaed7a, 0x94d954e8, 0x78f0cb30, 0x4ded07b0, 0x49b013ad, 0xb4455431, 0x4bb86c7a, 0xf5450708, 0x000068 }, { 0xfdbb7299, 0xaae3cabe, 0x5ed89d5e, 0xd25f1978, 0x24a8736f, 0x4b86c447, 0xd45e76b1, 0xb1a74ca9, 0xc4a6fe3f, 0xab7bc744, 0x1a78164c, 0x9b4e3dbe, 0xd10ba93c, 0x3f66df93, 0xf97c74ea, 0xe00e7f57, 0x00018d }, { 0x6cb39244, 0x2b8bab6c, 0xb2238639, 0x4e693130, 0xe8c8339a, 0xc029fa9f, 0xb0043024, 0x39fd94ab, 0xc904840, 0x13a7749c, 0x6946aae5, 0x892d5a12, 0x7cece578, 0xbf61d37c, 0xf1c5d90, 0x53a19b9f, 0x0000a7 } }, { { 0xee3d8db0, 0x2014adaa, 0x9f975a43, 0x29831571, 0xbae20d77, 0x93b19939, 0x24e3a09c, 0x847574d4, 0xd43d75a5, 0xf6c9d715, 0x6729b388, 0xed79d83c, 0xd7696037, 0xe6ade282, 0xd3cf0fb6, 0x7d4e9579, 0x0000f8 }, { 0xf6eef7cf, 0x9b7435e6, 0xdbda5f15, 0x6b61ecd, 0xe8cffd1d, 0x2a8ff96e, 0xdab4cb5, 0xe9331333, 0x97b3af5a, 0x1ae4740b, 0x439555b0, 0x8d6101a9, 0x2335729a, 0x71be6c90, 0x2b7d58ed, 0xbdcede4a, 0x0001da }, { 0xb2403612, 0xabea97ac, 0xdb3b20bc, 0xcce62215, 0xfceb9b98, 0x3ddf283a, 0xb7af6508, 0x520982c6, 0xc8609912, 0xd9934207, 0x3a8a9deb, 0x6d91dd74, 0x868f20a5, 0x53e46ba2, 0x903bb7c4, 0x2b64952b, 0x000057 } }, { { 0xdbd6eb61, 0xb9d758e8, 0x2cd16260, 0x3fc53e0e, 0x9e446a50, 0xa646e9ce, 0x8e3dff9c, 0x76e4a199, 0x4a292f05, 0xd4330016, 0xc014fa88, 0x681b382a, 0x90c614ab, 0xf9e736d5, 0xc259748e, 0x23541222, 0x000094 }, { 0x73dcd9e, 0x70c37478, 0x84df824b, 0xed5f8331, 0xef9c6727, 0x56997eb1, 0x2dfb50f5, 0x839ca6df, 0x64a729bb, 0xba496816, 0x2976ec0c, 0xa0238478, 0x53fe2e12, 0xe3b108a7, 0x3bd6328f, 0xa2f03078, 0x00009d }, { 0x642061fd, 0x98bca4ea, 0xfd51db86, 0x70c32eb7, 0x5c927852, 0x98ed8bd8, 0x61b0f8f2, 0xf69437e8, 0x2be368d7, 0x61e56dfc, 0x42c2cbef, 0x6611a856, 0x3c891c76, 0x9a849f89, 0x875b1f2a, 0xf1c74ae4, 0x00017f } }, { { 0xe5fe3440, 0xe64f042a, 0x39537a0, 0xab36355b, 0xc931aad6, 0xab53578c, 0x20ff521e, 0x45e63897, 0x262d57de, 0x25bd15d9, 0xcbe21190, 0xbaec92b7, 0x207e6dc7, 0x97658783, 0x8cfca094, 0xe391bcb4, 0x0001a3 }, { 0x6c1f449f, 0x908d7ecb, 0x5adeca4c, 0xc54976e7, 0xa8eff790, 0x928b05bb, 0xe724e783, 0xbe520dae, 0x3c58e4ff, 0x4eef62a5, 0xc053cb7b, 0xdf8f958f, 0x4c88c1be, 0x6a4bf8d6, 0x36c27181, 0x1372290d, 0x000022 }, { 0x949d88bc, 0xd5ab0444, 0x59565404, 0xdfceb61b, 0xb1485c6e, 0xd50cc42e, 0x7e0ae572, 0x75cac08b, 0x61b38566, 0xc3e1c2d8, 0xebbba583, 0x1a338e1c, 0xc210949c, 0xb3d18e5b, 0x75f79d69, 0x4a6d64f8, 0x000035 } }, { { 0x28864c27, 0x49184d12, 0x1f571d1e, 0xfbfb9d24, 0x8a6dcde1, 0xf614884a, 0x6b07657b, 0xbff7be42, 0xd98335b5, 0xaaf650ac, 0xa56eaa8b, 0xbc978328, 0xa96ee117, 0xba9ca225, 0x11d45f, 0x887f48ed, 0x000069 }, { 0xd9f3820, 0x5043bcbb, 0x4d3379db, 0xc14f5caa, 0x1bbb7ad0, 0x236c00b1, 0xc3067581, 0x6f81e4d6, 0xb8f01e5f, 0x97b5f1, 0x8f11f9ef, 0x6be8e5d0, 0x58a7d2a4, 0x8b44d478, 0xe1baf537, 0x58615068, 0x0000a2 }, { 0x2d387d1c, 0x1f0a63b2, 0x48b65090, 0xb50777, 0x17c9f595, 0x16258b5d, 0xaa151d7c, 0x7890f451, 0x47543bc4, 0xbc6cf83c, 0x3e0d661d, 0xc6d85d55, 0x2708c8cf, 0xdb4d7c41, 0xda2bb3ae, 0x92d2317b, 0x0000f0 } }, { { 0x9cc751c3, 0xdb3499fd, 0x3c4cbf9a, 0x68b574bd, 0x4758241c, 0x2d37602d, 0xb6783c22, 0x6eb0a97a, 0xfab84210, 0xb8b4c810, 0x29ed6525, 0x79f4632f, 0xd7976bd7, 0x2a47663c, 0xe156b795, 0x750931e3, 0x0000ca }, { 0x5116c927, 0x12566da1, 0x499cd1ea, 0xbfc51d37, 0xdf3c7124, 0xb7b383d0, 0x8410330f, 0xb0c7201d, 0xe04693ce, 0x763bfe79, 0x4825130a, 0x28d5485a, 0xcd72801, 0xd2c64a1e, 0x50d395bf, 0xa791fd89, 0x0001c8 }, { 0xef1aafd1, 0x27bcc54a, 0xf32034a4, 0x3b69faff, 0x4d709bf3, 0x9c2b63b3, 0xe77822ba, 0x40989769, 0x8dce748c, 0xee70f0b5, 0xf94d723b, 0x7be11fd3, 0x3454bf73, 0xa2dc9108, 0xf010f562, 0x69dc1219, 0x000013 } }, { { 0x74dc380e, 0x36edb00a, 0x2aac2efa, 0x75443a2c, 0x7017a947, 0xaaa6b977, 0x51ca276d, 0xad167349, 0x1508c9c8, 0xc079d1a4, 0x69f7223c, 0x77db04cf, 0xf14196aa, 0xed967785, 0x426b4af, 0xdafb272e, 0x000105 }, { 0x9271dfd4, 0xb779b557, 0xb3bb479f, 0x4fd9040b, 0xc3a73c44, 0x5abfcb6d, 0x9a61cec4, 0x7fa68908, 0x2261d1ab, 0xabf930ea, 0x970f6422, 0x597a62ee, 0x637fba88, 0x9531cc2d, 0x182eb3fd, 0x91ec22c8, 0x000134 }, { 0xc360d89d, 0xb1a75a3d, 0xd1501e84, 0xf85fcf5e, 0x19fa1e0f, 0x82ffc8e6, 0x40f674ee, 0x6ad1093e, 0xdd33deac, 0x98e8cb6b, 0xd0d0c6d6, 0x1033c6ac, 0x951899e1, 0x9a0c106b, 0xfdd39a1c, 0xd64d774e, 0x0000ae } }, { { 0xf809c661, 0xbe2cd9e, 0x8f3c07ea, 0x278c9980, 0xa69e966c, 0x34c0395d, 0x9794165d, 0xa608a6a9, 0x1574ee07, 0xc85ffdea, 0x82865628, 0x2bbc2ee9, 0x31dfd660, 0xc3947ea7, 0x8d6e89b5, 0xf0396721, 0x000154 }, { 0xa2530562, 0xc872de52, 0x2576e03e, 0x5b80ed15, 0x4b3104ac, 0x7c37bc64, 0x6c1d7027, 0xd992650d, 0xa0151681, 0xcef53ca3, 0x736419c, 0xd4cd67b6, 0x3bff587, 0x1fcc9cce, 0x4c72a9cd, 0x78def5cd, 0x0000d5 }, { 0x227baf3d, 0xdb1bc549, 0x20c69ad3, 0x2fe7b984, 0x2c2ccf95, 0x2a98aa92, 0x56aecf90, 0x808d4f4f, 0x32c99c41, 0x2653569a, 0x64aed5f8, 0xc154a86a, 0x78396be7, 0x88487c21, 0x1a917365, 0x57b60ea4, 0x0000cd } }, { { 0x58845693, 0x31df0548, 0xcd801b59, 0xac661a8b, 0xb6b4584c, 0xa3dabd8d, 0x838c516d, 0x9e7b935c, 0x77a9705c, 0x554e65c5, 0xd18fd320, 0xb56d76c6, 0xc121fc17, 0x9fa7d2f5, 0x6074275d, 0xd5b7e4d8, 0x0001df }, { 0xfafcbe97, 0xa5bdf341, 0x3a697198, 0x4f845cc8, 0xefc61d3a, 0xb43489af, 0x6450e49c, 0x516488bc, 0x8f0611b6, 0x8b0d0aad, 0xa8e50363, 0xd8f93038, 0x1b61c7fb, 0x69621ac5, 0xb713e907, 0x497763a1, 0x000072 }, { 0x7ded5769, 0x406f5fd9, 0x78a1498d, 0xf80856e1, 0x1f4fc268, 0xc3804ea4, 0xd178d06b, 0x14d5457c, 0x654a2623, 0x513bb59f, 0x494f9b56, 0x648c1d1e, 0x3e529be2, 0xd00615b5, 0x7adb20b6, 0x852a8ea1, 0x000020 } }, { { 0xfd1239a4, 0x6b0643f4, 0xab377d72, 0xfdf7c100, 0xd2327939, 0x33a79747, 0x6147ce17, 0xc1be6389, 0xcebf028, 0x229b10ac, 0xb42366b3, 0xb269aade, 0xe1634264, 0xa4962c05, 0xc8ad14f9, 0x67c4bd16, 0x0001c1 }, { 0x43e9838e, 0x7e2fd299, 0x6202fdf, 0xfad2fbb8, 0xe047156e, 0x7bb5f82a, 0x8ea23517, 0x8c72ebb4, 0x904da871, 0xef4081d4, 0xfaf3d009, 0x94932fd8, 0x35f6074d, 0xf25aeb5a, 0xf461399e, 0xeaeb4362, 0x0000a7 }, { 0xef7910f2, 0xda3510a7, 0xf58303d1, 0x5f562633, 0x11dc96c3, 0xa006d18d, 0x2274085a, 0xf20ea494, 0xb1eee2d5, 0x7b9e72b0, 0xf79af7b4, 0x7c1c0533, 0xd05e81c0, 0xfbba5915, 0xb39b93c6, 0xaeea3a24, 0x00010e } }, { { 0xc79975f1, 0xbd12ec0, 0xc32f96ae, 0xd4f1b2c9, 0xdfb0bcc3, 0x7ea2405, 0x3318669, 0xc02ce10, 0x30ae24a1, 0xfd8e30d7, 0x6681accc, 0x58896e73, 0x10603bcc, 0xdc02419f, 0xebc0e9d4, 0x751bd68e, 0x00013f }, { 0x2bbddea, 0xacc71d2, 0x37418bae, 0x12b11061, 0xe13b91cf, 0x79163959, 0x63cd62f, 0xd0a40d28, 0x341a6606, 0xc174df66, 0x2772c4d5, 0xd29300a8, 0xcb4fd1d, 0x7cf3b3c2, 0xba618fd7, 0xadb71739, 0x000084 }, { 0xba23d3f5, 0x27cf247, 0x1099cac7, 0x44383299, 0x27125768, 0x83fc5753, 0x9197f4a1, 0x269d3db8, 0x4bf96d0e, 0xd5c79177, 0x6dd3980, 0x26dc8b22, 0xb2236af2, 0xccd7bbbf, 0x7816b2a6, 0x4bbef3d8, 0x0000d3 } }, { { 0x83e29995, 0xbaaeed63, 0xb5e81cb2, 0x2d53836b, 0x330d2efe, 0x983a49ca, 0xd266ddb4, 0x528010d5, 0x4006a040, 0x466413cd, 0xad54f58a, 0x802bcd54, 0x2ad1f38a, 0x6a8918e0, 0x1d2f821e, 0x6829683e, 0x000172 }, { 0xe5b109b9, 0xdb20e238, 0x76efb4be, 0xefe1afa9, 0x79ad8190, 0xed378b4e, 0x826e91e5, 0x8b343420, 0x7bd7e438, 0x259d19aa, 0xbc590dc3, 0x36b6e414, 0x98148b5f, 0x17d0a7a8, 0x153475cd, 0xd41f3a64, 0x00004f }, { 0xe9618352, 0x8d0e5d53, 0x67d26bb7, 0xb44ca894, 0x62399129, 0x520d2129, 0x70030766, 0xf4ee11df, 0x72474120, 0x1ea8d48c, 0x88f7173a, 0x219899cb, 0x2ac5f362, 0x994b85cf, 0xea74cc48, 0xeb3be941, 0x0001b3 } }, { { 0xa27eed94, 0xd8ebfa08, 0x3664a37c, 0xa418df12, 0x92237bae, 0x44159063, 0xfdbde91f, 0x49a05cf4, 0xafc35d58, 0x4c9493cc, 0xcc1a6ae7, 0x3567520d, 0x6115b1d, 0xad90c50a, 0x96dcaa08, 0x3fdd235f, 0x0000f5 }, { 0x42afe163, 0x7bf1fc4d, 0x883476e8, 0xe59fde01, 0x28ad597b, 0x8cb5f20d, 0xd28eb175, 0x17fcebb7, 0x6022ce63, 0xfcbd1fb7, 0xa5d857cd, 0xb174452d, 0xb354f55, 0xf7abb46d, 0x1630cad3, 0xf474d04b, 0x000082 }, { 0x3a2b9657, 0xeae2f65f, 0x9da3333, 0x2fe40c93, 0x1d810359, 0x62376d32, 0x1ecd61d6, 0x80775e16, 0x726d7679, 0x5a50cfbe, 0xf1c637c5, 0x36adb04d, 0xdebf3230, 0x734a6331, 0xdeacda99, 0x9c745285, 0x000103 } } }, { { { 0xcbf1aebc, 0x2cb7d078, 0x1173871a, 0xf4a5278b, 0x3dfde177, 0xfcb8d617, 0xacd6be91, 0xad021cd2, 0x7f28f4e2, 0xcf905d7b, 0x1a162fcf, 0x10297b04, 0x74a2585a, 0xc6f867b4, 0x21fb80d7, 0xdb75979a, 0x000067 }, { 0x77290e02, 0xcbd49b2, 0xa4eda59, 0x9a4fd600, 0xf91cbf60, 0xa34a513a, 0x770acce3, 0xa64a82bd, 0x5b0eb182, 0x32d9236a, 0x9f8ad436, 0x3f2176a2, 0x417de724, 0xd45d2165, 0x191e5dca, 0xd95b9542, 0x000113 }, { 0xff896d77, 0xd8f23dc1, 0x618e465a, 0x426442e4, 0x770fc612, 0x9c93490c, 0x7b64be9e, 0x317934ac, 0xb6b6cdd5, 0xdde8631e, 0x16240de6, 0x1c5eede0, 0xe9c23615, 0x17689cab, 0x69daad71, 0x252ee048, 0x0001a0 } }, { { 0xb854117a, 0x472a1a20, 0xe1c23f20, 0x820b8f70, 0x35f55aae, 0xaa801287, 0x6132a154, 0x844d20, 0xc6c9b5b6, 0x9e513c6c, 0xff86338b, 0x823cadf5, 0x29df2fd0, 0xf6c25aec, 0xea1b397b, 0xc61c2c75, 0x000070 }, { 0x256173eb, 0x6117e14c, 0x3304d2f1, 0xdc9dd811, 0x2b97f8ce, 0x605cc539, 0x71966a15, 0xf9687a15, 0x8ab14ed8, 0xa7ea7517, 0x914185b9, 0x3376dc95, 0x5002466, 0xcd5bc285, 0x5238a716, 0x1eefd7f3, 0x000115 }, { 0x368e87f2, 0xfb9079eb, 0x36246f8, 0x697971dd, 0x6e69de07, 0xcb91a2f8, 0xad1f379b, 0x636228b4, 0x63ff614d, 0x4dc2c9ec, 0xd59d574, 0x74d63d79, 0xb7ff14fd, 0x86f92bd8, 0xbafa1d35, 0x211f6cd3, 0x0001c9 } }, { { 0x1919f983, 0x76c5d452, 0x57d85dab, 0x96b6984a, 0x4d0fb1c8, 0x3a70329f, 0xd90790d3, 0x9524c025, 0x42db9609, 0xb77b1e8f, 0x8a1b5f2e, 0x77e1a189, 0xdebfce9e, 0x734892be, 0xa18ebb94, 0x8572d257, 0x0001cc }, { 0x7ff02113, 0xf680e7cc, 0x1feebc3b, 0xff3e303, 0xb488af2c, 0x600116d1, 0xbd39f338, 0x85adea14, 0xd22c5496, 0x48c8383b, 0x97150486, 0xa93677b0, 0x91d1f25e, 0x9a01e28d, 0x9a1695c0, 0x82c7fd52, 0x0000f1 }, { 0xcb00691f, 0x5499a7b8, 0x30ba6137, 0xcc4ba0bf, 0x50898e88, 0x219384fa, 0xf47551ca, 0x715eadb2, 0xb7c6cdd4, 0x7129511c, 0x10bf946d, 0x83661bca, 0x98d6a98a, 0x73042b95, 0x166e3e8b, 0x1068eaf2, 0x00013a } }, { { 0xcb319022, 0x5738039e, 0x9a8e7388, 0x474a8503, 0xa9bc74ff, 0x8195fab0, 0xf3a04309, 0x5806f894, 0xb0fb5075, 0x2067b27d, 0xe912098d, 0xff088569, 0x6c42c55f, 0x5c9b6cc9, 0xb67a34c9, 0x6f948990, 0x0001bf }, { 0x7976b169, 0xb9b3fede, 0x8b552cc, 0x1d80f094, 0x4b18d292, 0x9e18d868, 0x5cb89f50, 0xb59508a3, 0x758260ef, 0x716b87fc, 0x7af190bc, 0xb63db3f5, 0x121193a5, 0x90302660, 0x1e23c5bd, 0x8060a4fa, 0x00016d }, { 0xe9ea9f27, 0xdc23991e, 0xb069cadf, 0xb04e8205, 0xa68e11b3, 0xe923c355, 0x698c676e, 0x473c6135, 0xc569876, 0x7624be36, 0xfe9c1110, 0x2e7d4e, 0xe3efc5, 0x9c2a760a, 0xfe357d41, 0x6f78b724, 0x00004e } }, { { 0x48f12ff0, 0x23d1af5a, 0x76155ed0, 0xca9e0cb6, 0x7c13c4f6, 0x31279cb9, 0xcf793848, 0x5bb1278, 0xdf66567, 0xcd3061c7, 0x3bb32e57, 0x843e9bc2, 0x366910b5, 0x9cd8bd2f, 0xddc4c00b, 0xee92eef4, 0x00001a }, { 0x52814566, 0x4238bdb0, 0x6b353a09, 0xf28bc9e3, 0x989a5ec6, 0xabe1f45c, 0xe321d702, 0xee0b5b8e, 0xea00e950, 0x90879003, 0xe024ccbc, 0x276f44f, 0x720a014d, 0x240e6310, 0xd05c46e0, 0x958703b8, 0x000162 }, { 0xce184ede, 0x6beeb22a, 0x8023a573, 0x47f8aed0, 0xcc5ea7e4, 0xf35bf1c0, 0xecea84c0, 0xf58e7fbe, 0x40c427c4, 0x1ac93c9c, 0x4cde55da, 0x6fc60ed1, 0x3551fd8d, 0xe7ecbf04, 0x4c3f56a8, 0x5f28a31e, 0x000083 } }, { { 0x61ec6a7e, 0xe26b0076, 0x90f3acdc, 0x6064e61c, 0x2675ba58, 0x661f8826, 0xa85e95c1, 0xb2887fd7, 0xf2d7695f, 0x368d8339, 0x873a4174, 0x5252ab44, 0xe342c06e, 0x7e5fdb75, 0x4eceeecc, 0xd1ed291a, 0x0000d6 }, { 0x20c0845d, 0xf47cc9ac, 0xcce04358, 0xf1124c89, 0x6d436417, 0xc9077aec, 0xf486c59c, 0x2694ad67, 0x2b8e6d5f, 0xa7bc1aa1, 0xbe2bf3cd, 0x6be2eeee, 0xc7d77a6b, 0xdb4bca74, 0x3032b0a7, 0xab8c49ed, 0x00017b }, { 0x76d0ec9f, 0xf56985b5, 0xa958a7c2, 0x47a69c38, 0x2396b1ae, 0x3a32abce, 0xee5d5e2a, 0x5f39d694, 0xd3c96752, 0x8722fa8f, 0xd0bf258, 0xe9c162, 0xb985059e, 0x24eb5f16, 0x85aaf9e0, 0xa0738102, 0x00014c } }, { { 0x180a4413, 0x58e012e8, 0x2d458cbc, 0xf42ca8dd, 0xc2467538, 0xea01a574, 0xd5b15de4, 0x67b6e282, 0x491d5c11, 0x121ec9d6, 0x3fb248d6, 0xfc9f1466, 0x165330c, 0xfed6522d, 0x7c11294f, 0x746b105c, 0x000199 }, { 0x3aaa7e37, 0xf4320058, 0x5a0a7fbb, 0x734a9634, 0x80b9f1c2, 0x49e17bee, 0x74da05eb, 0x57489df7, 0xe049097e, 0xb748bbe4, 0x5fd6c536, 0x3976c248, 0x3dfb1698, 0x560f1001, 0x770258b2, 0xd8d9db3a, 0x0001a2 }, { 0x65a30cb4, 0x2a35932b, 0x9ca17028, 0x1e2a14c0, 0xfad40517, 0xd3199ba3, 0x78e6d7fe, 0x9db09996, 0x4b0d4cc7, 0xee3fb882, 0x1415fe14, 0x639d2e0d, 0x768f43b6, 0xc8b0b380, 0x3a9c4a0f, 0xf8ad2f79, 0x00003a } }, { { 0x1498ab37, 0x7ab4749c, 0x9bd610be, 0xe5ce7a1f, 0x1aa845ce, 0xb6cee267, 0xb0527e2d, 0xd7c82b1e, 0x78db22e7, 0x2e14772d, 0x2cebd5c1, 0xcec47737, 0x941cb8db, 0xa50da510, 0x664efefe, 0xcfa1fb80, 0x000193 }, { 0xca94ee3, 0x11b5755d, 0x1c2a1d33, 0xd29c0268, 0x44f4589f, 0x25b415f2, 0x99522466, 0x593f5ae3, 0x215da626, 0xde0252e1, 0x7cf97bd1, 0xb5b4ad5f, 0x5d6409ac, 0x8185e422, 0x730081c9, 0xddd824a, 0x0000fd }, { 0x4b6b5a6a, 0x40d8b6cd, 0x6ea59246, 0x5a2d0c53, 0xffbda8ca, 0x7e7fd982, 0xdd9a856b, 0x5dcf1d8a, 0xfe28fa69, 0xb4e8de20, 0x869fa7a1, 0x136c059b, 0x48e6b0ec, 0xba520f4, 0x30a86958, 0xaf514a4d, 0x0001cb } }, { { 0xdde558b1, 0x2ac3863b, 0x276d5991, 0xf7d3b38a, 0x23b4817a, 0x65b940dc, 0x7112f1ee, 0x2bd70f63, 0xc2c7b6d8, 0x9c6317ff, 0x7e894426, 0x6aefcde0, 0xa123483b, 0x8b3f13c2, 0x5982cda3, 0x6dec8ac6, 0x000052 }, { 0x51273b8, 0x64956338, 0xfa5fc1ec, 0xac47948b, 0xf2702f96, 0x9d4a2089, 0xc5811b8a, 0x1fb3de28, 0x78b06273, 0xad9cc3b9, 0xaa01bafc, 0xb6e850f4, 0x23873870, 0xf52af064, 0xb1f96763, 0xf5cde4b4, 0x0000df }, { 0x666e1c5d, 0x3a45fbbd, 0x73c7e757, 0xb4775a7e, 0x6b7345a7, 0xf2611664, 0x5e87f05c, 0x6a24c78f, 0x1d2c1e84, 0x292e5579, 0x898cd32a, 0xee40ba37, 0xa2328843, 0xe6b9b338, 0xb33ee257, 0xd3f8469f, 0x0001b7 } }, { { 0xcf52417f, 0xa3216102, 0x9b4def78, 0x529cce21, 0x31327855, 0x51543991, 0x1aa35021, 0x558910f7, 0x39aa9b6, 0x1db44905, 0x7fe3a76e, 0x1d60c5d4, 0x354a58d2, 0x30fc7a85, 0x61c2faec, 0xe6bc9338, 0x000073 }, { 0x5fb66708, 0x40b11efd, 0xacc8b446, 0x69aa72b2, 0x61dd7be2, 0xd6f5f3e3, 0x3243224b, 0x733ecd35, 0x6c43f659, 0x4d43a4f5, 0xe51172c, 0xfa1666e8, 0x873381c, 0x4a778912, 0x744bbfc6, 0x7316197f, 0x000189 }, { 0xecdfa463, 0xa082492b, 0x9a52ceba, 0x583b2bde, 0x1aa4cfba, 0x79ca751, 0x1df9478e, 0xda37be51, 0xc938001b, 0x7c1d926d, 0xbf800cd2, 0xbae4cd65, 0x42899930, 0x1a873820, 0x9d94f922, 0x4fa44a6a, 0x000019 } }, { { 0xf1c32e04, 0x7e5a2338, 0xbe33e238, 0x10a3f088, 0x11f440e, 0x459052ec, 0xf6801c47, 0xea514ccd, 0x8e16e70a, 0xf191d13a, 0xa2bc6ecd, 0xfd166f1e, 0x490c34b2, 0x66003e3e, 0x61a1e8be, 0x8dd032a7, 0x000199 }, { 0x4e8a2839, 0xf2002623, 0xdd9cb027, 0x3c97715e, 0x88d017af, 0xf352cdb8, 0x94d2d39f, 0x8e20ced5, 0xa85c6e15, 0x1b50be64, 0x9d7459e6, 0x3a0557b5, 0x4bb3f275, 0x80f346b5, 0xab72a64e, 0xf5555fec, 0x00011b }, { 0x3412e12e, 0xa6a64e13, 0x1782fe8d, 0x28616b95, 0xed959186, 0xb9f1ae0f, 0x33997123, 0x72f18ef8, 0xc8a001e, 0xfa9f2bb7, 0x3de92cd, 0x51084fa2, 0x81fc4d36, 0x11ca451, 0xb78dbfc7, 0x72e05eb9, 0x000184 } }, { { 0x2f32404f, 0xaca1a94d, 0xaa9fc553, 0x35bd55fb, 0xba77d1a, 0x3150bfb7, 0xb48475e3, 0x338a43c1, 0xbce0e6aa, 0xc435d7f6, 0x14cbe0a, 0xbe1098ba, 0x66388310, 0x33acd2da, 0xe88b8236, 0x69cbce69, 0x00000a }, { 0xaeaf48b9, 0x86fe73bd, 0x35bfca28, 0x7c9d6aec, 0xbd9cf144, 0x3cf25690, 0x2c03e801, 0xf569dab0, 0xd5c912ca, 0xd4fffbfb, 0x55ced7f5, 0xb85ee6b8, 0xdfa3e78d, 0x7b75c00a, 0xf38a5c28, 0x7d833ee7, 0x000107 }, { 0x4d38e10b, 0x3bd01fb6, 0x8cf3ca3d, 0xff9bb1ca, 0xec150aa3, 0xb77406d9, 0xd3500e2c, 0xc156cba3, 0x13a389c5, 0x6cc1a246, 0x5fcd935e, 0xe03e80b6, 0x115f915d, 0x6113ad74, 0x75738c0e, 0xe84e15e4, 0x0001b4 } }, { { 0xce59928b, 0x116103ff, 0xd5f2751a, 0x3ce04a03, 0x523ddcd8, 0x4c55ead9, 0x29cd9460, 0x1f21dd08, 0x4e7b182d, 0xaccb1e95, 0x21f91fb0, 0x6fdf9f82, 0x9560acc1, 0x37c0f86c, 0x7242c07a, 0x4265051a, 0x0001f0 }, { 0x2c87fe6c, 0x7ca77725, 0xc8b6fa4f, 0x51de91ef, 0x610ad90b, 0x33a459b4, 0x313d2252, 0x472cda8f, 0x77c8c8bb, 0x4ccbbe3e, 0x9028efce, 0xdf587957, 0xde0445c3, 0xb3191df1, 0xd8134b6f, 0xfd7a8e0, 0x000048 }, { 0x9314f1b4, 0x8cd641a9, 0x1775303b, 0x32ac1f3a, 0x149325ca, 0x1de31334, 0x52fc3de1, 0x6a71d328, 0xbba99b4c, 0x2e0199c3, 0xc4ce9c1a, 0x70d52fe4, 0xa91a2115, 0x5310291, 0xec5b294d, 0xda561270, 0x0001e9 } }, { { 0xd66c4b3b, 0x2eedc9d9, 0xcd491865, 0xc1cf35c3, 0x776298e, 0xe35af40a, 0x45484316, 0xead67241, 0x3f1c464c, 0x495547b1, 0xa5ee1e8e, 0xa7ecf21c, 0xa4041770, 0x5c7cf9d2, 0x418e1206, 0x3dfec833, 0x00006a }, { 0xf829c1c, 0xbeea0c2c, 0x8856d277, 0xc98f1d53, 0x56eeb630, 0xe92e8855, 0x519ae2d8, 0xb8ed9e00, 0xd5c98472, 0xa5b2709a, 0xeb19e57d, 0xc768d89e, 0x2fca5fb8, 0x64d1aa7e, 0x553d379e, 0x845860ff, 0x000152 }, { 0x97323290, 0x970857cd, 0x80809a63, 0x46ccd4b3, 0x4c55af49, 0x3241867d, 0x6f5ae57b, 0x8ca0885, 0x7172824, 0xa7f16c78, 0x86d529db, 0x71a46b1, 0xe20bf968, 0x5e1cae07, 0xcad600b8, 0x87ed493c, 0x000163 } }, { { 0x9a436f18, 0x850ab063, 0xee4bdbaa, 0xa022aa48, 0x996695fa, 0x5270485, 0xda32527a, 0x47c3edb2, 0xa32349b3, 0xc5f3b47f, 0xd9042607, 0x639c0017, 0xc110b1b8, 0xf12b53e1, 0x7a611acc, 0xd081577d, 0x000055 }, { 0x5a42f300, 0xaec5c620, 0xdbfa4258, 0xd3f4afd1, 0xfba428e9, 0x3b007225, 0x474dc4fd, 0xd595c87c, 0xe7b45630, 0x6d1be1b8, 0x9f5659ef, 0xcc28ea1f, 0x41eab0f1, 0x4d9c3ede, 0xe93d76c7, 0xaf553e90, 0x0000fc }, { 0xb71dcfb0, 0x900d8cce, 0xd3dcbb9d, 0x93c2461b, 0xa079b8f5, 0x10fcc901, 0x8e18cb48, 0xc71ed753, 0x6ffc1783, 0x69bfbb85, 0x76adb766, 0x4718d04, 0xfdd4c79f, 0xc8b3deee, 0x4725b32d, 0x8b998d12, 0x0001ac } } }, { { { 0x82378be6, 0x257a6453, 0x5ee6127c, 0x7cfba531, 0x62cf740d, 0xaecb34ff, 0xab8f508, 0xcd912de0, 0xfbee9c04, 0x351f2fc3, 0xb4e640e6, 0x21f820bc, 0x1c3b1cfe, 0x35cdb63c, 0x5903d9b3, 0xfc75965f, 0x0001e3 }, { 0xd5c89eb7, 0x1743477c, 0xbee2da2d, 0x998513f8, 0x20ebbb46, 0x3546000a, 0xe8ef5608, 0x353030e6, 0xff32ca93, 0x37ef27bf, 0xae76f401, 0xc7e5b37, 0xdc7fcfdd, 0xb59b8ce2, 0xf07d8058, 0x341d5722, 0x0001f3 }, { 0x72b0426b, 0xe3a38c78, 0xec1d6506, 0x3e410468, 0x6bb78c3a, 0x228eb640, 0x77ddf3, 0x1572e890, 0xc82e8b0c, 0xb508ffcf, 0x282fa558, 0xafcb255c, 0x1465e159, 0xf4a428c3, 0x4f65a2f8, 0x8931cc4b, 0x000021 } }, { { 0xc7a61461, 0xe7abd118, 0xf09f7d5f, 0xe5c151f0, 0x434c39c4, 0xa255d3e8, 0xabd53c72, 0x94556eee, 0x412c5955, 0xfbadad31, 0x282bf2e5, 0x8635747e, 0x4e66e4e8, 0x150aa3d3, 0xe94473e, 0x7233e336, 0x0001cc }, { 0x59811a27, 0xadb546fd, 0xa905252, 0x221bf185, 0xcf13e9d5, 0xcef65a3, 0xb855a91, 0xd5bf2314, 0xca7dda8d, 0x887213cb, 0x84820879, 0x79b78760, 0xb9ea16bd, 0xa401e50c, 0x17904d8c, 0xe306a814, 0x000146 }, { 0xc74d76, 0xe4366231, 0x4fa088bb, 0x882a0995, 0x573fd945, 0xf4aeb90d, 0xa5195e33, 0x81829c08, 0x8b3d40db, 0x183a8e96, 0xac5900e1, 0x6039fbb1, 0x7765d7b3, 0xc7881553, 0xc068e2a0, 0x2ea12a1e, 0x000103 } }, { { 0x1e28eb3, 0x8af39153, 0x7757cb57, 0x42da2b95, 0xfc94c214, 0xd58fed91, 0xfc008555, 0x94f5434f, 0x97ee54c6, 0xe6dc60c0, 0xfab9809f, 0x6a928f73, 0xd05b6910, 0x968e8ed5, 0xc48bcb7a, 0xeecd3d08, 0x0000f1 }, { 0x21baf268, 0x397898e8, 0xf2386aa2, 0x8af37a66, 0x4414d388, 0xbef06719, 0x8e2093a6, 0xfa6ff23f, 0x4c961aa3, 0xca1cac55, 0xeecfac44, 0xdafea45a, 0xaf551656, 0x1b3553da, 0x555d9ba0, 0x69defa46, 0x000010 }, { 0xdaf7fce8, 0xa3c232b7, 0x7d771ddd, 0xe708af03, 0x5a2a5934, 0xa169a05b, 0xd3225a3e, 0x6ec51a40, 0x1212615a, 0x32b3450e, 0x7e5856f0, 0xae2cf7a2, 0x1fc830fe, 0x4b7bc69e, 0xffb69e2a, 0xf2d6b5be, 0x000025 } }, { { 0xb1a2552a, 0x505cffbc, 0x69dc4019, 0x5594b9f1, 0x66bee7c2, 0xc8a57a8, 0xc9798739, 0x44ada23d, 0x93e75f97, 0xb3be8276, 0xe8b6495e, 0xd7fbb4f2, 0x260b1acd, 0xdc1f6276, 0x566dbc0d, 0x25584ae0, 0x0001e3 }, { 0x3d40c149, 0xf1a9756b, 0x9c9a1b7c, 0xec4c5dd, 0x7c9b4d9b, 0xea2c01e0, 0x4ff6a7ab, 0x9ffdd83c, 0xc90b0ab4, 0x27838131, 0x61f402a0, 0x1c95f935, 0x56b91522, 0x89ebf717, 0xbf9a962a, 0x5c1d6d0d, 0x0001f6 }, { 0x285b9c7c, 0x95d999dc, 0x6e510c58, 0xbc411b2e, 0xc8dbe2eb, 0xfe46a554, 0xb0aad56e, 0xd890d191, 0xdf41b735, 0x38b99d1a, 0xbd2efe8b, 0x9e10a68c, 0xb365a0e3, 0x13e1b53e, 0xbb27a44c, 0xcf479919, 0x000070 } }, { { 0x7f9ef50e, 0xc32beceb, 0xdd1aac13, 0xca54efdf, 0xf0eb5716, 0x120ad316, 0x26037ac0, 0x793e56f7, 0x1bcb0c21, 0x14ffd684, 0x9f2fd77e, 0x781655f1, 0x83a7b6ec, 0xecd148c2, 0x4bfc532, 0xabc2e7bf, 0x0001fe }, { 0x9886bbf, 0x423d57f6, 0xf021b11a, 0xe53bde6e, 0xf1cfa238, 0xd1cdc42c, 0xeb60a7db, 0x43f1a4af, 0xc79779d1, 0x6fbef8f1, 0x101c9f7e, 0x130bbed2, 0xd2c30530, 0x2138a144, 0xedc7e759, 0x7ff9c7b5, 0x00011b }, { 0xbc4a40f7, 0x8d57462b, 0x481eb3af, 0x186cd15c, 0xdc5cae77, 0x20d75b45, 0x95b83c82, 0x51b7e35d, 0x55d98a0c, 0x1f336804, 0x5bfb22c2, 0x3e58704e, 0xb3bfd942, 0xc4eb696c, 0x7c503bff, 0xfd7a4ad7, 0x0001e9 } }, { { 0xa5165481, 0xdbb49748, 0xbd1b6891, 0x467f5806, 0x4936535b, 0x343ead20, 0xe6521b1c, 0x293998c0, 0xaf9409a1, 0x63257b03, 0x472c82bc, 0xec795c6b, 0x47cc91be, 0x4f22d6a2, 0x3cf01072, 0xb403c57f, 0x0000e3 }, { 0x63f13561, 0x72794a2c, 0x9db86293, 0xc1c25efa, 0x9d149edb, 0x2a17650, 0x239ba945, 0x310af4eb, 0x4c7e65c1, 0xa3fca77e, 0x5d5b06c2, 0x19d026b6, 0x63899100, 0x97cf4beb, 0xbf9d5f2a, 0x25108aec, 0x0001f3 }, { 0xbc23617, 0x33e76565, 0x58a543fd, 0xaced4e73, 0x5ce4ee1f, 0xdecb91f8, 0x7891c589, 0xe63d679a, 0x855c388, 0x70125e2c, 0xe10131ed, 0x7cdaba74, 0x76557853, 0x139dd87d, 0xc849fca6, 0x2c5b894a, 0x000049 } }, { { 0xd7844467, 0x3433ec59, 0xc5f3e378, 0xe42e85ea, 0x872c9aec, 0xe1f5828f, 0xed9fed33, 0x1e05cb49, 0x9242e9f9, 0x1bef363, 0x2ec7243a, 0x94737ac5, 0x61797624, 0x4912a6a6, 0xac404e4f, 0xbe99f511, 0x000016 }, { 0xb123521e, 0x7745235d, 0x5eab6341, 0xa5e3ccc3, 0xf18bdb7d, 0x2537e8d8, 0x3ee3e3f6, 0x1eb090ca, 0x54d52209, 0xcb824672, 0x273c22e, 0x49485b04, 0x553267c6, 0x8ecd0f8f, 0xd134e60c, 0xd5270bc, 0x0000e9 }, { 0xd17b9f75, 0xb410c59, 0xc9cf3d1d, 0xc1dfb73b, 0x6779581c, 0xb925259f, 0xf814ada5, 0x3466e820, 0xc5478ffd, 0xf5938d1c, 0x1213c843, 0xdcad6fbc, 0xd4f343ca, 0xae6e1dc2, 0xe1dd42a8, 0x2da68698, 0x00015f } }, { { 0xd663ad9f, 0xa04b3836, 0x39819335, 0x48ad65ce, 0x137906f3, 0xfe4b0477, 0x8a5e3a62, 0x456cfa3c, 0x624bad77, 0x5f664353, 0x7aa2e85, 0x800eb9bf, 0x50145425, 0x3ec388f8, 0xcb6ff304, 0x72e23ff2, 0x00016f }, { 0x293318aa, 0x95619f3a, 0x68b31393, 0xe08a5778, 0xb9b0d7dc, 0x4bc27e8f, 0xe43d4d44, 0xf71cd5e2, 0x418ea586, 0x833debe0, 0xf38b4717, 0xa822c4ce, 0xd22b60a4, 0xecd74c06, 0xa49cb51e, 0xa58876c4, 0x00002e }, { 0x6917283a, 0xc8656b88, 0x1e9e81a8, 0x1a2a6638, 0xbed473df, 0x1d2f6d3e, 0x5f640e2, 0x27458f10, 0x5a8e11b, 0x53e44e6e, 0x66a51bda, 0xfb09ed99, 0x9ec9b476, 0xedfe453b, 0xbf8b474d, 0xdb74c148, 0x0001ba } }, { { 0x2a17e32e, 0xf1d8774b, 0x1712a2c7, 0x62002292, 0xdac0840, 0xb8580845, 0xec8d5ff2, 0x36c691c6, 0xe815d36d, 0xbe191597, 0xf60ff672, 0x6f518351, 0x3f4f8e0b, 0x8946600f, 0x328a6646, 0x41ccfb9c, 0x000165 }, { 0xe1718b4e, 0x1c54f75c, 0xf2b1113c, 0xcc3e330d, 0x947b0a28, 0x4b21983, 0x5c2a1f3b, 0x3f2ffdba, 0xae90466d, 0x81fc9c20, 0x31aac049, 0x2c6d7dd9, 0x28ce406b, 0x585ed3d4, 0xfc1a3f57, 0x5ad4660a, 0x00005a }, { 0xbe06917f, 0x6a846ea2, 0xab222270, 0x8a10cbbf, 0x8ad6d459, 0x87e53d7, 0xcdd233e5, 0xbafd7099, 0xaf34b349, 0x5293494f, 0xd3705afa, 0xc02d246c, 0xf0d0df2d, 0x84fa5321, 0x8c88fee0, 0x8d6a362, 0x000094 } }, { { 0x71d607cc, 0xa0d2c28c, 0x202eba9e, 0x64243cd6, 0x9d79a6, 0x332affba, 0x3ae248bf, 0x591afa0f, 0xcacf141f, 0x4401ac3f, 0x6e4d126a, 0x17c278c2, 0x63d3c08c, 0x646443a1, 0x97c654e4, 0xb55ba9c8, 0x0000a4 }, { 0x9bc90a27, 0x2e731e6c, 0x79d17a6d, 0xfd520cc4, 0x699ad360, 0xac284104, 0xadeec28, 0x9a78be8c, 0x248af506, 0x3211d6dd, 0x8b8fe31d, 0xc84c6b05, 0x16e324c5, 0xf22fbea7, 0x5d823f33, 0x3ef46cec, 0x00015b }, { 0x2b79c4c5, 0x43f9fd74, 0x6b4ddbf2, 0x530fe53, 0xdae641f0, 0xd58583ed, 0xde811436, 0x64de4823, 0x28c4306d, 0x8681a6e7, 0xeba044e0, 0xb38339c2, 0xe7a3bcf5, 0xc8c7c3a7, 0x77f90264, 0x3a1c0150, 0x0001ee } }, { { 0xf56c47a9, 0xcce6ee10, 0xdc79ab2f, 0x5b86da1c, 0xe4ae6d3d, 0xc0e4e6c5, 0xeeb4bc05, 0x12892dd7, 0xba580652, 0x406810fa, 0x7539a9f, 0xbcca4b2, 0x4fb9a554, 0x6f0bc8c9, 0xbfba4126, 0x69d16f4a, 0x00001c }, { 0xd0854d64, 0xa0f833a4, 0xe3e57c25, 0xef96ea95, 0x152b1f93, 0xc2647d5c, 0x1dd99bf, 0x19e2d60e, 0xee131a13, 0xfae544b1, 0x8bf06e8, 0x918b6ce4, 0xfb9cac28, 0x13e37bea, 0x41924c, 0x2e2b9e39, 0x00011d }, { 0x1f3469a2, 0x5032e6e7, 0x75f56b58, 0xab44652, 0xe6df1984, 0x6f03ec83, 0x7ad0a348, 0x6a762ba5, 0x1fa6db44, 0xb6175bd5, 0x3c5f2199, 0x590d4200, 0x4412fcc8, 0x69236f96, 0x45755b62, 0x8a0292a6, 0x0000bf } }, { { 0xf035db6b, 0x88141461, 0x572710db, 0x3b7fa88b, 0xf64257f4, 0xa3b9aa6f, 0x46a3ed0b, 0x4502b825, 0x79e72b19, 0x82429026, 0xc021386f, 0x56c43861, 0x5a5b792d, 0x1bea09ba, 0xab6e4c03, 0x53f3740b, 0x000093 }, { 0xa3ac19f2, 0xe314b121, 0x79a20b06, 0xfeab78c0, 0x30b9cbe1, 0x43543d7a, 0x5d571776, 0xab94cbcb, 0x98ce1785, 0x7d61e606, 0x6c1ba999, 0x56dd0667, 0x1300163d, 0x16807ae, 0xaf9ead6e, 0x13c89acc, 0x00001b }, { 0x5c8193e2, 0x6fee28b1, 0xc0f709b4, 0xd6219174, 0x2a392ab1, 0xd974638a, 0xd7d5d5de, 0xbf503448, 0x7f523e07, 0x9d7f4ac8, 0x6c0f42a6, 0xf6ad597c, 0xd651ccf3, 0x19789138, 0xc3383109, 0x9605dd1, 0x0001e9 } }, { { 0x4185cc3b, 0x77d1059a, 0x2cff7dda, 0xd097094b, 0xca08843f, 0x61d703b1, 0xd3903cf5, 0x958ff92, 0xc021853c, 0x6ab8cb6, 0x7043c3bb, 0xa910d832, 0x2e7ba087, 0xed52dfe8, 0x88ec80fd, 0x4655c8a, 0x000167 }, { 0x85da55a2, 0x12e2b44c, 0x94f30ed7, 0xd70845a4, 0xffe62213, 0x57321866, 0x853daa09, 0x6d58af75, 0xc52e82f9, 0x2257d454, 0x729d8715, 0x80e3aab7, 0x3103df3c, 0xfa3d01ff, 0xe35fa020, 0xa8965964, 0x000171 }, { 0x7d1a15c4, 0x68efc9ff, 0xafa972cb, 0x87adbcca, 0x5b961e6b, 0x214dd9ec, 0x11e6e784, 0xba169690, 0x1d76fb0b, 0xf0d7ddba, 0x9abfb9ac, 0xd9fd5648, 0x892e7250, 0x279a6376, 0xc2277060, 0x8616afa3, 0x0000b6 } }, { { 0x31d9295d, 0x44ccd2bf, 0x9d3d4e8f, 0xfa533a69, 0x73b9a84b, 0x53b23c0a, 0x44063885, 0x272ee311, 0x451d1447, 0xfe64c093, 0x409e1133, 0x61e16e2c, 0xf1e597a2, 0xb931ee08, 0xf842d322, 0xe812ff1, 0x000101 }, { 0x8f9d84ad, 0xa5dde0e0, 0x3ea183b9, 0x89ef51e3, 0xc4e09b65, 0x98e32b85, 0xe5c8c0fb, 0x166bba6e, 0x228d8bee, 0x689a41d2, 0x6b270111, 0x6cfef81a, 0x54712649, 0xad2cf571, 0xae925b2d, 0x9664c87c, 0x000105 }, { 0xbe96c181, 0x2bb80fef, 0x1b73b2f6, 0x2b618c65, 0x305c2264, 0xd7dd7325, 0x7527e3aa, 0xb7ab18d, 0xfd06c03c, 0xbc766f15, 0xe2e26ae6, 0x7e750935, 0xa93b4126, 0xf7ec2116, 0x33c0f1a, 0x3cafcf88, 0x0001de } }, { { 0x8fa76e63, 0x72d39cfe, 0x606e3e82, 0xe7b7d66c, 0xfeb0884, 0x40d2a638, 0x5bae4687, 0xdfc9145a, 0x510c7c5a, 0xe397e964, 0x7e15de5b, 0x769582e2, 0xefffe4d1, 0xb8c511fa, 0x37712f3f, 0xf963fe99, 0x0001ce }, { 0x2c6fe6c5, 0xdcc807be, 0xa47d822b, 0xa6dc40ab, 0xb5ae9f1f, 0x3d55265b, 0xb506508a, 0x38f4f8f, 0x103c3888, 0x8785e7a, 0xc2afda04, 0x941519b, 0x53dab9c, 0x636f4ca1, 0xf9dfa5, 0x63228dba, 0x000020 }, { 0x79211cc3, 0xbd588c8, 0xdab2f97, 0x7a09f3a7, 0x4759c950, 0x692cd514, 0x31017d86, 0xd00159a1, 0xec0c5dc0, 0x82216cd9, 0xc0f68693, 0x7571a28b, 0x1833086d, 0x84a5b8ff, 0xd56b21c3, 0xf14c631d, 0x000135 } } }, { { { 0xd37e81db, 0xf5590fe3, 0x4a97bf1f, 0x5651e3fb, 0xe871cfb7, 0x4e23f15c, 0x76492145, 0x9f4859ab, 0x6a681c8d, 0xbdc70391, 0x7dbbfc26, 0x35d6b874, 0x2f05e2aa, 0x873206e8, 0x43b887e9, 0x2881a43a, 0x00019b }, { 0xc78aeef0, 0x3a7c5892, 0x576abdd0, 0x2eb135ae, 0x2fc5dcf8, 0x4248fe2c, 0xfce85ca5, 0x4ead10d5, 0x6f24bd8a, 0x3e5ea22a, 0x1f06103d, 0x6201ec7f, 0xaaadc40d, 0x362dde33, 0x116dfa25, 0x8777a823, 0x0000f1 }, { 0x65a5af61, 0xf35bffa5, 0x2759cecb, 0xf9310a0d, 0x18ca1bbf, 0x512d3963, 0xd0560477, 0xeb6fc756, 0xae8a468a, 0x4af1295, 0x6d9467e5, 0x1fb056b7, 0x9b8cbf32, 0x5c1b599b, 0xcf233c7f, 0xe2a55efd, 0x0000f8 } }, { { 0xbfb5b2e1, 0xea09c7d5, 0xc93509e6, 0xaf5b11cf, 0xf6766a78, 0xe64ac169, 0xc4714623, 0xbbd38f48, 0xa645c8c8, 0x5a430b3, 0x148dadc0, 0xe3392e08, 0x1097ec7, 0x7d1b6f34, 0x401affb3, 0xf6cdd17, 0x00001b }, { 0xaf89c2a7, 0xccda1060, 0xc6f5c8f1, 0xdb8b24a9, 0xe7865a17, 0x37c324dd, 0xe819e86c, 0x79456574, 0x1e2fd410, 0x87a66d2c, 0x96bf22b9, 0x6a2a6207, 0x92972a39, 0x2d94e4f2, 0xc3bed1b6, 0x172d5fa2, 0x0000b2 }, { 0x284d7e44, 0xda68b605, 0x589a42e9, 0x1cf4ab30, 0x3c3c4140, 0x99373af7, 0xe0ca4f75, 0x119452c9, 0xba93ee3f, 0xdb655401, 0x515f7de8, 0x8146aaf1, 0xa3f39c4b, 0x40a82c8d, 0xc882223e, 0x43cd8e3b, 0x000150 } }, { { 0xa6e8f41a, 0xc8a3e36, 0xdc2520e6, 0x65ca608c, 0x14469234, 0xf65c52c5, 0x130fef60, 0xb2da7165, 0x903e7f87, 0xbe2d1814, 0x36f66b64, 0x38588b1d, 0x2820b2e, 0x84735f74, 0xb4728f6, 0xab97ab50, 0x000101 }, { 0x31aa8c4b, 0x9361b36, 0x28ec9766, 0x99265469, 0x601179b2, 0x27c176f0, 0xaff89261, 0x461d27a9, 0x5f61c442, 0xc60c11e9, 0x8b94aa54, 0xddda70f9, 0xeba29397, 0x1ebeabe4, 0x8c48e828, 0xfe9a13be, 0x00005b }, { 0xeb4ff0bf, 0xb77fc6be, 0x83221bd9, 0x2e96619b, 0x518bb58c, 0x4c09e53e, 0xba6524ae, 0x432ec811, 0x2b140100, 0x8267b607, 0xe5945fed, 0x76f601ed, 0x3ffee26d, 0x27b7a09f, 0xaf1ea52f, 0x6038b53a, 0x000104 } }, { { 0xbab5d4a2, 0x50281c23, 0x4116b2b, 0xec60e288, 0x52214eeb, 0x2165f13f, 0x5e46babe, 0x8f6a75e8, 0x96782d4f, 0x8b096571, 0xe06c1f7a, 0x2f58927f, 0x84d47b47, 0xe71addb6, 0xec311422, 0x5b5d6505, 0x000084 }, { 0xdb9f7123, 0x78da465e, 0xc97ebc60, 0x65477fd1, 0x7180262f, 0xd4d6aa82, 0x7ca193d5, 0x8c232179, 0xf65a1d52, 0x428b359b, 0xdf2143af, 0xfa72cda2, 0xd5452314, 0x3c312afb, 0xfcdfecbb, 0x70893a11, 0x00017d }, { 0xc7ab9193, 0xabfb0711, 0x14c24ed3, 0x570c40b9, 0x1dbbc9f5, 0x1e6f3071, 0x51708bd4, 0x44e21951, 0x9526a3d2, 0xd3aec2c9, 0x1b03b96e, 0x925bf906, 0xfd33d8a2, 0xe4852cb5, 0x365aa322, 0xfe7501f7, 0x000075 } }, { { 0x8d5d608, 0xf5a28bce, 0x8fa6af1f, 0x5ab9e8df, 0x9473be3e, 0xeac1110d, 0x776af855, 0x365e70f, 0xd11048d3, 0x99e3f07, 0x114bbb5d, 0x2cf5ba7e, 0x83e74248, 0xf8b89f06, 0x4fd31658, 0xd85c0cca, 0x0000a6 }, { 0xef867ab, 0xcf9025b2, 0x3ceb1009, 0x573516aa, 0x2dd1b04b, 0x6134fd, 0x9fbdc17e, 0x65fa90f2, 0x2b3eaff4, 0xe944b77d, 0x71612c71, 0xf600cfdd, 0x1f99c785, 0x6a210634, 0xb6e2535c, 0x7623ee55, 0x00004f }, { 0x451acb08, 0x43c64a3d, 0xbf3b8579, 0xc4226787, 0xa6fa5712, 0x8e5a0e2b, 0x8326a1e6, 0xf3f17522, 0x2a0c23f9, 0xa65b1909, 0x1d56972d, 0x97465f52, 0x549de385, 0x820eb80, 0x640e74bd, 0x32ee6b48, 0x0001bb } }, { { 0x70fb052b, 0xed475c28, 0xf7fed73c, 0x929f50f4, 0x934b6024, 0xf7f8d71b, 0xc10f76aa, 0x31723790, 0xce314449, 0x90829c95, 0xf8c423dc, 0xf96f14cd, 0x812f33be, 0x7c379a06, 0xa0370a75, 0x9fda2752, 0x0001b6 }, { 0x559958a0, 0xa0f9acf0, 0x5c627a22, 0x229d1c7c, 0x83acef50, 0x3c64de37, 0x449b651a, 0x480a8743, 0xb95e979, 0x91931537, 0x44305894, 0xb6415e50, 0x1f29f62a, 0xd6f45d5b, 0x4006d73b, 0x21ae1bc4, 0x0001e2 }, { 0xdff0fadb, 0xd5e84baa, 0xf4b4038c, 0x52266880, 0xc01ecfa5, 0xcffb98d3, 0x2ec71ce, 0xcced08c5, 0x80c78291, 0xe2f19f88, 0x84e0e34c, 0x76bd3992, 0xcd32ef54, 0x199ed386, 0xa87b36c, 0xdb2ccf84, 0x000050 } }, { { 0x4af032be, 0x80d73161, 0x58a7bf13, 0x85aa3656, 0xbaca10cc, 0xc547639, 0x6d065531, 0xafe9cf1d, 0x586c8176, 0x811a56e2, 0xbeeadc7b, 0xa986ac62, 0xc3249de7, 0xfd3044ea, 0x2274998, 0xa15ea77f, 0x0001fb }, { 0x2874d52d, 0x9bcee28a, 0xa84865db, 0x162aa830, 0xb42f17c8, 0x43904719, 0x43231877, 0xf3cc55b3, 0x31a886ef, 0x8aca5135, 0x1f5a9495, 0xf404fd53, 0x94d5e496, 0xbd2e7d50, 0xf11765d1, 0x5e3f2710, 0x000113 }, { 0x240a3e36, 0xc7500774, 0xde4c063e, 0xdacaafaa, 0x8723f245, 0x3cf92674, 0xaed7785b, 0xbbbdbdb8, 0x8d663a7a, 0xec8cab6f, 0xbde79411, 0xbf228613, 0xba89ebae, 0x4f61d419, 0x10981cb8, 0xc05bbd36, 0x00014e } }, { { 0x417e867c, 0x27133465, 0x139604fd, 0xe52d566, 0xabd99b9c, 0x25ebfcef, 0x336188b4, 0xdd4dfcb6, 0x6257093d, 0x65dffc48, 0xf1b4e60c, 0x1d9fcf99, 0xbd56de6b, 0x2e257100, 0x3425a50a, 0xfad2f9eb, 0x00018f }, { 0xddb6d753, 0x67216826, 0x3236acf7, 0x51539df1, 0x56008161, 0xc6ecabdf, 0xd64c390, 0xf7cfc244, 0xe5756ece, 0xeb1d2047, 0x3a5ec50f, 0xfe30570c, 0x2780759b, 0x754a6286, 0xfd61eef7, 0x5d036573, 0x0001a0 }, { 0x4469fd8f, 0xf65284f9, 0x68d0fdf1, 0x7307360b, 0xa4378fc1, 0x588e6129, 0x9c4d9840, 0x4d70ecc0, 0x2ba75421, 0xeb972daa, 0x3dc9307f, 0x89fa0eb8, 0xd349219b, 0xf8babf28, 0xdb7ec9b3, 0x6fe4d4a0, 0x0001a2 } }, { { 0x66b75122, 0x33258c35, 0x2f05a037, 0x81d1cac1, 0xd75288e1, 0x9f1aac7, 0x346b9270, 0x9c1467e3, 0xe79db007, 0xb4dcfa31, 0x2d12a7ee, 0x7dbadc0b, 0x9837dbc3, 0xb92183b9, 0x73f25adf, 0xe20fb302, 0x000190 }, { 0xf11b8c45, 0x785eb1ed, 0xccb81605, 0x7bbed67d, 0x5bde0847, 0xd7dbc70f, 0xb47d9d1e, 0x7b813dea, 0x278a5cf7, 0x5743672c, 0x4c8d682b, 0x8b0ffca6, 0x5514ad01, 0xdbe0ceba, 0xb9d3f168, 0xd64f900b, 0x000179 }, { 0x1434c8b4, 0x26233a39, 0x6fa8978b, 0x2f85e23d, 0xd6717d5d, 0xb947d791, 0xbd74dd89, 0x437866f8, 0xc3d8d33c, 0x5333a393, 0x21091b9f, 0xe3e7ea88, 0xfd628fd3, 0xd8157eac, 0x71d89c49, 0x47eda271, 0x000182 } }, { { 0x8815a8eb, 0x20b38b, 0x7404fbc8, 0x107005be, 0xaa4c64ec, 0x5dcf0ab9, 0x1cf0925f, 0x97fb149d, 0x9391e97f, 0xf09c9fb1, 0xf719ea0c, 0x86c9b55c, 0xf2fa406f, 0x7568ce61, 0xb8d36704, 0x200870d, 0x000083 }, { 0x5fa3bc7c, 0x86c8f6e0, 0x4138e001, 0x62bb67bc, 0x21b5c4d5, 0x339c0072, 0xb3b74a97, 0x96fc1adc, 0x25368b0d, 0x2416dbd3, 0xd823b280, 0xac7fa25, 0x62be7324, 0x56aebfd0, 0xa2b25f0a, 0xa9d31b7a, 0x0000e5 }, { 0x737d552f, 0x80fe91ac, 0x7249a62f, 0x1797f630, 0x95e0f488, 0xa9410b6f, 0x8d519948, 0xefbf3a03, 0x355b606d, 0x9c186f80, 0xe1f1b79, 0x18431d8a, 0x822ff40f, 0xaa4e4801, 0x28600a2f, 0x7c159079, 0x0000b0 } }, { { 0xa91febf9, 0x1f36ebd, 0xc2b74659, 0xdf5f6013, 0xa28d56cf, 0xc3056db6, 0xf9ef191c, 0xdb9ff53a, 0x1e792154, 0x57ae6a55, 0x15430dd7, 0x50ef8e1a, 0xbc50d7de, 0xa51160f9, 0x7bf6f97, 0xd56c17d2, 0x00018d }, { 0xcfd5b9b, 0x7801c931, 0x85e0cd52, 0xf1f6fc05, 0x51771cdb, 0x5caba2b0, 0x2f4b0a77, 0x699965b9, 0xe19a63b0, 0xce6c704e, 0xa7c73029, 0x964027fa, 0xaa1eb0, 0x2073a3ff, 0x82e37fcd, 0x83d1ea83, 0x000190 }, { 0x7cb375, 0x782c5fe1, 0xd021dd24, 0x92e97ee0, 0xa4daba8d, 0x31d39b11, 0x849a858, 0xf29cfed, 0x5c431613, 0xa5eece30, 0x3f1744, 0x7a11abb2, 0x2d8805b8, 0xcfc8b81c, 0x6d1086b5, 0x9b17a231, 0x000197 } }, { { 0x1d953c5c, 0x517046a4, 0x468b77c4, 0xcd24b98, 0xec8b874a, 0xa53304fb, 0xc0102f64, 0xb00b3eae, 0xd02c647c, 0xf6daab09, 0x13e116e8, 0x8339368f, 0xe0514cbf, 0xd02763cd, 0x6c36a25d, 0x80cff1fd, 0x00017d }, { 0x1ea82213, 0x3c45f7d6, 0x982e363d, 0x862b0a15, 0xe5d178e4, 0xd6deed53, 0xbae4d9a5, 0xb8db300f, 0x3ef882fc, 0x5f7095c7, 0x8f1dc3c6, 0xa4074feb, 0x44985a51, 0xb57eb625, 0x8b38a7f0, 0xa29186c, 0x000045 }, { 0xb07dface, 0xf9410bd8, 0xb1d1465, 0x177844ec, 0xa9c2fe50, 0x1d13f1e7, 0xe266a44f, 0xc9957335, 0x78570f17, 0x149b886a, 0xe272807, 0x2f99f1d2, 0xaac3a0b7, 0x5494f3e8, 0x4ed13819, 0x6bbbd408, 0x000159 } }, { { 0x48af9587, 0xe1fd934c, 0xfb0c35bb, 0xec07d2e0, 0xdc46425b, 0x55444cf, 0xed2ccca6, 0x29a29fa7, 0xb80232e8, 0x23ff3189, 0x21ee190f, 0xe97ad1f9, 0xa66bb07a, 0xebb9f4d1, 0xf7c56c50, 0xc37d010a, 0x000111 }, { 0xa2f1fb1b, 0x520e1aa7, 0x3dc5717b, 0x9ae1696c, 0x4826b635, 0x9ee99b3, 0xdd38c20b, 0x13ea1fdf, 0xe4ce4c8, 0x2654720, 0xf3f98e09, 0xb4acd8d2, 0x857c9327, 0xdb67f6b3, 0x14178c3e, 0x1ae7f19c, 0x000009 }, { 0x66281553, 0x97ce516e, 0xb26b8b76, 0x8808a9d1, 0xd85f3c21, 0x785d333, 0x2438a0b2, 0xe616f828, 0x3bf51d56, 0x4257eb00, 0x9948607c, 0xc4b62591, 0x9cc93f18, 0x34e28071, 0x91e7a4e5, 0xcdeb4546, 0x000038 } }, { { 0x2407bf9, 0x35129af, 0x7dd9ead8, 0xf3386823, 0x2cf56f9b, 0xcd5fdd4e, 0xaabde0d1, 0x8a216b8d, 0x9888e049, 0x87c5235f, 0xf38b4af, 0x2192a275, 0xf88337c0, 0xdf062552, 0x7aa24255, 0xc9f95d8d, 0x000079 }, { 0x6661f7bd, 0x156ec0a9, 0xffbfb438, 0xa407d1f1, 0xe93613c6, 0x9c52c246, 0x88f1872c, 0x44c40fbf, 0x9ddde954, 0x70148d6e, 0xb8b91b03, 0xc9d6a80c, 0x2f9e0438, 0x4b71f2cf, 0xc8fd3d70, 0xc90b4ad8, 0x000108 }, { 0x85ae3396, 0xce9faf6f, 0x95636f38, 0x8d36d0b0, 0x264b36a2, 0xc9c0466d, 0xfb7252b6, 0xeb6492e9, 0x20e2289, 0x9492e3a7, 0xafcb1b0a, 0xfab858b2, 0xfac23cde, 0x453ca710, 0xae49354e, 0xd3644cc8, 0x000115 } }, { { 0x6f0c36d0, 0xf807c7df, 0xd20ad61a, 0x68d2a23b, 0x56144a72, 0x73e38e8, 0x6675c25, 0x6f96d644, 0xef5b8a4f, 0x23118dbf, 0x1ed61a63, 0x8b43ed1c, 0xe2cc47fd, 0x4d8eb6b9, 0x55732b6e, 0x8bac1f4a, 0x00013a }, { 0xce81a2a5, 0x306a8271, 0x98e2279e, 0xaf1d51dd, 0xfc9b8095, 0xa53fbe6f, 0x3e3ccf83, 0x3aeedfaa, 0xfdc56583, 0x869b265b, 0x9c90c2f1, 0x2008e87e, 0x91e7d92a, 0xbb86f58e, 0xaf561565, 0x3cd77c0a, 0x0000db }, { 0x575e4c75, 0xa9f91b53, 0xdd334c4e, 0xbf8b3573, 0x1d3824e9, 0xb2dbd8de, 0x6aa41d2b, 0x1739eb6, 0xb4a01fc9, 0xf327477, 0x95601373, 0xe6fa1b46, 0x833adb09, 0xe7d0c54b, 0x7319d9f6, 0xe1a5fc1d, 0x0001d9 } } }, { { { 0x824457a3, 0x994836d4, 0x5b7e6897, 0xec9a471, 0x662d1bad, 0xcb3df0ff, 0x3cfaa4ef, 0xefed13d8, 0x445f1417, 0xa7c162cc, 0x75eacee0, 0x874f5ed7, 0x6254a648, 0x857f52fc, 0xc7d87de9, 0x648c2cc4, 0x000092 }, { 0x114a7277, 0xe27378ab, 0xa5695ff2, 0xe88bada2, 0xd92ee35f, 0x1a04dbf7, 0x89ddab35, 0x45cf54f8, 0x5b0077ee, 0x31e3193b, 0xa8272367, 0x808bf870, 0x1b2f6db5, 0x8c591b1f, 0x2525151b, 0x63fdb5ed, 0x0001f8 }, { 0xe0653e75, 0xf83082f0, 0x12c1cb4b, 0xc0dae735, 0x31c0a2de, 0x10026ff3, 0xdd2b3514, 0x77701eaf, 0xcd710ef9, 0xb8a7da74, 0x5a23bdd4, 0x41500b78, 0x5969e1a2, 0x1a87b68d, 0x9c45635c, 0x9fb5bc42, 0x0000c0 } }, { { 0x220f02af, 0x25743c53, 0x174a2adf, 0x31b42883, 0x7526dce4, 0x29deeb44, 0x46856cd0, 0x2d12ef1b, 0x67ec7c21, 0xc1b3b03f, 0x6358c324, 0x945756a6, 0x44f552bd, 0x495043b2, 0x5f4bf36f, 0xcb61425b, 0x000093 }, { 0x1be7ee08, 0x1070b315, 0x6b4cff26, 0xad9d8709, 0x75c1c332, 0x8d756c1, 0x253018ec, 0xd31c6660, 0x2d6eb0bd, 0x3cd687, 0xb6167fb0, 0xb080ecc4, 0x8caa1724, 0xcbf43b2, 0x104b0157, 0x82d14cc6, 0x0000ae }, { 0x973913c7, 0xa60b8e9a, 0xd9210797, 0xef28b6cc, 0x3def6920, 0xd0063fe0, 0x3b211154, 0xc86c8fc1, 0xea646974, 0x657b354c, 0x6f1ee36b, 0x75bbf74b, 0xb38b2a1d, 0x6c9dfbe5, 0xdcc9c92d, 0x27e800b6, 0x00018f } }, { { 0xaebf670b, 0x61c52386, 0x381cef85, 0xaddc7914, 0x2f6551ff, 0x9a3de7d3, 0x1a500869, 0xce226454, 0x998fa728, 0x39d8aab1, 0x24e56d9d, 0x77525186, 0xf8d23030, 0xf319deb4, 0x7c073978, 0x1a466274, 0x000118 }, { 0x1cc2ad42, 0x4d450957, 0xa3cb105, 0x2a85cab3, 0x4e1a88a3, 0x7db80fbd, 0x89444532, 0xe8a61ed5, 0x4a08153a, 0x353e205a, 0xcc36494a, 0x576277e4, 0x50e8863e, 0x364112ec, 0xc5d05a23, 0xab92102b, 0x0000ae }, { 0x702e3023, 0xb0b9efa4, 0x16831e17, 0x49643850, 0xb0a8a451, 0x876635b4, 0xa4806f25, 0xd28968ad, 0xd3696a73, 0x47af4e9e, 0x482172fa, 0x5777a10f, 0xc69e309c, 0xd53958de, 0x216990f5, 0x1e000f2a, 0x0000b5 } }, { { 0xa4de1a0f, 0xa06c7bd5, 0xb09a83f8, 0xe3e33584, 0x24a1dc96, 0x116c701d, 0x383504e0, 0xf4cc7893, 0x84536072, 0xdc609e6a, 0xcef5f990, 0xc93619bc, 0xe194b986, 0xcf2fb58b, 0xbdfc0a51, 0xacaaa566, 0x000162 }, { 0x3deda08b, 0x8b2e69f6, 0x5b2b7093, 0x765538cc, 0xd9fd1ba2, 0x3054978, 0x2b510e1b, 0xe685db01, 0xfd96202e, 0xe6862d53, 0x933d466d, 0xd4866c25, 0xcc3b0a60, 0xe171f2e3, 0xb4f7186a, 0x3a1c62b, 0x000075 }, { 0x63fa89ee, 0xb2fa76a1, 0xddac8156, 0x134fc4d0, 0x82b8e3a1, 0xe23fda75, 0xcdf00130, 0x8a84d09f, 0xcf05af59, 0x1684aa2d, 0x13cea267, 0x156f4f46, 0xa4aa84eb, 0x358098d8, 0xee1333b3, 0x2cd3c222, 0x00013a } }, { { 0x7716b09d, 0x4d55236d, 0x21bed792, 0xd7e2474b, 0x3d429966, 0xa8eee7fb, 0x5ebd60b9, 0x957c1c93, 0x1f31db0b, 0xb6062029, 0x3d749415, 0x36e8e5df, 0x8ca64718, 0xd418b14d, 0xabd1810d, 0xe7fbea62, 0x0000de }, { 0xa99f03ea, 0xee41f03, 0x2b210c31, 0x80e3bfe, 0x38cff184, 0x8c68f038, 0xee4b8311, 0x74568af5, 0xb7e67a4e, 0xa4994d1f, 0xdd6dba1f, 0x2ee7b849, 0xf90816fc, 0x354aebec, 0xc9e066a1, 0x70cbfd2e, 0x00011a }, { 0xc9b03e8b, 0xcb592efd, 0x270c4680, 0x4ba99ae9, 0x92142c8f, 0x25c1ba18, 0x3e003e28, 0x5988086a, 0x1828c038, 0xf29fe3fd, 0x55463ea5, 0xacbf1d52, 0x2bd3708f, 0x9380bdc4, 0x25a5af7a, 0xe4af5e16, 0x0000d5 } }, { { 0x3686bb78, 0x980e01d5, 0xcadf2fbd, 0xa72953e6, 0xb510925d, 0xc606cd4c, 0x2d243298, 0xcbfe0b36, 0x214faedd, 0x69fc6431, 0x74096a7c, 0xdf2455df, 0x403a13d, 0xc70709f1, 0x6d66da45, 0x6b694908, 0x0001c9 }, { 0xb58a0810, 0x937faae6, 0xaae00def, 0x842c1f27, 0xd6740658, 0xa36310f5, 0xdc7fbafe, 0xa46f223a, 0x2c71b8cf, 0x6532bb3f, 0x1dabce7d, 0x4075c1c7, 0x3fbb6bff, 0x5554ba76, 0xa261da3, 0x77c86f1c, 0x000107 }, { 0x79d7b1c6, 0xfadfe3d1, 0xc3fdb734, 0xe93bdedd, 0xfcce42d, 0x81c2a954, 0x2c4cdcf3, 0x47379eb1, 0xbff93c5d, 0x86eadd79, 0xa9847b2a, 0x2f54482f, 0x151106e9, 0x97ddbee0, 0x2fdbf9e5, 0x7616c3bc, 0x0000eb } }, { { 0x8e6402ea, 0x5d2af13c, 0x6ab97432, 0xac016391, 0x1b83959, 0xbfa408f2, 0x624c58a5, 0x2d0cf55b, 0x2e695fdd, 0x48186d2f, 0xd9a40399, 0xdeaf7bd7, 0x921c1d5b, 0xc3a01444, 0x276f6bf3, 0x72a05b0e, 0x00008c }, { 0xdf659df0, 0xdb937ad7, 0x39ff55fb, 0x5cfe7c81, 0x6c201bf5, 0x4dc96f0b, 0xa3daa676, 0xe6dbc21b, 0x31d1ea59, 0xfdb171ec, 0xb8a54921, 0x9785b240, 0x727ed8b0, 0xd27c8e9a, 0x3eb465d7, 0x96a3e099, 0x0000a9 }, { 0x6aee111e, 0x7e0898e8, 0x3606bbaf, 0xef47552c, 0x2e2cfc50, 0xddaa8066, 0x5be20853, 0x1906ad30, 0x3a061dbf, 0x522a3081, 0x99d1d6ce, 0x88ef792d, 0x89be986e, 0x38c840dc, 0xbaa9e337, 0x39f3d653, 0x000122 } }, { { 0x862e72cd, 0x7aebcffd, 0x57f0aac4, 0x1a9e99d9, 0x8d764284, 0x7dabfce0, 0x4ec0c0ab, 0xe5ee6dbf, 0xa614b732, 0x708f1737, 0x90263649, 0xb43e49f0, 0x76a00667, 0xa49b75c2, 0xdcc1fa4, 0x4768648c, 0x000055 }, { 0x1b77140f, 0x54e63133, 0x1971cebb, 0xc02b4b46, 0xf94f0d50, 0x10f277de, 0x4940e1b5, 0x139b0208, 0x619239e8, 0x4faeb13c, 0xab3f21b2, 0x3a686355, 0x35067101, 0xf585bfa5, 0x749915ff, 0xa7a4c0, 0x00014d }, { 0x245a2797, 0x75397c67, 0xe2fd698b, 0x85153f7e, 0xa48acba3, 0x40b2747b, 0x5b705892, 0xe686e3a3, 0xb9484ab5, 0xb7be38e7, 0xcfa98df1, 0xdbe0d271, 0x75112a28, 0x25cd97be, 0x125d7025, 0x6c99d776, 0x000107 } }, { { 0x43405e32, 0x11aae8c5, 0xc3b7503a, 0x406efbc8, 0x5edf4068, 0x6904e978, 0x27852732, 0x8ec0ed2d, 0x83b5ca41, 0x281c4202, 0x5bb6f8d6, 0xf19b8a2d, 0xb2b13372, 0x9dccc30, 0xe9714924, 0xfa3d3a28, 0x000050 }, { 0x2135b00d, 0x9c03b284, 0x7fb9dbc, 0x4b719a, 0xd51d786c, 0x30dc47fe, 0xd8bb901e, 0x705e5fdc, 0x4587c7b4, 0x6f2aa36, 0x2fd5ac90, 0x301b11de, 0xa1167272, 0xc393b50d, 0x93b440b5, 0x8aa85d63, 0x000016 }, { 0xe5eea08f, 0x84b4c59f, 0xe8b94ab, 0xf9683d80, 0xc8c4b7ef, 0x7f070731, 0x240f8985, 0x94a33981, 0x775315a9, 0x3415cbd, 0xf682bed1, 0xc328ff0a, 0x80a7117c, 0x21823b4d, 0x4116c16a, 0x2b59f4ef, 0x0000c2 } }, { { 0x38b890f8, 0xbeb4912b, 0xf5303a4e, 0x76b931c3, 0x807eced6, 0xb8ef4ace, 0xc1135640, 0xe07a8bd8, 0xe0845d85, 0x59ae9ff3, 0x1c3076d6, 0x843622fc, 0x786182df, 0x595aadde, 0x14ae6e25, 0x5c10930e, 0x00019c }, { 0xc3b089c9, 0xaa3abcbf, 0x5ef41a4c, 0x6694bd05, 0x3262431f, 0x7c674e7c, 0xa8eb21b4, 0x765e4fb3, 0xbbb16c96, 0x17ef714c, 0xe7c2d547, 0x59f2874a, 0x15cc820c, 0xf4c1626e, 0x59fa000, 0x1b6f467f, 0x000157 }, { 0xf5282fff, 0x941a9c77, 0x69dae514, 0xef970ed1, 0x7f64a06b, 0x3813ed0f, 0x97be74da, 0xc67151ca, 0x8ddef454, 0x76f7361e, 0x6aa06e85, 0x5420fc9b, 0xe3438145, 0x31786ee1, 0x73baa5fa, 0x6ff3f018, 0x0001bf } }, { { 0x5ee80731, 0xce42a86d, 0x61a6f789, 0x9f1a7cb5, 0x8b915909, 0xf67a41d2, 0xbf979d3d, 0x29eeb3a3, 0x45afa3a7, 0x765a92b6, 0xd4910a06, 0x79ac7c45, 0x8ce977a, 0xff90da4d, 0x4f993191, 0x67131f1b, 0x000192 }, { 0xd5ec271d, 0x7d3331c8, 0x498b5db7, 0x2575b58, 0xd79111fd, 0x4e8997c5, 0xcfb15e0a, 0xf9907386, 0x4c061d9, 0x9e44b96f, 0x1524e89b, 0xb2639540, 0xfcadfd5a, 0xb89ace33, 0xc155273f, 0x4f00aecf, 0x0001d1 }, { 0xa807198, 0xd22b82b, 0xb3bb692e, 0x55e5d4bf, 0xc612f1a0, 0x9f72cb89, 0xf24b77b9, 0xc942bbc1, 0xfdc54655, 0x280f6169, 0x142e1971, 0xa73d9c47, 0x59fdb8b0, 0x7dd537f5, 0x679eb3b3, 0x9de565e6, 0x000183 } }, { { 0x3da80538, 0x4e3b45b0, 0x305e932f, 0x4da1feb7, 0x877c591e, 0x1709caa3, 0x2b7ccc60, 0xec000591, 0xf87b271, 0xadf03d28, 0x17859281, 0xda4f0e75, 0x69d7bd36, 0xa8995a6, 0x32c2757f, 0xefd2dd8c, 0x0000a0 }, { 0xfae084c1, 0xf594d506, 0x15fba7f, 0x8ced3cb1, 0xb7cbdcf5, 0xbf2cc0a2, 0x41b8fae2, 0x2640aa31, 0x798d0482, 0x40d05053, 0x74b60be4, 0xbc1181b7, 0x4e21820a, 0xd31fe254, 0x3415d94d, 0xeccdc886, 0x000032 }, { 0x26f81d41, 0xf53fa9d7, 0x83d47347, 0x86c81a48, 0x5dd16b84, 0x5896d932, 0xd6125a3d, 0x40fd0cb1, 0x6ad6a261, 0xc01d3834, 0x37956cb, 0x17fffa6d, 0x9292163f, 0x840cc02b, 0xfdd69d31, 0x185d8e53, 0x000118 } }, { { 0x8ab636e4, 0xcb66437, 0xeebf4147, 0xb05c0f4f, 0x78ff2655, 0xf80764b, 0x240a49e8, 0x9ff63a93, 0x41f74f8c, 0x9364810e, 0x59f898bb, 0x5c6087eb, 0x6b0663f4, 0x697ac34a, 0xa3e0b091, 0xeab1e2f7, 0x000025 }, { 0x3b864b33, 0x1054e70e, 0x39b0bd2d, 0x8d400d3, 0xcfd49a0e, 0x3981c815, 0x8969eacf, 0xb3da5e01, 0x42c8bcde, 0x4d38a51b, 0xaf4a07a4, 0xd4bd40d4, 0xa25c3da3, 0x1c057617, 0x25772b01, 0xdde2702d, 0x00013d }, { 0x47f19666, 0x9c16cab5, 0xd9271230, 0x6d430cf9, 0xd1cae7a1, 0xd6c0c743, 0x38efa8a5, 0x864384c4, 0x3707732b, 0x3f232057, 0x3db1cb7b, 0x7b2de7fc, 0x98d8ea3, 0xd11b7a3a, 0x72f4ea76, 0x910d9d65, 0x00000d } }, { { 0xb2c27d6, 0xd17adddd, 0x80dad2bc, 0x97b1a62e, 0xedf6cc35, 0xf48dde2c, 0xb5c2bf1e, 0x3e5b1b47, 0xe5d84cc2, 0x1ba5d7b9, 0x6b9413e3, 0x95cbc8f4, 0x955dd77a, 0x7c79023d, 0x1ea18338, 0xa297417e, 0x000177 }, { 0xf75b317b, 0xa36aff7b, 0xd5ab3bd5, 0xe9e3a43d, 0x3f64a493, 0x1add5c63, 0x6364c6d0, 0xbc472619, 0x7d5a372b, 0x7576d55c, 0x4560df92, 0xc563f08, 0x816d2706, 0x982d2803, 0x647764b7, 0xa05859ae, 0x000171 }, { 0xb0879009, 0xf50d58a1, 0x10c3ba04, 0x96220394, 0x28ba3501, 0xccfa0a0c, 0x716df8d6, 0xfa2161a1, 0x3e7f793c, 0xb7b5e4bd, 0x78105d56, 0x24b663c7, 0xea646cb7, 0xf2af4dec, 0xf9aef85c, 0x88ff7f66, 0x000166 } }, { { 0x1f88ba11, 0x6fe26875, 0x7708c064, 0x5da76781, 0xdaf68fe, 0x70892717, 0xa3941990, 0x5c63bde1, 0x5a02d8be, 0x4f5be11b, 0xf6e9d9d, 0x6b34d46e, 0x41a2113a, 0x4f4755c1, 0x4fa1bf0e, 0x8fe62767, 0x0001cf }, { 0x93f6a72e, 0x98848bf8, 0x95fe61ed, 0x3c3048b0, 0x1dc7996f, 0x8da0d94b, 0x693f6d71, 0xd157d415, 0xa2bbd78e, 0xa0a44577, 0xcdb7b2a1, 0x9e43302d, 0xc89096a, 0x8d595c91, 0x5f583d6, 0xa024cbb7, 0x0000dd }, { 0x6089aab2, 0x2dc3829d, 0xdfb4d698, 0x4bca5fa2, 0x146bf4fc, 0x4ec55380, 0x3ae4a4cc, 0x1cec80d4, 0xe32def7, 0xeefe0e9f, 0xf949d077, 0x1d690124, 0x892357bb, 0x78e544c7, 0x21c7d70, 0xb10b387a, 0x0000f7 } } }, { { { 0xf434179a, 0x44b5e82e, 0x280e26f5, 0x7c334733, 0xf9cce7b6, 0xe404cf7e, 0x7337508a, 0x1a4e44bc, 0x454c4e9a, 0x81bec4ad, 0xa044041a, 0x574a331, 0xed5affb5, 0xc27b6cec, 0x6c363630, 0x30395e69, 0x0001e0 }, { 0x74d06e99, 0x5927135f, 0xad6db4d1, 0x82d310d1, 0x22b16174, 0xe5b9ebc9, 0xa2ed3628, 0x60e092e3, 0x6e4860ce, 0x8ca25301, 0xa72bb03c, 0x63c6a22e, 0xc6dfad73, 0xd8b43303, 0xf8449a51, 0x45a7c560, 0x0000cd }, { 0x7e200c4d, 0x7c29a3c3, 0x8c449484, 0xf27ee31d, 0xed02da01, 0x98985474, 0xea304201, 0x9f3c7b8, 0x9dfa0e72, 0x2fa2f303, 0xf125b00e, 0x29de98, 0x5cba26eb, 0x4334bc55, 0xbc43824e, 0x5ace9a4b, 0x00008e } }, { { 0x1952df20, 0x76eeed37, 0x2342f8db, 0xf9cc81c5, 0x74ca70d4, 0xfc7a72a2, 0x49a1aed5, 0x4c347f60, 0xb71434a5, 0x3e66830b, 0x26eff8cd, 0x1bb1a350, 0x1501c57c, 0x32f70956, 0x7570671f, 0x97444839, 0x000083 }, { 0xd6a80f12, 0x9e4faaea, 0x701ec0cc, 0xbc531bf, 0xab40751e, 0x77b2152, 0xb83f2eea, 0x44ac414, 0xb53b50f7, 0x8eed930f, 0x4e2fb092, 0xff68fa7e, 0x8fa58b00, 0xebcbfb50, 0x42292821, 0x7eced98a, 0x00004c }, { 0x1368a0b, 0xf550ffd2, 0x94a969b8, 0x49427d6f, 0x9726ce5b, 0xd4a17c18, 0xbd834c84, 0x6af07229, 0x67a8e956, 0xe5fed336, 0x4413c155, 0x8c2162f3, 0x337eaa88, 0xcc93bce, 0x2446b81, 0x7897bd3f, 0x0001e3 } }, { { 0xf37210b7, 0xa02f7f34, 0xc82bcde9, 0x7c73445a, 0xfb2aa105, 0x36aebd99, 0xa5d9c823, 0x5dc0456b, 0xd4c8cdb7, 0xe7cb33de, 0x1b724d65, 0x3206dc08, 0xfea854c8, 0xb6909bd7, 0xffa08a6a, 0x6d906bdc, 0x0000eb }, { 0x5f3f8877, 0x33bfbd82, 0x868ff5fe, 0x7c3549da, 0x2f5fca34, 0xa2379768, 0x31b81d9f, 0x43bd82bb, 0x1d7068e, 0x6b188146, 0x7278ce8c, 0xec58d2e1, 0x6844e424, 0xa39db1a8, 0x642b0a85, 0x5162d521, 0x000082 }, { 0x73e1517d, 0xf2c19aca, 0x38167011, 0xa620d94e, 0xcc9c7a34, 0x336c2c51, 0x45c8b3e5, 0xf3a0713, 0x44f14a68, 0x4c69baec, 0x1fce1639, 0x38037520, 0xabafe04b, 0x4f48ccdd, 0x4781bc8b, 0x1b2d7c85, 0x0000c3 } }, { { 0x5220bd36, 0x6a077174, 0x23714fca, 0x791ea501, 0x41b9968b, 0x8cd7fe32, 0x42eabc89, 0x8a4e3089, 0xd5e03b01, 0xf81c1045, 0x8857c50f, 0xba7dc9bf, 0x1a196909, 0x3c9b980, 0x6fc8f5e1, 0x3c76cb44, 0x000102 }, { 0x29051ae8, 0x6751a13f, 0xa82b957e, 0x2dbefce2, 0xc0e3ba96, 0xad05dd9b, 0xba7a36fd, 0x90a5a32c, 0x77dbe069, 0x8078a1a4, 0xebdfc7a0, 0x8247a637, 0x5aa86c3d, 0x83b275dd, 0x8f5f94de, 0x8c8e0f0a, 0x0000a8 }, { 0x9c7da3e1, 0xba079c17, 0x3865f428, 0xbdac76fc, 0xb661ee87, 0xace648d3, 0x2e22756f, 0xd5eb53f3, 0x450111db, 0x30c0f001, 0x850f4aff, 0xb4cb9989, 0x8a5b5b80, 0x33122a8, 0x9a99909a, 0x12a880cc, 0x000184 } }, { { 0x6899417b, 0x3ae984bd, 0x579b6fa, 0x2fc41e7f, 0x3e96a0d6, 0x1b94810d, 0xdbf090fa, 0xc5a0f90d, 0x7748b09c, 0x1c1885e6, 0xab491bc5, 0x7846c2c8, 0xdb43078f, 0x39516429, 0x1fc5ce0d, 0xd6385d2e, 0x00012d }, { 0xbe7a9087, 0x7a2012a6, 0xd3a943e3, 0x9eda0845, 0x7a98751d, 0x4b642af9, 0x2db5c085, 0xe24233ed, 0xd9b8c26a, 0x7647fdef, 0x3b182787, 0xd2dc1569, 0x2518ca3c, 0x1eb8043, 0xaf66fedf, 0x347d83f9, 0x000088 }, { 0x49ece327, 0x77183447, 0x9b65453b, 0x2bcb4d04, 0xf55765c2, 0x38cde2d8, 0xcdcf1e77, 0x5690508c, 0xf1f00db9, 0xd17b5674, 0x74ba5924, 0xd50cceb9, 0x638cb18e, 0x7021bf49, 0x7a55b813, 0x5bdfaa95, 0x000066 } }, { { 0x425d198a, 0xaf4f86c, 0xb7404ea0, 0xa16e0923, 0x811a7b85, 0x1a63a5b0, 0xfea39f16, 0xc8d5b100, 0x6d9faeaf, 0xaadf7d04, 0x227aa96a, 0x8fa96eca, 0x6d1471bd, 0x8c3875e8, 0x72a08aa7, 0xe14dd58, 0x000123 }, { 0x72604518, 0x8f262f17, 0x2314df6e, 0xf4fdf64a, 0xb43858d5, 0x46e2fe86, 0x2f898d73, 0xcd355814, 0x210c468c, 0xb7af8a4c, 0xec72ca33, 0x44dfe82c, 0xf474ccb0, 0xa02eba01, 0xe1f2147f, 0xd364fb7c, 0x0000f8 }, { 0x45dea65a, 0xd849a0cf, 0xb1be80c6, 0x764cd7e0, 0x41db2c3f, 0xe10c9ab7, 0x219cacc2, 0x6d55f60f, 0x78c62a69, 0x3ad9d8a5, 0xf59abf02, 0xdd11a9f9, 0x7f888e40, 0x261d8c08, 0x89ec1f49, 0x3fb7d7ac, 0x000053 } }, { { 0x65fd78d4, 0xdd1f33c3, 0x141bf31d, 0xfd2010ec, 0x3db2ab5f, 0xbfe2477, 0xef25660a, 0xb3b9d2cf, 0xc2c91fca, 0xdf2836a, 0xe56f370f, 0xbaa3ef6, 0x39ba5cc4, 0x7da40876, 0x6efaa6d9, 0x91ef73fb, 0x00007d }, { 0x27ed05ed, 0xb612a5f4, 0xc89bc069, 0x24fc2af0, 0xfcf04212, 0xa8e6a86a, 0x3faf3d81, 0xe323539f, 0x4f02f206, 0x549f9ffb, 0x3f9698e, 0xdeb41060, 0x6136fbc8, 0xd0833f21, 0xaa81dee3, 0xb0011a95, 0x000156 }, { 0x3ed14f16, 0x4adb3231, 0xe9b1109c, 0xf9e78872, 0x9de11442, 0x2830b27, 0xad2c3eea, 0x9f22f8c9, 0xbf414b0d, 0x30547375, 0xeda13189, 0x85da520d, 0xdced5ef0, 0xf6c8bc9d, 0x2d18c6c4, 0x10ed6c27, 0x000040 } }, { { 0x66de0a9b, 0x8c4004f2, 0xb43b9e9c, 0x128a66f, 0xb7b20e8b, 0x6e4a55dc, 0xf3540e43, 0x65850f3a, 0x7f03938f, 0x6eb4e8fb, 0x1d197d9, 0x4f99ca6e, 0xfad43c67, 0xebd58e4f, 0x9b3ac9b6, 0x8c5e2caf, 0x000098 }, { 0x8b9e90f2, 0x6072631e, 0xc3e481d6, 0xeaa71ff7, 0x2c762d4, 0xe558cfba, 0xca5cc09, 0x701d3c39, 0xfc300c82, 0xd5067bab, 0x92cc5e31, 0x4c877eb7, 0x714433b4, 0xe9c644b5, 0xbcf0c2e6, 0x16fde895, 0x000099 }, { 0xd82ec9c4, 0xe571e6d5, 0x4232215d, 0x13481d37, 0x4a8064a5, 0x2dedc737, 0xf067e11, 0x4f7ac835, 0x89811b1, 0x9b06fcb2, 0x1d8b8fa2, 0x1769135f, 0xc2c7af6f, 0x894beccd, 0x407ae26d, 0xe1ddfcb0, 0x000074 } }, { { 0x743b6ce2, 0x68f57aa7, 0xb5a6b02c, 0x6ff0baf5, 0x836a795d, 0xb83a45, 0xcd61a399, 0xa16ee7bb, 0xc8295f20, 0x7efa5135, 0xc56eddf5, 0xf2abde2a, 0x3fd63485, 0xf6ec8ff6, 0xfef2bce7, 0x36cd0802, 0x0000d2 }, { 0x44bfc14b, 0x9d0d85a2, 0x4f3ed9e3, 0xced0e475, 0xce985bba, 0x4d2b9c00, 0xa98755d7, 0x894bb6bd, 0x40fe57f5, 0x5ce362f1, 0xeeeabce, 0x626706df, 0x9bc95215, 0x11dc5f7e, 0x61720fa8, 0xa946707d, 0x0000e1 }, { 0x72c53ef1, 0x7ff642d5, 0x1b6dffbc, 0x91bb1383, 0x5bdd7052, 0xdbeb306e, 0x5f51a8ed, 0xa03a85b2, 0x814f4b3a, 0xce0ff133, 0x5008ba7, 0x83e699cc, 0x196570d7, 0x6548d123, 0x328883e7, 0xca2621f3, 0x000134 } }, { { 0xe4284b61, 0x7c6210fc, 0xd59ae450, 0x92e60806, 0xa4608cbf, 0x50934e14, 0x9f53e8aa, 0x32834343, 0x8c6a7d1a, 0xe179295a, 0xce0e2195, 0xc8a798df, 0xbadf547d, 0xc8001af7, 0x7154826b, 0xeab4a5, 0x000062 }, { 0xa5f97ab8, 0xade03e8a, 0xb263a048, 0x35fceb3e, 0xae58ca05, 0x76ce4aba, 0x3945bce5, 0xa776e250, 0xf0555dde, 0x7fc31032, 0x8103b029, 0xbbc49e33, 0x1b7c6bba, 0x1eb3b503, 0x63fdae3f, 0x8405ebcd, 0x000081 }, { 0xf07674e1, 0x8be58e18, 0x84b4baa8, 0x10f32b41, 0xe6c1c3bd, 0x5f1f1534, 0x43944f0f, 0x12b5a3e2, 0x502dc010, 0x6202d90e, 0xea46f09, 0x7d9f91d, 0xc0d2dc07, 0x93721437, 0xd8e2b91c, 0xc4d2af9, 0x000022 } }, { { 0xb0e815f7, 0x50eafadb, 0xe9c17830, 0x8b3ff39b, 0xeaef26e2, 0x8195f89f, 0xaf6d0ded, 0xf32e7468, 0x6c1ed95a, 0x2c24ae73, 0x34419352, 0x682080aa, 0x1bbe35ec, 0x95838088, 0x25904f83, 0x84ab95f1, 0x00017f }, { 0xae15c98c, 0xdf550d6f, 0xd326862a, 0x3b21f58d, 0x742891c7, 0xc218cbf5, 0x210a5bb7, 0x525f30e1, 0x8e8b88ef, 0xd51debc, 0x90d8b921, 0xf4d587b5, 0xc69e2384, 0x95ecf64d, 0x30163cad, 0xa0c07f7e, 0x000085 }, { 0x3556217d, 0x60f1fdef, 0xe078c83e, 0x8b08d0b2, 0x309c2550, 0x6d186658, 0x52fa3b9c, 0x192bf498, 0xb1a9ac31, 0xe39e6d99, 0x6e809ffd, 0x7738c88c, 0xda8df744, 0x60d99ee3, 0x10e19b2e, 0xeb7531c2, 0x0000f1 } }, { { 0x9024fe7a, 0x744bab7f, 0x480d4316, 0x7da4a8e0, 0xba05d876, 0x6f01e840, 0xe95e7ac1, 0x98063c3c, 0xe91ba230, 0x382b54ac, 0xf19d5f94, 0x8c512b29, 0x185cfd08, 0x4c7d8140, 0x4548a19, 0xc8b00beb, 0x0000cf }, { 0x3f7b2658, 0x8483e68f, 0x90535c55, 0xbbeef439, 0x8b5bc30f, 0x365d0588, 0x2f409177, 0x876a204b, 0x26100dae, 0x2938587a, 0xb029776b, 0x71cc88b1, 0x59fe89be, 0xf7ef431a, 0x9da336e5, 0x5c815f13, 0x0001c3 }, { 0x6e0f55b8, 0x4a3e3b29, 0xc8ae1caf, 0x28578d4e, 0x41238717, 0xea04508a, 0xfd8cbb5, 0x48647a4, 0x5b300b13, 0x1eac84e4, 0x89169fa9, 0x9b84aa26, 0xce9cd097, 0xa84fe0e9, 0xe98a095c, 0xb99dbd79, 0x00015b } }, { { 0xe8a80d2c, 0x701f332b, 0x1d4fbdb5, 0x1d3a5684, 0xb1ce7b2d, 0xe32feb52, 0x1e404725, 0xd7aafcbc, 0xa2aac7c6, 0x49d5d78a, 0xfeb1c4d2, 0xb6e4c067, 0xfa6b3aa1, 0xb50b0a5a, 0x873253ed, 0xa0b7179e, 0x00008d }, { 0xde7db529, 0x14571502, 0x85855db5, 0x7f56a0c9, 0xe292a74c, 0x1dd1a0e0, 0x2e233781, 0x99c729bb, 0x1c1445bf, 0x80e91078, 0x7b4910e1, 0x75287920, 0x73241f18, 0x6847e854, 0xd3b90944, 0x7c680b0e, 0x0000c3 }, { 0x749cbb52, 0x18dcccd3, 0x13a2e00a, 0xa602d2b0, 0x963f953f, 0x6fd5f19e, 0x3638ae1a, 0x413d9e5a, 0x100bbd51, 0x8badc862, 0x62771e2f, 0x6ac0055b, 0xdd34f5cb, 0xb4548ad0, 0xf33343be, 0xba5c3d80, 0x000080 } }, { { 0x15bd1d03, 0xf6d06008, 0x7a2c0922, 0x10f969a3, 0x5f0d7787, 0xcd725ca7, 0xe98ce601, 0x871ded59, 0xe09cd0ba, 0xcf969092, 0x5e91319c, 0x39fbbc1, 0x5b0bddc4, 0xfb745387, 0x40661828, 0x984feaab, 0x00013c }, { 0x695406c6, 0x1f780bad, 0xd2229884, 0x5018f6fb, 0x6e2a8135, 0x9ed519fa, 0xc490dd2b, 0x85292ed7, 0x57e9e3e9, 0xf1cdc5d9, 0xcd646813, 0x629167d9, 0x6f8c1f37, 0x26eef323, 0x23b59fe2, 0x5b466f47, 0x0000ca }, { 0xb8761c57, 0x8f05f76b, 0xa40823a4, 0xc4bee84d, 0xca9d7402, 0x1570311, 0xf02176, 0x3dbee7ba, 0x1b8e03ee, 0xa6989486, 0x125a920f, 0xf9314e2e, 0x7f5c355b, 0x27f022bd, 0x76d08192, 0xab1be4fe, 0x0001e9 } }, { { 0xae581895, 0x6d3f5d9f, 0xe2dc813, 0x6e917d28, 0x99c06bd2, 0x59c7154e, 0x2c8160a7, 0xa4be9579, 0xc5f8ad06, 0x56ca1d66, 0x290ca829, 0x6b1efcc6, 0x6f4ac00b, 0xafa22b4f, 0xe2fe266c, 0xd6511e05, 0x0001aa }, { 0x3d3d2e9e, 0x8e2ed641, 0x862bd051, 0xd3dc72c2, 0x7d7b7207, 0x5b21056b, 0xc3bd20c0, 0x87ad8dee, 0x30922504, 0xd286117b, 0x8ad32c7c, 0x9def6115, 0xc9b84c9e, 0x9d31024e, 0xec8d55ac, 0x3ca0dfbc, 0x000078 }, { 0x28f5238b, 0x9972d33c, 0x2edbdc45, 0xb4888ba5, 0x6a7548, 0x363fee47, 0x56fdcf02, 0xda3274f0, 0x1b5b15d3, 0x67250809, 0x48c4ce69, 0x98676a7, 0x611f13dd, 0x9972f51, 0xc9b4818c, 0x46dc1886, 0x0000a2 } } }, { { { 0x91c1a5b, 0x796d01e7, 0xfa9f1c85, 0xae9dfbf0, 0xe2264b76, 0x1dd1429f, 0x5d19da7b, 0x957b0fad, 0xaa344a42, 0x6da1e98a, 0xc21d2256, 0xc6d3b8d6, 0xd1a333fa, 0x9d5f2290, 0x49f7402c, 0xff612a42, 0x0000fa }, { 0x22ae5d01, 0x4cd29af9, 0xf001686b, 0x3d653fb9, 0xa5787974, 0xa5148b72, 0x87180d50, 0x6402eef3, 0x21abfaa8, 0x55a67459, 0xa9e17898, 0x2b2ee743, 0x350bf06f, 0x7b3c196a, 0x176280be, 0xfb9e6a5b, 0x000063 }, { 0x874acc4c, 0xb2ef10eb, 0xefa62582, 0x4176a88, 0xe45f6f73, 0x8963f85e, 0x437df1b8, 0xa2261159, 0xca6eb5c1, 0x769f155e, 0xda5860bf, 0x9f4fa4cf, 0xc4ea8824, 0x53463e33, 0xaca307c4, 0x2403f702, 0x00001b } }, { { 0x9f8707e5, 0xb9288289, 0x12ebd3a8, 0x3d5820b6, 0x4bf4634e, 0xf64da37b, 0xfd838370, 0xa377002c, 0x988f4d4a, 0x8be48df8, 0x5f50b0d5, 0xaf26c8b2, 0xc0332ca0, 0xf74f0bf1, 0x9c094db9, 0x307c2a63, 0x000107 }, { 0xd647ab2, 0x684137bf, 0x249e2d04, 0xe16b877f, 0x16c3c965, 0x75d4b199, 0x3017c7dd, 0x6d83e60f, 0x1d63b12, 0xd47846bb, 0xa5991199, 0xf206c626, 0xf78798e1, 0x306a999e, 0x31b39e60, 0x9b6d1930, 0x00000d }, { 0xe890ca51, 0x94d287b4, 0x1b922cc, 0xa3c92cf2, 0x3410fdb7, 0x3079484, 0x3ccfd0e7, 0x44fd595a, 0x2d7759d0, 0x33e967e2, 0x5e81fcb, 0x6bfdeebd, 0x71a5b2e1, 0xe3b29aa1, 0x1be187f6, 0xba62501e, 0x000104 } }, { { 0x4cebd7fb, 0x58c50469, 0xdd2d9f4a, 0x3655494a, 0xfb1068ad, 0xd6bc2d03, 0xce294d93, 0x2503dbb8, 0x698a8d23, 0x5a70e0e5, 0xcc10477f, 0x354bf210, 0x25ff2307, 0x7ace1b5a, 0x7e5b24bb, 0x4ea3c725, 0x0000b7 }, { 0x82959222, 0xdd5b9fc8, 0x13fe2c27, 0xa9d440ad, 0x65093f95, 0x4bfdc528, 0x235cb52f, 0x28c7153c, 0x2d74d746, 0x6f52a399, 0x59c8ba45, 0x38b42010, 0x6c118160, 0x8878dfbe, 0xa04a7c50, 0x1a7c5781, 0x000041 }, { 0x7ad8642f, 0x1e4fa85f, 0xe32b0d3c, 0x3dc5cce7, 0x912f859, 0x42f5dd5c, 0xcbce6257, 0x166b2e3b, 0xc2be048d, 0x743848dc, 0xa4be56e0, 0x2db7aabe, 0xcb7eef1c, 0xfb39095d, 0xc909eb15, 0x397bec1d, 0x000161 } }, { { 0xc11b413e, 0xee9aeac7, 0x8d2a6d6d, 0xbcf01006, 0x360189c6, 0xefa70f94, 0x807c205, 0x92c255c9, 0xff4133ea, 0x14d97b65, 0xca099911, 0x59d13a3f, 0x7c0de1a4, 0xa0f83cd0, 0xd486974e, 0x2676c333, 0x000190 }, { 0x44b8ada1, 0xdf5d4cac, 0x9c93417e, 0x5b7a2afb, 0x851fc9a8, 0xd972dfac, 0x8b282c5f, 0x8a7e1f86, 0x7b540584, 0x4af5cefc, 0x4d68c2d6, 0x31ef15b7, 0x3c428fb5, 0x7585289a, 0x2eb61b2c, 0x32955649, 0x0001ad }, { 0x9960da30, 0xbe085fcb, 0x5ccbfbf1, 0x4e031152, 0x28b72c0c, 0xebae6b54, 0x49b221d5, 0x81949dd4, 0x5ab632f1, 0xab96b6ab, 0x979eb42d, 0x4b66a8f0, 0x9c9e1821, 0x52aca74c, 0xc36d569b, 0xd3cef5f, 0x000155 } }, { { 0xedc17f51, 0x6b0004d5, 0xd4ceaa89, 0xf18b08e8, 0x6bb9247f, 0xfbf889e7, 0x5473c58, 0xcab4d809, 0x7c2d31fe, 0x9464dfda, 0xf128181e, 0x8ae28f5, 0x98bbdb13, 0x6b61ee7f, 0x7bcab48e, 0x3a0f9f1f, 0x000123 }, { 0x697bac42, 0x3ed8fcc1, 0x3a65a641, 0xad12f598, 0x84594862, 0x72ca187f, 0xa5c8d65c, 0x9ab0bec4, 0x1c3eafca, 0xe25d383e, 0x99516ee3, 0x6fde88e0, 0x16d076f3, 0x57d6c79c, 0x14ca8dcd, 0x83c14f6d, 0x0000e0 }, { 0xf69c3249, 0xf7cdd82b, 0x7f669de3, 0x8b1c5840, 0x773e65f, 0x747bb6c0, 0xdf859dbd, 0xed72c9bd, 0x9cb6990, 0x90f2006e, 0xabee97ab, 0x8d89cebc, 0xfc1f8234, 0x1ce2323c, 0xc2a3e20f, 0x3d1d3529, 0x000043 } }, { { 0x3c26047d, 0x97eed8f8, 0x55e3b28, 0xcf82dab8, 0x98857492, 0xf6c1b63c, 0x1436f3fb, 0xa054e203, 0xb3123f38, 0x20aaa278, 0x946afd8f, 0xa696e3aa, 0x51d40deb, 0xbf99b1ba, 0x42527c3f, 0xc552697, 0x000195 }, { 0xd2d68109, 0xa972f43e, 0xaac8d46, 0xf0870653, 0x159e05ab, 0x3f3a8001, 0x247f6301, 0x3acdc693, 0x2af63350, 0xfa39456e, 0x757557ff, 0xa2c432fa, 0xb6ed05d0, 0xf587939f, 0xe1663397, 0x9e630106, 0x000038 }, { 0x20f9e4ad, 0x87f5af6d, 0xa4319983, 0x1d9fc0e5, 0x11cadce0, 0x1bed8f83, 0x52c59d23, 0xf5a5a461, 0xb4a14a8f, 0x70306ae5, 0xe0e78fd5, 0x8778fddc, 0x97b9311e, 0x9c870b86, 0x1dbf49a1, 0x5bd85ca1, 0x0000d2 } }, { { 0xacc3c680, 0xa8861f6c, 0x8ff967cb, 0x1da6acba, 0xea659806, 0x94dd2df7, 0x9753e8b6, 0x584cba8e, 0xd1419379, 0x46c49b1d, 0x665a9942, 0x1cb4c46f, 0x65bed1bb, 0x46714f6b, 0x10ce4675, 0x8cad0c8a, 0x0000ed }, { 0x48439614, 0xb6c8d6d0, 0xd2d7dd76, 0x6b94c1ec, 0xf78cac25, 0x20c33f16, 0x643a685f, 0xb50ebace, 0x30abd388, 0x93d53b88, 0x59e821dc, 0x6125bdf, 0x27ef71e0, 0x75653407, 0xe143a3bb, 0x865d6301, 0x000162 }, { 0xce85fa41, 0x745537e1, 0x9b6509f3, 0x1a73d456, 0x3bf759e2, 0x761de408, 0x9f4773db, 0xd457c2e9, 0xf1896a30, 0x11aa3a7f, 0xbab01d31, 0x782c559c, 0x7a49aa97, 0x7ae582d, 0xfae694c9, 0x983b34e2, 0x00001c } }, { { 0xe5e9d32a, 0x4d1363a0, 0x7187cd3e, 0x65bc081e, 0xad8d48a9, 0xea5db1ae, 0xef81db99, 0xcee00c59, 0xef66360d, 0x4c77192f, 0x2fe3b26d, 0x34243183, 0x81d7e376, 0x607cf93a, 0x3dcc8352, 0x15c14bd4, 0x0000cb }, { 0x3e554541, 0xa8ed2172, 0x78fc0957, 0xf20e9b62, 0xd686ef83, 0xc3534c5, 0xdbda1046, 0x485f067a, 0xb39a46a2, 0x6acd3009, 0xd47e8485, 0xce23e6f8, 0x67ff76ee, 0xd1df7ddd, 0x7ed3684a, 0xc9ad3e69, 0x00005b }, { 0xc9ad780c, 0xc8c2663b, 0xf3de7883, 0xdaf08174, 0xe2423de3, 0xe5110046, 0x2dbe6827, 0x25077ab0, 0x7292b8c, 0xbdd19007, 0x2caf940d, 0x8ad78f50, 0x2b7eabbb, 0xca541684, 0xbc34bc1, 0x536a1f69, 0x000104 } }, { { 0x2367ab32, 0xc7d0504b, 0x9b7b7cd4, 0x1a3136b7, 0xa8bf67d, 0x84f79d92, 0x1d28b6b3, 0xb146711d, 0x10f131a4, 0x71678071, 0xced264fc, 0x8190161a, 0x4797dff3, 0x965dec69, 0x887771ff, 0xd704773c, 0x00017b }, { 0xfba7c2f7, 0xb45e9b32, 0xbef394a, 0x5c52f8d2, 0x86aa6442, 0xabbac2ec, 0xd0dd5dc, 0x12bad485, 0xe2614aae, 0xe4334c0f, 0xda3aadbc, 0xaa4f9aa5, 0x560933db, 0xeb9f8265, 0x3ee89d0d, 0xacc7575, 0x0001d8 }, { 0xef7eb9ab, 0x4d5d335d, 0xa124a586, 0x2138f5ce, 0xdb94e887, 0xf948903a, 0x7067c0b2, 0x963afacf, 0xe857d305, 0x7286d4d6, 0xf552f125, 0xc389f070, 0xd06dbee8, 0x361c311e, 0xbde47b24, 0x6d814235, 0x0000a2 } }, { { 0x1137a016, 0xed79d645, 0xc91404a0, 0x67eb326c, 0x4ec63864, 0x8bde142b, 0xc86fbfcd, 0xd759d370, 0xdebbfa37, 0x2ef7bdec, 0x83e74738, 0x943187c2, 0xa8a1426c, 0x4bec56b1, 0xbd748634, 0x780a1e7f, 0x0000d9 }, { 0x400e8796, 0x5d099754, 0x78c80d93, 0x35109d9d, 0x2a4050c8, 0xde41e4dd, 0x74edeea7, 0x760123e, 0xe3bf35fd, 0x20d27810, 0x2e919066, 0x5659711, 0x756e255, 0x398e33bf, 0xe4d81358, 0xb6decd62, 0x0001e6 }, { 0x86176c2b, 0xd3676798, 0x7ccf5a96, 0xc31576bf, 0xea3b6ef2, 0x5573efa9, 0x49269d02, 0x27b59bdc, 0x87383c5f, 0xa832f6ce, 0xb01fb6f2, 0x5513d81d, 0xfc0351ea, 0x80c79916, 0x8451d562, 0xd18b91ac, 0x000049 } }, { { 0xa6870e9f, 0x177c59c, 0x7a3f9aa5, 0xdbcc848d, 0x5dc44d97, 0xd2aab93d, 0x73d14c35, 0x9ecb914e, 0xbd2461ad, 0xa2aa8610, 0x948b782e, 0x88780d1b, 0x3b346dda, 0x726edfdc, 0x5f11f999, 0x650fd0b7, 0x0001a0 }, { 0x120290b, 0x27d888f2, 0x3e9b3c18, 0xb2222e91, 0x83b88cfc, 0x365b9abf, 0x1943b460, 0xc449bdb9, 0xe7584610, 0xb986563, 0xe81f4106, 0xb4182896, 0xbe5be515, 0xa031e7a2, 0xf64cf40, 0x5730fe10, 0x000076 }, { 0x1e283504, 0x4794a788, 0x3144c341, 0x3cb1b64b, 0x694cbe3f, 0xdb77cbe6, 0xc8e7287c, 0xe9451212, 0xdb8f900f, 0x23e0064c, 0xf66b27a9, 0xa10ce663, 0xafee9394, 0x3dcbe74a, 0x7362e0a7, 0x418e9c4d, 0x0001c8 } }, { { 0xf9ee0719, 0x3412d742, 0x3ae97a0e, 0xc8ad6da8, 0xa16ed793, 0xd54c5898, 0x1d89edd7, 0x879b72e2, 0x4257f74b, 0x712c58ae, 0xba4bc1b5, 0x722857ab, 0x9b3f82f9, 0x6342e2d1, 0xaf77bbef, 0xe9e62c88, 0x000142 }, { 0x9b23399f, 0x2fac5c1b, 0xb59531f3, 0x5992efdd, 0x3ecb0a60, 0x1c703aa9, 0x7f4d5abe, 0x2738d146, 0x9bc0ee66, 0x71a8ec38, 0x350152d0, 0x35aa02e8, 0x3fe33856, 0x4350171f, 0x72a310d6, 0x7b7fd957, 0x000097 }, { 0xe219e0f4, 0x16f4a282, 0x9fce1065, 0xb130b97e, 0x510243, 0x8d42ec65, 0xaa1639ed, 0x65ba28d6, 0x142eb28f, 0xcf2ad161, 0xd253cf2d, 0x7909c5f2, 0x28519cff, 0xad00ac1b, 0x824654fb, 0x9150ae8a, 0x0001c5 } }, { { 0xb0f1faa9, 0x2708080e, 0xc1251d5d, 0xd1c9ed16, 0x4f58d679, 0xa027cf9b, 0xbbdb830a, 0x737a538c, 0xe602e374, 0x4c048542, 0x7bc47433, 0xe429c25f, 0xe826149c, 0x1d7db119, 0x300b6478, 0x997a2067, 0x0000ab }, { 0x32ad0c5e, 0x90b4096f, 0x8916d961, 0x284fca46, 0xc47c9c5, 0x47020e54, 0xda9734b5, 0xf6d79cc3, 0xb2782f23, 0x485efcc4, 0x39056c70, 0xbf179bea, 0x931bcce4, 0xfdf44cee, 0x28707614, 0x9443fb8e, 0x00005f }, { 0xceaf9a80, 0x30abcb48, 0xecc4d4d4, 0x6d7d05c3, 0x965212c9, 0x2484fad2, 0xc6ffb514, 0xc99388dd, 0x78a17368, 0x96c50460, 0xab30bd1a, 0xe0b7d66a, 0x9dc26f83, 0xcb8c4a66, 0xb7f5b2ad, 0x1d15bfa8, 0x00012d } }, { { 0x7d2b9a57, 0xf2d36885, 0x232896ef, 0x55f9a32f, 0x578cf17c, 0x37d2d2de, 0x519a497a, 0x6025fd8, 0x9180d3c1, 0xc0396b8a, 0xab164db, 0x9dc0cca3, 0x1c97ab56, 0x619d4d12, 0xee14cede, 0x9019a46a, 0x0001f4 }, { 0xc2a06e68, 0x898db9eb, 0xbce0138f, 0xa30856f5, 0x7ca2bf95, 0xbd03d15a, 0xf6dc4232, 0xd4cc5072, 0x163feb8, 0x7baf78d9, 0x23472286, 0x4319b864, 0xc81d6453, 0x124b1556, 0x91c666ad, 0x37a380fd, 0x00016e }, { 0x549c31a7, 0x737226b4, 0xcb17f7b5, 0x63c31948, 0xdcce6095, 0x5be9b306, 0x3785bec5, 0x416ab062, 0x74022e68, 0x92b37a66, 0x256bfbb4, 0xa7fb3655, 0x78137110, 0x23eeee46, 0xfb6051a6, 0xace21b10, 0x0000c3 } }, { { 0x9153fb4, 0xdc7b83ad, 0xca8a0415, 0x584a25ba, 0x5842d222, 0xc2b0f659, 0x1c503ad8, 0xeb5e4d4e, 0x8ad89f5, 0xac7b976, 0xad2b9f06, 0x2cf3fb4c, 0x4bcdc6b, 0xc0b217a2, 0x55937e04, 0xcdf2baaa, 0x000049 }, { 0x5d38d0ff, 0xcff377f1, 0xd740f9bb, 0xaf606f64, 0x75771622, 0x6a810961, 0xba9ffdf2, 0x677b1d2e, 0x7168a6a3, 0x23caf816, 0x40a1cfc9, 0xecbf9700, 0xa2097261, 0x5bd49936, 0x4d4c784e, 0xc2732e28, 0x0000e8 }, { 0xec2d6a30, 0x370c1228, 0xe8620f4c, 0xdfa359d7, 0xd9474696, 0xc5a22eb4, 0x59098d12, 0x7e9be91e, 0x85b91773, 0x5b01d388, 0xffc843f9, 0xdf820b60, 0xcc6cf72a, 0x9d7bcfd2, 0xbac10553, 0x6aa4c144, 0x0001e8 } } }, { { { 0xb3856ea5, 0x17e1ba7e, 0xd97e743b, 0x742174f5, 0x9445dd62, 0xa86d8680, 0x911a545d, 0xff2d85ef, 0x5f61e1ae, 0xf9ea6875, 0x9dce4808, 0x50ae2ab9, 0x5982533, 0xf72416e4, 0xb9ba54ce, 0xb677c461, 0x0001b1 }, { 0x377eb5d3, 0xbd56cdc9, 0x786bb3eb, 0xf085740e, 0xe4f7c98f, 0x9c6cf794, 0x5a3b35bd, 0x559486e6, 0x615ab337, 0x86a0a480, 0xa800b8ad, 0x574f746b, 0xad3b6ff7, 0x59241379, 0x590ad811, 0x4a81c7b6, 0x000081 }, { 0x8b5f8a3c, 0x7575ff0b, 0x46ec8017, 0xf9cdc703, 0x5098dcc3, 0xe893f9c0, 0x76eef789, 0xff84af65, 0xa6e8792b, 0xe6035135, 0x88326166, 0xee093ab3, 0xed6d1a73, 0xf1b09f4, 0x89e95667, 0xeceb4481, 0x00015c } }, { { 0x1c26a4c1, 0xbfda0648, 0x8c4bfc13, 0xdd5a6ebf, 0x2a7b0087, 0xe34584ad, 0xa9ececb9, 0x4eb0b6ba, 0x716b0b0, 0x39fe4af9, 0x54bac8c2, 0x5067afbf, 0xf93ae124, 0xfdbc49ce, 0xd4128cb6, 0x9b8a7996, 0x000156 }, { 0x13f33ff1, 0xb02ef971, 0x6b54437b, 0x5f72dd42, 0xd64c6ece, 0xdcafea43, 0x4b6ae2af, 0x3ac956a7, 0x48323851, 0xec85ab9c, 0xa135b88c, 0xcff8f0c, 0xd4ed52d0, 0x6cac4d02, 0xec7a31bc, 0x6f5d4bf8, 0x0000de }, { 0xa92dad52, 0x6267b4c1, 0xfbce0b28, 0x4219185f, 0xf88eb3f5, 0x6ea3d714, 0x7b17328d, 0x4c72df96, 0xcc66fc91, 0x8477fe, 0xdd72000, 0xa8c6c1fe, 0xaa04771, 0xab1d99b4, 0x2c873e51, 0x716f352e, 0x00015d } }, { { 0x612fbd91, 0xa0799a6f, 0xc70b02a5, 0xfbe1d56c, 0xb525db2c, 0xc58dca96, 0xfe273fef, 0x36df0565, 0x1ba15b68, 0xc5396a7, 0xefd4219f, 0xc9466f3e, 0x1f26f004, 0x4fc43119, 0xd3b03a7c, 0x3868573e, 0x000171 }, { 0x92cd8186, 0xba17645e, 0xd43f842e, 0xa8d04c48, 0x97221201, 0xadd4834b, 0xb87c215a, 0xb6d895e5, 0x25defb50, 0xc32cd07e, 0x3395f1a5, 0x798983ad, 0x2eb538ac, 0x446b0f66, 0xd70d48c8, 0xe09f3569, 0x000064 }, { 0xe35921b2, 0xa9f40948, 0x8e73bbe0, 0x7ab41368, 0x47a9286c, 0x8d466cf1, 0xbcd9083d, 0x6eb736b8, 0x21fb6cb8, 0x5e983f7f, 0xb5b50028, 0x7b387921, 0x823c280b, 0x251015c2, 0x97e42db0, 0x9ea6e3ed, 0x000189 } }, { { 0xfdd93314, 0x11cc092e, 0x9bb12194, 0x85828c70, 0x754a6055, 0x81e6d427, 0xf4391b4c, 0xba690f9c, 0xa9673ce0, 0x3f83bdc2, 0x8907996a, 0xdf243971, 0x4234083, 0x178c207a, 0x2345b4e0, 0x9f1f27b4, 0x0000e3 }, { 0x427dafb, 0x1d8d0e16, 0x33eee1ff, 0xc4df7b77, 0xa6b901f8, 0x8e32841e, 0xa937d17f, 0x650d5533, 0x1a9034f, 0x3d8f82cc, 0x6ca1edbc, 0x521a2f12, 0x26df0577, 0xe3b282a, 0xfe936a39, 0x81f5ba83, 0x000145 }, { 0x89e5ecba, 0xefbd44b8, 0x3dd0197e, 0x7819791d, 0x51d3c7f7, 0x78889b5a, 0x2b654b91, 0x456f11e6, 0xf8a20005, 0x7303cdd7, 0x4fe72875, 0xf9e3bf51, 0x8d29c2a0, 0x4ab09e2b, 0x35cea201, 0xe41c5dea, 0x000168 } }, { { 0x3b5d3e3a, 0x6bcf6f4d, 0xa4d2d37, 0x305c5d9b, 0x8dcd11fa, 0xfa1e7a6e, 0xeb0ebb78, 0x7d35955e, 0xafb0c47a, 0xa67014a3, 0x2fc7028c, 0x453e9049, 0x2ab5819d, 0xf42269a7, 0x747bb689, 0xc73ae01b, 0x000076 }, { 0xd5d25f7e, 0xb0a25887, 0x19292f3e, 0x473168e4, 0x28f1da97, 0x90fb117e, 0x823e4245, 0x9f033758, 0xde883564, 0xe15127b1, 0x4e0752c, 0x6f550505, 0x7ccf2bd4, 0x187ae243, 0x10bb547e, 0x22e2632d, 0x0001b4 }, { 0x53626c01, 0xf25e1d95, 0xcccdb321, 0xa098b97, 0xcdb42e27, 0x76fec2c0, 0x9e63bb9a, 0x262bc59b, 0xcf2d11c1, 0xba6227e2, 0x726079b8, 0x1a0c54c, 0x39afcaf4, 0xa148298, 0x4aab2e4b, 0x16ecf7e6, 0x000039 } }, { { 0x8b3a681d, 0xc6606732, 0x972352db, 0xa2889d94, 0x2a116a61, 0xd5534c5f, 0xb2acb1cd, 0x72090a4b, 0x4b433f3b, 0x9d6b719b, 0xce5a8587, 0x5bea1d46, 0x8d193ca1, 0xb6336f9f, 0xa005aceb, 0x638b6af4, 0x000050 }, { 0x91a712db, 0xcd17b60b, 0xfb7baf61, 0x78ba7f53, 0x3b586e47, 0xb749be76, 0x41af2482, 0xfbafe60b, 0x8d74ee13, 0xf04e4ecc, 0x7c8ca308, 0xf8da751c, 0x8ff214e6, 0xe33de0a7, 0x91613962, 0x5c5ecb2b, 0x000005 }, { 0x1f9bc632, 0xa3c05ad0, 0x5169cd38, 0xd99736ef, 0x8d71ef10, 0xff112634, 0x474d529e, 0x59bbd4c3, 0x79e68327, 0x3e73eb4b, 0x735f6d37, 0xdd3c841d, 0xcd3f3aa0, 0x32ec0e5e, 0x9071a48d, 0x5bb2836e, 0x0000ea } }, { { 0x203c0337, 0xf7bd59ec, 0x2338454c, 0xd99459b9, 0x1e2ba2, 0x9b13b4, 0xb375a49, 0x947e1600, 0x474783a3, 0xecc7501e, 0x1c102ce3, 0x502e34c0, 0x7c05206e, 0x3dc64031, 0x424be27c, 0xce917614, 0x0000ed }, { 0x85da4a0f, 0x317a9839, 0x2b3f3237, 0x9b25de20, 0xf6623204, 0x2fb511, 0xbf2674ae, 0xe1dc2756, 0x93f73aef, 0x316f8e39, 0x306ea7d6, 0xbb2d63de, 0x126e1c9a, 0x82536c1f, 0xf154f434, 0x75eba731, 0x00008c }, { 0x8c9c188e, 0xd995748f, 0x9673614d, 0xeed3de63, 0xd40d0262, 0xf71be90c, 0xde8a1d83, 0x4cc5684c, 0x639c7580, 0x9e7fc851, 0xf0c54247, 0xe0676ca, 0x9c61d94, 0x38e37efb, 0x181bba3e, 0x9a41a4a0, 0x0001be } }, { { 0xb7721b0d, 0x9d2028b, 0xbd519fe4, 0xce9095f, 0xf15c8990, 0x214b887d, 0x6db2a728, 0x518922c8, 0xc378eb47, 0xb83588e4, 0xd39239c, 0x2087e812, 0x549c4566, 0x3c2b32ed, 0xc84cfc09, 0x38030df, 0x000168 }, { 0xc216c346, 0x4a6febe3, 0xd68f33c3, 0x5a56cc1b, 0xeae9a3f1, 0xaf0b543e, 0xaeca2a45, 0x8b19d2d5, 0xbd80966f, 0x38fe06ee, 0x6e82fd6d, 0xe8d4faff, 0x55fae990, 0xc86e4bdd, 0x68531cc8, 0xbb59b160, 0x00004d }, { 0xb62d37b5, 0x59d20413, 0x20a9c771, 0x27a89651, 0x9e7d2f0, 0xd23f5450, 0xb2af5ab8, 0x6eeef31e, 0xbf413f53, 0x5e5603d0, 0xa14aa905, 0xda39c6df, 0x682ee7cb, 0x3f7a2a28, 0x61f4a3ad, 0x393cf5c8, 0x000099 } }, { { 0xea958b6a, 0x9f6d17d7, 0x87007d45, 0xf9d0ea42, 0x925b59cf, 0xe109aace, 0x72d6c0e5, 0x2f96f3bb, 0x9b73473, 0x5e7153a5, 0x93ce855e, 0x337002f1, 0x76266355, 0x365f81b4, 0x2e59305e, 0x302de537, 0x000077 }, { 0xe14ee2c2, 0xf97cf23e, 0x86434fb3, 0xd3bfe438, 0xdade4932, 0xa8ed2b9a, 0x8fa5a104, 0x3da8b1c0, 0x77b98b79, 0x2aaaebb8, 0xe02fd8c, 0x7b47e875, 0x86dd9915, 0xd14b2a83, 0x6f776c1b, 0x35d09aab, 0x0001aa }, { 0xc4a29f5b, 0x4b8a2481, 0x2d1dc11f, 0x9db4a66c, 0xaa43f996, 0x421bda85, 0x1a065d46, 0x88401503, 0x91c646bb, 0xd8c7158, 0xe5c588ef, 0x3a6a2abd, 0x9174891a, 0x871d417c, 0x3d12e77, 0x53522b2e, 0x0001d0 } }, { { 0xd77b4fc, 0x65e9075b, 0xff71e00c, 0x7309e589, 0xec95ad93, 0xe7fd12d3, 0xe2faf4bc, 0x73a54585, 0x78a7ecfd, 0x32055070, 0x3c55c282, 0xea42ee82, 0x2063538a, 0x9cdd2569, 0xe0190997, 0xd0b126ce, 0x0000d0 }, { 0xf67efa68, 0xadc57b0b, 0x16b5e9c2, 0xbf7154a4, 0x524db956, 0x28ffa2b2, 0x49ddbce2, 0x8fb01e35, 0x23dfce27, 0x4098c39, 0x7a7a3e53, 0xb2b367bf, 0x8c603e76, 0x2b800341, 0xbd2ccec3, 0x21713588, 0x0001c9 }, { 0x7a0ac1e5, 0x402d9ede, 0x94e31cf3, 0xa55b36a0, 0x438ad12c, 0x36e9d33a, 0x2795caee, 0x833e3cbe, 0xc4fd928e, 0xab6be50d, 0xf4287815, 0xc6da1cb8, 0x36102aa0, 0x92c9abed, 0xe72d28fa, 0xb1ac76b6, 0x0000dd } }, { { 0x80f3fe99, 0x5ecc7397, 0xb59c022, 0x5e93ac82, 0x3bb11c88, 0x45f5e861, 0x233840d2, 0x4b981bf7, 0xd86945be, 0x17081ae8, 0xbce3faa2, 0xdcd29411, 0xb1c5cb88, 0xa27f770e, 0x6cb702b5, 0xdf7ea982, 0x0000df }, { 0x74640e20, 0xa5f21396, 0x55feb570, 0xa815da49, 0x65f32edd, 0x30a08ab1, 0xf3c8ea1d, 0x029bf2, 0xcb193f63, 0x36838305, 0xe0743dc2, 0x27110ede, 0xe8544fba, 0x8e5c9aa9, 0x980e5ab6, 0x4b7766e7, 0x000166 }, { 0x1328805, 0x35a7b6b8, 0x76fe9c71, 0xbae60468, 0xd3ca404e, 0xbc25bb08, 0xddb869c3, 0x47c082a1, 0xd5557a14, 0x242d1104, 0xeedb9c23, 0xc6422b11, 0x74c1b3d8, 0x7737b214, 0x65f3dce, 0xca6c74a0, 0x000159 } }, { { 0x1c19696, 0xd4e8b151, 0xdfdccf29, 0x679b8d36, 0x1c633af3, 0xd4b64e82, 0x7ddfdc6, 0x8f7204c5, 0xd664bc20, 0x8cdd9ca2, 0x7cae5fe5, 0x34d16888, 0x478b622f, 0xf80ee118, 0x74b0aa9c, 0x11b6432, 0x000036 }, { 0x7d8e7940, 0x5b457e36, 0xa23b656, 0x3564a2ff, 0xddbbe2ae, 0x43636bb7, 0xf50c4b84, 0xb434227d, 0x2944f5d6, 0xb1902d6a, 0xfac31d35, 0xb0da4e38, 0xa9a3ab0c, 0x7586133f, 0xdae13bec, 0x7738a599, 0x0001c0 }, { 0xc77a33b1, 0x8ef810f, 0x1e239242, 0x6e80ce16, 0x9d10fba9, 0xb42ebfd1, 0x90cea0c6, 0x7ab5cf02, 0xeeba4777, 0x42b24604, 0x292911d4, 0x10c450a0, 0x6c0296d2, 0x9496f2f5, 0x50c4c42a, 0xea184ac6, 0x00004f } }, { { 0x78cb84b6, 0x9e2d0761, 0x68596ff2, 0x1ca32bc8, 0x32e1f69, 0x41b15e40, 0xe607d4f7, 0xa6ca375b, 0x88d63a3b, 0x954a025d, 0x149a102d, 0x57502986, 0x56467cee, 0x13552717, 0x41df3f36, 0x70417922, 0x00010c }, { 0xa01aede4, 0x67dd75df, 0x6afea89, 0xfac44b27, 0xb4ef485, 0x82286eb7, 0x342525b8, 0x3802c3d4, 0x5abf6ab, 0xc236cf0d, 0x4dfe9058, 0x4d969035, 0x314268d6, 0x2f8ec8c8, 0xe73d9ead, 0xc1de9fd7, 0x00004f }, { 0xa4b669ad, 0x7f0dcb87, 0x9ffa420d, 0x9a249dfb, 0xe49d0042, 0x3e79812d, 0x4e1e5166, 0xd25d9903, 0x8a4d124a, 0x8136d5a7, 0x9553ab48, 0x6686d396, 0x8761a984, 0x196822dc, 0x6458f01c, 0xe4cd9278, 0x0000e9 } }, { { 0x7d4ae518, 0xdb1e5a9f, 0xdd288512, 0x341da090, 0x462204a8, 0x6e1f850e, 0xc72c67f4, 0xcebbf9b6, 0xd181965f, 0x3380d50e, 0x7258f4b, 0x21fd6b36, 0x1c86e7d, 0x42032681, 0x9478d6a6, 0xde0a1e0d, 0x000081 }, { 0x61cd7a7c, 0x348367e, 0xf5f5533b, 0xe9ea8635, 0x3ade1290, 0x11cb6bb9, 0xa1d4588a, 0x11b0b379, 0xbad62d46, 0x7ecaa21d, 0xffa71af7, 0x8c42f4f0, 0x7b9f5ff0, 0xf870778f, 0x4b8f6e4e, 0xd55b32c0, 0x000036 }, { 0xc41f666d, 0x9d37fe50, 0xabc811e1, 0x2d6e0d34, 0xaad53b54, 0x85f8e035, 0x83dc6fbe, 0xec0ac6aa, 0x7c481dd5, 0xeba5d488, 0x5060bdc6, 0x2b98bad9, 0x490d3330, 0xc5b924b6, 0xb9893320, 0xcdddf549, 0x000005 } }, { { 0xef159b75, 0xbce54eda, 0x87a01c6c, 0xef317579, 0xf10fe1f9, 0xbfc2ef4c, 0xea4542dc, 0x60d48e1c, 0x1f9fead7, 0x89b512a8, 0x7133d55, 0x61e0d4a8, 0x7af72f26, 0x3ccf817, 0x265c8067, 0x22809f41, 0x000031 }, { 0xbe6b6a5, 0xc2488437, 0x381f8e17, 0x66b18863, 0x797031b5, 0x1f4eae0f, 0x4720b18e, 0x8a592058, 0x2dc9ef11, 0xae7f6482, 0x56e6eb66, 0x9b48c03e, 0x44d1cd17, 0xa44d96b1, 0x97c816a5, 0xd9995d69, 0x0001b6 }, { 0xf6f9e3fa, 0x8caef59d, 0x8e38f9eb, 0x12a805e3, 0xd2f45434, 0xd4bac997, 0x1ae0ea53, 0x6f1d5739, 0x8f3a9672, 0xcf3977ec, 0x6d314b9b, 0x29cfc982, 0x3b65a5bc, 0x1d1287b3, 0xc2029f80, 0xe965f5d1, 0x00012d } } }, { { { 0x79a1ef56, 0x434e0f69, 0x7b682709, 0x6538930, 0xba4c0d70, 0xed649887, 0x758c10b7, 0x1ef222e0, 0x204acaa, 0x57f1c384, 0x5e578b4c, 0xe7c1d45c, 0x8333638a, 0x3c359b0a, 0x74be5e7e, 0x4c3c03e6, 0x00009c }, { 0xa8cd9b99, 0x340442a6, 0x2f0f2feb, 0x9d095e0d, 0x39409845, 0xd5eb55bb, 0x467182dc, 0xd877fda7, 0x3bbb0853, 0xe182afdb, 0x2f668ce9, 0x5f1115e2, 0xa3293e38, 0xf0e4b753, 0x6c53b148, 0x2a2ac929, 0x000001 }, { 0xc1b80308, 0x2beef317, 0xa421ff33, 0x611d52f0, 0x6c2ce016, 0x52723a8, 0xd1b27be1, 0xac871c00, 0x769a9719, 0xf5c4a911, 0xdaa17f49, 0x7a208a49, 0x273dfd2f, 0x7bbdb020, 0x9ed5745f, 0x189c087d, 0x00000e } }, { { 0xe6ed3d24, 0x420ca2c7, 0xb8c2584e, 0x2f772b23, 0xffc9266a, 0x3c167e63, 0x9808ad31, 0x4e6ff3fa, 0xec76f287, 0x311294e6, 0xdbb53bfa, 0x99dda2e5, 0xa7f59227, 0x10a53218, 0xb63ca73b, 0xcd5a53c2, 0x0001ab }, { 0x9c745e77, 0x7b54bc4b, 0x132f5afc, 0x50424256, 0xc0680d1a, 0xf5d2e7ef, 0xc571dd15, 0x7eddf99c, 0xbcd4ffd6, 0x5bf0da4c, 0x80e8261e, 0x6519e30b, 0xd781f70a, 0xc148b808, 0x147b9121, 0x49d364da, 0x0000f3 }, { 0x120d6c3f, 0x1fc9ed59, 0x2e6f6833, 0x3e23d688, 0xfaa02246, 0x2c40b4ad, 0x4eac70e, 0x27b1e082, 0x5fef069d, 0x700fc949, 0x494953a2, 0x381b6aa8, 0x257e4ce9, 0xba5a6f33, 0x2a842382, 0x985bb9a0, 0x0000e5 } }, { { 0x83becbc3, 0x7c95992d, 0xb5ce9a7c, 0x7b70b872, 0x19ccbcc8, 0x28af7e26, 0xc14c1740, 0xca28f289, 0x7218344f, 0x51c57750, 0x6874d83f, 0x2ffcee55, 0x99dc4b37, 0x356b03ea, 0x1025ef7d, 0x26bafe93, 0x0001dd }, { 0xb196d17c, 0x7719278e, 0x2a3c5385, 0x937269e3, 0x263a7470, 0xd8efb820, 0x49da565a, 0x21773d6a, 0x7ea0c65d, 0x35e00949, 0xb176ab93, 0xe6651084, 0xb775fad, 0x7da8b6a6, 0xc515d696, 0x2517a273, 0x0000c6 }, { 0x73621a5f, 0xdc17344f, 0x845e50df, 0x30ea04dd, 0x260baa27, 0x2fc0a9c5, 0x75ec5922, 0x15b94ce9, 0x6a71fcdb, 0xafdac9b3, 0xc55cdbaf, 0xe55ad459, 0x9a71b027, 0x39e8654a, 0x47a71b5a, 0xd352459f, 0x0000b0 } }, { { 0x847dce6e, 0x8eb74b69, 0x329d43c8, 0xdf6760ce, 0x6a590263, 0x35cabdcd, 0xfa6221eb, 0xbfa7b64d, 0x28ab7109, 0x381bd932, 0x5e8a73e1, 0xa7b6df56, 0x1065bd4a, 0x65cfb96c, 0xcebe16d1, 0x8a2e0ff4, 0x000033 }, { 0x59684ed1, 0x36cec530, 0x9dd2fd2c, 0xf5c9acaf, 0xb7b82a4f, 0x8544047b, 0x5bbd8cb0, 0xb4d26fae, 0xa079bbd5, 0xeebbad17, 0x369f3cc3, 0xc48f1513, 0x5ccccaa9, 0xe9183a14, 0x1d7d41, 0xe717d887, 0x00013e }, { 0x212fae44, 0x25daf3c7, 0x75cd73b5, 0x831b26f1, 0x87b119d1, 0xe419ff57, 0x242dc494, 0x5098a2b7, 0xcf567c1f, 0x73efadbc, 0xaf1a5bfa, 0xa7cb1c7d, 0x9c4e3a44, 0x40c2799b, 0xbe8b71d4, 0xa35ae6f5, 00000000 } }, { { 0x33276e5e, 0x4d1588df, 0x88723437, 0xbfe3c2b9, 0xad2bdf07, 0x196b0722, 0xe100a2da, 0x8c8847f6, 0x1486e2d4, 0x175fba6, 0xf3f2009a, 0xf527193b, 0x6d4b8fe0, 0xb496bcaf, 0xed27fe35, 0x5910e1b1, 0x000130 }, { 0x9355cb77, 0x44441f4, 0x6c3eb61a, 0x12688393, 0xbf2b3271, 0x4274f180, 0xb1587e5f, 0x286321a6, 0x42eeca6a, 0xb77e8d8a, 0xc666d25c, 0x11b16df4, 0x4ff3d815, 0x1645adda, 0x780189be, 0x17e2c170, 0x00015c }, { 0x1177427b, 0x864b54f9, 0x1ac586c0, 0xa26bd3f0, 0x2989fc31, 0xd5755588, 0x9d4b7ed7, 0x21a9bbe3, 0x47382918, 0x2a160c7f, 0xb2a771f8, 0x854d04eb, 0x3b731fb6, 0x746aa22e, 0xddca949b, 0xcff10902, 0x0000d4 } }, { { 0x8eca3e39, 0x62cc104b, 0x7e58c284, 0x1908d666, 0x38a55957, 0x8213ba97, 0x753d6d7c, 0xdaf498e5, 0xf7acf91b, 0x78fb6181, 0x62d441d6, 0x5b47de82, 0xe8e240ab, 0xa4909b92, 0xc1357a13, 0xa96829d4, 0x00012d }, { 0x4de8f1c0, 0x77b27743, 0x4dacc9a5, 0x443dbecd, 0x83383ea5, 0x7b55d654, 0xa4d74eee, 0x77b59f56, 0x1dafef16, 0xf9f6964f, 0x1342488f, 0xa7a8a6b4, 0x2716daa, 0x2e63c8cb, 0xbcf761ac, 0x2207f80b, 0x0001d6 }, { 0x9dd8f86c, 0x5ee9a57c, 0x9a410b69, 0x4caf9fd3, 0x1ce80c81, 0x8c2a26d9, 0xe1c37842, 0xb2f6bb5d, 0x525050c3, 0x60d46bee, 0x8e8ca304, 0xb70393cf, 0x81eb516a, 0xe5d5b431, 0x29941841, 0xebef7c5c, 0x00017d } }, { { 0x1ad3d3d1, 0x64a2a696, 0xf9affe36, 0x432db763, 0x50260e0, 0x3d1bb796, 0x60d933f4, 0x4b1e9762, 0x8e9bf31e, 0x7abb8508, 0xd54fe1f5, 0xef33ecea, 0xeb29eb97, 0x99e484f7, 0xb63bef85, 0x5ef4f613, 0x0000fd }, { 0x1704749d, 0xfd83899b, 0x4490590b, 0xb553c149, 0xac666526, 0x42e281b9, 0x57540a49, 0x6fc1985d, 0x628d266b, 0xda70a2f5, 0x1b5b7ad6, 0xa7382faf, 0xcdbdd266, 0x3112ce95, 0xce11254b, 0x20d66118, 0x00013d }, { 0x865f69e1, 0xc335e3b0, 0xa57af20e, 0xafd0c2d9, 0x65b8bc59, 0xc19947c2, 0x1eb93380, 0xaf997e38, 0x130116d, 0x40e865ed, 0x61b59d9b, 0xcf38d100, 0x1b68e0da, 0xc83c00f, 0x45ea235, 0x14fa5d76, 0x00016e } }, { { 0x817e1174, 0x732bce6f, 0xf558e04e, 0x329b38b6, 0x8a3ffeb3, 0xd3de6ce4, 0xda22ea40, 0x7bb3406e, 0x9d8c9562, 0xb5590a4f, 0x668809b5, 0x37351f6e, 0x9415e61, 0xff75b657, 0x64dcd6cb, 0x2a6ab6b4, 0x000136 }, { 0x6a49f88d, 0x2e655130, 0xee21c131, 0x6ae9c6cc, 0x552aa4f0, 0x92a16177, 0x134a3fcf, 0xc33b06f, 0x60640238, 0xea55b761, 0xf5861b8a, 0x88aa92d, 0x45f346b8, 0xd1ca3d9e, 0xa2a7c2d1, 0xd76922e1, 0x0000a5 }, { 0x1b82da19, 0x91d149bf, 0x2c20e450, 0xf490ce60, 0xdd83d922, 0x4d45128d, 0xa45a2833, 0xdc0f673d, 0xe5b95463, 0x4608b297, 0x722bd19a, 0x8c94d764, 0x3a85468f, 0xa5bcfbe9, 0xb551ceb2, 0x3ffe9aaf, 0x000103 } }, { { 0x1b139710, 0x4529af03, 0xd7d59497, 0x8ab6cbad, 0x5efc06e8, 0x2555050b, 0xae02336, 0x3a4b8f02, 0x3b6e8577, 0x377e8934, 0x41e12307, 0x50916b5a, 0xcfa43567, 0x145b5d25, 0x61c3b7ef, 0xbe05368d, 0x0001ee }, { 0x519b12a9, 0x586939ca, 0xa17fa71, 0xa4451ef0, 0x20cac7a8, 0xd95ac032, 0x102fc212, 0x5b48d485, 0xa9f7b1ab, 0xf517c82, 0xb8cde707, 0x7179cc9d, 0xc9a1eaa2, 0x2e0bf78b, 0xe2131d48, 0x5ff0ee0e, 0x00005f }, { 0x203816d6, 0x9f5457e6, 0x2c96159a, 0x1bafdc6c, 0xc462134d, 0xfb9e0391, 0xee5e7b62, 0xddc5c62e, 0xe01c101b, 0x9a8cdaef, 0x23515074, 0x274c47a6, 0x15b8401f, 0xdb2af243, 0x1bad8b5f, 0xcdcad27f, 0x0001fc } }, { { 0x96f90477, 0xd42c168c, 0xe50375b0, 0xe2752a29, 0xc8eae81a, 0x122bec6a, 0xf48e2e04, 0xab5644b8, 0x17579b89, 0xea2182af, 0x1d5be6b7, 0xe4697b39, 0xd7709b66, 0x41f478b8, 0xdc0fb2d3, 0xcbf60c8f, 0x0000fb }, { 0xb0453a04, 0xf063a4d4, 0x6fe5f646, 0x12bb1860, 0xf4159cdc, 0xbbd5d1f7, 0x88d0cac5, 0x35af688d, 0x73e834ed, 0x85ee1a3c, 0xa0285ac2, 0xd12d34f6, 0x603e23eb, 0x153b9604, 0x8e6131bc, 0x44ca8d66, 0x000020 }, { 0x9216aed1, 0x5a424030, 0xa2afa458, 0x78df267a, 0xd875af62, 0xb7b7ad67, 0x980ec15f, 0xed83058d, 0x86a87633, 0xe15a3486, 0xed06e104, 0x43a6cca9, 0x79be7ca0, 0x3a72629d, 0x4f886eed, 0x8e8af79a, 0x0000ec } }, { { 0x54d1d68e, 0x96ce5d07, 0x2eb4beec, 0xe5895391, 0x548a766e, 0x8fe14602, 0xe46ff8d7, 0xe5d9554, 0x810c9252, 0x64052076, 0xebede0c, 0x58aa36cf, 0x8a54b7f1, 0x54142297, 0x4102f8f3, 0xb35be8a, 0x000169 }, { 0x88e06486, 0x1ce6359d, 0x3daa44df, 0xffffe088, 0x2943bb6d, 0x5d745af, 0x518a0a63, 0x688660e, 0x2ca7325b, 0xbb8d2620, 0x372943fd, 0xd86fc372, 0x945edc2c, 0xe3ccc7a2, 0xd7bb2fad, 0x1f9882cd, 0x0001cb }, { 0xd0efe0c, 0x8120f0d2, 0x1e379370, 0xd0e599e2, 0xfbd8dd4e, 0xdbbe4287, 0xa0c49179, 0x13733796, 0xb7391175, 0x2a522960, 0x2da51a4e, 0x54ed5961, 0xa524f632, 0xc97cf5b2, 0x337da9eb, 0x3a88053b, 0x000114 } }, { { 0xf1fdfe44, 0x8ee46d24, 0xaad5cb9, 0x49b3a6ed, 0x992c4374, 0x7a0bd339, 0xd41417e7, 0x832748a4, 0xf9137c9b, 0xb8324da6, 0x41cadc2c, 0xf4e03581, 0x13c0ed5f, 0x9c777e53, 0x3a0a22a4, 0xe070ad4, 0x000043 }, { 0x4cb6e3c5, 0xca0346f2, 0xc514d81e, 0x6b809792, 0xf84da2a9, 0x62c7b5ce, 0x10f4baf2, 0xc840a4d5, 0x7047b597, 0xb2af97b3, 0x107558da, 0x8ed7323d, 0x6f50bed5, 0x8d4f40a3, 0xc779f908, 0x778dcd7f, 0x000127 }, { 0x93b9c58d, 0xb690d16e, 0xb7b1fcf8, 0x85588b7c, 0x9d186d7, 0x63839557, 0x7185cdab, 0xd039fa93, 0x71d5758b, 0x62a7df9c, 0x1acf6aff, 0x1bb11d1d, 0xc96d1ef2, 0xf4eb53b5, 0x96e8e3e3, 0xa81d7b14, 0x000055 } }, { { 0x6d84fb33, 0x4f8a5a90, 0x53988f2f, 0x77b1103, 0xbc57c0ec, 0x2f5b758a, 0xd5b83e48, 0x6da6973e, 0x48af0e81, 0x520f3790, 0xc8ba4243, 0x76c3c4ed, 0xe56737a9, 0x5c338dfc, 0x8f996d87, 0x5a580c86, 0x000125 }, { 0xa5d86de5, 0xd7a76a06, 0x6f18ab71, 0xfd1a8e72, 0xa3e32ab9, 0xaa7181be, 0x4059a2ff, 0x484810ca, 0xc64aa8a1, 0x7079b0df, 0x8563dcc7, 0xfdf06915, 0x83d061e6, 0x5558de6f, 0xc003ca0e, 0xa748c717, 0x0001c2 }, { 0xfc749850, 0x79c6716f, 0x1ab0dc51, 0x68248239, 0xdef6cfbd, 0xb69428bd, 0xd35e3c81, 0x8593f44c, 0xa43843f, 0xb1164e43, 0x22ada498, 0xbb37cc2e, 0xece44578, 0x8843218c, 0xfb068486, 0x8c6f4939, 0x00017c } }, { { 0x9523126d, 0x789085b5, 0xd2fe8845, 0x1ba3d512, 0xd885cd8c, 0x8c0f6009, 0xe2a2541b, 0xd8bfe425, 0x8dfd51ea, 0xea0f683a, 0xc6e9f03d, 0xe8f5f481, 0x5527ba60, 0x18db3ff6, 0xe855faee, 0x48d2aea3, 0x0000d8 }, { 0x1ec8e1ec, 0xda978cfc, 0x350a3db0, 0x9a6c6ce2, 0x1eaa86a5, 0xc3eccf55, 0x38da869c, 0x1a51eaae, 0x7ec6cf96, 0x3ce2bd35, 0xf116132a, 0x48b9d83f, 0xa7054a0e, 0x30ad5c1c, 0xcf0de9fd, 0xcbd29b47, 0x00016f }, { 0xf7ffa136, 0x75613d6, 0x95dbaca8, 0x41c4085b, 0x20b38c73, 0x4a9c0e1, 0x78ad85, 0x5586efbb, 0xc794b5d7, 0xe15c1119, 0x7ba8da20, 0x1770c196, 0x38bc2bd8, 0x16d536da, 0x6fbc9136, 0x8a400a36, 0x0000b0 } }, { { 0xed6d5eda, 0x7c319b58, 0xf794e0fc, 0x970101ec, 0x69646b58, 0xb55ec35a, 0xa9dcea04, 0xb89bc26e, 0x9f8c010, 0x5f25c154, 0x7b415add, 0xc0f346c8, 0xca2f17fd, 0xef4e9952, 0x1d22d2dc, 0x2b143662, 0x00009b }, { 0xb9b7889d, 0x2d626156, 0xc0f2a1ed, 0x7489599c, 0x88863f0c, 0x66265493, 0xca3a253, 0x5dabc300, 0x1beb5abd, 0x450a0c2c, 0x5d2d057d, 0xe4f241, 0xaee4fd00, 0x1d4be02, 0xea67e79c, 0x30d44eab, 0x0001df }, { 0x8743cf1f, 0x54205a22, 0x2f768910, 0x4a5aa1d, 0x805da1e2, 0x2f23455b, 0x7551c79f, 0x99caaea5, 0x581328a7, 0x89842ac6, 0x57eca807, 0xc1df440d, 0xc72b3684, 0xd81bbf0e, 0x7051b88, 0x2d69119, 0x00017e } } }, { { { 0xd469d21f, 0x7ed5bb54, 0xdde161f0, 0x251a5265, 0x4bcac85e, 0xbd3f6fec, 0x8daabe97, 0x73d09644, 0xb4b42f48, 0x560c81e3, 0xb34a2d1c, 0x910a0724, 0x2751488b, 0xfbbaaa99, 0x99b99c97, 0xa4fe6c8b, 0x0001e7 }, { 0xd4873415, 0x3e443270, 0xfecc379e, 0x6acfbfcf, 0x11a72ca9, 0xd228704f, 0x98c5bdc8, 0x73bc076a, 0xa9fbcfe, 0xdbf96b10, 0x6fef5777, 0x1e64805a, 0xdcb5c804, 0x740d24f9, 0xf9691e6f, 0xd37a6c07, 0x00009f }, { 0x1fb83057, 0xc3819b77, 0x832785fb, 0xc1a951d4, 0x7f2e26eb, 0x78212b24, 0x923fec58, 0x9661d62, 0x154c7899, 0x62d95b35, 0x1b386b9a, 0x58eb842e, 0xd16c3a15, 0x28c817c7, 0x2a2e6a3, 0xe38aa570, 0x000165 } }, { { 0x22aabeb7, 0x7a833b1a, 0x5e0780f9, 0xe812c524, 0xa66b4cea, 0xa2247af5, 0xe7438c91, 0x3ae4c0dc, 0x4100b0ca, 0xf3c73ce4, 0x7a34118d, 0xf4ec8f96, 0x5a2dfb5f, 0x34b599df, 0x7ca482b9, 0x6e229f94, 0x0001dc }, { 0xa84f96d2, 0xe03cfa49, 0x32d1ff5e, 0x2c14cda2, 0x1d7960b8, 0x1f06a76a, 0x24e4774d, 0xe116ae0c, 0x4c002b82, 0x8fdda676, 0x56b49a8c, 0xc41e021, 0x955c3ffe, 0x5a96138, 0xca98679d, 0x7ef09d8, 0x0001c2 }, { 0x434bea36, 0x8739bc4c, 0x34e85d5, 0x84fe7316, 0x9bcb2b24, 0xc46ecde6, 0xfe7aaac6, 0x546d6f0c, 0x2ef2a85b, 0xc043c079, 0x74471c61, 0x85d57ba, 0xc358c1bd, 0x7535356, 0xca780c13, 0x48773646, 0x00012f } }, { { 0x7860f388, 0x75706e62, 0xfc904fce, 0xa155f8cf, 0x1a10bb2f, 0x5f6daf07, 0x8958d681, 0xc39af11, 0x972c4970, 0x363beba5, 0xbfa4c80f, 0xe0e46124, 0x6c47feec, 0xfe7b13e7, 0xd8cd8e19, 0x33f8e1bd, 0x0000e8 }, { 0x99444953, 0x5b9ae032, 0x89564867, 0x7bcc2902, 0x6e2e300, 0xec65d6aa, 0xaff59da6, 0x66519557, 0x4efd1411, 0x625d7e8c, 0x3d0fe9f5, 0x3da7ac59, 0x66b983b0, 0xcbc3325f, 0x8f6c8ce3, 0xdf54c884, 0x00004f }, { 0x756de826, 0xa9272333, 0xebd0ce9f, 0xe47dedc7, 0x86b0064d, 0xd437479e, 0x3f8861b0, 0x64291959, 0xb4977e2a, 0xdcad8cef, 0x9e4a2d3b, 0xccf0a859, 0x6c9f68b3, 0x4ba94f27, 0xcc526433, 0xeb4d49f9, 0x000122 } }, { { 0x91e57bfe, 0xd9c3c52e, 0x4d5af33f, 0xc659a6ba, 0x40e3bd18, 0x851af53e, 0xcd2c9362, 0x7494f78, 0xd327c47e, 0x316e664f, 0xe836caf3, 0x1f128881, 0x1186472d, 0x670a21d3, 0x98496484, 0x84343378, 0x00015d }, { 0x7182a1b0, 0x1cdb245f, 0x4a8407ae, 0x9576bea5, 0x8c911544, 0x6a7e557f, 0x9025c51, 0xad4d5b9d, 0x889c0c57, 0x8b160401, 0x4499fda7, 0xba61cf1d, 0xc8ea97bf, 0x8c9be796, 0xdc1def0, 0xfa7b85d7, 0x00007c }, { 0xf66b42ef, 0xfe09f489, 0x13cec1f7, 0xf3f19298, 0x53e307be, 0x4b81678e, 0xc6ed9793, 0xc955ed14, 0xa944f1b2, 0xef47d43c, 0xfe0b28ea, 0x64b1339c, 0x4338bff2, 0xca4a85ff, 0x58ac7fca, 0x672d0b27, 0x000088 } }, { { 0xa1d4a110, 0x7ded168e, 0x786541bf, 0xea1db0b1, 0x35635e08, 0x92eca333, 0xc0a38122, 0x1ab39e7a, 0x937cc000, 0x7c0c01ab, 0x8706c93f, 0x59ab5afc, 0x5a1c17c0, 0x6d217640, 0xd3dd8367, 0x971640f1, 0x000008 }, { 0x6d3b0e88, 0xf537a2fc, 0xf303e71a, 0x695e8464, 0x86da19dd, 0x9396853d, 0x60403aab, 0x7332a923, 0x15ac3743, 0x934eb5ef, 0x2c4f2d0b, 0xb319992b, 0xedfa39f4, 0x493e7167, 0x482413ce, 0xfb3aff71, 0x0000b8 }, { 0x1d0f9a43, 0x9842ece8, 0xaf2e7490, 0x36e47449, 0xd8a0f9eb, 0x6d398396, 0x8c7700cb, 0xce9ff2d0, 0xb9d3278c, 0xc2fc4ad7, 0x2400f5db, 0xda444c27, 0x828472d6, 0xe31458d2, 0x908550c9, 0x83539ad5, 0x0000e5 } }, { { 0xfae239c1, 0x3dbff20b, 0x139fafb8, 0xe3236442, 0x55c7a230, 0x783ade71, 0x72638ae5, 0xa948756e, 0xec3a4507, 0xfb636a16, 0xffd75a4c, 0x4e886766, 0x63e88773, 0xdf82e81c, 0x4da3697f, 0xd4a12e4f, 0x00013b }, { 0xb261c1fd, 0xb59390cb, 0x96fe33ba, 0x101496bf, 0x57c8c029, 0x11525e11, 0x4f4856a5, 0x65bfe814, 0x4b1a1ad2, 0xb8282424, 0xfd4acf0e, 0x68d97ab9, 0xa38b32d1, 0x259947bf, 0xaeb8a3d, 0x45893fce, 0x00004a }, { 0xda89e88e, 0x9070d2c, 0xa7bd1c09, 0xd4efebf, 0x9a92ccbb, 0xe2c404e9, 0x11f3e32, 0xbec3f25d, 0xc1930dd8, 0x59622248, 0x6e5760ac, 0x52c5ae65, 0xe9cf7f56, 0x96d48b59, 0x305cd48b, 0x7ef44a5, 0x00016d } }, { { 0xd1ff5716, 0xd615e850, 0x55ae8514, 0x7d39fa14, 0x4929abc9, 0x80e2832, 0xa118f48, 0xc07227fd, 0xa73f8cc9, 0xa55eb7ed, 0xeb4866a0, 0x6a5cdaf5, 0x1f32904c, 0x75a936ca, 0x93912dbd, 0xb9a5700d, 0x00010d }, { 0x1c5ca586, 0x5fae2472, 0xdcd61d88, 0x34d515f9, 0x2e0593e0, 0x9797a875, 0x3b04641e, 0x645a373c, 0xf4ed12ea, 0xe8d05623, 0x58313821, 0x3c1999ba, 0xba40620f, 0xa5cf69fc, 0x133c16ed, 0x31aeef8c, 0x00003d }, { 0xe39c4693, 0xc98c5ccd, 0x96228885, 0xcaf9c567, 0xfb3b65fa, 0xea2a8188, 0x7a1c123c, 0x3b4e01f, 0x930e718c, 0x34f1d278, 0x28ab75bc, 0x34bfb25f, 0x4ee903df, 0x71b6ae40, 0x8e8bf8af, 0x77f95548, 0x00011e } }, { { 0xfd1c4f3b, 0x35d77adc, 0x912498ef, 0xa38e42e7, 0x7c572c46, 0x26d862c7, 0xcf2b56a3, 0x8491d8bc, 0xf7c4c55, 0x407f6ca2, 0x57e689d7, 0x575647b3, 0x4fbd2b18, 0x8d8de9d, 0xbc4f37cf, 0xdb486c9b, 0x000107 }, { 0xfeefbec2, 0xb5563cf, 0x7d403343, 0x37e54b87, 0xe98a3616, 0xfe30d98, 0x1056827d, 0xd46ff2e6, 0xdedd9a5e, 0x33cae1f4, 0x5eae8c63, 0xce8f471c, 0xbc0db1f6, 0xd8c74fa5, 0x2eb21080, 0xbcdca755, 0x000084 }, { 0x34bdbcd9, 0xb9f47868, 0xdec9eb02, 0x18fe23e, 0xdcbf4be7, 0x9974cb35, 0xb3ed83a8, 0x984ccb6d, 0xcec4f024, 0x8c1ef9b4, 0xa5155c37, 0xf2c9ceb9, 0x21a4fc9b, 0xcea6ceec, 0xbcdc1e01, 0xfea3488d, 0x0001e5 } }, { { 0xea8367d5, 0xec264ab6, 0x9831111d, 0xb29e5e88, 0x277d0ce4, 0xd28864bb, 0xba38f1d0, 0xb3d91a37, 0x35782cf6, 0x97ba22a0, 0xf28742c8, 0x8e177c76, 0x721aad20, 0xe3ade89e, 0xa3322011, 0x71669aed, 0x000131 }, { 0x61911258, 0x6a4252d2, 0x32762c94, 0x6d1f10d9, 0xb3cb5953, 0x511f2fda, 0x1c1c2cc8, 0x5a4d41d7, 0x3f7185db, 0x214917f, 0x7411bf96, 0xfc1fb20f, 0x83648905, 0x5433639a, 0x8d7ad021, 0xf294be25, 0x000081 }, { 0xc861b931, 0x9b3a092b, 0xe4859df2, 0x491091c1, 0x716bb486, 0xf5167c7b, 0xddc70569, 0x776d9860, 0x43225f54, 0x1b912a20, 0xfb2d5362, 0x25a482c8, 0xe6c5110c, 0x2b97425d, 0x3175a639, 0x9104609f, 0x000055 } }, { { 0x6f020325, 0x79043a3a, 0x9ec67916, 0x43f592ea, 0x57eff9b0, 0xdd01cf2a, 0x3e91217f, 0xafd05a16, 0x41af1937, 0xe0817bb9, 0xad9487cc, 0x6de9a21e, 0xb7604c8, 0x6cf0b477, 0xd1f70b1e, 0x8241bffa, 0x0000d9 }, { 0x2cfd7705, 0x34060590, 0x8bf6bcec, 0x356b0020, 0xef5d1721, 0xc4018215, 0x58b67d97, 0x2295e7c3, 0x445e4a04, 0xcdd3271, 0xd9f15327, 0xee790333, 0x80d3573c, 0x3ce0042f, 0x802b30a2, 0xa0d01683, 0x000050 }, { 0x8d10256d, 0xf313bc95, 0x3515e64a, 0x723f45c2, 0xa20c8c8b, 0xe385d9c9, 0x8fbe4471, 0x19b78741, 0xb1941462, 0xe53455b, 0x8548ac6e, 0x11e86a1c, 0x456e0a9a, 0xbe23e3b7, 0xe97436ac, 0x82ee1020, 0x000104 } }, { { 0x6d8e365a, 0xb0de6013, 0x879ca6eb, 0xf622e917, 0x557153ea, 0x1d5edb57, 0x4135db4e, 0x8fb3e7bb, 0xf63b6657, 0x70e3effc, 0xdf448736, 0xc2f4eb2e, 0x220ca26d, 0x941d75eb, 0x5ae869d0, 0xb7f56e6f, 0x00013e }, { 0xf2501506, 0xd0432f99, 0x62929f20, 0xf4112540, 0x41966349, 0xe38d50a0, 0xa84778f1, 0x617a9215, 0xa763e78b, 0x396914cb, 0xff284bc8, 0xf1af2eb3, 0x969a8403, 0x1d1c41e3, 0x9a83fbc, 0x32c7eb6c, 0x000111 }, { 0xed9ea899, 0xb180671, 0xf5a3897, 0x450453b8, 0x3e562701, 0xbce13c1a, 0x75a183d1, 0x214b2686, 0x4a8f64c1, 0xacd9b806, 0x81900c2d, 0xacd54c6b, 0x63678393, 0x4d313787, 0x4b35da8a, 0xb0ddc2b3, 0x0001eb } }, { { 0x4f10e12b, 0x653bab36, 0x46d73b85, 0x1269ea4a, 0xe6342b93, 0xc916242f, 0x9cfc6c88, 0x5c5785fd, 0x4a20af18, 0x16fa5ea0, 0x1987a7a1, 0x6c78cbb, 0x37130acb, 0xb15c3234, 0x2165da75, 0x36481bf, 0x0000d4 }, { 0x4d9eceda, 0x1240639e, 0x1d9af703, 0xde799306, 0x44466b42, 0x5030e948, 0x7e957b63, 0x39616b82, 0xe8cc29a4, 0xb1e204e5, 0x42e73794, 0x86485712, 0x558302e1, 0xeba8957c, 0xc9cab0eb, 0xe1810c00, 0x000078 }, { 0x11ba3beb, 0xd3f57cd2, 0x9997544, 0x6f555d27, 0x487ecd56, 0x68c94bcb, 0x5cd6ae0a, 0xd0e7940b, 0xec45f3a8, 0xb45250b4, 0x754908cf, 0x21c2ecf5, 0x3e391ae8, 0xbc795bce, 0x6f5275e2, 0x1c78592e, 0x000177 } }, { { 0x47717648, 0x4942197f, 0xdf9d8ef4, 0x16173f45, 0x6395cf11, 0x3ba937f4, 0xab99494e, 0x767a7c38, 0x6b63b7af, 0xde7b8a95, 0xbad7c6dc, 0xc1b81c76, 0xa77e034a, 0xf1c17784, 0x8dbffa62, 0x1b8ebd59, 0x00004e }, { 0x97f854de, 0xd90916dd, 0xc5f34f17, 0x768d260, 0x3ff54dba, 0x63910ef, 0x4944ad97, 0xf6e2cf20, 0x431b23c, 0x2eb62526, 0x8e23a1f4, 0xb2ee5803, 0xe2645a57, 0x6dbcdbe8, 0xb12a3b38, 0x8278898f, 0x0000b6 }, { 0x4ae91055, 0x728de4a9, 0x5ba3a66d, 0x8cb4f2a7, 0x3517824e, 0x7850ff61, 0xe526a96e, 0x57f6d32, 0x2de643e, 0x3c0cbcb1, 0xd8f9787f, 0x3ddcb87b, 0x3d4f042b, 0x8cf932c9, 0x9a52f149, 0x2131e00c, 0x00012a } }, { { 0xfeec01c0, 0x9b402abc, 0xe8dbad29, 0x88ea1142, 0xf8adf480, 0x44906ed4, 0x37a53ccf, 0x8ec45b7b, 0x4b1c79cf, 0x8c005ea6, 0xded050d, 0x256d9d16, 0xd720cf13, 0x87b48f43, 0x34e91e5b, 0x8b11819d, 0x000119 }, { 0xe5e16922, 0x1b2bfca6, 0xb4b27ed9, 0xbf435879, 0x1531c760, 0x9a3fede1, 0x505ec59f, 0xb877739e, 0x1783e117, 0x74b42869, 0xd001bfc1, 0x44e92578, 0x635ab052, 0x23a2161, 0xd7d595ee, 0x32d577aa, 0x0001bd }, { 0x409ecedd, 0xbe039502, 0xc918248f, 0xb771fd4b, 0x2f7af729, 0x2c9f0ace, 0xf3570849, 0xf8c5bb87, 0x173fee4a, 0x34385fd, 0x1e72779d, 0x2150ad99, 0x698db9f5, 0x1a411b02, 0x1681efd0, 0xe519c494, 0x00016c } }, { { 0x66ddb50f, 0x4ccb133d, 0xe36da28, 0x407e4cfa, 0xc10f2c0d, 0xfef2661d, 0xbfa7f2c0, 0xf9edcfb5, 0x5f4e47af, 0x3243db62, 0xc7580eea, 0xa7ab698d, 0x49030667, 0x5dc97a95, 0xca6ed8b6, 0xb32f4069, 0x00016f }, { 0xae0c38bf, 0xd9e741e2, 0x1a53f372, 0x33f78dda, 0x77cd5a53, 0xe31decdc, 0xf027f088, 0x54ea1aa6, 0x7591546a, 0x4fd33681, 0x94bc9b75, 0xcccbacd5, 0x6c2e3d96, 0x65f06963, 0x92444a33, 0x69c21391, 0x00009f }, { 0xd912ed18, 0xcf907f8c, 0x1a9107d6, 0x80c54f63, 0xe504d05c, 0x9c104445, 0x9f7db6e1, 0xd7592d7d, 0x93f04f5b, 0xc96a332d, 0x8c1fd7cf, 0xc7f3b89, 0x57f25593, 0xf0b647ac, 0xa62a8df1, 0x99f9804f, 0x000113 } } }, { { { 0xfcf7d703, 0x6db5df3a, 0x670ae4a1, 0x54bb3442, 0xea6d696c, 0x6df998f7, 0xf9b89b78, 0xfebefdc2, 0x414e0b8d, 0xe52172a2, 0xe0dc2350, 0x2c1f7448, 0x76fbd4c4, 0x657881ec, 0x18e9953b, 0x28e51d3d, 0x0000cc }, { 0x19ec3e95, 0xba419954, 0xf6f4d493, 0xcc6f9910, 0xccf2c08e, 0x3d638777, 0xdaabc146, 0xca2fed1c, 0x7d1042b, 0x60f118b2, 0x4ed2f86a, 0x564112f8, 0x21e66200, 0xf2b0a063, 0xe1e8eb5b, 0x1ab59547, 0x0000ac }, { 0xc440b861, 0xb449b989, 0xed2b506d, 0x1749b651, 0x59378138, 0x8470e577, 0xf56e4a4d, 0x3fa214bb, 0x341cbfe6, 0xd9608e68, 0xf38e051e, 0x9325d1c7, 0x6bf2a19a, 0xc2ce424e, 0x732bb965, 0xb054ae3e, 0x000153 } }, { { 0xf5d62fac, 0xeb41ddbc, 0x617cd659, 0xc1f9fddf, 0xf5cb3965, 0x97bceb61, 0xe5d6813b, 0x970d91a0, 0x9a5495f1, 0x6a7bdd72, 0x5f730972, 0x25761536, 0x573c4785, 0x79618bfc, 0x3246d5af, 0x24f92c06, 0x00010b }, { 0x24e4f0b6, 0xf4c4bf0b, 0x9b65df6c, 0x2acb00b7, 0x5b2fc134, 0x8e55ea22, 0x26a3cf04, 0x8d63cc04, 0xcf635ec8, 0x265bd6b8, 0x28c7ffdc, 0x9e3c22dd, 0x48c9024d, 0x8261a0f7, 0xe35398ec, 0xdc7140f, 0x000004 }, { 0x7a5c4572, 0x845474bf, 0xa520f663, 0xfa183e97, 0x7c6c2e21, 0x59ea79b9, 0xcb35ee49, 0x21be70db, 0x80aab486, 0x32f458e2, 0x5bc3d9ee, 0xca937876, 0xec1788a6, 0x5a085359, 0x8699c8a5, 0xaae26d74, 0x000132 } }, { { 0xfd9dfc75, 0x69c791a9, 0x9e37833d, 0x4ce96208, 0xa79a3d76, 0xdeb1a8, 0x49c7e9b0, 0x8b337633, 0xa338d54d, 0xf41b4d32, 0xf5e80ac1, 0x98484416, 0x56515f74, 0xc417db38, 0x6d8d62cb, 0xded87455, 0x0001f3 }, { 0x45370c0c, 0x40493720, 0x57a190f5, 0x7e7f9f96, 0x3482e64e, 0xdbe49c0e, 0x6a0fbfed, 0x8701b878, 0x3e024486, 0xcf50e6a0, 0x486b139e, 0xeb5836c3, 0x1ad1393d, 0x2d07a2dd, 0x715dcc8b, 0x33235078, 0x0001ea }, { 0xe3593d16, 0x3ce94928, 0x520ebbc5, 0xc5d957a1, 0xe1f489, 0x39184184, 0xd5ae01b3, 0x52c88fb8, 0x8e631fbb, 0xd3c35c4, 0xdd3e46c1, 0x6122e774, 0x4816de62, 0x1dd4828, 0x6f7c6f53, 0xb4dc0740, 0x0000d1 } }, { { 0x4eeb8e70, 0x4a4003df, 0x78e19e43, 0x34360acf, 0x4022aa71, 0xc3a5c9f4, 0x2f10a37b, 0x81caaf3b, 0xdc874bde, 0xad5eaf95, 0xa60c4262, 0x9c157166, 0xa529b993, 0x29b99609, 0x8414d4db, 0x360ab442, 0x0001c9 }, { 0x39cb5ab9, 0x18227061, 0x90ec40bc, 0x866e602d, 0xc3480f59, 0x32745bde, 0xa11866a4, 0xc1e508b9, 0x82bdc342, 0xf5892eee, 0x8f3a4b58, 0x64c7abeb, 0x8a580916, 0x44c2bf81, 0xa041f132, 0xcf3b40c4, 0x000170 }, { 0x31467e71, 0x29181c62, 0xbeebb93c, 0x99cc3c6d, 0xa7bb867d, 0x53690f4d, 0x4d84be83, 0x98333652, 0xedb233d1, 0xd80c7c6d, 0x8326822c, 0xa518f62f, 0x8d0e0823, 0x22c7abaa, 0x3d54da8b, 0x6d15c6e5, 0x0001f1 } }, { { 0x5857cf20, 0x5f5ca992, 0xc77c9b2, 0x6aac5656, 0x49d37925, 0xe40ffad8, 0x62d4fbfa, 0x8c042a6d, 0xdd78dd98, 0x82a0fac8, 0x2a8908f8, 0x17cdae3a, 0x983542df, 0x2350c897, 0x79cc55f4, 0x867adebd, 0x0000fe }, { 0xfc29d55e, 0x6fb7e98c, 0xd4c6fa1, 0x3814bed7, 0xcc54c8be, 0x5786ebb7, 0x219385be, 0x3a3977b6, 0x3673887b, 0x902af36c, 0x63ed3c32, 0x90a64dcb, 0x47c9523f, 0x12689396, 0xbf422bd3, 0x9b53e8d6, 0x000154 }, { 0x62eb84d7, 0x161faca9, 0x6c287c1c, 0x8064ac0a, 0x1f7004b2, 0xba8f51f8, 0x3f226434, 0xed198b36, 0xb4cae5e0, 0xaf99694f, 0xc0f290da, 0x27beb7b8, 0xa2d71d08, 0x4d5b88f1, 0xeaa7c579, 0x34ad35df, 0x0001d8 } }, { { 0xbfeed6c3, 0x2fc5df3b, 0x7db455fc, 0xda408ee1, 0xa04f71ba, 0x2b88ed22, 0xec9118ca, 0x5a1c9a39, 0x7326717d, 0x7b347a87, 0xb7d6c40b, 0x48834bee, 0x364f063, 0x629756e8, 0xaba433b6, 0x3c4904ce, 0x0000b3 }, { 0xd4df92e, 0x11fd6c62, 0xe1f8e143, 0x9d6478ac, 0xfb9fa784, 0xa0169ff3, 0xb1ff5632, 0x79d84305, 0xb23efd1e, 0xa7eb6ee9, 0x58940385, 0x6e8dd657, 0x188a0813, 0xd9174ccd, 0x6731c621, 0xb826601e, 0x0001e6 }, { 0xa46de605, 0xb25be4ee, 0x2412ee5a, 0x81e2f9a7, 0xbb83ef30, 0xfeda3a21, 0x4f8071e6, 0x7a148509, 0x9f80d8a2, 0xa68c8728, 0xc2fe46aa, 0xc85c6e29, 0xfcab3653, 0xf776a98b, 0x9f2e12a, 0x4c5e27a1, 0x00003c } }, { { 0x7eb68620, 0xe1f276cf, 0xdd4a98d, 0xd20bea6, 0x46dbc5cb, 0xc1c8fda2, 0xc516ba6c, 0xcddc7095, 0xe9f6267, 0xf46cadf, 0x16b440a, 0xb0defb05, 0x749f1f44, 0xa9b56583, 0x9c649b7a, 0xb4f97aa6, 0x0000af }, { 0x77caf3a8, 0xe29e1520, 0xbbbdddc4, 0x33055a76, 0x6a3f9cef, 0x8078c854, 0xf17d9e33, 0x8a27ba21, 0xa91f4747, 0xa7b18cbb, 0x48a5ead1, 0x5fc08765, 0x1850a056, 0x6ba4f99f, 0xca5516b3, 0x32d5941, 0x0000bf }, { 0x22c2fc7d, 0x50a3fe65, 0xaf0fe80d, 0x32680055, 0xfd458b62, 0x943ccc96, 0x87ad2d69, 0x11f645f2, 0x7218bba5, 0xe8f4883e, 0x149a822a, 0xd33ed039, 0xc212eb21, 0xac2e0042, 0xf230d1b7, 0xc5a55682, 0x0001c3 } }, { { 0x92fe1daa, 0x53a9cec3, 0xefc0c40b, 0x7b1c050c, 0x154cd36c, 0xa47190fc, 0x3cb3a9f5, 0x51764540, 0x1c1019c4, 0x4091464b, 0xc50bfb6c, 0x6f0ae7ad, 0x37100b7e, 0xc5a705a1, 0x21ec2759, 0x20dbab62, 0x000062 }, { 0x17f94aa7, 0x66aeb24a, 0xd17026a4, 0x43a9deec, 0xc013bf5a, 0x4fdf1065, 0xc44d11f8, 0x42f5353f, 0xd44804ef, 0xe5866352, 0xd15f5e31, 0x8ba95ad6, 0xc27dd479, 0xcd774557, 0x30ae7df2, 0x1302c5d9, 0x000050 }, { 0xcfa02eb7, 0xc837125c, 0x263a60b6, 0x55689ec9, 0xdd33e4db, 0xd407ad89, 0x74d0ceb9, 0x32874ca, 0x527d980, 0xbad59a3b, 0xda1dcdb2, 0x8a756c42, 0xda86e075, 0x895ef339, 0xa0d11b74, 0xc9f885ef, 0x00015d } }, { { 0xbe8105a8, 0x776258a2, 0x9ca209fe, 0x72d021d2, 0x92a34edd, 0xdc1f3c5c, 0x334b2cf1, 0x6745152c, 0x9fd3fb74, 0x6ac20229, 0x55926289, 0xc8d7688b, 0x718f08f8, 0x59d51fac, 0x56eb19a4, 0x9e02794c, 0x000022 }, { 0x6ff3e93f, 0x4fe7993c, 0x6589d022, 0x29c1fed, 0xc593cc0e, 0x787e0812, 0xdea89d1e, 0x68e93b2d, 0x1969a2ee, 0xd30edc8d, 0x11bc1306, 0x8553364e, 0xaa11b4b3, 0x111907e6, 0xe00654b5, 0xdedd54a1, 0x0001d4 }, { 0x32fdf1c1, 0xe9a41212, 0x900186e8, 0x8ca558de, 0x101b06c8, 0x9017fe9b, 0x8cf2f6e6, 0x2fa18129, 0x8388a88, 0x51dc29ae, 0xbe725edb, 0x7f33c942, 0x469bc4fc, 0x2b170e75, 0x4533fce7, 0x2e826792, 0x0000a8 } }, { { 0xe952dbeb, 0x124ab27d, 0x723f853d, 0xacec38e0, 0x90dafdc, 0x4cccc1e6, 0x8578f33c, 0x71aa034b, 0x1fc187cc, 0xc4696195, 0x446f6ae3, 0x961ea300, 0xafe511df, 0x5e9ea36, 0x74ddc930, 0x90ba3e77, 0x00001a }, { 0x7c11e4ba, 0x33d5c409, 0x764cf288, 0xd02ecbec, 0x104dfb3e, 0xf94090a5, 0xfe5009e0, 0x7451595a, 0x2cc84760, 0x2ceb45e4, 0x795bae95, 0x169f8517, 0xc61d627, 0x5c4403e1, 0xf0784b7b, 0x412cb561, 0x0001ea }, { 0x2832ebc, 0xebe4d3a4, 0x5a54f718, 0xa4f9e28c, 0x287065c3, 0x218e9bc, 0xb7d22172, 0xf6fe3be8, 0x3dc2d9ef, 0xe17b7ce6, 0x43afc5ad, 0xb7476944, 0x69e89e07, 0x38b9c648, 0xc7ce5109, 0x212e6de3, 0x000191 } }, { { 0xd57d85a6, 0xb5fedd07, 0x7633e780, 0x84d6e095, 0xb5c0b8cb, 0x8aaf8979, 0xb7284a24, 0x0c43ee, 0x6feb20a5, 0xf383b027, 0xd152cbe2, 0x6ec4828, 0xc1df42c5, 0xc0ae657c, 0x56eb28f, 0x57e7f5e7, 0x0000b3 }, { 0xf2d6562a, 0x22d6fe04, 0x6da06530, 0xc2c56d38, 0x33529506, 0xbab65b70, 0x2d460fe1, 0x2fbe9d8f, 0x7859ac57, 0xa14b78d7, 0x61b86292, 0xde96dc71, 0xa9b7e485, 0xd752c0bd, 0x81cee4, 0xba00fb22, 0x00004a }, { 0x5ab06707, 0x57fa2204, 0xb3137505, 0xb8c37988, 0x2e676294, 0x3107b56c, 0xdc2a6c97, 0x3443fc39, 0xdf9abd49, 0xc34d678, 0x345a5443, 0xc9087266, 0xcd38b115, 0x84e85fc4, 0x987f49bc, 0xc1d2cc50, 0x0000ef } }, { { 0x9f5b341b, 0x3066d6b7, 0xe1d84973, 0xa5f4d136, 0xbebb17d1, 0x83c8640e, 0x9a0265c7, 0xc1e1e45e, 0xd3c5fb65, 0x20078024, 0x3f86d4bf, 0x7fac0de3, 0x33318490, 0x3e79ad37, 0x12ad80fa, 0xee60b510, 0x00018c }, { 0x174779e, 0xd36e9f5e, 0x5d59244a, 0xce4b469d, 0x7f520b85, 0x3d46a23a, 0xd65d1131, 0x4037b716, 0x88a82ffe, 0xd2875fb7, 0x16848376, 0xfef311f3, 0x8932844a, 0x50d2f540, 0xce85f4d6, 0xb60cc661, 0x0000ba }, { 0xde511a10, 0x9862e851, 0xcff3b855, 0xa5033cbf, 0xf67aac75, 0x9bd30a20, 0x66118dc1, 0x47a4f8a7, 0xf0315beb, 0xccdea7a7, 0x60483550, 0xf431b582, 0xeb2e2a1, 0xf0796908, 0xbe38616a, 0x7ef2920d, 0x000162 } }, { { 0x7afc2a99, 0x4c4d4e2a, 0x117084b3, 0xc06ddb58, 0x8bfb3d2f, 0x4a1dff25, 0x7e1a6910, 0xf3e9f893, 0x8e257ac3, 0x22bb0ac4, 0xbc4c1b0f, 0x3bffa2ee, 0xe23b414, 0x4e0ca45b, 0x6045420f, 0xab1f4d50, 0x000033 }, { 0x5200f33f, 0x694d9869, 0xa5aac119, 0xdb028718, 0x61218b5b, 0xb9bb9579, 0x43ae6f9d, 0x7ab6a49c, 0xe97080da, 0x5617ce7e, 0x10f8bea0, 0xa66282a6, 0x3f002f0c, 0x7b42e5a7, 0xcae4f55e, 0x376bde9, 0x00004b }, { 0xc0ed3c16, 0xe37e31a0, 0xa38a1717, 0x1351a8c3, 0xfbbd077d, 0x1be7d525, 0x7469c94e, 0xe4689287, 0x75368c2c, 0x288d275f, 0x5c0e5105, 0xb711d4a5, 0x23021336, 0xd8234657, 0x9cc79cbf, 0x37ffda99, 0x0001a6 } }, { { 0x6547aeef, 0x7216269c, 0x7e4f6ca3, 0xd3c1aaea, 0xc73280e6, 0x4a13a6d7, 0xbfcf6d5, 0x351170e2, 0x3b250450, 0xa48ca0a1, 0x6b8425ba, 0xfe5159e1, 0x43121096, 0x7d02b31f, 0x3ee5dd54, 0xf671cb6b, 0x0000a2 }, { 0xbdaeb693, 0x4bfc4c6, 0xda6b13ba, 0xedc11731, 0x55651db1, 0xf2560bfd, 0x2d357353, 0x604a720f, 0xf1ac3f99, 0xd89f2387, 0xcb063678, 0xb887e3ae, 0x10845082, 0x6fa0d71f, 0xb305011a, 0xbeeb5ba3, 0x00019d }, { 0x1768dd77, 0x14d55841, 0xd409bc4e, 0xd3ee2673, 0x1c4e8f2f, 0x27f7590e, 0xe209f9cf, 0x36d37f7e, 0x4a9ccd51, 0xa4237a0f, 0x25d7131a, 0x762bfe03, 0x95e923c4, 0x43ee0949, 0x94fd7d3b, 0x91e9256, 0x000121 } }, { { 0x69b2bd50, 0xd3cd8a81, 0x9f60bcd2, 0x752a73e6, 0xec314e90, 0xd27027fd, 0xaab76483, 0x51556152, 0x18b06fd2, 0xd8a134b0, 0x9e6bfb51, 0xa4eb8599, 0xd1a28419, 0xf0ee83f, 0xbd7ec5a5, 0x6df35356, 0x000160 }, { 0xf4c58911, 0x10b881d0, 0x6bc3f20b, 0x7611f6e7, 0x4fd041c7, 0x23878787, 0xa3b82c7b, 0xa87f2e81, 0xdd460fac, 0x85e31989, 0x233bcbb1, 0xf516804f, 0xcb90ba6d, 0x8a3e259a, 0xd8e1a7ea, 0x67342feb, 0x0000c2 }, { 0x621e6732, 0xb0325ca6, 0x67f56b0a, 0xa8b641d9, 0x89cc13c6, 0xc94bdd1e, 0x12f26007, 0xbefb0d86, 0x5d656425, 0x95c6c70a, 0xd1764fdc, 0x162de9b8, 0x76332510, 0x7530f736, 0x2b3cf830, 0x1d0ea2a1, 0x0000aa } } }, { { { 0xac5b83b0, 0x162ac06a, 0xd7943fc7, 0xbed34cd5, 0x1f8cc6f2, 0x87cfb93e, 0x8b01c032, 0x1617db31, 0x8c3fa4e2, 0x49467890, 0x4da40bcf, 0x31257e2b, 0x1df03232, 0x360f6d33, 0xfae0ea10, 0x30ee3b20, 0x0001fd }, { 0xa0195e09, 0x37ccb7, 0x25fdcba7, 0xe4f7a344, 0xf97df418, 0x80b3b926, 0x4778b6f9, 0x554dea2a, 0x5bae787d, 0xe25a75e, 0xc2b368e, 0x588706d6, 0x86da750f, 0x95b465c9, 0x91270e17, 0xa8a21efd, 0x000061 }, { 0xae309758, 0xe6d13a83, 0xb49ca158, 0x9d151390, 0x306876a9, 0x57694fbe, 0x815ce6e9, 0x78477f04, 0xe59670b8, 0xb789e4d0, 0x3b4f2a35, 0xcbfe2fc5, 0x6a9e1525, 0x87b0f851, 0xc66d3179, 0xd98a987d, 0x00006a } }, { { 0xb581e981, 0xa07caa49, 0xd79a910a, 0x3ed90b4a, 0x60af426f, 0xd562f589, 0x58c24b24, 0xf68ce99b, 0xfa251bca, 0x4613aa03, 0xa27df26d, 0x940589c1, 0x7bd0e27f, 0xb61988c3, 0x4ca6fd4b, 0xe35e781d, 0x0001eb }, { 0x85b8a1a9, 0xf1fbd291, 0x93b9c688, 0xa1c20154, 0x5528fe91, 0xbd9949b4, 0x9e0d447a, 0x90ef023a, 0xafb89955, 0x2e868888, 0x944e28a0, 0x9252cdf6, 0x6c48746c, 0x8065e005, 0xc5527ee9, 0x7a93264, 0x000014 }, { 0x305adbd8, 0xc24da197, 0x3be4a41, 0x15b3cd09, 0x9f911591, 0xf02cd183, 0x600faaef, 0x261746ef, 0xa9ee2ddd, 0xd8b7623b, 0x9e6db367, 0x9190893, 0x983bdf8e, 0x68f3ea59, 0x33311efa, 0xea858933, 0x0001c1 } }, { { 0x8e7cdad9, 0x1dfb187, 0x647d4b14, 0x2a1f2829, 0xea7f1dfd, 0x482ac369, 0xebfaefac, 0xf0faa5cc, 0xd102b11e, 0x501d9b35, 0x98b282f8, 0x144c000f, 0x6285c8a4, 0xd15828e3, 0x3e9c8764, 0x7a6335f4, 0x00011b }, { 0xdb269202, 0x617b1e43, 0xfc60ae1c, 0x95eb877d, 0xa4fccfab, 0x65ef61ff, 0xe393d062, 0x39815342, 0x17238bfd, 0x1b163922, 0xc682ca45, 0xa0e32a05, 0x3a0f28ae, 0x92591f40, 0xc0e8c2c1, 0x7ca9b0c2, 0x00015b }, { 0x86e23ecb, 0x2e9df5d4, 0x8e2013ad, 0xb7834505, 0x323a54b4, 0xd91fab26, 0x8ec92f87, 0xec1f00e4, 0xfe64935, 0xf0ba8f13, 0x3a6be2de, 0x30a6dd30, 0xb27ae5b1, 0x5f1f27d2, 0x7a7dd3c, 0x10316e8f, 0x0000c4 } }, { { 0xe05fdd67, 0x28a7afd7, 0xf002b1b3, 0xd6268f2b, 0xc404b59f, 0x2d31deb4, 0x36ea4a19, 0xd17d802, 0x45ddc20a, 0x2452c034, 0x754bd784, 0xfb4aa02c, 0x72eef0f7, 0xc52fb0d2, 0xf9b3f586, 0x8ff4123e, 0x0001f0 }, { 0x70701dd5, 0x65c5184e, 0xc48f7ddb, 0xd85ee3f5, 0x64401f3c, 0x603bf076, 0xca5e1d5e, 0x58305ac3, 0xf5b90693, 0x905d9524, 0xe6bf9b47, 0xbd770ee2, 0x249a4cdc, 0xd339a367, 0x87a50818, 0x13131c12, 0x000105 }, { 0x9483afaf, 0x6785c9dc, 0x2c9cbd7a, 0xe4a3b5de, 0x2be1f1ed, 0xd7bd43f0, 0x304f9c17, 0x9a5560cf, 0xe96742d4, 0x7a3c4177, 0xfe62b87, 0xd2de4798, 0x576f0117, 0x35130be1, 0xe5ccb6a0, 0x12be1d52, 0x00013a } }, { { 0xdccf08b9, 0x2f983cc1, 0xbfededf4, 0xbfa3bb72, 0xb19daac, 0xa463f260, 0xfaffa038, 0x45fbbfd5, 0x96016e8e, 0x8cb2ba8f, 0x1733a4d6, 0x23ad9333, 0xe7af3632, 0x54781863, 0xa84e2983, 0x9f489de3, 0x000142 }, { 0x3fea4b4a, 0x87657669, 0xb82d3ffe, 0x8230787a, 0x157e6681, 0x250a6b1d, 0xbc9e40f5, 0x1df30f43, 0x1dbe1e3b, 0xe9b3ef0, 0xa6b0ce7b, 0x12aa82fb, 0x2cbda34, 0xd9fb40a7, 0x619665da, 0x717b559b, 0x000063 }, { 0xdfd5b09, 0x6981988e, 0xccf131, 0xb04657f1, 0x437405af, 0x250c67d6, 0xf0c255a6, 0x2a9d74cc, 0xcf534456, 0xeab4810c, 0x46beb6ae, 0x83ab227f, 0x2b7b6404, 0x5a1c9b0e, 0xbc3a5af2, 0xaae1711d, 0x00014d } }, { { 0xea95db6f, 0x5b413ef9, 0xf7ea7cc6, 0x32352113, 0xa9ebb11d, 0x451b9a3, 0x6ff77d0b, 0xef7e1977, 0x2f958cda, 0x1cf26eef, 0xb8a392d8, 0x75c70bd1, 0xe299f2b, 0xe82cf061, 0x5a7e9c03, 0x7b787a6a, 0x000194 }, { 0xcc17e337, 0x9f89caee, 0x6b1a0ff1, 0x53be98a8, 0x3c58ed5b, 0xa24b2ea1, 0xa0e08a41, 0x7c060962, 0x52191948, 0xab249fc3, 0x92bc1103, 0xd1dcf62d, 0xb9de8514, 0x132c757c, 0x2e8ea2eb, 0xbeca73fb, 0x000153 }, { 0x535822b3, 0x3590a779, 0x8402dab7, 0xcb894f71, 0x9a09fad5, 0xef6d1c2c, 0x515d8551, 0xc1ccc5b9, 0xa245b4ec, 0x7d419198, 0xb4bd09a5, 0x3106d6e2, 0x629bf73b, 0xf14df9ce, 0x288aea95, 0xe88d304, 0x000128 } }, { { 0xffd2aef3, 0xd56d9235, 0xfe2cc793, 0xd50a4c9e, 0x1b94ef2b, 0x3239566f, 0x2c7a5f69, 0x9589673e, 0xdeefb4de, 0x520304c6, 0x98637ff2, 0x69935251, 0x518a5e29, 0x1005daa0, 0x96ac55c9, 0xc44a89a3, 0x00013d }, { 0x538597e0, 0x2e521f7d, 0x665f6521, 0xc3a0beb9, 0x4f0105c2, 0xaecb9dea, 0x10bffaf8, 0xcb0516e1, 0x119e81c5, 0x7247983f, 0x34d8bc22, 0x4069cd52, 0x9d1e121e, 0x79699fcb, 0x877ce7d8, 0x8b16ca2d, 0x000081 }, { 0x5f032ddf, 0x722e59f5, 0xd495b326, 0xe6c2b267, 0xa058f7c7, 0xf6dba298, 0x46d32c65, 0xea7e3c68, 0x2acb5b6c, 0x4bb260af, 0xd207be8e, 0xd7d8a1ea, 0x91ee1b80, 0xf5113cb2, 0x9f3ce85, 0x1a8165fa, 0x0001e9 } }, { { 0x7cc17723, 0x875cf64, 0xe99119d, 0x526dca75, 0xfbc4cabd, 0xb583d9c2, 0x4cec7016, 0x4fbea50c, 0x939ee31f, 0x369104b6, 0x176a4e7a, 0x827cc3e, 0x815f5478, 0xfefc2e1d, 0xd6a9d24e, 0x393a7baa, 0x000014 }, { 0xf9fa4854, 0x1611846b, 0xa6037ebb, 0x140a9315, 0xf3c8685c, 0xbe028a49, 0x9de3b39, 0xf02fbf27, 0x4948c1d6, 0x8b1feb89, 0x74f38930, 0xe322fd13, 0x39635861, 0x3fd6bb3c, 0x193d31db, 0x646036f7, 0x0001bc }, { 0x8776d69c, 0x3c57b35f, 0x32f96d06, 0xc7f00652, 0xa8b4ee3b, 0xa425eec, 0x16370149, 0x7c7c65e9, 0x67b9277d, 0x96b77be6, 0x42f94d2c, 0x2d3cf87c, 0xc41f0f25, 0x8eb646fa, 0xd828a071, 0xd15e7a28, 0x000068 } }, { { 0xd6572559, 0xfe1059e1, 0xb726be32, 0x801b2aa1, 0x6d291d0d, 0xde681ad3, 0x6623c42b, 0x6469cf91, 0x81112e25, 0xfa6982bb, 0x3946f02f, 0xd101be2a, 0xd8943dd5, 0x914e8fab, 0x50e93fd5, 0xd6db2dd8, 0x000051 }, { 0x7c5b1c5d, 0x5280524, 0xfe688ed4, 0x71800a2b, 0xb9033799, 0x4c58f121, 0x27d7f443, 0xfa42d253, 0x4b2d37cc, 0x548c24c8, 0xdcc1409b, 0xe01ec15d, 0x3f859c52, 0x583a6475, 0x5b18ecdc, 0xb5eb7aac, 0x000175 }, { 0xda6ad52e, 0x73bf0ea0, 0xfe561e6e, 0x14b584ce, 0xac5c6d6e, 0xc4c0f12a, 0x5860f09b, 0xd3d330f, 0xcd02f54a, 0xd6f73677, 0x45852053, 0x5f15ef62, 0xf6e13746, 0x671b5ddb, 0xf46eff27, 0xfd430bc, 0x0000e6 } }, { { 0x77dcb03c, 0x4a05e03d, 0x23dc36b1, 0xdcb2a992, 0x4ab7d151, 0xbc219902, 0xadf6e846, 0x561d5c9f, 0x74d523c0, 0x5d3d984a, 0x51ee248f, 0x35a272e8, 0xe528abc7, 0xa2c91409, 0x814558bf, 0xc935753c, 0x000020 }, { 0x2427c76e, 0xa49f0490, 0xabe1ed28, 0xcd5688e7, 0xeeb99dcd, 0x3668cd9c, 0xe433de6c, 0xb76e3d16, 0x1e1891fd, 0x26ed6c94, 0xf1f38155, 0x3b574e2d, 0x68682e79, 0xc7d9e3de, 0x5723dbf2, 0x4062ce8, 0x000117 }, { 0xa4234d31, 0x19a55d30, 0xe8c8071d, 0x17579c7d, 0xdc285a1e, 0x1e81710c, 0x5b2f1a82, 0xf4281109, 0xc748a327, 0x2b798f79, 0x88be96eb, 0x769aed12, 0x3dbd2754, 0xa26e83a1, 0xbf42f1f4, 0x65a728ec, 0x00019b } }, { { 0x4f6247c5, 0xf6a61d13, 0xae8b38d6, 0x5f63bc2b, 0xc8692496, 0x49a13c5d, 0x1e2be672, 0x9873cbc7, 0x26a1c36e, 0xbeab4b59, 0xc225a6ac, 0xa79fe85, 0x929f8658, 0xdb05efb6, 0xf14424f, 0x6a0a5f3e, 0x000077 }, { 0xc39f1ed0, 0xea2dd712, 0xc4d714b4, 0x53b34d44, 0x9b54f7cc, 0xfecafc9d, 0xe2fa5028, 0xb568bbe3, 0x3718d347, 0x37e8788a, 0xa7ede143, 0x8e19a941, 0xad609f9f, 0x5e699276, 0xc4534af1, 0x597cc400, 0x000127 }, { 0x2861ea56, 0xcb527f4b, 0xed029b40, 0xd01587ad, 0xfe2d60cc, 0x900b06ef, 0x58820434, 0xb146d75f, 0xd473ed1, 0x78d88d04, 0xa6e830cd, 0xb98b127c, 0x77aa2f56, 0x4dc3691e, 0x7703dbfb, 0xfe7981e1, 0x0001ac } }, { { 0x19d7669a, 0xa61818c9, 0xbf4091d9, 0x3d039dbb, 0x1616a4e6, 0x2c695462, 0x98722009, 0x4d35d7cd, 0xc2681b6a, 0x87c890cf, 0x5629f50e, 0x4f4cb590, 0x457ddb72, 0x51e0384a, 0x6aa1c739, 0xf66177cb, 00000000 }, { 0xaaa83de3, 0xb02d74a2, 0x786bd713, 0x584e757a, 0x397acdf1, 0x8e08cf13, 0xdb1eca9b, 0xa1324979, 0xb9da6a7b, 0x2cc2288, 0x947a3afd, 0x7eefaf00, 0xc7740b19, 0xac6e2170, 0xc3221605, 0xeab41d54, 0x000045 }, { 0x169d6d30, 0x226e9ca9, 0xa139733d, 0x7a24a656, 0xd2961b06, 0xc43fda45, 0xb5f6dcab, 0x8164e093, 0xa839c2ff, 0x256013a6, 0x725cade1, 0xfc97e9e0, 0x484d01de, 0x78fa9505, 0x6778e338, 0x91d686dc, 0x000090 } }, { { 0x441f8e2c, 0x4c42893e, 0x8943a25a, 0xa26fcaed, 0xec96f96b, 0x390bb281, 0xf66e7ef8, 0xc9eec91b, 0xd5d38b46, 0x956f9cc, 0x7797762c, 0xaeb2ca69, 0x932f3f53, 0xe44bddaa, 0x2c2b3841, 0x54756077, 0x0000a9 }, { 0x9eb1c537, 0xc41bf392, 0xd237c1fd, 0x45055e7b, 0x281bc589, 0x3847aaa2, 0x15e56af2, 0xa6fdb1e9, 0x53dbabeb, 0x3032b318, 0x266b0787, 0x41352704, 0xde8f913f, 0xc9bc417e, 0x4aeede7d, 0xca622e31, 0x0001c7 }, { 0x2ff7447a, 0x1dc8ce7a, 0x55d6ad7e, 0x8d38e203, 0x8d6e4c04, 0xfc1ee798, 0x7c1a45a4, 0xbe92704f, 0xa31936e, 0xefc852ae, 0x4aed1bf6, 0x71773ed5, 0xdb2ff7a3, 0x88aa872a, 0x57d4be61, 0xedc327f6, 0x00019b } }, { { 0xab703ad2, 0xcc240444, 0x594ba454, 0xc2060fce, 0xd8a3c505, 0xb4fdcbca, 0x511d214a, 0xdae06fbf, 0xa5cdf8d5, 0x617b066a, 0x9944986d, 0x48c78584, 0x2e38b69, 0x5a708052, 0x8141f586, 0x38e995b5, 0x000143 }, { 0x347a0e8d, 0x4d9abd03, 0x8968a819, 0x4fa04948, 0x6bca80f3, 0x3fa47fcf, 0x4c0e2fde, 0x4bd24562, 0xfecd92da, 0xba4acc9e, 0x79120474, 0x1b06bafa, 0xd21916be, 0x381bf4f4, 0xce89f9e2, 0xe98b6350, 0x0000ef }, { 0x2f0171f4, 0x2f33a060, 0x6e7b502e, 0x9ed3fedd, 0x8fdf7887, 0x7d748c7d, 0xbffc684a, 0x72d6417a, 0x80e42f42, 0x3ea869cd, 0x57a276a9, 0x840ade1f, 0xdf33a97b, 0xdba32200, 0xeb8e33aa, 0xbefd3766, 0x0001d4 } }, { { 0x615a4d8d, 0x575b0a85, 0xd8e0e7bb, 0x5bcf83a3, 0x4d42849c, 0xa26ff0a8, 0x282f03d9, 0x9ed7a31e, 0x7672a2d9, 0xd70c474b, 0xacf66af8, 0xb37594e4, 0x13cb8608, 0xb5da5741, 0x4b677f30, 0xd63c4e9b, 0x0001a2 }, { 0x8f45d5a0, 0x970bae10, 0x593b9f3, 0x2cef9729, 0x360f3288, 0xa3b68d72, 0x59d81d2b, 0xd53519cf, 0x6361a7b1, 0x31a3c2b7, 0x762639b6, 0x2c681d5e, 0x3f5781f5, 0x48398a66, 0x642f13f7, 0xdbc830f1, 0x0001dd }, { 0x92f263e5, 0x4b143232, 0xa7cd745e, 0x7c9012fb, 0xb93928c6, 0x42745431, 0xac45f91b, 0x12dd1634, 0x40d42a6a, 0xe47c6172, 0x87b0cd35, 0xa231b638, 0x27a308b1, 0x171214cc, 0x78f7a27, 0xeaa21193, 0x000177 } } }, { { { 0xf62ffa1a, 0xcf134b5f, 0xeeb09275, 0xcaf634a4, 0x148683, 0x3668c31, 0x439d78e, 0x4e794f61, 0x3e4c7720, 0xe5e5d2e5, 0x960ee2bb, 0x38796056, 0xcbd7f02e, 0xfbb4dbca, 0x5771366e, 0xa487a764, 0x0000bc }, { 0x68a0c56e, 0x60f37d67, 0xe9f92ecf, 0x6c2beec4, 0x4d72a390, 0x66439cb2, 0x681ffc9d, 0xb2face3b, 0xbe4bb143, 0x9228e345, 0xcbeeb386, 0x78659193, 0xe6313e51, 0x8d30d0da, 0x9f25e04f, 0x98193019, 0x0000ad }, { 0xb00a5853, 0x6888bd0f, 0xe1d14c24, 0x551168fe, 0x9c87cb2c, 0xe7c5690e, 0x6cac61d6, 0x4913c2e0, 0x1c2e24e, 0xa318912a, 0xa91c0794, 0xab5dfd19, 0x47efc164, 0x20d9ca89, 0x266ca61f, 0x25766961, 0x0001b2 } }, { { 0x721a37de, 0x673f3e7a, 0x4ce37487, 0xcd7e641c, 0xf0206487, 0x7013b087, 0x4d057366, 0xd6d701e1, 0x9037530, 0xa23b11cb, 0xd65d1aab, 0xd91ec281, 0x43418e6e, 0xf464f352, 0x3b458440, 0x787df7a9, 0x000104 }, { 0x27f56e14, 0x69868e30, 0x75624fd3, 0xff78bd4f, 0x9e746917, 0x898f0868, 0xff732c6f, 0x48971123, 0xfb3ba5d7, 0xc8f0695a, 0x210daccf, 0x1ea58097, 0xbf362490, 0x165e04f7, 0x5e7e3a17, 0xb13383bc, 0x0000c8 }, { 0xa67a87f3, 0xa2dcd525, 0x54f4ecd3, 0xf549cc5, 0x9cb43d5a, 0x64d94df0, 0x460d258c, 0x9065ca01, 0xa040e67d, 0x8edbae34, 0xe1d500c1, 0x1b3d5cdb, 0xdd4829f8, 0x6a9d124a, 0xf5cd0d7, 0xb44317c1, 0x00016b } }, { { 0xff2f8e7d, 0xfc47422e, 0xc1e96329, 0xd5df6548, 0x3ee2d7b0, 0xfacf394f, 0x5898765d, 0xd6126686, 0xc7a0afce, 0x2f6ce811, 0x50c1992a, 0x76b09827, 0x7e8ed32d, 0x8ca16123, 0xe9fde4fe, 0x36643ced, 0x000177 }, { 0xa6dee18, 0xe0ab1439, 0x682c2e33, 0xdef1e74b, 0xf8d16cf4, 0x23d7d319, 0x9326f9a5, 0x6f6d45f0, 0x476ab004, 0x1ad7ad81, 0x6bcee648, 0x8d9a131b, 0xac23b0e3, 0xd50a6605, 0x3dd84712, 0x75f30e49, 0x0001b7 }, { 0x12c3d244, 0xd4b98771, 0x32554343, 0x1ab453ab, 0xbc4c7e1d, 0x91ba5d82, 0xb815c541, 0x7325a66f, 0x87426567, 0x5ecb15d2, 0xede69c5a, 0xd4d63928, 0x9d06c1ea, 0x9f58e189, 0xc07680d1, 0x8364efd3, 0x000148 } }, { { 0xc662ff9f, 0xbd479960, 0xe847986e, 0x87092a6b, 0xc70c1275, 0x2ea75ae9, 0xccc49233, 0x7bdf1d6f, 0x683a9fdb, 0x66f388ff, 0x3f9268f1, 0x7f467e7b, 0xfd0d8103, 0xb13e6047, 0xb74b9336, 0x968c0140, 0x0000b7 }, { 0x3df20205, 0x70e7b89c, 0xd1fa1bbd, 0x4f6d852d, 0x472901ab, 0x754fcb82, 0xbeaaf923, 0x1066c6cf, 0x85a02013, 0x116c79ad, 0x5bf564df, 0xd7bf3aaa, 0xc08dc0f1, 0xd8344aec, 0x769e9a84, 0x84bbb09e, 0x000073 }, { 0x725aee36, 0xea0c7adc, 0xdcc4d253, 0x5bf11081, 0xb91e7ad, 0xaef001be, 0xe527c167, 0x607b9993, 0x7a74953, 0x7eb6cbc5, 0x249a07eb, 0x362ef69, 0xe9f387fe, 0xfcc3032, 0xa4a8fce2, 0xd81c4adc, 0x0000e9 } }, { { 0xcbcfd657, 0xa0881dd5, 0x45cc3875, 0x4fae972d, 0x1ddbcf92, 0x90edabc9, 0xb976656, 0xc1441acc, 0xbc6b78fd, 0xf187b1fc, 0x72bd8723, 0x8525e3d0, 0xfebbbdc3, 0x2a87f6e8, 0x74fd0783, 0x3ed2c336, 0x000143 }, { 0x21b580d1, 0x7926f8bb, 0xf5cebab8, 0x67aaf796, 0x49c8ea47, 0xdb2903ea, 0x2845744b, 0x57b51b40, 0xe049ddc5, 0x20b958c4, 0xc220ad98, 0xbddb5d29, 0x87e643f9, 0x32546ecc, 0x2d77b7d4, 0x2708fa4e, 0x000097 }, { 0x84a5b539, 0xccd9cd94, 0x694dd713, 0x922201de, 0xdcdc6fe1, 0x9b4f1d2d, 0x7ff13b53, 0xa9597f8d, 0xe82015b5, 0xddb882c3, 0xbab06b14, 0x8ecfa4b, 0xa74b9441, 0xd98cf4ef, 0xcf801698, 0x4d90e45f, 0x0001a7 } }, { { 0x4b04ce, 0x429d364a, 0x3242e3a5, 0x1ec5c9fa, 0xe793f683, 0x5da966d0, 0xb30f16ab, 0xeb7f5a68, 0x736dfd2e, 0x20583fe0, 0xd5533e3f, 0x85816f18, 0x1271264e, 0xaa6593bf, 0xd35c0e6, 0xd657f8bd, 0x0000bd }, { 0x1ba1d9dd, 0x50a8078f, 0x7b568794, 0xcb325d, 0xf43688c, 0x476ceec2, 0x75ec59c, 0x4da10f7e, 0xd73c19b6, 0xc0332bf7, 0x80415363, 0xb3de649e, 0xf81d3f9e, 0x96e1e28d, 0x86366cd5, 0x2a91c1c8, 0x000091 }, { 0x87103447, 0x8fb07d6a, 0xdfd8cac8, 0xa879f073, 0x962d362e, 0x44e5702b, 0x12345ff9, 0x1572f9f8, 0x51371f6a, 0x18c03586, 0x82889b11, 0x8e920014, 0x60ffde0a, 0x77d921ed, 0x6a969b80, 0x4f813493, 0x0000ff } }, { { 0xc640959e, 0xdbb09c9d, 0x1f3429bb, 0xa9342a82, 0x89141a99, 0x5405b0a6, 0xbf0298f4, 0xac39697a, 0x3d62cf7c, 0x9b082a80, 0x3ecda7ff, 0xca541fa4, 0xfa75a99c, 0x28c5bf73, 0x3834bcb9, 0xf3079fd4, 0x00013a }, { 0x948ee1dd, 0xca1ea94b, 0x3607c9f8, 0xfadd3cd1, 0x3ef19086, 0x9f34f185, 0x61d9235, 0xc700a9ad, 0x36b644a3, 0x6532257d, 0x39e242ae, 0xadc6bbc6, 0x96774dab, 0x13ea2d4f, 0x682c1d05, 0xf39c68ba, 0x000120 }, { 0x36d56316, 0xcccfe5d6, 0xee4e567c, 0xcb4ce34, 0x371c1579, 0x5d6a1326, 0x49474dad, 0x4f458a82, 0xc5b906d0, 0xcd50be5f, 0x145067bc, 0xa21aa0d0, 0x146c474, 0xb089c252, 0x41f4c9c3, 0x4f1f3c1d, 0x000043 } }, { { 0x7ba85ee2, 0xc615d2f1, 0x364f3b76, 0x4e851015, 0x708a35a3, 0xb68a9fc, 0x87330f33, 0x54291800, 0x5bf02d3c, 0x5f61be31, 0xd85befe4, 0x56d30659, 0x28d1f3da, 0x427acf30, 0x1610bf38, 0xce7b8fe1, 0x0001b1 }, { 0x3afe3d97, 0x678cccce, 0x7a387257, 0x992ae018, 0x5399aad, 0x82ade7ec, 0x44131e38, 0x929134f4, 0xb4dc235b, 0xc63c2cec, 0x32848693, 0xbebb6c49, 0xfc6da23, 0x513292a, 0x89c51146, 0x54bf78d1, 0x0001d5 }, { 0x8738d07d, 0xb7e689f7, 0x3affb74c, 0x6476726d, 0xb1648a4, 0x10133d03, 0xfd96690e, 0x54482bf7, 0x98fa6a55, 0xe5bd569c, 0x71c68c7d, 0xb2ac82ec, 0xaee496e5, 0x5d2bdda, 0x63e098ac, 0xe9203702, 0x00001b } }, { { 0x348e59a, 0xc7e8de21, 0x654cbab1, 0x7864aec4, 0xd876b6b5, 0xc5a3b8ce, 0x7f97563f, 0x196ecccd, 0x919ecc78, 0x5fe5095f, 0x92f0146d, 0x9f02b95b, 0xd83565da, 0xbb6bb8cd, 0xbc6fe0ec, 0x1086dce3, 0x000170 }, { 0x80635f21, 0x18d231c8, 0xf3323b29, 0xfd1dc4be, 0xeb8ddfb4, 0xe382b673, 0xffb56322, 0x8dddbb67, 0x717a10e0, 0x2a999d90, 0x6f11eb18, 0x8971843d, 0x1d8d691, 0xa8f2bdb5, 0xaaf57e44, 0x7d7459ab, 0x00018d }, { 0xc141c3ab, 0xb42fdd36, 0x40657967, 0xa41c4abc, 0x558854a, 0x29159da8, 0x4a8910df, 0x3e3ed08d, 0x6bea0c15, 0x6fb5b19b, 0xb61cafff, 0xe1f8e05e, 0xe88478ac, 0x34f778a, 0x7d56375, 0x43479896, 0x0001bf } }, { { 0x935722f, 0x8dcdd303, 0x85037c15, 0x21bc1856, 0x7d341477, 0xcabcafe9, 0xd3b18e4a, 0x18b7bedd, 0x6c51f9b5, 0xfab0c6e0, 0x4ff0d70, 0x5ae27220, 0x6ac83c74, 0x84576d41, 0xa14a3e36, 0xdaec999a, 0x000172 }, { 0x8b08d985, 0x73d7180c, 0xabc0d9f5, 0xcecc0141, 0x6dd8e28a, 0xc50099da, 0x12d7b4d7, 0x1609daf1, 0x514adffe, 0xf58af5be, 0x86596e9, 0x2989f3ad, 0x78ed5584, 0xe550f37a, 0x305ecbe9, 0xf0fb393a, 0x0000cb }, { 0x10c422ba, 0xfdedf7bf, 0xb76f3b5a, 0x600eb732, 0x2cd6c5cb, 0xf4dd0a17, 0x429d73de, 0x32c7a3f, 0x91b2784f, 0xae742374, 0x987fc95a, 0x4ea19f14, 0xd87f5a9a, 0xdcf37af0, 0x925bd0b7, 0x45008fb9, 0x000024 } }, { { 0x4d54267, 0x7d07fbf0, 0x9126e210, 0xb80a2393, 0x296a37ec, 0x3988dc3a, 0xfcf644ad, 0x5ebb94db, 0xaf58c4b5, 0xcbaf184, 0xa49944e0, 0xcf515b1c, 0xe74b9bca, 0x8c071d49, 0x5e09235b, 0xea3593e8, 0x000157 }, { 0x4adae6db, 0xc058a2e1, 0x305e5afd, 0xc65c6bd3, 0xff46dc81, 0x4ee36b1f, 0xb9e1d752, 0x3db46f54, 0xd4a779e8, 0x2eeae29e, 0x4594658f, 0xfc6def4c, 0xcd3b2efc, 0x2fd35b80, 0x2718976e, 0x9b1459db, 0x000105 }, { 0x1856304e, 0x3318bac5, 0x11583bf2, 0x76373d4, 0x2d5e861e, 0x8cd38c7e, 0x237b2e42, 0x4ac25bbc, 0x6e8a5136, 0x7610fda4, 0x20fa784d, 0xadb31a19, 0x36a991c0, 0x7233e892, 0x87fa3cd8, 0x515d342b, 0x000189 } }, { { 0xfb2e17df, 0x4818895b, 0x698d1562, 0x77296b7f, 0x8c867e4b, 0x69d17242, 0xc3c4580c, 0xb63a5462, 0xdf586bc5, 0x6c32a277, 0xd179d12f, 0x380a33df, 0x82deecf3, 0x8dc424fd, 0x127e2791, 0x72deaf26, 0x0001d7 }, { 0x4f7911b2, 0xdb5cc5d9, 0x2c389460, 0x44cdd10, 0xb15d6766, 0x8140629e, 0x6b62e309, 0x20c8a693, 0xbb587cdb, 0xf038ceb8, 0xcabf9f1, 0x13664a34, 0x6f3cc052, 0x8d9ff9f1, 0xf297593c, 0xaf0718b3, 0x000005 }, { 0xec334418, 0xc6545edc, 0x32005a75, 0x22c747b5, 0x1fabaa4a, 0xf7d8f795, 0x9d068261, 0x722d7e64, 0x2ceb314f, 0x26554863, 0x8e787913, 0xb5bca72a, 0xdc85c6f3, 0x574818ea, 0x347d4a84, 0x14ab113c, 0x000179 } }, { { 0xbadaabc3, 0xb9b9f96f, 0x1cb8bad2, 0xc280964d, 0x486d4c26, 0xfea77dcb, 0x312fd189, 0x17c0efb0, 0xa35bfe87, 0xb53bdf22, 0x22d0699d, 0x3624f409, 0x1ef9bed1, 0xe47ef7e4, 0xca2752e1, 0xa26cca70, 0x0001de }, { 0xec0b5a68, 0x776cedf8, 0x9b77bab3, 0xf31c2f1c, 0xef0768de, 0xa9a5190e, 0xd13df0f9, 0xc09f3e88, 0xacb3e6cb, 0xc3938bb9, 0x97a541ad, 0x4b1a2524, 0x3e12117e, 0xcacbb7a4, 0x52a73e5b, 0x187c3c0f, 0x000175 }, { 0x4895a85e, 0x338d64b8, 0xa9faab79, 0xb1f9ec59, 0xca909d2, 0xf78508e9, 0x41fc60ee, 0x682d59b8, 0xea8e43bd, 0xea36dfc7, 0x20596875, 0xa0dc284, 0x5a900205, 0x742c9940, 0xbe69fc02, 0xbc822b01, 0x0000da } }, { { 0xbce57016, 0xa814fecf, 0xf8e1174e, 0xcf458e7e, 0x9dd88bc, 0x41a76356, 0xaac1cc29, 0xf8ed1e9, 0xab734843, 0x6336654a, 0x4914a788, 0x754cebfd, 0xa1f5e21f, 0x22c204cb, 0xf023f4c1, 0x441f0198, 0x00006a }, { 0x701ea73, 0x231ec5cb, 0x84f813b9, 0x454e31f4, 0xc9072032, 0x7db0135c, 0xfa6342c4, 0xc083d53f, 0xf83a22f0, 0x4b2cb3dd, 0x8746433f, 0x56a47356, 0xca314732, 0x196127e7, 0x95f76318, 0xdf7bd5fc, 0x000041 }, { 0x3900c39, 0x65d7b8f7, 0x2b425ead, 0x60f14451, 0xf5e6c28b, 0xb8a2643, 0x40440bf6, 0x9f945382, 0xead29ee, 0x71fa77cc, 0xbfb539b9, 0xb88cb8e3, 0xf10b5f2, 0x21c94833, 0xe326e4b0, 0xf9fec9bd, 0x000015 } }, { { 0xb66dc953, 0xd88b1f83, 0x6b1c92c0, 0xa1b5a637, 0x470c5107, 0x45db87ed, 0x5246aa01, 0xdd0bbff6, 0x91abab1a, 0x420e1da, 0x3fd1f860, 0x4c999e4, 0x35afdd59, 0xd348e1e5, 0xdf9839e9, 0x90f6edb3, 0x000027 }, { 0xd6702135, 0xe35e9048, 0x5f70f3b8, 0x5a8640c2, 0x3aaf61af, 0x126827f5, 0xddd7e8fb, 0xc8f954eb, 0x2a5fd3a5, 0xbbf22a97, 0xd5d19a61, 0xf24b2f45, 0x78b48e10, 0x741089ae, 0xaba19235, 0xcadfc785, 0x0000f6 }, { 0xf6edb808, 0xcfa12547, 0xc716651b, 0x1f698dd1, 0xef74ee75, 0x1a322637, 0xc07ff7aa, 0xda7b7e1, 0xe92c7af1, 0x5b259195, 0xfd54e156, 0x5d70235c, 0x4fa81bb8, 0x35a58a34, 0xc1f0527a, 0x4c2f3d90, 0x000089 } } }, { { { 0x39ea20a8, 0xe153b3c6, 0x6c95fae8, 0xa7e1806b, 0xa67dd793, 0x78599d6e, 0xe04266ca, 0x710bb690, 0xbbd1f1d6, 0xa1236ffb, 0x3f4b7cf2, 0xb0eccc2f, 0xc07f2e14, 0xee519b62, 0xe38d338a, 0xfb3060af, 0x000101 }, { 0xe0c21398, 0xee1a02b9, 0x1e4a721d, 0xc6b47b54, 0xee40b8f2, 0xfa4c73e9, 0xb90fe71b, 0xb2e93da2, 0x33c4ce6e, 0x153c8e7c, 0xf6cf7a43, 0xc4f8c096, 0xd599df2e, 0x1e092cde, 0x652e135d, 0xd81b3007, 0x00012f }, { 0x330ddf09, 0xbe123ef9, 0x90859d3, 0x6a65ca5b, 0xd2eb3187, 0xe0180fc0, 0xacd7475f, 0xd4364da1, 0xa6aad8a8, 0xd44e8749, 0x334ee5f2, 0x3dc8d174, 0xd375927, 0x60b1cdc3, 0x6f2d962a, 0x8d1824c7, 0x000088 } }, { { 0x83f0827c, 0x184444f0, 0xc7249a32, 0xa6dd47ef, 0xff872af6, 0xa6bcca7, 0xd922e241, 0x8343d541, 0x52dc0cd6, 0x4dc9e87c, 0x30a8527, 0xdf327857, 0xdee7b8a1, 0x55b8a03a, 0x7398ba68, 0x784a032b, 0x00008d }, { 0xc13c5a37, 0x6334ea09, 0xb36be858, 0xd2d03126, 0xb72ed763, 0xe16478c6, 0x4b100e15, 0x20806ae, 0xcd0aca0, 0xfd7000dd, 0xf469a622, 0x907cd00, 0x5c95f32a, 0x7be7dbfa, 0xfc03f0f2, 0x13353048, 0x0001bc }, { 0xf0a8b56a, 0xcf0e2539, 0x1fb95017, 0x397018c8, 0xcd8430e7, 0x6dff1c85, 0x28d8fd48, 0x68a6f7f0, 0x88b8ef84, 0xbe2e793, 0x34c67d6e, 0x73183a65, 0x2da0a040, 0x398f771, 0xea915979, 0x21742a06, 0x0001f9 } }, { { 0x2ca1dd14, 0x65b36fb2, 0xeb3cb573, 0x25daa11, 0x52977818, 0xa333a748, 0x381c8e50, 0xef1fb5ae, 0xb0cf2981, 0xc39bf817, 0x47f30f54, 0x435e644e, 0x3da8e0b9, 0x18408c04, 0x39c0633, 0x955e207d, 0x000071 }, { 0x5a67f770, 0x711b394, 0x5f57493e, 0x95c64e3, 0x1b3d7065, 0x5a273a88, 0x960f57ac, 0xf2d11c81, 0xe4c0ccf1, 0xefcb7f69, 0x34151122, 0x8b97ae6d, 0x28b53e11, 0x5ae53e83, 0xf18b6275, 0xb7f6f270, 0x000029 }, { 0xe3c9125c, 0x8580ace8, 0xf7790f40, 0x4c3d0307, 0x40ea6e14, 0x13ab88ec, 0xffa5cf86, 0x86ff29bc, 0x677a0afa, 0xf654266e, 0x8af36a8f, 0xab70a410, 0xf7a8532d, 0xc871d5a, 0xde31cf45, 0xe964e48f, 0x000173 } }, { { 0xc59ca6b4, 0x4ed65aa2, 0x9d987be, 0x933ca7f4, 0x2527927d, 0xe0e1d220, 0xfcb96b2, 0x60c56fb7, 0xb1ba68ef, 0xc1dcf8e0, 0x3c6aebe6, 0xf5020255, 0xadec33f1, 0x87d3f511, 0xc4456572, 0xf5a06b02, 0x00015a }, { 0x35b82e18, 0x6c2217d2, 0x4aba4ea0, 0xa615a4f, 0x81ff391d, 0x5f21d2af, 0x95281a04, 0x7fa1ad7c, 0xfd63e524, 0xb71c1a07, 0x7646effa, 0xcd83e7c3, 0x49e507f3, 0x643f24f5, 0x18431fd5, 0x292939af, 0x000165 }, { 0x817c94b6, 0xdb12e0c5, 0xe6f8c2d8, 0x690218f4, 0xe20deffb, 0xa4e9de45, 0x9d22707f, 0xad5b9f3e, 0x65b7c23c, 0xb4a0d0a1, 0xecfb6500, 0x2c7d5662, 0x96a6059d, 0x66fff957, 0xc9ec31f5, 0x8a614ce9, 0x000185 } }, { { 0xb7f5f08e, 0xbfa8946d, 0x76f422e0, 0x5886c08e, 0x7e730de4, 0xae02ac56, 0xb39c42a4, 0xec0779ae, 0x3587a519, 0x42122e86, 0x2300432d, 0x66ec409a, 0xbfe1aaf2, 0xdbce66d4, 0x64ab809a, 0x9cdfc089, 0x00007e }, { 0x56457915, 0xf48529ff, 0x173ee82e, 0x85a381eb, 0xdc147f5b, 0x9482db5d, 0xbc8cca56, 0xbebbd10a, 0xfd40f5f5, 0xc8cd349e, 0x30939104, 0x558b38cd, 0xa687fc56, 0x2cdbef63, 0x4e32cbc3, 0x811e2aaa, 0x0001cd }, { 0xc59cdb1f, 0x3eb7c739, 0xd54e91e5, 0x4b2ea8f7, 0x171f7def, 0x16f635a8, 0x8abdb8cb, 0xa710e2f6, 0x34a35807, 0xd5ed6265, 0xd8ea7fe6, 0x1ceee27, 0x3515d2f1, 0x793f7971, 0x628b43a2, 0xf7ceeb04, 0x0001ef } }, { { 0xb6db2949, 0x6eca5881, 0x25b6ffa7, 0x45ac092e, 0xdc0402ba, 0xb9f25654, 0x54278ef2, 0x18eacaff, 0xd5fc74c6, 0x61bfa9c4, 0x74573893, 0x187857fd, 0x390cad64, 0x39d7e9ed, 0xce34eb30, 0x2ddc9ab6, 0x0000e2 }, { 0x78b5914a, 0x669cb8cf, 0xdf0ec211, 0xa5d89eaa, 0x5ff87d6e, 0x7d94ece4, 0xf7d95b5a, 0x4e44e4a9, 0x76aa0a0e, 0x2aacf873, 0x5cd7ee21, 0xfe39ce21, 0xa9a351f4, 0xaff864da, 0xb82cbd39, 0xb7e6ee72, 0x0000aa }, { 0x2ddf3450, 0xbef9bb20, 0x3a06d2c2, 0xb99901d2, 0x65c88bf0, 0xc298e716, 0x9dc1d0ed, 0x5de8d35e, 0x6e2ab8f7, 0x59971cac, 0x7e3ac52e, 0x8849d85c, 0x10016662, 0xe452423f, 0x53ed60f1, 0x5761fcfb, 0x000054 } }, { { 0xe9d5a3b0, 0x296a949f, 0x57663d0f, 0xbc560676, 0x7df08c7d, 0x57d1b3e5, 0x5f78701d, 0x63e59665, 0x8886ffa4, 0xfec3db4f, 0xd7c7458e, 0x54d99354, 0x29b7e661, 0xe658e3d4, 0x95db440a, 0xd25d82a, 0x00018c }, { 0xcf63ece2, 0xb2347010, 0x2b9c59b0, 0xe19568e, 0xbb2f0223, 0x43a2cc47, 0x4a7ea9aa, 0xdca468f5, 0xa7e99f0a, 0x735c0ca7, 0xc0b196f2, 0x320e4be3, 0x9710b096, 0x7fedaf3a, 0xdd1bac11, 0x30171153, 0x000160 }, { 0x3777ce16, 0x128130e8, 0x25089395, 0x5f1ceea1, 0x5c89f8db, 0xaf607032, 0xa1f50462, 0x4684e66c, 0x23100df3, 0xd2fc5586, 0xf30a23f6, 0x21c224aa, 0x96b708f5, 0x12eb3e93, 0xad7b7874, 0x4b330940, 0x000050 } }, { { 0x5ec28118, 0x25fcf948, 0x9c78d7be, 0xaae9f60d, 0xe6a37b2c, 0x58ccf05e, 0xb3a61ee, 0xf5b12235, 0xb4c81327, 0x9aa2540f, 0x768aef22, 0x3a5eeac3, 0x72a91db0, 0xc23e8c2a, 0x1051f3d2, 0x83d5af49, 0x000040 }, { 0x24b90f02, 0x42d9fec3, 0x4782e588, 0x72d6466, 0x5435e8a9, 0x81e44d40, 0xcb62e2e, 0xbafa290d, 0x780e7a8, 0x4a9c0d64, 0x3e547b69, 0x34e668fd, 0xe57154f2, 0xe91a0c6a, 0xbe493bd7, 0x6055365e, 0x000086 }, { 0xa6347908, 0xd637379, 0xcde85b27, 0x1e712563, 0x4d138c46, 0x1afd20d3, 0xea8f8bd, 0x17efad69, 0x97477846, 0x7eae5cef, 0xae71f559, 0xee16a548, 0x880f9fb2, 0x8f99363d, 0x3c045def, 0x7b8937eb, 0x0000e8 } }, { { 0x20a913ac, 0x163c891a, 0xb5d0b4d7, 0x58714331, 0xc4c55279, 0xf0a8ebc1, 0xd96b7b54, 0x986c1ee9, 0xca95f3f1, 0x173b6cec, 0x97e95a19, 0xa643fee5, 0xccc195e7, 0xebb666a5, 0x12a1903c, 0x11feea7f, 0x0001c8 }, { 0x8a73f32d, 0x8583dd62, 0xf8247291, 0xccead26, 0x5541cf9b, 0x4d380cca, 0xfead6c16, 0xaf0f9684, 0xe6a09880, 0xe321f801, 0xecc89296, 0x141caad8, 0x44cb8d7f, 0x822520f9, 0xf0e99925, 0xb772391e, 0x00012e }, { 0x1b5ecbd5, 0x585e579, 0xa3e92f7a, 0xe28494b2, 0x3a4a70be, 0x230e9a6f, 0x8ce1518c, 0xd6aef9ef, 0xa5335519, 0x1881af1c, 0x37166713, 0xec8d851, 0xa6eb9805, 0xeb465b8, 0x660e3a01, 0x3a78414c, 0x00007a } }, { { 0x75431d4, 0x45ec8ea0, 0xb1f3f43e, 0xb1497616, 0x26ee8246, 0xf0410915, 0xec382834, 0xedc3b03e, 0x1692efaf, 0x6346e7c, 0x9c80d695, 0x5590e1af, 0x45c716ab, 0x311ba6c2, 0xb0e8d870, 0x3419fa9b, 0x0000c3 }, { 0xc0f67def, 0x6c92f532, 0xeb0ac4ed, 0x54baee64, 0xc0b1e13, 0x50b49a97, 0xd4b54a4, 0xe803ca52, 0x96ef36b8, 0xc92f6b98, 0xb7f23496, 0x7c9b04a0, 0xcf57463d, 0x48700eac, 0xf83f7434, 0xe8221e65, 0x000060 }, { 0xc1817d30, 0x719579fb, 0x4f9ed02b, 0xabbeb93d, 0x682e5b79, 0x7f16541a, 0x8d013f54, 0xad754345, 0xd48c8ce, 0xbb2a6ed3, 0x55d1331c, 0xdd06f1b7, 0x70f448aa, 0x4cfbd3a0, 0xbc94872, 0x451201, 0x000084 } }, { { 0xe111cee5, 0xd2f1837f, 0xb45c751d, 0x499879bf, 0x702631c, 0xd8179a0f, 0xa08534e4, 0xcb6fd549, 0x3f5b4bc4, 0xeb50039e, 0xccc32b84, 0x5fa3c2a8, 0x93136e0a, 0x365ca53e, 0x8399bc5c, 0xe1261c2d, 0x0001ab }, { 0xc76d858b, 0xe87b6a01, 0x16af4039, 0x7c15de9b, 0xd8973861, 0x821cfc72, 0xdc438b8f, 0x56e4f429, 0x5684ad9e, 0xbbcaa908, 0x4894350c, 0x87253464, 0x758a7d41, 0x5bf76c5c, 0x64ebe281, 0x2918de0d, 0x000039 }, { 0x16236d86, 0x8e196801, 0x2bad1b41, 0xe73c8b15, 0x9980c5f9, 0xcb575e00, 0x8ad61b68, 0xc8f856fa, 0x30830ad, 0x3a3566e6, 0x4ae0d978, 0x815ea9c5, 0x2f502571, 0x2d2b80dd, 0x70e10b89, 0x64fb3ef3, 0x00010a } }, { { 0x31de9ee3, 0x1c3f7d13, 0x415c3ce2, 0x688a0083, 0x6b42e669, 0x620a4da0, 0xa08fbc8c, 0xc1ac5e88, 0x85c6906f, 0x7d77e269, 0x9bdcc7bc, 0x5a929c0e, 0xe0f3a96e, 0x77800c81, 0x85874902, 0x675a9e1a, 0x00018d }, { 0xe53a15e5, 0xbd0069ec, 0xfc384262, 0x52ccce0a, 0x851e0360, 0xe8263012, 0x97496e88, 0x57bd1e2d, 0xb7c60080, 0xc6f0fbd2, 0x2d2987d7, 0xcf6ff687, 0x41941c7, 0x84de1e17, 0xc663b384, 0xfc0a6e10, 0x0000f9 }, { 0x72f9b7d2, 0x83b25874, 0x5a4736be, 0x91944411, 0x2766de52, 0x360167ed, 0xb8b05390, 0xc6a1f02c, 0x7edbba66, 0xf5fc8bcc, 0x9d4e0b09, 0x7f37b0df, 0xa5d8dc4f, 0xa02297d1, 0xaf6f2833, 0xc04274ee, 0x0001b6 } }, { { 0x5988c663, 0x5e7a556b, 0x9baacf7f, 0x4c477fbd, 0x1d7e654f, 0x562ed6d5, 0x214a8786, 0x7e9bf7d6, 0x2dae913b, 0x47fd1ef3, 0x22ef329f, 0xdc577919, 0xf0713a41, 0xf1d8257a, 0x1dbf7730, 0x14f3c840, 0x000194 }, { 0x94a239f4, 0x9c0d4a07, 0xe585f705, 0x9da5eefe, 0xace33726, 0x8adeaf02, 0xeb6ff53c, 0xedc40c7c, 0xccd6bad7, 0x37a14221, 0x74bf9e06, 0xaf7555e6, 0xd75a7cd6, 0x877f4b84, 0x898b13ee, 0xaf2a0bce, 0x000187 }, { 0x9aaa686c, 0xe6423e38, 0xe1fc1711, 0x40d4cdc9, 0xbca6abd3, 0xbcf6fa56, 0xcdee947c, 0xf55e52df, 0xbe3eb531, 0x700af00, 0x14a6cee1, 0x67da58ac, 0x764940df, 0x53fd87b0, 0x93623fb, 0x3b904e6a, 0x000019 } }, { { 0xa1ec8ca2, 0xa03e1c32, 0xa42aac76, 0xa966d596, 0x816d7f6b, 0xdb6f9891, 0x9e71fd9d, 0xdcfb2a3, 0xdaac095e, 0xfeb20132, 0xd9cbfb95, 0x8069918f, 0x3052397e, 0x182f0263, 0x3d603602, 0xd6a13ede, 0x00006c }, { 0x6399b3f1, 0xd5b97ff2, 0xbe3dad56, 0x8de43846, 0xcffeb4dc, 0xdc2ed006, 0x94fea060, 0x845dd442, 0x9b6427f6, 0xbe1f52e5, 0x6e5ae8b3, 0xdae79ce7, 0xdd276dbc, 0x2d008801, 0x604e4f72, 0x4405aa69, 0x00004d }, { 0x93cd7d15, 0x10768fc3, 0xf43a84b6, 0xfc2fae60, 0xa1030529, 0x44a44744, 0xb89da5eb, 0xf65cef7f, 0x77044eb2, 0xf391f3de, 0x527bab12, 0x3be65c10, 0x15c3574a, 0xf40bee1e, 0xe78d0f89, 0xda11611, 0x000152 } }, { { 0x82b95d92, 0x1af047a7, 0x3afd4ad9, 0xfcb7b941, 0xb993737c, 0x7f4d3368, 0xd0bb0205, 0x72ea17c5, 0x4b657f7, 0x30228b8f, 0x34b10687, 0xa1e1559e, 0xe21f1d4b, 0x302fdae9, 0xcbf32068, 0x8327209f, 0x0000c2 }, { 0xd08adec1, 0x34bd46e1, 0x9a8f274e, 0x42825e13, 0x1cd23fba, 0xa623000f, 0xd1b5880f, 0x48dc0856, 0x32232c7f, 0xf3a3ce09, 0x99029bd7, 0x4097ad4c, 0xc58747df, 0x186cc0a4, 0xa767b596, 0xd5c75feb, 0x00005a }, { 0x8f932205, 0x1575d716, 0x1d556e88, 0xe4dad2ac, 0x8cce3afd, 0x133e2341, 0xcc13a681, 0xb66298bc, 0xf0d9f977, 0x9f9a1b00, 0x70e7f22a, 0x7c758d13, 0x8329603a, 0x37e05ae3, 0x196d33e6, 0x9506031, 0x0001ef } } }, { { { 0x1b77a1f1, 0x1969c700, 0x17c98ee0, 0xd05c105c, 0xffae66a6, 0x5436be5, 0x71f2974b, 0x48fdf196, 0xded0021d, 0xf333f8b8, 0x8a39cf15, 0xbbab4faa, 0xf96d6d98, 0x3349f13f, 0xc5a41f77, 0x5e52a370, 0x00002c }, { 0x62533d11, 0x3bbac8cd, 0xcb610d7a, 0xd935dd8a, 0x59bbe625, 0x241b9e9f, 0xfcefc8c7, 0xada4ab01, 0x4c1ae5ac, 0x9bccd08d, 0xf4f0d6a4, 0xdbd76891, 0x23c2323c, 0xe1da7637, 0x4cea2530, 0x780f78dc, 0x0000e7 }, { 0x7c95b52c, 0x2d5126e6, 0xb7287f3d, 0xc99933e4, 0x6de0507c, 0xd2cff9a3, 0xd623b9a8, 0x1873ae5a, 0x65152249, 0xd75222fc, 0xea869830, 0xa80d03d7, 0xc35c9bb3, 0x9ca3d563, 0x8c62ffb0, 0xabb1382c, 0x000096 } }, { { 0xe899e3bc, 0x91f38b94, 0x94e1c205, 0xfe51be71, 0x3dc82567, 0x928777e7, 0x2e552922, 0xb2926594, 0xa3730aec, 0x1040f1e8, 0x680e090, 0xa6761179, 0x51343f0e, 0xcd5f378, 0x5cc78811, 0xe97fcd57, 0x0001e7 }, { 0x4fc4fe91, 0x414fe4ac, 0x7ea5a5e8, 0xfd88b24f, 0x6e228496, 0x6b711ab4, 0xfece7fb9, 0xc6ba8052, 0x3395d338, 0x70fd6a8f, 0x853a836b, 0x2a8f4fd9, 0x7349a724, 0xaff22dbe, 0x75d5b547, 0xe12ea92, 0x00003b }, { 0x651de66c, 0x88ea693a, 0xb84064ff, 0x4f140f15, 0xb4bba375, 0xddb90bc4, 0xe8ef9c29, 0x7767425c, 0xbe125274, 0x97ac7710, 0x98419522, 0x1f14959b, 0x769b21fb, 0xbae35bd8, 0x2d1a3b17, 0x36ae3af7, 0x000099 } }, { { 0xdd267641, 0xec8a4630, 0xa7f20124, 0xe69ecb2c, 0x4ba45fa7, 0x3b4f99c0, 0xae54ad46, 0x40fce827, 0x56df141e, 0x9cf9192d, 0x6a5aa6c7, 0x59b9cea8, 0x50c8feb2, 0x68cc1a66, 0xb2164e5c, 0x4ce5391f, 0x00019a }, { 0xc7979832, 0xfa016c3a, 0xdc2439ad, 0xaf3569ed, 0x353c47ef, 0x8913b928, 0x82333c2b, 0x9a2bb9c5, 0x29832fb4, 0x9797be34, 0x125de2df, 0xa7e716d2, 0x7d21ce1e, 0x67b764ab, 0xb00ee6d4, 0xb7406a23, 0x0001e4 }, { 0xf62eae35, 0x59c0f15d, 0xb9d8eb21, 0xcd41734c, 0xbefbaae3, 0x12e19d90, 0x97cc651c, 0xf048dbb2, 0xc1130410, 0xbb89c8d4, 0x812145c2, 0x81ed6113, 0x5c3b6921, 0xb7a5f65a, 0x8a638430, 0x54d83c51, 0x000083 } }, { { 0x7822ab4c, 0x24da8f18, 0x47cdf666, 0x99180078, 0x8260f447, 0xcbaabafd, 0x89f7e2a, 0x5d6059f5, 0xef651eaf, 0xaaf4ac68, 0xc6925ab7, 0x2187b893, 0xa40fe77a, 0x73edc98c, 0x5c9a3a46, 0x43635d80, 0x0000fc }, { 0x93799505, 0x4d2d3c01, 0xfd612265, 0x8cafb741, 0x29bdb1c4, 0xb2d3f7b3, 0x39d45b05, 0x38b06940, 0x668828ee, 0xc7c47068, 0x5d0e9de6, 0x353784e3, 0x7006a192, 0xd909b77e, 0xa481e6f3, 0x45999338, 0x000058 }, { 0xe03eb290, 0xc0b34bea, 0x7235db84, 0xf026e9fc, 0x65495dc5, 0xfd2c5e28, 0x2d767fdd, 0xec26a8ac, 0x5a9e6d99, 0xf5c71696, 0x2b88585b, 0xc9e72060, 0x2379750e, 0xa0a63982, 0xbefc9904, 0xf2237509, 0x00005f } }, { { 0x139326f5, 0xe8d47208, 0x4e1ef35c, 0x43dc4d87, 0x80fbc431, 0x70afbf2d, 0x9674bf9e, 0xff0a982d, 0xd0278852, 0xe21d7936, 0xa0f6edf5, 0x819c8141, 0x8ba8d744, 0xe10129f4, 0x556adc1f, 0x5ea5c208, 0x000127 }, { 0x876701ea, 0xd6121a06, 0x144f32c3, 0x12c338, 0x566e4707, 0xe6e72ef9, 0xc4dd53b7, 0xcee8b847, 0x9d5b6439, 0xbeee5974, 0x97533187, 0xdc93d2a2, 0xcc793bc0, 0xfdd95cf4, 0xe7187f2d, 0xa34d2d37, 0x0000cf }, { 0x95480d2f, 0x3289fe3e, 0xfc3f70a2, 0x1f306165, 0x6bead098, 0xac38d422, 0xf5ee5da0, 0x754bf0e9, 0x5e4d325c, 0xe1fb82ee, 0x2964646c, 0x521f7806, 0x99a63494, 0x7e363edc, 0xf1256145, 0x51ebaa69, 0x0000d6 } }, { { 0xabd75648, 0xbf718858, 0x56431ec2, 0x8f94b85c, 0xb92e6ee7, 0xd09d4bba, 0xdd1c0455, 0x945c93b7, 0xa87ad9dc, 0x117e150e, 0x457fdc5b, 0x3d755dcc, 0xc0f7e2d8, 0x33e81e73, 0xa1447fcd, 0xa4b07306, 0x000180 }, { 0x8d7a05ed, 0x14e99c84, 0x1422ed56, 0xb2f81cbb, 0xefaae742, 0x71f0e6eb, 0xe31d5b0a, 0x6eb4685, 0x119bae73, 0x9b18f6c4, 0xe34608fe, 0x812ba525, 0x84e2280b, 0x1c73251, 0xe511f8ff, 0xe579979, 0x00001b }, { 0x15d84da8, 0xfed95e46, 0xdbad0b25, 0xaeaba9ee, 0xf6e4c351, 0xda14f6ff, 0x91388b70, 0xdbda3f7b, 0x2bcd739, 0xb7ba325e, 0x49a7e77c, 0xffcc1ac8, 0x7fdb54ab, 0x87db993f, 0x486d55f3, 0x2f7feb8b, 0x0000dd } }, { { 0xf9954c6e, 0x6d1ea173, 0x8e2cf969, 0x343b2ea8, 0x31d98e9d, 0x507fe882, 0x251ef231, 0xc02accb2, 0xbab0054c, 0xaae42c16, 0x7a1edbb1, 0x6a37248b, 0xd4f1c0ec, 0xed74f19a, 0x6f567d41, 0x8f7b2ac, 0x0001d7 }, { 0xb69ead3d, 0xd9e1f31f, 0xabe6b87b, 0x1564dd24, 0xceaa6cf8, 0x2fc2db9e, 0x89823481, 0xa449998f, 0xc757788f, 0x49425d51, 0xfe231c36, 0xa798b34e, 0x7853daf0, 0x78676f3a, 0xc41b03aa, 0x7f420c6, 0x000168 }, { 0xcb8d0b5f, 0x346f9f2, 0x786e0381, 0x14237514, 0x8a3c7136, 0x9141f051, 0x9238af00, 0xfa0237ee, 0xb7225cf7, 0x139cc8b, 0xf301fa00, 0xceabc9fc, 0x645cad45, 0x9d28ead3, 0xe15437da, 0xe620127d, 0x000163 } }, { { 0xdbc20ad2, 0xc0b5dad0, 0xba839e0f, 0x1cf09217, 0x60677a61, 0xbd7a250b, 0x763d49b2, 0xbd92f00e, 0xebdf4b4a, 0x943320ce, 0x24694bfd, 0xfff86316, 0x4d7bab88, 0xa0e45a66, 0x9d5a1063, 0x5b12d304, 0x000193 }, { 0xb06c759f, 0x73d44113, 0x8fc8f405, 0x8e317c81, 0x199d4059, 0x74b5825a, 0x4cc55ce7, 0x7618bf09, 0xb2c0ebd4, 0xd7422539, 0xdcae5bbd, 0x2db47e31, 0xf1ce788f, 0xd301c462, 0x4a6c1217, 0x25091276, 0x000072 }, { 0x4574b961, 0x34e4c75d, 0xdb13b74a, 0xcbf2f481, 0x4ed46c5b, 0x5625d55a, 0x52f5adfb, 0xb5e1a118, 0x365307cb, 0x5c47d01d, 0xc45873e6, 0x2589db2, 0x6150a1d7, 0x232b3f12, 0x5aab24fd, 0xc332e0f8, 0x0001bd } }, { { 0xf8c196b9, 0x28ecac2b, 0xd180cf17, 0xd7bfbd8a, 0x959f3c5f, 0x7006ff96, 0xef3e3e1e, 0x2a62cb81, 0x4b4f9a3c, 0xc69f7cd, 0x4263ef33, 0xe56d7f9e, 0x5040e233, 0x2627b1a0, 0x779c9981, 0xa48c5c94, 0x000151 }, { 0x24a52dde, 0x56955aa9, 0x5e3c8588, 0xbb53b08a, 0x9865360e, 0xdc78cb57, 0x577d8311, 0x79adbff8, 0xc8408f84, 0x59a87825, 0xd9ad82e, 0xbb058650, 0xb6b8a19b, 0xe27f63c, 0xc3d03b8e, 0xd99320f4, 0x0001f9 }, { 0x839c7b7f, 0x9538652b, 0x9690736b, 0x764d452a, 0xfd80c353, 0x60f591fe, 0x15577230, 0x47f16bcd, 0xef263acf, 0xbfedd13f, 0x5477fbc9, 0xea99cfda, 0xc2f400c8, 0x63beb122, 0xce48d99c, 0x47bd0634, 0x000006 } }, { { 0x2ca176a1, 0x759555b2, 0x767e050e, 0x97cef168, 0xaf0fd5bb, 0x4454d697, 0xa9545284, 0xb6b81a5a, 0x66ed7dc5, 0x8cb120f3, 0x19cc8792, 0xafd1d1e5, 0x760cea08, 0x73a4965, 0x6af89e5f, 0x18eba084, 0x00016d }, { 0x37554218, 0x8419877e, 0x2cc95cff, 0x2b32c139, 0x770f9fee, 0x62315a07, 0xab7db334, 0x72809d69, 0xd1c71e8c, 0x7ac075da, 0x9e0bd37e, 0x11e024f6, 0xd3e40fca, 0xc511b263, 0xab47e630, 0xb5a69781, 0x0000b8 }, { 0xd8d00a50, 0x795fba04, 0x1eca9428, 0xcde33812, 0xef67cde4, 0xe36825f3, 0x4e200a3c, 0x694e456c, 0x2f36f4c0, 0xb4d3239b, 0x919d9f13, 0xcb6006be, 0x5a25a076, 0x503e5b91, 0x247a252f, 0xbe7f5aa6, 0x000101 } }, { { 0x86387c70, 0xf82324af, 0xb6c0cd60, 0x3b140eed, 0xe7785c6d, 0xc90a50d7, 0xff2289ed, 0xa025f2e8, 0x381b5dd3, 0xaea49e3b, 0xc470ba3c, 0x8bf7485e, 0x74604515, 0x5b98ae9c, 0x96b56d1d, 0x1cb8a8a4, 0x000181 }, { 0xbe7e96fc, 0x8fac81b4, 0xc126cbb0, 0x78f9560b, 0xb96bd955, 0xda95ec8, 0x18164bab, 0x42cebc80, 0x56100ca4, 0x855cf687, 0xe416496b, 0x79410586, 0xd5d2a3d, 0x621205c3, 0xf4522362, 0x52c1a9d2, 0x000081 }, { 0xe7b80d84, 0xb25e19c9, 0x899d3b14, 0x68865daa, 0xbb01d397, 0x21bb1ec0, 0x15047334, 0x4704a7bd, 0x47dda463, 0x875f5ce1, 0xfcefb945, 0xdb36ce8a, 0x5b0e086b, 0x73fe3bd1, 0xabd50917, 0x4daaa51, 0x00003a } }, { { 0x7e7ef454, 0xf1092417, 0x787d5993, 0x412a9219, 0x41deff0b, 0x5fdb2d7f, 0x26700ac9, 0xc17288f9, 0xe6a4a342, 0xc12769a3, 0xff684b17, 0x5310e693, 0xe1308ca6, 0xfd077506, 0x6048f4a4, 0x8a2b92e3, 0x000197 }, { 0xb82b16ba, 0x2f84c36c, 0xeec81020, 0x36b111a0, 0x312e2e47, 0x38065b30, 0x3cdee2b0, 0xc1328618, 0x87da1e1, 0xa7e4b780, 0xd6bc6ecb, 0x102dbbdf, 0x2a6879cb, 0xe40495d, 0xb963acc5, 0x17e349a4, 0x00016f }, { 0x6fc7b78, 0xe33ef534, 0x85f4c561, 0xadec5c43, 0x62a578d5, 0xacf0efca, 0xd25d84d0, 0xf7ff2f2, 0xeb1883b5, 0x5f00db36, 0x4729cbd6, 0x11e15c58, 0x6dc76a41, 0x85da1fa, 0xf07c18b6, 0xc24036a7, 0x000055 } }, { { 0xddeda536, 0x1cc2fd3c, 0xfd28b99f, 0x72e914b6, 0x19e6c0d5, 0x61b3d207, 0xc3de8d9d, 0xf67a6d6e, 0x82ad7b66, 0xcea82f8d, 0x731abbe0, 0x8e412855, 0x329b600c, 0x9edb5d5d, 0x539c82a0, 0xcf90aa7b, 0x0000b0 }, { 0x34bed74d, 0x3c4fb159, 0xed073c7f, 0xe12bde20, 0x7936a316, 0xa188f176, 0x9294454c, 0xd5c95e93, 0x4d55268d, 0xe4e83f0a, 0xbdb6a493, 0xabf4eb70, 0x23a76dd5, 0xff7f1893, 0xa82659b3, 0x87f4454e, 0x00002e }, { 0x26744b07, 0xadda7b30, 0x75a0f5a3, 0xb4af1edc, 0xca2dfefd, 0xd4303b32, 0xbe854514, 0xef737f27, 0x811bcb32, 0x55787149, 0x304718db, 0x36cda23a, 0x721ac3ef, 0x1505b655, 0xe4986cb1, 0x505a36a6, 0x000142 } }, { { 0x648d3433, 0x98c1e0e5, 0x294e578f, 0x517e415d, 0x9ad0a237, 0xe78b535a, 0x556c18f5, 0x5f91d081, 0xa0d12d23, 0xb3b9bcc3, 0x266b0d8, 0x47118316, 0x4c60a282, 0xb051e375, 0xe635b2d5, 0xfc54d998, 0x0000e0 }, { 0xbc56e46c, 0x767b2e1d, 0x4c2d9d5a, 0xf00f53d8, 0x8cc1574e, 0x8eb3965c, 0x63d90c80, 0x22d191b1, 0x57b6dab6, 0xcfe67593, 0x3e51f392, 0x8152c93e, 0x858e7288, 0x9afaf23e, 0x28a22d76, 0x58f4ffb4, 0x000167 }, { 0xe1bb9861, 0xd22859bc, 0x4307a383, 0xf82db0d5, 0x1771f7f6, 0xb6bdda37, 0x5b1a51dd, 0x8239805, 0x431477cd, 0x3b45384b, 0x38f40daf, 0xe5e3f4c9, 0xbc858a80, 0x92305b0d, 0xb6c0c5ad, 0x539e72d, 0x00014e } }, { { 0x3bd93540, 0xc00ce0da, 0x7460fa51, 0xa7e0ba75, 0x709a5463, 0x6984e7eb, 0x4e2a0cea, 0xec40990, 0x3b8a5fe7, 0xda1b1b99, 0x82013159, 0x6951dfd, 0x742715ea, 0x46b48774, 0xe113e13, 0xd829a618, 0x0000ae }, { 0xde212e6e, 0xc383557f, 0xf3889fa6, 0x3daea8c0, 0x74babd88, 0xf5f8c361, 0xe17bddc4, 0x3297e810, 0x27f91858, 0xafeb41d0, 0x19ab51d0, 0x8d9daed6, 0xd2e1c8ac, 0xa8ced89d, 0xe7471f64, 0x7cdecd48, 0x0000f0 }, { 0x32a9078e, 0xb5d307f4, 0x5c67f886, 0x994ec2ff, 0xa29806ce, 0xe6d411a, 0xf05c1308, 0x412ee775, 0xf8ccdf15, 0x8c7ea966, 0x98135676, 0xe2f87900, 0x2cdec6e8, 0xc9f115c2, 0x58dfcb2, 0x98298bd2, 0x000055 } } }, { { { 0x2d69e0d, 0x6c0c8ff3, 0xd14b3e3e, 0xd8267139, 0x85151b91, 0x6c8f9a18, 0x89b9c159, 0xcf3efa5, 0xbb6324c8, 0x12c79abb, 0xd1398b22, 0xfade52d8, 0x8e162eab, 0xca4aa96a, 0x497811ec, 0x546a0978, 0x0001c2 }, { 0x4ff777a9, 0x325103f2, 0x2b7e582c, 0x4f738019, 0xb9569145, 0x88f8aeed, 0xd9917ee, 0xe80acae0, 0xf448b36, 0x843edcff, 0xf0860680, 0xa4108b58, 0xc9c1d276, 0xfaff66f7, 0x7a849cd2, 0x64c31f89, 0x000035 }, { 0xd30dffe8, 0xe01dd5b2, 0x340f965d, 0x2b7d3362, 0x738f372b, 0xdeac6ff5, 0x14ce8104, 0xec6256a7, 0x423e8c26, 0x11ab36c0, 0xc0d16b1c, 0x6c23365a, 0x597e4b5, 0xeffee822, 0x78155850, 0x486d5690, 0x0001ff } }, { { 0x7b683e90, 0x48d49279, 0xf974d079, 0x20e1c24b, 0xf9cb7332, 0x8d01609c, 0x2ddcd39a, 0xd5da3319, 0x8c723589, 0xf7a62966, 0x2305fa53, 0x5b4170a5, 0x3a96d9d6, 0x30b2ce03, 0x57b53dea, 0xe66543e6, 0x0001b3 }, { 0xdbf17979, 0xa75a4fd6, 0xf25f9bf4, 0x82a50365, 0xee09d947, 0xaf63dbb0, 0xe824b3aa, 0x6d17f25, 0x9374a9ec, 0xdf027879, 0xcc476070, 0xcb88cb9b, 0x42750366, 0xe0526959, 0x280a89ad, 0x2ac31ecc, 0x000063 }, { 0x66e1627f, 0xcad67006, 0xb5217622, 0x6958ecb1, 0xf93712cd, 0xbe0ce3a2, 0xcf30e2d1, 0xe8484f9a, 0xa0d6b220, 0xc211e85d, 0x2e9228f2, 0x12be199f, 0x71aea4eb, 0x386c098d, 0xd44906b9, 0x8e5c0d11, 0x00000f } }, { { 0x90057ba1, 0xe7eba315, 0x1995407c, 0xb5c48961, 0x29635041, 0x804bb8a8, 0x274799fc, 0x274fe881, 0x80039553, 0x3fc2b5f9, 0x5c74dd2, 0x18ba1433, 0x9b7111eb, 0x59f9ff9e, 0x5ff18e33, 0x9d21ec9c, 0x00012c }, { 0x32b72af6, 0x4f017bfa, 0x8febd39b, 0x458644e0, 0xb037b046, 0xa19cff1c, 0xd464ffb6, 0x8d45371, 0x93c5c8c7, 0xd9041a9c, 0x83e46bb0, 0x5b01a261, 0x84a903b1, 0x257de55f, 0xb1f72732, 0xb9974a93, 0x000183 }, { 0x62218065, 0xde2f621c, 0xda015bbc, 0x4f1bf9c, 0x5f3b6a50, 0x52331d91, 0xb756d09c, 0x291c70b0, 0xbe214ad4, 0x9cea9851, 0x7cb3d3b8, 0x292d7f8e, 0x6a7f3f60, 0x98ca7096, 0x339c79fb, 0x15d576e4, 0x00012f } }, { { 0x1da7b185, 0xf4e5794d, 0x3ec55db0, 0x5271f1ae, 0x2a715d35, 0xaa8b5e6e, 0x8de2bffb, 0xd11c8308, 0x96464043, 0x6b5d3a9d, 0x88132805, 0x8d76c287, 0x86e665b1, 0xf24baabf, 0xb8f234af, 0x791429da, 0x000072 }, { 0xd4af3fc3, 0xec84d504, 0xfa892d9, 0xa5bfd77f, 0xc92e131b, 0x3f8d0c5b, 0x5efd217, 0xb2777e3, 0xf115e1a8, 0xa8b3a42e, 0x4b265b53, 0x28812c44, 0x941770cc, 0xea7b29d4, 0xf0ba7497, 0x1e2d31d3, 0x0001b9 }, { 0x5171bfa1, 0x3ec834ea, 0xf7523bc4, 0x958ab84d, 0x5a5504cd, 0xc59014c3, 0x71937e34, 0x1a3821cc, 0x758919fe, 0x96926a77, 0x56f54e12, 0xcb64155c, 0x103791be, 0x4c243d67, 0xe06e47ff, 0x70679201, 0x00000c } }, { { 0xf0f6dd48, 0x21e6b08f, 0xd018b908, 0xff7727e3, 0xb903d955, 0x3e29870c, 0x91f3690d, 0x33f6f73, 0x17eca945, 0xd6c9a697, 0x9d68321f, 0xe4990116, 0xf1bf4d01, 0xa8367fc2, 0x53f9d7aa, 0x581ce438, 0x000172 }, { 0xde1ef37f, 0x20b2ab55, 0x775a0c5f, 0xdc84be, 0x8fbb600c, 0xb28c42c5, 0x21c719c1, 0x6dcdf447, 0x5dace12b, 0x26f93f35, 0xa1ca0246, 0xbf8f8499, 0xec861db3, 0xc5a6fd42, 0xfa33f71b, 0xd9aa4b96, 0x000174 }, { 0xc6544dbc, 0xd43db62a, 0xb7ff50ca, 0xda31731b, 0x347f18b0, 0x1a0cfac6, 0xab5f0d72, 0xb02f84a5, 0xc72cd30, 0xea012d8b, 0x7866f3c5, 0xd43d1f29, 0x494c8630, 0xf7a52847, 0xb280b25b, 0x8c5624d3, 0x00013b } }, { { 0x13791b5c, 0x69f36499, 0x3f0cac47, 0x6c1f830a, 0x7d4b0e4e, 0x1abc228e, 0x63a3335, 0x42a11fad, 0x4e4c13ae, 0x42ce5b6f, 0xbabda962, 0x31060e32, 0x56a8f860, 0xce3e1a4a, 0x45afdc00, 0x4a8f88c8, 0x0001cf }, { 0x8fef0ee8, 0x537e6a17, 0x7fc09762, 0xedb1b6dd, 0x18bbaf05, 0x94c7d29b, 0x90715cf3, 0xe174c861, 0xb058076f, 0x2559f67a, 0xf66645f9, 0x310a3bc3, 0x66aba416, 0x310030f0, 0x7017fa74, 0x861266f0, 0x00010f }, { 0x54aa7a26, 0x1dbf594e, 0xae34fa75, 0x18e8ba98, 0x87571377, 0xba307fe0, 0x53db6930, 0x63112948, 0x13d8f511, 0x8aed80d9, 0xef24cf08, 0x9e14681b, 0xff27f77b, 0x7677edf5, 0xeb7a8b75, 0x41af6d7f, 0x0001c7 } }, { { 0x34844d70, 0xf78b88c, 0x5ffc0564, 0xd4affb1b, 0xdd55cc9d, 0x6c10b077, 0x17915bad, 0x9b85a45e, 0xfbef8c74, 0x83933744, 0xe298bdbb, 0xcd0adf77, 0x9b80c5db, 0x97cc234c, 0xf8b9a323, 0xdd248347, 0x0001da }, { 0x7cd1c783, 0x75110e73, 0x288cabf4, 0x3c5969e0, 0xab49b06, 0xca7a86f3, 0x84f3778f, 0xdca5709a, 0x34d6cfd, 0x5fe96b0e, 0xb1ab36d0, 0x2279e140, 0x79241f13, 0x8e5caace, 0x816b738b, 0x94b96dbf, 0x0001ed }, { 0x3d662f33, 0x8215cf81, 0x9a78e403, 0x3e2eaf89, 0x42b52606, 0x38625db8, 0xbae3f9be, 0x75841f6, 0x51acfd93, 0xf5e70f2f, 0x8ed20794, 0xa5dfd7e3, 0xb7aadd1b, 0x53fe1348, 0x2b015e2a, 0x5645eceb, 0x00014a } }, { { 0x4c362be0, 0xac31b65e, 0x25aaf76, 0x692bf117, 0x1d670cbb, 0x6922650b, 0xd97c9384, 0xc1f85355, 0x6690a29a, 0x5c877360, 0xa7c6f25, 0xd4ed61e9, 0x8e2e70bb, 0xb458bacd, 0xb024d0c1, 0xf60c66db, 0x0000b1 }, { 0xe8be5af8, 0x2f5f3876, 0xe6261e69, 0x5c62e245, 0x1aed90c0, 0x5c2ef678, 0x48086aa4, 0x39650c23, 0x5b6f2575, 0x91dbff90, 0x59667210, 0xdef11083, 0x9bd01bce, 0xef52fe4f, 0x83ddb7f, 0x2eadd7e, 0x00005e }, { 0x886e5e1f, 0x76fbfbcd, 0xc3bbbee0, 0xcbb480a3, 0x3b6082f7, 0xe40e07b, 0xc728fa44, 0x22354fcb, 0x95306088, 0x36ddd46f, 0xf2f2843d, 0xc2d16fc8, 0xc5252d8e, 0x9092bef2, 0xf8dd727e, 0xd7ce1cc6, 0x0000bf } }, { { 0xc70564a0, 0xc18a33d3, 0x73015c22, 0x991cfc1d, 0xff99ea5d, 0x19f0ec24, 0xf87712cb, 0x2fb26c15, 0x242468ed, 0xb35f1043, 0xef967b60, 0x552413bb, 0xe4cb3c88, 0x3d228450, 0xe4f356a2, 0x6c04a868, 0x00019d }, { 0xc7d53567, 0x1dab8ae0, 0x7cf06c35, 0x649de0, 0xec7c4cca, 0x1d057375, 0xc0449e47, 0xcf8d09f3, 0xd0d2e4f6, 0xea566a2a, 0x51735597, 0xa291e6b1, 0xd252f550, 0x95cf3601, 0x9f1fb8f5, 0x94a84cd8, 0x000187 }, { 0xad11c32f, 0x48e255c2, 0x56f4d7ce, 0x26ad6c7c, 0x230bb33f, 0xc9dac0ba, 0x3d8c3627, 0x42494754, 0x7d9c6f70, 0xc9383d07, 0x2a854bc1, 0x81c0800c, 0xaabe0908, 0xd236474, 0xcd0519e8, 0x605eb2d7, 0x000139 } }, { { 0xa2eac8f9, 0xa1e532d2, 0x4c1ec1c5, 0xdf1560ae, 0xa3d7e4e1, 0xa1b451da, 0x446d72a8, 0xb1bddfef, 0xb230a128, 0x86faced, 0xf5bb4d4b, 0x6144b333, 0xbcade27c, 0xfcc86dbc, 0x694148f4, 0xf3333ec1, 0x000004 }, { 0x12d02ae7, 0xb649906d, 0xb41e7b82, 0xa2351b79, 0xe8212557, 0xab00293d, 0x25ee50ee, 0xf03e0acc, 0x820e800a, 0x95fceb46, 0x9a09557a, 0xa1fd68e6, 0x465887f9, 0x36aa332e, 0x4934e69f, 0x528677f2, 0x000009 }, { 0xb675165a, 0x609d50c5, 0xe0c30812, 0xd34018d6, 0xb709a199, 0x7d8bc968, 0x49666858, 0x71c84fa0, 0x2a338dd3, 0xec7a49f5, 0xd46372a0, 0x4a2480cd, 0x2c172bff, 0x63889a06, 0x446050d2, 0x7be61999, 0x0000e0 } }, { { 0xcbdeab5, 0xa525cd01, 0xacb07d5c, 0x724e1c5, 0x957e8c8f, 0x7236f3e4, 0x33a6f6b8, 0xb80fab11, 0x9cd29279, 0x63d50367, 0xe23062ea, 0x129e12b9, 0x6e832b6a, 0xddd8b515, 0x314abd90, 0x6a6d7a8d, 0x00004c }, { 0xf77b4b55, 0xd017e09d, 0xf9c88cbc, 0x617c157a, 0x3ae59d52, 0x2d5b3877, 0xe852392d, 0x9a7706ed, 0xec24816c, 0x991797a0, 0x369817cd, 0x2eb5e768, 0x6a0ebb8d, 0x5cf3bac8, 0x61f72947, 0x7251d774, 0x0000e7 }, { 0x3d2eabdf, 0xf3f47cc6, 0x763c6007, 0x189cfdfe, 0x88209819, 0x473c8fd1, 0x1b102a2f, 0x65037ce2, 0x5cb719f5, 0xa5637269, 0x5d3975de, 0xab85099c, 0x461acee1, 0x735dd26d, 0xdff4c258, 0x21fc7696, 0x00005a } }, { { 0x1ae40ebc, 0x63436518, 0x5a566b0d, 0x9b25e107, 0x99a28c39, 0x215efb95, 0xf9a798fe, 0xbe48268e, 0x733db870, 0x7708721f, 0x8c2ec27d, 0x5a6a808a, 0x580d784e, 0x4d937f92, 0x748646fd, 0x34e0d17c, 0x000159 }, { 0x2ffdf700, 0x32101952, 0x594293e3, 0x25cdda58, 0xab8a7829, 0xad141365, 0x4948b94e, 0x62c845af, 0x8125d01d, 0x64680ff5, 0x4b936974, 0xbbc3a6f8, 0x2db5ad46, 0x51374291, 0x442cdd6a, 0xc92ca0d0, 0x000155 }, { 0x587725f9, 0x3537fd62, 0x5b7d9b0c, 0x4ccb49dd, 0x709e6a35, 0xa982729, 0xc40bfe26, 0x2cb48824, 0x4e9f3eb2, 0x75e2cbe6, 0xa1ced358, 0x3217e801, 0x40413c2, 0x90c18942, 0x93f1edec, 0xfd4a334, 0x00014a } }, { { 0x37591e3c, 0x2fcc3374, 0x75772491, 0x1aa95068, 0x4d55aaf3, 0x37498ba9, 0x86dbf019, 0xed3b5e7b, 0x50fbd5d2, 0xe35f97c3, 0x65d28a7f, 0x849f4075, 0x44e394a1, 0x331a1be9, 0x59e3568, 0xb3afcfd7, 0x00009a }, { 0x8dd39a44, 0xee434ff1, 0x1d40ae87, 0x456375be, 0x52807c20, 0xe97e47e2, 0xcaa677b4, 0x8b16e413, 0x61577cb2, 0x9dedf43c, 0x3383f877, 0x1da9c5f8, 0xf784fdd1, 0xdeb65b72, 0xb990b593, 0x6313465c, 0x000078 }, { 0x7c26da3c, 0xfe3ad6fa, 0x9443fac0, 0x65f9291f, 0x9cbe31be, 0x7612dd22, 0x56856630, 0xcbd8e494, 0xf861c0ce, 0x931280e8, 0xafb8cc6b, 0xf73b5947, 0xbdba888d, 0x1374c680, 0xfb6751c7, 0x11ad1c04, 0x000017 } }, { { 0xe87736c0, 0x5f12e8f2, 0xf33b61da, 0x284292ce, 0x93692525, 0x2f0be6d6, 0xf7a6e279, 0x75ac6446, 0xda48f3d3, 0x2be23467, 0xbc3b6204, 0x314ad278, 0xc16355f8, 0x451df610, 0xc0bdd22c, 0xf90a7e42, 0x0000a2 }, { 0xbfedc62b, 0x1130bfbc, 0xfd3cee28, 0xf54983d8, 0xdbc0eeb6, 0xcc3b7d49, 0xeda2a910, 0x838fde3a, 0x6530f55e, 0x969bd442, 0x510f566e, 0xdbac550f, 0xa10f141f, 0x69d3b084, 0x2503f982, 0xb616a506, 0x0001ac }, { 0xa09ba6c, 0xdbe7e20c, 0x3f980cbb, 0xf5b2ea4d, 0x42a480da, 0x4cbf684a, 0xddb2c20, 0xfbd4636b, 0xdc2728db, 0xbe1f2da7, 0x2ed4cb53, 0xbf277b17, 0x5c688e9f, 0x4638856f, 0x9a77775c, 0x52a11b82, 0x0001fa } }, { { 0xcc3b7cca, 0x5c34d7e0, 0x60b62fa6, 0xe26d69c6, 0xce898e2c, 0x7c8ff6f7, 0x1d9687a7, 0x92f7b4d6, 0xdf52e6fa, 0x8dfd624, 0xb20b1b2c, 0x9179b957, 0xcd6aef05, 0xd2592cda, 0xf9f54cc8, 0x2e04b7fe, 0x000125 }, { 0x5e2c9471, 0xf22e4696, 0x52861d98, 0x5fec7c29, 0xda79b441, 0x6da123b7, 0x7093cf31, 0x27dfef3f, 0x5106887, 0x4f920eb, 0xc1a3073b, 0x8f1f8ee4, 0x59c86028, 0xbd84e01b, 0x8d7506e1, 0x461f42bb, 0x00018a }, { 0xf8f0004e, 0xd6a4151a, 0xff80b3e1, 0x59179c2a, 0x3fe2092d, 0x8ae64154, 0x9f593247, 0xe99574ba, 0xd4a13a1c, 0xa3a1f989, 0x6cdb5fdd, 0x90e97e32, 0xf6c361a4, 0x178c8467, 0x5deb67b5, 0xb80bd76, 0x0001b2 } } }, { { { 0x8722e08c, 0xe984b95b, 0xd389b70, 0xdb34ce03, 0xf2cbdbef, 0xb58eb996, 0x2c06a975, 0x2ee8742, 0x833d026b, 0x5a14e20f, 0xcac95176, 0xf44c048a, 0x7c98008b, 0x46a99fcc, 0x2ac310b3, 0x49193a27, 0x0000ea }, { 0x9d9dbde0, 0x4d546ea1, 0xfeab6c93, 0x5cc36ac2, 0x70e9e46f, 0xe1d4744f, 0x954ea46f, 0xbf64cfe5, 0xfb346335, 0x76badbcf, 0x6f7ee830, 0x29a5b852, 0x74567e61, 0x14d983e5, 0x26645a5e, 0xe587136a, 0x0001ee }, { 0x5eccb279, 0x81ab9016, 0x27bd376f, 0xec848974, 0xce475537, 0xba8b5e3, 0x1e7660a, 0x163a9af1, 0x2865c5ca, 0xb0a9832d, 0x7be8ebce, 0xdc93c486, 0xe2de7f2, 0x216b2ade, 0x19c28c9e, 0xda423581, 0x000001 } }, { { 0xc7a70fce, 0xabb1eb7c, 0x942ad09a, 0xd9ace00d, 0xed49139d, 0x9b222b3f, 0x546be7e8, 0x4e1b2223, 0x3b4dc82c, 0xcfc017ba, 0x1f722540, 0xf52b3bc9, 0xd998afa, 0x61d7b7ca, 0x9ddf3634, 0x63e0ad25, 0x000037 }, { 0xfc17a44a, 0xe11456f7, 0xd75ed971, 0x947ca41d, 0x2f3c74b3, 0x2cd7358c, 0x1ac2d024, 0xd7155a60, 0x21adf793, 0x35aaee28, 0xc6cc6910, 0x9b24e780, 0x7f82abfd, 0xf7564404, 0x5420e472, 0x99b2ae46, 0x000144 }, { 0xb989e8f1, 0x2227d017, 0xbf795654, 0x4789bc47, 0xbabf2ac, 0xc01b3741, 0xcc83d7e8, 0xcee957bc, 0xa4a21c69, 0x75168958, 0xc6b187bb, 0x365a5b2c, 0x5554f92a, 0x3cbc735c, 0x1beca29d, 0x6cb44b09, 0x000125 } }, { { 0x18528be7, 0xb5782d82, 0x8cd4285b, 0xcb2cb097, 0xed5dabb, 0x1cf81ec2, 0x31d3bcc0, 0x4b377b30, 0x45d22a87, 0x29eaf644, 0x400d54da, 0x2f2ed003, 0xdc92fe5b, 0xc192d111, 0x69c30fc7, 0xdd12d4de, 0x00015b }, { 0xdf455dfc, 0x41cca870, 0xfddc6c4d, 0x9e231a77, 0x7634fe4f, 0xa55f073f, 0x9983aa4a, 0xd861bfac, 0x33950972, 0x3d63d51d, 0xeba1c6fa, 0x33695489, 0x5395718b, 0x661eec39, 0x6009fd8a, 0x36c920a, 0x000118 }, { 0x1d9c8d2a, 0x58396878, 0x8afc2a38, 0x9dbe0ab0, 0xc1805132, 0xdbfcc41, 0x29382c2d, 0x892afd0e, 0xbf2238d6, 0x75f06c, 0x9edac8ab, 0xf00874d6, 0x18d6cc9a, 0xdfce22d, 0x466175af, 0xb97862f1, 0x0000a0 } }, { { 0x422ff67, 0xe0fbafdc, 0x49d32d94, 0xd2e8fdc1, 0xe8aef468, 0xd168343a, 0xb2a37e1b, 0x25c56364, 0x49fc6e20, 0x320e7c3f, 0xf25995e, 0x8131bfce, 0x5d7d965c, 0x242005ce, 0xe285169e, 0xf4396322, 0x000093 }, { 0x25b8c4df, 0x1d0790b8, 0xed3e0358, 0x9930f8d6, 0x9ed63f77, 0x58332251, 0x12a7ea83, 0xef208ee4, 0xc16d9bbf, 0x93e555dc, 0xca863ce0, 0xf6d250ec, 0x83034be7, 0x1a970584, 0xb2156638, 0x60341dcd, 0x00003e }, { 0x79a14b8d, 0x8537145a, 0x9a938b47, 0x5f623fd5, 0x6604f2a7, 0x80f155fc, 0x83933881, 0xcefb22db, 0x21c6d59b, 0xee6cfe02, 0xcf25bf14, 0x1da086f3, 0x80ea2dfb, 0x5f6e9c07, 0xc74609e7, 0xcae3e44c, 0x000195 } }, { { 0x198deff, 0x91ae6400, 0xc930cc88, 0x6cddb9a9, 0x42499d7e, 0xa93f2d9a, 0x561fe159, 0x53fc6c19, 0x413c8407, 0xb546db60, 0x81df7c53, 0xbd154947, 0xf15a514a, 0x42bd5b2e, 0x770d656c, 0x3c52bc75, 0x000112 }, { 0xca17154e, 0x7e5d746e, 0xa9e94a71, 0xab3f7b6f, 0xc9b09337, 0xd8bb55cf, 0x2b469663, 0x5b7f58b3, 0x9136aa6f, 0x73e13a5b, 0x4992a6df, 0xff0f57fc, 0x9512c0f5, 0x31be3e53, 0xb27c047b, 0x5ffd77f6, 0x000066 }, { 0x687f2ce1, 0x6c0aed2c, 0xd3e2d352, 0x765204b3, 0x70f72dfc, 0xb7d1ae76, 0xaee8621a, 0x1b6890b4, 0xcbe53782, 0xbe0b4284, 0xdcac385, 0xa29d2168, 0x81634df6, 0xf3f1f2fe, 0x5c49832b, 0xdb1ce3a0, 0x0000b9 } }, { { 0xf679c0d7, 0xb2bb1d97, 0xd99b048, 0x2ee16eb6, 0x3effe69, 0x4c9e40d6, 0x65a92acc, 0x18b2be09, 0xa8ba55ac, 0x97edd28c, 0xad9b0c33, 0x6556d5f4, 0x942bca18, 0x81f19b35, 0xda47a2be, 0x3d8af9dd, 0x00013e }, { 0xa7e48941, 0xf8a81952, 0x8a6ca5da, 0xfeb80044, 0xca73ce55, 0x413fd08, 0x32f96b85, 0x3239f0b1, 0x7c48421, 0xb0d7bc76, 0xa6f590a6, 0xf6e8c5bb, 0xbdcd3188, 0xcf0458c6, 0xf5e2eb0f, 0x7f0a4f1c, 0x0001e0 }, { 0x418ccc96, 0x835287b1, 0xce972749, 0x9b56d20e, 0x7116f0d, 0x35bdcd4c, 0x9a734415, 0xaa93cdde, 0xceba7289, 0x1a31ab33, 0x7a0d2e2c, 0x92805803, 0xc25efbd2, 0xb8823d76, 0x245651b6, 0x6455513f, 0x0001ec } }, { { 0x6816156, 0x4ba19b7c, 0xd61c64eb, 0xdfdb07aa, 0x8a487354, 0x21db6ff8, 0xf52332f3, 0xab95c560, 0x8bdafb11, 0xb4693749, 0x12b6d267, 0xf531cf70, 0xb31101f4, 0xb963527d, 0x806b33f2, 0x82996ce9, 0x0001b0 }, { 0x78c63263, 0xd800bdf2, 0xf1a846c, 0x24d7d234, 0xe9fe2f6e, 0x56874b11, 0x82f88994, 0xf869a96f, 0x55962fcb, 0xa1f272a3, 0x1e85c3af, 0xd933b69c, 0xfd4a4bc6, 0x260b63f8, 0x1d0e619f, 0x411eed69, 0x000095 }, { 0xe7d074c7, 0xf4879c0a, 0x2e93b677, 0xa1b8f75a, 0xafdafc09, 0x85d93524, 0x9a8c41ef, 0x17355866, 0x61b44bc3, 0xc7d073c7, 0xb4c298d5, 0x55662a76, 0x63c75b49, 0x259713d8, 0xbae90d28, 0xf07eed45, 0x00000c } }, { { 0xa9595268, 0x8a1230d3, 0xf4b594f, 0x792ceb88, 0xc22788d9, 0x867eca00, 0x797a0205, 0xc1f197aa, 0x269ff97, 0x94502d82, 0xede57f88, 0x4363371, 0xf84a3239, 0x5d6e966e, 0xcaac1d19, 0x9c0a62c0, 0x0001d9 }, { 0x8efb86dc, 0xd378bd5c, 0x75ef28b1, 0x2d3a50fb, 0x5844e142, 0x349d9911, 0xee7aa2fa, 0x2415dabc, 0xd03669eb, 0x6636ee76, 0xf769b541, 0xf1a261d6, 0xe70d6422, 0xf8bab951, 0xfe3ba799, 0x8398ea9e, 0x000035 }, { 0x4590df76, 0x4fdd9c4e, 0xf722b55b, 0x62e7720e, 0x3a080da9, 0xd69561d9, 0x2e94dcba, 0x702f245a, 0x9b20d650, 0xa26d402e, 0x63387a65, 0x6aafbf87, 0xdd3c242, 0xc354b5e7, 0x604ce75f, 0x418f3bdb, 0x0001af } }, { { 0xf2010c35, 0x274bf9da, 0xe086681a, 0x49ed170f, 0xe0cc482a, 0x559a17b2, 0x95efd34d, 0x54904005, 0xbddb4884, 0x216bb642, 0xed86e6ee, 0x2d37db76, 0xe4e45069, 0xb08b63c7, 0x8cac9480, 0x777b7210, 0x000116 }, { 0x8e45f3f4, 0x610baa41, 0x80a04c69, 0x4ae082e3, 0x7f2b5cf6, 0x48bed0b3, 0x33a13fe4, 0x30cdd0ea, 0x7afcdfd0, 0x1ed9a658, 0x3e39e805, 0x838924fe, 0xb65e38c9, 0x708322f1, 0x327ea882, 0x4d6eb519, 0x000073 }, { 0x5fe126ac, 0xde28637a, 0x77293560, 0xe2bf8817, 0x24f49766, 0xf8c443bf, 0x3d194c99, 0x5b70e178, 0x1850ee78, 0xf71cbf19, 0x81872cb5, 0xc1a785ba, 0x57c175f4, 0x860dd37d, 0x5c9797e7, 0x698f1258, 0x00017f } }, { { 0xb3efa48e, 0x697e6809, 0x30ab7784, 0x491e3fde, 0x90c4d6f9, 0xf3b76508, 0xa6dd96ff, 0x7530d966, 0xe7adb01f, 0x8a14f646, 0x53e2f47, 0x7d2ccb4a, 0xb05016ff, 0x2179ed36, 0xe7125761, 0x8cc9fc15, 0x0001d7 }, { 0x3ebc2402, 0x325028db, 0xe1168e40, 0xde0dab35, 0x60504d5f, 0x1deacf2e, 0xa929ce28, 0xf5ca847f, 0x8c755064, 0xc0672ee2, 0xbebb8d5e, 0x3b470036, 0x1d7e0ef7, 0x7d7d5ece, 0x19d808f, 0x74b79fc7, 0x0001be }, { 0x87697a5a, 0xbcfde9be, 0x141779f3, 0xcadcbf29, 0x4f3bcedf, 0xc3281e4a, 0xc4e5b185, 0x7a32924c, 0x45dd1412, 0x19c755b6, 0xe29073fb, 0x5951c934, 0x6827b36e, 0x5fc04f28, 0x5676fe24, 0x3925623c, 0x000167 } }, { { 0x1e02740b, 0xed124e, 0x9ce75042, 0x5da54af5, 0x4a6cd4d0, 0x2cb322f9, 0x9102e7cf, 0xc3d10b53, 0x1c425374, 0xd97d322f, 0xdb7eb7f1, 0xd68cbe01, 0xae39d10b, 0x18acf93a, 0xab5e29ce, 0x32c31de0, 0x0000ef }, { 0xd79a6220, 0x29820852, 0xb7f774fc, 0x4d1299fa, 0xf7f28b72, 0x69a89063, 0xf80adc6b, 0xcd134a45, 0xc6b4cdf1, 0xacb4e63d, 0x8aa823a5, 0x6fb643dd, 0x5e4f02a4, 0x1e058c38, 0x15ed95e4, 0xba9cbfa4, 0x00010c }, { 0xb1b2ed42, 0x4f5ff210, 0xd2c8b8f6, 0xc34e5a73, 0xe8b8fab9, 0x52c4d997, 0x4d04d702, 0xeef77c99, 0x4330a27, 0x74ecbd8f, 0x7e0d3b51, 0xf037acec, 0xd5282f43, 0x2707325, 0x8a8f9341, 0xd4276b7a, 0x000036 } }, { { 0x5ddc8d6a, 0x614b991f, 0xf2491b44, 0xae709a32, 0x86d40a5e, 0x41812985, 0x7c513ea, 0x658dab19, 0x1f659a15, 0xa9d38bc4, 0xb458688, 0x57d70eef, 0xecc43ed6, 0xec85ad14, 0x744dba2e, 0xf5c8f6e4, 0x00012c }, { 0xe878a56, 0xc8e69d91, 0xee11f9d, 0x80d3454, 0x3df7a198, 0xb61ab502, 0x76db65b1, 0x50d1953f, 0x16aaec39, 0xefe5c9bd, 0x1c6dc215, 0xfeba3daf, 0xfc9b8092, 0x2417624a, 0x9fa90c78, 0x10cd1c87, 0x000170 }, { 0x24a75909, 0xc0905d1b, 0x2e875479, 0xac69897a, 0x3d5ded7f, 0xa607ba34, 0x992781e1, 0x89a703ba, 0xee77dc8d, 0x85e61916, 0xb5f05898, 0xf407debe, 0xab55eb13, 0xa10c679e, 0x19870261, 0xc87ccd56, 0x000124 } }, { { 0x18e81eda, 0xe3ccb69d, 0x937e6450, 0x8eeb7b19, 0x22b56e01, 0xe02b7a1b, 0x33abf6ed, 0xe1aae4f6, 0x768f713e, 0xb09f02a5, 0x77954142, 0xe2617680, 0x1271243d, 0x2661ddd9, 0x21255caf, 0x86379602, 0x000182 }, { 0xa69aa28c, 0xf0ed9199, 0x86618ad0, 0x4e0d97d8, 0x1ef53159, 0x99ea4f84, 0xfed30250, 0xbc4827d4, 0xb661dba8, 0x429f2c8, 0xc7bacf92, 0x3f897b8b, 0xbc2557b7, 0x4b031178, 0x1ea83681, 0x1e57a6ae, 0x0000fc }, { 0xa5822368, 0x4c8a0fc9, 0xfd16906e, 0x1bc363ef, 0x70a66420, 0x6ef200da, 0x1162c708, 0xabdcd70d, 0x1998bcdc, 0x23b834d6, 0x43b7a3a8, 0xffd94d1f, 0x95c9b44, 0x246e39b0, 0x602944f7, 0xb51e9efc, 0x00015b } }, { { 0x68332212, 0xdd80e65e, 0x3a37e9ea, 0x77725fde, 0xc8fd64eb, 0x40e405da, 0x98b3deb1, 0x5ad404f9, 0x40e14ae5, 0x1d3e571e, 0x8fb0c822, 0x1bd86775, 0x7b08072, 0x6a358c05, 0x5b5759e5, 0xa289a646, 0x0000b7 }, { 0xc48219e0, 0x1c71ced9, 0xfe4bfdc, 0xe16ddee4, 0xe1437300, 0x3c7375e1, 0x51f8e967, 0xcc55ea7b, 0xc2a76964, 0xde2a4eb6, 0xbebdc718, 0x34105f0, 0xfeeb60f8, 0x9679a039, 0xa6f4cafd, 0x57c0c34f, 0x0001e6 }, { 0xf814aa10, 0xbcde7013, 0x17eea650, 0xcf1519a4, 0x71cc67c9, 0xcb044b3e, 0x44d63b23, 0xd22371ae, 0x7a6785ae, 0x61378d7e, 0x240a8d35, 0xd95169ee, 0x3d555a88, 0x3dae7af2, 0x61ae3c2f, 0x5d868310, 0x000137 } }, { { 0x25b93adf, 0x3fdf41d8, 0xcb0970a3, 0x624a9a24, 0x9061fb6d, 0xd89b60f2, 0x9ea28cc7, 0xa266f0ee, 0xf6406abc, 0x37c7d817, 0xd4f5c58a, 0x83bae366, 0xb5fe2ad8, 0xae5e6253, 0xcb440490, 0x2bd208f3, 0x00005f }, { 0x13c15e1f, 0x11e6dfc6, 0x8489e2a7, 0x750aebb0, 0xf8d83d5b, 0x8ca84d22, 0xf76c1362, 0x18c6193c, 0xf2ea2501, 0xe2c07c7b, 0x10c40392, 0xe2e161db, 0x124edacc, 0xcac3f5d3, 0xb0fa254d, 0x1c1bcc2, 0x0001d8 }, { 0x14a77612, 0x45b973a, 0x377c9999, 0xa0be2ce0, 0x88cfd9c5, 0xbaa09185, 0x7bd2f38f, 0x5be07f50, 0xb0c40077, 0x3945e758, 0x750fd2a6, 0x344f9937, 0xd73a11a9, 0x7aaa3452, 0x416e2e9c, 0xbaffb46b, 0x0000be } } }, { { { 0xea057701, 0x921e5b75, 0xeb6bd00a, 0x22529f82, 0xe50c5705, 0x4f91e060, 0xe8e6104e, 0x105d8d06, 0x18e7a80a, 0x1cf6d406, 0x1685b87a, 0xeb8b29ea, 0xb506a87f, 0x666501d3, 0xd6799630, 0x2f44246f, 0x0000eb }, { 0xb973d2c8, 0xb72f3306, 0x76aadcbc, 0x3276ae24, 0x5a9cd992, 0xf81d4cdc, 0xef8771bb, 0xcb9fd4f4, 0x438dd481, 0x4f8f2f77, 0x2048d9a0, 0x717e0220, 0x69372383, 0x651cdee0, 0xc0f65765, 0xdac1c90c, 0x000192 }, { 0x5423bfe2, 0xa82c4b2c, 0x43802b0, 0x63ddbca7, 0xdecf4b37, 0x2b024767, 0x1f51dd7b, 0xb571b42d, 0x2b784ff1, 0x534b099d, 0x7ad77259, 0x771dd96, 0xf1863826, 0x4161de74, 0x70edc758, 0x7441a18f, 0x000131 } }, { { 0x1f5ba22e, 0x5e76e874, 0x71826aa9, 0xb4eb0bc3, 0xf84f860d, 0x8a27ff72, 0xdf081599, 0x9642ff8b, 0x7ae36bc6, 0x67b01347, 0x612bd1f1, 0xc37e9baa, 0xe6bb3e5, 0x3552aa6c, 0x85f5c0be, 0xb0a654dd, 0x00003a }, { 0xdb345359, 0x546d6685, 0x38435d2c, 0xc242ab24, 0x9365816, 0xe69c7785, 0xfcacd45d, 0x8beb68a8, 0x954f99a9, 0x277adfcb, 0xc7146975, 0xef12ec84, 0x6b8f3337, 0xfcfcf22d, 0x1622b191, 0x960f51d3, 0x0000e5 }, { 0x2a82c1fa, 0xde0a6617, 0x3eee9293, 0x4994cfdf, 0xff9fed5e, 0xc9a9b3c5, 0x414971c9, 0xd7e28b16, 0x46a1b807, 0x9201b0c4, 0x5dc62ad9, 0x4220660, 0x60b25aa0, 0xb6911077, 0xa3907904, 0xb846ae35, 0x000156 } }, { { 0x7cfae3f6, 0xdf1fa4da, 0x60b88d61, 0x12eaf631, 0x6e8a7b98, 0x8245c9f4, 0x815ba5ef, 0x513da594, 0x43769edf, 0xbb242b8, 0xdde17fca, 0x35b96dae, 0x4402937a, 0xebe2c415, 0x5fb39c2a, 0x6102f3a1, 0x00017f }, { 0x5bc8effd, 0x84d6f59, 0xe7ec1689, 0x2212d2b4, 0x56bba442, 0x2694cdbe, 0xef1024a1, 0xe008628a, 0x71057cc2, 0xd2bf4618, 0x5517058d, 0x15648ff2, 0x310df70, 0xe08c4b23, 0xe0a8810d, 0xa2a0b461, 0x00008e }, { 0x14ecee75, 0x90318049, 0xc811e178, 0x8c066992, 0x560d53b1, 0x7a5af984, 0x6512adca, 0xe8cd47ab, 0xf4e6e153, 0x926740db, 0x8e49ae69, 0x1e9f1afe, 0x4957bc8b, 0xf9d6c83c, 0xd3f8eae4, 0x4743f71b, 0x000008 } }, { { 0xa243ccd2, 0x967f33bc, 0x48e929b7, 0x76030aaa, 0x9ba7a0ca, 0xe97a1c, 0x1abca2a, 0xc6ec02f0, 0x9f41c238, 0x96af335e, 0x531c1188, 0x2bc105d2, 0x6fe0b088, 0xce4bc7cc, 0x6992e27c, 0x22e19aac, 0x000028 }, { 0x15980de3, 0xa22e74c6, 0x29f6d42, 0x7cdf41db, 0xe071371, 0x86d04813, 0xe54f4027, 0xeb670057, 0x22aa566a, 0x39725b5d, 0xc1065ab2, 0xd149a2c0, 0xf9f23c52, 0x83792f5a, 0xc9fc8d75, 0xcb6c62f7, 0x000070 }, { 0x147ee769, 0x5c3d392d, 0x51b67573, 0x41cbbf21, 0xe61f7fc6, 0x928fa69, 0x6b725f22, 0xbfda973, 0x7d4b6061, 0x95833cf7, 0xee129cde, 0xdbbb4d81, 0xc482fecd, 0xda8e382, 0xd6ee0ea1, 0x6e108f04, 0x000131 } }, { { 0xbd409c5f, 0x6f7c2f68, 0x15c073c2, 0x9fde1aee, 0xc19dceb7, 0x7ad51408, 0x64960dde, 0x572d3ef1, 0x57e2220, 0xb319e35f, 0x5930939d, 0x8858c4be, 0x609f24ab, 0x30b1685d, 0xb47d5e38, 0x3946f4b4, 0x000114 }, { 0xd952cee3, 0xb453f68d, 0x62a0c7ce, 0x6e2ae445, 0x6dcf0905, 0xf2a7eb8f, 0xfba6e083, 0x13ed2797, 0xd14cf54b, 0xefa55674, 0x74720a88, 0xd89236c, 0x2428cb1a, 0x51ac9d1e, 0xcdac4715, 0x36e1b475, 0x0000fd }, { 0x87651a8f, 0x16e0b7a9, 0x64e877ff, 0xe4882431, 0xa168e9c2, 0x444ebbcf, 0xc1e1e101, 0xc69fe4d7, 0x2f98d432, 0xd61b009d, 0xf332f028, 0xe4cc07ef, 0x8c4610e0, 0x921b3a8d, 0xe82146ac, 0xacc2bbae, 0x000011 } }, { { 0xc1d7cda, 0xedc6e235, 0xd8b039b5, 0x9ab7af14, 0x731145e2, 0x10ec5606, 0x3117efed, 0xf4da84e, 0x1fdbd39a, 0x8ced9fe, 0x729cd0c9, 0x41a9e370, 0x9bf1b197, 0x1e39383f, 0x1c92d9ac, 0xcbac851a, 0x000064 }, { 0xec89b5e, 0xccb8e0e3, 0x5dae005f, 0xd3c2ae5, 0x380cc8c5, 0xb8948b89, 0x23d08fe2, 0x3fb908d0, 0x9136edb6, 0x412f1fb7, 0xaf6133aa, 0x90bc2f, 0x115f29d2, 0xfed7365d, 0x3a270565, 0x21b07587, 0x0000ee }, { 0x5933b12f, 0x2813ff1c, 0xbf3c01ad, 0x9c00eb6d, 0x9b5cf25c, 0x57961aed, 0x83166e56, 0xfd42cd2b, 0x97610a02, 0x7f233c44, 0x24af1be1, 0x347df52f, 0x2c27dda2, 0x4f096f88, 0x2cd5111e, 0x53318b87, 0x0000e9 } }, { { 0x11e7348c, 0x7f1f946f, 0x6c8dd1b9, 0x49133a0d, 0x1e9ae601, 0xd4caa40f, 0xc400e1a4, 0x44ea6331, 0x876f279d, 0x110595ff, 0x901511d4, 0xcdfbee68, 0x4137f5bc, 0x19f3be07, 0x6ac8b135, 0x37ca8563, 0x000176 }, { 0x835269, 0x6039e142, 0x83e52fe, 0xb588c8f3, 0xe0965400, 0x2289f561, 0xe161e9f1, 0xb6eda226, 0x78357a80, 0x7945a3f2, 0xca7dcee2, 0x574ae18d, 0x588846ca, 0x3c0cdc04, 0x6bcd265c, 0xf5ab4111, 0x0000bf }, { 0x1b9876a8, 0xd8f1fcd9, 0x3959ae72, 0x547d3cc0, 0xe2ef8471, 0xdb93be4e, 0xb9172dd5, 0xc931c919, 0x614c2d1c, 0xb1eeeb7c, 0xa8d45c61, 0x9ab36308, 0x96017c6, 0x9cca2d9, 0x63aac387, 0xa7bb34aa, 0x00013a } }, { { 0xed439fc7, 0x3126f9bb, 0x817b186d, 0x42066243, 0x2e9be3d2, 0xf1cf745f, 0x5e9a557b, 0x2b4ad919, 0xcf892629, 0x99a1f277, 0x843d91d3, 0x362c7f7, 0xab02fdc6, 0xde227e4b, 0x459ce213, 0x3dfc5ecf, 0x00006d }, { 0xf2ad7fb3, 0x28700ac4, 0x72a750a5, 0x46c56855, 0x2f1edf1e, 0x66df8a03, 0x5ff8e3e1, 0x7a8e0205, 0x5b3c1e04, 0xee635cf2, 0x3700d829, 0x8529eca2, 0x73ab59c9, 0xba1c96a1, 0xd26e09c7, 0x2a119c67, 0x0001d7 }, { 0xb8a18fa1, 0x7ad5ca39, 0x46db48fa, 0xb5468b5, 0xe04f2b0e, 0xfe6dca86, 0xf09b9007, 0x23672289, 0xef6eac36, 0xcaf9546e, 0xa29159c7, 0x8a2d28f7, 0xb33b6811, 0xa17097df, 0xafb4e74c, 0x7c06cf0d, 0x000134 } }, { { 0xeddf0682, 0x52cdc902, 0xd77afd57, 0xfe50d90f, 0x9b8467de, 0xec1ca65a, 0xb01da8ff, 0xb8378bb7, 0x486da87f, 0x7a4ae758, 0xce17fec7, 0xd8ca70ee, 0xdbe79288, 0x44134f2b, 0xc8c6ccb, 0xaf76b254, 0x000015 }, { 0xa453841f, 0xa5f654fb, 0x52d4ba9e, 0xd01c2a09, 0x639f214b, 0xea868b67, 0x755bc8c6, 0x3e3d2086, 0xa23a80dd, 0x69a180e8, 0x18a698ca, 0xbb9b466b, 0xe7ab3291, 0xe2cbd013, 0xf40f3a27, 0xa78b63f2, 0x000178 }, { 0xdff7d75b, 0x1866f51a, 0xd9dd4dcc, 0x1c3328c6, 0x5f97856d, 0xb8b8db17, 0xae4dc54f, 0xe569cd5b, 0x9b7c0d05, 0x87313a5f, 0x8a791338, 0x2322f705, 0x1df8c59c, 0xa51473c3, 0xf5ae6690, 0xde98be0f, 0x0001f3 } }, { { 0xba092bbf, 0xe3be5dc7, 0xbdaa30ec, 0x249d52b2, 0x11c3e015, 0x8fe5bef4, 0x69b5eeaf, 0xc07a21e7, 0xf20afec2, 0x217e48c9, 0x9b9b7d6c, 0x3f3aae6d, 0x5986128, 0x90d5f775, 0x5a9345d, 0xa157d181, 0x0000b0 }, { 0xc8dfd54e, 0x9b7d06f7, 0xbb143c61, 0x39efabd8, 0xf180368, 0x5e6f8d84, 0x74bd32fd, 0x8dcbdb36, 0xc95934f5, 0x9d0fe27c, 0x877212e1, 0xafa89f24, 0xcbaedac8, 0x354ee234, 0x7a1d73cb, 0x6625a554, 0x00001f }, { 0x5b23b16c, 0xb3fbbb7, 0xb65648a7, 0xa7639510, 0x145de75f, 0x2df21e72, 0xc77ae633, 0xfd330cef, 0xa0490de7, 0x6f6de53e, 0x1150552a, 0xc97710e7, 0x63b587a2, 0x229a683c, 0x1286790b, 0xfab0945f, 0x0000de } }, { { 0x3f9f16e9, 0x37eb7659, 0xdc61c527, 0x9e6a2681, 0x887c6461, 0x678e0cd, 0x3e9ef451, 0x943564a3, 0xcfcd1b3b, 0xfe9e0a17, 0x391cae24, 0xea2a9b39, 0x558324fb, 0x617da402, 0x2053e007, 0x373e82e4, 00000000 }, { 0xd29549db, 0x51d26602, 0xebd052a3, 0x69f8e57f, 0xab10071, 0xcf944a40, 0x2ffdac7b, 0xa5eb1009, 0x819b58bb, 0x8fed9a53, 0xafd546a6, 0xf307bfdc, 0xb054aec2, 0xe78df7e3, 0x29f2c205, 0x2315be63, 0x0000b0 }, { 0xd3c1173e, 0x41c70a4d, 0x6ebd1f48, 0x983aa052, 0xea3896b8, 0x803172fb, 0x54ea2bbe, 0x943f8797, 0xf39f27eb, 0x33a2bf79, 0xdc8847e0, 0xa64f88d9, 0xaabf7f61, 0x65c5378d, 0x53c7c30e, 0xfbb7f721, 0x000199 } }, { { 0xcd44d8b3, 0x4e4b6c27, 0x7f51dea6, 0x213fe4cd, 0x758aed49, 0x886d4747, 0xd114a7c2, 0xa7c5b218, 0xe7d1cabb, 0xf675fb50, 0x54931b08, 0xaaa36d0, 0x9595dcd1, 0x88c54e25, 0x9d340940, 0x437b6dc3, 0x0001c6 }, { 0x1c0299e5, 0x478fa951, 0xdd9a7967, 0xfd607e80, 0xe7172570, 0x1667d785, 0xb3eea0de, 0x95e6d977, 0x5a421620, 0x8a15c967, 0x1fabc4a7, 0xd1630483, 0x3437e3c0, 0xf08f6027, 0x7e70d021, 0x795d960, 0x00005c }, { 0x60af45fc, 0x581b839a, 0x56fcf094, 0x4fb75bac, 0x2bf57edc, 0x916de298, 0x6a3b8a4e, 0x4fed6782, 0xa3e791f2, 0x6bc8bfc3, 0xcefd21f8, 0xa4603a7e, 0xd6ec4a90, 0xca6ad534, 0xdafc1ee3, 0x7a53b4ea, 0x0000cb } }, { { 0xd36532a2, 0xb2b8999f, 0x9c6939ed, 0x8e7e9567, 0xfc237bfe, 0x4aaa9279, 0x5ce9afa4, 0x9ac69f38, 0xdef42001, 0x61857b60, 0xdf997a8b, 0x29d54334, 0x23d919a6, 0x2447c4c1, 0x231c1fd3, 0x2ebd0087, 0x000182 }, { 0xfbaf47ec, 0x57c1e846, 0x47d13f72, 0xc8e9aee6, 0xb13ddc0, 0xb86ace99, 0x164de138, 0xc3d402ed, 0xe5d4b754, 0xbf2fd30a, 0x35d524fa, 0xa5694fc1, 0xf9242f23, 0x1b5f2b56, 0xe4bce1a8, 0x56798010, 0x00011e }, { 0x71551cee, 0x68566bd0, 0x8da9b7ec, 0x4aeb6f53, 0xc29bc49f, 0x91acc259, 0xb8dfb3fd, 0x8739b0f, 0x15996c6d, 0x4d6871ea, 0x72cfc525, 0xf04b5498, 0x9a933170, 0x1f51346, 0xa2684890, 0x27edcb3f, 0x00004a } }, { { 0x2925dc46, 0xeded5b01, 0x456fd91, 0xab9049f8, 0x5546b95d, 0xf7ef60c6, 0x528d31cb, 0x5c1d759b, 0x75c1dce8, 0x2b7cacc4, 0xef12fc1b, 0xaa9a3824, 0x3f0ffae4, 0xc880b681, 0xbbec9146, 0x242dd5a1, 0x000150 }, { 0x50df0fd9, 0xa08bc534, 0xe7789bc2, 0x2dd9f964, 0xed477572, 0xe0fd825d, 0x32b39282, 0xbd7af448, 0x61961536, 0x8086a487, 0xc94468bb, 0xf772dd10, 0x5477cfe9, 0x1e6f44e, 0xf0cc360f, 0x3301acdb, 0x0000d9 }, { 0xc619edf3, 0x5c8bf1d2, 0x720b394b, 0x8ada7b51, 0x2589424f, 0xd45e0279, 0x9f787c9e, 0xef35170a, 0xf2b881e7, 0x192582f9, 0xfbf1a487, 0xa3eb3b92, 0xd52225b2, 0xaf8cbfd0, 0xbea365d4, 0xa29f040d, 0x00002d } }, { { 0x2c78d705, 0x9dd99d7f, 0x2940a8ae, 0x8fb20840, 0x8e22eefc, 0x2580609c, 0xff6ebf93, 0x57d2f0e9, 0xfb8cde8b, 0x4fdd06dc, 0xb102454d, 0x5293b37e, 0xba318625, 0xcdcb4fbc, 0xe8cfffae, 0x99af60e2, 0x00011a }, { 0x1b9657ab, 0x308a205a, 0x8dbfff8c, 0x14632138, 0x9333fabb, 0xde540d92, 0xcd2f6e58, 0x5dc00e68, 0xbf0987b1, 0x6cbfdbd2, 0x36eec24e, 0x3f9f9efc, 0xe30775cd, 0xf4d38b35, 0x9ef7a335, 0x842aa7b2, 0x00003e }, { 0xcc270847, 0x387de1dd, 0xdbb7ec2, 0x8716df81, 0xed656007, 0x86eb617b, 0x746e3002, 0x456accda, 0x925f1f5f, 0x86d41d3, 0x4e4323a4, 0x698096ca, 0x741adcd4, 0x4d364f37, 0x6b4e6df7, 0x771fed20, 0x000055 } } }, { { { 0x48e16015, 0xa474f924, 0x12d14ff9, 0x7da27c4c, 0x9b99a143, 0x2143dc7, 0xd24d245c, 0x5e7262de, 0x3cf3c8f, 0x887a915a, 0x1819a0f, 0xbe8e4b99, 0x9945a3e5, 0xb98b2e46, 0x35807f80, 0xc06c2021, 0x0001d8 }, { 0xc96ed870, 0xbb556872, 0x3b88ac02, 0xc4e900bc, 0xe8d57467, 0xce0131b7, 0xf0042575, 0xc633647, 0x9c27f653, 0x38d9fa1f, 0xecf746b7, 0xf57d6103, 0x9317ae0b, 0x051bce, 0x5cbaf430, 0x75267309, 0x00003f }, { 0xa47660b3, 0x9b9e0e71, 0x3dfa6cc1, 0x199262a9, 0x63229102, 0x87ecdb63, 0x89b254e7, 0x77d4cf6b, 0xac464252, 0x112961fc, 0xbce8730, 0xd954346c, 0x8e41f17f, 0xae48c17d, 0x3713effb, 0x1db2fd87, 0x00015d } }, { { 0xe656744f, 0x2641526f, 0xedc61e2, 0xa5b45079, 0x5dc1a308, 0x21aae72d, 0x78de026, 0xf064a6c0, 0x824d7c67, 0x548cf5dd, 0xfc533a28, 0xe8d7e5d0, 0x42316672, 0x1c88a09f, 0xcc078d09, 0x9401ec48, 0x0001bf }, { 0xfde4168a, 0xfd73c02e, 0x15da0eb5, 0xe40d65e1, 0x895f10e3, 0x1d80c86c, 0x20e9c98c, 0xae044569, 0xcddcb719, 0x98054335, 0xe3d6bcda, 0x134031eb, 0x892f6aa1, 0x38842e2e, 0x2445ff1, 0x930ea012, 0x0001a9 }, { 0xcd5a41de, 0x6737638e, 0x641730ae, 0x2a8b6934, 0x7fe16088, 0x1850de70, 0xbf472204, 0x8aa1bd44, 0x9d3bac42, 0x7fa095f3, 0xed56a241, 0xf2dfc325, 0xf2f6e08f, 0x955cf91c, 0x2abff271, 0xb706b8c, 0x000141 } }, { { 0x25911450, 0x6e6d2377, 0x7be2b3e, 0x778ab06b, 0xcbc86682, 0x43c6c7e3, 0xff6c1118, 0x650430a3, 0xcf7cab72, 0xcc6391ee, 0xe26158b5, 0x8647cc65, 0xcf2f028d, 0xc1878750, 0x9537e03c, 0xd6896747, 0x00003b }, { 0xc0b03506, 0x60d29327, 0x9e41d888, 0x5aa5fde7, 0xbbf5a617, 0xfc58900a, 0x2da9e492, 0xf71b3408, 0xb94e9574, 0xcbb9c80b, 0x6543a19a, 0x50c98e0e, 0xae8a7e92, 0x7d3104e1, 0x11790b16, 0x46aa64d2, 0x0000ee }, { 0x499ff5e, 0xd4e0f79f, 0xb5ddee80, 0x97e4bb6a, 0xcdade030, 0xb31c199e, 0x366c7be6, 0x998c7aa0, 0x8f4c5f02, 0x3f77391b, 0xd38afbb9, 0x32a461e2, 0x332ec31a, 0x60e4d1f1, 0x96f45d38, 0x12554570, 0x000196 } }, { { 0xe43e8812, 0xc8259ad5, 0x5a870809, 0xe4c9f454, 0xad81643f, 0xfcc9120e, 0x7a754075, 0xb4907413, 0x9f4332e1, 0xc9fae193, 0x6fd5f24b, 0x5ac9d9dd, 0xe81a31fd, 0xf5237ac0, 0xfdc2c08d, 0xa5365641, 0x00010f }, { 0xf1227a57, 0xc4529536, 0x1cb573a8, 0x7ba76f12, 0xe59c7a37, 0x423d5de9, 0x2f6ae20c, 0x2764d86c, 0x1d530c07, 0xb45a5c56, 0x86428887, 0x2c570064, 0x10196055, 0xa2ab7882, 0xca052f94, 0x1f8a46d4, 0x000181 }, { 0x82ee1b4f, 0x48563f94, 0x7850e3e8, 0x54572c8, 0xf36e520d, 0xf5f518f7, 0xd9cd4a1d, 0x418143ee, 0x79693668, 0xac5cf6c6, 0x2842c946, 0x6077c412, 0x33b62074, 0xface2d34, 0x7926850, 0x81cb653c, 0x00008f } }, { { 0x788e2394, 0x97cb14ab, 0x4a51bdd4, 0x4ede00a9, 0xa30da736, 0x76a1aad2, 0x31f0fb68, 0xdb843e51, 0xeeda9d17, 0xcba71759, 0xcef73ab2, 0x5eb80a59, 0xa6f45388, 0x61a0e869, 0xb9368a96, 0xc82e2013, 0x00013f }, { 0x3d05ae73, 0x997ac113, 0x4b3c5c2f, 0x122b36d3, 0xcc2f11fe, 0xd6d9cf1f, 0xc323d64c, 0x15bad31c, 0x1568c449, 0xcc80f1ce, 0x1a68d0f5, 0xf68d7376, 0xd9b28ade, 0x98c28f03, 0x10138bf8, 0x77352d83, 0x000196 }, { 0x36e9605b, 0x49109ab5, 0x99c0b959, 0x786d2511, 0x64abf258, 0x678cf856, 0xd117c27a, 0x67f536e5, 0xc9e2010f, 0xd0ac17b, 0xee14d12a, 0x4b76191, 0x68cf251d, 0x3ff1d18c, 0xd068cd96, 0xe1add2ca, 0x00004f } }, { { 0xe6412239, 0x30f35e92, 0x2d29788d, 0xf3c02e9c, 0xd3681a84, 0x4f804565, 0xa27a86b2, 0xa5fd9665, 0x9880d80, 0x2b795573, 0x929fb385, 0xf0aca0d7, 0xbc4dc845, 0x21afbb7a, 0xcc7d40bb, 0xa4b67f70, 0x0001f6 }, { 0x60aec6a7, 0x8788b01b, 0xc1e01a4b, 0xf4154c02, 0xe036421c, 0x102aeba6, 0x7c47e107, 0xf4c9b663, 0xdbcbca61, 0x94f5db2d, 0x1e60e043, 0xd8c157da, 0xa2ae36a, 0x11d60257, 0x5371130e, 0x160fda2, 0x000050 }, { 0x4b02b43e, 0xdbc6f5f, 0x5e9216e0, 0x10921dd1, 0xd1d09e55, 0x7c9c1865, 0x52410f25, 0xc919dbb5, 0xc231c7e8, 0x4aff382b, 0xab18cf93, 0xfc19c824, 0x853c22fe, 0x3086d5f2, 0x8d9f8a8f, 0x9bebf4e3, 0x0001eb } }, { { 0x5626f390, 0x95ffb061, 0x20824319, 0xe69df616, 0x46829aff, 0x8bf924dd, 0x28b7c711, 0x224c08ec, 0x84823a2c, 0x3e151fa9, 0x1505d945, 0xafdb5c4e, 0xa08c2610, 0x831c34d8, 0xc9369f5e, 0x57b2917e, 0x00001f }, { 0x92fc9677, 0xd93ef704, 0xb92a1f25, 0x3142d68a, 0xc3ad3244, 0xffdd46eb, 0x10b88fbd, 0x54ecd3a5, 0x4e333ca8, 0x8e9ea887, 0xed8feefd, 0x892630a, 0x93552c87, 0x4875d738, 0x41f2c03e, 0x955775d8, 0x000038 }, { 0x3e589af6, 0x2e4e039f, 0x830dfb15, 0x1ffdff40, 0xf5329f1a, 0x6ee1419c, 0x56b6b98c, 0x8e030f45, 0x2f1d6868, 0x2459fac0, 0x2967f8ac, 0x71eb6944, 0x74fee0ca, 0x2276cc71, 0x4043299d, 0x52a049e8, 0x0000ab } }, { { 0x928333a3, 0x60ba3bac, 0x2874ae5f, 0x8e2ba109, 0xfbff205f, 0x6f8b7655, 0xde71a4fe, 0x3815829, 0xb64c7d7b, 0x84219d4e, 0x7c0ef127, 0xad0eb256, 0x25f97cb6, 0x953db74d, 0x19fc1cac, 0x4678ee, 0x00004c }, { 0x50d0eb6, 0xc7798629, 0x503fd4f1, 0x29e859f1, 0x347e1ed1, 0x77873b9c, 0x27789e60, 0x2dfcfc1f, 0xd41f35cc, 0xa0ade3e9, 0xa8e897e2, 0x31e5d0a1, 0xd19f8365, 0xbf38721f, 0xfceae4fb, 0x43ac898c, 0x000163 }, { 0x3b029f63, 0x47fecddc, 0x2cc12923, 0x998a7a89, 0x2ffafcf3, 0x56524f1a, 0x18fdaea8, 0x971a21ec, 0x4c566933, 0xe6b89038, 0xa9200fe5, 0x744d48d5, 0x7ce4d5ec, 0x62678dae, 0xe728b684, 0x6ce04355, 0x000036 } }, { { 0xd5c45b2d, 0x714bf705, 0x5e914c68, 0x40997385, 0x86381b1d, 0x8f933232, 0x74c97b3, 0x13ac1fb0, 0xf2ed6db1, 0xa5be6747, 0xa3bc3f61, 0xd7bb92f7, 0xdf3a9e6b, 0x68f3ff0f, 0x10a40d1f, 0x5fea45a8, 0x00012c }, { 0xaaef94d, 0x6c6a8489, 0xc7167867, 0x580cdf51, 0xebf4c236, 0x67063903, 0xcff13b3e, 0xa004fb69, 0x23a82a7, 0x345e8a3f, 0x121c5e16, 0x55b6e44, 0xb684fae1, 0x9475504a, 0x6946ae6e, 0x65ebfa85, 0x000014 }, { 0xf8223fad, 0x9b5d6aec, 0xfd3e64a2, 0xb45fdeec, 0xf9d83c7a, 0xef122904, 0x4d64ebfe, 0x58b21478, 0x84f6698a, 0xa13dcbb1, 0xef263b55, 0x8ff5342f, 0x55e23176, 0xd2798937, 0xadf7c311, 0x3e24e379, 0x000013 } }, { { 0x457d5191, 0x7a463229, 0x3cecc85, 0x86b2b22a, 0xd2f3910, 0xaa82131d, 0x9a07fb1a, 0x8bc54b25, 0xb8f566bf, 0x60f9689, 0x747e690e, 0x93188e4f, 0x28fe1917, 0x751e7ca3, 0x5cee350d, 0x6854f98a, 0x0000cf }, { 0x506949fe, 0x87c8b73c, 0xcc56ea05, 0x4112aeab, 0x434aa82e, 0x1a6fc43f, 0xf3e5d8e9, 0xc9e4b038, 0xd2c8d6a9, 0xf84c56da, 0x5668e575, 0x977de455, 0xf7934552, 0x3aa80b6d, 0x73751fac, 0x9b210a9c, 0x0000e4 }, { 0xad460ef, 0xc291a2c1, 0xc91d9c33, 0x9f95120c, 0x727a60bc, 0x21b836d4, 0x45caadc7, 0xf51ed088, 0x66b29a7a, 0xbc742152, 0x683fab8c, 0x8b06c745, 0x9fbad74e, 0xd129c8fa, 0x9adee6c2, 0x426180b2, 0x00015e } }, { { 0xdb0a069d, 0x1e3913bd, 0xd1faf42c, 0x39810015, 0xdb47033e, 0x8cf7c079, 0x424d5adb, 0x6ed4f4ec, 0x925924e9, 0x881cd9e, 0xebffe57a, 0x8065300b, 0x82413501, 0x35d42cb0, 0xc13aff0c, 0x6826bd3e, 0x000197 }, { 0x4eba1678, 0xfcd99a4c, 0x8dd1118c, 0x45b73552, 0x55bbe699, 0xfd0a60c5, 0xbe06e803, 0xd4085177, 0x6d0dff8d, 0x293c1a2b, 0x4cce8c54, 0xf9dee21a, 0x7eadfae, 0x62f4cf82, 0xbab01428, 0x36dd7d9, 0x0000a6 }, { 0xde1debce, 0x63fc55c8, 0x14eab811, 0x2b05db6a, 0x34efb612, 0xd9af9bfd, 0xf02c8df1, 0xcdbb393a, 0x602e5e9c, 0x120dc9f0, 0xc46c8d68, 0xde8c8211, 0xb890031e, 0x64744bc3, 0x7d20d88b, 0x51385bed, 0x0001d7 } }, { { 0x87ade2f8, 0x4928c9fa, 0x80013ec3, 0x987f9606, 0xf8c0602c, 0x198d0b55, 0x2b9a5f08, 0xc88bb215, 0xad438f11, 0x72809172, 0x5b674c71, 0x5d527617, 0xac856b05, 0xd4e1d5b0, 0x1703dd5d, 0x5d61563, 0x0000c9 }, { 0x33e028da, 0x94b4eab, 0x1c48ab2a, 0xe65e5da8, 0xd3c59d4c, 0x33219797, 0x2c218f99, 0x98862bc3, 0x91b70e43, 0xac4fb1b, 0xc913b34e, 0x3ac9b088, 0x3ebbb512, 0x99f24c47, 0x5c552679, 0x1190ac5f, 0x00003f }, { 0xfdd05f14, 0x22a18fab, 0x6ab692d4, 0x91b55fff, 0xbb0823f0, 0xd4cf7ffa, 0xca67b449, 0x1250a7c1, 0x2788dd37, 0x3225881, 0x70393268, 0xcc2c1f17, 0x4827a99, 0xcbfe0021, 0x633c458e, 0x636f2594, 0x00004d } }, { { 0x4032dd1e, 0xb06a0289, 0x60bc654b, 0x7b77f861, 0x1059ea41, 0xbb75afaf, 0xa4fb7133, 0x82d85387, 0x6c7f1130, 0xdb92e659, 0x42cabf4a, 0xb45f6898, 0x6d39868e, 0x183f6214, 0x29bdc792, 0xcd85e69e, 0x0001de }, { 0xd9320738, 0x88d0a83e, 0x6da31cf2, 0x89d47564, 0x7b09a958, 0x4a986fc8, 0xb55d386a, 0xff02d928, 0x5f196ea1, 0x880e2f42, 0xf042fe15, 0xb432b9f7, 0x8aec37f2, 0x2117eec0, 0xb0a030a8, 0xb4676551, 0x000145 }, { 0x66947a91, 0xb600461b, 0xd097aca, 0x5d155606, 0x8df1bd8f, 0xe44d9920, 0x4fe1cf1d, 0xe2af2b91, 0xef987f22, 0x138230f6, 0xecd4a41e, 0x2eef03c8, 0xa65ee49c, 0x7c99663b, 0xabd3d71, 0x2e4162c2, 0x0000e4 } }, { { 0xa210ad1d, 0x7dbc17ef, 0xa88488c1, 0x32b6d438, 0x27d48b7a, 0xc41f7743, 0x6aadb4a9, 0x78f05cea, 0x7e8cc389, 0x1bf25f59, 0xdac4b02e, 0x37a87223, 0xee5d5098, 0x5063d31f, 0xf283e267, 0xb9f6a6d, 0x0000bb }, { 0xf77844b, 0x39edab65, 0x9fe2d939, 0x559740d0, 0x9a3a7868, 0x60d70f39, 0xcfd267e2, 0x32b29012, 0x8b6e6a37, 0x3068b140, 0x3e19d9be, 0xb67b6be9, 0x4c3e17f3, 0xc65258e1, 0x9e40d002, 0x1d9796f2, 0x0001f0 }, { 0xb2c1181e, 0x91fdba83, 0x6961534b, 0x57d4e1cb, 0xe2f872a4, 0x903f7660, 0x642e1aa5, 0xa4d0396, 0x5e0cae94, 0x99177f56, 0x623d1156, 0x8689faab, 0xb2852385, 0xbf37f8d2, 0xe54a85db, 0x6a00e125, 0x00008d } }, { { 0x8d9075bf, 0xfd4e2f61, 0x9350e3d1, 0x53ae4ea8, 0xc852d4f8, 0x5b528967, 0x41a8a624, 0x527369c5, 0xa410eb98, 0xa1f3a24a, 0x2d059cf0, 0x3191dcb4, 0x1d530b95, 0x1a3c5ead, 0xe8fa2e2b, 0x994a8af7, 0x000045 }, { 0xc205ebe3, 0x34fdbf6, 0xc25e6c88, 0x7dfd696d, 0x948dcc71, 0xc6aa95f5, 0xd15cb2c7, 0x347a5df2, 0xd4a2f670, 0x13897d6e, 0x38afb73c, 0x2cf29b93, 0xb16c167d, 0xa977a5b9, 0x68ae27b1, 0xfc81a3b7, 0x00007b }, { 0x8462a21b, 0xf6a2ea43, 0xcbe41326, 0x7e4ad9d4, 0xc0bcef10, 0x7672a1a1, 0x15351bc4, 0xbb81fd41, 0xe64dab1f, 0x3960fac7, 0x9ace59c0, 0x6557fe87, 0xe47608ba, 0x1878e203, 0x3513e4f7, 0x19e215de, 0x000056 } } }, { { { 0x652993a1, 0x4832ed06, 0x52f4825d, 0xb75dcec1, 0xa1ec596a, 0x55feb8c4, 0xd25a55e6, 0xb81252eb, 0x859624ba, 0xd8a38fa8, 0xaef5af22, 0xa23d2ae0, 0xf3887ae1, 0x9f1f3c94, 0x78ef6880, 0x66127fbd, 0x0001d3 }, { 0xccfc8300, 0x90ac075a, 0xeabf76c, 0x29f53ded, 0x9f946451, 0xedb9293, 0x61c13206, 0xd0f03dd0, 0x936c674a, 0x34643cad, 0xd6f100b7, 0xb9535e29, 0xc8190b2e, 0x3ba4b870, 0x94486acb, 0xd3ba1e8f, 0x0000be }, { 0x6c2c0bd5, 0x6210ec75, 0x416a3639, 0xaf79f6dd, 0x9465ec26, 0x902d5834, 0x9855423a, 0x6cca5c70, 0x323ddc09, 0x5b55c637, 0x7431d09, 0x6200e077, 0xfa7d99d2, 0x995d65f0, 0xf7dd4257, 0x202563da, 0x0000fc } }, { { 0x9601c76, 0x711b8203, 0xd8b05ce8, 0x9beffefe, 0x17f89165, 0xa24d63b2, 0xea782d9d, 0xb9d6e049, 0x14bb50a4, 0x6f42a7d5, 0xe929a66a, 0x10a3fe51, 0x8c4a4d2a, 0xa143a7da, 0x84d6f279, 0x71fc7c1e, 0x00004a }, { 0x3d005009, 0x5263efea, 0xcc8b1f09, 0xb614c065, 0xe8a6bf23, 0xf382d45c, 0x141ad608, 0xafc113d9, 0xf6560abb, 0x7a8a0a9b, 0xe9e06062, 0x9f2ba087, 0xdb7aaec0, 0x46945ff4, 0x813068ad, 0xcaf1db66, 00000000 }, { 0xe49bab09, 0x898fc451, 0x69a7cbf9, 0x7d431f4b, 0x34101ac, 0x6c0e8e92, 0xba6c0c55, 0x1bd7cb7d, 0x9321f5ad, 0x776b2dab, 0x837590da, 0x56d5515f, 0xcdb909fe, 0xf7d1a76b, 0x8b26425b, 0xc9434380, 0x000095 } }, { { 0xb51fa4ff, 0x7a824d82, 0xfc03acfb, 0xaf0836aa, 0x644dd2dd, 0x4e10eff9, 0xe7c496c2, 0x807863e8, 0x3436dd63, 0x208b1213, 0xec2c61eb, 0x4a83f67d, 0x68d53955, 0x52b0d10b, 0xc5c81a53, 0x91e03545, 0x000072 }, { 0x2d683236, 0xe6508f9d, 0x9be85466, 0xb8f8f33a, 0x4da5e426, 0xd1a2cc89, 0x70f242f4, 0x13fe1c98, 0xa636d8c0, 0xf201e1a1, 0xc7cde1f7, 0x69a96175, 0xfb4a0e7c, 0x58288906, 0x5e38e8e8, 0xb35b1241, 0x0001f8 }, { 0x5d1156ae, 0xfcf6000d, 0x8f3b4988, 0x26d1ddb0, 0x57d78ca4, 0x6cc7d47c, 0x2de63780, 0xad4bd599, 0x63eec623, 0x75b328eb, 0x4b30cce3, 0xb06ffdeb, 0xe1abbe8f, 0x8a5dcc1, 0x84b872a7, 0x9f0c023b, 0x00012c } }, { { 0x341b3967, 0x91d1cee2, 0xa578fdaa, 0x3575594a, 0xd257e961, 0x661f6fad, 0xc0430367, 0xfe8394d9, 0x212d0830, 0x7d13745e, 0x6369335f, 0xe0da6c2, 0xa1e58a38, 0xd6af6322, 0xf04d510d, 0x89af7900, 0x000095 }, { 0xcc3ef5c1, 0x232d8330, 0x1748650a, 0xd32a1cc, 0x175b79c0, 0x66d03455, 0xc3b5b448, 0x3a59bbc7, 0xf78d7033, 0x48816f20, 0xb43ca950, 0x96459a9a, 0x30a95018, 0x8d9de144, 0x1f837788, 0x49cb3a7e, 0x0001ac }, { 0x5635bb82, 0x4938035a, 0x10440a5c, 0x72e73afc, 0xf35fe5ca, 0x423403b3, 0xed4de3fa, 0x5da3a8c6, 0xc4bcc319, 0x917876fc, 0x2028cbae, 0xdfe340c3, 0xc9b9c506, 0x6bee3e36, 0x2f7e35f7, 0xccd1b29d, 0x000037 } }, { { 0x37beba69, 0x52612f6e, 0x23c83b8f, 0x58667cdf, 0xb649bb01, 0xffbfee2, 0x74d42e8a, 0x78d7c015, 0x616f889e, 0x99543c0, 0xf989d376, 0x1cb998b5, 0xcb766ce, 0x573b7149, 0x916b8406, 0x4b3c7d92, 0x00016b }, { 0x691f9d93, 0x446136b8, 0xfa2ee633, 0x2195062, 0xe1b83129, 0x536498e2, 0xc4d3fbc5, 0x5b3ea2b2, 0x79168a0, 0xb14f8cf0, 0x542d8d68, 0x6b249bf, 0x5889a8c3, 0x61607315, 0x44b562c3, 0x1d3280f6, 0x0000c0 }, { 0x2d558234, 0x9d539d3e, 0xaa6cf194, 0x99fba6cc, 0xcd576d5b, 0x254c85d6, 0x5b4eba0e, 0xddec7cfd, 0x344e9d61, 0xd7851ecd, 0x98d90c63, 0xc0f9e2f0, 0x7f71ea0c, 0x63e93ab9, 0x76bcd579, 0x790a620b, 0x0001ff } }, { { 0xf7a6e9db, 0xfb0624b1, 0xdd53cd4a, 0xf743267a, 0x57dc2b3d, 0xb7122aea, 0x990d5b73, 0x93065886, 0xec26d530, 0x75c55edc, 0x4abd26b8, 0x23c89998, 0x356bb0dd, 0xd883143e, 0x627e2e12, 0x6fbfdedc, 0x0000bf }, { 0x2a5474da, 0xfdd0c10c, 0x57639560, 0x94ba69fd, 0xb7c8ea2c, 0x72005b41, 0xfbd92c1d, 0x2af8e809, 0x8230fd21, 0x2dd78dc5, 0xd8d01168, 0x4ed02197, 0x6682319c, 0x9889230a, 0x746f203, 0x4a4f50fb, 0x0000db }, { 0x2bc3955f, 0x617ff353, 0x1180ad53, 0xbb003bc6, 0x4fd7e150, 0x6f7f900, 0xc1c39fcd, 0xbf35d2e3, 0x8800a40, 0xe3bcb1a9, 0xbe305815, 0xa7f3d75b, 0x8844912e, 0xfaea8ed8, 0x3dc459ae, 0xd217f8fd, 0x0000e9 } }, { { 0x7cc7800c, 0xe3736541, 0xaed7d967, 0x62d3cf83, 0xfa6617c2, 0x8d5a2f16, 0x90a5d9a3, 0xd23483d6, 0xa5fb373e, 0x2cb3192e, 0xd2e081cb, 0x356ab532, 0xc3c21c94, 0xa3be7abd, 0xa4fce257, 0x5d7a2653, 0x0001c7 }, { 0xa6c5ad0d, 0x80db6e59, 0x2dbad125, 0x39fdae7c, 0x18d8b1d, 0xa4091691, 0xaa0ea804, 0xee106f59, 0xb8792de0, 0xa736a4b5, 0xecab35dd, 0xa121a7f4, 0x1f9d17b0, 0x9341cb56, 0x39996e1, 0x6bca308c, 0x0001ab }, { 0x67f5de0d, 0x58c91c74, 0xde402275, 0xa1ed1393, 0x22cdb586, 0xc2203331, 0x6fc3c9f5, 0xa3db6b91, 0xead83c1f, 0xd6da3ce8, 0x9811551c, 0xee5dea88, 0xcbce5b5d, 0xc547734a, 0xd9b28971, 0xe26285e0, 0x0000f8 } }, { { 0xaf9bc266, 0xf8a35d90, 0xe21069c0, 0x41c4eae2, 0x79740ea2, 0xccb4a717, 0x9f90df6c, 0x285b84d1, 0x2fc11eb7, 0x15dcfdfc, 0xfa48b2de, 0xa09c3ac, 0xa4c0667c, 0x51a36dd1, 0x315e323, 0xbf03bbd2, 0x000039 }, { 0xd744a5ee, 0x3223a212, 0xe6e072, 0x902d37ef, 0x88b97ebd, 0x740446b4, 0xd139c1c0, 0x34fa2913, 0xe1cdcf0a, 0x57c71865, 0x4decd493, 0xb8224c07, 0x199ae63e, 0x18714db7, 0x76fdb780, 0x160ae6e7, 0x000014 }, { 0x49858aa4, 0xab631e86, 0x5c1bd9d3, 0xc0f5b4, 0xc63a33c8, 0x6c24f0e2, 0x76df9f83, 0xca9b47db, 0x3afe6bc, 0xe902b0f6, 0x6ab5a6a2, 0x30f4467f, 0x3982a25, 0x4c9708e3, 0x1460d2e, 0x7e68bc0e, 00000000 } }, { { 0x2ef8a2e7, 0x2d15bfe, 0xfc643f60, 0x7fda1a6c, 0x30643715, 0xc325f5fe, 0x56ca4485, 0x179d143f, 0x36735b69, 0xdd9e1aaa, 0xa9769f19, 0xf8340c7, 0x740cbc5f, 0x64134f65, 0x64d1c446, 0x25eb7382, 0x00003f }, { 0x37bf1729, 0xb300fb52, 0x64572826, 0xd1ffde9b, 0x1812a32e, 0xa6eee8b7, 0xd68214cb, 0xc02e689f, 0xd96f7219, 0xa25e6e06, 0x217a3634, 0x2fae1bdc, 0xb1f623e9, 0x8f0186c7, 0x242d2dea, 0x83939b54, 0x000125 }, { 0xf86cd205, 0x264fe53b, 0xb5c0e7da, 0x1d1a9dc9, 0x49ddaf33, 0x734f76e8, 0x24ecb21b, 0xd7a15da2, 0xceeeb4b5, 0xd381d22e, 0xab98782c, 0xc9d94907, 0x815096b5, 0xd2d7e017, 0xbea9c2ee, 0xa46eb9d5, 0x000116 } }, { { 0xca2f126f, 0xebe77f2c, 0xcc0429ac, 0xbcdb1e6d, 0x549b269d, 0xa7548940, 0x23bba8d, 0x7b473a3, 0x62740a7, 0xd5486f80, 0x2cfac0b7, 0xc4148ceb, 0x11fa3101, 0x598fbbaa, 0x7b3c3089, 0x85c6875b, 0x00017b }, { 0xb00c501d, 0x511e655, 0x66279d60, 0x7e63de2a, 0x1fd66364, 0x5fbb6749, 0x28028621, 0x5b8e747f, 0xb9070365, 0xc2148650, 0x1fbbb6c5, 0x51e4071f, 0xc9be6777, 0x14cc2820, 0xe951c734, 0xe8099943, 0x00019e }, { 0x900e6674, 0x76e8514b, 0x16cec112, 0x9216f215, 0x72987c4b, 0xc60bca6f, 0xe04d7cdb, 0x327513a3, 0x37edee19, 0x4fa68989, 0x82d6bcb7, 0x4886322c, 0xc34f03ab, 0x311b1a68, 0xc8c9e8e9, 0x43a7b17d, 0x0001f5 } }, { { 0xb8d7504d, 0xedd1a87a, 0xe13698f4, 0xb3bb9fbf, 0xc033369b, 0x649157ed, 0x6a8b40ae, 0xdaffb0b0, 0xbe5accec, 0xf45f6fb6, 0x75aa6012, 0x8f9f681a, 0xb2bd26ae, 0x84754986, 0x7ce02f47, 0x256097c9, 0x00001e }, { 0xbcdd6ac5, 0x4e714afa, 0x9efda86b, 0x50493bcf, 0x747eb26, 0xb59754e6, 0x66f3d655, 0x9376b0be, 0x629690e8, 0x2631cf4, 0xea4b0344, 0xfaa37e66, 0x30ab51f9, 0x6759e7ab, 0x947a4d0d, 0xf73c67c4, 0x0001ec }, { 0xba41d2e, 0x43e7f710, 0xdd60f428, 0xea0ca7c2, 0x5abbb819, 0x86703df4, 0x57e90c6, 0x310cd7ae, 0xcebf2834, 0x3f06299c, 0x4725bb2b, 0xa32bc864, 0x48aa0a1a, 0x93e5fa40, 0xae149670, 0x80abb80e, 0x000170 } }, { { 0x19fa717b, 0x3e9f8692, 0x1c5cf8ab, 0xf562b2f, 0x3fc6f9d9, 0x68904ef0, 0x5f232340, 0xf71d23f8, 0x8a921ea5, 0xa0056c7, 0x48ffdc73, 0x14a67171, 0xe4fca497, 0x6aa0e6dd, 0x93f54f42, 0xbb5f3e8f, 0x0001ba }, { 0x51760c14, 0xdb2b0924, 0x6de14189, 0xb61e62e6, 0x2a2cda2f, 0xe8aeb8a1, 0x950196fa, 0x3ffc806c, 0xe72f68e5, 0xf2ce6991, 0xafd8fe05, 0x4f4b4f4f, 0x6544c9db, 0xe7c23022, 0xd83cde38, 0x324fe13b, 0x0001bb }, { 0x8c4eb852, 0xf3661716, 0xacaba8ac, 0x3707691d, 0x2d2d4b82, 0x82031613, 0xf44ba00e, 0xa9732e8a, 0x4baa5924, 0x266e161f, 0xf0c2dd5, 0x86051ec5, 0x96f947fb, 0xffe81813, 0xa77cfb66, 0xd8df2f2d, 0x000083 } }, { { 0xb92b69d8, 0x86fa9c52, 0x9d07d160, 0x63d1710d, 0xfed97b44, 0x60104bdc, 0xdfbd86b6, 0x54a4df09, 0xc6b3d648, 0x9b164c6d, 0xf6b62936, 0x2417cb0d, 0xa61c5391, 0xfe8cfd01, 0x9d07c361, 0x5c3e10c6, 0x000009 }, { 0xebea8941, 0xe6b4878, 0xa6fc2756, 0xfdc92b22, 0xc10dd66d, 0xed2f36c5, 0xa0f45f37, 0x5d51369a, 0x487fd84a, 0x1dad0e98, 0xe0fbb142, 0x6ce44790, 0x11751f9a, 0x1985e081, 0xc5c80bbf, 0xe8a18c9c, 0x0001db }, { 0x3b3b9286, 0x71a6a8ec, 0xb496bea6, 0xae7eb343, 0xd37e0959, 0x8b3dcd86, 0x29c74c53, 0xf9505638, 0x56bc13bf, 0xcec7400a, 0x18a01407, 0xb562085e, 0x873ea051, 0x6f748124, 0x71869ff1, 0x314e8ba6, 0x0001f5 } }, { { 0x863e9849, 0x5deda07d, 0xa06aa10d, 0x37d2c7c6, 0x936e8c95, 0x684566b7, 0x4f35a79e, 0x4224466, 0xdbf4664d, 0x2f41ecfd, 0x68fa5bf9, 0xc0e827d1, 0xf2a5bd4, 0xef48fb73, 0x49b90cae, 0xb15a87c5, 0x00009b }, { 0x16714f33, 0xf8072e01, 0x20fee5a3, 0x3e52e534, 0xb5740e52, 0x20f25cc6, 0x72075c54, 0xb2d67b56, 0x7c170fa9, 0x21701c8a, 0xbbf707be, 0xf35e205a, 0x10c69535, 0xeae14900, 0xb7f20fcb, 0x86982072, 0x0001ba }, { 0x7fc519d7, 0x471d4b9f, 0x654002aa, 0x73c905bb, 0xb6ec5396, 0xe9284e90, 0xbed10e07, 0x99585871, 0x8a241eea, 0x44b7d13d, 0x34a51d96, 0x398ea0e6, 0x17548d35, 0x78cbb0eb, 0x868fd0e8, 0xfb5feb51, 0x000092 } }, { { 0x74729fd5, 0x714a0849, 0x52fa2491, 0xcfd3f0a, 0xd4574fc0, 0x4f53c251, 0x9cc88f8b, 0xad2056ec, 0xf0d51bd8, 0x8d9c7889, 0x96be48bd, 0x3de1bba4, 0x18bf650e, 0xe74dc732, 0x19caf60a, 0xea87a7d8, 0x000053 }, { 0x3cbd82d4, 0xea68f17c, 0x8efffb5e, 0x6010cd02, 0x4a4ac53e, 0x4a61dafb, 0x91e2b85a, 0x8d837009, 0x952bee24, 0x7381c2e6, 0xddf75fd7, 0x28119f72, 0xfbef7a90, 0x52042726, 0xa6c1bebb, 0xb0a357aa, 0x00004b }, { 0x43d28b5c, 0xf4865b22, 0xcdd425ee, 0x6c61f015, 0x684f0c2d, 0x5e223476, 0x637a8b6c, 0xb7774a77, 0x555cda8, 0xa7985895, 0xe196290e, 0xf8ad9218, 0xb2a0a057, 0x5cd3b285, 0x4e0f0de9, 0x369461a5, 0x00014d } } }, { { { 0xb741f301, 0x31d534d3, 0x93e400f2, 0xf95f8389, 0xf5a0ab14, 0xbef2b086, 0x69c64285, 0x5660a089, 0xe88eec95, 0x6ac11826, 0xa1e7c6cf, 0xa994d383, 0x74460d75, 0xecbcd344, 0xd150155b, 0xfee89650, 0x000124 }, { 0xcc063517, 0x8efa6e8f, 0xfe954b57, 0xe78d1512, 0xeabc06b0, 0x39ff1f1e, 0xa757ee99, 0x7fa69cd2, 0xae8c7663, 0xad0231d8, 0xbd252286, 0x19ad1e59, 0x8dbdb57c, 0xfb09d729, 0x47a1718a, 0x3b3c7fc9, 0x000068 }, { 0x140a8d4d, 0xc02b0cbb, 0x6d3166ee, 0x1fbe411e, 0x68640425, 0x68f54a1a, 0x7af93f19, 0xcdd4d1d, 0x66c06aac, 0xf4e21189, 0x1156afc2, 0x2ec182d5, 0x217b6c86, 0x821edbfc, 0xd9de8692, 0x92c4e0a8, 0x00003f } }, { { 0xa06f58a3, 0x330aea1d, 0xa600ee64, 0x90103fcf, 0x1fbff6b2, 0x1bff2b71, 0xfcff7c9, 0xf185262c, 0xe2a63c35, 0x92907819, 0x6a477b5f, 0x9f40e44b, 0x683a63bd, 0xb00df1c1, 0xb4633197, 0x9d289545, 0x000129 }, { 0x4f611b88, 0x9e3ba77d, 0x2a966236, 0x1b2f8bef, 0x6025a6e0, 0x6f8c2ed9, 0xf648b981, 0x18d377ba, 0x3bb5d019, 0x9bd9dfb2, 0xe0f06a6b, 0x9d6b40f8, 0x5ec6da9, 0x36fd5c34, 0x8ec07da8, 0xfdb3c512, 0x000139 }, { 0x6b9d416, 0x8e25b946, 0xdbc94780, 0x9c85a634, 0x5695f26f, 0xc45ae33e, 0xf2e4050, 0x1825b889, 0xffc810e8, 0xed19a70d, 0xa43562ab, 0xcdbe262c, 0xcaac058c, 0xb3b3c79c, 0x69d701c, 0x8878f5b7, 0x00007e } }, { { 0x86ec2c27, 0x5a398e74, 0x51516f71, 0x2fc08424, 0xb3316cd7, 0x602875ca, 0x170fa79b, 0xe71d6f80, 0x7c90beb1, 0x23464f7d, 0xc5fa33e7, 0x7cff635b, 0xa9bda16e, 0xcc41a070, 0xe6a7fdc7, 0x7aa20135, 0x000160 }, { 0x6bce8448, 0x5689cee9, 0x9011c90b, 0xacdabc6d, 0xae545edf, 0xe6538b75, 0x40fdd60e, 0xb039fd20, 0x346c4b9f, 0xdfbae795, 0xbe46f7a, 0x25bf1e0f, 0x87498c70, 0xe4968a5a, 0x4bd7c5ab, 0x6d560322, 0x00003a }, { 0x28d54475, 0xb5f0f464, 0x51095b0a, 0xe0ddd660, 0x76a890be, 0x74f0b414, 0x2149df9c, 0x44c37753, 0x83bf3808, 0x9da8076b, 0x7a876a3e, 0xe8c0588b, 0xd7a33780, 0xa58f7d7f, 0x7f70f4d6, 0x8c350dd4, 0x0000f3 } }, { { 0xf88b2f9b, 0x73c8614, 0xc27a28b1, 0xd9dbdafe, 0x69eed3e3, 0x9976b759, 0xaf10e1b6, 0x9e97f4c6, 0xf0fdd85e, 0x39fa913a, 0x7180b248, 0x18e6c965, 0xce004c10, 0xe77b3709, 0x4aafe890, 0x209a3503, 0x00011b }, { 0x9cd34f7d, 0x326cebd0, 0x2f35063e, 0xbd8f86d7, 0x7042d04b, 0x59eb459e, 0x3bfb071c, 0x86809039, 0x7420ffd5, 0xb8e872e4, 0xc421f9c8, 0x825d5e00, 0x66a6ebb0, 0x3bb43e83, 0x886b7fca, 0x78a17b9a, 0x0000a6 }, { 0x77da9a80, 0xc2a72c83, 0xc16ac3d3, 0x348169b9, 0x2515f09b, 0xbf35614a, 0x23354be5, 0xc3e5505c, 0xce9d7fc0, 0x1e32a8cc, 0xa5d24bab, 0xd8812697, 0xa13c834b, 0xc15e5191, 0x47b8278d, 0xcd8fc0ba, 0x0000bd } }, { { 0x9d759d20, 0x57420f0a, 0xacc9cdb4, 0x5e6087f9, 0x294d432d, 0x1207867b, 0xdf92a597, 0xe732a2fc, 0x11c7d8d0, 0xad4623bf, 0x6d4a3fec, 0x77afdb15, 0x766e4b13, 0x9d3b1f50, 0xdb4b5109, 0x37286bb4, 0x000003 }, { 0xcc7f188f, 0x83251e28, 0x587c855c, 0xda439ca2, 0x2b607f0f, 0xefa6f8e9, 0x938d39bf, 0xeb50c133, 0x60c5e747, 0xfd06eeed, 0xa7d4444f, 0xacf06e9d, 0x96d39be8, 0xe5e1a15c, 0x5dd08cdf, 0x15560673, 0x00019e }, { 0x92adb222, 0x5a054399, 0x41619708, 0xeaea8ebb, 0x15dd9033, 0xee3f0535, 0x8f438468, 0xe6673b08, 0x36f5f23d, 0x15518509, 0xb416ca52, 0x350d040d, 0xfa328ba9, 0xdab59253, 0x2902a43, 0x25c41c27, 0x0001e5 } }, { { 0xc613d097, 0x3d4f713c, 0x882d7439, 0x9f9b604f, 0x181ce92b, 0x68f0b7f1, 0x50270e4e, 0xf179d0a9, 0xa931edce, 0x47a0df2b, 0x69104756, 0x9454e5df, 0x72ad4bd1, 0x2eb3a15f, 0x1368ff81, 0xd27667f9, 0x000058 }, { 0x2783a31e, 0xe65c877f, 0xc81e0393, 0x516c74b2, 0x629a529e, 0x1b4f50ce, 0x6c739462, 0xc6f97e6f, 0x5f75bdbf, 0xda16cd8f, 0xbaeaec0e, 0xf53d2fd9, 0x48f1202c, 0x6bf22eb3, 0xa3ca66c7, 0x951d406a, 0x0000c3 }, { 0xe6d294cb, 0x5f8bd552, 0x88e11690, 0xf76b6a3e, 0x875de285, 0xf10560b9, 0x45ff7a62, 0xe8401c2d, 0x6d08d2d0, 0xf22a29e6, 0xdd2b7967, 0xba275e19, 0x40db0912, 0x910b462b, 0x89ef6054, 0xb3c33c9b, 0x0000b5 } }, { { 0x6e475d81, 0x151e4892, 0x18520e94, 0xc16b5b42, 0x51f53654, 0xa919a5b5, 0xb778a8c1, 0x37f4a88d, 0x3b23b292, 0x7a0fb933, 0x43aea470, 0xa7cba97c, 0x7f78b17d, 0x634bed98, 0xa9fe943d, 0xed57b544, 0x0000c1 }, { 0x7874653d, 0xaa81721a, 0xcf9cafbb, 0x1022aa45, 0x56e0b211, 0x970a9a06, 0x2e5d527d, 0x2ff807a8, 0x7b6c3161, 0xfdefafcf, 0x2967fa78, 0xeabecf9d, 0xa931cfaa, 0x96cc2859, 0xe35027dc, 0xd2ce8ca5, 0x000137 }, { 0xce19d0d7, 0xa1fcf6d1, 0xd68f9f70, 0x87891a97, 0xf58f6dd5, 0xcd87af02, 0xbc7cd035, 0x1036e5d4, 0x16c326c3, 0xc13b4732, 0x1c302144, 0x5a7dd300, 0xb3ec4bad, 0x30d4af7e, 0xfbd44204, 0x9fc18091, 0x00019a } }, { { 0x8c7a880a, 0x881616a8, 0x81e4983, 0xc988aa, 0x5fc2e602, 0x62ea11fc, 0xd4240c29, 0xc22b66e7, 0x3a0b3c1, 0xf6949242, 0xd469ef7a, 0x808448a6, 0x330c8492, 0x33a146a2, 0x998914da, 0x70493f2e, 0x000028 }, { 0xcc73e761, 0xe92877de, 0x74bfe33e, 0x901121d6, 0xb9f859c1, 0x61091dfe, 0x79f1a5f6, 0x44e58887, 0x68f41238, 0x2a899e09, 0x684164ce, 0xd6349222, 0x8d303060, 0x326738a5, 0xb4803ba5, 0x7f8a04f2, 0x0000da }, { 0xfb3cd6b1, 0x7adfc182, 0xd99de69b, 0xa7a374f, 0x76293d6a, 0x808e0a70, 0x1f96892e, 0x41b28bdb, 0x96958db0, 0x9afa5040, 0x9dba8e2e, 0x474aef7f, 0x1b256e08, 0xc2dc33b1, 0x1c1bba18, 0xa9e6bf29, 0x000025 } }, { { 0xc9190db4, 0x62613fb0, 0x46ea49e2, 0xf7ce1e99, 0xac264c7f, 0x344c4b09, 0x39c4d011, 0xf9aafa16, 0xe8bbbb84, 0x3315f8a2, 0xc6aa4514, 0x85fd43af, 0x1f5dfbc1, 0x3b30b884, 0x7f9e567d, 0x9b0a2bff, 0x0001eb }, { 0xf479a0cb, 0xceb78935, 0x225b5dc4, 0xd3f82f73, 0x9ff024d3, 0xa9911977, 0x7355161e, 0x612ef975, 0x48b97be, 0xacda0f9c, 0xb095fe93, 0x29bcfc95, 0x1d038c49, 0x4d2ffa8d, 0x3cc1671b, 0x2cbf1d9a, 0x000043 }, { 0x66e24ef5, 0xdaa7277c, 0x1657d79f, 0xf3ff2361, 0xd25b62fd, 0x11430045, 0x120c2c3b, 0x17d80a4c, 0xf78333f3, 0xddabe0b7, 0x596577be, 0x8dfa2938, 0xe408bea7, 0xb9d312aa, 0x7255b322, 0x52b7997f, 0x0000e7 } }, { { 0xc62c85b, 0x277fbe69, 0xf369be89, 0x623f1aca, 0x7ead58dc, 0x5e843b22, 0xd27d1996, 0x21f3f55a, 0xead5be7e, 0x64f72050, 0xcef31213, 0x833933b1, 0xb1e4c2df, 0xc173027d, 0xfeba64dd, 0xd0e0bd5d, 0x00019c }, { 0xe8b65655, 0x54246f93, 0xded7db99, 0xd3890d8c, 0x98947846, 0xb97d8638, 0x16baf7d0, 0x40a47c12, 0xd379fa15, 0xe0e9769, 0x15b3b021, 0x43981018, 0x62d32fb5, 0x1377f611, 0xdd5ef51e, 0xf8091806, 0x0001c1 }, { 0x16e3a10c, 0x434bf096, 0xf5cbfa62, 0x730a517c, 0x88d300be, 0x2c4c893c, 0x25ef0996, 0xd3c38bf9, 0x281221e9, 0xa034081b, 0xbf7ee3c6, 0x229ee9d, 0xaab3f369, 0x5a20d5ff, 0xdf70ccb2, 0xbd689ecc, 0x00011f } }, { { 0x15441554, 0x72571f19, 0xe532e9e1, 0xba161501, 0x4d4098fb, 0xa70789bf, 0xe8d13004, 0x755bbb01, 0xeea90112, 0xd35ae91d, 0x623dca20, 0xf042fbb0, 0x8408fc44, 0x2004a578, 0x3660e95a, 0x6cb08d2e, 0x000174 }, { 0x35f352b9, 0x20d3e700, 0x8fd02711, 0x408e87c4, 0xc4da0823, 0x426789, 0xdbfe6c46, 0xcc75bf5, 0x978c7e27, 0x6c8f626, 0x1e3361a5, 0xeb142045, 0x6433fbe, 0x19a0b11a, 0x7ddeb99a, 0x8664a41a, 0x000106 }, { 0x23428d72, 0x9d7acbed, 0x84d9c084, 0xb40132d2, 0x7925b96b, 0x608ed7a6, 0x8b672d5a, 0xb2f7a331, 0x8c663fe7, 0x243aecff, 0x43a481af, 0x17adfb38, 0xf1b768b0, 0xadc94cb8, 0x59a75383, 0xa6ce8f65, 0x00004c } }, { { 0x86e9ad02, 0xa731d1b9, 0xc024fe44, 0x6a3f450f, 0x738f29e8, 0xe9f29cef, 0x2ec343d2, 0x9309647c, 0xe8531781, 0xe5431aab, 0x58631167, 0xff293296, 0x546cf3e5, 0xc93f6ac3, 0xdd6b42b3, 0xf259c7a8, 0x000036 }, { 0x4c7f2582, 0xc1948e22, 0xc1e26fa0, 0x1c191eb6, 0xa5543499, 0xe1035c3, 0x2b7d789b, 0x5a3db3e, 0xd3edadc, 0xe05246ee, 0xd54270cc, 0xf6c7e508, 0x8cb4356c, 0xb18a5a02, 0xaf24b7d4, 0x4366c133, 0x00014e }, { 0x30bddfed, 0x25f2a4a6, 0x5712ddc, 0xe2da8bdc, 0xe8efe565, 0x83856c93, 0x9b1a84cc, 0xfc7f914f, 0xfc03343c, 0x6d2d793c, 0xf980c448, 0x4f66eb1e, 0xef06678b, 0xf787d89f, 0xf900a33e, 0xc1104951, 0x000060 } }, { { 0x44042f85, 0x7239268a, 0x6ce0a9fe, 0xc7af54df, 0x5ad77018, 0x4cac33be, 0xca701559, 0x8de9015f, 0xdc2c24ba, 0x771e6937, 0x13c2332c, 0x2e76703d, 0x6849fc97, 0x2daa4ddb, 0xe6d3a202, 0x46d794ed, 0x0001f7 }, { 0xf362a1e9, 0x4a3e5842, 0x881e3d6b, 0x2a11f806, 0x6223baf4, 0xaef566e, 0x5766dca8, 0x39e877ed, 0x37fa3827, 0x81bb7594, 0x561e2a85, 0x87c433f7, 0xd18fb8f7, 0x58905488, 0xcedaae38, 0xce3cc11a, 0x0001b2 }, { 0xe8a0c7e8, 0x63e9e274, 0x8f80e2b0, 0x83664f54, 0x467d537a, 0x5b00a643, 0xf26112e2, 0x1dcb34f0, 0xa65fa76a, 0x4f9ecd5c, 0x3af7e543, 0xf0c96df7, 0xac5a10ca, 0xace056ba, 0x14123e4a, 0xc911162a, 0x000160 } }, { { 0x566e8698, 0x2694fa26, 0xfc37a485, 0x6761e94d, 0xf5ed9175, 0x510d923b, 0x63ac3b7a, 0x3d826ec6, 0x7b66e0d3, 0x3e366c11, 0x7fcd18ae, 0x5052004e, 0x80586ada, 0x226481de, 0xdf11c386, 0x167cc4d1, 0x000022 }, { 0xe4dc97eb, 0xd04a1766, 0xbe4b675b, 0x971b5e04, 0xac270dae, 0x79b062a4, 0x9b1ab8d5, 0x666d72ca, 0x28062a96, 0x155954de, 0xf5a04b23, 0x362fed23, 0x43383720, 0x4c61e469, 0x2fe7957c, 0xa8bbd38a, 0x000043 }, { 0xc7bb8adf, 0x61fd91b3, 0x6167ff46, 0xc1a77c5f, 0x593b4c6f, 0xb0977e4a, 0xe09c93e0, 0x60d9c218, 0x9f3cf202, 0x834fbd5e, 0x41dd98fd, 0x4700c2b2, 0xf5514ddd, 0x626edec2, 0x39955778, 0x40dbd1d4, 0x0001af } }, { { 0xc0815c71, 0x6267d3e4, 0x4c38d053, 0xad58c091, 0x8be3175c, 0x37fd5ba, 0x72b21f68, 0xe71ce448, 0x39a42c81, 0x878c7a72, 0xb024b2b0, 0x9c492ae9, 0x11db573b, 0x8582899c, 0xa2728b4c, 0x88b051f1, 0x00016e }, { 0xb7ce8a5f, 0x963f3c37, 0x2c8c5251, 0xd01e7ce3, 0x20123c78, 0x2e13aadb, 0x40ba2768, 0xa476171b, 0x53f03673, 0xb9a592c0, 0x77c8a996, 0x4ab2f1db, 0x58c3b0a3, 0xe167dcc0, 0x40e78608, 0xa74e90e9, 0x000150 }, { 0xb7f32d09, 0x80f8b5ae, 0x7480b657, 0x1b2f78c0, 0xd0843343, 0xc52c2392, 0xdcd1dbeb, 0xf65ad0f5, 0xc1214e17, 0xf527cf88, 0x980cfca6, 0xae6148d, 0x8f8c0f9a, 0xd9f0b9c3, 0x226d78c, 0x3e703966, 0x000145 } } }, { { { 0x9d5bfb6c, 0xc357b2e3, 0x5d9b0365, 0x7c346e47, 0xda27ee9f, 0xbe00f2bc, 0x976251af, 0xcf38022c, 0x3d7f2616, 0x34061898, 0x35e5e79a, 0x34cb9f4b, 0x98aad08b, 0x3ef9e931, 0x3cb1506f, 0x89e7199c, 0x0000f2 }, { 0x85decd4a, 0x380de99e, 0x33d6aed5, 0x8adada84, 0x625d1c57, 0x3d57d4e9, 0x90753b7c, 0x52eec129, 0xeadc341, 0xac76745d, 0xf19ffd8, 0xa6e885fb, 0xfff93fbe, 0x828e5b26, 0x3547af12, 0xf4d937b, 0x000034 }, { 0xb4213672, 0x2743cb8d, 0x2692b839, 0xea21c82f, 0xa9931c35, 0xe57cb101, 0xaafc66ed, 0x2e11680d, 0x4a9b1c27, 0xa829d947, 0x93fa708e, 0x52e1c3a, 0x788ee88f, 0xb0560526, 0xc7b5e762, 0xd50a0b2b, 0x0001f4 } }, { { 0x1da7b1e5, 0x3e863973, 0xa7dcb306, 0xeb93045c, 0xa7f2c384, 0xb6148659, 0xec75ff4c, 0xbea2e121, 0xe986f931, 0x95156aa0, 0xdacf2815, 0xc01f12ef, 0x27dc73d6, 0xb2691f40, 0x5bfbd0a1, 0xc4ffe6c6, 0x000091 }, { 0xccd16346, 0x8ea8cd34, 0x9d8f9046, 0x9c8c2160, 0xcc71e0a0, 0x1837168f, 0x4ace4c49, 0xa7d50241, 0xe876d579, 0x4adf046, 0xa06573d2, 0xdc62477c, 0xc8c04545, 0x7b6c79ff, 0x62b0faca, 0xa97bad37, 0x00004e }, { 0xb17d931a, 0x956625b7, 0x5006ecf7, 0x53b076f6, 0xfc34d815, 0xb4184dcd, 0x2aa68571, 0x4d72f300, 0x432a043d, 0xfc109bd3, 0xe63f89cf, 0xdc09977d, 0xbb4ec1a2, 0x6605103a, 0x94cee318, 0xcbb67b63, 0x0001c1 } }, { { 0xcddf65f3, 0xbc252661, 0x213745ac, 0x7dbbc413, 0x94872a3e, 0x2bc25c6e, 0xf408a170, 0x13795b4f, 0xa774519f, 0x3c32910, 0x7bab0219, 0x2e4e68c2, 0x2fe49dd, 0xa299d68, 0xf9ee0d28, 0x36e9e91e, 0x0001c5 }, { 0x3e5b186f, 0x19c74dee, 0xae4b8b6a, 0xc9fd80ca, 0x884dfbbc, 0x65c2e29, 0x39f6ce06, 0xe121df79, 0x9cfd4189, 0x170a2bca, 0xdedf3ef, 0x8a943407, 0x9df6dac8, 0x4a4318db, 0xea79196b, 0x7e081401, 0x000159 }, { 0x7f588afe, 0x22c4a9d2, 0x7693c48e, 0xdf91ebad, 0x55374a64, 0xcb520a3a, 0x7a7d002c, 0x8c90dd5d, 0xf3616845, 0xf27feb0e, 0x1d24c060, 0x4979abe8, 0xf31a5d07, 0xfcc82dea, 0x7bb18af5, 0x95df9771, 0x0001d8 } }, { { 0x9b84705e, 0xa3211ef8, 0x885de8de, 0x9bca30ac, 0x4d0191c6, 0x8ec7faef, 0xccaa058d, 0xe8489e1a, 0xc552c409, 0x84a9a6, 0x6de5861f, 0xdfc917fb, 0x81fccc36, 0x13e3675, 0x930b04f1, 0xc5ab13fc, 0x0000eb }, { 0xf3f50f44, 0x84741c6d, 0x6dcd8bf, 0x504dde0f, 0x6ff93295, 0x81cdd737, 0x312a892f, 0x66b14296, 0xed0622f8, 0x18fb209b, 0x1ab2068c, 0x7b79e3ff, 0x3b8d7cb9, 0x8983c2c1, 0x96c2c409, 0xabacf825, 0x000030 }, { 0x8f930cf8, 0x6e0733db, 0x1455940a, 0xce6b9860, 0x33412e5, 0xd9f64ad2, 0xf6f6617f, 0xea67ade7, 0xfb62a2b6, 0xbc8f4d67, 0xa491f915, 0x15bd746d, 0xddf08a31, 0xd2feb36, 0x5947c1f6, 0xf555ddc2, 0x00007f } }, { { 0xd69671b4, 0xebce6e3b, 0xac49f702, 0xc36e71ce, 0xf5532aa, 0x27b53a17, 0x49f0ef79, 0x7b37784f, 0xa36e7b8e, 0xecebe1be, 0x1c1def93, 0x418b7c9b, 0x2173e58f, 0xa164a3ed, 0x9fb8601a, 0xdaa250af, 0x000074 }, { 0x36a591d7, 0x1531559, 0x8a114b8, 0x9f77cd0, 0x5b7c5bfd, 0x91f0f404, 0x4ecbba7, 0xc255103c, 0x7808430f, 0xd5cfbf4d, 0x3e72f96a, 0x258e3939, 0xc1f26fcb, 0xe7b25d9a, 0x885d5856, 0xab68a03c, 0x00015a }, { 0xff784923, 0x11eb4e3e, 0xaec3adc9, 0x3fb680e0, 0x9709bc59, 0x70d95ba2, 0xf50e58b9, 0xfee2ee4e, 0x78494042, 0x818e920d, 0x84e4e177, 0xed4062d8, 0x2029b7fe, 0xec8c5698, 0xc44e3075, 0x4c72c1d9, 0x00007a } }, { { 0xf28b5735, 0xb0ae5501, 0xa4534d86, 0x111060ef, 0x980ce7c0, 0xecf7c9ff, 0xfd3785ad, 0xea96a426, 0xc5734c0d, 0x4cc7f46, 0xecfd71c2, 0xb42815e, 0x30b9f619, 0xb4666362, 0x74e800d1, 0x9db31f9c, 0x000075 }, { 0x8e8f7dc2, 0xb188ffef, 0xdbb6228a, 0xccc772f3, 0xa9978851, 0xaf9ee792, 0x5e6b0eb9, 0x21fede42, 0x1edc88dd, 0xb5fce92f, 0x743b3907, 0xebfbdf75, 0x44dc893f, 0xbaee618, 0xe5408dc6, 0x964dfff4, 0x0000db }, { 0x8aa86834, 0x953f9ab8, 0x1380f307, 0xaa35998b, 0x421411b4, 0xe8e4a9db, 0x38c660ec, 0x88c886ec, 0x62a842fd, 0x5b23eb14, 0x907d28eb, 0xc8f17534, 0x771a7311, 0xbaa43a29, 0x45c56ef, 0x70fbfc35, 0x000116 } }, { { 0x5b44d6c3, 0x974916ed, 0x1c976e78, 0xd4db0489, 0xde869e5c, 0x8b132665, 0xa22f2864, 0xa5c103e0, 0xdb1a6f87, 0x78f9b01e, 0x316f38df, 0xc04f848e, 0x4572eb6, 0x56ec70a1, 0x94e2b4b, 0x6c156782, 0x0001c9 }, { 0x5639d547, 0xea0eb8d7, 0xef939073, 0x2f4bacd2, 0x5af36ff, 0x56c81ed8, 0x75ec8398, 0x296f18eb, 0x4f7d2b87, 0xc2621e27, 0xc0f794f4, 0x207d3bb9, 0x4052081, 0xad51e42f, 0xb2f97568, 0xe18a59b8, 0x000094 }, { 0xb148952c, 0xb9289d1c, 0xb7c3610c, 0x3d8bca2c, 0x5c14603e, 0x6df98423, 0x839c5bab, 0x410c33b8, 0x9c45ca79, 0x6c8ba9cb, 0x4166fa69, 0x2b43dd11, 0x56058d10, 0x16c7fadb, 0xc6373fec, 0xd134e82d, 0x0001df } }, { { 0x92e6302a, 0x1871f5bb, 0xc47d6b95, 0xc6dda060, 0x3d6955c, 0x5a39bbe2, 0xb5cef9fe, 0xd01c96d6, 0xb321d6fc, 0x7056845b, 0xa3d45739, 0xb9f70631, 0x2569b97d, 0x45cd1484, 0x8612a372, 0x77a0f542, 0x0000a2 }, { 0x37bded, 0xd103e907, 0xc3c142d3, 0x8d878ca4, 0x90fe4a88, 0x57245f10, 0x95d1c377, 0x1a4acef5, 0xb36df293, 0xdb10f19b, 0x8fe32ed6, 0x3dcc21c5, 0x4a2223e7, 0xb6153446, 0x911b4daa, 0x7fe83fb4, 0x000104 }, { 0xe4c84a55, 0x7fda0c11, 0x7e470e39, 0x5281869c, 0xcc01e56b, 0x514cb2e4, 0x675e5684, 0x6c621175, 0xf00fc93e, 0xf399e3da, 0x7eaf9e09, 0xc50fa48b, 0x450f932e, 0xd124a23a, 0x3562609e, 0xa4df97f0, 0x000049 } }, { { 0x87a3a72f, 0x7efc5174, 0xd2775c9e, 0xcc332443, 0x4b059d2d, 0xbdf0f407, 0x534fe093, 0xa84642af, 0x3ee40a27, 0x69b142b2, 0x2e6ceec9, 0x37c57070, 0xdd6431a3, 0x6190da58, 0xf31db6ff, 0xb1cbbc54, 0x000179 }, { 0x289ef48a, 0x86a77e85, 0x3e513c09, 0x9cc66f42, 0x294b47ab, 0xa3477a7d, 0xdf5e6f89, 0x80c99ca3, 0xcecf39ac, 0x4fffff07, 0x16aac829, 0xbd998969, 0xf9b81e98, 0xb055e13a, 0x753798a, 0x320c0bb0, 0x0000b6 }, { 0xfb63c725, 0x9fc84592, 0x8f868675, 0xa19b443, 0x1d1ddd89, 0xbcd6dc7c, 0x619d2a94, 0x1eb5cda7, 0xd0fc82d0, 0xc0e8c4ae, 0xed8f9396, 0x2d60dd73, 0x70a3d86c, 0xc053fcbf, 0x6bd958cf, 0x41cae1e8, 0x0001c5 } }, { { 0xf4962729, 0xb4b10781, 0x232013b4, 0xa68db296, 0x95bebe64, 0x4489bdd8, 0x3672dd59, 0x3a5bece1, 0x7ee14a5d, 0x19437492, 0xd7db52ec, 0xcb88e5b5, 0xb5ac4f27, 0xd5f88114, 0x47b99856, 0xd315f183, 0x000080 }, { 0xa6a1ad3e, 0x65919fe8, 0xc3846c98, 0x7e42ae85, 0x3682a8a6, 0xa8986e08, 0x26d6f167, 0xd26b5ac7, 0xa9290e5b, 0x7adedacf, 0x9fb3b4fc, 0xcf04ad8f, 0xe415b1e7, 0xf5be31e9, 0x4a70aeb0, 0x637d0d0a, 0x000171 }, { 0xe62e7535, 0x7ae7e68b, 0x3e08e618, 0xd2089728, 0x872848e2, 0xbf59f906, 0xed5b78fc, 0x855e36b0, 0x4647da48, 0x9b98b948, 0x2aff43b0, 0x14aad40f, 0x19c1ba1f, 0xfc28a592, 0xca712a6f, 0x6840fc04, 0x000040 } }, { { 0x7f9a132b, 0x8e0e478e, 0x5e2c71b9, 0xd34f370a, 0x7aff6fac, 0x6b05f0a6, 0x240a55d9, 0x21dc5e32, 0x5d61337a, 0xce08db, 0x889f4837, 0x24da0774, 0x237a04b7, 0x9c10b2a5, 0xbc5d8576, 0x30102ad1, 0x000081 }, { 0x8da9adf2, 0x67c5f2e5, 0x4721c443, 0xe3a8c417, 0xccf986ab, 0x1dce6b2f, 0xc7421fa8, 0xee9fbc56, 0x35604d92, 0x8c27931e, 0xb9abacb5, 0xc771dc49, 0x76403b57, 0x2bc0aa50, 0xd8d7a050, 0x55e450b5, 0x0001eb }, { 0xb4d0fb, 0x72863f9, 0x9d11ba9c, 0x1df08178, 0xffd4e318, 0x9db1410f, 0x573ac16c, 0xe26522c2, 0x146489f6, 0xef2d7023, 0x64404ca3, 0x8398a09f, 0xa508b488, 0xca4ae475, 0x109c5102, 0xf029da6b, 0x0000c7 } }, { { 0xa2dc73f9, 0x17b70ab0, 0x9a325dd4, 0x10f4b1f2, 0xffd26646, 0x238a2e0a, 0xdcef0459, 0x49a302c5, 0xc803e9bd, 0x9c8fa5bf, 0xc1ae89af, 0x35b1277f, 0x8df39da4, 0x37164368, 0x63ccaaa1, 0xa0698ea, 0x000178 }, { 0x54cfad78, 0x7379dc17, 0x83c84daa, 0x9b67f7ae, 0x987d30f0, 0x1a602d62, 0x8b8e5067, 0x6ca1e00c, 0x5ba6edda, 0xdad0a885, 0x259448bf, 0x1795e4b8, 0xddaec43f, 0x7e41d6c1, 0x2346701f, 0xda312bfe, 0x00007c }, { 0xca38e2e8, 0xd6207045, 0x102a797e, 0xb3ffc8d7, 0xb87a7a78, 0xfc3b0aa2, 0xcbbccf71, 0x1afc68ba, 0x57eaaf81, 0xfe5561cf, 0x41def878, 0x550c748, 0x6d36e842, 0xd0fcc40b, 0x53044c51, 0x99442a65, 0x000186 } }, { { 0xa90d1c83, 0x7cc52001, 0x11da5126, 0x374df05c, 0xe61d3e5e, 0xd0d24167, 0x35e3008f, 0x70dfa870, 0xbb898fb2, 0x680b14aa, 0x3f729d08, 0xfff5901d, 0x4373d718, 0x8aafd464, 0xd6b37783, 0x56191596, 0x00015f }, { 0x7b5e52e8, 0x48655080, 0xcbd77def, 0x4870a0d7, 0xeb70b6ea, 0x768d3062, 0xe0264ad8, 0xbaad95fb, 0x4014c9a0, 0x92577aa1, 0xe814e829, 0xa2f31c9b, 0xf3b7173d, 0xf6a86472, 0xbc24a75a, 0xa18747fa, 0x00010a }, { 0xfcade7d6, 0x71efaa9f, 0xd69a5bde, 0xd8b12a80, 0x458d4ae8, 0x5b634586, 0x6681560c, 0x9b4a4be1, 0x3caa771a, 0x1c3325d1, 0x65c48bf9, 0x89591e4e, 0xbf5b42d4, 0xc10fd7f7, 0x171cec6c, 0x3da4e922, 0x0001f5 } }, { { 0x74777e79, 0x4b4d3541, 0xbdc1d0bd, 0xc718f95e, 0x69ce79da, 0xa3d6aea0, 0x91f19c8d, 0xb2443c64, 0xe76d5a4e, 0xa3e41c9b, 0xa9c526c5, 0xb0ee228a, 0x3c9ffe9, 0xe1ca216a, 0xeeadd3cf, 0x9221ba29, 0x000041 }, { 0xbb240f5b, 0x25b7fb9e, 0x3ba91353, 0x51682c2e, 0x46f3d627, 0x56094034, 0xc50587b1, 0xb8aca116, 0xa78a48e8, 0x3dbfb311, 0x899b093f, 0xf8a661e, 0xd50ff125, 0x762e87e2, 0x61f48f21, 0xf7292410, 0x000012 }, { 0x33885dd8, 0x78a15cff, 0x189e5f6f, 0x1bfbebae, 0xaabf7280, 0x26bf3e0c, 0xac0464fc, 0x9a0a6e6b, 0x4a453c29, 0xc949af84, 0x9689ed85, 0x3b68c459, 0x4b2c87a2, 0xc0c1600, 0x18e3d335, 0xe7de10e3, 0x0001ee } }, { { 0xe175dee8, 0xa668dd63, 0xbdee450e, 0xd8cffbe7, 0x2ba20238, 0xd899e6ac, 0x2831eba5, 0xdd76f065, 0x7a1a30cc, 0x1cece37c, 0xdb3768b2, 0x5a68d68e, 0xeb1f1a4c, 0xf2fd119a, 0x38d6093f, 0xac97d665, 0x0000a1 }, { 0x1de507ec, 0x12b21161, 0xed8a9c85, 0xafc104f4, 0x1e3f49e7, 0x5b1a46ef, 0x5e6e736e, 0xae374251, 0x8e5d4fa6, 0x41f2a00, 0xaf600ffc, 0x75ab0317, 0x8beab524, 0x3dd96bcc, 0xd04f8619, 0x8e8922b9, 0x000034 }, { 0xbae650d9, 0xf3e6a800, 0x8d6856c7, 0x47c7408, 0x4e5df02d, 0xb07349b1, 0x1b25256f, 0x557606c5, 0xd91a3ec7, 0xd39b9769, 0xf162e07c, 0xb4b4cfa0, 0x35bdcf89, 0x699a11e8, 0x75b9dc00, 0x4657be77, 0x0000b7 } } }, { { { 0x3fcc9aaa, 0xe7b5a7dd, 0x2aa3a62c, 0x31ddae33, 0x858b3938, 0x8800fb6, 0xca3975c4, 0x13771f96, 0xa01bbfaa, 0xb507e812, 0x2546374c, 0x7d597f97, 0x88bb6916, 0xc9320e61, 0x1ad806e8, 0x30ef791f, 0x00018b }, { 0xb7407f3a, 0xc84fbbfa, 0xabd40387, 0x3ed7ec0f, 0x6ad80531, 0xea1877d1, 0x6d461cd7, 0xd8f17e18, 0xdc397456, 0x88ade748, 0xb68c3593, 0x3e5d37dd, 0xd5a5cffe, 0x4d875fd3, 0x60aaef20, 0x94941fa6, 0x000128 }, { 0x9f9874de, 0xe9b6fae2, 0x9037cf9, 0xea7c74a1, 0x9df2bda1, 0x11054156, 0x2991024a, 0x718936d5, 0x99d84b25, 0x23bffae8, 0xa4f90214, 0x6592d8ae, 0x14d368d2, 0x242e3e77, 0x3c633c59, 0x9f41a093, 0x0001a5 } }, { { 0x73a7c780, 0x5f1867aa, 0x12dea7c8, 0x5a1ae67, 0x26ce31, 0x4c5c3e33, 0x25aaca4b, 0x15827d12, 0x55b6d7d1, 0x66a61d3b, 0xe9f61ceb, 0xd29ad577, 0x2cda4e07, 0xb9e195b8, 0x79e2b062, 0x66efdc6f, 0x0000c1 }, { 0x539346c6, 0xd643dd8e, 0x756c6c12, 0xe25d951a, 0x1be443be, 0x26b584c4, 0x1ed30cf, 0xe671c446, 0x36c37d5d, 0xe852afea, 0x45eb2458, 0x63b93130, 0xe255061c, 0xa409599, 0x7b8eb570, 0x4be7b6b7, 0x000084 }, { 0xfcd661b4, 0xd8d19819, 0xa91bc97d, 0xbfd97fcc, 0x9f59c0c, 0x307ef69e, 0x65212e54, 0xf86f5f83, 0x421486b9, 0x66712e17, 0x1821e70c, 0xff18beba, 0x2a5b4275, 0xfdd5d40f, 0xe16f7223, 0x23ad180b, 0x0000db } }, { { 0xe9bed41b, 0xc90b54b3, 0x443d1b7b, 0xcb196c92, 0x4c60e17e, 0xcf60a6c5, 0x329e3144, 0x60b428a7, 0xd06715db, 0xc6dbb83d, 0xaf6b323c, 0x46374380, 0x9a4070f5, 0xf774156d, 0x8f154028, 0x124b3cdf, 0x0000e7 }, { 0xd83e6eb8, 0x5bc2b9b0, 0x62df3abd, 0x1c06923c, 0xe408668e, 0x361118d, 0x3fe8c04d, 0x9f2a597, 0xffb95deb, 0xeadb6d31, 0x73e6b5c, 0x17becd42, 0x5e3a6aa0, 0xa2a0e581, 0x9506577e, 0xbdca7c0, 0x00009d }, { 0x9333744c, 0x2e04c57e, 0x20793726, 0x92d23a8f, 0x3f5fd1ac, 0x272060a3, 0x3168aff5, 0xb6d810f4, 0xaa8ec9a2, 0xee9fbc, 0x4112c66a, 0xc7f0bcfb, 0x35a40ddb, 0xa6a171f3, 0x6d30f18, 0xb0b3a8fa, 0x0000d3 } }, { { 0xf8d7297b, 0x9df1f8c, 0x3fb9b1fd, 0x3f871668, 0xb6a948f0, 0xf4747223, 0x9f315928, 0xeb41b453, 0xf83a2329, 0x73a89a79, 0x8d6ea22a, 0x55b68eb, 0x5802e3e0, 0xe509964f, 0xc5d02a8a, 0x115b035a, 0x0001b2 }, { 0xfddb29a3, 0x4ae95e14, 0x73625643, 0x1f94661e, 0xb40e153, 0x2da54cb5, 0x5ef12ff0, 0x9e9d6db2, 0x857a96a, 0x6e920a95, 0x5aee1809, 0xc55bf620, 0x5894065c, 0x154740a7, 0x903948f8, 0xe84cf105, 0x000184 }, { 0xc8b8384f, 0x5e156cdf, 0x26f7dd98, 0x22067244, 0x9e8ff10c, 0x798c0443, 0x782521d5, 0x9aa7111a, 0x8128f022, 0x42a8426a, 0x76f544cc, 0x8cf9a786, 0x5a5bc30e, 0xa332302d, 0xc9b542d6, 0xebba865f, 0x00004c } }, { { 0xdaac0ef0, 0x7b8ae263, 0x5aad9f8c, 0x39e0f2f9, 0xa54654ff, 0xd80c5486, 0x3e8e597e, 0x53dc4657, 0x55a53fed, 0xc1280797, 0xa785a7f5, 0xa442cbca, 0x51dba1f5, 0x8db2e451, 0xf7b4ece6, 0x96138964, 0x0000bd }, { 0x913d5c9, 0x83d3357b, 0xe2df6fc, 0x92076c76, 0x78c0d667, 0x3878983f, 0x48bfe467, 0x57e6c285, 0x57b64b28, 0xaf6fed97, 0x7b16778e, 0xc2fd97e, 0x4382cf18, 0x964931a, 0x14189c55, 0xef065e87, 0x0000d1 }, { 0x76696d8e, 0x559e3790, 0x2d8715ab, 0xc2453ec7, 0x3e275b63, 0xf4f0bf55, 0xa1a3b379, 0x6669c816, 0xca005818, 0xb3ed6e38, 0x228fb50a, 0x14afa4ba, 0xe15b20ed, 0x417100e7, 0x55cd38fa, 0x10d257a8, 0x0000bb } }, { { 0x3b8bb0da, 0x925b0667, 0x144881c6, 0x67d79e28, 0x5284ea42, 0x9def0eac, 0xdc296602, 0xcc3d4428, 0x974b5f1, 0xe22ca2d4, 0xf4aa8142, 0xd5866f9e, 0x5ea7aeb9, 0xf28416cd, 0x4caf3b90, 0x991c2e65, 0x000183 }, { 0xa129572, 0x3eab2b8b, 0xb032da74, 0xd5b31f1b, 0x3dbdf76e, 0xa9d69d83, 0xa4baa047, 0x957c9d44, 0x972beb91, 0xf1c86aa0, 0xcc1470d2, 0x11d315a3, 0xf7f5f516, 0xbbde85f5, 0x56130687, 0x95973b5b, 0x0000d8 }, { 0xb9c9a3f0, 0xeccc1c3b, 0x57166851, 0x6a63ae52, 0xcce40e5c, 0x9816430c, 0xe13354ad, 0xc2a2f32b, 0x30101959, 0xca855c11, 0xb1d070bf, 0x5d43ebb2, 0xf42f530c, 0xd3a141b8, 0x44b6791d, 0x8ca6990c, 0x0000a1 } }, { { 0x26249765, 0xa613d96c, 0xb8fd0d09, 0x5940ca2d, 0x9879a3c, 0x43fa5ed8, 0x1adffa2f, 0xe7a3a25a, 0xfaf33667, 0xc4659c0f, 0xba12b5ab, 0xe7137716, 0x98dd261, 0x37afa608, 0x6c474b62, 0x4a5732c8, 0x00010b }, { 0x6d903c9b, 0x80f80038, 0x7267cca3, 0x7646876e, 0x65c2ff03, 0xcc82058e, 0x66940c7c, 0xc02a11c, 0xde693654, 0x369e234a, 0x374f495, 0xb1d4ca89, 0x6e55fe0e, 0x55032616, 0x972e33af, 0x775584bd, 0x000156 }, { 0xed4fabcb, 0x665e5e16, 0xe11c51d, 0x5754f3d5, 0x60b369f6, 0x61b34beb, 0xf6d0cceb, 0xb05eca5d, 0x64d3b72c, 0xac5f1092, 0xeb92fba3, 0x12a7e60, 0xac1cdaba, 0x4a2671b9, 0x1d96018c, 0xeb03e0b5, 0x0000d9 } }, { { 0xb44d5086, 0xdc6fac78, 0x8c6351ee, 0x764293b7, 0x1ebf0f87, 0xe734668a, 0x6eab8937, 0xdd7590db, 0x8f8294f3, 0xcb225a0b, 0x7cd0ef31, 0x50c3ee94, 0xc6b95f43, 0x3d971d77, 0x25a6df9b, 0x53289800, 0x000038 }, { 0xa6159617, 0xd80e608e, 0xce7dbebe, 0xeb9adf8d, 0xf0fd9a4a, 0x25613013, 0xd9b59a2c, 0x5342f6ee, 0x2e5807bf, 0xe73ad21b, 0xaaabc2ba, 0x8ef0136a, 0x69215672, 0x1ec143cd, 0x4c36fe42, 0x8b839ee0, 0x000134 }, { 0x7b90ec36, 0xf4386105, 0x17f20f8, 0x97bf96c9, 0x88bb0c60, 0x4fd02bb1, 0xbdb60269, 0xc6482b53, 0xc8ab8cce, 0xb27a77ca, 0x216badbc, 0xa5fe5f87, 0xae013700, 0xf7e070d5, 0xc089ae09, 0x8932d907, 0x000118 } }, { { 0xde269771, 0x24a1b130, 0xf948bec7, 0x5cf7bf90, 0x6c3597d1, 0x7bce8cf2, 0x5f3ac30b, 0xdbd987a4, 0x92385ba7, 0xe1fdb508, 0xc506fa4d, 0xcb2b7b9c, 0x3e49ac7c, 0x8712c6ae, 0x1e925f39, 0xddbc7d4d, 0x000148 }, { 0xcd8bb7e0, 0xa69e44f1, 0x4a07716e, 0xb7ed1163, 0xff99d57c, 0x5fa954fa, 0xab17808f, 0x9f381800, 0x9311df39, 0xd511451f, 0xbf5ec4f, 0xf97d20ba, 0xeff7822e, 0x90304fd8, 0xd1b61883, 0x74da499f, 0x0001af }, { 0x2d6406ca, 0x7aea58b2, 0x64619f8e, 0x383cc377, 0x79feba7f, 0x8933fe99, 0x681830c6, 0xcb8bece5, 0xc408f2d6, 0x64efe0a3, 0x98abfcbc, 0x55cf5ffb, 0xbd39203c, 0xc92c18e4, 0x64ddd255, 0xaa887a, 0x0001e7 } }, { { 0x2ebc9a7c, 0xd25c27ff, 0x4206165c, 0xb1369bfc, 0x59ebf4e7, 0x60a31bed, 0xee682350, 0x90d97f94, 0xdaf2675, 0xad71549a, 0x8c2a4693, 0x8d7fd137, 0xc91f1feb, 0x5d7ae2b9, 0xa54b83b5, 0x93c057d4, 0x000146 }, { 0x37524a80, 0xca474f61, 0xb42b668c, 0xf8580b09, 0x7f3ebf9a, 0xa2bdcbc0, 0x9b8bbb4, 0xd5277e44, 0xe2d07d5c, 0xc0388ac3, 0xce939035, 0xa3ff344b, 0xb16d788e, 0x9f091c8f, 0xbe728a5b, 0x2a5152a0, 0x00012d }, { 0x2c1a7881, 0xbc472982, 0xf066a4c5, 0xaa6c2e9d, 0x3d8d4826, 0xb84b2c0f, 0x11342cfb, 0x7091834e, 0x6f38c32d, 0xaa78e6c4, 0x5af5153a, 0x9ad7adc3, 0x507909fe, 0x1b4c6315, 0xe420443c, 0x2bd3591e, 0x000082 } }, { { 0x58379296, 0x6cb76251, 0xb2bf53b4, 0x976355db, 0x16ca4dc2, 0x1f3a7510, 0x947b7b21, 0x871bf93e, 0x532ded3d, 0xa59543f0, 0x917506c7, 0xc5fa65c, 0xbf921e8e, 0xd2e51ca9, 0xa3faa57, 0x1853a376, 0x000184 }, { 0x6cba1c52, 0x87f25444, 0xf13221cd, 0xa69cc8cf, 0x6d8e0444, 0x3336030e, 0x136fe9dc, 0x10f0f52d, 0x2b5e54f7, 0xa6a63b3d, 0xba6db7b0, 0xf1c7f198, 0x406e2717, 0x88460561, 0x16f4378e, 0xcaa79d27, 0x0000e3 }, { 0xdc5b3695, 0x4db058d7, 0xe4e2a111, 0xd18eab1, 0x453ca415, 0x8595faa, 0xd20a20e6, 0xacfa7ff0, 0x66071746, 0x426d7543, 0xc9ae812f, 0x32c8064a, 0x1daf8dba, 0x8f2ce367, 0x177d5943, 0x6a29942e, 0x00016b } }, { { 0x21b2d13c, 0xfd929d8a, 0x6bd6d8ab, 0x9a505bf7, 0xc2c281a3, 0xb73354c2, 0x1209eb6e, 0xf9cb1d54, 0x5fbf2959, 0xe92e3f96, 0xde2df844, 0x723934ef, 0x1fdcca95, 0x7db23e52, 0xecc413eb, 0xcf5b616, 0x00010f }, { 0x437b44b6, 0xfd258109, 0x8e90cb17, 0x9240d039, 0xb9b30882, 0x3bc5b951, 0xe9c3480e, 0x6863ac86, 0xbd78d69, 0xf3cb9dbc, 0x6b857ef6, 0x4306f5bf, 0x75eb0327, 0x526663cc, 0xdd513ea7, 0xbf8a9ab0, 0x00007e }, { 0x963c6d40, 0xc5de83bf, 0x9d4dafae, 0xe93d63d3, 0x30a0232, 0x3abad2d1, 0xdefc0475, 0xe48a026, 0x5b72eb77, 0x15caa3b, 0x94b66ca4, 0x8933427d, 0x61c09585, 0x7f3e80a6, 0x2d9f36f0, 0xb85535ae, 0x000108 } }, { { 0x3cca7305, 0x2028c13, 0xc1f97256, 0x7a131fc1, 0x164f1183, 0xff1d3bce, 0xf84db66a, 0x19ad2a7a, 0x180865cd, 0x3d204c5c, 0xc8000424, 0x26f22680, 0xa56ffc89, 0xf9820ca1, 0x17511525, 0xb448f42f, 0x0001ac }, { 0x9ebd52af, 0x46fd83b, 0xe0bba213, 0x11891e2, 0xfa487adf, 0x1c595bd2, 0x989a74dd, 0xb03c3692, 0x7970121e, 0xcea817ea, 0x255096da, 0x546d3301, 0xb0760cb4, 0x5cec2e58, 0x41462bc4, 0xa97c84de, 0x0000b1 }, { 0x77f3a369, 0x4cd6308f, 0xef0d6d6d, 0xc3b36c14, 0x7f32d7a4, 0x4a22af89, 0x221c3f0e, 0x4a1eeb04, 0x83814e2, 0xc7cc48a0, 0xf8e2aad, 0x8691d1f8, 0x2fe86da6, 0x408e84ea, 0x1c8f34e7, 0x75642022, 0x000088 } }, { { 0xd1111e60, 0xa9a7e2a6, 0xb3a5e29b, 0x6ccb80f9, 0x9b2ca209, 0xd1c42beb, 0x5267b4e8, 0x44aad24, 0x840baf4c, 0xde7c3af5, 0x35ec1c34, 0xefa31e18, 0xb3dbe13f, 0xba06be0a, 0x12469baa, 0xf0e9db93, 0x000013 }, { 0xde8fdf24, 0xdb5f612f, 0x2aa96faa, 0xfd4d27b, 0x6e97a8f2, 0x34a98189, 0x5aad4b68, 0x3da36569, 0xae7d0c89, 0x978052e2, 0x6f0462ea, 0x99bed6ef, 0x101a66dc, 0x8ed9cd14, 0x6db7cb0, 0xce2e8850, 0x0001d8 }, { 0xeced8e78, 0xb3b2f58f, 0x61235ed1, 0x3003ab60, 0xd3d53212, 0xc9c908dd, 0x79cccffb, 0xac641b7e, 0xc73357d5, 0x69b5eb10, 0x2d9f445c, 0xe2934104, 0xf12cd519, 0x5473315d, 0x42305a40, 0x4b8c91d9, 0x000070 } }, { { 0xe6ce8913, 0x8cf63700, 0xe1695794, 0xc927a500, 0x32d7d0d4, 0x71453bb8, 0x71277ffd, 0x5de6f5e, 0x7474c842, 0xe1e27c2b, 0xc59fd244, 0x9ac869ac, 0x57917c12, 0xcbd65218, 0x7a4d0186, 0x8f2674b1, 0x00014c }, { 0xd66f3d8a, 0xe03a8cb3, 0xb33dff0d, 0x36663278, 0xe8596118, 0xf1847976, 0x3a17baba, 0x6a8418c3, 0x524df152, 0xb1877770, 0x4be05ec4, 0xb3385b84, 0xad645035, 0xca3703df, 0xbe639909, 0x50f324f5, 0x00002a }, { 0xbd32bcb7, 0x9768a181, 0x8ef6f7a3, 0xfe3a24fa, 0xe3e973f0, 0x55d34b8f, 0x1cc3ae4e, 0xf160b6a8, 0xd20407ac, 0xfdeda49a, 0xd06a9074, 0xb58056a0, 0xd66c0610, 0x4cb7b472, 0x64084008, 0x8095dcee, 0x00003e } } }, { { { 0x3b5a8199, 0xd6c4c00c, 0xfc73db2a, 0xa9341b6e, 0x5d2d976e, 0x76ccdcfa, 0x59d45b35, 0x84bd3434, 0x78f0e93d, 0xe82bca49, 0x2e7e69a6, 0xfe00e6f2, 0x6fc3f639, 0xdde1ea34, 0xb4277441, 0x8f392f09, 0x000141 }, { 0x1e312f9c, 0x3189f42f, 0x3d1b9b74, 0xdc3af972, 0x43aad3b6, 0xa624b934, 0xf55f0f8a, 0x4f7b7778, 0xc52a07e0, 0xf0e75ca5, 0x2c561ab5, 0xc43dae98, 0xb31035b6, 0x1c374281, 0x14c5cb45, 0x283c067c, 0x0001e5 }, { 0xfe931306, 0xdd5d444a, 0xb298f7b1, 0xf9c5e22d, 0xaf06c114, 0x93416b0b, 0x215f7d0e, 0x812049c8, 0x46b130f, 0xf12d7754, 0x82abffe2, 0xf31a016b, 0x9f1da213, 0x1f27aa2a, 0x66c82a6c, 0x1716f4e8, 0x0001d2 } }, { { 0x75df98d5, 0x5843307f, 0xc55cd0c, 0xeb71baf0, 0x2011c6ac, 0x7ed7e76f, 0x31882534, 0x210dc33c, 0x398e7179, 0x67811784, 0xf4528a16, 0x5637a06f, 0x81dcc0ad, 0x31be22a5, 0x5ef1823c, 0x727d3381, 0x00016f }, { 0xf44bb01c, 0x8bff78e9, 0x8dbdfb22, 0x75c74bde, 0x265cae05, 0x631f43d2, 0xa71ef5b3, 0x4d14fe9b, 0x4841d126, 0xa83bb8dd, 0x77e7e428, 0xe8e307c5, 0xb5a15cf0, 0x37f1ca25, 0x42d6e521, 0x884391ba, 0x00011e }, { 0x5de5684b, 0x4f5c28, 0xd5168448, 0xcb242373, 0x63c9c123, 0x57231ce8, 0xfa1daf5d, 0x279ec8ba, 0x840e3790, 0xf57055b, 0xcbd2366f, 0xc53ff558, 0x6a42fca1, 0x9860fb, 0x1472b44d, 0x83a23398, 0x000167 } }, { { 0x21d153c8, 0x119619c9, 0xff1f8553, 0xa3c1e091, 0x24046dc5, 0xc4236509, 0x60334721, 0x776b9ba0, 0x6f1c830, 0xf3cdb726, 0xa2a095fe, 0x43baa13a, 0x58555419, 0x58301693, 0x3a232b78, 0xde25b9ea, 0x00018f }, { 0x8841c88e, 0x72b444d3, 0x9b3fd1bc, 0x6714fa82, 0xbfb3aba9, 0xa9899a67, 0x51f02399, 0x121df3e2, 0xe55e5031, 0x2168982, 0x712e30db, 0xc29f16fd, 0x288fe049, 0xa350f4e4, 0x169a6b81, 0xbbaaf2e1, 0x00017d }, { 0x8bcae889, 0xb2b83b7, 0x3b320c96, 0xb9312397, 0x9d2ee8d, 0x6420b20e, 0x738ac495, 0x3647a9ff, 0x976f38bb, 0x746e7141, 0x6cba37a6, 0xcd0caf97, 0x5d5fadbf, 0xf5e40182, 0x2b11afad, 0x9c13830e, 0x000148 } }, { { 0xa018e75b, 0x8dda4868, 0xd9181651, 0xce8f88af, 0xb1b32e59, 0x1387ff93, 0x540d16ad, 0x7cae58bd, 0xa6d2c63, 0x79043af7, 0x40ed7aa3, 0xe1689fe, 0xd0478cf2, 0x82b32e53, 0x9caa583f, 0x2dc28379, 0x0000fe }, { 0x2385fe7, 0x5b1e7c12, 0xb1e2c4b4, 0x3f4bb874, 0x2e1623fc, 0x1240c0b2, 0xda7a332c, 0xf79f6f39, 0xb6b03570, 0xdcf16224, 0x26e32445, 0xbda175bc, 0x8911e279, 0x4c64f5e4, 0xa808203, 0x126d88f6, 0x0000fd }, { 0xc6ecc999, 0x3e061499, 0xd2eb2f72, 0x993f8f4, 0x5e1b7d01, 0x20467e42, 0xd4a407f1, 0xf4a102b8, 0x51bd93df, 0x2e9e0f5d, 0xf7c78d73, 0xf64e1025, 0x5bdfd204, 0x3ce63711, 0xda10632b, 0xd45f9944, 0x000138 } }, { { 0x2f6fc1cd, 0xddd3fa9a, 0xa9ceb488, 0xd2f84061, 0x1dd5e602, 0xe9949dae, 0x7aa6baf6, 0x4a390791, 0x3fd943e, 0xaaff4f18, 0x4538a1fc, 0x92e4406a, 0x416a6ebe, 0x7787af43, 0xc6ddce60, 0xbe151f56, 0x00002a }, { 0x405971b, 0xd14bcf0e, 0xee640d6a, 0x91729e8a, 0xa3bf2ac2, 0xeb9458d9, 0x81e0dcba, 0x6a027fdc, 0x76387ce1, 0xfab4602b, 0x67a7a870, 0x76805532, 0x3b8c26a, 0x96f3ac95, 0x948f1647, 0xb9f28e37, 0x00018a }, { 0x1ed8821a, 0x89a9d114, 0xe0e2792a, 0xc129298, 0x3479cf0c, 0x9c4b25f5, 0xa6ec4c15, 0x269c099, 0x8c3c13a2, 0x9fe4cf1e, 0x25002597, 0xbc6294dd, 0xfa928a9c, 0xdbe74b59, 0x8f0a609e, 0x3564e985, 0x00004c } }, { { 0x26b92034, 0xf894fb9c, 0x416de6fb, 0x7d9a08f3, 0x1f8dde3a, 0x750b7e8a, 0xc357ec7e, 0x2a92902a, 0x4288a05b, 0x5f6e00e9, 0x41823f20, 0x62344950, 0x8d3b317e, 0x6c3a71e7, 0x12b9a4a6, 0xf933b611, 0x000037 }, { 0xe276659d, 0xd2545b80, 0xc78a4d0c, 0xd4715bde, 0xfebac86e, 0x320da15c, 0x5028e0b0, 0xf120da3e, 0xd7b1ed01, 0x57325a25, 0x33c522e1, 0x3f527c3e, 0xcea17fb6, 0x601621d4, 0xbe716301, 0xb4378546, 0x000162 }, { 0x21752615, 0xa5a19eab, 0x7690d9be, 0x11111162, 0xceac8d39, 0x89ed26b9, 0x846428f6, 0x7f48d761, 0x4a939e64, 0x25596a6e, 0x71041eb6, 0x7b3993a5, 0x7f68d781, 0xd79c0857, 0xfb8ff145, 0x83f67a80, 0x000123 } }, { { 0x268ed2aa, 0x19a89651, 0x30f9649c, 0x2ebf8343, 0x5aae1af4, 0x3736d2e7, 0x4a29e2b4, 0x731a5c8e, 0x68967a54, 0x59f70eb3, 0xaff89763, 0x80635d38, 0x83011457, 0xb8a5554d, 0xa62ed7c4, 0x34c329c0, 0x000056 }, { 0x79e02771, 0xd2d91c4f, 0x17b591c8, 0xee45f188, 0x7920f147, 0xa9c35d02, 0x11979690, 0x4f8d48c1, 0x3fe3d35, 0x83bfbfef, 0xbce3e89a, 0x8e41fe10, 0xa888f82f, 0x38041c40, 0xbaee4e5a, 0x5f48659e, 0x00007a }, { 0xa597a69f, 0x1973051f, 0xbbf9a04e, 0x8061a60b, 0xfdb18dbb, 0xb357cdac, 0x43af67dd, 0xffa3f93e, 0x1c178653, 0x96502dc2, 0x80786e14, 0xa576de3a, 0x5586006f, 0x18533549, 0x4c020fa8, 0x621cfdf0, 0x00000e } }, { { 0x1117708, 0xdfb5b014, 0x7e45f096, 0xa95e5f4a, 0x13cd206c, 0x714ce18f, 0xadf3c2c8, 0xb0846752, 0x351c1fbb, 0x68e78dfd, 0x82a67708, 0xa1047aef, 0xcf9b4d54, 0x524e356a, 0x5e9c5d1d, 0xcd5108b, 0x0001b6 }, { 0xeb6a88d, 0x7ef61420, 0xc5f086b2, 0xa61e51fc, 0xd787e825, 0x7aa75513, 0xf91f1c0d, 0xbdb2afb3, 0x3c0c4dc1, 0x5830a03c, 0x95056761, 0x41e57c31, 0xcb9b965d, 0xf7537944, 0xf0bc9bb5, 0x4601a2ae, 0x000180 }, { 0x2710a632, 0x6daa7d12, 0xf880f8a8, 0x2cdf3a89, 0xf4c6e35d, 0xe5977d9f, 0xd318b05c, 0xd6679b07, 0xe92c3fc6, 0xdc048b05, 0x756a0c02, 0x8785a95, 0x3b9c05f6, 0x5bb844c5, 0x512407a4, 0xc3015983, 0x0000af } }, { { 0x7a61f099, 0x36244032, 0x78fff689, 0xe4bde697, 0xfa59250d, 0x3ba8f57f, 0xbed57d8a, 0x513a4d42, 0xebe52b4a, 0xa22666ce, 0x54442949, 0xf11d463d, 0x3d777f26, 0x92f66424, 0xf3d0ce53, 0xef46f62b, 0x000104 }, { 0xeabb80e9, 0xd105a6eb, 0x115ce2e6, 0xc7dee97b, 0x3dd3c16d, 0x2af15db8, 0x9e4540d2, 0x67846826, 0x9f210c6, 0xa53c25d5, 0x67ea2886, 0xb2c7f249, 0x557507c9, 0xa67b3dd5, 0x60acef53, 0x67472202, 0x000174 }, { 0xa7075234, 0x51a90856, 0x8685b1af, 0x52a4112f, 0xe2d68f9, 0xfaf6924f, 0xe3191cdf, 0x57f96241, 0x2b20768f, 0x2e7dc75b, 0x8abddfef, 0x31802bdb, 0xfc98b9fa, 0x22ca0037, 0x759a9f95, 0x5da1b7f5, 0x0001bd } }, { { 0xa5f5ad3f, 0x973808da, 0x7b3a208, 0xb85c4d49, 0xa644cc80, 0xc6f5a6d8, 0xf388136a, 0x50ba7cfa, 0x133ac8d8, 0x2b5377cd, 0x8ca0518e, 0xa1b2825d, 0x6ba6e2fd, 0xe66e0965, 0xc90dfeb4, 0xeca5153c, 0x00014c }, { 0xfde39424, 0x9f42d978, 0xa4339669, 0x858acd1c, 0xf942e3b5, 0xf06731ed, 0x96868551, 0x7b3741d0, 0x38d2ad, 0xc775a552, 0xbe77cc97, 0xc3b8247a, 0xb6d239bf, 0x46eca9e4, 0x423bdc33, 0x5db15216, 0x000088 }, { 0xc9bf3074, 0x2ce8aff3, 0x6ff910a6, 0x22a5808b, 0xf69a8c15, 0x8027e2a3, 0x14125265, 0xb5432c33, 0x1dd7d501, 0x765205da, 0x6827ec07, 0x87c1cc2f, 0xaba65794, 0xf351708a, 0xe1b9cf81, 0xdfa0092c, 0x0001d0 } }, { { 0x50572b57, 0x19b50a29, 0x41ac7d5a, 0xf42bfcb5, 0x21702091, 0x967e0d8e, 0xf4c3d8a1, 0xf1a67628, 0xe52bd9d8, 0xb4f2e0ae, 0x6e4a77d5, 0x7caf79aa, 0xd971f390, 0x7016d2fb, 0x4f1ea5f1, 0xbaa3977f, 0x0001b5 }, { 0x27323591, 0xe861fcf8, 0x944ecc20, 0xdd88ca7e, 0x68ababdb, 0x88d8ab15, 0x45c85663, 0xa88ddfff, 0x1ddfdd82, 0xf666dbc5, 0x637b9c5b, 0x1ff04c63, 0x97dc1a09, 0x4f9c38be, 0x380fe416, 0x7ce0da6f, 0x0000a8 }, { 0xfc030c6b, 0x68b32333, 0x4aed9ab2, 0x97cc924e, 0x1c6a23e, 0x87d773ff, 0x9a3c1e1a, 0xa1f14954, 0x4389a6c8, 0x8766eb80, 0x96454b96, 0x475ff210, 0x91f9a2cc, 0xf227d397, 0xc2a3e744, 0x49d9e826, 0x00010a } }, { { 0x6080c9cf, 0xa118be86, 0xa1ce67ad, 0x9e3b787, 0x9fbecb, 0xdf244adc, 0xa0257f80, 0xb227c632, 0x52b70c0b, 0x25d2fe28, 0xe8c0c9e9, 0xad8651, 0x6385f970, 0x5d3dcc08, 0x4b0c7a82, 0x1e21e16b, 0x0000f2 }, { 0x567489c4, 0x17b9bd77, 0x70ccd9f2, 0x71c440da, 0x9c9a81a0, 0xd1daa1a3, 0xca16cfdb, 0xe236e812, 0xd426e32, 0x38107c, 0x88bcd53e, 0x917a8a19, 0xad330d75, 0xcee7d15c, 0x94e99652, 0xf8b06eb3, 0x000056 }, { 0x8b888b32, 0x3f372bf9, 0x448cd467, 0x8309c3df, 0xb93424f0, 0x5e86c797, 0x4cfd19ea, 0xae49c733, 0x499883ea, 0x1005a8ef, 0xbefd1dee, 0x548eb248, 0x2aedc129, 0xeb04274, 0x4fade338, 0x702c47b7, 0x000123 } }, { { 0x63ffb44a, 0xa7e1c359, 0x4ba50335, 0x966c1a26, 0xb32d89d3, 0x37305fab, 0x70c464b, 0xc79a378, 0x2d3ce4fd, 0x51d7838d, 0xd31c88bf, 0xf68f0d4b, 0xddd56e72, 0xa5bfcb3c, 0x86d9d494, 0x99669025, 0x0000e5 }, { 0x41d4866d, 0xd4524b87, 0x8f3c68bd, 0x6befeb24, 0x282d64f4, 0xedd6aade, 0xf0ea4c96, 0xa8aff459, 0xe78118de, 0x753f7e96, 0xae58c567, 0xb514cab3, 0x4c50e26c, 0x459e7301, 0x69828f02, 0xfebbec59, 0x000198 }, { 0xf6438848, 0xf9135f15, 0xb9a7d31a, 0xeb3930a0, 0x56526726, 0x5bb995f7, 0x8e2499b, 0xd1956e59, 0xc32ad572, 0xd39c18c3, 0x85e410fe, 0x2b86f85, 0xe72c0e1f, 0xaa67494a, 0xe6b77790, 0x7c4d8144, 0x00006d } }, { { 0x2862eb3d, 0xf72b3721, 0xe9659e55, 0xdf1be690, 0xacafc5fe, 0x3b08743f, 0xfffc287e, 0x71b814f7, 0xdc8e73f0, 0x463a9487, 0x171a3fe3, 0x65a42c49, 0x9b19b343, 0x4e1a298f, 0xfaddb041, 0x88b6d998, 0x00000f }, { 0x913bdc73, 0xe45a24e0, 0x1b6a8ad1, 0x6369f59f, 0x3ddae258, 0xedf42613, 0x95e6ceaf, 0xa610745f, 0xa89740e0, 0xf5d82067, 0xcd073c2e, 0x790877a8, 0x8d7e7852, 0x76f1522, 0x2138b2f7, 0xc8c97e36, 0x00013a }, { 0x28d59176, 0xebaf2172, 0x8cd33223, 0xeaf8fb94, 0x14aeb670, 0x71528882, 0x3f1eb506, 0x6bbf2e26, 0xfde449ca, 0x47be32f4, 0x8da92deb, 0xbde6ad0, 0x5e2cd6e7, 0xfbf8283f, 0xd946dfd6, 0x437182f6, 0x00000e } }, { { 0xaace388e, 0x5eb0a0f4, 0x17a1be6b, 0x36cfde47, 0x48b29362, 0xe778290, 0xa874549a, 0x8e70d32d, 0xb327d827, 0x2f2ae13c, 0x503946ae, 0xbe1ed375, 0xd3a7018d, 0x24efa6e4, 0xf84a3118, 0x278c799e, 0x00001d }, { 0x9cf2e643, 0x8a8e590a, 0x1982284f, 0xd710fa9b, 0x962ca89d, 0x810fe9fe, 0x80075340, 0x26a08099, 0x2bd0ae1d, 0x3d931f9a, 0x295420e3, 0xfe9a890d, 0x4dfe5aac, 0x623254a8, 0xe0a1d185, 0xc65a6c52, 0x0001dd }, { 0x7b16a151, 0x9956191b, 0x3977b328, 0x6218e03e, 0xafbc34bc, 0xc9b1c3f3, 0x581987ed, 0xbe665b69, 0x410334ec, 0x82f9f93c, 0x9d0633fa, 0xdfae99b, 0xb77188fa, 0x80404ac, 0x346207ba, 0x70d8f2ab, 0x00005a } } }, { { { 0x0b04d9, 0xa72386d8, 0x36fb0164, 0xfedaa9d9, 0xbcd096e, 0x91a7aff5, 0xad30c39d, 0x5e1e811b, 0x2077f07f, 0x42b2942d, 0x6c4ef9d9, 0xea90375f, 0x2c26bd28, 0x9805dba2, 0xa373ef13, 0x7dd5f850, 0x0001b5 }, { 0x7c903e2, 0xaf494979, 0x4901b171, 0x89015d27, 0x5e0d04d0, 0x647b665b, 0x32610f7b, 0x718dc96d, 0x8a423546, 0x6933d56d, 0x6d0b3e46, 0x1b33d14f, 0x3147bd5d, 0xbd5f8245, 0x30baf07c, 0x3f93559f, 0x00003d }, { 0x61fba800, 0xddee54d5, 0xe25f07cb, 0x9ee892f3, 0x38e718db, 0x2d713881, 0x75d8414f, 0xf39f64a7, 0xa61d5deb, 0x2717bbe8, 0x4f56c074, 0x808d90c3, 0x36207974, 0x1f9be427, 0x9c738fe8, 0x8f964189, 0x000152 } }, { { 0x4c653fc8, 0x854c7865, 0xb274784, 0xd7b1c913, 0x26dc5304, 0xf83e5dfc, 0xb811295e, 0x5cd6c94c, 0x42e50090, 0x5975006b, 0x1e6dae24, 0x90b7f2e5, 0xa1043a07, 0xc92b10a2, 0xc11cf2, 0x2518ad60, 0x000105 }, { 0x7a2efb52, 0x8cce24f4, 0x9ac6c073, 0xb7dc7a28, 0xfeb0fc53, 0x247eee27, 0xd90965b0, 0xf0c7564b, 0x5ef9a12e, 0xba18a158, 0x73eef721, 0xccbb54b5, 0x62fafdfa, 0x2101fbb3, 0x7c938b09, 0xaad59eec, 0x00003f }, { 0xf062c16e, 0xf9c162aa, 0x846d2c3f, 0xdcaab45f, 0xdba58a9, 0x74a49458, 0x4f164bd5, 0xb524d220, 0x122b44a0, 0xc50218, 0x87b30fef, 0x24abff77, 0x16cd298a, 0x5033f439, 0xe862555a, 0x4a597db1, 0x000069 } }, { { 0x1928e0fe, 0x8157fa9b, 0x1c95637a, 0x2550a5bd, 0xaa09feaf, 0x73570e2e, 0x9295823d, 0xcebaea8f, 0xd3f39112, 0x8763ef26, 0xc5107ba5, 0x87aaef80, 0xecc1a026, 0x86aa77ac, 0x2cc4c25d, 0x78c9404d, 0x00010d }, { 0x3012e08f, 0xdc461e56, 0x47695c16, 0x33e2bbf9, 0xc8dde63e, 0xa2a1789a, 0x4e5f109f, 0x607d2323, 0x9fa2fa4c, 0xce415dc8, 0x6c8c1c0, 0xd047cc1b, 0x92c629aa, 0xd7e644f, 0xc1d2bd1f, 0x2f4e9ac5, 0x0001b8 }, { 0xa5848af8, 0xfc43d626, 0xdeeb8444, 0xc70aa5e0, 0xf1a291ba, 0xbbeb66b6, 0xcda01cb8, 0x63db414b, 0x2a2bb257, 0xc8d1e2a, 0xbddfe33f, 0x862b4a27, 0xedb95cc6, 0x62763c59, 0x157de2cf, 0x115f8c05, 0x0000f9 } }, { { 0x6a439f7d, 0x5fb352e4, 0xfde1b740, 0x347b3a30, 0xaeab84f0, 0xf8052eda, 0x778c102, 0x72f7e711, 0x12fa1f3e, 0xf62658c8, 0xc96dc2e7, 0xcb1d32e2, 0xc1b3d46c, 0x7f70ea45, 0x442d1c5e, 0xb2bfb1ad, 0x000090 }, { 0x899d8d64, 0xa45a9806, 0x490c5c7e, 0x30647e0e, 0x93f77d18, 0x878e25d, 0xc0fbd2fc, 0x26827aad, 0xacaf1e78, 0xda431fd, 0x6171e3f9, 0x1e27fbf6, 0x6e940eb2, 0x624df780, 0x66b62abd, 0xf7739ae1, 0x00008a }, { 0xc9ce52f9, 0x830631f9, 0xbeb1ff2a, 0x11fc10a7, 0x466dadd5, 0xf6d5995, 0x752b83ec, 0x26b6cc8b, 0xb6ee18bd, 0xd6bcd245, 0xf1367ba3, 0x720746a9, 0x1d00f3ee, 0x3e55dda0, 0xf9efd430, 0x704bf601, 0x000076 } }, { { 0x139ef519, 0xf93817a6, 0xf6c30f82, 0xd33a1a59, 0xe5f69674, 0x447b9eb0, 0xb20a421, 0xa3292aba, 0xe7b72c96, 0xab989c91, 0xd1fb3b56, 0x48633c0b, 0x2d7fc614, 0xde90c863, 0x95f090fc, 0x5bcd72ab, 0x000052 }, { 0x3c07e4bb, 0xaf87de89, 0x25e2ce4, 0xc0a55ac6, 0xaa758ae1, 0xd02f8eef, 0x81f429ea, 0x9da88be7, 0x9b82ed2, 0xb314300a, 0x7e257d8, 0x7788ad8d, 0x7429a821, 0x8e7fcd64, 0x5b3d1b42, 0xd0d13f48, 0x00004f }, { 0xabb3aa38, 0xca997e3e, 0x6162e042, 0x3e8736a3, 0x2693ca27, 0xa0318872, 0xadbff5ec, 0xf9e7e98e, 0xa01e7994, 0xae47c1b4, 0x70e3baa8, 0xd9e96dc6, 0x8a4e1973, 0xfa0f48ca, 0x423fdd69, 0xf7c69b0e, 0x00012f } }, { { 0xd2b88e11, 0xa4983617, 0x90a81496, 0xf32a7620, 0x10749aa4, 0xb2bf557f, 0x1b75aef, 0x64a90f5f, 0xf08c2a9a, 0x74a20d4c, 0x1ecf7eab, 0xc675af2b, 0xdefb007d, 0xff5da2e3, 0xe8eb102f, 0xce30edea, 0x00002d }, { 0x94e5c9b4, 0x9d898901, 0x3777f3a0, 0x5d7770c3, 0x81b77f6c, 0x102b314b, 0x8c787a0, 0x398c2575, 0xdbc6172d, 0xbcbcddd5, 0xd4de24ac, 0x2fbf21f6, 0x4c00cd30, 0x8e36ace2, 0x1e850c3b, 0x30ef6851, 0x000014 }, { 0x99025783, 0xc3a040e3, 0x4117568c, 0x1fc9a182, 0x7d43d904, 0xc387cebd, 0x3b6f0211, 0x18587fae, 0x561296e2, 0x309f6bf7, 0x8611e12a, 0x533b77dd, 0x82d4cc08, 0x54b91d5a, 0x38689d2d, 0xa05ba701, 0x00003a } }, { { 0x14aa7028, 0x147cad7c, 0x1f710adb, 0x249e79a0, 0xc0c4c2d7, 0x5975a3fd, 0x152ec0dc, 0x567f39d7, 0xbdf6dd37, 0x4fa34c78, 0xf7f8d44f, 0x694a78cb, 0xcb7eeac2, 0x88c0ffb9, 0x624fea8c, 0x2e4fe06e, 0x000163 }, { 0x5f041933, 0x252c7623, 0xd0f94ca4, 0xb862308e, 0x912e8d73, 0x28b03a0d, 0x268fbe46, 0x47c40977, 0x8cc4344d, 0xe44efb6a, 0xd02a2e6f, 0xbe9da2a4, 0x73c7ca22, 0xdf7ef60e, 0x4d6f712f, 0xd9b63d9, 0x000016 }, { 0xf0a598a4, 0xcb0c01eb, 0x9432b77, 0xdefe786, 0x48f7f966, 0xb2ca3615, 0xff7675fe, 0xb4917d74, 0x4fb8ff4a, 0xce8739ef, 0xf45d53ef, 0xc22749fe, 0x822a36f9, 0x6277f2e8, 0x4b18830d, 0xb8673471, 0x00019f } }, { { 0x9ec2dc6, 0x877d07f0, 0x126a1e75, 0xfd76ee14, 0x99c7950b, 0x9b72c01c, 0x11e2f2a7, 0xde53e5c9, 0xf00ee22d, 0xbec5bd51, 0x3a5cd2da, 0x76d958f3, 0x5a78d311, 0x9dd23bdb, 0xa890abc9, 0x15829206, 0x000001 }, { 0x9c7a1231, 0xcf46755, 0x93006881, 0xdb649aeb, 0x888aca9f, 0x2bd28cbf, 0xd132d6ff, 0x99e30d0d, 0x83c5de01, 0xad91fbd4, 0x75cdbf47, 0x5385bc63, 0x4ab9e9a0, 0xef54b309, 0xe20bcdd, 0xa953a0d6, 0x000094 }, { 0xc336420f, 0x90ec90f9, 0xe4d94e77, 0xb16b7d51, 0x8e91505f, 0xc3d4f3f5, 0xab45f3be, 0x5aa18258, 0xde71f60c, 0x77ee60ed, 0x5703827f, 0xceb9c192, 0x8be32210, 0x53299295, 0xb254d89b, 0xfad34351, 0x00011a } }, { { 0x98d7ed20, 0x861e172e, 0x95eb3e3, 0xdc375426, 0x78f465c9, 0xbe94992c, 0xfbfa2c39, 0xd88591ea, 0x9ff430e4, 0x622befde, 0xe1cf8b61, 0x70cd168d, 0xf4e54303, 0x2b80610, 0x3d93d92d, 0x50931f86, 0x00017e }, { 0xa248327e, 0xa900a688, 0xf6ea842a, 0x1f70f581, 0x4e422dda, 0x27e5aade, 0xbaae6e98, 0xe9fc74dd, 0xef6b4dd1, 0x672a36f1, 0xcf52987d, 0x4559bda0, 0xfac07ae3, 0x33887a5b, 0xbe8e001a, 0xc3fb6c35, 0x0001ce }, { 0xc30d37b2, 0x8c8ce8c5, 0x4cc53cab, 0x9d3b4efb, 0x79627da3, 0xa3a95d46, 0x39472572, 0xba4f4633, 0xdf296dd3, 0xeef42181, 0xf0de2ea1, 0x799e8784, 0x90c97af2, 0xd7d5c6a2, 0x478dd71f, 0x54ed4d0b, 0x000022 } }, { { 0x1926a989, 0xb3e61a1, 0x22573110, 0x6e1cad3c, 0xedcffe4d, 0xa86424bb, 0x4c3e4fa1, 0xd5b43b95, 0x4fe1cdf2, 0x19328a13, 0x70a35faa, 0xc5b53d4f, 0x5e7cd425, 0xa5d0ff52, 0x6d8ad42d, 0x5e3a11b9, 0x00014b }, { 0x5e8294bf, 0xf3c429d1, 0xca86b2d6, 0x197161f, 0x9e331970, 0x815a6d90, 0xca906853, 0xad226b4f, 0x41998b63, 0xb81223, 0xcda0f395, 0x12c1060f, 0x143966c7, 0xb5db7cc6, 0xacb5168c, 0xf20bd9de, 0x00017b }, { 0x71ecdab5, 0x1209a0b8, 0x8b0bed82, 0x2d0d6ba4, 0x440e0b9a, 0x7652fa8f, 0x9216534f, 0xde911220, 0x549a111, 0x84185d52, 0xdb03af4f, 0x60f81ff8, 0x6e07b58a, 0xf27137a5, 0x1e7638d1, 0x1ca0ce02, 0x0001b8 } }, { { 0x651f4e37, 0xf3381433, 0xea0251b7, 0x69d148d6, 0xe20c0a15, 0x58280901, 0x6226d863, 0xa061aa13, 0xd43076b5, 0x5b4c941c, 0x95b723da, 0x97913aa6, 0xbb29d812, 0xf259da4c, 0x65114731, 0x451da56a, 0x000137 }, { 0x7f62bf7a, 0xf3d0be65, 0xc78f94d2, 0x2c31d4b5, 0xf7999b6d, 0x1bc763d8, 0xd48f6d58, 0xdfcef26b, 0x43fe8dd4, 0x9367a296, 0xd31a8f5, 0x28777ec0, 0xbc206c8d, 0x78aa0798, 0x3018ebc1, 0x1f068bde, 0x000003 }, { 0xbd00ea55, 0x41ac249a, 0x7ccb15e7, 0x46f7df18, 0xfc8f95c8, 0x35f109d9, 0x21f04b0c, 0x6321e5ca, 0x81c1d3d7, 0x39d4f0e1, 0xeadc1c10, 0x9b0192d3, 0xc0a3e253, 0x827fe8b9, 0x3f795354, 0xc7f6a80, 0x000118 } }, { { 0x45f19776, 0xb1c2b493, 0x5f1a463f, 0x546c41cd, 0xa59220df, 0xd045cc7c, 0x8345af35, 0xc740547f, 0x7ef28124, 0x4188a34e, 0x64ad7fb4, 0x46f4f9f0, 0xe111499e, 0x91e03a7d, 0xa724ecc6, 0x42d8c04b, 0x00017b }, { 0xb798910f, 0xe3be9858, 0x118415cf, 0xe7036831, 0xb3f35dfd, 0xd8662a2d, 0xbc14ed14, 0x3421ad89, 0xbfcb7d3, 0x63fa6dae, 0x5cc0cf4a, 0xf7b3e1e8, 0xd426f589, 0x824a0fef, 0x80df0503, 0xe08a0dbf, 0x0001ab }, { 0xf198adc, 0x2bf45a12, 0x2a5a1642, 0x5801f135, 0xf6892988, 0x693ad93b, 0x587f57ab, 0x55d16f34, 0x69a8153a, 0x32dc1eda, 0x364256bd, 0xaf995df9, 0x5c171950, 0xc5055f4b, 0x2471dcf2, 0x5d676a5a, 0x00012d } }, { { 0xd68b4799, 0xeab5de52, 0x2bdf13f9, 0x9eb49671, 0xef4d989e, 0xdfc5418b, 0xdff550d8, 0x25a94e68, 0x42c4de4f, 0xc04a635, 0x665f49d2, 0x1ff7fcc7, 0xf6482ea2, 0x72500604, 0xd6718bc7, 0xe1ff6cdc, 0x000112 }, { 0xc9f09eb6, 0xa361e253, 0xf5238344, 0xc3525812, 0xa68db3dd, 0x41740516, 0xd76cad16, 0xc0386e27, 0x5715a0b6, 0xcee0b651, 0x5a060aa3, 0x667b05f3, 0xbe2dca79, 0xa66acc37, 0x8b6d23dc, 0xc5b5c855, 0x00016f }, { 0x84a44b78, 0xfc5242fb, 0x52d17b35, 0xecce6c34, 0xe778f73e, 0x5ba1c96d, 0xfb882e65, 0xf2fa2e3b, 0xc5a2102e, 0x741f9c13, 0xd3d55f7b, 0x117c5afc, 0x2c487325, 0x2be06de1, 0xeba01724, 0x4c463a88, 0x000143 } }, { { 0xb93241f9, 0x3449b5b2, 0x2a0e12a8, 0x851b903d, 0x8a68c7f2, 0xb2f7195b, 0x111177f9, 0xba43dff5, 0x81db599f, 0xd6c48d64, 0x589af50b, 0x7b764afd, 0x57ea996, 0x2de00abb, 0xb6326aea, 0x246f9c1d, 0x0000b1 }, { 0x1145405, 0xc4d6e26a, 0x7b4bad5a, 0x19ec287b, 0xbacaa4f6, 0x202ff30a, 0x19b52fa7, 0xfec557f9, 0x72b8cd, 0xbfc64702, 0xec827c35, 0xcec63036, 0x98a6d196, 0x5a13fe9d, 0xe81a78fe, 0xafe5b90a, 0x00006e }, { 0x19ef4f8b, 0x2bd48f8a, 0x36fc8340, 0x80c64e97, 0x7516da2, 0x3e6af5c2, 0xb16a98fb, 0x37b67232, 0x53c69edc, 0x7855234a, 0xe3485bc8, 0x4d463b56, 0x3f4c38a2, 0x249f7594, 0xaba131fe, 0x89de4220, 0x000199 } }, { { 0xd0340498, 0xe97d0fac, 0x43c79b00, 0xa66485df, 0x8e644946, 0x78650810, 0xa5aa97fc, 0x640bb63a, 0xd3cef2e5, 0xe558b859, 0xb748e2ec, 0xcaf08a97, 0xb77eb92e, 0x137c9b50, 0x57b67140, 0x5296250e, 0x000064 }, { 0x155868cd, 0x7a867871, 0xbc47a4de, 0xb062e9c5, 0x46435a90, 0xbd0e52ec, 0x369e2338, 0x297f4d01, 0xfa40d26, 0xce399540, 0x74bf4b0f, 0x5bffabd, 0x4e375765, 0xf60a5abc, 0x84e5b162, 0xc0066e50, 0x0000cd }, { 0x4ca88092, 0xdf69d027, 0xa7c7e15c, 0xb8c1e757, 0xc6394fdf, 0xb4519939, 0xd6919f57, 0x30d0c895, 0x78643d0e, 0x339af0cd, 0xb6aaf4d5, 0x812cd431, 0x748ad77b, 0x2494a567, 0xf9c60372, 0xfee05130, 0x000144 } } }, { { { 0xef52bd65, 0x6e8b144d, 0x1c3074e6, 0xf10a4696, 0x9d70789c, 0x174acc4f, 0xb680c10e, 0xc5ec21c6, 0x984c7c80, 0xe5d3aed0, 0x5df0ca7f, 0xa7068e61, 0xc0f513c1, 0xf5739b38, 0x885e8e43, 0xc22005f5, 0x00012b }, { 0x76254518, 0x44fc43cd, 0x2a4f38ba, 0xc45ed2aa, 0xf33868be, 0x94eaeec7, 0xa119f586, 0x3d148caa, 0xeaed22f6, 0xbb5e38d9, 0xc7b91342, 0xa35aa4ed, 0x8f8acd29, 0xa98e62e9, 0xfa108b56, 0x344f39d1, 0x0000e6 }, { 0xe00dfa15, 0xbbe89090, 0x17615c8b, 0x2bc4086a, 0x13957baa, 0xe992d8a3, 0x1c8900d0, 0xbe14982a, 0x3f09b00c, 0x79fc6da8, 0x3ab5c520, 0x20a45092, 0xcc35176c, 0xa2365dea, 0xee1eccd0, 0x51669f99, 0x0001be } }, { { 0x1b578023, 0x739e4d96, 0x402305f3, 0x1360eb81, 0xed0d6298, 0xc4b7af58, 0xd0708da4, 0xc1e40a35, 0xb5f18abf, 0x92a23cc, 0xff421fd, 0x47cd0979, 0xa19c2501, 0xf002c1d3, 0x437cfaa7, 0xb9778f96, 0x0001e1 }, { 0x6f713d7, 0x330d0790, 0x8d6ebaff, 0xfd3dfc1e, 0x2100233e, 0x96c9d419, 0x855c88ec, 0x59fb135, 0x383e9ad7, 0xfcbe4297, 0x63e70e3e, 0x7d164ee7, 0xf9a22863, 0x32147a04, 0x661370c4, 0xac47fe22, 0x000034 }, { 0xb878e635, 0x312fd603, 0x74cf1a11, 0xfd5625ed, 0xaa93b67a, 0x7dcdc1d4, 0x98a95fbf, 0x265d24b2, 0xcccdac79, 0x4d149db6, 0x49841373, 0xd3121ca3, 0xc16dbaaf, 0x3ef683f4, 0x5afad991, 0x9a204ef0, 0x000109 } }, { { 0x4d9f8f19, 0x5d2c645d, 0xaf1ae4ea, 0x7bc5f288, 0xc6c049af, 0xd561dc8b, 0x9d05492c, 0x4b244ab7, 0x44426c84, 0xd653d29, 0x5ad850b8, 0xb523c998, 0x31688014, 0x44ac9a85, 0x39dd9ffb, 0xcb893856, 0x000164 }, { 0x3ea0d363, 0xee1fd872, 0x42500af8, 0x3757c897, 0xe5372a8a, 0x9e3b529f, 0xd3184d4e, 0x879c9831, 0xb4d275a2, 0xf51aa895, 0x5a8a4f77, 0x67480ba1, 0x3fea0c58, 0x57bfec64, 0x7222f5d0, 0x6b325edf, 0x0000c3 }, { 0x980f33fb, 0xa6ac2126, 0xe055f92e, 0xa4bebb9b, 0x9c5d0d20, 0xdb16cef0, 0x49e3ce5, 0x44ff10e, 0x2f5b642f, 0x840cf756, 0x7f8289e7, 0x39b9ffb6, 0xb16d1fd5, 0x97f5e919, 0x296ddc7b, 0xa7aaedfc, 0x0000d6 } }, { { 0x50207388, 0xd2b46869, 0x20ef6edf, 0xab3b58ee, 0x4b4974b1, 0xdf01d9c3, 0x1c8af8fd, 0xd1d84e2e, 0x796c4f9f, 0x325a1699, 0xef84a1ad, 0x383be3fb, 0x7f468b36, 0x20998770, 0x118730fa, 0x66d0bee7, 0x000084 }, { 0xd0539ba9, 0xbb89cde8, 0xc22b55f9, 0x436b55d8, 0x91f7d3f5, 0x7d75871e, 0xefd175c8, 0xa4491a38, 0x39c4ee3d, 0x2b2cdf72, 0xbfcfc36f, 0x3181a5e7, 0x7e1d7bcb, 0x9b78c3af, 0x18dfb709, 0xe0a71bda, 0x0000e7 }, { 0x885461e8, 0x161d6baa, 0xa84b80fa, 0x8ae4a232, 0xd66cc859, 0x47bf4a05, 0x7fe0e278, 0x869181ed, 0x2cb7ace0, 0xd86a56aa, 0x2d5dc90, 0x6bee1f9f, 0x99d405c8, 0x2a58a0ed, 0x9b63d44b, 0x75e0d395, 0x000170 } }, { { 0x512ccf35, 0x60d42c28, 0xd698caff, 0x7a012e87, 0x8aa41879, 0xb190b045, 0xbaff2077, 0x3bee8b1b, 0xb3fc6e05, 0x253b5922, 0x406e2208, 0x37c44db0, 0x7e9846cc, 0xc482da65, 0xaf3a3037, 0x645b4711, 0x00019b }, { 0xcf3671ed, 0xda92182, 0xb814deba, 0xaa60acaa, 0x15eda026, 0xd285d632, 0x83afbe05, 0x3438a19f, 0xdb3536fa, 0xccdbf318, 0x4deb6b92, 0x50a71694, 0x3bbcf807, 0x9bd914c0, 0xb66ee7d2, 0x6b4acff7, 0x0000b2 }, { 0xa98eee70, 0x9bd0163a, 0x6f4bd1af, 0x7e619cc6, 0xbea3065f, 0x340bf53d, 0x729bb640, 0x32c69183, 0x2ba5a15b, 0x9c854515, 0xd6ad164, 0x6b161882, 0x25b6b7ab, 0xb8aae22b, 0x2d12a80a, 0xc7850098, 0x000108 } }, { { 0xa791cb69, 0xfa08b8ec, 0x697b9892, 0xe300f3d6, 0xc6764f8e, 0xbf754e3c, 0x4ae0ca27, 0xbc5d5d28, 0xe55f1874, 0xfe854fc5, 0x3cf34e7a, 0x2e6c4a04, 0x9c9a2a14, 0x1244e415, 0xa914668e, 0x59e35e91, 0x000178 }, { 0x855c8991, 0x748d2495, 0xa3ae289b, 0xb54ed0eb, 0x3faec82c, 0x8b59334d, 0x1a1d638e, 0x91e7ad2c, 0x25fe76a1, 0x23721815, 0x3619937d, 0xd981b114, 0x571379e8, 0xea4d369c, 0x8a7dbd4b, 0xf32997ce, 0x0001b1 }, { 0xe582e37d, 0x8c1111, 0xc656dbfc, 0x4803bc0e, 0xc94b762f, 0x9ef8e5c9, 0xf113f833, 0xd943627c, 0x4be5d2a6, 0x5663eb98, 0x7924a1b9, 0x436bec56, 0xb5cfd51a, 0x2a7a4b2e, 0xfa94222c, 0xe9100672, 0x0001d8 } }, { { 0x8d64734d, 0x6fd5e6ed, 0xd8a11000, 0xffd7611e, 0x8a6b55d4, 0xe1a9afb, 0xc1f3f566, 0x1c4c9faa, 0x8ea6c1a3, 0x332ff561, 0x4e0977c5, 0xb3cb38a3, 0x79a6b4ed, 0xc7e434ec, 0x88f93f78, 0x5604714c, 0x0001ea }, { 0xab9d4734, 0x89c53ccc, 0xda16f173, 0xb825c86e, 0x4162224b, 0xf9ba6ee9, 0xcdcd7a25, 0x53f1f9ab, 0xf69bc3e8, 0x606654ac, 0x5c9b87dd, 0x33304c90, 0x4bfc61e4, 0x71e6cc58, 0x75fc002b, 0xd2d305cf, 0x0000ae }, { 0x9ebbbb8f, 0x61d86f8e, 0xc5675dd, 0xfd6c97e1, 0xdd3c7509, 0x910a1e9b, 0xf2dbdc19, 0xd80a57f8, 0x3a04ddf8, 0xe577015d, 0x1d20a02f, 0xb1e115ac, 0x543876f2, 0x4cd56a36, 0xd4b28aca, 0x302b7888, 0x000038 } }, { { 0x3b9f209a, 0x9d6528e3, 0x740726c0, 0xa6c24051, 0x93dfc078, 0xa15b28f3, 0xf6dacc1a, 0xf81e4b89, 0xbeec0e44, 0x1c873b55, 0xdc7f2824, 0xeed4bebb, 0xa269d27f, 0x62b0242c, 0xd7598bce, 0xd4e0532f, 0x0000da }, { 0x7064aec9, 0x62ef91ba, 0x98b8bf2a, 0xadf20ceb, 0xec90b306, 0x56d883d8, 0x3d991e90, 0xd7076f56, 0x6f960b97, 0xdb3b1fc9, 0x4c6d6d8e, 0x53aaa285, 0x4711e2fd, 0x92d2af82, 0x7349622f, 0x71c0079c, 0x00001c }, { 0xde97c620, 0x40c8e7e9, 0xd2bafaef, 0xbe6cd59e, 0x3ecc967a, 0x5a95c286, 0xe5b541ee, 0x2bf8176d, 0x7381de7b, 0x2ef4ab86, 0xe5525f1d, 0xb177abed, 0x671c644b, 0x779b56e2, 0x9f8b5edb, 0x2072a150, 0x0000d9 } }, { { 0xb72a66ac, 0xa4da0047, 0xb21a5557, 0x4de000f3, 0x170d30c6, 0x872a5138, 0xeaec2723, 0x64e18855, 0xab57210f, 0x45934df5, 0x175e055e, 0x7f2dd137, 0x45ef8145, 0x748439e1, 0x29df7de7, 0xaba636be, 0x0000d7 }, { 0x9dbc553f, 0x1d31571d, 0xe55d3a44, 0x90384cb2, 0x104d2350, 0xdea454a, 0x26d688af, 0x8c4efa61, 0x2222500e, 0x619ba540, 0x2c199d45, 0xc4b2e65b, 0x1d369935, 0x8d924881, 0xd388f663, 0xdf259272, 0x0000eb }, { 0xb20c4875, 0xdf7a06, 0x6c724126, 0x6f7cd715, 0x3ef11b33, 0x1323937d, 0xbd245952, 0x14e6a4dd, 0xbae87b3, 0x84dcc642, 0x19d97f7c, 0x2fe84c66, 0xd8e0eca4, 0x6407bf15, 0x266be87c, 0xf6b5a344, 0x00003e } }, { { 0xa6984df2, 0xd15c0ba9, 0x45c413a3, 0xdcf39cfa, 0xaacbb89e, 0x28ec5dc0, 0xec1c7370, 0x6badf1e2, 0x408896f7, 0x9cb651f1, 0x2dbb5d42, 0x4e842f43, 0x24ceffed, 0xbaa271c4, 0x64656f7e, 0x249d7858, 0x000133 }, { 0xa2ef6722, 0x48beab2, 0x147aa375, 0xa7b259e4, 0x1c47cd71, 0x73214abf, 0x451a63b1, 0x48c3a607, 0x18c3244c, 0x6062d12d, 0x4f37f51b, 0xbfb7b098, 0x1cbb7913, 0x5725ece0, 0x75abdc64, 0xab23db8d, 0x0001a7 }, { 0x68e2ba86, 0x90272ab, 0x8ea7651c, 0xf4e151fd, 0x67752acb, 0xbb8ef77e, 0x2f92b39e, 0x35003e0c, 0xbdb84e30, 0x22983fbb, 0xc10b6854, 0xc7ed9de0, 0xc542e2f9, 0x612f463c, 0x3f5c3cf2, 0xe52ec9f6, 0x00002b } }, { { 0x571e2984, 0x56273028, 0x743d5d5a, 0x2ee40572, 0x37700ae8, 0x12479a3e, 0xd4c251a7, 0xb223bd8e, 0x3230b433, 0xd735f3fc, 0xa59f688d, 0xe133739a, 0x7a8b3479, 0xbb1b2478, 0xe5317cbe, 0x868fae, 0x000118 }, { 0xcea28f8f, 0x86c328ed, 0x205bc246, 0x1db6e7c1, 0x79c93cee, 0xc8d31e7, 0x2ed59f47, 0x72e79ee, 0x3f8c7f1, 0xcdaec1ea, 0x9d13a53e, 0xe243d0b7, 0xee30098b, 0x13d4204a, 0x2c1f26f7, 0xdca378a9, 0x000124 }, { 0x777820b, 0x4d91891e, 0x1eaf934c, 0xbbfb9424, 0xe983e13e, 0xbf344a65, 0x35cc8c50, 0x359ec007, 0xdeac5276, 0x706edd2, 0x13321f36, 0x9cbf9583, 0x7f50e01e, 0x5290f712, 0x316a1f26, 0x77535831, 0x000189 } }, { { 0x9d281362, 0xee2846db, 0x487a1df6, 0x567df7d6, 0xc33d2d90, 0x9f28921, 0x722adcd3, 0x1fdcf358, 0x9a317e5e, 0xdb3b173f, 0x62d2fddb, 0x7213f41c, 0x4a486d3a, 0x334a142c, 0x161707da, 0xc39c5541, 0x0001d1 }, { 0x20b6a440, 0xb272e672, 0x58a4df56, 0x49ae3c19, 0x577504d0, 0x4c660a5d, 0xf0eb89ca, 0x3953f0ce, 0x63ae1726, 0x112e9b6a, 0x8b5e373d, 0x76067d3, 0xd4364ab2, 0xabf2e245, 0x1148fd01, 0xc8ecb94e, 0x0001dd }, { 0x762b86ff, 0xbfe08b8d, 0x84fca85e, 0x7534ec36, 0xcc44289b, 0x3095292d, 0x7c3f9a8f, 0x53fa2880, 0x6cc443b4, 0x72c975f3, 0x775f2f2e, 0xbef901dd, 0x827d7a32, 0xbd69e4b, 0xca419274, 0x567b7f48, 0x000082 } }, { { 0x38dc4e37, 0x189ef9de, 0x250d52e1, 0xc3f1a0bf, 0x81dca9a1, 0x3439739c, 0x54776b68, 0x487839c9, 0x8dd6d8bd, 0x60bc418, 0xb0c0cbda, 0xfdb24b1, 0x6f69a267, 0xb211e758, 0x9c96de16, 0x3123613f, 0x00017f }, { 0xd9b5002e, 0xbc111923, 0x94a4769c, 0xe679b4fc, 0xff5a4a8f, 0x750e5c40, 0x7d5bb1f5, 0xedc8d217, 0x97792500, 0x9e27542d, 0xacf8dd7b, 0x922e10c, 0x328f5cbe, 0x337ec863, 0x5058224e, 0x7bde857, 0x00017f }, { 0xbf22796f, 0x6e318bc8, 0xbe4fc961, 0x83fd1439, 0xad510e4f, 0xd68b2fd1, 0x1357fc5d, 0xc9ee0b17, 0xf0f7cbcb, 0x64be09dc, 0x1b79ca56, 0x8b1e01db, 0xc382d3a0, 0xcc39925d, 0x5beb9614, 0x50110084, 0x0001e7 } }, { { 0x225aa1c0, 0xcbe1d15e, 0x5458db91, 0x30e85b65, 0xf52805da, 0x3567dd8f, 0xc84fd2e, 0xdd0be08c, 0xb1f3050e, 0x6b702fc4, 0xc4ea6dfa, 0x39f97818, 0x3dcf99c0, 0xc1fdaa54, 0x3f39e7e2, 0xbbb1ef2b, 0x000061 }, { 0x33fe7b2c, 0x9b31b28d, 0x8acbb336, 0xaa706eb3, 0x8a7cbf4, 0x8bbe9be3, 0xf7e95a5d, 0xdad9c4af, 0xed5283dc, 0x3b928dbb, 0xe803733, 0x1b9113bb, 0xe1a682ae, 0xbff66100, 0xef98623, 0xfb168996, 0x00005f }, { 0x21b2f35d, 0x659eda59, 0x15260a9d, 0x60873fec, 0x72f72245, 0xe9b30a1f, 0x910bcdde, 0x1f17a124, 0x128144ac, 0x7a87688b, 0x6527f585, 0xa798aed3, 0xe4d9e6d0, 0xa19f8231, 0x14d6e8bc, 0x123c93d3, 0x0000c6 } }, { { 0x4d6c1484, 0xc806a10e, 0x330d24a, 0x406c5d71, 0x977d16d1, 0x5df0aeea, 0x9257c7db, 0xfb2c5838, 0x87148728, 0x13066c3a, 0x5e7f7512, 0xe319a52b, 0xaf7fc5e1, 0xe7ffc6e, 0x221b5e86, 0xc46d955e, 0x000151 }, { 0xd9d8b03c, 0x6089e19f, 0x32d34449, 0x26501a1c, 0xc0eff902, 0x9ef4b1fd, 0x89ef4b65, 0x5aef81d, 0x4aa95d14, 0xe370717e, 0x449c2e49, 0x65ae525c, 0x32b2dd30, 0x2ea06372, 0xb4ed910a, 0xb600b813, 0x00006d }, { 0xb625a573, 0x69936872, 0x400cba5, 0xcae7402b, 0xc3ff9b86, 0xa73b4c43, 0x58f89a0c, 0x399a81bf, 0xb3f43c12, 0xc396f1a2, 0xa990a588, 0xbd33d71, 0xbafb7704, 0x85235efe, 0x2dd1db89, 0xfd24c0ff, 0x000075 } } }, { { { 0x63056c8f, 0x860f9513, 0x54708fe7, 0x691d7aa7, 0x25874b8a, 0x411fcb56, 0x1a3caf9, 0x1c405d0e, 0xe952080e, 0xa4c3d294, 0x4146c7c2, 0xa0e8ed60, 0xc36b063a, 0xc30930e8, 0x64e9e0a4, 0xe30dceea, 0x0001f5 }, { 0xebf99250, 0xabccfa2e, 0x9b2debe6, 0xe6165b5c, 0xfeb75d2e, 0x875d5ed1, 0x1cd08c0, 0x879b4978, 0xe12e5f83, 0x7ba0763b, 0x8acb24fa, 0x314375cc, 0x3976212, 0x29b83fc2, 0x747209cb, 0xd8448b79, 0x00018a }, { 0xa1c6e933, 0xd9100efb, 0xa96a322, 0x21f0b5da, 0xf2a3211a, 0x7b470b88, 0x860c4fcf, 0xa332998a, 0x926c6ce5, 0x1b1425b2, 0x769f870e, 0x376041cb, 0xf7054c2a, 0x657a18cc, 0x39b7f7a6, 0xe1156bd5, 0x000116 } }, { { 0xdf83a28f, 0x9afbfc21, 0xb06190b2, 0xa682c306, 0xa6c72c5, 0x960dc01e, 0x9f263395, 0x5f1b8e42, 0xcf873838, 0xcffe2902, 0xd45f6af5, 0x97539707, 0x9fe99794, 0x401b4f57, 0xe1323116, 0xe42bbb50, 0x0001a9 }, { 0xc45b25c1, 0x4995412, 0xa19641d8, 0x2b15627b, 0x4aa624f6, 0x14374f27, 0x1653cf2d, 0xfda0047f, 0xfdc9e5a2, 0xfbcf3ad2, 0xf2723c46, 0x75851a83, 0x4948c667, 0x4ae4e191, 0x412d1068, 0xe656da86, 0x000011 }, { 0x38a61667, 0xb1cfb3e3, 0x27083e1a, 0x69566c6c, 0x8a3af9da, 0xbca7c47, 0xc5741228, 0xea7373b8, 0x3652476d, 0x2a89f704, 0x68c5df45, 0x6d2063d0, 0xe111351f, 0xcbfe69ae, 0x5647a64e, 0x2dd3a637, 0x00014e } }, { { 0xd9d04ed0, 0x14b98f92, 0xb5d7ecc8, 0x5ba38724, 0xea26436a, 0xd0c0c35d, 0x3cc2d807, 0x7972ab2, 0xaab2eda8, 0x91c0ff8e, 0xb6d35a3c, 0x33bc558e, 0xe1289359, 0x71f4295c, 0x5dea2064, 0x4d957686, 0x000149 }, { 0x6ba36312, 0x324620d4, 0x2920374e, 0x5fecf6fa, 0xcd0288df, 0xaa3be200, 0x6764ff0b, 0xadff3409, 0x3cea1d5f, 0xc3994754, 0x8c5fada5, 0x7441e6e9, 0x316c0f6e, 0x5ba1e697, 0xd94cd2b, 0x8ab83489, 0x0000ad }, { 0x5e7c0957, 0x5b306189, 0x23a4011, 0x917fd0ae, 0xf6bce06f, 0x52a7d0eb, 0x5779b304, 0x1256ed91, 0x308a75e7, 0x6048cbdc, 0x400183e1, 0x1903e7fe, 0x89491d08, 0x9dd3a797, 0x7a7c273d, 0x6fd083b2, 0x000132 } }, { { 0xc8f3a9e0, 0x282370e2, 0x74926e8b, 0x8c30df06, 0xac77b347, 0x6be4b7eb, 0xde6a5f36, 0x9412f71f, 0x1f0bdc50, 0x95b6c89f, 0xd36a274e, 0xffeb3624, 0x2190fab3, 0x473db1f5, 0xdb029e45, 0x698700a2, 0x000069 }, { 0x6717f8bf, 0x2d3b4d9b, 0x33b5dbd2, 0xdfd9a3cd, 0xa226482c, 0x3d9ffc8, 0x1d09da45, 0xb5b9b62, 0xada0eebf, 0xe4a53f76, 0xcc0052de, 0x1a708d46, 0xbaa1df8e, 0x1ee0373a, 0x888d4b7b, 0xa03c7d93, 0x0001ff }, { 0x3a2ef580, 0x3bec2673, 0xaa5a3e33, 0x82aa9f7c, 0x5fb35a87, 0x3cd6eb4c, 0x1da856e6, 0xcf64d6fc, 0xd3903177, 0xdc208f95, 0xf16d5434, 0x203dc45d, 0xc91ddcaf, 0x48c04593, 0xbc7b8b3c, 0x47c91917, 0x000130 } }, { { 0xd78efc3e, 0xfb68d900, 0x847d079b, 0x70671442, 0x7883fb3f, 0x47212424, 0x4d13b240, 0x9cd35ac1, 0x7bfee926, 0xf62f780d, 0xb6ddc404, 0xbabd6cc4, 0xe02ed851, 0xc49bf24d, 0xa8fb251, 0xf24570af, 0x000072 }, { 0x9f2a26bd, 0x71d47eed, 0x42996b36, 0xbf3a450b, 0xb295998d, 0x6a96e1a5, 0x1645b775, 0x98d510e6, 0xcbaaa0b5, 0xd15d00df, 0xc4526022, 0xa3a928fb, 0xf23df29e, 0x56e83cfd, 0xe28b18eb, 0xf4e40a07, 0x000041 }, { 0xd9b145e6, 0xa7e8e237, 0xa8f07d9c, 0x534c24e5, 0x95314448, 0xd23e86c0, 0xbdcd50ff, 0x19578710, 0xf7b0d63d, 0xfb775dfb, 0xaa676367, 0x78dc9f5e, 0x95d99cc0, 0x29404d45, 0x65173176, 0xa267c8da, 0x00014f } }, { { 0xb56b2866, 0x86e32bfc, 0x5e43e169, 0x25711f47, 0x19f96ef4, 0x798f3e9b, 0x53a3a7dd, 0xb0a4fa77, 0x51ffdfdb, 0x4fc4d3b8, 0x1570bb8, 0xb22253b, 0x9d41b0c5, 0x58eabd32, 0x1fd44812, 0x507e6f71, 0x00017d }, { 0x29e48d68, 0xab31723a, 0x41e4d491, 0x14b86ac3, 0x2427ab6, 0x20cf757b, 0x890027, 0x5bcfec82, 0x70fe1c61, 0x6a4eec01, 0xac254dfc, 0x7a0b35cf, 0x50a284c, 0x69aef357, 0xa15e15e4, 0x945253f7, 0x00001a }, { 0xd0bec482, 0xbe4e05da, 0x9f1d79b, 0x3276811e, 0xd62a431, 0xee690353, 0xe12a3905, 0xc6f2b6d3, 0xa7ad9f66, 0xd3cc9128, 0x785c1f3e, 0x49e80df3, 0xc54713c3, 0x582e6eb7, 0x4b6142fb, 0x4914e19c, 0x00006d } }, { { 0x7aaa010, 0x70cb383f, 0x9775e171, 0x6d1115e0, 0xb70feeeb, 0x466d44a3, 0x19314867, 0xcdb1563, 0xd4e420f4, 0x47c793f0, 0x2313e9d0, 0xde0b8c4c, 0x25eb25, 0x582d374, 0x2b5d37fd, 0x6c87a0c4, 0x0001e1 }, { 0xed189b5d, 0xa244c21e, 0xa618c098, 0x98160620, 0x264b8a36, 0x5bb74f86, 0x17a1d471, 0xb07f12d0, 0xbf8ca47d, 0x7dc25b73, 0xdebaa49a, 0x2f0d5a51, 0x599d464a, 0x9f8f8d70, 0xa61b87e8, 0xa8ffe002, 0x000156 }, { 0x5ebef403, 0x496248ea, 0xeda52b9c, 0x51e19a9f, 0xcb1b3f1c, 0xb068be4f, 0xe3d6b1ad, 0x9608252d, 0xb43a05b8, 0x8c052c3e, 0x52bf235f, 0x189944ae, 0x78c121b9, 0xf81bdac2, 0xdf6b9db9, 0xb0e4ea05, 0x000015 } }, { { 0xd092429c, 0x3556d481, 0x9a9ce0, 0xd0e57f22, 0x6da6868f, 0x42ec0158, 0xf4573d34, 0x1df5830f, 0x9af377f8, 0x9c4679bb, 0xd53ba52e, 0x875abd08, 0xb83f96b1, 0xb469a8b8, 0xcbee7604, 0x9231ca62, 0x00006c }, { 0x8d83ced, 0x8f836241, 0xdf03565c, 0x60a956b8, 0xe3fa0e60, 0x4c2568d7, 0x76cd59a7, 0x9b263c07, 0x54dbd0af, 0x947a61e3, 0x2dccc72f, 0x4ebf9cfa, 0x39c13177, 0x13fc7151, 0xe2a5681e, 0x424000f1, 0x000056 }, { 0xf8fe662f, 0x5db0241f, 0xe0fa026f, 0xb5e08830, 0xe61c743b, 0xa3ff794d, 0xcc768815, 0xa450ae68, 0xccd1bc95, 0xbc93a5ed, 0xebb09841, 0xbf2bf346, 0x77a0ced2, 0xbe48ca0f, 0xee613856, 0xcfd26c21, 0x00012c } }, { { 0x68464c4b, 0xc43fa3ee, 0x3191a911, 0xd937eb19, 0x4a585bda, 0xb034deaf, 0x8d40ea3f, 0xc4c800, 0xf1d42740, 0xdd18d966, 0x159f68c9, 0xb16eae24, 0xe0726742, 0xe9617d43, 0x6919577c, 0x3e5afb71, 0x0001b6 }, { 0x940b7f7c, 0xe518b043, 0xf674c8d1, 0xb0aea5d3, 0xaca1b35c, 0x490f7635, 0x317928e0, 0x7d7f4b6b, 0xda3a28c0, 0x71deca48, 0x9e482be9, 0x3f8dffbe, 0x25a795e4, 0x2e63d8c7, 0xe2c198a4, 0xb922dd1c, 0x00015d }, { 0xfca77d70, 0x7a2d5d77, 0x99d59b9b, 0x99644fca, 0x893f6a40, 0xb2601f3a, 0x3391725b, 0x404d0588, 0x6800f434, 0x17d53db5, 0x91586142, 0x981640ab, 0x7fc0b9a, 0x956c8b4d, 0x4ddec1f6, 0x3f95cb5a, 0x0000fa } }, { { 0xa7df9be2, 0x545749a9, 0x99c1b5d3, 0x8a0fcefb, 0x10b89928, 0x1d592f12, 0xb9ae125d, 0xdbded518, 0xd0272821, 0x7277d752, 0x37c7d4ed, 0x2ec18176, 0x6fc65155, 0xbbb87319, 0xc4abbdd5, 0xab0b8428, 0x0000c8 }, { 0x732d4bec, 0x6da46542, 0x793e7268, 0x37ffdf78, 0x5985ef33, 0x1355b476, 0x3b39dcaa, 0xc8e3671f, 0xc4192966, 0xb339ad0a, 0x66c8bbe7, 0x1ab81231, 0xd4b44838, 0x72799ab6, 0xde1d6ff6, 0x38585e5f, 0x0001c1 }, { 0x20ee4b36, 0xefdf095e, 0x61687d25, 0xf8d6ec87, 0xb056faca, 0x10b0589c, 0x3ff90b92, 0xe3888110, 0xecdd305d, 0x3ac78d6d, 0x5cff1cb6, 0x9900364e, 0x92a6759d, 0x1439ba7f, 0x1c2c2a20, 0x568a9ac0, 0x0001e6 } }, { { 0x80d04b61, 0x26eb1e6a, 0x730cbbd1, 0xfd17921b, 0xaae456ec, 0x88fdb339, 0xfc43601f, 0xda3d0bc2, 0xa0c5ac70, 0xbddda806, 0x8f360230, 0x2609640a, 0x821e2199, 0x43671605, 0x96c9b78b, 0x91004e3e, 0x00009c }, { 0x1ae1da39, 0x590eb237, 0x268c38da, 0x5c1e55d3, 0x3db7a65c, 0x123dca05, 0x9dfa708b, 0x524db2d1, 0x115cc3f9, 0xdce97909, 0x61e52aa4, 0x7473749e, 0x1569eaf9, 0x10716232, 0x4663beab, 0x6b5164ef, 0x000072 }, { 0xf3561001, 0xa0771328, 0xec0da132, 0xd540b491, 0x29a23e03, 0x7d0b2520, 0xab01c859, 0x45950445, 0x78e6307c, 0xa88d0992, 0x55773494, 0xc8e37c45, 0xcea60b9f, 0x3c7479cc, 0x3228fc54, 0xa1e46d6c, 0x00003a } }, { { 0x438de41c, 0x54a0db1b, 0xf12cc063, 0x4a0a0f89, 0x6aa4ace1, 0xcd012b1b, 0xd9d89922, 0x45396984, 0x3e198650, 0xe1bb86b6, 0xce4d0162, 0xc35e3235, 0x4300bff5, 0x9eb9fcec, 0x48881bf9, 0x838d284e, 0x0000bf }, { 0x574c17e8, 0x3007ceca, 0xed6be8e9, 0xf9d4b3ac, 0x8da4f650, 0x8901c076, 0x6817d87, 0xf4e4c09e, 0xcc184241, 0xc252cdce, 0x3874afba, 0x6a5e5d55, 0x6d419ead, 0xfa5c6eb2, 0xed513d0f, 0xa5d6e210, 0x000072 }, { 0x838f3513, 0xfff6e8c9, 0xa2ed7d92, 0xcd1b6211, 0x44dc2996, 0xf7e01191, 0x2bd2a5ee, 0xf8ae61b6, 0x7b0a4fdf, 0x519fe87, 0x2e6e0102, 0x467aa8be, 0xcf961134, 0x63e6cac5, 0x5abdab2, 0x62ceddc1, 0x00016c } }, { { 0x4ee4beb3, 0x73363f8f, 0xed1bc5d1, 0x1a47ce9, 0xe1f832ef, 0x12691707, 0x6652e563, 0x8ca10651, 0x6eca89e4, 0x567e077e, 0x32e260cf, 0xa2440a62, 0x3f1aaca8, 0x9dd496fe, 0x6f7054b0, 0xac5a186d, 0x000072 }, { 0x4f7168b2, 0x29dffed4, 0x803ec499, 0x9744a80, 0x5fb1fa12, 0x6d11cf46, 0xec337878, 0x3664806a, 0xc60bfd81, 0xa0112757, 0x8a29440d, 0x5180ceb1, 0x4fd1e13, 0xf45b6019, 0xd5089b48, 0x4a705b31, 0x000073 }, { 0x1f00ea98, 0x4196783c, 0x5b4d2585, 0x855393b9, 0x7b4641a3, 0x89e79f3, 0xb58b3734, 0x2008c4db, 0x550e7cab, 0x86c35321, 0x773b3d08, 0x66fad98, 0x1c4c3acb, 0xf1b3248b, 0x1f459c26, 0xd94526f6, 0x00001d } }, { { 0xf9c7ff71, 0x2d4be80, 0xc316ee51, 0xd3e858fc, 0xe371b650, 0xfb55cd0e, 0x33dbfdbb, 0x4cb789e9, 0x8505e58d, 0x1df47b22, 0x9d51406f, 0x6e7ac16e, 0x56e0e31, 0x96068b6f, 0x95acb78, 0xddde5c56, 0x000106 }, { 0x36672dc, 0x951f1c72, 0xc6051b0b, 0xf5aa7650, 0x5219dfa8, 0x5662caaf, 0xfdb32634, 0xc4d7a0ef, 0x7144461b, 0x2508cf95, 0xc95ce0ce, 0xa4900a8b, 0x40e8c9ba, 0x21627b, 0x848f11d2, 0x6e66676d, 0x00010f }, { 0x40d87e54, 0x75d60a61, 0x3a2234ce, 0x995e860d, 0xf4e4f564, 0xcabc90f4, 0xa5174ba2, 0xa72dcd56, 0x93f3b226, 0x50e6bd90, 0xceff7b8b, 0xa06cfb3a, 0xd6a9c645, 0xc235f4d9, 0xc55a69e, 0xb71b239d, 0x000027 } }, { { 0xb43bd5a, 0x570703be, 0x5b47bff, 0x89f6942f, 0x93ff56a0, 0xc8f1bb2c, 0xd5105fd6, 0x2961d2cf, 0x3a669514, 0x68f82c59, 0x6a558c82, 0x684d8a5e, 0x95c3e712, 0xe254ddff, 0x7f3af2a8, 0xc4dc95c6, 0x00019a }, { 0x8a163e4c, 0x89ddf680, 0xd2740bb6, 0x8d7f67e7, 0x8950b109, 0x267e76ae, 0xbcd502cd, 0x9376a048, 0xfc4a96ea, 0x251a0012, 0xa9b09d3a, 0xf392167f, 0xf4cf4cf, 0xa0f635c0, 0xfa52b906, 0xbfaeac3d, 0x0000c3 }, { 0xf3404e61, 0x6c62149b, 0xfaab21b3, 0xd62bf98, 0x73ad3658, 0x67be394f, 0x82e5e4bf, 0xcd556345, 0x43fa7fd6, 0x66850268, 0xf27066bf, 0xf26441a7, 0xebb61fa1, 0x81fa0002, 0xfd005c93, 0x9a87190, 0x000146 } } } };
mirage-crypto
2.0.2
ISC
https://github.com/mirage/mirage-crypto
git+https://github.com/mirage/mirage-crypto.git
h
mirage-crypto-2.0.2/ec/native/p521_tables_64.h
/* Pre-computed 64-bit multiples of the generator point G for the curve p521, used for speeding up its scalar multiplication in point_operations.h. Generated by ../../_build/default/ec/gen_tables/gen_tables.exe */ #ifndef ARCH_64BIT #error "Cannot use 64-bit tables on a 32-bit architecture" #endif static WORD generator_table[144][15][3][LIMBS] = { { { { 0xb331a16381adc101, 0x4dfcbf3f18e172de, 0x6f19a459e0c2b521, 0x947f0ee093d17fd4, 0xdd50a5af3bf7f3ac, 0x90fc1457b035a69e, 0x214e32409c829fda, 0xe6cf1f65b311cada, 0x00000000000074 }, { 0x28460e4a5a9e268e, 0x20445f4a3b4fe8b3, 0xb09a9e3843513961, 0x2062a85c809fd683, 0x164bf7394caf7a13, 0x340bd7de8b939f33, 0xeccc7aa224abcda2, 0x22e452fda163e8d, 0x000000000001e0 }, { 0x80000000000000, 0000000000000000, 0000000000000000, 0000000000000000, 0000000000000000, 0000000000000000, 0000000000000000, 0000000000000000, 0000000000000000 } }, { { 0xdf0110967a96faa6, 0x66db5e6941d9d5ca, 0x7838d3019fd74a3a, 0x8a7c5eabfb7b51ba, 0xdbfd4148d9c8ba47, 0xe28088521ce7e915, 0xc7bc26ac45378e2, 0x784804133bac7ab5, 0x0000000000008e }, { 0x2fdc61a2d4315c0, 0x474106915ee9d057, 0x8053606039487029, 0x35b541a70e6bdfed, 0xe08fe0d0f7a3c021, 0x5b31d1c3058f5ae2, 0x51ac9a9b09019307, 0x15947e53bddce37a, 0x0000000000006c }, { 0x508c1c94b53c4d1d, 0x4088be94769fd166, 0x61353c7086a272c2, 0x40c550b9013fad07, 0x2c97ee72995ef426, 0x6817afbd17273e66, 0xd998f54449579b44, 0x45c8a5fb42c7d1b, 0x000000000001c0 } }, { { 0xb71827fdac3be95, 0x6475b73ecc4c606b, 0xc024b1843aaf49e6, 0x5c056f30d149446a, 0x454a85bed1ed6064, 0xa29f5cf1b2a01854, 0xfa10f3db1689c0db, 0x699a69cedc3dc3cb, 0x000000000001c5 }, { 0xd947b8c0293e2691, 0x4f0331941dbe09e7, 0xb14e70cfb5ef0317, 0xa1343a7aa7d63d25, 0xc2b03c37eb2bf69d, 0xf1592afa89a27d0, 0x4d63962141168cc6, 0x9db84c3029d42607, 0x00000000000167 }, { 0x1c46d40f2cab7700, 0x2d224370d60466fc, 0x90b4c598a7006ca3, 0xb3a7954eeb4e38f0, 0xc2c9a3cd9314193, 0xaabcd8f424de1eaa, 0xed89bae3c68ed9e9, 0xb732bcddf4f7fcca, 0x00000000000129 } }, { { 0xdd9d3aa6f13e7864, 0xa737b38a63675f99, 0xd5617e04a1d8e4df, 0xad4e9b09b817a6a7, 0xace334342fd56017, 0xb7176ded809507c7, 0x6f19815298dc053a, 0x7e618369fa8bf421, 0x00000000000055 }, { 0xdb3e8ef62b51cee7, 0xa179c872e6ce3ef3, 0xc34f3caf8ed8f52a, 0xb0656115c8336261, 0x63a0ec2a0b454738, 0xbfcd649072cf42f6, 0x9635fe59dc3e8bc8, 0x6a4d181b0c34b798, 0x00000000000064 }, { 0x1c8ebaa29d23ff2d, 0x136dbef7e1007c88, 0xf6547b6d18c6be64, 0x27df656431ab5720, 0x2f778c2013d30e32, 0x2b70780721f5308a, 0x47dc28fc45421307, 0xc8e3d2b034ea9c22, 0x0000000000007c } }, { { 0xa32e7617c73b0010, 0xc64bad076bad7f9a, 0x1e2fc4d764305aa7, 0x8fe5655e81bd51d8, 0x6445d068ce4ceb7b, 0x43824a96f90acd9d, 0xae991a88bb11954c, 0xb97df325b5d59026, 0x00000000000108 }, { 0x5875498019555a42, 0x551d65e3280036fa, 0x36491f0519b0ad37, 0xc53fded6841e8f5d, 0xa92dd062b7d97964, 0x441592dc4d49d035, 0x3a04009562667e14, 0x8f964715d9e05027, 0x00000000000016 }, { 0xa001bda8d56b0653, 0x699309445e59b3d9, 0x8ef706f6e2afc8ef, 0x6e298aaf5bfc4ad5, 0xcc896607218944a3, 0xdbc1d6c6d7b5f0b0, 0x90d9efdedacb2f2b, 0x2ca7c9e75255cc09, 0x00000000000133 } }, { { 0xcdc14a0519b39c2c, 0x8a0bdb53682b6937, 0x126c325f90fa5a69, 0xc7ddaa7d76798e31, 0xa3daa405b2754b5d, 0x7fb5d9db76c04ca9, 0x224d7bfc29b65ea5, 0x8786bc575ccb3118, 0x000000000000ef }, { 0x200c5bfe17b32617, 0x48d73fd8298c4c4b, 0x2cbbd748c94d480b, 0x8999cb8c3c549de5, 0xcbb32e030cd0a969, 0xcd9f0556bcedd79a, 0x8a2d4eddc4c404c6, 0x39b751aad42c3b4b, 0x0000000000001a }, { 0x7ca04728aa99622c, 0x7a90bb12df4f1b53, 0x57d6d7ff40fb7b0e, 0xe3562c985aa14c9c, 0xdc087ae6a29328d0, 0x15fee543cced00ff, 0x24ee22756ffe688e, 0x16a494bffe564c80, 0x00000000000047 } }, { { 0x293aa170fe2582d3, 0xa1e486c83c9a69bb, 0x6338369fee134e89, 0xb34d52be8be5e27f, 0xa20ef3304820bde8, 0x763b61eadfc3a66c, 0x89b9545c19e5979b, 0x2fa3967f4c0cfa4e, 0x0000000000010a }, { 0x17bec4e00324dae, 0x189d69b2c3cd83b1, 0xf267a7e0c8466d1b, 0x2f9bdfadbbebf623, 0x1c7fd50247beee87, 0x1fd54cd0b8cf171, 0x36f4b7703e101f1, 0xdb15c92dffc1ba56, 0x0000000000018c }, { 0xbd18b9c85fa1b669, 0x7919d893c3b5f3f0, 0xd44a4e1ef36eeaa0, 0x5d82d6231d2c63e, 0x75f10c60be730207, 0x7a8d57b3dbe5727b, 0x13b3075e141b5009, 0x5d60749b2adc034f, 0x0000000000019f } }, { { 0xa4b44987a969a610, 0xc53739e9d936cf10, 0x199f9deb8db0f028, 0xc1c9a9fa0d5bb522, 0x18db000d8d690138, 0xd273f6ced1984c5a, 0x9c14b5853c534445, 0xf53390be36b41130, 0x000000000000fb }, { 0xace3a3777f8e9175, 0x6b0b552b1196653c, 0xd2de8ba82555b884, 0x1703e367ae287230, 0xd1745fb4b8652a90, 0xf36deb4d0c3bdf14, 0xcb2a7028c6a93332, 0xefeb92cbcaf07e7, 0x00000000000073 }, { 0x327670c0bcc8c22a, 0x391eac0668e29a00, 0x95d7306435a4d1a2, 0x3b3803fa02f8affe, 0x919e45e2a68ca19a, 0x8562077350a1fcc6, 0x58fc774a699a3708, 0xb5a17ef1b401b42b, 0x00000000000170 } }, { { 0x26a08edc4b37fb13, 0xc7e19fc95341054e, 0x8d8c4d866bda87a4, 0x9a2c5126da482f06, 0xefe715bccd828655, 0x75080a890fee5f37, 0xef44850473b31637, 0x2437d9f61311b28c, 0x00000000000067 }, { 0xf9b14840e284efc5, 0xc42fb1b69b071eb2, 0x46867d86902e87fb, 0x4dcfb3242e55a68e, 0x5adbde3862b8114c, 0x97bd014a3a92e269, 0x5352b96c02325a87, 0xcadeee3ac53cea4f, 0x00000000000031 }, { 0x11cbe75fc0f96bc2, 0xd8f894256316920a, 0x62db3c88793b7ef3, 0xcabda6219eca39f5, 0xfb175e2b202ec83e, 0x3645249269d38716, 0x719125329b1635c6, 0xd465232044628388, 0x0000000000010e } }, { { 0x9a2a6544669ae93c, 0xf5ee37cb0f1279bb, 0x48e8343b32443e9, 0xc4287aefba985b40, 0x9b3f65eede9413e2, 0xbba495a1160896ce, 0x349ba94083098f7b, 0x6f009d7ac2ac977c, 0x00000000000034 }, { 0x2f8b3d803e308b78, 0x74071633b97619da, 0x25995bc666c3058a, 0x1474127e0b376739, 0x5f58f4be2ca6db09, 0x80103011ca0081c9, 0x868d886ca1024e0f, 0x255f95099c6d5d82, 0x00000000000158 }, { 0x78f42779130dc74c, 0x49bc55e5fbbb4b2b, 0x1eb10affb8e207ae, 0xcec234e21017d3ca, 0x27e24f1cf772593c, 0x6f67ef73ac49e15a, 0xb17d26388bde8fc6, 0x570fd50c2438bacf, 0x00000000000035 } }, { { 0x3c43dec33e471a98, 0x899935ae3835eb2f, 0x75e1cf8ed5b87fa3, 0x81040f39d0cbcf1f, 0x413d943be232d43, 0xd3a032aeb8eec8ba, 0xa13c6ae29f9b74f5, 0x864c932b762c3941, 0x00000000000082 }, { 0x4e0eece2558cbaee, 0x1395e7adfd62a07d, 0x3b33eee788606c84, 0xcd158caa99a91164, 0xc6bc901e33df15c4, 0x90c4849052b8a08e, 0xb5f654e982f0af5c, 0x5cdf62e6a4178399, 0x000000000000b4 }, { 0x8d2716cb906b68da, 0x1d376b02a20dacc3, 0x1f2cd219ce995c44, 0x3187a25578659a16, 0x8d2222a0c57d63e, 0x324e2a81e2e4d052, 0x9515b7a4f7147f8c, 0xf606ce68e730ac60, 0x000000000001f8 } }, { { 0x64719b8358861ece, 0x286ae298ac412b72, 0x27fe4c240c364c5d, 0x862f6d7610b92f4c, 0x2a034a1e856c51c1, 0x2b7c17a82ababdea, 0x2e971d2342fe3433, 0xdd410dcde1632518, 0x00000000000051 }, { 0x5706f5c45375b3ab, 0xe5a5711d1ec466cb, 0xd42d9586c01015a2, 0xb7f35fb0c97805d9, 0x4fc3e76415205f02, 0xb2c02b443202d74d, 0x912e48348540e3ff, 0x3517749aaacae759, 0x00000000000121 }, { 0xfebd594d3a329484, 0x60b9844c37111679, 0x6c03898c651dbba2, 0x16bc0746fc1b81c8, 0x1cee18b9b9803229, 0x63f7f284456b91a4, 0xdf5bbe6b64576a5a, 0x9b261ce5bdab50b3, 0x00000000000091 } }, { { 0x46b174fc20d6885a, 0xa300009284d13830, 0xf3eeefc1d0ec4b43, 0xa01c870ea46d2c35, 0x47fd51cf4ccbea8d, 0xf256f43953e6fb3c, 0xc8850cbd93c2895d, 0x781bbed93d736c7d, 0x00000000000064 }, { 0x9e37219822ce2e38, 0xa8e01715ee875055, 0x1ddb4d42a9415166, 0x7e6202d6900d33ce, 0x4feadbc3720ed73b, 0x7cffe59a9419c28a, 0x8287b3cd6edd100c, 0xfe5f02b6f6fd88f0, 0x0000000000018d }, { 0xe4e18ccc1743f560, 0x922cca69bdb6305e, 0xda0ee6404b953a6b, 0x71e7dfdbd72526ce, 0x21114b5631ffe4ec, 0x3684c15f742e251e, 0xd1aeb38c35d78e1a, 0xbe2918f095c857e5, 0x00000000000019 } }, { { 0xe3386a0000153dbf, 0x633ed37015f9823e, 0x1d318961d701717b, 0xd4a2bee6953fd9b7, 0x37a21103ccf23369, 0x70c843980f42ef42, 0x208e3f7d0bb521a4, 0xfe580cb2d649907a, 0x00000000000074 }, { 0xc1e719f262306733, 0x84a5d6c6a38f20bf, 0xa16f41d1fe62851, 0xf737ac5c138bdcd0, 0x1af1d647a5212ff4, 0x50454188ba445241, 0xe834db9c064f3aee, 0x7070b5efceef21dd, 0x000000000001ab }, { 0x5a656ed7ebe277b1, 0x9f08a821181fa3c, 0xf4a3705db7e78e8e, 0x5ba8c83358d521c0, 0xd8b3d44cbd2a6f45, 0xe0346b9ce7842a6a, 0xc490d3c78f13e583, 0x35f9b67ebaaa35e1, 0x00000000000135 } }, { { 0x430ed5325753a18d, 0xef4b698ccf6f4ba9, 0x5c5273eda95bcfe5, 0xa37a5a9735f65c71, 0x88f7314bd26dd192, 0xc6aa2dbf110f0065, 0x7a25fad721663c09, 0x9eab742e8be75347, 0x000000000000cf }, { 0x159c9c12e90b4cfe, 0x65a49a62e30b99db, 0x138284db0751876a, 0xadc24c510ee63569, 0x7fe8bebbceb5550, 0x51b4bdbe7a4607d, 0xe8e8ce0689ad79ce, 0x24218f13722986cf, 0x00000000000057 }, { 0x770411fe592c0caa, 0x1c6703f7758c4775, 0x96252fd509738203, 0xc1ae9bd7e8f7b44f, 0xbd2a8d0d455e6613, 0x344a2074c830f262, 0x92d3b51601889897, 0xdf48ffeeed1d139c, 0x00000000000008 } } }, { { { 0x2e041fc90846cd39, 0xa31f37e92edd7e88, 0xc6cbd1e554404d0f, 0x34280dc672a55fcd, 0x4c72a4f3c62e4716, 0xb21c41a233a1125f, 0xbbfd25902bb4ecdd, 0x8265707f4c2af9e0, 0x0000000000005e }, { 0x26c7cf43979cd513, 0xd973a782a03093e2, 0xe50974e132b5000e, 0xa5c6f83ac92203ba, 0x3b9165d8b627565, 0x320705a30a7eedf9, 0x6953ac3e5c17df20, 0xca5e49e759269cd3, 0x0000000000007e }, { 0x10c92d5a4291e1d4, 0xc074aff914ec21d4, 0xa0f8736805ce01cc, 0xe013c05c4e347cf5, 0x485eec198acad279, 0xbab969108708a317, 0x44aab42124b62d7f, 0x93e50861918908b9, 0x00000000000008 } }, { { 0x15f2362686b65e50, 0x85bb0d4cde4df7e8, 0x3a1852ddd690dc30, 0xee29d8fd6b3560f0, 0x5c8a86ff2a2e9ba7, 0x1eba6bea505766d, 0x4b5832d24bf86abe, 0x92feb1c84204268e, 0x0000000000006a }, { 0x7438501b8e7f15bf, 0xdd6e0ebf65ad3cac, 0x4be81f8372e2b184, 0x13a88995ab00f19d, 0xf3b80757783cc369, 0xdff8223f6c2e73d2, 0xd3af68ec5045ff26, 0xa464bf147764a0c0, 0x000000000001b1 }, { 0xc3306964b825661a, 0x674574a1dee68705, 0x912658fb952423d3, 0x3c87058d877c015b, 0xa4e7cafbc75a1b06, 0x587390608c20a1b7, 0xb6da427aac92d10b, 0xf6c13061b24cbeb5, 0x00000000000005 } }, { { 0x4174f9718e3e0098, 0x3b9051bbf9a0c862, 0xa7039c42199c1333, 0xd9c25116b591fd81, 0xea8b3be9e835ede4, 0x5963f0f616aede57, 0xb0dd800a2f4fdb3a, 0x6d28faf45b737da4, 0x000000000001c8 }, { 0xee22edfeaece7895, 0xf40292d67e5926aa, 0xb1d2909a3005922, 0xeb38a724695f4308, 0x790b5bcb5834c137, 0x1455b139dd449a4e, 0x2dfdcdd63a995c16, 0x7712d60accb0f4f9, 0x000000000001ec }, { 0xbdaf122509935ab6, 0xf067a97a00363cdf, 0xbe2cab2afa22c392, 0x4ad0b851abe26c39, 0x8f9d14089ade169f, 0x1a86e2cbbce319f5, 0x3484d26026da4c83, 0xa8b2b89bd73e7ec, 0x000000000000ea } }, { { 0x7ef19bcda220df82, 0x516d49a2c018838, 0xc3fee15bf94161ae, 0x948500782a710bc7, 0x9eb09f1945e6a457, 0xf41fa707a4b7baea, 0x3e983027288a73c8, 0x8d317c63c3a3530f, 0x00000000000086 }, { 0xe7245f9d961c7875, 0x2c8b67d767a5b54a, 0x4f2bb602650c8126, 0xb42d1ef2cf50925f, 0xb86ef24e80da3da8, 0x9387e8dcdff3f49e, 0xe9b87d7f371d2ca8, 0xa5238060566f53d0, 0x00000000000163 }, { 0x73074b3072a24623, 0x1e0761ed7c768697, 0x992e092acb90434e, 0x23f09cc82f44d3e8, 0x7b741a5e5891f7d3, 0x8d8424d0a0677655, 0x68f2a440f91ba686, 0xfff759323657c4d1, 0x00000000000064 } }, { { 0x10c8f03f7bd81da2, 0x30b926980c1579db, 0xf9f1ebeca4e497a4, 0x999cc117861b4dd6, 0x9eb93f00395939fa, 0x7a6a9c2c0f4ddf3b, 0x39c5856b769a19bf, 0x1440d8cfcc903679, 0x000000000001f5 }, { 0xf676c0c5d6628140, 0xa43c3c743d124518, 0x96fe67d19ca2bcde, 0xa1ae13bcb94c0bc0, 0xd92016a1b8e57550, 0x6665146953de199f, 0x2533b0c7efbf29b1, 0x207eff665b3e26ad, 0x000000000001a0 }, { 0xc0969693dccde8c9, 0x45c7c16994a1fc0f, 0xcbeca50277da1973, 0xd6c84ecbd620b562, 0x53540b84d8d04b30, 0x1865fb65e5a5aceb, 0xbd02eb4025e468d, 0xc1aa52e5bab7e070, 0x000000000001df } }, { { 0xe8626cef2981e782, 0x79723661ada5e720, 0x50e0402bb22b9980, 0x1e3bd3899383103c, 0x74a1426bf3f95928, 0x19555a63aa17907b, 0x811897cf00b772f2, 0x58239538a2f8769, 0x000000000000bd }, { 0xed4f0e512d03fb49, 0xe5c8944a68832c7c, 0x96982abde7cb80, 0x2a05ff0f90d68926, 0xc50da5aff44c903a, 0xcdd987804dde36f8, 0x4ba341c0cb7b1f7b, 0x897a0828dcefb493, 0x000000000001e6 }, { 0x1f8334f59453c440, 0xd0ec4d38ea3864d8, 0x83480e5b1c153b2e, 0x872402e76551501e, 0xf36d3d85a8898692, 0xbd8251c910b643d5, 0xda9d7992ac2e9348, 0x74b7f4ecccb9e252, 0x000000000001e8 } }, { { 0xd400e0b09568a536, 0xfa7d29d5a23738ed, 0x51120897b3311413, 0xb4832f9be63d4148, 0x9a11425be71580b5, 0xd2a642d4f8043281, 0xa84563893346af95, 0xa66b44de2f3f8e16, 0x0000000000011d }, { 0x327cf9289abf7816, 0xa1c1fab73baac5f, 0x156df9dba2b02570, 0x1b478a0b6ed91081, 0xbb855df41e0fa0d7, 0x17f902a056b71526, 0x2164b5c0c8f751bc, 0x843ac6ccaa74ff08, 0x0000000000004a }, { 0xc428a45e577e3239, 0xce1ddc1a54aa89bb, 0xc1f62e746672b22a, 0xe5da1fc54489aa4e, 0xbf036e89e733dbc, 0x98a02c387b95c409, 0xc4fc578051c3309d, 0x374f99d3e0510554, 0x0000000000004e } }, { { 0x782fd25e2f593f84, 0x5f5e887e17558b5f, 0xda7eba9b3244ac17, 0xcb89ad28fc4c8f6c, 0x244de82d9e693307, 0x9ef13ad90de429fe, 0x655c790822f55db7, 0x95ec387f11d9297c, 0x00000000000114 }, { 0x709923cc9aa3c848, 0xca8c725af1825987, 0xcd34de8a93faf1c3, 0x76c7c83c78dbd661, 0x6d233145c85192d3, 0x6b39e7e3a52b74d2, 0xc26802b266d8968e, 0xac3d9eeec0ec7e6d, 0x00000000000026 }, { 0x158a4af50b2ddac0, 0x6dabb6f824ed7e34, 0x540f9cce491f606e, 0x573f39d4b982fcd5, 0xaf1ada870da66b81, 0x2049e8d447a311a1, 0x912dc691c75e804a, 0x131666b3ee2d4fe4, 0x000000000000ee } }, { { 0xee4ad73cc6c30810, 0x62feb9ba6b4e57f5, 0x206f144751434c8f, 0xc3a7ea909ac4fd58, 0xdb81b4625755d822, 0x4f8273bb662243be, 0xf076ea68a9a24050, 0xa4b38ec85377cfbb, 0x000000000001ca }, { 0xbfc6fbee1ddd5827, 0xe28e152956bd8dc8, 0x36c22fa8bb4a13ea, 0xd2a8cac761adc685, 0xadb902b4e44388e6, 0x48e53a8ceff60f7c, 0xcea3d00b92845bda, 0xefb8a42d9c32fce8, 0x000000000000b8 }, { 0x77917bf030af199d, 0xc9dede1417f531b0, 0xd82f9da7cf87d059, 0xa13d3218c1816927, 0x6bb2ab0248f110ad, 0x688425f66aa60e89, 0x5ce00f34feeaf103, 0x4a0a57ecfdd1201, 0x000000000000ed } }, { { 0x61e0778579a815b4, 0x722d5485a6b07ac8, 0x5d32d20d2d1f76ad, 0x4d6a02190c9d181, 0xbdc858a361f7270e, 0x6c8e72f29e283b5, 0xf5786859a11d2190, 0xe1ac90876b2e3038, 0x0000000000019f }, { 0xc15cc3e2f026c050, 0x2f2960f7098eaca3, 0x556308a91ad51f30, 0x7f84d0fe0bd6b04b, 0x8aa9300c0e7ff4ca, 0x62145de0a8b9eb5b, 0xcec83ad8e7dcb6f7, 0x3e2001697ab84617, 0x00000000000090 }, { 0xd57d3c182cce984e, 0xb8885073ab882df, 0x432ebe84f8342fa9, 0x119f1489335c5081, 0xf33da79051f5415, 0x541bace4f6fde6a, 0x57d968a061e0a2ff, 0x53b34330ba643c0d, 0x000000000001b6 } }, { { 0xcb377c559873cdc6, 0xc1b45ebb69866b86, 0xfa5f8fbe31b212f1, 0x4e6f89719c87276f, 0xc4784d5776b41619, 0xf6c8f8a5b192a6ee, 0x40ec40b274d0d1c6, 0xf8772f92aeacbd75, 0x000000000000e0 }, { 0xa01d43fc86454663, 0xb8c9fb71ef8fd4d0, 0x7e1be6535d6901b1, 0x7eb1efcc88ed7b2b, 0xdb6375aa7543d499, 0xb908dcc430663ac, 0xdde8021901c62773, 0xadd531f22f6ddaed, 0x000000000001f2 }, { 0xb637b790bd0eafb7, 0xacd197cbaf482201, 0xa4e436d851d6c69c, 0xc2f975455fafd40f, 0x8e90255e6115b892, 0xc42840b08b2d17ee, 0x6391298153f45f20, 0x96664f2b2cfde43c, 0x000000000000ed } }, { { 0x546ce591e13548d, 0x8b53ebf03ce96942, 0xe5869e79672bf202, 0xff66f48fff7376da, 0xd735173ccb5d0c1f, 0x9ec07de6200ac6b7, 0x4cad404e42a85cea, 0x3fde86ff468fe7f9, 0x00000000000166 }, { 0xff4be8116fdb098b, 0x2dd71617a9072234, 0x3d2649ee8409bd3b, 0xfdb95584ea5895b6, 0x2cc745fcb96ced02, 0xb86c73f4134d1b71, 0x1e18fd24dc5f588a, 0xead57e848b3f23e9, 0x000000000001df }, { 0x17315c604a438992, 0xa798f0c9cc977542, 0x53f7d1494f75953e, 0xa68144ce4e107578, 0xd92b103619f4433a, 0x44f4abfac7b9f4b0, 0xcee2d0cd4f21f1e9, 0x9e4246db67671d97, 0x00000000000050 } }, { { 0x886a57c5e0eea109, 0x59cdb8154d8cd9e1, 0x1ef8a425675d001b, 0x9f55abe0ee4e7ca5, 0xc379ad8ccb7d465e, 0xa66d96b87957cccf, 0xf15636d8fe639805, 0x44b13b45e98b6ac, 0x000000000000f3 }, { 0x99c1c132a92f9e26, 0x6e291ec42c8ffeb3, 0x9d73736553e29fe9, 0x20d1379d5a8f6fdf, 0x311aa3380042ad84, 0xc61fa6180af5e377, 0xd20e0803ef29ae78, 0x48fbe61d4c22671, 0x00000000000084 }, { 0x793306603af73ab6, 0xd43d39a4b00d3c2f, 0x84c93398bad703fd, 0x131e19178316358f, 0x4de6085e8e8cbe66, 0x73c6c7ca9fbaab29, 0x9656bfa445814dde, 0x277bfd24f1abcedc, 0x00000000000191 } }, { { 0x3f9170c6c455bc7c, 0x2afeaeb6daa30517, 0x1fb5dbf9ed87025c, 0xd8063a0e39915b13, 0x3830911d3c61dfcc, 0xbf1e474bb3aae028, 0x986d30cf7072871e, 0xe155029e81928a98, 0x00000000000017 }, { 0x54d8c16222f10235, 0x897840fc877c0322, 0xb1fa8f40d41492a, 0x2f2b89eedd9fb963, 0x75e6149ec805440d, 0x7afb0b00c55dc0ee, 0x165fed4cb7050c8e, 0x96e389293754fd3d, 0x00000000000064 }, { 0x6134e53cf8d0a888, 0x7ab901da04fc696c, 0xf52a45fb2adb5779, 0x65aa738215ed1db3, 0xb76650851b0bd374, 0x5b55e939a1f15b00, 0x63106eac892d40f1, 0xe1bb6dda1089bcd2, 0x000000000001c2 } }, { { 0xdefcaddea163df48, 0x6a053450d47800c5, 0x8eb9185ee9915e15, 0xe0a874b7b49d40ce, 0xbc2909dfbc441d9e, 0xcf34b9561796f7, 0x86548442d012ba69, 0x41fde36b59f947d3, 0x0000000000002e }, { 0x83c117aebf7102c0, 0xa9bf7482706a457a, 0xae473243ca7950e6, 0x5411484d1091f3ed, 0xbc4a6f4edc12732b, 0xe48fc1f83a9424d, 0x1288cd90fb5a5f7d, 0xc9c52c69295da200, 0x00000000000033 }, { 0xd9814c1d19b9effb, 0x2e01f9de327003d9, 0x568d0c0b78b617ba, 0x4823898900d1f954, 0xa9a5b305ae582330, 0xa51c231bcabea4b7, 0x2adb565898651797, 0x749882a0c5a8b5fd, 0x000000000001a8 } } }, { { { 0xb1f506b2b3b6138, 0x948f8814a06e69bf, 0x9090450c88f204b, 0xbd845cef770db1a8, 0xaa9d86ecb007814, 0x61599da3e754c796, 0x74ccdbfd361f819e, 0x33f4c4c46b211b49, 0x0000000000004a }, { 0x4d714cf85b83ef05, 0xc70da34b9287bd70, 0xc1d36bd9d69e628b, 0x2f4eb3bc32aafb26, 0x48b01a493ada8c26, 0xacc2ca359e46b892, 0x2b08294b215387c2, 0xb6f06e28be4a68ff, 0x000000000001b0 }, { 0x12aa98dc0a56e278, 0x316d841bc03ed059, 0xe8d0cfa0de2577a, 0xf46c84c4002731c4, 0x513dc23c62b4d790, 0x42e4d7bc26ec5ee9, 0x9fe135bf70baf9fe, 0x82fe92126cdefb45, 0x000000000001b8 } }, { { 0xae581a388023d228, 0x21aae211c318bac7, 0xb3431c02d0100121, 0x279a42c629317471, 0x3d158eb6c99f10be, 0x907488f2241ff2a0, 0xef3d80fcbf87096b, 0x78c59be1796c6185, 0x00000000000131 }, { 0x4698fb58211c69b7, 0x23f7c0e2933bfefc, 0x24179e245ce4d966, 0xd7eeea3b4828c75c, 0xf3f30322123b4d65, 0x482f740fd328cf00, 0x1490d73101aba20f, 0xc1a6f2dae3eb04dc, 0x000000000001a7 }, { 0x57e2826425466682, 0x12ba043f924c554, 0xf6b4f3656d0831b5, 0x1cb041cffb9deec0, 0x81ad07b0951d95e1, 0xb85cc98906462077, 0x2f978fef0ea8a5dd, 0xe1aa3b4d642d3aeb, 0x00000000000170 } }, { { 0xad18530629877bde, 0x4aaf3352d3cbe272, 0x6371ac2ba394b54b, 0xa20f3b33added503, 0xf84a7d1637f09f82, 0x6f6a76225fa885ec, 0xaa30c32e22dc6a6c, 0x67ef49569fc0f750, 0x00000000000002 }, { 0x18ded1eacf2c4d28, 0x9cf0d75a9472c81a, 0x2af10d82091c15ec, 0x405c9f00c6cd586c, 0xc5252bd5c2f352a2, 0x7df8ce446fd0e5fb, 0xa261eaca5718dd32, 0xedfa83ce5999aa60, 0x00000000000174 }, { 0x4d8fb6098ef6d964, 0xeb5df9aa3e6f417a, 0xa375f9fcd1ce6603, 0xc9bede64f9d3b653, 0x256e3e63d6f0dcdd, 0xfaf56c5e346ec7a3, 0xa64d5373e5b186a7, 0x8c43a6d34b487bd3, 0x000000000001bc } }, { { 0xdd2fd2b685094e77, 0x407644e08c0cd6bb, 0x88dcf18372cdee67, 0x5469f17a08b284dc, 0x77e47eda612d5e37, 0x99ec4a11ee25006b, 0x20f82d4c830d8fa7, 0x625d95a23bbc64cb, 0x000000000001e5 }, { 0xe8467783a0e296cd, 0xe75869b7d387d7f5, 0x1026497271ef8cf7, 0x43f2791a792a88cc, 0x5f1207a46ab10053, 0x84af1067f608443f, 0x3eac5d9743e1a53d, 0x1a1cbd9b89fbc7c5, 0x00000000000190 }, { 0x7efb0bae692731df, 0x633492a87aa0a62b, 0xa481709ebe0e90a, 0x28e12a6a5671eb23, 0x65f19d7f69bbebbd, 0xa9e29a7246ecd809, 0xcc8cf030a0468a55, 0xb051b55c5c0f26ad, 0x000000000001d8 } }, { { 0x9e7273d5f46d7179, 0xee73dfc8fff00df8, 0x6c1ea89ba00a1c9, 0xbe060d81275504b5, 0x5d0d47e69a9c7779, 0x87b696c013a3c9de, 0xb5ea30a1273f16bc, 0x34365bca400188e7, 0x0000000000006b }, { 0x559a751aca6c84e4, 0x4f493b86073b3bb, 0x32cc67a5419796a4, 0x35b738bf4cbea7de, 0xa8690c6b34cbf53e, 0x6d32151035dc57ed, 0xd4d6e505a4c78fa7, 0x289daaccdc9d21c5, 0x000000000001d2 }, { 0x497511c519fef5c4, 0x4389ec10791d2443, 0xa58df6ad471856b0, 0x6d2000616abf4788, 0xef4095468ae935e, 0x33e783fb8fb68477, 0x813cfa6e4bd028e9, 0xb8f65300b5bd1d07, 0x000000000000a4 } }, { { 0xb8dab03fe6934eb4, 0xdd3836ef920cd3b5, 0xbbcf9afc343c090a, 0x74f118b3d70705c, 0x929e697304c469aa, 0x97a2a488bc4f08f1, 0x16836a679ad127d8, 0xd504e622886f6812, 0x000000000000cf }, { 0x8376316fd8fefd1c, 0x439fa158e77676f8, 0xead01bcf9d403301, 0x88b7b27aa90ef2fa, 0x8f29345667574d54, 0x9a01e209d18d62ac, 0x365c6c5e32f8e5a4, 0x6d356b55b1af6cdf, 0x000000000001be }, { 0xecd51d4acbe857c2, 0xc8646eb337fbb1f, 0xc9c48e6c257bee8f, 0xb2438a0dacee0cd, 0x93596f24ee17982d, 0xfdbeafc887b8d47c, 0xf43d39459d821f89, 0x5477441d4a98f961, 0x000000000001a0 } }, { { 0xafa7c4bb9f879f, 0xe29d54031f80048b, 0x6972e2d978a724cf, 0x8aee3fa1beb989db, 0x42fa10cf2767027c, 0x7fcf7961f5d384de, 0x484d8111bba0d359, 0x165260fb5e71ecb4, 0x0000000000015d }, { 0xb02077dd626162b9, 0x36fa679953017f28, 0x1bbcdfc6f184c7c2, 0x2031b60f7d06c714, 0xdfd233f8cdccedb1, 0x70a2b69e2d9bcf1f, 0xc9cb3ce8ccdb847, 0x3493fe8aa71b3603, 0x00000000000074 }, { 0x5cc501132552f3c6, 0xdccd00109cf9a5d2, 0x98facadb8f66d32b, 0x2c8c692d0bad4088, 0x404c6690e179793e, 0x132862fd13042e88, 0x73964c485c2fc6c4, 0xad7a5b6be8f3d5e8, 0x0000000000010b } }, { { 0xf5e0d6fc2bd77313, 0xc9d7003afb433066, 0xf50facbdf92e9eec, 0xafa4e945c311293c, 0xf36e212276f3afe7, 0x98582d82f9a6fb63, 0x39eaf8be647aa861, 0xd59c5a10a4032eab, 0x000000000000a8 }, { 0xc9ec46ba5841dd21, 0x5592c86112272dca, 0x93c52457eb660220, 0xd98e39f4d8dc1967, 0x89c2b513fb2b4dd3, 0xe97eecdcb1a21904, 0x4af9641a8654c8bc, 0xbb77c7a2eacfe014, 0x0000000000018f }, { 0xd551f9d34ecb1a36, 0x1656626e05ba044f, 0x102efe112d016c4f, 0xa07e3e511a43ec96, 0x7ad5367ea901a2d, 0xeec9a5afa9a8fb, 0xfaf2deef59bf9f1e, 0x7b04a356e3351608, 0x000000000001d8 } }, { { 0xa89f47cb1aff636, 0x93bd905e5df863c1, 0x3ee787d0df188d7b, 0x64d944ceba34aa7e, 0x284122c3122e07e0, 0x4dba9d0206d0ba2b, 0xf27f7797443d0038, 0x7ff4a386659824e4, 0x000000000001d8 }, { 0xe56f4eb9e216dd88, 0xcf7d9bd27fbec98b, 0xc9eacdfb5878e1f1, 0x298903e612e087fb, 0x9b152e28ebad1534, 0x1d16da80da9130e0, 0x1908aecbe37925b0, 0xf7c377b254356357, 0x000000000000eb }, { 0x614aa1a5541880e9, 0xd1b415dd86aa2891, 0x17bbc3de75f5b68e, 0xeb3b0162c0a2e05b, 0x71400e982b5b233d, 0x45bbccf5967935a5, 0xfd2eba14281deaf6, 0xd0839db6b014876d, 0x0000000000017d } }, { { 0x7a2ce874576cbe16, 0xe695e333d410676, 0x7e97e285e9aa50ed, 0x380a7a94915d91c0, 0x749f23ee792f4479, 0xcd63d84f454b3d10, 0xe696fc5043a42fd4, 0x2628ad1c6793ad61, 0x000000000000b7 }, { 0xfda9e43da76fd76b, 0xc5ab316255f93058, 0x66d2312f0224234c, 0xee3e3044d25a66b, 0x56a673d412beb1ca, 0xd16461839e446b20, 0x8def9f3195106642, 0x34126f56092a90dc, 0x000000000001e0 }, { 0x82453a2bcc6b4d4a, 0x20a324bdfbeaedd3, 0xb04c2db0fc78e5c7, 0x15ff136d95655fc6, 0xcd8bff183b1ef032, 0xbc43dfb4c73551aa, 0x116d72fdad71da97, 0xf3dbc6bfb53e559d, 0x000000000000e4 } }, { { 0xc70486877f6c1c8e, 0x4578d1104587c4b1, 0xf709c3310226a229, 0xb6d1803f16ad8bcb, 0xa1cef72b84403a87, 0xefadf256efd975ca, 0xd0d6e04b1da29f2, 0xdfff1dd239887819, 0x0000000000012b }, { 0x69bf09e906912bfd, 0x9d70b9a49408fad0, 0x735ebf8d14ddae6e, 0x562bced430976d88, 0xfb72b00016b83443, 0xa972b674158b24fb, 0x3609c0773d9391af, 0x2d4d24710c4e3786, 0x0000000000008d }, { 0x7a00a5a6258d6e00, 0x8e65be1975c74354, 0x389f00141971d457, 0xd2ba144503b3e4c6, 0x4cfd6e67f934677a, 0x849451333d0291b, 0x60c49064001b8cf8, 0x64965ba312a5a40e, 0x00000000000124 } }, { { 0x2f07c181f7f35684, 0xba8c9541c1501cd0, 0x253488d93fa4308b, 0xef14841083ac1c00, 0x385ebfcb8dd2a914, 0x1fa4378509db7be6, 0x91dc4c02ed5e8e45, 0x4150d1ec91268abc, 0x000000000000ab }, { 0x4d9f452301261be7, 0x2c455fb706c43968, 0x32dacf785983a21d, 0x21caf4efca618c93, 0x94a7f1aa6c7da628, 0x8c6a62a078d4c571, 0x3b4b52edc9446de2, 0xfdbab459ef7a5bdb, 0x00000000000143 }, { 0x24716476490ae2d8, 0x2e808e463ef77a80, 0x394d0a9de4b23cd3, 0x5032a886d2aed242, 0x375d03e8948b12de, 0x84e1722a66a002fa, 0x751bc1e9580817fb, 0x4cce32cf45241433, 0x000000000001e9 } }, { { 0xa9b13318801d6435, 0xb81cbafd034d4330, 0x16b932fc99f759f2, 0x3e2c3738bd6bafb4, 0x491cd6298c539f4b, 0x9439f1cbc3298559, 0x34b77d3399d4d205, 0x4762a7b65a7cc013, 0x0000000000000b }, { 0x4e448c3b74878814, 0x25634c941aead97, 0x65c67bb889793176, 0xeb0be4149325919e, 0xd889ba974eeaea42, 0x6349786358922673, 0x456d682a06fe4000, 0x63476fab099fe8a9, 0x0000000000017c }, { 0xd942bc33cb12bb2b, 0x1c7cf44582eb90ab, 0xa23e84a12c43e3f7, 0xd531c69aadd645d2, 0xbbefe809ec21efd9, 0x45dbd0380b70a478, 0xbc4a27a80320b331, 0x2335a7ea3604d0a6, 0x000000000000c0 } }, { { 0x389c89c750b74fd0, 0x7f26dab5437c4db6, 0x4953efa1df998ec4, 0xbc08dc764cdf16bf, 0xc186efe66e962433, 0xd4022f252e89ff7, 0x65c7f0e5636d214e, 0x4b9248fb16ebdd9f, 0x000000000001fd }, { 0xf8e1b18086a7ad20, 0xe2a2efbbda2b386e, 0xa9d2516c3e526134, 0x5f454846e1a9ae86, 0x42aebc88dfbe5854, 0x8f94f27e61442d2e, 0xa6fa6b1c2c3796ce, 0xd30b404f63b45f93, 0x0000000000017e }, { 0xee0d8d985251584b, 0x51094cf1f9c0ae2b, 0x72c957622e71a411, 0x4bd6cdc28ae32b86, 0x4f08ac0c2d4e319d, 0x90ba1415235c9cfc, 0x2b6a27e0b0193ba, 0xac333feaa999d3f5, 0x000000000001f2 } }, { { 0x8aff70bda70a5876, 0x7d9d682310a3a951, 0xc50a03b79a99efab, 0xe851a3f2a25beb43, 0x456c81580c0b237d, 0x7df2ea5cd26e187d, 0x1977e5d2370570d, 0x8faefb1294fedf67, 0x000000000001f7 }, { 0xb4f39fca9699eef, 0x3c0d736dc0eef270, 0x5729ef3089674105, 0x8ebd6b8074c27cf0, 0xa8c6fafca05583d, 0x41c11ae76d585b3a, 0x39fac65f619ec08f, 0x2f89c7f03f3f7498, 0x000000000001a9 }, { 0xc910f249949a599c, 0xe1dada25886398ce, 0x1e4c5e9c515c37d6, 0x37157b766557129, 0x3f74f3cc11fa189f, 0x3af71763b543d0f1, 0x300eea2a9ef60aff, 0x1cee1f4c7689dd0a, 0x00000000000135 } } }, { { { 0x5cf7e384aa0dfbc7, 0x854818411f948ff4, 0x475d491e5d030f52, 0xe1061c6e0e1370fe, 0x18f584a2b8179155, 0xd1a0b71a0977bcae, 0xd776487f550e4fdc, 0x459005661312f417, 0x0000000000006a }, { 0x2f4fd0761bcfa2e1, 0x49da7df97f170c4e, 0x40d6839cf820e819, 0xe5a2c79ab3f8e07c, 0xeed3bc0a6612e86a, 0xb00f76f2914a5953, 0x849a11bf381e318d, 0x6181440dc312830f, 0x0000000000006d }, { 0x4fc2bec9c17fa510, 0x285cddee5dd5b54, 0x3b14fff9e1dd2e8b, 0x777e094321c071f2, 0x7895e7833fc69392, 0x3ae0107797606193, 0xbfead1e4b1b9f0a4, 0x5f0ec30d413a8fe3, 0x00000000000192 } }, { { 0xf943ec3170c20aaf, 0xb5057fa639cc8609, 0x7c353cbd428617ce, 0x2019cd9b8da05b16, 0xc434fb640922595c, 0xb8491329cc94b93e, 0xc3711f6a16e9491b, 0xb8b68e125c1dd78d, 0x00000000000010 }, { 0xaf641e5510fcc6bf, 0x61a18b05932f17d5, 0x7083635cfa725c5d, 0x13b3c7b42e0a7b57, 0xeb9e3a15cb0c5b17, 0x6430b2de5ce6d268, 0x49b0b86a08a07ecf, 0xd99ae9cd6b629d33, 0x000000000001ac }, { 0xe7e404876a065d7a, 0x1f5605bed48fc1f6, 0xdd884c16cb98eb28, 0xd45a864199238549, 0xe7c1b11e0ba6c66, 0xc3db471b90952c1e, 0x192f858ca6ab48ce, 0xaccb76613d51e404, 0x00000000000015 } }, { { 0xbed831525e73791b, 0xf532899e59fe0682, 0x748db1cd3b18bd53, 0x39f4470082229848, 0xb73d903b5b10197, 0xd6e2c12eff1c322e, 0xb3de32a60ee781e1, 0x7d3b8368243c0dbe, 0x000000000000a6 }, { 0x47967bf4fe4a58ee, 0xc628e99490f82ae3, 0xeaf0fd2e2a93cf65, 0xdc504c127a4d80f3, 0x9249419f216e17d9, 0x8fc8016701acb870, 0xc794c30a639782da, 0x7b9c0d13efb51049, 0x00000000000078 }, { 0x385ff5554d9969cb, 0xed727d19a00aa4d4, 0xc3efd4d6f3353cc2, 0x2a40e6bf0c71b604, 0xe805c474bff0d04e, 0x95c5b90fb9215c49, 0xaae25f3170b68b80, 0x29b5f10a06d4d184, 0x000000000001d9 } }, { { 0xab1d78b3466205b, 0xaaedc7d49e8cc2df, 0xc6e1efcca4e3442d, 0xf73930beaf552138, 0xd30df61ab2aa8e75, 0x6917049c44d91dc4, 0xa43fef26ae9c8d65, 0x434d29df83336593, 0x00000000000092 }, { 0x201b3ca3ce060c8, 0x3092140c597edc38, 0xf92d925a64e4ed66, 0x15e2e8db5a4d8c2c, 0x579fab130ebeb87b, 0x2fb8bd6067c1026, 0x6608d2a14470423, 0xb2cc1407e1e344d4, 0x000000000000e2 }, { 0x155313a18ebe6830, 0xf669ddede99f35b0, 0xc2c14b378992e5cf, 0x8b7ed322985c3b45, 0x44bf1117a0812427, 0x24d30a3b97c3b288, 0x40e2942714a1d266, 0x6954ff81f6bba1d5, 0x00000000000094 } }, { { 0xf750a2406b5e5abb, 0xeffaa162974bcf28, 0xa706ee397e38174a, 0x14113d64ef32a756, 0x52a9471eeef783e8, 0x53b3963f518b34d8, 0x83abae994fb7cd50, 0x5950ab8cfad67e24, 0x000000000001fc }, { 0x936e5b6f098f5c8b, 0x5b7504584a3707a3, 0x9e694aca3e27f02c, 0x3655f03a20efc38c, 0xc8dfd5db7eaa0efb, 0x27e64f5b8c64c6c1, 0x9f227873687c86da, 0xe47eb510106d269c, 0x000000000000c2 }, { 0x2b123275fa58799b, 0x677ebf0722202ffe, 0x858a1a8320267b34, 0x7d79e737205b5999, 0x4027e0f98369e43c, 0x540f444fc69757d9, 0x6c9630e09ca53c2f, 0xcdc4c5c7c06eac1, 0x00000000000123 } }, { { 0xc2f60afb9841b0, 0x7f6bd7bc4422917d, 0x53660a51110be6cd, 0xb542df1b80677b4a, 0x7ed2000a013f5c29, 0xe57c8e67bba3400e, 0xdb81c2ccddeae25b, 0x747a6631a7089239, 0x000000000001e3 }, { 0x2bec417d18817411, 0xfec757664c25cf89, 0x79db28514e0598e2, 0x2d86c0ef8dc8bd89, 0x5a6d60af199f706c, 0x41148939682a2c36, 0xf7983df54a97ed98, 0x4847e4606e1521de, 0x00000000000006 }, { 0xbc92508d61213ee1, 0x74dde5e6f723cc6a, 0xd723cd95c0243161, 0xf953acb65ce5bd64, 0x27dfdb1265e43ae1, 0x7550de25e8dc2c5a, 0xcc82267d86fc3506, 0x3bb5f65d47c6eb4b, 0x000000000000b7 } }, { { 0xb95acb29ddda2db6, 0xcd0afdf6bed6846f, 0xad85d5c363aedd56, 0x31e86a2e4c5541c3, 0x69cc83eac6128401, 0x671ccb3cf7fbea5b, 0x4865411137b3672d, 0x97306b4711f8d0fa, 0x000000000000e8 }, { 0x6728f7da445441f1, 0x3ca58b77718f2ac8, 0x2792f2d9a9910fbe, 0xae976f47b63c1cd4, 0x2d3dcfba4fae2ad2, 0xf794dfa9880c468c, 0xbb620cd69fe1b10a, 0x47b50903c938c3a1, 0x00000000000114 }, { 0x2cd2d2f8d6b0032b, 0xcb0f1ad115954d8b, 0x3082954aacf41413, 0x546f1745bd31a0c6, 0x8bdbc4940f8ed5fa, 0x61c4fae192318ba7, 0xcdd44dec82dd017b, 0x5b147c9f1e76a68b, 0x00000000000070 } }, { { 0xd20bb7ae139701ab, 0x0765870b087211, 0xe2c354182a5d409b, 0xc926fbd94c152485, 0x6961c25e02860ca4, 0xeeff5a0d8197ecaf, 0x5cada7b9f22b6fc1, 0xf8454e21c7b693e2, 0x0000000000019a }, { 0x25d00b3d1bda1891, 0xebdbed1cd6692698, 0x3e3b9894a124a951, 0x2b521208b8039c36, 0x2b7d241758fe3d7, 0xe26dcbc55398d371, 0x35427907510f1082, 0x3401723e436ec760, 0x00000000000067 }, { 0xa4f5c602dca63f7, 0x8d29450dcbbdf588, 0x6b34fa3cc5c79491, 0x48bda8ba0c37e2f7, 0xefca1ed168c5d116, 0xf906e1fa60041770, 0x88e5ccebcfd09a39, 0x39a622f6f08847f8, 0x000000000000f2 } }, { { 0x35bcd840481b07f, 0x4cc437671a5139fe, 0x1cdc859c5728520d, 0xb4a3e7b1230aae93, 0x51000baf6e106052, 0xe2e92429438f2319, 0x5ae8c88df0828269, 0x804429e9d5e448b0, 0x0000000000002a }, { 0xf4694d73c60d1799, 0x5726bceceb346cef, 0x9e32a21f0636c08d, 0xc01600a8cba17f11, 0x11afa058fd6e9876, 0xbcc88dc4cf8250f, 0x7f01610399d9e051, 0xe1548a09f1360d2b, 0x00000000000015 }, { 0x5c8d4ff793cd320e, 0xc3bcad9cbb0f0a8, 0xf4a237be13913730, 0xa506e083a1af5dee, 0xee6ea61863a4da84, 0xdaf4d762d61987a1, 0xc2aa49812fbf316a, 0xfd1e62939b8bd22c, 0x00000000000109 } }, { { 0x25cd144a84de4114, 0xc16f8ee80b3750fd, 0xb8fca2309c931623, 0x8a5bfe47aeb7147f, 0x66696138d8ac6d0e, 0x1705f18c2fe20b1f, 0xfd6fb06a6ef7ada0, 0x5c009d89683f902d, 0x000000000000ad }, { 0x75d090bd6b98db07, 0x8035396bca4378de, 0xb6565b1447e21e8f, 0x7b8ddc1dc2c7bdd2, 0xb4846e4af4c192e7, 0x3dc91389ee241f33, 0x6808b487b052170a, 0xe24a78a14ff863e6, 0x000000000001c8 }, { 0x25b705f7a6b93f51, 0xb27cb1d704e19d6f, 0xba2e1c5d297d4377, 0x8b69adc0d3f2e1a6, 0xe3a6e4a050a76432, 0xa2e8efa97c101529, 0x4c520656bc500b71, 0x6ddf84a762f1eef9, 0x0000000000017e } }, { { 0x2fb5ba37681229e5, 0x7e5e1f474711ce75, 0xdccf2a779ca9ff19, 0x6e3f65d002e22186, 0xb8931b4d5f4cf15b, 0x6ad19698f364f392, 0x2509f564aff38aa1, 0x83f0d7fcfb519a3b, 0x00000000000159 }, { 0x578227165b264d8, 0x18377c5cd4647dba, 0x1afadf6a5139584e, 0x35919405ce4c07c5, 0x971ea1e2a54d4bbb, 0xeaf65c9c90a65bbf, 0xa794726a369dab81, 0xa87541a5c1e3c1c5, 0x00000000000184 }, { 0x2af7c466882b35e, 0x597dc7d4f6466a81, 0xbbf34679dc5073da, 0x990400edd4c87e5d, 0x4a12858b0a437535, 0x842d49d13273cda4, 0x8ac739e94cf27419, 0xa7349c75439d087a, 0x000000000001f8 } }, { { 0xb9bcbd7ff2d0c1bc, 0x38f1f8fc3f04a3aa, 0xb2ad391ffdf23af4, 0x72cdb104d51e12fd, 0x557b7962a9a966d2, 0x7c016dc754d4441, 0x2c87b7aac203066f, 0xd086539c5a42cb85, 0x000000000001fe }, { 0x4f1f83f0e4a5e3d0, 0x51e12e1499353134, 0xddf535be42639a13, 0x5c3bebd54f0e4b01, 0xd17ff0eb73e4b0c2, 0x13d28c84af83a659, 0xf0a3d93e46173449, 0x20962d7c931cf957, 0x00000000000130 }, { 0xb53169762fe39cde, 0x1d1bd279740322b, 0x5752957d04837c07, 0xee77966f6563b52b, 0x8b008d0315778ab7, 0xe7bf426188d2f555, 0x96efe2a7d954c8e0, 0x6e683935ef265735, 0x0000000000018c } }, { { 0x45bf44598e2f153e, 0x956cde73abbab1d6, 0x5ba2279c7f6ad0f, 0xd24da6b36c1aed05, 0x51b3fe746530439f, 0xf276b1b9a064bd67, 0xc08eac0c63c76946, 0xbd204fb8186a65d4, 0x000000000001b1 }, { 0x5d6089f3d76b9b05, 0xa32c7c86b234e018, 0x14ac2abadefc46f8, 0xdd28e6546f624c5c, 0xd493bee11ae9c5ca, 0xe0c52727590435ce, 0xb5993ea0277571c1, 0x8a5f0f9c271e1635, 0x000000000000c2 }, { 0xc570c5916b4febcb, 0x81b0b421c81381a6, 0xefa83e4b68be60ba, 0x6aa811cb6ca76724, 0xabc7f9bc661bf63b, 0xee3865e9760d1354, 0x81a3dc8cdf3d95d5, 0x92e98ba7727845ae, 0x0000000000013a } }, { { 0x8d32f35026bd7578, 0xcc6d3e08df0ca8a6, 0xac7cb84ac67f38b0, 0x57a97ddb5115a72c, 0x7118ae0b33ff231d, 0xd2a88ac3b0f323c6, 0xfe3e7a693203980b, 0x23f873bdd7b27a5, 0x00000000000050 }, { 0x3aab9bf2805a8e60, 0x4fe9c58fd4ee71a9, 0x5ed2e8805ff7cceb, 0xda95b2937e883bcf, 0xc92c4bd6fe07a3c9, 0x9eab694aaaabf32f, 0x2eb465f72e1c4ba8, 0xc4266d5b3d1ea06a, 0x00000000000102 }, { 0x55cc1676c76c07b5, 0x75840b5a0ff1dffb, 0x76194da929dac39b, 0x27b2e826b7036894, 0xe7e97e3e5a28449e, 0xc398dd42172cb1d8, 0xa62ee93d4ba0eab2, 0xd3ef7f96bc36aff7, 0x00000000000088 } }, { { 0x1b8517f8695afc14, 0xdc64dca4384da6b6, 0x8ace6fce7d2a81d3, 0x985a92915e6b3898, 0x3b83aa39f265770c, 0xc82b3acfad1322ee, 0x90bd0e90961f6fc2, 0x6f03afb56f594b22, 0x000000000001fd }, { 0x992d09bc40ce9bc2, 0x2c7f2e7ce4fc6c5b, 0x572e28ba7949124c, 0x59641cff96498680, 0xb60cd5fde5c917d, 0x629b43321ca25924, 0x4d4c2fd4c72905a9, 0x1ab30a31ad7f0f13, 0x00000000000058 }, { 0x580cd963ebd4bd75, 0xe24c0c877285bc41, 0x18308f50df745611, 0xde89e463c0a8069c, 0x4675ddd616a9085d, 0x520729f1e6c53aae, 0x7d6d3394f7da7a5f, 0x832b7a3dacf5bb08, 0x000000000001fa } } }, { { { 0xe11ff1ff948a082a, 0xf3864d6d4ac94ddf, 0x304e83b8ed48332, 0xf733f736bbae8a8b, 0x5da8bb9a6e7bd25, 0xb1b7a5034f49e519, 0x5790da413201e083, 0xc9a0652c42e3558e, 0x0000000000005b }, { 0xaeb8882be76d5b2c, 0xdefbf2ce6f08623f, 0xb0baea9644f4f37f, 0x789a73e9f903573f, 0xd8c07ebb928ab8c1, 0x55213b82f7c0eddf, 0x63f9021bab6486a1, 0xa2967dfcd742d331, 0x0000000000011e }, { 0x48c570b2e23f8014, 0x62f1bb08ec905a31, 0xa6d9b311eeb72b90, 0xb3cd54bf25e66429, 0xc1ab9022cab05c48, 0xe73c954d3bbb31f7, 0x7bfe17ab4d183f8d, 0xbe133a7aff79b2f6, 0x00000000000033 } }, { { 0xda61a1b08666a450, 0x637fcbc6efd9c798, 0xab49da9a93bdd420, 0x3e8728915382dcb, 0x440a56b4935a9323, 0x498a0bba61832466, 0xab7a6a94fedf0d48, 0xe44e58c0717554b9, 0x000000000000dd }, { 0x9779e223b7881fa6, 0xbf2bb7c44ac399a3, 0x57475a2ecedb344c, 0xaa9278baa2e01c1a, 0x538dfdbdd4788ed9, 0x6d19da1d194b23c, 0xd14ffdfc4e6b3731, 0x78dfd9599e1cecca, 0x0000000000003e }, { 0x76ce3ee02f092326, 0x11a78ba45168aa43, 0x93fa643869e4efdd, 0x6f8c4a1d35e33bf7, 0xcf21437300db4a3, 0xb24cd819e70b2d98, 0x8f97d1d6f3c289cf, 0x3936840bc31d51dd, 0x00000000000179 } }, { { 0x8e076e2058881e89, 0x4ba47318e6876735, 0xc71db1d0b377695f, 0x44dce034d6b90c51, 0x566167e3f376e275, 0x67c5ec0df2c32729, 0x813840ce3f01b330, 0xbf7ee7cc4dfb0948, 0x00000000000012 }, { 0x18d0f0810d8d4034, 0x535badc9e2b0f279, 0x2ee79c7d962853c2, 0x2296e7c390c2b7c7, 0x35825419142167d, 0xce3fd3b881c1cd6c, 0x94210c839ffc77e1, 0x9d2368928ec5861f, 0x000000000001eb }, { 0x489387528656e0db, 0x9870edf7f76c3f80, 0x61ba050f316c99ba, 0xd14533d00dbe89c4, 0xb83b1d1c63caae61, 0x2d078e16d62fb507, 0x1edf82029fa15ac1, 0x5942b06edeaa511f, 0x000000000000bb } }, { { 0x5dbb427f1a2c6443, 0xf7c99fd0d713718c, 0x6665d1ead87bfc25, 0x80d23df7cf9a214e, 0xe6553edc1e3ff25d, 0xa4d636feb447a1fa, 0x9831a1afbe4cdc3b, 0x8c853541fbe7b0c8, 0x0000000000001b }, { 0x85539740bdb3ddc, 0x189f5cda87f3574a, 0x64b95dd38be038f6, 0xadc5ce8f541eea54, 0x9fde4f73292e9742, 0xdd9388d28eed7bcc, 0xb92bee87963db90a, 0xdd1c86833f489e66, 0x00000000000148 }, { 0xa42f62d75a236147, 0x1f9a2286a0cda205, 0xed62cb0dda8af532, 0xabbbe2d0da8a9b7f, 0xee952c6be2759845, 0x9752ad390f47e5f2, 0xdddcea3c20be6127, 0x65421f8276ebe354, 0x00000000000152 } }, { { 0x9bd83d1341cd1aea, 0x42f8b3b1bb701ba7, 0x56bb44def282b5db, 0xfd4d02be15ec6dff, 0xb08af53530e3aaef, 0xdc8465b8a66c44da, 0x81a5357994a5122b, 0x8a8e2e2b3bece3a9, 0x00000000000049 }, { 0x5bf2789f57430e40, 0x46e5e5c25fe5288c, 0x8c970926288ec069, 0xc55eea950d684ea5, 0x279aab7d6a0b2312, 0x4127d48adf27f818, 0xf42fbf4f3c84a765, 0x8c35156ce784220, 0x000000000000b2 }, { 0x4efaf41e5a9fd001, 0x6f6c1b1fc0549acf, 0xfd7118ab51016e21, 0x6a591e114fee7dd9, 0xe23c9a40a37626b8, 0x488420c3954679f8, 0xa9fa7854f8f4218d, 0xb3658e003b68de70, 0x000000000001a2 } }, { { 0xc961ddb88326556c, 0xb71b5110da87fa2, 0x4c9e7fc80dfc938b, 0x841806d96c8dfbe3, 0xd4df762338d27867, 0x8d6c1fb61903bb8e, 0xa8989aeed37c2fe0, 0xeeb89d1778b00e52, 0x000000000000ac }, { 0xac8597aedd09693e, 0xf5218d5cf0ba8dee, 0x80cb677aaa9b3934, 0xb9efbf0dd1c1c88d, 0xeb00347fcaa0183a, 0xd42b65318f75e42, 0xc605d5e25d1773bb, 0x8333a1d8a666bd2e, 0x00000000000088 }, { 0xbb7fe699dc3f15a3, 0x94f2be179596681c, 0xa5ceb6c4e2e997d0, 0xd272c8066e14d7f1, 0x8f7e8cb436b553c1, 0x146937cdc913f931, 0x5fcb99d16e3bda89, 0xb672d45e6961b60e, 0x00000000000179 } }, { { 0xcbc5cb30a0a0b57, 0x9272f88dbdf7240c, 0x631726dc13f6a2a3, 0x3ea7634f09adbff, 0x76db0902606c1101, 0x9b70c8264376f6, 0x4759839cd0adb9c0, 0x4d8ca05f396fb99b, 0x00000000000194 }, { 0x268b4ce79c75bed5, 0xed0061bb2bfea0fe, 0xada5b14d9e10c90b, 0x6c5355b70c695b0b, 0x4adfa6b15c2d0852, 0x85bf7ceee7dfbd83, 0xae0ef2c7888812e3, 0xb0073949a9a066b2, 0x00000000000022 }, { 0xad63368ebd256bac, 0x531634b94bd2f771, 0xcf455b15e9aa82be, 0x3b662f2904c0848b, 0xa64c9c308d874cdf, 0x8d657b5cb09da856, 0xecb355fc472fa5b7, 0xf8330e5d0ae49020, 0x0000000000004b } }, { { 0xc23135d54df55193, 0x33912c0bc0c84fc2, 0x968abc1d814d9e36, 0xb739e309866214f0, 0x8983089bbbe8620, 0xc265fefccd27d86, 0xb5c822e6e6c90fb4, 0x2d0883b6f99586b5, 0x000000000001c9 }, { 0xa29d6b486c286f96, 0xbcb8a07195db2a80, 0xe577c781ddc98548, 0x19f18fe6e3ba469e, 0x9138b8a14c2a725a, 0xce9f39501cd00ae0, 0x7b20da6eb466d683, 0x19c9d8b5aa5e46c7, 0x00000000000170 }, { 0x96db44160013af53, 0xa1512eecbfc086f, 0x6b7374957ee9963b, 0x7d3cfbb8a252026a, 0x6086a99b8e79f95d, 0x65f2c7286c52cd4c, 0xfcd085925a01cc36, 0xa92723f0ad7d24eb, 0x0000000000017f } }, { { 0x377b8a467d1d733b, 0x450397bf8c642ee, 0x1a9925a5c6b6129b, 0x2351e27552050f86, 0xab4c8827dfc0c284, 0xb29da2e765eda09b, 0x2bbafd8b12bb5b11, 0x921522bc4041c76c, 0x000000000000c0 }, { 0x930872c857a0de55, 0xf9bb7e674ff4f2b7, 0x33f19a0c70cd0d2c, 0x7d8cdc8d80d4d527, 0x427ccd6afa47c991, 0x973330823b22b0dc, 0xcec607f2dc007187, 0xcc585672b79ee64f, 0x00000000000102 }, { 0xf56b12fd95244e07, 0xc3b10044dda0daa5, 0x23545180a1f8a215, 0xb88879d7960f4753, 0x8eea75772a4ecef7, 0x990b201e4c9033b6, 0xf5ba0a1848dfa0a2, 0xb1388f56888ce655, 0x0000000000003d } }, { { 0x140b7559fcb780ca, 0xb5f505325ad5bd9, 0x377025bb08eb8f95, 0x555e5d269cfda3aa, 0x84be3c2762c86b00, 0x76c041d876709c09, 0x6b9ffc5640e64571, 0xb49ed952c1d99b59, 0x00000000000053 }, { 0x5e2c7566e285f7fb, 0x7ac772c1076b9dbe, 0x2ad6fb7607f7ef69, 0x128af01a16ccc987, 0x9ae87121a5d7a8c2, 0xd4f27001b4631ab3, 0xa900696a06187c52, 0x477bf39c10f85af1, 0x000000000000af }, { 0x637c27fcb3a820c2, 0x5cfe9468d58e6707, 0xaaa1f2df559c8369, 0x712be0a912cb5f88, 0x9d98c7e780dce10a, 0x98189c93909bc121, 0xb835ce6753fffcff, 0xb86a289f71284b01, 0x0000000000018f } }, { { 0x9212092b8e082437, 0x29a54eb9c7a6eed5, 0x3fd27bcb9eca1a6e, 0x54bc452a2fafb4b0, 0x2807c602d7892ef6, 0xcb6bc3c4e41c2500, 0xde318e3365d3c1e, 0x374a02e0fc35a2fb, 0x0000000000015d }, { 0x9659fd637bd36ee7, 0xce173856eaa0058f, 0x3b3e9680fd002754, 0x76f318caa356687, 0xdd7c8c2009ff707c, 0x3044a0e780a2cc34, 0x9e2be50b274d0b4, 0x7745d8e7443a7c93, 0x000000000001bd }, { 0x95a9b74325311d5, 0x6464f3fae6a844a8, 0xedc63378a772e180, 0x81b07763c9610f01, 0x5fefc86fe65ebe28, 0x9789f9afa1450c11, 0xacf22c8852610d4, 0xeeeab64d915eda28, 0x00000000000068 } }, { { 0x68f2533474e8dc37, 0xb831fd55fd17fb19, 0xa552895a9ecc379d, 0xa15c6bafe373ad17, 0x380624d2dc5608d0, 0x13119a75411b148b, 0xc37bc743c848eaa1, 0x461a2fe06994cbce, 0x000000000001b1 }, { 0x20f6e6a4b228b1d0, 0xc9d5e3224a21b2d4, 0xa53f86590b562ce1, 0x7ed9e2b2f9589567, 0x43d52bc5edf993ae, 0xf76f230ad94e7da, 0x450aff589458f4aa, 0x7c9315311cb4222e, 0x00000000000154 }, { 0x4604cc011d69ccfc, 0x4ed45d91eefc52e6, 0xfc30e2dedc87f750, 0xfc6df5ceabf2f3b5, 0x64013b84ef4301a4, 0xce2488a1929eab88, 0x5fe51fcab40c6099, 0x7f2b88131e924272, 0x00000000000187 } }, { { 0x12557216093de583, 0x8d2a1fbb243f22cf, 0xfd04791bdf366d8c, 0x835a95c94730fb8, 0x2f90f389c4a5d115, 0x338a7c0c34833e6a, 0x2eade8a9b07e739a, 0x6c3eb64d808abb37, 0x00000000000176 }, { 0x3622761d8837ad28, 0x8cd04cc05f42b301, 0x823dfc8234c2953, 0x4d2ba9edca886f4b, 0x5c278c40fe02bb13, 0xa6811c5f3764e231, 0x38c64c72b7e1ffbb, 0x1a324c0c6cb259af, 0x000000000000cc }, { 0x45b76f6af2b2fe2f, 0x1610acf8a47a813f, 0x65feead4250cd401, 0x5fbe89a3388c6370, 0x7689060740d0b109, 0xc6e20644bd5f53bc, 0x2c8bbb2f5c146c08, 0xb4c4a0427e5eadc6, 0x00000000000124 } }, { { 0x54872f3c574b0692, 0x83014c34888ae072, 0xd2cd00318ab107ca, 0x4c07e460bd02c0bb, 0x759f43771327edf6, 0x499f42c194d3e6a2, 0x325df5f967eb3444, 0xbbe3ae529645d11f, 0x00000000000148 }, { 0xa5b26484babfc047, 0xf8ba5a56a52ee47d, 0xf05a293cf4c54988, 0x64791d0f763dccb1, 0xc87fa01be6d1742d, 0x9091480bafeff405, 0x313cb75446c6d7cd, 0x8da1bd29d8067276, 0x000000000000dc }, { 0xae97745e8a14277, 0x9172fb187c676c21, 0xbd310b31ed006ad1, 0x76d62665a8da1714, 0x459e3cf58f899e67, 0xf0c5f81567ce73e7, 0xabfa9a04b098f5b2, 0xb783fd8e34b2244a, 0x00000000000141 } }, { { 0xbc28d0ee573f1dd2, 0xe504068be4b48590, 0xb0defdca340a5301, 0xcc9e8f759af18d56, 0x78332158a727ed89, 0xb29fcf60ec55a623, 0xd651fa47f0058d26, 0xafeb6afb16715df1, 0x0000000000010e }, { 0x209f965192768c5e, 0xe95eda0ee1ea886f, 0xd54783e36468df23, 0xcf6e44def8d3fd96, 0x45935159ebb4a22b, 0xf593a2234f916198, 0x642f09703ee991ec, 0x28ed9a59b0d3580e, 0x000000000000d0 }, { 0x865dca3c6bfd9a6a, 0x427ab48af3281a45, 0xfbca1e02037c2b, 0xce7fa42bc5708981, 0x4efdce4fd52b478a, 0xd4bb98688435a77, 0xc89d9ce689585822, 0x370d4d082919529e, 0x00000000000164 } } }, { { { 0xdd3c81d539708e31, 0xff2910e0bc588db4, 0x7d607c4257506877, 0x7d6b6eaacc1d9118, 0xceea944d9a8b0875, 0xcd8dfe4400213723, 0xb3f26749acc8697b, 0x7af6bd9b2b2640b9, 0x00000000000124 }, { 0xce3f92433cd10df8, 0x193d3aa7235a33e8, 0xc62907e9ccdef89a, 0xfcf415a274d1972f, 0xd44a65d624c16803, 0xcf51c4b0777c3a92, 0x5109c1ffae4bb43a, 0xd33097ba30876bea, 0x00000000000127 }, { 0x423036b900b8a307, 0xff0cb81dd6bdb804, 0xc5e848a083f4087f, 0xccec745b47f22c2c, 0x653cdf78ee67e2a, 0xd74bec436fd39049, 0xae73175a71c99d2e, 0x8c561482b36da08d, 0x0000000000011e } }, { { 0x97e93db3d888bfb0, 0xea30bba885547108, 0x73e42f6237e0c6b, 0xafeb034a6db4efda, 0xc08ccbb44d152e1d, 0x2b78a14aae4c323f, 0xe74086871733685d, 0xd3946cc3d24483bc, 0x0000000000017c }, { 0xb41d684afd6ace7c, 0x89b59c598c6f7d94, 0x927f8ee70e2b5ca6, 0xf9ef128a2be9d872, 0x7f8c28e350eef5b9, 0x2c97550f7dd088c0, 0x9ad9c47c1c6f365d, 0x8d8c3c7e2040ffef, 0x0000000000000d }, { 0xc8ef1c2b6e9dbcda, 0x8b0189ecf98311f7, 0xf54d3202e380e75c, 0x31a009fe08f119ff, 0x5a29ddcfac6a1a70, 0x8622895c73dc18c4, 0x7d168815a0178148, 0x4e016fefc26eba1f, 0x0000000000006f } }, { { 0x484e4aba7d16c09, 0xac4954d8b6a77353, 0x13e11d12de7698ee, 0x1b7eb223ceb6de16, 0x5909dbad191292ae, 0x2bc4228573193bdb, 0xaf93b1cabd32a15b, 0xbc021878f92d9692, 0x000000000000be }, { 0x3bb7d219561fbdbc, 0x42e223fbc9ef128d, 0x63636e7df8c85943, 0xcadac4a5974b46f, 0x2bb8c6000a5b4b80, 0x844a739bc60e80ed, 0x4fab941e1b3d18d2, 0xaece7aa59d34c9dd, 0x00000000000095 }, { 0x987d91ea5ea77018, 0x430a2ec04952a9f4, 0xb6028d2df21f4f63, 0x987fa1995bd5c119, 0x9258b0b548464162, 0x3d6ccfe72128caa8, 0x45ab39e4c83ec3c6, 0x326c1c86e034e4dc, 0x000000000001c6 } }, { { 0x8e49a0fdafb4e402, 0x6d6cce6a5f77c87d, 0xedfa2205203f482b, 0x9b57a0637c95f230, 0x39f94f399d8410b9, 0xcf088755777b8bd7, 0xfd1a003a6176363d, 0x154309c106d37d4b, 0x00000000000009 }, { 0xa521013cd71bba44, 0xf1913b39f52c4ef7, 0x3afc69f763696070, 0xa9c7f6e36029c3fb, 0x5b2bdc29025106bd, 0x695fc7ecbc3ba976, 0xdd3aab3dc6f693e0, 0xae58bf7fec793d47, 0x000000000001d5 }, { 0x43b56d2fd59f1e2f, 0xa24ec6042023e746, 0x359dd49203554215, 0x3dbfad00b6e8195d, 0x8d41dfd3c1c9b0ac, 0xba6b570aa5a28f8e, 0x73ac285c856c48eb, 0x22f7027f7e6a8d5e, 0x00000000000097 } }, { { 0x2585c575bf46c6d, 0x6256213fdd6b19e5, 0x1ec8364a89b0314c, 0x8b7202ccbd7de604, 0x55486659153773fd, 0x75b4bf9aabd5e0d1, 0x43cf692106a49051, 0x3284b6322917dc8c, 0x000000000001a1 }, { 0x2ca465646216a5cf, 0xc1be38258601067a, 0xabbac6a5a3c1154a, 0x9a5fa12cc1b8bf1e, 0xfa291f38aec8dc9d, 0x58e85060aaf8424f, 0x8215eaaec4b20efe, 0x7d4293ab23fd82e7, 0x0000000000019e }, { 0xc093750d603b5e82, 0xddbbdafe40885761, 0x382711a7984b56ea, 0x575680bc5ddab984, 0x1c0c9d84a14bcc88, 0xd43f8fb82c3d6fba, 0x322dd05bd1bfcb32, 0x70629366bd2f6353, 0x00000000000072 } }, { { 0x783ed67e5d22289c, 0xd3de0f863fd83d95, 0x3c96380291a1ca13, 0x9ed719d12d632947, 0xfe309b63797783f9, 0x34896c3e4789114e, 0x95ea17046d79d66a, 0x1d09669db10b2923, 0x00000000000151 }, { 0x6ec094d216856ac8, 0x9218260f3d1e65a1, 0x392a25e41f399238, 0xe7992b0f8e3f432f, 0x540b0ffb93d6c034, 0x8c9d86e92f7f8b9, 0x968219d12a0e909, 0x9df35b3596ba0802, 0x000000000000be }, { 0x549e718e5c2537c, 0x52f806305cde4f60, 0xeddf7f9f10dfc67e, 0x2b62b0d2e55dad58, 0xd21077712de64386, 0xfaa475a662a0e7f6, 0x3198a816fcd22327, 0xaaf4e90702cabc9e, 0x00000000000052 } }, { { 0x72ab64321b64dc0d, 0x3865d7b99c203729, 0x8ed517e13c94c94, 0xe3a0bad88ae45842, 0x24e9bf8cae85a9b2, 0xde8534e072d8aa21, 0x854ff324f89f3757, 0xdca8aab838238e01, 0x00000000000137 }, { 0xe5a874590c465d2c, 0xd96b4aa468e9e4f1, 0x2b4319ccb52bf72d, 0xd6b466ab421c2e0e, 0x7c8a1e419de80d1f, 0x85c894866060834b, 0x42c467d0370bfc7d, 0x2855341e387d952e, 0x0000000000008b }, { 0xb78f3964404c8910, 0x20f8ff89c77bea9c, 0x7857022f9ba8f871, 0xa5313942e383399b, 0x638e92baeb7b16c9, 0x28621804c665b0f2, 0x91369dab7b0a8da5, 0x1c1cfaa4f4f0d030, 0x000000000000d6 } }, { { 0xce2f46ac0e8bfcf2, 0xb02a8e1bd419a4f2, 0x9bce45e38520a2f6, 0x963e081fa421d204, 0x3b0b1babcac1879e, 0x6bd1fd6233b1aa21, 0x1dc0a9223bbfe4e5, 0xf0c8ed524dd22a2f, 0x0000000000014e }, { 0x1928394084c766ea, 0x74c8f16345a1643d, 0x3c35e74dc0487e5f, 0x8c7563e2499c38df, 0x1852c2a3e70c7471, 0x445bef5e69b578f4, 0xd51eb759a93877ab, 0x7e33eeec16f760c0, 0x000000000001b1 }, { 0xcfb8c83ae2bfaad, 0x4b5f7186c9682686, 0x2e2501a01c9084e9, 0x839bb7d4a836af22, 0x58df92575593175a, 0xb2bac7df7cab4119, 0x16862d8f85af0d98, 0x2b5b7411e8ad8354, 0x00000000000090 } }, { { 0xe0db0eb56245aeaf, 0xc969cdb735037710, 0x651e3d5ebce9b84d, 0x12dad90d7155b89c, 0xd2eb7c5a72a7e184, 0xc907069d57058d85, 0xa6311b4cdf49dfce, 0x285880f5f5395e55, 0x000000000000cd }, { 0xa6ebe98aa9a5d36d, 0xaac595399e769d66, 0x4a5730f7ff88588c, 0x8cb567a0a9da81fb, 0xc73f7e92bc0cad83, 0x8d722aba7e73e755, 0xbc873f386d6d9e30, 0xf9c297afc1c0ea05, 0x000000000001fe }, { 0x60f3ce4911fa7edf, 0x872a91c4bb0eeaf4, 0xb4d9229ffa1df4e, 0xdccb88d7efc99c28, 0x91d18787895f8785, 0x5a0ca6f48183d7ca, 0x4cbc87498415ad4, 0xdc7e0d311ec04d9, 0x000000000001f2 } }, { { 0xc61096429d00a9a6, 0x4c2b0cae38df8c2f, 0x73fb1c986ca8b099, 0x20933a8348e60a26, 0xfd9227f11b629d29, 0xfc2e22e5d4fa35c1, 0x996c614d5588f5d2, 0x792fee51a167ebf, 0x000000000000a2 }, { 0x6e15cae488f490fa, 0xd0c78e2c9ab81c00, 0x6b2c39999644e0b3, 0xb58e7a814d0fefd3, 0xb5f506ae51aec9e1, 0x79303d9d4ce1d546, 0xe41677f15ba07526, 0x5e5d817b0ed89eb2, 0x000000000000c8 }, { 0x87ed2f528ac94bb4, 0x43b2559281db38f8, 0xa84be870623f8f32, 0xa276e57c3976eec0, 0x8cf53673e6d442e1, 0xdb2d02dff134aec7, 0x5157ab5551724933, 0xe3fb925c97cbb4ba, 0x00000000000144 } }, { { 0xb2b30966e62734a4, 0x36e09d439cf5171e, 0x801e801492c7020a, 0x93234555058d23a5, 0xfb718f58c8cdcb97, 0x3bde45b67214d32d, 0x6ad69a041bb15624, 0x8f96a06651412b21, 0x000000000000c0 }, { 0xdc0b3ac0a3e1d1a2, 0xbd21d6771bff8933, 0xd61cd45ee271bda1, 0x4a6ae3b319a91e3e, 0xf32dc21e9a724fae, 0xe580aa3d12c71b6d, 0x71288994ccae2a13, 0xb69b4c21c62e3b08, 0x000000000000bf }, { 0x45f81d651c89ca01, 0x8965d33575bdf33f, 0x4361743a9574a200, 0xc4f21f573dedca9e, 0x72806c6419446fb6, 0xf36a72a9f60b32d4, 0xe34a2a338e3e0bde, 0xafdd8961a2e77c58, 0x00000000000059 } }, { { 0x4dac8b2ef56a0640, 0xe8325543d3896996, 0x7f8959a5e5b2c645, 0x1b0e07a37eaa03ba, 0x6de86232e41aa905, 0xba208814f12a927a, 0x6539baf525f0a33f, 0xe53cc57c74c78735, 0x00000000000108 }, { 0x8d2901924371c367, 0x1073451cef9401d9, 0x445acee8fe0a076c, 0x82d3aa961383d1e4, 0x7104bcf267cffe59, 0xee91989684aab05c, 0xcb2ab35dca11d595, 0xe74b18d966ee5019, 0x00000000000064 }, { 0x9fb0743419276e82, 0xcd62a4868f784ea8, 0xc90906b5166ff1d, 0xe558db61cd10294b, 0x31f8b043868cfd59, 0x784a1a5531e17ccc, 0xd3c891a131022d93, 0x5f09d4bffce8d938, 0x00000000000090 } }, { { 0x9aefd6e87ecc610c, 0x278fdee37a4ad448, 0xae038dd7a51b695a, 0xbcfcd0c3640c001, 0x36097a6800007475, 0x457ac39ad3b41e68, 0x7a31bda770232114, 0xb8d008d2023bc088, 0x00000000000055 }, { 0x782dc57d50b6376a, 0x40d8885e7630de7c, 0x78ca0088814be84b, 0x693c2e7495f1c3d7, 0x35f3591cbb3e01a5, 0x293e28299bbbf89a, 0x40e183adb50ba1c3, 0xbb7dec924806773b, 0x000000000001c2 }, { 0x1c17e935a8e959de, 0x90cdb35a9e62e9a5, 0xd078d0191bdb9edd, 0x4b12667d76e7b28c, 0x700f418fe7917b0e, 0x91df634107a8e66f, 0xfca440ffcb628492, 0x27d67a3c952a866, 0x00000000000084 } }, { { 0x9d15e78914a84a59, 0x27ea431da245cc47, 0x58096be29e0d83ea, 0xc9ef03f7209b85cb, 0x70c7ca6c3f9e2377, 0x5893c8c42dad667, 0x2554f2a4bc53f566, 0xff3a9a2e487cdeb7, 0x0000000000000c }, { 0x2d8b641194abcb4c, 0x2efc43999c3d3c2e, 0xdbf6368adaf83eb2, 0xc3c92c7928c0735d, 0x17681040938c8d53, 0x1d107dbf5e7b2281, 0x3682edcc02387409, 0x7a96cee656d500e0, 0x000000000001a0 }, { 0x4770ca86d4d09c2f, 0xb80704b24cda26fd, 0x845296822e63d895, 0xf7184e6577defeb, 0xc8dd5836b23182e4, 0x6440127619a0da02, 0x3ee2d25812a57493, 0x470633c04994c04a, 0x00000000000145 } }, { { 0xdad3da8b7610ffd, 0x264eed858ac92b30, 0x28d20572ad009db2, 0x8dd363e3c7adf13f, 0x6c59cb7ecf27a47, 0x3a50192336dcb282, 0x6e635db69f52dc0d, 0x284b470eb489961a, 0x0000000000016d }, { 0x5133620ae105d85a, 0xde79cab1ab1718e9, 0x2abeedfd3e381782, 0x7ab6c1178a8163fc, 0x76e1887a05c42f8d, 0xabd296011273983f, 0x5a42ddb963da0071, 0xb9b7280f4b9786, 0x0000000000011c }, { 0xb52c4e6fc4bcde06, 0x32f53f1a9c963bb3, 0xbc53afccb18c4753, 0xa0419e84105f3375, 0x5393762c6c5c3a8b, 0xea05a74cd3851410, 0x4181e701c93f4340, 0xd889b25a723fd960, 0x00000000000136 } } }, { { { 0xa5e8aedd767febcf, 0xd2fd9b0793b70d73, 0x2a11a750474e1987, 0xf0a3715b5867e1c5, 0x5406d02d7bd7a031, 0x8bb144715929ae4, 0xa1fe2f7ab4a45f8e, 0xad908e378d5697, 0x0000000000014a }, { 0xbc08778712ed78e4, 0xd9c6a6c3786c8ddf, 0xb917f58e574a53b0, 0xb2b027a07abe3c9e, 0x79f3769f55f22dfa, 0x547b2d8f7438a193, 0x7e83e3ce0d37092a, 0x6fd46e266f54e011, 0x00000000000079 }, { 0x6ba2b4d1b9c3f758, 0x1ddb42ed33ca0436, 0xf7efabf2795f9f59, 0xcf2a04cc08bc06ea, 0xe99958a24a6c063f, 0x897ef2e363dc207b, 0x9d2ddb414ed47cf7, 0xdeb56e5214343af, 0x000000000000bc } }, { { 0x1bbccd46eaae1f4f, 0x2f21ab82152798d2, 0xb1b074a2e07f0da5, 0xb6590d600bedbc35, 0xa8724eebf0373c94, 0xab67901eb7141b24, 0xfff76d359e4030bf, 0xe8b96e5b26faf0a5, 0x00000000000121 }, { 0xc178b70680fe7160, 0xce7126fb44ff5943, 0x826da35b288b5b53, 0xf3b3aa4ae086db2a, 0x78d227194082915f, 0xd3f1b09caf13df0e, 0xb1fd1c6fb888619f, 0x6fa596b8fe40db9, 0x00000000000184 }, { 0xa2b844b7bbc37a13, 0x78262d8f203bcc6, 0x11e10dc166b19803, 0x3de978dc06aaf796, 0xecf8083fe652d2ce, 0x5ef8f2d48ea9d69f, 0x9a6660d07f86105, 0xb5eb75caaed60fcc, 0x00000000000143 } }, { { 0x13071e4addad585a, 0xeb20048ab8df3bd1, 0xcc68da10cad17674, 0x471c1073ce29a733, 0x3a4d540e6ce332e0, 0x38826a40f1a2e02c, 0x90ae54d8bcc24597, 0x195129b4e203af06, 0x0000000000005e }, { 0x536e9becf034dd01, 0xbe6420c3e5e4dc33, 0x32e39e344f8f1482, 0x10fada8806b96554, 0x8a742c8204c59c18, 0x33d9bf2c5e655d81, 0x5420a63df06b61df, 0x1d12b2077ab161b, 0x000000000001c9 }, { 0x3f103db37940770a, 0x5cd8c5722ffbab34, 0x7bffefc45ce8ee2, 0x6c7897e70a28e6bd, 0x46ed95797bdca021, 0x3302cc77e36c6f74, 0xaaad2bb382b6335f, 0x7b867d11f37b8d78, 0x0000000000016d } }, { { 0x8883753b024580ff, 0xcb6fab2f9e488fe1, 0x2afce60969ac6ef3, 0x25e875f32d7be189, 0x76446abf46a2b4f6, 0x9e5e2cd99c8b5e14, 0x4c5e1cd5ad58a9c, 0x6e5577ddab9fb55e, 0x000000000001f2 }, { 0xc5a762f1a9e86e6d, 0xefbde7e4a471a8b8, 0x5093e182f4397687, 0xa6aac5446d7347a3, 0x8d45f7d7074340e4, 0x46a3e7c23155ecbc, 0xeb35ef6cdd646df8, 0xe3999b87dd10399b, 0x00000000000157 }, { 0x3081d6f056c7729c, 0x995d84fd672804fb, 0xc033f3a8b36b4697, 0xf9575cfddbe6c2bb, 0xb0c0b071af8231f6, 0x2a118c0829ca9e7f, 0xe2132c6ff5cd63e6, 0xe6007f06b7b771e6, 0x000000000001fe } }, { { 0x96db4188493b5246, 0x9d635139b39837ee, 0x705d49b71ffc2329, 0x8c3f2dae0284dedc, 0xfcaf3386ebdc885f, 0xa4922c84798187dd, 0x6dbc7cd07d39cd93, 0x205f22dd8ea3cf68, 0x0000000000001f }, { 0x15193a3299d194e5, 0x84be9180f120256d, 0x4cfa061318230b75, 0x259392861e6495a4, 0xd912ceb4503e532c, 0x6f850d1b4571775c, 0x49890a4016af6a5b, 0x2162e271b8364713, 0x0000000000009d }, { 0xd34c3741627e6dba, 0x7d8046fcecf59580, 0x7ce6636f6182d998, 0x9f9c6b3b9f7b2375, 0xc8067fe07b6a0d2d, 0xc5a7411e9b2f8a58, 0xeecd3c82ee20e84a, 0xc3364e1f24b3539, 0x00000000000080 } }, { { 0xb12928ed54d4a62e, 0xe6dde6c28a4e8b90, 0x935f942043e9838f, 0x24941b72a040367f, 0x2636e5857de2f3d1, 0xc1d88b63e53a35e2, 0x19a7db509c28a6c9, 0xa2575f5fc17e294e, 0x00000000000011 }, { 0x79323ac25818ab73, 0x26f8f87493d53daa, 0xe06bfaf85b9ad507, 0xd2554ae1b34b9347, 0xb74a0aed87b964e4, 0x46e43aff1016cd7b, 0xb44b0901afc08f02, 0xaccd424c52807267, 0x00000000000147 }, { 0xd6bb66882c42741e, 0xa1747ed206d14ef0, 0x154c5afb9f81be81, 0x5085de1cf310c6a8, 0x241106e235f1e155, 0xfd4de22e9ab27086, 0xe47165baa2222bbd, 0x123375a8052c754c, 0x00000000000011 } }, { { 0xf87046a4baa8ee33, 0x987ce114528a502e, 0x1400a02ee38a9a5c, 0xef14613a93054115, 0xf1faf871d00234e5, 0xe275df38e9cbbdef, 0x4fc074827b64ac61, 0x406c0568231fbe9b, 0x000000000001bf }, { 0x94202fbfdbb4ab9c, 0x72a2e698891aadff, 0x6fe2eccafb21982f, 0x224d166c3afe090b, 0xcae12c6315c30ea6, 0x9bd205071125e1de, 0x72d20cdd96ac0709, 0xfe5c64a6b2197de9, 0x00000000000018 }, { 0xc55f106cbe70919a, 0xa0addc6a8657b820, 0x676f16ec49639edc, 0x958730aef3cbc7c6, 0x703964e293cd95d5, 0xb585fa7ffcb6e87c, 0xde106af0298cfbbd, 0x77237dd33973627b, 0x00000000000097 } }, { { 0xa742cd35c39584dd, 0xacf0af87867c2623, 0x384e9b76b9d13f88, 0xcd6336871c60478c, 0x90cd19b246aa870d, 0xb328c69bfd9a89ca, 0x4f82c7f23f204730, 0xeef44842c48bd275, 0x0000000000003c }, { 0xa043623a2a918f9c, 0xc300d07dfa45896e, 0xb86dc9be930973a8, 0x7721ab11aaeb6454, 0x33e6f7180e8169ee, 0xbdc1f8c520be870e, 0x407f1e0375f3ffab, 0x7c367e92e07c1eb7, 0x00000000000088 }, { 0xfd5b1af7987948a2, 0x75579d62f2acad72, 0x93411a5fae01f96, 0xa08267c7ba4a88a9, 0x6bab322feea8b978, 0x7cb3d0568175e577, 0xd706c6654406ce9b, 0xc9488c07bdc046d4, 0x000000000000eb } }, { { 0x8c638feaacf225fb, 0x4269f3ca76c75780, 0x39096b5185970442, 0xced20092c68ff773, 0xa992126855fdd3b3, 0x1a8348da34dc98c8, 0x1648e29f7c60f23e, 0x888cfdcc2b3f2e8d, 0x00000000000108 }, { 0x79b1a987930f283b, 0xfd95d4a32f3fa9d3, 0xf8fc1100fe2d0a86, 0xd0d8cded6485a62b, 0x7f84d0b150c26037, 0xacbe4b4322ad2e80, 0x2336b610b496d0f0, 0x558ef95529e58516, 0x0000000000017c }, { 0x9f8f2d9a6f328022, 0xcc4552f17a0609d5, 0x2ba07273721ba641, 0xe6a19aecc86733c9, 0x84ec3b830f786c2f, 0xed79e49e39b34e90, 0xaaa0234c8b697e57, 0x4cac989cd685a3dc, 0x000000000001c5 } }, { { 0x6e3024c0ecfc0e64, 0x1f429162a1bae7f7, 0x12b8ffaeb5bb5d74, 0xa067476e1154b594, 0x6ca778665b61d8c2, 0xcffd512cb7dc56cb, 0x9de6e4d26a3503f0, 0xcfbf39247a696f8d, 0x000000000000ed }, { 0xee7145651448acb0, 0xd3666fc03551f900, 0xb9a3819c0b1fa11e, 0x505ddedf0967a280, 0xf6e3fed4b38d5381, 0x56064c940862f088, 0x4ec05954aba945a6, 0x80783ba64ca2116e, 0x0000000000003d }, { 0x364f4e7d839578a9, 0xc1e9b097d7986310, 0x93fd5fe05e43b57c, 0x4d9f5e7defe4d5f7, 0x27a260ebbbeed1e, 0x9567a1d0b909fad6, 0xceaaef6334aec4f6, 0xc9f950c15bbfde08, 0x00000000000168 } }, { { 0x76afdf67bb489548, 0xb84d355ca5d090c, 0x713c0ca3126735bf, 0x7bd7cf9aa9bf974d, 0x141a4050e84a820e, 0x89d7c5e6d0247779, 0x36e124d1926f3f22, 0x6634f75007428d3d, 0x0000000000006e }, { 0x6bae3a6afdfea5c5, 0xfbf4aea84cae0575, 0x3498b181b50f3a9a, 0x8e25fac32985f895, 0x93242cb6d03df12a, 0xc2318d3afb85e9d1, 0x22462569d79789d5, 0x3b4f6da6102bf00, 0x0000000000002e }, { 0x5d333c41282d8f71, 0x2a6d878c860b618, 0xa3ee4c4ffee42787, 0x88476513e7805b1d, 0xcacb6262e316dc30, 0x3139ebdaa4fcbcbf, 0x34df0f9d5e5657cb, 0xe32af5ae166a5eb8, 0x00000000000043 } }, { { 0x8602531b130adb23, 0xc8b61efc7d402f8b, 0x7db79648999c367f, 0x8bd64d5a97cd3dc4, 0xb22ec37b9044cca, 0xf3698b8e636ef9a6, 0xb1d6efcde95f1b54, 0x3fc425f0c147ec54, 0x000000000001d1 }, { 0x70f4701de8e4db0e, 0x164c8e5f10fe58fd, 0xb361c1a20edcc073, 0x368ed120226810dd, 0xefee43b1d24dbd15, 0xdc3e14babac5f766, 0xc39444571c2b2aa5, 0xd67a98dbcefb132e, 0x000000000001c7 }, { 0x376175b561202e4f, 0x85cc15178f7044fc, 0xefb75aa43f9c36aa, 0x8fd3a65e38f272c, 0x5701301368c3f53d, 0xce0b7ecd042bf246, 0xc213fce86b0533df, 0x93dccab6a00dbcdb, 0x000000000001c5 } }, { { 0x9fc0c8da0bd46b65, 0x2c220916b2df224b, 0xb5dfd39d6420a312, 0x19eb94001382a7e6, 0xeb893a2b6a66c5fc, 0xf90e56ec8fcc396c, 0xe0a0d986392f41c6, 0x107b6ce478624caf, 0x000000000000b2 }, { 0xa83965fafc7d9156, 0x423f728307799a95, 0xd3bb995f122b507b, 0xa531b4484d35f3b2, 0x812d791cebcc3190, 0xddb3658e47ab5688, 0xf9a5696d2409fb00, 0xbfd08ff4e049d9b0, 0x000000000001ea }, { 0xb27462437f2d4218, 0xf13adc4e04475015, 0x9396308329a1800f, 0x1a4476b36bea85da, 0x1e4faf16f4c8163f, 0x8f1d894ec621f8e9, 0xed6f10f954166b1c, 0x93452d6e6b4c5f7d, 0x0000000000017f } }, { { 0x75bea9df531868ca, 0xe71275c29d87bf45, 0xbd0321f8efc6f188, 0x7b4a05276b86325b, 0xb2f56fb97bcc0e10, 0x85fc9ffb72020fd2, 0x6a33059fc6cd349a, 0x5824a95e4f6da5d, 0x000000000001f4 }, { 0xbfede15417a68713, 0xc19687ddb74d0f21, 0x8db9d03b96f3c882, 0x34d723db3b319fac, 0x6af6ec2eb8d517be, 0x6f21044e8e7d0345, 0x6b49f9116aa25586, 0x64e49dacfdd0917c, 0x000000000000ac }, { 0x4ddaa56b8f7939aa, 0xbbdc2bf561f4a8ff, 0xed6cb046ce735aee, 0x5e43de7657b15982, 0x6c5b8c4ef476be9a, 0xd3d8acea5bfb15ee, 0xa48f743145dd08c5, 0x59b5f0c1a0bcd593, 0x00000000000126 } }, { { 0x1bccdd424fc73d9f, 0x96cbb4dc9be71c3f, 0x18d70b418303c1e9, 0x7500e41aaebf0f37, 0x1f52112dfa684549, 0x8680ef71d10b5799, 0x2df8eface6ceb280, 0x2dec1811630d1151, 0x000000000000d0 }, { 0x1da76d3f485e24f3, 0x5102624b4cdd7f32, 0x1ab609016398b12c, 0xf6106d215ae4aeee, 0x76db160e3211982d, 0xf913643f5ebf47f0, 0xaffc4fb729858187, 0x961575b5a741d9e5, 0x00000000000055 }, { 0x7771c402def2f1ac, 0x4c3f8026b3e616e0, 0x99ce6cf52d63bec, 0x5043d29b9c105c02, 0x55fd841a718b46fb, 0x9fd77c9524ce727d, 0x256bae60fa8a1fa5, 0x45088f4a47d1ec57, 0x000000000000f6 } } }, { { { 0xab8cf3ed3c348b00, 0xd6a7b9c972d8b42a, 0x9dbbef93cf44cbb4, 0x7c8df1dc9c550eda, 0x8d99cd18d5190ed6, 0x243307c3eaa0857a, 0x68d5cd98f48ae232, 0xa9f0e1c8bd531ec2, 0x000000000001a9 }, { 0xb516e41d893392c4, 0x7368f05a56151fbd, 0xce651ea106dc13a0, 0x4704e56d407ece7e, 0xc00c7ab628757591, 0x83293677e2c4e3ff, 0x2d9a2b0839bd8661, 0x802a5ecb8fbeddcb, 0x00000000000160 }, { 0xb690c72bafd3d741, 0xb5132f8cc66f7a8, 0x6f8270501ac4632e, 0x4f3163aa7884e979, 0xc78723c9c0c66c03, 0xf25b4f7abd471e0c, 0x930369ff0dbd5497, 0x33b3d8a759e5c0e, 0x0000000000016f } }, { { 0xbd1cced442235fb2, 0x5e576ea8f692f67c, 0x758271e14c057f43, 0x65ce40a64560a3ca, 0xadd7e0cf6ad632d, 0x3ed1b4b43e425635, 0x816a0bdae4bfd2a7, 0x80ffb670fe73e934, 0x00000000000147 }, { 0xf7ad23fdd613c955, 0xf190a81c09e8289b, 0xa805ed2919f34bda, 0x4a29d4f033bea5eb, 0x6ba8a0b411db252, 0xe956d37e3fd598ab, 0x5ab3ae71f38ad926, 0x5b17e4c04f77aa11, 0x000000000000fa }, { 0x2e2af6a7f24ced81, 0xf9dbc4685e32b86e, 0x87f3e6af84f19c4b, 0x679a90b20ec9c279, 0x87318dbe998bf084, 0xbb3258b23b7439b8, 0x213cb3fedd656369, 0x1c1ba40eaa7a9b5a, 0x00000000000034 } }, { { 0xe79f55d515dcbd11, 0x288bf15b27aa10b4, 0x49841ee4803e43d0, 0xdff6ec0880267eda, 0x7074053fa6cdef9f, 0x4ec92eff536052dc, 0x2409258ed98c504f, 0x414efcd2e047c2e0, 0x000000000000e4 }, { 0x14b783493d84cf38, 0x9f7bf5ad50abab3b, 0x2495005868946179, 0x26fd985882f13539, 0x86a7a74bea7cf20f, 0x5002ee915586487f, 0xb2a98b927a688c1b, 0x102813eff4d39d45, 0x00000000000017 }, { 0xfb2053c1981bdbde, 0xb762c5a660c87fb4, 0x48a4fdfd6d0197fd, 0x7bf6430fbf1c9dd4, 0x6ddeae373d4d21d5, 0x2fc1fb00b2dc7ed8, 0x693957a444d94424, 0x79eee3e3f7394ecd, 0x0000000000009b } }, { { 0xbbbc77d748386ded, 0xd8d18125f3c50f21, 0x6677125f8d950223, 0x1f48117983ffe9ea, 0x9ff93562c84135ed, 0xe2851e14b3793c2c, 0xdb11321773df7ce0, 0xeaaadc541843292, 0x00000000000030 }, { 0xaa9442c6670e0d65, 0x8682d759b499be37, 0x919fb59286ec093a, 0xdf9616e855197c0b, 0x679011c7dd28e7a9, 0xc0f262b98f166772, 0xdb3b2d934d59c2ce, 0x7704d4263abf01f, 0x00000000000036 }, { 0x3d76890c270f24a, 0xe3c72805f422cb9e, 0x16779e436704a718, 0x8066f33a1b5a049e, 0x13d219d3ee354261, 0x211a9a8cb1739d73, 0x5dfcf9dd9cde9a1e, 0x9d43e5f0ff4f723d, 0x00000000000094 } }, { { 0x67dfe271f43b35cd, 0xea2657587611ee51, 0x3f4cd82b6f2af6a6, 0x3d9b0e90130292f, 0x31ae3fcd66edd0d9, 0x470e78b0bdfa53c, 0x762c5973f7042f18, 0x39176c4b8566eb65, 0x00000000000044 }, { 0x276b71ff8dac3822, 0x452b1158cec8b221, 0x6e51756fcd557ee0, 0x6a15e885ae21c037, 0xa0f7b8613dbbfbbc, 0x8bcd57fc8c2c798a, 0xbb98a6d533c4181b, 0x53d270a17b516177, 0x000000000001c5 }, { 0xc5cdd31de47385d8, 0xaf9d40744c95c4e8, 0x9598dfd9437d1c24, 0x49fbfc66d5a5535d, 0x1f173ca19466875e, 0xbebe491dcb3ca10b, 0x581174bc7ad77dae, 0x200039f82360d943, 0x00000000000182 } }, { { 0x72759c0e9baee7c5, 0xce11c73b368022d3, 0x7fa8f534e01c9c28, 0xe54f3a4ae894464, 0xfa548eccb277fb74, 0xaf84c27d2daf7238, 0x1ef9fa53b374619d, 0x31dbe468d3491b28, 0x00000000000031 }, { 0x49c47966f7605605, 0xd51dd680a26eeb7c, 0x79489a6acc4dc578, 0xda818f1ee9248916, 0x7af69abec2cd85f3, 0x75f224963823256, 0xcabf7be880a48745, 0x44da635f239a2993, 0x0000000000013c }, { 0xa15f24d0152ae427, 0x7b0f7b64ff187dfb, 0xcb05d8b68d2fee77, 0xe700967c7b24319a, 0x24ba970fabd275e6, 0xf920cbfb4d08c536, 0xfef316472533882f, 0x16eede14eeded817, 0x00000000000011 } }, { { 0x8da3a405f3b2b14e, 0xa28a2f96305f4fa2, 0x22bcd94febb8b956, 0xb2471b16bff246cc, 0x92d7232fca537e3e, 0xe6e32b5478456c4f, 0xa1b3c9b626d5d0b5, 0xd4375264348b7d20, 0x000000000001bf }, { 0x2a396d2b9791e659, 0x36ebf09486461b6d, 0x82547fca3751a2d0, 0xe90c06d90cd1bb15, 0x512a98f1c4a94761, 0xb4d4c9f76b3ceb84, 0xb8f114485bd7b5f, 0xdce1dc2ab99dca08, 0x00000000000189 }, { 0x491c89529c351160, 0xd7c992dba46f5b4, 0x8ae3d5e567806baa, 0xa0c7920364899056, 0x2910c1f03a1d5de3, 0xef2b1562445d14a2, 0xa3416e3f307d443e, 0x988ca9923406c2a2, 0x000000000000e0 } }, { { 0x82f99d7ce7f30246, 0xf25b40f9edef6ea0, 0x9724f3e6493a52bf, 0xb4c8ade3ecdda7b3, 0x5e8e0819ae2043a0, 0xee0de8cc58b342b8, 0xf5784d56b3ebcaae, 0xd2d3b1413372963f, 0x00000000000142 }, { 0x72b0098a7867a0a2, 0x842ad4dee594831e, 0x59a88463ad844526, 0xdd9ad4db089fee8c, 0x2fa55e3ad51091e3, 0xf210d30594fe5daf, 0x99e30758fb38485, 0x1f9eb78ed8786367, 0x00000000000033 }, { 0xe09017dbd8ccd648, 0x9292b81cb00951b7, 0xbfd7bba6ae324ec3, 0x613a2429aa49a523, 0x851b2fa4095ebbe8, 0x4bd3cd017cb6e172, 0x74ffa6c9c8da7fa1, 0x7ae9758c6d1d1d39, 0x000000000001be } }, { { 0xa9ace56bf0c94ef, 0x4bc8720293ee8987, 0xe8b4541eec33d93d, 0x56e5239b2271c5b, 0x4f5033bbda54ac11, 0xb1ab21ff285cdd9, 0xc9802f64dd5fe045, 0xaa097c2da6456e42, 0x000000000000f0 }, { 0xafbfb4a91d9d7429, 0xc22d07daf35fee04, 0x9eb72241b7ea9472, 0x9b2af17a02a96d40, 0xec4f29c9dfb6d843, 0x30b6a26ee3bd7957, 0xd54256db867aa38, 0x9338fd7839b6cb22, 0x000000000001bf }, { 0x1492a773a40193be, 0xeb48c656169ecbd7, 0x839ea888509f75c0, 0xff3f351a442e5594, 0x28bfc3ec2245a85c, 0xb215588237b3a39b, 0x9e5ef673cb6efaf3, 0x93ef5b6bb96cb1e8, 0x000000000001f9 } }, { { 0x406774ffb6a550fd, 0x16be773ce6a5fa6e, 0xe6d5482387c55b3c, 0x71706b1b16d1c220, 0x372f64a29c117ca6, 0x75ec92ba673f2c73, 0x20f4c4cf5018c26, 0x6999aaf233d7ea9c, 0x000000000001fe }, { 0x532024a1ee7b2cb, 0xd3f051996057db5a, 0x413d319e535cf047, 0x3197ba459ae655a7, 0x6ee1609ed9699175, 0x6914bd5aecba981c, 0x43bea54b343cc0ba, 0xf95e4e321ff0031a, 0000000000000000 }, { 0xe85b0a3cb92b50a1, 0x4872ab0902fc3555, 0x7b009cb62153f7b1, 0xf78ca1da5e28ad98, 0xd64cc7870aff3e7d, 0x26f5fb2488a6bb03, 0xaf24b0f44b72cee5, 0xcea99e9ec25df6a0, 0x000000000001aa } }, { { 0xebe4a0aec55f0420, 0x7fa15457fae05e6b, 0xfd60ae8508943168, 0x45acd0893d0dbb87, 0x30032d8ef679ce2a, 0xbc2a8ea2a9edbcee, 0x779a24108bcec4cd, 0x9f45a713394b6bf3, 0x00000000000075 }, { 0xe827c5f21b7e206f, 0x8628cef8a35e5ecf, 0x7d7642743fa67d55, 0x83ccc3a96be21a14, 0xfe3b74de3350fabf, 0x98cddc8be7e6f77e, 0x980148f4c4526951, 0x11d6d0f3f50c7fcb, 0x000000000001b2 }, { 0x68cd47f2e74f8071, 0x5a049d62e8b3cf93, 0x96f10957ac82fceb, 0xb152e96ae15a8e3, 0xfff87af0d5f9685c, 0xd14108fd2103a28e, 0x5d9cffc6e840764a, 0x161e2420fed16925, 0x0000000000011e } }, { { 0xa3fb48b2f9bbbce8, 0x7b43b10883c05f59, 0x956153f3df9b6cdb, 0x730d015de6168ab1, 0x568d507f88180273, 0x450c2226a84e96f5, 0xd2682533314f9c39, 0xfdfb914fcd5e6a93, 0x0000000000006e }, { 0x61143db9b48881aa, 0x858102970c0953c6, 0x824e7e2363f555af, 0x16fdfe3ec5aacdad, 0x23aad465ce430e83, 0x499ecf80b3bac577, 0x80bc77e90f9164c2, 0xff21ff30f061074c, 0x000000000000d1 }, { 0x311bde11a218f4f8, 0x24ebcf4a498b7517, 0x88dd0e80235ca785, 0xf3259c877a3f48d5, 0x451b9a7f299f4b29, 0x9ca0048d16a584f9, 0x722aec42ecdf2cd, 0xe0b2cbc405d7b6bf, 0x00000000000015 } }, { { 0xaa08e5ee3f6889c, 0x43c3f308b0885d0c, 0xed796663389ef8c1, 0x90e25115ae8a0915, 0x123d5af9f3a86ed6, 0xd2f28da090532476, 0xeb1b739bea74efdb, 0xaaea63173bfab043, 0x000000000001f4 }, { 0x1b847a97530afa8f, 0x54dc7fa1291503e8, 0x6e17fb4f92fb6827, 0x473af362334279d3, 0xee2ae246198de99e, 0xb77cf67da8290878, 0x9f593263e9440dca, 0x2577d0ef609244b7, 0x000000000001d0 }, { 0xe8637ccf27c7ba18, 0xc9630f04d2e29849, 0x9dba2ce97837a79f, 0x59a71fe49b2301ec, 0x39fd01392bdba6b9, 0x2f84a1448014cdcf, 0x3cce2a2a3e978ec9, 0x495274e75454aa30, 0x00000000000142 } }, { { 0x1946cf7e0b1f8c4, 0xf7fd061564cd8e83, 0x2787f7afc6f76b37, 0x1eeeb11f4e0e3bd0, 0x9c4964a201ba864, 0xc899351a856ed71c, 0xb45eaf9eb87487c3, 0xa6f799cd6cddf5cd, 0x000000000001af }, { 0x5fcf27fc457b125, 0x7001715cd181c315, 0xda9de86eee51ee99, 0xecad84e94642be27, 0x3c3e5c5151c0ab3e, 0x115f8c7a4816776c, 0xcce57a7c4f382270, 0xce9448e897efb7c5, 0x000000000001cc }, { 0x8c576a35016a4d0a, 0xeb3613c71b89e04b, 0xf172a3ee2685eb49, 0x563d44619c421083, 0x570fd096a7612f9, 0xa46b5fb521927cbb, 0x12e4948e497a0e3, 0x400a1bc964f0bdae, 0x00000000000089 } }, { { 0x8be7ddcf58be31b7, 0x7a1ad8bf9f74929b, 0x1721e60e291be453, 0xeaa4964d438e6d9, 0x403c004757450c1, 0xbe6026b0520c3acd, 0xa1e8a890fca95886, 0x2386e2bfec674753, 0x00000000000170 }, { 0x225c734fbfde0516, 0xd42ca4890dfbe73e, 0x4499b985f7ecd7a3, 0x727935ff526f92b0, 0xfd42ea95564288fb, 0xfd97c921dccd31f1, 0xefd24dbe7cc991d8, 0x9025e00bbee69c93, 0x00000000000135 }, { 0x467c5522697de1e4, 0xef34313ad534e844, 0x70f5a0c05fe84f32, 0x1c7cf618910fd95, 0xfc5b5b90e9dd20ac, 0x1f637e2183f4a28f, 0xec3d2b331a8152a3, 0x6a74c64696fb565a, 0x000000000001ba } } }, { { { 0xd1858014d0c56fb, 0x3943f5428bc25692, 0x85c4d6a645cf207a, 0xf0afb872fdb027fe, 0x295992022b759880, 0x66fee4057462fa2f, 0xd09593e9060b2b31, 0xf92784dfc0b7671d, 0x000000000000a4 }, { 0x7f47b7fb872eaed7, 0xbedb16a907d51089, 0x8cab241a7f44c0d1, 0xfaf68e1375ff9862, 0x169ddca632b0b2a7, 0xb370af4852394e3e, 0xbb50ba84da9be225, 0x2a63d2c88706d8c6, 0x00000000000199 }, { 0xf01d4900503b0f88, 0x25a7d5bff8cb7796, 0x6de804200397bf32, 0x3e8a69c976df8930, 0x887e80a75b5260c6, 0xd7fc4891578cfbf7, 0xa0f5c598ed267dc, 0xa25421561f3f76d1, 0x00000000000097 } }, { { 0x17c69286c0a3a167, 0xe3bcb0e80db37e9f, 0x28b35a47cefe4b41, 0x39d3fc3405887e02, 0xd594a30ad1fb835a, 0x344209ec3ecbff1, 0x177a2f0aa1c684ba, 0xa0da918cf15567ec, 0x000000000001b6 }, { 0x221012751c077624, 0xac61ae46f6a28239, 0x1f2564850fb2fa69, 0x8cd4dd70448f7b94, 0x3ed58f6b7440f373, 0x8d3f4c69460b7580, 0x3e9404b547c487f6, 0x62d9a15cfa4cb01c, 0x00000000000030 }, { 0xfda631287b0f23ef, 0xfe0e66450b5c2c58, 0x46d3b3ee2845e321, 0x8410b309ab7a98c3, 0x6b5d6457b237e4d0, 0x45930ab583b13451, 0x1fd55ce783709260, 0xc56544e3351d05b3, 0x000000000000bc } }, { { 0x8fd6206e6bb107f5, 0x5d65b62ed15ae9bb, 0x83cb66f678553037, 0xd3d2b83f23bdc184, 0xc910867df7bbd7e7, 0x3071113dba5ca652, 0x44a1b292d2d1d5c2, 0xe6abe10a9a7a225a, 0x000000000001c8 }, { 0x404e1cad2baf2cf3, 0x6011d157b54c616b, 0x846ca58dcb820798, 0x30affe7a9e31bdaa, 0xa3e7474ff3b5614f, 0x173b76b93d6eac83, 0x54f0bfc498df952c, 0xb1a4017e3064f2cf, 0x000000000001ea }, { 0x1e203723202f6cec, 0x39613147544cebbe, 0x56adcdc853f925aa, 0x9a2f4d4acbdd5f4d, 0x85ae4a156d70e64a, 0xaf890530b6cf3960, 0x1b8e5201343232f1, 0x6ca8d0cefbf53f00, 0x000000000000cd } }, { { 0x7d8a772f1ec6dcd3, 0x25adf6a4168ab565, 0x958061cdfd3ad13e, 0xfceceb1ad1446573, 0xc04ce98192b043ef, 0xd2a99145c4f06024, 0x4e8337788e10ee36, 0x891c08ae17808cdb, 0x00000000000083 }, { 0x3c87aa5e46851c5f, 0xe98361375e0a8c46, 0x7fa9115b9e5b1bc4, 0x19a84993f338bfd, 0xef08eca391858826, 0x2abc33c80b415438, 0xe5d466f97cf2de28, 0x84bb1525757bc00, 0x00000000000061 }, { 0x278cf65d80f3f13c, 0x91662d9554fab1b9, 0xc481f2942a5ab81a, 0x3c3ff386f4a3371, 0xf27a50c8c41fd46, 0x30b4edf4d029258c, 0xbf3b42e01a5c2b85, 0x8eff493fafedca13, 0x00000000000025 } }, { { 0x358845f843922e89, 0x133481ead099d12a, 0x69152a45418835f2, 0xa000167be5ff7532, 0x5684bc0028059550, 0xd277ede32f6ca367, 0x2dae5ea84250bfa2, 0x1dd17bd52551e658, 0x000000000000e4 }, { 0x8888dd709558defd, 0xe00858aee5594c11, 0x419e82482013277b, 0xc6a853a568ae7571, 0x12a1c8bc7e6c760f, 0xb4d36e2bc4e95747, 0x4ec572db8d46d4a1, 0x7494d23bae7ca6e8, 0x000000000001e2 }, { 0x3e9915b67ea73038, 0x5c4bfc325dc6ce5d, 0x2fd6c9aba268b397, 0x7ebacf5b48a5da60, 0x62ff324ccb7dcf01, 0x168d00c05635f557, 0x58e211fbfd3cb015, 0x3c77622aef281261, 0x00000000000110 } }, { { 0x5dcccce4f86d4275, 0x55638b934556fd8f, 0xdd4df2f6a743fbac, 0xdecaa1aabbb5300b, 0x1f4c80c56923fde6, 0x41b51edad7108ae7, 0x99c4bfa6c6cac13c, 0xa5f994e20a1a1956, 0x00000000000165 }, { 0x87ed818dbe9b0a6e, 0x765497a5cf752920, 0x550ca14cfeb77c88, 0x8f966aa506ec30e8, 0xae08bede76e4d8f, 0xe25fc960cf9c35d9, 0x5372be445032e698, 0xb0c78fd954f79a27, 0x000000000000d5 }, { 0x48656e41607508d2, 0x4fabadd0cdfc9485, 0x7d395183fb3e4a8f, 0x37ff7028f295bf2b, 0x10715c33c0370457, 0x5d07dee8928f026c, 0x6ff0682004b81533, 0xd4f819d405584c52, 0x00000000000049 } }, { { 0x92354e1bb216b164, 0x2bb5543ea865737d, 0x2cbe466e264a2ec2, 0xb2c32f37b5a6a76a, 0x1e7d59dddee5f539, 0xa0d42fd4d111dffb, 0x9c9d8e6387f1880d, 0xb6b10bdd453ae1b8, 0x0000000000015d }, { 0xe90e16b3ce0b412c, 0x4ba0c2140517ab41, 0x993eb562bb590270, 0x5e65f3284702aa0a, 0x808836c6410d82aa, 0xe6cfa7595a39aaf0, 0xc84e9afe4de7472c, 0x9fa1dd393bc2b863, 0x00000000000146 }, { 0xf941a54af16e4862, 0xf9518edfca71926c, 0x712e5fe203eda12b, 0x7f63878020aa3634, 0xd6187cc5ede3ab1d, 0xef649177f5a8af32, 0x6261d14f46c6f677, 0x6c6e665568500a52, 0x00000000000147 } }, { { 0x87c443947468f838, 0xd0a95471ccb6df0a, 0x86a6cd76843b0e34, 0xcc8f10560aa24d4c, 0x5336df9493bafcb7, 0x6e03a851e11b0225, 0xc6d02cf0a5db839f, 0x8c6cdd49affd9d03, 0x0000000000011c }, { 0xa187cb88a32194b6, 0xbf12d1d77750be53, 0xa5c8170e2c429c01, 0xb311da6ca2f8ebc2, 0x79d0fe194a708c31, 0xb23acf5d998f714d, 0xa715007a757d15a0, 0xcac3b2d232563fe5, 0x000000000001e6 }, { 0x56b8416403b1ff57, 0xe44505f9dabdb034, 0x650b4c168dd38b9, 0xefb75866044f0e94, 0xef7855f08e0466d6, 0x636143bb9896e56d, 0x22980e91618fbed9, 0xcdff5063687a7745, 0x00000000000197 } }, { { 0x7892bc404f1bbd13, 0x6c27a125848bf542, 0xae161582574fd061, 0x68c6ae407be40dc3, 0x246112bcbaf8038, 0x8e0355c8e2351bf, 0xa07f1a520af43816, 0x844e94fcce5ffe0b, 0x00000000000083 }, { 0xb58d73d4e62e4da7, 0xfdc496e4e99ee5bc, 0x9a4279c2ce22af1, 0xe5735da890b27d2b, 0x41ab714de692f209, 0x56c94b4bcb16f1a8, 0x9c0d0201689999be, 0x7dfeb1f6ec2b566d, 0x000000000001dc }, { 0x4277e9815c60d5a7, 0x3ec75fb92ed32393, 0x63d6038a72d6e861, 0xb74b325db86f296b, 0x5cbed4add6aa1b52, 0x2c418e2d18e258aa, 0xef76e6438ca38f57, 0x41a7b068d817ec68, 0x000000000000a9 } }, { { 0x9d9997568946f5f8, 0x5c5598f7e6092c09, 0x928a7e67e348802b, 0x527f4d0226b69d5f, 0x5ca1501d074786f5, 0xff61a442b3818ca7, 0x355e1873ed403417, 0xf67ccbc7253e5eb4, 0x00000000000032 }, { 0x356f6046e7286563, 0x949889a89df80427, 0x1a6a21aba7dc3afa, 0x9f9e3ac409cdbc32, 0x5fa3442815abbf7b, 0xe22210ccb7183a02, 0x5c7f569937d08d3e, 0x1ca56f93ccfa0d0, 0x0000000000014d }, { 0x6ce4a6a9106c183a, 0x7e5f7e1287b27ede, 0x2617e8cebff6121d, 0xf0a7b527bb3cdb10, 0x3df33be1414e8015, 0xaa9c0540b6af652, 0xa043d594541a5fb7, 0x64de75cdaacca4c7, 0x0000000000000e } }, { { 0x23127b55d98d4dcd, 0x9759d84d786ca528, 0x57a11f46152b3a22, 0x4bc5c42fd3da0c4c, 0x4fe5c410bbbc90cd, 0x3c9838ad004c160a, 0xcc02f61a15bfe1bf, 0x1f3546a8830e168, 0x00000000000078 }, { 0xba7b40cf12b6f571, 0x785c5917a5a2c277, 0xaa6b24d68987a2f3, 0xfcfcc196f918d2ef, 0x86b291a3c7e0d585, 0x5b0e727fa2e4c663, 0xac76ac5ccd1643a9, 0x744653449c834a38, 0x0000000000011a }, { 0xf79da8a4590654bd, 0xdebc7070770ddeb, 0x77a26bda4fa9adbc, 0x66f19f23fe7c9e5c, 0x95dae86a44f75c66, 0x3ba211002bf8d8c5, 0xcd79731ff6f9f0b1, 0x940f143ca084690a, 0x00000000000184 } }, { { 0x323d814c4c635b0d, 0x6956816c7b50db3a, 0x44af19538380530c, 0x71a585e9dcfb0212, 0xd75de879230e4c79, 0xd8788d48cb57aabc, 0x1d36a3b919a8b3b0, 0x6cbf9604f7a9e734, 0x00000000000178 }, { 0x66ce5f0e5d112a5d, 0xb5dba521bc352a1c, 0xa138737cbb891484, 0x4665dd8221d41acb, 0x607bfb719d856abe, 0xdf90aa6fdf60905, 0x195ded88a84cb31e, 0x11262b25cb3e0ca8, 0x00000000000023 }, { 0xe94e3b5c8d270a74, 0x2be625b3c43c4c0f, 0x347565a8657991da, 0x8d9bdf7f56f1e773, 0x127ef8e141b8e083, 0xe24e757e91295a51, 0x4021cc83fe004871, 0x5c58720e1c2875d0, 0x000000000001b1 } }, { { 0xa8f4c7bed132a6e1, 0xea3c043fb595700, 0x287570a84d0fa3d0, 0x1177b2316f61d997, 0x17bcb68ee538f803, 0x6326c45bbd8d0732, 0x6f46f574c7ef68f9, 0x8642377855000317, 0x00000000000094 }, { 0xe4a271df10ca5f70, 0x383ff74e15cdb56d, 0xdc1bcfe352b6d950, 0x274766c1d0e0dbee, 0x50210e90ca97b197, 0xfc7b756732fd7c91, 0xa92052aaf1111464, 0x9c33d9f6f8f20e4b, 0x0000000000000b }, { 0x66a7ebd4f97e8b72, 0xc10fa87aaf1f3e28, 0xadc198457811192a, 0x230d7393cdeea363, 0x294df584c2f03744, 0x9c3414e6bf24164b, 0xe26537aad00c2dab, 0x59b8f3d4f065f11b, 0x000000000001ee } }, { { 0x166b62978f5d9e31, 0xc3212d260f1c18a7, 0xd9bcb0ef03a4225d, 0xd1972d44f8fe02f2, 0x5c28a945175546b4, 0xc8dfa8ca88afd52d, 0x551ff6c960ac12b8, 0x81d722a56388df6a, 0x00000000000134 }, { 0xbd09e91880e6fe68, 0x62b6ab3e0d726255, 0xddd5273a572ab130, 0xcd7f16af8070a289, 0xbee32ac4c9756d37, 0xbb5e8207370ad25f, 0xbd848312c7c1cfaf, 0x6cf450deb5c902e7, 0x00000000000043 }, { 0xb6006463313fb331, 0x10f57aa7d58579e3, 0x9932fa3d1d7eb69, 0x7f5f2381bea178b3, 0xc95c62dbc5117bd9, 0xba5f0c09c85bd9a2, 0xf7bc5ae82d04d60, 0x197f8d7ff78f8ef2, 0x00000000000150 } }, { { 0x26448b03ccdab073, 0x4181c78977ff2b02, 0xa23d5b682b98e612, 0x87a271384a38bf03, 0x4962463fb69a1848, 0xb95c11a36ad2f5e9, 0xaa9320a032f870b3, 0x3563e2820b484417, 0x000000000000e9 }, { 0xe1b610567a1f0c6d, 0x21569ada28a94c29, 0xa1b0fff0667e3158, 0xe36ca8a6defe3f3f, 0x48b21aab079ef6e9, 0x767b03950ec191b8, 0x196b5a5b9854431d, 0xd72b9f22df117f8e, 0x000000000000c4 }, { 0xedf68dd96f9b63a, 0x6ca868a118fa3e5d, 0xb815b3ef450cf680, 0x39bba44ff7519ba7, 0x45553ba5bca6e91e, 0x348ae166e09914ad, 0xa3853b7f3b1bb410, 0x5cd755089f88cf76, 0x0000000000012c } } }, { { { 0xd423414a3bf17e23, 0xabebbafbd98de611, 0x954706a766f1ca6e, 0x756b8e9a54803183, 0x712a98083e9c2ef0, 0x9a9d04b31e0c1ebd, 0x7f301c53809b997b, 0x2264fc2f0db17923, 0x00000000000121 }, { 0x104148e0051be0a8, 0x9806a285cef9b7ae, 0xcda3d71a176e0f5, 0x222470ab8b6bf503, 0x47ef23cbae075519, 0x6a11f7c908a5735c, 0xbbeef4037a59deaa, 0x1578421b2c84aa27, 0x00000000000157 }, { 0x6a1a0b7227836687, 0xa0ff9acf32b8bd9f, 0x3215bad1461537f9, 0x88df0e92d85f4d2b, 0xbe9e9eec006ffb1d, 0xf449cf8ae2bf0f10, 0xaecbfa312c5b9027, 0x36dfd1605c76efc3, 0x00000000000174 } }, { { 0xeb83f83502a43585, 0xd6c693469f1b9f59, 0xbbef8af3718977ad, 0xa2db6c531cd76876, 0xbc6c218b85a55081, 0x45128a0892c2d0c1, 0x4e398ebefda6648c, 0x5b05b19ccd3095ef, 0x0000000000002d }, { 0x16cb1e59918de139, 0xeb03d335053f3aa0, 0x9d1c15ed4d006ac1, 0x9b5bb537a9f18459, 0x138c75d334ecd646, 0x61c79a5b3d7b799c, 0x4633888e3899709c, 0xc394da248ee261dd, 0x0000000000002d }, { 0x757d87857a5f7829, 0x20da88e4e66b47eb, 0xf31bd92b36beaf35, 0xc883df5a3a22bbd1, 0x10b353a9d703ed95, 0x523b1d68207b8de5, 0xe713c492d35b7427, 0x37cb819056d56149, 0x0000000000018f } }, { { 0x49cfa92b16b9fc54, 0xf07d3c4818c5fb16, 0x695780cddf2d6fe5, 0x3dfbcfdc07fb90e3, 0x4f0d04103dc02b70, 0x8153925753c72533, 0xefbfb9af4b8e725b, 0x68fe47b610a910b7, 0x0000000000003e }, { 0x9c886e83bba91fe8, 0x1a3f0f1a867fc6f1, 0x8074fbd7274d23af, 0x8379c0006646de01, 0xd15bd4f034981dfe, 0xc149e091811dd82f, 0xc6d3fc86d5035420, 0x2a54c8e7b221f2f8, 0x000000000000bd }, { 0xa14a309b5a4a6090, 0x89c2b7b61c5c0db6, 0x126b1c9365e7ad6a, 0xb20782d85cca2de3, 0x442c9aa6b09af95, 0x7f98136ba4c22f46, 0x1b749a2a064979ca, 0x90b607e69d849bd9, 0x00000000000149 } }, { { 0x45994cec5328a4e1, 0xae2d7a92eac259ac, 0xbb9116fa05f13e07, 0x54ac82b64965f267, 0xb56ad74bd53798ff, 0x8d2a1e5cbedb1447, 0x340d7ebb69048b41, 0xfe814a32ca5e614d, 0x00000000000182 }, { 0xcd800d2c3314fcff, 0xa254335e2e956421, 0x4f9ecf4dac4aa424, 0x19e8bba03e7981ac, 0x288039c09b3f7d76, 0xae316a2950aee925, 0xe5a4457aefbe11c0, 0x5fcad27c98cb3316, 0x000000000000f6 }, { 0xe0ec069039023b22, 0xf7181650158d6960, 0x7bb745c07d8d515a, 0xa5c7b1af947328bd, 0x720bf9fc6db1aae9, 0x5254919c25f9a983, 0x8de1b9f609d4dc82, 0x501bda61818ca978, 0x000000000000f7 } }, { { 0xbac86924ef1430e7, 0x98a27331dce0b3ed, 0x647eb3804ef59fda, 0xb6d3c66e35c1710f, 0x97c48f3a5e5825ea, 0xb105dd771c2e96bd, 0x489ae0c01ba3ac7e, 0x222f8abd8142231, 0x00000000000177 }, { 0x86b36faee291f393, 0xe9dcb476cd197104, 0x7e704df910cec293, 0xae3aaf2f30c0f378, 0x8bbc1418b0fd8e6d, 0x24fadca75ce7fd22, 0x3cb7e98f65da31f4, 0xaed9c837f35bad6a, 0x0000000000014a }, { 0x58ecbbc28ea65902, 0xfad345430ebb0f05, 0xeb0c5fe6f317b22a, 0x24ad13e2f5c4d531, 0x41c8f3504da33789, 0x5992bcd205de8cbb, 0x81086aee26c8a7a5, 0x603adeee057ace42, 0x00000000000185 } }, { { 0x94be2abd9b514c0f, 0x4eaf0ff2a9b84529, 0xa21c5fbad92a16bc, 0x5de24940610c7812, 0x181241d4b26cc2aa, 0x3ca4a8006605849, 0xffe04527585e919b, 0x4b7b8fef2e56db44, 0x00000000000144 }, { 0xb75697d797bb0c73, 0x7b4e49f59bca5550, 0x2e0ace63fd683809, 0xb3523755480773a5, 0xf17d20caea0b875, 0xdfb124e888656186, 0x992d44905ff707ed, 0xa0589dc7acad52b, 0x000000000000d5 }, { 0x1d62f00a6d85c26d, 0x3d5ae5f9b007541d, 0x8a73ace7f86a833c, 0xcc4ea0843f7dcd88, 0x6ef7e900d707f25f, 0x8af04a053986c80, 0x4418649b4e9e1caf, 0x172f7709eab2b5a2, 0x00000000000170 } }, { { 0xc8d6a3662f937ea, 0x7ef0b9af6b7bec56, 0xa67280089f1e69e8, 0x2523c59212523f5d, 0x943f7f31caf12b79, 0x727eba153444b13b, 0x8d64e2d1a81f9c9c, 0x836e352d8a45ba1d, 0x000000000001c1 }, { 0x70b5b17cef146614, 0x85550e64cb3af845, 0x62002a0983e4df32, 0xea939ef19133bff0, 0x9836dd3de803119e, 0x3435ea9f02cac727, 0x463f969e6a51eba3, 0x8bcc3d4958b19043, 0x00000000000098 }, { 0x4432bf985d0dac21, 0xe7e6eca73b17469c, 0xde64b4bde2363607, 0x7f2ffc7ceae78d68, 0xfd12330836aa92d6, 0x7cf9c6ad9c347575, 0xf083c147ebbe115e, 0x672ca62ed5806676, 0x000000000001ad } }, { { 0xfb7748a1c4188de0, 0x583f1c6e2b0cfa39, 0xb44e2add3dff5295, 0xe3eab19ab1bcbd2b, 0x1524bf4b2bd0c93d, 0x50d2b6668af2f919, 0x6b0f8a48c42097da, 0xfda185f903afe0c3, 0x00000000000147 }, { 0x60655082fe2685ea, 0x9d3dfd2818deb943, 0xc1f9adc68e535a02, 0x3c9e65a507464bae, 0x52b46f665f531c57, 0x4519a1a5113f470, 0x4e374e31db52b1df, 0xe79aaaee554e8b2a, 0x00000000000022 }, { 0xe212c93bad3bbbf4, 0x24294e8332d83a7, 0xb92905746958d4dc, 0x42c9329b9580c170, 0xdcc56c054dfee136, 0x38b3b3d7770572d3, 0xa72f79c886b829aa, 0xeae51810ac4442dc, 0x0000000000005c } }, { { 0xc568ee27cd175767, 0x718610d52976d6e1, 0x5a2f58df83a6c4a1, 0x59639bc5dff0491f, 0xcb650d110fe9605, 0xea2d443b9b97a859, 0xb8b7e96c809b3a3a, 0x5973ca93b5bfb6ce, 0x000000000000ff }, { 0xab89d0f7c849c0c7, 0x95b53d396f93292, 0x403dbd7905f0138c, 0xb687442e5394251b, 0x178797a65ca912e3, 0xb107436f3e35ef4, 0x491c5ee58cdb9eab, 0x99fad1cd70051a91, 0x00000000000099 }, { 0x6c40b759384b20df, 0x51a65e48018ac569, 0x486aa4d8a0c3be6f, 0xb1734ba7c17cf6ca, 0x1c2ec4bd1caf977d, 0x56378b6a33022a17, 0x783009dcdcc158bb, 0x2b889b23834e5fef, 0x0000000000002b } }, { { 0xf56986d5830b1889, 0x550c54fe8d95b442, 0x7a2db0fdfc499986, 0x6be6745e3d722c82, 0xe58b2a44d9b75c59, 0xbf712b756214741d, 0xf6adaeee1c77f606, 0xbb676f40ad91bcf, 0x000000000000aa }, { 0x8ba08e66ef3bc7f7, 0x15b40fca76d13f4d, 0x48b3dcc90774cde6, 0xcdce3cd479d831c2, 0xf680aab2dfb8a6a7, 0x51ed1b189a260099, 0x5823aa128d1dabc6, 0x8871e0d632618d35, 0x0000000000002a }, { 0x6dfaee5e8630ee43, 0xf1a77d08a51b4c7b, 0xcd7037c5b66ac001, 0x614b14bd14be88b0, 0x78072778a81f5fe3, 0xa51326b5aa1214cb, 0xac2580eb2c65c932, 0x651e510a319af762, 0x000000000001a3 } }, { { 0x144e523686f7240d, 0x4184579f9032be0, 0x4142c7fb81b82801, 0xf5a956c4daa2841a, 0xd1801cea26c51e66, 0x9bf4c81d867f051c, 0xba336f9e32d3d71d, 0x320a7505dfab55e1, 0x0000000000006b }, { 0x497f3b288aa526b5, 0x6c6883221fc10238, 0xad099f4d39e92dbe, 0xb1583f536d13a5a1, 0xeb57d5d67fd9e48a, 0x2edff63388b4fb6c, 0x42815da3f27a4c1c, 0xf530215b0492fc2a, 0x000000000000f0 }, { 0x37f6555d31aff4fe, 0x6c8a0c9e9099ccac, 0x9f5f9691d0d4d69c, 0xa1f4e726810f0d46, 0x924c599a2d29e321, 0x8d1dde115478dabf, 0xf064aa8d558f8b47, 0x2de831a6d54bb963, 0x00000000000062 } }, { { 0xa7d785e5bbf000ab, 0x962eb12b4a8939c3, 0xfe5aba87e9e36829, 0x1d8bdd77ffd873d8, 0x68cecc0720d9ba4b, 0x69ec654e4acdf5ef, 0x2bd6b7178b9dd961, 0xd906baa27d787625, 0x000000000000fd }, { 0xf1757cf9ccd7e6, 0x20e16508ee230995, 0xc359638829fbdeb9, 0x1e70b509f7efeecd, 0x8578562f1ee0be02, 0x1faa5bf133a5fa78, 0xeabd4ceabfe05c23, 0x92d70cb0cabd49da, 0x000000000000b5 }, { 0xc40ead3dea4737cd, 0x75568628dd9c1ab3, 0x5fc0dde6e32e3948, 0xe27daa94f91d851a, 0x3cadeaeb275533b1, 0x9a78f461a9266261, 0xbf92d290d7c596ac, 0xfc4ae27205150063, 0x000000000000dd } }, { { 0xe9f879c403262a6, 0x4b570506fb3a6582, 0x6c3048daa543eb4d, 0xa2dbcfeed976f96a, 0xbee2bff5dfc18fc4, 0xa9a3a06fb7bf80c7, 0x6c1e09ac3edad7f1, 0x3351d3370408dcbc, 0x000000000000b6 }, { 0xe5faefc181cbed29, 0x9e7e12235fc408c4, 0xb44b96f0d35c080b, 0x3cf0910cf4c3b12c, 0x2f70a2854d1d3637, 0x91dd2cbf016746b7, 0xdc49f00b5e08d0a1, 0x5b71e3941ce73a37, 0x00000000000099 }, { 0xfa0d8dbc4d43d664, 0x45b40bfabfa02325, 0xfe42c8c6cf8601ae, 0x9e3c79b851092c21, 0xae2f7df4653ea456, 0x92aa7a4efb69e921, 0x9b604eb80a068879, 0x6a8e89d2ac71ccd0, 0x0000000000019c } }, { { 0x99c79ffacfd065df, 0xf37830a6faa86fd1, 0xb8643143cf3e6e5e, 0xfce88bdf05f933ef, 0x5333c92206d874ff, 0x7f2fb9dfa5344bc4, 0x6180c86eb568986d, 0x1cd072656960e441, 0x0000000000014e }, { 0xc0f62577bf70dd17, 0x69e98708c1a5fa6a, 0xf751e3eaae08ce07, 0xab0e81a36e15dc53, 0x204093678bbb21f1, 0x9131715e24972017, 0xea71934efd82a613, 0x2767525ce9e2e5, 0x0000000000008d }, { 0x69a234a9f086d175, 0xd2f7e982554f5b4, 0x83d310d368487d40, 0x26f616c4ce4831bc, 0x616a9040989f84cf, 0xf5be1f193a8067fd, 0xa1c97b467137cecb, 0xfff235b8f2150810, 0x000000000000b0 } }, { { 0xe8e336b8b476d179, 0xc83a6ec65919add0, 0xc3abb88c8584f499, 0x6382d6817820dd23, 0xfd21837c45e9ab29, 0xa6593b7e44358ea7, 0x1d5ab8ed246efd14, 0x289c54ac276b0c95, 0x000000000000a7 }, { 0xb3d2e11caca0416e, 0x707f68fc69bae717, 0x233bf3585b844747, 0x1f9958cfb0ca8d66, 0xc0050ba7d72be75d, 0x7a6cdd4bbc1a9e98, 0xf3b8ccd8e8d0f74f, 0x140bff6966f6293e, 0x00000000000097 }, { 0x37e588ef216b4d63, 0x71387f47ca49ec95, 0x3daf524e3cf400ac, 0x72c41b9163f2287, 0x3dc0155a28fba536, 0x57d547156e47d19c, 0x18e40fd026b5cc4c, 0xf2ae7f693a8b29f6, 0x000000000000de } } }, { { { 0xf77c63e36143dc58, 0x87a07fab1cfc9307, 0x6f61afc7187e6bef, 0x58136ac0d6575dbe, 0xf0f614ae9f720614, 0x535f65ec9870a371, 0x924c2ba895dfc5a5, 0xd23f3a6f2384b86c, 0x0000000000010d }, { 0xd84e4578129c92c5, 0x43c58143d5c23c3e, 0xa5122399547966d0, 0x7c9c81fc648d0dab, 0x4dcccd4bc66dde8a, 0x94a280e09eff11d1, 0xbb7744621e68d0e5, 0xc33f472b50eb58cf, 0x00000000000192 }, { 0xda655970d004e0ad, 0x542cf02cf1594c16, 0x44703cab5d0ef87, 0x13bb66ef1e021527, 0x4ccd04a4bedd65ae, 0x9068a9867a99b510, 0x9ae8bf2d7f506996, 0x1544c546f019b4bb, 0x00000000000070 } }, { { 0x255775203adf3b8d, 0x38289a92b14af75d, 0xe13fae05c1286a98, 0x67b26f6bfb41c1e, 0xce4d1c3c5c7d69c9, 0xd68569f9ab6fea81, 0x33abc551ad92f85c, 0xa6daf2cbe7f65e5d, 0x0000000000010b }, { 0x6b7372a6f0ce0ea9, 0x3c5f67737c407409, 0x91f451147015795d, 0x3710bbc766c3c1e, 0xd0535c7c343240a9, 0x694bb24eb58eef3b, 0x6cad10aa6c643281, 0x41e1305f9504f390, 0x00000000000041 }, { 0x79f65430b2e344ce, 0x3c857a0d24f25440, 0xf394856b542e85d5, 0x10e698e8bc6d2cd6, 0x229a3440089a8443, 0x77c9d759be4d11e5, 0xa1b08c0cc5962d31, 0x49c21546b38d2aa7, 0x000000000001b8 } }, { { 0xbdc41de7ae2310f6, 0x40bd14c6065ddc1, 0x542b7165face9be0, 0x780c210b2d4631ec, 0xdb2c3f4db9ea445f, 0xab0369044767bdd5, 0x9ca787c90dc29dd2, 0x49d51b6ee21c3278, 0x00000000000047 }, { 0x0e108c08b6a163, 0x9b4445210ff6cda4, 0x83346d5a8cfff4b, 0x25665e4b22d3ef7f, 0xe94b22ca6d5cd74a, 0xf2fcf80972f2946b, 0x51c4d0fe80019b80, 0xb9085044d35d223, 0x00000000000009 }, { 0x8b5c3a9e51c89351, 0x57d5e9478786f64f, 0xa1b42d1f24ab07e7, 0xba7844b7d836635, 0x7f6408cc08452314, 0x5b7b2766789d8c1b, 0xdb7de39fd46f7c32, 0xddcb9ddbf002ca32, 0x000000000001b0 } }, { { 0x2587a3326dd9223, 0xfa4db7fb8e7dc47f, 0x57da68ea5ebb0820, 0x35fa97cc70df8fb1, 0x996a90c854d1a3c7, 0x7e0119226ed1c943, 0xe34baedfc583be37, 0x4f86fe4331cb7893, 0x00000000000139 }, { 0x72856e1fc7ce91f4, 0xbd9175c3c77f2431, 0x3733c6e0c6eac94c, 0x6e4cf63e2a9a14fa, 0xb4e6ca1b4b5ee374, 0x8e128afbfb4eb6ee, 0x85ce1d05c57d7e80, 0x619ce227993bc8e, 0x000000000000f1 }, { 0xfe97566e3dbe1fa3, 0xcf10202d9ec13194, 0xf0f89e46b8457279, 0x50cbb9aa3ab22a42, 0xbaad5988dc5949cf, 0x72c48d37f2854d50, 0x58b8494308ec8d30, 0xec1ddbb9559ad90f, 0x00000000000045 } }, { { 0x7596b4bfa75a49a5, 0x56c03c8d2fa8b6ef, 0x2c85db08f5ea0a8e, 0xdd35cb2f5aa2bf4c, 0x40f746d3329585f0, 0xddbb9278043ff72b, 0xfeb49179d0a73cb9, 0x789f433745f27ca8, 0x000000000001ff }, { 0x67fc6575132c7693, 0x2b554960fce5b7ea, 0x60456c30645dce34, 0xf98de92c1b59822a, 0x32084c1282a29e2f, 0xbc0dcf50d3558acf, 0x74b6ab455c239802, 0xd194be8da300531e, 0x000000000000d9 }, { 0x3359f49e21581387, 0xb859c3ff8d6d3b79, 0x9da0ee95903d4048, 0xf3b25a2b2779e59d, 0xae8355a24de3dcab, 0xa6158579c57d16a8, 0xa675010f2ae0ea92, 0xee72cec6733724bb, 0x00000000000147 } }, { { 0xce28785f3b8175d8, 0x451631a2c5be71ec, 0xcc26b260e0abc818, 0xf95a30d791944d24, 0x798955068f4e1fa1, 0x355ac0bd755493e5, 0x30819738dbcaa5e0, 0xed355a00a8c175dc, 0x000000000001ac }, { 0x9624d6b892b95ed5, 0xf3a7ef7c40572c8b, 0x2129b1ff17c58fe8, 0xa0848dfdeec138ac, 0x2be9512cb2a21fb8, 0xc97109d0cac6c5ef, 0x6081288e29a7315d, 0xaa75560446d75131, 0x00000000000118 }, { 0x3721b14d4a14ecef, 0xf27b6f08045f114c, 0x9fd682f2dceddadd, 0x8f93a1e01d0f7f0e, 0xfef1b5490f33f9, 0x20d4b1a13a4084d, 0x481b1a0b98c12dfa, 0xee0ceaee5f863164, 0x000000000000ac } }, { { 0xc898c24061187da4, 0x1672f7f0fad78701, 0xeb16c255effdd864, 0x40c6a1225ad3c94c, 0xb6d77ec374380bb6, 0x751d8f707c57a366, 0xf9d5d1afb7eee8fe, 0x7566499996fafc2d, 0x0000000000018b }, { 0xcdddb9ec683ef13, 0x15aaceeeae323b7, 0x810be8737fa01258, 0x8137975c708a23b9, 0x6abaabdc4cfebf14, 0xb78648bb9c34034c, 0xb45aab33a19379c6, 0x112b1273fbbccc22, 0x00000000000051 }, { 0x77cf58725037e723, 0x2c5a97f1ad58ce6a, 0x22bd365aa28a47f5, 0xea213eabda8b6c0a, 0x5a91b40ff3490989, 0x3984f4af5bbb4888, 0xdfc75ec6bea7e4bf, 0x373cea3c3952693d, 0x0000000000011d } }, { { 0x39d5bb23f7ca1f9e, 0x29d129c39c75e9bd, 0x456ac40091e509ee, 0x5529d85e55ccb3af, 0xd368195560975b72, 0xe0e8029e8df5e8bc, 0x25b5f6054c0f0bbe, 0xfc30651ee738b362, 0x000000000001c8 }, { 0xd95f172529ddd75b, 0x8ee1d8eab795547c, 0xba1304f7f88687b2, 0x2230c0d87c456d4, 0xce84c0df3d741c4f, 0x9afd0dae9e23caee, 0x826486b036f5a6bc, 0x1ea1eba7c0ea2cd, 0x000000000001e6 }, { 0xe524af6f40214661, 0x94a3368dead53c08, 0xdd1956d41454c18d, 0x63eb8fdf700a8885, 0x50d58a0cc5b04a4c, 0x5be068c35eae052, 0x3d9e6b8e6731ac3f, 0xfc188f4579621559, 0x00000000000090 } }, { { 0x9a80a0c4feb3b8f3, 0xe5256e2c2da1c11e, 0x48d88d17bb12482, 0x5a8ef4170826e94d, 0xf249b55765ea18de, 0xf209849c062583d4, 0x897ba59362093bf7, 0x2daadaf19d0a5326, 0x0000000000006c }, { 0x117d49da00841036, 0xc2b8b9267ea2860a, 0xeb2df81d31b26f70, 0xace65ddd8e0a0d19, 0x37cad95774c06c9d, 0xb999995b26478455, 0xddc2ff085340480d, 0x448ca6620d1aaace, 0x000000000001c2 }, { 0x3692c0827ede3efc, 0x9eaadd1f6323a9ee, 0x3c489fdfba025e35, 0xf52530244fc3ebb, 0x9176de0f9d1ee35e, 0xd39e4b61e7134f30, 0x7c32d668f91e84d4, 0x5ebb4f9fa8f621d2, 0x00000000000102 } }, { { 0x70d1fdf5544444ad, 0xc4ca7d4294231077, 0x8ff3874cef0329ab, 0x99767ee95f74858, 0xeb99fd0ce0e7d28d, 0x32f3685beaf60361, 0xa2e2126cb178307c, 0x974aa2e2833a8bbf, 0x00000000000097 }, { 0xde75485b5a6a0e4b, 0x937d54e923ec1dec, 0x72cbc2a34afc77a, 0x13cc0415666285ff, 0xb3b604cd381f152a, 0x4d881fb30168cfba, 0xf7d8b3f53941cabf, 0xbb9dce6057b540b4, 0x000000000001d1 }, { 0x7d7184c50a2c2b73, 0x14650014677dfe66, 0xe07ce7559f176375, 0xc757d8a76d5a6b33, 0xd322e2e21a6bfb4a, 0x41f2183fe742d1c, 0xa7134de44333d267, 0xdf59bd1ab83ac828, 0x00000000000119 } }, { { 0x5e83ecc9a63ad77f, 0x4672a8704b975554, 0xd9949dea84b91e49, 0xda7931714486b78, 0x69bcbde3db21afc2, 0x43d7ff66be65d3ae, 0x8caf29fa6713c66c, 0x6f90c34524f61fb9, 0x00000000000043 }, { 0x6c3a8dceab6d06ae, 0xc50854a9d52b4fb9, 0x7fd8bf4937212fb, 0x7a7ba904a9e00aca, 0x87dcd916ca2cc9ac, 0xf19b894dda4471d5, 0x6e4f31bd2756996d, 0x287eb107611137b7, 0x000000000001b5 }, { 0x23139e7c9ef0324, 0x48a7219e906335fa, 0xfab4212e32606033, 0xe9715ee007eb65ec, 0x9367ede78d1c09a5, 0xee502f40ae62346f, 0xb4f81e477c90a3d8, 0x5ff625cf2755a248, 0x00000000000068 } }, { { 0x61cc676449378752, 0x567374dc4da7c825, 0xdc1a28c3e6fcf78, 0xed61e83911385b7, 0xe5dea96903c0f35e, 0xc17c7bcb0f084df3, 0x1dfd317ccc0a8174, 0x5c627f83f0ae8320, 0x00000000000198 }, { 0x316565e96c7fc2a1, 0xeb5b4398e56ebb2, 0x94191decb1808421, 0xacfbbcea70a84a66, 0x241df524ffe52bc6, 0xd0e94ff50fc7567d, 0xb8eedc8225d0665c, 0x26751fb525aa5a1d, 0x000000000001b8 }, { 0x26efce80d13551df, 0x7ea35ee5897ca9bf, 0xcba18dcff3c269b8, 0x844de4b256f3fe3b, 0x29a80a5b41d26a00, 0x46ea78f36910a5be, 0xc859eb0ff4a80609, 0xa1c43c1a70d240fc, 0x0000000000008a } }, { { 0x15ac09a5158d0f12, 0xe1561cabdca1b465, 0xdb44ef403e8800d7, 0x76b7fdcdff896da4, 0x1b265800b444359, 0xfb79729619b2fa48, 0xabfd6c407d32bb42, 0x7df79fad1eafce4, 0x00000000000179 }, { 0xa2b48905f6684ce3, 0x585e51f708166eb9, 0xea70f960ab8ac539, 0xd3b10af5561bce2c, 0x76f8162a1d8951d1, 0xc13232de136680e2, 0xf00d093ea093bb18, 0x5492937fa636e203, 0x00000000000014 }, { 0x4c0fa2506f102852, 0x99b7830f0d020cf0, 0xc707270a501e1746, 0xe0429af8167b2c52, 0x319150e7567f883e, 0xa24349db9fee3478, 0x495d105ffd811595, 0x52c1e3401767bf9b, 0x000000000000dd } }, { { 0x646d5b61c74f4c21, 0x66bf9dbc3935b4c1, 0x2ab217a3f74d7bb, 0xdb971e441bfdf2a6, 0x2ec19c86f8753a59, 0xbd9468acbb438f98, 0xef0346b1e360a1f6, 0xcbaf9cc6ea8e8c31, 0x000000000001b2 }, { 0xfccee3e9c81046c6, 0x19ee8b296efc6986, 0xc2da24437da2d8b5, 0x255ccd679839545b, 0xd9c6bf42fafd8f99, 0xdaa75342ff2bff0, 0xbd0b2d286cbe2009, 0xcb50105afea1afd, 0x00000000000135 }, { 0xb859fbfdb10c2edf, 0x6ac49707f9d05972, 0x698062a8d95a9f99, 0x29a3a33876fa06d6, 0xadca255d8de08c9d, 0x5a7073ecbb1b2d83, 0x818bea7cddfc3cb0, 0x8dbb5bf2e1c9c42c, 0x00000000000013 } }, { { 0xda13dc98303f905a, 0xfc56ffd03203b04d, 0x1989376bd924d5d5, 0xe17c981c5cc2bfc2, 0x5875014a939fb313, 0xb07f70d9ea6080b1, 0xa3948b03762f5c8, 0x3bfea6d2dacab012, 0x00000000000033 }, { 0xe8c22fd599e5775e, 0x5aa732a547f47008, 0xa468abd140789e98, 0xc53ed92cc620b289, 0xc5292496b4ad94f2, 0xb3d252d8710c8449, 0xd2af05f4924fa387, 0xe33d3c4cb43d9699, 0x000000000001af }, { 0x7f7ea70ba78ce73b, 0x3be20b7704c0de1f, 0x8b65b231e89290fe, 0x71bdaa72d51c57e1, 0x4986ad1d908cbbf0, 0x81529294cd45806a, 0x666a882e5d28356b, 0x5e0035404ceedb9f, 0x00000000000020 } } }, { { { 0x576719bf1694be44, 0x481e3f196864c537, 0xf43458419329ef71, 0x33e57186ce080aab, 0x43864d9960b333d4, 0x315fabd31f1b2785, 0x8687421cf112b220, 0x58351996b9bcca7a, 0x00000000000198 }, { 0xb2da9ae8837569c2, 0x62fa7de75b6dfa86, 0x4382aa9997dd34e6, 0x20de866a5e169b6a, 0x37f179576aaf4299, 0x5ada56ef16cbbcb8, 0x76ef6eed096f566d, 0xedc282e288db00e3, 0x000000000001bc }, { 0xdebde5779bc82709, 0x871f56d4f095b8a0, 0x594b6bc6daad2739, 0x74bc1d2433937967, 0xb46772ea43cbb1f2, 0xf43fa384312e82a, 0x90222f6c8a14efcd, 0x52b8d4d59fa66dbf, 0x00000000000188 } }, { { 0x2a3bdae7107501e8, 0x361d3f4f366e784d, 0x599e806736ecda8e, 0x2e39168c8a04dbe0, 0x1764157f224bd3cf, 0x493da96e289d7d42, 0x199c3ec038a70625, 0x6526881e450ff37f, 0x0000000000014b }, { 0x3d9bf2e23b7ba5d0, 0x80c84eba9aa0d2c, 0xe9e2b40a4824cffe, 0xf8a01712d243305a, 0xbf93c926181a3f3d, 0x5d9105e4e4c53ae6, 0x8b6c8263ce966359, 0x44f8ba05a626e02a, 0x00000000000106 }, { 0xb513c294eb221b1, 0x2b57b8a53a0ba7d7, 0x840c6a19119c1f3c, 0x7713990d7fd6f711, 0x75a123ca3e1bacd8, 0xf3473fbadc2d8453, 0x9b3140ff199156b2, 0xe59053e912530aee, 0x000000000001bd } }, { { 0x9136d7b9d63c3f36, 0xbecb7a6357577fa1, 0x4152359b2ca55c1f, 0xa8260939b321ae35, 0x694597b458b77025, 0x812d48403ebea4a9, 0x2592eec6a8e25822, 0xc7873684b5a1becd, 0x00000000000125 }, { 0x40f3efa3aada51be, 0x82df948b1f99a16d, 0x9c1fbf5be974c114, 0xa4e36e27488e3556, 0x13cbf5f28a8919b2, 0xd0c13686bb8b5a3b, 0xe17bdf6430a7e0f9, 0x85146729cf354935, 0x000000000001e4 }, { 0x2247651f2bdaa3fd, 0x5b503fe547612149, 0xbc6c253694f80bd4, 0x66a741a684b44e78, 0xfc6317e5ef095d9e, 0xd2e040c2f9405ce6, 0x7a865e9a04fb6ffa, 0x552d41aa1f39cb2b, 0x000000000001cf } }, { { 0x85d7deaed09361f1, 0xb08c201dbfe341b9, 0xf81e47edb0ab6623, 0x328ae7f7b9d31d7c, 0xd2cbdfa26cfc3187, 0xf2d64b243b33dfae, 0xc98fcb4e937ef060, 0x7e3202a8173ef03a, 0x00000000000155 }, { 0xe05e4650a1af915e, 0x1a79c5d63f46f9a8, 0x1dec8254792060a4, 0x334f335d76891c83, 0x4757d287b99c53a2, 0x7d640d99371a2635, 0x9a80df437b408c3b, 0xf754c3a7f6a2cdde, 0x000000000001cc }, { 0x3746691db5119f91, 0x2043af076cbf8106, 0x3cd8b6714d3b735d, 0xcfb9f942261ba505, 0x4f166aae2fd174a3, 0x9fc1c57a2c8479ea, 0x44eaf0e07b63dbc0, 0x38da282e47ee32d6, 0x000000000001ab } }, { { 0xeb93762592f38730, 0x5c82e04d30cdb18d, 0x63e0c87e2c8b0086, 0x24ea729f7d950d5f, 0x820bcd111f8b3dd3, 0x7ab1029ae8d59074, 0xc385ced37afeb996, 0xa8c98446a24465ee, 0x00000000000199 }, { 0xfc479640dd4a46a2, 0xa7577bd4680b6f52, 0x4538ed7704ca410b, 0x74aba211a02c8a51, 0x7d5674b14f4c6d39, 0x2f784bd4af03e9d7, 0x739604578b34ab8c, 0x9140f13928785983, 0x000000000001ca }, { 0xccce8098bf97571e, 0xbca033f7e6cd1905, 0x1bcec3e0a0150cf, 0x4153ef70eea966e0, 0x36d82d51540da23f, 0x3e82a2d52604808a, 0x581e8f19850b4f78, 0x9b4c931303c54906, 0x0000000000013d } }, { { 0xd08f5d7507a94df1, 0x17ac0c4450613785, 0xf8d0718abef6787f, 0xfb6b04d88b2b5586, 0x59eb630be84b1994, 0x24379a7e6aec211, 0xc4f6ccf95fbcdf55, 0x36fef377482ca7b7, 0x000000000001a1 }, { 0x625c0694c91a28c, 0x8db0279b6777a770, 0xe07e5e6fc21b445f, 0xff96d38e09d9efec, 0xc4faed5d94332760, 0x235b7f80d388331d, 0xb26470cca9a60f95, 0xd1ffd9b282ae27be, 0x0000000000003e }, { 0xaa1fcd9f6a2d993, 0x8af93b1241b97020, 0x3a2c1050b4b87d54, 0xa3a58658848a7cda, 0xc5ae229d52d5c0b5, 0xa2475395a5002ddd, 0xf6ac2e1bd8452402, 0x580840a86fd8ec5e, 0x000000000000a3 } }, { { 0x97e049ad513d82e5, 0x33b3911bc2afc1a7, 0x4ddebae197730cf0, 0xcf92b7f0a7e45466, 0x2df4fa5ce9ce67e5, 0xece3be00e067de82, 0x18b263fddcc99765, 0x6aba8e0a44ba1477, 0x0000000000017e }, { 0x47460ec60a9b0f1d, 0xd059c00b82cd4c3e, 0xd47dfae2625ce6e7, 0xb55bec74cc2b7bb3, 0x35583fae166dfcb0, 0x1d5f82c13c116b6, 0xc4a8f02afb6b2064, 0xa6f4448ae1dd7ba4, 0x000000000000a7 }, { 0x94f1e894f69815c7, 0xe619f6a6318412ca, 0x9fcffe9020b4bd06, 0xbcff4d0c0fd1b028, 0xb899cd68a9c459f8, 0x5783a3281fb60767, 0x36b1669750d0effd, 0x5496552b068e70c2, 0x000000000001c6 } }, { { 0x9f87c8331608a017, 0xb4793e75fb166e7a, 0x328795780f3e05e0, 0x64a4c066085fd83f, 0x50bcc580df0ffe29, 0x59dc432b55754ccc, 0xb6fac7b519d7dcad, 0x7c1bcf876b06b202, 0x000000000001fe }, { 0x1c000bef6d12d1e2, 0x519bc67e53f1b1d1, 0xd37867144518bc41, 0x392333c679961ce9, 0xb3bfa59c8da1d34b, 0x428fea8a97b9bb2d, 0x6c013b6b7c621213, 0x5d29a7b2a65dffe0, 0x00000000000138 }, { 0x68fa3e2b37504207, 0x4a3ed75ab0edd1ee, 0xe36ed35b6bac4bdc, 0x61c612da8176ddcf, 0x23c32f81df7c6563, 0xcf3a3adcc752c8f3, 0x69b6c766f860c76, 0x144cfac5f8995b3e, 0x00000000000197 } }, { { 0xb9f1f206decf4553, 0x74492085b16098bc, 0xd812471e86095588, 0x9329f03a049f5d99, 0x48192691409b89a2, 0xd0e508ff2fcdaccc, 0x435298a01621c371, 0xabdc9ab2fb2775c, 0x000000000001d3 }, { 0x944758b880869b75, 0x1b63de0e63ee62ee, 0x8f10e062c10ad031, 0xc703ecf4a8c76ece, 0x567d3ceaef017b9d, 0x5feb53ef29afb74a, 0xa5a71cba52cf93ca, 0x28e09b03bad7a47f, 0x0000000000011b }, { 0x48eb3db93dbbc36e, 0xf74b964643b9f09b, 0xb43d2e555097c0db, 0x604a033c09857be7, 0x566df3733a515cdb, 0x1a6c742cdb4fa171, 0xec48d54a8b6385b0, 0xeabb478925e649d1, 0x0000000000012d } }, { { 0xc87248b16c130688, 0x538029d83a3cd12c, 0xea30394575396439, 0x85fb96b386f9314, 0xc9d48c5dd89b8442, 0x10d89ea1d79a8557, 0x8acc8dbd06038eb5, 0xff364b75030b5cf2, 0x00000000000187 }, { 0xa8c78fc982f1ccc6, 0x28a00e648378ff3b, 0x219b6d6963fd01cc, 0xfc000365b519d824, 0x6874535a915aefc4, 0xc4e40d1178a7786c, 0xbaa09498a8726268, 0x2879538aa0ba5a46, 0x000000000000c0 }, { 0xce205966121b91c3, 0xf201814b08b2db69, 0xf85c2ff0a5ce562f, 0xbc6184480d4f8e39, 0xa4356460e343b94f, 0x7cc01ee5e1693497, 0x934381f0bf9de879, 0xcc0af79ccab85a7c, 0x000000000000a2 } }, { { 0xe7d68aba12a9cf80, 0x1372a40e83f817cf, 0x7d1121ba4ca64c17, 0x6b800c118b26ba61, 0xa585e25cd5fa98f2, 0x5011304b9495c6d2, 0xcfe7c9f949dfe40a, 0xaf1b6ad4fe7ec92b, 0x00000000000074 }, { 0xb00f1786b4049a58, 0x31d1d0220b354ad6, 0x431f95ecff3db6e0, 0x3f9a1c404cd38b1c, 0xb5e8b681011f7122, 0x568eeb1492bebc14, 0x7273bc1d9f859f26, 0x86f8e8d5f5fae78f, 0x000000000001ec }, { 0x72d0da6ae9cd0364, 0x12f82d29770e93f4, 0x7be9d6771a274d5, 0xbe529df53ec5ddac, 0xf772b25c5c35e4d9, 0xfaada2944f77b15e, 0x9f95254234b6e1a, 0x5978bce8fb9ab989, 0x000000000000f7 } }, { { 0x21fbb14a8e1d2dfe, 0x78fce9001c96b4af, 0xbbc36b24ad9cc6ea, 0x676bece8df024e42, 0x241127fedc96b9f2, 0x66ddb6f9ce1cf767, 0x7a904a566018118a, 0xb94d51d1332c400f, 0x000000000000f9 }, { 0x7f501b95e04c12c3, 0xa8f591b4a7840aae, 0x64ccb92e0ca36db0, 0x815d76c6149c58bb, 0x6ade1ab7bbcb03f1, 0x7241eda43afa4d8b, 0x70cf25fec3e0778d, 0x8d2afc67e6991af5, 0x000000000000fa }, { 0x9ee39ed4c3b54547, 0x820c7b9c3007980d, 0xca40ddad0291e66a, 0xf22f91b3d476c717, 0x433c6d3ad164213c, 0x8633d9d7faf4a00b, 0x12b485ae9f71ac04, 0xd5e0504621e846ca, 0x00000000000009 } }, { { 0xabbbd53cf8d88190, 0x555d5ecfc44c41d0, 0xd080727735594ac8, 0x3bb2046a855b6c03, 0xf2dbe43b4cd8ea82, 0x716e4e35588382c2, 0xb1172f56eb22c51a, 0xc47be4a8b1ee21d4, 0x0000000000016c }, { 0x9a44a61260ab4199, 0x87e4ba25ea809259, 0x39904839e7e10b6, 0x5b2d85dcc89bbd51, 0xe9a6dade115bd335, 0x83721335b058f23f, 0x394391834f85453, 0xc34be0c1d42bac23, 0x00000000000141 }, { 0xc367b19efb188494, 0x4ae8d55d3998986d, 0xf106929aee607130, 0x292b63369b30c6e1, 0xf7fdd48bd3934c5b, 0x88601b618aaa315, 0x2d42e611ca3d834d, 0xaaf1b4520b65e319, 0x000000000001bc } }, { { 0xf0c59b4c8f25ba06, 0x54c539232f55972e, 0xc6745e4b71f86539, 0xb668c4535bf6346d, 0x333243e0d3d8318a, 0xfec920760bc8255a, 0x88abbf85f90bf14d, 0x95527ea9eb38c604, 0x0000000000018c }, { 0xc5c44ac9a0bd047d, 0xdb7e0220e7088a85, 0x8672eed47bdbeac7, 0x954ae915d4d364d, 0x3e2a72e98fb36cf2, 0xbfeca906ea1fbcdb, 0xfab0516a4a7c11db, 0x36102de05f3a6d81, 0x00000000000110 }, { 0xcc833da564a9a2c0, 0x3a16ea3861a5197, 0x35b7fd1bd3cec4, 0x3c20c9d6e7c99072, 0x2460db6894df9fa2, 0x9c288c5bdf382111, 0xcd97f75cc1b27ff3, 0xa9a7bcada81786ef, 0x000000000000b9 } }, { { 0xd61925ec21068528, 0xbd849000cef8b2cc, 0xf127c0afb1ca3d68, 0xc39ad70e84a94b84, 0xf5b7fa9ed1b6edba, 0x9e05bef5baeb08ed, 0x286a1d53a712d821, 0x8e4565bd32bd8a74, 0x00000000000015 }, { 0x9796341d26b46866, 0xadfe74076eb27d2f, 0x52c7412904d24250, 0x9a872e14550b0230, 0xab8837aa7831793, 0x34133b835edecfec, 0x565d241a04f17016, 0xfd830cc417c96569, 0x000000000000c6 }, { 0xbe3baa6750818c93, 0x46695a95c9a146b2, 0xfdd36f0161b5557a, 0x3f6d634c5ba2af76, 0xba9f1841bf95f4e9, 0x7471e31d4001adeb, 0x59aeb91b9312bc14, 0xe78dcece9534d369, 0x000000000000eb } } }, { { { 0x312ef5bab89c2e28, 0x12436e9ecf4dfd5b, 0x95fd2e1e1732b8d6, 0x780f89fa768b564c, 0xa51351fcedad2ca8, 0x38b0f1e259019fc2, 0xd7247a9eff194f25, 0x87dc7d4ad382b675, 0x000000000000bd }, { 0x568ad7ae7c501a39, 0x1f0873e22a91299a, 0xbd0e7ed34da8b4ab, 0xc71147754bd8e44d, 0x359cce373bbdbb0d, 0xf73b87262dc6f80, 0x785c79f704600a6f, 0xf9bb2a70dbb8f3ae, 0x000000000001cb }, { 0xbfc601001fe11d68, 0xa9649b5586268c02, 0xb4322ed098424c86, 0xa5b6fe0832b6e195, 0xb5661cbe9e9e97d4, 0x455a87d2fd826071, 0x3ee51a29007720a9, 0xed63952e78c76a18, 0x000000000000fe } }, { { 0x18c02fbab75edfe0, 0xceac18c6b92ea0b4, 0x40ff53c136a9a3c2, 0xd854076e09410f04, 0xd8837c4fe9018960, 0x8a6af13370b60aaa, 0x686b59a3ec07eb37, 0x2c64b935db88ad04, 0x00000000000195 }, { 0x507b00d668a24ab7, 0xf30ee7d5ac488142, 0x29c90739aa73d603, 0xb64549ceca3c1876, 0xc787a8c013722c2, 0x2080a1005b08f9d7, 0xa0f24e993865ab06, 0x4d89b16a6d598e41, 0x0000000000014d }, { 0xf6583e8e23d4e33a, 0xe63a98dbac050225, 0x367a591822b2b3f7, 0x39e2a70bfcc88808, 0xdee15a81379f4e6b, 0x3d598a56e53fe97c, 0xc9871d1600b9d943, 0xa63b3f4f86adf1f4, 0x000000000001ed } }, { { 0x5bb961c3b08a5376, 0xf479cc9f26cf54a1, 0x739f31a3f82376ef, 0xc82837f4f84f7be0, 0xcb3123f71e972c2d, 0xbe13d7a3497b86bb, 0xa54813b2c1031baf, 0x532be29554525dcb, 0x0000000000015f }, { 0x5766ee4d3f1e2683, 0x5b79dce78346739c, 0xb38a61475b6b270, 0x103e882b77a15d49, 0x9b419fe5e54c974f, 0x28209fb87c7450c6, 0x7e71a3c63ac7560f, 0xbfbc1403c0620918, 0x00000000000040 }, { 0xff669ee7e1f61499, 0x14e3f01b9fbc5789, 0xd459121f9c896b10, 0x3985580a3bae77f3, 0x99fd1646efe8f604, 0xb413f282a84e6b92, 0xa8bd75df0250cca0, 0x55c626d118478682, 0x000000000001af } }, { { 0xa6be45057d059eed, 0xe5e078b4159025ac, 0x2ce1aed32ab8d8b6, 0x21cb609352d635ac, 0x4851170dc1f6eb33, 0xcaee8ba4916f0623, 0x39d2163b61ea24a7, 0x148a4b90842937d3, 0x000000000001ef }, { 0x3cc0bfc59a1a1191, 0x2497d127326f8131, 0x1a5b05fdb6f22f07, 0xb6390f7f8f6c4e4e, 0x1b002f0f483295d0, 0x2e3e01e5382418ba, 0x7f886192770fe24f, 0xe486e2aa70d0d929, 0x00000000000046 }, { 0x7705764d48d80241, 0x5854c091e0b078ab, 0xfeff9667fb59e284, 0x322fc5429dcae7b7, 0x7fe149372918ab09, 0x9d707ce61537ad, 0x60e24ef3ece32021, 0x6283693050b2f5fd, 0x000000000000f9 } }, { { 0xf8b1702c5e3437f2, 0xc45705a60d5821b3, 0xd623d19760082616, 0xcd76d9c175e612dd, 0xe863e381012014cf, 0x66552bee57d3e1f7, 0x25af5a4cc9962ce, 0x7c4c5524f76b7cb0, 0x000000000001e2 }, { 0x7969ad29ba07b319, 0x2436bc93b07391b9, 0x988ee9257803ae40, 0xea95be32cf2713bd, 0x3963179dfb0e9887, 0x59157caff0bf1834, 0xafcd30945d54aac1, 0xeba94ee7443160f5, 0x00000000000181 }, { 0xe844bf5b040d855, 0xbf36708c889a1217, 0x2ed0c425dc0ba7ac, 0x76a34af0b386998d, 0xe55806b576b2e696, 0x599aa7326d912ed7, 0x6bdb862df8f11770, 0xad8d9b74dac3f8b0, 0x000000000001d0 } }, { { 0xf27dfeda90da33ce, 0x66669175ca51ab73, 0xbba1ad140debdd14, 0x44e88e522be9fb40, 0xa9f0752677d31c4c, 0xf900ef67e7321cd8, 0x4b9f72c7c29b62eb, 0xf83db8561d3ea2db, 0x00000000000108 }, { 0x90e57f41292f504a, 0x9eff337bcd1b5411, 0x356bf3491df15ba4, 0x1ce58f4f888675df, 0x6f3abe0c5f336eac, 0xf3e827cf024bb786, 0x59dd047219c357af, 0xe371ae2431d7e017, 0x000000000001b0 }, { 0xf6b7726d72c84412, 0x7b4afc842dd7edb8, 0xbca16aeb17db0502, 0x61abc37f7383b4a, 0xec682b72dc105fdf, 0x76b788388a35ebac, 0xd7a5b663e6c8fe2, 0x9594c78c5cdfc58d, 0x000000000001dc } }, { { 0x877e166c885bf1eb, 0xc6d40c92e2748733, 0xb7b9a9cf5a3c05d2, 0x5cdcd753acd9e52c, 0x79318e0a35b9467, 0x497f3d7b6a65011a, 0x78d4d71dca4abdf4, 0x136c8daca0c2b0e1, 0x00000000000049 }, { 0x2f64a5b31bf00c3f, 0x35cc8db148620ef7, 0x35d52623a59d729c, 0x7848147c35b8be7d, 0xa992878933e5a70d, 0x814adf19a330d65a, 0x95f254f43f6b2bac, 0x4fec9fd3f9417503, 0x0000000000003b }, { 0x9a6419ba0da11808, 0xad0ce2e4a44e44d3, 0xa3e2f23be7c0af51, 0x2c0db0df75769c3a, 0x900f2ef798dee181, 0x508db78d1f4581b, 0x56c862b139f2d42b, 0x8341a9d4f24ba95, 0x000000000000a7 } }, { { 0x734a75ccc3a9a5ef, 0x99231b36ddc989ba, 0xfdde42ae266d189f, 0x5f8b778637df3d22, 0x20bbb2e244361352, 0xc92ed7a5aa12fd67, 0xca5530f11c44be0b, 0x2b609437ef27c5bb, 0x000000000001a2 }, { 0x683a5c6f340d6034, 0x2aaacb38671b1ab0, 0xe317c2e2f8f8d076, 0x737355b0685b9881, 0x761f443d12347be5, 0x572ca2dfef00c814, 0x3ff8df7cc697ac4d, 0xbb43ebb19c5bc847, 0x000000000000a8 }, { 0xb6d8894a642ccbe7, 0x7e1b3417b0ca9a60, 0x27137118191be5a4, 0x5770907937090ad3, 0x310247519d5c2e50, 0xcafa0d00861b25cb, 0x6574ef2a92ef4151, 0x24f797be60240fe1, 0x000000000000cd } }, { { 0xc7eb1fe544336ecf, 0x2a1be9dcf7e06271, 0x2a235e865f8368de, 0xe04725d62c9fa952, 0x7b0dc1fd8d80bc7, 0xc41e17b5585bfc93, 0xfc3be911949d3e91, 0xa595c207e499f402, 0x00000000000126 }, { 0xb480819b5df9c41c, 0xcebce417e8743e77, 0xf1a5f408640bc0cb, 0xf064c886eddd85, 0xb830c3e59f41c925, 0x3c3ef4ad37150668, 0xfc2b85e39ff0280e, 0x2266f9b8a91c3e9b, 0x00000000000010 }, { 0x7ed1cb8e70e93c8e, 0x6812bbcd9e0d5532, 0xe25405db65c98f93, 0xf12ba2a9471eb4c5, 0x7349e74badd81876, 0xfbeab3f7e7426c49, 0x32f214beeb052721, 0x541f347526bf7865, 0x00000000000064 } }, { { 0xd56c1be6969652f5, 0xd3106277a4acbb2f, 0x12c8e88388917c34, 0x681e67d3bf0c482d, 0xe046ecb18715a20f, 0xd508b37da19461da, 0x31daa93886d47998, 0xf6f432f756ef6849, 0x0000000000014f }, { 0xb28b3289218af245, 0xa1e866aa6d3ac4df, 0x9deb7e821e309c1d, 0xc29c79452ed4be45, 0x43c9586f7047e407, 0x662d4da18a1167e8, 0xd5fe90cc0db9a3d6, 0x99a841e5590a47cd, 0x00000000000122 }, { 0x5bf46af92b5462fa, 0x9e8af7b5bccc50c1, 0x8cee137a2cfcdcde, 0x73b5a217be32a01d, 0x40929d6ee9821fcd, 0x7daeee876a8ae8a, 0xc03787ce3d83ced0, 0x63a7277ef20174e6, 0x00000000000059 } }, { { 0xf89e3bd1f28d097d, 0x5a7a26fb6badee6f, 0xbd877d7d3006f5bb, 0xf64cf6e268db1ee6, 0x4e4aea96676f6914, 0x60b99f637f5754b5, 0xfc865ad803017b23, 0x4cb6d726837d406b, 0x00000000000056 }, { 0x823070dbfcd15010, 0x40cf62aa929aaf67, 0xedb25dc65f8a1879, 0x90c480de622fff36, 0x3ae98414d1c8b8be, 0x4d811f6f5c4d22e8, 0xf2d082442c016a5d, 0x7fdd5c4712308769, 0x00000000000040 }, { 0x1a3962e1d5a2bf2d, 0x89531f806129896a, 0xdd40701ba4c4e63, 0x52b4ebe21f550974, 0x96c0e6dad0ed9238, 0xe12f03424c731f8a, 0x5fe1571b4ce985f, 0x28e2b8a8c07156d0, 0x000000000001b5 } }, { { 0xf032a3e614051e21, 0x9e6771989503689b, 0xf40489fa26f91335, 0xac1f19a177caa68f, 0xd506b0f9057f4100, 0x1aaf9f34724e941b, 0xb8af72af8af21ff5, 0xd3de11299cf43306, 0x0000000000009c }, { 0xd35d96b5297b4d0c, 0x7f41b08e27ba09d0, 0xfb197eceda2e70a0, 0x3a2b162a49751fe9, 0x60767b4d23cd2ad6, 0x3a6b1abd1a56e4c4, 0x1e202e847aaf4400, 0x15a1b9f38a954a8c, 0x000000000001b4 }, { 0x398061ffb4cc9cd, 0xace30969448982f6, 0xc6a66a3dd601b406, 0x72e67e531192a576, 0x9e1da427ee46f6c8, 0xec42fd80bd74bc48, 0xadcad98799288299, 0x53377fd2772f3204, 0x00000000000104 } }, { { 0x720b45be36846371, 0xfaf0ee1c215ac0ba, 0x322a6582b14f5a26, 0x987cbf3c6a517fa7, 0x7cbeb5dd42740836, 0x1cad80fcfcc443c8, 0x357e2d935679ae72, 0xe0510e4750e103a0, 0x000000000000bb }, { 0xb4d8127a2fedd5f5, 0x40ee30a3509bb1aa, 0xd1b2c04cc503029d, 0x86deee29ddec59f3, 0xc83850ca1459217a, 0xefbc533f6d88b5b7, 0xa109e1705d0bb9a8, 0x330dc886cc0a345b, 0x000000000000a8 }, { 0x450a9e39fda62656, 0xbbe60d6b0b1674fa, 0xd8726a14d831bc6f, 0x1091cb568ea91abd, 0x2a906e06a99f9c6e, 0xb4a4e55e784e5e7b, 0x8e70c5adaf46bf1, 0x3109dcc808ea48a6, 0x00000000000087 } }, { { 0xee4f2e2c5d65aad7, 0x8e25b5b9310c7d02, 0x62c1ced54a5ea048, 0x23cce7ee583c44d1, 0x706aab6d46cbea1b, 0xac47e4026b364b56, 0x2cf1185a5464c14d, 0xe2931f5398135e9d, 0x000000000001b2 }, { 0xd6b45a80b12b1ad, 0xbaeeab9eeca38e44, 0x7b7596f530710f1e, 0x57717fd1cfd3da09, 0x30f59c2571a76d55, 0xbd47b197a758a00f, 0x6a97cf4ce0f12d96, 0x4efaf60fb8675d84, 0x00000000000150 }, { 0xd4cea18604ae76ac, 0x557c94356727a2e, 0xd0fc7af492ecc9d1, 0x8caf1f581ffb4bb8, 0x97c40791fc343d1b, 0x5b47cf05a042e00e, 0x8f54ba905fb15c29, 0x583b4d4557d8a22b, 0x00000000000030 } }, { { 0x211ff4a0b9dcad73, 0x7eb2a3d605ad4e4a, 0x173eef56c084e960, 0x8af566e3d494a08e, 0xb0851e8b8535981, 0x6fedf002ecd5da23, 0xe7309fcfbb88516a, 0xb1fc11252975413, 0x0000000000004b }, { 0xbc954af9d417a18c, 0xb98bfb3af7cc3a52, 0xc4f431839df4b96b, 0x4977728857abfe60, 0xcf8ffd39e36d2e7f, 0x8fc87354e3ad72a, 0x980299cdc3b4e623, 0xc9a087420691c4a8, 0x00000000000110 }, { 0xa695b04d7a2f9a2e, 0x63b94970cb766719, 0xf9750cb5f6b0fd19, 0x88fea90fdb929f2e, 0x1641abf675614479, 0xa6270de5c1688e32, 0xeb7c0f4b730748b1, 0xea728104cc39c266, 0x0000000000012e } } }, { { { 0xd4ab404a525d9714, 0xbacca96df90af935, 0x4e4640d077f2dfb2, 0x226fb868fdb676e3, 0x60909b2db504dc31, 0xe6bfc7cf3854ed5b, 0xa1bab0cffd189d50, 0xfc2be05c5682b9c6, 0x0000000000003b }, { 0x75ade1b46de0f921, 0x61ae9599d9e3d2c9, 0xfd51c3260cb7734f, 0x9f676c6972c27a2b, 0x1931d15245c14e50, 0x410ce3c59486ba91, 0xe15520eaeda44b87, 0x735f0227dea2f8b, 0x00000000000125 }, { 0xca8d04dbf54658e4, 0xb6a797ed9378623e, 0xce13a72e2bce1734, 0x3244abab3c90a0ab, 0xb12b8c5265945f5f, 0x599b59acc12ed154, 0x27da99865afd1425, 0x3f12729631c313f9, 0x00000000000086 } }, { { 0xff803a7e97198ad2, 0xea62bc7a8ef2a870, 0x9b08ecc0218cd8f7, 0x1b272ab851b26678, 0xf5ee6cb915c8d4f8, 0x698eb0b9837e37e8, 0x168174e0d21cbdd2, 0x9e896c1341f0d4ed, 0x00000000000002 }, { 0xd9f483c8b40613ea, 0x8a6a47dcd7eb059e, 0x5195db5c51fb649b, 0x45d31ddd02703b71, 0x89aa80ba4af7e859, 0xed5e73bafdb4618b, 0xe74b9f01f81f36ab, 0x46f01934cd916149, 0x000000000001bf }, { 0x99f4705fe5c8e617, 0x4dd2ec2e205c4b5c, 0x13c43f919f1cf0c0, 0x33bb3860142131fe, 0x81c81a017239958f, 0x20e20a4668090dab, 0xc5851b18816f473c, 0xaecb15fbf1e8cf74, 0x000000000000de } }, { { 0xc8695602cd7ab305, 0x34428f48cf36981a, 0x2317400acbd22915, 0x8972d78148aa16f0, 0xef84d2d9b99edf67, 0x7de9e07b2b6d609c, 0xcf983e6ce4678196, 0xac5f5951abe8d846, 0x0000000000009a }, { 0xb8a5ae7d4f4d4d7f, 0xdfaab5f02aae7278, 0xc9aea997f72335ab, 0xfab68e12d7cf0208, 0xe63c8aeab32dba49, 0x3312314cdd5f2b66, 0x12c336ceb3a2e8bc, 0x496232980a4a639, 0x0000000000019c }, { 0x65fdbfc4d25b4d0b, 0x170f775e7d875524, 0x5691d0b959f0dbb1, 0x8330cdfa6c1c3c93, 0xb50d7ae7ecf6a3d1, 0x79dfb9c6c76e8386, 0xbe99bc92d876b4e4, 0xaff80f2d8e29a399, 0x0000000000019d } }, { { 0x3b2331b6cd159d8f, 0x6b1ff2b328448cca, 0x3bd7b6dacbfdf0a5, 0x572dbe3bd6743896, 0x3cd0d593836741b3, 0xabb1c68e0f0cd8d0, 0x24c6164b1a3155b6, 0xdcdc2e62421f872e, 0x00000000000066 }, { 0x1ee1b8c7d8e32fe6, 0xf94bf2cc8d84a724, 0xf2a156409e04ea60, 0xa5065de8573ec41c, 0xaa325f323c5735f8, 0xc931ed59a797c205, 0x197270ae7683f9c, 0xfb429046e2a00dae, 0x0000000000010f }, { 0xedee5724f5beeccf, 0x8a1e7068a430f93, 0x73c62029c209f632, 0x301ef5965f545fc4, 0xcfe50e07c49b60a9, 0x4ddfe08ca998aee, 0xcfbede730b2ae37a, 0x8ad9d942dfa4f9c7, 0x00000000000137 } }, { { 0xcf2c15f18f0e195, 0xb2b7468858b8239c, 0x574d23582d666642, 0xcbec7a670e6e7cd1, 0x239b2a8ca19ac6ba, 0xc3702a27bd290fad, 0x84ca6c8a7ec6251e, 0xd42340566308fa1b, 0x0000000000014c }, { 0x1b6f55d92c62c7ab, 0x4810fa49ab3d917c, 0x171de54f74a4284c, 0x85c951e0cafcc5fc, 0xed0fd940da9e48b7, 0x377660a34bdae120, 0xb81bfd992f5fb186, 0xc3958dfa9f60a329, 0x00000000000020 }, { 0xe054f6c788255c21, 0xe8f2d2d5a6a98532, 0x578d482d49adbcbe, 0x6df3be857c7a58ff, 0x1749b893148ccd4, 0x8456786db61143c5, 0x356aa721dc6ca996, 0x11229d306298c4de, 0x000000000000c4 } }, { { 0x3e70b90d9816d966, 0x855a65503fdd7137, 0x2bd6395366261b1c, 0x839cf09766bd1408, 0x9ca2b6f1f320ca96, 0xb11ab8b8b8c0abe5, 0x41686f0b02397208, 0xe55bd3c499c6a9a, 0x000000000000f7 }, { 0x45e2e4752e5bed32, 0x937bcf5290e91b4, 0x51f8ccd629a78d9, 0x5727be98b4219de, 0x55c1e9ca5d5158a0, 0x6bc7fd115029ec10, 0xe49abb29d4a430cf, 0xdfe232419a993897, 0x0000000000001f }, { 0xaab1be56fd4bb771, 0x5dba92ec34abf5c9, 0x828bb5ca7dbdd811, 0xed8984c5d1428c83, 0xc79a45d4320d50d3, 0x25185d806a493454, 0x193c57b62b66940a, 0x27609cfc6f0703ed, 0x00000000000028 } }, { { 0x3b74e55974629211, 0xe6f23931d2a86095, 0x1399185c34870277, 0x596f6211c7150a35, 0xa51f8f2beeea6825, 0x92822465fe2b8860, 0x8c45da1918e152bf, 0x6f1792ba46d673e3, 0x0000000000010e }, { 0x94a6ceca8813bac4, 0xa3548c7d638720b5, 0x1a4da58a605bdf65, 0xbbc7a781d73ea5d1, 0x66b9ddaafc023605, 0x8a5fe44a9cceec3e, 0x1da3c4f9a2cb6712, 0x75a2b8bdc088900a, 0x0000000000004e }, { 0x170a6e678c10dda2, 0xf1d4f0c1966b80c0, 0x624355f00f1cf1d8, 0xf3ab6401fba7e2cc, 0x1db1c8dc28cd2780, 0x6cba4fa359a6dea4, 0x8078858d75fb4103, 0x5f23d14582258db4, 0x00000000000042 } }, { { 0x804065c07582b8f6, 0x7893ccd079ea4683, 0x92d30b0364c3b328, 0x35c6e4b2b6245bde, 0xe30ddd056b454aab, 0x797d1b32a21a7122, 0xe64f763dc930a9f6, 0xea00038a8183336b, 0x0000000000005f }, { 0x744eb09ef23649b2, 0xd78ccdcea2869135, 0xfcaf427048e9e5b7, 0x48ed2d89f7ee838c, 0x8bc61e4a78f03d1d, 0x6563b400421a967e, 0x6bb382158999a4f5, 0x30bf8a4704435304, 0x0000000000016f }, { 0xd8f37e9175da4904, 0xe71651bef9baf864, 0x1904965a2b118141, 0xe13a5b4b6610f445, 0x2d33b2cd478d1a7c, 0xd2e306dc138c9eac, 0x6c104084b3d39c07, 0xfe3f9b41e7716060, 0x0000000000015a } }, { { 0x2f73089fc113af92, 0x51085ae95a2d410d, 0x61d8112acc0955ea, 0xcd0cfa92a2be7ba0, 0x1e4304c2925aba1, 0xb8ecd703b7887eb6, 0x3d962958b67d8a5, 0x4f9928c693a0d0e3, 0x000000000000fd }, { 0xd26121319ffac144, 0x2b7f95feb519270, 0xe201a8dbe3e7be8b, 0x8b86e481aea0ca5d, 0xbf69001a8805e54b, 0x6544e43abd068acc, 0x634fd8c07087c5b3, 0xeac10301879b76cf, 0x0000000000019c }, { 0xc2c6c7b4779c751d, 0xcd975e39aecad660, 0xbe2461a708849ab8, 0x333b5291271d2fd9, 0x65ed77215971be22, 0xe4ddf26568ad99db, 0xedd39e72dbd8ec53, 0x42470aa3384101d3, 0x0000000000015e } }, { { 0x30fb6fca2f2a8b8a, 0x33cd040ac3b3643f, 0x34661db758d22d94, 0x5451dd3b35c965f6, 0xf59bc99fc17c7e99, 0xafa80646c8e353c5, 0xb17bf93d92b001c2, 0xfe676bfee8f2e3fa, 0x000000000000aa }, { 0x29138ab86caf50b, 0x1cd38fbcb65c3d29, 0x8186d074f3e4429e, 0x59fe20400823967a, 0x8ab0e970865f8644, 0x47e5e97921aeec4e, 0x9ad9d121c1246f0f, 0x2fffa7aac601f5ab, 0x0000000000010b }, { 0xbb28ff2d9c7251f6, 0x5d48b8ce72be1cb8, 0x5a56644117628133, 0x33c38bcf1a17c84e, 0xf9f0b17a844ce6bf, 0x2de304091e9804d6, 0x2ff82e3b226061f7, 0xce68251dfcbed463, 0x00000000000041 } }, { { 0x37bb37d95c4c0918, 0xaaa78dc8c7ad03c9, 0x6f4943154a70817d, 0xc2b9a6fbcdeac8e4, 0xf09e02bcd502302c, 0x8a200cc313dd813a, 0xe7b4d9a62ee73f3f, 0xb3689a99298de9a1, 0x000000000000d9 }, { 0xda44ac35ddcd7a22, 0x6eaedca2117cc4cc, 0x85715a40ead3756e, 0xa3077fdf5555693e, 0xe1b1f61d40eebefb, 0x5e3584328e7235fa, 0xf2a8d20d7776afe9, 0x8c704f5aaf24d02c, 0x00000000000143 }, { 0x169ce8ea83e1d3db, 0xf5a284e8fd75dc14, 0x5330bd61ca12b4e5, 0xd5028dbc19b0f9e2, 0xa2d5729fd411bee1, 0xa07bba2d8c646955, 0x5fb8f53a86487c55, 0x63eadc068bb7a0c4, 0x00000000000024 } }, { { 0x476aeb84177ea457, 0x8f45a791ec7c3c8b, 0x801784c8b36b453a, 0x31b439da2d842f39, 0x94113b3da34953c4, 0xa03a46da7d27280c, 0x82ae19248e4558a7, 0x7985cb65b0299d4, 0x00000000000121 }, { 0x33f72f10e77e3428, 0x5990ba754034cfd, 0xfd280b4709853275, 0x872242deaedae770, 0xdd179615f0678e36, 0x9d57717967d3c9d9, 0x169269bb38f7646e, 0xbb8ee1b4b7b58710, 0x00000000000170 }, { 0xeadb293b57011cad, 0x1422a988f916a3f9, 0xc8fbd3dcb7b28128, 0xbe3bfa8151d03ad6, 0x7091bfc226b0b677, 0xe5ab0ba28ffa8a1c, 0xa9e9a1dacbb1952a, 0x331975fa3618bfe3, 0x000000000001b3 } }, { { 0xe1189aabff8d9002, 0x374675423058de46, 0xccd5badecb0d24c4, 0x8a181619642b5e34, 0x236ff8929854b291, 0x37f51e05559f72cf, 0xf90a8f1dcdef88df, 0xa8c5846506caa1ba, 0x000000000000c9 }, { 0x21868c1a63c98285, 0x4ebced9034647896, 0x7b2063b3dbe3c30e, 0x54a4522dae21c387, 0x6c2bc24e27142ad2, 0x6bd8d6098013cb66, 0x45dd2711f42d4609, 0x48e8f51ae9a8df55, 0x000000000001f3 }, { 0xef9243705bad52e6, 0x29d93cec9d350ae4, 0x46c99c5adb7acc8d, 0x9d7b1cc0b66440be, 0x406cf8ecc1fdff9b, 0x7a13a8e17dc76e11, 0xc99f03fa319687df, 0x2c98eac5fca5cefc, 0x000000000000b1 } }, { { 0x87c010c0dd6ab401, 0x50c749b37d33c3ea, 0x24ebce1e0721cc4e, 0x6a9d9e1da008fa12, 0x541450fd6e255bc6, 0x73ad065aed7d9b5b, 0x32de2c7da2bced62, 0xd94acfa1915abb2, 0x00000000000044 }, { 0x7ea4d5a982335e26, 0x9bb956d1b55c5dc6, 0x9d922a727a83da1b, 0x4ed91fc241d9075a, 0x5316420cd4f0a413, 0x28e2dd926b4b1f74, 0x16441269ebea9306, 0xc4fe231b9c33acc2, 0x00000000000158 }, { 0x191379da66155960, 0xbeb9b2b52cd07f88, 0x89f87dc25394c6f1, 0xeee12ef19a4d5385, 0xabb781df184a2ded, 0x577d4ce8ad4491cf, 0x65754256b4c8388, 0xa21187dc0d9bc462, 0x0000000000019b } }, { { 0x6d7a206b16f68166, 0x8dd990aa91c7f8cb, 0x495df904c8d28a99, 0xdd68c7c7481136b, 0xd3c27d9717ab9e21, 0x94509078a3724aae, 0x51954e024ad9ee84, 0xef626afc8c91704e, 0x00000000000018 }, { 0x2520384f30f5365e, 0x9d7092b8968340cf, 0x97c1b7e60264a5ce, 0x6773858fd661f589, 0xfadb4cd5f7d06038, 0x49af30452c27fddf, 0x32e5772922537f73, 0x48decb177f5da4b, 0x0000000000011b }, { 0x5d1375fad27e13b2, 0xe222aab6de9287a5, 0x78aecc5cc415ddd2, 0x11301b57fc720ea9, 0x79a9d5bee84a86b7, 0xe2ed99fab56aad86, 0x8fde308502e6a619, 0x1ad3af13603620a3, 0x000000000001f9 } } }, { { { 0x85511e51bca9f9c7, 0x84b754feb3bec5fb, 0x6b87ad1dccaddd27, 0x9472070703a524f4, 0xc5eec0d3f47c161e, 0xf960bc79bdad302e, 0x2f335231c8d93efe, 0x4db26861ca6ef92d, 0x000000000000f9 }, { 0x64834a4326561fdf, 0xada9915076a849c2, 0x62f54a0600e3cc32, 0xba61c0ba3c6f52e8, 0xdcd116478713da77, 0x77186b63e86d3211, 0xa9e47cb9a56afb09, 0x720037ef18ec976b, 0x00000000000011 }, { 0x604de3e761ea3815, 0x108c9bfd333d59d3, 0x79a8722a4ae8134f, 0x47ca845be4e75230, 0xea1bb1a04c9cdf9e, 0x839c84eb9be81b6, 0x110229652efb9db4, 0x5e786096b0bc2382, 0x00000000000064 } }, { { 0x94bf57dcafbf5bd0, 0x98c4c2cf1cb12cbc, 0x3dc63fbfad2013f9, 0xa2fe5a43f0f09798, 0x53c8a187acc59bbf, 0xcee29df425b03f83, 0x8181e0ad93c65d9b, 0xbac7ff2dab0ccd8, 0x00000000000064 }, { 0x8a14dc5ceb746465, 0xfc151d9651a6d0ac, 0xce063ddf1c4f3259, 0xa3b045212250b54c, 0x27c1a5197353250e, 0xefadf16173d23a81, 0x2e480e4b07ceab27, 0x1555c429633acccc, 0x000000000001af }, { 0x5ff81db002027c06, 0x8a9fd201a3056134, 0xcee710f8b0c0c0b0, 0xfb772aa4d679844d, 0x209cd4724f5d907c, 0xd9a2a4334c025d9, 0xec0bd8b60ef55b62, 0x3f2e15c6191f632a, 0x000000000001f6 } }, { { 0x4043a70e1c9c6c29, 0x32b205aa391ef49f, 0x27862f8ffeb25134, 0x4c81195dd9c5287b, 0x4a59fd65c301cf3c, 0x77997efe060db9e2, 0x5755ef34288729f5, 0x834d8df9cb21f587, 0x000000000001a2 }, { 0x5ef833288b615912, 0xe447a3dff14c3d0c, 0x77da83547edb9520, 0xabe4ba4069741540, 0xcbd957d42b2ace8a, 0x99bde3a966a58e38, 0x83b9f48abe0e8da7, 0x5beaa5eebcbe7e13, 0x00000000000108 }, { 0x8d6338a106b8761f, 0x42d3893f0124f5c8, 0xce1806262afbcaa5, 0x7e90e5f79972aade, 0x2ff904b2923fcec, 0xd5c0376f0cb564d8, 0xe0126b4b42eb15ac, 0xd4764ff592ea47f4, 0x00000000000104 } }, { { 0x8ad1b4265f325a25, 0x87317090b8407edd, 0x2751649811cdd3a6, 0xa93f26b11ba048c0, 0x33dafc167d48a948, 0x86af083f62783928, 0x81868b0390f4e0bf, 0xf6a1614b6f189936, 0x0000000000018b }, { 0x861665ac5e87ad3a, 0x617adc7bd74399d3, 0x2ef1b8f423af2fb7, 0xe3154ddbc49471e0, 0x7c767ceb0a5e9cee, 0xa72b0ae5ce545e8b, 0xd638128b65c52b13, 0x6b82c915f820148, 0x0000000000013a }, { 0x7285281a73875fef, 0x34b557b85fdb2228, 0x16c724a01ba89456, 0x23783be1b1d183df, 0xc41598bd61dc65cb, 0xf1c52bf608e72d16, 0xb42f82113e642f65, 0xd8f85a2414b8baa7, 0x00000000000121 } }, { { 0xefa07fc40e91907, 0xe9db2966d08504ac, 0x2589676332bbf3aa, 0x67320d444586b7e7, 0xb44c6f70bc523aa3, 0x52c32288e8d22a0e, 0x190f1e9704313b5, 0x7fecc17a5a5479d3, 0x00000000000057 }, { 0xc6a0adf5bd23a897, 0x410bb3cb2d8d624c, 0x5ef1599df5c7e2c, 0xf44e5ed60644d289, 0xd897b27b71290fa7, 0x12823f079c3a1b74, 0x62e16590fbe03efa, 0x337a283ad3d2c5f9, 0x0000000000003b }, { 0x49911b7804afbabc, 0x44bad68f157ec82b, 0x4e65f530bd314656, 0x7c1340cb9d5e4d05, 0x6b6fc4f3c5864f35, 0xb1ae023d7e8b62ee, 0xc8401884b77371f2, 0xf13d0ccde9d4bce8, 0x0000000000018b } }, { { 0x61f4c09fdd1278c, 0xf6b63cf44353ee4e, 0xb8f12c5d527366c8, 0xbd6c0baf69a24795, 0x82a358ffb899eedf, 0x50617c6648f702c8, 0x4911a29c1872dee1, 0x74c892a650f66f8a, 0x00000000000155 }, { 0x3c6ad8f6594dcd8b, 0x52493da9bac087d6, 0xc23973df7c9f88d6, 0x76e046604a335d2a, 0xcb3ab516aa0e0cb7, 0x1d8e5be6069de10f, 0xb61216b329688113, 0x7a8c29953a89f0dc, 0x0000000000015d }, { 0x4bb18d9e51eebdc1, 0xcccc919fd8f9acb9, 0x716a8eea9d5670a7, 0xbe8d46df983ad675, 0x2b992be7ddd618b5, 0xb2e8baf5200ac66e, 0xa5ffc4fc17034fb9, 0x8d7c1099163bdd16, 0x000000000001c3 } }, { { 0x83a35cd21855ff3d, 0xcc1acbf3ce7d406e, 0xe6a43d94f067aff2, 0x3a54260a5dbfeaf1, 0x8bb80e14a75ec79e, 0x926c77af0364c8df, 0xb2be115fcbdb5c5f, 0x8fb714590471dc92, 0x0000000000007a }, { 0x23ff5e70bdae6acd, 0x9af1d58a25663be0, 0xbbc20b1265f31490, 0x658e22aac9df49c0, 0x83586fd1afdab72f, 0x259d7cb39d76eca8, 0x8219d47affd176e, 0x8baa23b2da2c81df, 0x00000000000167 }, { 0x90f4b5d76cf42348, 0x37c9e517e646af98, 0xe582629db1befb9f, 0x33092bc9e28a6d3e, 0xb6a31abd7f80c451, 0x8d9d3d427ae060f5, 0xf82ee0124c708eab, 0x70a5b5137da9e168, 0x000000000000b9 } }, { { 0x6c0676bf6b4ee6ba, 0xfc369559ecf4ea02, 0xdeab33cb385e27ef, 0x1c9943635724e1a7, 0x15069e4b3fa95e70, 0xde2af594b30c003c, 0x110a8b8d71eecea4, 0xd1b2878c9359fc0d, 0x0000000000009b }, { 0x346f2f0b79ae50c0, 0x7eb8a3c5c7c2c133, 0xb5c1c7d39549e419, 0x1ec1e7ff597b6da3, 0x84f72cc51e3f15e6, 0x3f196fb4ffad00f0, 0xa487a25b9eb5ad96, 0xcf78fcb4af08b3a3, 0x00000000000047 }, { 0xb2eb4ec804468880, 0x2f6281771f0253d3, 0x9d9d51429ca46b8a, 0x57d65bac79f3dd73, 0x4b5c05b3958ed394, 0x3c6ecc5a29a1633, 0xd137ce2b4bcabacc, 0xe68bcc6c323507de, 0x0000000000017c } }, { { 0x3eb7778cc8c62970, 0x266429a01a7598a5, 0xbdc27d47a8887e3c, 0xcdfc8f8973f817fe, 0xfe5fcc775e771671, 0xfe8dbd3b71f1d4cc, 0x7e69911d16560c1f, 0x4427e5f180841345, 0x00000000000176 }, { 0x27b5e70378c36719, 0xcbc0f4f260941d23, 0x94d4eb74450fc91e, 0xfae8f52ca0338905, 0xe4811eab869a6457, 0x2fb16798344e2856, 0x6b7de47205a5cd58, 0x73c1ced1b9ccc32f, 0x00000000000158 }, { 0xbeee4b73f69a14e8, 0x5deb9cd9a866004d, 0x7b4cb3a9d87a0274, 0xcc00758fe9570c3c, 0x5547d789be0c9d08, 0xc7192f7c4b6047c, 0x5df86b3d91bc6df6, 0x2c3b47e02baa4ea2, 0x0000000000016a } }, { { 0x24fb15a5588b4ed4, 0xc6b6a44cecde2504, 0xda3de94993d8cc00, 0x1b910485d49240c6, 0xf12b0459b37840bd, 0x2fe92466d97d50e0, 0x69de331ad9f47d93, 0x1482fec5f1faf6bb, 0x0000000000014c }, { 0x3c83ef29c49e652f, 0x61cb6d7fd7184550, 0xa5390ae12fe8662d, 0x279a6b2d53b52296, 0x129002467afd77a3, 0x26d1996bfebc91bb, 0x932faa4354ff1cf1, 0xaead388aa61c4507, 0x000000000000a5 }, { 0x898eadca275f3076, 0x93bd1d1a31ec12bf, 0x30733b7cfd7436b8, 0x7756f96299604a7e, 0x4a3be6e0016197b7, 0x10b967fd615b616a, 0x245c3360adcf1f3e, 0x9cee55fdec31869c, 0x0000000000000d } }, { { 0x4feba5d93133bf39, 0xd6d095a0538cecc3, 0xb77ef3136dda6f14, 0x1a8e85b4551f70b9, 0xd6d067d1c1b8bf33, 0x13b9f521716cfeee, 0x45659bc307c6aad0, 0xa261c755b8bddc29, 0x00000000000098 }, { 0xfa408ad05579967c, 0x740275d6c5357895, 0xf1567491ddfeafec, 0x7a5addf1522825f4, 0x67ea2b9cf7dc3857, 0x78710b81ef62c48d, 0xa2937585e0a16bb4, 0xa7e2b35618f43e37, 0x00000000000010 }, { 0x57e92ce286cb9f9, 0xb25300dca59cb5cf, 0xe209e3d3505849c6, 0xe1c66cfcc8888015, 0x6d630da130d54555, 0xe3021549e1fdc18b, 0x47b12e4be5b1bd88, 0xde0b85d5963f8920, 0x000000000000ef } }, { { 0x1735349287f14080, 0x388683c77168c17f, 0xc48208deb5c43c3f, 0x9f5db42029c5c2cc, 0xc42fc6c4da4d31c1, 0x99c5946e691504ef, 0xdbb7a8a42dcf5f46, 0x4f909e3ca0c8427e, 0x000000000001f3 }, { 0x1e64a7e38a779a4a, 0xb00d6c3dffc078b8, 0xafb4222afb112388, 0x38622fd0822dc314, 0xa34d13222b13e234, 0x83bb856e6652da8b, 0xd32e1befe617b66, 0x9b25d8213c3993a9, 0x00000000000023 }, { 0x7e523525f621bc0a, 0xa4e16c2e3fb0004b, 0xce19b8dc86763d28, 0xb4deb30b07c9a860, 0xdf8ceaa94847bcda, 0x5f16344fad078424, 0xb867d13dc07e82d3, 0x3b5270fd05d078e7, 0x00000000000029 } }, { { 0xa86a80057315422f, 0xbb0d6f5bf1253aad, 0x619642271f642fa2, 0xe35a497fab06b832, 0xd1fe7cdf4aaa5e45, 0xc12ef3c7d0d25350, 0x8fa2d4e3fcb74a3d, 0x4e5d12df572b3dbf, 0x00000000000126 }, { 0x9db46b877a3a09e3, 0xdf2a821e2813c093, 0xc255bcc314882b9d, 0x4a80d492fe8a5d46, 0xbe6e016e0a739846, 0x1da613f4617b3f04, 0x6b60c8dfd5affee9, 0x43f6cdae977d1b11, 0x00000000000150 }, { 0xc06e57819d20206e, 0xe68e9158fed8a169, 0x82dba5cc7b46b8fb, 0x54aa31bb3f197a32, 0xe31edc7ffabf142b, 0x908a5d55d4e1232a, 0x1c7160af33a70b05, 0x5ab05e316d8c93c9, 0x00000000000072 } }, { { 0x941c3ea522b19c3c, 0xb93fc63feda34c0e, 0xb08cf17e8ce865ae, 0xdbc40a1d84a9f2f5, 0xe1e493657875c6e, 0xc50910ac6d3ef1b6, 0x7a52f651ab78540a, 0xeca969b3fad50801, 0x00000000000073 }, { 0x33c71e89db5ff71c, 0x87c421e205a3a421, 0x6438c7edc326197c, 0xd64ac61411a58dd6, 0x8853cf2acb7c708e, 0x4983f6d7a6024efc, 0x4d4ec43408374195, 0x3b2f7c9fe08b849f, 0x0000000000014b }, { 0x44eef5dbe848790, 0xbce1237968fcd976, 0x497be6f4daba9258, 0x3b3a365d0e0a3dc2, 0xb4e453d0f32dd403, 0xe0a91f321e7c6aa1, 0x2c34fb13b890641a, 0x33b721f8f0a852de, 0x00000000000189 } }, { { 0x4202dcfd66494e43, 0x1aa757df2d682719, 0xc72efbeefbba4f14, 0xb5f585e09cb703fb, 0x98e32b8d7e7a5139, 0x196bae48285647a6, 0x6e9d1aca4257749d, 0xeb5d5721398ce9c6, 0x000000000001a2 }, { 0x55f3c9d2ba6edb5, 0x61d11dfeb7f58a2c, 0x2c8f23dc959a8981, 0x61d1cde350d57fe3, 0x7b84f9e7f4374856, 0xd37144787676b57a, 0xb1b3ea6aed86f1e8, 0x401877892fab0c1c, 0x0000000000006a }, { 0x787df4e5300f0a87, 0x23ca6cb4f20fecbf, 0x7567ea6f3aeffd9a, 0x46ced8c838f33748, 0xe78f06c371d7806e, 0x903e0ba8055bf6, 0x216155cb24cd24f4, 0x600c6b37a9915855, 0x00000000000056 } } }, { { { 0x317492673dd29b39, 0xc29ae275eb490c88, 0xfc6df5ca1af52383, 0xde5361eda0e79094, 0xd1e194356e8b25a0, 0x2aff5ddb62a2519b, 0xe51fd50c482cb80b, 0x542bd73882b425b1, 0x00000000000153 }, { 0x8a88a243cc53a6c3, 0x3deed7c2c9fd5ae2, 0x5971818b4e5eea06, 0xafd532df89dc4ee9, 0x65ecdccd9bd3c8e5, 0xbf13b477e9aa63f1, 0x3818233a930b4d3c, 0x88dcb10073c2e84a, 0x00000000000046 }, { 0x5aa8087fab5eda61, 0x93f82d22de45dad7, 0xab595fd2dc9aba8e, 0x27c6f343dbba9f9f, 0x7a30fd4f5991bd77, 0x462feb9adba36567, 0x5e84901686658d93, 0xc0de6e10f0dd9002, 0x000000000001ee } }, { { 0x8a9d18fd3004eac8, 0x69c332617e5ef6c, 0x2ad7ec2f03c1ac8b, 0x87b06c250ada3eff, 0x4a5188385de2401a, 0x1fc236dc5b65fdec, 0x56e3794cd4e9bdf1, 0x4230ed706cbcf668, 0x00000000000192 }, { 0xea29762dd277deaf, 0xf9a0f2acd9334f3c, 0x5aba8ad35119ec59, 0xab98cc70b0d42c61, 0xfce852182b9f3170, 0x2e4d293a57c5a291, 0xd6c8cf66d37e5abd, 0x8bb9aa1e2373ef24, 0x0000000000008d }, { 0x390fd111e276ceff, 0x4a7c0179660de467, 0xc1cdd9ee630a8721, 0x949bb27768c698, 0x1368ab3d620d95db, 0x74c4a5d9db69ea48, 0x38e81bed4ee61221, 0x5c30769dbe5eef2c, 0x00000000000107 } }, { { 0xda2beba0b9788e0f, 0x20364e4fc42600ee, 0xce862b4bb7ce11c1, 0x1ebf4a763bfdea65, 0xd5f7fe79d1bbcd8d, 0x6c2d383b2d3a29b3, 0x818616f7fc157ccc, 0x5a443031800afa41, 0x00000000000124 }, { 0x927b1bc4010d5865, 0x577a39a8fcf5efd3, 0x74556b24c068a914, 0xddeab04c4d874839, 0xc164a0691908038f, 0x77ba466149b42892, 0xeb903f681c348748, 0x9d04b7af71975b5c, 0x00000000000146 }, { 0xdf1ba2bcf3b61d3b, 0x5bbd29889b1d3390, 0x91cf1ab3a97a6c60, 0x39f46e995000fc69, 0x1a3563a5098bce71, 0xa6e68bfc872e022, 0x786663ca2cdca984, 0x5519e97d63619124, 0x000000000001ad } }, { { 0x7db175dfa17a4551, 0x21c6efd7b8b8f419, 0x40bdc8fccee12db8, 0xc53383e2158fa51b, 0xf77dedee3524f82d, 0x2aa3f93950857e3e, 0x8c3f472d3ae34a10, 0xbddd970c44c689b0, 0x000000000001a8 }, { 0x5f1ef53c8501548b, 0xac537784cdbb79c3, 0x622e8fdcf459a03b, 0x7799b065f16766a5, 0xbc17f8f252a30e13, 0xd471d14a6d38ee85, 0xb439cbc1b95f8bc9, 0x92303b848d41bbec, 0x00000000000011 }, { 0x98a30ef249091112, 0x599842844b32c38c, 0x139b1db5c35abc47, 0xc42d41615cd9af02, 0x1dad54c4315e27ef, 0xfbdd271156a9bc3d, 0x65eb912210f82799, 0x99be06182606f75a, 0x0000000000002b } }, { { 0x6eca8c2526d43941, 0x61d2751994e8025, 0x96c095ade03d6647, 0x50c689db7f410b67, 0x46bfa7242922147d, 0x280b4e602afe27ff, 0xec4fb5b1a4e11444, 0xbe551f0d9eb243d5, 0x00000000000191 }, { 0x4c758416f0672116, 0x1d3d07644d8b352e, 0x8752330906e05a80, 0x8f505f58d267505b, 0x5093adcf3ff3dc67, 0x95f08406bf7c6591, 0xd8711c911213b133, 0xf93035bd5f0f4fe8, 0x00000000000006 }, { 0x663666f306b57cc1, 0xd294087837ebaaf3, 0x49dc2f365a3793d4, 0xca2c26efcb2825b5, 0xdbf87f5f6f56b571, 0x44bb5df44e92bdf9, 0xecbb7a58b86a45ac, 0xc7f00349b0d1b91, 0x000000000001e0 } }, { { 0xb144b982e73068b5, 0xe8f9c16390b47b8f, 0xe0fbbf01a52073b4, 0xce35ffd6d94dde4f, 0x3948b90f53005d2a, 0x2c652bcbd2a2ccde, 0x7a99dac66d0c309a, 0xd69f037d38e864f9, 0x00000000000054 }, { 0xad41a880043ab76d, 0x5fc7be82974b19, 0x69a3a973e969b9da, 0x41465c1e0c61a57c, 0x1c95d93e6fe3fd5d, 0x5060706ab603c04e, 0x992f7fc2bf8eefdf, 0x633928a97694d729, 0x0000000000002f }, { 0x8d985e7e2e00a16b, 0xc1a0141de3383810, 0xfb99d9e8f0e3009a, 0x97ec2ad1cd9ae463, 0xd119413155bddba5, 0x58521bcdd01f3cf6, 0x1b9500cfcb68c3fe, 0xd04082ac1677e1f4, 0x00000000000019 } }, { { 0x2da7d5e3093bbd6, 0x408a15baa6b85810, 0x6f99a28dd69d83b6, 0x82affdfc61a211b3, 0x80dfabbc7ba623b0, 0x3ae5700356c5fe5c, 0xc924c0005de48f94, 0xdeefba8bb444aec5, 0x000000000000fc }, { 0x93ba9bf0ef7a45fd, 0x84a4d2f686c9e734, 0x78551d92ba7bb9f0, 0x6bc36e8e18c005f8, 0x109c8ab33836b021, 0xb0060ded9eb0d0d8, 0xdccef789ce7152fd, 0x7a9560716c8ec823, 0x00000000000023 }, { 0xdd576457271c24e4, 0xcb9fb9dd29e525b2, 0x4b9e88634586b86d, 0x724f46c0e9442490, 0x25bf1cfcde8f11dc, 0x55820cb27ce17aef, 0x4703185b14c01761, 0x98dc04edcd82c107, 0x00000000000157 } }, { { 0x1fe16877a8c7b2f, 0x1cc7a242c78f56a8, 0x8ccf97a6dbf00583, 0x4cb6e3bbe5472d44, 0xec272df6548518b3, 0x7407c262767616f9, 0x96f484b81c0ba93a, 0x6542d1065ab8cc73, 0x000000000001e9 }, { 0x46b1fad7670353da, 0xb85ac03bc13e983d, 0x25e54adc588555a2, 0x9db8cd8d769ee789, 0xa5066a880d7da06, 0xe07e74d0df1f01cb, 0x643d032e6a0d1eeb, 0x25a2c5798e9ce3e2, 0x00000000000019 }, { 0xc2c32cf0c06fa6a0, 0x4295bd3f2a38941b, 0x4fd0950ec2db2f3f, 0x731dbefdecd3bdf1, 0xde9246f896000618, 0xd3449fb97af9b747, 0x99f0a27a1437abb9, 0x6bf15ec8a789402a, 0x0000000000000d } }, { { 0x7df30492f04dcea0, 0x9904bd1cd53c5850, 0x808e9f67904c5ed7, 0x27f1017ff2fe3b8a, 0x97fc18160b85b4a4, 0x6b34c7c1e1e6ba5c, 0xe697c8bb8253e613, 0xcd6cb376db759cfd, 0x00000000000097 }, { 0x3c9fdeed6eb7780d, 0x457ff5a64ccbc4d6, 0x153c0a7cf432b11c, 0x9a601628cad5f4b8, 0x8c5cd4e3c53952ee, 0x8f85dc3dc60f5dce, 0x7c43acc89b28716, 0x95b6290f44c59458, 0x0000000000007f }, { 0x4fe066f188a4498d, 0xbb2912fc089b6159, 0x4c18aec4f39c5533, 0xc224e2dbffdc3840, 0x87f72e14db3ad6d, 0x46f453fba3c344ae, 0x7718c42e6e7ffb9f, 0x6aa0a7b1d5150b49, 0x000000000000d0 } }, { { 0x48fa73a2f60b3a91, 0x156bbb50b1fa1f, 0xb35cbbefb96d5963, 0x74e70db0c78b7d10, 0xd4dd32c1f4fba7b6, 0x97bb17140aa34dce, 0x695942882d288523, 0x59eb95e0a3c9ef7d, 0x000000000001fb }, { 0x5525500feb7fdc0a, 0x536ec24831b575c9, 0xc79f539c0207067f, 0xebf54a9af0c9871a, 0x428dd5e57d413307, 0x4fd44e33ed66a969, 0xf4951829eed89e9b, 0xa315415031a6124, 0x000000000000c4 }, { 0x25fae562964e1329, 0x663a880fa532f578, 0xa42750540177606c, 0x5c7d3a4e04eb6c1, 0x9d96538cec7e96a4, 0x3b55cfbf478ba451, 0xf031bbd11e59263a, 0x718700f10c285bad, 0x000000000001eb } }, { { 0x51b7641c05c674cc, 0xf2fa5158ce52f66b, 0x8ca46212cd87b991, 0xbfaae3ee6c24134b, 0x211fe3bb061cb512, 0x126aa782e2a7bd15, 0x23459e0e2187012d, 0xbdb883989ecb05db, 0x0000000000001c }, { 0x83848946ed9acce7, 0xe39a9d2280565e03, 0xda5a591764265656, 0x88a2c6fbb2c9a395, 0x6fb4f14f87030e3b, 0xb5e1097c95b62568, 0x646e398890d4301b, 0xf8b4d805c41b2cd5, 0x000000000001e6 }, { 0x6290b8549024bd3a, 0xc438b67520824704, 0x54074480e3dc3b88, 0x42edeff642799994, 0xcfd6ce95ab47ebc6, 0x725fec533fbd4499, 0x57c44f051f209a4, 0x8a4f0ebc8b57c43b, 0x00000000000147 } }, { { 0xea96dcac0fc04147, 0x9d15b3c85e2ffe6a, 0xe81b1a727c93ae3e, 0x9e8c544deeeaef66, 0x2c56fe21dc768fa1, 0xda046dbbc104e341, 0x5c07f7102fc6e22f, 0x63d7a55bdf56c0f5, 0x0000000000010f }, { 0x357cca3e1fdfcc37, 0x73cd2e902ad3c5dc, 0xd0819501f1dffd91, 0x931ba048b8095a65, 0x7b77ead11271b521, 0x3b1284d3f8fdd618, 0x96fd59c525b43fa2, 0x8eedb897a2873d3a, 0x0000000000015b }, { 0x1f03dd2e00b6f024, 0x21d247268dac6968, 0xfa833b3ff774bfc4, 0xafbfc550e957e90d, 0xe9da0a5513a3ca5e, 0x19ad6a765f9807aa, 0xcc4a3f17b592a33c, 0x52870da800d81bff, 0x000000000000c3 } }, { { 0x446e47b420881c19, 0x6cebbfb886d1b997, 0xcb8f514d3609062f, 0xcdc8fffa9d5fb033, 0xe353e0fe3b56e98c, 0x25af9aabd7eac7a9, 0x2f7fd456556f98e7, 0xcd19cbf1e6524c5e, 0x000000000001f1 }, { 0xa3597ac9d44074c3, 0xf4c26de90f49e42, 0x20db2fabc622b1a, 0xc5debc5203039a9b, 0x87ad10c0e42da98c, 0xf17ac7e7d9e72846, 0xc6e7ecb724c893a9, 0x75070b2ad956b5c0, 0x000000000001de }, { 0x90a23aafd641d655, 0xc15300dc85407115, 0xedbf734bfe7e2936, 0x92fd67cf859bfa0, 0xbb36f2a79e256518, 0xbeb98cea3008e90b, 0xb7d85c150c916cd2, 0xa9472c245f3616a8, 0x0000000000005f } }, { { 0xfd0609fdea581277, 0xb94b9c7ee447c76, 0x9c7a6fdd6a5e0589, 0x1e8dcb33476d69cc, 0x76a4a07f6538ca06, 0x5b07a11f385ab9f8, 0xc39579e548c1ec73, 0x152de38898923dbc, 0x0000000000003d }, { 0x6fc533b26ced21d1, 0xc7b626fb30dbb4b6, 0xb6576d49ccc84ada, 0x1cb6e7a6d6dc9c4b, 0x5e83cce77090bf4e, 0xef64d63858b61ea7, 0x93a96572699d4b5b, 0x1ba10bb86724301f, 0x000000000000e3 }, { 0xc3de7cf385de39a8, 0xf488e04ca9b872d7, 0xcd6b7c5f98cc6df2, 0x552c57cae919fed6, 0x41e89a5c1e364778, 0x96c5ed1151735c3a, 0x66b302cf1c2a96b8, 0x706140dc99e245f6, 0x0000000000002f } }, { { 0xb87e37765caad50a, 0x3ca3f3d7308a782c, 0xfa2844536066bc1, 0xf322e380591ad0c5, 0xe8dba6f977e55f2f, 0x3324f297e520888c, 0x6d255abb50b4e014, 0x3636ab64b3e10d95, 0x00000000000010 }, { 0xacfa5a79cb7064a7, 0x64f87829d99d0c50, 0x4b7c46be18b3c761, 0xd9fdb85749e76a7f, 0xe7560d5e95d35fe9, 0x1e4927e58a322a56, 0x1361fcab8bf8296b, 0xc69f6aaf490c70f2, 0x000000000001c4 }, { 0x563d38a35896bacb, 0xe6639e5f6bdd61eb, 0xf4101017d345dd6f, 0xdeae286d8370ac12, 0x5887fb6eebe9e617, 0x7dd5eb54c11727f2, 0xbd0258d6fa9e4d88, 0x8085d8ff5c50a643, 0x00000000000043 } } }, { { { 0xdc0da1093b6d4e9b, 0x9dbff5263a5c36ec, 0x6427e62f32acd163, 0x902daec7b3be3ebe, 0xd4af48b8ca60243d, 0xb173093bc8336220, 0x7e6436c79ddc9b28, 0xcac3be9943697271, 0x0000000000019d }, { 0xebc96ca29dc53051, 0xed86a51810ea035a, 0xd38806fd1d9dfd5b, 0xc32d63eb044ece51, 0x911bc803916b1d42, 0x4efbc290c4ac8fc5, 0xc30f9581bdb6fd05, 0xa156a2ec825d415c, 0x00000000000187 }, { 0x3c8f975f2ffa8db, 0xb582742c66b5bea0, 0x50d75929fe438078, 0xf8472bcee32c6f5a, 0x42a2d1c210c7e99c, 0x63c88e0adfb912d1, 0xa5e164476c8ade19, 0x4d346dcec7aa46c1, 0x00000000000136 } }, { { 0x941b04152b650d02, 0x85382f365ddf4f48, 0x72a6a65d76b6d4c, 0x746c79780845fb0f, 0x347f1243d980f798, 0xd8a01852917b3dd3, 0xce4b836429fc452b, 0xe9d7572d2a98685, 0x00000000000111 }, { 0xcb386375d4ffdfa7, 0x9ad833d0c65a5642, 0x646195e6d65c2d7e, 0x125984513222d111, 0xa3e88e4b4e765824, 0xcbbed2f303b98d89, 0x3517a6e4818fcc9f, 0x96afbab78c95908e, 0x000000000000bf }, { 0x276a346b547630f7, 0x9b1cdbc100654418, 0x72f9b50939830e28, 0x82310a3d67b21840, 0xe9c802afbb84ff65, 0xe3f1ed9de7c8b9bb, 0xbc049d99a16af67, 0xf38673575ce344c5, 0x0000000000003e } }, { { 0x7d244bb25ccd7229, 0x32e992cba1b580ce, 0xc1428cd343840358, 0x95611ccb3fc73b85, 0xb2b770180b7e088, 0x14afaf83cb036d79, 0xbff73af49a09079, 0x730a628767eb7a45, 0x00000000000039 }, { 0xefb9792bd97f385, 0x765f80a46b1a6f28, 0xba07520f6d977bdc, 0x6e97dad10e372089, 0x7f581e9e231712ea, 0xfdbbc5669e90a1d3, 0x11adba4a2456066d, 0x9beb33ef803127f9, 0x0000000000014d }, { 0x6cc4dcce2ded2ad6, 0xeec4d399d8b43727, 0xc895381cf491bfb0, 0x82b30858101ef8f3, 0x2bf9c53539ad89c5, 0x551beed9dbe75ed5, 0xff659c119189021d, 0x7489e44c28cd5169, 0x00000000000136 } }, { { 0xa09babaed436e3b8, 0xd9385634e1ecd881, 0x89091e17e1048d62, 0x4c9ce498c8a770b6, 0x365457e510339654, 0x16f8f2f4d9c977f1, 0x20d0329610aa91f7, 0x4cfa7af46694f6c3, 0x00000000000112 }, { 0x1bbc9c0c28d22d99, 0xb03a218587cf9a3a, 0x57fead633eddede6, 0x6a82a2aa5b2dc055, 0x9cae3343e7fa22c3, 0xb5fa54e883b9e5c1, 0x88a44f1f715be510, 0xbfa5694f13c6d724, 0x00000000000072 }, { 0x9e828d94e00ff16d, 0x4ad16cba94a5b2b5, 0x78a5d9799b60dd2c, 0x9cd8e04bfcdb5aa, 0xb1ffe32163076f12, 0x7e35bfa1e774fc0b, 0x2b2d580f0471814b, 0xa4b5fabd120e86cb, 0x00000000000178 } }, { { 0x1c7c9c26df7e03bf, 0xb5bff1d1b28aa883, 0x7caf699a09402fc6, 0xa03d8d6c6cc358ca, 0x5e2669c471ad237b, 0x41e62268c837f44d, 0x4b9dd8d4250334da, 0x17c6aa64d6be73b9, 0x0000000000002e }, { 0x1c7a06a89cf97f13, 0x863c26369bce3d50, 0xfcb0835c645489a, 0xedeeb819943aa71a, 0x502f5c4f0e421488, 0x7a5a124ecfd338d3, 0xfc7c36505444eb2a, 0x2cff641cb56deb54, 0x000000000001ef }, { 0xacf65d809d2737db, 0xa3eecb51e96a4c0d, 0x4c9defb1e2c41648, 0xa3f4fa0464aa58c7, 0x9eb65785e817254, 0x4ae57f00a5ae9dc5, 0xd8dced1d99f08a6c, 0xc992a5e55686343b, 0x00000000000156 } }, { { 0x8c5a11ef324f63af, 0x510329f0e5249a5f, 0xe5876ae4e5e03a3d, 0x439703ae9cdfdcae, 0xda97a61646d1c414, 0xf8b1deaa7a394eb4, 0x9801db780952aee9, 0xad696cc432d4dbd9, 0x00000000000091 }, { 0x26e1a54dec5dc270, 0x1802cda5a476d099, 0x2fbf8e11b244b514, 0xf6a23ba5f950b208, 0x2c32fb21096fcdc3, 0xa57cdbade71c3f86, 0x734b15b4fd2ffd21, 0x6868f9b9ef78c825, 0x00000000000198 }, { 0x920434139b1df54a, 0xc70815861427ba42, 0xe77c25cce2a52a0, 0xc4a3d420569e6c6d, 0xae9a2a4f9a90b868, 0xb1875056cf7057c5, 0x4a3746927dc026b, 0x30a9ed6152488184, 0x000000000000c1 } }, { { 0xebc14b32d64e82b9, 0x5e2d44e71c77a9ec, 0x57a8947158aba8e4, 0x779028977ef522b5, 0x552220a37803c4cb, 0x6e0a1d4af529b6b0, 0x7e2d0fe3240fe35f, 0x6885ce77ee3e2994, 0x000000000000b4 }, { 0x71bf178ca93cf539, 0xefbdb58c40fbe417, 0x7fffe70c904c689d, 0x6b9b936dca804de6, 0x637e67bca0b386ea, 0x5a883a3dc9a6f922, 0x6458ba431d875156, 0x8b55ec88ea81b3fb, 0x00000000000042 }, { 0xf33633d4907025f1, 0xe7cde501a40034ae, 0x339b69f6dc8a5199, 0xfe60c8f1f6d6732a, 0xa99312976bc0e69a, 0xa1c30077f4012a51, 0x20f8bb40e413cf35, 0x85de61b808942a4e, 0x0000000000005f } }, { { 0xad3d861d949872e8, 0xde378523640b047b, 0x6ad75188d6910f7, 0xed4fb77abb9f0211, 0x46136961022cdb7f, 0x889bb9237c9c896a, 0x498c0fbe25c44561, 0xb6d8d7bdb3bd363d, 0x0000000000013a }, { 0x9da47460d9f80cf1, 0x22ff59a5ab502dd4, 0x4f08898ceb418156, 0x74b3675ce179d5ab, 0xf83289c65c976ccf, 0x719390331dba846, 0x707f7f59a974d6bf, 0x76328d67cd5403e3, 0x00000000000196 }, { 0x428060e7551a9c0d, 0xcb4fc48c47cd7040, 0xc4a9b034f77a8696, 0x74fcd51fa83b500b, 0x4cf863b5dabeb48e, 0x66f5956c3d71c69b, 0x2b6dc6161da1b081, 0xed877a2e209f59d9, 0x00000000000141 } }, { { 0x412661fcaeee03ab, 0x92375adfe71bed07, 0xc2758602f184104, 0xebd1ed2468170346, 0x780880925088849f, 0x6cfe2e963f7f3a03, 0xe08e141ffa348c8e, 0x9dcdc3f254b6b7f1, 0x00000000000024 }, { 0x92960aae9a806014, 0x3212ab0529f0b8ff, 0xb0de783436a5a29f, 0xb093ca1fc53810c4, 0x3e0af6c15c3dbcd5, 0xf5b6658722930fcf, 0x535909eda3976c75, 0x203b1cf667e5910e, 0x00000000000065 }, { 0x134406b7c6476a3c, 0xb5e3f5a362f38a94, 0xd2ec90466bcfa10, 0x8d716fe726ec74f0, 0xd5d9c2ce13825a5a, 0xb7066f321f0afe13, 0x979f8351a2eb83e1, 0x850addf1809a02d, 0x000000000001b1 } }, { { 0x11cd37268ba1b739, 0x4e67cbfd77ab15bf, 0xc238a9d86582a1bf, 0x11f5001e870d5b7f, 0xa77fafc20c868778, 0xbf35d98e862043d, 0x1bb0fde3c148c589, 0x7909e9e156921535, 0x00000000000187 }, { 0x821ca9ffbb3c9871, 0x71e5f641838f18ba, 0xeea7c21b9f379c33, 0x54e1da8f6815682c, 0x81c1ffc4d78e908f, 0xe16d17c987186739, 0x6a93816a99e3fd57, 0xb6d8ea3f798c357e, 0x000000000001f3 }, { 0x611dcbb6ae73192b, 0xda2b8b2792faad76, 0x87358afd754ad508, 0x4b758fe95ec6c09c, 0x2117eb161c40300c, 0xf5ff259a43e6ea78, 0x9d6c54155605e377, 0x76be162762aa67a9, 0x000000000001f9 } }, { { 0x6153b2b26ea2a10c, 0xf1fa63995ceca301, 0xe4dc44c5e477cee4, 0x4457f752bfcdc17f, 0x8e093f312213b43b, 0xe6135d3789fb870c, 0xeadf06feac4caaea, 0xa6da34aafb7ba13a, 0x000000000001e8 }, { 0x97125805be605c4f, 0xaa871959c80b34d4, 0xd6b9706ca9167941, 0x59ff7261eff99802, 0xefc83ff59feb56df, 0x9d3adc02b48892e1, 0x2598883f6fe52f01, 0xb7e4a30ad376767d, 0x00000000000105 }, { 0x54bfaf925b10bede, 0x27e758bd43149158, 0xe843955260da367f, 0xc70671f029efe597, 0xa0b0d4d98eb24f40, 0xab25d43a720db914, 0x88c70e769301dc80, 0x1b9add65a0e25bd7, 0x000000000001e4 } }, { { 0xf9988c777a1bfdce, 0xd28e9ceb688892ac, 0x53b9c55d93df2c64, 0xe1c4b263740126b4, 0xa3324f5898f8e31, 0x6548a690d7a87d9a, 0x7c935cc41377b3a4, 0x9bde6010e04b3423, 0x000000000000e6 }, { 0x84b229b99425a397, 0x82aa196d084bcb5a, 0x3acd7e23830258d6, 0x8ada6083d2c34b65, 0xc4611dce63b726da, 0xd8e9826c593e9c41, 0xd72e224a7a754901, 0x261013fc11158591, 0x000000000000ad }, { 0x9613685c493a1b4b, 0x79fe1bdf1a77712e, 0xee42b3adfa9dcc02, 0x374e5fb7eb002fb7, 0xcf9814824b0109f6, 0x1d047f71fa313303, 0xd8376fb1d4523b65, 0xd37397c469224bd3, 0x00000000000050 } }, { { 0xa8f9f7b314641930, 0x2e98ec313c853255, 0x1c87b1bc85352428, 0xbee1f0207aba89d4, 0xb6d78b13c47cf364, 0x15813aa4fb14f756, 0x995fd98e78f3f373, 0x4d8ed034388baa88, 0x00000000000196 }, { 0xb15bb95e4906b249, 0x5f78528f24f40962, 0x70f8212e0896dfa1, 0x36f85860094a7f6, 0xe0850cf48705a42a, 0x9153fd956c49c651, 0x653bb8a312c66e1e, 0xe87df1e1af6410d7, 0x000000000001e9 }, { 0x48b0b8a3dc134a44, 0x68290b4b7d90b1d2, 0x4fd18a5908961798, 0x9ad1d965c081061, 0x1fbb3e234886a2c, 0x492350f610b72101, 0x3317d5b120b7511f, 0x786673ffb1fcbdad, 0x00000000000166 } }, { { 0xca3bbefbb88d5336, 0x525f8fad1a3fdc48, 0x6aa77bb5feeccc8d, 0x95e152ef42beee6, 0x1f16567eca409511, 0xec0f432ab2cd4ccc, 0xddebde11d62165a1, 0x92e7e0baa7fc4f6e, 0x00000000000138 }, { 0x7dd1931b01ed520d, 0xe81503efebce0d3f, 0xd6ff320d912fcdf2, 0x76016a48bff3ef8b, 0x96d6b9ea9b4f4040, 0x31ef9f15e125f5cf, 0x30e07bec1d3934f9, 0x70e8e7bdff77e8fa, 0x0000000000002e }, { 0xe24540e0864ef315, 0x4aa062ba428ed4a1, 0x9dd8efae8c829d6e, 0xc94ed260834c09f, 0xc6206c1327c95bbf, 0x2564d7dd6d4fb779, 0xb6bc399fc1367760, 0x6d20daccb6ce5c82, 0x000000000000e2 } }, { { 0x6e8bcc276cdc6a35, 0x62db043c33b6513f, 0x3aebadc1f29e5a9b, 0x28026abd51030199, 0xc89a902bfe76232c, 0xe028aeb1debd4500, 0xeb2985038b225153, 0xd6059fe5f48898b0, 0x0000000000006d }, { 0x988e238729a21e57, 0x42bcd9ad50a4e1b0, 0xf28c0ca8a95c244e, 0x9b14d9b386725a08, 0x233b20ed8d543989, 0x89f9540c561e5cb8, 0x2bded2c21de5ff1a, 0x32db0ca7f5794746, 0x000000000000ec }, { 0x84ecd583bdb8779c, 0x106c98dd5ef3f407, 0x7522b5d7a7603fb1, 0xa19741dade76541c, 0x4b6bcecb367eea74, 0xbb7d7d3feae7dc14, 0x8739e4677f51bf87, 0x95733cd8a855174c, 0x00000000000134 } } }, { { { 0xa98e6e603ca3577b, 0x73e80cec07f55873, 0x50c48dc8edef446, 0x8c7addc98d3e73b0, 0x1ec76ddde0b61ff0, 0xc882f85ef1f33209, 0x396f626d64895e8e, 0x5d3e2208f7594173, 0x0000000000001c }, { 0xc5916b6a0c63ace1, 0x80fb0adc9ebed8c, 0x8f468a035f990f46, 0x3dc476d2c98be277, 0x5e10a0910ad7a2ee, 0xaa70dda3143a32f5, 0x2374210da6ea3f24, 0x8a80b6dc6fca0600, 0x00000000000011 }, { 0xdbcba84b0d936257, 0x278612fdf0407c57, 0xe9638adc8d2a8a6f, 0xa6320545099eea40, 0xf26710cf092c4453, 0xd537fd8160a5e6fe, 0xff577a0d32c2c231, 0x544ec2a5db8b98e1, 0x000000000001d6 } }, { { 0x202966d64601285a, 0x6b5e4711b62c7b8a, 0x11afe38ca1c50cd8, 0x6de9073a486a06b3, 0xc299bbd18697036, 0xde121bafa095868f, 0x7f5c31d920ba2e57, 0x80c79650fcf562ed, 0x000000000001c9 }, { 0x528beb7f7eae4713, 0xf08331a6cfeb5039, 0xbda47311470f7836, 0x7685b575aa6d484a, 0x8e96a5dd3efe41e3, 0xca7f2c10215054fa, 0x35c96ab2ea43b023, 0x9294d93957aa044b, 0x00000000000119 }, { 0xd192ac3b5a82b696, 0x8edd1f4f7c05061b, 0x4c44555c3b23fe51, 0xecb6fadaaa30d543, 0x431ace55b0d92fe9, 0x36f9cac553fb1b9f, 0x788d4ece71fa0882, 0x845e77545476e3c7, 0x000000000001b1 } }, { { 0x36d3ebb9038a0ff7, 0xdcbd4a8879feab63, 0xbd6a573c6be14e4d, 0x509d5834bdb2c876, 0x856b76e43057b49, 0x91e48340a1f5036e, 0xb78e67425f58b703, 0x298ec4e8e96da0ee, 0x000000000001ff }, { 0x8a1956c552f78119, 0xf03ce40ef95ffc16, 0x60199410b171273f, 0x4f5c00e17263d1f8, 0x5dc63570947d2715, 0x4cdbcc0417290a29, 0x12f0c16fb8cd9b1c, 0xe9a6628306b7d483, 0x0000000000019c }, { 0xd077578ae7da2665, 0x7ce8f1d6f7ba71f9, 0x57950e11f4a8f0c4, 0x30a9ea46b7a2b7d9, 0xf90d5c8e3bd97223, 0x8c801c6370319785, 0xcc1f795bcf6510dc, 0xeec019e083859037, 0x000000000001c0 } }, { { 0x4996fce65bdb0fc2, 0xea6de3f8a78535d, 0x89b328e97b9cc385, 0xc1e10aa0b7b1474e, 0x3d52ecab754c7b9, 0x3b4be919b9046b86, 0xf4d5c71f630b4d7e, 0xd649427d1d204c4c, 0x00000000000027 }, { 0x3c8b8dace64859a0, 0xcde4d902a6789e1b, 0xc47e96c1d8fa85d2, 0xc3213aa378a7c345, 0x635504e85efdab78, 0xe62caf5250a484ad, 0x494d3c80715a2e40, 0xa2aa0d6fd3069e61, 0x00000000000199 }, { 0xa1694efd7621199, 0x845c78892b673544, 0x3c9410f5735886d2, 0x7042ae8d6e022f9a, 0x4d159f1a3ddbdd3, 0x69db6b5222f79558, 0x80e2dff9bff62ca, 0x34ee15566c9e16e9, 0x000000000001d3 } }, { { 0xf2693e89ec989bbc, 0xd426ae9943adcce8, 0x1d3b8b2b8b70b337, 0x56a55e7c7e211c95, 0x73fa578e39c63bed, 0x8eaeaf66f38edd12, 0x46e96311a1810359, 0x966639b59c58e8c4, 0x000000000001ce }, { 0xa82a49938fddbec8, 0xa9735d4b803ab90f, 0xcdf44f55c4e56ca7, 0xb2268704de769426, 0xee3567af703abf36, 0xea29174c56eeeb15, 0x5f1f4bae640b0253, 0x8006473afa5d29ea, 0x00000000000192 }, { 0x14b3ffe770ad3b58, 0xd6a7be3d66187f2b, 0x8069cabd48f5c54b, 0x9b578e8dd2bfc686, 0x9c8f3768b1a6086e, 0x74e0c7209ab6c117, 0x3b653ac886910889, 0xb6f4f478ca50a901, 0x0000000000012d } }, { { 0xc73d1214d5586248, 0x3f1ab235a146acc5, 0x7b1b3eb61e53e832, 0x4cfeffad881e306d, 0x89fdafcec792cafb, 0x178f433012190989, 0xcd716c8d1955a1f0, 0x794d61de4682383a, 0x00000000000062 }, { 0x92efc59265d5cdfb, 0x337d17d37bf6fbeb, 0xf312d3b60995ff42, 0x4de51ddf5596b2dc, 0x21a1d21af63c06c6, 0xd6a41bf0a3627ffe, 0x614fe8ac5beed561, 0x75ea49ccaa44bf05, 0x00000000000143 }, { 0x907470b5660c6caf, 0x6eff57549ee2d326, 0xd031b03bf99ef53a, 0x315806803f8f6a63, 0xeaecd95a47d129b5, 0xfac8fe37b8445132, 0x9c37a65ee92ca583, 0x7ff9e03fa6ee81f9, 0x000000000000e7 } }, { { 0x6cb612b707e60e7f, 0xe7c83f4f6302e001, 0xd0cc2796e6042122, 0x6e9c2ba91abd9c13, 0x31347a17179f4053, 0x68f7481eff7192d2, 0x214bcdb589bdfb81, 0x94f63a1028c7ce37, 0x000000000000ab }, { 0x4f9d27735dc8cd40, 0x1fe9f50cf0a59d0f, 0xb2164c27a84943f5, 0x82dd7a86bce5e4b4, 0x793013cdf1be81f7, 0xb438c7dad6075506, 0x97bea335d5f67ac5, 0xd2ab450b16f9c213, 0x00000000000110 }, { 0xf19525ede1740573, 0x4650f128337a5151, 0xf6901a6647c25e7, 0x9fb8e856716daa0d, 0xf0397894ce2d2ffc, 0xee23ea0196e9e193, 0x21383a637b76b4a0, 0xfc3da67ff595a70, 0x000000000000a3 } }, { { 0x46fcebae050b4892, 0xe362d5d88fb14f99, 0xe00d2ac99d8d9e1, 0x47ca31e53aefbbc9, 0xffae747607f6538e, 0x8b49095f0a654784, 0x3b30b462981576e, 0x794c8aa15f064e00, 0x00000000000064 }, { 0xb9212693c2c45f5b, 0x67897ebb1d8c82f8, 0x755110726656a6e1, 0x9e0999ffca3582e6, 0x32bed420e771bd14, 0xd12f23ff313ff323, 0x50afd7d235c1c551, 0x4c8b1f8654a329c3, 0x00000000000098 }, { 0x50b3e68b76efbc07, 0xc135a3b28166e6de, 0x16848a758b45e282, 0x5c60d5964839ff7c, 0x3c70cd086b749e69, 0x229174ce9b0e54de, 0x2a72cba3e084cd05, 0x8967fa99933a1db7, 0x00000000000115 } }, { { 0xd56eed0901c5025f, 0x493278e2da9c9468, 0x4593186a5e4744d0, 0x940557238cbbb3f6, 0x4391cb716b5835d4, 0xb1bbfc9e9652e87d, 0x959415d76c9667c2, 0xfe9e6a46f11f991b, 0x000000000000e6 }, { 0xa6b197502034ade6, 0xff15d2002406165d, 0x450af594e1680fa3, 0x510250b7bf3fb8d6, 0xa932f787f003fb59, 0x1293445743184d33, 0x854f33194712db1e, 0xa7d57092bf820a9e, 0x000000000001b2 }, { 0x626c1d8919ccb6b7, 0x73064d5a35a85b13, 0x50641b4410fcf521, 0x767f60620bed382, 0x9d051de070c8bb1f, 0x17e71da348546aa7, 0xb81f9de20864423c, 0x5d900bbd51f31420, 0x00000000000054 } }, { { 0x5e4cc776f2566247, 0xefec485e6c3d85b8, 0xa2eb4a542686af4f, 0x47f5268edae0d8af, 0x1725d54051545b48, 0xcb3a0f8984dfeee4, 0xf3af601c778120ab, 0x81aeb4eb4cf53c41, 0x000000000000ae }, { 0x3fe4a2f7612cf3f9, 0x7c32360937beebdc, 0x6fef470da02b58af, 0xc319dff82a6aa701, 0xe318de41f846fbdc, 0x457acc24293b9883, 0x98abe5454f922d8c, 0x54dbc9b04abf0881, 0x000000000001c9 }, { 0xb6851433711a4a53, 0x111c10f7a27baf15, 0xcaf45feac0f332f3, 0xfa9ff7c75351a081, 0xfa36556505a80c74, 0xe58f742cf6daccd3, 0xfb33860adb5c3d7f, 0xa7a08b666850df93, 0x000000000000cb } }, { { 0xd6754eb5a0b0b692, 0x9492e5e9b94abc97, 0x71a1045348ce012e, 0x174f2a88efb54e05, 0xe45db408af89a1e3, 0x937b3ee92469a2f1, 0x3299e893c4a1ca26, 0x181176a1f2e2cff2, 0x0000000000012a }, { 0xb2abd57b96bc92bf, 0xcc193903b88f817d, 0x172636a208f3074, 0x987e387b9d95b98e, 0xf355b8ec8d296f10, 0x6bef07d495410683, 0xc491090f497a84ba, 0x5bad43694e1bb34e, 0x00000000000126 }, { 0xdd8126914e194a7c, 0x78d96420fa72a231, 0x1c1d898460cf895d, 0xa24f7c7afd45ac2e, 0x8213d5002cf9cf5d, 0x89dc3e53b86267d7, 0xc996af08417f587, 0x25a009b711432835, 0x000000000000c8 } }, { { 0xa0f4c0257d3cb5c1, 0x1872aa7902684623, 0xa95d245b3e0d4925, 0x4ef0d73cb560fbb9, 0x4c7edb270ffda0cc, 0x58d04e6aa96b1298, 0x18d6a705fee0ca00, 0xad233af304c1ecef, 0x0000000000005b }, { 0xa6cbdda14eadcfa7, 0xabe4be865a13df65, 0x9eb16095b8fc0e4e, 0x22879fe7c22c5634, 0xe36a52401950b2e0, 0x69681b801f7454fa, 0xc93f71e887185123, 0xa4f6abdb8c6a79b1, 0x00000000000096 }, { 0x86aac63df620074c, 0x85ca4ca67fc9cd67, 0x6e2f15fa850e677d, 0xa68d34c219b68a5, 0x16856e83f1536bd, 0xc1367af6538e9e10, 0xb1b6c9f6bf8b631d, 0xbaf9feeac483a2c9, 0x00000000000047 } }, { { 0x5bb616ca894029fa, 0x5f8a9bc5384767f6, 0x568d81d0537e5169, 0x68b3cb0929f45ec9, 0xa5277d34fab02d34, 0xad2bb829649500ce, 0x4451c52a03650342, 0xb564216faf050934, 0x00000000000110 }, { 0x4d24f72c920dbf96, 0xfd0430581ffb3cd3, 0x8a90310a9a98392, 0x6541853d029f23ea, 0x5d907104e2931973, 0xf5b40cf169289154, 0x726056e0e9c23a8f, 0xf0d9d9797a7da42e, 0x00000000000112 }, { 0x7d44a847317a52b8, 0x5bfd39678102823e, 0xc08f4e4f7ae95b6d, 0x20e98be85d122ad1, 0x788c052ad0b4d527, 0x80906b861f18894c, 0x3dfd78e92966df3e, 0x60c19cdfdbe7fd37, 0x0000000000008a } }, { { 0x8c523a3d290432ff, 0x871fbac57947dedf, 0x13cf778e0078bd7d, 0x14dfe02e33d963b6, 0xceaab8a3e4ca089a, 0x8be53669d25c2830, 0x9a37935a1b5ce5f0, 0x42d9dc89a9cd5c91, 0x00000000000030 }, { 0x6c328bcab2ed58d0, 0xfb126cbb34b0a5be, 0xdf2dcefda6192fca, 0x9289132e72c62728, 0x4754b4d4a356071d, 0xabe365eabbae8d54, 0x685607173ad596d0, 0xf23b31bbb9ffd603, 0x000000000000d5 }, { 0x5669036cd7a2e8a2, 0xeab10aaf8dee6c11, 0x2bdde01d9a459a42, 0x59019fd968db1c3c, 0xd7bdca8a32295014, 0x9ef282c538082fce, 0x59815780d15f403d, 0x133330aa110f2920, 0x00000000000125 } }, { { 0x81f04b51680ee295, 0x143b4efd1be78a8d, 0xd87d1b0cc92fdd68, 0x3be8d5e90992a92d, 0x9c20bba7271a41a0, 0xa1ab3acc1483f6b4, 0xe5677fc1af5ac863, 0x81b110c4cd8b11d3, 0x00000000000136 }, { 0x59798aa51262987b, 0x87656d9a9d0bb55f, 0xb4d4de02decc25c4, 0x1702996bd2d26da5, 0x29946ba736ced30f, 0x862a19d26f8d1c13, 0x44cca6e2e8d3faf3, 0xfd678aee2bcfa4b7, 0x00000000000098 }, { 0x29bbb42de58a04e7, 0xeddb420a0a1fd8ab, 0xead0ff2ba50c7b92, 0x9f2ae3d65d7c2f19, 0xb765f56c6eb65e01, 0x18d939be675e5090, 0x205edcd628f26752, 0x5ee23aa542f09cd8, 0x00000000000127 } } }, { { { 0x73bdae91ce031de9, 0xa110610d590e5b63, 0xc03c173085d7f11a, 0x7d154bdc38f43d90, 0xd36e37d4c24bb3a8, 0xa80b6f33c8d3d086, 0x3f01f2cecf4c5a8f, 0x5a45697377322318, 0x000000000000b9 }, { 0x48306ee2a129ba00, 0x5f3bb7accb6dbebe, 0xcdcb86afdc1e7cf3, 0x963635a04446ff2b, 0x80ba7ce0f797d395, 0xbb42030ea713e2c8, 0x9bd29b4df94492d6, 0xd7a3c66bdef089f1, 0x00000000000165 }, { 0x8d6005ef56e1c6f5, 0xa793712360c65cc5, 0xecc014a2869d6b5b, 0x33f7e78cbe8ed7f1, 0xccc6c5630cd77d4c, 0xac95f39bc5b0b24b, 0x878c5fa59efa3a81, 0xc34d7c28806d5f34, 0x00000000000153 } }, { { 0x51d3e992bf7b6a10, 0x4014650632dc5c7, 0xe42e47594ecdd4c1, 0x422082ed42ac086e, 0x887d1d3cd6fca410, 0xe447b1f036e3c64f, 0xf287e8faa3d568f3, 0xb7add4ce0e84295f, 0x000000000000de }, { 0x1244cec4e5b41bbc, 0x5ee3f60f59249671, 0x61411145b4add445, 0x57c96065e5506f43, 0xa6ad379a21d2fd15, 0xfacec57277412cfb, 0x6b2a4fc97b459ce3, 0xc68b3fbbf4bcf8f4, 0x0000000000018d }, { 0xac7dffb2b7a61964, 0x65145decc2ff5ecd, 0xb48804a8f2157caa, 0xca4e6876b300d82f, 0x25c04a6869a6b647, 0x10c57e3aa39bdd73, 0x183ffc3cff18d349, 0xb239928080f6f1ab, 0x00000000000138 } }, { { 0x1ceba8096960ec99, 0x13f5b09fa9132d4d, 0x3d947421e47bc65a, 0xeead1aeaf8336b48, 0x5e7cad72e5620419, 0x7f84987eb43ab35, 0x519cca02109578fb, 0x1742b38fb5192e8b, 0x00000000000155 }, { 0x10161061eba89bb1, 0x774fe05074fa3956, 0xf1f23553996ad18f, 0xd9b0aa148aeaadd7, 0xfd7697a9414e2e31, 0xf075120ca72c0ba1, 0x5ac870411c148e8e, 0x705f3b5644c92db3, 0x000000000001df }, { 0x601be8f30be52e6b, 0x6603eb38ba6a5958, 0x67f2b60b4f076743, 0x431e0b9ab78c8720, 0xdec48a5a369a3c4b, 0x99245b6a9617e757, 0x9ae1379a2bfb902, 0xc7784c33dd57e8ab, 0x00000000000056 } }, { { 0x85a96dd535c1fea8, 0x4073ec509c0df6e9, 0xccca7d043f6259e2, 0x98744513c8502ecf, 0x267f78efb8d606f5, 0x13d6ed3e722a5d45, 0xd56261a4f5e0fe33, 0x16074c08db467fa2, 0x000000000000c4 }, { 0x361940bb41d1e988, 0x3b07adb71bca3e80, 0xcb19cd0e76d3d795, 0x36ceb129a0134803, 0x31089a9d609587e3, 0x2358742b0372891b, 0xf08dbcda83bed3cf, 0x9f4be73beb6948fa, 0x0000000000017c }, { 0xdffc90d67bf91eb4, 0xa42f2dfb3ffaa38c, 0x40e42db68857f7a, 0xc1497ddc37825fb2, 0xb17656fdd5fefeb8, 0xf5ebbeddd4c7d64b, 0x7baf4c3a89f4444f, 0x2d6e7fb0a70e10fd, 0x0000000000012a } }, { { 0xf04ed57f5dda3278, 0x508d62be8c090bb6, 0xbd89533f865c4838, 0x4afa1309b4913bfe, 0xee309f90908cd646, 0x9ded732274a5f9ad, 0x25bd66bf85ac95d0, 0x3f85ed36d87b59ad, 0x000000000001db }, { 0x78183d5fc42db4e9, 0x22ad8f3034569fdc, 0x341a59b43fd2ab5, 0x5bb4591313d4de3, 0xefe4dd1794d32467, 0x31d826bee28f05fe, 0xe8a5965a3d902732, 0x2f085d527d29c22b, 0x00000000000020 }, { 0x991a976d3ddd6a3b, 0xe47512cdac82e84b, 0xd6cd0510e717ad61, 0x503b0d2542d54c7a, 0x695828c47d41737b, 0x8f55c1172ad3d8d6, 0xc8273b12ea034bc0, 0x302a017f5f6a190a, 0x0000000000008c } }, { { 0x833a780d4baca3f8, 0x4dbe1104b4334da4, 0xfc2aa80ad564a472, 0xa64dd550634780d6, 0xfaded42f42d1d6cc, 0x455fccfc49385882, 0xe289b00f671c0931, 0x1f919776686d27df, 0x0000000000012e }, { 0xcee699ca95798837, 0x221f47af37c8c017, 0x1135b5b54de4c292, 0xeb9976087718f3de, 0x49b9df1224c472e8, 0x411e0aaec3993758, 0x11338e7111abf725, 0x2affce3ec33f9e72, 0x00000000000088 }, { 0x27515f27ff512f22, 0x50e135250d824579, 0x9ce505f5a0477579, 0x26928a7fb047296b, 0xc1d749ac5703b3af, 0x3f462fa57aa9feff, 0xa2dc2d26e39b15e2, 0xc59506cb50a6f3a2, 0x000000000001a2 } }, { { 0x43dbc6aea4131437, 0x4f94fdd30ed4a6ab, 0x2fb2c83d9bb0ac7a, 0x83c149b90d200e88, 0x72160c9c494c8b1a, 0x2a2368d8c7847f33, 0xbcd9925b1ee88da2, 0xdcf2b4f711a3fa9f, 0x000000000001f5 }, { 0xf0d56923ec448085, 0xff89de49ee9cc9eb, 0x1e0b759f6cadb82d, 0x118d54b66c8c843a, 0x7ba610c115f50505, 0x82a2fcd66a0bf972, 0xf09ccdab288b095e, 0x3acf5aedc1fd1c01, 0x00000000000154 }, { 0x7946231c3d35fc29, 0x2430192190836c48, 0xe15308e60e6118a0, 0x2570ac33f37f84a6, 0x257c9fc66dd46253, 0x12b7ff27c7764c65, 0xdb1c6681b142b1a8, 0x2a661694610159e3, 0x000000000000ed } }, { { 0xa79dc0792328cf65, 0xdfe4ea293ccbec06, 0x731b20f014559472, 0x90e3dff8328f379c, 0x314e6b3b88ba537f, 0x8a53cd92869f4aa9, 0x7846a07874e4e041, 0x8d6dce59d9325e98, 0x000000000001ca }, { 0x9ba6cf22d62beb5a, 0xceedc30998be215c, 0x3b21f30b3d6574eb, 0xbb2bd97378d4d045, 0xf5a9ce87fd11c5ce, 0x5f8544b929b08526, 0x82a93ee2e0793493, 0x2775a6fa4f40966a, 0x000000000000c6 }, { 0xe48af055523e643d, 0x10b198a50bb61db8, 0xd26319b036abdc2f, 0x78a0d7b27eddfe6d, 0x79c1f9963db571f9, 0xe50932d3906eeec3, 0x150412e20b57d67b, 0xd9976143352cbba, 0x000000000001ab } }, { { 0xdfbd05bf14b7819c, 0x154ffa60a152db9, 0x2543e468cbf75be0, 0x6ca99057f22a05b7, 0x7b88e77fef91accc, 0x1c7f51a43be30c80, 0x1dd73e2154443f59, 0x10d51eca7fd8934, 0x000000000000f4 }, { 0x80e86ef5a591f205, 0x49bbb17adfe42892, 0xe47add9dffc8bd22, 0x3456c45db8a16573, 0x206c9dcb9cfe4a6b, 0xc6455f954aa289b2, 0x97120e8651541e82, 0xec8abcc191281f34, 0x00000000000067 }, { 0xeaeb1e9ba8456242, 0x66fbad9856e63bed, 0x68b6824bc8e99c59, 0xd4a5017f0e7959c, 0xe829480378e36c7, 0x9bdfe2fcb01764d7, 0x70c204e287b04702, 0x9dd4d9abf99fc3f3, 0x000000000000bb } }, { { 0x269c5c84e06cb3d3, 0x54fd308163934956, 0x9394172798909af9, 0x42ccf75db6d2e63f, 0x2edd680c689d9954, 0x937f68b63c589464, 0x724569d385ce5e88, 0x51227b3096322f68, 0x000000000001bd }, { 0xf8962ea7d4bf260b, 0x93aeb2d5eb77193b, 0x3c9f7e4bf2d00910, 0xd26cb4b06c854bf, 0x4e230969233e0b8d, 0x5536893333e5ce48, 0x184238479120098, 0x6a48e9029c607598, 0x00000000000170 }, { 0xba6970bf37a8098e, 0x445ee5f52131444, 0x79750c7867f6284f, 0x2d7669833dc70337, 0xd09108b7fafd56a0, 0x335b80bc1d4d40c5, 0x95382cdd033ea29e, 0xf2d1c845ad214794, 0x0000000000005e } }, { { 0x682a4010232451a1, 0xa8948beb2c82c165, 0x77d4034572ed7208, 0x255fa0d0969313ff, 0x6c5fa08b38bcedff, 0xcf81b13a5d4cc412, 0x5ec3807dbd0db424, 0x80a99f08ffdd479d, 0x00000000000175 }, { 0xa935891a09d2f46b, 0x5285c9a0404b7025, 0xe450062412cc7610, 0x2daa80d520c0375f, 0x898c408866092fca, 0x451f38ad48693998, 0x95af252e3905fc57, 0x68e45e48093c2be, 0x00000000000022 }, { 0x48df9082cab2516, 0x6923d9618b819648, 0xdbbda980f95ab55b, 0x4b1fdee5a530920b, 0x6ae637405236135e, 0xf62359ba5be07b0c, 0xe0917b28f2698c46, 0x4030ea9a7fba3570, 0x000000000001de } }, { { 0x498355924c7ec5c6, 0x877a47d67490b2a7, 0xff8c01337c71d553, 0xf5ec9b680600507b, 0x85d99d4ee80e3bea, 0x55b0d560b5c6df54, 0x5b90d9874910405e, 0xe965cb40170f5895, 0x00000000000172 }, { 0x5b2f2d08153644d5, 0x4b0d95d44a931382, 0xda1005b15b888f6a, 0xa859f4448ed24fcf, 0x52fccdc6aafad231, 0x9c03f10211a914ab, 0xe6410d740063eb63, 0x310778c3c536d8f2, 0x0000000000015d }, { 0xb7765b1285f50a51, 0xe7732a752213a6b2, 0x8c31772809b7ba42, 0x99c379fa92afe12a, 0xf4c8268bb7d063bf, 0xfe5966ea084c79d0, 0xe3afabd876bfc446, 0xf1f743cc3f2ac71c, 0x00000000000029 } }, { { 0x4701f4fca427090, 0xd4eb284d4e54efed, 0xfa558a1c9963ac57, 0x5a5ee2256f5ca264, 0xcac6dcb13dca0199, 0x419890e971bae67a, 0xdd174ca6f23e3a32, 0xf73a6e835e9ca322, 0x0000000000015e }, { 0xfffe7abef3c887b1, 0xbfa5713adaa21444, 0x1297256c066bcf20, 0x28af1eb381a50c9, 0x25ff7a3d7fdab559, 0xc016fa1fb4c6b1e9, 0x2e72d37802259c82, 0x4f612ccfd10389d4, 0x000000000000a2 }, { 0x8731f6642b28e138, 0x60f1d054e43a3bc2, 0xc7ac1b6069e03b3, 0x110479cad442b35e, 0xceee720485687f4d, 0x59ec3a02d083a92b, 0xb4a519ad8ff7e5, 0x244e5dd03a0e435b, 0x00000000000100 } }, { { 0xd23ab8ad59f54d95, 0xc00393fdaa07fba0, 0x8d4a0120c45bce0, 0x327d6df6b3cdc75d, 0x496e3b2a35fd7cbb, 0x1d38db4616a5e23b, 0xb214d465cd9b7aa7, 0xb7c86a65f4c0544b, 0x00000000000177 }, { 0xb618bddd1e30843c, 0x7af8f0e862f719bc, 0x83f8b35f41ba89d9, 0x5fb8e4f64fa1f9b6, 0x1c478c70ae75b0f3, 0x2dcd37d528af40d6, 0x145d8d5a4b8879f5, 0xdfbcfad894c51870, 0x000000000000ef }, { 0xb0b4deeac8cdfda1, 0xa0cd768de0502034, 0xf2c396c72666d28, 0xb372e2e47b3c72, 0xacd7cb9aa4fd1747, 0x5359615a009e2a18, 0x18807c172995027e, 0x4db03ba811e8cac8, 0x0000000000013b } }, { { 0xf32ca39a21c92c5f, 0xe30862a42bd5f63e, 0xc350d19f3fd000c6, 0x6423a97bf0d0b721, 0xea1f1365b190f02e, 0x476f41c3b0621043, 0xca5f29106c768cfe, 0x4faa8a742ad5bc92, 0x0000000000009a }, { 0x6c48141b09eb7a61, 0x72df80eb60e46a9d, 0x9eadd147f81cd1c1, 0x5b38f3ae7d565197, 0xc2ecddd94494bff0, 0x26d32e6b9c1f2fd3, 0x1ad410f28dfc235d, 0x6b42d8e9c4b35d57, 0x00000000000184 }, { 0xacacbf6fd4e72cf, 0x667bccb813d1c7f4, 0x2c937218dcf5d5c4, 0xd5b02dc46663b5b6, 0xd2a1c75fa65ef26d, 0x5007d1225272cf3f, 0xe5df1983f4c98aed, 0x10c303b054ce181e, 0x00000000000143 } } }, { { { 0x8b7881c2848fc34b, 0xf9def18cdcc7aebf, 0xbb6c1536554f7981, 0x15d8c6fa47e68f52, 0x74a3ee28725601a3, 0x886950cbb8e06a29, 0x8054a4c0fc3d8aa6, 0x6d612392aa2dadac, 0x0000000000011a }, { 0x5485cfc854a10a3a, 0x65de518f14f5314, 0xc82d0f069a270170, 0xd1651d1e768c62ed, 0x133aa7b9953c3200, 0x7a8091a83c2d4fe5, 0x913a42dd2d6abbfc, 0xf522fe5ffcef2fe0, 0x000000000001ca }, { 0x637e23076ea826c, 0x7d1ba519c1aceb6a, 0xcc2c4366a00e566a, 0x4013adfc8b0c69a8, 0x9b85dd0b572629a8, 0x2624971220a7e4be, 0x96521bb19d299026, 0x754938974609752a, 0x0000000000006b } }, { { 0xcd4d8fba247e25f2, 0x9d4bd38ae9e582b3, 0x6ebdde2734ef8b11, 0x8351132038b68fb8, 0xc161d95fa4a561db, 0xfc6d37d7a5a20582, 0xa9137a60446b00ef, 0x8e25e43600f0feb3, 0x0000000000011b }, { 0xb88e50a902a891f7, 0x837cde18248a5760, 0xb50fb679c981df01, 0xbdee3795fcf48fc, 0x6b9aa450886d5423, 0xa0a088653552cca4, 0x2a58af72694b5f84, 0x14c1de64df8bb5c5, 0x000000000001cc }, { 0xe398fd03eb2a49bc, 0x7d336ae8723ba7e9, 0xf1c1a79dc95c642, 0xd0b39816ff089a82, 0x4a3b284ec3991ced, 0x8c2ec3a5f3066b05, 0x795927938d95a505, 0x8af77e31c2b3c443, 0x000000000000f1 } }, { { 0x29510116de06752e, 0xe6913f9ee4b49da9, 0xc48b734220a5ea92, 0xd1bfb82de7a27d, 0x6a806562c8f71f6e, 0x4528ee67c7a52e7, 0x8ef03ea507bb7bee, 0x4f48b7b55c3533e1, 0x0000000000010e }, { 0xed2213c264d0cc50, 0xb7cf0daa5a47bbb5, 0x63446740f54d7c2a, 0x6e1a421ad5587f2c, 0x6303acc7fa8dd5dc, 0xc2669224b4a4b3c2, 0x6e6bbc2821d28524, 0xa3cb9b164a4fdda7, 0x000000000000ec }, { 0xd6f9f8d5b1ea08ea, 0xd38e30329e0a9fe5, 0xfa623cb4d96a3fd, 0x18b03c2d35abfcef, 0x996f3c842ec89172, 0x650f73aa630f33b1, 0xfa7078f415bdcf8d, 0x11d7434e274bf314, 0x00000000000022 } }, { { 0x67aeb836dc6cfd7c, 0xbccdfd88ed891979, 0x207f709ec02e131f, 0x23f036581372a48e, 0x60d3a525def24218, 0x844a87a9e9be022c, 0x8408bac7c9b25a16, 0xd40411d610dddcbb, 0x0000000000003b }, { 0x3f359400b8af88ea, 0x98773d2a6a2c46b8, 0xcb522456b3386c15, 0xb48cca91136b5e25, 0xe15341ef274dbd13, 0xff52be846927d40c, 0x2a5610c597e7f08e, 0xf1a18eae9e3c328f, 0x00000000000059 }, { 0xe78c279be194ddec, 0x8ded1fd39c2638d5, 0xa3b07bcc48de5423, 0x4ab440c96a5a476, 0xf235192456831147, 0xe034a023e1336cd7, 0xa3b8e6aee8a6a4c3, 0x9481c7c4af4f9442, 0x000000000000f7 } }, { { 0x3f747db2743cdc35, 0xf530d8ad6fb98b4c, 0x14f9f49a5150ad19, 0xd1dd9b5391ad52df, 0x60120422c69fa454, 0x33cae5daeabfacfb, 0x1b15f3a16332f00d, 0xf3a726bcb974d825, 0x000000000001ef }, { 0x39aa8b5dbb1a6746, 0x5750048b36dd8142, 0xffaa608b4cc676bf, 0x7cdd54a0f9cdffad, 0xbb295fd933543311, 0xe4bf9b36a8bece7f, 0xd9df6a6f78ef3f5, 0x7ed58d95506a37bd, 0x00000000000038 }, { 0xaaedf2ff379a1514, 0xdf3965dad68ba9d, 0x489960a58a8776ce, 0xd5d98be35ba1bb78, 0xf0885b3c54c5b7f3, 0xb3d03ed2eb4fd23a, 0x81db11a31efbf2d, 0x924edd1d34005e75, 0x000000000001b9 } }, { { 0x2a3fd6948a02193a, 0xa37361379f029dc6, 0xb861b701bf66221a, 0x8e9d583d4c45ba05, 0xfe9fdfccfefbbbc2, 0xc1d16cd3a8135c4a, 0x3cffee0ff0ae3096, 0x19b83c8dd9a53f78, 0x000000000001b7 }, { 0x79bfc5759be338f5, 0x73b2fdf3aa90e599, 0xd93bfb80456e76d4, 0xc7b5b69ceefbc059, 0xdef36397efc52a2d, 0x5e2e35dbd3c8ec49, 0x2b4a89ec00942829, 0x7875515fd5f978b5, 0x0000000000019c }, { 0xa9f37267213f279, 0xef602a14e9fcf3f5, 0xad07216d12d5ac8c, 0xd862100ff35442e6, 0x8c91d6dbc39f392e, 0xc3ca43551ca32c2c, 0x207a9b25178ea75a, 0x5d0d2426597cdb47, 0x00000000000078 } }, { { 0x49816807310d85c3, 0x1077834e7233d54e, 0x3bc6861562f61503, 0x67ac85456a57e302, 0x16b16ccad9720ed3, 0xe62a2c5491237888, 0x96aab4aa629fba08, 0xeaf06625eb7bb8b6, 0x000000000000bd }, { 0xa9f60940bf34ee6a, 0x5327b18ba096282d, 0x685b3410cb0bf85b, 0xf0f10acb360aea32, 0x2db7de55b96939d4, 0x6146741116ef4cef, 0x4cfaa46907252b7e, 0xe31057f84869b45c, 0x000000000000ad }, { 0xa8c10e5f367217c3, 0xc808ccf9bf38bf56, 0x67930bd1108d10cb, 0x96411499d5fd9634, 0x567afb46ea4ef5da, 0xd6ead2efd1ead916, 0x3ed61b8f39f963b9, 0x179e899c345a34e0, 0x000000000001ab } }, { { 0xf48db050cfda0560, 0x257df181ec8c818, 0xcd486ab6cd843292, 0x94f770fc2aec3195, 0x40a26b97a267ef48, 0x48cf4dcfe22f19d7, 0xc5aa7877966a2231, 0xcccf9525865649bb, 0x00000000000194 }, { 0x33c1e3e8d5db31ee, 0xa75b57497aeb94d, 0xf83c648e9460c109, 0x9f698e416f1763cd, 0x69e8adc6075d20ea, 0xcd076ccf63815b56, 0x237ad24c36adebd6, 0x2de33aa8b603974e, 0x00000000000194 }, { 0x515143ef7aef5ef5, 0xb2faa0e707bda7dc, 0x8cce1e2cea4b2ec1, 0xf735fa663c5d4891, 0x5e731c30235b561, 0x3ad3024b7a70d0c5, 0x21a2533dc7d78288, 0xe829a347ac399a98, 0x00000000000191 } }, { { 0xf777f247475bc6d7, 0x47028187264e3387, 0x60e4723f7848c3ee, 0xd33ab5133ce145e, 0xabcb1208d8f70f3, 0x8214512c96e4a5e6, 0x7b10619276bcf093, 0xa9abe7711f9ca976, 0x000000000001c3 }, { 0x4eaa165254651ff3, 0xdfae374d5d2bdd70, 0x9c23b5ed08abb120, 0x5a4f6e0676fc535f, 0x4ff289f736a2db15, 0xc204834d9518483, 0x56e664d6a4ca9544, 0x97db2d566c58d518, 0x000000000001f1 }, { 0x87d0dee160f632ee, 0x34129277f87569e9, 0x7a04ed21d309140c, 0x25a2b68d278869f8, 0x42d51872b69acf77, 0xa8dedcfc31c4ec22, 0xd0c0b96c548c78a4, 0xc50434fab74324aa, 0x0000000000012e } }, { { 0x3e368fcc9a57b103, 0x7bca2b6f3a996020, 0x758a1a66c4186957, 0x9938c3f9590e7b1f, 0x2dcd7b89494c7100, 0xb78426c62b7baf66, 0x92590a88c316378f, 0x36623a87464471c2, 0x0000000000016c }, { 0x5cd7644377b1500b, 0xe93b25e14d57738c, 0x1d174ae306768176, 0xd35e873b41b353bb, 0x2ea835c90c299d5, 0x428d0e000489cf8c, 0xf02273a984857b49, 0x7d9076a10323cc8f, 0x00000000000183 }, { 0xf2c039e3edd8ae13, 0x4cf45ac6c437673, 0x8c3ba992c61e462f, 0xdfb84b1c86995560, 0x73c0447ffb4ad7c1, 0xbe14ad39a7db5328, 0x97d8119ad3422403, 0xfc1715fe58d52958, 0x000000000001cf } }, { { 0x3f3e34d2e418959f, 0x697cf9ba21ae6909, 0x62debc60b0459709, 0xa95408474a44d5f1, 0x5ad55ec469217928, 0xc7f2757efa0334e4, 0x500be81a57aafd03, 0x90da715179b863f9, 0x000000000001dc }, { 0xf243e8c3113b522c, 0x1a7d8fc47a299248, 0x187a5e2d6bff0087, 0xee70fc8991eb718, 0xc6006f061e1e231d, 0x6211c382fb1209f0, 0x1d58afb6262883e5, 0x6533a5d0805d45e0, 0x00000000000144 }, { 0x2dd1ae9f59d9cb02, 0xe4cb52958f5c3f1, 0x9e8b53a28b06027d, 0x8b501e3a9df47594, 0xfc9abaee2472063d, 0x88804f33ccc68004, 0xf23bffc23e564014, 0x6f14448d42cb5db7, 0x000000000000e7 } }, { { 0xe77f54fcc20781a, 0xd21304cb1cc9b226, 0x4bf5018ba06eb37b, 0x4e976b787233fc31, 0xa6acbef48362e8c8, 0x7088fa274e2cde00, 0x7d0eafd80c545a59, 0x41846494f6806d18, 0x00000000000001 }, { 0x3e1c4c000a569261, 0x520e97c5042a7520, 0x37c9ca07de2b5517, 0x5d95bb851fadd898, 0x3545f832a90ca8a9, 0x49608b0a56a06d2b, 0xcccf071d91f77b33, 0x615d87ce73473978, 0x00000000000025 }, { 0x24ee7bb4a81f609e, 0xcdadf66556442ea5, 0x56baac3cbecccdc2, 0x3f2c0b3c15052bbd, 0x59c6a163c648ffc2, 0xfa2c0967ba700304, 0xd508d04b36581b32, 0x6c907136ac03fe5c, 0x000000000000f1 } }, { { 0xa2a7346e314779a0, 0x742a2e867db3ba8c, 0xda91ccdca226a3b3, 0x4e6cf8f429c5c0d9, 0x77c21a7d7f98d5f2, 0x8281c95075d3ff7b, 0x98e3b27398d7255a, 0x2fda0bdbbf4dc790, 0x000000000001b6 }, { 0x820ced8fa2c2b153, 0x6ba7aaa912ac6026, 0x2878f181c9fe3994, 0xa1331d1ce2d5df90, 0x9d4f00d73836c4fb, 0x9da4405961abe3c5, 0x600c938804defa7c, 0x35e409d98ddb1a65, 0x00000000000033 }, { 0xad67aa124ef4c55f, 0xf953256295020b43, 0x36b34220b16686cc, 0xe0c0d3b16678fde4, 0x21bd613cc692bf58, 0xf11d8b1120d9568, 0xda733a0e39c207b1, 0xd5bef7b9b18ec29b, 0x000000000000fe } }, { { 0x2a8cb9ba733a156a, 0xf66eb99bba875051, 0x7dd5ddda851a79fc, 0xd3b2b1d03e10c478, 0x2279c562eb4d44b0, 0x83007947478910c9, 0xbab8f79b3dc87b28, 0x5a03cecbd04a6475, 0x000000000001c2 }, { 0x2cb86470673d420b, 0x567b7153a26023c, 0x76aebc929cb29dec, 0x4c1892ee5489d5b2, 0x30c799be91900810, 0xd8a7691c2176745, 0x4e276160b5a12eb8, 0x182a6ac4182ba135, 0x000000000000eb }, { 0x6c9f57d0a0d7f863, 0x45d4e0314ca1b437, 0x49e8900db3aee7e3, 0x48f682abf9a797d7, 0xf0700d09808a1bcf, 0x7de80f551f6ae1fd, 0x99cfcc1aa37f1ddb, 0x8c67562a38a71ea5, 0x00000000000050 } }, { { 0x825b1880b21cf19a, 0xa975f746e2d7f6cd, 0x6fa8856118afae21, 0x6b77eead92ac79d0, 0xf56fc66bdf7e59ce, 0xf4e9f7e2f06fc5f, 0x4ff2f00733182e2f, 0xf5975686bfe98e06, 0x0000000000011e }, { 0xf7c7c648a12cbe16, 0x61b07e82bdcbf1a6, 0x77fbcf8a64a91c52, 0x14260719a2e36329, 0xe9df8091c1022ac2, 0xec535a3398f25ef4, 0x4de719a3f354e4dd, 0xa7707a9b4ec237d4, 0x0000000000001c }, { 0x3dba3a48f600a09d, 0x991143835f2111a, 0x608cef21ef4ee07a, 0xd4ec6db19974a030, 0xe3916bb445a25fb1, 0x91153625a769c992, 0xc06e5bee02c3ec3, 0x2b6326a75d5507c7, 0x0000000000010c } } }, { { { 0x52bc869926539ab4, 0x875aa7ad07480318, 0x968b3fda8a72b69a, 0xe52a3c7f668df866, 0x97787b735ef403f9, 0xb1f9778056b2eca7, 0xa31ee37588b6b50a, 0xed91062c375ee7b, 0x000000000000e6 }, { 0xac3a2312267f43d3, 0x4803952b91bef1b7, 0x72c23db6201b5e03, 0xff6f01b9d0c38114, 0x6e54891d9a73e6b6, 0xed0d959cf442b7a3, 0xc9f0f6c94bfb2ee1, 0xda1fa175cb7d7de7, 0x00000000000199 }, { 0xb53cecb39db02f97, 0x2cbbfa358e552a3e, 0x7e598ef940738362, 0xeb92323fe1d421a0, 0x4091244966af6ad5, 0x94fce5230c11e30, 0x359ee2ed53b18d14, 0xc01cfd28a1bd4cd7, 0x000000000001da } }, { { 0x7e3bd8744de27c9d, 0x947babc3534b0d4, 0xf0aab704d9d76f77, 0xff65d8fd14242c37, 0x854e3f333aac9ec4, 0x6ede83237379bf5f, 0xc88ee05586f32a74, 0x4790da2bafee1ac1, 0x00000000000165 }, { 0xd4225cb0cda63008, 0x5beccb5c634c66a8, 0xb443e1381b3162d4, 0xe352985ed1b58277, 0x73b00c2a4a005b40, 0xa776edf55e93f22, 0x5bb131da53c4971, 0x6df8a15c34577a9, 0x0000000000001b }, { 0xfdb15f125d96ce0, 0x1c54cafd30d959d6, 0x9e7b1c08ff8912a2, 0xe754bb08099476b2, 0xccabab4d4e02142c, 0xd37f8dc5e960620f, 0x33e42120fee19eb, 0xec32fe965d672deb, 0x00000000000083 } }, { { 0x8e2c26936a0da1e0, 0x32a62ce4538311fc, 0xbbf94899c35897c, 0xf5172e4bb6d1b116, 0x73ef5583ea200b8a, 0x7ad4785b87523ce7, 0x9d00295a499f7483, 0xb753e5ecc6f6e269, 0x00000000000086 }, { 0x6cb3cc2f6637f76f, 0x470050e24f655894, 0x4c8f6076e6d46bea, 0x4ed97d167637a349, 0x5c95ea813436184d, 0x1e4dd6dba90aae67, 0xe6beb1aa3e51919e, 0x83c815599927d50d, 0x00000000000054 }, { 0x12e1a00410fe34c8, 0x4ab7e6f4b012cef, 0x556033b7f2fa35e3, 0x84478d35ee1c1727, 0xe72cce26f83fb68f, 0xd1ce009f791170c5, 0x48a970af662b5910, 0x3258904fc976fa91, 0x0000000000008a } }, { { 0x323ecc08cf0507a6, 0x2df471eccd7730f7, 0x64164a1743888d13, 0xee497efb8b63b530, 0x71109759fffdbd4f, 0xb6a980e95c3b979a, 0xdb2381d4444c9180, 0x5ae70bec82c8a00c, 0x0000000000002a }, { 0xceb7837e56fee636, 0x6986101bdda1b3e2, 0xba1a6cc25bf1ec27, 0xcb8c88e18a18dd6b, 0xf8df43ecf5600786, 0xf31c4257fb5b8833, 0x38eb6b3dd0d9cbc8, 0x40537ad0d4452f2c, 0x00000000000155 }, { 0xcb15a3e9d7c1777, 0xd6e470981de3a840, 0x95ec28dee867b2b7, 0xf72c90bc6df7eda9, 0x41a9d5ecc5f26e4e, 0xce2ee3ad64f4a8db, 0xf0862b16d4c63a03, 0xc0c4706d5e19aff5, 0x000000000000fd } }, { { 0x20b836a366859eac, 0x38705ac6cef54e82, 0xdcaeb735be0840a6, 0x7a590faba78008bb, 0x58ec076300374376, 0x44651c87064ddebc, 0xba67f9e36a2f8cef, 0x31a4001c7d45006b, 0x000000000001e1 }, { 0xf2ded65679a29eb4, 0xc7f646168abacc7f, 0x2a32d0976bc7b6f, 0x5dfb208d5a6b3b38, 0x748a38623b1b0076, 0x3d07ebfb117ecd0, 0x8ebb09af42c093f8, 0x7e259ddba3718fec, 0x0000000000015a }, { 0x80a333e176fc125a, 0x42f10f2f5b70b437, 0x27a88f058ef9fc7, 0xb582a0ea7962d3b4, 0xa5bccf0fcff1b7b2, 0x668a5755f51ebd68, 0x2a1f86003d174f1c, 0xda32e841208bd83e, 0x00000000000117 } }, { { 0x6b5c344a8e0c9530, 0x2fb16efbd8af0372, 0xb8136eb0e1e5e07d, 0xf96fd61aa18cae60, 0xa2e2b4ae5e55a5ac, 0x1ec811caf60ee113, 0xc2f8d0c482240b83, 0x20a26ea98b1bf80b, 0x000000000001dc }, { 0xb6481b4ae5c6745d, 0x5a76e81bba212e09, 0xe4d2993901be5f47, 0xeabedadcddce6ba6, 0x1fd9940e00b96744, 0x229ed43a86daa88d, 0x3bde595ac0481e32, 0x3b824d70a50c98e2, 0x0000000000002b }, { 0xdb455b02076356cb, 0x9769697d399bf59f, 0xeca4370f8c61672c, 0xb2b35b088d1cd145, 0x2a5e0d14a3ac8f4b, 0xdcbb3722c0e1ce9c, 0xa7f592988c689a58, 0x47394f338476e9e6, 0x000000000000a9 } }, { { 0x749685bd73f147a0, 0x6aecf14409c41a1c, 0xd7987db8bd64e7e7, 0xa93d7c1e6c89e382, 0xc973ff0d1ddecf33, 0x20eff3e5189d7ffd, 0xe3fba6f681166d87, 0xe811da2ff753271c, 0x000000000000ac }, { 0x80eab37840a90601, 0xafe4ffbccf74e46, 0xad902f6beb035106, 0xf83f052d0ffcb90a, 0x45c1cf169641287c, 0x64f64d2a2916429b, 0x771fd51057e93f2, 0xf0f957685fc31a1c, 0x0000000000011f }, { 0x431d83bef475500d, 0xcd1eecebc26d096, 0xae2ba5976bb5e4a8, 0x943857fc996e73de, 0x4e9ed9eaecb123a7, 0x49a36a43e41ace99, 0xf0e9c682a77e9dfd, 0xaa2d23c98e10d52, 0x00000000000011 } }, { { 0xb0086f9e0b6017fc, 0x5825d71f31678a6e, 0x19a3660af065e1ef, 0x121e4f2e545031e6, 0x2f8262e8972d12e2, 0x4e3373f14ce1baff, 0x6646c9fae3489f20, 0xf8bc2830678aa8d8, 0x00000000000120 }, { 0x75c5c31843e496e9, 0xe1a5a2fa81dadf04, 0x833ef8aeeed6b3e6, 0xfb564048100a18d9, 0x48103da4a981a867, 0x7d3aa4e6fe06bda0, 0x121bd6333c180f99, 0x12f35fc591454ab, 0x000000000001bb }, { 0xad5f05296390dbdb, 0xfcee0422e6c430be, 0x16c31fe00c50189c, 0xc34216f0a323838c, 0x69a1c82e42959423, 0x2fc1a018788dc03a, 0x2034eb8df9299ab5, 0xf7810c3d9b00a804, 0x0000000000008e } }, { { 0xbae1e31d16134638, 0x233fa76b40943df5, 0x2fa08a8fdd33bdb, 0xbacbd213c1b2413e, 0xcd2b7eb77931495b, 0x1001700937ea66a1, 0x8211e86aa0881473, 0x914a1bf2f2760371, 0x000000000001ca }, { 0x75331b440867ea69, 0xd5addd1669c49d21, 0xc5e209445f2a005c, 0x72306852da0d19f8, 0x5d08fc900270dc27, 0xae96d796c3eb207f, 0xdc75754887f71d04, 0xf76fb8a2ffc716cb, 0x000000000000a5 }, { 0x65e4af3f2ac51542, 0x5c232ae9fe7b9ddf, 0x9f84b0dc3edc1d29, 0x27a1a7a1b8122c5e, 0x27c52c5e6e659e32, 0x8b8cbfe3150c46a8, 0xbe6e81e7ea43b8e8, 0x8011f5c761f7edd8, 0x000000000001f5 } }, { { 0xe4d9ba17a335ebf6, 0xbff51b66d22eccf7, 0x8e9f24a2ff49cfb4, 0xa45dafe22b2b7543, 0xcb0cc8ae6dbbb321, 0x9a01657580450e4e, 0xe63cc32470c6e655, 0x82263d37369456cc, 0x00000000000178 }, { 0xa42c244e2c858171, 0x45d120ac33862807, 0xac705effd7692952, 0xd8340c1100faa27, 0xd1d8e9ccf82ac7a, 0xe736e7dbf3aa8380, 0x38431b36f07145e3, 0xd0fabb07995a4232, 0x000000000001ae }, { 0xa9206cdb46b2583d, 0x68f6165c5382f07a, 0x57b00cba4059c72f, 0xf93125f289124f7d, 0xc4ef842638e906c8, 0x3ccd3ddfaab84cd, 0x7f912e9ba7686400, 0x98ac3ddbb9d04396, 0x00000000000136 } }, { { 0x257f327353a37ee9, 0x2e802c50c5535139, 0x6e08f71176da8c49, 0x18b28538e561348, 0x102a03b97ba4753d, 0xa2562a482e47875a, 0xe063d773a8aff04d, 0x9a41b5993a712c2c, 0x0000000000001b }, { 0xb623556671486217, 0xcc070cf52b27e933, 0xb5b4520203e333b2, 0x5bdc3f3bf5e0b4f0, 0x25478cefa69f294e, 0xd036bc22491fd4f8, 0xd1b8085c255b0fd4, 0xfb4ea4bd40c576a2, 0x0000000000012c }, { 0xf5fb87e555554f09, 0xdb81f04750914629, 0x57e06292135db7d8, 0x1588efdd72d18b52, 0x7a3a9b525a299e55, 0x8495bb28c418fa10, 0x8e8f083dd91f780, 0x8523ce57414f0a2, 0x000000000001b7 } }, { { 0x47536e457ed4ccb4, 0x5c20140581e2b469, 0x2d13f8dd59770e47, 0x6f41be14b52c2b9e, 0xb0f40fd00e33eb9a, 0x64b3bab445e8e2a0, 0x15ff503cfcdc9599, 0x503cbd8b9037a7d3, 0x000000000001dd }, { 0x52b97ced2c791940, 0x770f3b50e6b4ef86, 0x381101339787f7cc, 0xcd58e55e0b6d150c, 0x29f834dcd3fe081a, 0xacbe9be7fe3c50b1, 0xce5136b5535459e1, 0x24c72b52ceb3a965, 0x000000000000a0 }, { 0x9b7e4be8226b2bad, 0xd0ef9f9c20dd945, 0x1bbcbd3087b42efb, 0x7f7e6b3beabd133c, 0x6a9f3eaa0bbc594a, 0x654f6cc7bf6cdaf1, 0x2ea64e0980cf7f7, 0xf63233d0ef7d0ba8, 0x000000000001c7 } }, { { 0x9f400dc2ad186bf5, 0x88fedbdd7c64575a, 0xda4d1807f46147c9, 0x45702770e4aa1b85, 0x9d14c0de9b20c963, 0x68440bdd1ed49070, 0x56e24f4ee1bc35ab, 0x5ef6146ca04db609, 0x000000000001f9 }, { 0x6f51e8a339bba082, 0x26ea2d093e4b0ff3, 0xe3235e677ac011ec, 0x0c861ab078b703, 0x670b065d2944e225, 0x3163482ded3c6313, 0xa1c78f4d16592e5e, 0xa73ac9135d3a842c, 0x00000000000045 }, { 0x9331e426ed2bbfaf, 0xa1c960c4c29fed94, 0xfe93871c582eaeae, 0xb1ffcc47f2cdc70d, 0x2f4aa7cdf386f416, 0xee65c38b0c1a07aa, 0x3b24f5a260ddcf8d, 0x17cb780b3837c160, 0x000000000000ca } }, { { 0xdec379d151b304a3, 0xe283ca0767d95daa, 0xc6b7ad46d40e6b9a, 0x7398efb50709f791, 0x86627cb0511c822a, 0x4cd84497d6cde7ab, 0x1bd016630a6b8ab8, 0x4dd7c34f3d1ab2, 0x000000000000aa }, { 0x1acc095731051c0c, 0xfb342c00db0c967c, 0xda8579b326db3936, 0xdd134a27bc36e159, 0xbd5e6168b022b779, 0x76edf3e7efb2b238, 0x54c97a671f394889, 0x5fbac05f30244d1e, 0x000000000000d9 }, { 0xe2997c3dc4d16f32, 0x7e56eab2fedb41ca, 0x701c62990fedffce, 0x784d8c27457ecaeb, 0x168f11de4955cb1e, 0x91b6b58f545a1f53, 0xf52605e068a22579, 0xcd1467508e50acb8, 0x0000000000001e } }, { { 0x9ae2102e2ae525d1, 0x2b54ec46fac4b30, 0x6e7cc7e492349a21, 0xa7c6314c99957c40, 0x6aafd7aa965ec7c5, 0x2241a9b2b66f8669, 0xac1b425f12b056d7, 0x6422e307042429f4, 0x0000000000019b }, { 0x126200d91f664114, 0x1ab66a7edc6a3088, 0x43810453851eed08, 0xd9f6814c6fc6b832, 0x9a3ac01412408b83, 0x9381add588e2fcbf, 0x401817e4cef29f5f, 0x26c4312a2a06c736, 0x0000000000003b }, { 0x7ebc88f3c979d59b, 0x84b8809b849d3754, 0x17901755a68edb4f, 0xfd1bf7e2d3808a8c, 0xcedce09084f1197, 0x7a631a0bf8d01258, 0xed02c292ebfeddd4, 0x45e1a0e1bff64d9a, 0x000000000001ea } } }, { { { 0xce4d217117dfbb85, 0xadb6bf83797e6952, 0xfc2aa6698e6f1ce7, 0x30f342dc92c2cb26, 0xe73428d382f5cc5c, 0x6cc7bb30de085986, 0xf1783286b103642, 0x7148a4e171aab4be, 0x00000000000148 }, { 0xa6b598a2e1ff213f, 0x4094e095040f0cb6, 0x9284fd7baee829eb, 0x3b357feb6ee83369, 0x21432f680ea0c822, 0x91917de5fbb08f4d, 0x64f0147a6ad0496, 0x2817b48e70e9e6ec, 0x0000000000007c }, { 0x20abe4eb1a1f94ac, 0xbe9099cd6d38c625, 0x49e417c44e18bb7f, 0x29c537d7ca73e97e, 0xaba6b293c0c66827, 0xbfce66e56a8b96ee, 0xaaace89290196d2, 0x1be70ad1216cef0, 0x00000000000140 } }, { { 0xd6995ff3623b55d0, 0x1add580ba617a04b, 0x11e223703b0dcdc0, 0xdc1ba023f157597c, 0x49d458dde10b8cc1, 0x605144cc00cf42e7, 0xc35abaa4923365a3, 0x5c02c5398f337cb9, 0x000000000000aa }, { 0x1a88330c7d626105, 0x4210a3a2681eb5d9, 0x96ba93026ea869b3, 0xa0bcf99085511516, 0x1d97dfc00705db08, 0x740402c0b0f107c0, 0x6e0584ec79112708, 0xd6d526e42e6b32f3, 0x00000000000051 }, { 0x4c2c50cca71e2da6, 0x455247ab9ff1e5d0, 0x6fe323e7c40c16d9, 0xcbb0119dd6ec1c73, 0x4ca5890b7c13ad89, 0xa78eb0ad25b0ef7c, 0x9d5cbdff9851c36, 0xb12749b9f440da86, 0x000000000001ff } }, { { 0x1317544a61eeddcd, 0xe3337b2e6d9c795, 0xeeabb53977c442ab, 0xf84749dc79392afd, 0xd5536930f0ba459c, 0xe7f67316f4bb69e6, 0x3fc3f6fea3697165, 0xedd7d9e64f4ff663, 0x000000000000f4 }, { 0x8aad15203728ce36, 0xe503aee843554394, 0xa79486ee414003bb, 0x1e09a7a5ba74146b, 0xd9aa2719b7616fc9, 0x4845671e790c326c, 0x950c7499d57f227c, 0xd63819b3ffc45434, 0x00000000000107 }, { 0xbec67d4b64466a3, 0x1fa52827f8ee7911, 0x394f89183400bcd2, 0x3c68ee5eba61be8c, 0x1a9637280fd2b4f7, 0xbd1d6d0b32742d0f, 0x4a1049f1c64b4d11, 0xea62ad25240d2c16, 0x00000000000046 } }, { { 0x1de6825299cd91c1, 0xfa763fa8a77b7e6b, 0x8faafa46130249d0, 0x8d6ac34761e574c6, 0x1cbb5159ed2e5411, 0x11539cfa27fd4c9b, 0xdc650090185a32eb, 0xdd6f01004a1c4fe3, 0x00000000000159 }, { 0xd3fe4b563c1c23a, 0x6229f8c7b1f4efd, 0xe1c3a65136d00a9c, 0xf6ca1d5daffeb06a, 0x7a462bc03f20d8a4, 0x964bffb78502895d, 0xe959c45f8ab02bc9, 0xb96a2b0c21ad6668, 0x00000000000197 }, { 0x4f91d346fac5c7a6, 0x65fcf4717ecc8af3, 0x509f610cb2b21752, 0xdbce58db33415be8, 0x3cf438d2defc5fb5, 0xc3acae2e986fcc63, 0x26d9c138e3c2d06, 0xa4e89c56a47c93d6, 0x00000000000199 } }, { { 0xb0105be98525858e, 0xb891aa207523ced7, 0x82586edadd2706eb, 0x477efe05a98a74fc, 0xa0dbd88b9ceaced3, 0x1e5ddb4e482eeee8, 0x29bb6bfc6d4f2dff, 0x52cc91661263eb46, 0x0000000000014f }, { 0x6db41aa83bb4b56f, 0x5f86252b5aabf584, 0xc8035ce9d72f7e30, 0xf6f5d28dfe57e210, 0xf4231a009b9e9a40, 0x82add9c6b891fbf1, 0xf483894fe8abb089, 0x6bbdd5b31f95c05d, 0x000000000000a0 }, { 0xddf42ae01db7a775, 0x5794ccbaacf526fa, 0xeae41c9ad52b30a1, 0xf066b8f5729e9fc3, 0x217d405d4d501f47, 0x9aff022872d503d6, 0x6be7fba1d1b9b20e, 0x43b88cfb81deeaba, 0x0000000000017c } }, { { 0x8150a3141486326b, 0xfabcf749794a1cd1, 0x70eec524f676c172, 0xd2f8a014217cccbc, 0x577020002648e5e2, 0x9ba143cf6f0b72d8, 0xc432e60d478c146, 0x54e328c14b564ec4, 0x00000000000151 }, { 0xd8ef37b9914026eb, 0xe0b8dcdd1b60a2a8, 0x7f8a9be9e9468caf, 0x8960756f4ec7650d, 0xfb40bd084c715fb3, 0x9dff967f6af11ca4, 0x9442eb441058b56a, 0x14620fd55ff3f2e6, 0x0000000000018e }, { 0xc3daeb1e8c2c3c1d, 0x34491498472af1eb, 0x28fdf4f0b5dc4dd3, 0x32cd138e9d3c9936, 0x4b678e7f9c6e4db6, 0xea101e3ab0098a61, 0xb133aa536fe0749b, 0x4431b2d0e43c4dcc, 0x00000000000124 } }, { { 0x1f4ed8f7b457f177, 0x49a71f925908472, 0x43184686ab6a5f95, 0x897c453b9acc4e1a, 0xbac54e383b22b07f, 0xc15ff694d3d39838, 0x73b1dbf11f032cba, 0xa00d09f4a079fd1b, 0x000000000001b3 }, { 0xaa7020471739517b, 0xe6ca1635abf9c50a, 0x1fce4ea19d16dfff, 0xe48d44ec37ada5c1, 0xabe1425272ff1572, 0x4ac9430ab4d68997, 0xb8f428563e1ef3fd, 0x7ac35638fa08fc3a, 0x0000000000006f }, { 0x56af7fc1d848a838, 0xfd494f230428b039, 0x25375135d5e553ba, 0xa3c6a5f717f49f7a, 0x9f1037fd59dc373b, 0x7772dba5cd33932d, 0x664e8c5958166bd4, 0x287a20ce79741c91, 0x000000000001f0 } }, { { 0xcdf0274ef349b521, 0xf2cf84466255e78f, 0xc32455c8f6e3491e, 0x12e0775cb00ae46b, 0xb7818951aefc172f, 0x51ad500685457758, 0x38a305fedacc26f1, 0x3b68c8e835ab10bc, 0x000000000000dd }, { 0x34ff0d4ee7a3f2dd, 0x890c2067a069776, 0x3f6ab54e908269ae, 0xcdfb370de44ff688, 0x121b74e5abb6f645, 0xca99612d081c5378, 0x8fe9d97fbb927e7e, 0x448721a1dc6340b1, 0x00000000000195 }, { 0xab1fa79f14845062, 0x454b273b37eacb93, 0x3b094ecc6c08f1d2, 0x6f0a43caaed6c9d4, 0x6b07779e3539c684, 0x27471d4b36922621, 0xb700edb0d65fd34a, 0xe247b96ed44c70ab, 0x0000000000003a } }, { { 0x68a1587e84051a98, 0x138b2d2f2f8a09fb, 0xc6882b5163615f1a, 0x55accaca5ce1a6e5, 0x8952e2d387da48c9, 0xb27979d1ed3d3c12, 0xfe56fb480daaef48, 0x6a6c4cc8cda7a17c, 0x00000000000170 }, { 0x6588711a5321f938, 0x2661357e84a87409, 0x88e2b3c4c221b160, 0xf78f7bea73aa321, 0xa7e2c603f7db112a, 0xc5785fcc07c552c0, 0xd42380a389307f94, 0x790b5eba6ea781d3, 0x00000000000182 }, { 0x871712b1576cb586, 0xe60b705e1bae3024, 0x3d8ddc6aeeba7093, 0xb7eea6026824235e, 0x109183f5898f4cd4, 0x501ecfddd5db6a0d, 0x941fc3d58271299d, 0x8433d3a987c3c664, 0x000000000000d7 } }, { { 0xf93f7cc18ef9809b, 0x97f8bff99479c15c, 0x287d2b68f88cbed, 0x79459e288233395e, 0x19d9bac0cc336674, 0x8514e7d7cdf757af, 0xe82e3ba9ecf65ead, 0x672bb7b1ebb625e1, 0x000000000001f9 }, { 0xfee116755b9e6264, 0x48de656467f9628a, 0xa4981cc65caea0ff, 0xba7c19e0b0e5e6ca, 0x5fda21f1abf94f43, 0x1e3e839f5bbbb670, 0x4ab20a27869d3d4e, 0x98948197c9b70dfa, 0x0000000000010a }, { 0xa8162f05b41c49ac, 0x8c90809f687ad89e, 0x704a6abb6dc32e38, 0x6416e634aba90a05, 0x753b691744cbc45f, 0x1164424adce67fb3, 0x89c898f17cf0c004, 0xa611156765d44b85, 0x00000000000086 } }, { { 0x9fef43a0ef691bc1, 0x1c7836aa3912e5aa, 0x8447afd2da5e7747, 0x7efd44dbf5cfdd94, 0xa65deee54a2d0a9f, 0x35eb6b17f13a1951, 0xdb051080ab5d0615, 0x8937b632bc20787e, 0x00000000000088 }, { 0x910b8b68b1aa1d98, 0xee6563f013192724, 0xe6cb1c299766a695, 0xd92bca35f2bb437e, 0x5aaf95fa90f5611a, 0x8ef2544072a0fb49, 0x6235516d1e067c04, 0x6ce3e4d0e41d4314, 0x00000000000195 }, { 0x9d9fcb83d1279835, 0xbf1813447b422e34, 0x5bbf1dbd2ec747e, 0xecdb90f9e46d6695, 0x8647035860d09c46, 0x9766e4a218cfe3ce, 0xc66da54bdff15bf6, 0x374a2ada32287ce1, 0x000000000000ca } }, { { 0x3f331767c4d488c4, 0x53bfcb66e27b8312, 0x10cca02b4eb86ee2, 0x3c2af4228d69b843, 0x41482ad6b54e76d0, 0x1366efaf7f13829d, 0xfcb5413fe6130da6, 0x562314981c6a7072, 0x0000000000007a }, { 0xef3455823be01241, 0xfe08c4349dac0e36, 0xc903dce23efb5913, 0xd8684bad5494d0e8, 0x4a873cef93eb5386, 0x6504a15649370902, 0x37976f59b61392cb, 0xac1e65a3b68ce5f9, 0x00000000000086 }, { 0x1bb4876006ec8489, 0xc234aacd84e97d0, 0x246286a47a581d33, 0x7ac60d04e96b267c, 0xe341abb5f298ae89, 0xcfc0582d5439d2d8, 0xaae5cb80192a7712, 0xb10e77174abf62b3, 0x000000000000ca } }, { { 0x8fc7ee50b2ad16c8, 0xb970e727c4707e7, 0x9114d9dc1d9b4ac8, 0xe911d0a96cb6e5b6, 0x4f226358c3a59ab3, 0xc348a171f392fc6f, 0xaa87a57d750e666, 0x8c54a43bc3d475a5, 0x000000000000e5 }, { 0x382c130891455538, 0x9b8386680f221fd7, 0xe26e54a60151fbb7, 0x3dd45001e0497b98, 0x232e1f3afe9d9540, 0x834236661e177cb0, 0xc3b7f85840608e89, 0x17974da20c6ecb53, 0x00000000000162 }, { 0x24c74ad5defc9dfe, 0x2d543b3eeaf84de7, 0x90a3b3285035cb13, 0xa7bbf487574df715, 0x4e89671f24eceab5, 0xd1d14afb99d1af4b, 0x357787935f9b78be, 0x863afc605131d1b1, 0x000000000001fe } }, { { 0xd81d2a536463dabc, 0xfaa11addaddd6f32, 0x43232801ab146b1a, 0xfe97e53fdf3fd989, 0x97cbcf7d4907f498, 0xbd68f8bcdfcb8e8c, 0xb6b8f2552b1aa036, 0x2034fb271f9ec4f5, 0x00000000000167 }, { 0x37987efb6886358b, 0x11f71fa8faf7d22e, 0xc63d45141e267226, 0x37bfb8c706146273, 0x1d4747990d476dab, 0x8067176140870baf, 0x98b3c07081a970e2, 0x8978d3ba515ad818, 0x0000000000004c }, { 0xcb7bf69282376d00, 0x27595409f56ee8c7, 0x9c26f514f6faff1b, 0x1add088f4a3a134, 0x6cbe0eba135683fe, 0xc27c5827c0cb8f8f, 0xb4afc6bffe9d4de9, 0x3f4d459c042b8a40, 0x00000000000045 } }, { { 0x751d5658a3474e36, 0xf7f1c6a55bfc910d, 0x17584659927ac995, 0x56fdb939e561555b, 0x1defeccbe2a5f96, 0xcc32d67b246192c5, 0x85465a82d51a5e89, 0x9c63ed932949315, 0x000000000001cc }, { 0x32f6745215c9f945, 0x57690fdc396cec9d, 0xf90a523da10d4378, 0x19c3e56417373a5b, 0xff0cb2cfb88a7f0e, 0x195cb4a4849e6d88, 0x6ccd07c48695130, 0x1cdfb58379321584, 0x00000000000068 }, { 0x7b1f2e682e7e81ee, 0x612be5c8a70adb28, 0xbdd51172295fa3e8, 0x7067e9abac6e2bc3, 0x959805b5cec5f832, 0xedcd53f9bd77563f, 0xf08bd9999c518d1f, 0x4137ff1d3ed58cd2, 0x00000000000034 } } }, { { { 0xfc6a418f4cf5df4a, 0x2b836aa28c0c9c54, 0x259d62d7660407b1, 0xe5a6de68179bfbda, 0xa9642fc8ec5d9707, 0xccb37c11506cddb9, 0xb34c68af74d11b5, 0x98eb96067bfa2943, 0x00000000000098 }, { 0x4ab25980e57a6087, 0x4dfa3489bd34b6e, 0x8440a28faac116b3, 0x9a019c64e9c21fc8, 0x4bcfe5b47595a4ed, 0x20ee376280f7cd4f, 0xa7397b254f10c315, 0xc20789dddf4bf904, 0x00000000000132 }, { 0xd2f319c20fdb3b98, 0x720eb49ac19320e8, 0x804f349533cba1fc, 0x9ea72081870e33d3, 0xf5fa5dbe4eae56f3, 0xab550bd2d43be59d, 0x84348b2de7ebcfa3, 0x50b84bde81a29127, 0x0000000000010c } }, { { 0xb385f29720031832, 0xc31dc757720f3a96, 0x80bd5b73194c59ff, 0x380374a74a52881, 0x737d03c989321436, 0xab9f98c5097cd933, 0x95c613cbb0c52dbb, 0xa148b0c544997a35, 0x0000000000014c }, { 0xa7f069ee8ddd2359, 0xd3a72a5ff661f57e, 0x6181ae5ad8001e49, 0xf8e059b73587c1b2, 0x3324897caad3e26b, 0x445df40d1b59f6aa, 0xe708c939ac2d524a, 0xe04b600dd7322b77, 0x000000000000d6 }, { 0x6a54863f2a18996e, 0xf651e618fb96ee13, 0x13ffc1073f7aa0c3, 0x58877ae0847e769b, 0x1adaf6103ebe9377, 0x522af32f14d1c24e, 0x7653fc1c6c2e6a73, 0xd34f9955ca726065, 0x0000000000019e } }, { { 0x9856c396fae08cdd, 0x248e25966ceb435f, 0xe3552834d4761c6e, 0x6d4b15b8d4f9255d, 0x22cd655814cf4b9d, 0x85ccb665f7c520a4, 0x177646bbc5447a1e, 0x87ab62a327ec393b, 0x000000000000fd }, { 0xe8e607503c56516f, 0x9069d8a6bef7ee95, 0x4b59c114eb3e4cf, 0x92a7ea2c38bbc9de, 0x43e15633a589d7d2, 0xb2e5fd699e9e2d2, 0x218eef83f5f9efb1, 0xa9fb42850fc0f562, 0x000000000001b7 }, { 0x28b01c31fe2cca5d, 0xacfbb987adeb75a, 0xc653f4a8053a6ac, 0x7c15d3b018fad3be, 0xa581ac53b9b46cae, 0xdc2e1d8c2a6f2d23, 0x3e96d8fab940e34d, 0x4cb9977925431832, 0x00000000000027 } }, { { 0x8ad404d8ad81b43b, 0xd5d95dc32389139e, 0xd963edbde22ffb9d, 0x511d5a958bb9663c, 0xde070699ccc38eea, 0xf696d988c0cbc4af, 0x3c4a9af68930ca98, 0x4998b2a6985f37b8, 0x000000000001a8 }, { 0x9530fc970898b02, 0x40fc550bdefcab1f, 0x7dedd4bc4e769689, 0x33277521c49d1443, 0xbb3fcc843e70c287, 0x39aee8b1688f0f3e, 0x7401027191ce112b, 0xe9ec445458d8f958, 0x00000000000178 }, { 0xfb9bb4263165879d, 0xb582955f15d229b7, 0x7a42ed90e60026d0, 0xb1b834f6bd47d937, 0xee173acfe55b5f44, 0x9cc10885c6979e0d, 0xd56d5f1f060f8611, 0x593b1a81b3891125, 0x00000000000147 } }, { { 0x6e582d55b8bcf7aa, 0xfb3418a0796712cd, 0xd69c6a5177bf5490, 0xa5bc42f2e74c3d4e, 0xf3ec971c5f88dd59, 0x1c44059891037926, 0xc4cd3b653716e0fc, 0x14d88659988dd97, 0x0000000000006a }, { 0x48e2322966e63ffd, 0x88dbe282be625c61, 0xc6834160fbfcb26, 0xe8eee7c10b21bbc0, 0x708714168b00efed, 0xc30568ab230ed27b, 0xd8f9030fc3a935b3, 0xc5078570e9280156, 0x00000000000071 }, { 0x5fbe0d61c162df5b, 0xd158765e7dc344f, 0xa137d25e5a5febc, 0xe187ea9f2fb90171, 0x90fbc38993b8cd9c, 0x32c02f71dd962797, 0xa8aaf2cd20380ee9, 0x7c095c67e2df72f5, 0x00000000000166 } }, { { 0xe1fb3842c7b43224, 0xf5c1e3c7370e3405, 0xc4f748d35c86231c, 0x7ffd0ab29d9f5bf2, 0x59cccf0ebf28ca2d, 0xa9864e484c4dbdf2, 0x4cc440922da4a306, 0xe526527c3c6796d7, 0x000000000000d4 }, { 0x5383a5759ee0dc11, 0xe3f5c8b4b49cb094, 0xd200ce702b079c44, 0xd878bab4270a17aa, 0x1f9281cbc0213574, 0x487bafc456ef637a, 0x4e9be856a0e9676b, 0xbbe91a81c8ddbb3b, 0x000000000000b4 }, { 0x6c9618952bb34757, 0x62361f87867e29db, 0x97fd056055a98c41, 0x89d27d7922928983, 0x3dc565debd2e739d, 0xef79f9f8847013ae, 0x5368672326ef385a, 0x4e9b22ffb0f17021, 0x0000000000016a } }, { { 0x9ea7a83be8821796, 0xd077da78abb90ea1, 0x6b275fa98c3568d4, 0xb769bf9f8a0f6837, 0x13c0a3e38cecbaf3, 0x1573f33f4b3445bb, 0x9e1aede46854e9b0, 0x246ce3af7c69ec5b, 0x00000000000077 }, { 0x3f8c2c25929acbb9, 0x899a58e15473b41c, 0x8f242e4098740765, 0xb7a0a62ee665573d, 0xcf2a856ab8c50980, 0x87bba87d52e9da8a, 0xb9626be34d06b341, 0x4e1306ed11176631, 0x00000000000053 }, { 0xebd7970ed6278b97, 0x158305d0c89504c9, 0xf01130c2588b86a1, 0x41c32bddac770151, 0xdc97561bb7046b74, 0x478908494708b0fe, 0x2d38b521d88e08eb, 0xa746012e41f31d3b, 0x000000000000d5 } }, { { 0xdab9eddd2b23768f, 0xeb22609d4e649593, 0x9734b1bf131ffe07, 0x349814e67f8c0487, 0x444e6d44bb29a4eb, 0xe33d2cd1764fb62d, 0xb866fb6b3a5093e1, 0xfa8ce49509aabe0a, 0x000000000001fc }, { 0x5f0fee6e25d6eeb, 0xcc9ae66cb11994b, 0x86b5539491ef0e4f, 0x9d2e84e92414953f, 0x53ceec0e6809277f, 0x9beed347b27ea932, 0x5049e20ad72ce3eb, 0x1331f54846c67723, 0x000000000000d3 }, { 0xd1e38499adb453cb, 0x66e8286db45dbb71, 0x39a686bd4674cdac, 0xa4d7e2f8f6e97882, 0xa5a2214027ffb62a, 0xc02916f5e43e2925, 0xcd68366a22ff11f3, 0x3cbdae3c94106fad, 0x0000000000017e } }, { { 0x47cf01107f487c45, 0xd515ee6ae7547ee, 0x28c2a593c81d069, 0x94e7025251dcd2ed, 0xa37c41e8da47ce44, 0x3f9ed89be3c5a6cf, 0xb9d99ed145fcb240, 0xf0675421d7dcdf5c, 0x00000000000194 }, { 0xe860e6c16d8b947f, 0x4c708e759a44c5fd, 0xa9491be93c3da114, 0x8d1b4f91ff6bd226, 0xc4cad8ce2f990ff, 0x3ab5735910b9844b, 0xba1eab74e81b51cd, 0xd06a04cdc9b51b85, 0x00000000000117 }, { 0x8c9790049ba6426f, 0xdd5b5541e5418914, 0x43ab142ee8c11c55, 0x5c1c844253645ae2, 0xca3c0d0192cf3947, 0x8654a83773640f0, 0x33636834003beb1e, 0xb6b706763d7e9736, 0x000000000000e1 } }, { { 0x6ff4a58aae5a5148, 0x71381b56e21642fb, 0x2922f849ed320701, 0xb8d0f22171faf901, 0xb243c370a8fc0649, 0xca811052ed55615a, 0x4f2fc391c19ab33d, 0x7edafd9d5256a785, 0x000000000001fd }, { 0x64e58f52368c6c7b, 0xe084f14d7b56d579, 0xd16637adeeedd342, 0x88fa405575b60fd0, 0xab9d85794e8e537f, 0xd7ca1e508f87171b, 0x50b0b85519230c81, 0x3efd6dbef7321f75, 0x00000000000036 }, { 0x2820dc35380aaaa, 0x1d09f9c66e8fa99f, 0xb17a3d28f1f38026, 0x1c230771f59f0dfc, 0x9c1385ae20998551, 0x9ef594839e5ebb1d, 0x731aa4b892a6865, 0xf4537e0e046aa2d8, 0x0000000000013f } }, { { 0xa557d53161acd04d, 0x75eb6bd2bdd835ed, 0xcbaac193eb600bdd, 0x4166549db6839e8a, 0xf40503f114b95d86, 0xb5f4d1974d384926, 0xc275a4529c90433c, 0x8a9fe31133af9cc0, 0x0000000000009b }, { 0x762779a81352303e, 0x3906cde6e174d184, 0x1fe4bf11664305a9, 0xfd6053cf5549a588, 0xcb69b1b5ba4f29d, 0x138813767e861931, 0x450bc46cdae26bab, 0xdd06ec71ec3c2471, 0x000000000001e9 }, { 0xb39952560b2757b9, 0x6be108dc946b955f, 0x67f92e9d220ae8df, 0x4203c00509c71db1, 0xafeb05cd5084620e, 0xc31376ffa64cfad9, 0x95078aafcc612ab5, 0xc839776544715ac, 0x00000000000137 } }, { { 0x34d2c5abfbb3efe6, 0xad06beedc4685296, 0xbd88b96750c50b4c, 0xd15ed2b32c91c934, 0x2facf6bac88f17bf, 0xebd6718857421cd8, 0xc6e67519f7e4252c, 0xe266abad0fa3acd5, 0x000000000001b7 }, { 0xf230343f0849edf, 0x7ad7113adf89162d, 0xf34649430707d291, 0xe37fa1abf6d2ea2c, 0xff9374ad6233c72c, 0xea4ab10e162fd902, 0x45f263cc04b3627b, 0xaf47303ee04ec88f, 0x000000000000f9 }, { 0x586c7ec703825fda, 0xdd13154dedb49a99, 0x68b0364ade8805c2, 0xee88c9c8a2ffa856, 0x8ad9b27390dbf3e4, 0x256ba0548152e5c9, 0xbf1460dcf7fd3d64, 0x7b65c5f712b4501d, 0x00000000000063 } }, { { 0x132693ebfe1b5d42, 0x60396aee81b2209c, 0x545d9d7816e465e3, 0xcbbc18428ba414fc, 0x362f91fb4640d1a6, 0x9dd74b7f70a4a087, 0xa57b42a3a8cad3c7, 0x6097cb43360f9d25, 0x000000000000b5 }, { 0x265e1ba295c90d32, 0x9644e7162e1d910, 0xff243683b660852c, 0x5066d993a7c5e6e0, 0x80b3bf5369693439, 0x6f37abd225dfc4b4, 0x5f77aec1b2337c14, 0x180b1c550909fa4b, 0x000000000001c8 }, { 0x9a60ed97e1dae969, 0xeb8208617bf82c4b, 0x869e98ca8b8e8c84, 0x6a1bd9e9e154c6e4, 0xa9246bea47ee459f, 0x22d5bb77502a7589, 0x4d92b443c193b041, 0x7a386379d631bf97, 0x000000000001c0 } }, { { 0x6702f8d82f6e05c0, 0x50574442c079deed, 0x5015385dd88e6ca9, 0x4e5b87d8015e8025, 0x7a256780b880e89a, 0xe45e27f0e96d128a, 0x6e430406d1c9fe91, 0xbed3d16328e0cd61, 0x00000000000122 }, { 0x55179b6c87e2e56f, 0xc77e2ba4af7958c2, 0x57be1613d8dada61, 0xa2d81134aecd162b, 0x9c0803c5351cd602, 0x2be5530463ec611f, 0xe5f87356005f2dfe, 0x57b2d75c63421d59, 0x00000000000045 }, { 0x5ce0743c680417b5, 0x1ed6ca4bfe3f225d, 0xeac0d7b441c10d0c, 0xfbe833989acc6470, 0xe10fbb15177450b1, 0xd6dab8ca625411cd, 0x5cd616acdecb6e02, 0xaf6edadbd75d65a5, 0x0000000000012c } }, { { 0x6fe52daacbb4ca89, 0x2a29db68bf9116d8, 0x6001c9f18e6ef6f8, 0x928e6afc48f9fc12, 0xf4831339fdbcd936, 0xd75c12d6bbfdd20c, 0x9ff3850da42dc833, 0x7b5f284a6b2aad68, 0x00000000000047 }, { 0xa842535e5125fc3, 0x5b2595ac3006dbd4, 0xdeaa7a74eff845ea, 0xd08ac0b22849e3a3, 0xf41387882e511aac, 0x4baffae47b1f3eaf, 0x270c54dd8e610a54, 0x106e650f9d428619, 0x000000000001a8 }, { 0x120c939740ca9fd4, 0xf8650b1c93698474, 0xc2d2e0d9591261f, 0xd9d24c0304ea4b7b, 0x15f43ce04688b40c, 0x6b0ae7e859a846ec, 0x7e7c57a17ea2867d, 0xf1f1f0ac00aba753, 0x0000000000017f } } }, { { { 0x1d27543819cf2abb, 0xfd4b0598d0bae438, 0x8283d81859422fea, 0xef47c2cc7c32ef9d, 0x40f6df68834d58e4, 0x8080dfa57719b3b9, 0xef6eb1fb8088089e, 0x3efed72b39d4de8e, 0x000000000000c5 }, { 0x2650e705a8c2b73c, 0x4806fc7139e9f45, 0xac257e8310d5cdd1, 0xa6d25468969b3f5, 0xa4d0df631c9b4346, 0x6a7b8c4330942393, 0x9633ebc6b1122cd2, 0x906290416c546b6a, 0x00000000000182 }, { 0x891cea2ac5a61381, 0x8e703c389230cafa, 0x43d873202fd43c54, 0xb41130e85f16bb7d, 0x9d5eaf41d4391ee1, 0x162f1dcd30ba070, 0x246f84d14228ecf2, 0xedbddf89fb3f3526, 0x0000000000000a } }, { { 0x7c929cb87efcf979, 0xadcb6f18e802691e, 0xdec6a589e52044dc, 0x342c64f2a29293b4, 0x5d3e3c202fbc7e28, 0x4fb2dca3621ef212, 0xf4b3a465a48e3967, 0x6614f51c09ccaaf, 0x00000000000182 }, { 0x8f5690fd69fd7296, 0x683b1a18ed855c8a, 0x7f97f570fda3c7f2, 0x4020d451d77f9f20, 0x4d76813f69bd1cdc, 0xfd058e42d98b877e, 0x4fa6a487cfe2366c, 0x77182e5f876d5ce4, 0x0000000000008e }, { 0x2f2505b1980893a1, 0x75fda918beb28a68, 0x3255fffe3ecb2583, 0xa7c9e88a68c16238, 0x1c00b3160e948408, 0x1fac6b7a19e48fd5, 0x2f8824489b0bfa5e, 0xca41b143d7048681, 0x0000000000007b } }, { { 0xb5c0058420cfc42f, 0xcee71c728ea7c64d, 0x80f7e5791674980f, 0x1dac19b408eb240b, 0xeca5ab18e5d45a06, 0xfcbcf0b5ef84d6d7, 0x8d4dc581409421db, 0x3d10e1e970ab7a76, 0x00000000000196 }, { 0x38a7e5265e18afb2, 0xd5cc4c96c82816fd, 0xac254e41c6a2cf30, 0x96f6e43f0a307ad3, 0xea182457406d2ab2, 0x859b38cfe1f3d748, 0xb962b4c91157e560, 0x842138d003b0c5fb, 0x0000000000018e }, { 0x21de72f2ec01acb3, 0x569f3737b3364930, 0x828cdc00a743be77, 0x7f243598ba3a3a9, 0xfdaca8ba3321e245, 0x8cd4eae98ece6a7, 0xc292ac6cbf6fb220, 0xe97808c47b498bd5, 0x000000000001b7 } }, { { 0x5684b6cf872bc4c1, 0x85212ba87911c648, 0xde0174b7caf25379, 0x1ab22ec55f46b40f, 0x763bcd7598d889e8, 0xd8a6ab645cc0094c, 0x4b0e2f8078d7bb81, 0xfb4957629e120509, 0x0000000000007e }, { 0xeed69c1083fa60b5, 0xc55bd80161b11b45, 0xfae26e42f9373c3, 0x39a7640b7c81db02, 0x3f2a83b950a9f35b, 0x1ef7f73048f43f15, 0xb667a86936cb9b0c, 0x401a82c34428d48, 0x0000000000001f }, { 0xee5764cfb86af2d9, 0xce1d117575ef8ab5, 0x7a1f27ff189c509, 0x1392c280658ccf78, 0x12d9cc0831abc8a0, 0x3c775c39b432508b, 0xbe6d318a2cacc0ad, 0xb1f6c2fa80ac3f48, 0x0000000000006d } }, { { 0x461694b410716aca, 0x1452f821afea2317, 0x619a3fff1098fd02, 0x8ef53cbdf123cb20, 0x4ab928d5112c6e9, 0x5d1f8168bdcb4cb7, 0xc68fa5f6a2cc0a7e, 0x8cf136031679800, 0x000000000000f0 }, { 0xf077fc341e8a339, 0xec747944bf55b644, 0xe6a187fb8a5fed13, 0x79fc832d141e41db, 0x355bde5ff37d8419, 0xc2b0ab2fc1dba953, 0x27ad1deaa1759c80, 0xe64a2139afd21d93, 0x00000000000124 }, { 0x906f725216224146, 0x55c4789f88a420db, 0x3c1ae5fee44a39b0, 0x7ec5fed93b64e1c0, 0xd27f737439149315, 0x269eb3dac869c51a, 0x450117b0a8f0e88a, 0xb4392fb61f9cbac1, 0x000000000000c5 } }, { { 0xd4e05857ec32e07b, 0xfe778fb97e0c1ab8, 0xba1db3da6f085ce9, 0xbbbd8b49d7d50e9c, 0xffd98eb221e759eb, 0xde4d0e8885f8ed30, 0x3ce25e3f3f12920, 0xd4ad88d206ccfab8, 0x0000000000008f }, { 0xbcb64f9067647e35, 0x28061fbacddb87c9, 0x6a5749c2cb80df40, 0x98661702e7cd07f7, 0x9747649d36fd5020, 0xc1f4afa974e0a716, 0xa7676ad5a265dc8c, 0x416d6436b509b604, 0x0000000000016f }, { 0x48872d45c29f469d, 0xa12a1e6709caf0b5, 0x98c3b3de1e0ca936, 0x42ff1040fc1335de, 0x4e89315eab19f079, 0x1a53f064ffbec794, 0xd24662ccaac156c2, 0x43276b7776530f45, 0x00000000000065 } }, { { 0xc565640dbdad8af9, 0xfb8f9a3362918869, 0xa4198af3b4a11557, 0x4fe90dc9b5fc957c, 0x2f18501e0b2e5f26, 0xfff9c042f86db3b, 0xa04e4f280c5b6db6, 0x90ad0a40017f734c, 0x00000000000175 }, { 0x2602837b4d05370, 0xab0894ff71cc4528, 0xd84d8ea78071629, 0x4bbcf17317d4277e, 0x3e5bd57e09161806, 0x3f02a2b6c6696e15, 0x94fccb7e0b4ebf1d, 0xc3256a04c68d3f32, 0x0000000000001f }, { 0x3c02165e6687dc2b, 0x1e00e891fc2833fc, 0x44b1f4605279dcee, 0x51f5a2e6378d7502, 0x7914e685ac83811, 0x8b12fd39e2c89f18, 0x4d8d1dacaecd7d4a, 0xe22ab5300d5d8886, 0x0000000000014b } }, { { 0xbc7777126dc2006b, 0x6bb5fcfc5acb169a, 0x2de340dc55a0dc3c, 0xc98b2f95726b584f, 0x192a3fc2dcfc3b4d, 0x13ad15b2c9f50f1f, 0x204e118c8bd7983a, 0xb184637e75e9337, 0x00000000000184 }, { 0xba4f6a04fc45005f, 0xe35c5ab88acc899b, 0x25132b047f73812e, 0xa0a07e37609e43a7, 0xbfe300c3a8665b02, 0xa92424a5cb6b1453, 0xd92ec83067bb78ca, 0x5a967566bf8fbffe, 0x00000000000093 }, { 0xa18d66462a7dafda, 0x83d7a445e9c1e54e, 0xfe4e8ca36ef95004, 0xf3d8d5e1e15602c6, 0x5aa9e852a035c3f0, 0x9d429ba53c20a7a6, 0x6a5100785cddcf45, 0x3f96b78778761fec, 0x0000000000013e } }, { { 0x2ddd9c39c966fc7a, 0x5fd9231b16a9a077, 0x8ea758fd157ddac5, 0xbd918f13b3ea8233, 0xf9de8ada08c3e45d, 0x3fbbd5da8f5b517f, 0x18e5fb6617708992, 0xeb6268de05d92d66, 0x000000000000eb }, { 0x9f2bb65c5fc42942, 0xc1d9655b61b9cd93, 0x9aca74fe4ada854a, 0xa7ee7809fe74146, 0x9f80d1ad03c15134, 0x87b57deb2b0065b, 0x6c242f56238e96d6, 0x73b1ca4f818fac0d, 0x00000000000042 }, { 0xfb18d1a5f8ab2c9e, 0xab2438735dce24ca, 0xa81c76cd2b33d528, 0xa0c4f608e7ef3d7b, 0x8248b70296bf6a24, 0x6bffddb73131bc58, 0x76343b6e4c6ff6ca, 0x36838b358db8a767, 0x00000000000196 } }, { { 0x612fefbf5ac8cdd7, 0xfddebfb09464b037, 0x5c7181f94b7bdf6a, 0x51f7de8e256b43af, 0x7de03a45c1984efb, 0x53bb7d274e7c19b4, 0xb83801e903b694ab, 0x42187935f540b68c, 0x000000000001a0 }, { 0xe60da063eac67122, 0xe1eb07764cf1dc5a, 0x4d3f28bf0ec63e7e, 0x83c71fff210e4831, 0x3f12fb2d2b40b454, 0xcfb79f2287fcf50b, 0xb6b7ea7da1a04ac7, 0x1fc4f6c3385d73a6, 0x00000000000168 }, { 0xf76c565640ba82d8, 0xb22133c5790c7d96, 0x38fc77df9aad3e52, 0x11fa4d2f556deb0, 0x93f382e4afede389, 0xc0f448a8a5eadd6c, 0x34e66594bf0db88a, 0xd13775c9b4e570e5, 0x00000000000149 } }, { { 0xc3c1961f8361d085, 0x9a789470031d42af, 0x886c58829c902d5c, 0xc62e071701769e78, 0x1a2e2e9af0cf5a6, 0x6d01f84d2296b430, 0xf3a700a4ad0e3538, 0x3b5e5bad8b8934e6, 0x0000000000014a }, { 0x30101334f66bc87c, 0xb72daca4c5b38356, 0x87dae45f838e5172, 0xe1fbf51ed1154a18, 0xd598a75b8f91936e, 0xb22904676bae878e, 0x1e9627f2972e3380, 0x948a62360be5bc8f, 0x0000000000015b }, { 0x38b91817b1948be5, 0x15e40e8922f45fe4, 0x15f229318da34b25, 0xd32c4e3dc9e52f90, 0xe4dc936c39c9d98d, 0x3a955131c39741b6, 0x2400606beed41ef, 0x1a5033670ccc3d4f, 0x0000000000005d } }, { { 0x51501c01efd8646d, 0x5be5c5874aa03835, 0x7eac7db907fcbdc, 0x1ed2ec24e10d3f74, 0x36df5b780bd5f69f, 0x977116f116311fb2, 0xe57f177f04da590b, 0xb1b3618ca00ebbef, 0x000000000000af }, { 0x2fa60b4d4b412fe5, 0x1a19494d118b9295, 0x6e06ab5211b7c69f, 0x2545881619217c40, 0x1df902e66b56151c, 0x6eb4e6ccdfac024c, 0xeaa394fc5fcd6d38, 0xf87b3f1e81338538, 0x000000000001a7 }, { 0x4b56fd7f57f50e78, 0x812ff2442acfa153, 0x8f9db04dfc302827, 0xbf262e5272b181f6, 0x855425be25be9f67, 0x7c2b0eab6703003, 0x67f28836b98a7299, 0xf44b874bca3bf740, 0x000000000000ae } }, { { 0x7ab16f5fd718f075, 0x47e4de991613c65b, 0x27f5fc9972b4a72c, 0x9fda24f450dafb2e, 0xfda12789daf99b94, 0x36df6c5c9e7373a4, 0x723bdefa0659ae7d, 0xc10c24571720582, 0x00000000000069 }, { 0x9ef7b1dd4f7fd19d, 0x8ee9ee6ac635e8d6, 0xa396812c9e40aa4f, 0x5f4ab1a1cfc277e, 0x9ea02c3ad2c0db14, 0x21365352a866435d, 0xdf13332f437d7bff, 0x12bb021ccbe1deda, 0x000000000001ba }, { 0xc7680d25b35871f9, 0x5c598247d084063d, 0xb8a1e45f184ca1b3, 0xde0ae4c0ef0301db, 0x8eb7a6d7b9f6412d, 0x1615b12883e43795, 0x3f66edc9234f2123, 0x6e063b5064924593, 0x0000000000006a } }, { { 0xa513866980a336d9, 0xfdafe0ee60e4ce3d, 0x86d573c617226619, 0x2b87220d44ee130, 0xeb764a0c9e0dfd4e, 0x1d0f1f8cb3c84b10, 0x3368e25ba0579a92, 0x438fd8520a650cb0, 0x000000000000b3 }, { 0xf981ec251a5b0c03, 0x74efed7429109fe2, 0xce385687f8ceaaa, 0xea633d6c2eefb056, 0xbc0c26692b87ab80, 0xb1f55f36b4f29964, 0x3334dd701b9e326, 0x7edc49fbc4c7425c, 0x00000000000075 }, { 0xbcbf2e774225271d, 0xaa326e32f1a91436, 0xb2761a6b1d348851, 0x1f6e51790000623, 0xf1303cbbad9c3069, 0x704b743d96612800, 0xf43dd967c8c2813e, 0xa2025ed7bfcf471e, 0x000000000000b4 } }, { { 0x1f87baf166ed08b7, 0x6b705f9faaeb3408, 0xbff62c3dbbf8ad3c, 0xbb5eda30e3639eed, 0x7d891de312eccd7, 0xe2215fa33b228a91, 0x7c3b8637a30d74c7, 0x5d98f5cbcb53e0be, 0x00000000000130 }, { 0xde327f9f35f5c0b0, 0xd9a09a397d58ee78, 0x91a6ee2a5dc0f6eb, 0xbf2f4c1bb180d205, 0x552871f91168a203, 0x77002a2445233a88, 0x2ecc2cbde45394f8, 0xb065e43174e30fc1, 0x00000000000045 }, { 0x673a7117ba8e7a64, 0x4ff9c545a2d050f9, 0x502535a8c5898848, 0x78af74e78c90eb4f, 0xf6db81c8b73dd5a4, 0x84b05b940aafab4e, 0x1ea74958c86c05c3, 0x32f9d9939e994c5, 0x0000000000009a } } }, { { { 0xd870ee367c9b2a2f, 0xabaf4ea93c8a9445, 0xd222115ffe8f83c4, 0xea98fae0ae4308b9, 0xf1565cc396822020, 0xb20b817c26548760, 0xe79434b78aa49cc1, 0xe5f6785a42cb61bc, 0x00000000000029 }, { 0x6a1fa8efc52e9235, 0x47c58518552ce411, 0x61a1ff868ee63918, 0xadd44e71e1be1059, 0x64aba6fcd64aca8a, 0xeb0e9b7653403bd4, 0xf8cd818b4a9cd912, 0x6600031d55efa489, 0x00000000000184 }, { 0x4c658af7c594b740, 0xb5b2bbf6e72a0daa, 0x36234b099600d3c3, 0x77910b63661a5a7d, 0x793ae82d9ceffab8, 0x8b2b4922b7aec1be, 0x1edf64543e68ee5d, 0xdebcdb8b0e770ea9, 0x000000000001a5 } }, { { 0xf476d3592119275, 0x7a09af9c40f149f0, 0x565440d1ce448235, 0x30c4ec75a232fe73, 0xab75f6e20fabac88, 0x9419744d1dc1cef6, 0x42feabe6a4900eec, 0x3ceec0cedb99c158, 0x000000000000d3 }, { 0xfcf5ee0c39778aa6, 0x258a10ead1215a1c, 0xdb07e1ea7dd05a7e, 0x214911bf7de3f81a, 0xf83fef52507ff488, 0x9ca891394afb1384, 0x624a5588edca94bf, 0x8191560c1a6d5200, 0x0000000000006a }, { 0xd7402398eb91a005, 0x5b6a50e872711bf5, 0x7d4545c5b46a8109, 0x2e3a25a54eeff8f1, 0x905b16b63c9a5ae1, 0xdc9c5c2bd3aa8b8e, 0x508dac55976ec1d2, 0x31364f68b4bdab64, 0x00000000000188 } }, { { 0xd662db001aa06646, 0x48a89486bc6b99b2, 0x2b9de29e59bd94d3, 0x5157515181aa70ed, 0x9a8a0d8f4cec9423, 0x8f716b5cc69bde34, 0xea48203575d8a499, 0x8b9d53da3c512313, 0x0000000000000b }, { 0xc15ad63a29b64428, 0x97caa07d02375770, 0x85250e824dda9ac7, 0xa3ac337cd4ca3031, 0x97f9da8fca10346c, 0xfa6c4bb95df63f49, 0x84f974851261d697, 0xbb197d01bdd09f45, 0x0000000000010a }, { 0x2605448ee38bed84, 0x833ccc7326f5c048, 0x9a41dba976f95112, 0x29d89f6787031f46, 0xf35de310490cb6b3, 0x7de083716972813b, 0x9614c2b44a99275a, 0x9f9ac97c500f4a7a, 0x00000000000039 } }, { { 0x1f8db9ed21697323, 0xf07e9e16fe810c12, 0x41682c13b45b1dab, 0x830218a6e24bfc92, 0xa2dfe6925ce9032e, 0x75cc0b58e172fa38, 0x799b63854cad321e, 0xfaf821728d84f40f, 0x000000000001db }, { 0x4d8dcfb1b4f74d99, 0x898837e1a482b2b, 0x10d18671779a0579, 0xa111fe252769aa6c, 0x47effb2393c4f6fc, 0x83dd3da87f49a2a1, 0xba613b5664986628, 0x444b6f38e7d1ac33, 0x0000000000009a }, { 0x805e9c3a88788c90, 0x898fd49a66f8edcb, 0x9f1dababdaa32009, 0x998f396ee80c451e, 0x921c23ac684ad510, 0x51d06a1ffb8d788b, 0xcd33611ab7d90658, 0xac6bd6172b66674d, 0x000000000000f1 } }, { { 0xe1b8f716d39b7bdd, 0xbd966ef1d881303d, 0xf2eae533a9176890, 0x6eea3f31957aa7bc, 0x285f1883a567e09c, 0xf3329ad770904026, 0x97920e108aa7c010, 0x96cd43cf05731d4e, 0x000000000000fa }, { 0xcb363816faf95b8c, 0xb72685831e3a7977, 0xb743bf6e98c26930, 0x78f90581dc96b2eb, 0x76aac5fcda929ef2, 0x3ae4cd9be5e2fe92, 0x358dfb31cbe8df91, 0x82a5c3a9e4a23f46, 0x000000000000c0 }, { 0x3848aefbe2c1adc2, 0xc4f7ec75563dcf9, 0x8dfcd62624b41d05, 0xbf2ac5ee4e2a9460, 0xbb03bae82672c22e, 0x414dc61d564a12b4, 0x1874266ae1f1a304, 0xbbef008791503d71, 0x000000000001d9 } }, { { 0xe5194f8847259898, 0x285a89a3b17c5288, 0xc1c002bfe9b01f6d, 0x3f10c59a948b1993, 0xee16a4b6788aeba9, 0x9c32a3533755120c, 0x891b89e1d36cb291, 0xcf6aaf766d7a2bc3, 0x00000000000051 }, { 0xb00b38b7b13ecf83, 0x1ddf78d2de781854, 0x82619588d5e743fb, 0xed4cac9662d94605, 0xc47d4e0a0ad01799, 0x3806187b8e79e6b0, 0x29e449ad8381363c, 0x6a85132996f02965, 0x00000000000076 }, { 0xe08c714b52f2b430, 0xae1d9520cfe0b78e, 0x4330b41d03c3af29, 0xfce19193f89e908, 0x838a6f2f8d37bd05, 0x57ebd6980a25fbe1, 0x1d68140c2394084c, 0x932fc9f374f6bf01, 0x00000000000046 } }, { { 0xee97c4745caccd0, 0x89bf0dbd917c02df, 0x7aa1439b5ae55f30, 0x5443775979ff424a, 0x23d8b7584597c0e0, 0x1aac6c7805950ced, 0x7c173f72325b460a, 0xadce35fc04fd993a, 0x000000000001a0 }, { 0x9394ea46f538722f, 0x9b5ac8216b4edeca, 0xbaee65f29bbf087a, 0x69ec8bad0e6b729b, 0x16156b66bf1c6f3b, 0xc58928674f7f22f7, 0x1b00ca6b0e835094, 0x8d561d4e19ce1e94, 0x0000000000009c }, { 0x21ddc8b0dfb76a10, 0x44fa2cb96567b13a, 0x2ebde5933d302c71, 0xcdca1cda290040be, 0x6fe8663675d61866, 0xfc31c4d918bf14f, 0x765157285a86abe, 0x1e73451441d2190b, 0x000000000000a1 } }, { { 0x1d6b138d15744e47, 0x9df70cb59e5a4bc1, 0xd664f784ed91c30d, 0x8d70e3dad04b0bad, 0x518f6d44afe629d2, 0xca38391a47b2c7d2, 0x1c398ecb2c98f6d8, 0x66fe8289ea460371, 0x000000000001d0 }, { 0x17ead131393663c7, 0xa26891ce1e2be3eb, 0x8d9de1f657df8102, 0xabab0af99bbba401, 0x10fd38087ec1410b, 0x63910265f7e474ae, 0x5945a61813a62645, 0x54a84b29620b0b4c, 0x00000000000170 }, { 0xb077ce1531937c0, 0x8caa57862aba3815, 0x34dec538cf8c49ea, 0x272d4b19497854ff, 0x4edf668152042421, 0x353cc3bac69985cc, 0x915dfd3b75263f8a, 0x15e823f10880721d, 0x00000000000130 } }, { { 0x593ccbd346740704, 0x513df7749f1c56e1, 0x78359770918d8f31, 0x294cc5cdf4699324, 0x7ee66ffa5493e69, 0x72d472837e088200, 0xdbf637ff27ea4b1f, 0x66b783414e58c736, 0x00000000000117 }, { 0x4c7bc38925b4bcb7, 0x4116f5ee12db5635, 0x2a632a6c7e5c5261, 0x181e5d7bae03fb14, 0x1a3f0c8c459e32a0, 0xbbb798ee820c609, 0x7fa9d9c2582d223c, 0x98c0e381058516c4, 0x00000000000005 }, { 0x2d7bb4f087d3f839, 0x97c988229ac6106a, 0xa03df3126064c475, 0x235144b35996a931, 0xa7cef8191b7bf1a2, 0x2006133186c5a6d7, 0x8e9137461be3d791, 0x8161f6135ce2ab8e, 0x0000000000005c } }, { { 0xd1d9f4dc51a01a9c, 0x97df705be5727926, 0x1b16f86230767533, 0x29d4699221c44764, 0x8a39c88c93b3084c, 0x2d80906f5163a7f9, 0xb136be29dbe06663, 0x76f3cc179ce88f1d, 0x000000000001d4 }, { 0x3d1be58d5bbd5aa2, 0xddc4c8e2083d58d8, 0xbba06e85a956a85c, 0x3568615fb3cd2722, 0xa1243f3ef08863fe, 0xd5ba87f635b8dde5, 0x6da948aa94e671f8, 0xc4f5f0d7a33cfbdb, 0x00000000000022 }, { 0xcf49597868c72ea8, 0xafec9220e5d2edf1, 0x5e320085188e251e, 0xe76ab05331b7a694, 0xb6c294ef30af1614, 0x958258ac98eb8ef2, 0x7530056449ee0c3a, 0xd714e7c20fe8ca61, 0x000000000000de } }, { { 0xaf75a42cc528f97b, 0x3b8337241537a332, 0x7441964315aea6b7, 0x4597ed2d3d7193e1, 0xd0822b8c5c2b5e90, 0xe490b0f397d8ce33, 0xb8bc392ec785c57c, 0xe11c598f305a4649, 0x00000000000127 }, { 0x486206a053764145, 0xcfc150fcdccfa7bb, 0x744aacf439e2622c, 0xcc6c9e2cb441310f, 0x195075605844980e, 0x4e6cfb4aca437a98, 0xae622d02513f1eb, 0x6e169c22e00af4a6, 0x0000000000016f }, { 0x16c93231a8c70913, 0x883c9409c01afc90, 0x2ba07f041bc4356c, 0x704442c07ddc4b28, 0x4ca0ec9763d14cc2, 0x67c9a9deef609abb, 0x8fa4aaa5890708c6, 0x35da0c25da3cca0b, 0x000000000000ac } }, { { 0x2e32e3fb421d10a5, 0x190aa3af202d2d46, 0x7cb6dcff511a7229, 0x294e03f3cbda211, 0xb6f457d13a0a7e5c, 0xabc9ecbffe54ea21, 0xfdf22f24b9ab173, 0x7b191bf44f9f766c, 0x00000000000151 }, { 0xc3761b2046e78fc1, 0xecd2b887495e4622, 0xcbf1419263eac941, 0x2d03a2bd251f68c9, 0xf7411a662c22b4fd, 0x5c7641c566d35443, 0xffd27ccd4506876, 0x6623a2c4544d5134, 0x000000000000f1 }, { 0x9a88f12656cf35bf, 0xab05ccc3a1ffc4dc, 0x86678c41116b37cb, 0xccf530c132f2ca59, 0x784bbe3199aaddf0, 0x83c7743f871a44ef, 0x7ae2751e50a7e9c0, 0x111ff9b825874e2e, 0x00000000000017 } }, { { 0x6f69dfbfb49fd5d4, 0x56a761c3d90a1309, 0x5afaee75f11beecd, 0xf7e5433a455c6422, 0xcb3a879606ef58bc, 0x2b8fcac9e12962fb, 0xc8b07ff0c4f79393, 0xc596eeb77edf44cd, 0x0000000000015c }, { 0x97dce13d48596f85, 0xac46b80f76921034, 0xf83589a33b3cfaa3, 0x905460433249860e, 0xf4ca4e0f4092c9b5, 0xc4f98e46f1018aac, 0x1e02b5caa93464c8, 0x6a19be72fadad07c, 0x00000000000078 }, { 0x15b801d2c54e7b13, 0x10b07e198b491f90, 0x65f300833bbe91ce, 0xad90ec77bbcfb5e7, 0xfcca5b3d4c1ff438, 0x8f438233d19d5486, 0xc38c9683b36e8ed6, 0x7d9da43242ada8cb, 0x00000000000045 } }, { { 0xa273298afe141d76, 0x4f68ea30446942c4, 0x88aea278c679926a, 0x284f9eb63319a729, 0x734b62ae300defca, 0x75bc959d2c5f6339, 0xe19019551dbee1f, 0xfc931caa712d0e93, 0x0000000000017b }, { 0xa6693db9fd501003, 0xa9ae1f2e7cd5618c, 0xedf9159e227c8463, 0x456401e9dd6e5219, 0xbb2e8f92d828b50b, 0x397c64180fdc9688, 0x3cdaeadb2c8c1f73, 0xedb26fae068865a2, 0x000000000001af }, { 0x6966a6f586b33d5a, 0xda6919dba38f58fe, 0xbd78dab43b9aed09, 0x679037eb4645ac8f, 0x7e79b16b1456477e, 0x417df36e54233f7d, 0x992500c6b8297e97, 0xd92464f2dd3d1ba9, 0x000000000000c2 } }, { { 0x9ecfbc337bde6620, 0x38a7d561302a9d83, 0x6d9b41360d346192, 0x140dc54e47abdf59, 0x662fc1f1b5f5a1e, 0xb9efd0659fb100ad, 0xe17cfffd6166f1ac, 0xc0acbbaabd8e4a70, 0x0000000000000d }, { 0xd381d2b2415b4b06, 0x68f75b8bf9ad7c17, 0xec0b0cf505fd84ff, 0x379c6230ce7f1578, 0x679272bf92322555, 0xf962f31dc02d7fdd, 0xe4da38cb6f266596, 0x679fdaf487a3eec3, 0x000000000000ec }, { 0x523bf9cb7ac451e1, 0xa9d65611d698c99d, 0x498690c225bb0295, 0xe8849095df6bffdf, 0x524957cffef39f1d, 0xe1835abed88e8a6e, 0x684bb66880a3c5a7, 0x1168d963096bdf36, 0x000000000001bf } } }, { { { 0x47e5bcadcea45e0a, 0x19f65f247f4222ed, 0x4648c38903585feb, 0xc4c99bf9c5a2bc42, 0xca20a90b7fc49cd5, 0x42481b6e5e557326, 0x9ce802156fbb873c, 0x903ae00ffd388c83, 0x0000000000007a }, { 0x258051f0565a3c55, 0xd05daf0f46c8f96, 0x778ded40a500b6b0, 0x1a5b3fa38aa84d34, 0x9806bf3d37583c1b, 0xde0fd73c0e66cfd0, 0x5fbb8ea8370d9db9, 0xc655108e1159234, 0x0000000000008c }, { 0x937eb8daf48dfed7, 0x465f4e03ee74ecf, 0xa90b24be616b88af, 0x25858ec15235d231, 0xa83e3e066feda29b, 0xb8ed5dafd81e8aaa, 0xb7f8b9dc93e0e71, 0x53b3cb5b300b7000, 0x0000000000016d } }, { { 0x9f37a0ab1283c7d3, 0xd756a4a805ab4d31, 0x9ad5058384eb796f, 0xc13c43a18866032a, 0x715ed887d36662b2, 0xf9409704b8c3037d, 0xf17fda7ddf33ae75, 0xb124ab5e6e8524ee, 0x00000000000036 }, { 0x76fe3212f14b6b99, 0xb085ce669b2f9472, 0xe2a3605d61751132, 0x4751d299e1b4ae7d, 0x4099aff862b83045, 0xe52510bd66843b4f, 0x132946b33ab4acc1, 0x53cbfb500338b2fa, 0x00000000000167 }, { 0xfe32f2247192311f, 0xb5369dcf55d85600, 0xc8d832d32a6da9fa, 0xe3bc2ff270e24afe, 0xc787e879675e7907, 0xacdfb247df847cc4, 0xdedf071e3d939fb4, 0xc13d9f0f885e8bf8, 0x00000000000124 } }, { { 0xf2c00e55d889a4ed, 0xbf319281a270746, 0x7417f3bb883c4886, 0xcc7e76206f97023b, 0xcccb3babdc3cc55e, 0x5b15f111df151a6e, 0x7bc6a56fb789e46d, 0x5934b568f7116d08, 0x0000000000019a }, { 0x9bbe81e7fcee3f2f, 0x55460db464bb03a8, 0xd794ee4af4945d95, 0xc128003332410a79, 0xf450e9c30b7fb76d, 0x7c119f3e6ae8d0da, 0xbc063156d7538c67, 0xbdcab394b82610d8, 0x00000000000074 }, { 0x3b50921a1cd71124, 0xd9433f3ea31a2555, 0xcd9c94b7d99a7daf, 0x88e28099c54ca56d, 0x9b4518ffe317321d, 0x81ae1a901316d2c5, 0x83c1d3e471f7e30e, 0x811ed4da94b714fd, 0x00000000000117 } }, { { 0x3ae0bf5e4154b81f, 0xfed1be4b5edda346, 0x969d3c4294f98141, 0x80db5c49f2d12313, 0xd73cf4008e100b2, 0xbc8dbd05fbf77431, 0x40ac8f2c2a2181ea, 0x3e8410982f898702, 0x000000000001f9 }, { 0xd7e669380c9027e9, 0x64eeb20c6d28d88d, 0x9f1831ab38487000, 0xd6985baf349b30e1, 0xe909e77090e10067, 0x5e557aaf18292c88, 0x32c35f69766c9a01, 0xdc9dc7c52714fe8d, 0x00000000000186 }, { 0xa789445437ee9668, 0x33250fd9dd092b0a, 0x98f9bed33413c174, 0xb6cc4c6307a80243, 0x93b9b1ae6e33912d, 0x699131b7db317d3b, 0x803f22e5aec0d35b, 0x1a94a35d8c927670, 0x000000000000ce } }, { { 0x572fe356902e428e, 0xfa7b3577b7ffb338, 0xfd5ec53bcbb8e1a3, 0xb292fde3f344322e, 0xae61299f5e538e7f, 0x2993f1f15cfc6886, 0xf2ab461f25f2fe9f, 0xbe12c647da342f6f, 0x000000000000dc }, { 0x2b24b9c697c94424, 0xea97c2b625c0c613, 0xe675c8bc2af34af8, 0x6f00bf5325f821da, 0x759264ca00f9f86, 0x4978056934079969, 0x9a00df585c6f352c, 0x442528096fc53804, 0x00000000000149 }, { 0x689b2564fd58fe91, 0xcfe2fd9ed40197a3, 0xe521603b34170364, 0xa20b1ebaefc0cc8f, 0x0f16eed18f00a1, 0x72e9e28b7130c853, 0xe0b984a8b8cce862, 0xdcd7cef1e946feeb, 0x00000000000065 } }, { { 0xbaa68cafca754aba, 0xe9fb45f4d07ba7d, 0x55d5e4e41e34ec07, 0x39a784423e8af8ff, 0xbc80aa1d93caf100, 0x1be3e88dce9f8350, 0xf12f25995b456731, 0xb410115f9b0adf38, 0x000000000001b6 }, { 0xd2faa5402ec8f23b, 0x8a7cbc1a7d15f4e3, 0x94dda812e7631e2e, 0xedc23264da28c2bf, 0xa2d68f4c165b454b, 0xb7823e836d80dc8e, 0x5ec65424f20cfb1b, 0x79c7311add94363c, 0x00000000000112 }, { 0x50a6ef349ee927b4, 0x28bdce789545c47f, 0x387c7d6203d8368c, 0xb7541e08079aac6b, 0x9557e818018a8c6c, 0x7e6f11844fcb8d39, 0x944c64f5d36a3e85, 0xba1591343b2364dc, 0x00000000000034 } }, { { 0x7e2ec3e552b50af1, 0x2c541c772ce369d0, 0x25d6552a358958c4, 0xed813f624cb64d36, 0xa5bfebd32345f9a9, 0x32911148b5c383b2, 0x506b1552c28e18bd, 0x477dbb57413b1110, 0x0000000000007c }, { 0xb2622930dc060987, 0x63aaad72c2174f4b, 0xea5b2aba20b2e5bc, 0x143959b1a9f523eb, 0xfae9f9e0dd692371, 0x661f737808c5567c, 0x50b88212c9ae971c, 0x1b00c58f47405171, 0x000000000000e1 }, { 0xceba7357df9f6cf9, 0xbe66e553fe93823a, 0x40ab7ffd0f2e224b, 0x623392554ebf21f3, 0xe75bf9c3842c7b12, 0x93128be19a0aceee, 0xe0ad323d6c2ee17d, 0x18236ae9eb64be45, 0x0000000000001b } }, { { 0x4edcb937ac829eaf, 0xec04a94f244421a3, 0x3e9d70164695916, 0x3c3184678ae772ee, 0xf289770170c4be79, 0xcefad2d6b899c95e, 0x393b5b436e8e4141, 0x443219956fc94323, 0x00000000000133 }, { 0x46ceb4bc1387dfd6, 0x5ef9632c4284c84d, 0xbfaf31072eeb3250, 0x62750bc122382b40, 0x9e658210d7c961d7, 0xc999f7e199c92954, 0x45f57ac145b0d886, 0x1db19cae341ddac0, 0x00000000000181 }, { 0xb5c12c2f070d32d3, 0xce78a486cc0e98f4, 0xbdb1252b2aea769e, 0x3ed0c099c5b02ef8, 0x5689a359b69ebdc6, 0xe2502e1560d3aa65, 0x6281ff3ec0ca29cf, 0x940d5a57e7f28aa0, 0x000000000001b6 } }, { { 0x82e5b47c4688b4b0, 0x9a2e65435b0b2e1e, 0x5cd9e05fee70366c, 0x5cfc1a26fadd2eb3, 0x8e463eca433e761b, 0x76e3c25fb4f0676c, 0xd0738aab12f84192, 0xd6d679ad4bd9cf0, 0x00000000000012 }, { 0xc1db7e450b2c6c1f, 0x549b46784e6c530a, 0x1b7f4fff2ced190a, 0x60414f78a4dce7cf, 0x2b28b36a608ab400, 0x38cedf182d9894a0, 0x5ee9d464abe227cc, 0x76d905b50fc71499, 0x00000000000184 }, { 0x72c449e51446eb74, 0xcd9cb60d1ae3ef07, 0x5b3d794e134764e7, 0xb7f4ded81e09d37, 0x6ea4308b53473dc9, 0x94d30d288cef3709, 0x1e4d06582581fe7c, 0x36815b032bf3894a, 0x000000000001a9 } }, { { 0x8833952eb13f5aff, 0x35d774e74f393630, 0x78ea40ad820126d5, 0x26c46d9ea4e2ed1f, 0xc65c06021b738d32, 0x1e958c431b41eedc, 0x7143f07d4704cdcd, 0x933769883eb8764, 0x00000000000155 }, { 0xf0a5695a1e616fac, 0x342dec6c004a2b3, 0xc004f16ba4a56bbd, 0xb52d641c52b1aed3, 0x66004d7a08cd3206, 0xea49c6cbd276fa40, 0x31693d8bfd58758c, 0x2c6b617d092414ea, 0x000000000001b9 }, { 0x72e85545008fbac7, 0x1674cbf9d7c720b8, 0xc126642af2f0e108, 0x6ea37a6aa69cc6c2, 0x83b67593ae6e5b9c, 0x26217fbd39d7cf92, 0xc411f92251340939, 0xac85e09a7d3253e9, 0x00000000000091 } }, { { 0x3593ed0482ebbf90, 0xb13298490ebcfcb6, 0xc0ca591657b2b32c, 0xaf56d1cfbb313f95, 0xd375c6787454b2f8, 0x8d27a5c1adb18382, 0xc202a5bb457181d9, 0x499bb72dc5114e20, 0x000000000000a3 }, { 0xf230215a08f691de, 0xe0c523657824bab1, 0xa9a4b618d2e9cd81, 0xd59a8879435d25c3, 0x14a8f46db6864143, 0x24d488c0a23cc034, 0x8980b46ed4042e30, 0x4134b14b3fc68f35, 0x00000000000001 }, { 0xbe601e627dae2a50, 0x7f9b48e97776f44b, 0x7f8c85f8e38d0acc, 0x21c4b6813e677cfa, 0x1d0fad352ae268e0, 0xdd2c76646cde9eca, 0x30900b6c63f5cade, 0x2e9e3e636939755, 0x00000000000127 } }, { { 0xee09cc3234f1be9c, 0x783c811b66a3b1a1, 0x946a7c37a496446f, 0x38a543e73a2c79a2, 0x56ab85dc48cfb193, 0xf4d0cb9e6c3c6092, 0xf51425561d747d31, 0xa40a1bc651f2425d, 0x000000000000be }, { 0xc294d57219688e95, 0xd1e6c4e7548d850c, 0x988bb4a2085609fa, 0xec1af604b8e9ae14, 0x4a987e773c5dec8a, 0xe331f3611f32eff2, 0xad20e258bb88871b, 0x70d0b51c2e55ff20, 0x0000000000012c }, { 0xfc5356f0349f2f1e, 0x81f353158c27f256, 0x3bce7f79f3b8ae1a, 0x832fd6a20e63cfad, 0x1e8b2c216d34e199, 0x2a2b3060db6438af, 0xd464d0a7261a8439, 0xc2cc4fe1a6b22c70, 0x00000000000085 } }, { { 0x93b58e3082f52d6d, 0xe7617ec38b747742, 0x6eaae77fc38c7ca6, 0x50796db9d56524e1, 0x19b4d1452df40c40, 0xf6c9b42440563379, 0xe2f3c44c709fe8fd, 0xfe72062b41c71508, 0x00000000000052 }, { 0xdc815729f5068209, 0xecf8ccadf9e2bc54, 0xe235214a616de359, 0x6128588b76cee490, 0x935f075edd02bdd2, 0xa7821909cb5f0f99, 0x9e443a0722131d0a, 0xae29d9d96f67b411, 0x000000000001ce }, { 0x66d5e8e3ab37815a, 0xe68de2694bc52bb7, 0xb82be58b4143162f, 0xfe4e6c5d377e431e, 0x6531ad2c30e39d03, 0x41893bcc900df325, 0x73e13b8b87dbac22, 0x15600a7d47d88d84, 0x00000000000056 } }, { { 0x896883e619f612e0, 0xd99d0ee63d1d6be6, 0xb275c3127f382286, 0xdcd8999b7e2aed79, 0xc33772299d90a46, 0xacc3cccb3062ebcf, 0x7daaff38c65e29ad, 0xaec509008d723fc6, 0x00000000000096 }, { 0x23148a5d06cb337a, 0x293ff8394dae77eb, 0x86a871d30cd6e8c1, 0xd77c6e222de12acf, 0xe47ee2f98152e359, 0x82d5dec779ed22b1, 0xe0d6d4ddfb203637, 0xcc9324c04e314d33, 0x000000000001d3 }, { 0x2dd1bbf20d575b3c, 0x52683d03a0cc541, 0x8ebcc6844d0045d, 0x17fc4151a9c15d3, 0xa1eb22587093978, 0xf584aa932d44a2fb, 0xfa9f3ea8334ea549, 0xef0f175e67aa0775, 0x00000000000110 } }, { { 0xb575232ea828d19f, 0xfa506866107077b4, 0xb4413a08a8b2258e, 0x1f1e6dd398eeb5c9, 0x3ed034a3750610f6, 0x73dbda9ad0d8e3d1, 0xf5133a64f95a3c9a, 0x139bf2a032468bd3, 0x00000000000059 }, { 0xf5eb79839b6efb0a, 0xa05405e50559c2d6, 0xd003c9cb2c2eb0ad, 0x5c61b8a3f22692b9, 0x476a46553af87b3b, 0xe66f0f176a26111d, 0xdedd06ee3d14cc57, 0x75ebaf8a5c3876a3, 0x00000000000134 }, { 0x9f66f3532d3fee22, 0x9193bea346b5d172, 0xd8fcbf4fdeea765f, 0x9607179299933bc8, 0xa2c7ed95ea56d872, 0x533a8c39da7a388, 0xf11f7159fc2db2ff, 0x8399bacaec214bdd, 0x00000000000076 } } }, { { { 0xa78cddc27e11ebcf, 0x5acf31c915e084e9, 0x5b2a8a47e99d1c12, 0x53e0754f18842d3b, 0x5f693a0582ff327e, 0x539832cb6cb8d232, 0xb23987599dd7faa9, 0xd2172e22cfa5e0dd, 0x0000000000005a }, { 0xba0613244080694c, 0xda197185cb45cd85, 0xfd964e5cfbc22ce0, 0xa26138a7d95813e2, 0x9004de7f6be4e7, 0x4c242ad0c9a984d9, 0x6abe7fb917fefa75, 0xe10ba337fe6d22a8, 0x0000000000004e }, { 0x45309848fae17256, 0xbcfd1fef9c76f14e, 0xec0608e36c570535, 0x2dc1b75eb0510c49, 0x9c693bf445f4db57, 0xe09bb4261e86428, 0x11906367f939aee3, 0x91afb986e907a8d5, 0x0000000000016b } }, { { 0x4a09c32777db3ae4, 0x23cde093a6bbf52a, 0xd00bdbf43162f89f, 0x405e89c4386731a2, 0x555809b3af4d73ea, 0xb9e2bab8bd764812, 0x9fc2224fc7644c91, 0x9365347f03790af8, 0x0000000000010e }, { 0xc93d2ed9c2a32b39, 0x90cc3857cadebbcd, 0x8f71c19378a86b4f, 0xf7fce8cf069bd8ba, 0xe3eaa605ad9edaf2, 0xf14f99409df5c431, 0xc7d4ab8be85293d9, 0x494a51546e1c2634, 0x00000000000091 }, { 0x1729a424b2c59021, 0x5b8da677d6852c6c, 0xcf03483644f8d407, 0x6cbb344bc4c6f00b, 0x14fe08b3f5fe2fd1, 0xbb403f4fb6c01444, 0x4cff1f2755ddd612, 0xd90cde3760eaaa78, 0x00000000000049 } }, { { 0x7c28c44d87962ca9, 0xbb88ed7569fcc2c6, 0x9640c02bfe61f207, 0x1d8ab0f39409604d, 0x9ab9c8e446836fd7, 0x21f3d3c766a76977, 0x9ea2e1c06b21af92, 0xeab4f31f1f9ed780, 0x000000000000bc }, { 0x641d00421d7be798, 0xded8a750d5e9e5a9, 0xd8883cd1aa1ffac, 0xdec82637b51835e, 0x6f19164a707bd241, 0xcb8d481ede7bd338, 0x68c8f9939c0c1c7e, 0x5fb5d339c1ff8baa, 0x00000000000160 }, { 0x372d52f3ad08cce8, 0xe085a596d7ebec15, 0xa0e9f5ac40112aca, 0x70f9dbb3c9655ed4, 0x4016267b15f475b7, 0xab63c5d9e8f8c79b, 0x7791c8151c29eaab, 0xbeeedf05d0b99292, 0x00000000000193 } }, { { 0x4124b0918b83cadf, 0xd5afe970581f206a, 0xd6ffe2e8040dbe02, 0x8f521fccb3397bc3, 0xbc7551c71e716daf, 0x607f9c2fac343236, 0x93237daeb814ea40, 0xee7367cc16e0ad15, 0x00000000000168 }, { 0xacfc60483d40ed06, 0xce1746be57e575ec, 0x7e5c46c44ee864f, 0x130fe9f39681af25, 0xa1a9c262091b6f67, 0xd899d6d4e579e4b3, 0x8a0788c88048b86d, 0x56173fc697882025, 0x00000000000052 }, { 0x935df64c3fa5b638, 0xe33fd61be65f14ea, 0x13f045a54e8bbcf2, 0x647c4975ca8bce91, 0xd88844058daca01c, 0x9272bfc76c3c86af, 0x62c77757155616d5, 0x1c098f099695c5c2, 0x000000000000c4 } }, { { 0x66b59dda04fa90fa, 0x41b235d505d93445, 0x480eaf30ed3c9d8f, 0x1dcc6a02b2350d15, 0x30b9c409b0573500, 0xc4e2682ab53d2159, 0x6ba0d1d03b349bf2, 0xe09949e87d1884e1, 0x000000000001f3 }, { 0x5799c148ac5b1ffb, 0xd27a5d4a72cea9af, 0xae3ff354dd31b148, 0xf2ef904b9fc87b08, 0xa0f22f0d185f88d, 0x9912079b82198b2e, 0x97cb1727a104e039, 0x27f760db8706324f, 0x0000000000004d }, { 0xb4e48334272d4106, 0x6b1e7805d8023b1f, 0x5621430eb7ea6fd1, 0xe152d6e4a7547c2, 0xf25b0e840c63972c, 0xea5bf60a435d8b3d, 0xfa516001c06ad6c3, 0x8ba81c0440e9a7ea, 0x0000000000003e } }, { { 0x8166b4438ae152fb, 0x4f58abd25e85a3fa, 0x657ce7248cc0421d, 0xac9b1c0b32468cb2, 0xccd9e0b6921d095, 0xccf748f810d443d0, 0x5e6da419806bb0e7, 0x83020662deabb0d7, 0x000000000001ec }, { 0xa75557b67d9556c9, 0x1f3c4440956e121d, 0xc04d31b6bb9e150f, 0x6bd75ecdae0d57d, 0xd6dc1612cc548b0d, 0x42f60b3505bc4a39, 0x33c3cf714ca12b84, 0xa7357c1ff24e7f71, 0x00000000000110 }, { 0x46b681c3bfa70555, 0xda1dd034d6e0d2d3, 0xaeea18f4b4a12b27, 0xdb5346af1ac0876f, 0x8a24832a56955df1, 0xdf23feb0321b287, 0x134f2020f6f1f34a, 0x5dee00ae82f6c7a2, 0x000000000001d6 } }, { { 0x9de93cbf8f1a100c, 0x28943b10b6ba9f3a, 0x1acf95aa78da7105, 0x6c47183c764973f0, 0x12d0cec35f4f7846, 0x75d652bac31dae24, 0xa1112bbc6c41e3d8, 0x14f4e8f062212df3, 0x00000000000145 }, { 0x5b0f8dff32949fd4, 0xbc4444c4647e0ca, 0x2492a61a22fcc199, 0x9d2d526279db2692, 0x2b8dbaa50b2b0af6, 0x6b4081e40b97e520, 0x72038de6dcd3fdc1, 0x1aa36152b4180c73, 0x000000000000cc }, { 0x5951ad380e7d243d, 0x2187c0adcd869ca0, 0xdc2fd1ece8261750, 0xaad14847f2446f79, 0x3259bd8ba4b28ad2, 0xd53ee52c398bff45, 0xb5b409a84ac0bfb8, 0xa1c1d98bac488f34, 0x000000000000b4 } }, { { 0x897025a6714deac1, 0x6fe1f52d14fa1bfe, 0xb26874b6d7d91035, 0xfc823d577d8f0001, 0x7e6512b89ee12539, 0x2bdc0019c3441e06, 0x97e003635adff393, 0x17927fcb7a6d9992, 0x000000000000b3 }, { 0x5ddcdde84ae49295, 0xb77770aa623f3898, 0xe2b1f1a63f7c9a6, 0x55cd185ba5a91382, 0x51e60dd6416b5ab8, 0x1990f453550a4a63, 0x79141d66cca51afb, 0x1e0721fd320be7e2, 0x00000000000177 }, { 0xaf2fa5442809008c, 0xf282a355588ee554, 0x920be6146b36ea13, 0xac4962a497cd8c2e, 0x5b72d7ae413e7b62, 0x5b4472dd2eaccbf1, 0x73f9b072dab24349, 0xc6cf894cb6a00ea6, 0x00000000000175 } }, { { 0x6facdfa74d2eac2d, 0x1e14e4fc248b3c25, 0xfd01e25abc568343, 0xaf149e94ca5db9b3, 0x29f6914b8475c576, 0x9c375216836ceec1, 0x6f10072485f2dff2, 0xf54ce6f85a20854d, 0x000000000001df }, { 0xcbebab5f96022eb3, 0xc7a6501872eab7bd, 0x8a934ebfbb16310f, 0xb4dcb0a867e25ed1, 0x3d035a2ebed1d0ce, 0x4010b1129b7a5bdf, 0xac39fbe1a5722063, 0xf8b7ae6f09af15a2, 0x00000000000190 }, { 0xbd196f71344d2e46, 0x975ea456916cc00a, 0x8cf8b9780155c7f0, 0x38c7db30fd7ce8d3, 0xb003c78b7c00d968, 0xbea03b92799ca7b8, 0x489bf952582d165c, 0x6a3d9e1380819876, 0x000000000000c0 } }, { { 0xec8ad7430105bb4a, 0x4c3bbe4cbd91b7e7, 0x6a4c49e26ef44fe7, 0xe0fc009146fb5a31, 0xde13bbae050ad836, 0x2a9a6a7ca0f3f669, 0x3f2ddc08b8c7661e, 0x53421374cf8380ce, 0x0000000000007f }, { 0x9326e84bc0a9539f, 0x2783955898aba6bc, 0xcf4ec51e26b96931, 0x490372d5c5ddae88, 0x1ebc2a65eb06700a, 0x3788a048ea4bec00, 0x83e88e342ae8bd06, 0x5947d1d44f6292df, 0x00000000000175 }, { 0x4578090362600074, 0x6660252a37c3a4dd, 0x76aa29ee747f9867, 0xc99274c0ed43fca6, 0x9e198640980cf94f, 0x67dd62e5e5d6b72d, 0xf83616f8389a153b, 0xe6f84bfa5cec59b7, 0x00000000000063 } }, { { 0x6cfde90c2c924eff, 0x4874b9ff2ead468f, 0x5ce0b7fa1a6e22e5, 0x5a91aab38ebcbf4f, 0x20a0660b8a501877, 0x5121efcb651095cf, 0x2ca449e9357987be, 0xf9a1754fdb32870b, 0x000000000001cb }, { 0x59690c594924681e, 0x7d80518f26dac188, 0xaf481f27316e37eb, 0xc8bfdaf78c2aa412, 0xd56aeabdc977aea2, 0xec98258cb6556679, 0xa7960935c23fd838, 0x9e117342ee956e10, 0x000000000001ae }, { 0xb489351b7ddad8e8, 0x4d923dc8ee4586b7, 0x6d889ae03bad16c9, 0x8faa0a75416c3c18, 0x7a32d35025348f06, 0x7f94422cca0e1512, 0xffc27c854f57725c, 0xda04889da516dca7, 0x00000000000034 } }, { { 0xbde22aa18713c0f2, 0x1d32796ccfe0544d, 0x407c68705d422ef6, 0x14bdc4179c6a3925, 0xa11d1b92a23d63f7, 0xb6ed5955503e361e, 0xbbd0dfa8b8db29f3, 0x9b03949a9736a53c, 0x000000000000a4 }, { 0xa460d79c56bb13d2, 0x10e7e4ae1d86057b, 0xb7277b4b24965f2a, 0x53336abe5454662f, 0xe354f33da9a1adfa, 0xbe488e88e92e3700, 0x1011dc9077520912, 0x6ebb4bfc3d525d77, 0x0000000000009e }, { 0x5b9b96756eacfb30, 0x398e5df4911a0871, 0xac418b9b5d20dcf9, 0x156e37684042f53, 0x2d26920c475daa3d, 0x17cefeb356c0ae9f, 0xdb1f3f92423fad13, 0x910f338adf151152, 0x00000000000141 } }, { { 0x9216feeec64ef30e, 0x34832654d30290f1, 0x9f116a23fd20e024, 0xf1a08093760dbec3, 0xfb7411808c455d18, 0x3495cd1aa3fa15c1, 0xce5e755ce3a434d, 0x8a36d62374525cd6, 0x000000000001ec }, { 0x2a2f245e35bf5233, 0xc6430fee00e4544a, 0xf15ec92c27340b28, 0xdb795b41abf5cda8, 0xf805fd796afa0be, 0xacc47cadd1d41592, 0xc55824cb193404c9, 0x36b7ba9bbcb5e010, 0x0000000000018f }, { 0x83fccc5f32a72c90, 0x67ff313c9aa0534a, 0xa9893213e4c6da56, 0xd2a414d15bc7f76e, 0x544064ae3fe838e9, 0x4e8283b1560f5a7d, 0xc02b39bab1b89a7f, 0x601872161e64cb7f, 0x00000000000113 } }, { { 0x2f3e9926146b5efb, 0x648d9ad783eef292, 0x9ab24787e0fac7ea, 0xc3a3100f76570f0e, 0xbf91aa588ea16e4e, 0x25ed9c21590dcccf, 0xd583ffb597e1fd88, 0x556bf0c75c08e83d, 0x000000000001ac }, { 0xd18cad20dc4bde01, 0xd24f55071706e75a, 0x5d45b6968f75cabd, 0x1635db287818d0c7, 0xd024f5821fb1cd35, 0xd0969cb2711794ad, 0x971faa3617d5afdf, 0xcdc310c5ed8bac72, 0x000000000001d3 }, { 0x565db6db73c2dd3e, 0x671de5edf91e8fd5, 0x8c0cf9299f152ce8, 0x6c429a9d0b7d6ca7, 0x478617aadfbe5d46, 0x745b6a8c832ae26f, 0x13c4f1e3a4d7c0dc, 0xde3b22d76c3775eb, 0x0000000000009b } }, { { 0xd8e223971ce546a2, 0x52747cac38fdf380, 0xdd844ae7c286473e, 0xbac3f8f33fd209ce, 0x38eca5fc1b0e1680, 0xebc5953ec28db279, 0x8a1345184770edd6, 0x8eb1f5913bf9a888, 0x000000000000e6 }, { 0xd98d3f8dcd9cbe86, 0x61fae159cd1a91ca, 0x3bfa31f630226b7b, 0x1c23a5cc2dab4bd1, 0xe999ce93f7ab26a4, 0x4952c67494d14942, 0xb2d2a58aa5c4845e, 0x193975815506b57, 0x00000000000055 }, { 0xb8c9da8d50013b28, 0x5e7b3b1050cbc040, 0x2217b8e99cfba818, 0x5ddffb58bbdf6684, 0x192b96cbeb98005d, 0xc95b99399832e0bc, 0xf5901b18feeabdae, 0x442a9c1261388338, 0x00000000000028 } } }, { { { 0xee557d14a863e1fc, 0x99adc47152100018, 0x3d3f2b511c4be86f, 0xaedb141d7a353b57, 0xa9c1ba8d95564ccb, 0x2c507d6c0243b139, 0x7e0d4bae50d5762, 0x7bf3d7ea29cf61da, 0x0000000000019d }, { 0x2aa469709277d76b, 0xc605892a420246ce, 0x57b2771be0cedd82, 0x6b526b9e2d3d89d4, 0xf83adcb34f316c9f, 0x44042e5413c03673, 0x989a34025418c60f, 0xc4f9bd11ea6eece3, 0x000000000000d2 }, { 0xd1b7ec6a05f60a6f, 0x59dd15fe7d5a982f, 0x1d8bd23b3b957e30, 0xd8b9dcb73d68d2f0, 0xcbb81777fde2d19, 0x9e8c43dfa824c523, 0x910632c3e80d4b96, 0x83dbf9571ec87ee0, 0x000000000000b3 } }, { { 0xc3a8ce9103a9b3c3, 0xb557bcccb1ee1fd5, 0x6108a6db5d710bff, 0x1e4f4b56c6104383, 0x83c19c874b923801, 0x7e418dfab0a6dd79, 0xbf121ed9962ed9b0, 0x18baa74596743b4d, 0x0000000000000f }, { 0x8f106365b657feb5, 0xf093c00cd6eb65c1, 0x47a0893c2de24b88, 0xf407be8e68d2024e, 0x5524e021025fceff, 0x1fa53544cf42921d, 0x3985ba4fd5a5518e, 0x677b5a86ec97ac92, 0x0000000000009d }, { 0x82b8fc4ff0ca5d71, 0xda54dcf8e920964a, 0xa36aabd3a75deb63, 0x6e376091b433cda2, 0xad4361235da4f102, 0x7e87af6aa4b111ec, 0x3bd80241cfd8b4d5, 0xa5e7c50ddcc9d711, 0x00000000000107 } }, { { 0x6278ce6db84c758b, 0x16801f32c18d6d55, 0xbe83489b29635783, 0x9d69db7c603e4d9b, 0x584297714355c443, 0x13f5a861291e3c8, 0x4b62d1a0a371852b, 0xe1e5f18535e28d6b, 0x00000000000136 }, { 0x8001fef53438c469, 0x49a7b86b24090fc0, 0x4e950ead6df48bc, 0xf5042b135814af30, 0xe4ef93c07f5a08fb, 0x841f3f846a39d5c6, 0x99afb539415917e4, 0x7bf7566c84744b, 0x00000000000111 }, { 0x9038e47d51809651, 0xc4992ee6498bc132, 0x220e27857886a275, 0xf10a59e7a10d70aa, 0xa52234acc9e659b, 0x1e151a3c9024f3b3, 0xadb368de55339e57, 0x17ec78fa64d0ce59, 0x0000000000016b } }, { { 0xb40bab814544fe90, 0x56c1eb3854f4e33, 0x819d8f1c3eea5132, 0xb1a61dbe7b5a6ef2, 0x706ccd24f749b6d9, 0x718c9a7663abec87, 0x8ed7b9648e74a67b, 0x68e876b152e3dbec, 0x0000000000018b }, { 0x1f37b2fc7419da2b, 0x1a145af1ca974912, 0x63406b71e3a9246d, 0xacd3e06b7ebdcd67, 0x900adf8efc618b36, 0x1bcf0e04b5e3338a, 0xaeea444686db2223, 0x1936eff7137085c3, 0x0000000000005b }, { 0x3303616dfbb64a1a, 0x2c6e86541cbdfab6, 0x660ef95f239bcc25, 0xd73238ce06ae4944, 0x576e74d954316e54, 0x8adf0fe16fba7019, 0x2436c7d4c98e12d, 0x2c28694c0e03e1e8, 0x000000000001a8 } }, { { 0x345efa4c1d07b287, 0x965bfbe11f54af7f, 0xbf2caa79cca1954a, 0x8e2b0d8a70ab610e, 0x9d0f8659aa5f5bd1, 0xfdcadb23c852debc, 0xf037e13da24d739a, 0x2323dc0f3930f1a0, 0x0000000000016a }, { 0x48ff0c9ca3f04fa5, 0xe246adbfefefba4f, 0xed70289131dd0de, 0x43792ce2caf8c24b, 0x1d083dcd9603865b, 0xcdccba8c1951fe64, 0xdd207f895084c7cc, 0x776be7173300bff0, 0x000000000000e8 }, { 0xeb16861a74f356e8, 0xc5222989ea534adc, 0x27cf582356c77930, 0x5afd6c3db84b0023, 0xdd3f560d3ec0a0c, 0x66188e3816c54781, 0xbd5cb423264ee163, 0xec1ccae5933075f9, 0x0000000000011b } }, { { 0x2abd11e67e33c043, 0xbe3a66b020579636, 0xd69565114e62d268, 0x1a104b784a747d2c, 0x3dbd0f688b4fe8b4, 0xd3bff081bc40a22c, 0x3c28d5f41102c200, 0xa9b2533b034524e1, 0x00000000000124 }, { 0x881cb9c067534526, 0xd07bd005650ea9a1, 0x7d7316884e884607, 0xa5ac3f906dcf064a, 0xafaee74fd00d8f04, 0xcc8a284ba22236c2, 0x85a31f7f65722bd6, 0x7b2bddecb543a7f7, 0x00000000000132 }, { 0xa6b7ab1552baede8, 0xa2979a724d8da4df, 0x857e98ef6253f82b, 0xd7bb3164173b4420, 0xc5e1decb1ca9b144, 0xbec8b59593b35eef, 0xaba79f43f507a429, 0xfca8e3c5db6c059f, 0x000000000001c5 } }, { { 0xc332254d277110bd, 0xd4f4ed0b23126fe9, 0x89487b797160dff7, 0x74705c76e18037f4, 0x2dcd67b38a98b642, 0xcf1c239cd0f3f738, 0x9b866a10b6ea2081, 0xb267231e1d2aa8f, 0x00000000000114 }, { 0xcf67f2b371a0db9e, 0x5a32f7afe21cf2fb, 0x7d0781db72af2e1e, 0x13a5aa97648cfe3b, 0xb69cf51775cbe567, 0x38125d17d60f969c, 0x9a5f7ef6d1adea4c, 0x7a1db64957411869, 0x00000000000114 }, { 0xe97c98b6be90dc53, 0x63a1a0ac869a9084, 0x7787a23f16ddb8f7, 0x97fe32be7573b67a, 0xf81f82a41aa9baa1, 0x1f70964ed32d0334, 0xb4e09a95adf7078e, 0x6308dfd7bd94b94f, 0x0000000000011b } }, { { 0x4ebba0ab591d306c, 0xc5f3234097e87d83, 0x415239736c056110, 0xcbdeb1157936c74b, 0xb5898eecfd894e60, 0x514631b51e8f7fe6, 0xc1ff56c246412818, 0xf304cca7e5324ab2, 0x0000000000016a }, { 0xc8183e82a1d9a862, 0xa118ae981c745fc6, 0x2535e75a17ac91cd, 0x88f39329063dcb79, 0xbbf04cfe3140ed2e, 0x9968270228d116cc, 0xa713015e4dbc1333, 0x4087440b2d45b491, 0x00000000000117 }, { 0xadf90d2cd65e0078, 0xe6c9de28181ef170, 0xd5ae4ffebd6bddf3, 0xea0c5f8bbe6869bd, 0xff7ab8cf2b02d4e2, 0x1ae2da162fd9cfdf, 0x7ce9332ad76e5b46, 0x7ef09c0e45e6ce4a, 0x00000000000059 } }, { { 0x9bc961e8d2fb6a7f, 0x6bdb550d9ffdf30c, 0x506476039ce00c3e, 0xad89b26b647f493e, 0x34c0c30d5fc53ff5, 0xb70814dfb81ec801, 0xcbf153282eda9cb3, 0xb307e5f8e924bc56, 0x000000000001e4 }, { 0x6f0104c09c70fc4a, 0x4fec116d9e0dd3c9, 0x7d1a761be743b2f6, 0xb4f468ce1b71142d, 0xe77df911ef2b427b, 0x363f1cfb43f866aa, 0x6da2a48ad3ace5cc, 0xd8921ecaffeb49b5, 0x0000000000009f }, { 0x72a4131dc7b81c3e, 0xa03a16cf9a182ef4, 0x45e6187ca73c324f, 0xc02cda6193519a09, 0xa152afdb2dc6e683, 0x10798e7e9537764d, 0x4a42b10a5f7136d5, 0x208b4906531d5dc1, 0x0000000000003e } }, { { 0xa4b0bcaf37eca403, 0x4ba330763651a75a, 0x41362868bd6ec7eb, 0xeb1132b078c6dbc7, 0x53e58f59b38e29bb, 0x3f7a16c612018f51, 0xc00213c4bc23bc0b, 0x760246d3c0b6a229, 0x00000000000174 }, { 0x1b4b2dd43bfc961e, 0x5cda465dac41c89a, 0x5e6e85d702f1d25c, 0x1bc3e2eb43f57247, 0x91d8ed520d9a898, 0xf1833777fb295f03, 0xcc96de5efeb8c3e7, 0xe02afac034fa07b, 0x00000000000138 }, { 0x920f813cd5e901a3, 0x861ed304fe714154, 0xec647f91349ab234, 0xce8a295e5dff9b2e, 0xcb0dfa18086a691c, 0x29a24eff860dba90, 0x8678b01fe1a48625, 0x8f30b031f3fbd535, 0x000000000000f0 } }, { { 0xda3a4eae04772267, 0xeed3d23aeb25c3b9, 0xccc3f38dd7cb3229, 0xd8bb26879fd690d4, 0x192a99841bf0c4c3, 0x9a72ec5c56f210ec, 0x371ce555f71a0452, 0x8915ea4ff6b73f9f, 0x0000000000012c }, { 0xb642331622fc064b, 0xaa6483b78501438f, 0x542387f3553102d0, 0x542a48c82063e490, 0x511b41fb714ef5f0, 0xdd99902c1199da49, 0x2dfd8b6deff8f826, 0x7902270a1827b1ec, 0x00000000000116 }, { 0xb50baac7a9298bb0, 0xabeaf5c138baff41, 0x18b9ca6d6b0f2a2e, 0x4b41b6ad436b99e0, 0xbcfac686e31e343b, 0xf57159a79cc1b07, 0x798f2847cf1d8a2, 0x7dee6b38d21ff4ab, 0x00000000000062 } }, { { 0x1c978ddfb65d0ecc, 0x55a1a97bc10b1cac, 0xf5742dfb0a5233aa, 0x234efacd855e577, 0x8a83df3aa162b049, 0x95c0e53d0ccc0223, 0xd33428eecc1bfb43, 0xb6c59f07eeaf8818, 0x00000000000122 }, { 0xd3d698ada446accb, 0x2746579b356becf8, 0xbf2f2c04cf867024, 0x62ed4162224d33ff, 0xb06d54caf59222e6, 0x60a5207ea8f76b29, 0xe709710dfa9d53e9, 0x269aa6862d3ac242, 0x0000000000004a }, { 0xe710a644cccaa0ec, 0x9ea98b5ba85dd21c, 0x89f15f11a001659f, 0xd342d1ea360210ac, 0xe7345bd03ead37d5, 0x645d02a5971853f4, 0xe5503e8b7a878ffa, 0x259a52922911ddca, 0x000000000000ed } }, { { 0x1c66a37712a23dd9, 0x94ae1091074dc717, 0x1d5f798217e88f7, 0x9477984ce08c08cf, 0x524199f038256b3e, 0x9ed5962b67024178, 0xdaa7a059fccaa4fc, 0xbd579c1ff4ab167e, 0x0000000000011c }, { 0x457061f4ae992b29, 0x2b3dff376e07c8ea, 0x37d0f79052334668, 0xdf3a2dc4b9084af8, 0xb2c2ded7c9469ee6, 0x2f372a6a3405bd7f, 0x62c7766ed76479e, 0x9b6af06547a76dbc, 0x000000000000fb }, { 0xf14af66d9bfc793e, 0x3b7573fca6f239c2, 0x599a8904cb265b2b, 0x715c9d5c73e93fe7, 0x7fd06cc881681742, 0x1a8c9f70313b0927, 0x7c67e93ff81440f9, 0xea648433f843fe7d, 0x00000000000192 } }, { { 0x20459c5e1bd4f93d, 0x94368aab9fd092b9, 0x16b7a8bafd9be62, 0xbdd0290d96fff0a, 0x755f7774b6254835, 0x11c343a7b5fd3629, 0x73db308d102dbd3c, 0xf784ae74d414f943, 0x000000000000fb }, { 0x7e6f653a8cb835c5, 0x8d43d0f795083320, 0x5d472d43537967bc, 0xd0987b7c77195b6a, 0xb8235e2584822f83, 0xc4ca77989cf96dd7, 0x337398c0983e81ae, 0xf3bd83d6b1625365, 0x0000000000012e }, { 0x514ab08caa9661bf, 0x3770542a4d3a5f43, 0x24a36a103c721700, 0x743e4007d91e0424, 0x12e13adc3b08ae2c, 0x12264059f3617224, 0xa8b3e197badf5258, 0x904ec291e807df83, 0x00000000000140 } }, { { 0x731c84d22cae861a, 0x3d825172a61c588c, 0x9cafced8d85ca962, 0x861abcfa9fb42b6b, 0x89abb4fc1d9cd80e, 0xb2ac54e619580962, 0xdf63a8252aaf8b0a, 0x104d490866ed2ed1, 0x0000000000004d }, { 0xc1a2425f79494701, 0xa65e75c1917f8441, 0xcf91fe1c570c9fca, 0x5f2515cd9fc92f7c, 0x8393267b99a04bfa, 0x4d99d3c94316bf96, 0x205bb308e46fad5, 0x21bbacd0467ef623, 0x0000000000010a }, { 0x3d0bae303bc9aeae, 0x4ffbefbc38e2a619, 0x9d9a36b928de1fc3, 0xa1ff76084163a0e, 0x32ebe53e070db577, 0xf96a123e7f784bcf, 0xf0da4f55c8ac8670, 0xa48b00130598bf7f, 0x000000000001a2 } } }, { { { 0x12649b36bb7be1a3, 0x9581007a7993f9df, 0xed290603e66944be, 0x4bc4c18e6fab9157, 0x83b8312db11cd0a3, 0x63ee777b7c26b254, 0xc5061143b295ff5c, 0x9b1c925a35885d20, 0x0000000000017e }, { 0x49db59a0daf4646d, 0x7ed40aa7a9c819a6, 0x820499d69e567c20, 0x371e66097c61c314, 0x9f31138f10d8941c, 0x71ba17dceaabf3dc, 0x55a4f77a4751aad9, 0x604d57f46b12e7a0, 0x00000000000055 }, { 0xeb647b7d74cb24b8, 0x53cacaa41c9f5f76, 0xb7e2d50c90c6d98c, 0x7f86951a16c7a898, 0x8457bfaa3135474a, 0x87cc2b7fe5ae9189, 0xcac57165d3cffddd, 0x9650cb1926e983f9, 0x000000000001a4 } }, { { 0xc6c11220a60d7331, 0xcfa292198f6e165e, 0x34511c0f7a06158d, 0x6bb508c5d12a915a, 0x9481dc1a4dea6f4d, 0x2706af7f60b9661c, 0x9328adbe067f943f, 0x2e7b908167d3f65a, 0x0000000000008d }, { 0x395a2889040cc7d, 0x867b2d2df636e78a, 0xf451e788f513545a, 0xb082560fe0ba9b15, 0xf15dc17819b4d93a, 0x156f38b1256f5caa, 0x9bf03f3c397c2187, 0x676115e7d8f7ea89, 0x000000000000ee }, { 0x9d654d83b7099c7c, 0x6f811fd5e9d604a8, 0x4d5b32bb101cdbc9, 0x988c014b44de63cb, 0xe65c7bc4365d3b6d, 0xcfc830a1a5778f42, 0xb57d09a948db01fa, 0x68fc7399422def67, 0x0000000000005a } }, { { 0x5951b578e522dac2, 0xca8aff72f8cf6db8, 0x4caa79c8f131ef5c, 0x206cdd4563d1f5a2, 0x4dbad35bac819924, 0x1ac109d420a04fbd, 0xf37cb2c208b3b65a, 0xa7f7553473dbe113, 0x00000000000070 }, { 0xbf1e5654523b61f6, 0xacf905dd26c964f5, 0x6fb75914211d932a, 0xd65469cf6d33c5f1, 0x5fe4a6dac8c9f2f, 0x81bfdb5dfadca839, 0x7ae3c1cbb02b3808, 0x4d1724dd0a5a100a, 0x000000000000df }, { 0x933a369db204c0bc, 0x9aefcd4f2c88e892, 0x5777cc15576d8e68, 0xf22b10262fa63d66, 0x5e8f369d172e38d0, 0x654300a3d724ba20, 0x3d29286e6b343f4d, 0xfc21cda023f6bd74, 0x00000000000016 } }, { { 0xcb3509779e9edb0f, 0xd1b83ce5b37ccadc, 0xfd279528796212bb, 0x89041c186229a19, 0xdab9c4b5fd9f9dfa, 0xaf90b06e1016ad57, 0xed8d8186d1c24841, 0x5aa05a4468509702, 0x00000000000132 }, { 0xef2b633e9167ae9, 0x94a6a8aaeaf09499, 0x8008b81339728e37, 0xe2cf5498e67bdb16, 0x3f38f505abfb3b10, 0x6a70607ac1828491, 0xa56b4f421897b73a, 0x360981e1e7459829, 0x0000000000002e }, { 0x467545d2f1079627, 0xbdf2d983af0d3b77, 0x87a90be6934e09a1, 0x3e923c674a9cb5ad, 0xdf7bfba36753f191, 0xce9d128055b3f145, 0x3adb984e5e133b60, 0xc423caba0f1bfeff, 0x0000000000009a } }, { { 0x8447f9ab56663bce, 0xe8f6ee108e30ab5a, 0xeb19eef916ace2d5, 0x13263a3bda4eac01, 0xf4bb1440b5a0704e, 0xa44e6997d896a461, 0xe48932c6118d16ec, 0x4de786498d7d5e7b, 0x000000000001e6 }, { 0x5b405447bd3c586a, 0xa89c14ab51b56a31, 0xcf3aaadfc33c5c53, 0x25403005982f330, 0x96f8f19843e60cb3, 0x1fac7951da2a049f, 0x68aab5c7a03cdc17, 0x31b60454d2696ffe, 0x000000000001b8 }, { 0x234a1ca32479831, 0x80d1b64015f7d665, 0xbcfb1e0e36cdef1c, 0xb072ae7504f2fc1a, 0x57279d376e4ad794, 0xe79ae2c77ab50e59, 0x754b8c2d36e648e4, 0x57ea4c6f601d6db6, 0x00000000000112 } }, { { 0x467fcc3c769f99cd, 0x2cf5ceb9b7b7c5d4, 0x2c21fb7cd866af93, 0x721fcd69330a4a19, 0xbf85e335b0afdb86, 0xa4b268b5e9ebc300, 0x509ea38927ce1990, 0xb4dc7898160cad45, 0x00000000000198 }, { 0x51bbb9d30954d0ad, 0x3ea9bf7609a3fc, 0x570b0847653d1558, 0x61f9f48a155db0ac, 0xc6005016ccdc2b37, 0xbcbfe555d09c091e, 0x782ddc83c3e624f2, 0xc6b49b0b1341f5b1, 0x00000000000055 }, { 0xf146f455e1020716, 0xbafa53a029402526, 0x16ccb2e50b7929ff, 0x362fbb3712726328, 0x15a2492160158fc2, 0x5e089a81176e08cf, 0xa9ccf97e5d70827c, 0x472908698ee3f78f, 0x00000000000076 } }, { { 0x1eb570dece1ae1ab, 0xf332270c04e6c697, 0xfe9f3521251068ab, 0x2efe2b95013ae82b, 0x8c9f14b284e20b63, 0x5dabe0c7709ff368, 0x8559d47c1aab257e, 0x245980a60fcab7b3, 0x000000000001b7 }, { 0x4ec8a9fc3a952247, 0x44c0fef077c18c44, 0xa02b9a0f95add35b, 0x5a1c1a1131620941, 0xe2eada18c16fa618, 0x949da9186867cf38, 0x7938a9e8457834f3, 0x68b2d0de2e83b4d7, 0x000000000000c0 }, { 0x1553a4f5c6fb5f80, 0x9b000291285f802b, 0x323a1261301790b9, 0xab99665702334ea5, 0xbdb1c137369f1e8, 0x39d574ec2f384ed3, 0x365161bdbd052f47, 0x4c666590bc40a65f, 0x0000000000009e } }, { { 0x81fc4112f9a5e902, 0x909c5b5af696990c, 0x7dd79aba2a6e484a, 0x38bbb50d056d613b, 0x40ec7b6143391de1, 0x32313905ec490130, 0x639fa16f7e3a3306, 0x1a67c79ef07f5026, 0x0000000000018e }, { 0x258d9e6ee0917843, 0x43ff36c2c1ace539, 0x3675d9c38ed70ff7, 0xbe65de6cdfa1d986, 0x15fa4cae6a0de989, 0x67f9cc70f79aafef, 0x4617f6749e9cb292, 0x317d4b4f81141ca4, 0x00000000000140 }, { 0xbf969824d96c6287, 0xd8ee7346eff3cd2a, 0xee6adc1566bdd5af, 0xc988524f7a2bd2f7, 0xe4f21cb9df180730, 0xc598ffaa4eaa1bee, 0x515afb27560a5ba, 0x53e79d2666c52b18, 0x000000000000f9 } }, { { 0xa27b968bd95660f, 0xa6c970be3d8fd577, 0xaa95459d74ca2d69, 0xa00bbb403868872c, 0x721d9153a5f4ccb0, 0x5abe2d5d1660f4ad, 0xb69075151122d268, 0xe61c34223dee44cd, 0x000000000000c7 }, { 0x6f07deb481db2f82, 0x59b238baba5e5faa, 0x9159e5ae4218eba1, 0x97b9981195d43797, 0x67447b1602379124, 0xb01c00aaa29d4842, 0x6729f7f0db76bf1f, 0x56e24e81b04554a1, 0x00000000000043 }, { 0x3c3c78d5b08bb940, 0x83433506b4bfb805, 0x7e7225f4713f26aa, 0xdf465f2550519d03, 0x5262b76d89f3c1df, 0xf74e822b30553908, 0x4354205c41653e80, 0xf6e8e521b3030977, 0x00000000000076 } }, { { 0x9db012e70f57a6d1, 0x84b23e77a7e88151, 0xf48bd84b57deeaa1, 0x5b5698f5fbd5dd23, 0x8094f1a20287312f, 0x625d6f13d71d2383, 0x329835ba0072507d, 0xadc3316023bb7c76, 0000000000000000 }, { 0x7bcc682b94eef1a2, 0x1ac1611a810ff077, 0xb61d86c4406651f8, 0x2b1c4216c7fe6736, 0x36b626dae996e39f, 0x9b831fc5eac7a4c1, 0x545e6de1801fcdba, 0xd1c89f2ddd69b420, 0x0000000000003f }, { 0x85cf22f08a25869c, 0x7e725fe91b92cea3, 0x3f17d1b49e4acb61, 0x1027602837c38d, 0x98ed770f79511dfe, 0x84ab56a8719f3bcd, 0x77ce83a86fe5ef2, 0xaf86d80d4905e4f9, 0x00000000000023 } }, { { 0x78e4aa19b60d61cc, 0x59fa8503703f2c94, 0x7233f2d6686e7aec, 0x1b8fb7be80e5a525, 0xaa3b2b6d44924f9c, 0x61291c6555ebec0a, 0xba7abc8a1b8a2bf3, 0xc65939712ba80820, 0x00000000000187 }, { 0x6f3d1b20e9983f32, 0xd18efbd23e5fcdc1, 0xef762b1380a59510, 0xb7092492df8f66e4, 0xa883ecd307163037, 0x59b369f295407b2f, 0xdb428b2f934bfbed, 0x98129dd0924637f4, 0x00000000000090 }, { 0xf263f741fe4cfcb5, 0x29e6f81dda1460b7, 0xa31dd1dbf933383e, 0xa42c29eddf0860f1, 0xbaf79ae99c6b23d5, 0x8098c389ee5578d3, 0x808579b87ea037c3, 0x808b9092b6915989, 0x000000000001b2 } }, { { 0xfe5f7163c9c79c7d, 0xca099bd26e7d386b, 0xd9d59f500168a18b, 0xab071acc0da1ace4, 0xf81897ade86e5136, 0x71294faf2f71d335, 0x32137ac7134ba01, 0xc08cbdd654bcdb24, 0x000000000001ef }, { 0xfe257869408f368b, 0xe33673189609c74, 0xfa13800a9f0e467, 0x2894dcc1ddb109f8, 0x2f713c89b5fa4ff1, 0xef73c5de7717f633, 0x242ee867a7e6441b, 0x8bb697432e3f18bd, 0x00000000000135 }, { 0x5c1abfe282791b2e, 0x71c83d30f5142bd2, 0xf8fe9d4bd104179b, 0x84c3dd1514049743, 0x1a1684705fda9de4, 0x26ecdf0b01c5d8b0, 0x1c5dffbe08a458c, 0x84c6a1b463062c5e, 0x000000000001d9 } }, { { 0xa2aaf489c9b80574, 0x9d63e5cd10ae2175, 0xf1f7a1ac8d7d1019, 0xebf5f1f6f7aef35f, 0x432d92a739168baa, 0xd832c8f86e6f62f0, 0x9d9150fa914eb46f, 0xa94545fde3aec865, 0x000000000000da }, { 0xfd3479a401e19f0, 0x97cabfa43b0f2500, 0x29d2ab371abd6362, 0xd437c020de855c3a, 0x88d088acbef737cd, 0x166b7f1f1afc26bf, 0x91a1b8be1cf047e1, 0xf718b6ce04fd318c, 0x000000000001a8 }, { 0xa3410456a61533a2, 0x5376186b0a485af9, 0xec53434486e495ec, 0xd1f9d2b5c0ddfa85, 0xa22fab857cdf8662, 0xa44bb8469c320970, 0x4a155d6e35c3fd81, 0x3f6ca3068a53ebfb, 0x00000000000084 } }, { { 0xfd2c21244861c1a2, 0x525722acdb98b002, 0xf32bf6a0a48296eb, 0xe6cb7e40b2fc5762, 0x8951e4bb7e61685f, 0xaed0c0da2067ec00, 0xc2a1ed356458c1a2, 0x3cb308fdd824e26b, 0x0000000000017e }, { 0x323757336a08fbe1, 0xcb6e7fc8824a8f20, 0x1f684aeb293a2180, 0x34f69c3fbbc21fbe, 0xd2564ea535ef1e4f, 0x1c565d2b1c980635, 0x45a4a58f7b985b74, 0x562d54608de5e4c, 0x000000000001ab }, { 0x3a61f0cfdcda794a, 0x35300c1b706d2139, 0x34431924f91183a2, 0xd11e0ea8fc15fe64, 0xb85bdfa13430eafc, 0xed9f74cf8c825ddd, 0xbfef9783fdd92f0d, 0xf8f1f3e43bf889f, 0x000000000000c7 } }, { { 0x82e10a9571456d1a, 0xaa7261485c1afe0c, 0x51dd1f73c63b08ff, 0xda4660cb1f8c82e0, 0x2a38beb2668bad35, 0x45044c0c77ab913d, 0x62690eb82b5dff6a, 0xad35710564446cbd, 0x00000000000096 }, { 0x550c999d1a1a3dd5, 0x788711b43f51570a, 0x868cdc459a175f76, 0x9d24f98fd2e332d2, 0xc3f9098c6e83c1db, 0xb447c4483bdd84a9, 0x3575088525421c23, 0x665b00987c981c2b, 0x0000000000003a }, { 0x3628bbbae98a5f2d, 0xb6be99143a2ea80c, 0xcb7c18ddb9f682c1, 0x8f55cf98b328acc4, 0xb273f9820ec31cd3, 0xf00c91d8966e086e, 0xc758903f22adbf7, 0x9c994d857e41a976, 0x000000000001e7 } } }, { { { 0x5a9b797f97f522bd, 0x421eed039c5bcd5d, 0xe649e5d96fe6c5, 0x4d6ba9110a637014, 0x164946650fe3b7c8, 0x4c613d7523c5ce44, 0x22e8bb3e84736b01, 0xd2212c4685fa9173, 0x00000000000015 }, { 0xd4bd9f0894507d41, 0xbd55d1b58c5ff4cc, 0x9f9b788ee90aed15, 0x435c9ff04773274b, 0x15bb508f5f50101b, 0x1983e8e1d1cb6f0c, 0x31842730fc974bf1, 0x19bf8c3e251be006, 0x0000000000003c }, { 0x3da63d632cb20eaf, 0x937c534d9b2da8ec, 0x302c0a40c7c6d8b0, 0x1652318834dedc8e, 0x4855b2365d963a34, 0x92c8dbe6c8a855bc, 0xfaced60619cb7bb4, 0xa82ea9eaeb5a5ae3, 0x00000000000172 } }, { { 0xbb3703ebcf1b5776, 0x5f5be1380603e44a, 0xa3f876b169587add, 0x7eec5a9020eab2da, 0x6b6888625294825b, 0xdba2977f0d36e6dd, 0x5ac2010ce0c110c8, 0x340bfe2c8e50408b, 0x00000000000046 }, { 0xe244db956982306, 0x2fc485f16868755a, 0x1d16878fdb1d635c, 0xe0fa48d0a035dee2, 0x62f17c5c68bd8789, 0x1c027b99bf0560a3, 0x3acce062e16e2805, 0x48e65c72b2ac75fa, 0x0000000000002f }, { 0x863b1765e002247a, 0xed7febf28866c4dc, 0x9f8bc4b74b4e20e7, 0xa50e9de82bde98ad, 0xe3dfbad038e8be7f, 0x19b640a92ec8fff7, 0x7378977e6d1e261d, 0x24e198347f121d5b, 0x00000000000118 } }, { { 0x70c4f4b68afc6816, 0x24fd578ac50cb107, 0x67fe89300973bb8d, 0x345d6246722d8ef6, 0x36f94f2050b01bb8, 0x12c8c742840fd707, 0xd83b4e2174186663, 0x53a9c940bd895865, 0x00000000000153 }, { 0x87bc4359380dd95e, 0x2105814b3941a06b, 0x771c4247cdc23e26, 0x9fc0610d36685d7f, 0xd45de5092d44774, 0x78e45672afab924e, 0x2564f1217594d2c0, 0xe65da9ba0f47c90, 0x00000000000042 }, { 0xa58c898c52dd6e93, 0xc4e6fe451dc60599, 0x85da0fac83c6991f, 0x678aee3e2e5a8cf5, 0x9e64264ec4e94743, 0x2fa1c43c5414c506, 0x3fe57163727e1ee9, 0x9600287d799c025a, 0x000000000001a8 } }, { { 0x8419c622fd81e6f6, 0x960dd0a7a39d1e17, 0x683b1b2ecede2e35, 0x23c554b4ffdf1a34, 0x44c8f803620d716b, 0x57d7c69bc8f57381, 0x8682150a899419a3, 0xbb9b6d2ee26009b0, 0x000000000000d5 }, { 0x9128536ddb21a5de, 0x7a4d89523189da33, 0x6dbe65357375c80e, 0xd42580d6eeb40d17, 0x15169a76b18a2aa9, 0x536f8e9c8736f147, 0x2c2179fd0b48ade0, 0x3a2178c4efd0d393, 0x00000000000183 }, { 0x94fad52fc04bb4a2, 0xef533a8a4f1dae07, 0x5b4c557ca6e93a1e, 0xd85db873e83ebda5, 0xf1daadc29e5702f4, 0x3bb3f2fe6cb0ff9b, 0x6e0fb9d317dbba27, 0x7b1f78b09b189660, 0x00000000000078 } }, { { 0xb06c83630665324, 0xee7b70c2670db525, 0x5eebd40e69886d50, 0xda1e76f6bef498fc, 0x2388e8c37bf26904, 0x2813f3360ab781bc, 0x2b7ef465b4e4f903, 0x1a364f2aa3c371c2, 0x000000000001aa }, { 0x4c21a2b167473b1c, 0xece37dcd01460db7, 0x947d263d054f9854, 0xd6f3105b1b61d9d6, 0x726695711c3657b7, 0x9705c2603eebe7b3, 0x7425d9edb5e1a8b5, 0xaa45f699df7e1e83, 0x0000000000000b }, { 0x27840e6354978eff, 0xff2e0a182fba4dbe, 0x72ac95acb7896003, 0x257864f0f86d6a74, 0xc0be2db4e088e9c9, 0x6ba0f27254ed6223, 0xf170f9cbcfc45037, 0x24f76a86e615e89c, 0x000000000000e4 } }, { { 0xace09becbe5ffc29, 0xd0ae26756c9eac49, 0x2b432cf2f1bae1fb, 0x8265d2aefe9843fb, 0x649645867cf3a819, 0x61782c0dcebc8b58, 0x4e9fff782f9d5bad, 0x7ff236ea5cf7fb4f, 0x00000000000151 }, { 0x1e54192960305b72, 0x32adba711033ab23, 0x924f590b661f0065, 0x5388ce5958eb2cd8, 0x538d6572cbc51ffa, 0xde3f4671ec43d516, 0x54911cce95cee868, 0xaca0147f29ef704e, 0x00000000000133 }, { 0x40f1eccb8ada1db0, 0x23a83d4851a5643, 0x43d18ac0324e8a49, 0xa4edaf9407c80339, 0xd8543c0231b1adca, 0xd891f6c9a8b92727, 0xb9b1077b63011c1, 0xf9d40206743f977d, 0x00000000000114 } }, { { 0x936f8fb09dedb884, 0xcad272c6f9ec9c4f, 0xe5ee8e80429d9aee, 0x29be0cec6e24c877, 0xd2bb030b09a333e2, 0xc0b7942a8d57028e, 0xea48e78c737b2468, 0x6dac0dfea19c1299, 0x0000000000019d }, { 0xebea9d50039a282a, 0xea045154beef5d70, 0x67d9a6715da30cbe, 0x6b18170f967da3bb, 0x6b43c55a7aacff10, 0xd3d8e4301615506b, 0x5746f4e1de17073, 0x5a28e1ed0307fe85, 0x0000000000010b }, { 0x17d6af99cdbc2e3f, 0xb5d2e44001fa788d, 0x98ae38dc38f089be, 0xdfcdab0de81b7fd0, 0x43c576c3abf6cef8, 0x3bb12a716328ba8a, 0x956294e9d4e3251, 0x2eed7ccab1753094, 0x0000000000007b } }, { { 0xbcd5191eb1aaf81d, 0x1f1b932d75d682e, 0x7f2b5e53a03a607d, 0x198e6743f09a7d1c, 0xe6e9a644527bbb94, 0x60bdab53888f90f9, 0xc7651030d36b9652, 0xf9112f229a48725b, 0x00000000000070 }, { 0xbfd774e03422c7c2, 0xcf980011cf5f830d, 0x321d4e38db6e2d75, 0xd8fc04d961f4927c, 0xd188f2b1cf6a137d, 0xc753f9bd4fdd932d, 0xf122c7fb6e577d89, 0xa9151f9fb20a96cb, 0x000000000001f0 }, { 0xb5535ce203a664cf, 0x3f36834d9a851609, 0x8059030f28beed4d, 0xc7f8d3284c36dc52, 0x85cd3ccefc6c1aff, 0x42513af62d3be221, 0xcb4863ee0ee56805, 0xd199be822ca2254a, 0x00000000000143 } }, { { 0x31fbe3527e0e866, 0x9b7adf9386ad563f, 0x1bd5a4e4accd3e46, 0x13571649374b037c, 0x19069b965236b2bd, 0xb7ec8791d4d8202a, 0x8da0fb1586b48eec, 0x83a0ca61a80e0816, 0x000000000000a4 }, { 0xd3aee17a2dd9606d, 0xcaff30520862cc6a, 0xb88bf522a8bd3355, 0x4b5d0e0d6d5ab90f, 0x9d71da1031d75fc6, 0xeba79b527ae04662, 0x75f0a16b061cc8aa, 0x850990bd4999145d, 0x000000000001fd }, { 0xc9a31ee8f172d30c, 0xeb2a36d20a27e198, 0xd0a3e00640994921, 0x6ab11e8929391499, 0x9c7c0ab019936918, 0x80dcbf0c294208ed, 0x8f1dfd678581ab0, 0x9536a56c16785570, 0x00000000000173 } }, { { 0xbdbc8c334bd0774a, 0xc989f44a14a5c34a, 0x93bec846751d66f2, 0xb3502e274b025f13, 0x899d1cf48dc7b9a5, 0xfa8997bf8017eeac, 0xc79d958c625e36a, 0xa709ca980c8db1e2, 0x0000000000008a }, { 0x53f7f4bdff678d24, 0x647639892583b0e8, 0xfd05a78b14932a0d, 0x5bb2b0330fbdca00, 0x7ea9d606f29779d, 0x394673f87ec43158, 0x6f55505cb609a885, 0x9315423319941edb, 0x000000000001f3 }, { 0x8b2c5fd28b341e51, 0xb469c4c0945feb88, 0x9596934529ecf32a, 0xa632a171f5b42157, 0x5c46ff8bdbc3e932, 0xd7cea8b6a1299df5, 0x78f365cf958307e5, 0x5399bd690f0772ee, 0x00000000000004 } }, { { 0x3311a8869732ab85, 0x89bed6c5e9651612, 0x5f9d24f531ba0578, 0x7bba8c90dfc92245, 0xe65681072f48c1e6, 0xedc46a5ca748e9b6, 0x16af7147b61040db, 0x1a2961b47f02a009, 0x000000000001c1 }, { 0x87c7dba4036fc415, 0x710c52f8c5b50e57, 0xec3b68ac5edec2c2, 0xbef52ac70bba3d4b, 0x1ddb6b79a2c75bb5, 0x5bd5fc01334707a7, 0x6ff7811483675d03, 0xb98c9aae4c508324, 0x00000000000038 }, { 0xcfcc2adf3ad3c7f7, 0x6b16d21b5eea0b6e, 0x77098b8bca7e4bf5, 0x7f042c7f8c12fad7, 0x904a3de8658b8650, 0xc54c9c9827ba68bb, 0x6fd5c0f41876b762, 0xecbe50d22fc6c47d, 0x00000000000097 } }, { { 0x5057867dee04c2a8, 0xfd6e5bf70238fb3a, 0x7d5433af0a840430, 0xa915c3b1594ad4f1, 0x6c2667db11da46b5, 0x16d5561a03443f3f, 0xae532cb042df1d0d, 0x70bcf31df7a33185, 0x0000000000013d }, { 0x975631e43ed9a18, 0x34c39220f6fbae18, 0x227202d17310edef, 0xff43e705c8ce1ba9, 0x83b9e1ae5e052ae1, 0x35df52e5a297de7a, 0x42a32b10d2aef864, 0x388e3aaccaba7f7a, 0x0000000000014a }, { 0x902eb355fb4aecd2, 0x74d7c5a8aab0385e, 0x30b87c74980e970, 0xbb43cfd1e364b62a, 0x34777fb50d1b896, 0xeebbc7cff12f84ea, 0xc06c5137c0eaaac7, 0xd6a4c2192f198a80, 0x00000000000030 } }, { { 0x1db73b71d7d7be80, 0x426b6d10f3859985, 0xd7b6defc54ba6d69, 0xefcc4d88840b5a17, 0xa40b1e653970822b, 0x99266907d6dc0910, 0xaab5ad16db32fc38, 0x252ae1d04c76db3c, 0x00000000000055 }, { 0x3c2248e6500b7fba, 0x3ca3cdb3098c4935, 0x1e56d05329035a28, 0xe909a602876529b5, 0x42cb85bfc677347f, 0xc2694e1f74530b4a, 0x37b570b6854e2a03, 0x2743b614c844ee78, 0x00000000000003 }, { 0x72e07656d46a5618, 0xf7b6f4799e92e560, 0xc2b27b3c7810743e, 0x7950ec102ca48e0c, 0xecf54a139019ad44, 0xb76aede35bc6f860, 0xd936215e79e41092, 0xe68a584c0b69bc3e, 0x0000000000017e } }, { { 0xa0f97d5d643ea123, 0xd4cf4d474b4a959a, 0x47fb530b5b5204d0, 0x930832a75ce822, 0xa560504acdce0be6, 0x8cbfdd3f92cdfb19, 0xc6ab537d0917f28f, 0xae561d669f5f9582, 0x0000000000010b }, { 0xacc803047b876894, 0xa5f3f92d69561cb7, 0xae82f505d7591faf, 0xec7f77606b0fc70f, 0x921c95b357a92fd6, 0x37a624b7f624c7b5, 0x92cee821343dcb87, 0x44640aeab72bd3ff, 0x00000000000199 }, { 0xbdac6646017d5c57, 0xa677fedd4d2a4a99, 0x6693c88c54ef63c4, 0xfe8628c62246a3d0, 0x4f3c790935903539, 0x4ca388bc0417c0b8, 0x7953f062b11cb5f8, 0x182f41ef2a145826, 0x00000000000140 } }, { { 0x5dd7ad710913f5de, 0x9fe1ccca11ea5011, 0x9c7602352d49bffa, 0x442e2cb91ff91a80, 0x296978d86e76ebbe, 0xb59b14e6741ab083, 0x104e4732c7108de0, 0x4d035c4ada251b36, 0x000000000001e1 }, { 0x8c3377da6755b4e5, 0xbec33c63b8611d48, 0xacb658bb4214f39c, 0x1f53dec71574cf4a, 0x9681eba00c26e8c7, 0xe417b22383789716, 0x26ab2e4057f5df39, 0x3c2f1cf579b2e35, 0x000000000001ca }, { 0xa66c33564bc617d9, 0x6c3aac777466e969, 0x722ebf652bf429d2, 0x73019dbe720a5a73, 0x1c638289d69768f2, 0x6e111859322e467b, 0xe2e72c2171420a5c, 0x167446abc65a60a8, 0x00000000000150 } } }, { { { 0x6c56cf72a0311ab0, 0x7761806cf15ba51b, 0xaf5dfc10e24fc3fb, 0x5b8389221f519fef, 0xb4c6d24ff1576d66, 0x16204549339e4dd2, 0x5a84a7a798a9ca70, 0x7fcf9d3a240a2d6f, 0x000000000000b1 }, { 0xa2b4673fbe859533, 0x5bffd8ba16a26638, 0x445923e532d2080b, 0x4568a089b618e35e, 0x28f907d775b74797, 0x3450e0f589c27b54, 0x54bc6d3a1540f425, 0x4563c04e1418f455, 0x00000000000061 }, { 0x4bf2ae9b2812c4bd, 0xb02417e4d2db3455, 0x217a316d51499a22, 0xb911a75848d231d0, 0x5f3a7a1375aa0711, 0xe1231e26870ce6f0, 0x97bea06bef1cd08e, 0xc6c26cfb4e8f0afc, 0x00000000000128 } }, { { 0xe3a52aede1070c1b, 0x1a525ccad0c64221, 0x944d2c6f58b3c905, 0xd68e95de9052b63e, 0xf8bafa8519283fa8, 0x546ea44dc7e51f7f, 0x4bc1ed7281a57461, 0x5113533931adc7dc, 0x0000000000004c }, { 0xe463e09ebc3f00e3, 0x424426486b50670d, 0xcabfb23e65c6466c, 0xdd8725da635b18a7, 0x53d1c33e40f4fc61, 0x239d1a4ce49d7de5, 0x98ad343baac9a82e, 0xa7184e1b5a68fca, 0x000000000001a3 }, { 0x55aaf621748cc1a2, 0xe7aa85afb34db3b1, 0xa415ebc7559c291a, 0x3f71b6a03db85def, 0xe9328795eaea01e0, 0xf70c0cdf093c3c3f, 0xa611ec16236cec45, 0x55b1c342dc25318f, 0x00000000000019 } }, { { 0x7f4599693d8bef02, 0x87c20c4bf0463c16, 0x7ab2ffa8cf370854, 0x65955ecd58ed62e4, 0x666d712ec5f3a192, 0xce2285233e0b1ef8, 0xf214d3099bd89597, 0x9992892509856fae, 0x00000000000083 }, { 0x6ba9153fee2ca5e, 0x71310d01d1f6d6cc, 0x902fc32afa6d0193, 0x4fe797823d587398, 0x285f679542b6109c, 0x20edfb0a6b4085e4, 0x56895cf6d4945839, 0x74b8d885718d9e7a, 0x00000000000136 }, { 0x4c370c4b49bb063d, 0xe317e17fe1a561a2, 0xb7d11397befdbab2, 0xad92b2f3e8d1ce03, 0x941d635461cfb9e4, 0x7722bdfc5e878b2d, 0x15c9f946ac3d24e5, 0x5aa32b72d76becaf, 0x0000000000003b } }, { { 0xf8d2ffaaabfce896, 0x99c9b9fe39d2c551, 0x4338855021750113, 0xcd36c01512c4f553, 0x64c3c2a00e9afa89, 0x99479411b85f6748, 0x3e90a30144005518, 0xe7f2e13607d6773c, 0x0000000000017e }, { 0xfb743d8760cba454, 0x51bdd7fc2a0e655a, 0x1f4e8f69bf34b72b, 0x3e18bc35fa2d4e88, 0xc0e88b99c352a667, 0x3ccc69b9fd9cf04e, 0x6b15e50abbb5ccdd, 0x6db9245b5f4f2a74, 0x000000000001e6 }, { 0xcdaecc3b044602f5, 0xe5819bea77ab4c, 0xeaf1644ab0111f94, 0xf6be9c2be471cfdc, 0x7b68d8468b073970, 0x1de9219233852e0a, 0x37876359e33e23b4, 0xcf55f40d74400567, 0x00000000000010 } }, { { 0xac4b4ef36f17540a, 0xb1bfe777555a677b, 0xae5d6d56ed38b951, 0x5c832fa00dd7305c, 0xc5818d7be737bdb9, 0xbe3b250cf0dcdfa0, 0xa709ce02e95d006b, 0xb3a8df32e7559cc2, 0x000000000000ab }, { 0x952e769e6beb60e4, 0xcc2f151d238758f9, 0x6c441b30577e7c93, 0xe9d523c7da94a761, 0xb624e117259b83ec, 0x378b07bd26b1c83d, 0xff0eb5cdc61fd38e, 0xf4c01aec264fd733, 0x000000000000fe }, { 0x28e83d207ec6ff4f, 0x88424fba367e6906, 0x7b3738cd18963f16, 0xe3e6eb201cfa209b, 0x3e437df091e79c00, 0xb6d3647c16be9bb5, 0x807a5e3db6fa23a2, 0x2376c69d6082634, 0x000000000001c9 } }, { { 0x28e48a38caac078b, 0x7fa322fd6c7d5f12, 0xeba7f81df52db016, 0x0cb9af8b6d817e, 0x40bfd8c2ca8afa0, 0x5e8a7989fe23cd58, 0x99f056660ac66170, 0x2d048a09b1f520f8, 0x00000000000182 }, { 0x2e42b3019dc651d0, 0x8f44b41590c719d7, 0x136a89e568f0da20, 0xcf3b2f5cfa98b3d2, 0xf9a0fcc05df82909, 0x83f3bf88c4045866, 0x3b1d9633c0dd2a5e, 0xde1da01444d354ee, 0x000000000001bb }, { 0xf4c223242ddce94f, 0x600de77b752d2382, 0x95370830f1783568, 0x3bc1b944e31cd4b7, 0x825f35109beccb43, 0x48fe8485da1e5611, 0x3abd91c29ff9e234, 0xbad0954de919bbfc, 0x000000000000de } }, { { 0x4572a03298df4657, 0x30ffc39988f08f17, 0x418c9c481e4da68e, 0x5841a4911b1ca1c2, 0x6042344df87d0ea5, 0x905c80a55d44202f, 0xd3a8932f3cc9901c, 0xd1ee606656301dfc, 0x000000000000b8 }, { 0xde54dad742a32e44, 0x2882709288dab570, 0xa54e29ab4c9b88d, 0x2e925130f425b70d, 0x918135c17292ab97, 0x58d8b6a62a1e3ae6, 0x271ebd60b143f2c0, 0xeee9368a4f2d497, 0x000000000001d8 }, { 0xdc86aa2f6bf6bb53, 0xee5ad7c8567a3bbd, 0xaf42e8f8ea0814a3, 0x42533a9870968803, 0x58c8f0b757aad66b, 0xad70e298cac94ce0, 0x847f580ea19f96ea, 0x314026fa50f302cc, 0x0000000000010c } }, { { 0xaf3ab27f9d1ab727, 0x556e43c7a6dd6133, 0xbdf115505f0f1b3f, 0x9b747e8c951c2261, 0x7d0a63341c3fc314, 0x8ba46b3065150864, 0xa35026a865c4887c, 0x495b8c56a59d4498, 0x000000000001cd }, { 0xa9b2ab7450ba6145, 0x8123aa75adbdb78f, 0x91c51e12eff32366, 0xbd5b2898c1c5131a, 0x1414af01d70d3c5c, 0xd64953af9c943dcf, 0xfd23fca7fae0cddf, 0xf44c06f7c589a36b, 0x0000000000001c }, { 0xf6a862e7c7803115, 0x8c6bc2e791959351, 0x50db32f9d9d965e9, 0x2fe4c88e59e99868, 0xa5b198ce1df580d9, 0x10f208483c1cb800, 0x4a5238ff114627f4, 0x2b604586168dca62, 0x000000000001c2 } }, { { 0xabe6ae28574ff272, 0x56836c3b63f0e452, 0x9e855a6e8bafe426, 0x2d9fce90aefe8e8e, 0xe4338f77f79e81b1, 0xb046f815ba0e6921, 0x97b16b8891db5e9e, 0xec2cd0a2fda36cf3, 0x0000000000007c }, { 0x24b685b55ef77aff, 0x90d3533dcea5905c, 0xf8000abd098fb5f4, 0xc17c134665e2912e, 0xceba9ee5258fc62a, 0xe7ebe33593717a91, 0x5f4afe501b5096bc, 0xa5a15c6311096271, 0x000000000001a2 }, { 0x94689796fcdba3ab, 0xd2f1c8c5a2c963c0, 0x5276f5112419c6d1, 0xa2e0577102b018af, 0xad0dcaf24669409e, 0xa6cf7038d3817790, 0x352e92acb33bb43d, 0xf4fde14ff14acd21, 0x0000000000017c } }, { { 0xc49d4a1e03deae41, 0x83bffb1108887fb5, 0xbb7e78a45a2795f8, 0x8d91a004ca3e4b05, 0x45b63ca9dfa1700c, 0x2e99259ee3c9fa6c, 0xa94b02c862b016b1, 0x81329459baf97f25, 0x00000000000119 }, { 0x6291e0fe674571b1, 0xacf30c92ab860d5, 0x7bf514f7d90cb2df, 0xe8fe6c16cc7e9894, 0x72cded85cedd45a4, 0x16b69de5c5bca30c, 0xdc4559bf153facde, 0xa9ba15c86cc77121, 0x00000000000121 }, { 0xad9f49868a48843b, 0x991de4ea7f1cf0e4, 0x29fd22b8ec1bde32, 0xabfcc884acc2fd0a, 0x396c6eb60d4bb970, 0x5a105e7f6b43833b, 0xfc9d322c78b2f7f9, 0x4e1425c1b6212890, 0x000000000000bf } }, { { 0x9ee6a6acfcb15a78, 0xd314c7de8d382b51, 0xc525424967f933a8, 0x9f15d9f2120d6be7, 0x9a6be86e671b0c10, 0xe1205d3d595fe3ff, 0xaf1888ef26d8f778, 0xfcd7e65f4013d1ea, 0x000000000001cb }, { 0x452dcf8e355df43e, 0x2ec3d11d18913b43, 0x1ab2d08c79735f05, 0x37fad8230d7c21be, 0x93c97b0f879bfaa9, 0x96b132faf129e800, 0xb431c6b86b40e72d, 0x320c28ed5ce7b3da, 0x00000000000131 }, { 0xb4a80d5e667b920, 0x3024365fff5009e9, 0x69610b5535f402eb, 0x1f609e2997e9f411, 0xfe4010fd1e6bf920, 0xfae7ad71380f677c, 0x799085f32b91b4fc, 0x23790b2b33685ba1, 0x0000000000017d } }, { { 0x1f0741d4deb5440a, 0xfe414f9382ffe30f, 0xc379ce572a673ca1, 0x1176ef75db2fa4d5, 0xaa1aaca7de832cbc, 0xe9ff309782838a36, 0xb64a0d97d1fd475a, 0xa4b47017a3d7435, 0x00000000000012 }, { 0x6449acddff5361f6, 0xbb9f6e91cb495e99, 0xf8b61b7380584c30, 0x6b04a63e504be25, 0xadc941bdd1abfb89, 0x5f74f647ca9c5e77, 0x62603ba078614867, 0xb0a9fd793413784b, 0x0000000000013b }, { 0x486e45617c5791d6, 0x3ac5019b58bd6326, 0xaa265d41ab3f533d, 0x1d95e25c4e59f5ad, 0x7b9cea6f026c976, 0x4e631bc7c357292b, 0xd97e7529a176f184, 0xeb774f97c733d056, 0x00000000000133 } }, { { 0xc1d5ad6141003f1d, 0xfe2e9666bee43ae1, 0xe4f795527a0c2725, 0x77d6fd6a11d3f9f8, 0xbe0388f47a1189b5, 0xab9847e2895d046d, 0x3fde6626766fea55, 0x11c7bdf2c2940013, 0x000000000001e3 }, { 0x86e94081dff330c1, 0xb6d7decb433e1dd9, 0x3cbf5097855851a8, 0xf91d567754d389a5, 0x8e4aa4dd012f470b, 0x2be15a7d59d44886, 0x5b0227df2444cb90, 0xba2c8734bdfba35, 0x00000000000168 }, { 0xc0e9d20bb87e28fc, 0xd270c7b5ea71c9c1, 0xd262a05f94b33be5, 0x75d14cc996cc52f, 0x44b0856bef26b35a, 0xf58c44e97d48f15f, 0xa98bcbc659520968, 0x45393e6b35a6caa4, 0x0000000000005c } }, { { 0x96dabc4a877562d4, 0xccfbf9c35ffee9b8, 0x35ccfaefc543419, 0x44ffb8733fe7a4be, 0xea0cd7a66048f47, 0x8f845e569e9124e5, 0x608ca50f6c6b0752, 0xc82701f60ed6ae23, 0x000000000000b6 }, { 0xcd05aa3b51e93a48, 0x17c8d9e0c1e23543, 0x7fe6dd92318e2f61, 0x5bbdc58f59174c18, 0x9ae6ddf1444fde90, 0xa88e2884fae6d73, 0x84349b49ed2324aa, 0x9b3071ffb1c78dbf, 0x0000000000009e }, { 0x4b18e8475c266bce, 0xec8f105286c6ab79, 0xd9f8b580ccb7ee56, 0xf6d9e63d44f5d83f, 0x62f071f0e8cff19c, 0xc489146f29c971df, 0x32596f5073c2297, 0xab9892dad3ef4315, 0x0000000000011d } }, { { 0xff6c936ae3f63a15, 0x464796dc9e3d283f, 0x87611350b8b0b6d0, 0x90b8b22fea659aeb, 0xc11e19cf310f9829, 0x4a42a0403643e5e, 0x72646cce1a99a0d3, 0xa1269a2dc918d067, 0x0000000000001e }, { 0x4984d01316dbb103, 0xb755d85202047912, 0x6a2cace85353bbc8, 0x893b1202d01d0d6a, 0x5204074bb1c23606, 0x6e819706a3eb70cc, 0x159aa70e11229a86, 0x9602e9416b0e842c, 0x00000000000096 }, { 0x19a166c920fbd71f, 0x78e3d8ef53426323, 0x9f4b671e456bd3f3, 0x4e6a1b1f63bdd1ce, 0xc1cb9100273633, 0xe02f7ac141ec9ce9, 0x7efbe03cb4668b31, 0x18e60cffc04b700f, 0x0000000000007b } } }, { { { 0x704fc047181c12e7, 0xe6b7ca68cf4ca46, 0x7fa831d2334134e4, 0xc5b5e3a620eaca11, 0xb00d90437006667c, 0xde27b92ed7db8abc, 0x5d1a720ccc492e4e, 0xb713477d2fe71f54, 0x00000000000022 }, { 0x8637f206192955c3, 0x27eb1e21fca56bfa, 0xb1bbc9f570d9fed5, 0xea5058cc5d4825f4, 0x1678cf36f735d116, 0x669180e57a212b4e, 0x5cce31b0e820dc05, 0x69fb92152985654c, 0x000000000000ff }, { 0x663f68ff53d0271c, 0xd431a41326e0c818, 0x50b9ed24221339ec, 0x7cd5f6510d4c0949, 0xfe33b47e0725b0c7, 0xc352a5aca4c3ecab, 0x251beb019141a3e7, 0xcacc6b71b375bc75, 0x000000000001c3 } }, { { 0x2f8e97b228d177bf, 0xfaeeac0bc039c7d3, 0x9fbf030a65f45d58, 0x212344b566f0af74, 0x7ea8105c7c4f2dbd, 0x48f0dc72c5caf380, 0xf5da483b92498ce, 0x20dfc029cfd4ca7f, 0x000000000001e2 }, { 0x32c90883442aa756, 0x69da9a00027ccfa2, 0x62b1d2bc8fe00727, 0x294098757135d07f, 0x6dee4bd1a91ee9c2, 0xfc86cefb5d3776c0, 0xf4e5a8be5bf1e697, 0xc478080222e1c125, 0x000000000000f7 }, { 0x2771f2b871391002, 0xf30ee65a5d6731af, 0xe81c4643b1eedb05, 0x7d6ab1b54ea1d9e5, 0xc8eac7bcc611e2b, 0xc3a38b64dea68b8c, 0x9e66787a75749b07, 0xfa4479a1f833daa5, 0x00000000000194 } }, { { 0x454d25f5e6d58e3c, 0xbe4c5226f1dda07e, 0x6ac4c07524179f54, 0x82636671972fc648, 0xcde14fc7a89488c3, 0x9a3377a367adffc, 0x7c8dcf2d029f909f, 0x40dc6a941fd23314, 0x00000000000127 }, { 0x7d7decdd1821ade8, 0x46a518c7ab6ef320, 0x87689541cef176ed, 0xf677747f8a761f33, 0x7c55ed3aba3da9ae, 0xb84d1a01dacf9def, 0xf3ba889737d11202, 0x95fe12fcc9b25bfb, 0x00000000000017 }, { 0xb3bdc2d7394e9503, 0x4ef52a0f897bb107, 0xa362e3135c33880, 0x726463addcc8d118, 0xdf5574de9197558b, 0x1d46c13b9235e72c, 0xf05e91a471e1db53, 0x5ca833cf4d49a130, 0x00000000000135 } }, { { 0xf30f1ee1b1d36bf4, 0x112da3a4a22297a4, 0xee66b8c794634712, 0xe04b0f422305b3ed, 0x80d31ca608e4ecdd, 0x8200522aec2c1285, 0xf4c8633c4b0e4ad7, 0xbfe2055d1d5913b, 0x00000000000154 }, { 0xeb5130220324e4d7, 0xb27d1d04de372fc, 0xe99e3156121ccc88, 0xb7de3fba5650dec6, 0x272d722d6cf42b82, 0xc0a109ab9030e0a7, 0xe0e407d0dd36aed8, 0x3393a2f0f3bd7b4e, 0x00000000000083 }, { 0x8a43a5d35d1fb01e, 0x728d12e435b2d94d, 0x9107fbfd1c221d48, 0x14d9fe0eaa7800c, 0xb1dd22c231038bac, 0xa1352589cbe8b3b7, 0xaaba640404be0bde, 0x31293eab07945013, 0x000000000001e3 } }, { { 0xf3febccbc322c8f2, 0x785687077d253514, 0xdd63c83206b49c79, 0xb5b741e27ebee7ea, 0x5bb215529ab5eb6f, 0xfd9d112e096b9a1f, 0x2d53fc695389a4b5, 0x85b15be6c4fd75cc, 0x00000000000147 }, { 0xd65120554965f5d4, 0xd7ac23c4a575e76f, 0x2412e12faad81f4, 0x1710ffbad9ce0df2, 0xb60d95507f8f11e3, 0x1a4fc12bcca23e0c, 0x2370a7f5cfc3d7, 0x3673067d1bcd5873, 0x00000000000013 }, { 0xfba1c4bf23bac280, 0x391e4498137b4781, 0x7eb1d065916a544f, 0x579637d0a520344, 0xf9b1e2262c230726, 0x31f31c7ade8c6c9e, 0x4556d6f7e45475b3, 0xa5e48f64445599a7, 0x000000000000e4 } }, { { 0xcb4137a60f2a7300, 0x38b232c7beaf5f49, 0x9b676ed94de79897, 0xfe8b076405386901, 0x855ae58b113af9c8, 0xebd6a1369cd5b5e5, 0xcc4ab73a3f2e17de, 0x428008635b412418, 0x00000000000126 }, { 0xc2b96a11391734e6, 0xb47b1cd149030c15, 0x6bd92d064aa30627, 0xcb4729e42d392dd5, 0x3508157293af2269, 0x49e220f2d8fb31c5, 0x1181cff47d6ca24f, 0xcdb809a89d98c385, 0x0000000000002a }, { 0xad4eede9ece4e7b6, 0x4741a18da32c7b3c, 0xd50274c6f6e5e889, 0xa3e7a2f6effa58f0, 0x854aed780d9fca75, 0x7b9a655a09f85baa, 0x8e315d70cd9d0275, 0xea18ef6cbf21159b, 0x000000000001e1 } }, { { 0xd59ddd510e257c85, 0xf19e03ee4002855c, 0xd66b40b04cfebd49, 0x849427aa0f4bc5f9, 0xcd3ce4ff8eb97ce8, 0x91cd00d6706a54a4, 0xa85c07fe4edca599, 0xc66f3f5363af1394, 0x00000000000068 }, { 0x7881f48af392f85d, 0xe61fd267c5f0ebda, 0x96b882617fbc686, 0xd50677703dee0019, 0x8266ce3d6d2c717e, 0xff4f8e3ebf60273b, 0x2735ffa076dc4914, 0xccd38bbebc260bf4, 0x0000000000003a }, { 0x7c1ce0e5a04f932, 0xd9c215190d2d0fe1, 0xdc2ddcb3a3021584, 0x666efb06bcf4409b, 0xb4800cdd7827d89b, 0x159f35d062c09fad, 0xa797801253c54c20, 0xb857b6c7e1b72543, 0x00000000000104 } }, { { 0x47b39638af7de205, 0x399a6e22e45d3d95, 0x6a0b169219e59eb0, 0x1bc6d31641bc8098, 0xb9a78d51fa0b211c, 0xe7bfcbb0f023786c, 0xdf2d3643665dd8af, 0xb11c9ac663f9701f, 0x000000000001de }, { 0x34ae941499bc4a5f, 0x3951dab27bb8f96b, 0xd5204dacc3bac3e9, 0xb2b724603ee3ee37, 0x1ccf97a5fb6bdfb, 0x9facd24508d1b39a, 0xb48915b66ea012b4, 0xbdf7c6467dd360ec, 0x00000000000107 }, { 0xc4a45b021824ad30, 0x44c706be0f76e905, 0x133779bb1ec38e71, 0x9a7f53d5288178bd, 0xe8d773e77342ea22, 0x510af91337410b62, 0x140c05bb071df802, 0x2360110c92471265, 0x000000000001fd } }, { { 0xd13c3fa008629c77, 0xe0128c628643a9b7, 0xc7f82a501068d31d, 0x73259eabedd8f212, 0xd30d668473c9e7a2, 0x23aa86551b4e82b, 0xea4f387d61eac977, 0xd8bb7dc88afc56e2, 0x00000000000065 }, { 0x586824b178d5abfa, 0x246ec8604563f325, 0x641449b57816b91a, 0xf3e57c31ab7bcb65, 0x30c2fcd311767779, 0xacc8bf069498d3b1, 0x6fa08020c0071098, 0x3aa050006e7cca95, 0x00000000000130 }, { 0xd255547eb33da3a5, 0xf51833ef5df79724, 0xb5848aa1a25d679b, 0x1bf1fed7b36697bc, 0x5154195696f03e94, 0x6a9108f12705c7cc, 0xdffbc241d6448882, 0xba9fbaa6488b864d, 0x00000000000098 } }, { { 0x876dc1055b6ce836, 0x67bd043232c3dda9, 0x806e2d0e8176363b, 0xeeffb0c8a7dfba78, 0x5a32ce9ed59d0f41, 0x8deef29972b1278b, 0xb10ae7f8c55a466d, 0x3e3c707a2511f780, 0x0000000000000f }, { 0x9e02bf811030e509, 0x9df4f8ac8f31006d, 0x55af833294bda332, 0x4f6f7d32ba7ad6ce, 0x6b5f3da0d58ddb57, 0xa5806926216dea6e, 0xaf162401f3051661, 0xa5f85717f7f5a88, 0x0000000000014b }, { 0x738a7170bf17a6b1, 0x754127e36ff5fed2, 0xa01eb1f85ef8440d, 0xf5bf4cc52ba635f6, 0x23833d1b4c7a637e, 0xa19db09daf218a45, 0xafce6bf101ade41e, 0x508dd277ee04ee9d, 0x0000000000004c } }, { { 0x4bab9a99daf0bb81, 0x1a809896d62c1d00, 0xfc15571b1d81e94, 0xe71e5ad6330ff92e, 0xe5da998f3272c5fa, 0x9cb6b8b895be4121, 0x21d07ff8b589a56d, 0x7b929894734e9f11, 0x0000000000018d }, { 0x29007f2c79f1fdf7, 0xf03fc940bc218f8b, 0xe0cd4c284c0b692f, 0x4bb98beeac68f3a2, 0x9b240d9cdf8d209, 0x759386f327e8d1fb, 0x2f1084e5ea599fd, 0xd22accbeed63c9b3, 0x000000000001f1 }, { 0x40eb2568e6fe0603, 0x926661dd39b2e84, 0xcb95dbf3297b81a0, 0xb1d8092ae67b84b2, 0xaec74cf75968f541, 0xf5b0ee77fbe22de0, 0x4debaa2768c1be4b, 0x8e67631da58506fb, 0x00000000000136 } }, { { 0x5e2ebe763d38e164, 0x63b72bc3c11f7006, 0xa14476dbca65e4a9, 0xdc1ae6ebfa47362, 0xbd92be57b5346bd4, 0x602c8d1703c4a3be, 0x591ec2adf2978e1, 0xe99fe630bf17a6ec, 0x00000000000141 }, { 0xd0980dd2b27a70ff, 0xa27a98c55cb0e911, 0x3a141c4ce4ecafa1, 0x8383ad8c3f383f3f, 0x9ad1946e65bf080d, 0x177b8c3a020402b6, 0x3f028879819431be, 0xdc19d4fd1842032b, 0x000000000000c6 }, { 0xaa9e6bf61ae58dd3, 0xdff02fd1450342c8, 0x4f0e82e549827619, 0x4fe44a709cd1de57, 0xdcd5edcece45cb67, 0x9f5df7182335f39d, 0xb54ea7a6f6485180, 0x88650d1ce7abecee, 0x00000000000077 } }, { { 0xde8dacb706a8e62f, 0x77c70ecc88c7647b, 0xb4879b2765e1c72e, 0xac01af458e58669d, 0x13b8ff00e25b26c9, 0x3f2d866d2f11c5f5, 0x4427c66c0b0be786, 0xbf3fdb39d56e3a8d, 0x0000000000018a }, { 0x97f8ea2e7ea5ff39, 0xd0ebc8fe94d65610, 0xb07f95233e27ab42, 0xeebd58b074cf2311, 0x2139f398ad4ea2e3, 0xe28d1988b0e11199, 0x45502dd7476c39ca, 0xe1a4e7f49adbdc37, 0x000000000000c3 }, { 0xa940f65ffc97e1c9, 0x424b05f6dc81cdb0, 0x45165873a898a42c, 0x1e0aac3e0b4c454d, 0x4ecf351837a362fc, 0x6306197a1e050840, 0xb1adf1abb1f8747f, 0x42de5409d44a821d, 0x00000000000006 } }, { { 0xcab7ba212c64565d, 0x5fe568b9e80bdc9a, 0x22d2d139c6a5d723, 0xccbd8987c3273ebe, 0x797ea57e8919ec39, 0xb146013fe270a889, 0x58ec901a4b93525a, 0xe0e81d04f8e55344, 0x00000000000163 }, { 0xadf37b62c2213372, 0xd98e6755d23d5c49, 0xc98ff4d52d4daefb, 0xe00720ff714a4518, 0xe1a67abceed89817, 0x3838c384d842064d, 0xb3712433fd99074b, 0xab8ac6ffd3c942c9, 0x0000000000015c }, { 0x84c5a45d43fb1083, 0xa62f808940377167, 0xb539225b6f721125, 0x3c2068bcfdd94ccf, 0x2f00da24069534b9, 0x6b6d222652baa0b1, 0xd8a573c5104dd804, 0x272c3805ba9cde91, 0x000000000000af } }, { { 0xd78fed6a331ca9d, 0x380785c1dd1f7e2, 0x8f8033b9e95e9b29, 0x1f703d8964af0f98, 0xebde5d8b0952486a, 0x66ed7cfbbf7717bb, 0x36ba13a24f8a7540, 0x1305eb9a4671b0a8, 0x000000000001e0 }, { 0xc665e9471f098e67, 0x7c2ba003d1f973e2, 0xbadb180949272270, 0xa53a6e04db56e9a9, 0x951a134888b9940a, 0xd30034b3885dc316, 0x4022164266555147, 0x669b16ba4168cdea, 0x00000000000179 }, { 0xdce2b60d667c723d, 0xf14a9d803170e656, 0xdbe682f28ca14188, 0xf73b77861b5a1c21, 0x3474df9a8a956f63, 0x1ee5f0c6e4145c42, 0xef81d52cdf7b39d2, 0xd098b07d0ac475f5, 0x000000000000db } } }, { { { 0xede9733149ccbfd9, 0xc2d0ac4f4ca2daa2, 0x1b39a4113aba3887, 0x286e095093ecb478, 0x884b3369ae15727e, 0x2ff13c663c3deeb5, 0x71caa235bc57187b, 0x9a79602299e076d5, 0x0000000000017c }, { 0xe2d20d9dea5ebc7, 0x9fd335371a0ad0bf, 0x739f857210ab8824, 0x4ead38b4a5ce4848, 0x9306df1bfac46bbd, 0xed0f3bf14b15e74d, 0xe234963f8e1b48f5, 0xac2c3706fb9fa0b9, 0x000000000001f6 }, { 0x869b3b6b270ac8ad, 0xa26251de54f5742, 0x9b8340a52f81aa35, 0x765b031d40b59eaa, 0xefa19f027c1b21a, 0xb00f838a6f3c5541, 0x7f1aaf7b001e3c1f, 0x7dadd5d31923f1c8, 0x00000000000142 } }, { { 0x536cc340bdcef6a1, 0x4f10260d4332ac25, 0xbf7c3e4e3695a0f5, 0x4160e05ebe7a7e08, 0xd3318f4f2475ea19, 0x7c55a05853a1c3c8, 0x1d6ef746a7e05c33, 0x7017ea458e6a4937, 0x00000000000165 }, { 0x2ab2da17ec265569, 0xef39a44d10c63323, 0xd33a8608c20af816, 0xc56d8837c1654c4a, 0x9be9b718dc0c70d4, 0x1fafe9a4b0e3581c, 0x56a292d628368a9b, 0x7db47741da4404bc, 0x0000000000009f }, { 0x9f16f0a728d41065, 0x77339db488ca1bbc, 0xe810d8d24d8e0ca1, 0x164032b00260c6ef, 0x33068bb54f634ff7, 0x80e92d28c72393d0, 0x3399e983a03dfaa0, 0x3dd2d3bd05b878a1, 0x0000000000008e } }, { { 0xa6dae73baf82a2be, 0xffef260659a25b75, 0xcdc47bdaa85b18af, 0x187f2903c6dee68f, 0x5fb6022f2f9aabae, 0xc94a66cd406dcb2f, 0x383de00adfdcb7eb, 0x4b968dc359df4efb, 0x000000000000ca }, { 0x240ae77dee4d1f23, 0xc3279c0af2ab32e9, 0x43a01ba846e22ecb, 0x4b6a4119b48cdf0d, 0x4fff094b5d50a41b, 0x846b3364af90f7f6, 0x6e7237b9ff69c9c0, 0x7c7207b7ec959bfb, 0x0000000000006e }, { 0xfe81a9e6a8402da1, 0xdb86b6d265816967, 0x405204c6f40a2fd6, 0x21f55ad63e078be8, 0x138edf1a575c0af2, 0x71a33808ba9618c4, 0xa4b351bc67493597, 0xc09ed41b2bf0ef7c, 0x000000000000ea } }, { { 0x5c43a017297be4f6, 0x2da773adf9bef172, 0xa88fb79055d28d4a, 0x5ca2416742530b39, 0x9cf3e988fefec077, 0x82dde1a8a4b6416d, 0xe8de28d578b7eb19, 0x23c683596fcd45a5, 0x00000000000032 }, { 0x6a41fd59d70d2ba5, 0x6a5f4b48f828e462, 0x30b435d23fb8cd2b, 0x6fce462a10c0c432, 0x214e2958e107ead9, 0xd914143d521b16e3, 0x7e7fc32ab061b64, 0x2735d4515698b6f4, 0x000000000000ee }, { 0xe13e5404b12c1b0, 0x2932749d2184a770, 0xef389e9357dd078a, 0xf4f84fbaa68d232b, 0xec4353dd705c318e, 0xded18043b72daa81, 0x61578bf36b35d991, 0x8cf61035015c6ad5, 0x00000000000195 } }, { { 0x888afff618408786, 0xe8701733bc5ff8e1, 0xfaf45e0148340dd3, 0x631b7baf044c82f3, 0x30b17f9eb4ea33bc, 0xa14246f300f427dc, 0x42d1e9b6500ae37f, 0xbbb05001c08a376a, 0x00000000000180 }, { 0x97d742b7e505f571, 0xd2ead888f052fb68, 0xe657a04b14fd3887, 0x4f7bc08546b52b30, 0x843841a3bc4e9f8e, 0xb667ac9c2a291144, 0xa4156c84b010f41b, 0xba22f82893e29b72, 0x000000000001f6 }, { 0xadbbf11086791177, 0x5263de8753353962, 0x96f2920242327905, 0x882c1029bf9d8a70, 0xd49615c88429f27, 0x28e93a0831710d0d, 0xf24a576fffae7e42, 0x52dce164f06819f2, 0x00000000000179 } }, { { 0xf565db8a83347ee9, 0xaec2bdad52e375f9, 0x1adcae685de83203, 0xd893554bcce64fed, 0xe8f7658dc33e2232, 0x8ccc7f2fec4543dd, 0x686557fbad8cfb3a, 0xa3f16465b0fcc8fc, 0x00000000000100 }, { 0x7d6433c831c4e14c, 0x9df3903b01e0c900, 0x12c8ee914be4ee00, 0x6c58749a6a7c4c04, 0x923bb471ac82615d, 0x161854657fa9d436, 0xfde097e8e88fe616, 0x7498f01685bc2cda, 0x00000000000026 }, { 0xce6fcd6931adb41, 0xfe39556df2130e63, 0xef768cecceb25938, 0xbd48708afb6539a5, 0x5985a0101a53be2d, 0x52c52779b4c2bce6, 0x7a9e6111cd44ce79, 0x86e5274e8fa924dd, 0x0000000000018a } }, { { 0x112d5ae66607a9f9, 0x31b572da7831137c, 0x782eb35b65689fe0, 0x1981ef006045af6f, 0x6ac91b2ad58cde1b, 0x9f94f6c6f35c05cb, 0x67cfabf5d362f48a, 0x3bdcba3606c0f07, 0x000000000000b0 }, { 0x601b7aeb96870afa, 0x87dab5ec49559b51, 0x7bb43b24a342c23c, 0x17f7f2f70a5540cf, 0xaaca463ee1c7cbc6, 0x275bc12139af1cf, 0x504d7458344afe4e, 0x22d2c029c349f8fc, 0x000000000000ab }, { 0x59acafd430212655, 0xb67f534d2ab5ec96, 0x99ce782b58189189, 0xaa268e76c8bd4c97, 0x97d7680f54d11cda, 0x6edc920dddbf0bf8, 0x8ea8bab7f1362f7, 0x640ab1dd9745d71c, 0x00000000000017 } }, { { 0xdb474d94cdef1feb, 0xe7626fbb4e2176aa, 0x7cd2e1edebb50d5c, 0xf847e92c453a122b, 0x38cf836724f5eb85, 0x661d158cb686d758, 0xf2371243e7618237, 0xba97e76cd21b927f, 0x0000000000003b }, { 0x97424b56687e4c32, 0xc2071a243ddb5d8f, 0xcf0e2a52d060274b, 0x9c684f985ecf1007, 0x2ce1682582932043, 0xacbcaff0e4ee8502, 0x95de82ca96c35b5b, 0x5f71cac861746144, 0x000000000001b9 }, { 0x2588113a2fd84ea6, 0x4665136d7e2878d6, 0x623d1388f207043e, 0x8726c9b12af72ff1, 0xc33c0176ae05646c, 0x7444ca83ce7ecb31, 0x1177643d345d174d, 0xeb357a78bdb03247, 0x00000000000108 } }, { { 0xeecb7691351067a8, 0xdd3f2ba4d5b8af4f, 0x58b834b468b2fa3d, 0x66c9e10c21c10237, 0x2816fb384199d0b, 0x3f093ada1d28b6ee, 0x87d670827e2c7ce2, 0xe24f581e94d1dddf, 0x0000000000019e }, { 0xcd103c53549347ab, 0x2459ff26a9a32bbe, 0x8ea6f73d8fdd915f, 0xf26bbba51421edff, 0xb4ba29acbd64374, 0x6cce54e9cfaae782, 0xf2d5b475ee4ed287, 0x82b832bb5edced0e, 0x0000000000006b }, { 0x3d0c7de2aec0fe7d, 0x5f9f441adf9a39c5, 0x674543e69d29779, 0xff6bd7bdfc44f41e, 0x5c44d2a4475107c3, 0xd3690e1db111451b, 0x4c26d1dd2c8f82e3, 0xc178bd86c99bb18a, 0x00000000000076 } }, { { 0xaabcb0a127d84310, 0xa56c0ae6ae476cc6, 0x9171a646775aa2af, 0x9bb0fa1899765edc, 0x353e57aa2ede246c, 0xeb4258541f87479a, 0x521f4508c0bceced, 0x92d2235c337e351f, 0x00000000000109 }, { 0x2f8225ed8f5bae99, 0x387f7f4a0e3f371d, 0xc663e0bd849c4c10, 0xf458f7e909454b87, 0x5f249d730ed96f71, 0xaff837918f1df22e, 0x14bc00a9b8989314, 0x82cfbbaaf5f1fa8a, 0x000000000001ad }, { 0xf231780afa2de136, 0x7daedb8b5c3efa39, 0x8e827d42a23a1f93, 0xf52d3c698c1a8932, 0xff1fb771bc267ee0, 0xfe08c4ff5349adcd, 0x9c0f92012ae5f960, 0x856ca46f343d7b76, 0x00000000000167 } }, { { 0x892627e6c6ad6d1e, 0x84eaf641f6158d80, 0x23238552cf44b2f1, 0xbfbd54d309a604c7, 0x21d12901d57ff9f9, 0xd9bad966dada37b8, 0x823e8572c81ec668, 0x400825e6bebe6f97, 0x0000000000004a }, { 0x3c593432033557c1, 0xc048fefde4c7e1bb, 0xd22e2e1f95c68d44, 0xed95d42c2d44ce7d, 0xc1f6e3e9ed8f61e5, 0x7ed22f6e8c9ff37a, 0x65536513f2040202, 0x554f1f4c455ea53d, 0x000000000001d8 }, { 0x906b07c723f99ee4, 0xb7616fa4e5b986d6, 0xc3a47f160f7dba99, 0x5e747e0fea440a7d, 0xed48d23cfcba7460, 0x4862d2d02dae1029, 0x476cb7bf05ba8345, 0xd099162ffaf3d649, 0x000000000001ac } }, { { 0x9e49dacdb4543668, 0x41e97f6f808893c1, 0xdb84db1f80f88b02, 0xc00859a26e76864d, 0x69fb3eb6cc61a09a, 0x2cb3c68406403de9, 0xe053f0d5419b4f09, 0x92016e2632827c1e, 0x000000000000f1 }, { 0xc1d6d2f9624f48e4, 0x62a5a830b5799f35, 0x27290cc21514afc5, 0x25601296435a5779, 0x7fe77d1487dcaed4, 0x3a107890ae05a2f5, 0x2e0d5e8f87392487, 0x4302d09bac02059, 0x00000000000065 }, { 0x551097c8f6c6c050, 0x5d144f055c2447fd, 0x69f8f6a8becfee1a, 0xdc6400361f021d39, 0x4dc039d2309cdf70, 0xf24f1fd6e45299b8, 0x9b804646e6255da0, 0x9336072c1c301353, 0x000000000000f6 } }, { { 0xe3ed6db7950bdef1, 0xd285ce4fb0015a27, 0x5919de4ac1e7e792, 0x261845fa33cbb09e, 0x82443993e52a66a2, 0xe0fd0400f0d77f80, 0x3858b4043a2e160, 0x1404ce6d90671be9, 0x0000000000018d }, { 0xab8ec9db5974221, 0x2c21794781dcd584, 0x7ff35cad1e36f52d, 0xd019e4fadcf082ee, 0x7852baa8aa4899dc, 0xe7dddc77f75c87aa, 0xfef6908626e6765, 0x9956c4b11bae96d6, 0x000000000001d6 }, { 0xc8239581f1a4f449, 0x87b033ec15326af2, 0x3071656aafbed3cb, 0x49749573b2464cd6, 0x74b937c64bef152e, 0x2b6a9afe1e696e4d, 0xb96b4db4bece4262, 0xdc61a3ccf8d2e83b, 0x0000000000001b } }, { { 0xbb77f6583062458e, 0x991552f8882ed8a1, 0x664b63fc84fb215, 0xa502b32d37a66913, 0x873eba66aa6f8bbf, 0xd9f93158a65cadf0, 0x106318ab42d22788, 0x653a194976229755, 0x0000000000010a }, { 0xf58661951773f1f8, 0xfd718c2d4715218e, 0x957aeceef3a14304, 0xb25b8eb4fe9a0c44, 0x29072b105d8d1142, 0xad19005c69660f3c, 0xee1d6df7bac2af1c, 0x57efbb1027e5ceac, 0x000000000000d4 }, { 0x3b8059887ad8b7fb, 0xf7b0759190a29e9, 0x2cf86ca99b954420, 0x79a2e7fc7887d864, 0xbfff79dc06d7d777, 0xec65fb7d2fb55ef3, 0x108166c45d8d31bc, 0xcaef636a8d734ac3, 0x0000000000012d } }, { { 0x616c4673e25df3d5, 0xfba1ca9c07a29d6a, 0xec85bb4501a995c9, 0x20010b2923554cf3, 0x120d0995b7bb9340, 0xa8020b59e4153076, 0x374d4d1c2464a463, 0x8962bfdf7b97b8bb, 0x00000000000096 }, { 0x7fa769da571744f, 0x914fdefea596523d, 0x2e97c9306e03f677, 0x7f7f5611321fe548, 0xd0da452c8bf85420, 0xbe2e9cc8269394a2, 0x90ad68f885f912c3, 0x8fe16c3e06732ce3, 0x000000000000fa }, { 0xe6c93ca1ee58a42b, 0x3146b0cdae565d86, 0xeb2c6c193c377d9, 0x96465c4ef193b742, 0xab196a1392343e5d, 0x20d7edc7a3e51d2c, 0x1ad0bcb338a2095a, 0xc0cd8c493a7466e5, 0x000000000001e0 } } }, { { { 0x397a1ab59184ed6e, 0xc1e02b40096478a5, 0x401eb5c3c6ecb896, 0xff2b623d61445eea, 0x2a195174a7283121, 0x194caf258976530a, 0x4623b2d5c443ddc, 0xd79c50a749711806, 0x000000000000eb }, { 0xf0f70c3198dc7d63, 0x2594c353ff215e0a, 0x2bcd3f36e18613fe, 0xa97a1a419532070a, 0x7c941117974c4155, 0xd4ffcbdc3f748f58, 0x26a01a244a8cfa, 0xa02821243c240a5d, 0x00000000000088 }, { 0xdecad3276c3e165c, 0xdb88f431291f9d4, 0xbc03276909b0e3b8, 0x92cc635b5764484c, 0x12a876b089cbc6b5, 0x94dfbe215a22ed98, 0x79965f799ff1e683, 0x684ea68d92c10a7a, 0x00000000000134 } }, { { 0x2c73f1dba745cde1, 0x80250442ce676245, 0xde9619c199366bdf, 0xd9a1756c4f1c524, 0x3bc1f1fc5e6f446f, 0xbc860381aff732ce, 0xfb62618b891e89d8, 0x1349ae24c5682dd1, 0x00000000000111 }, { 0xc91bc315bea2c3ce, 0x84bbb0db284ead44, 0x14e530ba204e89d0, 0xa62b93c6b3fd02c8, 0xff51b802d13082e5, 0x68bf21e21360c240, 0x6d39b504b2ae8430, 0xb2201e5144336630, 0x000000000001c8 }, { 0xa8a13d9c5fdbe00, 0xcdb4059f4a7b29cb, 0xf07376e01cee233, 0x7f43fb3df6f4d8d8, 0xecc1b6cf0ba47668, 0xb64c15b34d6cf11e, 0x60df0d897f77c92d, 0xa8ff4a5134679416, 0x000000000000d8 } }, { { 0x77e94be8674880cc, 0x8711ff5ad8cad52b, 0x9725d069cab2140b, 0x446d2297f3bf7b30, 0x43a6b95b5b15a722, 0x97042d4a17fea317, 0x26bd7fc221b35c36, 0xb1753cceaebb0abd, 0x00000000000097 }, { 0xb94431a3eb836e65, 0x30bf0141d5fb3a07, 0x1965400baf97115f, 0xce6e3d4a7bff3e42, 0x8477c19b8be67fef, 0x685c338cbace081d, 0xe99a97702174d596, 0xb10865cbf7389343, 0x00000000000025 }, { 0x847e4bbb5e2d0578, 0xcc344532fb75077e, 0x80688e647d6d78d1, 0x33769bcdf686cde3, 0xb824efe1dffc0e10, 0x562188d92124fc04, 0xad71be1f431c7964, 0x974acd71d1d2f216, 0x00000000000002 } }, { { 0x137e0f1653f0dae8, 0xcb2f34c3c4ea3dce, 0x312a0e0156f7810a, 0x4e6f08880b1a6ee7, 0x1e22a8516cb0d358, 0x7f749b2ba1b40def, 0x18fb9dad0c8fc8e7, 0x6cae12a0b2dd663b, 0x000000000001a1 }, { 0x25b8f85f04c31213, 0x925c61004df4c094, 0x4815695ea4e49b18, 0x23332f9340725c4b, 0x846d2b1537fc6bfb, 0xa6cbeeac59f503a8, 0x57358831244957c7, 0xbbf58bc01ad9268d, 0x00000000000181 }, { 0xe919586b550d6821, 0xb7766a669e4a83f3, 0x8c0376ad880c69b9, 0x963de661f34810ec, 0xba67fd3c9edbebc7, 0xb45750b16dcabef4, 0x82ce7c4483e261a2, 0xc5ecc28775d2f866, 0x00000000000064 } }, { { 0x90c084dbc46092cd, 0x3911ddcdb0a25752, 0x316dec4750b8c730, 0x58fe90e777f6fffb, 0x7937b86863da6ab7, 0xa252e9224fd39e89, 0xb626fe9fbb2c04b8, 0x16b4eea7ca0ae9b8, 0x0000000000004c }, { 0x5e76f7acfedcb02c, 0x147d1d1fc087da73, 0x4d3b7a4e718a24c3, 0xac8ae1129229e080, 0x9ee16a615969669f, 0x51ae9514c80776a3, 0x51e35e0f491ccb41, 0x7dd609b5cf09f129, 0x00000000000075 }, { 0x27305395a89da6e9, 0x5e83d5e3aa353c07, 0x2b63a79e20928efb, 0x50fa7a801ec5ab80, 0x30ece29235e3107e, 0x4b8604a80368dc8d, 0x2246defa581e09b7, 0x19f21868714de79b, 0x000000000001be } }, { { 0xdc612bb8516fbf71, 0x9fbf3853f8559d46, 0x92778f46464d746, 0x6c450bc6d217eee5, 0xab09127f8bec3f78, 0xc15b3a4e9c5c63fb, 0xa5d75a835221b2b7, 0x68ed23bb68e0f69d, 0x000000000001ea }, { 0x7aa17ffebbaa6bd4, 0x76f2842d540ce776, 0xf48e05924a0cb59f, 0xcb9286ae1fc933f3, 0xb876547278246cc3, 0x195eba31554040ec, 0x2d0b95631ed3c51a, 0x72dc511b01d6e6a9, 0x00000000000176 }, { 0x96e7ccc3b2040d26, 0xff4e2379cdbf6880, 0x2f9e8a02d45950a2, 0xd48675b520b304b0, 0x7caaa26f4920d0dd, 0x226a351af337b888, 0x4a58fddbd8e42d06, 0x4538592d3a6bf5a3, 0x000000000001d4 } }, { { 0xbe0bd5c5906eb1a2, 0x48ddc6150e705aa6, 0xe888b7366d890d50, 0x75a17de97cdfc7e, 0x8442d8e70970dde7, 0xa07953e7b9e21d77, 0x77988754b673c33b, 0x354f5e47ec50bf20, 0x000000000000f9 }, { 0x3cde697bb8b01042, 0x9690254f4a08597e, 0x709e69313c84c70c, 0x6b67b8c5c55a3aa0, 0xa57c4c4b0ea81e8e, 0x5ab7b0d9b30d4134, 0x7d5cce842587d817, 0x2628937326b066fe, 0x0000000000010f }, { 0x448c0add3447189f, 0x150020cf3ebe5ee6, 0xa9b5d22cece45122, 0x62c17661ed52adbc, 0x37c9c873e2b4ec65, 0x53b28843385a7b20, 0x26ad5cb80d96b4e6, 0x550cc27569ccdc46, 0x0000000000000f } }, { { 0x474460391560dd55, 0x9b3bdac20dd747c1, 0xb6725ede51a6bc69, 0x366509f57b52938a, 0x321563646b67fbaf, 0x344032853531257d, 0x99fb717267b21e6, 0x505e94a2581985f9, 0x000000000001a6 }, { 0xb559cbb603144647, 0x9b1f6bfa447c5fda, 0x6b63ed4cf7681eb4, 0x1f374bdf602253e9, 0xc79b449bb2dc686d, 0x697d058202d82be7, 0x82d0a51112596868, 0x63f5a27e2852e98, 0x000000000001be }, { 0x182a0b66ee82bcf4, 0x690d100273e2071a, 0x59975794d00ddf5d, 0xf2547d8ccdd2c819, 0x45184f03582dd893, 0x4ac83564899e2558, 0xecc52d97c846a600, 0xd62c34b83870bdde, 0x0000000000007a } }, { { 0x6aecf17bede11c3a, 0x3db0ba62fcb78098, 0xaab058d0598fc9d5, 0x232a2dccbb228214, 0x4d52ee492d6e41a2, 0x51732fabd3d17c8b, 0xeaa6b1f502cc83e7, 0xf9993439bce07109, 0x0000000000017e }, { 0x4b76150b200baacb, 0xb381a6dac2ea645, 0xc8b38bdd357aeb36, 0xbbc90d6689e8b4bc, 0xad5efd0d1d34660f, 0x5ee4d752d7b7486d, 0x7ded0b879888c90d, 0x2fe2ebd0da9602f6, 0x000000000001eb }, { 0x6a03b803402ba611, 0xac8ff14676556f1c, 0x4876513c1fcf90f1, 0xf5409eb1b99d185b, 0xe9c1ec91c6f37f12, 0xd02b29f06891fd8e, 0xf9e4d12d769abe3a, 0x237bf239d9206899, 0x0000000000009b } }, { { 0xc02ccc6c64dea983, 0x4673363da366dd42, 0x414355f3776ac60f, 0xf99863b962e2c815, 0x1a49fe96edfec1ae, 0xccbbada06c005898, 0x1c1d028f56bd3523, 0x462c7be3331d1064, 0x0000000000012c }, { 0xa0fa486a7de5baee, 0xb184fe7c3ba4c5ef, 0x51dbcec238a50d1b, 0xce3e376b1857d9dd, 0xa2b148579331c513, 0x36561d86d3aab8dc, 0x28d815bc052f09b5, 0x7967b372719b1231, 0x00000000000099 }, { 0xc8a056e3722c1c58, 0x560ce52a4082a71d, 0xacb86f1da5efd079, 0xff14af0f47fa6ee9, 0xf80aa20364bfdf5, 0x31a2c9f9ad34001, 0x3882550cbd0b2140, 0x9f3a296ad26c6a7b, 0x000000000001c4 } }, { { 0x2228d5664666620, 0x147c68f8618fa92, 0x87503b03765a3add, 0xc732f8412599f729, 0x60525a934ad77f9f, 0x5cbad3f058bf21cd, 0xe3a1257764b0d224, 0x5d0bf25bf78d327e, 0x00000000000186 }, { 0x3f62c14fe978a3b6, 0x5ad5aafc8802cf30, 0x342a30a655b5d5e6, 0xe46479cb34eaa00c, 0x8d52255bdbc4d751, 0x199ec03e8a33d700, 0x22304ca78e50ea05, 0x20374ee865c38b47, 0x00000000000160 }, { 0xc0bd0ab3ae41f41a, 0xaf2049c641cdec1d, 0xcfbc84e2951e5772, 0x27d8e20e030cf248, 0x299e2c25f93bac57, 0x6c3a536ac56fd760, 0xda62bab6c02f31b7, 0x243282047c3adff9, 0x0000000000011e } }, { { 0xc19a1e9c90c1b359, 0xc498c7822641b8e8, 0xe6120ae2acb4c63d, 0x819ff6bc45b7914f, 0x2df5c2ce65124d74, 0x533c0093d02413b5, 0x73927897ad8010ba, 0x4b0e01644413b967, 0x0000000000011a }, { 0x76ceb9334a35cad7, 0x3fac5ad404d2e55a, 0x2e07e3417ba637ef, 0xb8f90de4b525631, 0xb0f0efeaacd5ff7b, 0x8cf34c1eccd6931, 0x421c9888a3bb9101, 0xcb1067a20ecb88e4, 0x00000000000199 }, { 0x6551e3b6a0bc74f7, 0x4d555612d9cc6d2e, 0x32b429ee53224da, 0x1178cfbad8ddbb42, 0xbb376a3abf9f63a6, 0x78eb0cf915f7a63b, 0x81c57144cccca590, 0x1fe160035ceb1367, 0x00000000000069 } }, { { 0x1afd0d47b6e981e5, 0x1fbf93151c768a99, 0x4a5aeb8b2399d769, 0xe0c6e6f9a7009948, 0x1a92bc02dca5c356, 0x111f080bd3e0fa9b, 0x750efc04b8e28191, 0x58f4dfdfcd7a953a, 0x00000000000060 }, { 0x767917fa2d5384fb, 0x213527535658715f, 0x9da542e1c27541f4, 0xec40acc8e12aa948, 0xfdd493bb1dbcfe65, 0xb05a13b6f5d8e9b6, 0x3a272b7fdade287, 0xebdcda4f87be1d10, 0x00000000000094 }, { 0x6741b59d7bc476b1, 0x9b0f0c0b627b145b, 0xc9d4690fdc39eb67, 0x405e48805c7faefb, 0xbf1cc218696044cf, 0x704bfeeb62811af6, 0x5b4525fa7d6120f2, 0xda2dd250e21c9e4f, 0x000000000000a6 } }, { { 0x5636b0f0c6478924, 0x6f7a1f2a59dc2ca7, 0xbc8332a8c8c4e4bd, 0xd74d62c824bf92b8, 0x808831160d9c6f09, 0xc3845443905b202e, 0xfde39ca21daa036d, 0xf9f80b1c9ffc9788, 0x00000000000128 }, { 0x656384556fed56b2, 0x48e871b6049c9a83, 0x99b2af2a6570650a, 0xede28f1d9eb33d49, 0xe1be3fbc04c2d77c, 0xc7fe4696577d65c7, 0x5b182706ad6bc41e, 0x37a683694ca7f39e, 0x000000000001a8 }, { 0x8b507e9a3bd45896, 0xfaa8b5ceac296b67, 0xe4b6b4a51f0c8460, 0x46fd318e707b1d0a, 0xa83cd3cd2a783dd1, 0x1eb7eb9a0b4035fa, 0x801451cd45e7135e, 0x2784ac981b8d1297, 0x000000000000dc } }, { { 0x2190ef5a0ad5ccf6, 0xbc3cea74e5f57d3a, 0xafa8c0dc7977d5be, 0x9183acb972f533b1, 0xb634160a102967f0, 0x4cbfc91230841978, 0x4668105461e5721a, 0x6028350853ab0a6c, 0x00000000000082 }, { 0xb8be8ad31d3de3a8, 0x1c3b92bcd225c516, 0xe49862b2c01ea41f, 0xd3d0a442e84f28bc, 0x15e8b558cfcd9a2e, 0x7f44023129b6f9f3, 0xc17d398f3009cafe, 0x316c7a8151532dd6, 0x000000000001a8 }, { 0xc98fb61a7f63e311, 0xba8d1c44fd9a6246, 0x9c6272cc6a54ff23, 0x3ab41ab53f88b37b, 0x99c448cb006036ea, 0x4509d2801656f58e, 0xfc7a0b747f8b8746, 0x32c65ee887b7e9b5, 0x00000000000160 } } }, { { { 0x79903cef447fbcd7, 0xfdb4960bd21a10d1, 0xac8b653ffaff6e12, 0xec50d8e4a94793d0, 0xb6a954298c3997cf, 0xf4a502c769c6a537, 0x24695e8578199e33, 0x21bf799024082657, 0x000000000000b4 }, { 0x3ac8b5ccd061578d, 0xc40ccc9741fbb1ee, 0x48a9154e2b3ec2a7, 0x56df193064adbaa1, 0x8d48d62ecc1d6a9f, 0x6b94c49ea4201da5, 0x76bc70de8c49d80c, 0x9cbb9cb12779c91f, 0x000000000000e6 }, { 0x58eda504f3f53175, 0x25a313d7e4da8ce1, 0x72e3aa17ca5cd0e1, 0x6d2199335ad20e6a, 0x2ae34e0879165b2, 0xd57c54aedffe4f9d, 0xf286487d306277b9, 0x82d44bc5ea299a55, 0x00000000000096 } }, { { 0x6b5ea74028443f36, 0x73a56b37960debe1, 0xa0ed8aa9b37f86e0, 0xfc9d42405aad39f4, 0x21dbd44e591f6829, 0x95b7d91239ae0408, 0x188c6ead8e015916, 0x8da247922652b4bf, 0x000000000000e9 }, { 0x5eb72a79dfcda69e, 0x1fcc8fab52ee8ec4, 0xeec2d54f3a3275d0, 0x2459ca64c8d8d70, 0xec74bb934ca2a4b0, 0xbabe223e7298fa60, 0x3f7147aa5d6c8e82, 0x27df547be1d2e88d, 0x00000000000152 }, { 0xae79d9dbcfeb635a, 0x9f4ea6a30ef2cb5b, 0x3fd0efd2d3609eb6, 0x37c9279863603043, 0x8071d2edae550578, 0x70b1c04c76922e0, 0x692ac0c3ed383a56, 0xda9272193f6d7a1d, 0x00000000000115 } }, { { 0x9542efa36df1c018, 0x1787c5b3d275c49f, 0xfe0f8714c3695c4b, 0xce2ff586ec4cd4c8, 0xa41f9b80e4f68d1c, 0xa685ba170748f98c, 0x4a33664a7abbc517, 0xaf53ab1476681adf, 0x00000000000085 }, { 0xd478c56d68f1687a, 0xf822e6f4f3552281, 0xefe067e7888f3404, 0x67bf075275f28965, 0xc3d39de05201b7ba, 0x59eabda257d9f052, 0xa101153ca48cd856, 0xc5a9f0dd589ceb1f, 0x00000000000143 }, { 0xb862f06d362d0cc4, 0x73b363b6d80ff9a4, 0xe8c3e51530d8b995, 0x4ee6c1deeda321f5, 0x77bb4830b8947ea9, 0xe34e6502abdd8997, 0xc34d36764975346d, 0xd75f80efc976be01, 0x0000000000004a } }, { { 0xfdb78835553d64d2, 0xe7fdf5133fe4f472, 0xea6290f0efb18665, 0x3d934d3233a5e718, 0x35bb661b9aa2eb8f, 0x967b2520be65bcc3, 0xfbb94ed5e89d11e9, 0xd0c5c6d0a505c9d6, 0x000000000000e5 }, { 0x8e270159e0dd2b84, 0x5c7e7c05bdfd739, 0xf337d8dabbf098f, 0xf13a64334b9e3dd9, 0xef19f8e26b7acf74, 0x7d9b4e65cadd20cb, 0x19cf506797a6c295, 0x8ea115b269178adc, 0x000000000001a9 }, { 0xa10f45652d3511aa, 0xd320bf1f2b888921, 0x4f10c92038175f20, 0x9a991a3474897ad1, 0x72a7a77578f9863, 0x6763865708b0f999, 0x363e3fa1448217b1, 0x853ca036016faa8f, 0x00000000000065 } }, { { 0xe00fcade0a15f977, 0xed5edee3b79f26d2, 0x7576a32e4c7c2aa8, 0xbfbe5adaf21b720d, 0x5e4f6c1923d44d10, 0xa54e283acd0cfd44, 0x235f91dc6b5ca5c7, 0xcd111c5f9bb3bdb3, 0x00000000000156 }, { 0x8912ce34297e8e30, 0x4c74a55f8601c374, 0x5ac1d3d2c54251de, 0x54b1fd52a984af95, 0x077c40037a2b64, 0xd887a4684a5d79d6, 0x83e3e45a45469455, 0xfd5ea24d13ff654e, 0x00000000000180 }, { 0xbbccd8de9ebeccb, 0xd489237c9d6505c9, 0xefa16ed6510cac90, 0x805000779882989a, 0x3bca7af2e12a7247, 0x90b3ac6e1e63482c, 0xc9656ebed5db6543, 0xb4576b7e40572e5e, 0x00000000000129 } }, { { 0xf9c99b5377211c6, 0x39f9082014299bfe, 0xa07c8aabd03b47f7, 0xbab1662900ac0fc, 0xfa3fe5e19ca8b77e, 0x46f207c08f3e6bfc, 0x1b14c9d770f602b5, 0x4b4bd720be001c25, 0x000000000001a9 }, { 0x84479b6c2d9cff88, 0x32ff107f6606c2e, 0xe3b072058b1326f1, 0x21a76a446ea8b29e, 0x706a8bdf514b36f5, 0x792bb0cd3abcc279, 0x7b14a856fc43cee8, 0x9bb34409d877fa00, 0x0000000000008d }, { 0xb19c7a09306f1fd5, 0xf029426071e4bcf6, 0x1d165b3574c26c07, 0xe32395894ac23383, 0xab0ed1aa3c753468, 0xe2fe732527a9d4f9, 0x89f13b3a122eaffb, 0x2f2e874c3d05cba2, 0x0000000000014a } }, { { 0xf1a009d409b2d012, 0x23f05d117d4c693b, 0x8e1f619a657662b2, 0x1e75e2942957ad52, 0x9740a7acaa5ded74, 0x51d9ea3750526cb9, 0x87c6f4bdca4d9793, 0x94cc188bf10d4366, 0x000000000000bd }, { 0xed53852b68e057cf, 0x7c0999e3189c539d, 0xd47f519d0fb57bd0, 0x58a952b90f4dbbe9, 0xcac863db4fc245f7, 0xfd56ef99bb7e2a44, 0xdf9beb1fe8747996, 0xc27cecee9347b121, 0x000000000000d9 }, { 0x5417a9f517c38518, 0xb27d814d5f35e281, 0x70d19dea4ced44b4, 0xbf8b1c2b0d35953f, 0x4a50e653e2a28f6, 0xc5df29141fdc5001, 0xa0ce31e86f250c05, 0xe590d82c1e90f852, 0x00000000000181 } }, { { 0x407f4d6baa1a277c, 0xdb252460e2ae21d0, 0x96c05af578d959ac, 0x157592bb37572c67, 0x94c69edf16f8873f, 0x966c5340237ec73a, 0x223075b46f289267, 0xe92d367c47c2fc2b, 0x00000000000166 }, { 0x9ec6df0029fe60b8, 0xbc96f870ae2e82aa, 0x17e9c9e4185fd133, 0x31b46d33a8df2b91, 0x5b95c97e9ec20b58, 0x5ea6c8ae56fbbf43, 0xffe0e71d2fcbea3b, 0xe9a2520010ec966d, 0x000000000000dd }, { 0xa0b75c2cf92661b, 0xb8bcc9ed903d3f9f, 0xc75ebab2b2dd5935, 0x645970e1fb2d58c0, 0xaad8ba01427f14ff, 0xc18bb792aaed9e1d, 0x1fbf57f2e02a191b, 0x1565b5466fd4b975, 0x00000000000110 } }, { { 0x8c61c96e8bfaede5, 0x12c80e9322f46588, 0x4a19eeebc45f33c0, 0x200ff1549f2c5344, 0x51d8da5b6b23e8a5, 0x3898775188e17050, 0x1b27733e179defee, 0x29fe87f116673f56, 0x00000000000076 }, { 0xbd44ad474f7f1c13, 0xee757607e3ee16f2, 0x609e227c62ca3b7a, 0x65d3bccfc716ec63, 0x5fe40b42c06a0a24, 0x41e126d57e9e8941, 0xf52a0b55b2074e5a, 0x5134e2ab144a9a9b, 0x0000000000006d }, { 0xa1d700e8f5b8ccaf, 0xa0bbdcc26d96fdb7, 0x23262857f85e585c, 0x2b4c44474d2273d5, 0x9978236f68c328d9, 0xace4319c8d48f565, 0x6b08c1d6c027935c, 0x871080d4da0a13ca, 0x0000000000009c } }, { { 0x86311db2e6a3edc0, 0xde5897dad1d08ea1, 0xf69c337e4371a112, 0x6e34dbf8d44bf1de, 0xda1a9808e0a2a04f, 0xacd021cfee13ab5d, 0x14dc97361a868c24, 0x620098ce83f94bff, 0x00000000000142 }, { 0x54c1ac64c2ea243, 0x388caf2b104a7bc3, 0x7b1f694876eddc58, 0x8401e7aa0404f9e3, 0xf079d7a3ad84aee, 0x1bb4f66ea0068a4a, 0x10ac9f4cc24b0c8f, 0x1177aefca1aa02f5, 0x00000000000165 }, { 0xd8fac93857d230e1, 0x8f8942e9896b7255, 0x9618ae80cf85140d, 0xa3140952b36d55b, 0xb6efdc45e8968de0, 0x3b4ac6553f0073b, 0xdb6570fef31a0b4f, 0xb24fe829a2dee063, 0x00000000000027 } }, { { 0x2bdd74136af6eb1f, 0xb950c2703cbf25b4, 0xf91407d6839789cc, 0xfe314c9a3b16fd0d, 0xebece8b03bb99ed2, 0x4799b7f5ff538843, 0xf02b3097769fe6e4, 0x78cfa1e5155769bb, 0x00000000000022 }, { 0xe0a3631efff4895b, 0xe8b38dcd328a5a73, 0x96dfe1574f2a32fd, 0xe819a8ff92801b7e, 0x54a5869019ec4731, 0x8f8602e47a55cee8, 0x300566f5ae67a6cf, 0x956faa574d68b86e, 0x0000000000007f }, { 0x7ce0d3ee3965f5f, 0xb22cbff7225c940f, 0x34bf824375c5b62, 0x581a3be98ec9a378, 0x34862f00bf3fcb80, 0x2a867322b91f11e6, 0x4facc5eef19f7a18, 0xab7b5c94def0d2e9, 0x000000000000a6 } }, { { 0xfaced817bb973cc8, 0xe8f4e01f99eb0b01, 0x64890c87659c8439, 0x9eacc556d272e060, 0xb9bf492114bc62f1, 0x9f9f9a7f7cfd3616, 0x44ada1b747abca90, 0xb4f2686e54297c, 0x000000000001b2 }, { 0x1f47f19bf83b6cbf, 0x402b30ffd6b9e9b4, 0x4f385db1648b2046, 0x96ed5b38b4e08d37, 0x743ac5fed67f472a, 0x6a5c03274f5a1f1d, 0x7454b13b12480a50, 0xcdbf098442dc63d, 0x00000000000080 }, { 0x31229a956a904549, 0xd50b37db9f95d2fd, 0xa460064b3c68d80b, 0xca861751f0c8c651, 0x443df8dbfd7a106a, 0x4d8b51fe1bbf061e, 0xee9727a29ffa6a7a, 0xff18858b348c26ae, 0x0000000000015e } }, { { 0x827b15070f6e3912, 0x4c70f5166318fac1, 0x7215d4a55560102b, 0xb5a8b8f6156e7771, 0xddc0549b9b00e9d3, 0x1457066f5b3e71b6, 0x96cb991512d90328, 0xf3d57dc46c268c09, 0x000000000001cd }, { 0x1453beb5159017cf, 0xaa84e5e71e30dd0b, 0x5d2985399522d66b, 0x4314966f2fbf7f38, 0x2c978e2c03536fb, 0x36fa5ddf338db3a9, 0x1a29ad735c908f17, 0x12a98abe47876199, 0x000000000001a8 }, { 0x5c15401501c7ebc8, 0x239fc82bf95efa5, 0x38373b59636964fb, 0x17f9d642bc9e45b2, 0x89ac2a6af111fec9, 0xb53f0ef058869477, 0x3187bbc43dd58a21, 0xa2b2f2038ea403d8, 0x0000000000001f } }, { { 0xce3408da102b6fd5, 0xb153a8fc825c0764, 0xe5b374edc0c4fb7e, 0x19c876263b8a74f4, 0x2b75a858a64305c2, 0x55b8630e9cc86d, 0xa6cfc3da0d701505, 0x808726119859f790, 0x0000000000007c }, { 0xe19e048d641b0e81, 0x7f2a0f2c7350c10b, 0x1e92ff8aca3d32b3, 0xc863b4aaf0999dc2, 0x42aabb7cafd642d6, 0x4ca0ec9240b58a9e, 0x9ccb81983b9deecb, 0xadf31903691b74a0, 0x000000000001ac }, { 0x756d97c0c59b429d, 0xfbfc3ad5e5128f8a, 0x1d27629932086ee2, 0x2f857162458025d4, 0x541c999250dce39c, 0x62513d6f5382b03b, 0x641498d07a18666e, 0x7b21461fe53e7352, 0x00000000000053 } }, { { 0x787e3ae5ad57c6d6, 0x5f433abb313c41b8, 0x427d9c538b7d1ef7, 0x7031d18d4e8ae10a, 0x67ba6b2f24f97038, 0x419a97daddc97d3b, 0xea8e506a0ce2079, 0xd1e9f0cb1f62c8e2, 0x0000000000005a }, { 0xd27282734127d0bf, 0x3de2f725ee6c5ab7, 0xf28616cc737fd06, 0xdf838c0c8a80fb95, 0x28a7d3e0b0f0de22, 0x7b93672a42253687, 0xc221ec6e3923d21b, 0x7a71857aa9e1f3b8, 0x00000000000072 }, { 0x3e9dea5d20d54f81, 0x195abbb2751b3352, 0x7d5c703830d3e19, 0xbb2b6df12662e0c8, 0x2e536e2cda7ff68e, 0xb55455008049de4f, 0x26e47f23701f6b7, 0x1a532395d70ce2e7, 0x000000000001f2 } } }, { { { 0xe67e4965985fed0b, 0xaec39094bc87ef78, 0xf851369be1f40b30, 0x73d98e960c2dcc09, 0x14381cc784c70486, 0x52b30589d76af7a, 0xfd87eb9e67887b1e, 0xe1c3a020698b3db1, 0x00000000000040 }, { 0x4438e2267f3f7774, 0xf5c62740df523e73, 0xb6ab1d8b398830ef, 0xae7a130ab2dab3d4, 0x43723dbd01bcadcf, 0x7cd1703e4dbc6e59, 0xabe509eb345c893, 0xd53d97dd3d768fc6, 0x000000000000b0 }, { 0xa5b02ec8a0919c45, 0x869088978343b7d5, 0x2e7144bd2f00d583, 0x4ca71cc1cb6af9f5, 0x35310486f5849e62, 0x8e218332bd34b906, 0x626677b373427d7b, 0xc7f8bb10986935c8, 0x00000000000093 } }, { { 0x7aea64999903db8a, 0x76bf1509678e23d6, 0x4f5e1b0b24041162, 0xd698bda2f36b3ced, 0x3eab85b0f364321b, 0x6941f0c410a5a9f7, 0x6e49a14973cad58f, 0x6b5bc08e98f003c7, 0x00000000000164 }, { 0x3c3f43f79d39d75d, 0xe7cd59c2f61075c0, 0x796b9c7881be926b, 0x2cad0b0f7a28ad3e, 0x8b2e6d842d1829e1, 0xc0dc3da349e72158, 0x5d0545a8660ab6cd, 0x298d93d286eb3ad, 0x00000000000180 }, { 0x796f0e95f901d708, 0x372f484a27f7a647, 0x97acb290b8ea9232, 0x11d8a8997275d5dc, 0xcbb4ebcea794ce2e, 0x10fe7af38b73f5ab, 0x598e8ae9850e958, 0x6c1ef789a68cd91e, 0x000000000001bd } }, { { 0xfa273dae70882ab5, 0x1124534dc472da4d, 0x285c4d7a4d4c9f37, 0x12ff74b9f7ed814f, 0x1d60eabd2f2f3ce6, 0x18e53e720800ae63, 0x176acb684de608c0, 0xc850a0391a225d76, 0x000000000001e3 }, { 0xdee95c3dac74d4d, 0x29abd883917057d0, 0xeeaf215b5233a89f, 0x5645a173014e1654, 0x7ea088b01f60c4ab, 0xeecba18414ec3762, 0xca3e82bc54d1b97c, 0x1520b193bb738f2a, 0x00000000000032 }, { 0x1734d907afbb467, 0x4bfdf049030defa7, 0x8c1c0f9329b5aae2, 0x1ee9c8dbb239989d, 0x594a4f7575023c7, 0x12cada5a337e93b2, 0xc487c1f1a54f6543, 0xb991e4890eacb918, 0x00000000000090 } }, { { 0xc14ebbf48c034786, 0x4339a57e14730b01, 0x69cb6e62bbcfa827, 0xe9ee7d73e5a4554c, 0x566c5034eaa9d06b, 0x6a398c55a1f436cd, 0x862bfbb65a92885a, 0x7cda93f4c6463521, 0x0000000000007f }, { 0x4bd50cd3687b552a, 0xa6bf74a3d36433aa, 0xcdf00ff242bb1f8, 0x7ab1c1a448aaf6fb, 0xc1255e8e59a6a2e5, 0x30ee9d1d9783a1d1, 0xe9f119f17e2d8632, 0x39873c0dac3e46e9, 0x00000000000067 }, { 0xc4173334bd8966ae, 0x2670eed83bb2c4d1, 0xf18a000926b7d7ce, 0x48d2e69be5d8e6ed, 0xd6215a9602147e69, 0x3e5e7b45381cdf90, 0xe61721840acb45b6, 0xce471fa51e9d13a, 0x00000000000111 } }, { { 0x5b5c6500d0eed475, 0xca8f810b90bab2ea, 0x7d7760129c8549f, 0x4cba6762c25768d0, 0x5ba84f80c7067dbd, 0xb01e0d3c067b272e, 0x2af83804700cfafa, 0x12b93805723f77a8, 0x000000000000a2 }, { 0xc81af024974d98c4, 0xe404731a1b2e6dbc, 0x31ea0df9d3ff71a8, 0x7a32ae8d627b2f0c, 0xdb1e29c1d48a6c8a, 0x831d25b78c12683b, 0xbef09e1bd07a5615, 0xb2a1432e6c9c44de, 0x00000000000043 }, { 0xa63dd3e169028687, 0x15e380677e8cada7, 0xc7742b32526b157d, 0x1bd90d90999cbcb2, 0x8ae2a253aba515c1, 0x729d071dd106974f, 0xbeb4b33b568be635, 0x3d9bda70d37256f6, 0x000000000001a9 } }, { { 0xa5e31474af9ed13a, 0x6ad0bad13226f851, 0x7209c8b219bf0237, 0x5862e93c083ea1bc, 0x78a07a88443eed1e, 0x7f8c2c765c98526, 0xb9500139c0480d, 0x6579e8de6a7731e8, 0x0000000000004d }, { 0x713ccd20c61a945b, 0xac28ec4b70efcddc, 0xa9688de0378e193, 0x5a1657a45db7e98e, 0x1f229d73da78f5a6, 0xa6e45b4bc7763736, 0xe9a3e30753e883ca, 0xfa5c4dab87f04233, 0x000000000001c9 }, { 0x6987622acb13314d, 0x28f237af25e3d850, 0x9158430aee0a4bcf, 0xd3364a0f0ec79e41, 0x5ee2f18b102f1d8, 0xb520cd3b366c4a7c, 0x8985332293def2d7, 0xe120ece25c472fb4, 0x00000000000188 } }, { { 0x1dde0d8fa20f083f, 0x73a7b2400d8c0edc, 0x801c049bfed68701, 0x293b9e40879d085a, 0x95259ecb3dfe1f16, 0xf2487e2d55712fd6, 0xe76dcca3746b5ff7, 0x5b7b20e94b2a5c32, 0x00000000000174 }, { 0xf690613ebe4248c1, 0x89e34534b3dd64f9, 0x99bada5cec68696f, 0x23db3f1a96bd5b03, 0xe9500f27e2f36078, 0x46f75847bf1f0165, 0x9445ef686164703f, 0x2cac6f3417beab3e, 0x00000000000071 }, { 0x73fa3917ee66af8b, 0x1e61fc98f14b2617, 0x682140bfe831ae63, 0x5f28d5c71458f8c8, 0xc61a11952ef0348, 0xbd147d8ab620d0d5, 0xb55a27bf78b65a54, 0x118e149b35f2a316, 0x000000000001b7 } }, { { 0x32ca1a6c6ae5420d, 0x90a699241a8a106, 0x57e4052304f7a3c7, 0xe3d50223a14ba48a, 0xc5aeb4f4f188f9fb, 0x245970eec0f7d479, 0x98b097d3414624a5, 0xd8341fe90c7eeb92, 0x00000000000095 }, { 0x6662ef99c8e7d19c, 0xd4a7c268c0dd34fb, 0x85e68ac263b2eb09, 0xb13f745a7735c842, 0x4fd0c11570852530, 0xd827257be08d77ba, 0xc650d228ea00428e, 0x16004fd3813f866b, 0x0000000000014d }, { 0xf7c2cf3c8c053d79, 0xfd464726b7c42cfd, 0xef4ca3738106485, 0x7768b3cdd3693e1d, 0x69e302fd6ae1ab70, 0x9554d960b5664559, 0x842300541a99913c, 0x647dfa781d05a5ab, 0x000000000000f9 } }, { { 0x2d80162ba7fcdd5, 0xe11e83a866f7a4de, 0x424ea124a8ef2e0, 0x373bab6857b15790, 0x82bb5c0d7269db2e, 0x25396634d4ed979e, 0x3b79121a8f768059, 0xa8d85ca68ab9c254, 0x00000000000009 }, { 0x1d1e3e5d5a3e26d5, 0x9c6a33bd66d52cbe, 0x1ad18ccbb1cb2593, 0x3b2db818ccefcd81, 0x86dbed834a657168, 0x12aa0f8bb6c9a0c3, 0x709e94b83e9aca36, 0x453f8fe85b78e29, 0x000000000000e1 }, { 0xcec80a5d77ed941c, 0x4ff44036477bf47f, 0xa397fb2fb320c55c, 0x52c84c266bcb76f3, 0xbeb19ff1eef681d8, 0xe199eac0fff08447, 0x4c6087a67646fc75, 0xe3181f2d5ef29482, 0x000000000000d5 } }, { { 0xe93fef40f1fd7cb2, 0xd003293d23ba946b, 0x8b713a49ab6c31f0, 0x2b71febafbc11199, 0x850bc56e100317ee, 0x4a9177eebc9852af, 0x97c38801d7c991aa, 0xfd65631cf65f3a02, 0x000000000000f3 }, { 0x63d86f8859b501b2, 0x7d96ad20a1124d11, 0xb9e009ad1b2e0e96, 0x2843603be627edfa, 0xb030359abacbe423, 0x49ab2179fdaeea36, 0xd2f7799935978e9a, 0x12caaeef360df045, 0x0000000000003c }, { 0x45155aeaff7ac08a, 0xa00eaec6ba0db96d, 0x1d06e500c7abdf45, 0xd81c44de33e805f1, 0x39d0213ba44f6696, 0x773152bc41b80f21, 0x57f57473df7674b, 0x7c85d166d4158cb0, 0x00000000000086 } }, { { 0x33757a0b04523c1e, 0xf8a6ba05ce65d6e9, 0x56a2e252f9bb9c6d, 0xa0d600ae63756766, 0x7671db173f3dd508, 0xc2b53490da7dafaa, 0xfc86152e919c6948, 0xea17ac65f145a93b, 0x0000000000003c }, { 0x6b8ef996b2f0030, 0x32f180ad96c49f5b, 0xcabda74bbcd4933, 0x300ca77c0ec6e129, 0xe6c9848d6265ae39, 0x5dc23dd47079da7b, 0x115e904c3b061010, 0xc22259238795afa2, 0x00000000000079 }, { 0xdbfa7d8884a9acda, 0x6bddeaf1c0af83f9, 0x56b217dafe73fbdc, 0xb56533600ff08abc, 0x36800e11bff2aaa8, 0x40be5312138c375c, 0xaf463e3eea1dba1a, 0x77d7ddb015c5c0f7, 0x000000000001fd } }, { { 0x1daaa825fcc71ee3, 0x18989ecc1d59e212, 0xd3070ca4d7676ab8, 0x2afd3cb1ccb77e79, 0x1602870fd6d711bd, 0xb9d30d82d712ec43, 0xe5a13d41008ef8a, 0x5767ec5bd4431721, 0x0000000000011b }, { 0x5bbcbea33daa18fc, 0x2b268a2159e6c1f4, 0x59e39108f1de3232, 0xb785fc547d7daca0, 0x1aec5d7f18357295, 0xeb8211441ccf67e8, 0x1f3e02e3ccf07bea, 0x424679344eb87d62, 0x000000000001b5 }, { 0x2ccf7bcb77418d4, 0x68e5bfe3149549ba, 0xad798837cbb36472, 0x94fedaeb10230cc7, 0x3207a7d70f1ba2c1, 0x14e31e3ff1e91a84, 0xbd52713fad49d0ea, 0x841b3e717f75da99, 0x00000000000125 } }, { { 0x51888d77f01ff72b, 0x43ee3f5e8b2347cd, 0xefd72da1b7b47264, 0x2aeb204b2a526bdb, 0x55d239b1f0d251aa, 0xcf478bc6380f6269, 0x89317d3cc7ebab44, 0x65e8757b9518941f, 0x0000000000019c }, { 0x16c8f7bafe86f400, 0xa9100464f77153c0, 0xd1e3af48385d8c3b, 0xbfc2ca8561c9dc3b, 0xfb56ff1b7270c0a9, 0xec17da31316a8d6c, 0xbdddda0cfe54e840, 0x83de0a9434352054, 0x0000000000007b }, { 0xfddfeb58785727f9, 0x93f89ccf26ffff82, 0xe0b2e0c34f90c8dd, 0x48071477de93aee6, 0xe20a3e0931d43817, 0x9c1a1c5d680bef4c, 0xce1296aa9fd31e57, 0x37f834ed04edd1dc, 0x00000000000195 } }, { { 0xcbc890550bfd4e57, 0x253fd61e008eda00, 0xa5c96e7ea89f60d2, 0x54eed558cf5bfe00, 0xe8f4e771eb4daa44, 0xc099831585c47216, 0xe0bf514aac03ae17, 0xcdf9562be4952df, 0x0000000000011e }, { 0x7b53d80f18fe7646, 0x1324231e3b01ba9b, 0x1933b9aeb5c404f4, 0x4df49ec0a3320f65, 0x453313d447048166, 0xda222fd0d6b107de, 0xdb84349cc2f4539e, 0xc27aaebf98950344, 0x00000000000115 }, { 0x7f00d3d24187d5c2, 0x791f76c8214609c7, 0xfaae8964115c3919, 0x40826de54a584db4, 0xddb13b715d66c5e4, 0xe89d53de038d69af, 0xda17d6a510c35cef, 0x877131bffdce7306, 0x000000000001b8 } }, { { 0x8c522554889bbece, 0x4785366795be2d34, 0x5705d4d70d0a38fa, 0xdb0e78df5d645c7f, 0xcb7782cca52388cf, 0x268491fd95f81063, 0xabd0352062f442ee, 0x3ec27d821aa1ad46, 0x000000000001f1 }, { 0x9d17c5be3e3fd17d, 0x92976d8e9a817133, 0x20075109829eba10, 0xb3442127aa68ac94, 0x9eb216892f6d6346, 0x24b2ff5e518cd0f5, 0xb61d8db667eca370, 0xe6ee2a9d8ff044e9, 0x00000000000018 }, { 0x27fa13f803908b96, 0x980c1e0130ad5d28, 0x1064a0b09c5cb343, 0xa453362e6c4af726, 0x29bb45a90fd5c8cf, 0x4a18d7f1e54e6d3a, 0x28d4b453405a6d5a, 0x207a66701b87bf2, 0x00000000000128 } } }, { { { 0x934856af13a8e1d7, 0x71840cccba33b4f5, 0x466bf41148fb3344, 0x94f6824c52d97fe3, 0xadf5672193b0e263, 0x847d0810f637e440, 0x9238f04ef37f1c30, 0x984c7382e97d19e4, 0x000000000001f2 }, { 0xe06fd1a5ae647c01, 0x2c940639dd308a4c, 0xa311932c4066179c, 0xfdeeec2cfbc5d488, 0x80837ad530b5db2d, 0x8175e8d8ad0b30d0, 0xa2bd02b76caa9970, 0x5061541d88a2f48, 0x0000000000013f }, { 0xd6bae3c163884650, 0xf6241227a556888c, 0x535a1fc88440de12, 0xbda9b1e92c5d9a5e, 0xe75ed0e89f294420, 0xce0c185363d1057f, 0xcbc9fe1a33df1f00, 0x6cdc0657dcd30c49, 0x00000000000035 } }, { { 0xe5dbf27c55b7f005, 0x56dba4680b63420e, 0x6c93aac746f77e69, 0xf30785e4f483c722, 0x5ddedebe1c4c3ebe, 0xa9b1a89ea28ddb0f, 0x620ae60191bdb183, 0xe25611795ecefa76, 0x000000000000c6 }, { 0x12e703c7159c1da9, 0xa8b3f270a87878a4, 0x40cba1f7e2152b76, 0x27112027992965d9, 0xb3b8f35733ac051f, 0x5e524c3a5b6a76fe, 0x32d346f4e64988a3, 0xc27a716a6115c938, 0x000000000000e9 }, { 0xaa1556de91e90383, 0xe0da1bd87b09d70b, 0x2ae8ee6107d144d5, 0x7f3fed5666d8f297, 0xe117bba8cd413843, 0x56c55687af141dce, 0x8b4eb6aab7f01153, 0x946df70fb11b0330, 0x000000000000e8 } }, { { 0xb300cb34c9b9bc4f, 0x8e4b3ee66b3c89eb, 0x1f4cb3dc68b60915, 0xed4284522ae20a10, 0xe9d14244e2941cb3, 0xa4fa24ab3668c330, 0xa0a2a59b1223d05, 0x3801330d4ca6c99e, 0x000000000001a8 }, { 0xc2ee849e1ee74d22, 0xb3fed74d202f69cf, 0x3fd2226bf6a55b3a, 0x6f5dc19a8ad2ebd2, 0x2976aa31788aeecd, 0x1090b0583149fd62, 0x14fe0a3642fd1370, 0x9ce4b0ae484efd6e, 0x000000000000a7 }, { 0xc87d6b581d51b16d, 0x4ed1bca7634ace1e, 0x2e0236cd2003fd95, 0x862e35afbb7fcc3f, 0x5e111e1fd1d1842b, 0xb6a17cd51eae58c5, 0xbe5e36b14ac866fa, 0x69ecba37864b137c, 0x000000000001f1 } }, { { 0xe370bc74cf31cf41, 0x2188accf42f95d06, 0xff54b4db483cc6bb, 0xc79885285fdb98af, 0x255b833a252b8ffc, 0x611b531ac84de060, 0x1894f1029bf2dcf5, 0x26d87a94a1e1381f, 0x0000000000019d }, { 0x63b05bbbe200377e, 0x17705f5b35739d33, 0x8d4769d2a6778322, 0x4d07e495a4e9bba, 0x9301c4101d25eab5, 0xe291170a03b42833, 0x2fdb4498f0b2dd20, 0xa1fb0a51998de7f3, 0x000000000000bf }, { 0x9f91c571a5268bbd, 0x67f8409306733dd6, 0x898c12352d55036b, 0x11e9187d115642db, 0xc35cf67719b387d5, 0xfae054a9c066f4fd, 0xad29fde5dccbc2b3, 0xc9c2813c95012022, 0x00000000000061 } }, { { 0x20f1cee7884ace40, 0x1f2e32375ef64bff, 0xb809980cd9f8637d, 0x1a608ecbe37eecf8, 0x5b94b810e6a24825, 0xbb070951e02edc3, 0x2d3384d4fff2a6da, 0xfa561a8f2e73a977, 0x000000000001c4 }, { 0x2b4b34ac6904471f, 0xc0865dc16b959a99, 0x60599e897c7de513, 0x539c51f66551edb7, 0x773a75a2d4288043, 0x53247cc697f1a0ec, 0x2e703d763023415d, 0xfc568fd55308a733, 0x000000000001ed }, { 0x5a650a082d6296fb, 0xb27229f59bd9e0e1, 0x6badfe79cf2354ec, 0xfb7db83b4417828b, 0x9aa3bd37b4dbc259, 0x7b3d88bd7ccce16e, 0xd126f1c44c1c9f88, 0x27404c723a229fe4, 0x00000000000031 } }, { { 0x8bba7ae162599005, 0x1ed246d3c5249e73, 0xeb1a2a49f4ead8f1, 0x2858adf9bfd1001b, 0xed0292253dc3de46, 0xe56c044b47cb116, 0x2260fc3690541c35, 0x58907f45f105204a, 0x00000000000191 }, { 0x7cc58c7975163ed5, 0xe03310126f4818f6, 0xfa63b08e36e53eaf, 0xee46d01ed46b4109, 0xafbd05215dc85919, 0x6814300d7733d5a1, 0xadbf17fe80904323, 0xe153bc3b6de11e97, 0x0000000000016c }, { 0x36f21b4b1f932ca1, 0xd42845d5560115bd, 0xa10796f4a6813e58, 0x5da959dff727bdb6, 0x6dd42cc635126771, 0xd9f17352e641563d, 0x35a36df8a88bc536, 0xa27a09c8ec377b57, 0x000000000001d7 } }, { { 0xc0be147dcb94d9a4, 0xbc612d086b4829b2, 0x65eb259334a1d75b, 0xe9a3dec6203a2330, 0x5671a2017eb7a587, 0x66dbbd9059cc86db, 0xd1a1542225784e0e, 0x5c031340db2edf54, 0x000000000001af }, { 0xc37fe56169a50665, 0x77bd3a1cce6f42ca, 0xa2d5bc41a530ec0b, 0x43a2e1ddb2c0d910, 0x48975528b4d3f733, 0x22ca5fff2e139b3d, 0x992b94446372c23c, 0x233b3807bce38de7, 0x0000000000013e }, { 0x4bae5005cf9567e7, 0x22c9cf936655105e, 0x6048b3c4885c2768, 0xb9dc55d904b9b768, 0x59a8b1d91bd8c0e7, 0x752b775b992c9e93, 0x919738ed89364bba, 0xdda2916239bde6a1, 0x00000000000149 } }, { { 0xb02a63ff749e871f, 0x79c37cd8e25fd8b7, 0xe154e620e588386b, 0xb5b2ef83510e3829, 0xaf9785d21987fe0a, 0x3bc42836b53e2b07, 0x8aae407c70b301cc, 0x4af7653102110e70, 0x00000000000108 }, { 0xdaa08da84be9c9dd, 0xcac768ad57650db3, 0x3781c4ca18ddfff5, 0x27add961b35c985c, 0xd6e2548fa2822d14, 0x9d1599b82984bf32, 0x499941d7bc3e1d22, 0x47831e4faf8daa92, 0x000000000000a0 }, { 0x32b85d7594d28578, 0x3b959484ecb08af6, 0x3f4a15c44508a257, 0x8e0a3331b2ec90e4, 0x8ffbbd716b7432e1, 0x83c30973fe421bb6, 0xe3736ff44959d409, 0x1b3590fd1c2a1143, 0x000000000001c3 } }, { { 0xe4cb0d499b6a5c64, 0xa3abc63a6e8b63d4, 0xaee38b1ad72d35f6, 0x8a8580764be633e5, 0x1435a68ec0297276, 0x59b5325e05c279ab, 0x94e3a12415c667c3, 0x39ecbe68145ddf0c, 0x00000000000099 }, { 0x7d75aa858b767df4, 0x547960668ee60113, 0x79b4793772304560, 0x8ba5d90e5adc8290, 0x8e9f97ffbbe26da2, 0x34dc2c307c8d62d8, 0xeda83fdb20d946da, 0x34f858cd9ed181, 0x000000000000de }, { 0x6147ef3709fba15d, 0xbfdf7e76092f2b57, 0x1c6f8be976526662, 0x845cf4030230fd59, 0xf587aab142d7219b, 0x7d13cac34d691219, 0x2deb5875ef6f198a, 0x7d5bc66bd1d0441c, 0x00000000000098 } }, { { 0xc0f861ea1e7ab285, 0xcf3ab87dfaece823, 0xa9860aa2ee954a25, 0x4c5cb197dc239148, 0x2e747a6d0ede2723, 0x39cd8f3d361c8a04, 0xf5758a5f38aafa9d, 0xabd581f8912fab14, 0x000000000000aa }, { 0x45ea1fa0190c2414, 0xfb1086ef5c912b89, 0xdc83e404e2030c91, 0x29c127560c917810, 0x6e0b2af81b3a181e, 0x7e47435bbe055126, 0xb1e59373f1baab8c, 0xb402db7e37b9be1b, 0x00000000000069 }, { 0x155b6a0ba3b91841, 0x6149c873986b55b6, 0xb75884f01c9af2b5, 0xbaff6ebda4e12395, 0x63abbdd579d5ed5e, 0x6a91ba5de552d31b, 0x219c15f51e61e984, 0xc4cc5578372613f0, 0x0000000000017d } }, { { 0x527ab4e619590232, 0xa95de2ed1d8d4abe, 0xea157326b5672f6, 0x79ce04f654b9f82e, 0x90aca37e371d1905, 0x865bce0c98df3cc2, 0x53b86fa70e05bbae, 0xe5cc815c9cbfb082, 0x000000000001d6 }, { 0x71afc30748204ffa, 0x457630a01c6188c9, 0xc9bdfaba2ceebb5d, 0x6efa0227d18f2a05, 0xb619ff3f86781cad, 0xdad137248da19677, 0xaf77878a00dcbf24, 0x19099b9a1c1b076e, 0x0000000000019c }, { 0x66d2f5b65ffab0dd, 0x2879fbb5a6aac58e, 0x45569e7a24ffa696, 0x730ae8ad8012f46f, 0x657179fc4cc51748, 0x9db60e34c6f77818, 0x678878cd664cfa95, 0x6f91bd8aca556356, 0x00000000000152 } }, { { 0x943171467076e993, 0xe63387003cce3c6c, 0xebae0cd45c669a14, 0x58b24479328ce31c, 0xe96277d1bbea7719, 0x2a0d5061088eeb31, 0xb8da09df1663a5e, 0x4fa3f50abf7e6c, 0x000000000001ee }, { 0x5c07bfa70ab4812f, 0xfa22d98ad47f9538, 0x1f08a5ff0d7d20af, 0xb6a34c09174e1989, 0x59a9246b6c408e37, 0xa9e6152e018129bb, 0x898fb2dcf3917586, 0x5c5f7171501ed26a, 0x000000000001e0 }, { 0x8fe01c883b690919, 0x89d721f8b6e282dd, 0xfb35f311c66e7a6f, 0x1ebe6b80db4b808a, 0xcd8dc1f00d1e9f45, 0xc933bea176837a8e, 0x5000fefe3ac09a29, 0x6ba2b0921cfb385, 0x0000000000014a } }, { { 0xa5a5e95b994da5ab, 0x41f73a356e56f187, 0xdd36cf8f2144e23a, 0x875a1a69c8e733ea, 0x3661c01af4d566d, 0x42fd7b1e6a7fe54d, 0xc814e85f23a4fb3e, 0x4fc33770c0498d92, 0x00000000000103 }, { 0x6f79275edd9aa23f, 0x24c2a0b86534b755, 0x5200f14671e1b6b0, 0x47bbde409aba4c95, 0x71810473afb0efcd, 0x89d763ae0bba3db5, 0xe0b64a8ff6cd688c, 0x44bbe9a016fe586b, 0x00000000000073 }, { 0xf2f29a996c88ff56, 0x1852bfa8be39973, 0xb385a87a9d773d00, 0xa25a3a335d3ab447, 0xfd14277beaa0d117, 0xcea9d6eac0963dfe, 0x7a2833691508770b, 0xc3168b5b321eece, 0x000000000001a6 } }, { { 0xcb7c467d4a7b4dc3, 0x439410ff32cdca94, 0xb5811fc906e59450, 0x8fc96ddf579415d2, 0xe299311695009803, 0x814f3ce620c229a9, 0x3fcd24be069d393f, 0xec654f3b426669a8, 0x00000000000050 }, { 0x37f0039654140f9f, 0xa48947fe20c364e2, 0x22b96efa67e77878, 0x7ba2c9cf6d4f68fc, 0xaa3e08fc7fbdee06, 0xdae68e8fbb34d60b, 0x3a71107fd8c83e39, 0xcc93cce48d5fe6af, 0x0000000000016c }, { 0x3cbaf7ce4f1c8f93, 0x8ddff0bb40e6bbee, 0xfaa273fbb4b56239, 0x1adbfd0e1f62849, 0x9dce6f29e6c1ffec, 0xa4fbf3a9fd195643, 0xb6f6911344cbf5e0, 0xb974d0ddfa7eae1e, 0x0000000000015e } }, { { 0x9fc52d2ce7638ecb, 0xe59be08513e75fa, 0xb2f96d664c35e0d4, 0x4dcdbb0ab117d613, 0xc6741f4c67bdcfbd, 0x3d5baa17c092d7aa, 0xfd131b5e4a279fef, 0x7a71b20fc17f9ee6, 0x00000000000089 }, { 0xdd40ce6935b9acc8, 0x2a451797cd95de23, 0xf132445cad912d7c, 0xd5da15fde3ccd6a5, 0xe6671b86e74d9759, 0x6e9bdf14ca842f55, 0x20ef1a854fb450d6, 0x2aee60c3cec3fa1e, 0x000000000000bc }, { 0x197911f6e1e11f1d, 0x180c1ca425acf8c7, 0xc307b66c719c0dd9, 0xd391238897698e4b, 0x162078f0672b88f3, 0xfc9f4540f728f382, 0xbb780c7c2593a199, 0x957f682d28e34bd, 0x0000000000011f } } }, { { { 0xd4b90035d3ccc06c, 0x2dafd84e0708b21, 0x6425f671f3055af2, 0x38ffd5d5723b12cc, 0x5dea77fe7876b956, 0xab9214988d60096f, 0xf391445372bff533, 0x93aca0ab85a7803e, 0x000000000000c7 }, { 0x8e4997b465b3188b, 0xd33f6dc982da841c, 0xd5590e5e9ccf69a5, 0x80c5f264cadbeaff, 0xaf9a74fe9044ec61, 0x16d3af9e4dc65d70, 0x30ac406d241c78c5, 0x82252a9cb38c2eac, 0x000000000000c5 }, { 0xfbad279afcc6df62, 0x17edb47ac3af5c30, 0x5b1041f4aa10fbd6, 0x3db2d3cf1d6a61f4, 0x5467559cde7a5823, 0xb15f2ed3a565b485, 0xc38c5ca712b7336f, 0xb0a9a01fe613473e, 0x00000000000097 } }, { { 0x8bd332b6a621c5f6, 0xa3c2e44bb6e17a39, 0x7db91dee8b9a8d16, 0x6ea84fa2bf72d3, 0x9406a6741e1d17a2, 0x4f9822ea1a7e6b85, 0x1173048f3e8e5366, 0xe3158577619dcff1, 0x0000000000013e }, { 0xa77f4423c00046c, 0x15397ff5dfbcc3d7, 0x265e21900e3ff242, 0xc9091dbdfc6c5c3e, 0x9c05efe871783872, 0x3ff1733f5e94dd6d, 0xd74fe8824f5646cb, 0x22d4a2c7738ffdc0, 0x000000000000bf }, { 0x875b4c4f80befc00, 0xebe01c72e8cc947a, 0x66c1bbe2419474ea, 0x28e79ee79ae55ff4, 0x2d3fa15aff4f9512, 0x9e60638fa34a23b3, 0x8f3e98adc20e068c, 0x6da323aa3ee3908d, 0x00000000000169 } }, { { 0xd42e33e0e26fce25, 0xe17bcd0654f6363, 0xba3697c903f48df2, 0xd810020f65e1a545, 0xc3a074b39ccac01b, 0x9bcf0b95acdcade2, 0x84d21ff552d29daf, 0xbee49b908fb317c2, 0x000000000001f0 }, { 0x416837368aef8df5, 0x663a530ef1622a22, 0xf0a69e288a51e496, 0xb56f3dab204846c, 0xb677a5a85607df74, 0xdb37061d4d243bdf, 0x8b55c3a2037986f5, 0x106b1ea5c17257c3, 0x00000000000111 }, { 0xc9e0b5f7eeadac6d, 0x2adf5abebd03976, 0xe652c095c8159e64, 0x98b3a954c78e1559, 0x725b44a83e3618b2, 0xdd61dfa42a8d5e82, 0x7d669ad971f505c3, 0x5566e7453924db6a, 0x00000000000146 } }, { { 0xae7d9c081bb52789, 0x1d19a5acbd74e026, 0xdf704ecdc19fb1cf, 0x5cb39a95b3b5a949, 0x70e7f32ae3d86553, 0x4fd3e9808fec39da, 0x3365bafbee7b13f5, 0xcde2e9c3fd2d43f3, 0x00000000000095 }, { 0xd8b5b955e478b377, 0x9a305bc5bf810f73, 0xe5e9c202424d2d6d, 0x8a232dd278f77ab4, 0xec73bd5892e4b6e0, 0x65f1c827555f19d1, 0xce6a7e6b1b5da94e, 0x923b127e470e52cc, 0x0000000000017b }, { 0x3d1aef04e9395997, 0x273872dd9deffc0e, 0x7bd3d575082c9af2, 0xc1b9aa025199ac43, 0xa2155e711169a0ae, 0x3077806f124abb61, 0x183113fbf239a610, 0x29777c7d4fdbb559, 0x00000000000127 } }, { { 0xfcab9973561d2f31, 0x4da18e530aa892cf, 0x53a1211137ea74b0, 0xb8d0b2a9961fae7e, 0x2b469cd764ce33e2, 0xda2f8984d35ba284, 0xe3bec597eeeaccbc, 0x832cd578edc54f44, 0x000000000000b9 }, { 0x56e663134b13bf75, 0x488f649b8b9f86d5, 0x44595e5f3c0563ce, 0x5ccde58357540ea1, 0xb01e18d874130901, 0xb995e5e061e851f4, 0x7d74b3b137084316, 0x502937fbe5ef8b31, 0x00000000000059 }, { 0x9dae45eb009f4cf9, 0x869e5fef917fe032, 0xf5e42689f342bda5, 0xbf011f31fe69a35f, 0x7e59b3dd05115f23, 0x105cc27bccde3d34, 0x24ae1b251b0fd221, 0x50ec7c18e0c0167a, 0x00000000000025 } }, { { 0x41e346809c5253a0, 0xc0725177a843c86, 0xc5660b44a51e00e, 0x18a848f97304ec36, 0xcae1f90ec95c01be, 0x344ff4d6d4f9cc1, 0x60826830a3b0bc9, 0x78d1976da959a11e, 0x00000000000088 }, { 0x88a22df79c54895, 0xe14d93dec4152a54, 0x45c1419fbd23eca0, 0xae79f258f6147c19, 0xd124cc40c58fe83c, 0xd9cd7f3e634d5aa4, 0xc01ed85c14b9a400, 0x67004e3de46b6ce5, 0x0000000000000e }, { 0x66cc8a05fc710ee3, 0xb9aae12c6a3484a7, 0x8a7baedd8cf83026, 0x1831cbf384caf079, 0x7660a58713607ef9, 0x932a3210579d9acb, 0x918fd6e94ac1602d, 0x67d55b53ac0bc406, 0x000000000000e4 } }, { { 0xed0a24300b7965a4, 0x4527abb959720ab6, 0xc85481dc4b07c933, 0xd2fb5c25e60f31de, 0x525731fe44429512, 0x7cadae6bc5ccc49f, 0x76e879f67d427bd1, 0x4a6d45695ac3d313, 0x00000000000135 }, { 0x8d006366c4e9341f, 0xc912c0796b7cb9e8, 0x3742ebfcc5c04314, 0x1c21dd15b754949d, 0xc75d91f5360210a5, 0x104ab43ff8887de5, 0xf9d6b54875fef742, 0x78757bb603fba45d, 0x00000000000066 }, { 0xb1362579ed80d88c, 0xa654030ec10d3bea, 0xaa3d25ddd02c0c88, 0x1c31ab03b2ffd593, 0xdfae922026bfd942, 0xe2c0649cfbe17a46, 0xefdc90756b5d9a36, 0x5efce64999191678, 0x0000000000018e } }, { { 0x195ad2992505a5cf, 0x88e637a0751783a2, 0x2ee858ebae645e29, 0x744d6cf0dbc727ec, 0x2dc1daf44803d712, 0x5adbcd4079bb1088, 0x925f7b2ed213401, 0x61b39d0bf8357eda, 0x00000000000186 }, { 0xbcc45cb89a0e6e2, 0x6506699d85f85bc7, 0x3fb5ce1891b8e89b, 0xdd3c853e9314d276, 0x2629dc8d45da9eb4, 0x102166a53e920bb6, 0x99003a1f1b0adaff, 0x6538c1be0861ba90, 0x000000000001f9 }, { 0xacd20df1d2b752c4, 0x96871c9eff8a7832, 0xca90a2e71854deaa, 0xa10abe05a197361c, 0x155edc96a9668c65, 0x750ae7aafa04395f, 0x342e9fd2a691c6da, 0x4616a0b154867ff1, 0x0000000000005b } }, { { 0x57666ae338ed1ae6, 0x24d3e3715e0d7b24, 0x71ad589fc8c70a93, 0x2c5ed06a819bd809, 0xad244e739e47144, 0xe5394a6fb4a83307, 0xbe7e1883baaa1d1d, 0x185c03a0ab1a7479, 0x000000000001c0 }, { 0x1acfeb40d8d79a0, 0xbba4e62dc103ab36, 0x7ee352d8089c1d71, 0x60ea5aec5846a3ac, 0xf8bd5cce341d2dff, 0x27af6a7caeacc582, 0x94d695c8922b9b78, 0xcd63a1f69cb36812, 0x0000000000014d }, { 0xbfdb3d6a3cfc4d22, 0x9543fd32314ffec, 0x24895cb83d1b8175, 0x2e839589c4605008, 0xcbc1baff97abffa5, 0xc03b6009254c3c7, 0xc5ec87a2baf07f5a, 0x5dfa3468f2843229, 0x000000000000cd } }, { { 0x717433cfec099001, 0x9739e1072374b1f5, 0x3e82213ce05f9e45, 0xdd330639619d44a2, 0x94d7c79b8b07123, 0x29b624162ad3bb0c, 0x489a35e8ca2f0f6, 0xa56df23d02e15543, 0x0000000000003b }, { 0x63932fb226b4bd6c, 0xaffda443dfe1e475, 0xc2806945a1589931, 0x14f32b0e86a06009, 0x5bb16ebaeeb51cdd, 0x1a619b1d19f07d91, 0xdaa8d386b65e8a41, 0x29489586307cfb44, 0x00000000000049 }, { 0xce419c2a5b07b343, 0x78477aacaf0125ee, 0x7dba1433ee4b3ba9, 0x42b235a7880d435, 0xa0f0c2d8a5136acc, 0x4c833731999f938c, 0x37c277fb6e22952c, 0x718b4bb76d6ac240, 0x0000000000013c } }, { { 0x22cc61a757281925, 0xd3fd230ae608e2ee, 0x5084f28a07979571, 0x6b7315246f73fe6c, 0x9ad6564598e4779b, 0xf58cd838b5bad39f, 0xe9003d48ab06d702, 0x3f37e40631eb26fe, 0x00000000000022 }, { 0xf97ccdbcf56a6e11, 0x29d0348dcdaa3d75, 0xffe901de1d8f8249, 0x5e4c1cdc46be1059, 0xf981a53883f41a85, 0xfc2612fec5ad1c2f, 0xe63d832e068bd3ff, 0x3f538c04195f4f8e, 0x0000000000018a }, { 0x7e721056bf8a4df9, 0x73af04388099389e, 0xf1274ed0ef878c38, 0x5042192f159dbe51, 0xb1bde677cb25491a, 0xc901003ceb239c84, 0x54b6fce0abf1610, 0xa21f8225d19c8199, 0x000000000000ba } }, { { 0xfa815a557c9aa6f7, 0x9dbad02018e53b86, 0xae085124eefce308, 0x96764bd824d57d21, 0xe2f5e63413783f5b, 0x56a6b284b3254e54, 0xfa81482fb14f2611, 0x44534805f66af166, 0x00000000000042 }, { 0xfb442fd548ca4d4b, 0x4223dbd3d5c97c1f, 0x4d060e16c8d8ce29, 0x3d87542de6850eb9, 0x7bc854ffcf042cfc, 0x9f14076a421e6165, 0xea9693882d009e76, 0xd012059951d96238, 0x000000000000be }, { 0xaf045cab57c87d1d, 0x60c8171037841033, 0xeb4dd7d4fe1439c6, 0x32129ccd06a5e1bc, 0x13aa7b1e3a0b49af, 0x4e1c40c785a0aaca, 0xcbc168dc90f517cb, 0x5e2e90199eb650c, 0x00000000000149 } }, { { 0xa289b80e33df6b30, 0x56692a29d97149a0, 0x6bc77ef993128f90, 0x299c74a54933898e, 0xde816157e84968b3, 0x5f9e5ed866628460, 0x6c4d10392a5d70cb, 0xa1980e28b4d6ce8b, 0x0000000000005b }, { 0x711364c6029defa7, 0xd1ddccf561e42774, 0xcac877fac4f9e873, 0xb4792a133d9dde4d, 0x78ac15748765d776, 0x51ebc02b892aa391, 0xef8cf792c0c6285b, 0x4956ddfd3e3420d9, 0x000000000001b6 }, { 0xa25b519db0c7fefa, 0x350980c6007a5914, 0x5b01777df78701c6, 0x99c5c8ac31b145c7, 0x6e4b289e8057db01, 0x464ac02a8788bdfd, 0xb679ece861b47169, 0x33f6660c1e561506, 0x0000000000004a } }, { { 0x62b7ed0e6b9a0b22, 0x58df9693b336fe78, 0x1f2913758374f893, 0xcd237ae2a4212977, 0x2d67e983a0abc45a, 0x89ab04b85530d1c9, 0x708e0d36c74f9c33, 0xf27af44299158bdd, 0x00000000000151 }, { 0x5f40ab3777c69320, 0x69178c43940be162, 0x56dc8221a4fc1814, 0x2759a2ae0fc36860, 0x392820a8c437ceec, 0xf831695a40a1adb9, 0x4518a601c528f31a, 0x9eb36e0b1edd586c, 0x00000000000078 }, { 0x33c5be74d7ad9827, 0x1ffb2448d88e92f8, 0x2fa991bf5418125a, 0x8cfc24353352e1de, 0xa6666dc3941025b7, 0x58cc6ddad1848b82, 0x1d262ae643076c0e, 0xfd24d1bf1a0230fb, 0x0000000000001c } }, { { 0xb7b708f5c61e8dba, 0x191b6b419b7a707c, 0x1529709cb3543bc6, 0xe944ffa1eb278bf6, 0xe45e09b8baf17821, 0xbb4e5d5e424f1ec0, 0x1fe70ea581a3e2d1, 0x4eb7d2b804526aa0, 0x000000000001ca }, { 0xbeae5117532fd6bc, 0x4b8c4c3e5c879b51, 0x67228ceb34fb0711, 0x410524f46788488e, 0xb43a10dc4c885a04, 0xa0ea7c0177da0205, 0x9b92a24e2d65c62f, 0x36442a7d6ed16cd3, 0x00000000000007 }, { 0x60a7d3e440aa9f22, 0xc89c74f087e0380c, 0x7fa7228339439e65, 0xeae05d5a3c9633b7, 0x551120958cc2554e, 0xc3b5eae9d5c8a26c, 0xdfa183562eeeb3c3, 0xeb6ca78b9e9aa923, 0x00000000000139 } } }, { { { 0x1586cd5e8f2448db, 0x4406a3c53d5d5015, 0x40a15158d4530fce, 0x9ec812075839f145, 0x7acbaf92028df1c8, 0xac4cb63127b8a663, 0x9c74c7c9337307c4, 0xe0d9c9319c92535e, 0x00000000000052 }, { 0xca61d9e4eccaa1a2, 0xda51e0aa87deab2e, 0xbf36fc906e0f124f, 0x76c57f66797be921, 0x5bee340c5a2dd47c, 0xe089c638341585fd, 0x9b4f346fd968af0b, 0x8b9db0755f951c92, 0x000000000001b2 }, { 0x322fde24625fe54b, 0x50964ffed646e199, 0x122e3a81f1e74805, 0x7bd3103bee253437, 0x1c2677a698c03231, 0x8b6b374c50fa6ec7, 0x52a644ea22489949, 0xc83ea79b61ee9c9, 0x0000000000003c } }, { { 0xfbe1e483010aec6a, 0x22ecfd80149c94f0, 0x89adb3d18f00153a, 0x90014d437ecc37b8, 0x9a9b0661b248ee8e, 0xb003824ca90fa5c4, 0x846305d18311eeb1, 0x224558f30f77cab9, 0x000000000000b2 }, { 0xfac492d6b3449766, 0x775734c0fb346d71, 0x210e572fb0fd47c5, 0xc2fef7e72bfa5e20, 0x57c7305b2a893662, 0xfd87e4a30e85893e, 0xa40e3790222f44b6, 0x9ae782f21d00184, 0x000000000000c2 }, { 0x94ca342f92411aa5, 0x725754746675e03a, 0x2985fd2a9a05acf9, 0xec5f355cb9533409, 0xce661f34914903f7, 0x50f83f1161c25320, 0x375803d1cf1dc6b0, 0x4f7c8763bb75a244, 0x000000000001bb } }, { { 0x16b17e9d5d361113, 0x4e277029e6f8b7f4, 0x270ac3fedd531ecc, 0x19bd2fe218fada28, 0x3376099d6d342bbd, 0x14992ccd4bfcc4a3, 0x7ef18977a64ef6d6, 0x8e5b4bbaf3f93856, 0x0000000000003c }, { 0x553ae18200ff6f96, 0x4f92cfb2944ffa1, 0x3237d9f6db590f1f, 0x1ec27e5392e4e327, 0xb6ead191b878f83e, 0x719e25da8b69282c, 0xe02b6a916b11d8fe, 0x515a389cae5e2f09, 0x0000000000005f }, { 0xe9b761a2226c0774, 0x8de74350646ec3f9, 0x4d6ae9b71d7f6b1d, 0x3d121134de7f05e7, 0x803e925a27df1471, 0x240544206195dc9f, 0xdd9ba56397ba7dba, 0x46f1a2a391ce5ae6, 0x000000000000b0 } }, { { 0xedb4072945b2fea4, 0x104a2481fe970f9a, 0xe7162741eabec3ba, 0x934e6e1da6c4a5bd, 0xb8634e12a2dae0c6, 0x331948cc2ffa7352, 0x23c810aae6b3ee17, 0x5fc45e243e8dd71, 0x0000000000018e }, { 0x9e2a189e89c1b845, 0x34bcc027fcfe3f55, 0x4991a142e25b16ce, 0xea56f86b20bf6ae, 0xdcc2659443c26897, 0x2a3521ac1052e4f, 0x55456300fb36b350, 0x3a4e5388a7b863dd, 0x0000000000012b }, { 0xfbaa8d3a2cdb584c, 0x96b9b203271de93d, 0xd98857589726f3b5, 0x4cc03bc9bbd7d844, 0x91b34f3b424b2282, 0x79b1b9ceaf9ec710, 0xeaff548dec04ed2b, 0xd415d79d7211eb59, 0x00000000000057 } }, { { 0xd7178cba1b559e4a, 0x203d8384e5b153a4, 0x65316dc2f75608ee, 0x904c97f4ae6a9be0, 0x4a94a9217c428a4, 0x44a8dee8b2bed30a, 0x2f6887208ffb3c91, 0xf3b4f8134e46e918, 0x00000000000111 }, { 0xa702b700766b751e, 0xdbbf6549f9881566, 0xc77773f09edc886a, 0xe4bb1e200b7e0cd0, 0x3d08b2a339858822, 0xba217eb9e1d48351, 0x4bff1cdc3aed3f97, 0x6e5e8e1058e797b9, 0x00000000000081 }, { 0x1b8d7ec3d8a284ad, 0x9168c4b09ffd7fd4, 0x4806179fb2a28030, 0xa2be6cf0e0d32d43, 0xd70c855d0fc867a8, 0xe3e3616d06a89aab, 0xf4fd0b5dbd0f29e1, 0x7d99e7bf04b46cc4, 0x00000000000185 } }, { { 0xbbb0bb08cb3053ea, 0x804eb11ce1e1b4b9, 0x1dbe9195e070de27, 0x8a80c5521edec1e7, 0x5f79aa0e904978e, 0x583a1540665f9d71, 0x9455ac56a8d48340, 0xd54eb876504195b1, 0x00000000000063 }, { 0xdf4d2dba8eef7b85, 0x6894280e6843f7ce, 0x47b84f22f5bb55b0, 0xcfcda39502f112b9, 0x8bfdb3593d945037, 0x19a0e0fba39940e, 0xc3199e416e1f206d, 0xa0289e5cfce537b, 0x000000000001c8 }, { 0xe1b96f72946e916e, 0xd09b6e1a94b25744, 0x6ce6b05098fff19c, 0x48e07af051414991, 0x1fad9550f6351a0d, 0xd0df6906b05d2ff6, 0x5c92d91b84374222, 0xfc47da761d850257, 0x0000000000004d } }, { { 0xdf0f2563dfff82b4, 0xd3e0d0a6abdcb11f, 0x4a64f7dd1ca2a60b, 0xff195d8481126121, 0x7ea582021d53e54c, 0x1b47dfa037f08f30, 0x562ec03b6595f4d8, 0x1c2bec5ac73a0fa6, 0x000000000000b8 }, { 0x79325e0aa91c9fcf, 0xa51a76251e092957, 0x99d7991f54a5fed7, 0x258eba47414cd88b, 0xd07676534002d24f, 0x93ba0eb29ddd883b, 0x7b5ab4e860787d6, 0xffe4fa680da1954d, 0x000000000001af }, { 0xb2501e68b0eddef9, 0x56e76deca5b891e6, 0x3579bc9a65366057, 0x6b5495379e009418, 0xcb0aac5b87cf8847, 0x3ccbdc21801aa2e7, 0xacac7c8bb1ad1982, 0xb19b2fa0116dffff, 0x000000000000f3 } }, { { 0x9f5a0d3094a95e34, 0xe38a3f6000d2ba3a, 0xaa43ee165503bc62, 0x2f18bee8cf896a36, 0x1d4b398430e11ea7, 0xe8e51b278b326765, 0x994c98634618e983, 0xc9f9b499f58c60da, 0x000000000001ba }, { 0x19d4d43454d8fdf9, 0x6987768a3fb01eef, 0xc8aeb89fa846ca9c, 0x593a6fecae25a48d, 0xf6143d8cc09229cc, 0x8a0e4cbf790a46fb, 0x59bb38f0389108b0, 0x71c45946324add26, 0x00000000000010 }, { 0xb2ce23bdd7f603fe, 0xea7ab35a9ba9ec1a, 0xcd7a12b671238d74, 0xabbb4a5d39968b3c, 0xf3bfc55c1d33551, 0xe229d153764223bc, 0x1d3f5b13c85a7df4, 0x197747ac3e76841d, 0x000000000000b8 } }, { { 0xb2449ff948b8e393, 0x1ea07e3ca80ced75, 0x5acf9316a1ae4089, 0x8086e643b7d1dc03, 0x458b3e01869ff341, 0x4febb55d851646c6, 0x5872039082d728cd, 0xa016eedb27695e17, 0x00000000000093 }, { 0x660b4f8ff9eb905e, 0x2c5d1c5e939c01fc, 0xefb0194bfabe616d, 0xe6cf60b2121465de, 0xbd60115ac8bea047, 0xb814eeff9861fdd5, 0xf7d658897d2283d9, 0xfe3c51f68543ee1e, 0x0000000000015e }, { 0x1246874411fdeb23, 0x8826aa18037c6e19, 0x82be15bccbe6de2e, 0x6bc9aa22d177545, 0xe625f12533968aed, 0x29b4c17b1620407a, 0xfba8281bf4b07892, 0x99a4362cf657d167, 0x0000000000001e } }, { { 0xc2adca205e492992, 0x5ad98a17b9bb0998, 0x643b4b19a00daaf, 0x7f8bc142a61d1221, 0xfa263d11c52112c6, 0xef93ff29de67b9f8, 0xca11f821fb8b01d5, 0x3e9577d6919a18e5, 0x00000000000119 }, { 0x626ebbac8c6ddfbb, 0x38fd50c10078372f, 0xefd6518e70519f74, 0xbb377f363e6ddf06, 0xef0419b67b2eacf2, 0xd08e2a9e6a6046f7, 0x13c3fdc5bc873842, 0xc6717867cd71ca04, 0x00000000000051 }, { 0x26083154b1f50e98, 0x224ec856a7241486, 0xdb1f14b3c30ea90a, 0x238d86197c6c19a, 0x3f7f0ecd7e070e04, 0x56ccb6591a6d26a5, 0x8e033c753262c4a5, 0x522afdc8fb872b69, 0x0000000000013c } }, { { 0x232b5c7abf004798, 0xed0508cca791502e, 0xa5f8d85bc11a0e8b, 0xc58b66f70336716a, 0xfabeda1525149610, 0x8e2723cba39405b6, 0xf594c62a46166db3, 0x82cb7ce335a95824, 0x00000000000148 }, { 0x9a54c8e58e6373cd, 0xc2b4bf07f5f02ebc, 0xa9d93c9fc18a2eb7, 0xf8ece5369fd87721, 0x2aa3ea46916e137, 0xbd35b65bc978186, 0x35f2e89186672f16, 0xc6e7fed4f65008b1, 0x00000000000192 }, { 0x9b1a5cd970a332c5, 0x18529a8aadd1a502, 0xfb30ded434d6ad72, 0xa70f3f6446256c24, 0x1c4c67c6adc85909, 0x541042e14f1dc5cc, 0x8180f047f818fcfb, 0x4c2237fc6851da8f, 0x00000000000135 } }, { { 0xf923c14f7f0a9eb2, 0xf4eae58083cede7e, 0x9837f2e2b26565bd, 0xed501ea25d31884, 0x56141d8ea07310e3, 0xe9740e2a4ca7e7c4, 0xb05c6f0242a75021, 0xe46ddc3ccb89936d, 0x00000000000013 }, { 0xf1701d7149e10d09, 0x3d14ab3ed9ef175f, 0xbe9d853f69f5c8dd, 0x739418b9bda8b3aa, 0xaf0fe69bbf8a96a5, 0x2a093efb75b55af6, 0xa5738749e53e3390, 0x8d6454b7dd52b6ed, 0x0000000000011e }, { 0xa3407079712399b4, 0x93e2b5f35b9de6bb, 0x4bab6fd20a411765, 0x3eb8dcd34cdba18d, 0xc428238c08db97d8, 0x4b1b7fdf4dadbe60, 0xc83095fb19c54c8f, 0xbb80a9e26f6894ed, 0x000000000000e9 } }, { { 0x70fa6ced66141a66, 0x549a1ce159069bfc, 0x7004b10358592709, 0x8efea40edd647822, 0xa976733dd483209e, 0xdd7e4188f08c1b2c, 0x2e3d3d9872fe0731, 0x6d38fc57a4879859, 0x00000000000012 }, { 0xdd5283253e666d6b, 0xa9d5f30ba54af04b, 0x734252eed6c6c4cd, 0xee745a6f2e3436f0, 0xefa7847af435121f, 0x3d2baa07e4b280da, 0x35b2944c01342d34, 0xeca6dbcd30f7f870, 0x000000000001e0 }, { 0x8ea3410c664549a4, 0xae19efd0494341c9, 0xc11ae5335567c4df, 0xf6de6b9bec5206c1, 0xef62761dc4979bc2, 0x4310539be24be93c, 0x83f76dc7754e6466, 0x5e236e5f83478dae, 0x00000000000036 } }, { { 0x2edb11efb33fa786, 0x182574138da124c4, 0x98fd6426b52bd154, 0xf717d65868283062, 0x3ac2146a1af8cf37, 0xca51012ad861f062, 0x722aa2f5d8ab2c10, 0x653194811ebe7115, 0x0000000000018e }, { 0x817e0ab389c603cf, 0x6386b354969bd3ea, 0x7f38232aa9dc4493, 0xe92c2936522efb50, 0x2b1d28f10f18798d, 0x43eab1e487d6f6ed, 0x2c8a0528056f303e, 0xee280f511be19506, 0x000000000000fd }, { 0x174516ead289bb6e, 0x258c494002674a1c, 0x2f96895577517d67, 0xd92d8e504378d430, 0x960cb094c9b7f0f, 0x1f5c4781aa140f91, 0xfe93c8c15dbecff3, 0x812c8b79372bca80, 0x0000000000014a } }, { { 0x2ca51f0f5730e0f9, 0x52a17ede2a0cf71c, 0x766140b1f703cafb, 0x9002527f745a4d2e, 0x983f9dd2c19e9598, 0x59d755717d755a76, 0xf17e08b0c32d6989, 0xf3cf32a56562a46a, 0x0000000000008f }, { 0x70938c4b71d54bdc, 0xc3e1448b38b36126, 0xcabba1f17f4b3b6e, 0xaa9017cc04b23439, 0xe9cca8d5c57f89bc, 0xc03a90b7e6c536ab, 0x2112cc22eccc6720, 0xc110f52e710ecc58, 0x000000000000ee }, { 0x8f08b996a0a82367, 0x3ef2736f0a18ece9, 0x71d57900c65016ba, 0x9e5ed5738f8b730c, 0x406f1a22c599ecd3, 0xc088120813490b98, 0x8735a19f17545b62, 0x9439946481ed62b3, 0x0000000000003e } } }, { { { 0xdc6289c7c150069d, 0xe73a7ee95bbe20b5, 0xee2cf0895b04a1d2, 0x3a0361a59ece5ca4, 0xf1c583b9e1d5046c, 0x16901ea03b690963, 0x134cb5daaf634005, 0xf1bd04f11bac8745, 0x000000000000d9 }, { 0x902d091972249182, 0xe20923fa44703ef9, 0x3952fbd53a26b500, 0x5d0950945cedc49, 0xbb15b62e7dfc723b, 0x46a494558c3333c5, 0x7f7abaf01e18e155, 0xcf5dffd8062065e8, 0x000000000001f4 }, { 0xf2e58ec9f6597944, 0xf9f68e9c5efb8720, 0x6083fc5e3320729f, 0xc7803eea39059222, 0x4244b6fcc38f148b, 0x48adc2fdaf0bc855, 0xb9cbc021e7ebfa7e, 0x586d821c116124b8, 0x0000000000005c } }, { { 0x83646632de2d5d02, 0x6d47583d3e4e5994, 0x158fe291480e8f65, 0xffece80f9fb63d29, 0xead8d831264e7700, 0xfd81d0053d60f821, 0x9bbf95e27a7a9c6c, 0x6a8aabaea7e7c22c, 0x000000000000e0 }, { 0xb179186e76e2540a, 0xc99dbd32aa2c8ce9, 0x9b3d4be823ff1618, 0x9e28fc6c23af53ba, 0xaa818985a99867e5, 0xcb873f5b61dce933, 0x1a69a245472afccf, 0x11314a1574e76889, 0x0000000000009a }, { 0xd3e5aa28b7e25a73, 0xc58b0e2c21098bab, 0x18bf8c9b4a9971b6, 0x9874ea360fc6eb9e, 0x7a2a1c8b093af293, 0xcf925151728011, 0x22d000ea41f5c99c, 0xd6045fd50175859c, 0x00000000000057 } }, { { 0x6aefa4fd8412ecd8, 0xfc5279e5dbd935c2, 0xf971a474f04a580, 0xe8111b13fb6c12a2, 0x5968578db6dacd75, 0xf962279c048afaf0, 0xda19d39795f7c850, 0xbd4c031e9c303401, 0x00000000000093 }, { 0xd1e3a78bbeb3858a, 0x1844556a17b97c50, 0x7c816559fb481e39, 0x40ca470d550e8ee7, 0x17fc9d93911de0a8, 0x8e51a854e11c5b35, 0x9123ac0ae91ddcb9, 0x941090e54292c86a, 0x000000000001b7 }, { 0xab28cc82b1b240db, 0x1a579ea1f4f35776, 0x84772b4d5d0c9acc, 0x9f678d708c62b5e0, 0x482c4d63ac56efcd, 0xf52c7ea4e797f8d2, 0x89b12177a2edca3e, 0x8df9c1aa1de6c2a3, 0x00000000000028 } }, { { 0xb9c02ebf92532582, 0x1db326a89e93e92f, 0x7a98680a87ac77c1, 0xcf9ee3576e497a97, 0xef74fc9af708d94e, 0xd06cff91f4ba912a, 0x3233b047908d2aac, 0x12789569b146a2a1, 0x0000000000007f }, { 0x80edc82953ac5201, 0xd25a8a13740f8ce6, 0x380580700aab55eb, 0x96e946234342dd40, 0x82892f15c16aa890, 0xcdd711294f7d18d, 0xed6efc826a21de26, 0xf86b28edfe1ebd1d, 0x000000000000cc }, { 0x35fd4c1078930b8a, 0x6add536f9c08bbac, 0x4472179a5bb234d5, 0x9afddea759ab90ef, 0x25059ae0e604dfb3, 0xa28d1f312c6296c0, 0x7d2c2c95e68c388e, 0xa02210f62784955c, 0x000000000001e5 } }, { { 0x1bae491387e8fbdf, 0xb818ec2c6658a047, 0x59adbab31625c9f7, 0x4c6451dc673f6f03, 0x4618a9e5011523bf, 0x9df4e1001bf43785, 0x50fdcfd3ec131789, 0xc3fd8d152842b11e, 0x0000000000004b }, { 0x43b25b72576218ac, 0x19b0571b09bab47e, 0x78244971edff63ba, 0x16252e3f7e9b4fbe, 0x3f9ea599407b4b34, 0xf82ddd6e617e969b, 0xc23d9f728a62be83, 0x2b47ba9248fbc260, 0x00000000000154 }, { 0x34cece6525fa7474, 0x19199947d627dd18, 0xeb216009559b8bc3, 0x337fe3127d18ec3f, 0x1ddff6013646f2ef, 0x69dbcd1df814cebb, 0xea34f62ad8295d23, 0x44b29c991d58c467, 0x00000000000116 } }, { { 0x9fa081817ebca201, 0xecdf70724acde49d, 0x3b8f69d9a1407f46, 0xc718605b121e6cd0, 0x63c42a170dc7ee4c, 0x5f91c898f8e81f51, 0xf5d5e6aea6df88dc, 0x88e67f220e6a7f83, 0x00000000000126 }, { 0x940d7ccebeaba12e, 0x4e91c50a827fd16e, 0xdd6f2d5390074243, 0x649b584a52bb4521, 0x39a00e2fbf2b7b8f, 0x314fc0cf6406d81f, 0x1e3b9da7bd4bc83b, 0xac21fb3a9ee30527, 0x00000000000067 }, { 0x843b107257f078c7, 0x2ac1c7d85b0c70a0, 0xf08b5e8fd6ec7a8c, 0xa292b27557558741, 0xafd5ddf99bc6af8d, 0xb3c23bb8d18b4dab, 0x9e27c02366002dff, 0xef22fc45254a6f94, 0x000000000000af } }, { { 0x14d96ebe4f45973f, 0x7dc6667e62499523, 0x3f2894d48995fb35, 0x8fcdc1a83ddbdee9, 0x8be9b4555eb356cb, 0xc81ccca376ffe1db, 0xe4f790af64c6f516, 0xa412450c0c815f55, 0x0000000000004c }, { 0xe7abf8fdc80cb0ce, 0xbe7103c30d0d6485, 0x6d72b593316f89da, 0x26611aafa3761387, 0xfc216db92c8f6c10, 0x21111c0bb6d60540, 0x6a1fa310ce76a618, 0x78b436d69ef3c3ac, 0x0000000000013f }, { 0x4c62a833a63ebd68, 0xcc053f628cc033cb, 0x79c3f99434fe0947, 0xfe4e54657f4aeed5, 0x6cc2e242c2db2736, 0xc46eb56c10f286f5, 0xe0e2f9b5dbbff64d, 0xf62c838700e554db, 0x0000000000013f } }, { { 0xa462bc39ba6edc8e, 0xca1ba86dad90233e, 0xc582153ad33c4ab2, 0x5f238b463f429301, 0xb9d2277453f01613, 0x96e8015d6e894977, 0x1f2d2a12650d85ab, 0xfde5e43adf5a5548, 0x00000000000143 }, { 0x350d551421ca9166, 0xe265107bf6b1c150, 0xb845058e024637e8, 0xb332fa6be3aaf8cf, 0xb64e36211513a90f, 0xc6560a79b20e4b2e, 0xccd667759cb2cd6e, 0xab79de674625ac3b, 0x00000000000195 }, { 0xd91d9f1bd06d32d8, 0xf04019d69978cb5a, 0xacd7db2fff36e9cb, 0x290dc763ef746d95, 0x810ed2301ca14364, 0x74381622a7f3daf, 0xd9fbddf74f7d3261, 0x155351662fca066a, 0x00000000000085 } }, { { 0x30aadfb38af6aab5, 0x2b3892d046b50778, 0x3ed5e6164b44e4bc, 0xb46a1e9ebf29c250, 0xcb2fe8c94ae60fef, 0x1d803b66087d56b2, 0x186e64340a5e0800, 0x945f6e835c5c4fb4, 0x0000000000015a }, { 0xb04e481a8280a97c, 0x1b9ab62a16c39bec, 0x390e5344a1fb8d22, 0xd54bcecf9cda612e, 0x9bf77e8a399fd610, 0xc458d3e0a6a3c236, 0x5212e940ce5ac92, 0xcfae7a010984f13c, 0x00000000000190 }, { 0x5d9d49263098e2b2, 0xf7e00c6d61c085d9, 0xa8bf15402d9cb50a, 0xa0fb69450631e26c, 0x5b8228780bac7c05, 0x81db6d0f6589e57e, 0xdc4fdc5241e2796c, 0xc5dd5f19dc0a92bc, 0x000000000001d4 } }, { { 0x36fdecf0615e482f, 0xd3319c047909f9ad, 0x2faa5473dba4f287, 0x9e25d3d8e6eac01a, 0x2d99939153f3cf96, 0x237cfd4d46d0d341, 0xfb344b4f773e3dce, 0xad75bc6227eaff7, 0x000000000001d7 }, { 0x8743cfe14c5dca2e, 0x9990f08a56fd7093, 0x3d580b1d60747338, 0x5fc2d171d5af426f, 0x8f96331f76ac5d05, 0x6253393237a03ffa, 0x71a0f060da5caece, 0xdd5ee2ab170c31e1, 0x0000000000010c }, { 0x204d195059d519f5, 0x621a638d69ec8689, 0xf9dc7cc2e18875a1, 0x16a53c2fc19d5e1c, 0x67b38b8239892347, 0x9665d50308df855d, 0x69d3129451c432c6, 0xa126c603790a2ba6, 0x00000000000031 } }, { { 0x9601d25087e5ca82, 0xd9edd79c5bf8c5a9, 0x811f085aae232ba7, 0x64d79f58b35a3dbd, 0x602ac37e73a81826, 0x4e5efad24528d34e, 0xcd72746e3bbc52fb, 0x3cb09414d97abb94, 0x000000000000f6 }, { 0x3030183d5b454db8, 0x40fe41a81285da08, 0xe763999855015154, 0x5861fc8ac2d4f0d7, 0xf6e42910a198261f, 0x7164fec693f4a97c, 0x78dc58bd810284ff, 0x6e4bae9612fc4530, 0x00000000000008 }, { 0xa108ac9b01ffdd, 0x96d5850cbe50298f, 0xe543bada2fd2c78d, 0x43f32e6acce61a4d, 0x92e5c287fa1841ef, 0xd4c76ca683698211, 0x8f1f1115f9c34fe0, 0xdcfe0ca3732c76d2, 0x00000000000172 } }, { { 0x37f7857eb72635e8, 0x256f99e7b9f97f6a, 0x2b3de7ef47f970f2, 0x7955fc44f236d6dd, 0xd4a43dbd02a56613, 0xcdcf950ab9d9e505, 0x10751bd64811bae, 0x75c2519f38b49e98, 0x000000000001db }, { 0x2778e401f0e99682, 0x81d3cf7f77d04c70, 0xc9719927808f4ff8, 0x386c1648197c2e5a, 0xf5c63a99db587579, 0xcc762cbf6493a99d, 0x8a08ccef04105ca6, 0x26f896c98ffd502b, 0x000000000001a8 }, { 0x49b3f3d7c3fe45cd, 0x31045e3e9a40b70, 0x3f405a25b5e45680, 0x735fe833a1e66746, 0x5a3b96a765eea6cf, 0x74c8dc3241cabed3, 0xf66e27a6a4892f6, 0xb4921f59b375b818, 0x000000000001cc } }, { { 0xfd86f318c6c412d6, 0x5afd1b8decf7858e, 0x5b6b4db19208682a, 0x68e5bf578163acba, 0x8301fd5720f2005b, 0x8a17239d83028531, 0x3d553b8b27472af5, 0xa6f411d873cfe89b, 0x000000000000e3 }, { 0x161340912814a923, 0xfe9d797f9d36224b, 0x3f46f61f6208f088, 0x30b49f0c1643824d, 0x91dd645a582f4c05, 0xbd719aea86df5331, 0x453c61f2991fbc2f, 0xb06dfee6ff445248, 0x000000000000e2 }, { 0xa91678108467f00c, 0xd24eba3370d3b5ba, 0xd969ff8b3b5dc491, 0xa2fed0c479ec1a51, 0x6818711d4da695f4, 0xae35a98d09a4b8d9, 0xdf1848fce0e44d90, 0x7a3efc8c723e1c0, 0x000000000000ed } }, { { 0x393abf034a00aa71, 0x8e3efe48686745c0, 0x6b181e5f4c451cd2, 0xca17e31e0a4317be, 0xee946d0b815f9648, 0xb3d84f0128eb5ce7, 0x772bf09b70e7ca04, 0x2233beb4cdbb9bae, 0x000000000001ec }, { 0x88c131cb7b9832c9, 0xb3d96d5fc37b29df, 0xc504d281f09ce03c, 0xc6b40b2dac189aca, 0x696eff41c9be4a8a, 0x4cc7d837d6de3841, 0x198b52c6a8f42e4e, 0x3ea5597ac309b68e, 0x000000000001fb }, { 0x86f7c23cb49ad3e9, 0x6674e9bdc64f37f0, 0x96091abcba084c49, 0xbd3d6ca0da327878, 0xf6d10294ca785c24, 0xd11534dd6d567980, 0x57722ec3b254023f, 0xfedf6166be3b67d5, 0x0000000000007d } }, { { 0x795be947a6146815, 0x9c2c3ef3c5cf22, 0x941f938d2045e878, 0x701b640014cdc984, 0xc133462aec952929, 0xa94cc05b2c8646c9, 0x21f4a2ffa6ace772, 0xe84491b98da4fc2f, 0x000000000001d6 }, { 0xba45e28618f013a4, 0xebc0f98e475efaae, 0x1199c56a543a31cd, 0x57f6177596bb4f3d, 0xf8268bc2b206148c, 0x9870da44fa1fffd9, 0x5ddee02ce48d7e7f, 0x61c29b4c7a115a51, 0x00000000000058 }, { 0x69b346ab316c4ead, 0x6d82a5911773897c, 0x3d272f997b6fb008, 0xd074286efcb10574, 0x19eda145393ff2e3, 0xca1356580bc4465, 0x54e73fa09e69b668, 0xb3c8ac21607a663e, 0x0000000000000c } } }, { { { 0x65a8e9cd076f94c4, 0x55deac5d8514f4d0, 0xfed0e48755fc0ae3, 0x233f54030aee5cd5, 0x83d34466beaefe98, 0xa733d3f1130b67ed, 0x59573a2c11025af5, 0x648fc77d61e1f0c6, 0x0000000000010c }, { 0xf340890dffca2612, 0x2ec40426cf4f891, 0xb208a6fb962cbf46, 0xa38c8bdeb8ff616a, 0xae524e596bb7c77a, 0x57ef428f70214392, 0x57143d2c9ebf49e6, 0xca54d51bfb683c89, 0x000000000000b9 }, { 0xd29636da6e5a1612, 0x244212d21121419d, 0xc6506d75291c81, 0xa9fab6ddcf4f0236, 0x672fe2d3f3270a7, 0x54b3b28046a84b79, 0x858c452556dd75a0, 0xf31ad1de367d8a44, 0x000000000000ae } }, { { 0xad7bba024364d59e, 0xb0b5e1372b72dc79, 0xd33ede6cedeb267d, 0x50f1c43605b696b3, 0xfbb8ae4886b3583b, 0x18b10f7362921215, 0x6bc257161204698c, 0xcb8425a7afb52ca8, 0x000000000001e7 }, { 0x495aee06d6271c01, 0x81d62501e3a2d72c, 0x5c3d3942822d9686, 0x93577e43effd2b3b, 0xfdd069968c508363, 0x7d4c0f34bbab67a, 0xae78468775e109a8, 0x916a2a257ff0c1, 0x000000000001fb }, { 0xcbd6338287458c36, 0xd82770da49c94961, 0xd9b2ac3f116d87a3, 0xcf063118d1e305bb, 0x75b63f60e7da9e47, 0x24593d88481ba35c, 0xc41d1e75a455ce3, 0xf68c7675e6e29962, 0x000000000000a3 } }, { { 0xbdbd4180a281ca5c, 0x281c0fe6bb031e7c, 0xdce1b4f3bed9d339, 0xa6d39c6fe92476c0, 0x9e662bb63093c86b, 0xc6d6eec8dc35dd30, 0x23a95e99b2956380, 0xd74563510ceb4416, 0x0000000000011b }, { 0x91de5814c09dabcf, 0x200d29daf118cffc, 0xa84cbe2e2cac4659, 0xdf6b123e729d9440, 0x56e0a11957d677b7, 0x7b143c6f2af08181, 0x47ffbe7ad0185959, 0xe338d8d9b941e976, 0x0000000000006d }, { 0xfb379468b956d37d, 0xbca1ba10d144335, 0xeb41aa0e2de004c3, 0x7bb1d8f497b66a33, 0x49054160e281912d, 0x15a9470332d0d02d, 0x9c0375916f77cc55, 0xccfe4b0821520b0c, 0x00000000000183 } }, { { 0xc2b8bde4b65d27f1, 0x89ce222650e10863, 0x97f862bec65c62b2, 0xce0d461879a94917, 0x9420e3821592f0d6, 0xa305dff257a89c38, 0x34dbc6f764e86c32, 0x858e2fef15eeaf96, 0x0000000000015c }, { 0xc9461a0b5c3c154a, 0xebd7d57b11e26afa, 0x978d1163e5c5bb41, 0xb209837effba7f1f, 0xff811b562ea09f71, 0xa3e386f96cbe0e26, 0xa99ae458f5be4a17, 0x50c4cbb64705547c, 0x000000000001dc }, { 0xbb85be25b3e5b9df, 0xb9366f823543254d, 0x72a1ebf12ae07812, 0xb2f5f772e9765e52, 0xf8d3a43cd1ff1874, 0xb545cbb7f82f2cf4, 0xa5488887e4fb797f, 0xf6e841a53cbfcb44, 0x000000000000c7 } }, { { 0x68225809eefda5b2, 0x5405e7c46e8c0333, 0xba0c37fef0939c90, 0xb671393b86b37355, 0x6d934fcd2fda0d49, 0xed6bb860f20a25b0, 0xdb9a8fe40f73bee5, 0x4b6504533482884c, 0x00000000000088 }, { 0xe56c81c85dcbf5d2, 0x4ad4f5febb396875, 0x5a50cc8a783fc074, 0x85595dbc7ccab070, 0x9eb4be3208399d82, 0xb6634c14bbebdc34, 0xf6b0e5916b54cf7e, 0x9b22b6e8623c80b4, 0x00000000000026 }, { 0x76f1ea1a1eef85c0, 0xa4bb559b64d0be4f, 0x2e87afbd5f02d672, 0x7c9f63eb5309b2b2, 0x5e2dd41cad721596, 0x68fe1bd528b0cded, 0x3689ace228696871, 0xc988616c6596c55c, 0x0000000000003b } }, { { 0x37c07628b66b1e78, 0x39f05f76b80ae8e0, 0xe87b57373c99b686, 0x80640cd872872fee, 0x9bfcf74d56281a2f, 0x86d28e501c542888, 0xebe1c1c0dff5de00, 0xea5001686dd6ce54, 0x00000000000130 }, { 0x68a321252915f17e, 0xd38ebb80700911b, 0x1fc52c8734eef8c4, 0x3639954cf02657b9, 0xab43aa0142e26439, 0xed56ffc60db4d5ef, 0xa94f53c77d513165, 0xf81974b3ff8ac2ac, 0x00000000000120 }, { 0x158605c4d822933e, 0x6525de55e341c57b, 0x4cfd6c78625f662a, 0x3f3a6b4351a3cb71, 0x6320cb25e44481aa, 0x5ec6b11102defe9b, 0xa056a25d2272c376, 0xa80eebb5280a2e9e, 0x000000000000ad } }, { { 0x18548d9160fcfa8f, 0x5d91283c5016ec6b, 0xa5b4d8e9a2fb8a3b, 0xc6f51b4bb44be91d, 0xb94f48bb5c7f7719, 0xfc9b6ec1ef5ef571, 0x92b3da7e9f4d9756, 0xd19724237aec8ccc, 0x00000000000195 }, { 0x98196628618bc340, 0x9e55fa0305cff83f, 0xd7c4f13d91138c67, 0xb0aa8ce549d056ee, 0xf524125257d8d9f9, 0xf069651c8a230aa6, 0x36e9913b46725519, 0x1e3fd7f1027e166a, 0x000000000000aa }, { 0xde3c09b581caa79b, 0xbf3e00be8d3375d, 0x1e1a0bc45443276b, 0x7211bacceaf48d56, 0xed5d936e55785858, 0xf0f5d017d2f94f6f, 0xd67b027cc4705afe, 0x1f823588b426c50c, 0x00000000000186 } }, { { 0xf7d728c21396532d, 0x9674793f0cb5e4b4, 0x4dc678b8571df148, 0x576e1c35f1cf1994, 0xd38bd5af0fa2054, 0x4d92497388fc396d, 0x4ef53b0e2d84a508, 0xcf1027de35107019, 0x000000000001bf }, { 0xd35bd651f39e5737, 0x74a399e73ec0e855, 0xd5d65cc1c710561, 0xc035a6b4580639eb, 0x337a55ca4feda65e, 0xf54a00ee134530e0, 0x5cb8600c34a68370, 0x14724e1a66a7475, 0x000000000001aa }, { 0xb6e975365ae808b2, 0x215ed842db522353, 0x1a10775b2a5bc48e, 0x8214c8f8fac2bd55, 0xcf2b0da73d375cc5, 0x88ebd27434293e8, 0x3bdc31fc6927b27d, 0x67fc986aa3925870, 0x000000000001e5 } }, { { 0xe70033b3ebba0704, 0x1796c68620f10a3b, 0x5088b4c764bbdc30, 0x7a03dfc99d5ff81a, 0xb87cdecd830842b3, 0xc46827b00eaef1aa, 0x6725779899be8057, 0x4cf6b4ce55d9e633, 0x000000000000e4 }, { 0xd062450ef7020ccb, 0x85a07f35f491467f, 0xf85f6158767d5c82, 0x509498b131e40c9f, 0x6d59f6062ff87b94, 0x44811e56d873dde9, 0x1509e87cfc64d69, 0x3357558429acf7a2, 0x000000000000c0 }, { 0x9bb412528deeab51, 0xa309c4c6d40b1e3d, 0x55e3d75dabec8046, 0xba0bca031b5dd8b4, 0x8b6b4f150402f6f5, 0x2fbba0c956c024b1, 0xf8ad9619f8478a63, 0x1ae037c1ff4e32b9, 0x0000000000015a } }, { { 0xeb3de5b67ef9039b, 0x7c10716f77bd842e, 0xcbb4a6942a2e6303, 0x5c2e9268f50ddc6b, 0xdd7ffd6481cd54f0, 0x4645e54a4dbde330, 0x63e8a646c3cbc3ff, 0xb3b2f8730d570610, 0x0000000000015a }, { 0x514ba801bf144ecc, 0x85ae4dab4f95cb47, 0x2f9937c28890766d, 0x572982757ee80226, 0xc4d21a92e35d1965, 0x1edb15996bff8938, 0x444935bf10404692, 0x7a8a930e02a5d70, 0x00000000000099 }, { 0xb66d5c136bbdbfcc, 0x6dfa91e6ac716e8a, 0x59c6f54a2a045cf8, 0x340e5ae1637d4cf2, 0x4b4d3283b31132f5, 0xe6915352b025e664, 0x9f571d311b7bfea9, 0xbef5d286e68496e0, 0x000000000000b1 } }, { { 0xe7d2f72341a52b3f, 0x6d99c75e65afb3f2, 0xb92d5b2b91542dfc, 0xdb15b0781bd68423, 0xbf5266b062c891bb, 0xa4c2af344e832104, 0x1a04b042f9b5303d, 0x85c438499a522eb3, 0x00000000000193 }, { 0xcc2d5a2e5e702c4d, 0x3d9c4d80abc08ad6, 0x54574729f193c161, 0x806be8aeefd8d4c6, 0xaa60a5cd5be51d68, 0xc1757392d6f2f124, 0x94fc136093e50615, 0x4fc86ad9cbadb286, 0x0000000000013d }, { 0xfc7cf822ddd54fb3, 0xe22337a5e2e27291, 0xfeedbfdf902db934, 0xf3a275be186776d0, 0x39526943ac613e5d, 0x8b337df768ee46af, 0x91dce7acdd8f9045, 0x17670c6ad534f2a7, 0x0000000000006a } }, { { 0x38590c6010b653f3, 0x32b74ace91bcddb9, 0x5c26a00028073d4a, 0xb08ebc783daab253, 0x93e32ce0437b065c, 0x8f051ef35102fa80, 0xbca3811439cee63e, 0xb946418142beafba, 0x000000000001be }, { 0x91b8fe59e7cdef2c, 0x4596334a4a8a1ad4, 0x13e52a7934613108, 0xa565011a4a4433a8, 0xed477c4ef4b78e17, 0xd4b1f5eda10d29f2, 0x156d259b16275d60, 0x35d1ffc6d4d6445d, 0x000000000000b2 }, { 0x2ed92fea0c3a6479, 0x856ad0c472b46107, 0xd78ad35b1092eb8d, 0x1b55ba8fc0367d9a, 0x1fc5278b9e3e2d87, 0xfed355e67e3dd0b8, 0x9ddc8b68211e9a1, 0xf801c19f5dfa11ca, 0x00000000000060 } }, { { 0xa353dcfcb5ed88e2, 0x1975e801396d038e, 0x8fe158bf7436e9e4, 0x7bcc00131a15dc87, 0x97c169000f7b7d99, 0x1496a99ce5de2956, 0x882b46b37da6b626, 0x858fcc3aa8f8e335, 0x0000000000007a }, { 0x400d8239f0f3df91, 0x6c391e5d72918912, 0x8561c3ef1022fddc, 0xdc84e46eca7a8fde, 0x4ad7847d1a7423db, 0xea15d9cf367fa2a3, 0xbcfecbf49e187d37, 0x7dc03494cd630d7d, 0x00000000000070 }, { 0xb4d669eddfaca69f, 0x2ba20843558c13f2, 0x14d2fd49d5c5995b, 0x8bcb644ac93053e1, 0xc2d35c661f9ce986, 0x30e9d4df2c702578, 0x4a984558011e0970, 0x756e1cb5bbe63c15, 0x00000000000089 } }, { { 0x14c49e41136eb90e, 0x4ea35697c4c7bc1e, 0x1bd07b8fe48a92af, 0xc84f1081515fe084, 0xffd57700de926425, 0x1fe7f6ce88159f47, 0x3abe60981a3d429f, 0x6e6e96a2e4513b03, 0x0000000000002b }, { 0xf3491168a733b001, 0x3118b9c86de2f09e, 0x2177cfd0651230eb, 0x26068a81d8ffbad, 0xb1ccd543b1ea1244, 0x6feed55d887c4416, 0xc69e4d710d996705, 0xe7a04fda6332b8f3, 0x000000000000a1 }, { 0xe8f660d9a62602de, 0x2305cebce976a7d0, 0xd39e4b666f6a7413, 0x873fc63208678881, 0x66810bcac8563081, 0x6c5633161419462c, 0x17bff0c652f8dcc0, 0x967dc74f7d717cbf, 0x000000000000c6 } }, { { 0x4864d3d4a6f4d16c, 0x9e9d86aaf0a5cfed, 0x886407f1660d2891, 0x571225b993fb32b0, 0xba8b0be44acd973f, 0x4726640b3b6a5d6a, 0xd00efcc8775ff1dc, 0x9fc614a7dc59e023, 0x0000000000003e }, { 0x17eb430b4aba1bad, 0xa3c8481363d0b1d4, 0x3220804d07752f61, 0xecccffa8f75e2518, 0xe2d123f09b5a9927, 0x995b9d54304ee6a8, 0x50faf67077be0237, 0x4661a1d8b93f1be2, 0x0000000000015f }, { 0xffb160ef6803f594, 0x60469190bcf9635a, 0x52616780320217f2, 0xdeeca85fe6ffc1a9, 0xbf4654b12ebb1b99, 0x2cd2fc7099d42f78, 0x9cc2c02a41d2ade2, 0xd7ba035c64b566d8, 0x000000000001cd } } }, { { { 0x293708be04e1140b, 0x45d4c534071c7c35, 0x106ec5a0e3c99d99, 0xb78a3a56bd4c2f33, 0x39dabb28ad419fd5, 0x4c0f87454d56e9c7, 0x46ccdba3aeb06717, 0x49bc01349dd06858, 0x000000000000a0 }, { 0xfb3e8600125b9a92, 0x88698118a8ae882e, 0x972f4abdc9e95fec, 0xaa429bb3cf13d940, 0x8866c1ff5b230520, 0xda993ebc70e55c07, 0xa9500784211bbf7c, 0x5067cbd40e81ebb2, 0x0000000000013d }, { 0x8e7480dd0caa6c44, 0x493c0da071503ae8, 0x29f922f2c52d5280, 0x997ba1023486fd67, 0x2fe9a08881f8280a, 0xd68c060627919f97, 0xbe07a46c6ab5d3ca, 0x64dbe3dcaf89abb6, 0x00000000000028 } }, { { 0x90b0266785e95d3f, 0x9c274e331427275c, 0x65a95e92b3807900, 0x8f5594b05c1fa09e, 0x8bc5c7556b646fd, 0x64754f13cab4f8ec, 0x7aa56805def9e922, 0xfa261ac978241df2, 0x0000000000012a }, { 0x20eb390edb122ba6, 0x633affb7448d8432, 0x8a0b2691054ad8a0, 0x9942806f5fd168de, 0x7d726176f82fd97b, 0x44debbadfd073c30, 0x95c21d700d2ed32, 0x552d524888f7d734, 0x00000000000052 }, { 0x8ee02ce038b9df0e, 0x6d544bd869d58626, 0x93e227f27c1cf818, 0x358319c1c09d267c, 0x51958f940413470a, 0xeae36f01345f02e, 0xd0b3df53eb05dcd0, 0x6e8e12c3fb604955, 0x0000000000018e } }, { { 0x8f8db6efd942e804, 0x9ef08277c464cb68, 0xda4f88129077e219, 0xc2c329632a898e1, 0x1c80fa9019b24174, 0x335b406be32d243f, 0xdbed4e3e1ea15dc9, 0x8a0e58e2a09b8fc9, 0x00000000000061 }, { 0x363a61962e405475, 0xfcec76c5a6b670c9, 0xdc08a76fc8665679, 0xb4d9a078518b834, 0xf1384bbc424df30a, 0xbea4a610a8f93b0a, 0x777f2cb0b5d92d5a, 0x64bb4c6f0105eb1c, 0x00000000000023 }, { 0xf528f671406d4752, 0xb18c876556bf5cbf, 0xcb6f71ad7cafcd22, 0x4e8009af81e2655f, 0xc09b574b19c42ff7, 0xd7b32a93ce80e2df, 0x99525d46f5a8ebb8, 0x4f91690291789268, 0x00000000000193 } }, { { 0x9b440a124b142ddf, 0x318acce803531657, 0x728873249df606f7, 0x47cd0b895dab065c, 0xc365ba5625ec546b, 0xb0960965a85b745c, 0x9c60869f1c4613a3, 0x87c1b3e71daf62be, 0x0000000000006f }, { 0xf9c62a8f868aa6b0, 0x95a5cd26c156c0ee, 0x9955182bb9674c0c, 0x672b6b8acc1c0cb, 0xb9204ce05ccd4eed, 0xb9b51ad82ca892b8, 0xf1e402a4f5c94d, 0x99651361c4fe12f5, 0x00000000000161 }, { 0x8ee143986dbdaf49, 0x5d84b5a5dc61494, 0x23def25f2ffe35eb, 0x4ed5909c0a008f1b, 0xd6bbfcc93ac0eabe, 0x8ea330e1bccbdefc, 0xe3038e5c4f3572a0, 0x929a10625f4d8a59, 0x000000000001f8 } }, { { 0x35877027ca353d8e, 0xee9347f7794848df, 0x2551d2ae7a3f0835, 0x3710956d7ce7f3b8, 0x2c19107f42b13d07, 0x9d2143ba2400c6f0, 0xc5f9d0e78d1bf539, 0xf12c55583b76d8ce, 0x000000000001da }, { 0x7754b0cc6f7e4b59, 0xc3c6931921ae16a, 0xdcccba574f652b66, 0x5bae8a7bc5c9d374, 0x533f27d23e096b13, 0xcef0a803dc3ae26f, 0x55398881bbc85d4f, 0x6e8f667c9882dbdb, 0x000000000000d4 }, { 0x1bad9567b2fd9048, 0x16df7b16be1e047b, 0x3a1bd2922d47b153, 0x2c5249322d3f7251, 0x3961e5fa6dcea5c7, 0x620df60451ddc8fc, 0x70d049654a3cb4ae, 0xd9d4ec92eacb9fad, 0x000000000000d2 } }, { { 0x7dbc664761c90e30, 0x509bce7ec21f8fd8, 0xf690921753f836b9, 0x6fe28e5f6d66268e, 0x647dc94a5386168c, 0xf4edaf876acf98b0, 0x9b1964a9fcb1322d, 0x18294370b914f17e, 0x0000000000005d }, { 0x95a4ecfaa9fcaf56, 0xbfd442a83ec6241b, 0x3c4810825cf0d156, 0xbef8471ba6886999, 0xa468a265143349ca, 0xd4745233901cc206, 0x5e3a145b244508b0, 0x68d60cb9dae9dce7, 0x00000000000058 }, { 0x2a24edb54937bcee, 0x85e7ff84756188a5, 0x543eca5c2bfb36df, 0x63717be5e63cb059, 0x9a78e63f356046ae, 0x2acc920c76058dea, 0x1fa15ee0f42f0bd2, 0xf4f505e922857cbd, 0x00000000000075 } }, { { 0x70fd3ea94d71cb6, 0x2da4a65f1d556661, 0x1f80b582b6876179, 0x9a4703a638e92264, 0xc6072bd9d1d0645b, 0xa431b917ff76b9f7, 0x7348f28db88a1f1b, 0x9a2634a125e93d46, 0x000000000001e5 }, { 0xd76c430ac88ff8c8, 0xa54da0481e82c619, 0x4ba30f137256d41f, 0x58cf7b9211c7687b, 0xc842353a53819d07, 0x3d6dc862810effe7, 0xe42452af28f4545f, 0x3436904bf829a4fa, 0x0000000000009a }, { 0x6692c69ef777fbac, 0xb05108db44a0a1ca, 0x8a172f6a22b92dad, 0xa49c18b14b7627ba, 0xe487e97496e9bac0, 0x738089ed132464f3, 0xbf518d9ce7405fcf, 0xb674ae1b03f9d87d, 0x000000000000cd } }, { { 0xcc6fcc8398d59e4c, 0xdbea211acad6f7bb, 0x563e160d17c3445a, 0x78599a38e3052685, 0x5f12002cd68ce9b9, 0xeea57e4d19e74706, 0x4ae14d1e7b19fff3, 0xe288c3899437b84c, 0x00000000000104 }, { 0xd22d99cf20d16667, 0x9ecd8418e3b6d18, 0x8aec421a860783f2, 0xc571b5292753169d, 0xcacdcf8246290236, 0xe29e02ba400993e1, 0x599fd405ac2879f8, 0x6c95c393443a6efd, 0x000000000000ea }, { 0x33bd67bd9841c4b0, 0xce63649ad26aa7d, 0x7ca4314254227022, 0xfeaaf30c424e593e, 0xaffaf5ea8a3ff1a1, 0xb3ea9a04fdf61075, 0xea5bb2b415e173bc, 0xb086ad0ce9a6052, 0x0000000000019f } }, { { 0x724cce0550a6db9f, 0x7fe8333603d402a0, 0x5755c813c6d6bc52, 0x842b8d4979590b67, 0x6d38f7b87a9c32a4, 0xb4c01e618d865e4c, 0xd6d50bb6912f7062, 0x94f8010e1a3fb2f5, 0x00000000000106 }, { 0x3022e3a71c59933a, 0x5dcb9f3c0c9e90dc, 0x8e626ee7739538a9, 0x1b18276ef4f01958, 0xe339e3177e09e1a1, 0x564765d227318e02, 0xa5669bdae6c4ce47, 0x9fa784a5a73a04c0, 0x00000000000099 }, { 0x15943a409a2bd000, 0xe107840955e95f5e, 0x720c32ff5a0e0c17, 0x4aa2bc73e6c36452, 0xef167f1938dab04d, 0x516f31379fea5930, 0x664236248d5d1861, 0xa1e47114822e984c, 0x000000000001c5 } }, { { 0x4de0e3dca4f4ce0c, 0xbab2a5e281e537c0, 0x2aa7e9469756eb58, 0x6fba6fb28e507a85, 0x961117e26e1db677, 0x8ebc014b96ee0a97, 0xbea67cf630752e6a, 0x3d8e26ca925ca277, 0x00000000000043 }, { 0xbad08ac5a5d0be2b, 0x592db787fd79ebd7, 0x9d068799ba0d8042, 0xb6429d10cb41aca6, 0xf989c3594833f1cf, 0xf3fd6de5973baad6, 0xa667657962afb702, 0x82f11eb5cf9a8539, 0x000000000000bd }, { 0x638f1958045131a, 0xe9beca000f9182bd, 0xd7b207c6fd1f598, 0xcda0e57a98a3bf4c, 0xe70d73432d2eb695, 0x9ba0da754f7bcdde, 0x400d3d0b23005ac9, 0xd71b5646e6ee3a90, 0x0000000000005e } }, { { 0xe49c4ec3eff7fd44, 0xfcc2c65485b9dcd0, 0x3cec0e46aaaf8fa0, 0x36f3e6f75d27771d, 0xfedb0e59d678d0ed, 0xcfa0c217f635c0f3, 0x2f7908d8fe63abe7, 0xbda7199fd4352f78, 0x00000000000033 }, { 0x1727438c69adb9c4, 0xa8ec7f2ebc257d05, 0x9bdbb31be0d318f4, 0xd0b023f5b2014ead, 0x78a3082712838491, 0x8902ae49d7ed2f6d, 0xb39cc0bf71842ae3, 0x3da5cde57ae07d2e, 0x00000000000003 }, { 0x7ada8c4bc3fe3d36, 0x12378ccd1ce737b5, 0xeeacf50cd6cf856b, 0x9ecdbf09d951776b, 0x67e11d755a6c9eb, 0xaa5079382e4c0fb0, 0x7b0b1cd89390c1f1, 0x1e598164349f6842, 0x00000000000163 } }, { { 0xca70fec908ce8895, 0xe33dbafa81f7292b, 0xe7d2e80f07345eff, 0x1c88aef1d7acb518, 0x767fcbabdb1b5bc0, 0xd50227600cd845cf, 0x5d539998d449c0f4, 0xc9333602fe78eb48, 0x000000000001e9 }, { 0x49b48cf29d705704, 0xcebc21414416b5bd, 0xeb9d62d60d594afa, 0x589b45eb507be5e3, 0x3f34fd572f41373f, 0xd99112b2942989c9, 0x3029e7f9a5aa3726, 0x9a60d66380a8884e, 0x000000000000b5 }, { 0x42e4e4047df98949, 0x3d4d3098f6ec1dc3, 0x849de4e13c4c771e, 0xd215b6eaff1bb421, 0x3955638c0aefc28e, 0xc6097946dc0e472c, 0x40fb1a9547768956, 0xaca0403c1b74eacf, 0x000000000000c9 } }, { { 0xc46d4e1b6ddb2fab, 0xeed467b7b05a5552, 0xcea0fbcdf84151dd, 0xd9be0515b4f763c8, 0xda1210019ed9f021, 0x77ba9d13c201f971, 0xd158ce0c802de793, 0xe70dad8253fe9e, 0x000000000001e9 }, { 0x528c232bf75567ab, 0xdd69cbb818eb2500, 0x89005cba39e73914, 0xcfed3053149574ff, 0xb55fef07d995527b, 0xaef4882158d264fa, 0x9bbb06e08d12951c, 0x4e07be06a7ede990, 0x0000000000015b }, { 0x1942e22a181aebfc, 0x8e58692d973aa7b3, 0x9458396afaa1c119, 0x740763849e6b6c9c, 0xf690c2dc6a6977de, 0x29e86afe50d2cd2b, 0x3c6afa26b9ff377c, 0x489eba57fbcfec88, 0x000000000001c1 } }, { { 0x2b326a2174cc58c8, 0x3ac79dfa46ae2276, 0x9f11bd6a0ae5ccf4, 0xd9b5f31ef31a208f, 0xe0dccc03658f406, 0xbd4d4694b2db4e26, 0xfc5dd02788732fb3, 0xc0273aa35926280, 0x0000000000014a }, { 0x2e9f6d3141ce7649, 0x2a9d32a112b762c2, 0x7c401146bf2896ce, 0xb0bb8a117d250a2, 0x5bb5849d4c136273, 0x503a905dcfe605fa, 0x929bf7542b252a10, 0x7d73ca9d6d56428c, 0x00000000000107 }, { 0xaa7588cde169563b, 0xb97cb6ac8c885aaf, 0xe08e2eb7624baf1c, 0x75bc2f9cd53f5059, 0x5e6724cd742722c8, 0xa06450814a5f118b, 0x8c184c98329140b8, 0x6e6cf71acfc7c504, 0x00000000000089 } }, { { 0x54f77325874f64ac, 0x9b594985808b2874, 0x7d3734fb00c0dc72, 0x1ae4ee64379f6db0, 0x30e297976ae714c, 0xa23a9275890bd89, 0xe0772b8711befb90, 0x587fbc88457dac23, 0x000000000001ff }, { 0xb64086b7e29405a2, 0x8cfb69b1513933ee, 0x1b3d5f9130ed33ef, 0xada70a2816dbca39, 0x37d1857d6d87866a, 0x47bfc7e585956df1, 0xe21ecaf707cda12, 0x8e8f31234ac5244a, 0x00000000000016 }, { 0xd3e2c3a6b47163cc, 0xbe1ce0bd9fb6e19a, 0xbb847ffa44eb19db, 0xd4b5741bcca7ee16, 0x4372ac9a98ca1a59, 0xc7359cfadb24ef88, 0x31888d42d5b318a7, 0x6ec4811f9013ac1f, 0x000000000001ee } } }, { { { 0x42ec1f39dc45a48f, 0x81d3c7dd91bd8d1b, 0x6806c9d4b4cf0b1a, 0x60772b26f29700dc, 0x36c63ac5a1ca05b0, 0xbd95a456b86e15b0, 0xe20fa4364c8e6df2, 0xf73182d90ebfa5ac, 0x00000000000097 }, { 0x81ec3361061bdead, 0xd9c1cc319721e077, 0x439536d883e5c3fa, 0x1cf59070aec6a4fc, 0x798017dab1fca274, 0x17a29bebba4af94c, 0x92e684369663e199, 0xb743a1ef86e8c3c, 0x000000000001fd }, { 0xe8298eb5a31da73b, 0x80f15358ff893b1d, 0xc7d5092af67b19ad, 0x5831667a11975415, 0xad6762fcfeabc6b7, 0xf336f626077451eb, 0xb8d5254a9b2f252f, 0xd667e8fcc676d6ab, 0x00000000000013 } }, { { 0x8db9b4f083851928, 0xfc6a137e9339082a, 0xf40690a42c081bf9, 0x81536d290aa03186, 0x29c4f047be5b0495, 0x3d34a0c7488b6c65, 0x7a531632e36755e8, 0x5f3e0662139753a8, 0x00000000000033 }, { 0xdb03899bd97f3452, 0xc6e071d6319c6d1f, 0x84f472c6076be460, 0x680e0c0dc935dbec, 0x1bd67c23b7b92164, 0x28acfb4afbbfe96a, 0xd6080a36093eb0d7, 0x3a1f0ae685c7ff2a, 0x0000000000007c }, { 0xa157f3c69c16908d, 0x897002b81e4d9717, 0x9f40388fa3c167dd, 0xf7821dcde1d5d1e6, 0xba3825a2d9860945, 0x5f7a67aeb7e4b0fb, 0xaacfe0509da81f5d, 0x7ced72d9a32e3c23, 0x00000000000045 } }, { { 0x66ca93c7dbe2541f, 0x964e87161fa4b402, 0x1f6af80ce7b75a2d, 0xb3f599a517c48d66, 0x10fe4205ca6e1929, 0x12c2c3dffe96bb26, 0xe86c1717556d00d9, 0xd97d9f0e5f629911, 0x00000000000027 }, { 0x72175ef3a7a9bd2b, 0x61946a1d1b5c294e, 0xa79b51add7a2e394, 0xdb6a6cf702d9a94, 0x18856054354b57af, 0x905df22088596798, 0xb4064f5ad92d66e6, 0x2acd08493bbe5520, 0x00000000000074 }, { 0x1faa1810e9f8a77d, 0x770d93468b76f8e8, 0x94ce1d4d433e2d22, 0x49d50044fa7dae39, 0xdb238b24319f416a, 0x9667f74807c96a51, 0xd685d75987f54ce1, 0x6aa8af615ca71404, 0x000000000000aa } }, { { 0x5bccd4d53ab3c2a9, 0x59b6bc5c1b218229, 0xc3619ee5c3955895, 0xda657008a9c878db, 0xfc9d4900ff21db14, 0xa4180645102ce8, 0x6a1f519e01fc9a84, 0x2b3be6842d2a5d76, 0x000000000001a3 }, { 0xebe08bf87898ed49, 0xa3af8df18f7370bb, 0x793cf07e5578fbf, 0x555da6e000bc6eec, 0x274c71cbdad55d4a, 0x6de87871ef5828ef, 0x4f28586de482dbd9, 0x49faefb6f00a36f9, 0x000000000000b8 }, { 0xa21d8584d39ccdb8, 0x6dd8371b2b06ced5, 0x505bca0a01c5e39c, 0x7e91f5b81579cc2b, 0x7cd258a8c5f2335d, 0x66cf4f5a2eed6515, 0x3e03a322b79e9b3c, 0x8a3fb3160488cb0f, 0x00000000000097 } }, { { 0x12a71350f4632039, 0xb96c97e0d921da30, 0xab01b9f5eee6616d, 0xf97eebbb7d64d969, 0x992e76e2216a6fa2, 0xc89e521c264f7bae, 0x840ce640c1598eba, 0x96049d8f1b8586d8, 0x000000000000be }, { 0x2d5c5294ee499444, 0x5490caf6288e0d5c, 0xe90c377232907fe3, 0xfd3bdb3aa33c6e2a, 0xcec86ca80abb7b12, 0xb246cec2d4b57889, 0xc30bcf1d901b2abc, 0xed3b35007965d953, 0x00000000000100 }, { 0x65f45dec05b9daa0, 0x6616c4c5ae5b46d5, 0x861020c729469719, 0xefd1ed5e7db3d689, 0xeeeab49355237cf, 0xafd8540cd45630b9, 0xe89b0d0da0f89dd1, 0xeba184ca818001b4, 0x000000000000d9 } }, { { 0x9c48e48c32ff5017, 0x8c122186cc74e5ee, 0xe4bd1fcd5f8e74ff, 0x6d1d781d30986415, 0xc8fcedf41ab4b374, 0x90765093560e50e1, 0xe2e9dbddaea36189, 0x64138a0d4cd745ea, 0x00000000000072 }, { 0x43b63067e167d5cd, 0xb80fc96f020a7723, 0xa948c4dd67bee1b6, 0xfc4542627a19be45, 0x997c8d07538c675b, 0xe3d79858aea6af95, 0xb9335803e2383498, 0x8e2bcf7d04331c89, 0x0000000000004b }, { 0xc0a30955176c4e36, 0x884d7bc2abb30d4a, 0xb03b53c0c3700cff, 0x7b4dcd7f168355b0, 0xaffc18abf340f77b, 0xfd1f8684ec465374, 0xec2f1214b5fc5a29, 0x61914dc43d0474ce, 0x000000000001a4 } }, { { 0x2f5ab4a7a539cecc, 0xa8e973ba930cb028, 0x32274b4dc49bc241, 0x8835229e61d100f5, 0x1a892eddabd5d8a, 0xa1412972dd10f629, 0x631ffef1adf0d461, 0xc374812a06e2ba9c, 0x000000000001f2 }, { 0x9aea954d8b45acf5, 0x9341e1e8aee551c9, 0x99f1f3b3957aa727, 0x6921f83edae12435, 0xe76403ad3bb0ebcd, 0x15926d53949d1c8d, 0x577ae46c3745544e, 0x496ca7344c033dea, 0x00000000000049 }, { 0x8bdb615b4229d0f, 0xe471d3a7e44d195, 0xdff1d6ec6408290f, 0xff17f42a19f33e39, 0x5a329f52a429ba34, 0x3a13b67e397c6a61, 0xaa4bd9c457008f67, 0xd6c5e823ca428b7, 0x000000000001d5 } }, { { 0xadae03cd7a984d89, 0x34adcfdd77a6de85, 0x2551cfb745e5d913, 0x117743ca8f7a82e6, 0xdab56bbfa4f8576b, 0x2fd2fd83d752e792, 0x52fc9d9fe3525432, 0xa5eb1fd2184eb7a2, 0x00000000000099 }, { 0xe020d213d7ece3e, 0x726e8124336af913, 0x25952ea272660b70, 0xbbcc3aae8b61ac4d, 0xe7725cfed4ba3216, 0x4c3e34f9ff1c775, 0x2476f727352da272, 0xef53862b56b3bce6, 0x00000000000038 }, { 0xf0d4a8c1e64c7186, 0x9be0dad0133eee8a, 0x401395cc26c44d4f, 0xd98a6c828c1baf9b, 0x69f3cdb245f5e32b, 0xabe5ed9952889c5f, 0x9da784ad6f14d10, 0xaece5f6e1080c03e, 0x000000000000f4 } }, { { 0x288d8db0c54e755f, 0x784e26f3e7e055f2, 0x25834683fa6cedda, 0x6d5a559aefac5323, 0x4d2155653d912e85, 0x859f583f400ee00b, 0xe7475f7330307bb2, 0xc33f54386dc582ad, 0x000000000000a5 }, { 0x63079657cfeac834, 0x16640f0fce874aeb, 0xb854823437d05b00, 0x6b2f02c138be73cc, 0xd0519a143573d403, 0x476085800d958cef, 0x16f5f54b4574ab32, 0xaa63b4c264f7c383, 0x000000000000a6 }, { 0x5bf28232ba8a9822, 0xfad1d988877bd664, 0x46db24dfeff2d0bc, 0x7a73869e369d564f, 0x5a0849fda05316aa, 0x26945222a6b58208, 0xc40f1fe7d3d93be4, 0xb6cfd157b6f6aaa8, 0x00000000000167 } }, { { 0x740337dd523132d7, 0x679490d81ac17056, 0xc31a2c302105cb2a, 0xa539a171c6fdf549, 0x7f686eff1f075f5a, 0x2fc4b2dbe2ef5189, 0xb940c3c4e4f702ff, 0xb4ef249c5630a3d, 0x0000000000002c }, { 0x7ed90f9b85540d2c, 0x5db0efa5b2594051, 0xed6d3775e421777, 0x41b95866baafa967, 0x2f256e81a94e1876, 0xe5e5c4a23cd4e29d, 0xd2012eb5a66094bf, 0xbf803d725ae56b99, 0x00000000000070 }, { 0xe8686f8ddca6c21c, 0x2867142fe26f04a7, 0xeb82d006703df749, 0x291a535ff2bc44b6, 0xff6e564e980b1b23, 0x85d0db74ddfed88e, 0xace7d11f5020a83e, 0x38045ce35b959214, 0x0000000000002c } }, { { 0xc7613c14fcb9fa1b, 0xcf799d8978e79e89, 0x4537eb058084fd24, 0xf33dd146a5db2331, 0x51f39856d1c3cc73, 0xeeefed4209da7beb, 0x60a8f5ebeaa739e9, 0x31909c64815d4df0, 0x00000000000168 }, { 0x515596745de3b75d, 0xc0147f3affa9ceeb, 0x9637597c89b74830, 0x4b81d3156d09c382, 0xe5f6d8b098c9fa6, 0xea43496c605d3ca9, 0x931ff5756f33b6c0, 0x175b43d74c6e7b23, 0x0000000000016d }, { 0xbe3d16a7eb31a410, 0x669c99e9d9aa9e98, 0x4d4c052973a0a44c, 0x9785413cec36a6ca, 0x9d197417d474604e, 0xaba185c2f1f181dc, 0x451024325250bf8, 0xcf7a82f1e174ea6a, 0x00000000000196 } }, { { 0x489753da0ec56f63, 0xd9e67a7f4233a1bc, 0xeb97cb324b160e81, 0xb9ced0ec9e06b0df, 0x548a83d10aaaf84c, 0xcf4e9e391c318464, 0x8bf9e87ea509233c, 0xf9430f95231541ad, 0x000000000001b3 }, { 0x84747880dec33aed, 0x5af440ceed837043, 0x1e43f630eb39b51a, 0xff93323e6541f2a7, 0xa154b860aa6c89b1, 0xfd714683609d1e24, 0x53123774d0e2fd83, 0x25164ec7c62f18d6, 0x000000000000eb }, { 0x543b2379ffef4d31, 0xcaead4623fc08e88, 0xba78e70aa450747a, 0x590a94566e04eac5, 0xde2b04e6b3cd9907, 0xfde656c3dd197bca, 0xd9c0eb1059ba5d69, 0x1995129b918be214, 0x00000000000053 } }, { { 0x63e8bd972969c55d, 0x720c81a94051b15c, 0x5b3ec9b1314a22fb, 0xdbd2d259573f2ad5, 0x9ab34306c52b7c55, 0x31aa87f77a80653a, 0x62ebfecd71e88c33, 0x30c21ce9e311f7c6, 0x000000000000ce }, { 0xedf95f9a28f5df10, 0xe83cd1b8c302b489, 0x398ccdd77989e626, 0x670c8c5429f4b8d9, 0x7a62dac4a659caa0, 0x70711049ca5f5057, 0x3d55024470822713, 0x62216a3be243c13c, 0x0000000000010a }, { 0x5e09bef2e94776f, 0xe1db7922916a3b92, 0xa487f80a4b1a98e1, 0xaddb8be25e0ee5dd, 0x8ab9aa874f8ed63d, 0x2fc3613e36820426, 0x21e700ff26ee7108, 0x15329f1f2dcb2155, 0x000000000001cc } }, { { 0x89f003e6a56b5ea4, 0x2974d60ac9e2add1, 0xd374521ba9b7edea, 0x338595be795f7eec, 0xe25f428dbfcbfe6c, 0xaeb11468c3659c06, 0xf218a7cc25e84e48, 0x7f44a714fe6ed494, 0x00000000000080 }, { 0xa245bf6a06d5f0fc, 0x60ccf91f8eaaaffa, 0xcdf4808fe7651806, 0x7d59f167b76f92bd, 0x6cfd86155ffc31ad, 0xe556b42de3049e2d, 0x585ba5595de60990, 0xe53f56bddddfa477, 0x0000000000004d }, { 0xf9bf85b66a5693b1, 0x5645c0bec2f0b7c6, 0x42f46fe59ae954f5, 0xcdc275f55c775f4c, 0xf876ae11fe6f5978, 0x702a3f1a5d338ce9, 0x993e30127ca55275, 0xb38e82d99408e0ca, 0x0000000000012b } }, { { 0x8b43f4f7bd59f947, 0xa496297116440834, 0x8b10ce3c016238be, 0xc3f2ba7acd87d26c, 0xf4b438ed26eb740d, 0xcebae15a64846b84, 0x6f645a7d891ccf40, 0x52b6dfcf91c9bcde, 0x000000000000e7 }, { 0x8ad3bec2bdbc4b05, 0x5a86e61e97af1806, 0x26b129d91e3b1e81, 0xd4a7e4cc36e04653, 0x181befe6ce9aa1e8, 0xec8dde4259200091, 0x1a221af43548e865, 0xb1a034276e0f4b7e, 0x000000000000ae }, { 0x810aefcbe04f2ed3, 0x3127758bbd61c1c, 0xed4212f1485c5737, 0x56b0024318fadc70, 0xac002f215182f6b7, 0x7e9e0a0f3d58336e, 0xed6d89631cb19221, 0xfe0072e7788f80bd, 0x0000000000007e } } }, { { { 0xaa10119f9b68bdb7, 0xf602b99bd5030848, 0x30c74ba8080a2277, 0x86d85826dc74f2d1, 0x8e746064cf502e6f, 0x48ed94883ceb2224, 0x66c049936896c1ad, 0x2d4bcc3c3ba6b21f, 0x00000000000064 }, { 0x98b8d664eb1bb6e0, 0xa3d9f27bb651fd65, 0xd6290ac152e9765, 0x644c51c659f1a91b, 0xdace713b0b848aec, 0xba66f7da2cd29dd3, 0x72bda762894ace2b, 0x67e774d5e9cec96a, 0x00000000000094 }, { 0x676c63d56d788a5c, 0xae44ef75af15c0f4, 0xf3b094db1dec279d, 0xf64c1c57db90dcd2, 0x4df6ee41c637736, 0x875ea3b91b59b9fb, 0x9e47cda4b81e1dfd, 0xb0797f34b703cedc, 0x0000000000009a } }, { { 0x59346e9a3b2a4505, 0x965ef32edd49450d, 0xf410840f909836bf, 0x598846734b0fd374, 0x3a54bf93abbd0d3c, 0x2b8ee703f56604c3, 0x45ac5525ce47d9af, 0xda5c0c74dbdc77ed, 0x0000000000014a }, { 0xea7e2d1a3349d05f, 0xf498e30f12cf929c, 0x962f7d2070759edf, 0x8b6a2850c4b86fa2, 0x5a4dd30accdd4957, 0x77b80ecc347d5cca, 0xc81fc0b32a25123f, 0xaaf49a34f545d03f, 0x000000000000c9 }, { 0x43702865575475ea, 0xa0fcccc3dc7465ca, 0xa7f9e562061bea8d, 0xc474cbc71206b3b7, 0x3496723217334179, 0x4b8ffac713deb1bc, 0x1f9b86937bdc2dd, 0xf16c190dd61fed02, 0x00000000000013 } }, { { 0xddddc64dd15a8e95, 0xd91dfc212e28b519, 0x186367f241bb4850, 0xedaeeb09b19fc867, 0x3f7526d044aeceda, 0x68fdd99f3b819e9, 0x2202e1d945c0c0c1, 0xf618e8b89c9a7fa8, 0x0000000000008c }, { 0x7ac0bffb36aac756, 0xe419789a5b08f1d, 0x2f7122f7b3696dea, 0xbcea4e97a5bc44fc, 0x323c1542624d40d5, 0xa866757d9876613e, 0x73f1ac987a9371bb, 0x420ff5932af10ed, 0x0000000000015c }, { 0x1a406d5cc0c72c8b, 0xd69b9c22d131498d, 0x7a2b4734f7dcce3, 0xd66449d7734887ec, 0x9aae9f27d7fa2d30, 0xc7fc96f63922e9b1, 0xd22df4d7f7bb507, 0xa7693f6da914517, 0x000000000000d7 } }, { { 0x122b58edff56935c, 0x17cfac6292e9577d, 0x9851514e3681f21e, 0xa15cad3b3c0ca1c9, 0x38b4c0c2dc00650f, 0xb0e11c41a9227c36, 0x8e9867c6b05b4507, 0xa4ef5895a501103d, 0x00000000000191 }, { 0xd612fcd9c984ea05, 0x41ccdfb6ede5e1b5, 0x19449692c3cb91c3, 0x1e08e2c7dc4e07de, 0x59bcc80e48793821, 0xd86fd950f2b7e9ca, 0x2fe86ecb19f9aca4, 0xab4499abd2aa0702, 0x000000000000cc }, { 0x6f32fadc0fa90c47, 0x3e0483b4c5c6ca08, 0x1055e4aa911f9fa3, 0xcb1bba755fe8256b, 0x47a080b86e3d164e, 0x9bf1e20fc0495570, 0x5fa73a1790bcb927, 0x33e08357727fb853, 0x0000000000012b } }, { { 0x2e21c88982732074, 0x13af75a61887e006, 0x2cc9f348c7907340, 0x255070f14afc8077, 0xdd6cbeb5c865f3f, 0xb13f583e96507751, 0x6523e62149750d40, 0x2c97508f426babbf, 0x000000000001e3 }, { 0x826725aa3b4b915e, 0xbad2aca9c66ab4fe, 0xb2bb4c08cbc416a7, 0xcafb852b5648a376, 0x4133fb9f5b9246a7, 0xb340390fdfccca03, 0xace2f0fdad2dc471, 0x48bdd020ce801f67, 0x00000000000141 }, { 0x5b39257cefdfc72b, 0x5d19775aa96ecc87, 0xde10600906b06f3a, 0xe4c2399a940e6a34, 0xdd8b863a73018271, 0xda39d34314bee01e, 0xbad687c0ea415d0d, 0x39c06acd2750a7e, 0x00000000000023 } }, { { 0xdb59da5f5727dd3e, 0x8f9656e7cc5d1798, 0x864c7109fba11b7a, 0xff8068181fdbe72, 0x470668a1f8d3df0f, 0x5ae06860dfbe8a1c, 0x37688bc54c0e6fef, 0x2c75b99bc8958f20, 0x0000000000019a }, { 0xd380e96d8595575d, 0xc1093c7ae2e8ecaa, 0xd25ad11fded6ea7c, 0xed26ac1a19f4f6e9, 0x4af8f55cfd8c8aec, 0x66bc59aa0034e914, 0xc9496c538cb93382, 0xf49a43d1a999e20e, 0x00000000000132 }, { 0xee14e9dec856eb55, 0xce20b970a40415ff, 0x59e25aca0d10558b, 0x373e34966f89f904, 0x57a268b2f3b485d5, 0x7f579a0446025845, 0xb89fa3cb7efef2c8, 0x8cc567087f7c03d5, 0x00000000000016 } }, { { 0x30d2b4141fd2b94e, 0x5679ed8a818fb6ab, 0x897958933fc49d6b, 0x1a6c5ede5e705c6c, 0xd240c7f33e77327e, 0xa42d7d61c7730088, 0xd5b1e6927c44b10f, 0x6fd68baf11ff3595, 0x000000000000cc }, { 0x346138a89e1ef3, 0x8f4b3354dd5c4d93, 0xa3cd4a2fd56dad86, 0x6e1bc1692d397bdc, 0x8c64309ba2986927, 0x45ea7c5157f644d3, 0xd9d6bd6a4ca5db70, 0x8401eba7f0531c5b, 0x00000000000006 }, { 0xe3dd9634f0b5853c, 0x9ae93be05f94b657, 0xd243a30c6e1f2a2e, 0xead9d9400021094f, 0xa24cffde8f88b423, 0xa563f1cb3b20447a, 0xeb932dbe63f0e442, 0xe8ca4d64dadd06dc, 0x0000000000010b } }, { { 0x229cb0f567f4d30a, 0xe3c4de7d923109f5, 0xdf577e4fee7d9866, 0x2da25ab66ba57407, 0xe6f81d505948b54b, 0x9fbc812f5d8a6b71, 0x724c10ea68c45439, 0xa7384387ca39ac52, 0x00000000000147 }, { 0xc1a0c8435e67b059, 0xa92316ed2ddf0da5, 0x823ff149d6ff82db, 0x1a0414184f4f8344, 0x1e90e5103205b169, 0xd12a67718b9bab9e, 0xd7b5bdf8caac1172, 0xb8196aaa99a854c2, 0x000000000000f7 }, { 0xf58932fc62b6eca3, 0x96be153a76cd66d7, 0x1f099053c7f54f03, 0x8d54c0a51aa37e1, 0xd38b2d57798883ab, 0xf8865b83e0628195, 0x85978652b9a48eee, 0x361560f43eee5fcc, 0x000000000001be } }, { { 0xcec254120ffad994, 0x5e41229a44b27dba, 0x579e95dfa59bc93, 0xb7086b54360cba22, 0x5031dc455c9daa42, 0xeb0c425c283ad05e, 0x898b599b22e19024, 0x35a454359126c141, 0x00000000000121 }, { 0xd783fce9a6ce93a4, 0x76a42048b4f2056b, 0xf25ad23d19a19611, 0x65c283f20ad31d92, 0xe29c04e597346104, 0x84ec96c05036eccb, 0xcb038127c19066c5, 0x180231860a69cd81, 0x0000000000016a }, { 0xb62a3f40edc287c3, 0xbdbd0577c69db628, 0xb145870e18098233, 0x5aba06a2015df418, 0x1a236274a59558fe, 0xe55489484ff17d72, 0x1bbd1a8b80911b1d, 0xe0b423f770a04dd4, 0x000000000001c3 } }, { { 0x85884ac87a445c7c, 0xbe2401b758d17522, 0xf491150e23239a1, 0x6c6155a2753c5ac3, 0x4a4331e6dbae6d95, 0xf627fd6dcbf6e437, 0xd4ebcea901b81fac, 0x68c7110ea9098d0e, 0x00000000000079 }, { 0x29acae1ac71690fa, 0xdb6e0c85ce6381f0, 0x93c4bb9c2ff83fd1, 0x8316870860a12d00, 0xc64dddf32ab4b735, 0x3adca16d3a5db93a, 0x7247d196439922d1, 0x8fc5639e9666a54c, 0x00000000000039 }, { 0x6061b50ce6035733, 0xd3a3d1c62aaa8f90, 0x2caffbafb2d2dd3c, 0x7393453def267433, 0x8b416324589750c2, 0x548dc59e14870e86, 0x740c8b55b7d38d34, 0xb78b071b71af0ab3, 0x0000000000010d } }, { { 0x5fd50cd69c1e1cc2, 0x35cf51df8d34328f, 0xbe6ff620f3afb7f9, 0x72377d11098edd24, 0xde40f74805f8c772, 0xe276d894b4ee32ef, 0x230cdecbdfff3b0f, 0x3d684abefaf24684, 0x000000000000aa }, { 0xbec3e6c9234d3873, 0x8c9b0140c6251c65, 0x8ff638993fdcd3ba, 0xab395a39fd7fa4d3, 0x1b231c5bc95b6f8c, 0x2d0e1a8decabfa48, 0x94d1358aaa78499f, 0x4c4fd2c52e67d9cf, 0x000000000001d2 }, { 0xdb0d0eb1269b5575, 0xecdd875c01c5c14d, 0xc9206ca538b4fb42, 0x103e000120b5fbf7, 0x640e24d0087643e0, 0xedbc25ffd5ed7ecd, 0xf0a309c49fa92c55, 0x7dc8061869f9d8bc, 0x00000000000073 } }, { { 0x487e8a867681c847, 0x4a51617cd5fd2eb, 0x43e3edd7ab375b99, 0xc46c1614b930b1a6, 0xc184b1ba5b8a8fed, 0x2649368eb913d8ab, 0x1136e754ca6f1690, 0x6e73dd9dbdfc1699, 0x00000000000069 }, { 0xf40e9a3d68d71483, 0xb8bbf7d95ea92adb, 0x64092e345519e7a5, 0xda80293e70b42fa4, 0x24242274fa700fba, 0x1f265dbfeca10d87, 0xa40d3a6dfb5ea386, 0x807630b7ded932f9, 0x000000000000c3 }, { 0x32c151f4a8c4313b, 0xfa0f9b913c5b10f6, 0x79ee9443625f4d88, 0x94b40a23f0694b82, 0xc1a9ae65308f9bb, 0x8e02073416efe7d6, 0xf63f4924943db76a, 0x772a242d1467170f, 0x000000000000e8 } }, { { 0x7f6f9ede7af4b74b, 0xffe7030db96e527e, 0x6ff617dbfb2c977c, 0x550b4984dc522a37, 0xab4563ca8729cd25, 0xe0e1daaa9cceb175, 0x4ddab350818ba2ca, 0x64fd1697e5b5138d, 0x000000000001f6 }, { 0x8aa0609dd216779a, 0x157016258429976a, 0x1bf82c2acfe8bb69, 0xa961d009954f4b6, 0x805c765cbc71c481, 0xd63491bec93bf845, 0x854a8d32cc550724, 0xd2f82a96b69f13e5, 0x000000000001bc }, { 0xa8503ae941a03dda, 0x425e6dab20d0316a, 0x6ffb60d163d1719f, 0x2ae73df64d31ccb8, 0xe14ad3ba083aab05, 0x46b2cc823b9d53f5, 0x16ac3558a5e3394b, 0x58c0fb668125544e, 0x000000000000e1 } }, { { 0x65e7de9a49c4bc28, 0xf2faae05f784b8ba, 0x58ffbf58980a3d76, 0xa555ecf8af656611, 0x574fb63708ca8a3c, 0x34558fa3e6f154e, 0x45203910cf91cec4, 0xd771d481c5c8351c, 0x000000000001ae }, { 0xe15700c9924696a9, 0xedca2287476169ca, 0x78f7fa53f0818fcb, 0x3f8f474ce534729c, 0x144ee6eb982b0906, 0x1e71953c9f1380de, 0x24adfe6fd42bda93, 0x616f0afc707f1a93, 0x000000000000de }, { 0x26b0a5e3cb6e8de3, 0xfdc588f082a3af75, 0xfce64f849a0b9e8e, 0x6300ec39d613c3bf, 0x77036633d9f8ba34, 0x984407d0327e16c7, 0x85a68a3664f7e1ec, 0x6041c60b3f5a5f35, 0x000000000001c7 } }, { { 0x82eee10ff7c5d2ea, 0xbc6e7478e7ddb5a5, 0x1ec688abd85d6f1e, 0x1a559f97348a8ca, 0x98cf477b9988b447, 0x22820422d06b671c, 0x486fd34fafab57cd, 0x1a4fe7bac4d5eed7, 0x00000000000188 }, { 0xcf3efa22d1e31c04, 0xf2d3070c13b2a8bc, 0x707b55efd0a46063, 0x5d81b6510213d7c5, 0x50b48dd2d8ab7331, 0x188a3ae0c627256f, 0x6eccd67730acc316, 0xf3db01fd74eafe15, 0x00000000000061 }, { 0xab58c5b80b12b674, 0x976028cddf4f8b32, 0xbf266317a9fa7618, 0xfb2e4117b08811eb, 0x781af4efeb9af1f9, 0x6ea4aeee3a4b74f6, 0xc3d6407af09d9c9c, 0x6b4e19da97a64c13, 0x000000000000ec } } }, { { { 0x5873fa02dc7a45a0, 0x5752b006ee778cb2, 0x4735bdba23c8c32d, 0xc5f1cba300e7ea7e, 0x244d0ac1f9854ed1, 0xad99a1588094e890, 0x58bdea452f95f2a4, 0x87fd22d972960db0, 0x000000000000ec }, { 0xc4da5a6045a1dba5, 0x388b2b93d12acd5d, 0xc385cb5fca512b76, 0x9139ae5dd0febb6a, 0x19d4250687344e62, 0x57d8a835937c70a3, 0xa0350b3894885578, 0xac6a7049df116297, 0x0000000000011c }, { 0xf4100482e7f92090, 0xad90e69e96d23958, 0x8566f327ccbeac12, 0xb8ee1e90642733e5, 0x843fa70d7b6b70e7, 0xf47a0ad3e47f3c33, 0xacc64006a6f55126, 0x5457de87fa626da5, 0x0000000000016b } }, { { 0xa78b8f940e5fd3d7, 0xb9cc4d6650362184, 0xde2c958d29f7b363, 0xa8705396efdbc60b, 0x770bf287ecb6bdd6, 0x6385da6c47bdfb0a, 0xaf5b9ea13aac121b, 0xc98503a27465bca3, 0x000000000000fd }, { 0xaa8947886b9a59e2, 0x4edc2c1afd3f17d0, 0xd59c32164fcead96, 0xb360f4da428824ff, 0xf6d21649296c1540, 0xde68834957f7b9bb, 0x8a18bc9a20e17fc1, 0x1af7688b487feab6, 0x000000000000a1 }, { 0xa8920de377348d62, 0x183a9c854465b808, 0x3ce2918a275661b7, 0x7d02418909a09c5f, 0x42753f0009f749fc, 0x134049c42e694738, 0x2d730f7a972f1407, 0xbf2a1c7e889d5bb4, 0x000000000001ab } }, { { 0x4a4518703336f231, 0x98c53dc7ae693f99, 0x90c1c3eedc125cc8, 0x8b743f18c31925d5, 0x48c7d3a35cd219ca, 0x8a9f738c69237624, 0x4d29821d668d1f0d, 0xf50fa93abae7435b, 0x000000000001e2 }, { 0x2704c99dac7e1232, 0x34e59b866e6cf2f0, 0x49b3ddaec9e50c29, 0xf7f8dfa5263fa2a8, 0xf0a606192e3d82bc, 0xf09a331b38d35dc8, 0x9ed40f37da4356a, 0x10d036da160d850a, 0x000000000000f3 }, { 0xee2fa9ad3c3d893e, 0xe85cada19eb9a386, 0x832b7040d053a3ad, 0xa3b83cf3b4d4f650, 0x8fffa63bf255fe28, 0x3fe83efb754f1058, 0x6366797169ff5648, 0x610948c7b213f6c2, 0x00000000000122 } }, { { 0xead0de7aef6a88af, 0xba7d470b0e0925df, 0x98793048d80330a2, 0x60418f1da2aaf111, 0x9414bb4be3fbcbdc, 0x279719b100bc9c22, 0xb215970606998939, 0xa36f5fdf00c9fabb, 0x0000000000015b }, { 0x83b69147b30d4031, 0xf1411ee1214a4f33, 0xb03090be4e48a2b6, 0x41ec58dbbbc2c148, 0x6aef8e310763825e, 0x30c3bab1670e68f5, 0xbd33500a4b759662, 0x47ea7967a4fca253, 0x00000000000036 }, { 0xffd5b395d411f2b1, 0x17e9dc5dccf2916c, 0x86f043da982ee9b3, 0x5632db77460fd46a, 0xd5cf90df2fccaa71, 0x5bab0db55a22a3c8, 0x41bd6fcacb34873a, 0xc61b9308d1fa3790, 0x00000000000180 } }, { { 0x920bbc62a957bcc7, 0x44f8975b2215c15a, 0x34a1425358630817, 0x8c404ead0684f8e7, 0x95cb6b5a03926ab, 0x1a50ebb41d53d5a4, 0x5e11ba7b17087d90, 0x48427fd13f8e3cbf, 0x0000000000013b }, { 0xdf17f4d236cadb6, 0x1bd90cf0f3687131, 0x7b9f6e52d72c38b2, 0xf3f3c26bcfa07333, 0xe228e61ac466d4f0, 0xccbd18bb270b5f6f, 0x26e36c5b6bed5db8, 0x10f5b4720897b2d2, 0x00000000000065 }, { 0x523a0ba67a199b15, 0xf11d392481e94ea2, 0x982ddaa442aa4744, 0xb2f98395721ac20, 0xffb8b4689e99b7ef, 0xbb73a1901ab795d, 0x20089e3347b07603, 0x1cb2a384a0d25c6, 0x00000000000094 } }, { { 0x9f48326a28fa9fb0, 0x5fbba563b74a175e, 0x1f37d47f058717e4, 0x7270c4e7f987cfe6, 0xdf94868554675f85, 0x204269e174066df6, 0x6a30d625783f2959, 0x45cc15c0f4070c41, 0x000000000001db }, { 0x61d0bcc2415a520, 0xed05cc9d20600379, 0xe0e261d63e58755e, 0x6a1758b16bf8551b, 0x97910d72a36f84f, 0x469afdcf753b7e5, 0xb052ed2c1de5ad44, 0x780c10e0fa5b184a, 0x000000000001f8 }, { 0xc68fa3235152cc31, 0x3d4c88eaec933ca5, 0xb67c31430dfc0bad, 0x20536a93ed6c2e8a, 0xe7ead1eaca3da496, 0xb87a41298a5eebf, 0x84843da8f09e13bf, 0xed61f8c3db537b05, 0x00000000000040 } }, { { 0x739c40dcb4495e57, 0xaef61eb1370a023b, 0xe22e31e161bd7bac, 0x13aae1a73189d50e, 0x1463443549bad601, 0x614734c38558c991, 0x93a5d55091b9d5c3, 0xe7f8a25db2749614, 0x000000000000fb }, { 0xfe37b6061b1dbf6, 0xa9703c2c90405b5f, 0x18b80f2fdaf99758, 0xd9d34105b77d8df9, 0x216352c95c4592a2, 0x1a14dbe5eb5262cf, 0x17fae9b28cfaf58a, 0x6ec3bbe3b4100c75, 0x00000000000056 }, { 0xf4bbaf2166390938, 0x1f22873af578b79c, 0x31b7c499238e4133, 0xfd9bc308c5f36cd4, 0xa0060fa9337427a3, 0xf52a538f7e1ced2f, 0x92787d2d571e5bae, 0xd015403d44d7f850, 0x00000000000158 } }, { { 0x6dd5eb89c14f0c63, 0x351c3c37589eb545, 0x3607ff7469bc6774, 0xc60c21c6d31821ab, 0xaed5ff6178c6965d, 0x454246cd2d335704, 0x6c049d3a774617fa, 0xab3b0f39e2e34230, 0x0000000000001c }, { 0xc71d047079192044, 0x7c0c9b88197d1e35, 0x167c545862b5706f, 0x1cdc641ccfe6a081, 0xacfda0780820d8b1, 0x7d2e7354d95f7942, 0x5387aecd1ebdb22, 0x9cd369bdbe68ef55, 0x0000000000006f }, { 0xa93319e912244bb2, 0x8fe9813541200c25, 0x45536bb2804073b, 0x904e6ddbb1486b15, 0x2cbac8911034fc24, 0x46bdaa40313d740f, 0x81aad3eb02f1bb19, 0x6f7dc8ded456605d, 0x0000000000012f } }, { { 0x913825a91757c659, 0xb765aa44a4465140, 0xa5fe4253a702fdc7, 0x607cdf7660231d22, 0xb2e02a32ae4ba3bf, 0xc32a7fe4b3458bed, 0x2c460663ea5f1a42, 0x7b81efe3018efcc2, 0x0000000000009b }, { 0xf1e130320f205224, 0xccfe768f84d8529a, 0x4d0017786c319bef, 0xd371aae68a9c192a, 0xb57c5a664302211e, 0x985c40c4abbba79c, 0x2b8450aecf056c55, 0x89686b0eafbe5802, 0x00000000000102 }, { 0xf68fea54b3ae2b20, 0xb9a5394158391755, 0xba5e33de9104f127, 0x2a5f21d3f4b854c1, 0x1a072fe16dbb5e19, 0x9d661f7682237ced, 0xdb48966b488fc453, 0x2d2ba3bacf250af8, 0x00000000000106 } }, { { 0xc5e7adfb76acb822, 0x3bf25171265cddf, 0xcd5501d6fdc1d4d7, 0xf3139dbd3417023a, 0x539e5837d1fadca1, 0x8568df356b7aabca, 0xe7a796ecf898ca8b, 0x39a9c5955be48e56, 0x00000000000062 }, { 0xc98491d0e1d5f11c, 0xaab300350ac86ed4, 0xb9567266d9948915, 0xc640b8a5357ff1a3, 0xc461a3a9f0008dc3, 0x9091e3483a7bafa4, 0x58583061355d4fc, 0xd65726b4ddab89c1, 0x000000000001ce }, { 0x84c9bdee287bb04d, 0xf5fafec2f459fc0d, 0x71dfc818842519f2, 0xcac15f3b4dc3fdcb, 0xfc63e98340eefe16, 0x9773cd2e59704334, 0xb1661ee858f05139, 0xe4b0d0abf21009a7, 0x000000000001c5 } }, { { 0xf714c30067f92b85, 0xc16d1f14d6efa965, 0xa7db825cef2fc0f8, 0x9d6c5d0bf72af3b2, 0xc120c40fa337212c, 0x993bee73d83245d6, 0xc1e66f270dc0f60b, 0xded1d35b285e0474, 0x00000000000122 }, { 0x6505381b5906d0d4, 0x67183e0e3b23a82d, 0xe9442d8b008070f1, 0xf860bf1f541216e1, 0x6c6e1f71f730145c, 0x972a15c04f39ebe4, 0xb2d6eeda434a4b79, 0x7a6903905b245264, 0x00000000000149 }, { 0xce21e0b8df308cd7, 0x7e5797b51da066e9, 0xedcc898c474df6d2, 0xc8d4a8f6f05549bf, 0xa8cfc8b2a29eba51, 0xc9bd7fd8253936b, 0xd7e6a014d68c0e91, 0xde6a5ead5e6ac42, 0x000000000000e1 } }, { { 0x22f57a93c1aefc6d, 0x3ab4ddf0172a5ae7, 0xc8c7ab1124e6863f, 0xc0f518dc659c074b, 0x5952974eb94841d2, 0x1ee7f17e9c99de37, 0xb6fe0d64f5e05463, 0xf8bd47f355a181af, 0x000000000000bc }, { 0xaf44342bb0fe8106, 0xfaa8f352d7b0e7b5, 0x7c9fe5ae35d5ab92, 0xffd7b441cb0d787e, 0xbd11b624e426e1fc, 0x5265cf74d7628ce9, 0x6d7a40152286c0ea, 0x91cd209621798462, 0x00000000000159 }, { 0xd40b8170274c7b7e, 0xbba97b9d647b9f2f, 0xa2ec67c06a1fe6a, 0x186ba2d7b6003bb0, 0x52f469bf4098a79d, 0xa2c2d008d7a5a178, 0x67f3447b01f58e, 0x9e1770a014c02ca3, 0x00000000000091 } }, { { 0x9e6125490444c9c1, 0xfdaf017ecd9adcd5, 0x217c3416a16529ae, 0xc36070b2ad2f3312, 0x916d0cf17c94c2d6, 0xb41f2bf1e5b5c63c, 0x8874d5bad7549f2a, 0x6b3ea15ee30a7b8a, 0x00000000000067 }, { 0x2d9505a20d890bbe, 0x41a0488be57a2ee8, 0x5168e7dc64b9bab5, 0x37a42db663dd40b6, 0xa8af1b918ddcc63b, 0xb87706bb73bb7565, 0x41e8c67bcee4fbf, 0x2cdb7222464d9cef, 0x00000000000110 }, { 0xa6c0b4b9b8ab9001, 0x6e9c13bd21a560b4, 0x49796d61c26e5cfc, 0x43f5b1e07a0dab0c, 0xd7886f47cd953708, 0x51ec3e97be5677d0, 0xad89b3ac90660b27, 0x4daffe2de3a0e7a2, 0x00000000000049 } }, { { 0x56c3c8301216ee1, 0x70f8d7688c8392fe, 0x207a73ccddb7299a, 0xae337947890de51d, 0x484cf2b882caa7f4, 0xa9846e618281e38, 0xd9089000cd79a910, 0xbe41e166c54889f7, 0x000000000001ee }, { 0xf27abbc0baa1faeb, 0xc0ca5146c61f37fc, 0xe4c8076434deaa1b, 0x543c0449097ffd97, 0x3466efe68778fb43, 0x5e674fbd57a21969, 0x338e58c08db5f831, 0xe9ac2b24cafeca79, 0x0000000000006e }, { 0xf72099165b55362e, 0xa25656b484ecb812, 0x25ed88a077c58e44, 0x95b4a61512cbf459, 0x9859dfee99117a0b, 0xc890d7d9f32b81ba, 0xc8cdf66f53e16c7d, 0x3f092dd1173ff0bf, 0x00000000000026 } }, { { 0xd4888107b0b9a443, 0x34049a20023ea142, 0x76150708c5c0d119, 0x1efd74604344347d, 0x3b5c1bf5afd7a321, 0xbe44f29303befdd1, 0x4c3076db692b8bdc, 0xee18ccbe6f22bd61, 0x000000000001bb }, { 0x63c9d4479c680773, 0x5e745a7564bf6fca, 0x1231a7939f96b7ef, 0x2a687d19a0aa1671, 0x5e9be726e494dea4, 0x98e9146cbf482b44, 0xd37074cf395e8257, 0x1c146e3bd1aeca62, 0x0000000000010c }, { 0x3460ce7e5c6d8645, 0x69fbcb4cc6e4d4e2, 0xda53bb0f29eb40d7, 0x86cbeecd515d6b0e, 0xce056de4da4f04bc, 0xc4acc735dbd8461e, 0x98b5b79e4fa4e250, 0xdb56a5624c513783, 0x000000000001cf } } }, { { { 0x6fbeedea6d62314a, 0x37cc36e5f57903ad, 0x2187cf7e26a04afc, 0xaceff391ae075be2, 0xca36e40c22d273a7, 0xa356dd3bb481ff96, 0x25d796ca3caa088c, 0xacf74d4c3b4dc12b, 0x00000000000039 }, { 0x7327f2218b9cb632, 0xaed2edeabadb281, 0xf9530bfa4897c34e, 0x6ab93c14c8f153a8, 0x3133878d4783ad11, 0x2226f39637ffb05c, 0xf9dfa3428ebf04b3, 0x6ef174d3652c7aa9, 0x000000000001e7 }, { 0x34462a74681abe05, 0x992a02da74197999, 0xbf418480d1ba137c, 0xf7b0f59a40ec35e7, 0x562c2b7b04fb5f35, 0x184553153bf4a67c, 0x90b014c6bfa325a0, 0xcab90b1485d8b0f9, 0x00000000000001 } }, { { 0xdea756b937053323, 0xd33f8fb535199000, 0xe15f00f727c5fbf2, 0x9d7d44fe66daea1b, 0x489b149501832e16, 0xff7b2feaba22be5, 0xdaf96ce6aa554556, 0xde637a77a2e145ba, 0x0000000000011c }, { 0x1ead6698a50ab08b, 0xeecfdd78afc63066, 0x39079d168e152a13, 0x7082b656b089d688, 0x4917ef1fad0172af, 0xa4e468272f56b462, 0x3e2ed2cca8248d2d, 0x4daae950615ff13d, 0x000000000000b7 }, { 0xa81484dac14a9a17, 0x4446f6388279e578, 0x8853f470e667f767, 0x702dc29401a2db16, 0x4c22566097219219, 0x653004c8b16f7f1e, 0x177d94fdcc2ff1d8, 0xf5ac1c5b54bdc2f9, 0x00000000000168 } }, { { 0x7213e236f01f1baa, 0xf7a9393eff727f80, 0xba6d1e69104531d1, 0xdc69618de2084941, 0xa16d9b6b24d5da96, 0x3ae1a63e8a422a1f, 0x59b924e60045f7ed, 0x6c1a8f231153c613, 0x000000000000d7 }, { 0xf0b262008e7b09bc, 0x794c35fda5ae7025, 0xdb3420869cab96eb, 0x3f4aa7c82c489aa3, 0x7822e6b9b3c4bf90, 0xe35dd8bef0c7dabf, 0xbf8b2238fc77485b, 0xe898a3f062d3d89f, 0x00000000000122 }, { 0x59ba2da69bf11c77, 0x2e29bff888d74e40, 0x809bcfbe63925fd4, 0x3ec0ed14f6400d1c, 0x8089ed89f8ec3668, 0x71e7e8fe153bfe7b, 0xbf903bd9b6c8be3e, 0x95f0ca0e6ff75816, 0x0000000000012b } }, { { 0x68695156c410df30, 0xdbdabc4fa444d29e, 0x8c4ddbf64c4cb1c6, 0xdf409643e568a8b7, 0x56f8235baf646859, 0xf3a5dac076db357b, 0x49e619b21b496e04, 0xb624e4afef891cdc, 0x000000000000fc }, { 0xf02e0aa6dd665440, 0xf2d4e11b77669efe, 0xe2c8e6d9fc340393, 0x4547713553d98300, 0xb1b047e7a2677b0a, 0x57e0e0b0947c22f6, 0x531217012c801d2c, 0xdf9a70fc39cce466, 0x00000000000149 }, { 0xc62f6d092fce37d3, 0x4497b30236fb5d38, 0xa7b036dde12b4306, 0x6adac8fec2921fb0, 0xe44548636510a7b5, 0xdf2cf99574746a8c, 0x5c666bc7f28a68dc, 0x7146c6e015e35a68, 0x000000000001d5 } }, { { 0xce2b95877c0f6318, 0x8e6970c8e1a9a4b7, 0x7539c4e05a4b9d1c, 0xb7be17972b6e1fec, 0x47023644a2a59385, 0x954984378d11f57a, 0xb5ccb3cf2174ceb0, 0xa0ab883a64bbdb19, 0x000000000001b9 }, { 0x5be2c72909fd587a, 0xc93472ea6b271ce0, 0x85d4854c43831ca5, 0x2ee52840ba850051, 0x8ab6c2af2f1ea468, 0xad33294fba2028c8, 0xaefddda1cb94b580, 0x7860e56eb35158e2, 0x0000000000004a }, { 0xf35f491959c4fef0, 0x8fcb5648caaff548, 0x50e8a5fbce6f6608, 0xaf38b66332feb4cd, 0xbc9909a90d4304f, 0xb9e645293404b697, 0xe637ef74415722e8, 0xf8b93d4da16fbc7a, 0x000000000000a8 } }, { { 0x9a85664336e8012f, 0x65f22e591099490d, 0xeda435f3cff5c340, 0xb42b75a451cd204, 0xa2da65ea706b5e5a, 0x602c880cf985e818, 0xedbd96e8ddc9a65, 0x924d7dc54035693a, 0x000000000001a5 }, { 0x2b0c40f00efb5a81, 0x27badcc7d21f3493, 0x2f03d7e9b598ec79, 0x98e2ea5304a0c331, 0xe9738013bcfb0b6, 0x73ef7485e6a68ee1, 0x1f445ff794e364c5, 0xe5752126786570d2, 0x00000000000038 }, { 0x69a13805f833e6c2, 0x974797321277276c, 0x17656d1cd02d8c70, 0x892d148ca69b3fec, 0xff0cc7ea4582b367, 0x3cca02136bb73b21, 0xaa3d4aac3e69e5aa, 0x4885994ea4ec55e3, 0x00000000000032 } }, { { 0xcf15b19de0caa5b6, 0x4e2b4e23bdbccd8d, 0x821075e20ca7b1ec, 0xb1ff4be3101eb0b2, 0x71f1cddf15d67d01, 0xc6d6eaa9ef2ef933, 0xbf77e8e0cef22d0d, 0x1e8fb611e6e3de49, 0x00000000000138 }, { 0xd59e2e9f941ca7, 0x3e855bce8fa7cb6d, 0xd443b9977a323fdf, 0x898d51a6e9c88c2e, 0x817fe881787ca07d, 0x5fbd408dc4627809, 0xdf15ee0a78c73b0a, 0xfd6d3a5bfb1aa5dc, 0x000000000000b5 }, { 0x950addce367ae09, 0x5c0f2dd24ca1b1ce, 0x94c5fdc52632d681, 0xae8f19b9c63f82d7, 0xece2b5e536c3150d, 0x43efb0a4b291d272, 0x9eaffe6b45fd4edc, 0xf5b44cfa3dd14882, 0x00000000000066 } }, { { 0x7aed8652d8457e20, 0x3add2c442aa3166c, 0x6b1acc4e0637e7c6, 0x1a8170b04dc149a8, 0x62d54d787840b1f4, 0x2a349800a244c10b, 0x6266f11174fd2490, 0xe09570d7a2a7e45f, 0x000000000001ee }, { 0xa07f5591ad2803fc, 0x4b89f05e1b2d5bec, 0x58d8c4809d7d0aa7, 0x36d7b4d38ded74b9, 0x637b8685596f4457, 0xda2683a1f8433c80, 0x38c679c7c89fc9d4, 0xc749f84bddc668db, 0x0000000000006b }, { 0x6b8f7e4595584e81, 0xc728de2c0f1f7844, 0x8610c951ba5d6c89, 0xaa3da03e3cee9202, 0x5fa53acedc3bc20b, 0x997dd4c63a5b4da0, 0x457836e88ed7f4bc, 0xc4519742388ee11b, 0x00000000000089 } }, { { 0xbd008ecf9206e569, 0xd6766f6ef26836db, 0xa25c5be4c795ccec, 0x17e8d9a37f1e9b92, 0xec5e3eae3e9e93a, 0xb55f4e9722782f47, 0xc362612ecf6aa0ec, 0x20f8f73034dc3e28, 0x00000000000131 }, { 0x92bf30e7e6b02d16, 0xa3859e731ef53539, 0xf36b412fb37f0f45, 0x8f0b3fc3e8d8c379, 0x3b1eefbf1806c2db, 0x38e7e2ffdf0c4276, 0xec8d4ca3caa262c8, 0xfbb4c04cd64f1f77, 0x00000000000028 }, { 0x44ef72cbb4dd7172, 0x6cc0a87e2b228851, 0x456cd3b57c5c7e78, 0x7cdafeba9c7c51c1, 0x23b20e7d35fce686, 0x38095e2f2611ad3e, 0x1656f71f06b91db, 0x8b3ea823262cdc33, 0x00000000000074 } }, { { 0xf012747bb7454bf3, 0xb4cdfcf404ad53a5, 0x2835dfe0233c06be, 0xf7cd359d1ea8bb67, 0x886fee2475bb7a10, 0xe85c8e3856fc82ab, 0x4b5d753762fe0445, 0x3c8f58662d12006, 0x0000000000010f }, { 0x8d68504b241175d9, 0x1bba4afa0098b21e, 0x94fbc34d96d3792a, 0x24e26991d26f9ec2, 0xeefe6d82ef97494a, 0x80b7ef2a19ef18c2, 0xb70d0b7d916cfb8f, 0xf3f610c9cdeb94d7, 0x000000000001eb }, { 0xe9cc10e36620a0e5, 0xd92016f46526180e, 0x3a17a694cf1316f5, 0xd2a02eb4d74650f8, 0xb2f6e750c5597526, 0x2606d81c68a03c8a, 0x2e97e42b53535bc7, 0xe0de2974848baae3, 0x00000000000126 } }, { { 0x76df6e9a6ce77ed, 0x6a2bf6b108e4501a, 0x5ab8b1d58c987a64, 0xceeaf55a575a3a15, 0x5b263a626a284870, 0x7aaa2dde06ef1f7e, 0x84f986419a5bb162, 0xf1ac2a4a8151499a, 0x000000000000c5 }, { 0x44b2cff98aa731c1, 0xa54f7119b2907b, 0x17d53219cb85580a, 0xaa41b46c30d6747e, 0x5b2beba790c7b361, 0x5c70eccae6f86881, 0x81b0d3bb825037c2, 0x6a8ee06eb23411bc, 0x000000000001bc }, { 0xbbb34cce4a801f8, 0x24e958072208ece0, 0x71f2e1285265237e, 0x12818a64e94226eb, 0xdd18ea657ab4ccd2, 0x2472bd415893b28e, 0x29024aa556e597a0, 0x3f317969c5d1be88, 0x000000000000a7 } }, { { 0x201e0b43574c286c, 0x68e7cc88e0d463a9, 0x786ba7c6f980d881, 0x52bd5157963cbcd1, 0xd2525f234ab8f940, 0x56658ff4fc76336f, 0x8bcd0624f937b80c, 0x9621d78020f2e699, 0x00000000000056 }, { 0x836ab67d39a98885, 0x82fc7edfeadb722d, 0xb92719a1a8ea8db1, 0xf2589509fa56a7f0, 0x7e978fc1780cb111, 0x85af913f8d4e79e0, 0xf4cb1d98d236047c, 0xc5f497d5f51265a8, 0x000000000000c3 }, { 0x6257b3593738221e, 0xc276129d7afa35d6, 0xe9a8bbc111b5b8d6, 0x7abe95ced8678b6, 0xe3bd5d6ed66b5f2d, 0xc227c210d87faadc, 0x51f7045e54cbb9bf, 0x75c6a5d0902311d6, 0x0000000000016b } }, { { 0xf3642ee9feafa2d2, 0x78c890148d614920, 0xabf501f807f95926, 0xde2c14bf90d22b65, 0xca2d458e5986f06f, 0xd83cf56bb7e1fb93, 0xff6e81d4ca2097d5, 0xa520a53e506baa81, 0x000000000000e2 }, { 0x5e8c4d690ab70d45, 0x74edd2e12e30801f, 0x6bf22646e32c9017, 0xf1e5f82d350d7f3d, 0x41bd16ef6a552f7b, 0x3bd78a42ab0a91ff, 0x66f4cb59e1a488fc, 0x7d032ef243a071f0, 0x000000000001b1 }, { 0xf0ff5e61c4195fa3, 0xc7e7e0fe1870c109, 0x8026e631fc70693f, 0x3fefd44aa5175222, 0x1d527256054d0836, 0xf2d0cca65aa9bd77, 0xb8fa6438e3470328, 0x73a9c411ba8d4a0e, 0x0000000000004b } }, { { 0x2e59755ec82e2b7e, 0xa837059c9f7b1b08, 0xf8ccc756a0de782d, 0xc84325e8e9b676c6, 0xe156a0acb50ff54b, 0x4a56f954b44e50fc, 0x97cb14090a3cbd5d, 0xd14c1aebee6b66a0, 0x000000000000b2 }, { 0x26ebc90654672d2c, 0xe611daf8d16ca47e, 0x366dc3071b1c22f3, 0x40bec28a70b6e790, 0xbc5ce641d12cd577, 0xa1192ce9bd011a8c, 0x9153644311ceaf7e, 0x711ae4fc1f5cd09b, 0x000000000000f6 }, { 0x92f613d9ab0843c3, 0x31b3a2c846c3abdf, 0x8adfc6cd5c4c4026, 0x42168dfdc50d102a, 0xb6c301f1b6628c31, 0x7df43d0917cf6c4a, 0x4008d860a989de13, 0x1e08a2a799f7a9df, 0x000000000001e3 } }, { { 0x6ca111b912f4fb1, 0xf546bea2b9162dec, 0x14c2979d16354019, 0xdbe9e5b65f4d2744, 0xd41a5e805adea8b5, 0x903ddfa33a516af2, 0x5dc95bae6911cc46, 0x67f0e6078567dca, 0x00000000000133 }, { 0x6376278bc624fb81, 0xd2e40a9a49cb76a8, 0xe474fede21b6a773, 0xd217d66392502c7, 0x924d3fca400481bb, 0xb10a6a4510e6ab12, 0x70a54215675d185b, 0xaeb34b11be8f37f8, 0x000000000000c0 }, { 0x9284d5a34c2c6527, 0x5eec8c8ec012561a, 0x951e00e5d705a118, 0xcc6b971ad63135b6, 0x3b66770fe72680d2, 0x6f3b53d93ab4d8b5, 0x8cf193962b1f16e1, 0x184a1afd2ecd0aa8, 0x000000000000e0 } } }, { { { 0x8ec05ce2e427c7b7, 0xff07b79f50e546ac, 0xed0350d0edbacdc7, 0xa07ecaeae41d450a, 0x5d7d80444b179564, 0xd3b5627c965058bb, 0x8ff3af8404f69b8a, 0xfcf4c07e1fa0536d, 0x00000000000172 }, { 0x6e72172d28bd2cb, 0xb8a2dbb819caa93b, 0xbce12e0d64efffac, 0x883897e4699fcd05, 0xf12c64c6224464fd, 0x7a4394f56401a920, 0x12ec206ab01de24, 0xd2256a13e5f1948a, 0x00000000000080 }, { 0x72394696068528db, 0xb88f0327160158c, 0x6a22777bc18a442b, 0x852ea1adaf83d695, 0x7e515c50bb051529, 0x99e6263f4d3cb2bd, 0x8d8d86dedc853e01, 0xdce43d8d068ed57c, 0x000000000001da } }, { { 0xc6c8345ed3c45d9c, 0xf671eee98c09674e, 0xc7fcf312200c5276, 0x33bb420410489b4d, 0x60d4ce52c634b77f, 0x39d425f6598aee28, 0x12bbb809770f138b, 0x69e6dfdd098e268a, 0x000000000000a0 }, { 0xb542fe9ed399e41b, 0x70a9d14f9e3e2ab8, 0x8f8b1c7a0e3a78cd, 0x30ac780f9235df4d, 0xb83d2ad8ae9e8a89, 0x8e7f416869dd469f, 0x3b2c20ec5961f36e, 0xf3e5878e471f9d89, 0x00000000000069 }, { 0x97f8234b151359cf, 0xb16c1fd1821112ce, 0x13990ac8d26ce45f, 0xe9443d0b8f8dfbc8, 0xe2de9beb9b76d91, 0x301dbf16cd13e27b, 0x81299acc1ab09183, 0x860ee5437a2c0369, 0x000000000000f7 } }, { { 0xb2b8885bb02d458, 0xa78801120d42de7f, 0xfa78c4818774c57d, 0x7d2a2f922d35ccf6, 0x136f3bee279aa0f7, 0x958d5043fece0aa5, 0x78aaff30ec2c86e3, 0x4742bda68f6ad85c, 0x000000000000c3 }, { 0xf0f488fce94d8db6, 0xbd7daff9fd9a255a, 0x12d9b760e7eb4f9c, 0xee968f29a34f3766, 0x145652c95483547f, 0xe7fd81d66da0ea5, 0x2c5a43ff471b6775, 0xee68f0200335b859, 0x000000000001fc }, { 0x3bb6a698d9d2613, 0x3d43a72237a6feb1, 0x4482af7a35748890, 0x83c43e6cbf3b2fc0, 0x16a26b3452a55b3a, 0xaed4d7767dc7cacf, 0x7d1d94e767359caf, 0x3bc514db8e5a53aa, 0x00000000000085 } }, { { 0x87aa4892d2ff5763, 0x225cf6ac448a1a7f, 0x4d74a4541b18a24e, 0x8de6fa246b3ffb5d, 0x60dacec4d528ea5f, 0x244b7844c206dc07, 0xfbad7805c4d511a3, 0xd4794c858e9479aa, 0x000000000001a3 }, { 0xf3fe32581a7753cf, 0x5a3342e72edce476, 0xea2869fab873b662, 0x6d08906189d48286, 0x89b1be12d3721e1b, 0x6417787126119082, 0xb84aa42001c5e67b, 0x76e3dbbda10676d0, 0x000000000001b6 }, { 0xb6808c683e7dd16, 0x5277e3b8f78992d2, 0xe215b32afdeb84f, 0x79d6f0584fa8a7ba, 0x10e9fdbb4f828a17, 0xee54a991587c164c, 0x49b0982b4a011f51, 0x7dca78241190f637, 0x00000000000199 } }, { { 0xb243933a1fa3d8b9, 0xa2af4cbfd6833046, 0xddc19916f6242585, 0x6a9a018c0af1cc17, 0xef177aee97f9322b, 0x7bac103ce4a82ed7, 0x9321e5e00f7e98c7, 0x731ca720719e6d13, 0x000000000001b2 }, { 0x331e95d64b441f62, 0xe7b1f0e4dc31bbbc, 0xddb0d7addf692de6, 0xc393734ba734299a, 0x280a431c04cb7e85, 0xc3c16a421518cebe, 0x9ef9d2143b3563c9, 0xc181688fa71aac1f, 0x00000000000080 }, { 0x60c107dcd1a20146, 0x426df8ef032952b1, 0x98cfad4ace39dccd, 0xa44b8d1db66e7c44, 0x8e760f24f3370b65, 0x6e10e8d153d92a8e, 0xf54357c0b9607e56, 0x5a75abc707986a18, 0x00000000000070 } }, { { 0x7410a959d096ba9c, 0xd721017035cbacbd, 0xf11520fe2a9d5b9a, 0xd202e0a7b0e0b111, 0xb65a6a1c7dc6ea4a, 0x20efd735da54affe, 0x3941166a6789e514, 0x935c07863fd05bd7, 0x000000000000b2 }, { 0xd5339f1a44512053, 0xda1f59abb1e6a9d0, 0x61b6081ee93986c7, 0xf71bf11aea6220cd, 0xe361535d40246dc, 0x4a69002a2563dd94, 0xf6f98b126c4936ea, 0x397d6396700e094d, 0x00000000000023 }, { 0x891eee9d1c3a858d, 0x45111cd668b31dbf, 0xaf19ab60007910dc, 0xac1f01302c1665b1, 0x8b04fb28f9ad03b3, 0x1c8ad30a4b44f97, 0x38d2df32d7bb3ae1, 0x13ea7ff1d85d6804, 0x00000000000065 } }, { { 0x74eaebf2448e6b5d, 0xa9c3b313ee0a91b6, 0xacbc14aa227a6909, 0xb120611a43252f95, 0xbf1d1cd5c7eb603, 0xd74c5e7e484d6e01, 0x178cb6ec0de09dae, 0xa218e6635a1015c1, 0x0000000000012e }, { 0xb4e5d7052a8d677f, 0xe0c59add237276e9, 0xf3a5e78cb131656e, 0xcdde014e91bb341a, 0xb661d6e91957c1c3, 0x45165eb0d0dd07ea, 0xc184981b9c166ec6, 0xd84f297c19005427, 0x000000000000d7 }, { 0x3e367b814254143e, 0x73981e9cf3e1579, 0x578ed1b831171c5e, 0x8bbcd1e902246ee6, 0x2a7057eedf7c7cd6, 0x5a27097884ed5a9c, 0xeecba02ac015584d, 0xb47d2b32b05743b, 0x000000000000df } }, { { 0x82ce0ebd475fbbad, 0x6976b006ca7afe22, 0x56205ed3e3e15e5e, 0x8524cc05d13eeba5, 0x7a4c70fe92b5d8fc, 0xf8d5d9106d48ca7c, 0xe7ea67a15ed676b5, 0xa4bded1412ed8f3d, 0x000000000001f5 }, { 0x1912c6f462639242, 0x39daff94b656291b, 0x71d687ee21604baf, 0x7f743711fc0ff7e4, 0xad8cf54e1a697f35, 0x2aa6b5fe833e5a27, 0x6ad608faebcbe2b6, 0xdca93e72fc263938, 0x0000000000004e }, { 0x89f027a3f7dc8cbd, 0x2fff3cd76a1460b8, 0xcaf39832fefd8165, 0x3f546c2b43a5d6f6, 0x8d97e56ff66ab1ac, 0x82d0e6224548f917, 0xbec2f819cafd514c, 0x6fe0af253066e176, 0x000000000001dc } }, { { 0x67d24f9a8c11dc50, 0xe591bcdc5a2aa351, 0x5e39edfe6b0ab309, 0x791b24f3e3fa752b, 0x265d8ae748982f30, 0x5e8a1a348106cd81, 0x663816f7e7b46c1f, 0x476e2ecae81704d8, 0x000000000000a1 }, { 0x82b6eaaa533ca461, 0xe117878a35173e3c, 0x3b1a5b338967902d, 0x7efeccbfe7b9fff8, 0x4b6c60decf185e9e, 0xe29b0b667b118aa9, 0x6edbd4d94802e15f, 0x7fc8ede26eff20f1, 0x00000000000081 }, { 0xa584a1abe26a3dca, 0x2079645bcccf1d06, 0xaf9633bf008b3f7a, 0xbac4db201b068149, 0xfb5680d15e7c1427, 0xd64d57df8b4fccc7, 0x5e0c75e2ba8c400f, 0xe2e577079b5288b8, 0x000000000001d5 } }, { { 0xef349a2064a14372, 0xbbf2451c27882161, 0x7464f810f36bd006, 0x4ef3a81f0ddf21dc, 0x2f0c649c6c16fb6f, 0xa1687ba0cd16513e, 0xf4ec2b3d1fc21385, 0x2e5d0079cf077751, 0x00000000000139 }, { 0x9169b27368735838, 0xb7cbbba96a7f6b9a, 0xaa896135d3f8aef8, 0x6bb371c6c8d73b4, 0x4f98a72c1dbacf02, 0x42301d0400bbbd99, 0x98a19b574a2d1f35, 0xfd15e532c9fd78e6, 0x0000000000000b }, { 0xc8fdd5b299466dda, 0xb54a294bb8103237, 0x4c27e94a96f3f5cc, 0xca6d6f50f4ffe1c8, 0xc0fa0a24151b8db1, 0xad45ee90552f80ab, 0x51ada848b41e7a6, 0x132e53b25acfec7f, 0000000000000000 } }, { { 0xed848cf18530c705, 0x3e35571e619e073e, 0xe38428a36c540027, 0xb2021b9b572754aa, 0xc1c73fad6c4d4f54, 0xde4ff0b6b2230bdb, 0x5a5b2206c054f197, 0xe249a09277109302, 0x00000000000128 }, { 0x2ce85a9d2638f8cf, 0xc330bc94cfbab0a5, 0xda2b43e1398386b8, 0x795b8ede10113951, 0x48c57ef0025ef066, 0xf6d58df48d738569, 0xd59c5107b63bce12, 0x942fce4b2f4f4dfe, 0x000000000001d8 }, { 0x56ffe0679b0ab832, 0x3d7f3ce42e127406, 0x8bac0dad9dae6fd6, 0x159a031d7d639205, 0xad1149f715fb29a6, 0xa47ce849efc5fcfd, 0x4fd49cf6e5a08914, 0xe21e14146c1341e1, 0x00000000000027 } }, { { 0x37db326c0904b984, 0x2213ef570c2d80d2, 0xd61e1389a5bd5710, 0x6fe796b46189c1a, 0x7e585239e076b026, 0x19d709ea9388d41, 0xaf25ba51b8cb8fc9, 0xeaa89316db8aa4aa, 0x000000000000d5 }, { 0xe0ee7caf2efd8922, 0xadfff6a3a8c9cd5f, 0x412c69dd0e64d612, 0x92e5362b1e7762c8, 0x1fe845d9730292ae, 0xba1041f5e4630890, 0xb49f526394840ae4, 0x6b8c2aa39235d1b4, 0x00000000000081 }, { 0xfe5736162bb1488d, 0x8d30c6170479a6b1, 0xa16249d005ebc73e, 0xeaddd93737118605, 0x73b851c6eba38002, 0x4191a8ea20f23503, 0xbefbe0d5134b50d4, 0xe53d33e2de6ee18, 0x0000000000010d } }, { { 0x1ed14f7c28516f0d, 0x5c18a4ec8a637834, 0x246e6779f9115332, 0xfe75d37a0194f7c, 0xd431da2410858768, 0xe3ff7d8468cdae8, 0x4599df90c99c6061, 0x33d95cde3e57d989, 0x000000000000f9 }, { 0x25b81c50940449d7, 0x69b3953ec32beef8, 0xc4d3c93af88d3eaf, 0xd2af5ff6d95f1d4f, 0x3ef2adf7c86d3fc8, 0xc77d663fbf3e2e4c, 0xaa9285e84d413e4d, 0x2063522108cc32f8, 0x000000000001b2 }, { 0x695f4e4c7907e0f0, 0xc8da03e328f9d570, 0xa943136e2022c74, 0x4c3f399e299ae7ab, 0x645eccbecb90a482, 0xb419df7fcbf45f01, 0xff47638dcc7caef3, 0xe7f8ebcc4f287b84, 0x00000000000016 } }, { { 0x9fec7fc12528bb7f, 0x80ed2698767656e0, 0x27a90615731af171, 0x89a6d4c3c5f48956, 0xff41034fb5f1d4d4, 0x9641e9564d252157, 0x54602fd024f11c5b, 0xd4ae115f62c42285, 0x000000000000c6 }, { 0x330ceef9e42655fb, 0xff760b04bffd5801, 0x6c703667c34e1ece, 0xeb97e2ffcec8e0c, 0x75a6e72f8512afbc, 0xcea67457e5f24a1f, 0xda549772c37e3eff, 0x5671fe4e3e1821c, 0x000000000000c4 }, { 0x42fc4fcae7ce5f1b, 0xc71363abef9808a, 0x2b2921bb805fb2d8, 0x81e9a4d3fc94c77, 0x33ff3aace3663214, 0xcd79a90a5d787f0b, 0x5fbab95171716b5f, 0x693cc57bc01414f2, 0x000000000000d0 } }, { { 0x86eb89f88a74e18a, 0x34ce415e71146082, 0x147209c78996627d, 0x63cf8ace250e1b86, 0x4ee210e235a1655d, 0xf379a13beeb68720, 0x6e1875371dd6c5cb, 0xa53c5e02227ee008, 0x0000000000004d }, { 0xde53012e52e23845, 0x849b803e889f866d, 0x2fd0758602864331, 0xc02797ffabcca587, 0x442fb9908632c775, 0xc194bfac7e0f812d, 0xfe3b523db9701cee, 0x737e9c2f644ddc1e, 0x0000000000010b }, { 0xedc0343af3a7564, 0x37a7ede61c93f696, 0xadefee35ee4579d1, 0xa8f5f539e32be824, 0xc4fc02481f4e117c, 0xdab7c27713d9862f, 0x17d37ab7c8f29179, 0x3c04cf9f5ec4e9a9, 0x000000000001b1 } } }, { { { 0xebce685832caa392, 0xb8e13e511e3631c6, 0xeb2c27d31eb10756, 0x5f2a8eef7e6f7b01, 0x47d611eac09953dc, 0xdc02d55c27459ffc, 0x5966fe5e4a7beb2c, 0x9208789508b73604, 0x0000000000000a }, { 0x76bcb3a229407f79, 0xdafb0433a5ea0070, 0x9df4c981f2f6672d, 0x8f76188fe85ce7d2, 0x7bdbc210b535d6c5, 0xaecf3c2f9b27b21f, 0x2786bee20c8ee058, 0x1ff02df26dfc3e39, 0x000000000001cb }, { 0xe6b0958f5ad78775, 0x6c238f5d7b7e7dd1, 0x95b6484a838c971d, 0xdbf27b66f155bca1, 0xcfb97796603b2b10, 0xc31ef4672ae32f37, 0x86af43b0ae68c3fe, 0x630e4865884678d8, 0x000000000000bb } }, { { 0x2b81d7cb9dd44273, 0x9b46d7aefa1ef328, 0x1d41c8d75a1b378d, 0x961ee405d399d4c3, 0x8fb405bc27432379, 0xc191757f5860e3c8, 0xcc98fe7531bff651, 0x97f64625bac40c40, 0x00000000000017 }, { 0x24350d5a6cc83d5d, 0xda619a079082e21f, 0x79248b295bf6fb39, 0xdf0414afec8587f3, 0xc24785e3c6d47756, 0xed593858c1f34111, 0x4b31dc9b6920fd1, 0xc5beb24ecd5c74fa, 0x000000000001fb }, { 0x95d66811d733eb1e, 0x2c43184b1168d8a1, 0x7d8b93ba4cfa5778, 0x550510fd9040156f, 0xae7fc1d1be9c2035, 0xbfd8a6bee2f763e6, 0x702aee2057dfea02, 0xf05c8ac9d662e164, 0x000000000000b3 } }, { { 0xe25bac3ba2136dd2, 0xf01049ae4faecbc2, 0x98eb70a80a014310, 0xebf79c09e59f28e9, 0x984e273dbb3f8623, 0xffe6dfcaa39954a2, 0x2ef625fc9d8f3cf7, 0xe009fe0628513171, 0x000000000000d4 }, { 0x694d107e70f559da, 0xc088b945c08d776a, 0x91b25b9590f2d09c, 0xa04754076630d45e, 0x4866bf57f09b67d5, 0x2b6dbcc355e9f05f, 0xe7b25cf7b17b1030, 0xde047864902782e2, 0x00000000000087 }, { 0x72ec498575ca9ee1, 0x676299dce232bf98, 0xebc0d295e611427c, 0x5b1d567ef6ac4be2, 0xf353306b551d6b7f, 0xb0a90c431cade12f, 0x4b8b8657bed34137, 0x632d097b90ee45aa, 0x00000000000053 } }, { { 0xc7837785c00f9df3, 0x9f689ea20e70a786, 0x6f26545dd8b4a3ab, 0xa6a837cc7648b1fc, 0x187bce81a9aff4a4, 0x7a4f3c307c52c51b, 0x6ba0077d2893563f, 0x32e6640d4bd30d78, 0x000000000001c7 }, { 0xaf8181258bdc821b, 0x39debbcaec45f3b9, 0x83573dbfdc0c57c6, 0x5169387a5cbe1fb2, 0x6857ddabcc10a7c3, 0x513671b6c0ef2b57, 0xed3011dbe706bc18, 0xac15a92b94a6467a, 0x0000000000012b }, { 0x40bd2bf3e4bebb36, 0x2666f50858cbf30e, 0x82d8052743210ce4, 0xf9414e59c7739d7, 0x5fd7da4053fe90b1, 0x4ff362f1d0fdef55, 0x8dcac32f58e64f5c, 0x4acbb8be3461d2fb, 0x00000000000141 } }, { { 0xfaf744ed0d6af8c1, 0xc82954d0fd1abfec, 0x852da1c29bb71aa8, 0xa1e3263557e9578, 0x98b4403f52ef5707, 0xaf3480d8156f8c8f, 0xd801f05f3f0597c8, 0x27b5b04f2457ac24, 0x000000000001be }, { 0xa770c445d8b0ead9, 0x38ef088a9323a0de, 0xaf68e6356555dab3, 0xff932be0155c0a2d, 0xbb03b48f6f8fc8e0, 0x28db46d0b567016b, 0xc52878573d13e02f, 0x66f1d76905839ebf, 0x00000000000079 }, { 0x1cbf181198a7c327, 0xeeeec0ed5099d9fc, 0xf41f6b2c9a5bb9ec, 0x2f4104c9b51aaa5b, 0xb9fac7a199c8262a, 0x93a3e20e6f5ea05e, 0x55db2326a8eb66cf, 0x5a06fa0f25218d04, 0x0000000000006e } }, { { 0x19e5bb217462bcda, 0x9a3445ac73fcbc0f, 0x4550d0961238b5d4, 0xc34af65e463968d, 0x8baaebb594b344bc, 0x1e4903fd1650151c, 0x5a240263c8199de5, 0x1be676a29f8b252, 0x00000000000186 }, { 0xf7a59d20109d8ea8, 0x6d72c59f960e5c26, 0x5973a7e6bb5be8a1, 0x130023f20086b307, 0xeb48ff0bd2ef8f1f, 0x8360e1a48b05dd2a, 0xd9ea8618c1ea636b, 0x42876ae329d0af55, 0x000000000001ae }, { 0x64950935659d3e82, 0xf5533f5b88d9fe45, 0xc33e398d26ad38d, 0xb73868d7ce21dab9, 0xf2d7240f1e0326c, 0xf5ebb41192f5a7ab, 0x8abfbf4d40256572, 0x1d09d9b751c000f8, 0x00000000000115 } }, { { 0xc10aa830ba0308e, 0x9d243b47e5d8fe35, 0xb280eb35529a5377, 0x5344665ca6737372, 0xbfaecc67ae4863f2, 0x8632c6260d3c9819, 0xb2173e4eb76e3110, 0x2a70d5a7411005bc, 0x00000000000016 }, { 0x8edfd64beb0118f, 0x9b017de316c4d487, 0xfc0295c146ee8b8d, 0xb34ac72597053f53, 0x20d1caa5f75bf57a, 0x5eb86bb4fb93628, 0x97b39c61628db795, 0xc60821c02702f359, 0x00000000000100 }, { 0xdc3f90ebc214cf03, 0xc4652b3adf4259ed, 0x726e496df7ff6543, 0xe7a8c157e9abb117, 0x9b16a62e80d02146, 0x132b376d1ef30d2a, 0x9ccdaedbeefb5bee, 0xac8451d72dba08fc, 0x00000000000002 } }, { { 0x10739fbff37e98f2, 0x4d50a83c6960712e, 0xc451c215b1b042d, 0x23b192502564e48, 0x49dfe51c768408bd, 0xc909e716af38463e, 0xc4f7a7d999ef7f7, 0xd9e188d1b94b32cd, 0x000000000001cc }, { 0x1fb173f61398b7e0, 0xcb704f35a1c9ff31, 0xf86f1a81c889cdb0, 0x5fdd4f0fdae1def9, 0xfb1631444dada872, 0x253f059d6de54514, 0xa10069684ef47ae2, 0x82957530cf6c3cc2, 0x0000000000016c }, { 0x7dc257e8a8778740, 0x3e05aa51668414ec, 0x83278c559011bb17, 0x9ea5cae15e92729c, 0x9c0eec01fb6dca89, 0x1b958e696523623e, 0x7f80c5c7a3895ea0, 0x38cd06944c773336, 0x0000000000015f } }, { { 0x784a399f0840a3a, 0xe184733703631159, 0x1673bebed67c5779, 0xd33ff138ecb30704, 0x5452eb6a58f37132, 0xba88d11c836a53b3, 0xe31295fcacea4b22, 0xc14d40402f865920, 0x000000000000ea }, { 0x8bb0a657f63ce190, 0xe3fe29622972da14, 0xe9caf35af8009f03, 0x970deb03a77717ff, 0x54c19ead2f3592bf, 0x23e97ff1545843f6, 0xd68f6903d934c85b, 0xcd7d53a872badd0e, 0x00000000000128 }, { 0xeb8cc6402e4a2b86, 0x998865a70bd242d2, 0xad89682a54228705, 0x670886ec0e9f77ab, 0xad3ae3072a244d69, 0x48c45eb7eea90937, 0x9c0292ba1219079d, 0x161ed8f1ff070ed0, 0x00000000000036 } }, { { 0xb40a69558a3e625a, 0xefc817774987ff4c, 0xcf735470580490eb, 0xf04810f6a5f80eb4, 0x86a25cae943be2c2, 0xea9aca0a8de68289, 0xf7d65c678c118960, 0x76221f07700cc194, 0x00000000000003 }, { 0xee3ae877d6c74c71, 0x39b85edc48207dd3, 0xf870cf0e00753f7f, 0x281923b3750d8ca2, 0x85ef872d07e234d5, 0x4f9625160853c585, 0xe186a4b59039120, 0x50ebb734a46eae25, 0x00000000000190 }, { 0x3bdfd446fcc280c3, 0xe43656608d5ff9e, 0xe10c37dc822e7b0, 0xb32aace45e8af31e, 0x39b0eccadf3181f2, 0x98c1e29326684951, 0x6a52737b7b21177e, 0x61916e56aec370fb, 0x0000000000013b } }, { { 0xe5785990fec9ea07, 0xe598d642e78cb383, 0x1d41e5864fd02f1a, 0x584d5c3514c3341e, 0xe4dc7a6460e802fa, 0x46c7bef8cbc3d255, 0xce1011cc1ad0c4c8, 0xadc41a1374a33d8, 0x000000000000e6 }, { 0xb41e720e33cf208a, 0x242b285c562d7ad2, 0x23e9297b1dc60451, 0x4c7cb2f89f1beff7, 0x5cf0f151ec9674b2, 0x9b596704004a037c, 0xa6e87b9ebb206d0e, 0xcfd88e7d6c5147fe, 0x000000000001e8 }, { 0xbc315d69ba138f9b, 0xf10ee1694e3a3e12, 0xecdde860ac7712e3, 0x81d4fc829c54b968, 0xb2cf1be3093342ed, 0x45c5a6f67d963c22, 0x25e244f4caab5785, 0x506971648de5d9e0, 0x0000000000019c } }, { { 0x6337ba7c9f5d79d5, 0x5e813094cf5c3abd, 0x8f2578aa0b2ac9e8, 0x2b150f3a3b549a2e, 0xad5ee56be53b32e4, 0x5f24bdd54c26054, 0x9dc76f5fbd84718c, 0xa8c12f2b8c55fa01, 0x0000000000002d }, { 0x10f1c392eeba141f, 0xd871cb5e76e7935f, 0xcf1e65377fa7300e, 0xfddf62eacc5a82a3, 0xd17a18af8870ffe9, 0x9453fd2aa7d23ee5, 0xa13137b71880fea7, 0xb7a8c73a0f9869c8, 0x00000000000099 }, { 0x2fe461c3256ac783, 0xe49523b5ecaf654c, 0x1011d530162f5724, 0xf84f0e768c0158e9, 0x35a436210466c37e, 0x2a468792aec25276, 0xccff419328c5edd8, 0x331d8177279d875f, 0x000000000000a7 } }, { { 0x38a4087a927d2135, 0x1781adb6897223a7, 0xb779d575df7f9562, 0xfdef082a176ae895, 0x677eacf2a0e3c56f, 0x6b2c42450182c0fb, 0x8f37e8abae82bef1, 0x39f6a1625437f867, 0x0000000000012b }, { 0x9523460372d16160, 0xc7093ce3a787917f, 0x114e0426c1994d4a, 0x1a328c8f605c1ce2, 0x68475d1c1d06c7ea, 0xe3de6125f4799efc, 0x48b55734f67813e2, 0xf6ac923f53053239, 0x0000000000018e }, { 0x36e42b97beefa59e, 0xa0eec145abb05b8a, 0x7ca57b194bff3490, 0x9b69a039d3d9b53a, 0x18808d0291139b07, 0x8c20a20fc42b7be4, 0x4fcb1e66520f968c, 0xe614e19bebbf4495, 0x00000000000066 } }, { { 0xa48e41bd8549e620, 0x405d9c1705cda3ee, 0x1facc6e19c473618, 0x4703311fac81ac7c, 0x58543cd088f06a8, 0xbc901efd9d9d293c, 0x7fd3f34708f73a00, 0xbde33b9f48b48f93, 0x000000000000df }, { 0x6b8bef2198360f8c, 0x6cf1731c991c9268, 0xeb6ef75b05261cd3, 0x3aea9e3e284876a3, 0x44a7ce940790babe, 0xb6c354cb9589b5be, 0x9726304815c20b7c, 0x426bee4d7a4ed477, 0x00000000000112 }, { 0x27d98e61ddb07dd9, 0xddee3ce72bb43e05, 0xbc56687eb466afcb, 0x4b054ee129461cd, 0xca486e32ead10f6a, 0xa1913c3a2eefbd81, 0x46df3a664e7ec0e, 0x1c3d04d876d3a3c8, 0x0000000000008d } }, { { 0x67414b0c109d09b2, 0x54c3ce3a30148969, 0xba16128bc5067993, 0x194f70f34f0eb97d, 0xf7e58acbabd64b0, 0x80d1a310ec8f4dae, 0x287d2af99195a5b1, 0xa6889b78686a87e8, 0x0000000000007e }, { 0xce4356fe826756ee, 0xea23da5be92b7620, 0xf297a3cc2200b6b8, 0xa85852738c4c7f8, 0x7209f256d26789b8, 0x1eb3af9580e068ba, 0xa9fc6f9780276532, 0x1b1ff07dad119c22, 0x0000000000013b }, { 0xcff7f8bc90c342a2, 0xc103ed31ed932fd4, 0x4b2533da4335f9eb, 0xda2b1c987206ac1b, 0x910ad37556b6cf2b, 0x8a6e2db13b9f4b52, 0x92c54d0351e2896f, 0x7b03de304fb06f41, 0x000000000000b7 } } }, { { { 0x399cc51bff3f197f, 0x90909445511a8f72, 0xdd06490036857e85, 0xee12c994100b93c9, 0xf977e20048def161, 0x9baa0d15a521977e, 0xf51bf1cad73ac778, 0x5de897bc9a3a91bb, 0x00000000000017 }, { 0x4b405408bb01a521, 0x3394dc96aba8a329, 0x1439bb183666bfb1, 0x8af5d341991d60d4, 0x1136e2667b995bbb, 0xcf662d787686c3ee, 0xb90dc7bdb873dff9, 0x41f693a568bdda25, 0x0000000000003f }, { 0xd947135626ca34a1, 0xeff8b045dff43f77, 0xc5794cbcd4fa6761, 0x7294b0a5e3d59b7a, 0xdfd586a417b41586, 0x7210d6c23ffe752a, 0x7eb48b62b3540d87, 0x85cad80a88c0d965, 0x0000000000019c } }, { { 0x7123fe0e1d6f9958, 0xcabe0e885002a4b, 0xf258caa283a24867, 0x2d068beacfe9e836, 0x415b3c83dfc47312, 0xce71a3224a9f60db, 0x6ff0081c8878c54e, 0xf840968a7c049793, 0x00000000000030 }, { 0xa51199ef59b9e22f, 0xb53dda9950e03f8, 0xd2ebc4626fdac703, 0x23b9bf1cba8cfbdb, 0x8152d23cfe1ee421, 0x7c6b8d154a6fe621, 0xd6e9e377d773f33a, 0x5b6220b61297faf3, 0x00000000000106 }, { 0x362dd4457d66709d, 0x33718cf2f7af66ea, 0x50cee82622ff7c20, 0xc2087a542fa432cd, 0x362217dd8ee9e7b4, 0xb896fe2fc2ee419c, 0x33371c3b37a3814e, 0x95f1870064fd3511, 0x0000000000011d } }, { { 0x9350e47daf7e00b2, 0xe2bf7c0a0e5aad21, 0xca421b3ac5ad56f8, 0x5b56568983ab4370, 0x6e29a93ef86fc514, 0x325ab1fb065a0fa3, 0x6aa7f429d69033ca, 0xc0876e3073c3767f, 0x0000000000008a }, { 0x5ce1dfcfd776194a, 0x8ad459b592aba99d, 0x91dbde3fa71fe0b8, 0x9c20eb4a0a2cf340, 0xe1f05f056a8ec57f, 0x1d9ef849906448dc, 0xef6fb11ea4f03f45, 0xdcab6eefbdc03135, 0x000000000001af }, { 0x273e1df3ec061459, 0xd907d9630a73198b, 0xb34fcfce04a1013d, 0xbaa1320ec7912e9a, 0x42a35e072e036ab7, 0x52c15b33e1cab5e5, 0xe7965aba560ac9a1, 0x9cb4457f95280dfc, 0x000000000001e2 } }, { { 0x55a3359b6471298a, 0x253df813bec23269, 0x8baf311a28de2970, 0x7508633b5d7d1c9e, 0xbdf6bf2429428715, 0xa7fab6d10fb1cbb0, 0x286109c893595aa9, 0x31f1bb1718b0c53b, 0x000000000001bc }, { 0xaabe3d5afcbe6836, 0xe838e78a7e4c7173, 0xb1b40249f8ff8211, 0xec4a7f152fa34490, 0xd0f291f0a0952b36, 0x6c0c963406b6cff1, 0x2cf18234080d846b, 0x9ff2697cf04b94a5, 0x000000000001db }, { 0xc8dd4935912279b3, 0x274d450d4514c00a, 0x19efe005cd4925b8, 0xe3d431d1ccbf896d, 0xa8178c2269b22c8a, 0x8de7e9677f1062a7, 0xc5d90683e4cd95d7, 0x8c52bba1eabe68a1, 0x00000000000101 } }, { { 0xf7773a5798ac37e1, 0xfb8b2fd12e71bdb2, 0x49aa892efbf1215e, 0x5d3cb90107ba67e4, 0xcc6ba7b368bb023, 0xaba99dd2e6661e72, 0x26506490ccb23a23, 0xa07030e2fb11e960, 0x000000000000bf }, { 0x1a8a04d8787f2f3b, 0x8ee615a9b645e4f, 0x1c00d34b499444f3, 0x6732d6fa4a4166fb, 0x3f2d2e19fe19e69e, 0xe0086f77ce4f59c4, 0xc6fe93e64bec91f5, 0x5ebbd8ac797d3d06, 0x000000000001ef }, { 0xa9b454e2f29e8008, 0x89d1b3061ec9fb2a, 0x1104b183f968656f, 0xe6fe451d66462c86, 0x6957aae5ae6cf6ed, 0x5a4d4396e5e24ffc, 0x6aee0a1bb8fb247b, 0xfb9328cfcd91d016, 0x000000000000d0 } }, { { 0xa1168022399d1148, 0xdd8009be1f368f01, 0x34f9cca5427ad5cc, 0x791975c164ec3541, 0xe3af68d07a275e5, 0x32537ade782d4b4d, 0xba824324833795d0, 0xcc3562bc827dc4de, 0x00000000000072 }, { 0xea539a4d9650b0da, 0xddc73bfe18d5e441, 0x872e5aaade7dc583, 0x832c77d7f39535c9, 0xb342651a7ab86fd3, 0xb85f6b5013a1845c, 0x91b316b79dccfa08, 0x4146372d33df2e5a, 0x0000000000009c }, { 0xa8c44749c10762ed, 0x89881995eaa4d498, 0xe2b73b548eaa267b, 0x9defc7118c5e00d2, 0x630dc7cad7323025, 0x1a0897626e3d3bdc, 0xc7a6b6bc93e027d3, 0x7702273632781d83, 0x00000000000049 } }, { { 0xcf04f041df124f34, 0x6cc74c011d6fd7af, 0xc2213017781cf5e6, 0x2d323fd6b9b70b0d, 0xa6ccc2b026870a7e, 0x9f4172b43cbfaf6e, 0x3d1ca24d52edea7a, 0x3e108ced18cf6fa4, 0x00000000000140 }, { 0xe3ea100af153a940, 0x29ab77daeec218d5, 0x929c30f22d84f564, 0xe1011a40327f6b71, 0x4fbf70cd2f1e69c7, 0xa4c912f77fbc92d3, 0x54f08959670fee1, 0x39464329d46b8cc1, 0x000000000000ef }, { 0x5b616e4b38bb4220, 0x50f89d1bdbef9d06, 0x8f8bf2d1fb9988c, 0xf74d0d01848eb988, 0xe8b0cc6db7a18834, 0xa3506415a6aa043b, 0x9f7b249ff987a96a, 0xcdac70b37834e22a, 0x000000000001be } }, { { 0xec7d31c854714f20, 0xbc4a06cdeaf2d782, 0x8032cd62db916d52, 0x60951c0cd241983d, 0x11cb55077e795e99, 0xb58a1cf599dbbead, 0xd9f364393659cff6, 0x6627f0b04db59d20, 0x0000000000013f }, { 0x61f7e52e39f9fb46, 0x9a06c3bf69750b68, 0xadc0cef85497b24c, 0xe45ccc23c3cdb8b2, 0x7c8770ab23bae232, 0xbc99133ab7e93db9, 0x58b392990f329b76, 0x54af69c4ece5a14c, 0x0000000000015b }, { 0x44e7314360fb957d, 0x309b00d07bc99b8e, 0x83bfbb13c5e3bf92, 0x39ed3ca6929f29c0, 0xc590cd31f6fcc257, 0x836bfe37a9729898, 0x924a2d74b650a8c2, 0x6e8b24fe69ac5c57, 0x00000000000002 } }, { { 0x4e138396a6d4f1c7, 0x15372ae7073b9355, 0x435eda4a4f54ff1b, 0xa159e525261f4391, 0x861292fcf4cc42e8, 0x2ab7230500597820, 0x2f2490ebd0c7fb69, 0x3ec6c9342782e2c, 0x00000000000101 }, { 0x5bfc9f91f1b88309, 0x864d10a4b2526d1f, 0x21f966128c494a9c, 0x71c42f203eec73a5, 0x342d9127c9dc3a70, 0x122ca9024eaead82, 0x9db4066142651393, 0x3d5d938e626a0b9e, 0x000000000000ba }, { 0x8cd899d660ac4653, 0x9e62766b89cc1ca, 0x46d770f72589d54d, 0x9da9a38f738bd6fd, 0x8dc71706e8751190, 0x15335fca062a808e, 0xafb69022cd98d6e8, 0x48cd62d4d4122800, 0x00000000000079 } }, { { 0x1eb9e15b98c8ed4a, 0x3f28158fb2986fff, 0x33e016b43da3e493, 0x437a1b3a9eef1f93, 0x7bcb89e1d1b6495f, 0x81e3a9febfeb0b71, 0x63c4e358dd3901f0, 0xc25a1b0849935e90, 0x00000000000022 }, { 0x527b5fcd492b3a14, 0xebbb8921c464ccd, 0xd4ea2367b06f7d29, 0x84fce8ad5ffe18a3, 0x5c52cdc05b7222a2, 0x655c0611913ebe04, 0x8780ccc48c43a0f5, 0xeba6ebaab3be5114, 0x000000000001fa }, { 0x8dc18242bb3f8293, 0x5e0d949ba6d6438d, 0x89a4bbaa8532cc8e, 0x3ec71660a03eee0, 0x4041f7d8765f0753, 0xed3e8c811c8253a9, 0xbefec6009c2e3172, 0x7abb6ea1b0eafcb9, 0x0000000000003e } }, { { 0xc08de6de5a74f827, 0xa6ea70c392c572a7, 0x7c5819d9c556bfce, 0xc12dd1e7a75bd7cb, 0x8186e9563547fea7, 0x9cacf6902e715d64, 0x4ecfd6c5c82d485f, 0x4324d5ebf6935ae2, 0x000000000000f6 }, { 0x4d0d930833c06dcc, 0x7cc0d4a609d8a1e8, 0x6f639f88b1a8de38, 0xc2885922d996d379, 0x3477f81a8feab11e, 0x3feacf7c2416aaf9, 0xbc2849cf4b13a2e, 0xf9489a41d9df2709, 0x000000000000aa }, { 0xe5dffe906f20ee58, 0xf5587a2ede58a2b, 0x1f8bbfec413c613d, 0xb80a4adc67a8d872, 0xa92530c289f986d4, 0x4594acace09e9840, 0x33659fe118cdbe84, 0x1bac20412be72e0f, 0x0000000000005f } }, { { 0xd4d9caa50df98a33, 0x2f220135c7714875, 0x58183eca39ad4bb3, 0xa5429c39f7264aa, 0x9392450f3806ee7, 0x982c92f74d3ea2f0, 0xf99039ac82177ef5, 0xef459f73c4b81729, 0x00000000000190 }, { 0xa4df2b27dbde8ce2, 0xf38fe2aea57d5a2a, 0xcc2af977a1543a73, 0x9dca40dc8d53f1cc, 0x65eeb0660ab792f6, 0x925d8699615a9c0f, 0x4b55b2f2fe65f007, 0x633a430e0d9b282e, 0x000000000000fe }, { 0x1a5ea9a4c489888f, 0x1501d520918916fa, 0xde8a93daa7d048df, 0xd294a133fe21a842, 0x81382a8428ebf82d, 0x9000211dec3bda9d, 0x1dcbb878f9a09868, 0xe0726fb47940b6c6, 0x000000000000ff } }, { { 0x6550708a74553f03, 0xae4436b2bac87aa2, 0x50e0cf9a2c71e6a6, 0x6f9e0586ae967fce, 0xe68732322fc029f5, 0xfb081a2d7840812c, 0x1b7c241c1f2d2a18, 0xa2a360131708e25, 0x00000000000042 }, { 0xdb900436f08fb95c, 0xdadc6c6557107dfa, 0x75a05cc64ba34b02, 0xc0f586d7be63e46c, 0x98109015167450cc, 0x99e272f819d56c1a, 0x915214037a4bdc04, 0x5a8f8c4256c3772a, 0x00000000000063 }, { 0x90c39d2429b98018, 0x9549c3e80d6875d1, 0x7c263b45a3d8266d, 0x13c7b82eb412ca75, 0xd56ba7374e2d2c37, 0x6c3231b253ea853f, 0x39bf67d382baa38e, 0x8d5ceb49b4467dfe, 0x000000000001e8 } }, { { 0x54c82b077e71f428, 0xe6d833283b008c1f, 0xe164ab1150852887, 0x6de8ced0d87324a6, 0x5141d2c3301e9529, 0x76b39470bdb1f23e, 0xb0f11abd16665d2c, 0x2d88c89fcc8eea18, 0x0000000000011d }, { 0x68568e929ff09e8a, 0x539a41b8f97f863e, 0xe7b2cc667ef494b3, 0x7a3c90451652b166, 0x233207452d12a94, 0x1de824c1b61a2f79, 0x31e838d3aa9ae11f, 0x6e0ef38c6b20c1, 0x000000000000d7 }, { 0xe6f279e757d8db4, 0x676ef7264ab715cf, 0x557efeb7275d7a81, 0xc21f98ad41b3e586, 0x7f6d6b8c22b82eba, 0xa3e90cf7244a8e7, 0xe802a364d9c6490, 0xced0d3af677ad787, 0x00000000000037 } }, { { 0x8a574df036c4d20e, 0x3cf499a2c01d7b7, 0x5a1a037b8ba04267, 0x5d35fb81cb2ef96d, 0xe926ac23d5131fff, 0x9dfbc8e7f672891, 0xed608b7303536e89, 0x9f3c6f04741f1bdd, 0x000000000001e3 }, { 0x1e478343179bdd3, 0x270ec57c4b35679c, 0x73f9921f83e8bbc6, 0xec51575248c559ea, 0x301783da04a12276, 0x58e0e19eb0b537df, 0x76ee1cda7040c121, 0xde700baecdc16fa3, 0x000000000000b0 }, { 0xc7c33ddef12b27fc, 0x3329a21eede7e3d2, 0xf70317f9356f3d5, 0xd7223f09f29c8f4b, 0x4491161c03727bc9, 0x8e00e200f3c16082, 0x7d62f81b638f51a5, 0xb39eb7e58359ca44, 0x000000000001c4 } } }, { { { 0xdda044a5390ef9, 0xb49b286f5df09cbb, 0x56f6131251ed15af, 0x74e9f749ca72ad77, 0x45f33adab7b8f584, 0xb3210f11c3abaf1f, 0x7ae63a0655b6735c, 0x7cb0d5afb91fb27, 0x00000000000012 }, { 0xf9c75c4ce01a808b, 0xce0a3913e8543860, 0x6fa217aa6a3a25fa, 0xf02f4d08134a8a43, 0x8e70dec2b028a99d, 0x7b39beaabbc04a5a, 0xaae6ae1bf8c8f869, 0x1452a1048a77db91, 0x000000000000fe }, { 0xed6c3b19f4812bbf, 0x9ed31e51531aff32, 0xf7fa329ec8d98245, 0xde4c029d20d0e255, 0x77f06bd588abedd9, 0x8da658871470f618, 0xf24f9479cb38da9d, 0xf07d1acfb647d59d, 0x000000000000e9 } }, { { 0xbc8637c080752b3a, 0x5d5974ed251656fe, 0x718736df2332ffd2, 0xfb855213dad3be62, 0xabb57738ec39093e, 0x9c0d76f3535ee49, 0xb89e67d6023ebe17, 0xb8e9341a54b55763, 0x000000000001b7 }, { 0x3b4923f369c9dd31, 0x7117a2f6e0bcfbd7, 0xc3c0162ec50a03d7, 0xa9da22e3f35cab0d, 0x9af0866224021523, 0xf01b3dfde16fa3bf, 0xb56322524e954a1a, 0xb23faaf9a7f537a, 0x000000000001d7 }, { 0x63dd4e2685a9df9e, 0x20797efdb60246c1, 0x58289fc6511818a1, 0xcc8a13479c445508, 0x3b1787b321b70f31, 0x30d6ccbb8076c653, 0xa14a29adbc173b3a, 0x5d7dee95b22be14d, 0x00000000000192 } }, { { 0x89a165146376f2e4, 0xbdaa345573b1fef, 0xbc507af2dcfcad2c, 0xc09bc904b5b37188, 0x5eb14a418048bee8, 0x28f8704e8e2db165, 0x2e94ff71a2ae77f6, 0xd4fcb680e763bc21, 0x000000000000e0 }, { 0xaa9abee968c9c161, 0xf88f07d645eef8a2, 0xa62cacde408a9299, 0x63702ad0f61f49c4, 0xb2fceba662bea82f, 0xf1ae964196254abf, 0xf853f87ab02da44d, 0x3ba7270645a5f9ae, 0x0000000000011d }, { 0xcb7be65b17f7dfca, 0xf9bf0405713f1400, 0xfa3e65bdf4ccf242, 0xedfbcca2e988f683, 0xd27943850c27da81, 0x7a496a5309a0be51, 0xedaf1bf50dd0455, 0xcd7454d9c0feb0ee, 0x000000000000ff } }, { { 0x3bd4636867aeb7ce, 0x806de7363e0babae, 0xd1d00946f99b5960, 0x4c2dd552dda8bc9e, 0xd73bc25b7a8dfa6b, 0x341d5e3648181aa6, 0xf5c175ebb3ad732b, 0x229593391c1b2d1e, 0x0000000000003d }, { 0xb76a15129bff202c, 0xd519c2becb9d5859, 0x20b667fb6b66bbf0, 0x1a50265e8e02ac39, 0x9c5ce72d7313688b, 0xa5c658678a62800a, 0xa669e376f81b7943, 0x24fa6a17306b739e, 0x0000000000003b }, { 0xafa552604ea5c65b, 0xaf2f0c39fa8a9817, 0xf88350785ecb35a9, 0xff7eea3e85ab2e88, 0x8b172b2cdad82337, 0x43ed1488b5b2425e, 0xfd6acca818ba70f, 0x86cede6043554b8a, 0x000000000000ac } }, { { 0xe99662e5df081ff9, 0xee7b736ef6deac45, 0x62eb6f9d2ff5bd4e, 0x2ffd264ac4759109, 0x582b18f64b5da43b, 0x68b8c353e62a8f0b, 0x741eca8f2dd7f830, 0x6b06ad4f2521e994, 0x00000000000038 }, { 0x1083f4b883d5c77b, 0x49d556d0b0bfc8f, 0xe14d91e935e6cbf3, 0x531ece32406dd734, 0x8b48f22e05b9d138, 0x6b3e4ca36ff3a7de, 0x803d8cb86cc2c2ec, 0xc10e647e90c74c6a, 0x00000000000010 }, { 0x7ed7e62cdb51c0c0, 0x41218aa6d9517ce4, 0x449c84ce4c0c6422, 0x82258546c951767f, 0x5581d3b6a06c257a, 0x26feb9e01cea6e18, 0x700990ddb6d28a17, 0xf2effaf71412642e, 0x0000000000008d } }, { { 0xd55195c44734d169, 0x646ab7ac1affbb13, 0xef04e39f90465d54, 0x52c05dfde1d5d0b3, 0x784a1114abfca6a8, 0x3ffe758af134154f, 0x73ab7736a45df3bb, 0x7cd37560fa2d7bcf, 0x000000000000c1 }, { 0x1ce950270c9696fb, 0x298ad6432bc9b2b5, 0xf6cbc8ba06d738ef, 0x750cd859aa5c3a1, 0x269dd964df74d9b1, 0x912f45592f9deb25, 0x72a9a5ebce0f562d, 0x402aee75952dbee8, 0x000000000001be }, { 0x11146cdb8d3b8110, 0x6471550276ab3cd9, 0x652d80258c45328f, 0x457d237ffd3c16bc, 0x9d17d960def9b89d, 0x7572ef931ac7a489, 0xb02ab52fc9cc19fd, 0x3a5f968e71233743, 0x00000000000007 } }, { { 0xa269627ea4b0276b, 0x26f94a6a10599fa2, 0x31e326d8ededeccd, 0xd996219b7e2795fb, 0x5984157e68f8f417, 0x5d399389a71558db, 0xc9523894bae37888, 0x8df7192bc7bb8c41, 0x0000000000001a }, { 0xac89d517347f7ec8, 0x1f31f926cd33df60, 0x12902a1fac2a3088, 0xe95cfc9212692976, 0x553dcc60f0ca8801, 0xcfb232a405ed121b, 0xbf2b3273f324662a, 0xd8adcef917bd8d6e, 0x000000000001b8 }, { 0xe8ef792d43e42e9f, 0x50724e6a999c27b4, 0x39fb04e60d8b4342, 0x4ef9be232a81e8e7, 0x8721ffd426a263cd, 0x785b557275b6f955, 0xa50d82bb3033698a, 0x59cde654aa14074b, 0x0000000000004a } }, { { 0x2e3a902b472aeb07, 0xe3337e769f2cd972, 0xd3ec9bb8aed24648, 0xcb6711cb4d4c360, 0x73a8d4c5aee32c94, 0x91c0a273b676f8c3, 0x2c3dc802faf3d930, 0x99107fa8096d1230, 0x000000000000f1 }, { 0x17c0df6f6f35bc07, 0x985089a31dcb1d79, 0x835ee709aa730f36, 0x12841d65f575f540, 0xc682488c30c6f59b, 0xaba297a80bdc99ed, 0xa4ce368c42b933e2, 0x246b8fe02589e054, 0x0000000000006b }, { 0x109d67762267ff1f, 0x76790b4d59be9e48, 0xafe481019e680558, 0xcd7171a764e93ef5, 0xc4864bbdd0ff6a7, 0xc5dcd23ef4c9d270, 0x8b0cdf580a0a9bc0, 0x42596f8abbf95074, 0x00000000000010 } }, { { 0x4bace2cc3c63a757, 0xcff971955a51034, 0xaca17e0be94605de, 0xf538e27462e2c3a6, 0x9298d13c0ec6d523, 0x66e9fe769cbf8f60, 0x66f6bb9d6da5e6ef, 0x3b2ca66490c1ac5b, 0x00000000000024 }, { 0x6a3c0cf4e34ec2a2, 0x3d0d32ee2e1862d0, 0x972cffd5bea4def6, 0x6603e3a78e7fcfe8, 0x217860559bd8b78a, 0xbebafb4fb838bff3, 0x75aa712d36f9b155, 0xd9b1010738c37514, 0x000000000000e0 }, { 0x817a2741ccf75d67, 0x14b995554228ace, 0x8a1b8d2170c58a6c, 0xc68c918d7a73a207, 0x84bf04a85c60397e, 0xcdfad175dfdbf43, 0x10f6a36671d2077f, 0x1634abad0c926698, 0x00000000000095 } }, { { 0xbe80ba203146c37c, 0xde591f138d621718, 0x3d92e3f72335754d, 0x95a108b88dcb5339, 0x7f010d653ebefe95, 0x82cd15ba80e8ae08, 0xdeddde9de4f6e3dd, 0x9eae6e0022b8d72b, 0x000000000001c4 }, { 0xa2e7012beea0bcf1, 0x5607ee2798d93129, 0xd15930a99ef2e409, 0x5eab01a65873901f, 0x88b8da6fcca23fef, 0x1a59e2bd8936ca98, 0xb62ae528594a729, 0xfb6ebb97ecbbad65, 0x0000000000010a }, { 0xb12b1c5dbc5007f0, 0x592310a0e79e5974, 0x36b22aa752f0e16d, 0x2688e73cefe57245, 0x371403533ca6dab0, 0x1c05bdcc04476c73, 0x82c380df57f04016, 0x161c1bc62101f15d, 0x00000000000197 } }, { { 0xfec880e7a2e0f719, 0x6f93a8c542a921a3, 0xe9ce82f78af789ae, 0x1d12493dfb1055d7, 0x24982bf089dff046, 0x7018b1806eeaf29f, 0xef351dcb6e9b3f9e, 0xfd88b30344685df2, 0x0000000000015b }, { 0x26889cbb9413e5c4, 0xfaa56dc266268747, 0xd61ca41c08a9637, 0xad239cf9a01fd639, 0x2625030fc2ee0c4a, 0xfe5429431b1ece03, 0xf869fa1979b5f5f8, 0x8d3d96c89134af66, 0x0000000000018f }, { 0xa11855f255c59bb3, 0xe6587e38a70d876b, 0x9fa1602a36adc3e, 0x2b8a319e03143e54, 0x26b9d79102af8af6, 0xca994ccfb4ec608d, 0xe9fb0d3e3f59211c, 0x639a5525d9f24f63, 0x0000000000010e } }, { { 0xbdb8ed5bd0b1cfae, 0xf6c19ddde7271ff0, 0x21016db825094bda, 0x60ca59f2ace2029c, 0x44e7c0e668f37821, 0x7f8f4056f4e0175f, 0x142abdca656dd705, 0x8a63acd7d83e2cb2, 0x000000000000cf }, { 0xd64f75f2be4e7e5, 0xf3f6d476266bbc9b, 0x52b6f8c5df17502a, 0x8f9f4b004b9ea7ec, 0x3e42e31b98ceccbc, 0xa4a3252bdf33821d, 0x10d15f5e14ad205f, 0x726cff9c6ae552ec, 0x0000000000003b }, { 0x53943e62ff29152b, 0x63288eb75b354974, 0x822aa7df90bc4841, 0xbd92a68bb7f1df19, 0x78b53fd45ebcaf3f, 0x4f54247db9017660, 0x6bc86caadb05ce54, 0x3a27560c73aa8282, 0x000000000001c0 } }, { { 0x6223e970edc98761, 0xdd438a98ea7376ba, 0x9654ff49223ba456, 0x1fb22af1b908289c, 0x3a5cb2958ad6da57, 0xc215eff9f27a063c, 0x11c3aac970c74aa5, 0x26a0a5934fdc9dac, 0x00000000000172 }, { 0x97c309f8450e7b9, 0xafa228e8fad0759b, 0x477ba6fbcd54d5c6, 0x64a426ced0022e69, 0x6257026414fb80e, 0x1fb087327d23dae4, 0xb77cb8bb51016233, 0x2e9dbc6d2f01c589, 0x000000000001a8 }, { 0x21142fbca588baea, 0xd921a4980da81475, 0xb382227ddc8a5563, 0xb80db2eec8bc14da, 0xd39bb68e4446f2b0, 0x4785e007eb4e7ffc, 0xd9b1920155b930ce, 0x5dc7d87e28f88039, 0x0000000000012a } }, { { 0x82bae949e30c1944, 0xac38d408f71145d4, 0x8cb8fd8c632d5b0e, 0x9f4c0870ba6b3c99, 0x5517f535ee2aadae, 0x122af8854eff5cac, 0xf365ee22aa1b9066, 0xcaed79cfb0914241, 0x000000000001f0 }, { 0x92818c9e1a256169, 0x8d947b4a00d7bee5, 0xff089038076c8264, 0x4ce21f6cf84f23a5, 0xe9f9d8d5ecc41a0a, 0x5bbaa2d829794523, 0x935a9c654ce23680, 0x28726fead1e60cb8, 0x0000000000008e }, { 0x737cf1341734473, 0xb109a09026478f55, 0xd876678361456c02, 0x46058e5057c041d0, 0x118db50179fb14cb, 0xa250959e0adc1c10, 0x525e4a800936ee7, 0x64e974696d368985, 0x00000000000118 } }, { { 0x5bd19b646539144a, 0x6c32eb06c40c087a, 0x4a95a97787261ffa, 0x3c6a26206ea4e3c9, 0x1bd78a40084ac77, 0x20f8e4c4c1ef9705, 0xd5bffbcd0d5f1d71, 0x339192645dc118c2, 0x000000000000de }, { 0x8b7d69494f519b71, 0xf0d415290afd2012, 0xd24614b12df0e610, 0xad81f0a60053cc07, 0x7a793cb898bf2bb1, 0xdbe7e771a1da3107, 0xe9a6cceac7ef678f, 0x54d8cd87a9d7573, 0x0000000000010f }, { 0xd74aaf2e977f5557, 0xa7de3b38847baefb, 0x84a4ee953e45ebc9, 0xd8a13b118bacb279, 0x72a426747986a361, 0x9d7da9668f18f444, 0xd3c37c9f0e12e947, 0x6db6dfd1d2349504, 0x00000000000169 } } }, { { { 0xc8fe1eba79c71129, 0x80f1e191f2e597ca, 0xa9c698b434e06424, 0x57a8a955c5a71590, 0x7548cfb839072712, 0xe795591d262b7e90, 0xb49f7529264c11bf, 0x2fd45bdbe980f39, 0x00000000000065 }, { 0x354e5f7a809359dc, 0x9c0dae47a4920ec1, 0xc8b4ac08e5229bf4, 0xb882d0da9fe810b4, 0xe8f420a4d3b853b8, 0xe607e097f3cc632e, 0x7db9587f562a3b49, 0x81cef18a217524ed, 0x00000000000006 }, { 0x4d3629423b4d7d46, 0xf3db6920397aec14, 0x34eef48ba90b6560, 0x14f304f9bb0b963e, 0x96f9ca737f9b63, 0xde671d9d271b6b62, 0xb116c8f182347228, 0xd4a6fc7a25fc1bf6, 0x00000000000087 } }, { { 0x4b0d8f3854f436c8, 0x487e6b345d86c835, 0xc2ee6fbdf41716b5, 0x1a99ce49e486cd23, 0x84e4826f4b39e7fd, 0x17d1f7b597a21084, 0x7ba52e8d7581f8e7, 0xbc583dc7b5b4419, 0x0000000000017c }, { 0xb058f0472ece3a71, 0x73400a7ca5039545, 0x9fa547546dc9ba60, 0xd08cddfc34848a87, 0xd14b8ed5a5290447, 0x48f0b7ac99fbaa80, 0x8b6beab0c3614dd2, 0x6e2ddcb3d86acae6, 0x0000000000002e }, { 0x102491e14b2ff761, 0xa95081cbfc540b64, 0xacbc9fb8b2b4285a, 0x202a6fa5392fe0ad, 0x19ec9dde386ec860, 0x4312a5588fa097e3, 0x4b8ca44302f01ea9, 0x6b97d3295560d064, 0x0000000000014a } }, { { 0xd50cceee1e5c71ee, 0x6a1e11b7a7498de5, 0xa1aca70efcbce20e, 0xae7d2f49e58b04a3, 0x6a26e4efefde730f, 0x9e9f861d28142d97, 0xd33b821219559503, 0x34da981426973ed0, 0x000000000001bc }, { 0xd59f408c9a5c1962, 0xad9755f5538db432, 0xde97cdb52b2ff7b1, 0xd3436eb57cd94928, 0x444ccdb97339e9e1, 0x49c6852f0684a1f7, 0x40dfe79f7754d20e, 0x9ec199852e79baf9, 0x000000000000d8 }, { 0x8da56a41dda1f637, 0x29f0d8efedcabffe, 0x74f0e73bd5c47b7d, 0xd6a1001f0c81fa7a, 0x8eb34331a9b4fbca, 0x4dd27c938642f10a, 0x9fc71d57c57fcb70, 0x2647f8b96b4dedfc, 0x000000000001d1 } }, { { 0x93d184e6a680e15e, 0xfca3b5772db81d8f, 0x6cdda225fbb7f821, 0xaf567565494cc38d, 0x8fd993013056b2c6, 0xaf743826a1ebcf9d, 0x7d8d5e4eccadf81e, 0x1cba1d3f0c82f80e, 0x000000000000bf }, { 0x36de2c4adfbcd7d4, 0x5136d7fbe24c3ee6, 0x4128838a0ad5e6a5, 0x642df0e0b4f25680, 0xf26e5e111ad276cb, 0x53e533fa6e2f401d, 0xb38d36ef515a7c08, 0xb17e6f248fc2ed9e, 0x0000000000016d }, { 0xa00d808a3a55962a, 0x6d9ef6d66e868057, 0x2eef8c076b9f57f, 0xbec6c52e50d7f13a, 0xfe3100aba30a7f8e, 0x3eb66d6db5a03e1a, 0x70a05793d4b57fb1, 0x1a5f0eb6bcfabc0e, 0x0000000000010f } }, { { 0xdbcbf306dce8b129, 0x63531aa24a6e6645, 0x18001aa7b9d6c04d, 0xa3e930b66c23d690, 0xf34610a09bd56876, 0x7d5cb86f64e62201, 0x6319342b06db03da, 0x10fe5b690c16f209, 0x000000000001f1 }, { 0x900abab196171934, 0xf600fed39cc1899d, 0x168cdeae6a559cf2, 0xb061e8e47cff4b2b, 0xecd1bb5d071f66b2, 0xd2304df474a36d68, 0x1afad346639b97f9, 0xc994e43fb316f19f, 0x00000000000127 }, { 0xa046c4bf37cce982, 0x6a148bf4f0266fd0, 0x8fc9fb55acc0aaf3, 0xce44b41f1aeac254, 0xdd5ec97ba6909060, 0x655f5db57467cd44, 0x52d557ae8884323b, 0xde91c7d6100a4d85, 0x0000000000014a } }, { { 0xa1ddf7431eb053fe, 0x974a1f1e0c20aef8, 0x643d1de3fc65bd21, 0x217d0a21d1d01481, 0xc8a043c3f9f2974d, 0xaa031758abee2952, 0xb12e7878bc7e9cc, 0xc5bb0fc9405353c5, 0x00000000000055 }, { 0xa48ade98a9f1a923, 0x22c987892eacd1a9, 0x78ecb6b0d2f31d2e, 0xb2f6263e5fe3a963, 0xbd2644b175cc8c29, 0xf1cb6b80d1645ba2, 0xc3e00de4f0a956ff, 0x2712c19291f6be78, 0x00000000000056 }, { 0x379ea17001c2b4cb, 0x46ed42357df64e89, 0x6abc8b44478f74e3, 0x72b3ed21ae9bcd17, 0x51ab4ad9a7abaf00, 0x4eedb9dbff23c647, 0x5bb272a288c8924d, 0x32af9cdf8e8eef38, 0x000000000001e2 } }, { { 0xeb54b374c68a9893, 0xa9fc713f55caa977, 0xb97b61e2ecc649b3, 0x998c03e352885b51, 0xa3e1c308ae491b1a, 0xbe59bad12e107d, 0xab68183fa43370e5, 0x19179a069b7ede0e, 0x0000000000019d }, { 0x1a6e8f33de99f6db, 0xaf2254426007c764, 0xc96837f1eb7064b4, 0x928ecf7339725ec, 0x5889da5a186fde6f, 0x7d6416fa98aea0ed, 0x6c27854ee4aa8816, 0x929cc5a514bd572d, 0x000000000000b2 }, { 0xbc07a7a8eea5a382, 0xc4ca159f95c07d3a, 0xaa25c79b3c0b488d, 0xe00f3eaf90488ed3, 0xe79de7866b584606, 0x5a3417e957521e21, 0x63b9d645755cbf5c, 0x39f1ef1dc13ce139, 0x00000000000198 } }, { { 0x6ae95bc26f19340d, 0x870cb66efa090c, 0x4348a990de7a706c, 0xb627932f84f2c24, 0x3203891e5c575e66, 0x80408bf6d8bfacb7, 0xf27a69fcb925225a, 0x810fb098baf8ce9a, 0x000000000001d5 }, { 0x649895b0775831ba, 0xe2304a478bc71b61, 0x147ec049485260e9, 0x66517d6a6225b07, 0xff04abfc8a9fb3c5, 0x5bdaadbc70a5c029, 0x3216464d4039c218, 0x9a039c98b32b5b11, 0x00000000000081 }, { 0x6fd1f28494a380b3, 0xd6b4f00e763c04d2, 0x3af7b657ea3fab98, 0x28aabb983622b993, 0x28c8f0b2be958e26, 0x70ff3fe28aab9676, 0x86cac198673d2a84, 0x4745a6f9a8709393, 0x000000000001b0 } }, { { 0xa67468a4955bd312, 0xc1a56185284fa4d8, 0x78b98da6e6cb1941, 0xc61fa12b8040a657, 0x42b5e29421148c22, 0xc38ee974cf6a4b26, 0x3386374a7f0f1b7f, 0x2e98e6e2e11b252c, 0x00000000000181 }, { 0xfc98f57558421e10, 0x9961bb31e8770442, 0x130ac2ab74b45c09, 0x31ea373367f5bb12, 0x251056aa49d98a99, 0xfa6347b0fdb72afb, 0xa6a2e0de2f5b9646, 0xbd2912e4fa19a7cc, 0x000000000001d9 }, { 0xe3677eeb0229d3a0, 0x803a0353bb93441a, 0x3033c24a6e9226eb, 0xaeb245e4e033b983, 0x56d5a25754a745e6, 0x8863b25644d672d5, 0x9f85c9dac298a81f, 0x191be20e8636c48e, 0x000000000001cb } }, { { 0xc425100a3b141ae2, 0xb672c3f2c28f1fb1, 0x1be2453885200742, 0x543fbdb448b3749a, 0xed1648df3cb07dd4, 0x2bfaa609c0f0621c, 0xb0078edca4ae375f, 0x70d05bd42a27a56f, 0x000000000001ba }, { 0xc7928c22973a9cf5, 0x39a4acec0a0fa58, 0x4ca4ca6d982c20ac, 0xa6610b6954e5653, 0xdda7db6087a24fb3, 0x80c1d4d16672db2e, 0x44f473d9d883e665, 0x88372e5101abf89a, 0x00000000000180 }, { 0xea60ad5aa2e77de6, 0x367b8374b4a6d125, 0xc58458a042d3013, 0xd30bb34f7f26bc34, 0x47478abeb819eb11, 0xa6a7bfa93989327, 0xb8d6577a0b0bcdfa, 0x447c5884c2f7d89d, 0x000000000000dc } }, { { 0x22352d0aa72278b1, 0xbb72f971295c7ed1, 0xe6679df9756de885, 0x7fea60fef9aa7601, 0x359750d620a39087, 0xebb3d86d4524d295, 0x22fb44145230666e, 0x58752273e4aa9706, 0x0000000000017f }, { 0x234b141f49525d65, 0x5330d796e0e78795, 0xa7aa6c69cec1169f, 0x34a8d16c6ba7652c, 0xcc9c13e0267dbb26, 0x146751044cc0605e, 0x298721d8293229e3, 0x9278e539d7b49e90, 0x00000000000087 }, { 0xa024b8f5815d7792, 0xc0b8437bfbd3ffee, 0xdf07a760abd07c10, 0x80b792a6661a80cf, 0x69e8b5040ce577c6, 0xbea44fa53e2f383d, 0x3141e6354fbd3ea, 0x3b1fedf4e29fbbd8, 0x0000000000008d } }, { { 0x58e4f97f8a15972f, 0x8a16026c8474a2ea, 0xd85e4ea8c8393c11, 0x390eabbd46ee8f36, 0x55522da01a309878, 0xb4f3df8bf75bfc16, 0x5915a86cff1f1b49, 0xeeef274f8ab941db, 0x00000000000048 }, { 0x81c1e2ed9192e67b, 0x22ef97964d4b31fa, 0x5b4aaf59731d9e1e, 0x3c30172f5cc874c8, 0xdfd902ae36726ac2, 0x5b5b1f5c90c79acc, 0x960fceb53a789fc3, 0xfe81f032c87bcf39, 0x00000000000158 }, { 0xc0f55d4509e14367, 0xc150b010cfaefe9b, 0x2f0954662911c24, 0xdad11eccaefa21fa, 0x151cd92f6076848e, 0x7a0c9a9fbd631f8e, 0x55d6a23dab047842, 0x7a69892256e4d309, 0x000000000000f5 } }, { { 0xd46f0b405530f25b, 0x7e36fb7713adeef6, 0x19d452d761177a69, 0xbd72f8118b91518c, 0xd743c2d77fd760da, 0xfcd809f7b97dae4a, 0xa27db596acabd881, 0x40b5b3086bbd3bd3, 0x00000000000112 }, { 0x24dc109122acc3f1, 0xb4f29d46af94cc33, 0x6dc4d3061a28fac5, 0x252ff00f34b73498, 0x64fa1975aa25b780, 0xc50d32baf2eaa205, 0x1946f09b5fa00f9d, 0x1d42f67eac395b2d, 0x000000000001ec }, { 0x14bf6185ec9d63f, 0xf58e3716f862b954, 0xd803ed8394fb698d, 0xcdfe2a0e566570b4, 0x82d64e0bdde655ca, 0x42d789a1b0f290b9, 0xcec03eca178aa984, 0x5b8b7fc18261a08a, 0x00000000000124 } }, { { 0x5392a95ff0b0cf21, 0x71af27d2bf51ff1e, 0xcdd77bcd6c7e3316, 0x99a2f121e7dfd24f, 0x2acaa78f24935e48, 0xf46621e5d854ce9e, 0x9437920258e3ddf0, 0x5d135e1c7687f75a, 0x00000000000023 }, { 0xd6966afc4e94a4f8, 0xdaacf065e175e2b3, 0x77f3fd901e4fae1e, 0xbf7fdf3c9aa75463, 0x85fabcb475d523e6, 0xbc6775195ff3d038, 0x65f1b059cf4eb8b2, 0x42979c6b4ba2d263, 0x0000000000011f }, { 0x25e36bf8b25b7dfe, 0xfe20aef96c96c60d, 0x920fa616bae498ca, 0x602cd363d60d7828, 0x9e4d05b8240ac70b, 0xaf693153e7e23fb1, 0x3fe657140dfb14bc, 0xab03c76bedc6df88, 0x000000000000bb } }, { { 0xf372ca3b6ab9d946, 0xa3a91af9c35def9a, 0x735f822099996f4b, 0xd38abcf0bcb552ea, 0x1bc723911ca7334a, 0x7cdf120f88254a88, 0xf692a67a7d4715de, 0x6955e977f5940f3f, 0x000000000001b1 }, { 0x1013ef04ebf47a57, 0x207204ba26edfe3, 0xdfefa613c13b6419, 0x1f08b65ff367d879, 0xf069ae72f5db9df4, 0xb6b5f02067a62755, 0x8bb2b1f33715bed2, 0xd6faabda352e9650, 0x00000000000133 }, { 0x7923b0f716f5d7e5, 0x67845695ea467905, 0xde4254ea33a4f9dc, 0xea703202a3a5c114, 0xaf192cb65bc4e372, 0xb7901ce73769a1a4, 0xef9b44d78ace13d4, 0x14fb247ab3eeb9fa, 0x00000000000067 } } }, { { { 0xdaded32917e94844, 0x4ffabc6d04bc32ba, 0xd8ad69e39eed4bbe, 0x5b8122a68943c28, 0xcfb2b45815a85cde, 0x1e4c00e984b3bea0, 0x531387d11b9500d5, 0x20d60f44174e31ca, 0x00000000000161 }, { 0x27488ae7c244d2c2, 0x76ecb4191779e39e, 0x61a3c02117dd2dd6, 0x48ce8467c0c72f81, 0xd34cdfc2a9de82b2, 0xb3eff4166400c194, 0xdb9c7f62c9de1012, 0x835f2e8710c8edf1, 0x00000000000112 }, { 0xc7fd983b0cacf2b7, 0x8661dfc2314cb4c7, 0xc8ff665606d7041c, 0x83714b408e877830, 0x7f1bfaaec05464a, 0xc71f6523c362ea72, 0xc7f0cef5aff45d7f, 0xda90b0ddb42d1138, 0x0000000000003f } }, { { 0xa1473b2fa697a65c, 0x8bed5abd6889efdc, 0xf1dcab6f5174d34d, 0x40079cdda606101, 0x9e3698d6dfe5c227, 0xc4e1394f08a68632, 0x3e49d62042e1efb6, 0xf5d9d1c94640ba2a, 0x0000000000014a }, { 0x16c63bdfc34db270, 0x1e24719999b9348, 0x2e753827a449cc1d, 0xedfc356156dd8050, 0x785fc10d2d4213a5, 0xe60dd50a5c97013b, 0x9b6c36ca92350f1a, 0x79ae1b28363b2283, 0x000000000000d2 }, { 0xe54185372ef30062, 0x887a8e8396264ee9, 0x948e4caa071a70c0, 0xdeccf9f90b3cc8e6, 0xa026a9df603cfe16, 0x9f857bbe3338710c, 0xc349cc644bd91986, 0xfa405a25abf59230, 0x000000000001bf } }, { { 0xcd9dcdec9b7a21f6, 0x34b5c05bea400868, 0xb1fe94538ebea41, 0x4f17421427f77f29, 0xa93c988af7510ca, 0x822d8fd683cd0e58, 0x10fb358e31988d0e, 0x6a2d6c8eb4621497, 0x00000000000185 }, { 0x351f9fb8da70e899, 0x65af26e7c5004b33, 0x2b83fe894180735a, 0x53ea33c707d6ead0, 0xcc4890b2660d24cb, 0xd42f5aaf120a40c3, 0x65c24e121b1ee5c8, 0xd2b561dd6f940bf3, 0x0000000000012c }, { 0x638f35553d890654, 0x2279a47445f261bd, 0x5cf898b10bb1deee, 0xed1388288b024e9d, 0xcee66434434d4b6e, 0xd78d5725955c2c73, 0xd08341423e56e79, 0xfd830fd8e9335a32, 0x000000000000dc } }, { { 0x3e8208aa2fec1451, 0x7ec0b716050c649e, 0x56bfef295449b1f7, 0x7a432f6ecb62bf58, 0x9797053a86a2d37a, 0x5a544189cfa3721a, 0xbef0e62666d78724, 0x9e230662438af838, 0x000000000001f9 }, { 0xfa919fad8fe792e1, 0xe9be6198041402cb, 0xeedefa1ed28e73ae, 0xe7e510a66132dd88, 0xde5217726e48b4fe, 0x8c8ac5fd67bffa16, 0x81a170df96e88a7d, 0xff6920efb3c9af90, 0x0000000000011c }, { 0x9c76b81950e10e96, 0x759d60bf2b644312, 0xacd5fecdd8d0f102, 0x98a109db25d5e72, 0xd6183ee41e0c44cb, 0xd947a24dc5173390, 0x3ae062606eaeb2d9, 0x9e07fc390bac7756, 0x000000000001d3 } }, { { 0xcc4347f9e39d79a3, 0x6274c46c880a976, 0xba77c4b5c9d976b3, 0xd343ca830be78949, 0x134bc70981acffa3, 0xa92c91619233fe5a, 0x96a137267150d15a, 0x7a4dd2d43912b08f, 0x0000000000006d }, { 0x82ee690e13cae34e, 0xf099204747dcbf96, 0xa3371649fc39416f, 0x5980ec418b558039, 0xc757a62a9b0e1ae2, 0x522d09554c5e5328, 0x7d0fab4c8f97c6a5, 0x82a7a58c8a3bdcb4, 0x0000000000005e }, { 0xd653d6a76081dadc, 0xca9dc99660acee41, 0x6707a624c5367e1d, 0x2bba3cf7cd66e2c1, 0x24bbfc8289203fe4, 0x1d0da9947810ae67, 0x4ad91a05967865b0, 0xb3d7b2bc648ac8ba, 0x00000000000103 } }, { { 0x85a1973f42cadc80, 0x856cd82434db6da8, 0x134dae97afbc8536, 0xf04c2ca1ca412729, 0x71e782ba5578e497, 0x4f87f36ca8cfb502, 0xa197f01409f84a44, 0x62c8e15f19fa27f6, 0x00000000000199 }, { 0x30215271070fe926, 0xc37590ec78a0a2a2, 0x3b66ee3f82d371c2, 0x9c9a8baf524371d6, 0x43564352e4424c89, 0x91a053dc3fea2fcc, 0x9b42134b38bd6b46, 0x773e18dc9bafba2d, 0x000000000001ca }, { 0xa3a3c04e9d007def, 0x65f6ce638187d9df, 0xcf62d3c3cf7075b9, 0x1a575ae8424c7e90, 0x5430ac4114ff936f, 0x299571bd30ed00bf, 0x6314e2efd7465643, 0x96021037cf9b82b8, 0x00000000000196 } }, { { 0x294829b57cad34ca, 0x1128d836bbbb0ed1, 0x503448bbd6dd43d1, 0xbecb01698c45b32c, 0xca85c5886b10ffa7, 0x81d0461c0c0b696e, 0x2cef0aaf1a886f7d, 0xa5f51fb5604c2ec, 0x000000000001de }, { 0xb72908fd62f221f0, 0x8ff8da4d68c54834, 0xd68d4ff80323a6f, 0xe54d1adeb778b36b, 0xd41c07e9637f31ce, 0x26c53d108f804b18, 0xf8e66f8b8ef95925, 0xdf06e280499ac485, 0x000000000000b6 }, { 0x629ee6e68b801bd9, 0xd0840edab9637906, 0xfd168e96355bd7bb, 0x8de078cb3f5f31ae, 0xa762e9bd80ab3304, 0xd7d4f249d449b2e, 0xbf204f48abe19f4b, 0xd54749241e199056, 0x0000000000010d } }, { { 0x46e07d0c12dcc0dd, 0xd4ab60d34766a296, 0xef046331d528bc01, 0xab121441dd18cff8, 0x2212aba5002a5a0f, 0x73aed15b8cfd0b6, 0x85a085419fd5370c, 0x7b894d84889974c2, 0x00000000000170 }, { 0xe5e8df7e583f0c2b, 0x5f6df6b911b04218, 0xd9afc83004b96512, 0x3332d07a8a59c6e5, 0x208e0d6733a0025d, 0xab40bfe00d88564d, 0x2305c364e7d8ac8c, 0x907525239f2ad24f, 0x000000000001d1 }, { 0xc95cf704e90332f0, 0xe0fd1ff432ec854f, 0x25ded176227b5e3e, 0x82af12d7b6be6790, 0x28fa1993f9008f6b, 0x3b124664bfbe520c, 0xe722eb88ec487888, 0xc47f87418e22f11f, 0x00000000000002 } }, { { 0x638c5a15d1f4f800, 0x9f1e73bdcd53d126, 0x4caf658dcb705ac, 0x8e93242302b3babf, 0x2248bdc198254765, 0x7ff11377d8a2664e, 0xb759420eed2b1cf1, 0xfb3d5d868dc3f1f, 0x00000000000188 }, { 0x98e8592af6c7876b, 0xa001aa79794717b2, 0xbd1e0b97e61662d, 0xe7ce0aa1d3d230b5, 0xe702c56e7e276109, 0x188d4380ff521238, 0xcbeb6f48ec023018, 0xd4420cdb8087069, 0x000000000000f3 }, { 0xcf41c2107def838b, 0x379b83ab57f0d34a, 0x4d761bbccde7ec3f, 0x49e7c9120fe7888e, 0x1b832d484eb1d7f5, 0xb0284fbc1ec2c04e, 0xfa3b8aa279c5267f, 0x75ebab1c56e8e0d, 0x00000000000035 } }, { { 0x9c7fe33e3b3ed69a, 0xed24ecd1472a83d8, 0xefc06df30ad5c62d, 0xa4142ec2b031a115, 0x262ff6d08c7cf3a2, 0x1cd76562eca3e2a6, 0xfc8d9370912c719a, 0xfaa515a4415016f, 0x00000000000030 }, { 0x5cc19ef3804073ea, 0x99b63ea687d6547, 0x2ca8bde99f887f4c, 0x52f10ef7fc4d169, 0x28d8884dd011d6a9, 0x33cd4c7834e7adbd, 0x21c415352714fde6, 0xd6ecec67e3680028, 0x0000000000007d }, { 0x39fad8be088523f9, 0x32e34b9eb0fa3129, 0xd2b8a54e11cf7ef9, 0x1db0fb4227f45f23, 0xb7aab92a673256f1, 0xd95c65c3f21d9373, 0x33307d6134d75a63, 0x457496664ee9a05, 0x00000000000136 } }, { { 0xd657a8a716cbab7, 0x43579707a8b0e3f7, 0x2e5d4304c24677bd, 0x4416e69d4351a866, 0x6ad0a3ff96cff670, 0x9b8b079a03044e32, 0x6627822e065ca37f, 0x7c1f4dea50dd4d64, 0x000000000001a0 }, { 0x57b20fbbc4c01aa0, 0x91a4529e18808d60, 0x553b3ab535b5417a, 0xa1ea96ee29afd2aa, 0x148ec76567c84b17, 0x4fdbf4e86934b28a, 0x2d30269a1e1cfd01, 0xae81ce08aea9f730, 0x0000000000014b }, { 0x6aca3ae409e527af, 0x190035d61fd79248, 0xd4dc8ffdbf2d33db, 0x4baf8577b57761e2, 0x602a419b79bf3031, 0x316099f2e194e15b, 0xd2038a7a26acdd3e, 0x912c669cef6f97dd, 0x0000000000005d } }, { { 0x8389d94782a6d584, 0x57cd30250aa517d2, 0x379cf22d8a3dcab, 0x344210c4b14e8d4e, 0x6d58b59c335bae95, 0x1df11f82d39eab8d, 0x3d38245354aee5f0, 0x8159952f0284f6a5, 0x000000000000e3 }, { 0xf5ab71d36626b41e, 0x54b6875d02e0ddfa, 0x83287502ca6b4091, 0xf9985b6034898be, 0x3110ed54409fdd9e, 0xba06a5efce828539, 0xd16f69a8a35a2a37, 0xda05f8354ce6c0f1, 0x000000000000f6 }, { 0x8b3ce285c143dcf9, 0x633d1237d122c341, 0xe7b8a5d11dd64f91, 0x632ddb461583bd9, 0x27acc2f6fad5160d, 0x6b4666e2238af17c, 0xa66cde9b88558c28, 0x39a764ee78d4e7e1, 0x000000000000a5 } }, { { 0xccbb3d44af9850a3, 0x37218a31022780d0, 0x9ea96742bf28a7b, 0xca215e0351102931, 0x4b7dd0e28fbc0656, 0x163765710d0d87f7, 0x2f88212918a74c69, 0xbd877ec1e191c1ab, 0x00000000000159 }, { 0xce246b5b11ae40d9, 0x8734b1ace41c2bcb, 0xdfc70e433b1090ba, 0xdab04440d16d6812, 0x2a9deea2af2caacc, 0x4bd12c0815c05e47, 0x689703ec511b87ca, 0xc7c046b9fb9a7dec, 0x000000000001ea }, { 0xd1bfb5e513a3967f, 0x4a8088f64b0861da, 0x3eac3c10b67c940f, 0x8ad2ca44755eb0c5, 0x82b9558b868a5369, 0xa8b27e28edd1bf8b, 0xdcaf85ad11114a95, 0x47ce0db48478fa4e, 0x0000000000015b } }, { { 0x2c54640030424fd1, 0xa8a36856388f42c, 0xf19f9e4646fb6e2f, 0x1147fad46d052f45, 0x6da7c66ec68b5fc5, 0x8411f599428a5cca, 0x60a872cf7fad58fd, 0xe7d4cc796e06e9ca, 0x00000000000072 }, { 0x250313ff53a1a6e1, 0xb38fa7009fe38e42, 0x225f8988575a148c, 0x843d827c328f1bdc, 0x16d6aab456fafb42, 0x8b601be1b5182464, 0x2b1ae29a8d1c2461, 0x2eaf3fa933631a83, 0x000000000001b3 }, { 0x4c5fed56e5a05e4d, 0xce7926a9cfa25430, 0xc514fb1b824825aa, 0x395397bdc0b90e86, 0xf51a19ca54297bb2, 0x898b54f93d60309e, 0x8a1d610a0497aac2, 0x9261556fcc3c6f68, 0x00000000000075 } }, { { 0x9cf1c6c3c61dd1db, 0xb72c9c5672fdfc39, 0x5d56a809b47bca0e, 0x878fc295d5dd9bca, 0x78bada0c62426152, 0xb0d9d3b9af06e790, 0x7e00ec8269b746c8, 0x511cc179d03a7e12, 0x000000000000e7 }, { 0x8b34a731a1971c69, 0xf5bb69298a362307, 0x27c11546aa3f84fb, 0x60366438408e85fb, 0x34dc90e192b1f5aa, 0xfa848a5a8de7d012, 0xd6d8e5d8a954c5d6, 0x6e5d67e4dcd28473, 0x000000000001ca }, { 0x1458bccba4ad347f, 0x960f4f649d30b357, 0xfbc0498791306f21, 0xe641a97515fa9f6e, 0xd13fce5a0e064769, 0x3b6f71e8264e9f77, 0x609a24baf9eb7d6a, 0x413a1b476033dd88, 0x00000000000034 } } }, { { { 0xff1cf5bc339395e2, 0xdac1fb75792b379, 0x1a7d3d70f7194e01, 0x66e310429e585f7d, 0x5b94a7086c424fb7, 0xb5ae72e9df6df655, 0xfa3559d0a0444f11, 0xa497cfb05c3ccd9, 0x00000000000106 }, { 0xbfc249893465c7bd, 0xf2d915abd1446e1f, 0x18341f147968286d, 0xa86c1c521cc97e8c, 0x897b920da064c770, 0x67f9fa933b50d403, 0xcc258a8a60f73af7, 0x9d8047264cbfd0f7, 0x0000000000017c }, { 0x3e2a31097c34f200, 0xdfb6b05a013f72d7, 0xadd8e500ed8cee2e, 0x11d9bfa30d5e3654, 0x35c3e6ebbb25d893, 0xde54986fbfcf2203, 0xc77eb8fc69514316, 0x4c57b9cb4aaf6c92, 0x0000000000010b } }, { { 0xf68e105d7cc8fa13, 0xb8b95f75a4dbe154, 0x78ff01d680de4fcc, 0x539a3ca37998defd, 0x9acde7f9f3a7cb05, 0x7368d5d205017e, 0xd2b9b0f75026de42, 0x3f90d55fe1fd2aed, 0x000000000000b8 }, { 0xd2d1253e982338a7, 0xc4ffa240be6f86fa, 0xa64f67fe7d7c77da, 0xb28d45079cd827a, 0x73c52db8e8c36727, 0xb1616af0757e3948, 0x90df8df462c737ab, 0x366e6edc13ff6de4, 0x00000000000041 }, { 0x687257ec5202fc36, 0xd48888d6dd0c0e5c, 0x6500508d6961a754, 0x97608493edc8283d, 0x93e53eb50673e169, 0x465b632e319da879, 0x685c4ced0042bef, 0x380b2d87fd81b551, 0x000000000000ff } }, { { 0x147481c9c0984134, 0xf9b657cab4a9a49a, 0xc71659fd446f45b8, 0x9f783a65bb025c55, 0x3b8a4cb78e71fd27, 0x829c22fd28a8421c, 0x5a90e07365a1f0eb, 0x172192cf5b0e4296, 0x00000000000061 }, { 0xe479389aa9266a71, 0x615ddbb9c8885df3, 0xc3f2066f8843c445, 0xe0dd9d93bd526b67, 0xc11b247243fd8b25, 0xaeea18138996a416, 0xa82bbc2e5d263c0e, 0x897e12f90cc5f064, 0x0000000000009f }, { 0xa15acd5973608e6b, 0x38c06a0b514b3deb, 0xef0de347748ccea7, 0x2db5470ee3ef0a5d, 0x91b13a7abd312343, 0xebcbc91836fc3344, 0xbb4bdb534799e0b4, 0xe14da10930883a28, 0x000000000001e4 } }, { { 0xe4ae92d8ee5ba178, 0x1bdc7f7afd52934, 0xbec576b94840c13c, 0x47259e2acc9f7d47, 0xc075761d2cfd81f2, 0x6d54cf4f0fab4abe, 0x511427ccb34f9d81, 0xb7fbfdd723044a11, 0x00000000000084 }, { 0x7f67fb328c70e31e, 0x793ed4670ed009f0, 0xe21c9893a1663414, 0xd302104347f7e46b, 0xcaec415de2480d1c, 0x4651f9a6a967a084, 0x8bcae7d42f28cfaf, 0xbc1f1611e6b981d4, 0x0000000000009f }, { 0x581f5fd13373bf8c, 0x960a6cb9f3f2ac00, 0x1140a5f594a8fd62, 0xe717f52ff209b57e, 0x59fa88da54007524, 0x95b52aa88a281101, 0x3748a32c71f38fbf, 0xc4b3c9696cf328eb, 0x000000000000f0 } }, { { 0x2cd0078cba80629d, 0xf5488da2db198f37, 0x540ba50e46f14c6a, 0x1f1695eedc601301, 0xec2b93d1f30791f9, 0x88086a1261606364, 0x38cbb72c52dba38d, 0xb69351ee7b4f0bf0, 0x0000000000009a }, { 0x4e6dcc66b5b332b, 0xfcccb36550aa79ea, 0xe985152f7d602772, 0x6d7684c7bc1780b4, 0xb77117fc6dd95712, 0x51a5d0c94783c716, 0xe76adf984912094, 0xf54ce574968a3eef, 0x0000000000017c }, { 0x1e4afe81cbe712d2, 0x1a078a2c1de6604e, 0x142f0f6201a1daa, 0x7d614a58c802e1b0, 0xef4e0d69f7d78c1d, 0x53fa092db0342d20, 0x4796b4ab1c969df3, 0xde97bfda0c77ff6d, 0x000000000001cc } }, { { 0x656fe1a629e13360, 0x894f70bea0408d5f, 0x9b129f064a0aac70, 0x70d28523d88b0670, 0xc4dc47c756bc1158, 0x23b31556478718cb, 0xefb5c2a69f34cbd, 0x82071cb9a05a348d, 0x0000000000018c }, { 0x4d75109e1f1f873b, 0x7960b082069f4258, 0x451f1b1b5c525459, 0x5daa346b895888f2, 0xf33e91a74f55977d, 0x37d8aa5238578304, 0x38b581abd404e0d6, 0xe8ff06e3b823d463, 0x0000000000009a }, { 0xb5b2d946c9b1e867, 0x6897ebefb9b5d4a2, 0x9f3fdf21f3c2466b, 0x7c4929c67dcee359, 0x64dea5f5cf5ddcd1, 0x58491582cd624d1b, 0x73acd95f95e0258f, 0xf200cabd56235207, 0x000000000000ec } }, { { 0x77da49ac8249ec85, 0x7e61a0752161e5d4, 0x6cc7efd781e1e8cc, 0xa91bb9ed34716730, 0x4785553931e43ac6, 0x6d3841f77676fe33, 0x7f67c39109f9b70a, 0xbe629f8d0febca27, 0x0000000000017a }, { 0x47f0254d294659b, 0x51a496ee55714410, 0xf4fec4b738374f51, 0xc7d8d0795f230519, 0xcd5a74b631d5d3e0, 0xff6a1787c221a212, 0x2a6a3af8531a9703, 0xfe7d4b534ab3463d, 0x0000000000015e }, { 0xa666778b221c85da, 0x5f7b9871ee494252, 0x8bf95e18b195ba44, 0xfa3bb285232ab587, 0xe2b572e46fecca1, 0x348f16634fad6232, 0xec57ff5d5ff90de1, 0xb9630e13370306d8, 0x0000000000014d } }, { { 0xa31c7bc1e807ac40, 0xd17c7d9ec37b0534, 0xbbb8eca34ea56891, 0x1a82de446390f447, 0xce36f0d163136711, 0xcfc723b768f0b87, 0xd5e1d50b42d48437, 0xb9d8a0b2d7b0dc91, 0x000000000001be }, { 0x47906507a61c0d4e, 0x59a064a0bbc73d34, 0x25d876036ea2b0af, 0xc051a91757e054a3, 0xa52a82683a13bcb0, 0x1a37bbba894d658b, 0xa96d8d3dbf32309e, 0xd5079dce0bb3c3cf, 0x0000000000015f }, { 0xe6c9f3721ceba3a9, 0xeb51995807a0557f, 0xc4fa78fff6bfcefd, 0x545cd53d02a8c2ea, 0xfd7e524a57175f16, 0x16f99b4015677500, 0x2924c1f27851825c, 0x4d1b426ff66cb8b0, 0x000000000000ce } }, { { 0xf7f710287d282b8b, 0xc3bf45088fc93fe5, 0x1b137967e808acbb, 0xb8eee291b168dcc2, 0x5840a1bdcbf9f327, 0x388e897acc560df4, 0x16a3752f1087a29d, 0x3497a980b6a2b695, 0x000000000000e0 }, { 0xf08b3c39de40eaff, 0x726a06a64f2f6882, 0x2d0315b64d67da28, 0xc6e9029d32fbf795, 0x2d39888d57c51294, 0x2fb667ec8ff3d94a, 0x14452c6886c26d98, 0xcecec54fe7de56bd, 0x00000000000112 }, { 0xca0d2974dafce4cc, 0xdaca56d6588d2fd6, 0x67c8a2d9f4f37450, 0x8358d49e7d7ab0b2, 0x5a521ef8a5cd79be, 0xabc9f448feb03dbf, 0x35f8dd9e610cd160, 0x59220304d66aaf7, 0x00000000000095 } }, { { 0x7a3d5b04f7ed1edb, 0xcfd3ee5803b3e48a, 0x43d1d2f94d8cc529, 0xc4511e3e72d3dabf, 0xde30a1948b8f25a1, 0x5921b6008d415f15, 0xc5ffcbb3f77fdf1a, 0xe5f859834a818ef7, 0x0000000000000d }, { 0xda355adcf206ac70, 0xa90ba76a76c6fd5d, 0x637790f358b87863, 0x56715bd2744f37c7, 0x7e962844d863fb49, 0xb660d14ce165092e, 0xc199adffc8d16c42, 0xef587a6966d7c9f0, 0x00000000000107 }, { 0x61c7b3c8fc15dcf4, 0xd92c9fa40556dfbc, 0x7ae82394f37d927c, 0xf546de3ab57935fc, 0x748ac4f4982469b6, 0x278d5aa8ff598599, 0xdba52653a762c2fb, 0xf02b33da4b2836ff, 0x00000000000176 } }, { { 0xc24f54d17a4bd45b, 0xa5114381d961f535, 0x48384c32ca257923, 0x4280abc4f2c18edb, 0x14b647db8948c1b, 0x25770afada41bc27, 0x6d3ecc99b51d104d, 0xe56647580d48075e, 0x00000000000034 }, { 0x62719e4f47780c1d, 0x5d563d28209a0e71, 0xb69f89ede5d64910, 0xfceab0aa05dd2e9a, 0xc6ffb49458881a76, 0x56882ddfc9b58413, 0xd87d838321478f01, 0xcc81689fae4eb4c8, 0x000000000001f4 }, { 0xf29a0582db45e4fc, 0x60348c4692480be, 0xf0a6bc57b5b0eff0, 0x3de022e14126f0d8, 0xbf7ce924e9eda4e6, 0xf227af44d7dae05f, 0x7d146ec12b6566d5, 0x3e74215d2aee92b5, 0x000000000001cf } }, { { 0x631f0b759700c031, 0x6d7ed84c1981d91c, 0xa0c37f7d5ce58305, 0x97034dd9945081fd, 0x2141b192faa82e25, 0xd1abdfeac39736e2, 0x2fbcaa149e340751, 0xc0e542d3858b6bc4, 0x000000000001a6 }, { 0x879ed9f5d19a12ff, 0xac47653df3d118d3, 0xb021dd9f59d325be, 0x6a79f42a697ead50, 0xcae38aedc20d016a, 0x3d7f5d507d75b9c6, 0x68657a2db8164ced, 0xd8bbfdb6b54cf1a3, 0x00000000000008 }, { 0x2582b55a9d8a98c5, 0x4f871893f0251bf4, 0x8e921af9f8c8ea47, 0xebbc3197191e3df1, 0xa5aacca60582263d, 0x3a89cc1be2d4d1a7, 0xadfa89eb0423d5a6, 0xa4e1c35458f836f7, 0x0000000000019b } }, { { 0x61569cbe52c45315, 0x62ff032df1e7103a, 0x2c3f7b21081bd469, 0x21779f656ea83d69, 0x8b3462aceede75f0, 0x7eb3ddbec7e7bb4c, 0x2717cd19e9bbd954, 0x471ca23a2300c965, 0x0000000000015f }, { 0xb6247993dd3ddf89, 0x5b4132c5a463a2d3, 0x239d71ff8a0961a5, 0x7321794c5a181c5a, 0xf18da90751177bf8, 0xbcd81a882965b0c3, 0xa2f521395017605b, 0x5881913b40a924cd, 0x000000000001d3 }, { 0x9c46a403e2fd3a0b, 0x68a1c7bf7fde87b, 0x4191fedd41a2dd01, 0x7efeb847078fa684, 0xc57c45274888158b, 0x5b14ee36d8358a68, 0x480ab37e3f48ce1b, 0x6a053872f76f6042, 0x00000000000077 } }, { { 0x404eede99c293020, 0x5d3ee9b8e793247e, 0xc59af3742239f49, 0xc0a88a335b97fcb9, 0xf05f0844ba80ed10, 0x78acd00bd97a3970, 0xb9f5a2778df5ad7c, 0xb852987811c7b8ca, 0x00000000000069 }, { 0xdb00c41dc75dfac7, 0xe295bfe64e93f26a, 0x6afc1fadb0c23100, 0xcbef2e12ec4cca6, 0xbbc8d0748defadb8, 0x52b5d3293345d692, 0x1cfcf549cbce0e16, 0x8a32a1e64a7cd732, 0x000000000001b8 }, { 0x444e6ee862e9a572, 0xb8219031e02abb05, 0x8f88383d2be887ff, 0x4da0241455bc3147, 0x38c946751dc03635, 0xbe70a593dc0f34d0, 0xfae45fb757ad4d1b, 0xb6230b7d6ef3ee77, 0x000000000000fc } }, { { 0xa40523e29d412869, 0x1f2dde9fc9f27af4, 0xb270e38d59746002, 0x8a7faef3d835e130, 0xa7d53dddf20a2034, 0xb3cb0e2ab8432e30, 0x4dbc877f392093e2, 0x5b86b0c20d2c413, 0x00000000000112 }, { 0x196530d0fea07505, 0x4282c245b8311c31, 0x75cbf6d25c6f77e5, 0x3fd8757831fdd3, 0x1ebe25aa4e9cd577, 0x3fb24200ce1052e2, 0x9bdc9f5dbbe44dea, 0x3739746b278270eb, 0x000000000001df }, { 0x7f21a0177da8c8c7, 0x654e66721e82bbd, 0xa0d81467edad4bfb, 0x3a61ed227025ca8d, 0x7d5255384f1de6f7, 0x1ae9c2812950b1c6, 0x54bca0b7287d526a, 0x17a8f1724518d8b7, 0x0000000000008f } } }, { { { 0xdaa2164ba30786a1, 0x26f42f0a59ec5ba4, 0x917008caa145341f, 0x8a27773646240d01, 0x764f4f00feb89884, 0x8f460893168e04bb, 0x27990c0a798e3a67, 0x985a57a68a77214d, 0x0000000000002b }, { 0xdece625c013a482c, 0xcdd511f0f621c29a, 0x1cabd016dd967153, 0x57e2fca2dda7b3c5, 0xb78c1f6199b71dec, 0xfcce08abd0e8a64e, 0xf9737680ebce41f, 0x50767336853ee699, 0x00000000000106 }, { 0x26b70c643fa2dd1e, 0x5dfa88bfb75d2665, 0x2edd09e9c21782e6, 0x2f389ddf5eed22ae, 0x242735d231401fd3, 0x8de84c7859bcb904, 0x285a99205f4b9f4d, 0xfd2e99059ec5b391, 0x00000000000141 } }, { { 0xc3b1eca4adcb7980, 0x99eccc09a8548a83, 0xead01ab79e3bc589, 0xb2522d09f4579b72, 0xd4a9244e26716a2a, 0xe7a1509203d06a16, 0xb373de1e0e0c1174, 0x84314f1c9e285e3d, 0x000000000001cf }, { 0x891ab0f53b7f04c7, 0x373140733f8f7bf8, 0x8d71d354c7c8f5fb, 0x17434ac38d3855e8, 0x159aec9505325501, 0xc90c33745700233a, 0xc56f3103dc816cc1, 0x1a844bb7a2d6f922, 0x00000000000144 }, { 0x3c36851588e3817e, 0x9efbec63a02eefc5, 0x3a7e823a86b4772c, 0xee753549f90a3b5e, 0xea799154c67d97df, 0x19af315c6260fda9, 0xac84a9bc3b5f48ab, 0x4967a417eb4ca001, 0x000000000000bc } }, { { 0xe6d3835337b31b60, 0x583df5162881faa5, 0xd67ff743088833fb, 0x96842247aa5bed06, 0xc1d783a7627ba246, 0x1181bb54bc9962f1, 0xaf1d8e92cf983058, 0xa2578d09c55b2de, 0x00000000000177 }, { 0x1a73927906bd0ed, 0x92301d1ba42ea4d4, 0xff7cae964bf64b55, 0xfb926bb5a60b7c3c, 0x6d04e77be22e011c, 0xcbc6083688b56075, 0xdb2bd28001a13597, 0x3caf64e7e3df3bc3, 0x00000000000136 }, { 0xa3e68ed45af33afd, 0x86cec3e05a5ffd70, 0x555786048d69503a, 0x39cfad09fb28e26, 0xed75c9e5ad220bc5, 0x25266c7707e8ede5, 0x46151816c3133fb6, 0xaa5ae4c4617b2452, 0x0000000000018b } }, { { 0xbaa9add0bb00e078, 0xfc168c6734188884, 0xbeb5e59539ae5b8a, 0xbe9d1517abf3874, 0x3729de8d1309e4e1, 0x117b0e66aedccafd, 0xc64654d1f8d5e12a, 0x121177c51a106751, 0x000000000001c0 }, { 0x3b3a395e35f42cb9, 0x3c6d1c7c1e1f0dcf, 0x18d6dea0def9079f, 0xa292223159052e21, 0xa63042f7d9805bac, 0x6422c31f30a5b9e3, 0x16e2be5723873360, 0xb97abdc95642ff63, 0x000000000000a3 }, { 0xeed9c1e48fe51223, 0x75e12a3e705ff11b, 0x6c9275a4e8d3cbdc, 0xd46822b5cb4019dd, 0x4553a5ffc2895d11, 0xc786010ee0e7c5af, 0xf8065dec57e10e0f, 0x5ccae402fbeef8d0, 0x000000000001aa } }, { { 0x1a16163d7aef7eb4, 0x5223192597be8482, 0x5a5cbc62e6c9063f, 0xe81f5006d67abc43, 0x5cb1e12d959af467, 0x9ab9c0d328ea8afb, 0x26cc112b4044b3af, 0x2a2be9e5ba96ba88, 0x00000000000128 }, { 0xa4e1af5e367c1f46, 0x9dee6d16d0f84a30, 0xbe2746333ff23a7a, 0x37c002a7a9496b8d, 0xd39d5d027e98721e, 0xbc24059e5aa94bc3, 0x927f744bd97b2ec, 0x67808c97c661aa35, 0x0000000000000d }, { 0x9afec279aae5c6c6, 0xe08cda5766ca314d, 0xc8d48269118ef53b, 0x5ff156cea4914bf6, 0xa6e9c47772e29f7e, 0x7397a6e331a32471, 0xc7d0d3d349f32e9, 0xdcbe336c7e5a57b1, 0x0000000000013a } }, { { 0x4290f5bf421d61eb, 0xe0e311e7a754d110, 0xb425ee881b0cacdc, 0xdd8a4ed1e5d2efee, 0xb086a66569860cc4, 0xaedf0c70a208b24b, 0xe3b1f6a6f52af377, 0xa33f68915e22271c, 0x00000000000186 }, { 0x4aaf751a19c961dd, 0x6059f7180a0493ff, 0x88f00509b1ef249d, 0x6391cb747ea6da73, 0xa8bd8882a037c028, 0xc6880e06d2cb8fa6, 0xebee526e1b5307ba, 0x3a8314a596c75097, 0x00000000000129 }, { 0xae6b93dd61468437, 0x3485dea58e617642, 0x9054a10fba98f102, 0xd11e589789bea160, 0x6317fa68abd78c11, 0x15147cce6a77e825, 0x31eca129340bcb4, 0x2e8717681bb98fdc, 0x00000000000188 } }, { { 0x7806b56c7a022dc1, 0xc64f5d85a24f6a42, 0xf3e0e61daf56fbc1, 0x6b96891c9d3a0ec9, 0xa4937d983dd90c0, 0x3a848cada40c2254, 0x111ed23cb28cb0af, 0x990a851fda39383c, 0x0000000000006e }, { 0xca5d5c0f87d064ee, 0xf5dfe62e2d3bf84a, 0x9d9df747e04fb513, 0x5585bbef316164c, 0xebf74f2b48d568ef, 0x9eaf8f18a9771099, 0xef4d1fe3af3a2bc8, 0x94437480667706f3, 0x000000000000ec }, { 0x73d13d60e51c5879, 0x29134b312658770f, 0xf9200eee30eb93be, 0xbda49a73c1af6952, 0x954f9cbffaf1d0d1, 0x1a27d7617a17f8f0, 0x7bd98cce63723078, 0x4701b8f532f9186a, 0x00000000000095 } }, { { 0xf603d23b18e8df01, 0xe505349a6c16025, 0x7869ca3f5979373d, 0x75e7931f9ee3e35d, 0x376d5f7e3d2a4473, 0x1cc2741c833da5a8, 0x7cea65dd32227630, 0xa1013630eda3544e, 0x000000000000bf }, { 0xb577956d88373a60, 0x794c42fc8807bb6e, 0x8d48fc3fe9968865, 0xf778313b98e8f4e1, 0xe1ca8891288fae6f, 0xf2f3907ddc99501f, 0x45e29e8591b3c131, 0x945ecc65c077f8a3, 0x000000000001ff }, { 0xd959c133eb9ddffa, 0x9036a9619ef4e770, 0x2746db0a992f01bf, 0x4c960e2377c72243, 0x66211081497c6d51, 0x146bcde7d58c1609, 0x4866eb4367981aa8, 0x297423cd89dc04dd, 0x0000000000008f } }, { { 0xe691bfc23a66eade, 0x8cdd96d5a319ddfe, 0xd2747b72b52826ad, 0x49bef4f02f92d99f, 0xf81a3c52d270be97, 0x4107081fd6f92b1d, 0x212ad096347d4155, 0x93d647da553f0508, 0x00000000000153 }, { 0xfb9397366d74f92, 0x7be22f1c01edc27f, 0x70e3e287e07536c0, 0x844024af22092fdb, 0x123ec899b64b47c4, 0x8252b27f0b525059, 0x5680fe95d2b2818, 0xa0c418a80e06a075, 0x0000000000012f }, { 0xac7ba55a2e60aa9f, 0x596287110f2c456b, 0xf12a396c5ed80d88, 0x83123a225939f3d1, 0xae5ea6956538cbd3, 0xb123723eb5cf5e15, 0x136e0af314cd9843, 0x3e461efdc799a595, 0x000000000000ce } }, { { 0xe267f47349794680, 0x1b4420bccde965cb, 0xe8b61641b9ccdd12, 0xe91c22fcfe641299, 0xc9a5d38d6106a935, 0xb8c68b9a883841f6, 0x1c4ca0bbf477f004, 0x26aeb3717e176fc2, 0x00000000000011 }, { 0x2edf0690a65f76ae, 0x81a23486bdbd354, 0x99cc71088105514d, 0x63cd44dc7fab37b6, 0x9bca587678638438, 0x8ab84d9f6db2cc85, 0x87654ddb85960231, 0x44bbe4932377bfa, 0x0000000000003c }, { 0x8f69d19446c69b9b, 0x7c2feb1f49ccd27c, 0x9ee9f22770094b6, 0x13231d789cb72e18, 0xcfe0894aa36cbcf5, 0xc1672854073f67de, 0xe812345b672bc598, 0x59ec429e9083a8ee, 0x000000000001ac } }, { { 0xccfe5db7605561c, 0xb45a1b8d2d080a99, 0xff87b11137a9a188, 0x647cf07fd576aa03, 0x98eb3f3af3c4d929, 0xd5ee044627852f22, 0x1741d1cd1eee99f, 0x2ec93c7990a31af1, 0x000000000001ed }, { 0x344e1a6278eb2c9d, 0x9272f48327aeee00, 0xca9e5d263e9a360d, 0xb15b24c6cd3e750f, 0x7a818e6b824ec4ec, 0xcb3871e2d39ac92e, 0x9131c9c028a28a35, 0x1cafe93089278d8b, 0x00000000000137 }, { 0x6e817dbbe499f496, 0x5c2297c08c2b616e, 0x8eecd2268b068a2b, 0x66317e2739492e9b, 0x7f3b408110eeaf70, 0xd847226656d245d2, 0x6c4d45fb7af09dd0, 0x28ca2f76ddb093c2, 0x00000000000035 } }, { { 0x2e36faba89eff1c4, 0x94e8d356be17b09e, 0xaaf541f8deae19c6, 0x95d379dca7639f81, 0x5ab19d0ac4fc505a, 0x203478a34b38bf72, 0xd463a7ec4b98545d, 0x8e5d12b22f4b4157, 0x00000000000074 }, { 0x9a0216db122428de, 0x902391df10bebb4b, 0x736370c36157a118, 0xe3be43dde2767a77, 0x80f2a5ce0b26df18, 0x1e9758f3e15dbc80, 0xc984fdce9d28aace, 0xf9ff15a3ab08e101, 0x00000000000057 }, { 0x9523c2b3547afe64, 0x57c13c5079e96c73, 0x7a066d90831461a2, 0xe85627f954553f5e, 0xeb48d3077c6024f8, 0x9940aaefee0bc2e7, 0x27192cd144fc414, 0x9218b71e72a372af, 0x0000000000014d } }, { { 0x8b7a2d2581a7e939, 0x169b5da946077d17, 0x263d7498e3fc3f23, 0x7c07978126d17fa7, 0xb24ea9129724c225, 0xd38ce4b9e80e1d8d, 0x3c9343bf3fe3501b, 0xd4b5b3bf0fcc2eb1, 0x000000000000b8 }, { 0x8ac269e724bbc36b, 0xc7efa77e703f83af, 0xf71caddc8b15ad2d, 0x2210629ecf91bd99, 0x1a1d534f4cf96357, 0xe6056e45ba045674, 0x447c8cf408ac18f4, 0x351423b16ed57101, 0x000000000000ab }, { 0x812e4fe24bf6f90b, 0xe6928800d9bb37a5, 0x9ed9f93096461dd0, 0x8ab11b95faf27262, 0x3527746d5cafa5df, 0x2a8ae81240b622d1, 0xf2462e1f9841ffd0, 0x2d9f0edd6f078b0, 0x000000000000f6 } }, { { 0x5efbbf398726ac6a, 0x19b350a33633c461, 0x15a4c1e7f93dab1a, 0x8f0aa5df8e9cf77e, 0xef49f06f4af1f0f0, 0xbdf11e5cc21d9e6d, 0xb632692d62487e16, 0xcedd1aec24ac6f02, 0x00000000000069 }, { 0x1c022866e583cc6a, 0xf88651f2457e32ed, 0x6526b5ff6dc4f834, 0x392ed465ed73333b, 0x111f58a1b19937b6, 0xb6aa33a75cc4b1a9, 0x4d2d5ed48a146d52, 0x6a9c623315d9083c, 0x0000000000007c }, { 0x5db6b3be49fb7bb9, 0xeaeab0481dbf31d5, 0x74ec7233b9ae57b4, 0x3f2854cf7d395a16, 0x983dc187fb06c80, 0xc39c6d46b185be9d, 0x372fabb3e33878b3, 0x19e9a66636532277, 0x000000000000ba } }, { { 0xea4db7a832c03516, 0x8b44b2ab0537e79, 0x836609084bfaa3a6, 0x34e82f7b0e74ab0f, 0x2355282da0f1c6d1, 0xb02cc19cd6f8dd54, 0x437b8608a7e55ffa, 0x2abd4b35dec20079, 0x000000000000bd }, { 0x3c6ac8f4a2c2a29e, 0xb9f11deb9a3068b9, 0x32b7ecc1aebe8d39, 0xa25b7710f20aadb5, 0x656debf73e4cb23b, 0x145f8a0be1ccd513, 0x8db1dba3de7a494a, 0x807ea47038a11390, 0x000000000001e7 }, { 0x923113f335e81761, 0xa1b8ff206d7aea29, 0x4cde4343a6e9a903, 0x6a2caf6e8430643a, 0x45fff85e6ced5818, 0x8e68dbdb1cf13cc6, 0xb6c32e091883d307, 0x34cba490b3a80ad9, 0x00000000000085 } } }, { { { 0x1ab67d517c1f22fd, 0x72dff3e14f66dfb9, 0xdeaea1d453817cc, 0xdf6759cacbacef16, 0x54dbcc549d124a38, 0xa6b8c92f89095b, 0x87a90afb34b61b10, 0x12e4e249e7d66fd3, 0x000000000001bb }, { 0x5d0f915a86f5ee2e, 0x1472ab1859bf3928, 0xe9475e558178e097, 0x74a04db111f90413, 0x7d87826c5e8d4343, 0x696e15885fa8d757, 0x2a7bff64f5142001, 0x7623e08bac8debb5, 0x000000000001a6 }, { 0x4aec0892aacd3ad2, 0xa71f45fb0c2f1e1b, 0x1dc77bf5238a5adc, 0x713e582905fa8dd5, 0xa7db743ca1b20250, 0xf4e97c64561ffe0f, 0x3ffdfad6b2a8f827, 0x9e55c0b973f4b07d, 0x000000000000b3 } }, { { 0xf4b4d7f08d4b5d21, 0x47e6670098e3d669, 0x848100eff663ad39, 0x2e6592bea78f797b, 0x777deb81d8473bf, 0xabac56b4cbbf4da4, 0x75e4d7633c934937, 0xc54921d498b25473, 0x000000000001d3 }, { 0x7afda9b90bf04942, 0x1ca2493bcb2d5763, 0x72a567377c362cb0, 0x45dd12d65b988310, 0x7b5b6a397a0ef10c, 0xa2a1698950b03c8f, 0xaa4c3c517509f08d, 0xe3fb775009db5ff1, 0x000000000000f1 }, { 0x2653bbd63ad2b851, 0x328a3d4ebfdbcc3c, 0xfba54d79a0e6b13c, 0xa23e0ab9dd5411ba, 0x4c3b40c02b6d32e6, 0x6f3413ca851a1ff0, 0x31758f49273b36eb, 0xc6c6fe434416dfb, 0x0000000000003c } }, { { 0x8df33d48a19e4102, 0x725352242911b9a6, 0x6688cf66775ae86, 0xfd2b18b24cd9028a, 0x2cdb19b00fa6217d, 0x4c5b61d1c57e09a0, 0x26bf8885a36abd1f, 0x15b447abd1a5ef86, 0x00000000000035 }, { 0x8b2465b8bbba2398, 0xa9051e0ca5757a04, 0x3226a8e4c1ce2e7a, 0xb8163bd91a80bf74, 0xbf2e9d73bef56002, 0xb712095aa3c62881, 0xb89776fb16824d7b, 0x86320715ad542da8, 0x00000000000055 }, { 0xb6ae3b37d26a5840, 0xfd35cf4e9578475c, 0x25b16110e23ff5b5, 0x6c40f3bc6a417800, 0x48ccaa7c557de703, 0x6962584e4f81a67e, 0x256819d87f3ab628, 0x5081b10472b33f61, 0x00000000000021 } }, { { 0xc44248a952e25945, 0x902b9a914a56f3bb, 0xe705d602d5188c38, 0x966ea12ead7b11a, 0x31d0b286360999c, 0xf132215bd2c8c263, 0xac0fd98b3f3de596, 0xa887db5591a787be, 0x000000000000a7 }, { 0x8e3da0bc26847057, 0x58f2676d1a1c88b2, 0x813a938fe4dec0b6, 0x9cf77410980098a, 0x30192337d401835b, 0xc738f0a8ec16e19e, 0x7de22bbbcbe6e83c, 0x30efbd8f7b7d2458, 0x000000000001dc }, { 0xe821dbde753ac15c, 0x4c93d6d23753bef7, 0xbe9313808fa3419d, 0x4532f448e77a758d, 0xd39e279d3454844e, 0xfd5b775e27527145, 0x92b1b22471f71791, 0x156825eeef4ca0be, 0x00000000000178 } }, { { 0xc59d9e2cd5d4b4b6, 0x48a5d31b84aa862f, 0xde46c67067c3f55b, 0x4af9ada8d392cb50, 0x5a8e9edc244aad5, 0x394f962e6f0317b0, 0xf0164670964e642, 0xdb562fef8ea98c1a, 0x0000000000008b }, { 0x13ab5e3ead64785c, 0x9415c223c9f6ebed, 0x5e3f0161044ae16e, 0xd62eb282eb6bb73a, 0xc0da8f2cc943ca37, 0x8d392c69ec41fb98, 0x3c1ea97b46a9b0c2, 0x761155f6997521c3, 0x0000000000009e }, { 0x5d29cf9824c40c8c, 0x6ade1e5d9f4202cf, 0x22010012fdef8c67, 0xea907ed15a0c1b4c, 0xed737dd4af64a22d, 0x83dad82fcedb7512, 0xba68ccc34ef530ae, 0x2ae75d904603f03b, 0x000000000001e3 } }, { { 0x15fc9262250b1f1d, 0x9f5bbd92361104a4, 0x52a51fcd2eaeb8c5, 0x80e843f018db1bd1, 0xbbd040ba5a5034a9, 0xf4f6259b62ec492, 0x84a1369f173dd4ea, 0x3001bedee7b43537, 0x00000000000171 }, { 0xb21b74577be40023, 0x2b01766c4597190d, 0x247f5a922be813e0, 0x1f2bba15075ac0fc, 0x4a6c84aee8e90b37, 0x7c9957bee4b3d7da, 0xdeb73148f38b7d23, 0x382c9135b1ed2fd, 0x00000000000172 }, { 0x50d166160a7d86c6, 0x8a5f6dcf9014e186, 0xa81583c427be3ed6, 0xe0069514319bad73, 0xa42afcf71542116c, 0x71f2bba791812789, 0xbb391753bcd0af5, 0xf6c1ab65bcf7ccb, 0x000000000000df } }, { { 0xb6734245160e2ce2, 0xe2af653db2ad25df, 0xb123cf3016254e01, 0x78d39bd40be75a7c, 0x190636d8870dd88b, 0x8c9dd6c81e72ab6d, 0xb31831ba29558ab7, 0x767a7e00ce01f47e, 0x000000000001dd }, { 0xab0bba511d22e280, 0x80660463121f31c, 0xad3ed357a0ef5375, 0xcc243e22c266dc0e, 0xe5c4ad412113c308, 0x3e112bf14c77d041, 0xf078a7a18d78ba76, 0xb9ca4b36e77b0d05, 0x0000000000017c }, { 0x931d92da5372056a, 0x47202ec1fe7b211c, 0xf59590e13fd1dc77, 0x3780d429979342c4, 0xb9e47816bb5d7718, 0x3996f17ba4356e07, 0xdce226e9b2db035b, 0x5e925920a8d58ef5, 0x000000000000ef } }, { { 0x9290c9255d8fc943, 0x8a02f573af5398d4, 0xe722e1d757083d9c, 0x6e18f0d0da4629d6, 0xa6753c9c33265f9b, 0x4178fa43a23a12bf, 0x94d91a01ad47499a, 0x83989ca7542d6977, 0x000000000001fd }, { 0xd73282fe63d70367, 0xcebcd6c3bc19e206, 0x97721d89edc982f2, 0x4148f9188444d2f4, 0xaeee07214d4f1ef5, 0x481bd2ead8e6624b, 0xbb1022b99ef1e700, 0x194d4a0a2a2bab19, 0x00000000000010 }, { 0xad4743e3a7351c98, 0x3e9f46ce7ce51326, 0x1f1cce7321f78e6f, 0x1dd7b8974696e438, 0xf371876c5f2b1895, 0x962892f81e471217, 0xc8bbf7f3c898f3cf, 0x5d59203aab8e7ecf, 0x000000000000ea } }, { { 0x484f6be452b29280, 0xe6d31748ab2ff8ef, 0x16381e1e06f70dea, 0x248ba7d8d67fc838, 0x180fd5e46151a445, 0xe03bb634f517c445, 0x23612fe491fbcb63, 0xaa9d44d28d99c242, 0x00000000000156 }, { 0x9ac75cde932e3491, 0x84cff3626b308106, 0x8341107f5ba6f30e, 0xca196a4689779972, 0x4db295e69160a0ef, 0x3c61d9c51e3197f2, 0x426c8dcab1afaec6, 0xc74d636b65a29f5b, 0x000000000000e5 }, { 0x1d265aa0ef623229, 0xcaa51f882eb9e8b4, 0x3beef61d139cdcab, 0xb2d288d4f920baa5, 0x698132020bc075b2, 0x38de15fb4b19115f, 0x42889f8c228b6dba, 0x3f5eca570adce7b2, 0x0000000000004f } }, { { 0xb287ed11d5ccf9cf, 0x29f0311cf2635ed, 0x76355d70dc181e43, 0xc635cb82f0a9daac, 0x2b952fe3fcf2dc93, 0xeeb38f5b4ac1880b, 0x58c4260f88dcd6db, 0xd647d70dc7780150, 0x0000000000015c }, { 0x8dc104ca43150d3a, 0x47e9277c25833e2b, 0xf23efca450ff6f62, 0xea7d7fe2329f3f6, 0x8c50c3df468277b8, 0xc94b1937ba188a82, 0xdec59e9705c08d9d, 0x8597ceec279e70a5, 0x0000000000017a }, { 0xe69b188920f43f86, 0xa78f7e5e53332971, 0xbc81b325d495ac3, 0x9b6e957dda376637, 0x49179e214916fc8c, 0xd9d644288eebce09, 0xa0b238cc5238ef79, 0xc2b7cc2cf86817b1, 0x0000000000019e } }, { { 0xd006feb7b48abeb7, 0xe408a535b601a49c, 0xd685f9167328a8b8, 0x459ca6a593ca59e5, 0xf4f5b50d9f5d7f5a, 0x2efcdebb10ada4c7, 0xf87365ff073bc73b, 0xccfc17189a528425, 0x00000000000022 }, { 0xb306a233265ab334, 0x26a72254576fcd0, 0x102855ddbde3c2dd, 0x919d0b4cc19be26c, 0x4c905d2d6b029962, 0xdeac65974917d3dc, 0xaecffbcc0160e4fc, 0x7a88a95fcfc15bac, 0x00000000000117 }, { 0xbe985ca8d8560fbb, 0xb0c536349f9ee114, 0x1677868bff43c30d, 0x655e6db579cf9c1d, 0x500fd5b7c7fdb6a, 0x1ec3c54715aabffd, 0x4cc6ef1dd19f6196, 0xf1d2e7da35d3d4d7, 0x0000000000007b } }, { { 0x84a72cbe901a275, 0x4223eae3344b7c50, 0xa971e7ee6a0b112e, 0x2b9e393f73a6460b, 0x7d6eeb61d43c3653, 0x8699c3dd230a1fce, 0x26dd2edadbf0bac5, 0x11ffe0e6a4e9eee5, 0x000000000000ad }, { 0x41a4d2794410ffb1, 0xe25a68c10c5fc37b, 0xa317fc5a400c0bc6, 0x5358c456acfdd9d6, 0x31454b24493d6381, 0x6ea256636d7e105a, 0x7383bc07bf7eb734, 0x42f7afd779715582, 0x000000000001c6 }, { 0xdfa249e0a68e1a31, 0xa522becf82fe9e8c, 0xb9c85519fd151c71, 0x20e31d2716235ad6, 0x5076a0e0ed00ead1, 0x267f0c93578a89fc, 0x8840d810a0f18829, 0xf13f806e5f34585b, 0x000000000001a9 } }, { { 0x59cad4e8c18da77c, 0xaaedd034f5586767, 0xa3b3d072317e95f5, 0xceb2528e70125141, 0x673545f0ed160fe0, 0xcda65a55be87d9a9, 0xbbad95c4a8b71b42, 0x173621a22169b8f7, 0x0000000000018c }, { 0x7b2a9fa7a54bd0c, 0xf34903d017fa3241, 0xb1f12f282c36ddd1, 0xe436a57650124072, 0x526900e757c5a485, 0xfc96804ee923ff78, 0x6d839cc708898c65, 0x3f095a70884f2960, 0x000000000001aa }, { 0x1ece7fe8f8990a1f, 0x671490eebb2599e6, 0x37423125e3735dad, 0x356efc6df6a3d423, 0x8db31b96e00ab704, 0x45eab0f9f01fb9c, 0x134b51fd35903177, 0xdbdadf9acb236e36, 0x00000000000001 } }, { { 0xc49f33bcf35904, 0x8d8f40c503882777, 0xd5c95012e1661c2a, 0x351434e9569d1d71, 0x7de77d7535d66fdc, 0x2f408b8d7e4b5881, 0xea3fb15c12920b99, 0xb1837d3001d984c1, 0x00000000000111 }, { 0x97620ebdc6adb6c2, 0x85c04502c85063f1, 0xf430b2475c7357fd, 0x740fdb33936a6b12, 0xc0c53e679e96f3cd, 0x841dba3eccbc4919, 0xe12bf91e74bec738, 0x661d0fe477444587, 0x000000000001d1 }, { 0x6d4a0bc0aaea728d, 0x98dc434e5d15c6b9, 0x6daea51e31fbf413, 0xb6c6ffe6a7c09b0b, 0xa7af4ff26e01866, 0xb68b5f39dcb3e121, 0x3b2778acefff5f64, 0xd07b370fc4f4f163, 0x000000000000ee } }, { { 0xbd76bb7e14520202, 0xb9b970a62cfdf672, 0x7b8a816068a62564, 0x756a7df803a9b956, 0xd74772a9f46ada75, 0xd5e0ce1c6a7bbc5d, 0x57782605682e6e4f, 0xc711cd2d13fd3867, 0x00000000000026 }, { 0x7f71117560b6a81b, 0xc5557f4e681c4887, 0x9df9dfd682711fba, 0xc708917025e89fa3, 0x8b75e824eeb5e254, 0x47f2596bf415b484, 0x711ef584fe397c54, 0xa286247c67f4f5b, 0x00000000000119 }, { 0x35df11b646a964ad, 0x8cbb6a7a7aa4d511, 0xa728bb0a0811a1d, 0xbfbb4d58c956b503, 0x11f6ed0f82d0a98f, 0x97677a8135cc3e8b, 0xf0d5ab506d402fcb, 0x330e089b689658ba, 0x0000000000007f } } }, { { { 0xbc13071e449ca822, 0xa11f987c4507cdf5, 0x8f7618f1e94fe8a5, 0x736f50b505240148, 0xbf1c323a3bd620d2, 0x9238f33ab8d96719, 0xecc4e6bbc34a9af0, 0x5cdc96f4946156, 0x00000000000004 }, { 0x8c21fa978a29c9a7, 0xc3ae98e6c7283443, 0x3b5790224d2d48f, 0x30d75457347e4773, 0xe714f03b04255a90, 0xfbc0f8fcc3409bb6, 0x8e5b5a1f1f2e7d0c, 0x61384743f5267753, 0x000000000000d6 }, { 0x11e520934b1afb2, 0x35c3fbe4a3c3579a, 0xe27b63e8c0a06999, 0xef6ab05438b87242, 0x49decf6b05f58d6a, 0x5a6380b6480aa1fc, 0x7d8d0ed6115c2a5e, 0x1433058c54bc6857, 0x00000000000174 } }, { { 0x41e9b46279c040f0, 0xb011c9f3792e4ad1, 0x5b5eaec945335854, 0xcb29da79fe3485a2, 0x58962290e18f8c1c, 0x39dba43009e8e717, 0xf9dd09116673440f, 0x820406371acfe547, 0x000000000001e1 }, { 0xdf637a96b72724ff, 0x164b26431c4f6568, 0x4f7ca7f21f5da199, 0x30b5c1a6b017b2f8, 0x2a8c0ec8b3141945, 0x3f6541e8792ec2d8, 0xeed5a1e852ee6abd, 0x1129f120e21ef33c, 0x0000000000014d }, { 0xed3f71a8fc0d52c8, 0x3c45f50128903c2a, 0x6c6acafed87fa73, 0xc38d2297eec0916c, 0xc95b923ba0057fb8, 0xe351776b6b790059, 0x16db2fbaf0151153, 0xe5297fa69a6a4312, 0x000000000001e0 } }, { { 0x81df42662e7e6d72, 0x13a0c4002045cf90, 0x166c7f7c46facda3, 0x5e4677e848d974a8, 0x4c715d9869fd4025, 0x101f3f4a0a02e711, 0x1c28dc37681d36b7, 0xf97f878864256601, 0x000000000000c7 }, { 0x2f4c9116f6dbbb4b, 0xa0988d14495f29e, 0x6f5d915aeb1e283c, 0xb3d160b4103c3c60, 0x81706bbca44c28ed, 0x8323c7c06b9a2c81, 0x3fe20e59f761bf0c, 0x9ee299db400a0117, 0x00000000000046 }, { 0x2c5f20d404e00771, 0x736fe8ddce092974, 0xe7f69ae5f3c593a, 0x79d5acf993f7d72e, 0x4826a9dd76dd91f3, 0x8b23e521dada06fc, 0x2d9d85537740acb3, 0x776be779e9fc600, 0x00000000000171 } }, { { 0xee3934842868c4dd, 0xbf564c5820d06f1a, 0xd4207863d8cf8fb, 0x752b1d88282ba32f, 0xc0e4e71974c67e91, 0x5ae33fd503390e67, 0xca7386e32b05fdc1, 0x3642f309ba0591e9, 0x0000000000000a }, { 0xe189c28be99551d3, 0xb59e3a85b1a1755a, 0xfee7ffa5796175eb, 0xb5fdb1940dc42c02, 0xdd0f8d3a5a186a94, 0xa7e7a27f1167bc11, 0x6fe922d7ed0a3f11, 0x3653d85a36070de2, 0x000000000001fb }, { 0x4a229aca96c42301, 0x66eb9f064f4c37c, 0xb0bd8bf232252bca, 0x273438f1d3171de, 0x6fb34dfde0b722e6, 0x8d5685f39dcff8be, 0xe1a102d107dc49dd, 0xaafde04184764946, 0x000000000000e5 } }, { { 0xeb7274bcc3ccdb7d, 0xf667c1e1ff72aead, 0xab1af80741d6e4fe, 0xe7c3b0b8375fb7d2, 0x4c5fc0a5e51cd9a6, 0x6ca4ee5894e00c8b, 0xd674400f9d098f29, 0x53f0e0ce80016115, 0x00000000000152 }, { 0xa01ccd72f363adf9, 0xde8b900dbe628d5a, 0x105696ba9f5e0f84, 0xb0a51de01a2729bf, 0xa846c591f780d2d8, 0xcb6034afcfe1a80e, 0x93ba40c99cef45fb, 0x33edddd9eae0de92, 0x000000000001bb }, { 0xd63cac4483a9e3b, 0x6e0976e1d14144b9, 0xf5061fca3d97f1e6, 0x94c3c61ace077a49, 0x40befcac8c7bf9c8, 0x1c8538b6fd351bfd, 0x7e9b690b7d41eb44, 0xb3954641928ee7e2, 0x000000000000e8 } }, { { 0x86490dd49834186c, 0x34ebbcea6e638eec, 0x424e76fd2d1f2003, 0x49bcf975f60a1624, 0xe9a1221a562811e, 0xc4aa6661a988e6d7, 0xdd8104d45ac8c541, 0x96b84ebf0b973828, 0x00000000000147 }, { 0xe8be315388739466, 0x1d05b6b60acbc1af, 0xa1911a06f23f8c7a, 0x5cfa8c2f4f813622, 0xd9be36783ca49106, 0xa0d2834f11dd0246, 0xca84dcafd4340b3a, 0xedfe4f7b1a30702e, 0x000000000000a9 }, { 0xb04e569c4aec413e, 0x9cf8fad77013f79, 0x7d75c39b6ef9bf3b, 0x1e1fd11f41744746, 0x28760ae092bae951, 0x48f54c9e2e7b3571, 0x8ff3625c015b9ffa, 0xc960439cb473dbbb, 0x000000000001ad } }, { { 0x21f54d61b5211beb, 0xcabd474030516e71, 0xdaf0b9997e397d6a, 0x89d7c0690efbe653, 0x1455aa09abe7e915, 0xbd85199e09a4ffad, 0xf4f0b4bb4b65ac8d, 0x4773d20aeb18ad5, 0x000000000001bc }, { 0xbcfca4357d40dfd9, 0x9ec72d89a54f3827, 0x42d64fc1f081045, 0x4e7b389ab35fa56b, 0xff65e37b561ac606, 0x30ceedf258bcb1f0, 0xcba410a61d677514, 0xbed48e5c48ce23cd, 0x000000000000a3 }, { 0x782de96cf823cc54, 0x28df5bf7f4664aa5, 0x2f52900d228c86d8, 0xda2f22aeb565cfdc, 0x22b4e90648e744c8, 0x37f5f0ef4ba43038, 0x11c8860371e4291a, 0x40a4ebd512938a45, 0x00000000000058 } }, { { 0x7ecd2279bcf35a33, 0xbc4c60a64503a1d0, 0xc4e3e5d0669688a4, 0xa7d3f61cb9c44260, 0xcbe8bb685f260649, 0xa8898103a0772b25, 0x9b19b4e7efa205cb, 0xc3ba5b7e8e5bcd16, 0x0000000000002e }, { 0xb4bbbac9b13d00fd, 0x2d9d55fd85b28c2b, 0x31e18e2a8ef0146b, 0x90f740f3bcdf59a6, 0xb565a1fa8f809d2, 0xd94e18a934530c88, 0xe17bc97d5858153f, 0xa40f3515ab6b2986, 0x000000000000df }, { 0x266d5985dc79e1b, 0x44d22fb2d149a9d8, 0x2ec22ae264322408, 0x94f422020f7f0923, 0xc9382d58ef274be9, 0xf14134702f32a328, 0x74d20166abbfb6f6, 0x6a07b4e976fa2cc4, 0x000000000001dd } }, { { 0x5a499a1bcf74b935, 0x771f8d83143daffb, 0x8cc39a7bb83e0116, 0x2df1b478a481e238, 0xd641385ad3af3488, 0x1fb1eb3556f43793, 0xd6a23b0c0363b9d4, 0xd65903424a743c55, 0x000000000000f8 }, { 0x439e0c20078c61ad, 0xc4c404d2fba7f31a, 0xdab40f02bd90e1de, 0xacec48551f5c6b1a, 0x39a4106ca5418512, 0x60d3482c61e5b102, 0x99ea6efff64bade8, 0xd945d40fdf77446f, 0x00000000000123 }, { 0x449e04de69369197, 0xae5f62dacd2254e4, 0x8fc4059f47b8fc0, 0xb2ce79d0c9c44d74, 0xbedb7bdbbf393776, 0xacefa6a15a2d4385, 0x373502ef5cd46c2, 0x4a823f7ec02a9a8a, 0x000000000000bf } }, { { 0x6e7b7bb8049be3c3, 0x2dab740d4640a401, 0xbb8f58a7ef4cf9e4, 0x61b215b611392804, 0xb07b70b17f691722, 0x9988f490bc674e27, 0x86413b87ef236463, 0x5e46dd8614aa898f, 0x000000000000c6 }, { 0xaa645dc4569eedf5, 0xdbe1d94300a2e607, 0x48528d00a548b46e, 0x31221cfd7fb2b763, 0x1bf9de928f462e2e, 0xa54d44aa8e60d409, 0xd77af883bbbfbf52, 0xb620661473b92957, 0x000000000000a9 }, { 0xad1fd8203f2ed66a, 0xfe3540b12618b33f, 0x89c1f16bd4e1eb1a, 0x9aa51eab718b384c, 0x4f3bf9b84e002d04, 0x55750628a31d2f8a, 0xd330a000eb8a3e0a, 0xc7cdd3e841266736, 0x0000000000013f } }, { { 0xee03f2c2a7f794fb, 0x76ba9066f9c28d74, 0x9e22e2d445c25d94, 0x1d660a160dfe79fc, 0x650238055d053b10, 0xffbdeb340c0a87f7, 0x2bfc4d3ca7ac1e06, 0x91796b92a03ca1b3, 0x000000000000cc }, { 0xf361108ba5ab9ca0, 0x426caadfe790d53e, 0xc9da3a123ee63a9, 0x7fbaabd27e4651df, 0x245fd419bad50fe2, 0xca00681007aa9587, 0x7e2940fdcf34d3d0, 0x1f7fcfd52013da8e, 0x0000000000015d }, { 0xa67d6ff4d2999acc, 0xaa236d62e12bd2cf, 0xca954fdc15102a75, 0xe7178a7ae7b8396, 0x4d477b50ab39f285, 0xa8be03a367c621b1, 0xa2ea1a1c8d7b8407, 0xcb012ced9883703d, 0x00000000000039 } }, { { 0x681994ed21680ff8, 0x9e107c5b7ca569f5, 0xb367065567e369e9, 0x242ec959a242542d, 0xf80c20761837cbe2, 0xb1931189ca8c7c6a, 0xe845e8b5a12d8233, 0xf81dd1d9fdf338a4, 0x0000000000006e }, { 0x69586738e291105, 0x72c815f4f1d06872, 0xaf8174728e4857d0, 0x45d974ea2c3980bf, 0x7820c0a21fbd914, 0x6b259d332f59ddeb, 0xae13a0b7b10d0de0, 0x8bb9cc5a2c309d2c, 0x000000000001a3 }, { 0xc53d404f36e40b82, 0x4ad65a9fb1dec101, 0x3e03c4218abb1c96, 0x6d39f46df7e264c9, 0x8b2b87b94d271754, 0x36ef437d03affa63, 0xc4a58620b57bf849, 0x52a03f871b2a9fd7, 0x00000000000046 } }, { { 0x7ebe8140c51edb85, 0x92af199407035cc2, 0xf7e8aa6fd9679317, 0x4f50a17432818a40, 0xac885d4258e2bdc8, 0x91b0f1470af99b33, 0x693b140de18d98c4, 0x87ac04b8a55f047c, 0x000000000000bb }, { 0x56cacf6f3ecaefa4, 0xf7c3324a2b2acf90, 0x637f59d97df5f193, 0x72330f143d7251fc, 0xcabea4b53706dd4, 0x8adc3523dee1c9df, 0x6c2545022c74be6f, 0xddbcca9ce5e5ddbe, 0x00000000000003 }, { 0x280a82058378b1ef, 0x67c4272635effbbb, 0xa851c52ed748e5e1, 0xbe9fcedfee0bb20f, 0x43ab1bc99de6d79c, 0x6952bb6b2cffb9ee, 0x55eba6fa80bd1f94, 0xf7e211d550bcfa2e, 0x00000000000170 } }, { { 0xa57e6f3ce92ef281, 0x257f66c4fae7c05c, 0x9cf766b158db1c8b, 0x3b1ef334b2f558e8, 0xab63bf76764f6d61, 0xa84a0e99bb980346, 0x2e334e69458107b4, 0x8324591ebe273b0e, 0x00000000000003 }, { 0x4024cd951847859e, 0x778c846199f89ed, 0x1a7c52fad5fc2e60, 0x1d1aabd23133bb21, 0xeef44f545f09d09e, 0x298beab50de1e458, 0x7a50919e23f7f191, 0x32d604a8e510eca, 0x0000000000010b }, { 0x1e1f640cb476b98f, 0x9d1d20db6386ae77, 0xc07ec984b4e9e24b, 0x79cdfcc21446a031, 0x2526407743591143, 0x41511f6e17cf0773, 0x6ac5b20389aba3e3, 0x6d4d579b5d8ce900, 0x0000000000005a } }, { { 0xfa0cf8f4fb813fc4, 0x6623000fd24a19f, 0x99f559a0e6bbc1bf, 0xc2b38757986b41ca, 0xe457c5dcd0c8e722, 0xeb94ae0bf250c5b3, 0x70d725caad33a838, 0x38d9336a4ac0270b, 0x000000000001c0 }, { 0x115c3d253d08f0ee, 0xedb5ade81d451373, 0x2db982d58bca969e, 0xfb49875a0a7d905b, 0x932681818434b02e, 0x37ba84965f11a19a, 0xd52285ceaaeb7c64, 0xc76aa001cf6aecad, 0x000000000000cc }, { 0xcda814cff00b4a5d, 0xe366b06851e6a22e, 0xa3bb394b770e4809, 0x36324c181365840b, 0x4b76f3ab40b99514, 0x58125217cd868f65, 0x23bab256f75344bc, 0x754e7e920b7bb158, 0x000000000000da } } }, { { { 0x49e8cddffbd68440, 0x5c24491c4bc232e6, 0xe8063eedabd7020b, 0x323b15c8b0ffaf4c, 0x75d037614f15b740, 0x863408250048728d, 0xc2cb30be072be43c, 0x5e5e1977db5945e3, 0x00000000000078 }, { 0xb68a8db47a68644f, 0x1ddac08df863c525, 0x16a8265c497cc0a7, 0x509d17c028f7d232, 0xec46bfa3e9144fdc, 0xedbbc1d279afce48, 0x5d482271e03da226, 0x133b1e3f461c66ff, 0x0000000000017c }, { 0x370950d626dc1b51, 0x68af26d5e6a7b663, 0xc8c392658335699c, 0x927849fea0b63d03, 0x312a196772e28a3f, 0x1fe8f63934f8bbe5, 0xe15fccf1a7d32ff0, 0x34a36dd63ec61545, 0x00000000000142 } }, { { 0xe354b943cebf863b, 0xa53958de6b4bf771, 0xb71f7937ef3dfa57, 0x74388dfca459f1fe, 0xa05a6e32bc8a676a, 0xf8762b78cc6ebe8d, 0x46d648622cc5a65d, 0x507b50c6cb4ec609, 0x00000000000141 }, { 0x735d3b19e40b20df, 0x9837a1565ec00334, 0xf846dc268f6a5586, 0x5c341b845634fa4b, 0x45afc0607c321705, 0xbd4f84a14413f898, 0x75437e3f281d80ef, 0x2334cd8aa2e4bdfd, 0x0000000000005d }, { 0xc6a61747b15924a, 0x4e9b150e66edacd9, 0x907b4588fb1dbd9c, 0xf9c024691bd0b249, 0xe68429f49b83e0c9, 0x6a867a7e8b5f14f7, 0x27550a32b073693f, 0x104686936770fdf2, 0x00000000000043 } }, { { 0xbb89ebf4dcbf0cd6, 0x19af14f618406455, 0x3ebc7fbf22ef0124, 0xf411e98e44e31572, 0xdcdf79dea46ac736, 0xf33c076e79bf467b, 0x21fbb56a0e9fefc1, 0x1ec6c493d28fb194, 0x00000000000082 }, { 0x9a67dc109b90c01f, 0x9df854ea7a733e9f, 0xa85445809118ce72, 0x6ed1e64d7349bc6e, 0xa3a9e1f4364b7dc1, 0xfb6e469fd406256c, 0x5be77aa9210698fa, 0x446140a98c298a0d, 0x00000000000019 }, { 0x7fe41b92dc158ffd, 0xf367d65015c9e229, 0xbac0e0053c1103c8, 0x621ed9535dcc267f, 0x572d6c2a069d62b, 0x5565bafd8359d3d0, 0x5f13955ac9292e73, 0xaef8378fe7d95a89, 0x000000000000f2 } }, { { 0x4a733a89be1e4214, 0xbd2676872556d81e, 0xbb6f6afaa49343aa, 0x9ef2141b843b6b6a, 0xad476054a27c5bb3, 0xd18048458910031a, 0x9ec08492c6bfcd73, 0xd551f4eecb4b492e, 0x00000000000095 }, { 0x25f886721b5adede, 0x432a7dca27be7725, 0xd16dbc21e7cfb10c, 0x991b87d4d8eccbd1, 0x73dcfa76a7c648eb, 0xbd5deda1239321c9, 0x9e14d8febf2347f0, 0x33a4db1162c19b35, 0x000000000000a8 }, { 0x5afa7e644ecdef4a, 0x607ad808e59ca7b9, 0xf30bb7763a16aa1f, 0x418aaafab9a4bc25, 0x4c0c9e615af21655, 0x2bcc388d8a029532, 0xb5cee56be4ba5f8e, 0xa11607fdddd25a9, 0x000000000001d8 } }, { { 0x1d1e37bd8a90d73e, 0x48caebcfcc77c142, 0x6a127ced900f2534, 0xa78d51bae6bfeddb, 0x9580379e1624e67f, 0x4d0a0d0e88106229, 0xa091052aac7fe17a, 0x8d1cc23054fcb577, 0x0000000000004a }, { 0x2708a59dace37d68, 0xece89db2af16c295, 0xc76a89a633a32a0a, 0x3f5669a64fc62dfd, 0xa1e5525f6fe4de94, 0x6ef87da8e4a723ea, 0x62bb70be4cc6d2b4, 0x20ca8867d0eb9f61, 0x00000000000091 }, { 0x9e1cea38a4bf4913, 0x16a05e80ece42e38, 0x2580bbfe3b87b3a7, 0x3dc3e5fb292a6466, 0x2ab42a2f6c85790d, 0x811963f5e99ac8e, 0x653f189418dc91d4, 0xde10b471b6a59930, 0x0000000000006e } }, { { 0x6108a5b1cc40f642, 0x220b3c329221ba99, 0xf99f25e6187032bb, 0x666752075615a61f, 0x59cede63c279d40, 0x41bf3d09f3bb4a6e, 0x8eb1c8bf5acb057a, 0xa4a817bbe9a7a955, 0x00000000000001 }, { 0xb8aea64c6af1d55f, 0x3aefbd5b9f44d48c, 0x8d8b09bd149d8a48, 0xbdd7d466d44cd78d, 0x35fb552bff35c58a, 0xc3b06fe16bb088df, 0x55282424e9949f7d, 0x58a7b8739cfe5c0d, 0x0000000000000c }, { 0x12f658723c484e9e, 0x5afd8c3c74f02ad9, 0xbedb1fe4e1b1ca86, 0x647f61353ee6564e, 0x67c7545864d63c6f, 0xf1575394e151908, 0xaf49ace57d95074, 0x2ab3c2979e7f669d, 0x000000000000e9 } }, { { 0xe4a2d02fe255300c, 0x1349edddef136e99, 0x4c91e8ef2e3c5636, 0x3b4fd994775195a1, 0xab8a837744e50a61, 0x140e245ccb63098c, 0x51c03b65929e9a09, 0x3f71bdd9a47ff66, 0x0000000000009e }, { 0x31e3a0e572b5832c, 0xea61fb63a8d26630, 0x726b6771f0e9f302, 0xad1807cae9533949, 0xd8913888c6b729c9, 0xefaf9f330515dcc2, 0xbd19081f8b2c4f52, 0xa1de875f1f71a0aa, 0x000000000001ec }, { 0x82152d77aeda5936, 0xdf19244badc1d67d, 0x7f484aa94a5bc19f, 0x745b9b982f1a3f68, 0xfafe3ea21e587fe3, 0xee214a75182e76b6, 0x58d40a4324a38815, 0xd0a5eb71f494b311, 0x000000000001ac } }, { { 0xb5237816e9cab256, 0x9aa65bd68d4d39ea, 0x4b5b07a33c62cd93, 0xeee663363f8fc824, 0xc70ca8048ac4c549, 0x18d33ec15473d7c9, 0x90ea4acb1cb655a2, 0x60951e17cae5c1dd, 0x00000000000137 }, { 0x64b01a93bfdd47e7, 0x988d8dff8e4a109, 0x1ca306602956c0cc, 0x8b3a4dae5c1d23e0, 0x4a804fe9eb65ff82, 0x8b6631298f607f16, 0x8f29eda230ad2e04, 0x76c1d48747521be5, 0x000000000001a6 }, { 0x9b0b532012ad44db, 0x507f34ce01e1fd9, 0x43a5c01d2de87fbf, 0x51c576e609e1dfbf, 0x740dcd8947103be3, 0xfd5c141ac43ad22d, 0x6960295fad06074a, 0x4632206ff20d73c6, 0x000000000000c6 } }, { { 0xb7c5d10dd0c9e4b4, 0x7cda9988da11bf9b, 0x2f8a84a24c88762, 0x8a25d74449b88b94, 0x5bd09abe396c58e5, 0x91e5fcb50fe191, 0xd67a0d66e4a7ed72, 0x17262f9571d794d4, 0x000000000001e3 }, { 0x772f12b7c269a0db, 0x368d4c7e57b12b3a, 0xc9d47c7a9a14bb3f, 0xbdfb382ac274f066, 0x7147685d35d1f862, 0x701db82a477d9e1f, 0xa0fe6cfb7c0370d5, 0xfe9c33e930a6596, 0x000000000001ae }, { 0x820ce63e01c2beec, 0xe6132485682f3432, 0x777ab727d3c3dab2, 0xf839b0dd146d66b6, 0xb5a1a597d73480fd, 0x6a9aeb1121dfd309, 0xe4f40a1f8e5fd2c2, 0x5de8bd2bc96cd05, 0x00000000000188 } }, { { 0x7582299bab114dbd, 0xe8347f7aafc7cfe, 0x2fe74515683deec8, 0x6d898e0b8cb6b3c5, 0x35a9df3992e91e33, 0xd8e4812cd107046a, 0xe8558383dbfcf47d, 0x9c19d0ef765d6caf, 0x0000000000017f }, { 0xa81a69579d74281f, 0x41f6762b4d18508, 0x7910a8f5fe3095c4, 0x9a5b7986106c2b5d, 0xd80ac91af1a925bc, 0x4bbe36f55ee73854, 0xbb989df65e05751c, 0x4121a86dcee4cff5, 0x0000000000005a }, { 0x7d959af6985a7bfd, 0xcf9daebc57d30a66, 0xccb7cee67fd2e8ce, 0xba0f1febd4fe1745, 0x7239f68d8b962a52, 0x6c67d60b165a0863, 0xba58bb00d08721c, 0xe11900bbb35aed83, 0x000000000001b1 } }, { { 0x98742a0ae26e857c, 0x85b89e48ae1d31a9, 0xbbe1e08c3c5516a6, 0x58f7987e76fe8962, 0x6724911d4d4bb9a1, 0x120d4e88942d2ba6, 0xa705233872861177, 0x556e7bd582e4740c, 0x0000000000003c }, { 0xb6a3b12b15239304, 0x7055d689a08dbde0, 0xf7fe009296daba74, 0xcd7c4cf0d82b363a, 0xdc18c5969f5632c8, 0x2042bf2547e6ea24, 0xc445b244e13bf8d3, 0xb409c565e6f2beae, 0x000000000000d4 }, { 0x108fd40b4206d239, 0x4398310d36b4724c, 0x68f0ba5136540c21, 0x6bd54a7f966d4004, 0x66ac2d72328a9176, 0xe3788c19a0011081, 0x52f49d63fb4ae5d5, 0xf3094df1249de693, 0x00000000000112 } }, { { 0xcf6964a636407941, 0x7639cf0dde994348, 0xc3e3813b298426d5, 0xf2031a89f0ef27c2, 0xa426def2d4b54877, 0xd944c9dee849c7cd, 0xdc9c777268bb2193, 0x83aee0adbf683794, 0x00000000000199 }, { 0x310ed6b5b9bdf3b2, 0x8f358f1beab883c2, 0xb4a33e6125087eda, 0x9706025b02b52af4, 0x40d5bd9eca6a2c56, 0x22504b7322c8742c, 0xaffb453d14a2176e, 0x7e52803a39d443aa, 0x000000000001d6 }, { 0x8be96c7a7e6fe16c, 0xb82856c7798e1c4b, 0x38bacf7e942913b, 0x642db574c275e7d, 0x8bcd36b9a5a534a8, 0x593d1e74a5b521d7, 0x8d5ac33e5b371420, 0x18dee8772e62082f, 0x000000000000ca } }, { { 0xfa6c799b715e3470, 0xab7b38703d0a8798, 0x9f48f41030c75300, 0x6df71d985b80bc92, 0x36147caeb251974a, 0xc7eb491232211222, 0xc047f764f2c27190, 0x1f75c634e715445c, 0x00000000000112 }, { 0x314645277f228260, 0x364a48c5ab471f51, 0xad46f096d4739761, 0x3251941238c2cd6e, 0x3dc2493ce4722d9d, 0xc58037837d06f8de, 0x651bd2d9c422243a, 0xd30dffa71aa716c, 0x0000000000009f }, { 0x5e653cd358f6988c, 0xbd219620eed42757, 0x70913694ccbbf056, 0x6ff5884b704b5350, 0xc78d93687c9e0fbe, 0xc9226bf137f7c994, 0x42599c2b5b0a8dc, 0x1bd120a530dc474c, 0x0000000000019f } }, { { 0x4efb405998213e0, 0x1dd5e8197b52e562, 0xce8dee44a128134f, 0xeec031cb6fac79b8, 0x168696633e6cd51c, 0x6652c47aa95bde19, 0x7974148442167975, 0x98de6269b9c71f00, 0x0000000000000b }, { 0x9f3e407ae0be81a8, 0x3a834742b1b9567c, 0xf09c2755fcc7b5a7, 0x6da8278ef4674343, 0x560415be1a7d92fd, 0xc0375ec71d424d35, 0x3c9c3a7e35166639, 0x18bb3e097e93c4f4, 0x000000000000d0 }, { 0x41cc83aa98d854ae, 0x2e3eb7af1d77c0db, 0xe3a03bc97a4c4af4, 0x9f9b08a247bf2e90, 0x4b498d898c2ba62c, 0xf2c344a1925e0231, 0xfe4333a8dcb1ab9d, 0x52e01c021afa539b, 0x000000000001d8 } }, { { 0xe5ffc0babf85beca, 0x7ce0f086a35dc513, 0x1910019b515218c9, 0x3e69baccfa8f39d, 0x2adb9e3904345996, 0xd4b4befc8a2ab02b, 0x50a2e879bfd543d0, 0xb11e5dc48d698928, 0x00000000000073 }, { 0x76c032263fbf6a32, 0xb14c4bfc54f99be5, 0x3ad3d27f72f64437, 0xe9f8b6be7f1faa78, 0x413ff7c673c13118, 0xd3777086f4956268, 0xfea46f8f6c10f4d0, 0x45b488ca3de33438, 0x00000000000038 }, { 0xefaeb78541a0db8f, 0xf010e765d375d6d0, 0x4be481ca708cec1b, 0xf17251620f60e33f, 0xd6de189c6073287e, 0xb3f8d88ed4defb42, 0xda647150cf591dc4, 0x1d85878a00e0609e, 0x00000000000001 } } }, { { { 0xef762b271c38b73c, 0xa6c58ed0e3f0092e, 0x77d79badfa313291, 0xd3e1b6d9a832e248, 0x6f7d35343582be07, 0x50717189b378f38f, 0x6c2e604f85f9cc9a, 0xbfaa469acf00936f, 0x000000000001f5 }, { 0x37f10a87d47acd07, 0x3e52cac681e291dc, 0xab0f556c4fb6e770, 0xb7f22113e2104020, 0x5c3170e21df23ab3, 0x44d997dde78cde72, 0xe13c5873f6bf6c87, 0x91ba1fec3d658100, 0x0000000000004c }, { 0x9496e07dc10b264b, 0x3f6393369be2a13, 0xc4420d4bb2c0b159, 0xb35bbdab4c2bc24b, 0xde93b5b610edc881, 0x773eb05a099515f9, 0xcb29b8c64ef8690b, 0xdb70da0bd2e28dfe, 0x0000000000018f } }, { { 0x6e620aeea1c7e963, 0xcf4e3b9b2542ba73, 0x123c7b7c268e3752, 0x6c3c52216298e3cb, 0x7c4fbcba95c637bd, 0xb8281668818ddaef, 0x1aa2039cd00707cd, 0xe31e69af0bc0a940, 0x0000000000007a }, { 0xc6fc697d5a341f62, 0x88908a86d1ea62ca, 0xf827d6e2645894c5, 0x74f11d8f50fa2dcf, 0xda54d9a5a8b96064, 0xa756efe4d455222, 0xd4d5402f8f86e4e5, 0xdc00f62ef5055bf0, 0x00000000000116 }, { 0xb2df54149eacf7a7, 0x5f13eed7b0154348, 0x5941f03f0088a4ff, 0xaadbb4315fac6c98, 0x84491d04b9e1db79, 0xd5cf794768101788, 0xfcbc1b6ce26a3982, 0xbc8674c25e77335b, 0x000000000001c8 } }, { { 0xe4641b5db52f9eb7, 0x443b54d7137609f5, 0x55718430322970b3, 0x5dc53b2eb986d75f, 0x3447e19fe18a00e7, 0xe458748b00b28626, 0xc60cef4311a5b8e8, 0xe18ead8f63cf2dd8, 0x00000000000027 }, { 0xb649048433fd80e0, 0x1dd4629416484157, 0x57a1d400ca5a46ee, 0xee3a099a2a18aebc, 0x82dee990598bee0b, 0xf755152123bf4738, 0x3ee71bd0e5f6ab86, 0x427d401031894add, 0x00000000000135 }, { 0xef13611fefeda02a, 0x39de55ec9d9d8c0a, 0xe84f70e36c1daeca, 0x59407e5929f863cf, 0x98f0b264c2d6195b, 0x22c0f197936d50d5, 0x53b360881a21ef2f, 0x133e7be944d413ac, 0x00000000000070 } }, { { 0x137ac97760c8e4c9, 0x41a24e99eacfa8ea, 0x5ec1cf3ba109993d, 0x33abad2c3aabdd33, 0xc8567a8b8a3d9a0c, 0x41da72f4db521e83, 0x3006c460997d42cf, 0xb53a9a6a309daa7d, 0x00000000000098 }, { 0x19d7a8df8f123441, 0x7152a8714750e3ca, 0x72d4a838c0f580b2, 0xfe21636f1021e434, 0x333a59d47df829c1, 0xf62269b83c2c381f, 0xe9475385e84d9dc9, 0xd9b7c1a49a6b9eeb, 0x000000000000ab }, { 0xac7fa04e61b12c93, 0x796c31703b2f3c0b, 0x92a89f82b8e1e8b7, 0xe2d2794afe774760, 0x261d28dcd62658b2, 0xd847658ee025d1ef, 0xb3de34bb6135d9c5, 0x9225e68dd3a38e32, 0x000000000000e5 } }, { { 0x557fe54d40d84ada, 0xd208db1fc129b73, 0x627256ba4f8885d6, 0x7948720fac19f583, 0xdd553d2de1636130, 0xbc63daaa38a59e56, 0x64d44139ad6d72b1, 0xd4d44ba38b5579d0, 0x000000000001c0 }, { 0x124d0168338e5bb3, 0x22a544e3019f5f41, 0xf17c9fee825ce6c5, 0x3c181a4a74358b4, 0x6c622879c4ef7771, 0xb57a21036ff4453, 0xfb055fdbf1c27004, 0xca8fbb22ccfadc0e, 0x00000000000029 }, { 0x339741b7abe54c87, 0xf9ccf3bd45234f91, 0xdbeb774c87f4f53c, 0xd8d14616b6c93b86, 0xf8233d1c47475848, 0xbc7dfe1a6a60dfcf, 0x74aaab43abb14d33, 0x8ec955b19cea4688, 0x00000000000157 } }, { { 0xc0072e060be3d17, 0x519618e3ce989a63, 0xc87c064f4f0d29ea, 0x7b7a8d2fffc4fc02, 0xa7a3a70466504078, 0x8c9b44f2fc6b0f24, 0x5ea6263755896f23, 0x9fc3d768c2b7e1c8, 0x000000000001d9 }, { 0xe6a41526a6108771, 0x7fe877ba686da9e0, 0x35503cf3482763dc, 0x9441089d39647b54, 0x1614fd41222718ac, 0x79e79a1c4cb6b0bb, 0xabea4b48f595b647, 0xf5aa95826352d894, 0x000000000001fe }, { 0x4f07b335fc75cc3c, 0xd7999195a6ded8b9, 0x8e2357ed909fc7b, 0x84eae749367d0c01, 0x1343c6753a895461, 0x49530fc8919f409f, 0xfe0bd6159f69c5a1, 0xe62d9676c01800ab, 0x000000000001e4 } }, { { 0x52ab63cee6ec308a, 0xdd0ea4892966f822, 0x6f1a81d412b283ca, 0xcac74e78eb4ec99, 0xf0a639c573296814, 0x4b8e4da3f18da29a, 0x294e4887c0174653, 0x4637eaa2bb6f5e50, 0x0000000000008b }, { 0x15a6138c8a879f6b, 0x3d30f0ceb7679f19, 0x17f86bf2002f23b2, 0x98a12a1c3436a0e0, 0x378b9e6d0dd57587, 0x2143f9af22bc7460, 0x34a5424c31e2350c, 0xf9c6a0bc7d20e1e, 0x000000000001e3 }, { 0x971173b87f7fb23a, 0x6d02026ebcf5b65d, 0xfef188f8a7b2eae5, 0x247a219c11bb3d32, 0xe5ab695f79a06a89, 0xb3069d20d2252e92, 0xc6e6deff01206310, 0x6a1de4874ede0cd5, 0x00000000000022 } }, { { 0x51a8061ae68d167c, 0xa08d76086d0be692, 0xeb50cf9f558e45d5, 0xb24f3d30e8d221ca, 0x75c010c5463eb643, 0x42c3c32bb9e08d3e, 0x5e4658e79f616580, 0xd635c1faa154cff7, 0x0000000000008a }, { 0x65718982ae0589bc, 0xe9ba559c62b697d0, 0xf01ad42da65cf511, 0x7b517e6a8ed45907, 0xdd971ce567de67e1, 0x7ce242781279bf6, 0x640a095694f9842f, 0x8e9548e2e325bf24, 0x00000000000101 }, { 0x2a1023ed9a76f7a2, 0x92445ea145e3006e, 0x73157f5a9d44bcc4, 0x74644aa3d3b2824a, 0xbdfdb75ea7414284, 0x78061100e781c034, 0x70d4e26f070adffe, 0x3434ac432f9a4564, 0x0000000000013a } }, { { 0xfa138facac04ec6b, 0x847c00ae60bffdd8, 0xd17cfc3310bece71, 0xcb48faaf60083d9, 0x3bd2ef1fe943fdb6, 0x6529b20bf93593e6, 0xc8e14f658169fb87, 0x90ff47ebc0ec3118, 0x00000000000106 }, { 0xac91a2c74d656553, 0x83165ea08ccf826d, 0xd7902839e7653b14, 0x7c33d6cd5d459231, 0x9dc96d350c49b64b, 0xe5bf33c71a9f54f7, 0x48387261ddf66016, 0xaf47637ff9414c80, 0x00000000000046 }, { 0xcfc3a0b882cdea6a, 0x87e829e5e498d21c, 0xe11fbbda4397c6d, 0xdf4bdb7fbf0734ab, 0x3287a1bcd92ee0e3, 0x3754ad8518f8e6c4, 0x31e6443172c2e20a, 0x2cccababa32fd99e, 0x00000000000168 } }, { { 0xdcc44f03b96b3403, 0xf92d696bcb686724, 0x18e0d8d78b662947, 0x6e77780cb28c29c, 0xe95a6861d3fb90e7, 0x37284cbb1469e3d0, 0x163f6c5b9cce5131, 0xb0f1071e1e5db217, 0x000000000000b5 }, { 0xd4be38fe68f809fa, 0x8db06b60cfa43ad9, 0xf638aa6dfc05ce5a, 0x7d30b4f357874359, 0x74f78ccc379f767, 0x3f2e60eaca77f326, 0xc778a5c8a8cae34, 0x1fc0c14dc87479db, 0x00000000000033 }, { 0xeeec22889ea1dc73, 0xa5a69e2fdcc4524a, 0xdd105b5e26aa83d2, 0x5545843b84c7f075, 0xdaebe97f13b8f487, 0x3c8f74af1e153c7f, 0x2cdde17b7e062708, 0x4df3a076beff926e, 0x00000000000006 } }, { { 0x8259b6bdd1c70d06, 0xa4d92f14f122565b, 0x31b60aa248668d37, 0xcd3e150262ccfa86, 0x242ee7222e6f9303, 0x3c014dcf7cbd7487, 0xf790d57986b6e57, 0xe32f752509c7e24b, 0x000000000001e4 }, { 0x51bc015e1f25051f, 0xa6647b53230f7fed, 0xb0f55f26cc7e4a5e, 0x3ff85072da0e9253, 0xd7b04c15a73d4b71, 0x75621332777bd29b, 0xe3be1c6b19a2370e, 0x1cc44d68d4fab14e, 0x000000000000bc }, { 0x8f0ad595c8de77bf, 0xe5f51079b6541ddd, 0xa0dec3ebb757ec31, 0x108cf65853366d5c, 0xb07cde7559187724, 0xaab4503147a9baa6, 0x708c239354354242, 0xd892f395cdf1a3ce, 0x0000000000007b } }, { { 0xbffed3ec50214e59, 0x4a229a93c9233745, 0x6ddaaeb5218adbbf, 0x3623edf02b55df1b, 0xeb44ee810444a569, 0xbf86680212d141c8, 0xd868ffcb93d80b4a, 0x2a4ef1708479ee8, 0x0000000000016c }, { 0x55b0dca178027237, 0x5fe446d5891ba9fb, 0x26b485a3ef13a213, 0x9621c749ceac2285, 0x81fcf8f3344c4dbf, 0x6f694ec94dfdcf93, 0x5a09c4a7396e6a89, 0x2d69bbe2821a8cf9, 0x00000000000168 }, { 0x22c05df5313be47, 0x6b1ceb25b8a80ceb, 0x26506623a3c79eb8, 0x59d9a8a1642ae49e, 0x92ca0455ff56a2b6, 0x61106d85015ca9b2, 0x60d43230652635aa, 0xfa191e192bfb2b45, 0x00000000000125 } }, { { 0xb95931e0e6c7211b, 0xd8b8e6c0d039b9fb, 0xafc731e1a2ec4f7d, 0xd95e759d2381d41b, 0xb0f2a70fa1c01d2c, 0xebf83f6e1b5f3036, 0xf1dd416efde72812, 0x4ab53f8f65cc1945, 0x0000000000001d }, { 0xcd8605e23c45735c, 0xe7f03a4b5406d3b4, 0x89043607bb586a05, 0xaede1d945cecb3b9, 0x7112cb61c749037e, 0x76a7e061b6ae66bc, 0x821d8f62ba2e0571, 0x41f6c16ab256d62f, 0x00000000000151 }, { 0x29df931460d2f092, 0x54f7aa341d363bfc, 0xa9069f0efcb2f56e, 0x186c84398a81b5e3, 0x444937a291c69e90, 0x9ce0958f5b233937, 0x678e63fc7fef2879, 0xe8e22966b4abc4f6, 0x00000000000012 } }, { { 0x3a5869eda188c15c, 0xa3c45169ffb320cc, 0x40c2c4c4b53c0f6d, 0x9b1bd1cb4d7f6a55, 0xc01c635da8006a96, 0x161383edc1b04414, 0x84ba223f0e208298, 0xd8bb96b98c75ca97, 0x000000000001a4 }, { 0xc758be51fe6113a1, 0x801c4619b8df0190, 0xbeef79601bf4060a, 0x6ac3e20a9808332a, 0x2d2d2f012931205c, 0x820ae4a0b5a38dd8, 0x1dac569f15910614, 0x68bf0ab1f692a253, 0x000000000000c6 }, { 0xb05d13add141cdec, 0x7c97918ec924e6df, 0xbb4def986c76fdac, 0xe2b81f11efb375d9, 0xdc86e9d0af787086, 0x9b26e1815365d485, 0x1e1d85797253be26, 0xfc7f166491a32551, 0x00000000000070 } }, { { 0x8d553ce5a098eaab, 0xa818fbcb211bb35d, 0xedd84913570e8908, 0xb816f27afeef3701, 0xc7ff36ae1680c16b, 0x4d7183f9f2dc69e2, 0xcdad0f02914b196e, 0x146c150acec96587, 0x0000000000001b }, { 0x7807e1c92cd0a65e, 0x97bd7f7c3ae9167e, 0x9081bee94b780fa1, 0xeb05c4f872fa5ec9, 0x4d9f38156a5c0f9e, 0x81ccb7b554ac9b7c, 0xc0e108b4ec472d8d, 0xa9d05ccd1946e5db, 0x000000000001fc }, { 0x55bc87a4b9d9c380, 0xd43e8f6603f6ddf4, 0x50d0408379284a03, 0x8221a8d1f9316da3, 0x3797f7987662998e, 0x718693bd419b1ae9, 0x4cc498e30ff50453, 0x58c1b57a501ed5ff, 0x00000000000117 } } }, { { { 0xdb599f483b45893b, 0x7bbee8df2d141bab, 0x84ecebfbbf921749, 0x928464c61116c449, 0xdd30c067fbf2edf8, 0x7135279a6fac1b21, 0x6ae247dd3219d333, 0x290e71419242872a, 0x00000000000065 }, { 0x4982698f8ecb3d3, 0xca596f6bc45fb8d2, 0xaef85b1efbc89bdb, 0x228f42fe09c15bb9, 0x80f6cb30bdfb5b5d, 0x27cf6074cedf6291, 0xe812231ff93140d2, 0xfb9d068b0d983679, 0x00000000000005 }, { 0xbe0656841f68d23b, 0x8df59b0fb45dce52, 0x2f2b00527e3839d2, 0xe24fe9cac2ee976, 0x720417c0d7684cb, 0x21bd04f791ea4ab2, 0xf6c99a3e60888eb2, 0xe400e02c24cc3c21, 0x00000000000056 } }, { { 0xb0c71247a7720df, 0x84d682b08e61b05e, 0x6b7e288bcaa772a7, 0xbd494ec502c067fa, 0xbec915b1d50e79e4, 0xa415b29a4af2967e, 0x70ebac53b38660bc, 0xc5a6f58d03a63f22, 0x000000000000b9 }, { 0x4160cdc53e8438d9, 0x38f58148b0f50604, 0x5ea9723ecf8c12fa, 0xe4fcb956765a4230, 0x78307a0643583519, 0xe421a4574782855b, 0xa97cdc7d39e1f310, 0x781496738c28c641, 0x000000000001b4 }, { 0x8c07a1065a293298, 0x86022782413a3355, 0xdb4dc7f0f18f4730, 0x9f7ab9772abf8de, 0x42a3c6f1b90fb6b2, 0x1faa82a0f3e7afe4, 0x3e1b514a504896c, 0xbb5de5e7cf0cf9dd, 0x00000000000035 } }, { { 0x559613e338042946, 0x8efffe427ab662b1, 0xb7553c5ed45246b, 0x973fcdf2f5305f69, 0x96e163e1d6fe9b00, 0xe6903190e2443a47, 0x1d6f55926580fdc6, 0xec688484cd78af7e, 0x000000000000b0 }, { 0x69f6ee8244f6a2b0, 0x68665cfc3844192d, 0x20e9c65771bd32c1, 0xca4ed6b5c7e8915b, 0x7c775d17823a2511, 0x3c351bc78fc01250, 0xed8287187ee16dd3, 0x892104fafcfbfcf5, 0x0000000000015b }, { 0xc057460d5703af18, 0x24698e64d5f17804, 0xd392b57544bba39b, 0x7a2b00c349df5132, 0x6a2030a50d54177c, 0xf602cf99b03ac4f, 0x71feacd150da4196, 0x8f8a5392faa27396, 0x0000000000002f } }, { { 0x33d3a3cb467f0946, 0x4efe61c8dd825861, 0xf955a50233400115, 0xadbb8b31bcc1bc99, 0x7c0738679b98c35a, 0x9ae6f261c55c1670, 0x1a8847ae18e15a49, 0x6d5d553ebefa9155, 0x00000000000102 }, { 0x7cae2e6f86ed9eff, 0xc2f5455e0fa0675a, 0x51ef0547d0551547, 0xa1bbf42050f92ad8, 0x5fe1a0d0918eda05, 0x7253c8043bf68aca, 0xd0df002815fc551, 0xc4872b0b5da645f0, 0x000000000001b2 }, { 0x6689fe7975466f89, 0x8ac886af394a5959, 0x1745f21d89bbda4b, 0xfb654292c0aaa4c4, 0xfce31bc7522c2a77, 0x646e758805d8eaba, 0x211935e54dc40730, 0x90e718c470a59248, 0x00000000000006 } }, { { 0xaba394b1ec79f0b2, 0x1fb08a322b1076c6, 0xba6db75a9a554f3e, 0x7fe38d3a49bd8bc6, 0x6c571d44b51adb36, 0xc0b8f79d51c34888, 0xf616efa58a2c37bd, 0xb72b664561ba2710, 0x00000000000133 }, { 0x7b427ab9da69ae67, 0xb53ba23a3374c3a4, 0x923d939f0bc22ff0, 0x50c097d86ea06b54, 0xffa5f9c902e10064, 0xd40bc8e3929a9cc2, 0xf961f27ac136eadf, 0x73c08ab8137fbc18, 0x000000000000f3 }, { 0x33704b1d08fcef29, 0xe2a2e2691bfdb47b, 0xf0942cbb02be9305, 0x5f72b8b6424a198a, 0x900e4bbfd93c45f9, 0xc1af4bcef0f035be, 0x90ae7632627ff13, 0x90883881dc4f3f25, 0x0000000000005e } }, { { 0xd9c7926b69cf174f, 0x3321d5f4558a6ed8, 0x31db2c9cb816043f, 0xe66cabd5198bc8ff, 0x8d5e827ebd4d5bc1, 0x5106b33123decc3a, 0x9c982c5342baf103, 0xa554d000abbdf8f6, 0x0000000000002d }, { 0xf97429493f48b6b7, 0x302197def8672aa4, 0x707852995df3dadb, 0x668f3f4a9dd53cc4, 0x427989d5cbcff4c7, 0xdc759ef1b397aae4, 0xfc12cb3d666fd921, 0x98fceadb80a6f77e, 0x0000000000018f }, { 0x3739e7068ef60c63, 0xa10d2feef52a2ea6, 0x596584ea63532d4, 0x4663345f60396d4c, 0x2c304607177ffaf7, 0xd671994fb7d3ec28, 0xc292ce01060d346b, 0x5b2d2bbef867de9b, 0x0000000000003e } }, { { 0x78eef295bc774be3, 0xdbd222f2b5f20a08, 0xcafb3d41bff5707c, 0xc607ee0a72b31765, 0x339dfcc81cf0bf18, 0x578d8d19d4204937, 0x25ff988169e99d19, 0x3e797d5ada695e34, 0x000000000000a8 }, { 0xcda934336a1eda3a, 0x39b7d37a9d79b35d, 0x87ebb4ddf06f42c2, 0x5a4beca9f48c8651, 0xba832cdf42d3abbd, 0xe8103921e1fdcd9f, 0x54fd441fae1ddd5c, 0xa214796bc5b9c704, 0x00000000000100 }, { 0x16ce901a09d77ff, 0x54f0610bd69e4393, 0x75249ad1bbf7fcde, 0x415538c687568784, 0x4b154a0f0270d01c, 0x97de6e0bd1b098be, 0xc034fa8107be0d49, 0x991465f686c20581, 0x00000000000097 } }, { { 0x4a1032c4f9bad538, 0xb6c45dd304607f54, 0x6beacc8cad5e6649, 0xb3e89bf3086554c2, 0x6bac01a9c3ebdca, 0x626658aa868d3740, 0xf4638f58ee7fa0a7, 0xdd522e74c4d18290, 0x00000000000079 }, { 0x249c589091598b52, 0x921abeb7e470f331, 0x69fcdf6dbe6830cd, 0x91f3eb4308a7b91f, 0xf2e2b001d1125e87, 0x2878e32277a5ee60, 0x910f7346a3d0e344, 0xb9d8dfbab32862e3, 0x000000000000a3 }, { 0x9350e90e5978f9ae, 0xee8f513355ec7f, 0x5231869b2132171a, 0x267d5a15b2c45273, 0xcba74acef37ac355, 0xfe2b1b736f287036, 0x535dd72f7eb1520d, 0xbc44ccfb836055a, 0x000000000000aa } }, { { 0x57ccd0095372c265, 0x9949c3c16a3da99d, 0xf47fea92ff90d40f, 0x9534b8c43fb15f4d, 0x7f0987a2cf4494f2, 0x261748f907a98933, 0x7127937b3046813b, 0xdc1ef2dd4377c96b, 0x000000000000b7 }, { 0x57c6bf9bd2d521c3, 0x61f735a5ed6aacde, 0xae4329fc8428d27e, 0x87c5b6ea26ee935d, 0xaa3fc68ccc65a2f7, 0x7fdc9e9cd3954aa1, 0xdbb0ee24165a2300, 0x2351a9fbae52de6b, 0x000000000000a3 }, { 0xbca4e6561eacd0e8, 0x5584df8b07bfae8d, 0x8adb9b332bec615e, 0xdf9d54e198a16e76, 0x30cd6a0986956d82, 0x9f77f4d3e769bd88, 0x99908b90e87b3124, 0x1b1a1fadf579a7f7, 0x0000000000010d } }, { { 0xd6d8f32c35d9c904, 0xa3fff66c382cca5b, 0x64139c47fb0629a5, 0x681ad3880cd298c0, 0x232189e30e0f102d, 0x994d438cafbd0602, 0x8aa488c7f0147e0f, 0xd489bf99301ea8d4, 0x000000000001ea }, { 0x65c67d9c3355b6c7, 0xf9c0850e281b7d9f, 0xecd6b7302172f466, 0x5fbe5bc6351c7214, 0x861c762b48a0c343, 0x94c0a3058e37a007, 0x59a97bae660d814e, 0x7556452599096f40, 0x00000000000101 }, { 0x2b6b9a06267fc426, 0x6fbb106891c3d8e6, 0xfc422f122d8bbb2b, 0x3c641f21827aaf4a, 0x28b44cf02aafee78, 0xacd2c4b479145e5d, 0xb6fcaf1c41b8511a, 0x198a2af75e5df4c9, 0x0000000000011c } }, { { 0x52257df8c8412887, 0xd35289abe2b52837, 0xbfdaf05dffdd8fc, 0x8f5526aca8194e75, 0xf4e44bc5df3d24bf, 0xe1cf61628f8207f9, 0x3a21c2d7bdddcef1, 0xa28a137968e67623, 0x0000000000015c }, { 0x6ef7064a0ba2db16, 0xd5fb961fb263bfb1, 0x2f09f6728c13a5bb, 0xfa2055a5a4afd3d2, 0xfbc56c7c36acb63e, 0xc6b1fb08610b0b56, 0x1ce5c2cae2b240bb, 0x6e71276948acaa98, 0x00000000000148 }, { 0xca91eb82c7ab52a7, 0xb2396c65ef6f49ec, 0xc4472b8ea8bb24c7, 0x72880d300ada6a32, 0x6123218094a40b51, 0xddfbdb2313977e4e, 0xe5d5b07ee9ce361e, 0xefa98ac909f29c85, 0x00000000000068 } }, { { 0x74c2065c4af806d2, 0x50d636cf37e95f2a, 0x7c62b062f3df5dd0, 0x2de373f94f32d06d, 0xe9225814fa1684e9, 0x6bc8bd6e20bceedd, 0x9075dc54498134c9, 0xb50bbe9677a04d9b, 0x00000000000113 }, { 0x880d03a1d0ec9836, 0xdd1f9e09a93d5fa3, 0x13e7e0a01a18157c, 0xfb7f010656a56653, 0x66028432da2d6114, 0xc590495e641c7d99, 0xc6da03fe8a2c9e, 0x162c4ee559cd1752, 0x00000000000151 }, { 0xf1e9ffcfc15b97c6, 0x676f67c7735f55f5, 0xe4c730fed7894b8, 0x554430b312f06f40, 0x76be018b146bc41e, 0x39f10ea923a831cc, 0x32a1dff705eabaa6, 0x35c97e0222298f06, 0x00000000000149 } }, { { 0x9ee3f83fb98973e5, 0x709865bd1fb67a90, 0x5f8d40ae1ae8a139, 0xab7699e78ec77041, 0xb6c1b1b1734cb662, 0x7c86b03ce01d2d00, 0x223454f9ca8f5e00, 0x67b36df669226970, 0x000000000001b9 }, { 0xebaf928b1be7453, 0xb35465b32b591363, 0x5b37a0302ea6717, 0x94c51ddf7b5a1d33, 0xb6623d8e40785358, 0x975ac3af8e94323c, 0x15381d999662dcca, 0xbc876ed58bda1348, 0x00000000000107 }, { 0xcd8b128204197165, 0x97a3b08c3a179abc, 0xd6302ce756fd42e2, 0xf0b35966e11153cc, 0xab8208f9d2ca4495, 0x2337a7a5fa09251a, 0x3204ab77e080664f, 0xf144914e106e63e9, 0x0000000000010d } }, { { 0x412eeedbf7162d95, 0x90ba432209a0292d, 0xac477c44bb21e2aa, 0x851a8159d48535c2, 0x13eae0a58c585c70, 0x3c89ac8313471ac5, 0xcb81cea00c12ecb0, 0x5311e0ed7597a169, 0x000000000000ad }, { 0x9334c42d42c8f40d, 0xaa94b5a0df4e8bbe, 0x4d5e3cf347ddb0b5, 0x3a0e4b4b938cb3b6, 0xce80db00f3630254, 0x2a79a7f95ab2b632, 0xd16afdb3bfcaa4a7, 0x47f0f3d4ba2057f8, 0x00000000000113 }, { 0x5093a500456335d8, 0x3cf39e7d9a365db3, 0xacf84aedd891ec08, 0xcf355aea86c177dc, 0xb0219ede07fbbd59, 0xcd582e47266673f1, 0x99e206ae75e2a94a, 0x78cbf77c52e0cff6, 0x00000000000125 } }, { { 0x98df85819bb3384, 0x4632dcd1e380ce34, 0xc1a86df1d7506dd4, 0x479bcd4e95e6d893, 0x8d6f116a6583c59e, 0xc9bdd317139b6ad3, 0xc61bf7395f025338, 0x9f99908d0a7af219, 0x000000000000e6 }, { 0xd46b9286760080b4, 0xaca462af639321ee, 0xccb4162275714b48, 0xf3c301db952fd1e8, 0x84fcf71f32a0d34d, 0x57e14a5b152a8956, 0x670fa7e7beb2ef0c, 0xb32180861c962d05, 0x00000000000008 }, { 0xba5dd7d95fc155d7, 0x2b5b4c869f2dadb, 0x6cbd6ce78faa1427, 0x464b0562eae09047, 0xff451663187303c5, 0x8b5654839d00f85f, 0x2a69fe16eddc00f9, 0x1b77a153affb7876, 0x00000000000027 } } }, { { { 0x294334a3f8c65ae0, 0x7d6bfc78f058a8eb, 0x772a958a5aa0238b, 0x4f4ff82bd8e9994b, 0xec3cb5da8969a9e7, 0xdd3249e19f357841, 0x8249efd978e75ff6, 0xbbdaf2cb54d2d851, 0x0000000000003d }, { 0x7927f5d30aa4cdae, 0xffc501fb5e4a966f, 0x3d555165f7f99282, 0x6731b63f623cf515, 0x1ed00a16bf87dfd4, 0xcf0eb7db8ab0e8ac, 0xb369e1c112873b82, 0x837dba3be89127db, 0x00000000000178 }, { 0x8a2d6f1b75074226, 0xb928ed66d4e0c4c8, 0x36e654708abfa4f, 0x196ecbd0ea395a1d, 0x67b0e80b7f523c51, 0xd067ec2a5980b792, 0xd6bac1b38babc44d, 0xc52cd27383452d31, 0x000000000000ff } }, { { 0x60a6fe68ea4d9253, 0x346c0dda8c6ab069, 0x18d49d095fcd06fd, 0xa06644546158a140, 0xcedcf687f6ae480b, 0x8f0599ede6d0351, 0xd0785cb7309c1732, 0xc1c097005eb2a6e0, 0x000000000000cf }, { 0x43c0ae70dca1401b, 0xcd9dcd2f7159e7bb, 0xdfee0e80642f65dc, 0xd8223ad3b46b15be, 0xbf2cb4c9762d9f1, 0xbf2b74f78f8d0c4d, 0xdca416af028fdaf8, 0xfd9a137df2086518, 0x00000000000184 }, { 0xd5df82fd608d3d64, 0x652096130fe505c4, 0x333c2d3a88a80144, 0x627e8378ccd4cdc5, 0xb5599a6202df4023, 0x5503274bf040322c, 0xe9043683d5fa49f, 0x82181dcb8d18499d, 0x00000000000119 } }, { { 0x9d7675078ff30913, 0x9c91d8d6f2724c20, 0xf913da91f461c1a2, 0xd88ddb188d6fe6f3, 0x9531ea52bf5a591f, 0xd053967bd270268f, 0xf0a39983ebfeebf2, 0x26f580d914fed9d0, 0x000000000001af }, { 0xdc40f35f1022fbed, 0x9797cc81d4dad5c, 0xcf501a5e57b004d5, 0x2df1a84d9f8099f, 0xb8d850b2518dfbda, 0xab90ee3bcd0ca4a7, 0x14cef0cbc59ef53, 0x14721ffbd6f38a28, 0x0000000000019b }, { 0x3b57000c07596ca7, 0xae012108461c11aa, 0x817b91ce38367288, 0xc094c6806ccb7769, 0x4a4482413980b8fa, 0x3570488816366296, 0x2e5401fd857cae88, 0x571b90657e55be2, 0x000000000001ad } }, { { 0x36fc2ac63eb0bd8, 0x49001a8e92eacaba, 0x63d0b765fe8d33da, 0x83a5531d08db8c57, 0xec2a00fb59a9a877, 0x335864153d5aeaab, 0x4f50f3f56309dcf7, 0x12ce5c231c4caa4, 0x000000000000e0 }, { 0x27dab73f5fb0334f, 0x70631b29511aa84a, 0x42209c44a0b6a494, 0x34369affe2fba05, 0xf91c4a4a59754f6e, 0xba3eb84eae745a97, 0x9dc841a4a5f0bed0, 0x858e744034d62e7a, 0x00000000000090 }, { 0xfcabdf2e2d4c1194, 0x39cae2c6b7772bfd, 0x4a6b99cbd0619570, 0x48f35327a75361ee, 0xf5430f270d8e1695, 0x639cc541057d83d5, 0xd3f434f2caa72b23, 0xe2b9337ecf4e20da, 0x00000000000155 } }, { { 0x960a96541143427c, 0xba5cb087243d5fc7, 0xa0c1f4d55b916052, 0x9ff03fa7851ff7bb, 0x7d71717f5198aab5, 0x81e0c9076da40bd1, 0x9a62b1d56078bdff, 0x29de3179e984b597, 0x0000000000004c }, { 0xecd37fb44fd3fbb8, 0x192ee0169d513669, 0xa5792118c7e11637, 0x4ddb17f6bc43c91f, 0xba032d89fe33bebf, 0x3881663187e79389, 0xa11b803c8177daa5, 0x9d44a429a7ef1cd7, 0x000000000000ff }, { 0x671aec2c56e41ea, 0x2effb42b091f96a3, 0x5f059b01fe4e8d60, 0x9f40d506cf8f0bb1, 0xed773a0a2ea76c92, 0x847c5c0e76a80a7c, 0xaacb5a2bae840b2f, 0x6c688b8953c46c07, 0x0000000000010d } }, { { 0xb98bdfb34f6340e0, 0xf1def7804c6ed6e5, 0xc996ecbca0cd555b, 0x6c0c74142b83c607, 0x49bd96536fecaf26, 0xf1f157855ded443, 0xcb0cda44b304c7a8, 0xbc9fc0d236cc3ab5, 0x00000000000145 }, { 0x5966e4a8843dfd6, 0xf99eb0f396de9984, 0x13de76fc4623e545, 0x3e0df7081d61ff3, 0x3a11f0ced8fd8934, 0x431ee2b7c8c7a2f9, 0xee4a20dd389630d7, 0xecdbc0daa07e39, 0x0000000000006a }, { 0xae860b1b6004b76d, 0x9741e55ad870cfdb, 0x303cc0c41da252b0, 0x35d78276cda7e26e, 0x14894eb20f16c499, 0x29aaaa239b797dc6, 0x4447c32799c4b2c3, 0x17482cdbf1542d53, 0x000000000000f4 } }, { { 0xf3fe5c8a8491b626, 0x4415b83d596bc1d1, 0x96e71ba2c616248f, 0x9deef461f9f39ef4, 0xfa5919c54d91ab6a, 0xe7d21d952eab03a1, 0x4867d16b5e39cc52, 0xc24241880d7b5642, 0x00000000000190 }, { 0x884b6296ffaee7dd, 0xf0da136358b2b3c3, 0xedc5a97118783432, 0xc8d6f66f6767fea1, 0x550ac263c5f648e9, 0x45d387a43f6512ae, 0x809fb6225809f287, 0x1d818bca1b373bdd, 0x0000000000017a }, { 0x6e139f4a60af3718, 0x5c5d3e4b19a07fc, 0x3a6a20c9fdfb0666, 0x97697473073735fb, 0x2c5e3af6afaa9d8e, 0xf794f458c671306e, 0x4d6c8a55286e1e6b, 0x6db8c663f04ef078, 0x00000000000053 } }, { { 0x234541df6f433730, 0x5ba04f7a8db8e286, 0xc336e2f16f60f8e5, 0x869728b951903363, 0xeca2a8be0205d18a, 0x6287a6ebb422b4ba, 0xd7a684ae91553c64, 0x4f0ebc7457325403, 0x00000000000024 }, { 0x7cd4eb4aa179cbf6, 0x89191c00bd52878a, 0xa6c4652acdca553d, 0x3d40a1a47da8da0c, 0x58faf5aacb0602a5, 0xe5bdfcb9376600d8, 0x3f7d92efb2444a14, 0xd8dfdd81275d9022, 0x00000000000006 }, { 0x5b8dbb16945c54ce, 0x2b8ae91a38ec9625, 0x91beb7600eec8632, 0xca320a1564accffe, 0x2e1d7ff953c5bf4a, 0xa4444b39b07b3e8, 0xe751a7aa9468393a, 0x7eaeb9a3b0d6848a, 0x000000000000f4 } }, { { 0x30b04a92b8d9aacf, 0x3d315b843d5642cb, 0x8b8001f36b7e4da8, 0x35d55090e95750fb, 0x57d5e2c740d65543, 0x5f914197e644d9b9, 0x9f29245fd98f3b45, 0x711bf3080d0cd6c0, 0x00000000000076 }, { 0x30fc90019741ab18, 0xc06932c8374e5cc, 0x2d829b0868db4189, 0xd3c58ddff63e7c69, 0xfeb231f13eccdb92, 0x5b1e4d4ee3f03da1, 0x63d513e3780011cb, 0xfd152c766cbd1c44, 0x000000000000bd }, { 0xd42383d2f71f36fc, 0x6867aca7c9aa8676, 0x766c6ce1a4748877, 0xb5f278f5e0a25a2f, 0xec94fc377a67fdf4, 0xc79912b6f8369074, 0xd1278f37e880f89a, 0xe4987704a42bd332, 0x00000000000064 } }, { { 0x969266c460debf3c, 0x5d5831af735fd8a6, 0xdffe8021250e251a, 0xe341f9d738e4a725, 0x8bfa83ced36b0120, 0x84a6f40f463a7f01, 0x572822530fe929c7, 0xe1eb4fc2be506d8, 0x0000000000009f }, { 0xc6e54ebb84ebcf09, 0xb539d41f0f44457b, 0x25722f0fd74cdaa9, 0xac995a2a46e64196, 0x6daaf8a7ea11ab79, 0xb94250459419c5d6, 0xa84ce0597c8db09c, 0x848baedad5303de7, 0x000000000001e2 }, { 0x2409b511e93cdda2, 0x1eeecdde5754df53, 0x65865ce774d64910, 0x2a626fc15b94335e, 0x425db9fc92174095, 0xa3359ccd21f6ec2f, 0x29db99d42b71f6f6, 0x4f88350b7c2d6607, 0x00000000000153 } }, { { 0xff12bce217ad46fb, 0x7c3a4090b053d1a6, 0xa4b68625d9e7259d, 0xf456593f546f57b3, 0xf93b8b2e0b7862ad, 0xa80f4b1f823eec84, 0x52115fe857d7c04e, 0x7e37a4f1043c94d6, 0x00000000000074 }, { 0x6936caeb379449ca, 0x86bbc8fcb4f5124, 0xebcecc7a77a760da, 0xa332f26562002967, 0x1a4058ee23fb0eee, 0xccd8fdb15b2378b5, 0x8f665f54506722f9, 0x212d5de3eea4005b, 0x00000000000163 }, { 0x6a878d99264919f8, 0xadeafe0c8b256204, 0x2fab833f5030b04a, 0x628a1b2228e0b92e, 0x2f83f6b65b0c3c3a, 0x58b948fef6e279ce, 0x3b38bf1c1534c2a2, 0x2c6cec3d43f245b3, 0x000000000000f8 } }, { { 0xd6d3ed1ce8779653, 0x823726caa8be36c3, 0x23c216469d10f17a, 0xfff7d0331c5d5895, 0x59077213ee922c5e, 0x8fad545ca2c09baf, 0xc55deb9bb9956a7e, 0x1086732315a63407, 0x00000000000033 }, { 0x86a8095258be4900, 0xb7cdde809ae64de0, 0x826e5a195a224636, 0x51667e4138b80a48, 0xb59f44df0638cfaa, 0x3bb9c248f054347c, 0x93e41c35408d3f07, 0xc16f46faf7b0daef, 0x00000000000106 }, { 0xdd0d03fb3362fc7a, 0x248a919f5a0fa518, 0x8fa4f0c609f6cdc8, 0x954d7386d9a79059, 0x480f23101adc9f9a, 0xcf6cfd1396382102, 0x1d6ec518114d8120, 0xb31e2d82bf4809af, 0x00000000000184 } }, { { 0x8a47f301ca069d51, 0xbc472a99cdf6c394, 0xdec4493d1625bb75, 0xf1cef1aec6108097, 0xeb5df1ef8466832c, 0x8880df47bae3c7fa, 0xebe97ef4917830ac, 0xa469fe8a681c961f, 0x0000000000003e }, { 0xf9373c90171581e3, 0x93a4d2dbe1ca0167, 0xe2d0487672185104, 0x3e7acfdcdc1c0215, 0x227c206747f040ff, 0x42eefc49f05c6289, 0xf46819a9abd6bdd2, 0x9df2c3d1d3a80122, 0x000000000001f7 }, { 0x9554a6ba49ee040a, 0x18f00ef4d40c7471, 0x3a1af67b27c608f9, 0x6cb61b280fe55041, 0x2a7d83ecdf3f1326, 0x7aba832eb368d5f8, 0xe0e892f1e88ddf52, 0xadb61c3ac27ecf56, 0x00000000000019 } }, { { 0x8ca11a27c9798cd2, 0x195fe6c532133009, 0xc65f3fe2b8f3c7d4, 0x5cc3fa0aa9d2cdd3, 0x6efdc8d15f1820e9, 0x9af5934422f121ff, 0x81a97df0ec283cb7, 0x4abc1e905877633d, 0x000000000000af }, { 0x2c0e7658f1b6f633, 0x36addf1c3d39a8c7, 0x89ad6eda758a4270, 0x4cc6e6b2cbccf318, 0x741c0958a2f3843e, 0x5775c0ab77a31b29, 0x93d629e443d2d4bc, 0x264588c13e0ae7c5, 0x00000000000131 }, { 0x13cb72a9a1976d4b, 0x9e659ecbb5836e53, 0xa89e29b8b710f770, 0xf7c7bfe2344a1d2a, 0xcffdfdf0efc6659c, 0x9c90e8bd7a2f7333, 0x738404f88125bc9b, 0x56cdb56f5ff0a377, 0x0000000000002e } }, { { 0xb76cad624ccb2188, 0x4456a4d8eff1958e, 0x811e0be0f82c595a, 0x4022cdda94d0382, 0x62ce8cec517f702b, 0x4a3824320de21fd2, 0xe550e7b4e235fc26, 0xd93b1ad244369c8, 0x00000000000054 }, { 0x9358d9358a3ec73c, 0x8c4e430d03831e82, 0xc7b072e4c642cfab, 0xf3e30b6f2fecf3f2, 0x6366b52e31e4b37a, 0x97523d2c9385b5d0, 0xc6dca4ec1cceeaaa, 0x323d21cfb7b4ea34, 0x00000000000141 }, { 0x7b1035105b55b23f, 0x1fa605fe87881a18, 0x3af669e94b63c7ba, 0xd62fbd39cdccd2a1, 0x70d14e3fb2334ad6, 0x44b1c2a0c8350799, 0xa68c6e0b905566e8, 0x5574a44f55a711ea, 0x000000000001c9 } } }, { { { 0xb2a73c7a550f8e7e, 0xa47c3a0fda10a470, 0x1c758ab9a8da03bd, 0x7e4bcb2f16c9feca, 0xac34a2798379bf6f, 0xe558b2fdee0a7ac8, 0x6cfedffb02be7663, 0xbf9e4137c11b0b4d, 0x00000000000167 }, { 0xa387a3c5a54836da, 0xfa6ea2efb46538c0, 0x4c8bd38078645949, 0xa4b8e0e331e67471, 0xd0768f434baef7c2, 0xd6709952634736c3, 0x38dc84137169d03c, 0x9dc4972f5ba9912f, 0x000000000000af }, { 0x39be53200013e8ab, 0x98b3f1aeffc8a3e2, 0xef7a75622f6b4fbc, 0x7ac1578e38cdeda2, 0x9963bfc2115afb7b, 0x2619979289859b79, 0x1f26cf234f0af683, 0x374ae7a08a74a117, 0x00000000000041 } }, { { 0xa484df1983dc8fa9, 0x7d1563697a6b3775, 0x181945ff5721a3cb, 0x870c20b2d2167462, 0xcb6015c34389063e, 0xd23d5d875c4ba0f0, 0x1978d88de2f8e63, 0x484f23d15c9de88b, 0x00000000000137 }, { 0x4c4e10641439994b, 0x9c78d95b1bd69199, 0x8ddb6f6dd9927198, 0xe809e062f26eead5, 0xaaa22a2b92495917, 0xc5d2f7abd9ab721a, 0xbcbaff0ede38d33e, 0xf76fa905597c0237, 0x0000000000010f }, { 0x4c73725be7c80f9c, 0x71f2d5849a9fc3ad, 0x89986bacc77abab8, 0x63ffb03be02106fc, 0x265affee9dcb47fd, 0xfceb21cbc4150239, 0x5a246235b4193183, 0xbc23b3035186edee, 0x0000000000012f } }, { { 0xa7df485f9e95ffda, 0x82113eedba4ae8d6, 0x65f1cfd0f2786db5, 0x500a2db9d1367a86, 0x2ba49ffa55477775, 0x8ae11e642d6e0cc9, 0x51e3a63b4a0daa30, 0x18ea07d4b7e29549, 0x000000000000d4 }, { 0x54e01b3a3f49aebe, 0x81d49064a11d0f3a, 0xc45759f1ee0d2f62, 0x6acf7bfb01aee429, 0x90408c3120e506e4, 0xb00730420e04a08b, 0x733d227870111f9a, 0xafe9b48e00917dc8, 0x000000000001c0 }, { 0x16914d844a04aa87, 0xf4dc5300c31563f3, 0xb4a4863245ede7fa, 0x73afa3d92674a586, 0x7c44fb5872718cc5, 0xb9ea25b07358cfd1, 0xe0f854ba32f9bcbe, 0xe1b6e44dbf52a3da, 0x00000000000082 } }, { { 0x29e0a66628d6f9dd, 0x9fbe43de1b799d0a, 0xcfcfaa1e9ec58b2a, 0xb20859941d4b943, 0x25abfb576b3cf00b, 0xedb87e3c693d3864, 0xaa286f0631d1340b, 0xef3ef3b6fa8a1397, 0x00000000000135 }, { 0x80d6efdf979e5a53, 0x6026a8413605d452, 0xb0bd64fe0e4214c0, 0x809f413e2dcd7c94, 0x59f771c5c8623151, 0xe0c2650a95491f2f, 0x85eac1bdac30709, 0xffe24f0d017b18cd, 0x000000000001c1 }, { 0x94e254f6f76c1552, 0x17fa7ada935ad5bc, 0x199ceecefcc08998, 0xbec2250b2fabe60d, 0xe30cb3e1468f495c, 0xfa5f48d7e3d0f13c, 0x5857e296bb87da4f, 0x4134e9345fb79ba, 0x00000000000002 } }, { { 0x75edb7554b1158e6, 0xa0b9313a88e0e824, 0xe3658e996966ae7c, 0x166cddc611a719e5, 0xfea35a98cca018c3, 0xf059edba6490c921, 0x2a1315aee130b902, 0xea7a795b95b44ee5, 0x00000000000119 }, { 0x3458e2eb3c4ff4a, 0x46655259fc234acc, 0x7645792b9b006b11, 0x86b71957ae5f50ca, 0xd7ccd3afca939901, 0x1955e90fbd7703a9, 0x3007e1584ca8b614, 0x8fa097cae8f98919, 0x000000000001e4 }, { 0xdf484e07d92722f5, 0x78e9722c314ee625, 0xb83d8e58db3be36a, 0x28beadf9e94decc8, 0x532c925153b672d, 0x94c7ecc4901b8fef, 0x5d3fcbbc6203880c, 0x9098bf62db8ea522, 0x000000000000ab } }, { { 0x20b989d4f1710c57, 0xb145df71a300cf4b, 0x63788bb9a7520258, 0xbbf1dcbf88ffbe10, 0x717a72bbc6a3d4b1, 0x6fbf8fb4c0e9f51c, 0xe75566de3c6ed8ca, 0xb83151ab47bc4ea8, 0x000000000000e1 }, { 0x19bed616b6029869, 0x8fc6ebc699797698, 0xf09232c9e2a37a67, 0xebe6a90f8ffba6af, 0xc81e449fbf13a07b, 0x1e0acfbb7e4f03ee, 0x3f8c1c8f66470050, 0x780b2a172bcf5660, 0x0000000000016f }, { 0x79b64c116dbbc2e, 0x318841718fb17e50, 0x20b002a43ec85bdf, 0x6ce9bdff327c9589, 0xf3c5d8defb7f92c2, 0x8834efec8ceccdd9, 0xe113496cc381f56f, 0x67e5b16a3febf719, 0x00000000000184 } }, { { 0x2da1fb928527d281, 0x2743f8b1f6aff840, 0x39ac277f91dced37, 0x5bb568f142652ade, 0xa83bccd42195c423, 0x878b096a9987fe91, 0xfea3c15ed6074dea, 0xd6bdf60dbb40209, 0x000000000001ec }, { 0x4cb6bfedfe0a958f, 0xc55d63f3e450c4f8, 0xbe4fe9629d9a59e8, 0x688f82d83ecf0268, 0xd0d0f1ddbeea5b45, 0x8b216ec455f286f7, 0x901d0eecb6840eb3, 0x15fdb883f048fb75, 0x0000000000007b }, { 0x2976bcf281c010e6, 0x6c1c9f1572608edf, 0x964f5a6a02480497, 0x68702445bee4a2c7, 0x2b69595c1e8e05bc, 0xb802b3f2b1c8fddc, 0x1e6c8e478537e5fa, 0xa7f1e5defec760de, 0x000000000001a0 } }, { { 0x8cec594e4cde05cc, 0x44823bfd1a1d9a56, 0x1019dcd4c789f2df, 0xbe7a98fca254eb30, 0x4e38b5a6f590abc0, 0xac790862b08f2ce9, 0xf656383f0c598911, 0x762f12cf42d3d367, 0x000000000000d6 }, { 0x8a4eb99c126f846, 0xbd1d53b66000dc5e, 0x7bbebd8402db9332, 0x9cf329b556245ed4, 0xc2260fc7e69b6f05, 0xd4c5eea5256ddfc9, 0x4d9417c597093981, 0x8719d6d97bff6edf, 0x000000000000c9 }, { 0x650aac8e25daab09, 0x184ed9a00d7ae6da, 0xd1bc36ebdad8dcb2, 0x2102652eda476b41, 0xad017e5d4393516f, 0x9769e01867e2e726, 0x967f422b3aabfec8, 0xcd2621ae018cc9fc, 0x00000000000005 } }, { { 0xf1446f09dee26cd5, 0x269b8bde64dc2468, 0xd639abcc3909a4b4, 0xd800b44a94e92a87, 0x7aee0b95291de1e7, 0xf4ba913590cee6ff, 0x623e0e28a55d2279, 0xdcc4b1e48500d0df, 0x00000000000098 }, { 0x692f158922233da2, 0xebf123ce100a1871, 0x41558af411df5df6, 0x121f595b936509e1, 0xac9bb687a40c65a1, 0x98b7cfb347ffb557, 0x8d791aae254e102a, 0xcbd10f3e15359a60, 0x000000000001b2 }, { 0xca6a85036cc9b9c5, 0x1b571010d74b8af2, 0xed30ce9d722f7408, 0xe9977d3d1c22bee5, 0x1d1967a613fa7750, 0x7aa10d6dc647e94d, 0x1d55957c8de6bc7d, 0x7d42bfab1e27cfea, 0x000000000001ae } }, { { 0x6c0bb7331d56f455, 0x8f0dff7d7d62100, 0xc32ec459ac89833, 0x939415440a0ea4ce, 0x927177a4546f6a9f, 0x3f1fc5264510ddbd, 0x9288e50f4691ccba, 0x70aba901f16aaa7e, 0x00000000000109 }, { 0x3e6458f0b1440d51, 0x153d88ed1c7c2846, 0xf1062644baee94ff, 0xeeece6e8891b68a5, 0x75ba663f0250c74, 0x1ee092b0df7d703e, 0x67e8d3bbdaa8961b, 0xd2e2ae2527ef8c6b, 0x00000000000021 }, { 0xc483b828abc9efc5, 0xa4ad2667c6cf7fc1, 0xa2ea4f6484571467, 0x78cbffd40c47a281, 0x3c3e3f7c48437a19, 0x997c0f06c150d846, 0x721384d09b1d7cf5, 0x9d50c5b8c553c21d, 0x00000000000171 } }, { { 0x93711b0d11824e24, 0x88b1d8e65f9a840e, 0x827ce466a350645c, 0x6839de39bbe6e31b, 0xd182884089bebc3f, 0x3e62a6b1c3a9dbd0, 0x26808edb2147802c, 0xc3774fad8b41f817, 0x00000000000192 }, { 0x1f9d140be05331a1, 0x93a4a64e085e9a46, 0xb960f76aa9303475, 0x6475e2362aae76e9, 0xddd7c113baca122c, 0x49376a750daff98c, 0x8b2d1ded4a70eb6e, 0x199238738f2ef8a9, 0x00000000000025 }, { 0x3a73b43241ba89f7, 0xf873933c17f1ee6b, 0xe7e625c758319c23, 0x24b04dbab4f09e62, 0xe11548d7cd965c39, 0xb0826ba84454712c, 0x5ad5242b4283abae, 0xda50003a41467cce, 0x00000000000002 } }, { { 0xf6671f5b045efe57, 0x72e80624577df1a6, 0x1581489bc954bce4, 0x296288aeaa9c4aab, 0xf18b466b5f4ed138, 0xbfb643d6c64a1ae, 0x77734df4034ba2c7, 0x9e9697ef30d06e04, 0x000000000000f6 }, { 0xba1f5f6564c44736, 0x5840f79d2a13f1e2, 0x35f6ead20150e724, 0x84f544d6a1912c8b, 0x1963030a8b64acd8, 0x967841632e8843ec, 0xa5e8009140657bc9, 0x8b59951d096e7f1d, 0x00000000000117 }, { 0x16a2ddf5f0f12212, 0x239ee3b204f12c91, 0x2435c1a3631b086a, 0xef3a603182302d5c, 0x8114f7f6c464ad70, 0xea9f22229fceec40, 0x7599c94c81cbac5f, 0xdde7d0179dce1b4b, 0x000000000001d0 } }, { { 0x7c73e4a51cda626a, 0x2621637f7f4fbf70, 0x8f734ff2ef6bb5e6, 0x5db2bebffbd5a4fd, 0x23f243cac8eee127, 0x8752bee04ab4b8f3, 0x6a8e8579bf0689eb, 0xda127f8ad22c5302, 0x0000000000003f }, { 0xf2a37449d6e311a9, 0xaa952fa28c6f58ff, 0x73f36f4d2e9a4f6a, 0x34226bf71415ecbc, 0xc87f6846d8946d75, 0x7384ffd1cb7b1823, 0xd61f73c15a1a067, 0xff5fd27adca567d4, 0x00000000000119 }, { 0x347dca54f087921, 0xf924f583cf7630e9, 0x12427f3b848a65a5, 0x2d91ce8475aaf6e9, 0x9d47efaeed523a9a, 0x3da0ec3679ba415c, 0xcb40cb33e597acc0, 0xf7f13a38b098d1c4, 0x00000000000114 } }, { { 0xa5150fc0fdda98d, 0x762e166d4eb65755, 0xfc7d96f8c432454f, 0xc080f9c09d823417, 0xa67b495fd9585901, 0xed81ffd10048b9ae, 0xea6f98e74b44a6ee, 0x3fdd7bbe04442682, 0x00000000000102 }, { 0x3d1bf25299975798, 0x9551041795af72c2, 0x17b5cc87645e11ba, 0x4dc9f136b5c0e9d9, 0xdeaf966d45d9119c, 0x3c47f54700e7f20b, 0x207ddcea622be8a, 0x535a725d01eb0ee1, 0x00000000000117 }, { 0xe70ad0e9e975e3db, 0xcc008294a8272723, 0xfd0a5fc01b0fd869, 0x5f046bdf85b34a73, 0x80881313d471e9e2, 0x4e55b472f88fe286, 0x24083d3d10b871bb, 0xc5bd13503db2f313, 0x000000000001cd } }, { { 0xb017370a9dff1931, 0x19ed1dc8ffa1d625, 0x19d47b9bf326beff, 0x5f89a1c414e59982, 0x38f129932c3c56b9, 0xd5a564f5f4658937, 0x231aebfdf769212, 0xd099e7f15ea10469, 0x000000000000f3 }, { 0xf25dd1da5e3cba51, 0xbb31b8b345ff95b4, 0xe699f28394c88569, 0x67cdf2053e4a76d, 0x6ab796dc184fc79f, 0x16bb7846b1a2a9fd, 0x5c94e278f0274ad1, 0x38411636ddb0ce18, 0x000000000001e9 }, { 0xb6a52d1f1d06a72f, 0x4bed83c92b14b59e, 0x6bccdd1315d12fe1, 0xce301b52ccea128d, 0x1f1796f7ada8ba61, 0xe09b19ca396b8d9d, 0x9012f0ba68824472, 0x3cd3b46bd875e818, 0x00000000000054 } } }, { { { 0xa5465d39d337b2a7, 0x40ec64de18bd4fd6, 0x739f6d8b4c365f60, 0xd4114433fe19c3bb, 0xb7e0f9deb9bc5e62, 0xc757399ad0cb3d72, 0x1b8fe3f04d08c4b2, 0x797b75a0169a5318, 0x000000000000f8 }, { 0x5d164ec93e70459f, 0xd982828c1451fa78, 0xdc8bd15b75bd2919, 0xa0827a894ed89866, 0x7d0a5209d061b25d, 0xc12a488549f7464f, 0x8a7b2819309f0b13, 0x379ebe08bf509d4e, 0x000000000000b8 }, { 0xbb339a7c79c6e19b, 0x74340f11e1f32c49, 0x3e754ab7fcd13691, 0x9400bbf63684fbf0, 0x6f06b25d11f6731d, 0x88f9973e0a4ab5cf, 0x5da3ef9018d6526e, 0x97f55bdc1bc7ad41, 0x000000000000e4 } }, { { 0x2d1e40e4a46237b, 0x6bc70cc818fcb056, 0xee384e009ab4814b, 0x1afc1e13445f324d, 0xcc93dd8e93518602, 0x498a8032649478ef, 0xb3fb2066b600a2d2, 0xd33769cb02a46975, 0x000000000000af }, { 0x1c4bb0bdb9925fad, 0x3f287fa07c65decc, 0xba6ebe7280acb444, 0xbf0788d0f6a214f2, 0x1b1f4b996a9da7f9, 0x4519bc85677314f2, 0x7b9a5374774daea7, 0x558ae6b428abc049, 0x000000000001a8 }, { 0xd4c2bcba6f5a89cb, 0xf4b9cd3420da4536, 0x24167a876d35be07, 0x16b15e1e3b1c3f24, 0xc953373b4ae07f2f, 0x30eb465cef58080d, 0xee257237bd3d12f, 0x41084c936fa27ee, 0x00000000000006 } }, { { 0x59a2c909931d765e, 0xf4527c0270b06814, 0x4772ea0db3e2a04, 0x8d6c46dddc5b8a6, 0x6b47686aeed35bc0, 0x4927458a3960e094, 0xd05b7518a7365b65, 0xb798f8e1d3f4226, 0x0000000000000e }, { 0xc5aef9109d57bedd, 0x8b3c82cfa9f44663, 0x4d4ea1108e1ffc75, 0x708555346adc533d, 0xa28c116e635dc37, 0x596ff49aaaa3aad4, 0xc6af2049e007cfdc, 0x10606f844d722b50, 0x0000000000008e }, { 0xbfe53dbe64254ef1, 0xf07ce58f379a80bc, 0x102f5a21ce60d8b4, 0xed4001eff41c4528, 0x2bd314895ebe40fc, 0x3db98bb034d88f5b, 0xbfe427187c9fca46, 0xb693742c66446d11, 0x0000000000012f } }, { { 0x23e10ea38cbe71d5, 0x8be646755bcd9e2a, 0x4d3d608e01ac97bc, 0x587b459d908578f4, 0xc33495de74f5af84, 0xfed845c559a63387, 0x4096f804e85413b1, 0xf908880d57331f47, 0x0000000000011a }, { 0x210ac50c17f79de5, 0xe166511998125ee0, 0x4e253171121b4b23, 0x5b3b599f72d7e806, 0x8a311b80156184ab, 0xa057c85f524fa33f, 0xcdaf4b6c9c0d0c49, 0x49c60dd1ea13f109, 0x000000000001ce }, { 0x22838d6e40625034, 0x300cd5f2b69c3336, 0x8c1c1b74337cd2d4, 0x386898f46b02e812, 0xf1c5c188a1422882, 0x1682766b6ce56eeb, 0x9fcc02ddaa8fc563, 0x8d1d751e47c94e77, 0x00000000000085 } }, { { 0x8a514ff31c89ab85, 0x6ec16577f74ba2ca, 0x531ecc27d11acde6, 0x1be002e6297d7593, 0xe3a2f759d60a790, 0xe4c4153ba726ae1d, 0xb4ae21f7b301caa, 0x5567e17fd8d032d8, 0x0000000000015e }, { 0x272cae23e32a772e, 0x883a451a6d11d3a1, 0x8f6720b9530fdf26, 0xc1236c76ca8d0f1c, 0x2443d1ae06283f83, 0x2047cf1b6c75d123, 0x969469e8d7ab2e86, 0xdb02c6173231d5be, 0x00000000000135 }, { 0xbe329cb240fa18ca, 0xbad6e9b54bc8f534, 0x2c809573df0d17cd, 0x19f1d84f3e498f34, 0x5b1c22bc6dc3e04, 0xd81427e15c80d7ed, 0xf581588e7db49f76, 0xa1b8ccd550e9558b, 0x0000000000009e } }, { { 0x610b309a386fe952, 0x913e0dbfac5a1135, 0xcab5415fc189545, 0x9b866fc40580907c, 0xce8607fe48748585, 0x62de4f5da5a6d38, 0x69d897084d44b8d9, 0xc816daef748a2656, 0x0000000000018c }, { 0x64bb6fa56f38e2b8, 0x585f5c1432dd3694, 0xd02e6b73b289745a, 0x474733f991777625, 0x3411e0b2f4daf2fe, 0x63dc48b0910fb516, 0x7b6ba2bbebaf9cd1, 0x736e97f8f28cec55, 0x00000000000173 }, { 0x356c73d7e57b42b1, 0x15abc91da04c8f98, 0x99a2acce1538cc7a, 0x247882a3c556a8c9, 0x60f2071ff0293b95, 0xf2a7c7fb12f5e148, 0xf8b49ab686a3f69a, 0x758d533e01dce593, 0x00000000000177 } }, { { 0x9077566b7b44366a, 0xd4990ed2a2f5554f, 0xc637721b1577d024, 0x5df295b8e52152a2, 0x6f9a512fa21aa294, 0xcaa40bf33100f0f4, 0xcce6a776e0e86620, 0xfee618e7342e365d, 0x00000000000058 }, { 0x988ab677525b08bc, 0x707acd5bc81c8158, 0x91543d289b47d93, 0x45d9c8a15ef17e6d, 0x65acd305fcc8cbbc, 0x8e484fd9de5e80d4, 0xd4cbe1cdf39ddc88, 0x23cb202d77bc401d, 0x000000000000f1 }, { 0xb695da6c2e4169d4, 0x7f8c24915585bbd7, 0xed664b7418865050, 0x925c04863040c71c, 0x3cf11b557c2cea29, 0xd83d92034d4d19d5, 0xa449c8c6ba4951b3, 0x2c619ca4f35441cc, 0x000000000000ac } }, { { 0x154832bd8fc47d36, 0xddd307ceb9f054ab, 0xaa1a5ad8a14fef20, 0x52695b205fc40ae5, 0xeda6bc12c1ced829, 0x526895cef149efaf, 0x883a185ff6be7636, 0x8773961f4052c8a8, 0x000000000000fe }, { 0x2aa8ee4bf36f80c3, 0x5fbba468d7bfeeba, 0x670b4d4b0b90e925, 0x394ee50656e64a07, 0x49c6d3629b5fe81f, 0xeee13b4071599ba3, 0x17fef6c568461110, 0x5b40c2466d54f054, 0x000000000001bd }, { 0x95714a3b6d051db6, 0x66ccb175398cd546, 0xeb17dad4b10e78df, 0x55b9aaa4359e075, 0xd79462f62e9a71a5, 0xa23d665dae27b51f, 0x9a2cdee0ee6f9090, 0x7bcfe62d8569bb18, 0x00000000000050 } }, { { 0x621e6d71148ccc78, 0x1c40b57ef7e3165a, 0x26c61e0dda71daa5, 0x8e0e4b9634fc9df2, 0xe05cd08257e3ec6f, 0xf47a481cd8cae402, 0x3b7c990407ee68d0, 0x1916f95e447be527, 0x0000000000005c }, { 0x97bd0ce6f257dfd1, 0x14ab844a3ade04ad, 0x37f65c26bfc584d, 0x48eb4045386037e4, 0xb8b3b14deef12418, 0x3b58dad7ce3c3d78, 0x9154e708b3e96035, 0xab4e5775950482f5, 0x000000000000e9 }, { 0xcfc9186983c958aa, 0x6ac60fc58046ac96, 0x2917dcb1a2609df8, 0xe2d4f899f61fac61, 0x482dcaadd4b6b957, 0x45a4d6c1512e1337, 0xbc01460e3d271741, 0x4850ee0343645ba1, 0x0000000000016a } }, { { 0xdfc38582e509c494, 0xecf01fcb57ece5f4, 0x2fec4e4948df1eda, 0x25756eda5da942a, 0x121ef7ebbaa1106, 0x6ccc3a3f0e2183e7, 0x59605bf5a76b7ac4, 0xab152bf3a8cc628a, 0x00000000000117 }, { 0xfe8539b73e6bec9b, 0xf8f473c981aea5a6, 0xc6ecc6b1ec50aa93, 0x614ffb8810254c2e, 0xdc1c2accd817c30a, 0x39f6dd5b846f6a5d, 0x2db349de12e78ac4, 0x709aa55c80e159fe, 0x000000000001e4 }, { 0x932bffb2a6924485, 0x5adffe48062a2e63, 0xf465953922d258dd, 0xb533f004170f03f2, 0x17751ac53329316e, 0xefecd1c0325c2fbe, 0x726f4c181c5ebd94, 0xd61c5e4574d34aa7, 0x0000000000015a } }, { { 0xf2d7a8e8b28a7c42, 0xab8eb516e0cc2b16, 0x733d81e05406afb0, 0xa4d94c3db68fdd1a, 0x841158f5273460b, 0x784fd5b2f8545cc2, 0x3b406d9d2882aaa2, 0xf5d14ca21699e287, 0x00000000000059 }, { 0xa5f341d7cded10ab, 0xf8ac56806d0b3ec1, 0x16a16b34e3bc1855, 0x48467b9918633565, 0xf202c0186a715524, 0xaeef0d699313124a, 0x849fffa5622cad3d, 0xfcd04625cd4a9de3, 0x000000000000e5 }, { 0x16accb78eaa23878, 0xf3baaf8880f07cd4, 0xa30b98e9832b9047, 0xbd19a41b45c45d31, 0xf3519c5c31ee9cc1, 0x8aa2f82ad560ad58, 0xabe6b8e7712fd7a2, 0x2e2917d8a7307533, 0x000000000001d5 } }, { { 0x5b4115db6d05b98b, 0xdbbe2ce6a43f4175, 0xd88b7226f77dff09, 0xa7f1473707269231, 0xeb8cd646a98ea310, 0xc8ef27f7c9cb1fe9, 0x17998a4e5b8c4fe6, 0xf59d94479b9116b6, 0x000000000001cf }, { 0x65b8ee82f3c0b4b0, 0x9bd81242ea50fb04, 0x13df3fc92c075cf6, 0x75b4b189382e957a, 0xeba5fe0ed4f80e95, 0xc63faca45b28026e, 0xafdfd4a1622431b5, 0xff715f4876f74d3, 0x0000000000013e }, { 0x47828b9054542e2, 0xfffaa6b696144046, 0x3cc86414bf26bf07, 0xf5f89c1444ae185c, 0x57345364304f9ea8, 0x4291f146d9871b70, 0xe2ca7edfc4be7bfd, 0xf6b82499e797377b, 0x0000000000017b } }, { { 0x3d11c717189262d8, 0xc2572cdac05bdba7, 0xd032dc7fdcf81e7a, 0xb0d134f754f6b3fc, 0x632d03e743738587, 0x31181519513124b, 0xdae1ad4276b3393f, 0x9f143d1c4fdd8662, 0x000000000000e8 }, { 0x92fe9cf30ba996eb, 0x7d6f59f946139a9b, 0x19d0db418245e5fb, 0xfb6fb22f34691ac7, 0x9bba686b2826e6c6, 0x35d618668b899bc7, 0xe40ff86c1026aae5, 0xf070ab171e46ac23, 0x00000000000107 }, { 0x1dfd19126009c532, 0x379716148ae36642, 0x7e1521b04aa8a033, 0x8f02d7878a0227a, 0xeb4eef857bec00f1, 0x926093a402c3bc7, 0x26783adc43b7e107, 0xebb03e3531659b09, 0x0000000000005c } }, { { 0x93b3ed92f627b965, 0xc8fabe960a84791, 0x72a482c04bd352b0, 0xb8b26a94bec52b02, 0x509039fdf465c33e, 0xed7a4dffb7e673ba, 0xd0c5708a720ba395, 0x16278b2316b20343, 0x00000000000005 }, { 0x463000e9804ee581, 0x21bd7a800ac1111f, 0x15f44f210f6dc099, 0x8983e469d577e172, 0xafcee7c11866ead2, 0x9d2212a0e3f80c36, 0x37ed5d53622de978, 0xf80ea362822dd5b3, 0x00000000000171 }, { 0x60b84649f7c3d055, 0xee6202d05dd48aef, 0x8ae9d50c2b0a2a57, 0x5a4d6b8cb2f3c068, 0xb3db3d2b7c2123b3, 0xe9b3c37f87c912bd, 0xb27d552007000950, 0xe5ef98ea8643272d, 0x0000000000008f } }, { { 0x806848a2057156e2, 0xea23a835f0eaba8d, 0xb4c3ab0ccdf261b6, 0x97ea242fe6b4c3ce, 0x21c4e8a7627950cd, 0x63c2f9e24e19cf1a, 0x45807c51fcb143b8, 0xf2cce349354a86b, 0x00000000000178 }, { 0x70191c28fd5ddf7, 0xd74bd26a4dbc7c6c, 0xac8058e0a863fac3, 0x2f6e2c5bc50673c6, 0x84f665707ce3e762, 0xa292f210789df6ed, 0x43b04f3a2d548664, 0x5450aebf583f199c, 0x000000000001e0 }, { 0xa40d172dd5046d4e, 0xec8e12065f69ca24, 0xc4267bd469523d71, 0xb31457ca8baa3af1, 0x4560bfb7ad84660, 0x2cef63f25a59888e, 0xb8f50f73632e5dc6, 0xf3d4e1814bf2cc77, 0x0000000000012d } } }, { { { 0x296b90f251033c13, 0x2aa790bc3ac352c2, 0x91e3119e1e04e071, 0xe6dfa4c8ca485514, 0x582d3c5a88c23bae, 0x494371b564b5a9e2, 0xa920af34f0c88ede, 0x4a86f35f15292ad2, 0x000000000001fd }, { 0xe57b376bcd669bb4, 0xf0239c73b21804c3, 0xfc54706633826007, 0x4e5b3a9237cd2d7b, 0xaef244aec17d639a, 0x1031122dada5d45a, 0x5205cb333b6340fd, 0xd8d6da3aa3867dfa, 0x00000000000020 }, { 0x4511ed4cf4794875, 0x2823d2bc44c14cf0, 0x724d5480c645edbe, 0x3af8fe47f413281f, 0x60e5b0f1c6d1b2f3, 0x488ecfb2b4b9fc7f, 0xa7f9c7b40c25c74b, 0x5047b135979e11ee, 0x00000000000028 } }, { { 0xf04215b0e8248d4c, 0xd6930a40299113fd, 0xacfa797e4109924, 0xd25bd6ff1961e981, 0x904adc0332b25ac7, 0x708e0f5dc4b56b2d, 0xad3d2f68de945006, 0xfeddf6f7989f2412, 0x0000000000019a }, { 0x57ee78b9f0ef351e, 0xb4b179389afd6c2e, 0xd8f657efee4e071b, 0xf3deec3712f5c3e, 0xbc794f76fca26ae9, 0x5f8b1d141a543a6b, 0xb8a716dc236585f1, 0x152b17fe44c0fe43, 0x00000000000170 }, { 0xcd78b7bfc93dc3ae, 0x467a743ec73f9e96, 0x1f0466bc08fed41c, 0x176bc390e8fbeb28, 0x4e064220ba937955, 0x837970c274eaf8a5, 0x35889af9021ab948, 0x409995becf980a25, 0x000000000001fd } }, { { 0xcb37003302fa27f7, 0xedc3e0222842015b, 0x671bee661c45e710, 0xf0fb3fb424c59226, 0x1cb357b03018382d, 0xdd059fe2ad11f744, 0x6b23b45465fc74a1, 0xfc3951c2555d2e04, 0x000000000001ec }, { 0xd9f61de6b9436767, 0x1635f8bee3ac9a34, 0x886e15c638bd8fbf, 0xdc192b22c5ee8c5d, 0x4df7ad49221f130, 0x731cf5fa8f636a21, 0x5e7f5074866c1bea, 0xd501672a2e0f0deb, 0x00000000000040 }, { 0xe41fae169932d6d2, 0xe09f09c472b85f81, 0xa7002e84975092ef, 0xb97baaf002d329eb, 0xcc15d7d12c195b0d, 0xc44a943e0e14b1fe, 0x92d00244e7e7f916, 0x6492ba5a4a87bf05, 0x00000000000065 } }, { { 0xe3b9f7d9992ed987, 0x8f96ccb4cd18d726, 0xec82f4756b059264, 0x8f12c5bd87bd7088, 0x6bf444da87b099bd, 0xc2bc5129c7227d63, 0xd5bd59ce6749ea87, 0x1f07b5d3ca6dd3d6, 0x000000000001e4 }, { 0xd5c0d54abe9a8d20, 0x6af7037cc64c482e, 0xdc5a9ed8b403af2f, 0x212630871a2f9c5a, 0x8a15a65625c3c0f2, 0x6d605ee2d66fb7d8, 0x44c5bc0994c0f3d5, 0xd96be3b070d50d79, 0x000000000001ba }, { 0x952db0f64af659ee, 0x19787913a07bb828, 0x4eb5de8c97f98646, 0x34c3313f2f88c76b, 0x787be339c36d705b, 0x3049b7db67ebc686, 0xc14be2f11251fddf, 0x823065c994377cbc, 0x000000000001bc } }, { { 0xf0b1c0d0a9e23406, 0x212cc4a9bb849b2e, 0x1cabaad4a0f372b6, 0xba55f0e8f034d9d9, 0xb85b43af66ceca05, 0x3f5b28bbd4f37126, 0x73bdab3923160de1, 0x77d4ac264579ead0, 0x000000000001ed }, { 0x35abe4c627d22db5, 0xc072d6951978e865, 0x88d2bbf9df2f2bcd, 0x3319847d4627660a, 0x1b100a5f0654d2ff, 0x2052779fdc72d624, 0x43e6f304a5c32d3a, 0xdced0d7f9c1a37f3, 0x0000000000008d }, { 0xe7cc46210fbc08c4, 0x572ab32ebc58ad8d, 0x93a4f71463c22b3f, 0xffedbcdffe655309, 0x40358c9a89ab7d14, 0x7e19d67715460978, 0xd3f7652fdf83f70c, 0x52c421a9def80f63, 0x0000000000007d } }, { { 0x577d43f41d2cbe94, 0x905662d723f3c3ed, 0x531d9306167ec1bf, 0x686e1b0b72864b4a, 0x897cdbf5e20b0862, 0xd2d98929b738d730, 0xd6733ba8754f6074, 0xd533411230bb263d, 0x0000000000016a }, { 0x9922101dede9187, 0x7b3b5299d974291a, 0x66bdf25e2d855f7f, 0xffffc662bd17dcfa, 0x18469540cf7b5f6, 0x15e14ec87c35736c, 0xf3368a2d0f3cd979, 0x296710b9c572b2d2, 0x0000000000015a }, { 0x99aba2d7a710df3c, 0xc5e2a1ac3d31434, 0xa2719c697de81603, 0x53ce644d67bb4109, 0xd905ee3f90b96edd, 0xb4ebbddb214d54c6, 0xdcfbd9d73fd4db63, 0x419f780b8d7c97a4, 0x000000000001d0 } }, { { 0xe92a9eacaf170510, 0x2d1af0badb71dd48, 0xea46552a67f03bf5, 0xf8d1a3a1488c7b3a, 0xe656fd0f2311335b, 0x72ab2f1550273cbb, 0xf07940b79efc2bf2, 0xb393fd989ff1d8ea, 0x00000000000070 }, { 0x37dee8d10c1fce72, 0xfdc9da814d55ecd4, 0x63034b7f5ce60c32, 0xe6ecbd21007615c2, 0xf64383cbcb8ec1b4, 0x315427d7713808e0, 0xfd96734ea408f172, 0x308fdb027ae8f78c, 0x000000000001db }, { 0xca5c5687a70c8a51, 0xdd72b5c360c2ba6b, 0x1d40c88d383212fb, 0xfbecfde7aea8befc, 0x6ac3ee7d94c9d1c8, 0x7656a199087a37b0, 0x8ab0725330f331c1, 0x2112f33a614e21da, 0x00000000000071 } }, { { 0x522c8ffd90a7114f, 0xeb654a27b6e1466e, 0x9e09ef518177b72a, 0x478b8d24c2c7d671, 0xc8fd65e00d782085, 0x3e9ec83cc49c2955, 0xe76c9e59dc6293c0, 0x1be9cf73dcbeac4f, 0x000000000001e0 }, { 0x68cfed3e7910a24a, 0x4b5959489b429986, 0x589d8d7a06a76f7c, 0x8abe39b7173e8bea, 0x80868b52f2da110c, 0xa4240b14ff2a26d6, 0xa3f167711d720fd7, 0x260cd9c3f398052c, 0x00000000000156 }, { 0x9ce37cc6683367c0, 0x89508545e1aeef32, 0x7e4f84e007a4e2f1, 0x4ba9cb7aba4441b8, 0x2d49f749e84733bc, 0x885595ae9c02442a, 0xbccd7dbeb132ca5, 0x4158b848283f0e9a, 0x00000000000084 } }, { { 0x8fdbe15782925461, 0x2c48907a47bb8104, 0x72fe4c9837eaee65, 0x870c145fe0f386a2, 0xcf2fe67e4d5227b1, 0xe72a00cca90d96fd, 0x8d1ebe0f651cf214, 0x2772e1c8ed1f3554, 0x00000000000112 }, { 0x44ad216e5bf2337, 0xee13aa49b9987ca2, 0xcd4e6d5bfc9b412a, 0x4fcd42a3183b78cc, 0xcbd6458224e038d2, 0x453153ff95661e75, 0x410fe6bc3b24728b, 0x4e94553bf6d64197, 0x00000000000118 }, { 0x607971ed00710e07, 0xf670dcba1ef207b2, 0x50c6bf5ff8c7a324, 0x9e838d8aef080424, 0x432d103d34dcc2af, 0xf33d07302fb4cbcf, 0x7ea6e203ec86dea7, 0x5ffbf5fefe6718bc, 0x00000000000019 } }, { { 0x55ba662a862a7abe, 0x5d3fa698d088c89b, 0xea7fb192fced76d4, 0x58995310f32a76b4, 0x3705d840b512c027, 0xd7cd85bd87284529, 0x6e979bdd3549b037, 0x61f16f0daa3e667f, 0x00000000000112 }, { 0xc7a927d0fe8951aa, 0x8facf5f5168dd6bc, 0xe0940334c7fcd834, 0xa2afae7d3cbe107b, 0xb8c723edfa1b247, 0xf536d4d6a373299a, 0x2a433e3e1562656b, 0xaddf0e40620c9875, 0x0000000000000d }, { 0x9ce8e00ce537d487, 0xdefb2b30bfd7a184, 0x819aa641d1d1f4a2, 0x9e8b9e5f7c24f0e8, 0xcc1a99376ea3fdd1, 0xf2834b822e0f687f, 0x151ab93bb8e40bbc, 0x74f3e2dda948ea69, 0x00000000000183 } }, { { 0x631fad57ab3ca4fe, 0x774aeba9d371f1a6, 0xd3ef1e224e35d09f, 0xf05c677b4ff83977, 0x3623c86e11a0f4e3, 0x9d5487c9f6bdb42a, 0x50fd3790702e65ed, 0x6e06dc47b7bc83e6, 0x000000000001f5 }, { 0x5af420364aab6901, 0xe79062c071cec283, 0xfea244d6eb3dcb8a, 0x22ed295c4bac71a4, 0x624df7ab51873254, 0xfbbbd57e254d9077, 0x5470ac794856346d, 0xd72732367bc2c880, 0x0000000000004b }, { 0x9437d1cb6f4484d9, 0x2acf68387a9c9502, 0x531a0a9f82abbd6b, 0x4259e736dea007c4, 0x64624d6ce76b184b, 0xf37e76c9f93461e3, 0x7abd2fdfb45e4342, 0x2431175043cb2bf7, 0x00000000000045 } }, { { 0x915214eb0ba2fa97, 0xcd73f3db32e08684, 0xaed234272c520542, 0xd362074d0e897337, 0xf5668bd2a94ef85b, 0xb247341e22c6a5bc, 0xafb5facdb7d53f17, 0x2d49c768c41b756, 0x00000000000005 }, { 0xfd662fa6b1438b83, 0xa0028a09640d3ab9, 0x5d78020f78cf065e, 0x2b164a4a97cab2e2, 0x22c5bdc9cf36171d, 0x978a4793ea1dc839, 0x262ed2e596647c63, 0x8b2217b4ac964c6f, 0x0000000000018a }, { 0x2aff63dea45f33c6, 0x1f994af072e1e8e3, 0xa2e7deeac6ee0fe3, 0x4336a9c66e2aa678, 0x7d75a91c4a2e4d37, 0xc2dc55edbbd52b10, 0x1b09ccda643e123b, 0x1afb293881e952ad, 0x000000000001d7 } }, { { 0xcb7b4a185fadbd16, 0x13670b110b750050, 0xa861f94b38718ca1, 0x88d8156fb2d5136, 0x327e522d212153c9, 0x8fc328f6005014c2, 0x45f48352e9453806, 0x7740622e74f247, 0x000000000001ff }, { 0xf35d0188ac56d359, 0x1e3989ac1cf05edf, 0xc79a8cb8fbf9c3d4, 0x422574c4893dca11, 0xd6eed480d80ba963, 0xf6bd780303dac78b, 0x23e72cb98283eff0, 0xfb75dfd8f6debb33, 0x00000000000184 }, { 0xc6ad6e7ce8c0e4f8, 0xf365c66a8f7cd61b, 0x8b50c5ea2b7c9f0d, 0x3978b5b06e9376af, 0x527e129a399726aa, 0x2a93324da05d39e5, 0x3b47e443ebef582f, 0xbbbd15cc227b2c08, 0x000000000001da } }, { { 0x36ab1e87b249bd60, 0xdc0f90a30c639dbf, 0xf66a47e5d33444d0, 0x57a3c58eedba1397, 0xeffc2533f8f2e8b9, 0x63b0eea38e93e134, 0xaa4854b3cf8a61bb, 0x3fe7f8d863b23be8, 0x0000000000001e }, { 0x6c33ec4d9e066948, 0xffad784898b84885, 0xa426c8cf5e12842e, 0x435b45779ca2bcd5, 0x11e3f94a80e158d1, 0xdc6be088f89e277, 0x57c9267807d775e0, 0x5ca09ecced29e6cf, 0x000000000000b9 }, { 0xbac593b1cfa10a6, 0x9b32f14fb763b85e, 0xd15803dcb409bf3e, 0xbe22a755c48144d1, 0xd171c3da34af0e7, 0x5222bd24a0b43d62, 0xda1c1f6a0dd993a1, 0x2304c157be200730, 0x00000000000113 } }, { { 0xa5d2d50201d18a1c, 0xce9126b6df16f53d, 0x2718357efc338765, 0x9a835293e039314c, 0x426efb88b05e12a2, 0xbc805069d12eafbb, 0xd82e1d519a3b5080, 0x87b5d0327d6e2b8b, 0x0000000000010d }, { 0x306e733b23796050, 0x34a4ba4ae7d15c64, 0xd4680bc3f159b2aa, 0x739e9c2fc2e3001a, 0x5aa9c614f5495575, 0xa80522a2cd52b1fa, 0x46035935f45c26d4, 0x7b30966b751ce2df, 0x00000000000159 }, { 0xb2633d91e998991a, 0x1067c0e1fcf36285, 0x8bf2d2dcadbf2e7a, 0xccb546a6409a5e23, 0x282d3b73f1c79b08, 0xa7ccb3927f764189, 0x3cc972268c2390f5, 0xf6a76e307e22f338, 0x00000000000064 } } }, { { { 0x43f1f9fee430d8f7, 0x888e58c0244a1ab8, 0x19ebfea7be3358e5, 0x989996c306cb8902, 0x358933b557abec2e, 0xd5ddb91f421b80ac, 0x7cf5577c05b152ed, 0x30ae2e7f4151dd02, 0x000000000001bd }, { 0xf062350d5f508602, 0x4cd7b69af3ccebbc, 0x5245b3cdcfeb8a75, 0xce376a685a499b38, 0x2f485f9b6388ac4d, 0x1aa95bce90321285, 0x3ac55733d643dade, 0x995e76e1c8ce26f8, 0x0000000000018b }, { 0x5a48fecdc17cca77, 0xcebc05c317d154aa, 0x6b226a8c7a59f1b, 0xebb881c3018a4768, 0xafead0ea0b513994, 0xcb14b5fbddfaf8b3, 0xdcc92bf989ad80b9, 0x7c5b1f1139a1d6c9, 0x0000000000009b } }, { { 0x281ad2db03f21d06, 0xed4d29a5166cb0d3, 0x9b145ac8e1e5908c, 0x643cc64b8cdbc483, 0x7e2ad0070f816638, 0x83c9233231a7da21, 0x731d6af0de7cc57c, 0x1ac15d6bbd9a7124, 0x0000000000010d }, { 0x3017ddf913c1fc1d, 0x901b5bc69156a352, 0xcdbf1434bbd392a9, 0x42af6114868b25d, 0x3c1da08b94fd101e, 0xadc3f4306378f16c, 0x4a864881787a4271, 0x968030a2c111a2b7, 0x00000000000144 }, { 0x33d2de5aa1e22374, 0xd4526ec1ebb23aca, 0xd01752a1f9126303, 0xc2ae741d26fd8a3, 0x112dc6c6900f60a, 0x78e0c32de7bb657d, 0x2859920516a756f3, 0xafd7a545832b2ecb, 0x0000000000011e } }, { { 0xc690b2b4de8b4dd3, 0xf937b857210234a6, 0xfe959cc9f529db69, 0xfa24c6ba850ebb91, 0x525f76b73500dd1c, 0xfabf0f9bd4689840, 0xd454f02171594286, 0x423a4daf1b5107c8, 0x00000000000074 }, { 0xaf9b0e2ac3a676d7, 0x326f4a5d399a4a1f, 0xb5fb31d2e614f7f2, 0x3eb952e42afc897b, 0x4182bc6eddc4b2e7, 0x8dc35269528bc5da, 0xa920214a84f228e2, 0x42ab0339106c13c7, 0x00000000000058 }, { 0x58d2574f26add644, 0xbc446532d1b40868, 0x93fa612aecdbada8, 0xcf002ff4c22ff322, 0x493757bb2a1dbdf, 0xc0e907e453173829, 0xb0abd31d7f6e8144, 0xc64b0e0342e72898, 0x0000000000007c } }, { { 0x2e29a6a3cc0b48a5, 0x6cbaccf5a223df75, 0x1f8d723c9be39866, 0x7ef1fb4b02ba0d3e, 0x479f86b4316aa3b1, 0x32085134a4c774ba, 0x787c2385bfecea3c, 0x3e5b2ed0fae58713, 0x0000000000006a }, { 0xa36cb4cd007c2dd3, 0x4f8329fdc5e48278, 0x18ead61cee0e9010, 0x2d3783b80fa15360, 0x958adb33b2519066, 0x87907e6db687d5a8, 0xecbfd888813f58db, 0xf37fc6cb2fa421d8, 0x00000000000131 }, { 0x862515871a7838c, 0x8472c4bbc5148487, 0xc8a3b02539ceab58, 0x3f08060f44aef328, 0x33cf0defb1db365b, 0x2a703e5adfe0ea01, 0x2ad224a04b155a9c, 0x24f0e5013801644c, 0x000000000001d2 } }, { { 0x91aea6ef50eeac48, 0x4c8302e1266cf175, 0x227e28e99f800545, 0xe92e02da31d7866d, 0xc9d093f8afbd9d02, 0xf190a022d0f29ccf, 0xeb37fd0ad26a667b, 0x97b606baebffa952, 0x0000000000004a }, { 0xe066f655e3e334c4, 0x99058652810f10a6, 0x79b3a75b93935ead, 0x746d2f55f52dab99, 0xac8dcd4c8233d3a0, 0x1115fffc273526a3, 0xb5c83a0b0852026c, 0x4848624d3d814e35, 0x000000000000f9 }, { 0xeedf8b5db9f1a30e, 0x9c413901afd660da, 0x2934f054eb426aad, 0x7f700816a283c926, 0xc4e718b3250275b4, 0x2be9bfb4979d7327, 0xca6df31bfe481ba5, 0x346cd5d8022d6cd1, 0x00000000000116 } }, { { 0x74ea34088977cf8f, 0x4d87d9d65b920b13, 0x2b1c216cf50c74dc, 0x22444172aa078eea, 0xfc53fc4af3177e29, 0x82ed30c095375b60, 0x11001745cc1fbf4, 0xcd89c3507b0b76bd, 0x00000000000158 }, { 0x29fe2e87738e43c5, 0x5ebdc6551c78a652, 0x7fc3a7740248366e, 0xf859f53262bbc2ba, 0x204152c8b9b89e99, 0x32cfc25d8a525165, 0xdce385dc97b4d831, 0x7ce4f81c529d1241, 0x000000000000d6 }, { 0xc5e2d61c42163c50, 0x26fdfc0aadbe8592, 0x991e66e8b82da7a8, 0x4980c2bcbf4de880, 0xd559a37f9b7f957f, 0xdfe9909153ee6782, 0xdd575740b70b3c4f, 0x2dae0dea59316398, 0x000000000001d7 } }, { { 0x97934069d571d3b8, 0x361f9b9f49fdd830, 0x220aa9fe353dcf6b, 0xd2ccbfacc18893c2, 0x501728084e7cb118, 0x315d1e386ec9e9e4, 0x88d34784123a67c1, 0x61efe67da22d3896, 0x000000000000c3 }, { 0x39a2c89b51c13a9b, 0x4c9b1eb17822358e, 0x64f218277efb5cbc, 0x8d5652234f12a0e1, 0x2b72fe0c6cce1437, 0x204b209ad4bc7889, 0xfd3e94056410ba8a, 0xb4c2d974c5360e71, 0x000000000000ac }, { 0xe005ad3e94430ea5, 0xc36d9d4ae355c973, 0x4f6f81d6c008c8c7, 0x31d5de7c1b4e0b62, 0x9ba0c90e7717e4ab, 0x385a83cdaeacdb59, 0x73047666674b1083, 0xa4a141cd7ed1aa6c, 0x000000000000bb } }, { { 0xf2bbbec0d01c2954, 0xd129cfe11c5b97d4, 0x5ec1e0580d1c5c80, 0xe6ac3b86f7790fe, 0x9603afc3a36d26f5, 0xf033f618310452, 0x6644d43766767f35, 0x219d1d513e7c8ff8, 0x0000000000002c }, { 0x75f36dab725e72ce, 0x14f1771ac1a9dcb0, 0x1a7d132a1c2d77fd, 0x731529a1bb71b369, 0xbd9b2c291d20fff4, 0xb00b2f1989336531, 0xdd746947905d4d26, 0x3e0f87ba71e10267, 0x00000000000066 }, { 0x808609dbb4abef39, 0x7ad818a9d6b1d5c7, 0x54bee2fa9a62939b, 0x278f303b5784473e, 0x7372171083fef79, 0x854e0675755006b6, 0xbbedffa2c997111, 0x7b9cc46c25e173c5, 0x0000000000016f } }, { { 0x44b60cd2ef3a8539, 0xe4ff86b02af9cf28, 0x4170c47334eb5a7e, 0x8c0c535e457b563e, 0xaf335deb3eb3c60f, 0xe58401a0d77653ae, 0x3da1153a43d9d161, 0x70a1ea9966c7377a, 0x00000000000145 }, { 0x9a70a2058f53087a, 0x9755480b7b52f2fa, 0x732271c48951bcd3, 0xff740728f3c7c58a, 0xf002491400661922, 0xc8432795303bf8f3, 0x4f66cceb8aca1d3d, 0x7900a6abd3e2359b, 0x000000000000b6 }, { 0xca068fef07fc6cad, 0x67b4045368a421e7, 0xb97c32e45c994085, 0xafb98b6d12d94f88, 0xa95c4b745bf71a19, 0x62198055fd8619e4, 0x60be3903a6f6ac14, 0xd8faf5b554077d61, 0x0000000000003b } }, { { 0x234b46fede2e03eb, 0xd183ebbfba58df29, 0xa1c9845dbc677ebc, 0x17a4dea90e92886c, 0x115ccd0775d8ff15, 0xbcac0967458eb331, 0x375798b39e41b12b, 0xfe7abac0b0573bce, 0x00000000000160 }, { 0xa1f2db17c0969b91, 0x72af6c6f61e35f88, 0xc0a964432dca4d17, 0xcbdf418c2c44fe12, 0x9a23777981d8f027, 0x2b8fba762d851c87, 0xd49ed1bccaf8b6e6, 0xcf44ecebdd918558, 0x000000000000ba }, { 0x65433dd68de145f, 0x6761c98baf5b923, 0xa381be0cd23720ad, 0x3827ba49b452015f, 0x71d6aadb279837cf, 0x317058d6774433e8, 0x24bf232b7619d66a, 0xb7443dd0d0d7a14b, 0x00000000000157 } }, { { 0xfc32ca7b0ae9cd86, 0x35fc83f7f724c000, 0x89ae0c0fb0b18408, 0xa4828174a8236ce0, 0xe438337e19559537, 0xb9108bb4b9635fba, 0x69464d8911b153d5, 0x2e1fc4e70451f5b1, 0x00000000000159 }, { 0xc6e8ddfae16b123d, 0xdf589cbc934ea6b9, 0x83ba421f65f53bc9, 0x3fde41e82cbc6e81, 0xe01d63c5e3c736a9, 0x2d3e5a25fb794b08, 0x4b5c59a27c37f1ac, 0x8338dab7de1ac0ff, 0x00000000000093 }, { 0x55c5289def5ce752, 0xd20bff6c42a4af51, 0x3f84cdeb16c54a28, 0x13e136e04cab4c33, 0x8a088e8cc82b0e35, 0xb5743a7f47732522, 0xc752fb6c6e15c5a3, 0xce84f55ac5fe2ee1, 0x000000000000a8 } }, { { 0x16232bc52bd206ed, 0x942c89352abd5a5a, 0xedcbad33a9928e7d, 0xa39f8a3f45dc3014, 0xe05b0a62558ebffb, 0x20c8760152a552fe, 0xcf8ed13b4925a9d5, 0x7309650709a076df, 0x00000000000199 }, { 0x6a180f5b9456b45a, 0x8f761f7bd1b58755, 0xd4b821255280a784, 0x36851def45cbb26b, 0x90b22a1724887bf, 0xd596f8be5c32c963, 0xd8938ddcbb9427e6, 0xa4c7cb2218eaa19a, 0x000000000000e7 }, { 0x87cd5d4c985902f7, 0x435a04fdb39360b6, 0x10c11c8d284f4971, 0x3adc6fea260d3d4f, 0xfd4383145c41d6d7, 0x12b3f6bb58e60d1d, 0x3ec4d80a4fe22eeb, 0x43424fdd13b013ec, 0x00000000000113 } }, { { 0x53f99918c2ac23fa, 0xd80079cb6085482f, 0x73d4e946c4d5bd4f, 0x8a3abfe3aa017afa, 0xc31f019cd9158a4a, 0xcab70e6e5d684fd3, 0xcf8ec3c8cb660fc1, 0xa55ae18123b0a16c, 0x000000000000b0 }, { 0xb3f2db2907269477, 0x769e068ebbf47bf6, 0x53e12f0906f52937, 0x9b39face7c29e3c, 0x90314145b155a81e, 0x231174ec20961188, 0x97eebda8384a3b1d, 0x805d9057a02f953b, 0x00000000000001 }, { 0xc26d0c7d9c262e2, 0xfb4ea458090254e1, 0x39403397c4b29d6e, 0xd9649b0f48aaaa0a, 0xb84235841eb00607, 0xd48c51d7f5e00b82, 0xbb42a17bd17fc2cc, 0x9a70a1ed4cffdeac, 0x0000000000001c } }, { { 0x39d6fb9961a112bb, 0xd3f190ac7d7ea723, 0x9a87a7f3e64246cd, 0xa62f310c72131264, 0xaa8fa94e93da62bb, 0x13f27c650291ae15, 0x262e0ff67e4539d1, 0x79ad3c032b271baa, 0x00000000000150 }, { 0xe4050cbf3904a788, 0x8c657550e0a8e5f9, 0xae9fd8bb06dad102, 0xea33fcd08a5d8d1, 0x27b8e92f4d85baf1, 0x22ece6c6a04075f8, 0xbefad520ede3b747, 0xa0489d419b1616e0, 0x000000000000b3 }, { 0xdb143bfe0f766ff7, 0x1cbe8e13c3b246a3, 0xce7ba5e776f2dc3f, 0xb53eab2e1db98dc7, 0x53d4349433e8bdb5, 0x967913b296592933, 0xd2d3d56ef30a1dd4, 0x88fa70e920c9b944, 0x0000000000000c } }, { { 0x8765668dbf5fb92d, 0x10bbdb8edda60322, 0xdeb3c9b3893e1408, 0x14782be82aeb2228, 0xf71dd0b33b75802c, 0x26cb01839a5e084b, 0xdd4683db1fb876be, 0x3037da935ffde090, 0x00000000000050 }, { 0x37357b19570af932, 0x25bece88f2d4cd0, 0x9cae8fea74f1d9e8, 0x5aa5da225946f480, 0xe6dac99bc7518136, 0x59fa1240c7ad9fb5, 0xf6dd78c9efddaa6e, 0x187d137cd3ebbc5e, 0x00000000000128 }, { 0xd0552cebe42c2500, 0xa70e6317dbfeaac5, 0x8defd1548c20bd7f, 0xc3576ac3cd8b080e, 0xcbea9df46ce994ee, 0x426609e9f2e9f671, 0x248ae38a1c07d33a, 0xda10c8d024e67494, 0x0000000000007c } } }, { { { 0xaa3f2b37e63a812, 0x9805d792463b06b2, 0x47a94d30ee6640d7, 0x7120fbbd9aaf3ffe, 0x68d6c89d93e03555, 0x20a8ca8a69918b19, 0x6fd2ece46c513388, 0xf0e67d510887a1cd, 0x000000000001ed }, { 0x2b9ee08d793d4aa5, 0xd4d297f7d15f5388, 0x7861460a7ab98b02, 0x5dbe4e7b2154b039, 0xe404984bd9c41c89, 0xbefaa0cd96977815, 0xf67f5f1fea824702, 0xf6d344e7d7b51984, 0x00000000000029 }, { 0x653cee720114a47d, 0xcf0c3bd1c6c9b29c, 0xda6e62d6f9d556be, 0xbd2e8c8ba0fca469, 0x3f011feaf1a20596, 0xd591d3192a08cba8, 0x8837ceeea87a42b2, 0x3b8b36242fd80e5e, 0x00000000000064 } }, { { 0xe072279506021bee, 0xb09b355701aa1adf, 0x1b96427ce2140769, 0x12a16db6db7f4277, 0xe3c1519504a3fca1, 0x93b130bb540b9ecb, 0xe1eadd9b6e042098, 0x5c6dc1136e2e42fb, 0x0000000000000e }, { 0xbec2d7337eca2918, 0xa18f71f6e625da48, 0x4ada81d42654f805, 0xa29d2a08bc9e4427, 0x7ea365f63b148aa9, 0x53fe2a0abf1a7777, 0xe7b3096a928f2697, 0x888f1fc8c02f0704, 0x00000000000175 }, { 0x470f2e97f3da33d5, 0x57dea08a39b778c6, 0x74fdf9139f5cb93, 0x58d562db99ce9e22, 0xc541483d46621ae, 0xd13d4cc04fbc2cc0, 0x846e334b6db54ee, 0x7d3b6e9099abc209, 0x000000000000bc } }, { { 0xdb6ad0da3a4429f1, 0xb57ea8f0c8b11d, 0xd79e0838a5f9007d, 0xca2f36b3074bd84d, 0xe8af10b7f2abec73, 0x428e0dca0ce9a3ab, 0xbe2ac0a1f2806b3f, 0xea313ca3b53899c8, 0x0000000000006d }, { 0x327b398754abbce9, 0x62197af77352a244, 0x799daca35dabd899, 0x5302f5fd1c91d2c2, 0x978e1e81b09f0a68, 0x22f70bab58bba423, 0x8dbc6c57aef5e84f, 0xee19438dcc1210ae, 0x000000000001e8 }, { 0x348ba602c0f75f17, 0xd4b1321bec7c22a, 0x4916f40a9c9c1679, 0x66e9eaf96db0ccf6, 0xad3263953c5e23b7, 0xdc88adf141b1a4bc, 0x73b24c211011cb19, 0x86d68fb863281b0a, 0x00000000000068 } }, { { 0xfac51bdcba3ce7e2, 0x611ecc8a96a9a387, 0xe9e6de62c72bcc6e, 0x66f32faf4c1182eb, 0xbf8145f73beb9524, 0xf692ba81a93be303, 0x1a773022d5a64516, 0x6a026de8e107568a, 0x00000000000090 }, { 0x4c38b289ac09aab5, 0x8bd39329c394c7fa, 0x3bd010885bc73bee, 0x7ee21f7560aa8135, 0x4b9a9ec5e451eb54, 0x9dc9f4255bd8027d, 0xce35f015afa386f4, 0x4c02da02a507ee5e, 0x00000000000110 }, { 0xf89629dcab59477, 0xb49a5d79c115ab52, 0xc2b8f834b13f4604, 0x7c392e71fc4ae7da, 0xfee2bab87aec95bd, 0x362566e1d306d565, 0xe32950996d10c30b, 0x389027c1404e45e8, 0x000000000000e4 } }, { { 0x896538ebb1893a80, 0xb6d2d5be2c89be15, 0x2555a572a5d58eed, 0xd5809cf0889c215b, 0xe331b082834c9df0, 0x739b287d7a9c699f, 0x5edc1e2564bdb326, 0x9220eaf67979a228, 0x000000000001c4 }, { 0x15f451aca5b40ccb, 0x8816e22ed1d3d49c, 0xed5aa6a8e844f699, 0xab2ee89464c255ec, 0x2b3b4f7be29405e9, 0x2e69336bbb1f464a, 0xaec8f17b5606ce40, 0xf47fbe383efa8efc, 0x000000000001b9 }, { 0x641302353991caa6, 0xe78d2837d5945e28, 0xf5bccd1b70aa3580, 0xb9fb9040909dab4d, 0x9e33829e439e59a8, 0xd9542a207e3d0a93, 0x82806635629359d2, 0x9ea97880b21bd32f, 0x0000000000006b } }, { { 0x89cb334fc1589d06, 0x2468e32ba5c0cb3d, 0x4a69034752977070, 0xd4124fe17d46cea, 0xfd7704fa168a37d4, 0xc893dbf4a7323747, 0xac53723f6f314fff, 0x831e76b9dd94b001, 0x00000000000118 }, { 0x4042ad8bd90fa47b, 0xb8d668ee8cdc24a5, 0xc8c81e0a54cef7f3, 0xc4446dc26e8147be, 0x356f1fc731a68bdc, 0x664d1d9eeac9b6de, 0x93b6f0b34c298667, 0x2aba5bac59eec63b, 0x000000000001de }, { 0xcd1ed136661d0960, 0x920b7a548542e863, 0x4e0b12121733df88, 0xac9cb37a72a93b40, 0x7096f47b452dcadb, 0xac646ec4b8051353, 0x68e71e70cb683c8a, 0xb3b1680349dcb25e, 0x00000000000160 } }, { { 0xb85947e814b1d3b8, 0x9a433d7b1b415376, 0xc144dba74521dc63, 0xb9997b07da6ed1f4, 0x18bd8d8920c449e9, 0xe04a2ff36af8c658, 0xc300671ed1abd4b2, 0x97dcca8b7afee7c4, 0x000000000001b1 }, { 0xc858d78691fa7210, 0xae7bd1f30b7877be, 0x83d948de80023d4a, 0x9563ad6096b33d0c, 0x178d7e6cfe0594f5, 0xe0261144c6626b39, 0xf2aeba883981a235, 0x5eeff31a9cfaba1, 0x000000000001cb }, { 0xfbbbea0fcd0b3634, 0xc20f83b16fc229a5, 0xdc2a9b7aa5685965, 0xec442d68b52adde7, 0xcd2ca6d635891d8c, 0x27ecc9bb5330a2b8, 0x745665a845183376, 0xc43888d38a62495f, 0x000000000000dd } }, { { 0xaea4aa59c83f4667, 0xe9b1e6ec45deabe8, 0xa26ea552dd916cb0, 0x13158ea5b51c18fc, 0x91e7bfed99a18162, 0xdf69c99c25505a0, 0xa4ae744354fbdf24, 0x320ab266b6aa07a4, 0x000000000000a9 }, { 0xfbd0e9e06b73eb5f, 0x734aebe0c781da2a, 0x2b1fdab344ee3fd6, 0xdefe14398f26807b, 0xd073307fcff6e00a, 0x727420f736f449fc, 0x3e47c0cdabb8b7b, 0x26cd1caa19f498de, 0x0000000000002b }, { 0x258b2ab8bb4dda7a, 0x6f47e51c29c212fe, 0x9452a3e4b34170ac, 0xd5f28e5c3b36cd77, 0x154543800f2b1c63, 0x61caa9c89848cc0d, 0xa025a0b32c419aba, 0x958fa32f1b18cdb1, 0x00000000000015 } }, { { 0x9932645b9285cfbd, 0xe1707dfb51f213cb, 0x9c3fd22ecb5c29c, 0x1888764e6bb6b476, 0xe70cf1a33f067699, 0xec3f883d9b3b2c37, 0xb51eaf877230fad6, 0x91564ae6e62e9c0d, 0x000000000001ae }, { 0x45c0eb76c3f87a7c, 0xe0e40417d02c98e0, 0x4faa93ef5b5bf9c5, 0xf4b8e3cf4f38d5e0, 0x791ef9e623511382, 0xecc5751824e0102c, 0x9fdc275995f31fb0, 0x44d5a79b52ee3625, 0x00000000000075 }, { 0x8651cc50f3f3a9aa, 0xcdac1c43b3046468, 0xdc0d741d1949a1d3, 0x408912ff80b2300d, 0xc2d8fc0817fc6c6, 0x956015c44051af7c, 0xb459d8bae14ff977, 0x2acf55ad034e60d7, 0x000000000001f7 } }, { { 0x530dcae08949d215, 0xe4cbd9b95194049d, 0xf81b069ec613f287, 0x679515571668a2d9, 0xf1520a84b64c4455, 0x6473dd4024fb2838, 0xa3dddfb124945c90, 0x2dca1bc4379f7bb5, 0x000000000000a2 }, { 0x70c9ca54450a7412, 0x8b4ea5d28c6c0b08, 0x3fa0d8bdf4c02364, 0x78f0d5ee6a960c46, 0x282d5764e4663f4a, 0x8b108d38ecba7c59, 0x62dc73d961be0c7b, 0x7420fa331218a8d5, 0x000000000001b3 }, { 0x7857b1086b7fa1b3, 0x46ef16ce42e1ab8, 0x5ed706319e5bb5cd, 0xacb0846d1b97bd7c, 0x700037652274bdbd, 0x8c9abea31de35cd5, 0xefabfd6cf3f7a256, 0x782ebae0a0910033, 0x00000000000011 } }, { { 0xe6ba0d795c89d8d5, 0x956103d91c097715, 0x2cac4b16af39f65a, 0x21b2db702490a852, 0x11d4247d3754b223, 0x944098e8d5b09ce6, 0xdb9499a1457d18db, 0x6d8198b477141fc4, 0x00000000000177 }, { 0x59caee9c06d4b699, 0xf57a1a47358e2b27, 0x7575ef5684db2329, 0xb1cb65a80b9b422e, 0xe0b1ea1d9338b8bb, 0xc627ab70ffffddc7, 0x9ab1de58926637fc, 0xa5570b91a7b1e06, 0x00000000000090 }, { 0x6a787b57b22dada3, 0x40b7cdf222cbc52d, 0x5d3abbe9bc768ded, 0x50a53aa404e4ef7e, 0xd9d69efbf7f66a9b, 0x39c1acb6b6fd27f2, 0xac746bc4c9a65eb7, 0xec0449bf2e03d918, 0x000000000000c8 } }, { { 0xe79e8c9cb35c9d9d, 0x7ca6a10d02df393b, 0xd4e3d4d20b8c9203, 0x9ec99df3370dc391, 0x5bb71e239b8b5519, 0xa695cd57b6d8f429, 0xb5561fa580e53ad9, 0x93600bf4d7b3ea12, 0x000000000001ca }, { 0x9994471ffd0ba26c, 0xa26b26fa4f5e719e, 0xf4f61399fdc97ed9, 0x4d42dc8714db1e2d, 0x2802312720b50710, 0x800866dc3e763db5, 0x45c377aef01e5d86, 0x3c8100ad8ddf1b6, 0x0000000000005e }, { 0x1ce2ee5d46ae4b46, 0x7c6e230fd414ed23, 0x967d09c6255cb3f3, 0x902d6708a75f2336, 0xbce6c757405f202f, 0x32fa2b93f47e8b23, 0xb1844a8cb38c8d69, 0x534312f59a8fb462, 0x000000000000de } }, { { 0x7185e93cad8ecb2, 0xb3a313bea7f80160, 0xa2c1bb90f05e8da7, 0xbd6f152df4126497, 0xb5dda79140cef562, 0x2cbbacca6d23f061, 0xd32d28327665969a, 0xc15a0a4340a67d4a, 0x0000000000007e }, { 0x5e05974835c8ef38, 0x99ad384bc6ee843a, 0xe9ea3b2b0148edbf, 0xf36f4dc0fa9c576e, 0x82056bd235438e36, 0x572cffeae4b491bc, 0x94af20c54e0c08fa, 0x90ecb9ae3882e734, 0x0000000000007a }, { 0xc200d1c090719ce9, 0xc6cc11b7373a1a44, 0xebcc154d1ccc7c42, 0x18e5ecb990167abf, 0x79b1a1a639b471d0, 0x50f7d8b3b63bfc14, 0x29b7a61edd264b84, 0xa490eb1ee68988ff, 0x00000000000120 } }, { { 0x9a904c9a372ab336, 0x80328af0c3657cd3, 0x38460f4d25df8c90, 0xe7f8b246734ad153, 0x977f0cba6cc4984e, 0x4b5360b081f2b852, 0xd5db8da099ec9e5a, 0xbc027bcc6b3dba68, 0x000000000000d3 }, { 0x9e596250da08204e, 0xf3ad287c754a55, 0x2d21afadb894ebb5, 0x20686c24f288ae84, 0x780234f512f3af52, 0xb483ee66054b75a2, 0xa80d684448834cf3, 0x93b4756b5c0ad0c3, 0x000000000001a6 }, { 0x72f5a07bfae3bedd, 0x4bc58f23dc5f5aa, 0xf3b953b3c7daf448, 0x790681ce89bafbff, 0x13cc3d2d874cd673, 0x5c3b1e189fcfb9ae, 0x4fea7e3e7acfa5d8, 0x71ce6ecc634a0156, 0x00000000000079 } }, { { 0xc9e735a62ceaec56, 0xc33ee0de9da38795, 0xd2f3d1e99fef4e17, 0xf3a708398f3605a, 0xd4d0c255712a2d7a, 0xf1c544529178c319, 0x1a33c4502b0f55c1, 0x8e05f546a5d00b13, 0x000000000000c1 }, { 0xd260246caf5a646f, 0x42d0e90d8e54c68c, 0x7ac0d44309a1005c, 0x1f40196eaf6262e, 0xf84b0073d4f9bb1f, 0xbda500f10e4e3c26, 0x25f01b9373a4ced5, 0x48465d0179933979, 0x00000000000046 }, { 0xa700bc779b7c695d, 0xd9d9d899c85f4fb, 0xdd6521a1304777e5, 0x3c2b7647b90ad008, 0xeb7149166534020a, 0x99c1025fd01df953, 0x154873ba96d5d2f1, 0xc6c3379ebac026fe, 0x00000000000142 } } }, { { { 0x99c18a3d13ac8d68, 0x2f7bb2cabc62c92d, 0x4ed76414eb6be73c, 0x489b2ac343bc7d7b, 0xc9743edf4b473661, 0x4fa32fea056f66e7, 0x12f992382f9880a6, 0xdc47631970e17a10, 0x000000000001f2 }, { 0xc630b11138ced451, 0xdf5ebabd68bb5790, 0xb21b5be80470a61, 0xeb2ccda74e84461b, 0xf9fb6919505cb782, 0xbfbc74b7f18bc077, 0xb3f86e8f3a33679d, 0xeab85cf22dfc4c73, 0x000000000000e1 }, { 0x8ffe5c03cf330174, 0xddb97757f8052db1, 0x496f668124d606a2, 0xd28fd2125ab37bcf, 0x215092e19cdc02fe, 0xe6d2b33301f1524e, 0x2e318dd7b9b54327, 0xd110bf4b1847b29a, 0x0000000000019e } }, { { 0x83bf2e945b5c1a90, 0x8dd0de7569c38c86, 0xecf779ceb8412c6e, 0xaf54bcb50504f11f, 0xb09918b14d7573a8, 0xf64deffeb774e30f, 0xd4d515cf83b5b10e, 0x73dac49c0835f773, 0x00000000000029 }, { 0x3995c716c77d8c64, 0xe934233330674f87, 0x24c5bd4ba3401cc2, 0xaf40343e58ee8bb3, 0x47cb2376d26d7a3d, 0xc06067b3008c610a, 0x33fbd785bc21bceb, 0x9f3f93466b3e35e8, 0x00000000000075 }, { 0xca2f7c6371f4ac3c, 0x398dadd34262e03d, 0x2c27c5ad4836dd78, 0x1d67b7b2d17636f6, 0x937cde00866715d5, 0xfc80bff69f728619, 0x2d944b963fc089d9, 0xcff561ceca856b32, 0x0000000000011c } }, { { 0xe5fa87b6ff5f990b, 0x7cb4d57071f701ca, 0xb6254a021a87d278, 0xf3c4e36808b18131, 0xb1d17a961beb2641, 0x3809c43b8eb9a53f, 0xdb96009beb8191d0, 0xb4a1f4c86d9d54bc, 0x00000000000044 }, { 0xd706ffa054f59f87, 0x9024eff9500398e1, 0x8a833df239a7531e, 0xf8ba8047881d172c, 0x88a0086ba9762024, 0x8fd33f8760fde5b4, 0xd9b9779a1ce16881, 0x269da1a56234773e, 0x00000000000191 }, { 0xafec6062c88ca5d9, 0xdf04dbe342bbfd45, 0xc556c63ac53e2926, 0x60347fcbe734e058, 0x2c43e2b3d0a5f807, 0xe1038f94c25f69dd, 0x18a66b5fb6df2b6f, 0xb93b21ba45b83bde, 0x000000000000e4 } }, { { 0xdfdc7a0e7d06042b, 0x776eba779665b07, 0x7fd0b7f6050ab313, 0xb41b7f4cca23bfbd, 0x1467bdaa4ede0a4a, 0x841e8071df2f556, 0x6789475a70a017bf, 0xca22db09078434a1, 0x000000000001e8 }, { 0x6ea3134472406d92, 0x10ebcd19fe1b573f, 0xe980a8ffeaa70860, 0x86da511ff7d3aaa7, 0x1c46888df695631f, 0xb168f40dea8918a, 0xcca7348ac3b9aa12, 0x64ea0e96b45d429d, 0x00000000000133 }, { 0x3ca8c6a0b732a0bd, 0x94c33d4571993e4d, 0x364d7283d4fd69d2, 0x794f51278a6a0886, 0x8b3bcd044ac27b61, 0x8aa56cee01d0bd8, 0xda5171ef6a342051, 0x780fc2ab164648c7, 0x00000000000192 } }, { { 0xf8c681e298a87069, 0xace2b612a57e304f, 0x612ce4b36f37a9bf, 0x6ee909bff5f239e7, 0xfe3f340c79776ef6, 0x8d0325d8ff654634, 0x709ce04448b66767, 0x8852bd408e35604c, 0x000000000000de }, { 0xedccbfeeb2581118, 0xf0abca42397def7f, 0x77516824d45ab965, 0x62271e1f70147739, 0x103f3fff5f7c1285, 0x19443a9088813b56, 0xebce9b91e16a90a8, 0xd3cb7873015dc7c7, 0x00000000000090 }, { 0x18bd7d2822c68d24, 0xf212139f25ead27c, 0x3be8054488906e, 0xf298d5dd8d88ddba, 0x443f65930f7e92c, 0x78c93fbc0a2b5efa, 0xfb1f8b00954d30e7, 0x3ed610278f8e1d32, 0x0000000000014f } }, { { 0x5fad7151448b2d80, 0x7d2cd02f8f663846, 0x1ab9f00834a2a097, 0x1097ed704c8889f3, 0xa35fe9843c1510c8, 0x4f25af4b512fc1bb, 0xc8b55630417e773, 0xdfdff826afca20de, 0x00000000000190 }, { 0x7b38422d6162c1d6, 0x15d6bc6089915585, 0xc65ae8f1411809a3, 0x638f53a83ae9c1fe, 0x3382a54e27ae43a5, 0xc144224328e780b0, 0xd69ddafdbe351d14, 0x742a4a6b86c1591c, 0x000000000001ae }, { 0x838b42676c9abc51, 0x732eb4fd668fd55b, 0x5abf35e6bea76d88, 0xfae064990bc0b0e0, 0xb304fb91298a53e7, 0x1eccec0477831b16, 0xb214660d8f3e2364, 0x4a0c85234749dd06, 0x00000000000010 } }, { { 0xd4985d5aa33f7c0e, 0xe0eed19bd3040ae9, 0xd98cb09e2e1e4a55, 0x4fea4ba4ab5b5352, 0xae28686d0844ddd5, 0xf5fb615c625ba3de, 0xb23a523344dc0084, 0x855307a826886c2b, 0x000000000001ff }, { 0x907acfae7aeecd29, 0xd05e0f6b2ec36ebb, 0x65100897814589c, 0xdda28c32ff824ae, 0x9a98b4e4187a6e48, 0x7321aa3ab3656236, 0x77036f56e0e6ff06, 0x832f7b80bf076b67, 0x000000000000c6 }, { 0x680a12f6b1d51d97, 0x9e7dd03b138f6e1a, 0xd883f5e1579c86ae, 0x531b592bf50fa83d, 0x4289610630cc1172, 0x61b3d613dcf696b1, 0xd33f2fbeb919893, 0x875b6afebfb231c3, 0x0000000000015f } }, { { 0x1fc5b978b3324283, 0x82dd5290bed7aa0e, 0xa8c8430fe4d0471, 0xc6d4f8366355f5f4, 0xbd1209beb6038f88, 0x130679a1104aeae9, 0xdd4cd543c76a8924, 0x5c6c414f85599594, 0x000000000000ab }, { 0x414592d4038d57c6, 0xbab8c73d326c4102, 0x59119fcbe4198370, 0x606cdb954bdaebab, 0x8837e31e80c80ce6, 0x7e23ddc5523d2a77, 0xb254f367ade06269, 0xc7acc120458e25d0, 0x000000000001a8 }, { 0xe9db2942df275f70, 0xa0520aa2d7d212e4, 0xad024d651054dcb7, 0x98dfe96de6631af5, 0x5a99a51812d01472, 0x60e5bc029e1d6d4e, 0x9a526b2c847ef669, 0xff0f30d251e72b2d, 0x000000000001e9 } }, { { 0x8f54d326df59396a, 0x6b7d1b2f911cd537, 0x909ddf8742e06577, 0x6eb796143d694fb2, 0x3395811d510bfeff, 0xfee402715e9ca229, 0x64f78e5c890fb0f0, 0x453972ed7f5ddf4b, 0x000000000001fc }, { 0xa8e7ab8ba3bee2df, 0x218426b2e8d3ecf0, 0x2add3bfe1090c7c2, 0x97757306ba68e371, 0xf66fdd46706c1a6e, 0xa7b606a3d769d14, 0x3104ae6479185d5d, 0x76c31dd781ca00f6, 0x000000000000bb }, { 0x10e88d1504f71f2, 0xb8a14e0073236601, 0x10c46a4ac1c225ee, 0x1480879d755151, 0xf95dec772f9e0bd4, 0xdddf052104dd0e1b, 0x5858452ab0c9d333, 0x9bce961bda628f56, 0x00000000000118 } }, { { 0x44adc6fe19d47b80, 0x6309d4abf8cc44db, 0x3af99aa2f376f1bf, 0xae02f5f559a1d7e7, 0x54bb0ddadac98e8f, 0xf94325f3db111754, 0x5c71e68346ffd37, 0x40a48873c9454ac6, 0x00000000000019 }, { 0xad29e810ef3608e9, 0xa48bfbfcfcc06e3a, 0x931b2248cb9a19fd, 0x5210ad5e1466067a, 0x2d4a3d2c53cf2ab3, 0xe25485a11096fd93, 0xfebd279f7c32dd64, 0xc3f242998a17fe13, 0x00000000000038 }, { 0x61ca7b6b128393cc, 0xdee1f42b8d70bc90, 0x31d6fc1acaecd8eb, 0x6168f5104317638a, 0x4594200f7348aeb8, 0x92158593981c46f8, 0xd1a37fbf9ebcbe6a, 0x334a3fa29d1d55e5, 0x000000000000e0 } }, { { 0xb97a1e956808eae1, 0xa4f5026ba7006608, 0xee631e60bfb74b4e, 0x1afbad3e6c755a90, 0x622cb2a0bfb44c20, 0x74fa2b3afd52aa26, 0xc51d18f921900ba, 0x9066c694bf94635, 0x0000000000007b }, { 0xc29ecb8ea942e4e1, 0xfe69bc8e371e4520, 0xf765825ea05f77c7, 0xef30ea91659247d, 0xdfa2ac7e30f8a4db, 0x4131801f670fdaaf, 0x50ff919896504556, 0xd75f215f8511b025, 0x000000000001e2 }, { 0xa672c2fcf9111f59, 0xeb38898c540db227, 0x695008a7ba95c5ca, 0x66cca533e45cb0b0, 0xce6103944e0ef5dc, 0x83d1c3f9e9b137fe, 0xc10f48c9bdac5c17, 0x68d26ebd39037958, 0x0000000000001f } }, { { 0x96fcae3e8bb8346f, 0xa4063ddc9b4b16b6, 0x3567d433c8ed4414, 0xcfd670e0998e1aaf, 0x8a9039c84c592d66, 0xc4b840408799bc0a, 0xef441c05d9ddb0f0, 0x9dd154ae0ba67c13, 0x00000000000090 }, { 0x7638471826fc382c, 0x7900e91b99ccba04, 0x357dac939bddf122, 0xf41221d98be6a056, 0x9b465d55ad008e0f, 0x26fb8fd2d9e6a857, 0xf4d044b95220161c, 0x8478668fdc40d262, 0x000000000001dc }, { 0xd53c95031f4b5cf3, 0x6756612f27213ce4, 0xcf4d2f355dc95bbb, 0x7622e8dd7bd87cbd, 0xe001478cf118194e, 0x85c96401ee4f5239, 0xd19db9a33a0f84a8, 0x3faa8314ce5d8920, 0x00000000000094 } }, { { 0x39d2d537a33cf0bf, 0xe903d1bfc9c3c5e7, 0x8e0bbaa27461d274, 0x1bdc2bf1877fac61, 0xae63ef65a6bc7431, 0x8884accbade78ce3, 0xd63158f57dcc9e4b, 0xd217554ee5b25482, 0x00000000000054 }, { 0x977912d7578c4aa2, 0xf49007f64b0840f9, 0xfcf29e5cf5c781ec, 0x116c7411f2f88160, 0xa6f1db78d723db2, 0x4a65f7ce4d911e97, 0x75be60cbb3b21315, 0xf1b2d7f9e84fdafd, 0x000000000001c8 }, { 0x61d9a464c0f2a535, 0x7ba83e0f6e719fd1, 0xc96992906f01a5d0, 0x6f513c509ec2e0bc, 0xa7596f9c67fdd6a9, 0x1c8f7479bba163b3, 0x20ba9634191f8610, 0x5915e2d5c41d622a, 0x000000000001f2 } }, { { 0x6b312d332103bf51, 0x3c2da3084978fa0f, 0x30e447cd872fa447, 0xcd6e07fa72f815e9, 0x67742fb8d2a4fadc, 0x294493c7b486600, 0x406bdf007d4c906b, 0x1eced7bc8b2b4647, 0x00000000000055 }, { 0xeb8486479815000e, 0xe9c4b70713cc91c0, 0xa1e202dc95de53f, 0xffc37106c455ae17, 0x7bd2b8a68870220b, 0x96ea950e39f7495, 0x733301c918061124, 0x2b960e4be0bf4204, 0x0000000000001a }, { 0x5330defdd9e9275, 0xac21a6c9154798b1, 0xca528838d08e3243, 0xc875d2f3cf2dcf78, 0xf1f6537ba5e398bd, 0xd413cc82448714f5, 0x1769532b128d66cb, 0xd3fb36f56891d371, 0x00000000000003 } }, { { 0x4e033ad64c4f2d27, 0x7e3c4000231857be, 0x71c738fa2d0137b7, 0xff9d8ab2f41b71a3, 0xff3c0240ee5eb2f0, 0xf163e0c4a2f10db2, 0x4f6a91bb2637ada6, 0xf0bae296a8603883, 0x000000000000e1 }, { 0x315f3606bdb17383, 0xa315c0a2d18b4e94, 0xac65804e31f44d70, 0xd5052de83e023c8d, 0x27e3734fe9dc13a2, 0xbddbc48a09d6b3d5, 0x3ebf3a020db1ec2f, 0x847be1f7068e123d, 0x000000000001f8 }, { 0x4a718e63a148d9af, 0xa9d2ce3a79de0e50, 0x39f8b0850282bb40, 0x523ff54c8252802e, 0x407900655c2fe245, 0x12cda89c6dbfe087, 0xcfab4d3d194e8dc7, 0xf0bea0471b8e89d6, 0x000000000001bc } } }, { { { 0x582bd5d47772b753, 0xec1c89bc5a01c737, 0xda94147ded9054c4, 0x275ce183ba8b7177, 0x42f1174904d1b119, 0x871025baa445343d, 0xa631a642ad3cb174, 0xc0397970f17a411f, 0x000000000000c0 }, { 0xf80732c5eb44dff3, 0xc62d96f8a1bdd4ec, 0x265ae5c843d27a4a, 0xf4c1e9f21249a5ed, 0xc68df65b36fa64f0, 0xda8502e9e5ef50bc, 0x879f9497ac49cddd, 0xca08436ee505b8f7, 0x000000000000c6 }, { 0xef30e2849b90c903, 0x1754a13da414cc9e, 0x9b57f1ab0951c678, 0xee08be6e6cc8fbcc, 0x90270476d60060d8, 0x5b78382201cd5762, 0xcefc87ce5a135fb, 0x6d68b2c25b119c0c, 0x000000000000d2 } }, { { 0xf80899b856f2f36a, 0x83ed5de9ab2f6c13, 0xa5ab0b119017a888, 0xe56c044c468b15c5, 0x5556bbb4c7baee9c, 0xc0dc4246d6d11603, 0x970fd9116eca5f8e, 0x202444c3a6aaabdd, 0x000000000001c1 }, { 0xe54fe5f634bdd1d6, 0xe67f7be28a0d98c7, 0x3364e627418a5f07, 0x9df6931e7afc3dc8, 0x96721c6605c88081, 0xa22c0f005d8df97b, 0x59d1e8708b2af195, 0xb5193e9f90cee137, 0x000000000001b9 }, { 0x998d146c717b0df8, 0x571df83b20424897, 0x6910597e10011fb5, 0xc4d71c50b2534e50, 0xed9b1631e7558276, 0xba64ba3ddd04bf3b, 0x8afa4b682ef49e3f, 0x7d60a0470bb61d79, 0x000000000000d0 } }, { { 0xc541c4f376640672, 0x19ecbf483504e276, 0x6b6b57a4dae0abe9, 0x66a34fd9071eb1b3, 0xe9d318624a753959, 0x406041a9b69daead, 0x11ba426431cf199e, 0x34d66773399c766d, 0x00000000000056 }, { 0x58d5b9347a35c3d2, 0x9f4eac25bea937e1, 0xb21e75d74bfa5379, 0x70b58f54a8d2856b, 0xfed76c739b1fcec8, 0x3bff934ee321e354, 0x759a771bd5ae3dbe, 0x49fa30df1f3ff978, 0x00000000000012 }, { 0xf7e2cf32ceee3a82, 0x2de4ca051fa02139, 0x8eb638872d04c9bc, 0x55dc8a23c8a50616, 0x4bbe5f7df72c634f, 0x5c0b526c3bbd5b4, 0x3acd375c4967f92a, 0x974a06cdacf6f556, 0x000000000001ef } }, { { 0x2b14588da2ac9a4, 0xe09c5bdf19b2cecc, 0x7076e2651a719fc1, 0x2b075f593ed8950c, 0x7c5e13b27dc794b7, 0xe86f1974c562606f, 0xc67c7a777d06808e, 0x3acf4de9523da949, 0x00000000000038 }, { 0x27070b4c205d3ad7, 0x59b835fe7958e35d, 0xe324983cb25915e7, 0xe248b8f181b75e30, 0xbc158424f61bf5c4, 0xf9be0a25561de1c0, 0xb088ba5d562edd15, 0xa7f555698248ca6a, 0x00000000000183 }, { 0x2ee8b4572294a6a6, 0x5d08fbe16b63a07c, 0xc59b5e941c695001, 0x13a1bf92a7833884, 0x1abea12ea7cd8e13, 0x501a60cfd56eec60, 0xd1bb13d48da04511, 0x26ccc28088dfdda, 0x0000000000007f } }, { { 0xcb15028cd1166f9e, 0xb0196ea1733093fd, 0xfb0056e87c4fe55, 0xcb36aa98992836e1, 0xfddf0c5cede5799c, 0xf33d2477b1b2f585, 0x764dc4661365b0f2, 0x7e63cee1c3b63c0c, 0x0000000000010c }, { 0x27b60d897c1d276d, 0xc022b7d2270f7bbc, 0x6a9c5ba33688eb6c, 0xbe5296d16166ba7e, 0x2c9aed482aa6ba16, 0x592066abcf7b0b01, 0x5cae28517abb1892, 0xd2ef2f6939cb4b79, 0x000000000001cc }, { 0xf979ae6c01b6b82f, 0x11f099705e982e62, 0x2f5a7fa434586420, 0x791558b733d685e1, 0x49c50d571d2dd12b, 0x46c0af71e1d01613, 0xb5653966e27a1653, 0xc703613fe39bac7d, 0x00000000000150 } }, { { 0x479b019178a43235, 0xf1ed496a353b05e8, 0xfbad2ec737e80523, 0x79c03e3cb5a2075e, 0x505b749e35df129f, 0x6355fc6bedaa2cb, 0xd70a08ecd93d24f0, 0xdf7f69b8a27dd090, 0x00000000000173 }, { 0xa91717273901ac2f, 0x28b3c427eaee7623, 0x120d0e8cd2b6a353, 0xce1a10afdcdaaafe, 0xde15a011679dbc9b, 0xe3f2b7d6ce0fcd63, 0xd6d39b0b48c5d4c3, 0xc002f95bc51bb750, 0x000000000000cb }, { 0xa26b6d8268497f7, 0x20a61f10ac55a2be, 0xec6fcd786e683257, 0x49cbf42fe0846202, 0xee779ce11b3246ef, 0x28ad1d9c3a596335, 0x611c2d338712de6c, 0x6d6b4c14f6423d13, 0x000000000001d3 } }, { { 0xf0f5b5585bdb00bd, 0xbb3d44765b32f242, 0x91b4eaf1eaccff94, 0x5231aeaa675a7cfe, 0x88e6593b563c0411, 0x5414dd8827cb3e5e, 0x8c461f30a5f2cbc6, 0x3bcdfbb943e352a6, 0x000000000001b3 }, { 0x9246f0175878641f, 0xc437adcb42179a12, 0x61b3882c72920f6c, 0xc95c0e9440d8e015, 0x17feef3abd3ada78, 0x29d78ce58902e120, 0xaa11302dd53f51c, 0x3d6f4862aecb5f15, 0x000000000001c4 }, { 0xeff65d2a1be63f35, 0x8f3ed9bd91c9e963, 0x6e92ff7712e78163, 0xb684e2692c8acefc, 0xdfcc3fc9d4b7702a, 0xd540222980c5867f, 0xc6d43b0a8cfcd579, 0xfdbb8ed0679347ce, 0x000000000000ba } }, { { 0x8df87751af594ee2, 0x44d2ee2b91daeec5, 0x55b4b974e2f41fb1, 0xf047c439cb716e96, 0x61980938a4fe20bf, 0xaf82101f2e1edc02, 0x3b656a76da347b20, 0x54fe5f166eefadb, 0x00000000000009 }, { 0xa267edb57c47c1b9, 0x248edaca4e123c7, 0xab782b62d08027ea, 0x1ba73985fc3d17a4, 0xfc295918379aad63, 0x60ce5db1f402dcfe, 0x8285815ca7f5113f, 0x88de6d7dec6a11bf, 0x00000000000116 }, { 0x41626e6ac3a36226, 0xa2a70f1c979af589, 0x4bb93238978b17f3, 0x62f96a6f7aab13b9, 0x2977f87e1ab8f71f, 0xc2cc2771b370e7a4, 0x4fd4e66c8432f1e5, 0xae95c23d22a5975e, 0x00000000000076 } }, { { 0xd44f4d2e0799e6f5, 0xf65c29979128621e, 0x92ca55e9045a8c1, 0xfc35710bad300c0f, 0x40555dd798e496ae, 0xe17ff1231483f78c, 0x7a5e435fde82e1c2, 0x9455cc95be34c288, 0x00000000000199 }, { 0x941d7d4c68cdc921, 0x464d6d6e9d25170a, 0xc5cef95113019999, 0x226ac98d7adbd955, 0xc4baf82bd3a61a90, 0x5597957756c98afe, 0xa6a10c2d5796f96d, 0x1d4c21ba198573c, 0x000000000000e5 }, { 0x9e6d8d01c47b6207, 0x43134721901d7f2c, 0x6b5927b13421bf5b, 0xe1ae014f4b6ac164, 0x62a6ba38a48444e2, 0x4815e0a166b51c0a, 0x4680e939f866ec20, 0xd5574b458d8186b7, 0x00000000000065 } }, { { 0x8fc3b569cd9674e5, 0x1aaf55d0b3a71b92, 0x69c150772b4237b0, 0xfe964415f0e14a53, 0xe4af95436a628847, 0x978a36df6e723ffa, 0x8189c1bcdf471f0d, 0xe7026a9544fcaa6c, 0x0000000000010b }, { 0xb933e4c17792967, 0x766fca98a229276, 0xb67c9c15f28cbf11, 0x2c4caf467f1c6bc1, 0x422e9ab78039ad2b, 0xc1a36b5a6f622c8, 0xe48b54456e01a981, 0xbe23ce5c52bd68da, 0x0000000000010f }, { 0x668c89e45f52ab9, 0xe718c19cd7eb94aa, 0x5456539ea27d420, 0x4c038ac88b9a4b2d, 0x101cdb76def79bbd, 0x62fe55fb0b66bf91, 0xa4363ceb1dfc5b6f, 0xd377e64ee0c4d151, 0x000000000000d9 } }, { { 0x967655884d9ef548, 0x654e62c9c9da20c6, 0x12b769c8325e6cd1, 0xc4a832485a5803f6, 0x30a9c750bab333b5, 0x8825b0e37805d0ae, 0xbd23bc05461b5d77, 0x4f2b4cfd27994e15, 0x00000000000012 }, { 0xd796be15fe6545e2, 0xd85f219970b6a28d, 0x93b5d6cdeaac18d9, 0x84ee4f02d08506a2, 0x5458b7182fee3e39, 0xd3b59beb59857c2c, 0x12f232bd6a1276f1, 0xb6f3aa5c1a869ffc, 0x00000000000126 }, { 0xe6c8bb2939303ccd, 0x553646f57dc5de3, 0x14a737c08cddda72, 0xbae976a69195c845, 0x18b9f4bf833eed75, 0x2cb27a5d63865c57, 0x3e27e4369d8f85e, 0x791d48df1f0fdf3b, 0x0000000000019a } }, { { 0x1991e4fc243bb506, 0xc4f1b9b64ee9cbb9, 0x96a9eb3f16b6a7e, 0xdc351ecd02fec8f2, 0xf5f044fd06e4edb5, 0x908f4e4e04543e31, 0xb01fd2c89347a6c, 0x9276dce21388bc59, 0x000000000001c0 }, { 0xb3e3d12800a16def, 0xc619558180995946, 0x1d6a04a5336ad91e, 0x1813f7ae478aa684, 0x68d2aec0f7a175d0, 0x47a79cfe62aed60e, 0x4a7fa36187b14f7e, 0xf6d2f4a77b234f35, 0x0000000000017f }, { 0x12d6e0362b6e4d59, 0x9c8162de6f31ac4c, 0x30612e7c9c4ea477, 0x4aa07271ec4029fd, 0x9782787753ff5f1e, 0xdc946a45479e7386, 0x36478ec1709261c8, 0xe23df81029f8696d, 0x00000000000161 } }, { { 0x4da507e6bace3240, 0xa6440d6cab2f6b25, 0x9ca437b3cfc58430, 0xc06f2af966790775, 0x4bb3997aadce93bd, 0xfb10958f96e58f67, 0x3e18a5f96f141cdb, 0x230ce1ecc401b3f6, 0x0000000000004c }, { 0xe6cd9a252181dc80, 0xa32ee726e7945753, 0x9d3a36272fc08eb1, 0x11c1c83ca42a3a58, 0x31fd1f90e508ec98, 0x50b47a714796a37, 0x457ea04786f597cd, 0xe7d5f2ecebf40fd7, 0x0000000000003a }, { 0x51cba93971947d0a, 0xceb640dabc534919, 0x22b06909b7f2240b, 0x58940ff36713f2b0, 0x3bf7a33c9768cf94, 0x49bbf285af8e9db, 0x91dd1298e2bfbd07, 0xe5253a8c03e53759, 0x0000000000009a } }, { { 0x56158b44a80d64c3, 0xac1d626d6e721bd0, 0x867631e8ecf03d2f, 0x32ba84bd86b89121, 0xa0b27a311f41140b, 0xda33d002c487f17, 0x41aafc4c50d454b1, 0x64c5489e80601621, 0x00000000000053 }, { 0xa7766f47279d9015, 0xc7c53f654314890b, 0xb039148734a164a8, 0xb95afef6cd84bbd1, 0x311765f1dbc0c3a5, 0xb372dcd4529934d0, 0x15b2141df34f800, 0x9538c7f15e9ab6e8, 0x000000000000dc }, { 0x2ef777781ef374b2, 0x9e3801d881ea2c4a, 0xdb5b111011c69441, 0xd949692cd9c54c1d, 0x52d0611f9be36e1c, 0x70387565b69309df, 0x16ba03c76f24a264, 0x3da0ecb0c162e01d, 0x000000000001ea } }, { { 0x623c6bd1f4b7831a, 0x3c7716f97d0a8875, 0x9bfe555256a286c9, 0x5f7cb6f4bbb78c79, 0x947b088fff55f8d0, 0xe9cea9d402280e02, 0xdf33554203840dd9, 0x15795598097fb685, 0x0000000000010a }, { 0xad665a9a48d90ffe, 0x9ffa19f13c6e8615, 0xf2181680a88ae95d, 0x51d4e7275027c554, 0x143d7b87bf853216, 0x27c5ae116b8ec025, 0x772a7e5a33d359c8, 0xfc34cca4c97d977, 0x000000000001f1 }, { 0x99722a2ce5330924, 0x6b3d3187b54c9bd8, 0x219e8e1497b213ae, 0xf1267df2699b4820, 0x10b2eb92a9b527d4, 0x78fa89bccdae6316, 0xedc1bc7f9c04382f, 0x74483a4b3ea26231, 0x00000000000152 } } }, { { { 0x3fa99bf154db9b48, 0x6e756fa78628eaca, 0x922f929e3b1b7dbb, 0xdd813dd28cbdb7bb, 0x5b373eee479767b0, 0x4825a0018f00386e, 0x80d35dab3cc7f384, 0xa2f52c58198af4d7, 0x0000000000015e }, { 0xbe366522af727b67, 0xa56fb22cb875ff84, 0x47bf3bf051388c0b, 0xbab0c6dbb9b90ab, 0x7d235f14a890b3b1, 0x5428fccda6c19c3d, 0x6955fc5d9cfde806, 0x357bcf3802b1f2e0, 0x000000000001bc }, { 0x37c5ad134fc2bbd6, 0x35e26b370fd4691, 0x3cf37d74163a67c7, 0xaa2ac1f72ae0ddcc, 0xaab42463a723715d, 0x775cc34cf22b8b55, 0x7b87c6027c42ee55, 0x83c2681c445636a0, 0x0000000000004e } }, { { 0xdaa8c2f7934aae35, 0x8f0f8d911ea77644, 0x86860c0159660c4f, 0x5ffe80e1f760a485, 0x8787145bab72501d, 0xfca5300c26c7ef7b, 0x68ecab54f644ea82, 0x4dd6d6b863b76cf6, 0x00000000000196 }, { 0x9c9697c5b708b5e4, 0x30bea9afae26deb4, 0xfe9e391d65764519, 0xac9fcd8706e9ad9c, 0x2e02bc494ef6a029, 0xa0b490367a49bc78, 0x361039520eb2822b, 0x65d868e994ccbe13, 0x00000000000087 }, { 0x55fecf4787408c, 0xa6d539ddaebc3104, 0x8ea0dcde8cb4535f, 0x4a0708e9a9f5f78a, 0x727fdb0b979adc27, 0x88246acdc0bbb1c8, 0xe8f357729e458b92, 0x8cc06026e2e3561a, 0x000000000001a4 } }, { { 0xcb9be76e9e778bf1, 0xb1d68e5fff520793, 0xbe1178d79edc0ba6, 0x7402e74ce15f1fc0, 0xe3732b58523ad530, 0xa1897b5adc197bad, 0xc9b6ff21fdebeec6, 0x1e22ce392c5cb088, 0x00000000000048 }, { 0x1517a9d3df5627f1, 0x97cb885b9c7ffad9, 0x11e069909ed48e0b, 0x6d3ec727abc58421, 0xc81e2889d6cd18f0, 0x3879badfa181aa85, 0x3e8d44f4f9b6ebf1, 0xad5fc7e0cf4851e2, 0x000000000000c7 }, { 0x94b8e538798d3f9e, 0x42029e34e678de57, 0xb67176f243c453f3, 0x797270504c4c759c, 0x9ffc4222d5df7655, 0x4604b375181600ff, 0x8aaa3e4aa56fcdfa, 0x81d43b73de042dab, 0x0000000000003e } }, { { 0x6d0c00b58daa5deb, 0xfcc0718486fb1f25, 0x857cd8ff53f3f1cd, 0xaf36f38705c04c3f, 0x44c45379e76a4fda, 0x6709b93f30aac258, 0xe40ac476f65fa06c, 0x4238d71369dd7506, 0x00000000000009 }, { 0xdde42bfcd615d760, 0xedef9d293659091f, 0xa9e8b90cf4081102, 0x8598b990f32e758a, 0xa6d38007f6eb308f, 0x8c6c48d89d205d86, 0x3268aab8297f11bb, 0x63f946d66c1f642c, 0x000000000001b9 }, { 0x8ac82269d4648216, 0x5d88342f93b9b1f4, 0x66ada26993581921, 0xb338b20fce9ce4a6, 0x641776254196e4db, 0x1f6382093da5613a, 0x3c2fcb1a2190767f, 0x850b563cd4190474, 0x000000000000b9 } }, { { 0x221d58c7f5cf791, 0x1e9bb67f0fcf86ec, 0x809e315d3d69af7f, 0x35873af26d771236, 0x1baab7828453d1da, 0x34584bf3b86ce2c5, 0x875ed0694257cc67, 0x8748d2f716d3d3ac, 0x000000000000b2 }, { 0x608b9f6da47d4228, 0x7b811690a10ac835, 0xd94eca3ed46b00e1, 0x2b5647294f40037a, 0x8df16d1a4b405252, 0x21c7e777f1d705c2, 0x2ee376a2205ec67a, 0xd0e15ec741192325, 0x0000000000008d }, { 0xb97ed6046f7c77bf, 0xdd48229148c23916, 0x80ea82d46d6b57f1, 0x29100050eb053964, 0x4a5e70d389e70462, 0x4ce7756d2e3796e5, 0xc6dff747ef3ebeaa, 0xaae50e3976a50f86, 0x0000000000005a } }, { { 0x848b1676f2e374d2, 0x2fa60940de432acb, 0x908f2802e4dd1700, 0x978d8af7974d3354, 0x6d87a044cb14330a, 0x5643855e5543f553, 0x319dfb87996025e0, 0xaa4f1fa90d0a7600, 0x000000000000f8 }, { 0x72cc733feadc6e31, 0x3b56deacabae03ad, 0xca5126fd7ebe711f, 0x82f1ce4c67df1ed8, 0x4e859272d0d6d2a0, 0x4fbde57dd6093d1b, 0x2190871b802bcdb6, 0x5e87677350cd36f6, 0x00000000000124 }, { 0xea7b7076d486cfc2, 0xac97005e18d09fd3, 0x277dec4c39fc2476, 0x751e6e4d0cc5f6a5, 0x6be26d0fbf8e4438, 0xa858c981dd7ae8b6, 0xa43588f2e3f775e, 0xee81240fbc87d30e, 0x00000000000019 } }, { { 0x4ed9cd4850a9354, 0x68b7661881f17bfa, 0x6eb06a57925e9608, 0x3ee099ca157bddb4, 0x4958ebe60fd30cc9, 0xf40ae70c27dc09e1, 0xdd528d44489316e0, 0x20634e1a8303991c, 0x000000000001e4 }, { 0x25fba46498f970e1, 0xec9866507fc8c31f, 0x77040f2477bcdd52, 0xb9b0790fe1b10523, 0x3ea879dcc69d2f52, 0x5f84d93164ef519a, 0xfe6b7fafe600d1d3, 0x7b19c8bc650dff0, 0x000000000001af }, { 0x4aba5b788af73d10, 0xcb4c38e0da97cef3, 0x626cf42a7b0037dd, 0xbc342f45dc854804, 0xe4218f5f124471b4, 0x2b3874bd5c4ff9b2, 0xf59815e5c20f805a, 0x26565fc46462c507, 0x00000000000049 } }, { { 0x2a4887e2586e9ce3, 0x231c8525b7895e89, 0x916ec1424fd82637, 0xedc8c0dbdd9ae6d7, 0xeadc9472adcd4eed, 0x3a6e7274dd86de2c, 0x7cd8b6af4d507d26, 0x4dc9620740dc55d3, 0x000000000000da }, { 0x2503520b0f137ff3, 0xd7123636c8dc7e2c, 0x2e344ebf72cd4bd1, 0xf515970b2a8375ed, 0x708b73e5f4d4e6cb, 0x4cafae57da70f9b4, 0xb4e2166e4c60954b, 0x3a2d78c946b247ca, 0x000000000000e9 }, { 0x6ffc341248edd0c3, 0x1d6d1de9d8ae336b, 0x3172c3ed4c066ea7, 0xcfa2ba46e9fd0873, 0x52d7942e887047db, 0xe9cc670bff830abc, 0xba19cf739c85f4e, 0x470a2422dea9b6f, 0x00000000000185 } }, { { 0x3fa9b1e125c4eab, 0x6ab5b0cb096da64e, 0xa24ffa0a1ab8349c, 0x43f4dcaf3fc50f24, 0x2c0689a686f224f6, 0x33a60ce32d8c94c9, 0x258d209e8200cbdd, 0x4a34c31a72520a13, 0x0000000000000f }, { 0x7144c622831291c, 0xd5880b55262fcbdc, 0x16aba28b0322c485, 0x6e80b85287e7b2bf, 0xa010288c786b4636, 0xc18fbaa1982f205a, 0x2b5ea625ef310aa4, 0xdd9ca4ac9f87d572, 0x00000000000102 }, { 0xf87602a850def412, 0xb03f5625562110c8, 0x7417abbd2d7203b3, 0xbfcbda352e90ebc8, 0xdf9602f5ac5af351, 0x51a175131f925bc0, 0x5dfa0229e8bae83e, 0x5febff4f2f64d21d, 0x00000000000157 } }, { { 0x246788dde9ac8807, 0x36427c685883af0, 0x25c99a3f116543ca, 0x2dce8b58fb58b4fb, 0x1cd71d2a206a6a30, 0xe4d4e06cb6dc2fd1, 0x927e2229e17e9937, 0xf080f33b276526ef, 0x00000000000018 }, { 0x8ba1f3b87ad42d19, 0x6696a1f4fcc0c634, 0x8ea2455c2d04669e, 0x722b0f915a686720, 0xc732c82f5112f5d9, 0x5645260ff7d50fda, 0xa34123ad2806945a, 0x49041d13f6f3f032, 0x00000000000096 }, { 0x740ccb309ef66265, 0x8b61c7a37292138d, 0x870a0712493eb122, 0x326ea64b655b7f0a, 0x70e01890e3c02cd2, 0x9c9d0ccb86ece9e8, 0x8653ae9397fb015d, 0xc7ff362072c60c7e, 0x00000000000130 } }, { { 0x228ed081ed8a2e17, 0xa3bccce35efe2e76, 0x1e9ff25548fcd5bb, 0xba4ad84d387d755f, 0xcecf1decda497639, 0x4bb0d90a6f11e59e, 0xe2315f787e7ae2c7, 0x95f4bd178d51ec7e, 0x00000000000170 }, { 0xfbc7683d97da1b8, 0x8750c2b2c58ddafd, 0x3960c80d82a53523, 0x59f93d1198a65b26, 0xd5ee84eaf4b319f9, 0x70353bc3446c774, 0x2cd427ee181b50e8, 0xac9a55c4e0f3d2dc, 0x00000000000143 }, { 0x7833f78a5b3a3b07, 0xc8a4eaa815fec598, 0x9dce165c8ef37bd0, 0x90cbe591c061bc40, 0x8ef7477c86f750b8, 0xa5fee8dc04a4f6f5, 0x328cb27525d6d18d, 0x6d8a80df1e34bc6e, 0x000000000001d2 } }, { { 0xe4c42f0333040318, 0x7709defcc373ea5f, 0xf8e606effaaa9a72, 0xe2aaf6738324e940, 0xb4240a02d3b4fe29, 0xcb488bb498bb56f4, 0xc72b12549aeeb8a2, 0x3cab532e365e1aca, 0x000000000001a0 }, { 0xba272a9ab7c84f85, 0xa882a87c5501d196, 0x16a3e40133a3b32d, 0x301dc36038d22b94, 0x54373d9e28c276fc, 0x13a4b7c574f0f6ff, 0xe8d0301265da8276, 0x8901d45824047c30, 0x00000000000133 }, { 0xdf688a394f307296, 0x9d1f0315a9b46b41, 0xa1c5e72e56079114, 0x7bf2749cd19ad69c, 0x49cc964b0dbbd208, 0x9225128e6d572940, 0x892bd5b44739980, 0xaca9cf6daa39502d, 0x0000000000006e } }, { { 0x7d689cb71d1abe39, 0x3574919c34ca0be2, 0x8727926f12c60288, 0xce86758905b74158, 0xb281b64eaa1e3e79, 0xf0d2247df9ac33f9, 0x8d2f15a76f86ce5e, 0xcd00fe6e65814747, 0x00000000000065 }, { 0x11ff35ef29ec319, 0x63ceaf48d7cef964, 0x2b7f813f3ff4c01c, 0xe8e5bfb505a29530, 0xf8e3dbba326dafbf, 0xe33e220c8d3c00af, 0x2e2670c0924ad40d, 0x733a10e90a4a0626, 0x0000000000007b }, { 0x362bc974d7572f53, 0xa51fb487caaf378c, 0x936152a3109215a3, 0x4b9180198d99f6ed, 0x1a4a5378eb6d15b9, 0xb03d7034f9441f46, 0xfd17b22a95ddcbbe, 0x80f1f5892347e108, 0x000000000000fa } }, { { 0x43132806c9ad3e5c, 0xe3bf2a051dd1d141, 0x1824c71b82b3a852, 0x4684cc55f57d96b6, 0x6d4b69bd00b14ea0, 0x42dea0eea35a4d1d, 0x84d6b5056268d666, 0x1975dcc73143d39c, 0x00000000000140 }, { 0xb6e5b1eff7882e2, 0x54a219abaf8f3d6c, 0xdecbf93fc3f7d8c9, 0xf3d5969b5f960758, 0xa865cc995c449d06, 0x64bb9c90d4e940a1, 0x14835d719848fe, 0x4442bbd726820e94, 0x000000000000e5 }, { 0x50f704dea0f439f5, 0x660e429c0e42d595, 0x99ce160b6d5eb899, 0xc3060ec36fe2dbe3, 0x8708933da5be91ee, 0xd9e7e482c9bdba26, 0x83955b8a09daa6f6, 0xb0f21b2c4fb12b56, 0x0000000000014e } }, { { 0xb4992970b201beb8, 0x494db45dbabc14d6, 0x7fe7cb14e9fdab5d, 0x3923c2ef397f3399, 0xfed249de3e8c5e33, 0x6e3aaa099906c1db, 0x9374e20f1f89ce82, 0x686affe9dda583a4, 0x0000000000002f }, { 0xfc2083d4e7ac62d7, 0x3e43da45f293d0e6, 0xbf50cf31c465748, 0xa693f8c867894a9c, 0x3bb0c48959a31523, 0xc2fcf39053d6e693, 0xefd37452e21cab98, 0x4b2a801388e5c15d, 0x00000000000029 }, { 0xa52c194cb46ad141, 0xc3740257a76b8b6, 0xf879844d0605e9e9, 0xa7c4c3e6054c1edc, 0x798438426ecc1e4, 0x3ab4e47011247db1, 0x9a70208ae833fa9a, 0x8723d79224cbf127, 0x0000000000001e } } }, { { { 0xc9b24561a6efb05e, 0x62c40c27a19345b4, 0x6cccbc18314955cf, 0xe6b327caeda25c63, 0xf494d03a73b8aabd, 0x590513e754d72b61, 0xede9545db98902d5, 0x8fe961577c23ea29, 0x0000000000000c }, { 0x20658f6ddb7a70f1, 0x1d936b18aa424907, 0xb639a7278745dfac, 0xbf946a0b8145c86e, 0x5aca53fc05a9b5b3, 0xb6547114230f8eb4, 0x844b01f157a3275b, 0x41f4b2a72b6c2b83, 0x00000000000100 }, { 0x8c8d555058ff3595, 0xf5aa26cc8967757c, 0xb01e625016365ddc, 0x7885c94cd23538c7, 0xf6f218f20202cddf, 0x2c03f23088b6f708, 0x6c341f10e3bf5d30, 0x45a0e55c11b41496, 0x000000000001e1 } }, { { 0xfdf139e8a53e8de7, 0xd037a52e402a766e, 0xe0c6f2e8bfdd95fa, 0xd6ccbc6193e64f0b, 0x6bc68983fcb75ddc, 0xe377eaeb0878522a, 0x4335687fd467a2c2, 0xa89f53f7be74034, 0x000000000001cc }, { 0x693a0602146936d7, 0x55b107cb8d924f30, 0xbeb2c16f78fe2735, 0x63a3433af177d6d9, 0x5c6a114c816d29a7, 0xb99d605b262c5586, 0x7cc627207891a563, 0xe1e27ea01479d1f1, 0x000000000001cf }, { 0xf6852f9e6e04593f, 0x4cd1f8d048c86e6f, 0xa68417c50f6dd9c, 0x31e50916a4d4df76, 0x84a95fb419f301fd, 0x1e54cffeecf289ca, 0x3745638cecf073f9, 0xc06af540b194821a, 0x000000000001b6 } }, { { 0xf4ce783efdb79cd9, 0x19305626a78051fc, 0x20814cb7766c7f53, 0x98f047f0445df77e, 0xdd7ad320b4ee2866, 0x5fa9f0144ce4161a, 0x627fe285c55e57af, 0x67d06c5e5a73c6a3, 0x000000000000ac }, { 0x11beea79e8e3fe65, 0xb1dc59170b127955, 0x10c6c6673444a544, 0x88b971d36c44465b, 0x5a2547c7fe449169, 0xa0c7802aed6673f9, 0xae1198c80d692426, 0x9614a373a39d8104, 0x0000000000002f }, { 0x22c6af23b9ea0344, 0x33a52ac3d0b36b66, 0xb2a5175d046e6a9e, 0x2678cb53aaf716bd, 0xe1f087f9e52cbce8, 0x1e805ab886f7ee38, 0x12dcc9acb23c1315, 0x387131f1e056724, 0x0000000000005b } }, { { 0x95b99483a40c9159, 0x415c188e28226772, 0xf34188e029bc5f1c, 0xa35418efd63dd50a, 0x5f5aaad5b43eecef, 0xb52e3aceded228fc, 0x7886618e53a2431, 0x37eebedc7b430e3e, 0x000000000000d6 }, { 0x6fb842fba326968b, 0xdbd4d164eba16523, 0xedb3d95978947c0, 0x89d6106415113e15, 0xe015b04f1f27e112, 0xcdb41bd2776b5dbe, 0x6da8e7db55884b9d, 0x8264db1b253c6027, 0x00000000000113 }, { 0x5518c2f013957562, 0x24679c8b9a250409, 0x45eec30c7039c3d5, 0x7143cbd733d9c1da, 0x885f7a0788f8d3d7, 0x12e7923059b644cf, 0xd1149fb9cec01b46, 0xbc22b7703464dd2e, 0x00000000000098 } }, { { 0xdfc67bb3ba189b64, 0x830daad225180da3, 0x3cffe9fb5a0b3268, 0x9dfb6fd1bc79d47f, 0x9d6315d21d725742, 0x4667fb75c231ca05, 0x78e8ca92dbffc696, 0x5cd2e1b2331c6f32, 0x000000000001ca }, { 0xc717d11a51aa485f, 0x9ed4f644f254360a, 0x299b42f810a577c8, 0x7d9c6a2ee2e7e055, 0x50f6b608cb397f59, 0x260f1daa63172e07, 0x5e06ee534e0c6c8e, 0xc354e703991851f5, 0x000000000001e0 }, { 0xf702e48058b6457a, 0x65baefcf198f8b23, 0x4e4ccd5df2f843bd, 0x4bf396fde1f2435, 0xdd75fdabba3a7c8e, 0xdf8439d96501d54e, 0x1d58864b4075e02b, 0x81957e55b874b61a, 0x00000000000026 } }, { { 0x16cfad6bf4b94698, 0x877a2eff414f14c3, 0x201fc4e9e0958682, 0x687c7fac3f290dca, 0x2ffed8fc678d3f22, 0x6630f2783150998f, 0x7a1a457947ba72c7, 0x767242bf3d190808, 0x000000000000dd }, { 0x34808d7bf08bbe61, 0x784a03fadaf4ec90, 0xca9976233aed4e56, 0x884c313a4e9ab94e, 0x154d709dbd7fa190, 0x16d847f1fd0e3188, 0x7ce43cf105a42856, 0x7b63b666cc58e87f, 0x00000000000175 }, { 0x8095a65739a9bd16, 0xff350a5f2197952, 0x9e5fee5a43152795, 0xc9013396cfbb0bf5, 0x290cbc82b632d645, 0x1fd1f3d6283cdcd1, 0xc940f7985cefd1a7, 0xbdb554c625b316cc, 0x0000000000014d } }, { { 0x9e9914b896105d6e, 0x50c2bb12bbec1148, 0xba5b825a6aae3602, 0x8f3db6bb9461d547, 0xb7019ebfc436c198, 0xdbc93fa7c05ea181, 0xf5340dc978e092f, 0xfea6a855954398fa, 0x00000000000186 }, { 0xede3dbfc0049c009, 0x5d1f283a5daf0917, 0x20af6ab3c8ab1a02, 0xe59a184d30646702, 0xd958b33f781db506, 0xbd65a87ff1104f4e, 0xdc23d6b30ccc9f77, 0x3136c553df20666c, 0x0000000000012e }, { 0xf636dbd2dfcbf1cf, 0x28f491275bab2908, 0x4962bdcfb194793b, 0xbfb2d197e0488bfa, 0xa1d705d96c7821f1, 0x163acdb576a63548, 0x40663099ccb3da78, 0x55bfca0d72c14ee5, 0x00000000000124 } }, { { 0xab607775905dc53c, 0x6f22c17214ba981f, 0xb42d80a0f1ddac62, 0xc6ce5d3c89f94d4f, 0x8939ad7dde1a241a, 0xe7c3334ba38fe90e, 0xe408e12cda6087a, 0xc029a35e2940fe01, 0x000000000001ae }, { 0x10b4a25d7d55aae6, 0x1741e6cdaf975fe5, 0xbb1b4bd0987ebf75, 0x607001680262de2d, 0xb37e5c5f7dea198d, 0x62488de37c529a53, 0x1fed9e542da40e35, 0xbaf42e69b600781f, 0x000000000001cd }, { 0x2e9842f88498347f, 0x5ad3650d1d6cdc99, 0xc89374a1fff1c303, 0x4dd3cfae6cbc9991, 0x42402b849302bc74, 0x87ebffb9e4d5651a, 0x118836d47f94b451, 0x63c83b4d7f55bf37, 0x00000000000106 } }, { { 0xbdc3cdb5cf83c6cf, 0xefc52151b6daceb8, 0x286ee606e178ba67, 0x10f8f78f35423bf, 0xa8b88a5b1cfeef5a, 0x36de925b8ed1df7, 0xce29b57dd6bca315, 0x67c2f55f6ec2de7d, 0x000000000000ad }, { 0x1bb8db05b4a6d137, 0x28f5efebf7f83d9b, 0xacd8c504d8168118, 0x1db48a300eeb8770, 0x81c89751be7d6559, 0xfeec647208077ca3, 0x4ffa8d66c7172749, 0xc14ba2756ba161e3, 0x0000000000005a }, { 0x34ce872b18ad4d03, 0x773819332a1c408c, 0xf0f53e592b82f765, 0xeb952fabba9b80e4, 0x2666c53e2e4194b3, 0x40cb69a144403622, 0xac962b66b2f21635, 0x8771719253da5756, 0x00000000000104 } }, { { 0x90da78f590a49277, 0xb97474f97c7ff529, 0xc104ca0179eb0969, 0xc08b3cfaf544246a, 0xfcb7b8bde2a8a1e9, 0x8eaa8a2daa266947, 0x831f66b7a891a96b, 0x94c762150090e1e8, 0x0000000000006a }, { 0x2be13e7bf24011ed, 0x522677ab9295f487, 0x1c16e1ae9adf3aa, 0xafa57c9b21eaee15, 0xb79b2ee8763717d9, 0xf2ff76a954a91203, 0x217d72366e6c1fa7, 0x65f158d79cf87803, 0x000000000000aa }, { 0xb25c02a5f4d72b71, 0xa9bc3fc478e0a5d1, 0x87f471f8beaa3e13, 0x7b29c75945c7bf8a, 0xae6306b1e3befbca, 0x9a80ead14aafb50e, 0x649f2bb178c8e033, 0xe3aee25443dfa11b, 0x000000000001df } }, { { 0x69681ffe87433afa, 0x96d20c5c4026fcf3, 0x1f65c9c5b4cdf6ac, 0x59505ce221873e2e, 0xc776277c87604ec, 0xfd9b7aec944e4e58, 0xa5414c0a79efeda1, 0xf3ceaf24c5260491, 0x000000000000b4 }, { 0xb8a5b73411e1b29f, 0xafd350728f3ba979, 0x1dc99f633167c53b, 0xbbb49dc683c8ee7, 0xccab517e6dfc8194, 0xa97412bf31ee8e5, 0x2dcd88fcfb197bee, 0xe6cd56bff191b178, 0x000000000001a4 }, { 0xca57beadbdabea79, 0x4869b32179ba8ea6, 0x9e3f04b0a40819e, 0xe608debed602ae, 0xccd984f83116384e, 0x1a76f929fbe495d6, 0x5824d4974d260a8b, 0x15d09c89a1a4bdef, 0x00000000000129 } }, { { 0x373fb4de4869e73f, 0x26a95b4fb97fb1e2, 0xfaf0bffd611a17a, 0x66830abf59cc5b4c, 0x37e4b94856a3cd29, 0x8a14ba11a0169e03, 0x9ae8dfd97c2ae1e9, 0xc3ac3e1c1f365d86, 0x00000000000142 }, { 0xe95654a16c56f4dd, 0x2127b19f7aeca051, 0xa370d5d779d2a8f, 0x68cf0859adcb710, 0x8e567e45cd1c1635, 0x8db592cf8fe9aa5e, 0xc8d1600572f94eb5, 0xf41d20e672b3787d, 0x000000000000c2 }, { 0xa53ed737ff685994, 0x5ff594ece45ce77c, 0x73bebcf1d9ab950d, 0xed109ece67aca81f, 0x6e28586cd5735bec, 0x7d1ce95b9a7625d8, 0xc1dadf600efd498, 0x54d03089212077d3, 0x00000000000049 } }, { { 0xeb2e2ee00544def0, 0x1a348fa09d8c8273, 0xd55fb5b4958315ae, 0xcd31ddc711598153, 0x1259130a30f339c1, 0x114f1426d4301110, 0xe9ab033bc8d295c, 0x727d313a533938b, 0x00000000000001 }, { 0xdfc8b5edb92aaff9, 0xf06ee67792cf9bf3, 0x3d24dd4b1e9bbb80, 0xee4fb8c6d24b5e57, 0xc5a5d8630c0acdfc, 0x911e0fb34359ebba, 0x2b403ef23c9182a4, 0xb6c1f69af97f660, 0x000000000001ee }, { 0x31c02353c997474e, 0x4793637184e6e17, 0xbc517c553c4144fb, 0x2b31f5ae602588ab, 0xf252e139c0dab00b, 0x74fc1d2b1a54e60a, 0x22955a27f0c1b90e, 0x838b584835475fd6, 0x00000000000064 } }, { { 0x778d77cfe51751ce, 0xdef1a926c6809964, 0x696bb7372cef9e10, 0x23b650fb97adb6a1, 0xfc1bc83c7714ad92, 0x81768d7c089d5951, 0x4392292bbbb880d9, 0xda97d4f153dee004, 0x000000000000f8 }, { 0xb5f24e7c1f742836, 0x2c979c5428b9aa0f, 0x1f812f1cb598cc16, 0xc3309d527eb6e7fe, 0x849bfca124bd762, 0x3e4cda82b17fd4b6, 0x47ccf19191c2f6eb, 0x64124936c5262a2d, 0x0000000000015d }, { 0x55e217beb4cdfd35, 0x2782e7166d2cbb9a, 0xaa1c0d5673fc92b8, 0xc3ffbf35bf66da38, 0xbee41dd0088aa989, 0x7f62fa010c14c23b, 0xc2e973233be8b1a8, 0xddc7e5c857dce96, 0x00000000000108 } }, { { 0x659254b5a99f8821, 0x7d06ed517a88763b, 0x1dc6e2f1e2a4d27b, 0x8e350323503ad4d7, 0xd87cd175052c2b41, 0xfe29e3b2545924c6, 0xfddb94e32ee664a0, 0x1d0f43104a83363e, 0x00000000000026 }, { 0x193d34d9d2e5154f, 0x160b1ba0987ff353, 0xe311164b718d31ff, 0x41fbff6914aea6c8, 0x8558a57f8ffefd5e, 0x4189e1def80afd06, 0x7603d5b9f563484c, 0xb98b3560c099328a, 0x0000000000017f }, { 0x2cefe64896814d05, 0x7f6c0b219246e4f8, 0x24f4dcda21c92781, 0xa67b0bf552e845fe, 0xc466ca3389471dab, 0xf253f356a014640d, 0x5577f9d1dea2fde2, 0x5e000a70a2108d28, 0x00000000000133 } } }, { { { 0xaf7c29bcf6875191, 0x775ebdadfef6acfe, 0xc20dae7fa5a67b91, 0x50440376661adbdd, 0x61a52ae01afcb592, 0x7741812d43885028, 0x8213b8b1d9de3779, 0xd1aabf5427306049, 0x0000000000018f }, { 0x94abfb23dd53ffb3, 0x166b81fa6582f840, 0x295524b61c830056, 0xe68226bc357f8eb5, 0x6d0b594d1dd92454, 0x9f417f27382a812f, 0x5c02ec50bca554af, 0x7ef4052889a50523, 0x0000000000002b }, { 0x7d4d64823184e0e3, 0x38ccec936449eb9c, 0x795b29fad6073955, 0x6e7e0c6385b6ae96, 0xde0c0b92eeffb56a, 0xf41ea11dab75944b, 0xc153353dc91d1237, 0xa5d1890953a57df5, 0x000000000000e1 } }, { { 0x4b1cf68ee46ef921, 0xb86ffc2d959723fa, 0xd6ff905d69837cea, 0x721c987941920fcc, 0xbd013703c45d2a95, 0x765441cb7a242d42, 0xe2bcc6ed6b1d3a73, 0x9ec841001e53d599, 0x000000000000a9 }, { 0xb7d50b3fb6b016e0, 0x52138bbfe78bb566, 0xa760a8e015adabaa, 0x42ca3447d77231e8, 0x6b348ce11b81e177, 0x5c8e34345fe0e4cf, 0x9663b9fb8ff04f72, 0x9c259bad48fd5183, 0x0000000000013a }, { 0x9add267ddfc01de6, 0xa4a80ba9e47bd09e, 0xcd31b76ac3c1eff9, 0x82ae2703e0ecc35a, 0xa5cb7f2272127063, 0x5b1ebea336bbfd42, 0x4ddf8373d4deb3e3, 0x84a935b700ba70c2, 0x0000000000000c } }, { { 0xe3920b7f63c8c9e7, 0x58d97aa42db39728, 0xd1df8281052d2c84, 0x69a9eb58f0f8efa5, 0x4b98c37223842931, 0xfa58cd36ef2abe57, 0x4693c4aba71707d0, 0xbecffa3307babf22, 0x00000000000111 }, { 0xb267431d675dc633, 0xee6f6b0cc4b48045, 0x25c0705006d3931c, 0x858e7e6c2ba21983, 0x2850a9f547d6b873, 0xcaa1efa086f40e2b, 0xa620303d8461889d, 0x77f90e9d17dba9a3, 0x0000000000011d }, { 0x97187d18ad257521, 0xe1c0f8982bfc1382, 0x287d0d47045fb82f, 0x4ba0b845eb3da20d, 0x289e6842fe5b917e, 0xc97d80df758b832a, 0xca42a3dba427cc65, 0xd1b055e919ec446, 0x000000000000b8 } }, { { 0x447866a153165090, 0xcbd24965d83edffe, 0x65192cfe4e52494d, 0x51cf575ce68c7f44, 0xb48e06424f65f4ee, 0x42be0e3c17b2436d, 0x6429478128c6e059, 0x329bd9f80cb6e8a, 0x000000000000ae }, { 0xbc48ea368998e081, 0xfa60e53f366b6c98, 0xb6f7216e1ab3c052, 0x799498072bce5332, 0x79fd2489b8a8e083, 0xd5cb243c8c10ccfa, 0x8f1260f9c3494406, 0xf3a1d890bb4c5f09, 0x00000000000002 }, { 0xe1a0f3b859368743, 0x65c7e9a634db8f0, 0x85e2954eb80f3889, 0xd671e2c8c7fad8f8, 0x7387813710dd6497, 0x9862b78e4125c462, 0x1a2aa18ae76facb4, 0x61ec1645faabc3a7, 0x000000000000a1 } }, { { 0x9f890b0e3f69c2e9, 0xa9b4455ba051c1f6, 0x7cc14c78ba3f531f, 0xcd36a122f3efce1a, 0xcf1ae9075bcf1d85, 0x71385e7ab10986ba, 0xe07af79e0926fdc4, 0xbb932679cf23103c, 0x000000000001bc }, { 0xcf2504cfde16ecda, 0xd1ad9ab9dcd39a7e, 0xe99180504ecec482, 0x3335f070544eb414, 0x10c2634fa269ef6e, 0x86ebe6aca2a56cbe, 0xb1eb454ff796ea27, 0xc07e4760b3264219, 0x000000000000dc }, { 0xd6a639960b791f33, 0x4fa6d15fabe3641a, 0x830c9c488c527fca, 0xa8e75a9c95e07dce, 0xbbba6c12a59a4f22, 0x422c65b839a25359, 0xba39b62daec2cdef, 0x58f3248f21b801d1, 0x000000000001c0 } }, { { 0xd3c96aba91d8b406, 0x6d37e3fb91e63f89, 0x9f5e9b10eeb7bb85, 0x755ba5971e177f60, 0x6e7d017cbbcc6c0c, 0x992da89ba72b4231, 0xb24c8a7602ac11b, 0x34cd31f089d0718c, 0x000000000000c0 }, { 0xf2aec7e3bf4fb569, 0x7d5525862b55d0a7, 0x4c77e43849e3f466, 0xc7742f815a3141f5, 0x8823efba80e4968c, 0x47d3b345fc11ef4d, 0x5ddb5d3577ab22b9, 0x41eea104c5867fe6, 0x0000000000016e }, { 0xae313af435b741b2, 0xc333161efe3f0eba, 0xd0ac763bba0d56d5, 0x3f31c58999e61c6, 0xf905067963580833, 0x766eed252d6645a8, 0x977a56a4f156def5, 0x62794f376338db00, 0x0000000000016a } }, { { 0x1b38d218b2b8666d, 0xbd60b955b3bea7f0, 0x953752911501a5b7, 0x8d12bfac9efa1eef, 0xd0983f4abcf60590, 0x93f1b01a198b974f, 0x84a5c94c0fbb50f7, 0x886552b6df787254, 0x000000000000c9 }, { 0x5472c05c6adba5e7, 0x10d4ecd7eee28f5d, 0x26201c7b66be8b37, 0xa75a334c5641315c, 0x55f17fbcff718ba9, 0xdcaff71140ba1ded, 0x75c9444385153dff, 0x12153b591a4d1798, 0x000000000000b4 }, { 0x1319d55770ab9877, 0xad1f4fa137053623, 0xaf30c55f941efe5e, 0xa2e5a30bfb31e6e2, 0x91e175d8d58b19f5, 0x696fb90f4bf9972d, 0xec57f07a8af9830c, 0x46b5fc818c19a69d, 0x0000000000019c } }, { { 0x806e0f683083261c, 0x15fa03651bd6cc7e, 0xbb9813f050727b1f, 0xe81a9012997546bd, 0x68f6c6560c2743bd, 0x12d55a325ae7c300, 0x3dececca9836d309, 0x7bba4f388cf0b0bb, 0x0000000000004b }, { 0x6eba5199eecfe298, 0x435ce0f65e141d3d, 0x6c7e21e152ab40b9, 0xb6f24ebe6a05cd63, 0x95fb21c543d9bf75, 0x7cdaa815f160dafe, 0x7139dd6126cf6962, 0x32af35c4ebc3edf8, 0x00000000000123 }, { 0xbea9c25a2f90f4ca, 0xa8c1ee94d4c9d64c, 0xde02f3b619be1c2b, 0x6112e01f7b36bb8c, 0x5ad3d68b9c668219, 0xdf17bb25971ae308, 0xbfc9aa7af7319efe, 0x9eab96ac9a7a3f5b, 0x00000000000139 } }, { { 0xb4af7f305929f927, 0xbe4592e62766eb36, 0xc0ae251534c3584d, 0x2afebfc6c98da992, 0x1e93cb01039f9327, 0xac2bb6a78ea836a8, 0x982be5838ab427a5, 0x670304012242369c, 0x0000000000005c }, { 0x18c47d7331233bda, 0x99e28ed99a21f77, 0xbe04e2f7c49d80c9, 0xf6d2c73a8c2e3336, 0xa21d578a41c1189b, 0xf9c6d1bc508bf130, 0xbacf295d9fb0e16d, 0x4776ba9acbcf2ec8, 0x000000000001ca }, { 0x9e561bff82ada549, 0xa718e89344b0ae84, 0x8c5749d0525f00d8, 0xced9a503c5b3d1c, 0x8c217fdf4c243689, 0xf7bb1f6c2ebe7633, 0x24a21521c1e82c2b, 0x8e0a9ded95484889, 0x00000000000060 } }, { { 0x2c75fde76fffe2e5, 0xcbf2f558dc31e236, 0xbc7c6e2b9787f7b4, 0xde1d532071d303d9, 0x409fe9371af510e6, 0x8a97e8e481080a6e, 0x48f4440c39f01d80, 0x59863c7b2484ddbd, 0x00000000000061 }, { 0xe70de7325ff3013a, 0x3fc5ed31342e2213, 0xc54e223135004358, 0x4bdf39dd26de2098, 0x947e19888e21b5f8, 0x925d45f1816d90bb, 0x245097998bc1b474, 0xfe3b9255b5dfb0e3, 0x00000000000014 }, { 0xd92d5114c07f26bc, 0x5937fee8fc6f511a, 0xec17b6c65d767f01, 0xfd9ea237c4b29bec, 0x5aa1fe4e40f46bbd, 0x4eef69b95d431c49, 0x9f4eab7a6b061ff4, 0x559559885c968afc, 0x0000000000002b } }, { { 0x1676b5f0e1d25845, 0xf5bb564ba2a8f84a, 0x65d734c0f27e08c7, 0xbae4ee1a60284384, 0x9fdd7f043cb1eac2, 0xbb1a69f6712556d3, 0xf26c2a02b0e0da68, 0xbc1d156b50f79423, 0x000000000001b0 }, { 0x65aacc1fb7ff3274, 0xc69470f7b9192aaa, 0x2a1471b12ba15136, 0x9e8e335f166c4d02, 0x14ea4380197dca10, 0x9855860d3ed1efeb, 0xe16a018d35e11dee, 0xcda842ddfa6cfe2b, 0x00000000000116 }, { 0x120a9ce8b222be14, 0x4d5362c9f7741310, 0xee5c7eac99afb94f, 0xa17e436c85744d60, 0xd2ed2019182b3eca, 0x1bcc62f3cdd7086, 0x4756429fac2953a5, 0xc227db1e4eef010d, 0x000000000000a5 } }, { { 0x5e0a6d7a54188985, 0x956a8e58355f7419, 0xe471d8a64d5e7b55, 0xa90ac340f899d947, 0xbb887206eb36e526, 0xde0341f74fabd381, 0xed1da1f7261d0e61, 0x4b04b58b84081389, 0x00000000000122 }, { 0xa5a9e212c3550f25, 0x49f26afd3fb07f0b, 0x221bbc1ee2f90c25, 0xbca5bc2f25883161, 0x987b7e7b1fee5e52, 0x5529c2622f9588f7, 0x4ce1ed186854f998, 0x716c6428ee47ca2c, 0x000000000000b5 }, { 0x23e21754bbea2526, 0xd663a4a1b96955e8, 0xd013a15461b7caf2, 0xb26390dfbaccd8f5, 0xdf01c7a269cdcebe, 0x1a6736ecb2e99af, 0xb4192d8ca7b3576, 0x9cf54138ef98bbf2, 0x000000000001a2 } }, { { 0x352e06f26107cf88, 0x56fee6d58bf2db7, 0x8865b1fdc13bf49, 0x63ef9c31ae4f3e65, 0x98f1d3d590d4894a, 0x30ffc3cc8a3d8f64, 0x753a9a6aecbb7bb5, 0x8a8532e27525278f, 0x000000000000e3 }, { 0xad05f30d281133d5, 0x9df3119e502a95e5, 0xcf689af3c5d01daf, 0x9b148a1704ad15e4, 0x1195187535dd9abf, 0xed1ba36a4a875d0e, 0xb1adda1add84dd4f, 0x9a016f898db31d60, 0x0000000000013c }, { 0xbad17d4e9d2264f8, 0x1c40a76a6b1b43d1, 0xb4e34d243cc1488e, 0xc0641087b2ab3ee5, 0x2b4b63609d0f5684, 0x81e6f23ce47e4851, 0x60fbc5a6509f4a63, 0x16126f6e3605b99, 0x0000000000002c } }, { { 0x7efd24ab88173cda, 0x2048acb8574e83df, 0x9c1dbd4f052e7d93, 0xa796f35ce3232e5, 0x98165f8237f1e9e1, 0xec0f405860f34d56, 0xd34d606d56d77128, 0xafe62ceb9a57c113, 0x000000000001c4 }, { 0x4a979090b1c1ebbf, 0xf52660210e36eb44, 0x5c9f912719cc98bf, 0x3f6b43717b84d376, 0x99637f4fb9444b3f, 0x1159ee6dc4911b92, 0xb728874b7d73459b, 0x9c11e0a54326f268, 0x00000000000197 }, { 0x3c876c0c309de116, 0x5e3b39cb2dfa13c3, 0xf4d70aa671f781c7, 0x9fab3bfcf0ad66df, 0x905cef252bce14d9, 0x7f381edeef934e94, 0x26696cabedcefbe, 0x63989d0992fd742d, 0x0000000000004d } }, { { 0xdced6d0d4bf09720, 0x6faa406ac3b17f23, 0x463821bdfc0a705, 0xb5654d31653aacb5, 0x9ddd0daab9a18176, 0x9f11fa673e6f8d43, 0x463c4af10f6ad2af, 0x365dca199f561ea5, 0x00000000000135 }, { 0xb1716505c43c8978, 0x698cfe9e77e6340, 0x9d88d4ccdf05bbbd, 0x63fd7725be36be6, 0xbb1fcd1a1f6901b7, 0xcfad23c7d0e83a8f, 0xe3ee7217e35cac5e, 0xac6123d380920288, 0x0000000000012a }, { 0x8c0daa996cb8e4f1, 0x547e49776842887b, 0xb929a70e7ee13edd, 0x291fba5de6131a73, 0x26a309e987047c31, 0xb82a6afe6d4166d8, 0x6c7a6bcd2c7860bb, 0xc5bb71a965ed603e, 0x0000000000010b } } }, { { { 0x8dec25969622be98, 0xe36223fe4a18f283, 0x842643402764f92f, 0xd69af04591548b3d, 0x79f187fc90509381, 0xf52ee21ec22956b4, 0x3a6b841580098626, 0xd3023a26caedf8bd, 0x000000000000be }, { 0xb1f709949449ec54, 0x11bb57be2541c98, 0x7f26906f83ebce15, 0x34cafa645bd9248a, 0x54d8efd85af9cedd, 0x2b98a48226eca65e, 0xed22fd2fd3bb564f, 0xd2a2db42a5a8a185, 0x0000000000012d }, { 0x28776ad6677e646b, 0xf07983bbc46a79af, 0xd21ac7dadc3b11c0, 0xf010ac50ba7af580, 0x9017cc53d809d4a4, 0x9de794598364f61, 0x5d91cd948b0b44fc, 0x78650efa772c40f3, 0x0000000000014e } }, { { 0x2b982aca1c400dc3, 0xf3569e92fbc5120d, 0xc9b444ee1e59d9b9, 0x43bdf6524846aeed, 0x17ad9afb081c1271, 0x5b22822ae48a27e7, 0xc14ff7bceeabf1d8, 0x2c5b914d151773ae, 0x00000000000037 }, { 0x777047595c67276a, 0x5fcd0d2c476ec45, 0x68801b179fd7fb6c, 0xbf67a679ba8e22d0, 0x4bd801ab3d6fbf18, 0xf302aafa94b0dbde, 0xd7d894a51ad3340b, 0xb66a040970490e81, 0x00000000000198 }, { 0x76447ee6f7ae33f2, 0xf5193c1805a1e506, 0xa85c00d04df466d5, 0x3d7d76c8c1e89cd6, 0x83960409507f0a22, 0x78ed2251dd86ea53, 0x6235ccf7e9db7138, 0x55d11b9f3d1001e4, 0x00000000000179 } }, { { 0xe513b7139f111369, 0x1a5dbce8a585d2d4, 0xedf840fab1ac5251, 0xac1c9e93aad0b66e, 0xb98258df4c151a91, 0xec1c4eb87ebc42af, 0x4a50757e0b668720, 0x1f598efdaaa4ac8e, 0x000000000000af }, { 0x29560664da435bb4, 0x9249d4ac24a20f14, 0xd221dc8b1804c6df, 0x225bfdbfda678418, 0xcca733ebd49f8d5c, 0xfccc80b6eb783c9b, 0xff7089ff44e57024, 0xae18f3bb0d791abd, 0x000000000000f9 }, { 0x24f85da4e84e4b1c, 0xa15a87bb843f0bf5, 0x648d64f0d1992039, 0x6d2381cd0ab64a5d, 0xea5b76676fe6f829, 0x4cf7a8faef204792, 0x38e453432e033005, 0x661905e1ff6df800, 0x000000000000b0 } }, { { 0xc858b7521742e95f, 0x6e18a98a00bf828d, 0xfedf29b3d0176529, 0x935e1abd54a4a4e8, 0x6c26700ef2c5271, 0xcafcf9ed382a3682, 0xe0c042315a9ecaba, 0xdd05348e0d0529cd, 0x000000000001c5 }, { 0x3b81d410a7c8e379, 0x8afca8d678c25aa, 0xe8ca767259337b7f, 0x2862834e6c64afa3, 0xd887648260175668, 0x5928420c370d446b, 0x98be35a09486cf05, 0xb73ff0a95d9d2f85, 0x000000000000e5 }, { 0xf00d6dd94dbe665e, 0x25cfc4dcd0b5b2ce, 0xfcc1e08bafb6ca17, 0xc09044e631771f52, 0x569e7c11391eac19, 0x682384e75ea10edc, 0x1ee97759cc4de4f1, 0x55536bedba90b4d, 0x00000000000153 } }, { { 0xc96581aed0adca0f, 0x5da911b47b9aca53, 0x2bf39c4a20a913c8, 0xa4825660d1f71f7d, 0x1832525d734d8ba2, 0xf4d64f17a164bab8, 0x2c31b539f31b1b70, 0x46e2b4a364137c10, 0x00000000000101 }, { 0x985d76282704efc0, 0xa331d982c940093c, 0x5d4a51b43488ad15, 0xd85febedf24752ff, 0x6f4f73da20bfe84a, 0x9a526b0eacfd411d, 0xb8d9185030a19ddb, 0x4494bd7552b79fee, 0x000000000000fa }, { 0xe41728786e6abe6d, 0xb3fba5ae488c9db8, 0x6b2d4e8f6949f009, 0xbbe9bc67ff2fbce, 0x436919e3c305d4d5, 0xa8aedca654f919f3, 0x6a2b005cab4a7a21, 0x2215602893507c06, 0x000000000000f2 } }, { { 0x9de90bfed7e22087, 0xecdf6403e0939177, 0x1cf30f592052314a, 0xd9ba6cde72c3ec39, 0xebf8b464f45bdeb1, 0x6aa55da7b28a9b82, 0x7b5351ad6c6d6be2, 0xf1fa8a71dfecffd0, 0x000000000001a8 }, { 0x6121bbdff6220ad1, 0x76a841ccee6a36c5, 0x58ddc5da94b33b3f, 0xf2064317a8d5285b, 0x5b8b6d093109552f, 0xdf82ec8f1261d50d, 0x3f8e62dfeb8e3389, 0xf362749615037450, 0x000000000000db }, { 0xe69cce634b33c5df, 0x962f85b832371dec, 0xf9b4e58179e1db51, 0xd9a3015414f784ac, 0x161f52d1e7fe30fa, 0xf50f62dbc729c55f, 0xc6e32b27814fcbdb, 0x6e4e95c6c03488c4, 0x000000000001cb } }, { { 0x951507c6e38c2da5, 0x49b5becaf8e2c661, 0x832c03bf54c76344, 0x98ba8832a394c095, 0x2601863e55e95b00, 0x3f97bae09e786652, 0x4ac42be1e8448d5d, 0x46763f43c2f352d4, 0x00000000000131 }, { 0x7da2c75ec6abfe73, 0xc9907ceed395e56e, 0x9c83d2ad6e0433c6, 0x4ab1d95d4b135856, 0x48973b6665a5b3fc, 0xd274662b96c00d63, 0x58ddd61ceefae0d9, 0xfe19f58a34fd24ac, 0x0000000000000b }, { 0x6964bdc409d32ca6, 0xe310028e49714573, 0x8b4adbeae2860184, 0xc8e46040ab971743, 0xcc7d95e1ad4f547e, 0x8a10d2c60fdefa37, 0x6f039bbecace8076, 0x49f891f265e3a371, 0x0000000000006b } }, { { 0x33e5e9f78b32a2ec, 0x98e19902680cbc36, 0x7637005c9bc0f54a, 0x23e63dbcb52a310f, 0xe6fcef3067806e68, 0x75faa228dc357fd9, 0x6d92f78083d13c9b, 0x69b6b7c4df67b9b9, 0x0000000000003a }, { 0x8fa370165211bafe, 0x8e65bffc4000f49c, 0x2a5763e003a0a43d, 0x1fed9b3237f92d1, 0xa2e137e7192ed964, 0x11eeaa8f9480eff9, 0xab4f2cc920c4ba32, 0x5a68e33bb7250a57, 0x00000000000037 }, { 0x1e19f1490ea3cdde, 0x6664c7c962cf6183, 0x6308bf38ab0a7392, 0x51a32fbd6f7a4c1e, 0x6d249a35f640acaa, 0xd022099bb65d54ea, 0xa55c9c14a2de466f, 0x1cceb9b934e191bc, 0x00000000000009 } }, { { 0x51f2efde7db02c6c, 0xd2ea7f2b34e7fdbf, 0xbf8b917cda0633a3, 0xa771cbb54fab6ffd, 0x4ebe952a57831e84, 0x2a393863168d799, 0x7a9248de80c359ad, 0x93993b236bf4d35f, 0x00000000000095 }, { 0x8f6fb79c839bfa8f, 0x96e115ac6f813cca, 0xf718c45d3dba6c3e, 0xd0b89b17eecdc809, 0xd3472fd6e075a8e2, 0x2236902475196a7, 0x3961beb2d3164bbf, 0x30c49b90b10fdd40, 0x000000000000e3 }, { 0x83d23071158b2146, 0x8b0135558c188710, 0xba93ec68675a2827, 0x42ef0a47bda55955, 0xc7f72345df0637ae, 0x627d9f455cf5eba2, 0x76effc3bbb503898, 0x42a23bf9058dd228, 0x000000000000f6 } }, { { 0xfd1247b097adc7cb, 0x82f1357b296ea648, 0x8f2ffaf0f65e1a37, 0x1b32a0030cb00225, 0x85eaa50a8f87e84e, 0xa935a8ae2736e2cc, 0x9586f306ad1cdc16, 0x1708bc82d9e7b620, 0x00000000000099 }, { 0x2c62923df972f450, 0x1cf9c0eb042d6e4a, 0x4b271c97425c4310, 0x6f6584b57b2e1dd1, 0xba61385d741cc6bb, 0x52c3c3947711f42f, 0xe093486ff0dfc095, 0xe6254003c6e74f0b, 0x0000000000005f }, { 0x9913a9d7fa5cccd6, 0x1ae4549ae78f2676, 0x6c30812ef979753b, 0xd0f56fbb865116e2, 0x5700a7c4994fa052, 0x8ed272d47856e782, 0xf1110619168c80, 0xd0027f5506301a2f, 0x0000000000004a } }, { { 0x28d6ea9e58e8a1a7, 0x51f23e543416f5d0, 0xb6969d6c73af911a, 0x2289363fed95b51e, 0x1c15287285ddcadd, 0x1af6a6f444f6480f, 0xae9aec06b1ef379d, 0x6a4b681d4adc1c39, 0x00000000000125 }, { 0x321044a9d0628f32, 0x75042b158d3d13b2, 0x26f87012447e0d4e, 0xb7b2e4cbe771f1a3, 0xfec61dbe4063198a, 0xcaac175e98861786, 0x1b7a0d2bac71fa99, 0x80f108fad2bff56a, 0x00000000000134 }, { 0x5c47fba8969a16b7, 0x795dd9894d9063ca, 0x218459f438bcc5c5, 0xad656eae84656961, 0x2e5adbfeae010398, 0x2ac482ca5dd0dee3, 0xeb246d8651501ad7, 0x118d6773839d084c, 0x0000000000001e } }, { { 0x14832416c282ff80, 0x1d6e485db91031e8, 0xb1b03350191a460a, 0xff6999adb2644832, 0x4c7a26c2ae1c0621, 0xa08381b19662f4a8, 0x6630709c00f06301, 0x1477ebf812e612c5, 0x00000000000107 }, { 0xcb3f30fb2cf877aa, 0xdb9e112fd56de845, 0x74d3c3f99940ed85, 0x8ffa31d1a3763c90, 0xdc39618692171cc5, 0x9a3cd092c75466d5, 0xab7e107d4b5e1f3a, 0x7943a63f3eb89f89, 0x0000000000006b }, { 0x6661a72d2158d384, 0xa07ea549ec65d949, 0x7afdeea6b1f116c4, 0x362bf677556752de, 0x928d7715689fc2fc, 0xdac5621d22b1eff8, 0xcde0224953ffec90, 0x2a70e6db6e54b6d0, 0x000000000001d7 } }, { { 0x9a4d0d0e93eee9a2, 0xdf2177daac514031, 0x4436f9b807a3633, 0xd4ac8a90ecf5e48c, 0xce92365bd595dbb, 0x3e133265ff4802c3, 0xc280ba0c69e6d7f, 0x566a17c58f6948da, 0x000000000001f1 }, { 0x3e5c8ff176c308a4, 0xa441c16b30d9ded, 0x953f8103a8b99dee, 0x4aba9f41f912acc5, 0x234bd65d1a93867b, 0x6ad2dc0a9b4ee199, 0x4b40c13ae01a15a5, 0x322c32675a30f8ab, 0x00000000000077 }, { 0x12bf7e7b20233ac5, 0x6fbafa8b384523ca, 0xbe6a9574a854c4, 0x3b505b3a41906bf6, 0xb0dad0e162f8b719, 0x57670326a859b5d9, 0x720a65e234a13489, 0xe82dffe552e81215, 0x00000000000046 } }, { { 0x5fb58dbd2f0fa842, 0x65dcdf523c789aa4, 0x103747cab07f6e3a, 0x952eb1dcc7f3cf47, 0x39e441357ff9612d, 0xcae077aecaf17df, 0xb4f6fec97f5d95bb, 0xef820d80d81ce8f3, 0x000000000000c4 }, { 0xde468cb0b3b32770, 0x1d3e15ce1cf38806, 0x52e67c47b3ca0b7c, 0x828df532b0131c2f, 0x731b979c4dc4f8b5, 0x329873d4db6efcf, 0x1ef6bc4365a271ce, 0x601c3150026748d4, 0x000000000001ff }, { 0xa87026740173600b, 0xd62df8c0ae95d98a, 0xa25629671c65bdac, 0xefcd116b91073e0d, 0x2942517695bf811, 0x13e71d3eef533d0a, 0x11b67ba2ac53999f, 0xa8e983fd9ded57c4, 0x00000000000026 } }, { { 0x4390cd83c1d2404a, 0x51d1c5c34c03ddaa, 0x82a5934b9ce00674, 0x60fa211f4bbdaaa3, 0xc468ff2cf7bbf33e, 0x76a570103aa55aba, 0xd8e6f876000336ad, 0xf9430f8c30881de7, 0x00000000000009 }, { 0x91d155863ff305aa, 0xabd45c05ec5d1dde, 0x9acde4f53b088b14, 0x14125ebba641fc25, 0x9f325681b0b187b4, 0x268da979303d9982, 0x4e2cd0efc7dd10f6, 0x5ccb19ee592f6120, 0x000000000000ff }, { 0x490ff2cff5c4f57a, 0x2df528f84bf36cb0, 0x40c2ae7bf319a904, 0xe1ebb943e6723b57, 0xaea36f21fc26615c, 0x22746e33136627db, 0x74c38ad1f44a1145, 0xf9668d194998502c, 0x000000000001c5 } } }, { { { 0xc91e34d587be8bfc, 0x3c6c23e0d72e9da9, 0x2722e92302444d98, 0xa84c52d6bb0303eb, 0x226f6fa6f94b1f79, 0x2e5dab5e5a287b5f, 0x70ab823e11bd6979, 0xa1c65121e3b47677, 0x000000000001a1 }, { 0x86bc0c9545a56c41, 0xb0449fe1f4d173be, 0x74d0a7646f2347d7, 0x87af421ebebdac24, 0x6308891a10610178, 0x45a3de91c6af24db, 0xdcd3da3cc79cef44, 0x39d97320c21cbb56, 0x0000000000011f }, { 0xcef1aaf8314bf790, 0xd841c3bc9d87b13, 0x33cab8a97ffe4e63, 0x377f5cabc7fcdf65, 0xb5635026d0f2831f, 0x68d014480ee6e1de, 0x895674eb268c74b0, 0xbae5a5a448d837e9, 0x00000000000064 } }, { { 0x5a00ed4fc92c9d4d, 0xb8d8711e094ec1ed, 0x54e7a23cbf70fa46, 0xa542be02e168c33e, 0xbc9d5d61dd508ccb, 0x3d54a5f013825f5e, 0xf95853b64990ce46, 0x781ee4ff92d26367, 0x0000000000003a }, { 0xa231c0f762c02eb8, 0x3483a7e2f1a74d72, 0x61f71a62ecdcf772, 0xd92ccaa4f8ddf276, 0xb87ab83915d07a44, 0xf7c223418f91d6e2, 0x6538e569a543dbfd, 0xd0b2af901ad7af71, 0x0000000000007d }, { 0xe910dfce11163be2, 0x88e42e284461831c, 0x6a2a161381711f3a, 0x6b0ed3eaf05b8cf5, 0x25cc5d4252b7733a, 0x551b8af5abf97bd, 0x799dba915d4e36a1, 0x62f56a8b69e5c46, 0x000000000000b2 } }, { { 0xa3cde53d36777b19, 0xdd2446d5796a1d0d, 0xf554c77683c53009, 0x6d316d5fb6013c01, 0x4efb90fb1c5c2395, 0x95373cee3c9fc3fd, 0x3442ed3ceb04e1c, 0xece0f782c470fa50, 0x0000000000010b }, { 0xc3e053bd8de952c6, 0x723943abee2f5a2a, 0xcdd3786c403566fb, 0x2daf08fc784362c2, 0xc213b9c7054b57d8, 0x1c72f74bd83b049c, 0x84637aa2a2e93bf6, 0xa83dfaf9948d5348, 0x00000000000090 }, { 0xcb167591b26c07c5, 0xdd2ab653fdfb3bfd, 0xcaf365f94d9b19c0, 0x72d6f926d45ebfc8, 0xbf759131f3fd1b1a, 0x27a21104dfda55, 0x455d00cfaede9b13, 0xbcd93a85e728e7a3, 0x00000000000177 } }, { { 0xad20b62a5989329e, 0xc26ec23dca32f137, 0xa9ac854aa40d2c39, 0x80c8d2a5a0899a0b, 0xfc819f8ba7730f3, 0x7e4c1b4699e55384, 0x796b95e35816fab1, 0x2c8a7b1749a995c6, 0x0000000000011c }, { 0x9b1f7115f36378e1, 0xb30a838eb2ebd1da, 0x480335dd8c9ea3b4, 0xadeff71b612da8eb, 0xdaf582e03dd50ea8, 0xadbde08e371a96a6, 0xd76da5c93810097f, 0xc2a47a60b4376e04, 0x0000000000013a }, { 0xfaf48407659bcd3, 0x2431da84f9d66844, 0x6009b03fd0e823a7, 0xc5089fb4767c35c7, 0xf0faeff5326b8a17, 0x956c74604ebba1d1, 0x521fc52989dafe38, 0xd9f10b9dc28f5bc7, 0x000000000000f1 } }, { { 0xfd17667b534846af, 0xca2f1af4ae553383, 0x7e869de2f545bace, 0xe894a81ab3290cc, 0x32c4fd02adaac854, 0x46c2ce180a13d9a7, 0xcca5f3cd710b9852, 0x144ff5fb222a134e, 0x00000000000141 }, { 0x928e4bf83d1747c2, 0x29e87b9a2098d09a, 0x558a2ac7901c517c, 0x16c47e9cff99c9fa, 0x1b0654f2a3d99a3b, 0xec4ac66617966df5, 0x2bcbcf807e3b9935, 0xc509339cdfa55fef, 0x0000000000014e }, { 0xe55b706a8e52d1eb, 0x8ca96cd51c7bd2, 0x4311992529c9f18a, 0x18db0da550bbaf38, 0x200e38fe5692fc85, 0x414e31fb4654ac5e, 0x4c62bca954721dbe, 0xb9cd749a382492c9, 0x0000000000019c } }, { { 0xe4db05f1b58a952d, 0xd6fa2d12678de934, 0xdfab5221ab7979d6, 0xef9d5fa6c0c8d08a, 0x859d0e5526deacb4, 0x35f7d94e66fc908c, 0xcb932a320ac5d9c5, 0x9b3ad7c0ea083868, 0x00000000000135 }, { 0xcddc6e23a3f3bc98, 0xbe6ea27bd08533db, 0x90125554245a9d4, 0x3cd64aa4e794721d, 0xfd124adcd2fd1c05, 0x17360a191ade4e6b, 0x463c98cbe294715d, 0x52e55a43fe9249a6, 0x0000000000005e }, { 0x9270438b2887b5b1, 0xd99acafe69e5f7b9, 0x5580f8dcf98c4232, 0x7f005ef4e180dbd7, 0x793b1597dedbb65b, 0x60d6259c519bed1, 0x86dc02f92a8d93e1, 0x19c4bb956029911d, 0x0000000000010d } }, { { 0x91e609e8dc6b730b, 0x4fecffe937920849, 0x7e2e3b9623fee36e, 0x946429f6049a0277, 0x52a095333fd5e33f, 0xf35c84d5638c59df, 0x64d444803ef3ef7a, 0x21935a808013df89, 0x00000000000194 }, { 0x670ab682a1ffb130, 0x7b2956a7f0fc85ea, 0x43fd331a16871357, 0xa2171fa775180459, 0x5f719466bb18f601, 0xb67a32fe1308faf1, 0xa9987b0c62b5bf60, 0xc830eedf8613ce27, 0x0000000000003c }, { 0x48d57cdb485d5ed8, 0xd3a0967de0ca1e76, 0x96b10b79549dcf4a, 0x133869b8f5b8c669, 0xbb0b328d82e22c3d, 0xe10a9f06af3b17de, 0x1f60e534dd007045, 0x977d2f18c2770c5d, 0x0000000000000b } }, { { 0x95060555266ecb86, 0xbf9f49698967f546, 0x6781f242bdc0c2de, 0x63b04fac02509f11, 0xfd500a06a12cf231, 0x97b7c9450e759454, 0xb4eeb88c28801717, 0x5b62463f4bd8302c, 0x000000000001f6 }, { 0xfe7662cdc3e564be, 0x7f78fdf36c8adce0, 0xbc80398258f6155f, 0xd6ced92fca39e283, 0x678c62c6304130e9, 0xb8edb729928c599e, 0x4e80c06081b3e7, 0xc4202bdb401341cf, 0x00000000000090 }, { 0x5260e04fac30a378, 0x1bb3ae935dad25d6, 0x57053421c00c3da3, 0x70bf68232bfbd5b2, 0x4536e3f7b9da5ca, 0xb401b8a227d5c991, 0xa8669956ede2c4ff, 0x20244527c3f742c5, 0x000000000000e1 } }, { { 0x9138000effc40db9, 0xcbc06d0396c82510, 0x8620e691c27d4d3d, 0xc44af0f65a08683, 0x4b1445eb0784f56d, 0x54cfe7848e12fe11, 0xd874604effcb300, 0x955669c6f311ca40, 0x0000000000006d }, { 0x423d121d2d15b880, 0x1d05841f573cdd39, 0xcae66e1c806d31ac, 0xaff34947b3ee00b8, 0x29ac6ba80ef976b, 0x3395f988e7c9aa56, 0xa557daf322b05a3b, 0x944b9404c65cada6, 0x00000000000085 }, { 0xc2a7fafe008673cd, 0xf552d86bbdf3c265, 0x1019f3e7b5e930df, 0x5aaf816cd86202b0, 0x8e0e831e1a85c2f2, 0x04072232c0fb99, 0x22a34df27ebe2606, 0xc187150f7082dbc, 0x00000000000036 } }, { { 0x6ba06e559095be34, 0x8727faa3fb294d45, 0x784803260d39500b, 0x76e3065d24dd966a, 0x7ff7ad9d8824a93f, 0xc90338ac9ee39551, 0xef649f1192ad7534, 0xa9e8596a9a76df37, 0x00000000000021 }, { 0xafa35c5896c99826, 0xaa7f9a2709ff012, 0x1ad87a20676976a, 0xb4157f5f7764684d, 0x28bc72d7e2375b3, 0xae187aff6cbe63fb, 0x13d1f86948c3d115, 0x6d8704e451999ca7, 0x0000000000001b }, { 0x5243d6cf40d9865e, 0x2aca33735b20bcb9, 0xbcb2444e6718dea1, 0xb5d8451d4c4bb8f0, 0xc5ce5961e1ed74b8, 0xbe87e47dc85ce101, 0xb9623db4f3d1b674, 0x51796aa881755f90, 0x0000000000002b } }, { { 0x33b7d501e82ab595, 0x199141573c1f5c6a, 0x3d8054fa864de00, 0x5caee914abb85073, 0x4a62b3212cdb9bc8, 0xdf8485166b9bc18f, 0x5cfed06a95734015, 0x701b07e0a6f1af1d, 0x00000000000015 }, { 0xcf0561e0c07962be, 0x7ceab9d6eadecd22, 0xdd1f08e387b23165, 0x1fd1715e179782bf, 0x9326bc043079e9c3, 0xf620aac447faeee, 0xa132f91b7957950b, 0xd9a3336598c993b1, 0x00000000000181 }, { 0xecb89331edb1004, 0xa59b5e472da4f156, 0xae1286867d95a448, 0x9940416812c9cf33, 0x4191a73c56875a16, 0x3049aa8693f80573, 0xbdfdd5010a1ce2b9, 0x1544e0a54db4b128, 0x000000000000e7 } }, { { 0xbe9f922afe8eb62b, 0xa82fb255c6a8749a, 0x147057ce9217b6b2, 0xe5a609c42bcbe59f, 0x9ca1210f55b68021, 0x4f1a7598ae3c399, 0xd08711ec24d2fbef, 0x3a2496eda156087, 0x00000000000077 }, { 0xca3443fba4ee47f8, 0xa529459e64a5c5d0, 0xffd3cddab239072, 0xcc22a8bc6010d666, 0x5080e4ae925bd39, 0xb85c65853cbceba5, 0x908cb4b419b41393, 0x967fc5bb9b13c9c5, 0x0000000000001b }, { 0xd7ce31ec076e7c24, 0x19925b61d5b8d977, 0x57ef534fcd85c6df, 0x2554f9c619507760, 0x2a4c0894ab69d8cf, 0x7377469f0a9042bf, 0x419ac34e53acd896, 0xceaeb78bfb2e4a43, 0x00000000000037 } }, { { 0xaf192cb5e11db02c, 0x2243548a35db7434, 0x95efbb4d1f4ca3b9, 0xe95c8043144fb5f5, 0x45d14869c5a98fd2, 0xb2cacccf6ccc22f3, 0x2ade64399c42dae3, 0xc95c62287eba09bd, 0x00000000000046 }, { 0x2761bab5d145ae55, 0xe77979b86cb87040, 0x33841ef1f30bb710, 0x51fada7e51dbdf47, 0x4f02f5b152c7e5d2, 0x6a51a61877c453bd, 0xed581b600b8cdf91, 0x653d9a89ba3c4ba4, 0x00000000000081 }, { 0xc4b938ab612be035, 0xf47f224734080e0f, 0xe0882e29c6802da8, 0xda08040bf2da3f9e, 0x38cd5c810d70223f, 0x54a78a9a1809226c, 0x445dfe47c8797490, 0xc7151353230d3163, 0x00000000000068 } }, { { 0xd321025d870c8a38, 0x918780606d27721f, 0x90ce3be41c8fd1b9, 0xf353b6755e4b0210, 0x6a1f7092573bdef0, 0x4bbf4a71eda794c2, 0xad9867a5abce322c, 0x832412c02a553cc9, 0x000000000001c7 }, { 0x6ff8be37477f8768, 0x4afeedae7ef13a87, 0xc683f86a474b2669, 0x3bc8bfb9e006cad8, 0x6ad7300e4c901fed, 0xbd439a3383c1e82b, 0xb584e69fef9b6236, 0xce1c41c508172a0b, 0x00000000000198 }, { 0x5ca8f26b3e98900d, 0x4f5642e1d98c5d5b, 0x377db9886210dfb6, 0xbc8079f20f52ed72, 0x7944ed96d4d99fe8, 0x33fe82b6221d8556, 0xb0c8a606010257ba, 0xa20c211492fdcf2f, 0x00000000000155 } }, { { 0xd06193abe6c99686, 0xd4f960625a07be9c, 0x5a53017ac3392987, 0x77aabecfe3594f46, 0xc5629f72b78a8613, 0x3044db210445bd61, 0x6db02dd35c581fe5, 0x339739ed7c0309dd, 0x000000000000a5 }, { 0x148538a9f38d0b90, 0xd4c7c05cff62268d, 0xf08733c974f7d4aa, 0x1a940ab805a7a532, 0x62cf3e416c0cd6cf, 0xa72b6bbf4b9429ee, 0xf2c5b18fc3c01915, 0xdb625c40af462041, 0x000000000000a7 }, { 0x28d803a79e59f039, 0x4f0b18ba559d6205, 0x17eb2a57841361ca, 0xfac4bab0684706c3, 0x696c0b7ad167ab68, 0x8d2ad7fce45d94c, 0xed30ed33905571a0, 0xfc92334b838dc3e4, 0x000000000001c6 } } }, { { { 0xd1ccb6f1063c70de, 0x28e7db85694a2f96, 0x802e7d771c5e5421, 0x7f18544803532398, 0xc60015198cce7a4c, 0x2aea368ec9ae9479, 0xeddea55b77df1483, 0x6b7da80b5f794313, 0x000000000001ba }, { 0xeb2f2ebecac16373, 0x4f340dbde96c5268, 0xa4a8fc9ed14a99ca, 0xa7895baa838e5735, 0x310e3943d44b743a, 0xd582a1ecb5b01d04, 0xc3a8af2f87fb314, 0x40f5b44bf29e4f89, 0x00000000000063 }, { 0x381dd30495aec472, 0xaee7b4434c3ff851, 0xfa0555fb6d7b21b2, 0x314e6176206433c6, 0x19c92662b6938e41, 0xdf92818637f73976, 0xe0c9cd77370020c5, 0x896b206d6fe89b86, 0x00000000000108 } }, { { 0x65f2743c538190fe, 0x3faad79a298471ab, 0x618a15e1cbfe40ed, 0x5c2c40f6d8aab5e4, 0xf4265646bb2b00dc, 0x2095743890b7f867, 0xa5f2fda5eed3b7df, 0xa743e1844f1c36e3, 0x0000000000004d }, { 0xc4f05ad3ad57e5fe, 0xdff0a520d62a65bf, 0x472c308af5e66589, 0x70e8e0277661ec4e, 0xfd366ec0354c5c3b, 0xcd6620d974163828, 0x2d05a10c66b458b3, 0xfb01f1d7c0e18a14, 0x00000000000041 }, { 0xd10bcb292a128877, 0x2d39c2c799e10c32, 0x4da04d85bb3cdbac, 0xf668799301bbb671, 0x8f45cb0d06133e04, 0xd5771d729eaee4ab, 0x2645ac5e17c48082, 0x58d2fca8885f958, 0x000000000000c2 } }, { { 0x790177e53dd78e9a, 0xa0a0e19bd8150337, 0x23a3c87f2c4d91d8, 0x77bdc0789f64bdc3, 0xcf3d8e3b590da37, 0x73f639057abeb7c4, 0x5405fab8e7c5dd0a, 0xe7d454deca426746, 0x000000000000e6 }, { 0x8498cc45b619e537, 0x454d9cabdcda804d, 0x1a53871cf414a407, 0x9e2cc2ef1aa2938, 0x6cb9330da207d8e, 0x3f3c1d10b6a06a22, 0x82d007b0809b6dbc, 0x6b326e1dcab5e80a, 0x00000000000193 }, { 0x24684172bc0eb3c3, 0xc9a5d0db675e7d13, 0x868562a81366d742, 0x54de42199dab65c6, 0x194b8d84dd9d3d2a, 0x96eb1c3c19093735, 0x4e90b37a2f640afd, 0xa32067d36479d043, 0x0000000000006e } }, { { 0x539d4f215d00c0e8, 0xaade9dcbdd9314f6, 0x7a9ab115040da808, 0xd2c0e353ea8d0733, 0xe504547bd44c02c3, 0x21465bf76707fe2c, 0x4b92e0f935296568, 0xf2e82cd801f46467, 0x00000000000075 }, { 0xc45efbd1f7536559, 0x6cbc04f600fb74cb, 0x54ca8022d7cac1cc, 0xe75cefb91f0c5035, 0x71da4967df1a199f, 0xb37e81fb6c18c496, 0x3146017e68ccf014, 0x8f4fc485d498a2b6, 0x000000000001d8 }, { 0xfc8966d88221cd6c, 0xe7bd7024c0571760, 0x1dceee72970b55fe, 0x3dbec36dd4a1cb9a, 0x30bc0edf8ba33442, 0x6be5585ee7708b08, 0x5f45ba6fbdfc1e92, 0xa820fc958bcb6327, 0x000000000000b0 } }, { { 0x7e2acc9d7b42cc02, 0x5d52487ca2d2658c, 0x810fca639977c66a, 0xfa5ed2539ab1cd83, 0xc4689277883dbb9c, 0x5777f8d20acd942b, 0xef871fc2e8a8ab70, 0x9fe21f2704c29938, 0x0000000000011a }, { 0x90a58146bd4982f9, 0xe27fb4c40be16629, 0x617791b63de2d046, 0x9a5a33fcd1858a8b, 0x93b3a7c458db41c7, 0x82db40d3783a2a84, 0x424a5408adc10fc0, 0x845a154ea7c28746, 0x000000000001ff }, { 0xce02014d078175f3, 0xd78f77d564d9e5eb, 0xff24e6212efc932d, 0xdd42f23de41d3393, 0x1293c55807ddb55f, 0x516c04b9e5b97ae, 0x5ea9e87fe0672168, 0x167bd798186ffdc8, 0x000000000000b5 } }, { { 0x410ed0357491c51b, 0x6a1b9d146faac891, 0x68fa4e8c8aef8baa, 0x92c28ac3d0fcbb12, 0x1bdc178d9466b97c, 0x41d277299d695a9e, 0x3d5f6d9f6f7164b1, 0xcc5111fb7d031c3c, 0x0000000000016d }, { 0xb9fcf72dcbe5fb68, 0xb8a07a0848ff9cdd, 0x4fefaba898494000, 0x49f76b5df1330300, 0x40e1c04835ae0038, 0x144d5b52b0cdd109, 0x3047f00ad8b1618b, 0xa775924852fb324, 0x000000000000e6 }, { 0x9a2320dbbc3e71b7, 0x74f41dd2a2b8c286, 0x14c4235f91e08d6c, 0xf75df962bc8d5738, 0x73e2e5f4895eafc6, 0x48289ae1e91634bb, 0xb758be499b9b254e, 0xed8fab844b9de73d, 0x000000000000b2 } }, { { 0xd8e19f14bf894d88, 0xf8fdc1eae3f8b9c0, 0x8aa9df0f311cbd5, 0x6f0527eb136a9bc4, 0xd4eba9da6491d352, 0xb735d170ca9ec5d9, 0x50763fc5530b65ac, 0xe0e26d95d8cef4bd, 0x000000000001af }, { 0xed0de3ae8a7d3311, 0xb649930a2c18e60, 0xe47573bb06803994, 0x67cbcde7647d4a6f, 0xbf3ec6b012d63035, 0x603174b71706d0d, 0xdaea95f74e79b3c4, 0xc60c8a1082423465, 0x000000000000d8 }, { 0x8dd579d3d69c6e82, 0x909e4609e4de2314, 0x8c353b4e9edcff7c, 0x489ca6e401edf05b, 0xe17e52712825b3f5, 0xaf59aa0619b76a5e, 0x374fb2e83302e937, 0x65e4d74fec3f2ef1, 0x000000000001d9 } }, { { 0x2b4cd2c130d632fe, 0x5fff682680127376, 0x6acc0441c1fdcd6d, 0x3b1bfdcbc2175162, 0x4f52c019ad5747e7, 0x9be01b50f605bfc4, 0xdfa66c22e6bf8a4c, 0x1cc8e01d5c1b6c07, 0x00000000000062 }, { 0x282d0a68a08b5e96, 0xb8453aea68854f34, 0xb761e8c857f22aa6, 0xdc4e8034560e8da, 0x14837dcea4e64061, 0xe8b9b6b5eae6eb16, 0x26a8b30910bbb6cc, 0x75964627cf89f2dd, 0x0000000000016f }, { 0xa36f8560fde508d1, 0x5c7d04c07565ed3a, 0x5376bf0cc4e7ae3f, 0xfa4df42abe06836a, 0xa0d52478bd5d58e5, 0xabf81e17508762bd, 0x76db5bfd3fbabf2a, 0xee322f0fed51033b, 0x000000000001e5 } }, { { 0x5fb72bc876cef307, 0x63a17b9d25b8c1a3, 0xd90b004d178bcf1, 0xf609379a125d7f89, 0x965c442e1c4c399f, 0x2328915c12b1e078, 0xb59f4b54a4f43b41, 0x4f293219c4bc169e, 0x000000000000b8 }, { 0x7586b46135bc95a3, 0xe0c179bfebdd3c32, 0x2d9b35cc0eb36fed, 0x6aecdf17ae25182, 0xb3d6125f457ac811, 0xaa7ddbcc4f6f7967, 0x13390a0d5700f8e6, 0x300b4bcd3cedff55, 0x00000000000159 }, { 0x5e4d6f35b6fb34b8, 0xb1314c72ddf67607, 0xf1d3b7caf09cf46b, 0x71d7059255535814, 0x13679c52466341b5, 0x32ecb2a18abaff1d, 0x190a3322406fa03b, 0x1030697f8297d46b, 0x0000000000005b } }, { { 0x8d8e8d4da82f109f, 0xd7b1449bd909a242, 0x29145ace5e9615fc, 0x75d52022e500857c, 0x704239df21844f6e, 0xc623867eb8fe0464, 0xdfcacd70da472048, 0x137f739373a196, 0x000000000001e0 }, { 0x6693e7ca9358396b, 0xa521b24c0dbd6050, 0xf20f72712fdff4a8, 0x5abd5abbe18931ff, 0x3bdf1eb241b70919, 0xd97cb739e8fe21c9, 0xd5226d0b6027fa9b, 0xddd3eae8a9ea5cca, 0x00000000000168 }, { 0xe5f24704f07fac02, 0x1d853534552aaa90, 0x1d1d954f74e5530f, 0xacbc53b66f56df03, 0x65fd95c621bb9c5f, 0x443f30f29bad502a, 0xd9d77d3e2ed9f4e, 0xa9622a6ee7270d3b, 0x0000000000014d } }, { { 0x38538213054c3e5, 0xe4107ebddaea1821, 0xa775434625bd1e47, 0xcad179aef45c7bc5, 0x8cb30915f0802a2d, 0xb3750b24d1d070ae, 0x204fd5764c68d913, 0xcb425df10cdddae8, 0x0000000000019d }, { 0x69854531467e0d35, 0xad53ec8d4ea67500, 0x820f89b151e9856c, 0x31ede324a05cadac, 0x4221575e3b6f23b2, 0xac7937b0b502d486, 0x4a6ebdd81f8534d, 0xb935fa41442f993a, 0x00000000000124 }, { 0x9aca8c444a995db0, 0xc5d36e0e7c883050, 0x72cdd2d2b9e74982, 0xb07d63fc9b789216, 0xa46cd76ae371ed96, 0x9ccd2e2559bb9a20, 0x2ea194b14f92797c, 0x4c170e14d451c4f8, 0x0000000000016e } }, { { 0x190e0946efec7643, 0x62464da0bd418c8d, 0x943ce354d0412548, 0xdbdca3725612a3f1, 0x65348f309aafaa45, 0x2cffdf6d3a23162f, 0x76f5a5c94af04d3b, 0xfd84d0fb68f9e664, 0x0000000000010e }, { 0x5d3349b4b8d01196, 0x69a69601be67c17e, 0xa85585d8930f5990, 0xae72add9a66bf340, 0xdef269cf73f39a1a, 0xb6224ade58781f95, 0xea5734570409455d, 0x3e7d704e290b50f, 0x00000000000137 }, { 0x1e7af0aa38232afd, 0x7e3f97f705f82e0b, 0x6f66a66e3eb5b75a, 0xa62d0aba7f00bd56, 0xabd3e34090d8a247, 0xc84898ea961fd90c, 0xcb857fc34f55c656, 0x8e9c868c194fe454, 0x0000000000016f } }, { { 0xa3ac06a7865080c0, 0xad9310a384da226, 0x7db241e97b4bba26, 0xe846084545ad784f, 0xb84de7ee0d7f0421, 0x4f210535d2da5427, 0x796395de54cd1fca, 0xf56eeb7f4aeb732d, 0x0000000000010b }, { 0x19b564762ac654ff, 0xf03eda0b56eed336, 0xf55498eb736fadd1, 0x28da529eeb078d09, 0xc05e6a428302bdb8, 0x5d3532bbc12e9e2a, 0x6295a8063501e8cc, 0xf3e2fdc26d4fda9, 0x0000000000014e }, { 0xed90e862e069698b, 0x78a816ae51236a25, 0xb834a3175e24ee49, 0xf0f5d3ba7d83ce76, 0x453e9d0504b52feb, 0x969e1186e1f8016a, 0x68c7056339fbc901, 0xb08de98a646aecf0, 0x0000000000018a } }, { { 0x58100e7d6e9b2b23, 0xd1f9317f536d6102, 0xd3a35ce2a11cc91c, 0xe28e01c741530ae8, 0x1b553f6c0a2f03a7, 0x1aff9b88f98a3b94, 0x1167fcca7d66eae3, 0xc35370074a0ce0ed, 0x00000000000156 }, { 0xc0f765c9ba6894ca, 0x3b7bdb80217dca99, 0x13cbf96612557a93, 0x9634d9ebc1e166a9, 0xade8dd7b641d30ec, 0x641d567c408643a4, 0xbbc7a06606054b35, 0x5e477b25b0ead7, 0x000000000001bb }, { 0xadddaa731b9f5207, 0xff3a67e05876fb07, 0x95ac19e52614678d, 0x442c2065520c7a20, 0x1f78bfb32e00b6a9, 0x885f7435e3f99a78, 0x96a9397b3bc66744, 0x751f3c97fcd511c0, 0x00000000000030 } }, { { 0xbf42f930ea3a4e88, 0xe67a3885639141ea, 0x409840bfa2c97e53, 0xd3255e34baed6972, 0xcf0e4f4211547638, 0xb2b631d1ab65c525, 0x32fa6a6e99446301, 0x212eee37d27e9b1b, 0x000000000000db }, { 0x67241ea3bc77ef77, 0x1e3d85416c86eacf, 0x432a15c995c3e368, 0x4a461c99cc155c59, 0x6ad11ea7235523fb, 0xde492f98b43f61df, 0x47eda25d323184d1, 0xef2245082c4a3924, 0x00000000000100 }, { 0x4f5ae39c1fa16529, 0x6269327315853078, 0x81216343f810f8a2, 0xafbbd65374b7fd63, 0x8e8738fc42f2efe, 0x1a8525f4fe43a480, 0x5e733f0ca7bf2b09, 0x7bf8036fe4c60911, 0x000000000000ae } } }, { { { 0x7c1b5af7eeecddfd, 0xc97f0451d855edf, 0xef3a19d15ec7bc72, 0xb6029a8f861c2adb, 0x21567cc2f84835dc, 0xcbf082d6798f6448, 0x718f1ce07d4b54af, 0xc18c05bddb9019de, 0x000000000000f2 }, { 0x5c804a5fe8bb8065, 0xea08d782f67703e1, 0x396efa36585e9173, 0x5a247750cbf5ac8c, 0x35af022ffe6b3899, 0x95910fdb03bd689c, 0x9b5dd83dabc65209, 0x944d87fd178e504a, 0x000000000001e8 }, { 0xe991c215d8bcf035, 0x3242fb36b52507f2, 0x9903f208e4bc1151, 0xbaec7ea0d16c0e49, 0xf8acd20b0394769b, 0x5c3c4f5428e5ed77, 0x9763d0806499a82d, 0xa4996a58d5a3b2d6, 0x00000000000035 } }, { { 0x6fb353a558d33e4d, 0x851f611b3bf8bc0d, 0x367110be3369e00a, 0x2e033d29c1109f26, 0xa147baad6a83dd5d, 0x6aeee06f40094620, 0x15e4b4be2bb68596, 0x452af0583fe49fc, 0x000000000000b7 }, { 0xbeb4d1b13c60b8ea, 0xfb45a576de1ea337, 0xee51214c3b7ac80f, 0x42048c6ed99a16b8, 0x395b97d647c6c4d1, 0x208c96b7f31c347c, 0x44774c82c259120e, 0x9e8e510e8e277ff6, 0x00000000000011 }, { 0xb79a6ce7e7564f9b, 0xd47b43b7db1b509c, 0xc0ee84faaabc847d, 0xe2e4085db310c432, 0x96281eb8b24ccc84, 0x930f01a90a3b1a6b, 0x9e8f7940b18cb20c, 0x926653c1de1a8c07, 0x0000000000015e } }, { { 0x1bae4e036e8d38e1, 0x211c708656dec8e1, 0x35f112f0b777d983, 0x558d82e79c65d434, 0x4aebf7c2bcce235d, 0x4d245c43976af93e, 0xeaef182e41da73a9, 0x32572e388477b468, 0x000000000001c7 }, { 0xf586635fbeff112f, 0x684b74968b67ece3, 0x1f87391128b009c4, 0x769fc9a65c20572b, 0x628627f65b4f95d, 0x4aa7f12148e2fd68, 0x78ffeb9259308d67, 0x5e48052ba4e49528, 0x000000000001bc }, { 0xa0959b742734bd25, 0xc40f285da4089ed6, 0xfa87d01dbf003ed1, 0xc9a488193cb78683, 0x44a70ae3deee335, 0xd166f5000eea532d, 0xda2f4db88b10a171, 0xfaca88beacde1cb3, 0x00000000000072 } }, { { 0xda93cc77ae56b2f7, 0x58b2f3ec1be851ee, 0xa5bec66a09456477, 0x4c5a8fd656ff570b, 0x9542314045e1c0c6, 0x29e73be715479523, 0xdf7e77a9c36e7109, 0x47f42fd298fc4376, 0x0000000000012c }, { 0x1db6c03617c3238e, 0x542e9ea285ee839, 0xc65afac120b4ab5a, 0x666b8fd418c11b6b, 0x6b64fe57e1a43bdc, 0xb78f91c880455e4e, 0xff5a1d23ee06fc55, 0xfe9c995616bc225c, 0x0000000000009b }, { 0x798ba81cf1fd58c5, 0xf78200fc31d3d963, 0x5c5c2f4900f6c879, 0x5fb5e5c0746d76e4, 0x44373531c2680444, 0x1e2afee71ccc683b, 0xe5ea0243657cb1cd, 0xc9fc31235e213a45, 0x00000000000166 } }, { { 0xf9480b6f326f306f, 0x6053c097c122b97b, 0x8684968b7d7efa6f, 0x30034543bf11e21, 0x971f25f9deda0961, 0xf5af13c84ad88054, 0xe11eea58e672014, 0xa44ba03933767ad2, 0x0000000000000b }, { 0x780bd0501736647d, 0xefcac6304bb603, 0xdbfc42cba055db69, 0x9db3c94ea8e6cf1e, 0x1085b37f4caca599, 0x458826781d5af693, 0x18f832bba05491f, 0x44a304f5e8cff9a, 0x0000000000014d }, { 0x26a1514650a298f3, 0x275d5260bd69e53c, 0x111a3a1aa29f3bcd, 0xa01ded1f4235893b, 0x2fb13f66db480d76, 0xf4926a77146b803d, 0x2a31285521661767, 0xbbf8445c8b49da36, 0x00000000000144 } }, { { 0x3b097485f5f1a29f, 0x37e02ab9bd8888e5, 0x282ddac043602657, 0x9176904a200a0a10, 0x98ce78a70772dbe, 0xac080f639d9ec9eb, 0x556b787aa6fd152d, 0x8fbc0a7eabc5edb5, 0x000000000001a4 }, { 0xe92ed9c48cdb2d04, 0x5d5a22115dd45dc1, 0xd0055fe5cdd88e75, 0xc4aa8e5f41b8d05f, 0xa19b01e18f65c560, 0x3ee3bcbd29f34cf6, 0xf37f3c39bbc5d58a, 0x1e50d73809452bd7, 0x000000000001cb }, { 0x28d78966de4443d5, 0x86053ab52446eec5, 0x964b47ff8fb89b3a, 0x8d794861c189557f, 0x67d1a9fea52a8f2b, 0x7096fd2a6ce47ccf, 0x631d524fd3a62a4c, 0xc093cc986c7fcdc7, 0x0000000000018d } }, { { 0x73f302a709845b93, 0xd46cef745aec8f42, 0x211383bcdf5263d4, 0x35ef21d5534f0407, 0x1efe31754178a46a, 0xd26d0c40c2cd352c, 0x53090446bea88c8, 0x9e96efd55f747cb6, 0x00000000000049 }, { 0xe76dbe06f3aefdb7, 0x34a7f61bf0b8b68b, 0xbe0fec0edb18984c, 0x246c3a32b749a0c8, 0x6b5a544e613af3d6, 0x4523b94aae80816a, 0x84375a8a47e0cb72, 0x2cda6385c2c05408, 0x00000000000133 }, { 0x5d894586ab365fce, 0x1f30f53974536c1e, 0x33ddaa275805a375, 0x6dd8628c11b6f406, 0xe60062c3b62be955, 0x2365e89b850dbbb5, 0xae73f61f121864af, 0xb02e754dfb19a54c, 0x0000000000014e } }, { { 0x3a22545ca8ed71e4, 0x59fcee3b1601e609, 0x4d6d9a6a00ad312e, 0x90b7d9efc36cbd86, 0x6fc37170edec8f21, 0x26a80a0190718e8a, 0xe0e13d756077a04f, 0xeff5e00a6bd127cf, 0x000000000000d2 }, { 0xc079daa32d5232b, 0x7eaa113d54e5099c, 0xb780c44e2b87df78, 0x972527fffd673184, 0x784c3ea5dfc0bb61, 0x76501818e0384051, 0x184f2112a2a2880f, 0x418644126a8e7e84, 0x000000000000fb }, { 0x58641f71ba892806, 0xb3024912c50c31b, 0x3aa35d394039f92f, 0xb640040958af1429, 0x45752e76a0a114ae, 0x5f0ab72365e07dc4, 0x5135683b8e5dd1c6, 0x8dc10bc5f0c4e7cf, 0x000000000001f2 } }, { { 0x66cf08e8c6a7d24b, 0xd1098970393d3bf3, 0xe97a5ffe94132891, 0x7e5274db1b361e75, 0x615b338b9a6d8716, 0x7c74b70dc1831666, 0xf3463a1b40b5a197, 0x3f1f032f6ef339a6, 0x00000000000109 }, { 0xf5097ef3395a291b, 0x1da51c9eefc74494, 0xf897e887c4da3fca, 0x6532925717bd46dc, 0xfebbf10d5094c28f, 0xebee5408b240f49d, 0x38e482df42f13031, 0xe63c1b94c58a15e5, 0x000000000000e0 }, { 0xc6e16b0e5ae8ae46, 0x5029849690d4efe8, 0x5bd0e80a40922903, 0x5c1d160661a39ff7, 0xcd3792c8d12616be, 0x468fe13a87113df1, 0xb794b63f0092f5b3, 0xc3263a0ecd0d07b5, 0x00000000000102 } }, { { 0xd275d588cf9ceb8e, 0xce714e4c1bdd27a9, 0xa5e5d5a9d946683, 0x248b44e52439bf42, 0x83808909b17239c6, 0xf898cb1d95684c57, 0xf1d8e72bf3646bf4, 0xf1554c90bd6e9387, 0x00000000000027 }, { 0xb1d2f4e6d260a759, 0xafdfc23a1975eb9d, 0xa7b8ad1e1ccbc057, 0xb12bc3970119060, 0x661fdf26cb305445, 0x2ae8778f1ecd82cd, 0x75696525822502e, 0x5dd646b30e3e9d1f, 0x00000000000126 }, { 0x6ef4bd09e953e671, 0x15d1e42162ea8afe, 0x8afb2c9bff53b74f, 0x2969fd2abf920c1f, 0xf2acafb84ce38c48, 0x66fcb6290a203e74, 0x1add6e3faadfdca5, 0xa08ff94ab5afa745, 0x00000000000199 } }, { { 0x9797e5fbbecf50b2, 0x8bcc93545d715067, 0x367800948c185c0a, 0x88d435473db7de8a, 0xe23a6480f8f0c994, 0x78e96d3557546c7, 0xd4ec461f18e258e0, 0x75a46eb5a1789064, 0x0000000000002d }, { 0xe6d254e8ebc69689, 0x229b25d65d981d51, 0x7b7e317e67d5d346, 0x855b97ddbb735273, 0x368ec1cd01505b4b, 0x481f93308a651237, 0xb46dc7cb122aa46a, 0x499119d6269c7ea3, 0x000000000001b9 }, { 0x67829b206c3f8067, 0x190f0036b3756e3, 0x54c4de6e63ada3b7, 0x30e8160092218c11, 0xa82c02c4a497fc55, 0x3a264e966f42927a, 0x354bf691f2b2f0bb, 0x2b24a9917f437b0b, 0x000000000001ef } }, { { 0xf88993cecddabb3c, 0x90831c1c50b3ec7c, 0x69526bf56e8862fc, 0xb790ed589fe3cdc7, 0x538bfe4a4e662b00, 0x8f29167ec3c55385, 0x5af878ad312ccd4f, 0xed7040a1794f69aa, 0x000000000000d8 }, { 0x2fd9ebcba4b75ea, 0x29ef12961618a401, 0x8c8d9c80d2566caa, 0x7b780dc58d73d1e9, 0x4ac82d8d1e151d69, 0x5f4ef96f1d341c0, 0xf2093f23e3d2f846, 0x7eac6e54d36406c2, 0x000000000001ea }, { 0x2711ad3805543b91, 0xb5d4cfdcd28ec5ad, 0x7fed292218b1674b, 0x4e671a785d853123, 0xd0a727cce1de63b1, 0xb88ab44902fe46d, 0x231b3ec4fe7f8d4, 0xf0e91cb76fb65591, 0x00000000000109 } }, { { 0x241724be1953c7e, 0xd45a003c5eb17257, 0x45ed3308b604ee29, 0xc3c57c81afbd0216, 0x20c511f0afca70e8, 0xa9562bb8014c0ed8, 0xe761d933330984e0, 0x6550298a3fba6685, 0x000000000001aa }, { 0xc9f9ec812e6b7bb0, 0xbc8ec54f31cf060c, 0x7da2af44a64e667d, 0x60e772417a24197b, 0xd4feb399aea16386, 0x80d43c982025b25d, 0xad18fa4fd5a8c895, 0xb428938f1e0bff2, 0x00000000000158 }, { 0x4a29060eadafcea3, 0xe18ab2ca2329f8bb, 0x11efc9fddbf102ec, 0xd9421809f414acd3, 0xae25a17b9616c497, 0x92d2763e71dc06f9, 0xc245656377b1e1e, 0x9a9ec3f811c58b38, 0x0000000000003f } }, { { 0xcac180537a851b7f, 0x57de4fa6cb65a8f0, 0x15276e6c9746670e, 0xeb4cdac190b28fae, 0xd9492e935056e0ea, 0x807f1cc35ab3a355, 0xd26c0643217e6cf2, 0x499341de32ed4e30, 0x00000000000171 }, { 0x4c13f1043d03938c, 0xb7d69ebf37648baa, 0x85d1d104ee006429, 0xb60c90391c17237e, 0xbc7bb04dc8623a41, 0xf508e54cd129943f, 0xbe04435a2294d986, 0x7d14bf3ccfd296c8, 0x00000000000034 }, { 0xa0cd9af2aa2b5d38, 0x3937822ebf8d948, 0x86566e4bbaee5b15, 0x373e8dd8a601716f, 0x3d1e7b26cd121e8, 0x58c71561470604aa, 0xb4af31599eac6ab5, 0x9bde2f602c8cd001, 0x000000000000e7 } }, { { 0x46ce1ae19238baf1, 0x6602fdb4f5ea633b, 0xad6787981f217b31, 0xc81cb0bc266f7e11, 0x49fc601786fe74d9, 0x8801b3586c028af5, 0x2034a49381b2fd98, 0xcd5e0783ea28e98c, 0x00000000000069 }, { 0xd5a210259be66fa5, 0xf8e0d506fbe20b80, 0xd752cac14dec8ef7, 0xcfee9a25811ce1b3, 0x3e20fb5da177642b, 0x2b8986fee042a50c, 0xdc52e4d3aae6d540, 0xed2ab8983067098b, 0x0000000000014e }, { 0x18a3a8a34489ec24, 0x30a86e5fd0a719c1, 0x9cd49b09f1049e0c, 0xcf9b4c25f649efa3, 0xce28254d15552ac7, 0x67fe8d64a65f0f8a, 0xf6e4352406157baf, 0x3fe6187da7fea26b, 0x00000000000179 } } }, { { { 0x69ce1a530e67d8e2, 0x3956a55347ccc19b, 0x847c6c4a2be7cebd, 0xa29bdeb23bc4f1dc, 0x2e11dd5bf8c0574e, 0xe76a9dc59aebbf6f, 0x5c5e7412037dbdfc, 0x7136182eb5f84eee, 0x00000000000159 }, { 0x5c47e566bc149757, 0xc508c865cf275144, 0x98a278b259a6cdc6, 0x7af51797464eced6, 0x6b3c88d5b90dcc54, 0xcc72f2cd1bd21f6f, 0x9c88a5645db67ebb, 0x1cd4c6a36fd4c96d, 0x0000000000008a }, { 0x3342f9e3cd85bd7d, 0x998f42c6e1a9a912, 0x2ceb7867bdd1f81, 0x856d7fe96b4afe72, 0x772a6bd0d5a5b9c9, 0xda7be923b2d70b47, 0xa9c65ec0eeefd373, 0xf61ac93a373fbb5a, 0x000000000001dd } }, { { 0xa73a0d4043c6b808, 0x7f3af9de0f5b2b18, 0x339c636a80bef77e, 0x9c3cd901601eec56, 0xf57eda4382dd797d, 0x93cbdc358e25a6dc, 0xc19a6c11da1a96a0, 0x630e84870e97961e, 0x0000000000001b }, { 0xecb22a6983ee6952, 0xdcd48b28670cd799, 0x124839709b365144, 0xbfffe1cc52ac489d, 0xeda50071e12ba354, 0xed5ac3c0a179e9, 0xf393464440b027b7, 0x30596e8d5d7cf748, 0x000000000000da }, { 0x5c9f176439b0ddbf, 0x42941a0a9d883720, 0x6c05d313099de655, 0x8e4ea18cf4ab3a8c, 0x3fc600e9f8d0a61f, 0xc4cb6872d33e24c4, 0x540e589d47657158, 0x109940b53b50a41e, 0x00000000000056 } }, { { 0xc4e2de3f4f66c2ab, 0x3e063c1ef8e05e60, 0xddec87052418f93, 0xb2d5a796fba5b0a0, 0x1bf9df635e2db74, 0x73dc46b22b3a6e4, 0x4469bc3152dd344c, 0x20d6204fa79c1c2f, 0x000000000000c9 }, { 0x711c03e94a7d3857, 0x6f3d65f54ade62e3, 0xebc1738a4783b9f9, 0x2f0f709d42108abf, 0xe3e2a59aacdbed74, 0x4f1b35e8e2f348db, 0x1a884dd136172e09, 0xb14185fd7eecc07e, 0x00000000000105 }, { 0x5bdb8fadeb6fea23, 0x304929eb2b65f454, 0x4b40712f95f0b2cf, 0xbce4b4c14d90d13b, 0xb141235362af26ab, 0x934192a401ff59a2, 0xdc5609ac7cc9cf25, 0xa0dea5b536c4b86d, 0x00000000000127 } }, { { 0x84c163feddc55d2a, 0x40ea89e8e0afba94, 0xdeb445ec1e85cc2c, 0xfd0d2f153b4daf23, 0x388403e554a6be45, 0x8fc1b4720aa2230e, 0x88fbc2d2f18d1b0, 0x376a8b3f1301b0e7, 0x0000000000017c }, { 0x221bc8e8fb897e7d, 0xc865c12af07124f, 0x8ab778ad588cfcc6, 0x3a53e1538af4b28, 0xe60f431a232889cf, 0x9b8c13d44ddfce7b, 0xdaf9074494c74b49, 0xef784742a98defce, 0x00000000000095 }, { 0xcf6882e4b5690661, 0x9f8fc2848bf3aedc, 0x71a69de542ece56c, 0x6f993a9e649c5e33, 0xc65aebc90eef3565, 0xf537ffb0e1357c23, 0x5845231929ef8727, 0x5bf8fdfd5318f100, 0x00000000000016 } }, { { 0xff7c63079dde40c5, 0x6a6c937bd6ca8c18, 0xdcb3993399ee569a, 0x41357670a3262220, 0xb55c009de8f55485, 0x1498783e4348a216, 0xeceb7de78377005d, 0xbed175232f4be501, 0x000000000000a8 }, { 0x53ef807539821bf0, 0xe899966148c8b6dd, 0x8554c299d8c43af3, 0x4ad76337cda0fa6d, 0xd38e453c4543463b, 0xf6c8694e267cada6, 0x7c763ece30a45fb, 0x313e5ca6654ac5c3, 0x00000000000055 }, { 0x30982c75ecda8b37, 0x6d9445ec93239eb8, 0x99eae5b27648e59c, 0x5c23591bcb451e9f, 0x1e4d03000c28bb1a, 0x3a0dff0024125c2a, 0xcb14a6bcfc63aa5d, 0x9e15be0838a02db3, 0x000000000000c4 } }, { { 0x622a7ee25c91fc6, 0x9020e9c0f35f83bb, 0x3ec97ee426d94ff0, 0xa2f8a13d894849eb, 0xaa480f5f920bcda7, 0xb878cf9417066107, 0x898e60cf2680963a, 0xdf56a71c1829615e, 0x0000000000010f }, { 0x919f8285b3bd0c8, 0xeae2481133ce5a2d, 0x373fb03612fe5c1b, 0x7a0b441c1be555e0, 0x50d56818911967ea, 0x6b4468d98f6b6ca7, 0xbb3bc2097bfee84e, 0xcb8efc9d0d5651dd, 0x0000000000011e }, { 0x9af359c5022f4e7e, 0x81081c7b9122b5f1, 0xd9b64cb1b8727ea, 0xe18f93abd0e42c7b, 0x1d1c340f8ead2096, 0xc9b5989185135c8d, 0xa839a35cea5f1d99, 0x2dc6105be53edf79, 0x000000000000af } }, { { 0x2fa723c1ebc05e4e, 0xd74943431f3b60fb, 0x19b6987632eba59c, 0x67585607cb66260e, 0x2812fbecaaecaac2, 0xf307a4b95a16a23e, 0x5590ae38771b493c, 0xb3ae5cf23fc7300f, 0x00000000000095 }, { 0x62c28561be792cdb, 0x78423755d6b1e946, 0x2547606d185c960d, 0x27b9547f7868313c, 0x25e9aa62e2ebea71, 0x8c00710c178e2496, 0xca6347822cadcc28, 0x7c403b29a4577757, 0x000000000001de }, { 0xf8b31240060a81c9, 0x8bb1801b71d5c36a, 0x2f3b47be4e6e5087, 0xf7a13b9b150c3792, 0x499cc84d27e70bda, 0xd51f27c3e3026b35, 0x7295f021e29528c1, 0x6910e271c4735b37, 0x00000000000053 } }, { { 0xd75799b2e723829a, 0x442736467a6b1efd, 0xd4fc51b1ba93f8ea, 0x930478824eb48488, 0x41685cbd8f74ea97, 0x7672a8e796595008, 0xbb82415cf95d364e, 0x3bbb600565dee611, 0x00000000000101 }, { 0xc29fa6fdba38d732, 0x86c4bf4a34a6e89c, 0xbb9026f9f9a033a3, 0x454a088ed294bd07, 0xcc6f021438265500, 0xee4099daf55638c0, 0xcf63a76e00bf1061, 0xaa6422d02c581e7b, 0x00000000000022 }, { 0xa7b7d1e46ebd7cb9, 0x3107f2a36b7bb4ec, 0x224c61205ce41b27, 0xd3d269b0d9c5061c, 0xceba2f5bca7734b0, 0xa7f0c6b99c7c1cc8, 0x431001998d0ee39b, 0xd6147582ca574eaf, 0x00000000000146 } }, { { 0xccb5d88013418057, 0x12549deb30847a8d, 0xebb08c7b1d6eb7c3, 0x486efb9a24888d7b, 0x445b2013241b7501, 0xb538fec1c99be71a, 0xd94cbe934e0c685b, 0x9c32243893c94cb, 0x000000000001d1 }, { 0x7de518c8802169ab, 0x846fd517d21b606d, 0xc913f65aa6c40794, 0xed84ea8761825f30, 0x6d5f7d2ba4a2b753, 0x27898e0adf9ffcfc, 0x29681f13ef7fb8bb, 0xadd739194cfa1819, 0x00000000000080 }, { 0xf9e2dcf5bc55e38d, 0xf0d044f708559cc2, 0x222510ce3c630836, 0xb7fc8e86214fef4e, 0xfbd43efe674b651d, 0x2110b6de43975bba, 0x749efd362d98bb8f, 0xf010d7f8c22629e1, 0x0000000000003f } }, { { 0x95abb692ea7b8395, 0x708720394290cf, 0x91c9165b1b7966c9, 0xd7ac348af0f5da6d, 0x8db10ed881019186, 0x4a2b8912c6834782, 0xf73aabae05b9a43e, 0x6c79284c09254e5b, 0x00000000000085 }, { 0xe9d5b488dc26abbb, 0x7f51d02770982839, 0x3a4ecb038815d334, 0x8f1e23c47dc161df, 0x5f7edccecd24f70f, 0x2861d77067e3362b, 0x9556ae2f81bce065, 0xdc28400e92aabae1, 0x000000000000ac }, { 0x1c0a577161dc8f13, 0xf75af5d73fb5cc36, 0x2ef9beba09eca345, 0xcf3eb46d4b217e64, 0xd44acfb06a29517, 0x1336a7e60888b14e, 0x8a118cae6eb22faa, 0x221da459aa354e9b, 0x000000000001ee } }, { { 0xd39c92ed1a48d398, 0x1efa50336df69a78, 0x40bf12813016e519, 0x5e71f9e7f0a9e723, 0x55e3675ce5ab493e, 0x39b50a442ef94b37, 0xa86b16dd197bb7a0, 0x5514b73e43b303ee, 0x000000000001f1 }, { 0x6152f7d02b0adb1d, 0x86238c25ad9115fc, 0xca9cb1eef5c4f9a8, 0x1e649fd0604b5c3c, 0x43f6973cffb6b673, 0x9270dd19f05842dd, 0xc9d650017ed9032b, 0x8a0b1415c0f13ecd, 0x000000000001ba }, { 0xd808a9cb6de2cd93, 0x6d4c0a7cb7567739, 0xaac747db51974d53, 0x25a38b8429ab5a09, 0x19c57d8a33e96a7b, 0xc664754fcfc8166e, 0xe2f22c91e3fb24bc, 0xc4cc40b916c06fb1, 0x000000000001ff } }, { { 0x676cb85b26b804b2, 0x2d694405f9c0481c, 0xa731ecb18603216c, 0x16c2bafd9892121a, 0x95039b5c1548c2fd, 0x524550e0eb7ccfb4, 0x501ead142a8f8e74, 0xb75daff7e7b8e24d, 0x000000000000dc }, { 0x6b5362c3252802e, 0x966633d5347f5f7e, 0xdfd72393a0033c61, 0x56f60e108a6ddc8e, 0xb18210dbf44eb9ac, 0x9455014e684082dd, 0x74455ac0e0e182d0, 0x8354c13742d79e70, 0x000000000001b3 }, { 0x9b9f2d5a2fbfb779, 0x9fd8feddefc44d4, 0xe19ccb8078f02ecb, 0xee49d24ed196b86e, 0x756b9e60a4396232, 0xe01388e07a359822, 0x83c879e16915ae4e, 0x9792b49cb968b8e7, 0x00000000000145 } }, { { 0xbdb17836f0bc6735, 0x44271eebcccdf8bf, 0x9a3e875a9b74e3c8, 0xe622e42f25aa13c8, 0x2036fca7ee807b5c, 0x24282c932a23175f, 0xce5a5f6239f67cde, 0xf1ba8b2046c59aa8, 0x0000000000001f }, { 0xe4f3d8c2d3e629d2, 0x1ebbf7a21b1714fc, 0xea039a0a24396683, 0x5297a91fedcc8c29, 0xe9af0868dd37e715, 0x2b17b1de7e4e4ff5, 0x44db612f4337f80f, 0xab6a14d93722b93b, 0x00000000000183 }, { 0x8feb4eb071798ce9, 0xbe5ce7b30aa3d39, 0x9a2adfbc6d02a62, 0xc62dad47d2676c50, 0x5d81bed75bd67d38, 0xaaa403a639b2b3, 0xe4c27438137fb89b, 0xdf4401c2ebd8052f, 0x00000000000054 } }, { { 0x177ed7f5676285f8, 0x5449cd161bd0e7ac, 0xefcd87ca25770da4, 0x975b340547075ad, 0x986349787ac95ae1, 0x848a3dab2a520a66, 0xedd0413c567de41f, 0x2f966fa78e9d18d0, 0x000000000001ea }, { 0x85c6a40e4ae77e0a, 0x5e4f922fcdab852b, 0x2cb241bb45ea1ea1, 0x2362a5c110fd9fa0, 0xb05e11a125c43872, 0x12d7ab19207655e5, 0x4a997b728478b778, 0x9db6592d922993da, 0x000000000000c3 }, { 0x9c6d67270d9028ae, 0xdb1ec130f860ca0d, 0x5d3909930f148ab2, 0x8e8a0087a174e71f, 0xc8fe5d2e1d5c54ed, 0x26c302c76bd7bb20, 0x930e89a0c423d5f, 0x68e462d490ff5434, 0x0000000000012a } }, { { 0x5522ed28a346c996, 0x594a558d6aa13dd7, 0x9ab00264ca70f00b, 0x615f264d7030f98, 0xeb8df8947defe079, 0x44607afd3e987daa, 0x606afc3b2e3ff2fd, 0x65cd38127a22753f, 0x00000000000024 }, { 0xa0f9dae058a04a9d, 0x3b9f8a87860c11a7, 0xdcf9ec7f08be3192, 0x5f281ea8b44dfb3b, 0x4587687b904b2a94, 0xcfeee6462f6e3eae, 0x87a52070ac346f72, 0x8986f638c4c3472c, 0x0000000000015d }, { 0x1b41e5e693d0fa87, 0x9609b943f8fcb6c3, 0x83dea9cf36edc57a, 0xfdfd59a88b924b3a, 0x4b27da1a6dccc7ac, 0x47dea63b5a1025a2, 0xb9977b8f1309233c, 0xcc2bd1da933cf182, 0x000000000001d9 } } }, { { { 0xacccfa6fade1f2e5, 0xd49562c3568a1408, 0xc940885ca919e4fc, 0x11220e9613c5ed, 0x7cd16292f51b0524, 0xf66600cac2765736, 0x287a1d518b4f0526, 0x5974b38579a1e04e, 0x0000000000007d }, { 0x72b80606124a7e25, 0x304f3511718562bc, 0x1964313b0d6bebdd, 0xef624934065d7998, 0x1a20ea450e21a67e, 0xe724cc257a447c5c, 0x12db92083b9a251f, 0x243d46bcecaf4727, 0x00000000000124 }, { 0x41320b868add23c9, 0x8ad6bfb970ab2aec, 0xe06d9431572876e0, 0xb956d0aff4625818, 0xe9543504a822fbfd, 0xb12f16367ecb86b2, 0xbc86e2349cae1ae2, 0x231e03fdaec5da19, 0x00000000000149 } }, { { 0xfe2118b40870953, 0xbd5c267e7f177ba2, 0x32af6284040a373d, 0x64bc9afa26dbdd40, 0x3ba5a063048100a6, 0xac31a9357b68f20, 0x8e00b42ccce52db3, 0xa8331fe620f68f41, 0x00000000000153 }, { 0x41628980d2c8f6b6, 0x64c9e9ccafd9d6cb, 0x86442864f324b5ea, 0x8497119a41a432ca, 0xe2a6cf084cb5e0ab, 0x14b031fffdf390a7, 0x40ee094c47d60bcb, 0x55cca39147397eb5, 0x0000000000001f }, { 0xb75597d50df67042, 0xfc3593edb61612aa, 0x92cd68e1d7b63bc1, 0x8c70d5429e089d53, 0xc8c77a20ce743fb9, 0x10b3c12e52898d92, 0xf5033a6ad24cbc9f, 0x58ef914f6fe4f54, 0x00000000000097 } }, { { 0x24a70465e6ebf45c, 0x3bf055c0c19e75, 0xc6c994032001e36, 0xb74c9e84f14dbbec, 0x36683d850fa81163, 0x563847492d20b4a6, 0x7b23a4d9c5528922, 0x4082bd2c2de6b276, 0x00000000000063 }, { 0xb19c200e674c99df, 0x3c11ee0c2b15dfa6, 0xc44cc26167f14b57, 0x168b38337d307b7a, 0xb50dfec36937c8f1, 0x401cb7bbfbc3e9da, 0xbe61aa09e9bd437c, 0x1f42f5b732293255, 0x0000000000012a }, { 0xad17b498cb9c66f4, 0x385ad44233fa5b12, 0x4bba0f2959878fe, 0xc0f7549ce8b09cf7, 0x29bbab124a9f18f5, 0xd9d4d27a5106e2fd, 0x8927777fcc3c9c25, 0xbfd14d2f7d608282, 0x0000000000001c } }, { { 0x28be271775da0f3d, 0x1df6b6d0a843d855, 0xcf756c64025eb04b, 0xb250e3c68c0b5cc4, 0x9a3fc31298de27d2, 0xcdddc6a8ef7029ce, 0x1252ca0949681554, 0x310ebbadf3a3c156, 0x000000000000f7 }, { 0xd3826cd123914106, 0x903543a856ec4e87, 0x237e177cc84c55e1, 0x5d39c5139610ceb5, 0xa397dbfa15774365, 0xbce260e8767a5b4f, 0x4886e68fec02f245, 0xcaa978bb207956dc, 0x0000000000010c }, { 0xd9e5063ea6589ee9, 0x29d513b6152f75df, 0xc99e674c6abba2e2, 0x5788ed0b353d3197, 0xa77f0823bc9d87d5, 0xf63dc22437f459af, 0x60096ec05db30642, 0x3ae4771170fbcda7, 0x00000000000108 } }, { { 0xf0d7d33ae85c0507, 0xc73a3fd53d378cc4, 0x8e6991eaafce32d9, 0xedca4eaa830600ca, 0xc4fc0b645ffd999e, 0xc3e9dace12bbe7f5, 0x8909e7566a904ef2, 0xf8d787968bd77c26, 0x00000000000060 }, { 0x78387d9c94d06ca5, 0xbb58c0559bc66cca, 0x2a9aab8ec0b777ea, 0xf84c5770ddaf6daa, 0x3461670595e284a6, 0x2c1d5c8b8b033338, 0x86bc853e0abdb8fd, 0xc99b49604e623ea5, 0x0000000000017f }, { 0x8ac75cc4c5cf39dd, 0x5a3def8b4b55fbe0, 0x12e48bee601212be, 0xd90f2ff8f94796a1, 0x75266b9d4f550343, 0x53533743275c9e12, 0xd1946ee467b6e592, 0xf165bd27493df6d0, 0x000000000000ec } }, { { 0xb921550ca7ef7cf9, 0xed22e981d9b14f56, 0x7afbb8c0317e8a12, 0x683f3dba36f3f56b, 0x8acc5d8fa0749d6c, 0x40b98a0defdb3cb0, 0x4563f8f7d46b28f7, 0xd91256ee53137f5b, 0x00000000000008 }, { 0xeb495e0b7563dfbd, 0x8004f379cd00b33c, 0x10b7264b324a42b7, 0xfc6db260646e0de7, 0x50ea1381c8fc4938, 0xc2809181a4f347c0, 0xef2e8fb13df75f76, 0x80302e92710b31bb, 0x0000000000003d }, { 0xbfc5d1b91d41d1c2, 0x892a2ea95900d4ae, 0x55c9d52e4ae498e0, 0xe49f41905770208e, 0x6619a67aad5b358e, 0xcd88ed48918479ec, 0x87ad57340a0fc84c, 0xcf663983e9687aac, 0x00000000000095 } }, { { 0x1aef0e2eae82b0b0, 0x62723343c81151e4, 0x5a4745e0b0101523, 0x2242b4be855c07d5, 0x46d6d65c11a6abf0, 0xe35cdf38dcec9775, 0xa78f2717a26d0df6, 0x3583de8adb7b58c8, 0x000000000001f5 }, { 0x179e8703c86bcb10, 0xed439b79c82a85d3, 0xd97bbc8effadd8bb, 0x6da2cd00cce53b9d, 0xe5aa79fc0dbf5eed, 0xde985174f7f4cb79, 0x17a370ea28869611, 0x253cdb6c86f3eb22, 0x0000000000003b }, { 0xaf27a66b36e4fe9, 0x277ecb10b5a81783, 0x5807efec2d04a463, 0xd4c8d407855b1e2, 0x7effff796d065e62, 0xdf63d63a9d3170ba, 0x9dd460cd059aa01, 0xad4a2ab284e110f8, 0x0000000000009b } }, { { 0x3430b04525fa14, 0xc4ee116afea6253f, 0xea1b27aef3e3764d, 0x10ca32cfd3dc2b5, 0xbad4cd4001450e3f, 0x6c8c46d35ba9914d, 0x75516aae3b26b286, 0x1c86335989007518, 0000000000000000 }, { 0x17f9f0c6fb402288, 0x10393881421c5069, 0x2a6e19b432dc2cf2, 0x2c3a9e711f79d6c4, 0xad2ae6c481f0514e, 0xac2271c639005296, 0xc7048f37a5de98b8, 0xc580ffeaec3ba20d, 0x000000000001cf }, { 0xb5b3a4e777ad9c43, 0x8bde9190f11db475, 0x486a9a7dfefff119, 0xfc5d9dfe39b42827, 0xccc39fabe3da1d01, 0x4b5215cb56d3491, 0xb9f371de7b3f969a, 0x6649d5ae33933ccf, 0x000000000001bb } }, { { 0x99def33bade6406d, 0xa7882379f16a3514, 0x5a5d9648dccd2ec9, 0x6eea2f9c0ccedad4, 0xf25ed49635d8fab0, 0xd3e5004473bac83f, 0xce7b1e4fde586826, 0xbbc7f488edead4c8, 0x00000000000146 }, { 0x6871166369c25fc3, 0x6e3e15182e5859a7, 0xe88e953c6625228b, 0xc55dee950697da3e, 0x7faf13141615bf44, 0xa4a31ed0bf61ea13, 0x45c13c2ef772a727, 0xdfb59259d4a2e8d3, 0x0000000000002e }, { 0xc94dbd9b5e0242d7, 0x2650210c9366be47, 0xbd750048a5ffb71, 0xcd7f739497de51b0, 0xd705c2657bedaff5, 0x97f05a2d7f668f1a, 0x8cbe5d714643e423, 0xba0066d4ae3f3292, 0x00000000000143 } }, { { 0x458119c0fe08ce33, 0x78f27473019ba2c2, 0x452885d229bc35a6, 0xc0cf1f1461f6e1fc, 0xdcd371fd07e895dc, 0xe3ac50ea195830c, 0xf57b8dcc7d62f774, 0xba6579ae6b4e7bc, 0x000000000001cc }, { 0xf6f5d1b954136420, 0x74232fa9861d5e2e, 0x44fa873e6d7e4834, 0x6f4b701755bd57c9, 0xe1d42ff91f295f08, 0x3d639eb4a9b0e1ac, 0xaed4e729cb5b1273, 0xcb0d224db07f2736, 0x0000000000013f }, { 0x93220b003e6ce561, 0x63f69761ae883224, 0xc091f91bc8bd53b9, 0xbdcb62a748014da9, 0x4908a92453b4e3cb, 0xa17745af73955198, 0x9a60cf115a4e2528, 0x79daa6c3795c8dca, 0x0000000000016a } }, { { 0x7766034a83d4498d, 0x4541a87dfe5bd834, 0x127f817701ae97b0, 0xa36413f44151c954, 0x2505dfa8874efcd4, 0x9274b8dc7a869924, 0x69688fa6575f6e61, 0x62dacd6c7127b1d, 0x0000000000003a }, { 0x9b753b4afe8feb36, 0x439a2f269fdb2f9c, 0x5b731929d954a6ae, 0x53c0b7a4cc37c09f, 0x8a4258e4f94079c1, 0xe1930748eb9560cd, 0xb6bd20a024361160, 0xa0fe8163a2aa86b6, 0x00000000000005 }, { 0x5d42d896561ec229, 0x154e843f124cc432, 0x3a55361af39f43a7, 0x77c2e421728dfbda, 0x2d36248bd3652bc0, 0xa82f0bfe07cf8802, 0x92d1b0b1a0dcbf9c, 0xa9013682ccd61133, 0x000000000001e4 } }, { { 0xeb886a7c3ab97790, 0x591479b13d05c88b, 0x6cb719edcc5c824b, 0xb9872b84cbe47188, 0xdf923636c582ca49, 0x316678b951c50c45, 0xef7b58da3c1bf646, 0x3c0934f5abea1d95, 0x0000000000008d }, { 0x4060117164305888, 0xb1bb0afb90a2c87e, 0xb13336528c4b46e7, 0x2fe0b2106d0ca3c0, 0x2c195e255d0db1bb, 0xe4f86ef6da73e69, 0x5206ff7b1dc88691, 0x94fbfff25a27b3a5, 0x0000000000018e }, { 0xdd24afb6c83d5d95, 0x780903ab7687a30, 0xc4d5dc0fd59d74a5, 0xea7a06f1d9d8bc77, 0x72caa0a2309be3a0, 0xc6d0a3356b0bb324, 0xf9b70a2d4ed62c6f, 0xb4ddc021aa1fdc3f, 0x000000000001fb } }, { { 0xdddb8f467f57b6f7, 0x9168817a5c299428, 0x13d2ac64da2999b0, 0xaf50d1dfff93b13f, 0x46a95d3eb5f61107, 0x441f5be0880457b7, 0xa2890296e5f852e8, 0x5d7ff0030852b3b1, 0x00000000000193 }, { 0xa2f08458bab6dd20, 0xb0f324f304dbf597, 0xa9ce252aeca63d12, 0x3a7ec9e725cac7a1, 0xcc63060c00f9786a, 0x2ad1858a637c486b, 0x6e265f16374d53db, 0x2e45804181976844, 0x0000000000009f }, { 0xad7d2f0bddd650c0, 0x5623edf74da211db, 0x5cf7f1564a3a76d3, 0xc84441553ed6d49c, 0x651a0c1c980d7483, 0x740b2d969aecd788, 0xf126c1daedfb8885, 0xc33bd69c8242815e, 0x000000000001c4 } }, { { 0x4947077a5269ebc5, 0xaca5a28bbb4e899c, 0xb00450478c68222e, 0x8d7b69b47ae4c3e4, 0xdb575fe51e91b75, 0xd413f2c8372dc04e, 0x715fac6a3611d27, 0x98ff59aa6d2bb54e, 0x000000000001dd }, { 0x871f01d42c027b07, 0x91380f2de50f077b, 0xf48c3d09eeda088e, 0xbc8e2acba0c0b59a, 0x597d8a4249615a1c, 0x922da15486c5e250, 0xfa78dc15733fc2e7, 0xa8e4b8d4688d2fa4, 0x000000000001e6 }, { 0x41d844196f3e615, 0x67d97850eab65793, 0x7fffc3b7c87fbd65, 0x31fb5db9e03df70, 0x6e7e197b108a5d0b, 0x77a777cf03b9ff46, 0x3fdb0e80406a8a34, 0x1973c123b2b378bf, 0x00000000000154 } }, { { 0x6ce289bb0fe284b2, 0x5d6ec52431b6b297, 0xd7a8b851b461f63d, 0x364593fa4281c4f4, 0x24b9ffc5538a4cc2, 0x6b8f00b53793e650, 0x3b9044b24d82862b, 0x7754ab2bd1f5f621, 0x00000000000069 }, { 0xfae832e060f22ea3, 0x8f5a97d92d920cc2, 0x8721a1eccce6c9d4, 0xf58b854a9f5a9a5b, 0x5d98c71e673d6ee2, 0xa941a6eba6b4520c, 0x6b180818c7755143, 0x79c7e49d824f68a0, 0x0000000000005f }, { 0xb786ab2ce5047c58, 0xd80f1708e07d70d5, 0x4a26deef8b3731b9, 0xaac00a0075c66c53, 0x7adcb7d666f041d5, 0xcf93fd64cb6fd87c, 0x7247ef37ff5cd5e7, 0x358e9425f3242489, 0x000000000001d5 } } }, { { { 0xf95b65577f4e0162, 0x95cc2b3a09d81f97, 0x1d4cbbc1155d674d, 0x6abea12995a063a, 0xa1008767121c83af, 0xc0aa5eaa13fb5ed4, 0xcab20d85bf435510, 0x555c98efa6e539be, 0x00000000000027 }, { 0x7cdfc1d714a6f00e, 0x9bd2d4608793f10b, 0x29831337eb3317f0, 0xf6e9b06ae0312f1e, 0x9d1332c14c8c172d, 0xecaa7f09d523425f, 0x1f77794926263759, 0x21eec73548eea12e, 0x00000000000043 }, { 0xfbf87cc90ad5b12d, 0x4076dead03483787, 0x4d59295a697aee35, 0x8d32daaa206ca176, 0x1002ede75a783a9a, 0x9b0059fe149ea8c, 0xb92ec0d1d5c5f8a9, 0x7f31d10f36fbbf0c, 0x000000000001f3 } }, { { 0x81149d2de7e96556, 0xefa3151dcc32e5ba, 0x791f10121085ddf2, 0x73707aa872bcc370, 0x2a43b2c416d26991, 0xb68727d3cc22eb84, 0x68b793acdc5700e6, 0xe309041e914d750b, 0x00000000000198 }, { 0x32050e84720b2ef9, 0xb19308aa2bb73c0, 0x947fbcfcf47dfef6, 0xe4ab3d5626f2e80d, 0xb08b2f4b985bed64, 0x2daccb9e5afbf613, 0xb6aefc65545b9770, 0x115bcb34c560907e, 0x0000000000018e }, { 0x54c5e7d39715a9d7, 0x2fb84f428c4d8a2c, 0xb51c571df42c6c20, 0x2dc4fe27d9939b6e, 0xd73ba0b84a3badc9, 0x71a72469666f4270, 0x148829dcac96c22, 0xea5f97b2822dd7cd, 0x00000000000187 } }, { { 0xa34ddd896fa271e, 0x42cc11308a220851, 0xde694dc2c0c4a6c, 0x72825a3423f39d31, 0x66bf0c9df99e27c8, 0x811812b21a9a7579, 0x6d2848cfc1cac25, 0x99b787afdb45aa48, 0x000000000000c8 }, { 0xe8c19ac3526be34d, 0x9cdc9099e4629f0d, 0xe1b29b45fe0201c2, 0xe5257e850bf49528, 0xd756793fea7bc458, 0x961363beeea333ff, 0xd71730a0e9ed1822, 0x87cd9aa7e74b60c7, 0x00000000000039 }, { 0x9a990e0db5f6941, 0x85fdb451b3400375, 0x9a1fbc77b425befe, 0x847b59920396661e, 0xffcb56370c6568eb, 0x36e78512f773772e, 0x4374e9f52a92ee7e, 0xcb9e0c7cc945a9d5, 0x00000000000132 } }, { { 0xea25c05e45e2c172, 0xce7a8a80fef9a280, 0x57af6935ed15c363, 0x38a572dc34b023a2, 0x40c9221a51888c22, 0xbd34717d9e532860, 0x35560f08538c7382, 0xd7953efc487b421, 0x00000000000023 }, { 0x2ff6cedeab6c590f, 0xfed490c59c4bd456, 0xb89995189d524f61, 0xdf1a8bede6fe5fc, 0x4fa3da5709f1c67f, 0x5f5ecb1a870e7d32, 0x3e13580d83f52dba, 0xc1165829d3dd3d2c, 0x00000000000101 }, { 0x323721105355887d, 0x9ae0beabb1d03c55, 0x7d9635dfea59436a, 0xd122ea60ae6d3634, 0x2d9b448b71bd454d, 0xa9a67da68e3a1365, 0x9d6884c951d87ad9, 0x2552328db859e240, 0x0000000000001b } }, { { 0x2c008e8985b7a7e4, 0x2818e59f78e45231, 0x4ebb0aef6c8e50b5, 0xed7683305708d841, 0xca38ea5266ccbc90, 0x78ed8df5c4fa71fc, 0xf41869a4d295b5df, 0x37dfd7a7d48b0b10, 0x000000000001e8 }, { 0x95365a985663fe0f, 0xa1b0d13b47100939, 0x111c3c8c0077ba28, 0x582ec8d07d14103a, 0x4c2419191cb90f8a, 0x2396e17f83448648, 0x52de4d06b883119f, 0x741618293400e000, 0x000000000001dd }, { 0xd5df75cff546bf82, 0x8e16f3279d6d908, 0xc3869e976edfdf89, 0x6ae0ba8b9974609f, 0xb2baa02c18ce367c, 0x27824a2a2439c172, 0x470af7ea3ffcaf9b, 0xa47c41d6d8b6f264, 0x0000000000009c } }, { { 0x1390b208b28138ed, 0xbe65f561094e7136, 0x21adcab4202ba3f8, 0xc03918f109f0a7ce, 0x34dbce57c48870d5, 0x7729f36aed1bfd5d, 0xad2460c277e22b77, 0x1bf6e69f3155c8b8, 0x000000000000ed }, { 0xfa4454e889e5636f, 0xb83d4f75e1d956c2, 0xffe1f93b2f44ff06, 0x3398a3184fefdb80, 0xb31da78ef1579dfc, 0x82a8bfa4964515a2, 0x3128aec059b2b2ab, 0x6015ee55ba271f, 0x000000000001bf }, { 0x73265e3ca0b95521, 0xc24bbc5426ae6d81, 0xbdda227b048a2a78, 0x4475f52a59813c1a, 0x929d18f0cc651bba, 0x8a2ab6fd54f9b8e1, 0xa797bf635cde49af, 0xf25a1e16f9fb0fd3, 0x0000000000006c } }, { { 0xcbce32f81dd19dd6, 0x3dcfb16ea0dfe8f, 0x96f881bf225901c4, 0xcccbc357e4b98a0f, 0x75d6dfac78bbd591, 0x773128aca27c30d4, 0x4fe32783814e00ee, 0x7470097ba0824396, 0x000000000000f7 }, { 0xfde339b533f0c125, 0xb9ffd8ab6b5fa578, 0xf2f717913d2f1261, 0x6081f5b25e2f0f3b, 0xec438d0c1196ad02, 0x9327f463f05ff5a1, 0x97a5879363e9201c, 0x66b8a17214c03b66, 0x0000000000016b }, { 0xbf961b2413af6597, 0x71be9bf97d99b8bc, 0x6dafdd33d638b742, 0xd6689f90897fb7ca, 0xe399be6b5eadfddc, 0x6655c72b036a42d0, 0x7aa03046970b7358, 0xcc1f37001301b24e, 0x00000000000084 } }, { { 0x2f70e2eeaef4e8e1, 0xb0cf420a8e0937d0, 0x3e3b6f878549c1f3, 0x62cbc24e2f50eae0, 0x7c04507fab49fd43, 0xaf3bca2fabd7f9d7, 0xec219527afdac192, 0xa9e0a6ebc2941843, 0x0000000000001f }, { 0xcbc022873e9383d5, 0x69b4adaa93384648, 0x48f1c8b8a94d4e92, 0x628585574da139e7, 0xc173be97b7d2f0c7, 0x2df00712f06471e4, 0x920f68714002f94e, 0x2582b3a2138e2e4, 0x0000000000013f }, { 0x6613e71da842a0ad, 0xe18837c594e59635, 0x37dcd556bf20c3b9, 0xc52f33f5cc480ac6, 0xfc7e1d79408f236b, 0xdc3093824cc2da34, 0xb3f724bc6089f8cf, 0x6d063d1fa560735e, 0x000000000001bb } }, { { 0x2cfd3365e868ec87, 0x54532fe3f15ca47, 0xe60a963048a5348e, 0xb29ea4ac399c8fda, 0x3b8aa631aac9e8f6, 0x4b7182e0bd6774de, 0x8fa650bbad1ee500, 0x6258fc01d9186a75, 0x00000000000058 }, { 0x9cd4de61ccda0dc3, 0x256024dd38e64baf, 0xa1d31b6b55197b38, 0xeb94c9e3e76ef91f, 0xccf71ec3511e50fa, 0xd3c540cb25cf683b, 0x3cb3c7ae4136a89c, 0x9d4420efcd917ad0, 0x00000000000004 }, { 0xa056dc1cd238a657, 0xde44678f4ad0c3ae, 0x8be4f6a37f58a5f1, 0x3ea53e9da6c3c224, 0x25b89b86263c9513, 0xd771e6d28755e883, 0x23746106a26300e1, 0xbef959a822178a97, 0x000000000000f5 } }, { { 0xba1f85c2f4c7a3e8, 0xf1e3252e5679d89e, 0x9025303f88023089, 0x2f829ce330817587, 0x23e67a612d42fcc6, 0x1151f3a6871b9199, 0x7098070df37430ff, 0x821f9ed2ea624313, 0x00000000000097 }, { 0xd885066dcde7a864, 0xc642c7d964f572a9, 0x4d4489034d86857e, 0x28159d6c1fd87403, 0x39deecf7d0791056, 0x485b3fa6872c119f, 0x1355108556159619, 0x84e24b43c239ef54, 0x00000000000052 }, { 0xf2c7ffeefabd648d, 0xd51c418cc2bc587a, 0xe4ad701b3e32e66d, 0x5382a8e1ae4f7f65, 0xfce4c06dc04ef998, 0x6f7e852c2b620ba2, 0xc183badceb7c3e2c, 0xc937544356928af1, 0x000000000000ad } }, { { 0x8780fed79aa3c07b, 0x44864364c4ab513b, 0x33fe966821bac1c7, 0x70187d67aecc712b, 0xfa967b9ea9a8ba39, 0x31922ce46f858032, 0x7c6e396834f3a480, 0x33001ddc07f38a33, 0x00000000000023 }, { 0x3c87740dcf11bcd2, 0x922ace6ffe4ef7cf, 0xad4ca35169f5a1c6, 0x3b4dd7a7c976dfa3, 0x51e765d0261acea3, 0x7c4d31e39e946213, 0x266e692d1267e40e, 0x7896ec1a6c7413a6, 0x00000000000170 }, { 0x297add7ebcbb948c, 0x750a203359b76cb, 0xf444dec69112b052, 0xb22fed09462052b3, 0x4f56088b4ce62065, 0x2c52da9f80137c5a, 0x5b13a444d74b158f, 0x60ff847fa76402c1, 0x00000000000025 } }, { { 0x7c549f3e700ebbef, 0xa676e77cb2592464, 0x6f2ba2f53193643c, 0xe5c78ea35a45f47f, 0xf9d9244b19a03940, 0xf437853abe3e4d1a, 0x6572f0c2b1071bb, 0x9f4d02677237b9a6, 0x00000000000073 }, { 0x341cc142e7aac1a7, 0x71a0696a9d209bf6, 0x9c4a6cf911eda624, 0x36258470fa03753, 0xbbaf3e379afadf8a, 0xb51ce9c432b89f63, 0xfb309c39ef94cdf6, 0x8805686770a123, 0x00000000000126 }, { 0xdf0ed007393f96fb, 0x35fd295305f98714, 0xc3e72f8420b52b96, 0x9deb4cf8238d4f5b, 0xe6a0e949b9d4a0b7, 0xaa1a3f6707a753b, 0x99de798ee1fd6cda, 0x58d35e6e9f798a33, 0x00000000000091 } }, { { 0x1c70b612df230bce, 0x1146295a895bcf65, 0x3c932dfe9fad5019, 0x84ece3848fe93a30, 0xcd236ca9c5acd7c4, 0x895db26623d0cc71, 0xd2d6452451f60fcb, 0xe3f6b6518bcc64d3, 0x0000000000008b }, { 0xf8c6c0634d1c01ab, 0x5064ffd262ff4968, 0xf5885b87f8349fb2, 0x7967be10b88764a1, 0x80b6dad2f127ba14, 0x9742f01b13e34e1, 0x7dfa82a76bf9f1d6, 0x8bfbbb5795cb0acf, 0x0000000000003d }, { 0x1189953f2e91eec1, 0x461f8118a10fd88f, 0x4e824983f3dc8f21, 0x3fd0347d74ab7b47, 0xb5fe3ffd5db13ca2, 0xf534a98f2d6bf11e, 0x782f3f856bcb9e1, 0xca39d0bba78a55b0, 0x00000000000177 } }, { { 0xb6a56d51e26b73f6, 0x806d137135eee870, 0x55a0ced53f6acd80, 0x7314eddfab6ff527, 0x2e0a70af09f56c80, 0x3ceda63dc4dee65c, 0x72ecbfd51dbedf5f, 0xca8694e21e571095, 0x00000000000039 }, { 0xf53dee4c24b88cb8, 0x6eac9352009ad110, 0x44b6b686fd63d364, 0xefdb18fadfeb5a96, 0x99c5add6b9c7aec, 0xa6a973216b59f385, 0xf833504b8ed28e46, 0x757eb5722f065fc8, 0x00000000000041 }, { 0x226d224b84b306a1, 0x6ee6885a48034e33, 0x2097b08e3d2f0ec0, 0xbf7d80ce30f34dd3, 0x9662fdefb032bcbd, 0x9482ff172d4327c7, 0xc939dca08bbafbc9, 0xa7eeb6b852945419, 0x0000000000019b } }, { { 0x116e7532b98ea977, 0x17a9cb27dd1b92fb, 0xd520025c1ac99be7, 0xbee42415cde3dfb4, 0xb39ef93e666d48d3, 0x7343e548ad92b21b, 0x1b8c576010a15098, 0xd1cd9ea64cbd4111, 0x00000000000165 }, { 0x29d84e5d1bad023c, 0xe5cb4bba675383c3, 0x81bab1d0af744257, 0xeb5de81f97129b79, 0x3a37172fb7e3baff, 0x34743ef2ac4cdbe0, 0x130d8592b5c16cb3, 0x5a35a40f575e1ca5, 0x000000000000be }, { 0x8279e007b07f5abc, 0x87648ce1e87bda4, 0x8da56b8c1d39038d, 0x76d7a5fcb5bdc4a8, 0x9938034bb2decbea, 0xdabee9926c4717da, 0xa09f24af12dd3f20, 0x52ba22ef03275104, 0x00000000000102 } } }, { { { 0xb8c7a48e96d699a0, 0x8e786bbb442dd978, 0x6812a57c601b7c8b, 0xf8a6e46154d970c4, 0xa537d7a2174d0681, 0xc9434144cb1e3c48, 0x1babe14c113d80b4, 0x97a621043bfd6049, 0x0000000000008d }, { 0xf51554bb29593331, 0xf5f856b43808a9db, 0xc7810e02549cd161, 0xfc1726efd9b07645, 0x7635c379e39f6eb6, 0x75e793aa0aa94a79, 0x95f85594cb680ab9, 0x17cd81694a3abb03, 0x00000000000131 }, { 0x7b86c01b8b568c01, 0xc91e7189b5f3ee04, 0x4c50d5b847438d98, 0x2f1e819ba7c46220, 0xb321667fde25cd95, 0xfb6fc88f301742a8, 0x401082fce2f81101, 0xe62b0d75b0cc1918, 0x00000000000123 } }, { { 0x9dbd36b3038454ee, 0xf4c7c3651012fdd1, 0xc6d73824500aaf01, 0xd2032db62a8370d1, 0x59e4c42f042c3cab, 0x31df6672b3ddc261, 0x218d2a52571f2394, 0xfcaeb9fbd566d6b8, 0x0000000000002d }, { 0x8926f6428359d343, 0x1b058f4238e06276, 0xfa7d2665267fd044, 0x29a64d94b8f4f26d, 0x89216722915eb1c, 0x51dacdbf1d6d6b40, 0xd33b43ee05d57b29, 0x6af29c73f4a3bdf0, 0x0000000000006e }, { 0x5006e687771d3d63, 0x73a1f4a0c41cbb7, 0xdec8572f3ae2a74e, 0x243e893d3b5dfafc, 0xf9e587485e5fc007, 0xc0ed986c70ba5ebc, 0xa240da8ac3e3044d, 0x778b170c1f51047, 0x00000000000062 } }, { { 0x2fe2f276d5ed7e9b, 0x29cc9f52664cbfc5, 0x72117f7fa8840905, 0x7e9777b5108fc83, 0x539417f2ba16fef6, 0x2c75e617e26912e, 0xee3b0b833dee8cd5, 0x69efb75d5ba4b714, 0x00000000000166 }, { 0x49c4e8ed53135148, 0x3cecf508e86ddca3, 0x4f0dc1bb22cc7c85, 0xed0987bbd7c47521, 0xc533b28f5df462bb, 0x12b4ff8afceecd3a, 0xcc8e2a5fe9d241ae, 0xaa1bfb524dff980f, 0x000000000000ce }, { 0xed7506b0584f9cc7, 0xe200d422c6ec4494, 0x91044f42c2f83646, 0xb02dec44374a99f2, 0x54b17efb3cb50bcb, 0x6499843d0fc02953, 0xe95c56aea3df7fc1, 0x108c3b9618b03a04, 0x00000000000131 } }, { { 0xe50018b268194df0, 0x1edac53de1f19cd9, 0x48f51a897aa5653c, 0x2b2a9736972cbe8, 0x5d276fd3dddc39a7, 0x515f9ce76be223fe, 0x67f6a790d8237ac6, 0x982d8063e271a204, 0x00000000000109 }, { 0xa657098d921be1af, 0xfbed3f04d1bbf271, 0x6fa6576edc897032, 0x60c748734b1ed548, 0xbfb33aa233ba131, 0x79657e2e9702f5e4, 0x94e1f72b0e8fd59a, 0x6de92d2916d2bd47, 0x00000000000030 }, { 0xf755cd56d41a73da, 0x1db135c358e79ad3, 0xb513e8cb53bf4055, 0x55e20369607574b7, 0x15c627928bdd7a92, 0xc95b9357c78ce2dc, 0x336c5e00ff0e82bc, 0x1814bb1ca34093ad, 0x0000000000003a } }, { { 0x86fe92ae7e178ed7, 0xd752b898c8ec3648, 0x99b8b5457fb16af5, 0xa5525edd18f67b1a, 0x726f715a6fa83b03, 0xcb26d1161481ad9f, 0xe6686ba1a4c31ba2, 0x26f2391d022712d1, 0x00000000000127 }, { 0x5d0919e19ec032ca, 0x99e807434d81ec81, 0x7218d1478af85750, 0x261addf2f683e286, 0xba0b38eb7631a897, 0x8d275ecf9095030e, 0xd75343bb2aa4f9d7, 0x2c54c42dcf8916dd, 0x00000000000169 }, { 0xe3e5c0ad5961cea8, 0xd85e55a39337cc85, 0x4a0eba2061a3e056, 0xfe704c51f9c3a0d7, 0x4c8224cba77e5a4f, 0x5759233172926c6b, 0xeb09aaa2cde7593b, 0x2b1c415fdcd32881, 0x00000000000117 } }, { { 0xffdf0a181100835a, 0xd87900a1a7c9cd10, 0x25e929aea1e4547c, 0x9f7776cceea755cb, 0x5802c268085b753f, 0x5e47889a827ad621, 0xf7bd29595fc822ea, 0x50a345dd68e99890, 0x00000000000035 }, { 0xebac6ae8cc97fe1e, 0x33de726767079b49, 0x9aa6bfd80942f7f, 0xa8023d5e02ee62b1, 0xe06a54a5a87efbf3, 0x9cc1e56b3d8bcf57, 0xf5147bf66cae7672, 0xfc814fade3d71eee, 0x000000000000af }, { 0x765fd85078b078bc, 0xa1b4561298d982f6, 0xcb51f77aac67fb4, 0x93676ce7426e01e1, 0x700331de5f9475df, 0xbac55f0f60024ad, 0x67abd292587ac379, 0xbc41824075950d27, 0x00000000000021 } }, { { 0x8eed1d4683379fb0, 0x863e47b3b03b4de3, 0x9f8ce5104c600941, 0x824d298a199c61d, 0xd4782d45dd57a931, 0x11fc71e1d18a29e5, 0x5d6ed61cddcaed3f, 0xbb5c4fe25d6a5562, 0x00000000000100 }, { 0xfcf5dba5e02e8a50, 0x77a4150e3aaf3f87, 0x2412fe9cd3467d00, 0x29fdc4e79bfb1ee6, 0x76fabf4262773d33, 0x2085df397dcda91b, 0x5250c8316f287bb5, 0x605c38a0a7dbfc91, 0x0000000000008b }, { 0x6c209e7691601021, 0xa305dc97e51b34fa, 0xac9045d4c768ad34, 0x3de3cda4d5e3a3b4, 0x57792a5f6e659896, 0xec359d807ca3855a, 0xb743ffe0603ae6d3, 0x8ae3d18206ec24b9, 0x000000000001c7 } }, { { 0x890ad985f4aac2c, 0x6d520da570348a3d, 0xe4110ec9f9859595, 0x1822b09fbd2c752f, 0x70c626d9e1baa079, 0x3c946e006851ae2a, 0x31ee321ec4f40bf6, 0xe72c0ad132cde0fa, 0x00000000000032 }, { 0x7d7b4532f41674bc, 0xbbab2fc0b632f46c, 0xbba977d55f11734c, 0x81190b371cb120f5, 0xcf63cd9ae5d09469, 0xa076116ffbe2d6b1, 0x40ef4f1b4066ff2a, 0x3c330d0a833ecfe7, 0x000000000001fd }, { 0x92f918c0998cc57c, 0x1c77e386717b2491, 0x52dd4add74d890a0, 0x45f76302976f9049, 0x3237631f2447e100, 0xbde6035c785eeb8, 0x4969b861ee5925c1, 0x880605673594dfa3, 0x00000000000081 } }, { { 0x239ba6a19f87e3c2, 0xaeb7e3d698dbf038, 0x2bcfd4502fb8bd0c, 0xbdb92ce1b9451782, 0x6d2d4da9d693ea67, 0x84dc525965198a5f, 0xc85d8aba2391e79d, 0x74bf1008a5a17d11, 0x000000000000ea }, { 0xffb19453e08e36e5, 0x4019dffd612a1c9a, 0x65df847555d98814, 0x36940ef018b011c7, 0x519e6019abb26201, 0xdfdb3e1e99f19f78, 0xbcdd7dbb340fa32d, 0x7055c1bb0c89d006, 0x00000000000075 }, { 0x51383c0c5df80960, 0xe59b34a426f5878c, 0xa595f015145f5ff6, 0x74f3b7a373f2ad98, 0x74c93138b14e8a89, 0x6aa69bb55cd13945, 0x2a3a821a7ce09c07, 0x4768805839dfdb8b, 0x000000000001b9 } }, { { 0x3562336df0fde9f6, 0x42930500cc914e4e, 0xd1050a5548c19b7a, 0x5ba00a5899eeacef, 0x2981d461610c68ff, 0xb30c81563b709e49, 0xcf300b56e90c8b85, 0xa8e27b2eebaada72, 0x000000000001ba }, { 0x1125c8e8d10364d2, 0xb5013595b6e22cc7, 0xa931a8b066c59523, 0xa85617499d1c5ba1, 0x7a1fdbb247f9bf9f, 0xf13a501a75fef48a, 0xb4ad201b42a5e2c6, 0xd2664e9ba9f49c56, 0x000000000001e2 }, { 0xb513119fe41cb4f3, 0x475f7e0f9cc82c78, 0xbad3a10115cc5740, 0xfa87c5ee3f53c5c1, 0xd2e5dc9dde5fe8e7, 0xe9750ef844b4f5c4, 0x2f323298a5ef1728, 0xd4b05b4b9557aef2, 0x000000000001e2 } }, { { 0x3c12d3b32ffe2903, 0x2d906eb5b138e861, 0xb6d2d5538e364103, 0x699d7bc0da8f31fc, 0x9dd042b796a0ef4e, 0xf3daefcc8f650daa, 0xc216b2886f22d321, 0x8b8d9926d8290365, 0x00000000000111 }, { 0x974f436e15e01ca, 0xf88c59bc0c94a42, 0x8dea2123841a2e9c, 0x523a24531d7d6db2, 0x8602459ef30edca2, 0xac8e8c011a3ab81d, 0x1762ff8867d9edc5, 0x51a840eab974242, 0x000000000001a1 }, { 0x8be9093d70cfe021, 0xaa00fc97c5e1a6ba, 0x1ce3c99c4a1e2533, 0x62b66289d3c289c0, 0x9ab06fb880dc6416, 0x4c7a9581869b810d, 0x618cb783ab54e8e1, 0xcbadd741a6c132d7, 0x00000000000093 } }, { { 0xc4ccae669cae6df9, 0xaad3a9ae2619e0ae, 0xafbdd42b8e19af3f, 0x99f0db476a3b3449, 0xdd08d8c2cb35db9a, 0xcf7e88ead6e613d1, 0xd7afd29b8cd0b153, 0x24273ad3525d43f2, 0x000000000000c4 }, { 0x58620792e7c89feb, 0x5b19bee9e33a1383, 0x667641c472658939, 0x5a5ee1c78d42f973, 0x6e85c1e200414e7c, 0x240f61f313f2841, 0x96843cd17eb07a1a, 0xe9a980f07c73e096, 0x000000000001a5 }, { 0xd065c5d15b03a070, 0x3d9bd1dd7eb1b01e, 0x138b9efd0cc0cf4, 0xf084f8a4e5ec9ccc, 0xbdcc70b885c28e23, 0x2c9d756e56e15b00, 0xf0315ca9ee121d9, 0x2d8e04f9d3ce6ddf, 0x0000000000015d } }, { { 0x403e07e8f45ae46, 0xd0e23b920718de3f, 0xb0d2b6616c01363d, 0x4962d9ec3470a76f, 0xddac75ae03fa96f3, 0xa914d6bc5582047, 0x249d2f441a16dcf5, 0x4915e285c442e4a5, 0x00000000000074 }, { 0x3480d7166cbb369a, 0x40ff47331fe3343a, 0xcd6a6a06b38ecc0, 0xe857f090f0dd9e5e, 0xb5b529b6ef498f75, 0x16f5672cb58e6aec, 0x39e40068bd02bf26, 0x39b43a01cb656a6f, 0x00000000000174 }, { 0xad58ec133ac9cb6e, 0x5cc7331afa604ea4, 0x7106c409a1e407d1, 0xab96bf785a4a32d3, 0x6b2ed2c04244d8f5, 0x433f7a7c9d582101, 0x80f8d14889e73e6, 0x7a97bbda517de85a, 0x000000000001b2 } }, { { 0x8a7371c42c96a879, 0x32299d9383ed4660, 0x359f21a3ebd9a017, 0xdd7cc8b5066589e2, 0xbe70633ab84b94a1, 0x9830d0852bb9dc39, 0xab649239b959bc2a, 0x4f87120600878439, 0x000000000000a0 }, { 0xe314c96801b1b989, 0x6ee1b2b24988bf98, 0xf017c8031efde419, 0xa8f6a185ef6dc0b5, 0x6df4a80113de2180, 0xbb73f8d0310753b3, 0x87ece658601bfe93, 0x602f729ca6878590, 0x0000000000001b }, { 0x3a6a2ec744b447d8, 0x8636b0a099071da3, 0x94706548e9c3b5d8, 0x6afeb22b05b7d352, 0x2157cced02dbfd7b, 0xc247fd161c39bdaa, 0xdbe93cb9815a9ce7, 0x3f56ba0fadee60e9, 0x000000000000a6 } }, { { 0xcc1871d03008c8d2, 0x32f3547616bddd5e, 0x3807e0d351f15162, 0xcfe58a32f8b21227, 0xa3b6c7d9f037781, 0x3bbc2df98fcfb0f3, 0x9dd101d5340874d4, 0x66604ed8b4e237f9, 0x000000000000a4 }, { 0x7cb2244b56135b23, 0xa767222ac94beccd, 0x63ce64c42502c508, 0x3abdc7a4dddd8b8c, 0x6e221b62b291a69, 0xbac1c947851bc6da, 0x46f06b3d1a732c41, 0xecb52ba3a37b9c71, 0x0000000000001d }, { 0xfec29ebb85e5b8d, 0xa5f83ca4d91848db, 0xb5f82b7a00db3324, 0xd4ff6435c3c5b64f, 0xfb147e2cbcf4085, 0x948fe46f69bef228, 0x216dbd233658a6ab, 0xe38faf17d82f46b3, 0x00000000000079 } } }, { { { 0x26443585260fa772, 0xcedb2c0bb3cebe59, 0xa0cf8e4a42541570, 0x2cca16040d0548e5, 0xeab5e6f9e26b757c, 0x8ca692df575ac1ed, 0xdca8caa14c7e09e8, 0xd01c3693c4fe8332, 0x000000000001e2 }, { 0x6854549c9fb1c8a7, 0x39d93e559c614e45, 0x81c521c1da792e21, 0x602aa227f22bf601, 0xa28db2b75f32203b, 0x317f0bcd523df699, 0xa2af7925eaea7cdd, 0xadbafca1ac9a329f, 0x0000000000013b }, { 0xa17436db4fc5cc85, 0x2ae5121edc4d7c5b, 0xcb4c5d7ed747acab, 0x62b87f7af335d473, 0x707c4e95af8888a5, 0x529f2948fe5a86fc, 0x357cde3a326b444e, 0xcde6ceca69a84368, 0x000000000000bf } }, { { 0x7f09be55c472e5a2, 0x26e05220d068c606, 0x75afd431d031c424, 0x493206ab3009d5d5, 0x3bc4643597251bb5, 0x2dc8c438db1e9f3, 0xc28b65666390d16f, 0xec74ec56cb03fa7a, 0x00000000000024 }, { 0xdd2818e9d2c08627, 0x61638bad28f523e0, 0x1ed57fbdbbab8d66, 0x840d06d0a325dacf, 0xfd39b3834e66330f, 0x3d4071d4c4c96b0f, 0x29c6c30c4addaf25, 0xa325f25cbb794758, 0x00000000000029 }, { 0xd086d186da9c94bc, 0x98c9eb31da8c8e14, 0x513be8a0bdcaa264, 0x93d4d8abdef3e238, 0xa84dac637eb2ff42, 0x35921ce7722974e4, 0x7b2a9bc47330bfb6, 0x51b5d639bd3ddbb5, 0x00000000000174 } }, { { 0xcf0494e22e2acf95, 0xc02d12442163d538, 0xb3095479d0f253d0, 0x2405c0a80a06fd98, 0x902eb9632331f428, 0x80e4264fe0420bdc, 0x6eb1b47f04b7829, 0xf393ab57488acdf5, 0x000000000001bb }, { 0xcea4b486227d2ded, 0x3756997047ffbf84, 0xf0c90b16e2b1c689, 0x860ab68e55ba7d98, 0x6fc2f71cf0466e8, 0x5f856586cf1936e7, 0xa8d330df5653139d, 0xb0d30261069aaff6, 0x00000000000063 }, { 0x28b68f625da20e29, 0x2b850c344ff4ea9, 0x9b3749fd014a71d4, 0xdb720926db145cbc, 0xa116fd9e0eb38ba8, 0x242f87f5ae0f624c, 0x9eb03ce9f689ff15, 0x2ef585899b044410, 0x000000000001d3 } }, { { 0x5ac3a359d093d839, 0xad819cd44319340d, 0xd5506564b92d864e, 0x30244b5f60937f4e, 0x9fa47fbd644cbe65, 0x27916461b1111b9a, 0xfee9986b654dc3ce, 0x1ea8f412c9b94fe5, 0x00000000000081 }, { 0x4763b34d0fcddf25, 0x84eebe2c3e10b3a9, 0x9b94d787f15b7978, 0x2482d1ba162878bc, 0xd29d91d3e859ce92, 0x9729092b33c1e414, 0x79faffa7f62270ed, 0x78e53cc986d599f9, 0x0000000000010b }, { 0xb407d351dfa257ef, 0xb14175d4443ce811, 0x6c535aa18ff1240, 0x81db098e042c3411, 0xc3c8d1e8e0cbe0cb, 0x4818d2d03919641d, 0x81b405d538456435, 0x9ed1d596bb27985, 0x00000000000186 } }, { { 0xe6ef35ee5d431c37, 0x79c8312c74ff2071, 0x3720c0accbe7abc6, 0x63166fa49bddb21e, 0xf03deb40571a3299, 0x195df5ce47904733, 0x26e5197a908d815a, 0xa2f78621547626df, 0x000000000001cb }, { 0xcb4afee69f97eae, 0xea0bc2c5b496ca87, 0xdf9e0286636743e7, 0xcb747e3d35427ca9, 0x6da51dad741d15c3, 0x6f1a5d245557de16, 0x9c260b4380c4d70e, 0x9a8dc4a4ca750952, 0x000000000000f4 }, { 0x59033b6cd00ddb9c, 0xce3db2a25aa0a92f, 0x6c5fce60031c9853, 0xb338084ed652ada7, 0x3080401a289e1694, 0x6e74b43a920a657f, 0x61216d060ffa39bd, 0xd12543d3d8e1d6a6, 0x00000000000079 } }, { { 0xa9bd31a0000fc417, 0x2143fcedcb432107, 0xf79cd41da59df7b1, 0xdc486ca1a5cb0ab8, 0xb32ab4b2f4196868, 0x786c5e6a8cbab8df, 0xb72063a2e4e82cb, 0x52419e127892aece, 0x00000000000030 }, { 0xf498c30c11f7927e, 0xc8bee9052d9632b3, 0xffd49a4e4e3d0c31, 0xad9bac4d06d5a948, 0x260136118ee2a540, 0x12622f71b3d06d99, 0xdd748448ae97afec, 0xa37f554b009a2fd9, 0x0000000000007e }, { 0x25d293228a0a21fb, 0xbc8b6def60c94c79, 0xcda17a776af2ac6, 0x8524fd63e75bf0df, 0xc2058ba890371db5, 0x1407f6e7f3176a37, 0x97f42aaeb53c38e3, 0xe9de00f816864eb5, 0x000000000000fa } }, { { 0xf9e0e38d86dce7f6, 0xb58b06a5c0cfd46b, 0xf485a99547a11775, 0x5e92443860de3c98, 0xad2f38dfd5350ebd, 0xff73e0c9f374140a, 0x812e9ac498ea94c6, 0x3823a314be9f0673, 0x0000000000002b }, { 0x9002311891d7e2a7, 0x9e6b5df3b162482d, 0xade745f9b799ef1b, 0x98c57620a761ecdd, 0xf81396c87b3e0350, 0x9d67c0a74c6c4d66, 0x28677c5760981fd7, 0xad17fab76d345502, 0x00000000000060 }, { 0x7330768f11d393bf, 0x42b2d91536337fd0, 0xf5462d82e320bbd8, 0xf4e588ebfbcd19ac, 0xc370acd23cd13060, 0x76d80ef2727deb96, 0x980dc5ff328306c3, 0x36556e33366e848a, 0x000000000001fe } }, { { 0xa71ea5edee11d134, 0xbb7e84234a0b27b4, 0x71ff59a08565ffc9, 0xd7f4f5d1d6f3f2bd, 0xc7f02247dde3ca8c, 0xcd7470493642b13c, 0x9cc0f81cf3a79bef, 0x53a81fedd858c058, 0x000000000000b3 }, { 0xa5c3e07320d48a00, 0x855e5f2f78b6d9fa, 0x77c66eebd38d4107, 0xd2f37d58c9f502c8, 0xa3c6750a92fd54d9, 0xaf217d1318265753, 0xb9aa1908090e3269, 0x858624be7b26130c, 0x0000000000014c }, { 0xf473037d05a07534, 0xa82305a65bcde1bd, 0xc32139f216b32e74, 0x60fb2f01a700ed7, 0x75383760814ec7fd, 0x117665eee3712a39, 0x5130e1746238887, 0xf3e8f027bf1cd51, 0x00000000000060 } }, { { 0x739d9bd39ca6eb23, 0xdd282aa39e37b9de, 0x5b64af73813c6c5e, 0x858f5c32b4bece94, 0xc932e3525a7c7a20, 0x7da58b26c761939, 0xdd83d9b6b430bfb2, 0xf5790e7c41b740b6, 0x0000000000002a }, { 0xf7ad492c9ab2c60c, 0x87d9c89ca50946e5, 0x1f0ee25e25176695, 0x64c0671abbc99854, 0x343334288b169880, 0xf2d5e0ee2b07b494, 0xf0bdbe735188de85, 0xb68b2402d1201016, 0x0000000000001b }, { 0x5a15081d27c8abb4, 0x6d52159208e628e3, 0x5b8e01d3ad6f46fc, 0x87d516d6610bb1f0, 0xd02060026330b2e8, 0x54a8d971b5497be7, 0xb63803464d2155f9, 0x112b91f232c5a407, 0x000000000000af } }, { { 0x8c38cda62f3ddab7, 0x70a47604dd62bc3b, 0x26daf86627614e0e, 0xa0df18936d67053f, 0xb3af0fb9b3d5e903, 0xcb397080de9bfce4, 0x757c82947ee7cee2, 0x11c3c769250b61ee, 0x00000000000020 }, { 0xe25f3fb8f2d4baac, 0x18d4a0dae593ccf6, 0x83f49f1e3be2d468, 0x18acf49214945729, 0xecef57020bc3ddf7, 0x3e97fc7cf3e52d9f, 0xdc49fde5033645ef, 0x3b7e53512bd8c81e, 0x00000000000024 }, { 0x3d65e174a3fee7b4, 0x7bac4e5f37c10ff3, 0x3b08ed692208edcf, 0x8cc7adbe5e7f767b, 0x7fd173b90420918c, 0x211b008b7e1b31c8, 0xd5262413bc035fc6, 0xca065245307d98f, 0x0000000000011c } }, { { 0x315737e5e929f6fb, 0xe9e37089071a3dd5, 0xe2838ea2b7ff2d97, 0x7a3c50d1a92bdfcd, 0x7050f53f900cf177, 0x2d7c4fdf44e4fc00, 0xdd0b6913b125042f, 0x1dac3d5928b7928c, 0x000000000000bf }, { 0x71747b1363a5e310, 0x9ccee3d66b9a1918, 0xf61c295e6861d0c7, 0x47a01b3fdcc4656, 0x2621fc802b2a9c5a, 0xd92025dff2a4b07d, 0xeacb445899a42036, 0x585131b43b778a04, 0x000000000000aa }, { 0xca8f6688d8d75ec4, 0xab04798774911640, 0x34807dadef72ef4e, 0xa06aa3113deaaa7b, 0x483fc52dba2a98c1, 0xe2a9889e89a8db82, 0x2fd928f25d4cc280, 0x62f82bab5aff87f, 0x000000000000e3 } }, { { 0xf2801be58a068d42, 0x423b581ec840cc99, 0x482181b206e03e06, 0xba77553a57d3ab56, 0xeb3950450c4b867f, 0xc84a19a110b53b93, 0x9a4bd3d6e4cf5e4b, 0xc281c8ed3ace1ecc, 0x000000000000ae }, { 0x26608994e8587304, 0xc392fd1e965f3c74, 0xd9d1f4a70daab849, 0x79504fc243ab3115, 0xd118ad7d318e1af0, 0x6a7d4bb689635aee, 0x2ef181cd4a994c68, 0xdd7420061787c242, 0x000000000000ac }, { 0x9d488d356b291c71, 0x889724dcf36dc5b7, 0xf5fa6aaa14b69b5c, 0x419e9f4cc2ba7a83, 0x12c6bb2c86fd0c99, 0x340c495f5697cb4, 0xe01796ce0bf3cbb8, 0x49f1ecc1a746638d, 0x00000000000041 } }, { { 0xee4cb7ebc25441fc, 0xd3c75e453d0f83b5, 0x1cfff88ccd154792, 0x6afb1123871e2fff, 0xdc07617e08234acb, 0xd2ff0bafa0f66942, 0x40f0efef78ebe88b, 0xddd8ada6a4241720, 0x0000000000008b }, { 0x266aa35d3ffe4c7d, 0xb90cf57b7867aa91, 0x9ad7e549d53f4b99, 0x4bfa79ebdfda042, 0x380863d6ca19e464, 0x22511d5c9f418440, 0xc81735a9555e6e4, 0xdc7def77d54b6f36, 0x000000000000c6 }, { 0xfce029e725e9c838, 0xa16b03453648b015, 0xa05ce19085f2c0d7, 0x6069ef5453f46865, 0x4b809833b995826, 0x61067ebd841e008e, 0xc750799c80b88829, 0x89e022d398c99ae, 0x00000000000198 } }, { { 0xee8804bf99a687e9, 0xc161f2225860ecab, 0xcb79dc7526087f4e, 0x6723476b53da1a93, 0x1e1ce3a7d3ae57ba, 0x332737c086a5f2d8, 0xcb4f8e8f0c3a61fd, 0x5831b70a37d83b3c, 0x00000000000073 }, { 0xdd2e7a7c97d81bec, 0x5a803f0ed483ca5e, 0x23625f57770db15e, 0x127a2cae71eec1c5, 0x386035f6e032f501, 0xd1df3d9ab2f8e135, 0x26bf48670a1861ac, 0xba664a53fa6b8748, 0x0000000000019e }, { 0xec4fb2c84dfe587, 0x3a6c12bb562d798a, 0xb9b6cfb5109b7b24, 0x4db40f4b2d11399a, 0xdb751e2f062bf52a, 0xd5a17a5db03366db, 0x2d1bb6dfaca7019f, 0x2b70268146edfe78, 0x00000000000052 } }, { { 0xb6e5b404bd8f9c0a, 0x68ac26928fecf7d0, 0x3b65bdad616ce51e, 0x1c0db8c2f6b3f9ef, 0xbf76cc1fd2af925e, 0x437b1075d930ffb6, 0xe13b7a87b4c79b8c, 0xdea1e4208b3c1e63, 0x00000000000147 }, { 0xe7f9584fd0eabcdd, 0xdbb9c1128cd3da6c, 0x7d406e428fe10d9a, 0xab7aacd6055836f, 0x4cf57b0ed0742d1f, 0xad0ad4db3d18f8f, 0x594e3bc7bc3bbbb6, 0xe4c2524f7d0e61c8, 0x00000000000168 }, { 0x4645157047c49627, 0x98c28dfe39a22199, 0xa1d6064828b5534b, 0x41331317cd94b495, 0x9f975aef0e1c754d, 0xfa8dc956a04719a5, 0x2c2b918d00e4e8da, 0xafded51855fea0ab, 0x000000000000f9 } } }, { { { 0xd7aa71bedf2390fe, 0x9bc85c90f5aab75, 0x1eb0dec7df8b993e, 0x5b210ce8837d67cf, 0xcf37d96d358ce288, 0x8f018bf761db83e5, 0xb4580439afb14169, 0xefdcb6a096a411f4, 0x00000000000021 }, { 0x44e51197c78259ee, 0x24a93b62255fabfb, 0xc709f071cd30a361, 0xbe18e37608c96276, 0x2566329d5ce5ae9b, 0x64e4cffa6f384098, 0xdfd0c96ac887a4e4, 0xa1e61b920e7698a, 0x0000000000000e }, { 0xede7211151ce7320, 0xdf80a81bdd7f6846, 0xb3e33052d001bca5, 0x87e983ab58533024, 0xcd2af084456302df, 0x2ae4995d8ed04a70, 0xf7b7a063df463cf6, 0xfb1df2fadde88fa2, 0x0000000000005a } }, { { 0x7cec9abfdf0a186f, 0x2d7ef84a19c75e5c, 0x2c4da8c78f11d83f, 0x2fbd62b949645b74, 0x18a3f3300898d7b2, 0x3e698b0b04c8fcd1, 0x9367039c79eaa326, 0x4ecf0086de614dcd, 0x000000000001ce }, { 0xa55a0e37a748d6a4, 0x24375601cdafb6ca, 0x76bbacb42df69c74, 0xb9ce500483870df7, 0x9aa401a7adf1025d, 0xfd19efc31ed167ac, 0x6cc88a40b5628092, 0xc15d62df18ef885c, 0x00000000000009 }, { 0xe706e4e40a54ad1f, 0x3c13cbe08eced33c, 0xae0d7b483b11edfd, 0xc0f18a3694603de9, 0xb9762061b620bcd8, 0x8021c66b019208bb, 0xf08574232020781f, 0x35d81507697f4b9b, 0x000000000001a1 } }, { { 0x8a7cedbec3601d16, 0x651531d71a2b7b94, 0x3eab82adaa85598e, 0xdccb4e65a1a76f68, 0x8024e01b2f77bedf, 0xccebdfa3ef40a838, 0x50f52ee05e9fcef0, 0x786c82c6ddd77e99, 0x00000000000161 }, { 0xf6f3791ee9224312, 0xcde67b31b57faa8b, 0x8c4125617af21744, 0x1d9d3c09c0922936, 0xcc20a2319c770fae, 0xce6c37cff0f20b65, 0x9db83c03154d79cf, 0x3433df97719c265a, 0x000000000000d9 }, { 0xc05c66709795d76c, 0xeb59c75d2a1c667f, 0xfb79018781666e60, 0xd80ba38d6746b105, 0x2ab328ea1b9607a0, 0x730183ab54881e25, 0x4f9ee9067dee8326, 0x15967ad4a72c54c2, 0x0000000000006e } }, { { 0xedd4fcbdbdb6a67, 0x6ab1b6da0d4e5907, 0x1e009f32c90186d6, 0x410c791c1b4415e4, 0x3e9054cff4a4bb32, 0xcc5d7b987a49a265, 0x37cfc07cbaffc1ae, 0x615c5b16b4813b17, 0x000000000000f4 }, { 0xd11917adb5e3a8da, 0x15b1e4f9f11eda06, 0xaa5161c4b8a4c5e8, 0xae515c19d0fb5b9, 0x4c8196b775acc784, 0xeacfdd9cefabcb51, 0x9578a48790d3aa6f, 0xb23f7bb6836404e5, 0x000000000001d3 }, { 0x65bff2be597ed5d0, 0x85d872f80cdc8e5d, 0x42927efc9ad040f6, 0xe3bf78cd358ec580, 0x95b63f1ac4c423bb, 0x5032f9f480defd92, 0xd4c35a928e742ddb, 0xfb446fd5915a00b2, 0x000000000000b5 } }, { { 0xb15fbb2ef0c20d96, 0xe75dbed9aed0c026, 0xb108fb07169fa786, 0x706f7a2c5d111a4b, 0x69174182c23cc00b, 0xcd6756fcd053aeb1, 0x5281919ef176130d, 0x1c3ceed072d896a1, 0x000000000000c1 }, { 0xfd8757a9dd51ad9e, 0x7f90f82b83dae055, 0x96877e4565a89273, 0xe8d0c9832bae1b32, 0xdee5d80aa6ad7c08, 0xec1b68d74fe708c9, 0x151d16428e980673, 0xa0e56a93ca998d76, 0x00000000000099 }, { 0xb257c4947d7d057b, 0xa51e048d7ccd5765, 0x7a6be510ed48fbf, 0x71a552344db1d9ec, 0x84efcdb1ff9d369a, 0xf188d1dd419ae8ea, 0xc90d4ece1575a31, 0xf212d6810316bcaa, 0x00000000000195 } }, { { 0x2daa7abb50f0302e, 0x1bff6e8c2056de09, 0x8c2146bf3f679393, 0x53dbfec799939112, 0x9a383b7357ae7975, 0x7787c7abb3d66173, 0xe2aa4aa23b46e706, 0xdd201ff6e2504263, 0x000000000001f9 }, { 0xbbe39faa477603c7, 0xec33246c86b1f759, 0x931304a395e8593c, 0xaaad69d0caac3d3b, 0xc497691e38caa27e, 0xa3b07033d85e0320, 0xe2b317d7efdba1c9, 0x5e549e54183c1636, 0x00000000000090 }, { 0x69b38a442a623cc0, 0x2407c257f09a0cef, 0x62eb6d5e2b1a6adf, 0x120ea982abc488e8, 0x2ad40fa32d2219d0, 0xa5833d1daff13573, 0xda9bf24856057b11, 0x80df576b07412be4, 0x00000000000033 } }, { { 0xb11e382380636183, 0xb384189f663149a9, 0x897738d86355ee36, 0x3e8222c5416a5118, 0x2687b4f6793d8e88, 0xebd0549e6b197f7c, 0xec647d44a74206f3, 0x1c77ae20375bbdf5, 0x0000000000000a }, { 0xbd3846a5e943ab83, 0x233bf39a8e48dcd8, 0x63576f6098914570, 0x71832f4272a59eec, 0xc6c8ce4434cd1aa6, 0xacdc9c7e046b1bda, 0xc77fc2168ac41ebd, 0x805e5bd47929dee, 0x00000000000155 }, { 0x2bb1818b30689cb1, 0x54b61b1890ed46d1, 0xd6e9773a744887e2, 0x31bc43bcd95b903c, 0x242441ad7b8c33bb, 0x8037fd9451e383ba, 0x651e302744a6c6d3, 0x828a133dccb077fd, 0x000000000000be } }, { { 0xc4414c0919ec68cf, 0x76ae355a80696447, 0x4d38261b31059db8, 0x423b06830cb772ea, 0x85e380cf9f50f38f, 0x67b35df5de420a7f, 0xafdd6ccdea47fbfa, 0x7b9a34b2de02a16d, 0x000000000000e6 }, { 0xe8f673738953d6d5, 0x8f3bc88f628245bf, 0xfc7db1b441db44a3, 0xdc96ae072291a5d9, 0x66b43d0e4a6f4d96, 0x7239fc023831abd3, 0x681c45d8c27bb061, 0x666666b63e15584c, 0x0000000000006e }, { 0x8dbfe1a2b6791148, 0x995291e2d66676a9, 0x221ab7a7f23fdf13, 0x2fd09a5d354bb15d, 0xd2a695f1be95c7c, 0xcca69bedd8d3ced4, 0x714c86cee3fbc40a, 0x4a5dac383aa7daaa, 0x00000000000048 } }, { { 0xddd53c30bfae208, 0x105588d4429d1a57, 0x9d68a7c1704dbf6b, 0xeb9d9d324da2815e, 0x678c25fba515a6a3, 0x80d6ac674aa8b49, 0xed1bd1f5be3bf65e, 0x8a6b4d3f31dce2bc, 0x00000000000010 }, { 0xd739ce2fccf874c9, 0xd0060624c577ea21, 0xdb2f2c9162fc7094, 0xbbf5ef5e51af37, 0xd370691c374795bd, 0xd7bc25d6c622fb03, 0x39652fae2ecc07d2, 0x14e5bed2465df77a, 0x0000000000010a }, { 0xb84daf34e11f0023, 0x379558be5fe4b65f, 0x4e3a86a9d4d1c548, 0x7c9e430e0b5e7b06, 0x885cbc313c288b01, 0xd8d77a8c8a7f63eb, 0x4c90e2822c1136ae, 0x80f95eb1cc46603c, 0x0000000000004f } }, { { 0xc7bae3f01d595b73, 0xca7b25c1ca18ba46, 0x73a3c24887220943, 0xa61d8cb93e23bcf7, 0x1b7ed50d133386cf, 0xe550560090f409da, 0xb7e1cf2160233ce0, 0x9298e0d3a3b1c4ad, 0x00000000000075 }, { 0xb2635ad6e436f6e3, 0xa6885064f926a05e, 0x3c6f0c5163f9d242, 0xc435051b051fc470, 0x99b0cee373aa8a51, 0xddc5aacea7609763, 0x30e0d792b00cf4df, 0xa13bc96e544d179d, 0x000000000001f5 }, { 0xb40ed51bbe3b436, 0x12495ba7d003b5e3, 0x8dbcb027bee9a7bd, 0xc91844920d44f1d, 0xa54b8785b69e1676, 0x621cd724e81673d5, 0xd396d5221b3a88ba, 0x5a74bab00d6acb1, 0x000000000000bf } }, { { 0x6116fe3f850637cc, 0xbbb9e62421db5b34, 0x768820a333d0ebb6, 0x3f6fa387b88097b, 0x6f5115f52c0d3a73, 0x4ce3f831e4ce062d, 0x1aa3c0792f0363bf, 0x1c7f375e83cf7b1a, 0x00000000000138 }, { 0x6f97f3b9d85e4170, 0x607ccbe8b93d8635, 0xe00b54da186e8914, 0xac95d1fb54eab003, 0xb803f47bfbb11626, 0x78b206f6b7a0bf67, 0xa2c1f9048d1aa0a7, 0xa8647d218ccf4855, 0x000000000000a8 }, { 0xbd54bb4e9fb98292, 0xde91aa03b06105c6, 0x3f8acb76a9000f1f, 0x6e53eef77cd92ed1, 0xf1afd0516da4d142, 0x3fa738862c34f499, 0xda8902bf947e401, 0x5967c8c6ae1308a3, 0x000000000000b5 } }, { { 0x700ec7877296256d, 0x50075bd6a159dde5, 0xb53f368c1ec6212d, 0x79dfa0b6bc10280f, 0x9c529757c88df07d, 0x1addd426b1cd5fe2, 0x5304ad6996e104ca, 0xcad1d93db8922f15, 0x00000000000134 }, { 0x369ba7cd6be1b2f1, 0x75a19e79f178ffd4, 0x6b9ed83f14cf6944, 0xfe052329508a25, 0x24364cdc9d408b62, 0x4f2985b9bca4e6d9, 0x8e6faf9dbacbf57, 0xff613ef453e2b578, 0x000000000000d3 }, { 0x4986cce81c5960ab, 0x5010807c53ffc51a, 0x51ecaeb1f85adee9, 0x81607f3b4bb1ce3b, 0x2c6cdaeff5956ab3, 0x83e78c5a97c0d1f9, 0x7bf5df4007a681f3, 0x953bb411ecf6d7fc, 0x00000000000199 } }, { { 0xf2cae3e8b266909c, 0x279551cdae57afa7, 0xbf734d7388d6394a, 0xa2f5386c2730a2e9, 0x6be843a11a0f6fee, 0xe69bccde4b86bb85, 0x4cc58a251567fbfd, 0x318bc6151ea68640, 0x00000000000017 }, { 0x6b5391288a112119, 0x408007245ffa59d8, 0xc2aff17455014468, 0x6cec0b9a9bf911d, 0x61e9e76fdab1fa6e, 0xaba5868ae4f12a87, 0xe9566148bf9e3107, 0x8bf6a4c340f304a9, 0x0000000000010c }, { 0x520f7e5afbe1e859, 0xb8de180d860a8dcb, 0x52531f47b3d7a2e0, 0xdb2a4c3cec2afaf, 0x910bfc32967cab60, 0x1c785af312ff4890, 0x221558c61723ebfd, 0x9e9557b0882cfea9, 0x00000000000029 } }, { { 0xd6cdb37806df8f23, 0xdffde49580116c3, 0xe185e3884451411, 0xd89609aebbe4b7ab, 0xde8533c241de0751, 0x27341ee9d823a868, 0x902cd8bd28c8f2d5, 0x57fcc0422c8b7065, 0x000000000000ee }, { 0x8e78be23772f85a5, 0x507a8b7f16bf1444, 0xb763db61e1853e74, 0x6cfd3a43c5a2ff15, 0xb75dd979f349338b, 0x5b0e22642a8078ec, 0x3cfcda24c2f516da, 0xd2a8fbbb52fa10f, 0x000000000001b8 }, { 0xd3a718dc0d29ddb, 0x2d33fa2a987ff057, 0x9bb61c7fccb2bfe7, 0x8a3bf5974dd7d1fa, 0x212bb21784f3db87, 0x6c8ae89c684dd1da, 0x8e14e5133a9f3ef5, 0x17c42130421ce811, 0x0000000000008f } }, { { 0xa7820858c2e8f77e, 0xdc7f35d41e4cb412, 0x1f6201d60cff6457, 0xe0d680f30b01f8e0, 0x249a4281d80eed8f, 0x35b41307016fbfde, 0x6b818298e1a23801, 0x21a1cfa18ef70dde, 0x000000000001a5 }, { 0xb9f3ce8aa1dc72c5, 0x375ac80f1ecd9035, 0xcc41f417cabe74d7, 0xc6d46eb032ce550c, 0xb97ee8d10dde1fdd, 0xbc1141928d87ee85, 0x8406011fa6c1d42f, 0xb751c68257938454, 0x00000000000113 }, { 0xb895fb2ec890fb94, 0x65392348d4bf866b, 0x7532f17aa40dceb5, 0xdebeca9b26726add, 0xf3ce1d39e7d994ee, 0x2117ca0c9bcd3ed9, 0x2ca9b236b542dd83, 0x5ec148393db29878, 0x00000000000035 } } }, { { { 0x9d4eecec5f588d69, 0x5d1e1b4b182191d2, 0xcdc502e0302801d5, 0xd07f2cb8a059e9d7, 0xe54e315fd7e2178e, 0xc4e4490ac784ff03, 0xb6ff51e77a9100e5, 0x394134b587d0f4e3, 0x0000000000015b }, { 0x88635725f4392f2c, 0xf21b1285e07c9278, 0x235c6396e9989fb, 0xd82391440983af03, 0xc4a3485267827346, 0x99220d86b0edbbd8, 0x3531b8f2fac4f47b, 0xb849a99f5bb9236f, 0x0000000000017a }, { 0x6bf2f66cd1887b7a, 0x639601940a9535e9, 0xbc00c5fc1547394b, 0x4c5409b83595725a, 0x6d2a1aca9f8d3e15, 0xd390cc6f1f9f4c46, 0xd08725db7955be22, 0xd6ee78f97691736d, 0x0000000000011e } }, { { 0x89d1108bee439c2c, 0x4ca62c7beeccbbf9, 0x9cd867a1b7bc7a5f, 0xa8251bddb85cfaf9, 0xb65054347b807332, 0x91f7b78b441e93f9, 0x1d51a4bd5541a060, 0x3f1d732cd11a39db, 0x000000000001fd }, { 0x1f62520700c74c11, 0xda9f352cf0785f49, 0x297c034cbffef8f2, 0x78d3c155f316a4a3, 0xf1e25fd0f6864403, 0x7fc31cf805a90b11, 0x361c574fc07e0385, 0xfdd7d456cab0bf36, 0x000000000001bc }, { 0xd05952ba436b955f, 0x63117ab15ebefef8, 0xd3147d3385f805bc, 0x10d4795fe7a2a5c1, 0x5b3bb3aa91b528c3, 0xe21a2df6339a7b33, 0x33040205621f25aa, 0x19d32d7efa4b960, 0x00000000000156 } }, { { 0x72244cacb55d0f46, 0x90a0a9bb20d81b71, 0x48b3051d6f3cc94d, 0x6ce65f90077c985f, 0x2f97de252dc45c4c, 0x9144434c9d9f4ff7, 0x80d72223b4a1aeac, 0x3b3fb4014f10b458, 0x00000000000022 }, { 0xfff396eae912986b, 0xbdff07327010b5e2, 0xc8e3e8fdac66403f, 0xede65dc0cd24746a, 0xa2f778239ac01ea9, 0x35730d21bc162f0e, 0x97024f629930ad1, 0x80fd9d3958d1ad99, 0x000000000001bc }, { 0xec0b81cb87a82776, 0x825d87956e3a5b71, 0x2cd2f034782ce608, 0xc4b2b74e65442b7a, 0xfa820df5a496ef8b, 0x29555f4d75c050cb, 0x9f78729f21737ef8, 0xb3ca6ca2eac12679, 0x0000000000006e } }, { { 0x87da9bd5013ceac3, 0x838370ad9e51bbad, 0x2c343f90f064356e, 0x555e17b7ee12fba8, 0x78eae30862925d76, 0x5232a376f093bc6d, 0xa28fe6ee187d8749, 0x4d62d1328189f726, 0x00000000000039 }, { 0x8b7f0986a0e720c8, 0x4654c74e01f92c42, 0x1c97362458e9e305, 0x606ce500d27900b7, 0x5b3d0cd078f5d712, 0xcf27a55fad000c9f, 0x6af1dd279b4d9008, 0x979121458f31de5b, 0x00000000000045 }, { 0x9f50ba79de19e4ca, 0x4ad68b95ac7248cf, 0xbb5721d09f18d788, 0xb3382784add5a83d, 0x5fb9da92f4f14a72, 0xab79e23f47aaf8ad, 0x3dda8148cc85efe7, 0x789e8e543768364d, 0x000000000000d0 } }, { { 0xa2c59cd7111ea72c, 0x81ae127a76d1dfee, 0xf25ce904bf4ff15, 0x2905214306335888, 0xaffe84493b5c6e9a, 0xddbe7c07a6c7a64c, 0xc62322de8be7b45f, 0x458707d8a4297644, 0x0000000000016c }, { 0x8d98f38c218bed38, 0xccd1430c8fa84a79, 0x3eb7632e8e066b2f, 0x1ba0b31d36e06d84, 0x46ec6e3a1a19b5a4, 0xc386587670e0e2fa, 0x19f90a2df694c54, 0x335887f243547c40, 0x000000000000f3 }, { 0x65f2d62c6de88da7, 0x46a42dd2c47d7a2e, 0x32155906955f49e4, 0xc40eb831b236aebf, 0xd956cf7dd24b0bda, 0x63ddfe850c84fc9b, 0xbe1792b80ab2a926, 0x69f1a1bd9f4f45b8, 0x000000000001f3 } }, { { 0xfb420bf7c475c74b, 0x29459329333bc38a, 0xf1b22637c98da193, 0x809d74cbcb1a1dbd, 0x10fd20a84fc63c50, 0x7e8967446452675e, 0x8a4f34e67d6d418a, 0x420f318fcad5f3c9, 0x00000000000099 }, { 0xb3a97ac54d92db80, 0xd65fe368ce328fcf, 0x12327afcedde6ce3, 0x4680cb79fdd2feea, 0xbc13324850c21140, 0x7fde62636fd6ced7, 0x3d5ca1e9d2522d44, 0x4e89da79ec407cc0, 0x00000000000060 }, { 0xade253609b724bc0, 0xf760acd72ff3c217, 0xa5b230b01c4072e0, 0x304284bae29d28fb, 0x761e1e21d93cff4c, 0x8445baefcee47024, 0xc6c0e72c3df2a63c, 0xbc45de2b1e5843e5, 0x0000000000009f } }, { { 0x9c2b7228ea68963d, 0xe32bc4fbb38d8148, 0x745f8cbe18eb6f9b, 0xf7f6335e23626a5c, 0x6d860aa1c1b8865c, 0xe9afa1dd911337d5, 0xb1568cf76024c291, 0x4388699cf25a6a8a, 0x0000000000016d }, { 0x6036969ed6be18ec, 0xaa9044fb4fde030, 0x2f9f528a5eda6d89, 0x1ed45c1279dc830a, 0xc093890cad13b7a9, 0x33351d45d7374653, 0xac3cb8b029aa84d6, 0xd5e7825dd644b24a, 0x000000000001c7 }, { 0xfed66d9d78e6dd53, 0xe784ab9cc6b8e053, 0x952477a6466ede07, 0x93e55a19bdd1e6ac, 0x9615d42b402c995f, 0x2dcd48ee2de632d0, 0xddaf86b95d79eceb, 0x36d42590d2e3f330, 0x000000000000a6 } }, { { 0x2f6b2bf6e96a3abd, 0xa1fa96e468cd5271, 0xf25c41631514bdbd, 0x8c09a9dbcb74b4e5, 0x4ee6ff72696df95d, 0x684e3f3bda88fa4, 0xa05e442a333ea014, 0x21d059368b9abc85, 0x000000000000bc }, { 0xcc71e5cb6c8be587, 0x78c6e8da39e204f2, 0x27a0eb8a3c7dd7b2, 0xf6e284d20cedac18, 0x9d46bebbbda17953, 0xcdf4adb4900c72a8, 0x1564c074a627c271, 0xe5dd97ac4dddb91f, 0x00000000000194 }, { 0x227986b815277bb, 0x9b9198d0460e2f48, 0x39bfbec83f83252d, 0xfc8ae2b95fbc8c6a, 0xfc49a6424922add2, 0x753f453f321771c5, 0xdfac045fd9d0e25, 0xdcc076b3901dfa3f, 0x00000000000197 } }, { { 0xc856d2c1568cd2c6, 0xb36fbf83edd251f4, 0xfced18509aee05d5, 0xd91d017ae06fae43, 0x562453043c864a2d, 0x8593217236249053, 0x86a89b898fc85e3c, 0xfc40976ecc51a45, 0x000000000001b3 }, { 0x9a5575b59e314c4f, 0x6626663e98fd6cc3, 0x18184523907e647b, 0xcbe163ba3af526cc, 0x58498ee1c73ff6f7, 0xc2b7f20b43c77100, 0x78d61dd9595bc52, 0x7d92530d4de9d705, 0x000000000001a0 }, { 0x61c2eef40bd429d7, 0xd5dff8e57aa4f38f, 0xedf00b4eeccdb8d0, 0x9e1f56da894e0904, 0xcba39a8e5c106b6a, 0x454f40da6fcdc5b3, 0x488d0b0ce66e0940, 0xf3b623bc4eafa120, 0x000000000001ad } }, { { 0x504eeb665984c2d8, 0x3179038437be022, 0x9602d31ac55c6502, 0xa74110aab3a8e1e6, 0x58f26d4e49e30243, 0x916d787743bbe02f, 0x73f72372ee4109a0, 0x2fa99d6c8731e008, 0x00000000000112 }, { 0x2d5dfe8f88dd122d, 0x3dd302ec53688c6c, 0x6c79b9830c2825fc, 0xbf4328ef1cb3d7d, 0x2d1572eca9e12851, 0xec1fce06d59d1be1, 0x859b6b8be41498e9, 0x72139cd9a3d6e7c3, 0x00000000000133 }, { 0xc9ec62e920890320, 0xd5276012e5fcf60, 0x5e78ad9438145386, 0x26fe1a46cd3c2b2a, 0xa23312162d95d739, 0x70f2e731b4d8dd1f, 0x3175dac1c14372bf, 0x7ab4403f1d3e0b40, 0x0000000000014a } }, { { 0x8faff7b13a4142ee, 0x3da71e260de80529, 0x318fce5c69d84f86, 0xd002e887872f1b47, 0x5584f757f1153ea8, 0x694747bccdf86c68, 0xe78b760a58447be7, 0x4d422db56b328550, 0x000000000000c0 }, { 0x29602d26b24091a6, 0xdb292a66662eba7, 0xf4d73158b01a7118, 0x8e9a8637ddf99762, 0x8195b5b164388f15, 0xfcf2330b3aa4597c, 0xa9fba2181628ecc9, 0xa59d3ee0e7bc44c2, 0x000000000000f0 }, { 0x37f5e75808e3b857, 0x14301aa3def7406, 0x1c085536df26bfa3, 0x9dedb78073c600db, 0xc388d654a570691b, 0x2c2e2edaa68e1a52, 0xbde43590eb0eb808, 0xb245b9245d816337, 0x000000000000ec } }, { { 0xd403061fc5148b61, 0x7fc6d3cb01f664b9, 0xb208b4d9170f5c9a, 0xa8d12f92b4f1c72e, 0x7944d18832f21d36, 0xf3ff2e28277fe75f, 0xbbd1655bb1eb79b8, 0xd4fd6a9e5695b3c4, 0x000000000000cf }, { 0x51374bc8797ccf18, 0xd25ad654ff4ed8be, 0xc474c93ac254afdc, 0xd927f2dba8bfc40c, 0x5b80e22330fb6b2e, 0xc7d76ff437fad31d, 0xb1ca695ec51d52a6, 0x4ddf001f7be65254, 0x0000000000012a }, { 0x670250e7b80d8790, 0xeb7fa23df84f9b37, 0xaae71ceeeb11b47a, 0xe4c5084a04344ded, 0x54dc5d7fd1dcbf3b, 0x1feaaecef9426667, 0xbd74d8f1aa36bb64, 0xab3c2aaabff0c904, 0x0000000000008a } }, { { 0x6db7e68481a95e0a, 0x59319a46149ee3f4, 0xc1f1ccda62d090d5, 0xc4529690ab27808f, 0x12264d939b502444, 0x4500268a0ce2ed3e, 0x2703e44a36aa56a9, 0x6b3bc09e79862c52, 0x0000000000004d }, { 0xd70a293f946d97af, 0xe33c69c559abec6c, 0x8152999e9601b9a1, 0x5a0e9097e59ffd12, 0xca4aba5aabb605f7, 0x330034ccdeae6a03, 0x314bb311baf0a59b, 0x753e75c54f6ffd24, 0x000000000001c3 }, { 0x4e6cf238b71e94af, 0x59f6492f8f0b7c0a, 0xa6cbfb433f3c63ad, 0xb6de198043d8563c, 0xaf8748b42ca5d5b5, 0xde6989052ea75898, 0x3c5d607e9721a019, 0x45b37f68f28aae64, 0x000000000001c4 } }, { { 0xe3cf5cd9223fc9f8, 0x5c9236822da4a98f, 0x1ce5b48c8ca618d, 0xc03106648f714d89, 0x8535044cd2b10baa, 0x138fcf393c989f23, 0xaa07f265c3c6aeb2, 0xd56f6e4f064befb7, 0x00000000000178 }, { 0xecbfcfd5cfbbb0e5, 0xe50e0c501cf6016e, 0xc85c0cf78535fbd4, 0x86a40ef7e9b7ee8f, 0x4235dab1565fc261, 0x54ae3bf9cb9c32a3, 0x2ef940ccf001cfd9, 0x9719d1c2d34c1d88, 0x000000000001e2 }, { 0x9cc8979ee8315256, 0xa6583611ae8641e0, 0xaa724f028a5450ba, 0x11854e00f65aa67f, 0x57ba8247c023c91b, 0x9f35772c29cd3173, 0x675ca1fd8d077fa0, 0x750e32f7250d48f8, 0x00000000000073 } }, { { 0x95ae99c756c03791, 0x118f3f11fc3c978c, 0xd9371ba7e3728fe9, 0x6e2620c475bc18db, 0x6d6be88df1e555a7, 0x753fb965738bffaa, 0x31711d8803ac52e, 0xd26fa4e2cce837cd, 0x00000000000120 }, { 0xe95b2ba61d38c3b1, 0x903fb9766c5439fc, 0xd5c66b19df29f279, 0xca3f15b3206a22c4, 0xc1a84a544457148c, 0x8d9f8f60c25c8833, 0x4430794540c50b95, 0x25e97c418e16a8ca, 0x000000000000ac }, { 0x26ee4f8e46526614, 0xe5e7e445b98a444, 0xae2bc22f117032f2, 0x13dd46206faefb1e, 0xdd7a0b71b16ddaa4, 0xbd1c1024fe6499a4, 0xdbf2fbb25d0e3d5b, 0xbfdbf20604a6e53f, 0x000000000000bd } } }, { { { 0x5ec47425e6ab99dd, 0x4786a5926e0d0dfd, 0x7d2e18da1ef8c8ca, 0xaa9bbdca99209529, 0x6731965b9805eddd, 0xb8969ab483e9a438, 0x9b97706221c7e874, 0x4288b5e4974a8bfb, 0x00000000000105 }, { 0x431462ed8f31d0a, 0xff108865306aa082, 0x684b2e13c167dc72, 0x9f0d20b66b49858, 0xb8757df0800b8d7a, 0x929e2426061ea3d4, 0x5f2627370192014c, 0x448f2856528bc559, 0x000000000001c7 }, { 0x9d76587f711f1942, 0xa0d8080ef071a7b3, 0x5e365df694e34f44, 0xd597e39e2708fe99, 0x63f66fc9902861db, 0xdd3d8ed8d3e5bc64, 0x85fa75bb1194830, 0x19add63bf1f2cc43, 0x00000000000103 } }, { { 0x4b8586f15068c8d5, 0xb0c42abb1d6f55bd, 0x89a838bb9ed8f89d, 0x9ef661f78de176b0, 0x90ab0a041b3aa625, 0x6b7ee63b52b4d8d5, 0xb61ffa53d371e2ea, 0xd13b44180eb20545, 0x00000000000060 }, { 0x4f39b2f795b82bd4, 0xd8b823f355e00f03, 0x8e33301efff6a981, 0x50d3fc2a22eb04d7, 0x95553406c4343238, 0x1d335249acc31750, 0xfacdffdf2f8059da, 0xe64470a0a48ae69c, 0x0000000000007c }, { 0xb5aafeb42ba49146, 0x77c84475d3d8502b, 0xae750252dd045d72, 0x5867ad7c6056245f, 0x82f50dda35b4f33a, 0x76e5b58ff0aafc31, 0x471b59accffc76e7, 0x4bdba71e6a5270b0, 0x0000000000015d } }, { { 0xad1ef8a0257554ab, 0x43e0c130d71517f4, 0xf2167369a55fe409, 0x5dcd617631a982c9, 0x29ee5f6045464c1, 0xe9d628646490d96d, 0x9e17f686e72342db, 0xaacd588dd0d6502a, 0x000000000000de }, { 0x82cf3d1dbadf7599, 0xd91ae40e2c5733b2, 0xe0d3400366be22c3, 0x8337fadc1d085edb, 0x2e4e76195492adbf, 0x1da135b43e282044, 0xdf034a8a1620f94a, 0x38e6c1a43d3d4322, 0x0000000000017e }, { 0xc346091312cbb513, 0x20a9b273eef3b987, 0x1c67894f98edf312, 0x84cbc7da0e7686e5, 0xeef5118789719f5e, 0xaec9e6cf59854744, 0xc3bc1c983d300e23, 0xef6bbcad530e887c, 0x00000000000080 } }, { { 0xa240df96f1b99fef, 0xd9a139f7c7324415, 0xcb7065345a8ebda4, 0x63636f0528c9d456, 0xd65d937773d0df02, 0x35300636c916c784, 0x229bce3329f2a5a6, 0x3540503cfaf552a3, 0x0000000000013c }, { 0xade111ebf917da22, 0x6ef5a8ac97f30489, 0xb0426a0bbff2f045, 0x454cf51f3ba9091b, 0xd36411fecd41a2c3, 0xb20bfdb593417b7a, 0xa0fa80bfbd6b7286, 0x7cc37cad1831c094, 0x000000000000a4 }, { 0x5a073d22d5e6644e, 0x653b8b4553bf8df8, 0x6df12d4f47dc3b66, 0x7abdaaafdc346463, 0xd317894b55476ecc, 0xb686caf26ad7eed3, 0x45f8f710b678c65b, 0xd8f7d134033f3cad, 0x0000000000012c } }, { { 0x8babed47aae8088b, 0x6dec1af936ff3fb5, 0x1433bfc6fb270534, 0xd6f077dfc8810238, 0x2eccead7193d7008, 0x6c092cbb56d0efe0, 0x1c94c58759ae9a74, 0x8df2308493979746, 0x00000000000147 }, { 0x8b43b0bba24b4300, 0xa6fc1b108b70c93a, 0xa30aa05f7bfee7f6, 0xc906b2bcceba1e57, 0x9562de2d39975a3b, 0x3d4a06f2f49c3eed, 0x4c4189cb1e6fdc16, 0x6eea1155992403d6, 0x000000000001cb }, { 0x1aa620af9a9dfea1, 0x250610b2a74ef382, 0xbe1fd30fb631b651, 0xc582a3e492db4f50, 0x1c044d5db897d5b5, 0xe4bb3fcf93987644, 0x3a33d59dc8dba5c5, 0x28e3837bb70851ae, 0x000000000001b9 } }, { { 0xe64b833e733aa09a, 0x7dd800ecf7382911, 0xbf998db5119dc5c, 0xbe40930a579abca4, 0xed750ff308c3dc32, 0xd494af1ea769b551, 0x6f1a1af0043e7525, 0xc02e2735dfbf7c32, 0x00000000000121 }, { 0x92232b3fc0c9e8b0, 0xedc9bcfa8ed06ab3, 0x74742b2628651f9b, 0xbb06ff9b422af16, 0x29d14fa306b49b63, 0x5be9017535ddff00, 0x5f589347fd3e8cec, 0x60e603f974f54756, 0x0000000000010c }, { 0x2f281f1581e8b65c, 0x937d7bcc3e566710, 0x975560cd8c119dfc, 0x4b07d0ee0e236335, 0x81ee940316b647de, 0xf311af85d192697e, 0x6d7cc1e228563101, 0x661ccff3931d878, 0x000000000000ef } }, { { 0x68f997683392b93f, 0xc30644941d6ea765, 0x8851cb108de1e187, 0x84956dc008e0dfec, 0x579083c2770172ab, 0x477f20ad653dac2b, 0x5d9072b3a29022a4, 0xad0a41872c7379c, 0x00000000000113 }, { 0x8ebdd435758baaab, 0x881fe2badb84a4ee, 0x3d9abc09481e6549, 0x844ff477512b21e9, 0x31772f1b4747b5b, 0xed6e2cba77dfd824, 0xd57f661fac3e3ebe, 0xdc01dd3781e44711, 0x0000000000004a }, { 0x25a6ecf1b6123cc, 0xd08dee3288f2c7ec, 0x768cf6df4b369ae5, 0xa5741534798e2edc, 0x464999bd8a28eb2e, 0xd3539ca80dec674, 0x9d17a7db78961e6c, 0x5074667aa443addb, 0x0000000000017b } }, { { 0xbca87525a1e8954a, 0x3e99371f32266410, 0x939d9e9432fbd5cc, 0xda504a89811a88a2, 0x88911f40dc6d5dd5, 0x7db0ea1b7a59bf25, 0x6882917c43e7647c, 0x1519dad17714d62c, 0x000000000001f6 }, { 0xb19647b5037291f6, 0x90b138e463f0f0a2, 0x222ed989b0cd7134, 0x74efdd8f7e66c842, 0xbed6d522a5ffb3af, 0xc3344b763e41f947, 0x95fde6d6fb84776d, 0x3646d2eaa1627df5, 0x00000000000102 }, { 0x474363c50e2d8929, 0x424ad3c44b7b8f9c, 0x69777b0cad7737d2, 0x3cb398d3d7e17255, 0x6d081a02670f87e, 0x22337aef65d830b2, 0x506550776818ef15, 0xb78154f7a80b48fe, 0x000000000000f1 } }, { { 0xfaaf7167f1c95a8e, 0x64d59f7900f5c3a3, 0x8586b016c04d038a, 0xace6b5e6c9aa0ffb, 0x22a0f3c8dadb5608, 0x6a4bacf0a71495e8, 0x284a6d1094d688d9, 0x9eabbfe0fc901101, 0x000000000000ef }, { 0xbaaa4888129360c5, 0x3fee5037d2c8b38b, 0x7c7e9d2041988c8f, 0x15f70931e68472ee, 0x24ff964a9735cab7, 0xe40c71475dd05800, 0xe7798d88c166f63e, 0xc6e647db5edf679a, 0x00000000000146 }, { 0x1a6e8ff17fca7dd1, 0xa23994d54c75ed67, 0x149cb406038dca52, 0xffe9d4bb270003e7, 0xf4af4a7b7c10f84e, 0xe3d860148b22c029, 0x2b1ba2cb6bf296d9, 0x710ffc97db54161e, 0x00000000000183 } }, { { 0xe7107224b54844c6, 0xf9b2e79f6168a85b, 0x135f256b5722303d, 0x6e76c13d3807b764, 0x51a770738b74457f, 0xa5fd7458c9d5d1b6, 0xf4fd5ddd6eaef62, 0xdafb2e95b23f27d5, 0x00000000000093 }, { 0xb471fb91929d10e3, 0x91f8d3323721a3a1, 0x1a98a188810ce68b, 0x1e6c703151a8a9b, 0x96670bc0cfc946eb, 0x19e267ae4b9f0de0, 0xedbcdde89cf6638d, 0xf342a6035c18f7bf, 0x0000000000005a }, { 0x97299aeb9a3cc440, 0xbd8f6e066f17864b, 0xc23987a8b2102c70, 0xb349492c6a216f92, 0x11628b73ffbeb640, 0x1df49678244d49d5, 0x7dbc620ce210538d, 0x40b2af8e6ce404bf, 0x000000000001d1 } }, { { 0x3594bf1bc7d9400c, 0x7f9ce275adf30e15, 0x95af8c5a7dbab612, 0x892d2083c81b9f73, 0xb36fb85f4ba3a1db, 0x5922aae7c8ef185b, 0xe93cfccabc23b096, 0xf4c1616d7b4b9424, 0x0000000000011b }, { 0x689ec1ea9c811fe2, 0xabcaf6e3126dab6d, 0x2270807d91b47843, 0xa44ca76bf7be2871, 0x5838e5ef881046b1, 0x4e2c8287fd57bd12, 0xd41324de9e1834f1, 0x26104e7d4bb8b8b3, 0x00000000000052 }, { 0xd549890a846e426f, 0x323c5cdd15091a57, 0xa9a6fb7ed0d0d51, 0x34d350a4d699c454, 0x485a8c354c0b8655, 0xeef498497a2de717, 0xf683009dc245945a, 0x57713ec658fb3bc4, 0x0000000000003e } }, { { 0xb7378a20adde0ee0, 0xaeeb4cf9835a173, 0x4a71e0dc743c8325, 0x7a04728301e3589, 0x7d02896237b3063, 0xa71b178610cde3e5, 0x4296fac7e87a61e7, 0x4cf43e497bcb130e, 0x000000000001e6 }, { 0xb132a245c9cc0bd5, 0xf6d7e2f6d959549b, 0x30ed6ffdfc389b0b, 0xb86074be85d8be63, 0x3acb23eb97855ca8, 0x90b237a3c447160f, 0x6f363d11d450a0b8, 0x6ff9e39fa6001e51, 0x00000000000083 }, { 0x883cbdbe0cc68ccd, 0xf0a69d65bddf41d8, 0xd67e9ed28ec598ef, 0x1875d8d644fb6c45, 0x8c63cbc5c1639d5c, 0x5b4cd527c52b85b6, 0x56f73c09236c0d15, 0x180c3c2470e2c800, 0x000000000001e7 } }, { { 0x9c0d96d3b70af907, 0xeb27de852ab3d243, 0x78e69a66642afc24, 0x40fdf818d4dfe310, 0x9aadc215cd2779dc, 0xef8dd044b585806d, 0xc4c7c3f1cbb389fa, 0xec9822860f94b73b, 0x00000000000138 }, { 0x8a2fa88cb52a0325, 0x8c94a2528838230b, 0xfdd3a9528ac4814d, 0xa54fb25c0909c50, 0xf718a57dbb44c790, 0xba7d59a46e32a714, 0x4cf255b1c0c95385, 0xe59df480012f4551, 0x000000000000b3 }, { 0x3a454bdb942eaa69, 0x2531cb7b39080c3, 0x25369ddaf780d100, 0xad59e679e042a09d, 0x22579075dabc6aa9, 0x9dd2d3cc05b1bc32, 0x53c0046db564d424, 0x17c9ae1b8fbdb2c5, 0x000000000001de } }, { { 0x8b3b104be7a78d3e, 0xffd1951ee82e96b9, 0x8217f4b6ac935e13, 0xfb2f63ea476ff56, 0x46e97a9a3c3dcbbb, 0xc1a7367092c5a300, 0xe73132514914e8cf, 0xbf3aa482a0ed2457, 0x000000000000ca }, { 0xbaba9e8b75d14aed, 0xf00e5e9d4d376253, 0x298c8f02f78cb54a, 0x990a4c5e6aa8d5c4, 0x50164b23231c2598, 0xc08fd7048894788d, 0xbd30c51603e37d51, 0xda9ce781cb25e008, 0x000000000001b3 }, { 0x11de31027a0eb26, 0x47cc94b0f5676035, 0x95e44cda86dc6251, 0xcec80012ff8114b8, 0x3167aeabf3b18462, 0xbccdab3af1f57ffc, 0xafdd18bba1427590, 0xec7266bc1147d3fb, 0x00000000000016 } }, { { 0x62163e833532b384, 0xf4b88726c5af741e, 0xf94e04ca257c308a, 0x527830042b768f20, 0xe89b11d99936667e, 0xa031a02c5fef0780, 0x3211a195ded914ed, 0x1fb95949d18bd097, 0x0000000000001d }, { 0x153c8541c482578e, 0xd99ae7b02736be48, 0x73f4bd4efc3a82a4, 0xfeed59f2fd2cc94d, 0x16b86489972cedd8, 0xa6a81e8511cfda7, 0xc45101d5e679854a, 0xd93512ebb0cecded, 0x0000000000008e }, { 0xbb90bfa897ee2e9d, 0x9186fdd2ae036389, 0x1e7db3672c69ac7e, 0xb0ec030a6fbf63f, 0xe65054f11a9ed741, 0xc7a1fd178ed1b525, 0xcf3cb9fa47ba5e7e, 0x4a979f11c741532a, 0x000000000000b9 } } }, { { { 0xab94c32422321630, 0xc9575d8ffee2bd1a, 0x34a9c3dd8e29bc47, 0x3cad51fc556a97c9, 0xc464a9f66b084b91, 0x433690a14f0174ba, 0x4746b3af6be7dd29, 0x1787820775b49875, 0x00000000000083 }, { 0xd12f8f424a89f957, 0xf26165b21fd66134, 0x7245891f74138395, 0xa72c4af0432c2984, 0x3c8f31f94e3cdfb5, 0xfbfaef2a95c3f389, 0xa54c611cd37379e2, 0x1a2af0c9829b4d8e, 0x000000000000d0 }, { 0x7ea509e2050b7281, 0xfda1966b70763283, 0x8c67278b551d2021, 0x3972519653feff9c, 0x50115be805d31a79, 0x4f26b68b411fe076, 0x410028aa08fc48c2, 0xd84c76e06e1d35e3, 0x000000000000d6 } }, { { 0x5a9e69a665afa40e, 0x9e056f8ed4978e6, 0x533491e9b9e18634, 0xd55aed13813ea1b4, 0x1cccafe9f8d140ea, 0x2e560ddd11c7c80a, 0x9fbed0cd2d108299, 0xbb8c4c2a78d82e04, 0x000000000000e7 }, { 0x13b6d77420c35e41, 0x5d7f216bd13824f9, 0x4361e2a2f7190763, 0x32f730cbd6ae145f, 0x58c6b0347ae4a0c3, 0xfbdf03679a0ffabf, 0x2a2e671b231fbca8, 0x1980b673189dc6a0, 0x00000000000095 }, { 0xbafb5dd395cb27a5, 0xcd7ca3ff32bb2b63, 0x83626c3ea9391a0a, 0x5e7eddbc0476b88b, 0x837dc4bef4aa221e, 0xb208f8602e0e075d, 0x136f0c558d0c390a, 0xb058052f686ae319, 0x00000000000078 } }, { { 0x9f4e9cc571bfc954, 0xf7627034da1c9d32, 0xfac33dd0d9b68d68, 0xd9dde0ebd4b92847, 0xccbb9a0320647c3a, 0x256062d1694e5e5, 0x5f443f215a0c8c8e, 0xf2b2fed75372f714, 0x000000000001e5 }, { 0x6fd8098e5ce35b21, 0x88268316f487aa8c, 0x5b8311305073a236, 0x289740dce7dccb1c, 0x6cf387e95356661f, 0x313ac96154036e41, 0xa8ac773000af15b8, 0x52be063a3ff6d68e, 0x00000000000049 }, { 0x65a49a0ce45e5ed3, 0xc4f0dea8bd302cc, 0x713c8841c43f8796, 0x1da7ccedfd6691c9, 0xc8009681cc611c35, 0x29607aedda5922af, 0xcdad2a8fed4ffe53, 0xa98637a35c5a59ac, 0x000000000000e9 } }, { { 0x2fdd1fbf648808a9, 0xd40ec29244126ad2, 0x537535d954e7f324, 0x5bba4fba0bccc1b5, 0x465e11f2d4872af9, 0xed075f86c5eca8d5, 0x41b59467fcc4e467, 0x8dc0cf8235de35ce, 0x000000000000f0 }, { 0xb6c8047203859c4b, 0xf69b6a36e23dd6b3, 0xa7f640b3d506a363, 0x1375b756951eecb4, 0x4cde2c64b317bbbc, 0x937a533425964538, 0x1975bc30ddd5d12f, 0xd8d84288c6117b8a, 0x00000000000018 }, { 0xd17e2d91004961d7, 0x9844baded8587cbd, 0xb6497b6ca27f08ff, 0xeaeb008bbf7ab8a1, 0xdc2a4763bfc88cd, 0xb2d95e38f96107b8, 0x523eb624fd5e2086, 0x5fdb34e866cf3394, 0x000000000000a1 } }, { { 0x6eb6c88c94f9d925, 0x7d9b83bbf7fb5a83, 0xc3e6161ca56809, 0x8954ae43570adcb6, 0xc29768e13260707e, 0x54b2508c3b3c22a7, 0x2f68d3b711a6ef68, 0xe46d7cb48c5e0afa, 0x000000000001bf }, { 0x85bfc1836f9f3590, 0x64e11873dea600f9, 0xd44abbffa999bfb8, 0x39e12a2aa2f03f41, 0xf30ff9db0ddded85, 0xfdd8b3c59606cce2, 0x907f1f5a2367cfc7, 0xf40ac47571535ffc, 0x0000000000006b }, { 0xf08273755080cc37, 0x2cfaa56c35080d13, 0xbeea5985c6a7b6ed, 0xa506fd56279beb0f, 0x3f5b4639a1a87b1b, 0xf3809d9aca1f6c0d, 0x5062a0999622ded1, 0x96c0eece6afea13f, 0x00000000000006 } }, { { 0x225fc058233bb173, 0xaec2bd98e2654fbc, 0xd2bc8abc1e594e4, 0xee8ce42ed0c7961d, 0x9255f12a840a514c, 0xaf1bc94c0b1773f5, 0xdb730c9c97f15e70, 0xe820429cf6ae91e0, 0x0000000000003f }, { 0xe7d0f703439cd98b, 0x3bdccb5737cd4c44, 0x45e1e17172c6a63b, 0xc13a9b4d5ef63844, 0x321ff65032d09f82, 0x3245c8bf2833fdbc, 0x924b2fc0dbcca5c3, 0x7993205ccd2acee5, 0x00000000000148 }, { 0xcd700eadf90777ad, 0x3cdb140df9cd728, 0x89a71ab07fb02d2b, 0x4a2bdff7144a42cf, 0x94a589cccf70c9c0, 0x74844af1f716efcf, 0xb07ff1ad685530c, 0xd27df7affef084fc, 0x00000000000112 } }, { { 0x56a3ee446845e721, 0x7abe4fd87e942215, 0xaf0a878d09edb9e8, 0x777287ef522df397, 0x1f7a8e9722527cc0, 0x463b893a75d9eb2b, 0xee184183e077c971, 0xbbee7d78989d2e62, 0x00000000000139 }, { 0x8bb6f05291fa0047, 0x5ffe03df37737282, 0x1e851a2fee23b58b, 0xb52d3a99b78d6330, 0xd5f64dee059cede2, 0x3bdcc8019bd8e5c3, 0x1b982d8f87bc7c72, 0x4a43a8a97f0b4eb9, 0x00000000000022 }, { 0x3c809c3af9ea3218, 0x45891ecc5caa69c6, 0x54b004f1a1524dcb, 0x64856f66123f257e, 0xb231732f43eb0807, 0xfc27bb476e25bfca, 0x7fd6edbe7e30a743, 0xa915bda6a1385de3, 0x000000000001b1 } }, { { 0x32231c365c60ec, 0x48eb860171cce080, 0x3d0d1f0dcdd27ebf, 0x915ddb3a4683ebd8, 0x7500136ce5c3ed7, 0x7f59f4986582ed4f, 0xe108ea1bb40c02c4, 0xaea8d135f3b5427c, 0x0000000000002d }, { 0xaa7d21fd7d605b28, 0x7c67e1c0805e4273, 0x76de6baa43d6157b, 0xed1c9929f4148975, 0x10dee5a50718b550, 0x43aae95d1a8d9014, 0xd92c93d1599111bd, 0x906689971e6749e7, 0x00000000000125 }, { 0x52108f5c04ad4e05, 0xc1d64a1033284a0e, 0x5efa87ad8bb42448, 0x5b7f46fc3bdbf6ee, 0x150a228e5428fc46, 0x8ac2dcd63687914e, 0xf24ad1f88ec794ba, 0xf9c3109fc5d64f79, 0x00000000000030 } }, { { 0xa182c473e2d34468, 0x1196e608a31ae0ce, 0xedbaa3391f1f553c, 0x542a7e58cee58599, 0xdeed00288259c0ff, 0xeb0591dc61264516, 0x801cba7989192a6d, 0xdfb68da8a4432fc9, 0x00000000000166 }, { 0xaec51eb6edabd996, 0xd742ba5f6af3434e, 0xb002162d51383321, 0xb8f1b8cfdeeacd66, 0x81b50ea62cdee0c0, 0x9ce669bbad9955d4, 0xcc967f849dd59b52, 0xb530f469cc702e35, 0x00000000000074 }, { 0x59797a8e3b558225, 0xbc4e21ea1e9c2dc, 0xf41bc5c135614213, 0xbfce67c6049ea940, 0x933ef21fd779daa5, 0x72d4cfb00706219a, 0x223e135f366216f7, 0x33adec3950d61fb2, 0x0000000000009f } }, { { 0xf1e0942288c24efd, 0x2b736ba7a0234d4f, 0x8404f1a9c82e8794, 0xc563f98b3af81616, 0x5de7463560734a4d, 0x923d8b6a6184ccc1, 0x45ae5a88501c00fe, 0x561be3cf4b8e3a84, 0x000000000000b8 }, { 0x4e837d4c2b87bdc5, 0x18e888ae00dc0a1d, 0xb892cce8e60d2dd, 0x3bdd829fcb088016, 0x85b33c7be9132615, 0xd962e999ac06fa06, 0xc1707297f743075f, 0x971d2f0892d177e, 0x00000000000039 }, { 0xb53567b98b11d64f, 0x749e27e7524e50be, 0xe8343bd8ffbba66e, 0x2a12726d977b5beb, 0xa839fc21a8eaa58d, 0x6795bcc61af036ad, 0x64dd2c5e31413031, 0x988d650fef32fc06, 0x00000000000080 } }, { { 0x7821376254b148a5, 0x932bacf0fdc3c26e, 0x3883a5f53dcc0bae, 0x2906941647a53434, 0xda8019f58716b785, 0x1cd2233a20992405, 0xff4b788faa566562, 0x416eb51d3d3656b3, 0x00000000000029 }, { 0x764430f2d0969b49, 0xb4b5ee85aed7ffde, 0xd5d2707271f095c3, 0x9b805a2ed035096d, 0x5e50e80563d9606b, 0x3d023d8b45d8c887, 0xe803bfc43e448551, 0xafa989c98b5e97d4, 0x000000000001f2 }, { 0x25457d2642113bfc, 0x28cc25c8642afee9, 0x8f0ca1d52b693cc1, 0x92c54ad8253a5fa7, 0x76035bd1d7342b96, 0x1ba6bc25c3e992e5, 0xbc229002d33d684c, 0xd41d2e9ee64ffe68, 0x000000000001dc } }, { { 0x12531fa13edd9a94, 0x1ee27e4ba6fe8da6, 0x984225d0c920c710, 0x4095db9b89124583, 0x9914a368d0175f90, 0x55121562521319b5, 0xe6f1f48a20d77dde, 0x529ea1cb9a337baf, 0x000000000001fa }, { 0xee85ac4c6de34473, 0xf2f8e0386f09ec45, 0x7f05d284542f2045, 0xc05870a709e2d510, 0x648c27be8b14e6be, 0x72830266880e1ac5, 0x913556794f0fba9e, 0x9e632744caf135c6, 0x00000000000020 }, { 0x3a449716ef07a7a7, 0xa8a904826c72430b, 0x691335550bd1c399, 0x216ca5a9845ec211, 0xd11444e4d7be0362, 0x57c6e9b998a99f69, 0xc1ea2b854de2721d, 0x9686438838fdd04, 0x00000000000172 } }, { { 0xd81fb7ec9636f535, 0x37adb37f12a43647, 0x25ef9e3df3529d87, 0x14ac93f7463defc8, 0x90e97fb81c59b57e, 0x7a6f9048efd6cc1a, 0x2c780f89a4cf9354, 0x6e41c140ba8cd478, 0x000000000000b6 }, { 0xc704446c4176a6fe, 0xda5d74fcff16d11f, 0x9f83df2a7e00bb66, 0x2ba89bf26a98b5fd, 0x853ed0ed6dea9f28, 0x1ae53271956cf332, 0x948aac341d1a16fa, 0x3b853ffdbaca5d8f, 0x0000000000010a }, { 0xcbc36d4bf58e5663, 0x2441b4a997678d2, 0xd29306a9a012c37e, 0xe926986581f0b642, 0x64cde2cfb563c303, 0xc4d5a287945bec61, 0x5f87089296810b8a, 0x61409471307ce0f3, 0x00000000000145 } }, { { 0xa93c3a7732bcab5a, 0xb79ee19f625823e1, 0x2b65b9d3fd35e23a, 0x38d74471d896adc9, 0xfb698f2472290af7, 0xcbb5b1ac6f7b5b80, 0x4e40130185535e60, 0x606b2613881bd2b4, 0x000000000000f5 }, { 0x4005600cd87fbbc7, 0xb69161473924c988, 0x45b6734984358e09, 0x4c2a2f025a595981, 0xea9740605889d7da, 0x3c6646f8af5233f7, 0xf07d7d4f93f82132, 0xe336bc36416f131d, 0x00000000000082 }, { 0x2c4f6876554d314c, 0x15af92df856895e6, 0xdb6ff2508b323c8f, 0x8290e777edd46d4b, 0x89885f3dcb6e3e20, 0x37132aaf6cc3c20a, 0xc76b93d771096b67, 0xb50580f9bc7fa221, 0x000000000000f3 } }, { { 0xab7a166896c1e0fa, 0x65117a6f2872b124, 0x25c6dec0832292d3, 0x6867ba277cd3cebd, 0xdd1310ec92ba952f, 0x711e6eb4b133ddb7, 0x1a76372435117587, 0xe1813ae57a94acf, 0x0000000000005b }, { 0xa65ed900c3c7d9ed, 0x1f68dda152ad2b49, 0xd525c60f2bf352ea, 0x643725b6cee1408b, 0xa7754452d8096e63, 0xbd70c57793661518, 0xa1ebfbb85cb63ebe, 0x6941fe926f9fcea6, 0x000000000000f1 }, { 0x8ac6854712c14e1e, 0x3276af61799eb74b, 0x30312ae67400d0b0, 0xe0ca121364ea84ad, 0xcb32859609d2c10a, 0x60ec2c1c2f6cfed2, 0x782b553a72b841b2, 0xde4af7797cc417c, 0x00000000000044 } } }, { { { 0xc059344c70cc0a86, 0x167369f839e879de, 0x5a4078b0426e43df, 0x757df1606bcb054, 0x5bad2fc24ce2ae09, 0x7b7c44a8ec874600, 0x6108ab0ed1ba62f0, 0x792748c5bfdedc07, 0x00000000000174 }, { 0x7f35e100d8fbf249, 0xa97bbadb964c650c, 0x627903212ccd4032, 0x92cb64942be2c0f5, 0x9c7267360025fac0, 0xe8f17201e6164d2b, 0xa1ed7b7202f5e84f, 0x5c54452acfe4d424, 0x00000000000151 }, { 0x54a60ac283804a44, 0x6038858ed0277b8b, 0x90f250ec6d9f6bec, 0xe7a1b5b37453ccad, 0xfa20b4680f6f3ac5, 0xda94c739824d5702, 0x7de4a57993feece1, 0x86f27b5a4255422a, 0x0000000000005a } }, { { 0x7de750fbff0181c6, 0xb26d284c5ce081da, 0xe9b754e9f8b5c560, 0x958070b8fe36b65d, 0xb954da3bb1cdf0e5, 0xf883dedf159a0671, 0x84ea179efb443c66, 0x3d7a814cde475304, 0x0000000000013a }, { 0x93ea728519cabaf4, 0x31590683292bbc3f, 0x61bbb761f42346f6, 0x1ad96fa07378daaf, 0xe2778087c3c71549, 0x83588e767bcfd4fd, 0xb9cebe99f5c117e9, 0x7a834400511b8223, 0x000000000001a8 }, { 0xf38083dd3b895476, 0x20c9ddcfb698ba7a, 0x2825e058d5f7e04d, 0x88f42477bd5cbb31, 0xc9b6ad37a73363da, 0xee5624f1f85715eb, 0x81d18584131b4053, 0xa0d1375800590b34, 0x00000000000014 } }, { { 0xbd342b40df0cb13b, 0x1d4de6142599fc02, 0x3d6af51d9f14321c, 0x2d34a57c397f5daf, 0x8531eb594bf3a9cf, 0xa3eec61f8b888867, 0xb249b9b7c766f404, 0x32474c801fe7fd0f, 0x00000000000058 }, { 0x854dea94ddd28374, 0x29863a733e900725, 0x40c7dd5f863bc015, 0x16538f63d3b5e23, 0xe34864b40af14e63, 0x98f401c6e479afe0, 0x75bfb264284002fe, 0x7f524f3153b80a4e, 0x0000000000004e }, { 0xa71597cb5a0a2efb, 0x5b41f34a25e92a0e, 0xdda626278268294c, 0x16c76e942c2dd98e, 0x3243c23ab4b83598, 0xda47b0be6820d7ae, 0x3c3eb98af8bdd07, 0x9743bd5fa6784a16, 0x00000000000184 } }, { { 0x42d3351fa25d38d6, 0x6b73b717e6ad3e50, 0x24029f164c2187ea, 0x7097fa7778abc750, 0x27f32f9dce3c010f, 0x51614bca46dc76e, 0x1323407b9e879eb7, 0xceea74d66c0fc7da, 0x00000000000177 }, { 0x9d343796c40c49bc, 0xebd403bb0c7ebd80, 0x76770fad22f3c08d, 0xbc5d75df6d5b0e66, 0xea0d99bccc2c22aa, 0x97ee3f02db9dfe24, 0xcfe00327e0a2bb2b, 0x98d21011cbd15da0, 0x00000000000161 }, { 0x49b377fa52286fdd, 0x2454d9635f0ce2ad, 0x26cb2fcf2e9a48a3, 0x703ee5c7d341735f, 0x40d3372adf0853bb, 0x713647e3ed8224c5, 0x1a45a8f8fa25eaee, 0xa44c5c0d82bfb6a9, 0x00000000000027 } }, { { 0xaf60c8bc6abf6ee, 0x3810211324824eb4, 0x78cced398b540a67, 0x5d3d8b585a877077, 0x4b8c9be68e0c8c36, 0x27d4030179b072cd, 0x4bd15d907de1e30d, 0x3400ccdf43262f6f, 0x000000000000cd }, { 0x822c41e27a636424, 0x7ad885cd8f635277, 0xef83be41833f60dd, 0xb135811cb3a0c8b2, 0x2b948face2e079ad, 0xdb48c8deb1ba08d0, 0x212396377e5b4f51, 0xcf0ec2db8327d5b7, 0x00000000000064 }, { 0xd1f446466c1d542a, 0xd3fe5d5a8f5d344f, 0xf2d2fbf307fc494f, 0x870f3c2569210b24, 0xd286a0ee20e4eecf, 0xb84ae006b17b7bc, 0xc8234cb113e122ba, 0xe3cfd0d908c427a5, 0x0000000000007f } }, { { 0x141f7bf176163041, 0xe4ed87917504eb37, 0x2a06f83642cd32d0, 0xd97623cd6847a9f5, 0xf160f076f124b0a4, 0xd65481a76522d1a, 0xac6c1f46dec7de4b, 0x5962f7b3f2b09a89, 0x000000000000b8 }, { 0x33144ec74a30f8ca, 0x93d6b76376720a79, 0x4dc5c1c93b31cb05, 0x77bb60a2f080fb1d, 0xe60b6629336cf8e0, 0x400ba0fdf0788b83, 0x8c84359e3fc687c6, 0x2d680c3c9b156bb9, 0x00000000000099 }, { 0xa0c6053979fbc50a, 0xeabedfaeef154196, 0xb95940a13d5345f7, 0xb74a5841e9cda8aa, 0x77e56375ea451277, 0xf37f509adc0881f4, 0x57dc5b10b9c61a77, 0x1e1892e54c7361c2, 0x000000000000de } }, { { 0x14895046c834bcec, 0xab3bd2be94f90db, 0x949324d17cf345ff, 0x16b460a9e0a1fefd, 0x587a2e9e37ef0ea0, 0x700a14e29076c9a6, 0x941eacf9e9a3b3b5, 0xc6d2c2aa497f68ac, 0x000000000000cc }, { 0x756a46ea5ad60f13, 0x94a47b6d07e58557, 0x3f534ac75fa1b3cd, 0x574169c605db758a, 0x6b81853bdf42f35c, 0x5dae90864ab2af1a, 0x81152cd010b0ea9c, 0xced4dcd97521b55d, 0x00000000000044 }, { 0x5bed19eb9536ab3e, 0xbe05bd2a8df5f9e3, 0xeb9345a3efdb2ca, 0xf3eaf841e0336ae8, 0x6a4f70ff766b71ac, 0x9f31a160e95c9593, 0x346a3993511837a6, 0xb21a490b8078f4c8, 0x000000000000ca } }, { { 0x114e416ea73472b3, 0x8847abdfebc2281b, 0x1d51e39e942d6de9, 0x563f69000ec09fba, 0xd0dc4e2d7d0fb337, 0x5e2282c33df51f2c, 0xa6565441a3eefd0c, 0x61f79d3146c4642f, 0x00000000000006 }, { 0x6d8db908d7e2ddc7, 0x27ee5d90b5630178, 0xbae503ac368634c0, 0xcb5f6c214e5620f4, 0x5070c1d150371691, 0x87e67c48f0e58d87, 0x5e2c589ef17ce8ee, 0xe11a135648862a9, 0x00000000000012 }, { 0x82e564ddf4a8ffb, 0x635ce76e8326635a, 0x1d5ca079bfdf743c, 0x8e8ec588becd1093, 0x9156deccc755be6, 0xf8b37136430c239b, 0x1c3f7ae3732d57bc, 0xaa52659e6b7f0879, 0x000000000001b5 } }, { { 0x8614efe20f2672a1, 0x13f4791d08cc7fe0, 0x2ffcd48857ddc9ec, 0xcd6e41d836cd5967, 0xcf2c7563f71966ce, 0xf4259aa099469e63, 0xc75ae96ed991769b, 0x40b33b27aee1229a, 0x0000000000017b }, { 0xd343599745f5c89, 0xbc609b542612c793, 0xebb1fc0828cc8ce6, 0xccecc2712abd3628, 0x26c3855608f8cd41, 0xf3a775547ad44ffc, 0x765e99d1d843cfe9, 0xcd2e951397f4814d, 0x00000000000039 }, { 0x6026f5653d8f9e0d, 0xe5cb8e1bbc503c10, 0x4591edb0ab398668, 0x4e0f3be6646ecaaf, 0xa66ca00398be6069, 0xb86c9c86093ce04, 0xcdb1c50bc36ec8c9, 0x61b07d3d92c031bb, 0x00000000000105 } }, { { 0x9d5221158fd01fe2, 0xf27496e36e269fe0, 0x4b876762cc0b9539, 0x213fa72a91befdde, 0xaf05ea6b0927c40e, 0xf9877c5a7b85a11f, 0x5da60d4a51212e9c, 0x3c9cbbf8b55c716b, 0x000000000000b1 }, { 0x6434e6369e107894, 0xf41cc8b7451affed, 0xa1d9902bb5b84b9b, 0xc82c951d0136cc12, 0x89205e6ffae0c1a8, 0xa47e0911e443a9b8, 0xd3d15d3b0b28f392, 0x28c58bdef9d19d53, 0x000000000001e0 }, { 0x41efbf8036b1cc29, 0xa52fb734a8350ea4, 0x7e922678eabc157b, 0x2f4953d9bffe5b80, 0xc32e2d1bf0d17f6d, 0xcaaa23796ab5f3b2, 0xa639c228e3f84cac, 0xf0d5cc259b3ed098, 0x0000000000000b } }, { { 0x2a97bdde2468fc6f, 0xcd8cdf9bbbc5c478, 0x25bd9bd2fef555ca, 0xe2f248ec4a9709c7, 0x514f64c4353505c3, 0x1637282c884262bf, 0x31aa5d5e35587837, 0x4fac0b7a7064d913, 0x000000000001b5 }, { 0xe34c0fa75a885d4f, 0x724e9398918a3be5, 0xf60d68a8e1f4ed81, 0x590eb831e44ce2dd, 0xfdd69a1e171ab5c9, 0x4da551412a788a34, 0xb72214861ea0d789, 0xfe3d592a0c7c39c1, 0x00000000000037 }, { 0xcc5f6160d214bd, 0xd1d86d12b92cfd00, 0xab3596349f40d0dd, 0x966dc859ab2e4de7, 0xff01257c50d01ec0, 0xd63ade37936fba90, 0x6b8a15096d66025b, 0xbc02a174157af6f6, 0x00000000000179 } }, { { 0x580625820f5d7be3, 0xff8a17fc9d6e5f9a, 0x5c10fb86b1e774a1, 0xcb8ff4aac48ee5eb, 0xe0d8622132eb0b81, 0x7e4e0188366a63d1, 0x7cef34cd100ef6d, 0xd58ba6d62c4971a7, 0x0000000000009f }, { 0x717bdbc49815b3f4, 0xc9580d1682bca5d3, 0x2c93b2ac26cb5b3a, 0x8b86ab31e6aed9b3, 0xda69f405c4c6bfd5, 0x54262c122aad20de, 0x200f6cfc5e4e24bd, 0x6dd9d1d379920a64, 0x000000000000e1 }, { 0x559fc5969bdee292, 0xb8ef1b2ebebfce7a, 0x9d8506ede5ca505b, 0x6ea08144b90a7fb4, 0x484ad2aea31b673c, 0xcfc72f9e3b077b6d, 0xb6ce6dd53598f330, 0xb9e2b02b77eb84e8, 0x0000000000018c } }, { { 0x99306524884495e, 0x62f719dca9007016, 0x9fcaafb69bdb2f8d, 0x7c99936e63883c8d, 0x799a868ab281d143, 0xae71ee162e4e98a2, 0xc97013807382b696, 0xe0aa2a7cd40dcd6f, 0x000000000001fd }, { 0x7a71c2dc36006e33, 0x362de09522ec89f1, 0xb51a894c6c86627a, 0x8e5583c3e3e84c6a, 0xb18498532a89b9df, 0xefb74ad66f4c2810, 0x77712476c76352ce, 0xf71568637cc5869d, 0x00000000000041 }, { 0x869936e0a3646df0, 0xb15ee42d7291d024, 0x9555f9ad7f8ee116, 0x9ffba6655fbb299a, 0x8a7a82c58e59e52b, 0xf32750674690af95, 0xac8be643ebc05f6f, 0x867c780156a0375e, 0x000000000001d1 } }, { { 0x5451d2cdc635047b, 0x652f3dcc118027c5, 0xa68f4036e41595ae, 0x7f00e2390b49039d, 0xb3ca3fd9bce3d3a7, 0xccc36f76e78226f8, 0x6dcbb8d5d392852d, 0xb07a1f17bcb1a10f, 0x000000000001d0 }, { 0x53561f52f9e1276d, 0x2b92a751e2975baf, 0xb8d0425d5959a8f4, 0x38e09d66f2d94191, 0x125f0c0f9f5fecb7, 0xd635adf7bf5dada9, 0xbdc87d3dec2b3a5e, 0x75b23835638135d6, 0x000000000001c4 }, { 0xca7dc9ec0cba27fe, 0xaa72dc2691eba63a, 0x7f9470222b9879c2, 0x303968fe910d3ae9, 0x8d706f9f2140d99a, 0xb073831b0bba69c4, 0x7d1df869a95251e1, 0xc9002bdb66be8442, 0x00000000000052 } }, { { 0xd967b24bcba97551, 0xd0e5b0f9be4453ef, 0xabab8db215bdb6b, 0xebf4c6bf8247de74, 0x7c77733dac55d5e9, 0xde895a44f8a939f, 0xa16c794960e616e4, 0xc5332b9f815f6a18, 0x00000000000073 }, { 0xc227fbc0c1d313d2, 0xe64347d49bd09f66, 0x3f4043cac8e1463e, 0xe778c45828bbd66f, 0x62ea8063cda582c7, 0xe5cdebd2d48fb1b0, 0x85e49f90e87c29a3, 0x7d792ffc518fa9de, 0x00000000000081 }, { 0xebfc2082efed2c09, 0x805dc4adec25844d, 0xb45736a3f251b857, 0x7e6629eb5b4ca932, 0xaa59d83390d37fc9, 0x34e1f576feee64a0, 0x94ec3a2a56c7bf39, 0x707aa55ed8bb45a7, 0x00000000000184 } } }, { { { 0xf454aee65e6f4904, 0x40e6c0ea504e597d, 0x8f48a4144b45f881, 0x544af771fc964161, 0x3b925c2557884b4, 0x12dcc24bbdb56d4a, 0x2e6464857dcbada2, 0xef9de3da503ccd1e, 0x000000000001a6 }, { 0x5003a7613cf7d201, 0x4ae74af9c3ef1667, 0xf19dd207e3803b0, 0xc2ca508a70dde886, 0x6487ad485e0d91c1, 0xe20b6e64ba6fd396, 0xd20d4c20a316cce7, 0x171c3cbdc452a734, 0x00000000000099 }, { 0x623603a98e4ac8e9, 0xda033530b1c0b2c0, 0x5538c9a10ad1f373, 0x9ee0ab86d64a67c4, 0xe06dccf12e240678, 0x3d611dc9f17a9fa7, 0xe608fc7674221263, 0xf0ec1691980b79b5, 0x000000000001fd } }, { { 0x67b36b94bb7560e1, 0x112744512a3917e2, 0x19f8b162c643b261, 0x58f474d3feaaf71, 0x8d0107fb11d73f32, 0xedc3037a70ae7843, 0x6e0a40384c987146, 0x67cf9f3d4b6c7e07, 0x000000000001d4 }, { 0xd85eb66f9cda9dde, 0xb5c12b8139750ae1, 0x55eeb708104147fc, 0xeec4ccc40f049b98, 0x30ef8a29cb293291, 0x31eba937b9189c1a, 0x3fe3ca31b0427a54, 0xabb93b65551d1e50, 0x000000000001ed }, { 0x1c38ed941eea48b7, 0x198a8b92bfafdd22, 0x3b021e744fd92148, 0xc54a71559f104c96, 0xa301c79c4fbfd983, 0x2e2b822b45a8186f, 0x463bc46ee8683fdb, 0xe6f2f5386a496378, 0x000000000001f0 } }, { { 0xcc53ebd3926e9ef4, 0xe70d96d8ac10450c, 0x6531d5e8448e6a4d, 0xbf58e1b297336582, 0xf8fc1a8231266bd9, 0x681121d3694a4fcc, 0x8b42aa24082c6e65, 0xe42a82fce89450d1, 0x000000000000e1 }, { 0xb18d51d1f00f821c, 0xf61e7a3914bfcfe9, 0xe27ab56b5960124d, 0xdc8b2f8f48a28509, 0x776f74e65d7f11cd, 0x280d35a37e1a6213, 0xbc3a10d1dede7f76, 0x25b27e3f6fbc9141, 0x00000000000149 }, { 0x909245b4f9091b54, 0x36cd2a99423ca1f2, 0xbe84a133dc4a9216, 0xaeaaecdceb7b6283, 0x116f0f4376c30693, 0x5a4a31e29b89bc47, 0x225c6c26699d333d, 0xe1b1deb2ad4b0d9c, 0x000000000000a1 } }, { { 0x2fd869a73a5597e6, 0x218428c682ebfc3a, 0xebf8f84f9b4873bf, 0x2dd17453e6b832ee, 0xe809b55c4f5c39a9, 0x7595b8c3590ac55e, 0xa7fb1a70e52ab76b, 0x48b737f20c81c1c2, 0x0000000000003f }, { 0xf46df8f30b383822, 0xf60edddfaab08262, 0xc867540caef27049, 0xbb40387aa943a860, 0x84b4c1dc51d11ade, 0x4ed9c23975b07d46, 0x2e0120128a61bdae, 0xb47377fe895916fb, 0x000000000001cf }, { 0x6acdb3d9f4c655ed, 0x83896e0e75e981a1, 0x4beacdf614152352, 0x6123e2460dc53c99, 0x9a731bbe024c3721, 0xa6cd2fb7da265880, 0xc6629b4451925f5, 0x7ab5ccd58024be1d, 0x000000000000f3 } }, { { 0xba06cc9522b93021, 0x5c8bb4ea00a860c2, 0x444bbfed186e66f6, 0xb25579ce79db892f, 0x933d926e2abdae80, 0x904ed513893e9152, 0xf01a71ac1fe510e0, 0x1c31929ce84d3715, 0x000000000001f3 }, { 0x59d339daeb7e359a, 0xd5e353fc706ce483, 0xacd46169c1283787, 0xbe94a66a0ad3e379, 0xe5524f19e092e801, 0x873d5df7e09e8f87, 0x5fad11c4450ca2d8, 0x8eda283c84836df2, 0x000000000001a3 }, { 0x1f919d482cd7f046, 0x38dd7fabfecfd63b, 0x7cf867ca8f0adbb9, 0x4947847147f9ac1b, 0xa248990405ffcdbb, 0x356fa04019feeccf, 0xd2046c45b93694c, 0x3eabbbbb55a049ad, 0x000000000000f5 } }, { { 0x8c7fd0a5fd0e4939, 0xafa6c222bbbf275f, 0x9d81c2f7cd17cf11, 0xfc6c3032ce270b35, 0xfa0db59d839900fe, 0xfd40d76d77cc15cb, 0xe8fe95c6a867d6a1, 0x2c413016b50cc5cc, 0x00000000000045 }, { 0x6506e65e3c881f21, 0x903fea522ed1f0ca, 0x19c5afd58e7de4b4, 0xe695751fefba8835, 0x83f361b01ee87350, 0x9c7e0c2ee828cb63, 0x373017f553f07c8f, 0x9ed61d18b930ef94, 0x0000000000019c }, { 0xabd9f9a00880ea37, 0xa3a556bd5eb82d0a, 0x7375fe3a946be386, 0x4339b9e22d3ed67f, 0x608566eb3306b6bf, 0xed2b011e99b612b7, 0x3d1106643d3e1d5b, 0x3244ba49351ef536, 0x000000000001a3 } }, { { 0xde5c9b784564f0d, 0xeef1dc40fb9a449a, 0x7c4e34a0fc19c66f, 0xef0e459c58e95a64, 0x92ed74ebb9dead3c, 0xb538c4c06b9b06a5, 0x89a3ce092db7a055, 0xe38a57b58dff0960, 0x00000000000079 }, { 0xbd71017a73b86c07, 0x5cd2e76586f188c2, 0xd2289a1e6f820e85, 0xf126a9c45071a17f, 0x55a8aa6da58e1d78, 0xb9809988a9b2ae94, 0x7147ba54e7590f4b, 0xcc55dc223479da05, 0x00000000000197 }, { 0x4f77b0721f1ee2d7, 0x3a46149e79f2d704, 0x94308514b1596e66, 0x2642c7947b3c0bcf, 0x90e874aa3a82a4b, 0x7748c5a4a60fabf6, 0x4ebafbcee7b5ac0b, 0x17f961cab3b0e4c7, 0x00000000000091 } }, { { 0xe6d266111ca30b0e, 0x1e3830d46f7cc82f, 0x3d41cbdd8d370f4, 0x3f142bf8035086e3, 0xe76b7252611d9bdd, 0xbe8fdd2ddbf66a0c, 0xc463a004cc68d03b, 0xf61e1d7f9d43d84a, 0x00000000000131 }, { 0x60e7e41c4b30d673, 0x9c22c2ca85c8ee98, 0x165ac7efd4f6d698, 0xa61341e2fcc7c3be, 0x279d04c8fe14edb4, 0x9a837a0004ef9f7c, 0x2be91c89ad2e34a0, 0x3acadcd3bf21d39d, 0x000000000001bc }, { 0xee6d5ea54a63a4cc, 0xe0db41558addd74c, 0xa48d5f8ab7960a8b, 0xdafb10dbf8356ab2, 0x174948fb86ffa34e, 0xf27cafac6acaab3a, 0x9ea3fb0438db7289, 0x5453b18224e18c88, 0x0000000000002d } }, { { 0x576eedee7f87d69, 0xf3f49475dbd40f43, 0xa2b32eb7f15b89ad, 0xfcf505d13d1d016, 0x834b5bfa9164ab92, 0x5fa788d21641906f, 0xdcb584c63acc5b7a, 0x302dcb108c39bc3b, 0x00000000000117 }, { 0xa03f87d85098c1f5, 0xa8111c47c860f2e9, 0xd485d085797abf47, 0x9b1c34ddbc2f5c3b, 0x2fd0393dde0d12af, 0x1398d203ba2cbd18, 0xefacd0eb0d4dad11, 0x52317db4fe926d09, 0x0000000000018d }, { 0x3cb208e8124a11eb, 0x7b0f387ab399d78d, 0xbe6e24b0cf713bf3, 0x7f51074f6ff731d1, 0x2b20f35b24f720e7, 0xb62770e53eac2c5c, 0x6f7e370447594ac1, 0x2e671a2592dc545f, 0x00000000000161 } }, { { 0xe4b4eb36b2c003a8, 0x24a80245e8dc4634, 0xde573c4d67c5424, 0xcafda10bdd93d988, 0x6c968b086b665c53, 0xa246e93ada3817c1, 0x9a8f089d93c2c40f, 0x97713fc6ce98baf5, 0x00000000000097 }, { 0xee3a97f70402c03b, 0x14a92f3d2f8e5f96, 0x7e2f765aed8d87a1, 0x5e8308f9331b9557, 0x951db0edc1eb7d61, 0xf31f420887fa845e, 0xfc186add9966f567, 0xcbd523c5f56ada80, 0x000000000000de }, { 0x95bb043e6efbcd33, 0x29b4797c95afdef0, 0xedac65205c15fb28, 0xc3a892c5464bcec1, 0xa02e6abc8aff8664, 0x58c46c3533a30da4, 0x2be6ba86260b9212, 0x17f340f13c10e320, 0x000000000000aa } }, { { 0x6d92ad0031e2e52a, 0x8244dd0dfc71a5f5, 0x6904853a11c45bbf, 0x4c3434dcb0ff55e5, 0xc434d6cc7c53bd7d, 0x366d410299e11137, 0xc6cab34acdd05271, 0x28ada0a86fd32dde, 0x0000000000003d }, { 0xed0f403ced1c5dc2, 0xcfbd473130a96ef1, 0xeee7d6d51e5b97dc, 0x54a7851fd9be76cf, 0x48e69f3f709e6bf4, 0x4d55819c61f21782, 0x25afca296a286ef2, 0x571013b1d95df4eb, 0x00000000000008 }, { 0x5942fc475115cf42, 0x52c317866bf2024b, 0xadc1197e49f43360, 0x34b2c3b6e173ebb3, 0xd15b2bac7205b61a, 0x557458506f822f1f, 0xd4a4a2359c1a1179, 0x734c354dfada4adc, 0x00000000000074 } }, { { 0xd72114811c83b6aa, 0xbe7ba015397b7d39, 0xdd65d1a22779ef9c, 0xdebdb1c2dfbaf66e, 0x81fbe77771ad3bdd, 0xf050057fabbb712d, 0x2fb4f8b19dab9c7c, 0x8f1521386f6859c1, 0x0000000000007f }, { 0x23c61fd9a40c2736, 0xa76e76e0dd1b80fc, 0x31f0898764f237c5, 0xe7f9b0699c5b871a, 0xd6e1ba472d7e4c36, 0xbbeb9faf87f2cbe4, 0x56f89342ec1d13e6, 0xb3d3f1b76002e392, 0x00000000000142 }, { 0xf1ffb969dd2a384e, 0xb17be6f59b34ded8, 0x6361b61366498355, 0xa1b0eeb922f47059, 0x37cd9857d15b503e, 0xd2623114ecb8dfd, 0xbbcf3aa5654ea7ee, 0xfc5db5123fede0d7, 0x0000000000001d } }, { { 0xb3adea243abf6313, 0xa83562ca4eb3f866, 0xd480777dad1d37e1, 0x41be0ef5f61c3a89, 0xb3e37b27d425579b, 0xaf78fd4e82a46f8d, 0x6922ee515c8deee6, 0xd210a22bbc7ec6da, 0x000000000001b0 }, { 0x62414f7f8ce36540, 0x4091d9570a50bb47, 0x188968bc6acd4733, 0x7f999a933e3ee05a, 0xae82968b68da0f0b, 0x59c67b39860d6a5f, 0x834060a94092e926, 0xa02d3b24cfb36a5b, 0x0000000000005a }, { 0x8c34f1a566666fc5, 0xcc0ae0c371a612d7, 0x54cb47ae5e0d3501, 0xe2309ed2571310a6, 0x5a5e9d81625c5584, 0xd169e1ba350678e9, 0x6cc58168d130ee64, 0x409b4fe46d82a3df, 0x0000000000000c } }, { { 0x326835e059bb1f64, 0x3b7e1c1437a0ba08, 0x47b5e8e02be502ce, 0xc02de693dc7fbcab, 0x87d5ce135ac24440, 0x29585791b39c8523, 0xd86063ab3c87e62f, 0x3d0e5a9633756087, 0x000000000000a5 }, { 0xf4102b799e22ea4e, 0x82b324fa5ea07690, 0x52acdc97c5e08aa1, 0x6379db17409fe109, 0x3d9c3a28a15d2042, 0xd782a007a0d54399, 0xeb905ccc8dc44432, 0x9d26e8bc8fa4538, 0x0000000000003c }, { 0xfdd816b1cac07ee8, 0xcec82842fc6d68c9, 0xe26f8f78414ae8ad, 0xfca18ccca03eacf3, 0xedb1b5e3963fb5ae, 0x2afa54ab0c0fa203, 0x4815bb6b2477f0c5, 0x620542979cf5b66, 0x000000000000d6 } }, { { 0xcd69e677e297ed34, 0x4b204860b714c80a, 0x770bd77624838d0b, 0xf63d13784ac4bcd9, 0x9fa640e888bdf200, 0xbb1668c2e87467b3, 0x67204b2713dce618, 0x57f37e9988e178cf, 0x00000000000163 }, { 0xb00f2717baa77b6b, 0x3517796dff4e1cff, 0x226fb4f4c88bf506, 0xac936807bba59dc0, 0xa9e3d201c7f12fa7, 0xf4fc5c95ac02480b, 0x8800fcfc67196339, 0x295d639e8f3553a6, 0x00000000000153 }, { 0x7e37ba58a85b9877, 0x7de2a03848e0f4f7, 0x3867f6f3f28b1851, 0x980def0f1677b11d, 0xa5db28a0f5b060a3, 0x259816d9e2e51acc, 0x88994198568fc1a, 0x9ce257f7898b3954, 0x0000000000006b } } }, { { { 0x941d8ef5f0eed9ab, 0xd28638e4789d71f6, 0x1b57d4e41c0a960f, 0x61a1513a4beae94b, 0xd2456c56635bc51a, 0x41b23852bcc7de08, 0x4b804078b74c631d, 0xf2f6b96012d8c216, 0x0000000000014b }, { 0xc74e382576587b71, 0xbd8910f0e1bb191, 0xdf23c7df1566e2b2, 0xf5452b224997bd6d, 0x84e1b692a7c3b5ef, 0xe6a70af4188208a9, 0x3f5897599b6a99cb, 0x5084c80ceff015ad, 0x00000000000009 }, { 0x72120c67e937eb0f, 0x3c9e6ddee91c1678, 0x5daa6ab3a8419d0b, 0x8b283560b34bfbc7, 0xce634e9943f30f13, 0x90c130d6389eb6b0, 0x2ef2ac53d958a7cf, 0x53e1d280a70d8762, 0x000000000000b4 } }, { { 0xef0c21ea49b1880d, 0x6870b74b970fd904, 0x49f4cb8b9c2105a9, 0x2bb1df46cf87265a, 0x2dc7d123081388ec, 0x465a35f9b2930827, 0x4b760076261ab66d, 0x865a47683c40aa34, 0x00000000000075 }, { 0x7ebc9926724628bb, 0x85376ea5db231477, 0x52d9ab16b31a8b94, 0xa3d88d54ad501fb9, 0xab9a69df37a1f057, 0xe48238377c533e5d, 0xb799e4f52c2f6cf3, 0x15ea588c70a7a9d4, 0x000000000000e5 }, { 0x7a9bcd09c6a98f04, 0x72d40cc5a318db3f, 0xd5056c3ccae1aeb6, 0x6305260f15b4cb38, 0x3c8226fce0363b46, 0x1f88e8c80ba3395f, 0xc630b5b531b20866, 0x31ab6678db0b1a35, 0x000000000000a6 } }, { { 0x7154aa92ad24f352, 0x5350c6a0b46c64db, 0x1c44213336c1131d, 0x446af4dac4e04487, 0x75a94d69fcc8aa9d, 0x7189d7f2e218114f, 0x3dcae711bc41f1d6, 0x87f8522f79d4391d, 0x00000000000106 }, { 0x5fca8b3e2de7f42c, 0xeca290e7da061f3d, 0x87f64b403bcd3d3c, 0xf8e1ca246e2bd48a, 0xa80735b8dcd2ebae, 0x1cf1bc74da223f8a, 0xa3d5791fb553e44c, 0x3021283713d7b3ed, 0x000000000000f4 }, { 0x16592e0bce3225eb, 0xd4fbe5ada8f37804, 0x42208ea6308252b5, 0x76b6af2c65736322, 0xb1637bc506855574, 0xf98731d373404eb6, 0x3b0bae74e7d6cadc, 0xddef2fb4887a6bf2, 0x0000000000015e } }, { { 0x3b83d139be4b3e3d, 0x82a47e569717b776, 0xfef03913148770f4, 0x1041b2d46e36728, 0x2b19bb59e1d3db8d, 0x73a9c5cb783170f3, 0x5e5737e90839e27e, 0x52275ce9a38bed3a, 0x0000000000002d }, { 0xaccac1ec818887, 0xadae34f8591fd39a, 0x87c05d65af72b48b, 0xfb78474ae9ce8afc, 0x33cb302eae927ab0, 0x9a47f73aace3892f, 0xb3fb191119d18836, 0xcf757117cf337483, 0x000000000000c6 }, { 0x149a445c7e2f3212, 0x353a047f96c28ff2, 0x5d9e736a7844513f, 0x355b02cc72db24b2, 0xd3d9c56a65145908, 0xfbb2124d80910095, 0x1f57d8d158ae24e9, 0xb1d5736deb317e7c, 0x000000000000d6 } }, { { 0xf3125ea758b53f70, 0xf1153ba9c627eaf0, 0xd3acd33bdf151b5b, 0xad9ab14f2fb8de9d, 0x90b472c0a76540c6, 0xaf5dd4d1ecf57c10, 0xedfe87efd8ebf743, 0xb7aaf030cdd83007, 0x0000000000000b }, { 0x498bdb07a1460eaf, 0x9b3e1c4d3bcc0c81, 0x2ab565927cd16a8, 0x1c05873d9518a052, 0x41edb5a28a77a0e6, 0x846226317926bc6d, 0x50dc2c20932224bd, 0xc73241d4da2cef89, 0x00000000000172 }, { 0x7886a436ad239dbe, 0xecf1f8897e9814f, 0x1ed694a90da6bf8c, 0xef583f14eee1ad43, 0x32c3d8fb0b2de367, 0x95360b1b9cc9ceab, 0x6f3473a153d6a0e7, 0x570267f92ff83531, 0x0000000000001f } }, { { 0xbc06cc754997a6d9, 0xa943922b80bf57a, 0x90916589821726c3, 0x62a57b96c9cac403, 0xbfe2b18ccd738164, 0xe2e60837c043498b, 0x5165b8302dedb282, 0xcab95031c8a2248a, 0x00000000000051 }, { 0xe7a9455043f06c95, 0x13fd06064d99a734, 0xcd0fc0e49b88c9c9, 0x54098bc3165672c3, 0xecb97e68bc10fc48, 0xc441b8c725f5bd3e, 0xcd32d7f8955d64b9, 0x8a190ef2d9c0736b, 0x0000000000002d }, { 0xb08c5fdda34dbf9f, 0x68c2d58242dfb230, 0xf32ce64b39726f6c, 0xd7ce6d31883b8dd4, 0xae0f29a06523a54b, 0xbd501d5508f2e6a9, 0x73ae3072d06dff54, 0x1835a72e5a8171fb, 0x00000000000118 } }, { { 0xd91a0adb1bc3d097, 0xeba8bd293f36fb06, 0x2602223fc60cb0dd, 0x35b59f6e4b4fb5da, 0x4e0ff275dd3fe624, 0x67e90fc34945ac14, 0xb306e453d88ae908, 0x3aeb3ad73f2f3758, 0x000000000001a6 }, { 0xe4f143e7e17cc87f, 0x236fb36484c10b36, 0x36ba90562425bd00, 0xcbb91948fbea2f9d, 0x6776935a58e5cae, 0xa8f5c6e33f6779c5, 0xbb8edc3d9fd574cf, 0xded6e73d6139ac35, 0x00000000000195 }, { 0xc7b7e036db1d24ae, 0x7fc65b8b32d35357, 0x5745cb8b43010898, 0xb3c0f51820fbdbca, 0x8ed18f15a7bf1928, 0xfd097e2660ddf216, 0xf32a558ae0bc953c, 0xcf3d138916eba386, 0x00000000000088 } }, { { 0x35a87dcc6fb5a71a, 0x4a4a0670aa0ef863, 0x4d0ea394270b0393, 0x631ebf60be49fde9, 0xcb9e50a47139ca80, 0xdb5bbc5e7a4cdc68, 0x43654b2de6acb60d, 0xb9e6ce85d9811ef4, 0x000000000001cf }, { 0x55d0df51a2dab1cd, 0x5d8a352000469488, 0xe386dc34f02cdb28, 0x32455e5c3e38502a, 0xb1b38301130032f4, 0x91a926da970fd769, 0x1dfb1c3b3139e0f8, 0xd6768b46086fde7a, 0x0000000000011c }, { 0x6f28b53904c41702, 0xc233ef040fa84122, 0xfffeeff58b563544, 0x52cee3d1dbe745eb, 0xa83aab7b39ce4cc8, 0xe65bec0308a68739, 0x9208758f9159aa32, 0x806138e5baf1ae42, 0x0000000000001f } }, { { 0x7ab964bbc270f730, 0x74e574b6c65ecb3d, 0x783105f58b715bb3, 0x2fcacb4cfdc643e3, 0x7e81120e108dce0d, 0x7ddf6509b578751f, 0x6a2eb35f81fa573b, 0x33f0a51ca8556bd, 0x000000000000ce }, { 0xe7675f7228c5643b, 0x4149cad185bdd32d, 0x2b715dea5a70e9ad, 0x198085b10b511536, 0xcf6fe6d30909d318, 0x94102adcb84fde61, 0x2386c9e289210d50, 0xe19f8de68023e087, 0x0000000000009e }, { 0x4512e1719826e4d3, 0xe28779f52238cd32, 0xe3fa25e165cf0d29, 0x4486ea21acdfe6ba, 0xe14dc0298d6df11c, 0x562af13f2621bf4d, 0xdc52f9e770642e13, 0x39f8ff1423175856, 0x00000000000009 } }, { { 0x7c35550755797fd2, 0xd8da33223a9899ff, 0x5fedf762460b11f6, 0x9d82fe991c12dc93, 0x125986377b68b6da, 0x3ce62a58e6dd8109, 0x6c1d7ae8c160c8c0, 0x4418ae079545425d, 0x0000000000002c }, { 0xa973b984285a5eda, 0xde70e881e70708c1, 0x6c0075f7e9e93c7f, 0x8bb39cba4672166c, 0x6c211a52161a54ab, 0x45c2839ecd44376f, 0x4f442a2a36fc749c, 0x4c7bf79012fc7e71, 0x000000000001ba }, { 0x27fce4180b206f10, 0x77e08d390261dd63, 0x8f93fcd5dcdea9d5, 0xf5e8fd7ca5ddf966, 0x38d2e9597525ae2a, 0xd92e74c847696e49, 0xdfe14f3ff7ce8c5a, 0x22b85ae479b7744c, 0x00000000000105 } }, { { 0x602342de704ca9fb, 0xe7e2e1fbc5edd4e6, 0x844d8a99d6ba1588, 0xb90ff44c996ed68d, 0x3a75c5c4593f7af1, 0x883e402ca4e8cd5a, 0xefb98dc47dcdbce, 0xf7c753b3e112aebe, 0x0000000000003d }, { 0x4b035c4d7f7a1717, 0xdc6c3f7c87d472bf, 0x3425fe25772d8adf, 0xb0ee8c75b6f977b6, 0x66c843fb121da173, 0x8d6d62962f1cdd0b, 0xe560fcce64da545b, 0x4b573c065966f35c, 0x0000000000000c }, { 0x3925d8e074287cc, 0xc6f8a3b6a14ece14, 0xf2261a7d8896fba1, 0x66b61f83fb4c9b5e, 0x2fefbef1934a4706, 0xf1908dd8553ccdae, 0x5502be91bf17e8c0, 0xa4ce62128df81342, 0x000000000001c9 } }, { { 0x14f45d262a6543e2, 0xe716eacd9c78c42f, 0x8aec65e61b5356df, 0xb1162afe5d4fc874, 0x4d50f0c02a341e04, 0x54dd99d8af3a601, 0xa5ba806b8cfc9eee, 0x521d655aeff54d1c, 0x00000000000035 }, { 0x65fddfa33dea1060, 0xf056c503ecd3ffb1, 0x7c14c4193fcd2395, 0x78e312d441e0a10e, 0xc11bfffcb3473278, 0x9739c3d269b21d62, 0xa1fa6b4a6904b261, 0xf89267184d2c2e46, 0x0000000000006b }, { 0xea7e66953e053ce4, 0xc47477ecddc2c708, 0xa22991ba91b455d, 0xdae52727e75a90d0, 0x184b394323b05d1f, 0x9cf4ccf38e6e97d8, 0x95550e00d6b181ee, 0x7ffbd70f77e0c0d4, 0x000000000000af } }, { { 0x582774f94fbc26ae, 0x2a73d170b7340b6c, 0x887f43913520892e, 0x45bfdb1e53a1b944, 0x85228a18473f221d, 0xc962cdb2d3e84c83, 0xa65122c9247fff80, 0xf2b67991955fa8a8, 0x00000000000115 }, { 0xc427ceee8bf8275a, 0x40fd2ec87ea16bc1, 0xbfd89e19e6eac082, 0x1f7328767cb70f96, 0xbbb7b7f68a2f95e3, 0xb9a573bc38d4edef, 0xffeef0526cfd257c, 0x5cffa9730652b696, 0x000000000000c2 }, { 0x2a6d9cae4a12fe9f, 0x97d8bb0679791a67, 0xb98a55241198a991, 0x655db92bd8973f88, 0xcd4c7cbb96dc8525, 0x9e28e34277a3a4ea, 0x12cbaf4be8d286b3, 0x34bdc30481bbe3e4, 0x000000000001cb } }, { { 0x7d5eb3beceda8156, 0x97f2eff0a7478ed2, 0xa9284871f73e0d09, 0x26ccec07e1655d86, 0x6f1b4bd4afb8509d, 0x58d45e989d6bba84, 0xdce9a877bd35e0d6, 0x80215ddb3dd5af84, 0x0000000000008a }, { 0x95f0415ae7417404, 0x73d9fa800c365692, 0x2ee7faeb4ebed60d, 0x4e120f3dcf72faf9, 0xc78423e167c3c14c, 0x9f2f2aee92fbe0ee, 0x5e374f157e9160d4, 0xd397c565430ca594, 0x0000000000003c }, { 0xeb7fb8e66220662f, 0x6d82503d1210e159, 0xc109a17362a21d87, 0x623d6519152b832c, 0xc5ef912bf1b02adb, 0x57527ff97688b9a8, 0xc43faec5b4e39f77, 0x86e531185c32f560, 0x000000000001e6 } }, { { 0xfd0e8159fd9c696, 0xa756141c327f42d9, 0x6ce66efa57800c33, 0xb39c36e40e08077b, 0x162199484a9bc945, 0xf111ee049c6067b2, 0x8be9791f1c395711, 0x7145e7c56b143f86, 0x000000000001b4 }, { 0x3cbcc029e85ec559, 0x8a0f25bf0ba03371, 0xed204df159fc7abb, 0x827d9212ab361e00, 0xcdbf8efc1fefcbe3, 0xbda6164bdcec1647, 0x4a2267eb9e348fd5, 0xdb3544b07b33430d, 0x0000000000006f }, { 0xfb4885c1a1bef131, 0x52ddf4b34ef939ba, 0x2820d8cde31ca275, 0xcc029a940b7b3e91, 0xc6fa0c57af53709, 0xd7ef5b04d5d06ad0, 0x6a4c1443204fd46f, 0xa2758b26687a2abc, 0x00000000000094 } } }, { { { 0x1e6c7be83fdb1186, 0xbfc759ae741cbcb1, 0x7275795eecbe79ae, 0x381ded53fbbb04, 0x61e793daab74a477, 0x3ffc5ba4121e9514, 0xf8bcc1cbd4d8ec9d, 0xc074f4c8cdae980f, 0x000000000000cf }, { 0x40a190b113de5d84, 0x171aa46ae9936258, 0x678ce190e165272d, 0x4d92b5a77831d840, 0x8492ea3d41ecc66f, 0x43d9da8f6240913b, 0xb3da1e79435980f0, 0x16c701ad1ccba9f9, 0x00000000000009 }, { 0x48d6798086da63cb, 0x95fdc7e0d7f9e9ee, 0xbf214e8964e199da, 0x2a36f884b0cdc0c2, 0xf0690701e9e4bd82, 0x482b31d59db6f7bb, 0x293d3cf15ff33a8a, 0xa61581602e722de8, 0x000000000000b5 } }, { { 0x8a132367eca3a4a, 0x486a945bf4ccb5b3, 0xb5427b6e87fdc6c7, 0x9f4ce7bf38c6752e, 0xf12957ab97533b8b, 0xbb3ad669146ff9f, 0xd6f1360a8ef59f5f, 0x936e0216ae7359b, 0x00000000000078 }, { 0xb19405828283281, 0x57b08860ad92657b, 0x64ad2662273a2f49, 0x685e2f6ef822821b, 0x6ce60526ce027a7, 0x29a9eed687c8201f, 0x6bcb40d2dd5851ff, 0x1e6677895c72124e, 0x000000000000e7 }, { 0x422e328b6bf7fd38, 0xb77fb2b50315338d, 0xa95d514f3e4e3f71, 0x6e978efef0b7d7c, 0xe6d009f2483e5634, 0x88edb6ff2bcb3fbf, 0x8bb25b94e61f8d90, 0x3422d54706a6ee24, 0x000000000000f5 } }, { { 0x5a5cfbc201915892, 0x3a335700d06e8ffe, 0x995e6f871139c5ee, 0xf208fd45626480ed, 0xa4909a086f31d6fb, 0x83970a76fc22b98b, 0x9f7d6750832f0a93, 0x9c824f65cfecc1f6, 0x0000000000018a }, { 0xbbd8711312f05f96, 0x9eb706b490084018, 0x94e490730bba7fa6, 0x81c403d6cade8b6b, 0x47c367ccb2838b09, 0xcb490df24959cde3, 0x8602544107cd66f7, 0x23cbe3220ef38ce1, 0x000000000001cd }, { 0x90ea0d286329ab6a, 0xcb0975a690a3d060, 0x78e4948aa1837f38, 0x3d69a3be10ea768e, 0xe0044969dec0a23b, 0x5e4cb6e0d20bdf5, 0xa4bcafa21f051fe4, 0x13d666d12a238dca, 0x00000000000195 } }, { { 0x9e4df00c366f75df, 0x4a7c6374656183a3, 0xbc1d1bf24f90eff8, 0xbc43fd00b9f7e195, 0xd1f5ce651869ea8f, 0x72b4b52a90528d8a, 0xff95a04cf372123f, 0xa5143a0fc71af196, 0x00000000000104 }, { 0x72bf0062d148ed0c, 0x2dab3d7e4ad645c7, 0xda469c02f6066dde, 0xe06dbf86c2392efb, 0x35254c21bfcd7207, 0x77fef24ddc532eeb, 0xdcf2999c6b112d29, 0x9a111e0cb8707148, 0x0000000000005c }, { 0xc5402b53a4d15ed8, 0x48b1e9342444cbba, 0x43e7d183f5e3082d, 0x96bd3146d4c86f10, 0x8bfb1435bad7b684, 0x34455fd79cb1117e, 0x1dd78af063867841, 0x1313e1b16e507cc4, 0x0000000000009f } }, { { 0x4fa8b2e572e60b1a, 0xa37e9e94e34ae67a, 0x1b24b062a8186baf, 0x78f7941779472ba3, 0xeae81b22a1cd8739, 0x7c7b68f6c634bcaf, 0x442243cbf3c0ef05, 0x26a884585b82c9d4, 0x00000000000166 }, { 0x1b34872b9e34da9f, 0xbea1935f17ad90f9, 0xc87831a76e02da32, 0x7ab06021f996d4dd, 0x1c694ad518c79020, 0xf97bf56a832f2095, 0x38c68673c963dc31, 0xaa1f9332474b2a36, 0x0000000000012e }, { 0xce3ffa40c0b48a65, 0x7517dbd585ad676f, 0xe911bf64a49dafb7, 0x30d5237aa0c2690a, 0xbf5a34d86ed42b0c, 0x44709f46c4485377, 0x2d9f7665793ee25b, 0x82a2e3a3bc24bc5f, 0000000000000000 } }, { { 0x79fb8515f05a6ecf, 0x79970c7b58da0309, 0x6840531c93ca8e1b, 0xe1b06a77c4c07da1, 0x3eb67d8a185d0210, 0xe49fd4fb12e7f505, 0x230d7e748961d9b4, 0xc6dba4f9414dccf5, 0x000000000001ea }, { 0x87815315438fc164, 0x4a4ba9d1bfce37a5, 0x210c62d0dfd4d0d2, 0x7c6ce54d4e5a6f84, 0xd641e01667f519c4, 0x4604931b31eaea41, 0x440c5452b0429bf2, 0xb3241de9c3e59ffc, 0x00000000000062 }, { 0x3ce425814dce3ff9, 0x141939864409c0b8, 0x503f9275c7d34155, 0x9b80e5229260650d, 0x7e7378c4a635de83, 0x179e94c2503b8966, 0x2661c3dc96acba8e, 0x3b8dffe47666f31a, 0x0000000000007f } }, { { 0xa872fc7537c0308c, 0x88af3d0c6ca45baf, 0x8fb419141390cb09, 0x96ee02354eb701c5, 0xbef36a2801078e06, 0x1a761edaab8f1ea, 0x518783a9556c8db2, 0xdb8e6b2faaa1183b, 0x000000000001ed }, { 0x5b825c5cef99874f, 0xb96ee51f330d2d9d, 0x67459071bab131df, 0xc6f1e038bfb73014, 0xe7fdcead7e71d8f0, 0xa9ec1b82ae1fdefc, 0x9d6e51c62f26db4, 0xeb85cdf1170162f0, 0x0000000000005f }, { 0x84d8d11c8b723cb2, 0xbb6ca19c99d26f95, 0xb9c6b2c111f8eb13, 0xf3fcb124e5afbdd2, 0xf459dd0b66c8d946, 0xab51b8cb3881560, 0xf0d72e7f240f3545, 0xbcfb97f9d88d1ca1, 0x0000000000000a } }, { { 0x424cfa69da37b87c, 0x21922c806553185e, 0xcc4eb20bde4c9fa7, 0xb45b642280f0a0e1, 0xb94dcd5441d3fbc8, 0x442fdd25504b7d77, 0x75fc3a6cb332b0da, 0xbad1e584ca25b612, 0x000000000000de }, { 0x97d9cb6f9e60c8f9, 0x56962aac29ebe175, 0x6d86c891932cb367, 0x458daa9158549ca7, 0xc5217ccacdb9fea2, 0x2c2739bc696c8d67, 0x96ead9f9b1afb7f9, 0x26856f60e18603a5, 0x000000000001ed }, { 0xd82556a10c7946f7, 0xc9e68e18a33a2243, 0x68eada3ef442d573, 0x99133c07a1061ce9, 0x173e20c81cef76e7, 0xa815900cb001e6f6, 0x7fd2fc4476504fb1, 0xb6cbc8254766041f, 0x00000000000022 } }, { { 0x46fc0b897d8106f6, 0xc6e701d19cb45740, 0xd74ee101ac129056, 0xddf871ab155af6d9, 0x8527ef55c4b8e303, 0xe900e044a6dd8a3, 0xcfdf0edc6ba2f42, 0x36c1fe72ad5776dd, 0x00000000000197 }, { 0x295b60aadbe690b, 0xdb888c11b9f12cac, 0xe771579b2b3bea5b, 0x8251fcabc1f3a057, 0x57b026b5872a0e51, 0x1bb35a99851252f5, 0x7a5ae2b0505cd766, 0xdc6ed4225176ab58, 0x000000000001af }, { 0xd4e353e9ea1b7a54, 0x75e26ded42290a64, 0x3d392b2b9b86881c, 0xbcc3b32559293fe4, 0x17174bd4f7029249, 0x586caff6a786e4bd, 0x4670d1fb14eaa4aa, 0x96b653a39c711e58, 0x0000000000001b } }, { { 0xe4d9e758a00f6947, 0x7bd4aba61d0c000c, 0xe072ff63ff9b6da4, 0x4f2ce735f2876be1, 0xc24074032267d887, 0x32d155f8feaf292e, 0xaa8d5af18a30ada2, 0x998468d84ecd70b6, 0x000000000001e8 }, { 0xd6f798bb676348de, 0xcd123b4b9d4261fd, 0x55db17ec959e3fff, 0xd11fef6bab147dc3, 0x84310f012dd54c50, 0x9537d08b3292d6ac, 0x6f523a0672c0144c, 0x48a66b13b627802d, 0x000000000001f8 }, { 0x904b68d6006e1693, 0x3cdb775e144aaf8c, 0x715ca74af5e9f885, 0xeae4a1b0856a50c6, 0x8a375a4c5e8753b3, 0xe832a031bfa15b1, 0x49ddcb1a482fe25f, 0x4711ae91171e8709, 0x0000000000013d } }, { { 0x463685f22eb778d8, 0xb0113ff3106292ab, 0x303f1afba872321, 0x794e22845cab129a, 0x2850ec620feed59, 0x6d5cd0df53f6657c, 0x1a097ac1843200b4, 0x8d63121f5404b247, 0x00000000000124 }, { 0x1fbdbb70d330bc3b, 0xeb4451b3ba6c0b31, 0x404681318abf26a4, 0x8e01d85e56b3e4ba, 0xe1b438beba7dc3c0, 0xad646fd0289551eb, 0xbb1797f3f5accf85, 0x78167934d83c347c, 0x00000000000033 }, { 0x8ccfbbd8b64d505c, 0xb64c8b5c87d1c894, 0x6172a4ff3ad8869, 0x3546d02279944cc4, 0xd6f8a2b6f5902fe8, 0xe5b067c304f4805c, 0xa947da16cc7a7011, 0xd60e84dac6e92345, 0x00000000000064 } }, { { 0xe66c56c0acfd23ee, 0x27e495900be2e18f, 0xb5a8e71e4bf252ff, 0x89d56a854477168d, 0xbb59256a3f5ba205, 0xbcf2dd66aa854dce, 0x2efc18ddb4ead200, 0x1e8d602c1b8bbfc2, 0x00000000000111 }, { 0x4a5b61d65c80c561, 0x6874fded1ea481a8, 0xc2bed55f8bd1ec42, 0x4f5c07d803886ed5, 0xe9893d05d1d7063a, 0xb34ceb5835e20fe, 0xeb376da0c8156073, 0x4de1e4be0aeb09b2, 0x000000000001d0 }, { 0xbb237e5dad0f401e, 0xa040766c953f404b, 0xe515d2eadf2e9a64, 0x14cffae8462b3a56, 0x2e779ca5a13fc87a, 0x75fe64e6c23bde20, 0xafdec86e63429a60, 0x9b878196110a4f54, 0x000000000000c6 } }, { { 0x55b3bcafc46ebe0e, 0x2fd21452b2787d24, 0x24989727a73cd351, 0x100abd9760469f50, 0xc753f0daf5ef739, 0xee76e3b987e6297b, 0xce3f7c8a9a6492fc, 0xc4bb1371f08eb228, 0x00000000000033 }, { 0x9979840dc6e640cb, 0x5d9dc0dc905876fc, 0xd42546fc3062fb33, 0x4d49033ec3962a4f, 0x2ca1122ad1756994, 0xc318b23f41cd4050, 0xa61483d79f3f9711, 0xcfee86e5828a772a, 0x0000000000012c }, { 0x9e704fbc04a7995f, 0xa0869190f34a0235, 0x4c2b9ae53f6c8940, 0x11702ade2fc3a7a6, 0x4be17d164e2f50cc, 0x41517deff3db329, 0x46cf71a8bcfd2330, 0x9f56db7ed33ee8e5, 0x00000000000157 } }, { { 0x5fcddc7fe7960a3f, 0xe0548b6892e4765d, 0x61266ddb8d1cb107, 0xc0db285e83ce4124, 0x41bd7afe26c77192, 0xbabe5e138dfb7f47, 0xb1f88fac3cbfea6, 0x8fb99ce5d9c8924, 0x0000000000006a }, { 0xe4090b826777605d, 0x3d0356bc435e5961, 0x49e805366bb959f8, 0x6d31b77a65aa0602, 0xb6eafaa5f22c96bd, 0x4d55f79cc8fe66c0, 0x2a01b7d1ef22d39b, 0x645e76e9ff75bcf1, 0x000000000000b0 }, { 0x27c0a46cfd730839, 0x651a60cb3e537d26, 0x4afac0c7bf63be1f, 0x80ab06bb31693e18, 0xcdafedbd7db05229, 0x10c18d80413df0d4, 0xf183b81bbba65dcb, 0xd077122f95b42132, 0x00000000000059 } }, { { 0x3b9b836cdf6f7e4d, 0x821616d1b16c476d, 0xbd8002f88d536f1d, 0xc7106ea47ca75c5b, 0x288ba5bbb0222083, 0xb1594788b9f92f81, 0xd52ebf41c8ab7bfa, 0xaeff78a912e5bf2d, 0x0000000000011f }, { 0xf0034fa49c153a88, 0x3e5d8b3d75d94abb, 0x25891db65702d329, 0x2acf975c8c5b9585, 0x1bf226a50f841140, 0x26c1aba1abad2fde, 0x43694d63f56ec550, 0x1bfcbed3b32fc8fb, 0x00000000000046 }, { 0xdcdcb4ae59171f2d, 0xf332b0f574c0d504, 0xf8c9f9a5e438c6f2, 0xea9490594671199, 0x5d812a6af414f451, 0x86d235b2b9999ebd, 0xedf5f0f21c9c8e43, 0xab47b5e9f5db2990, 0x00000000000069 } } }, { { { 0x8e4a037c94430f11, 0x8191c29256957e5f, 0x4813bdeba13208f2, 0x843df579a917ef52, 0xda67d265ec29c737, 0xca9280bf054a1364, 0x802afadfdeaa2a2b, 0x99b2afa9107d4d99, 0x00000000000184 }, { 0xe2e60bf27e462d77, 0x21c5dc89d99a1d05, 0xf1f1b9ad1e40569, 0xd0013c531b0cf35c, 0xaf4acd9c2f44ea97, 0x7431efbceeb18050, 0xd608825fbafb26ea, 0xaf057f0717fd489b, 0x00000000000132 }, { 0xab6d30b54131bf8f, 0xef03d518d2757397, 0x57129c6708fb75d5, 0x62b59c79b15ea588, 0xcc47f06d92eb6cd9, 0xf5e62b0f3156d52e, 0x7d60b336f9a1e7a8, 0x4820017524ed55a9, 0x00000000000160 } }, { { 0xfde87b7a0732603a, 0xc8ae71257bc2b4f7, 0x38ec8125be3e80a3, 0xf9f29f33b8f3ef5a, 0x73fe82da9fe054fb, 0x2a8efe1f8b8f1238, 0x2e7e1d42f6198ccb, 0x5e037089dfd132ae, 0x00000000000170 }, { 0x198314c986a067fa, 0xf768d24285c94c95, 0x4489712e112ae68f, 0x939f356cd6c226cc, 0x6b9170b26d60267b, 0xcd842e5eb86159d6, 0x19b6414f3bf9622, 0x495b559a396a5c71, 0x000000000001d7 }, { 0x16a7a6f9e24c9676, 0xf4ea81d55b197ef2, 0x9d7e213152ac8a64, 0xed62fb03036fb673, 0xbba885863356e019, 0xe4523db35ee9f0f6, 0x77387c3172a8c8ba, 0xc015fcd5f2fb7f2a, 0x0000000000001e } }, { { 0x22c6151e660b6e33, 0x58c14f763dddcabf, 0xd7129e72d24184b7, 0x7a22bf2622bdfe6a, 0x86b3ec92e4954adb, 0x71411564a034ffa4, 0x9b7f8971e246c32d, 0x5fc4caadccb8fe22, 0x00000000000133 }, { 0xd29fcf33598c4970, 0x6e0e5c22eb7138d1, 0xa13b8a2002fb48f2, 0xf4c1b1294afc72e3, 0xd4315a4cd8c025bd, 0xe50bfd8cbf92c437, 0xa3051c2a0e3a6e93, 0xdfde67cb1f8f1d95, 0x00000000000070 }, { 0x38d62c2ef9601eb7, 0xd5083ef5ebfa3bfd, 0xa5d32bd7ae7a9b9c, 0x8a7195b93c3e5435, 0x5742093dac5ade6e, 0x7664451754bd98ea, 0x732edc54aa823766, 0x936849fd5a356d3d, 0x0000000000002b } }, { { 0x8b96ccbc7946aa09, 0x42668a2d216c31ca, 0xd5f96c75b495beca, 0xe0c1deac83e4d695, 0x488deb2dada26ffe, 0xa06ad0b4bdd9d16d, 0x164f79b20773636b, 0x3fecba732a07265, 0x000000000001bf }, { 0x4afc81716a71c0d7, 0xbe471ef3a9f2075c, 0x1bdaeaf0ab8538e1, 0xc56ce30a13e61d25, 0x78e2ca5689a8b93b, 0xd5ce72511124db52, 0xb6e581e8ee33510c, 0x168b2cf115cda349, 0x00000000000151 }, { 0x2c84862c2ba4dd21, 0x10297f474f1407d5, 0x46c116099d39beb1, 0x23f293098b413ea6, 0x14d182ed76bd7e30, 0x61d16682bd0b52d7, 0x2c9288a8d7b88525, 0xb21a9a045149153, 0x0000000000015d } }, { { 0x581e6c1b97df6515, 0xf0f673fbd626abf5, 0xacddf2b1dcec2525, 0x7c64d055cd43ab17, 0x7dbd2938818ea4ec, 0x9afa4664df37ed3c, 0xdf1e4deedbbf775, 0x6e41eb59b76238a0, 0x00000000000004 }, { 0x9162b23098fa7e72, 0x1aeb449ceea1d492, 0xb69749e9eb6dccbb, 0x352a21287230a71a, 0x504d99f6178e6108, 0x1d6439cc48b9fa5e, 0xf6643c40be8f263d, 0x427f4226bfc7b8b7, 0x000000000001d2 }, { 0x8e37c79faa97e1b8, 0x44a92f81934aded0, 0x4575c250ffe14c83, 0x1173997c2ec3dceb, 0x913186305aba622b, 0xe6adcea6812fbb26, 0x2d22724a0fd5c239, 0x7e8ce576f9c9d977, 0x0000000000002c } }, { { 0x851ad08a9157db29, 0x11164ab67f16671d, 0xaccc0fdb44a69268, 0x60f40590c2d21ab5, 0x23235b1220a2afad, 0x39edaab02c188113, 0x2d24b2876407c190, 0x5ceec8e6576084c, 0x00000000000017 }, { 0x3b6159eb2f6c6c57, 0xb5b9b3fd942f3944, 0xcc65514969115155, 0xac88801512b2ad6c, 0x85d1c66f3c5488d5, 0x630957c872452bed, 0x4b0350e249d0e7d3, 0x69496469a2b918d1, 0x00000000000169 }, { 0x56991184a61c1ab7, 0xcf63bf0e78eda4e1, 0x9ffcce7a3111c50f, 0x54934076685e1842, 0xa7cdba4960d47e7a, 0xbacf7ef3df0bfcba, 0xb17ec85e89ba2323, 0xb87da1d46a28b0e8, 0x00000000000103 } }, { { 0xae5befe64dcb21c7, 0xf645b2195f4a3d31, 0x1833067f4f11675f, 0xe8446b44972ca976, 0x62c92bc60f37a247, 0x74e8c440e83a1cc, 0x361a33721a9c9a4b, 0xb6f4d5ae771b22aa, 0x00000000000061 }, { 0x20fa4eb70f946af4, 0xd70c2536872f455d, 0xb58e30f99f22d877, 0xce8b55034a2b8162, 0xeafc371ca70a7b13, 0x8d67b6dce92c27f1, 0xfc94b5c7860bd1f4, 0x930ac8d007c7e27c, 0x000000000000f3 }, { 0xe9b9bb982a089145, 0xd4b692d2c00cf730, 0x738a11c3d59b91d8, 0xcc88fc0b01f5de28, 0x3bdbcec12af463a2, 0x3bf0118f468d94ea, 0x1796942f04a13022, 0xcece0aee444c023a, 0x000000000001e8 } }, { { 0x959bc13f6543a73c, 0x5417d26a94f23a87, 0x5c7058efb6ac5965, 0x68f0e779ff0b801e, 0xe12e5e90167be012, 0x7129b4528ef24847, 0xc5d28158ef756166, 0x152ed9400147d4ed, 0x00000000000066 }, { 0x42f6950d2436cff9, 0x5202f08290b8aa4d, 0x6f6c2ca264bd2225, 0x87b7495cae4d37ce, 0x40520fd6ca399fdc, 0x2f87439550b200e7, 0xb232f56fda0279a0, 0x35f8d9730b919314, 0x0000000000010c }, { 0x33aa3148e49d4287, 0x561b1dc7d1f4d11f, 0xb57abd7f5d0c533c, 0x8363572d77b634ab, 0xfa327ab7cbf1c7e3, 0x2d3ca35c18e66f11, 0xc39aa10b7ef70ab5, 0x71cfb1bd967e503f, 0x0000000000009d } }, { { 0x233d48565a6d9dd5, 0x902c379e20ebcf29, 0x440af0a6acbd8702, 0x597f04297dae4411, 0x7e40d41c7ba59e86, 0x469f80abdceaf7e5, 0x70db0c998beaba1e, 0xca24b502b659bf1e, 0x00000000000199 }, { 0xbf771460e386b5ea, 0x34bef6cbfee31906, 0x962a672658c9e44, 0x9af3c17939c1c3cc, 0xebb95a72a5f7675, 0x9d29090849a3323b, 0x58f0ba7d9958de88, 0xa8ee0b9c7bafdc78, 0x0000000000005d }, { 0xe350f884c563666, 0x60e7eecdb5e0301d, 0x7040ba7b6491e97, 0x92249020316e37b6, 0x81e67549134a7ae3, 0xab8b0f3312894919, 0x75422511222e53b6, 0x20f82a4bf7ded9c7, 0x000000000001c0 } }, { { 0x4271478dc61b25c0, 0xa4718d3d89756a77, 0x4f47c0f9d0f191d8, 0xc6dbfac6d8d7a5b9, 0x32e824a8525d38e1, 0x3bd03381ba4089d7, 0x78e6cde02b07eb46, 0x6d916c038924b46a, 0x000000000000e7 }, { 0xf4aceff7c79a367b, 0x160a0cd8ea3d0eb8, 0xfebbb9f53eedd5c0, 0x2a7917639364a981, 0xb64648ee2f99e555, 0xc584efe36e7484a3, 0x668fc0a3469a52a9, 0x433d445ebc4872c9, 0x00000000000126 }, { 0x24a8bc42779ce594, 0x3ddfed38587f1c9f, 0xfd14064e4ae96930, 0xdc8521a3a73ab65c, 0x8d8c2d96fffda774, 0x8aa748bf2732762, 0xc19db3bb93a164f, 0x9b6387bce9940ad3, 0x00000000000103 } }, { { 0xc15292f8be031dc8, 0x9630ddeb37050606, 0x7993f43acb089d2, 0xf49a1bd68d585dfc, 0xa8f1d2f954089751, 0x28847aa050a49c25, 0x29e6db69999dda47, 0xc3b0712200f0e92a, 0x0000000000011a }, { 0x6831db90e3704789, 0xa0da8448c2c0b962, 0x716b8b10917b89fe, 0xf95f65c38c312d1a, 0xa06c0b83335dad59, 0x358214a7fc1efbb9, 0xe75b2cf6dcb94af5, 0xa46ba384c542ff9b, 0x000000000000e2 }, { 0xb783733d3345a346, 0xb6485abf7826dc43, 0x8618b22eee8a27fc, 0x690f2d889a99fdd1, 0xcdc8fbe6eabfe98e, 0x5e8a34f48184c57b, 0x1760dd704622dd78, 0xef1a002bf7f801ce, 0x00000000000126 } }, { { 0xe5600ec2fdba07b8, 0x59405906ff423607, 0x9788765245e497a1, 0x9e3c417daf14caab, 0x5f4033be3e7e375, 0x7951373c31b8700e, 0xd2af12ba07649819, 0x367571f8fdcb076, 0x000000000000c5 }, { 0xac3d09eec62c3c1f, 0x7447ec71dc53d146, 0x373684d632df3055, 0x913b7161cf4881ca, 0x4d6417ccca80205, 0xc3fb009485cf45b2, 0xd3e8e3369d68d84e, 0x6bac6492285b7e9f, 0x000000000001e9 }, { 0xd65c1beb4a3b923e, 0x876fc56d132e7e5b, 0x33b7ce4755461d1e, 0xf4c5610b5c963e58, 0x1becf502b28cf07b, 0xf4e132bb5dad2624, 0x48376ec7c0daa1b3, 0xd34460d293a23230, 0x0000000000004c } }, { { 0xb4978a074f5542c5, 0x58b27483da5a8be1, 0xf7d43b876f10605, 0xa3c68c005b7943b4, 0x95ed2d881909d0d, 0xf6a63df84c3b3095, 0xb22d7222c17bc668, 0x88f3cbdc05c11f56, 0x00000000000033 }, { 0x70ce8b0510b94ee4, 0x44d4a73eb847b823, 0xfcb0edf2d4986636, 0x1676a79fac068ff5, 0x16f949dd0e4087a0, 0xbea2e47ae3b15e69, 0x4df363bb91bcde20, 0x4febc5d4665ac199, 0x00000000000027 }, { 0x20dedd7016dfe45, 0xdbd6336f0e6c4661, 0x98f8e49f3a10d744, 0xc4533ec91394974e, 0x109d645553cbbcd2, 0x138494aebb20267d, 0x7c58f7af2cc91775, 0x22b295cf0aec6be3, 0x0000000000017a } }, { { 0x58d3cba980bb063d, 0xc7d3592c37ba3deb, 0xb1d627ff621f2279, 0x7316792366ef75eb, 0x6f356631355d8aaa, 0x9c4e77a2e3ee9fa9, 0x6f3391c9e6a92c57, 0xa4eb68fb86ce9e49, 0x00000000000153 }, { 0xac64310412988f52, 0xa415c4517c72dc8b, 0x41f9322a7f66b917, 0x89dff1e8441d8d5, 0x37a2b2fa5607db2c, 0xea659961f3ce7524, 0xee5987c12f9974a8, 0xb0949db8d7592598, 0x00000000000177 }, { 0xdc7d534a9708db52, 0xb132051ab565b9a5, 0x30f67f7c8cb3e82d, 0x2455ec9bcc6a553a, 0x7dbbc0dad30f18d9, 0x96ced6d3c0764470, 0xf5880954f7cbdbd9, 0xb8e015a6851655e8, 0x000000000000b5 } }, { { 0xf020f62cbe3c0889, 0x4732ca91e190ef32, 0x32c8da82c6ff72f7, 0x98290aa163763108, 0x72f781a2d094002f, 0x8208a41dfb31d459, 0x10da20c551a42cb9, 0x37280e7fba386f91, 0x000000000000ef }, { 0x700db4a5ab638912, 0xc30a91dfe330e753, 0x3335b2f1e5665fab, 0x8d2ec82957f57397, 0x16a5ca6db498268d, 0x2c2c3c5a39a6e5e5, 0xb27d406153863f28, 0x34e94941ebe6ddb8, 0x000000000001d8 }, { 0x8f1f580808994c51, 0x34a2f291b4c1697a, 0x9af3dd71a4b3d3ab, 0x838368e66cfc7671, 0x4b98e7cd77a80831, 0x1315a003a4b31b89, 0xbab34f82167302b3, 0x5d31d27cb09a38c, 0x00000000000199 } } }, { { { 0x63537a2a675db229, 0x7dff3d3b03daed0, 0xf042700b5a443953, 0x8bbffc9f3165b339, 0x2ea480a4523fd81, 0x5e9b78d3fe5eb0b3, 0x26d7390b4904cb68, 0xa0c0c5fb47b54522, 0x0000000000002c }, { 0x5c26c65b5d4acdcd, 0xe5587594536aa882, 0x22136909c4fb228d, 0x8a0ab5b088860a7b, 0xb553fbfb98269814, 0x9a7e721e0f375f7b, 0x1a012603ad8ef24c, 0x6a15c048c23bbbc8, 0x000000000001b5 }, { 0x4cff95623df1c6a9, 0xfcaadb28fa87da2d, 0xc406f634d07a0aae, 0xef0b44d5f2412bec, 0xb2ebc90d893d40c4, 0xbe973c1af4b13be9, 0x28c54618f04dc08f, 0x53e1b5a90ccef3b2, 0x0000000000011f } }, { { 0x64f8bc0174245e84, 0x99d2a8f7c8e74838, 0xff6ebd3520e866e3, 0xd9889d7412a84840, 0x94a83a0d1f8b1611, 0xf924d2c87fd4bc97, 0x6bb6a9b98ad45483, 0xa9ddc14f6465f8bc, 0x0000000000019a }, { 0xa56f004a16ee3950, 0xe5d578664be8780a, 0x42b1f31deb19a82c, 0xed9f34fbc85ee90a, 0xa2cb14054b582755, 0xe6ca18580147df71, 0x5fdce19d4b40a676, 0x2269261b0a2dd6f7, 0x0000000000009a }, { 0xc56b3cd529028b35, 0x5d409747903023f8, 0xb644d65a21d05712, 0xce2a106b2473554a, 0xdeb1126655d78af, 0x3b1a24f57e35e4ac, 0x71c2dcccbcf218f1, 0x207e30841936c756, 0x0000000000000a } }, { { 0x17a02759677aaf28, 0x6a688069ff06eece, 0x260ea394b207c3e8, 0xcfaa498809925770, 0xb26344e96bb51135, 0xcd6693992bc9e7e2, 0xef0cf94cf69a4804, 0x8720236f83e88ed, 0x000000000000ca }, { 0x99beb624637d9ca0, 0x58377d0b467570e3, 0xf4eb7702e3887e38, 0xfccfb167697bb48a, 0x14289786c7365622, 0x9fdddc12eefcfd8b, 0x8604c3016db4f5a0, 0xffa031b9ee5a38a9, 0x00000000000107 }, { 0xfb961f7788b4bb49, 0x49fe94d6ae882d24, 0xdaadf04f3dae2c04, 0x57db5d72e255b385, 0xd3114011590c43b6, 0x44c801ca0439a99b, 0x564727f4be4ae651, 0x874d0658aba96744, 0x000000000001c6 } }, { { 0x7203b73635b24808, 0x732327a93b55f231, 0xb288c62e25106dd0, 0xce0737d8367586f7, 0x7b47efdff0ff5468, 0x603113be96c4916, 0xa88e8fe47bfc458c, 0x4a09a469c9763cf3, 0x000000000001f8 }, { 0xc0d5b1a8cb3d694f, 0x892db6c5088a258a, 0xf7a8f7c7d2e5e8b3, 0x89f536abec51daf2, 0xef649f321a8e0ce3, 0x7e673845c9343c29, 0xae41a74e3aa1c98c, 0xa92aeb7b30a203e8, 0x00000000000064 }, { 0xa3afd4771917622e, 0xc85022237395f04b, 0xd8989c0dcfe7fc83, 0x38a41c0fc3d9d613, 0x4438154157465009, 0xb4f0e3ea16eac53, 0xb5eaaf7ed11e4a1d, 0x38038a774d2a21e8, 0x0000000000014f } }, { { 0x4fc862334e68d64c, 0x5818935273cc9138, 0x206a09ff3e557a24, 0xb568edb74fe6e6e8, 0x635873c134096ebe, 0x72cc590f7122a9d, 0x888be40755d2c3a2, 0x6fc4478135b7c22a, 0x00000000000184 }, { 0xd3e3c61f8df7330f, 0x890c92f1808f743, 0xdb3ed78b026af262, 0x4f7d3ef5d9e35096, 0x9278254e974879be, 0xc01a2b899629de10, 0x50f333078e57959, 0xb705f4efe295078a, 0x000000000000b7 }, { 0x9ed60c78d750cce0, 0xaf1ba5d01c4c4845, 0xc3ba1ff1d054cd89, 0x71bb589ae94e150f, 0xa4d2186a8784ab6a, 0xaded918eaf57d8ab, 0x4b55e16f240ac9e5, 0xbc14d09026a0d15c, 0x000000000001c6 } }, { { 0x6fec0ed5d3d05ed6, 0x4050f768cf9fc593, 0x9530d07f9e515a9a, 0xf22a51c240b21a31, 0xddfe52e80d3dd1d5, 0x4f1933a3f603f099, 0x38d02e5623fbbaaf, 0x4f15928992c4d3c8, 0x0000000000006f }, { 0x8cbd2fe02d755c30, 0x79e2d71f1e3fc712, 0x1dda6fd967383269, 0x220a8debe045f4c1, 0x2af7ab5f8bdd31a8, 0x61345b8202cf3470, 0xf826324870cedcd2, 0x6a01c32bc40aae79, 0x00000000000171 }, { 0xf6840a1fcd60488b, 0x2f61cf614f15d4e8, 0xf55ae237855ea95d, 0x87d36ae9502ebcb2, 0x3250c5b5bcf96a2b, 0xf581d2001bd2c91a, 0xabb2be2914a507f4, 0xaf5cb665a3d0826d, 0x000000000001e0 } }, { { 0xabe1647979612c7f, 0x5bade9b47820abc0, 0x30faae7c9b528b58, 0xdcb5d16650bcb45b, 0x33f7852d0a06d602, 0xd5bff068b36006f7, 0x75dbbb7fba7a3d42, 0xe6ac1da6c9424a2f, 0x0000000000001f }, { 0xead20d04e5106d33, 0xf650a7457f3e35cd, 0x37fe58da0c00c96d, 0x4822122c54d49f25, 0xe5a60270026cccc8, 0x21dc565e1774672b, 0x33e4e82df3a47dc9, 0xb31f16a66e3d790f, 0x00000000000135 }, { 0x25ba16788877e49f, 0x6170f330213fdbc1, 0x6bca3310fd5c2442, 0x8a2c85c4021bdf29, 0x7b7917f855f89267, 0x947e8db0c8e92aa, 0x4433907fbc31f9b2, 0x4a3b1c18b496ac3d, 0x00000000000143 } }, { { 0xda05a6a1e403b3a5, 0x28901fd246bfec68, 0xcf3a7b98d95424eb, 0x7666cda2c27cb72d, 0xef58481dec0cca96, 0xc387bfc6077717ef, 0x33c40847c1510487, 0x2d77e5d8e1457520, 0x00000000000169 }, { 0xc55254350ff11834, 0xe644634134ce759f, 0xd10b5029cfaa8f41, 0x8ed0b6df7f426386, 0xd740a6003c217304, 0x7376ed5481774775, 0x6b58b33c2d6daae5, 0xf46441479783b5a, 0x000000000001b6 }, { 0xca579df1ac0621b6, 0x5b3d4d3212dd7a84, 0x9cd87f77dc936859, 0x6c151262c7888028, 0xb417d4022d9657fb, 0x37e2abcbe41f2180, 0x8f87cc310c5ab403, 0x734d4ffe5c534bed, 0x0000000000000f } }, { { 0xc94e5027fe409558, 0x5a3be6837cb10279, 0x2e6d7936078c1f5d, 0x86b483f8f2ed6954, 0x2d1d51f5a56c2c29, 0xd8e4b114a073446f, 0xf3f1fc5ade5f503b, 0x46a8aa426db3ec27, 0x0000000000019f }, { 0xa31f80df58a16d57, 0xaf88032530f9091e, 0x4a50b4ea8b55254d, 0x1d1ee9b5b9f919e9, 0x1f2b4037198cffaf, 0x3708c60f0ee4eb0c, 0x63ee730fd892f29e, 0xfcebed62160e9528, 0x000000000001ec }, { 0xab5083081f237a6b, 0x9fb489fcb87b07cf, 0xcc5c3c2e80490b75, 0xb8ce4d53e230c9e7, 0x4b0c54c14fbeeae0, 0x7a54f0da74487d0f, 0x65097297cbd5cf2, 0xaacef4b14a632d70, 0x000000000001d2 } }, { { 0x5aec38a82edd16ca, 0x3f91397eb93cc46a, 0x32b490c0dbbcbe20, 0x925aac4888a49829, 0xdef837826a3a3da3, 0xba0914ed42e21316, 0x9035669a6ae85120, 0xe8b442319f365659, 0x000000000001fd }, { 0x344db6515c35103a, 0x6026848a31761dfe, 0xba85c44faf399e39, 0x9e8aa0af40ac0b9a, 0x260f169f808bd1b5, 0x82abdd810e3e514a, 0x79513c6afca73230, 0xca32eb511b2b6e6a, 0x0000000000009e }, { 0x9793cab03f0cfe63, 0x17d97d3335735dcc, 0xf3ae026ec376cba, 0x756343fcde4104c, 0x39baa5b54292d5a7, 0x66e11c505961a5dc, 0x56f6e8ec0359d48f, 0x558d529cbd72df04, 0x0000000000017a } }, { { 0x520a9045bdcceba6, 0xd6f6854c103edb72, 0x5cd6edb33516b8bd, 0x3f938e83a2c64423, 0xff658f32ea308c49, 0xa980991be5083fa0, 0x3ef715685eb76df7, 0xe926bc7e3cead37a, 0x00000000000192 }, { 0x24030498605b9792, 0x9b387bf2dbb953e5, 0xc89b211b1cf76afb, 0x7ce8f87608d3ba92, 0xbb67f213e5fa48b, 0x983d44fe364466d2, 0x716d51ae46739757, 0xdaecc97b54674017, 0x0000000000018c }, { 0xbc1fc644c24041fb, 0x15b9976cbffdf049, 0x49c0f8758ce57fed, 0x8cda26213f19ce57, 0x4b1bbe729cd79411, 0xbada7fd5c517ba52, 0x6ccaa957117bcc15, 0x3212569e448465a9, 0x000000000001e7 } }, { { 0x564e3d9b7e6812fa, 0x36844aa1be284df1, 0x72efa73eaa705e8c, 0x4b797bc209153e56, 0x6c63daf1b94573fc, 0x17c32895fea8f339, 0x11be33c5acf5366a, 0xaa3d8da18af0c5a, 0x000000000000b4 }, { 0xaf72dcf9e4bf35b2, 0x30e1b47557926917, 0x6bf98cc18e9e41e5, 0x53b9fc96d2b2b33, 0x216afb64cf3bf904, 0x1a884dfe2591a246, 0xc3b60d6a517e2d59, 0x8d429fba17a39eb0, 0x00000000000165 }, { 0xe03455ce9810679f, 0xf81ccea572543309, 0xe7dcb7db95a6c7b1, 0xf564cc0e9bfb2239, 0x362cc4602205e2cb, 0x35a3e2e3562770bf, 0x73d820696ceb6274, 0x18e7a83f7bdf62e6, 0x00000000000158 } }, { { 0xc115e2aa1344cb49, 0xae6afc951ff23065, 0xd317f02dcd9c018b, 0x41a60f5e1f43adba, 0x28436c91fd5b2383, 0x7812bfa628f6962f, 0xbfa42a167fe7813f, 0x94a1a1a2ec630c92, 0x00000000000166 }, { 0xd3d979d4cda1827d, 0x3a8a4b85b32e8fd, 0xaf35c358ec86606b, 0xa08680d6124508b7, 0x79e06c2b249993f3, 0xa39c2b6461736ebd, 0x7a32aefe4d39b5e8, 0x9ed880c82fb5bb82, 0x000000000001f8 }, { 0x1db98377bcbdff0c, 0xd5d48df6bd0457cf, 0x8401e2106b5f3d9e, 0x72e50954d8bdaf5f, 0x93a53426c60d0e0c, 0x14f397614c5a4209, 0xfa74d574dfdf06fb, 0xe4db26f5a3fd91dc, 0x000000000001e8 } }, { { 0xef8e1ad2fdf5c8a3, 0xf39d3c433dcb42bb, 0x10392b0884844e19, 0x83120d4d6744bed0, 0x8a56f530ed09baa, 0x9fc3be07abd66f90, 0x2e0eb47d589df62d, 0xa341536266d54850, 0x00000000000032 }, { 0x67cce11e0f195fc4, 0xcc81bcb078ab6b77, 0x900bfc713929d63, 0x44d5168e516f40db, 0x4f55440eb43280db, 0x23dc62485ff1e99, 0x23ce8d9455d67df8, 0x2b13f9d2c18e96bb, 0x000000000000f7 }, { 0x1217ae59f1b5e949, 0x58902b6792f7ffd3, 0x1f2db2a96c4ad2fa, 0x35a90984db0c9263, 0x655d8805b0d1be3b, 0x187d5b96c10e7675, 0x91126d4b9adc9b16, 0x5493fddc08f6fc6d, 0x00000000000151 } }, { { 0x9bce6a4825d1596, 0x457d4091eebad3c5, 0xebba5db2d96135bf, 0xb41923c70b8840d4, 0x375cd0a1fa4e1df9, 0xe478a2255ed71827, 0xb7dcfbe0d1ae6893, 0x5c8219cc447f2075, 0x000000000001c0 }, { 0x9a8d1556229f470e, 0xa9992f9b55d1ea63, 0x606a75f26d35464e, 0x66d5bcf98361a697, 0x538c32e8adb7ca5c, 0x354bdea8aceb5f91, 0x3b19a2a1fb1629dc, 0xcb0a9aa5443495bb, 0x00000000000090 }, { 0x9573c4a972ed1c1b, 0xd4f656273dbdd355, 0x81991afc16709266, 0x275ff499cf896ac5, 0xd8c8bce4e69b31ef, 0xa0396f10da57d5a, 0x101e38eeccc72c96, 0x26554f11ed53e6cb, 0x00000000000063 } } }, { { { 0x72d6a396e1f3a8b1, 0x601b6c9a575c84e7, 0x3458b7272e41d8a9, 0xbed9287d085b1b1c, 0x31f41e9c8ce94995, 0xe650a5ab6a4137b4, 0x5727cfeb584d64af, 0x8ba97c379afd37a6, 0x00000000000113 }, { 0x12d480a8d7744f83, 0x5a58588d2fcb9d84, 0xf3b55e6d06cb0b08, 0xd6edc1ff26b1882d, 0x45a4f6c30bb0bb43, 0x88e7f244ae4dddf9, 0x7fb06d4eb5b70e93, 0x68a783957a1cb5fd, 0x0000000000007d }, { 0xa9b60d81f737c941, 0x145bdddb4d8089ee, 0x299f8762f9ca24bc, 0xfe483e038b6e5d2f, 0x6cc63268e373f407, 0xd13123dde0f496f4, 0xea1e980cf9d879c2, 0xfb91d92acf486b70, 0x0000000000003b } }, { { 0x917ac30f615b8783, 0x4225925939cbcfbf, 0x34f598dac30cc344, 0xd07d7dd1aff18e6b, 0xadc960364d59f7b6, 0x173619aab5db448d, 0x9b3bce45e510bfed, 0x1b6779a1e70c914f, 0x000000000000d9 }, { 0xd1c59f2e10f2bbeb, 0x75792cbe6695e432, 0xd9e47c9c7bc75c36, 0xa91adc043d2777b1, 0xffde7fb06218ecf4, 0xcadbc9b00a89b5ad, 0x774edc85e0e5626, 0xde82c8d174a7d55c, 0x00000000000165 }, { 0xc9d58438694d338a, 0xc7f143efc18f27a8, 0x5d31e5cb91243e61, 0xde40cc6cc291389, 0x5171bbcacbc56d41, 0x10fab55486df39e, 0x15ed97e10da92098, 0xec68052a58cdacbb, 0x000000000000bf } }, { { 0x1e7fb4e1cce84540, 0x8296934c881ecd0e, 0xcc4bc73a00760b48, 0xfb12be0c6a26873a, 0x70530b3c42610f7a, 0xf97dbb1b41007d48, 0x3e3db14b5a62559a, 0x5e02533d3cdfa0e0, 0x0000000000010c }, { 0x9ce06683fbec9414, 0x67bce859d6793982, 0xed7310939ba7d3c5, 0x8011737740c9f8b6, 0xdf82445cb575dba2, 0xea902b41982fbce, 0x3a266f5c2c0d44f8, 0x86c4a94328951c5, 0x000000000000df }, { 0x347e3c6076d6a2a1, 0x84fdde49721cc317, 0x9318d8b5a6f41e5d, 0x720eb0aee6f75ee1, 0xd5f7e00f23cb218a, 0x7dca454248cd033c, 0x74405fd86d9eba9b, 0x17067d177d0696e3, 0x0000000000010e } }, { { 0x4248b2479ff3d823, 0x8135acdfe2947058, 0x1d9875e693315416, 0x114d58cfa4e99b70, 0x918c02e42543f089, 0x6a398c14a1427e83, 0xef79aa0755489c97, 0xa1cd54c77f523f9b, 0x000000000001b9 }, { 0x20feae2bca9dc62d, 0xeb67a2f9f8b29076, 0x8a50a01d8e3c46e8, 0x81496d5154001e4, 0xde20e9a22a0eb35d, 0x2e7711a758e21689, 0xf3bc6f0827bc1397, 0x95fe42fd33d1d8a5, 0x000000000000f4 }, { 0x839d8a0029cee161, 0x92c585faad9ce742, 0x89e22ca2bacd0a77, 0x3b4417ee4c8669ce, 0xcce4692c9518fdf7, 0x29657b742c381bbf, 0x4b077bf470088366, 0xda475becddb2fa20, 0x00000000000020 } }, { { 0x9541de30745c2657, 0xbb639a6883a46728, 0x73811619fe0e19ab, 0x434e6838869aadae, 0x82934489cfd09c75, 0x4c8c65d9334d9689, 0x47151e42a31bf922, 0x416711873d387c3f, 0x00000000000166 }, { 0x9b741be9d9d3745f, 0xb41f92e007d96734, 0x62eed33f079cc22e, 0x72bbc1a6b314e0c, 0x68f88d13a41157ce, 0x9042fca6bfce25fe, 0x12cda3a4d7d31c47, 0x1d56efacce6803f2, 0x000000000000f7 }, { 0x6afc4f78e6856d74, 0x19b79e2c5da60e2c, 0x338ed9d5de3f87f8, 0xd7e3098e0b367a48, 0x2aad2082d45fbce9, 0xe7acac387137476b, 0x25e2a6ad2672fb57, 0x7b261ec768d5545, 0x0000000000005f } }, { { 0xfbcf449084fa4426, 0xdc5d1be356f9c896, 0xe8d722535616bb86, 0x69312b8ee63d37d3, 0xcb45d5e368ff5f59, 0x63150aab67c13a75, 0xcde475c41c6e3b88, 0x1c5e53c81f7e9643, 0x0000000000007d }, { 0x2bfc638f11c8e9ca, 0x6cd4908a725ef606, 0xc498c1ef4e3a323d, 0xd3e44c67c4fc092a, 0x9d45a9ddcd62d5f8, 0x977f913ce2130a82, 0x65825b253e540864, 0x2bf19b39e40f03fe, 0x000000000000d7 }, { 0xa4a7ef8c626b0b4d, 0x4869c857d1b5db9e, 0xca07417586c11a95, 0x621af3ddb6bae877, 0x872998eefb0a7a53, 0xc2fff69227c8a015, 0x7204180d8edbda9c, 0xd81885b6764dbfcb, 0x00000000000172 } }, { { 0x1cf0608ea99b443b, 0x7ca6443723fc84bc, 0x4530568c781902f9, 0x9a243bbb7bdfa270, 0x4c76f6e521e0952a, 0xaba516af1af4551b, 0x6bee73d1398c739d, 0x46d73a8d307be96f, 0x0000000000013d }, { 0x315a69a3c34ff006, 0xb0152135aa1593e3, 0x5fa2b7e0158c1a76, 0x4e0ad8922c2202e8, 0x86cd7c4bd4d83fd6, 0x98181a23394d686b, 0x50b0b2609e54d79c, 0x8a23bf1778f8f0c4, 0x000000000001fa }, { 0x5d5307811d077888, 0xf8cbcfd3ef7578a7, 0x6f6af941da60d0d7, 0x7605bc6b80fae75d, 0x8827dadecd1fc97f, 0x2bdd7452b637290b, 0xe27a72a301394df6, 0x329de1473c0429ea, 0x000000000000a1 } }, { { 0xf6d07f8b3628a459, 0x67aa684787e7b284, 0xc71f692a92217992, 0xf7b1a53dc5885325, 0x86a627060a424af8, 0xb4608792ac82553c, 0xd0f877eaa585dd0f, 0x801ce46757a23cc5, 0x0000000000007a }, { 0xb9f8cff49c5503bc, 0xa1d52cdcdc17bad7, 0xe4e2faf7fe44b51c, 0x7ab2fde78c294d3a, 0x5a49c2a566af8333, 0x582295d2163b9ecb, 0x93a211750730edc1, 0x9efa409a384e849, 0x00000000000052 }, { 0x802348abb574fdc4, 0x37ebe8fd00472355, 0x6f4c09382ef41050, 0x775688af0cb8cb86, 0xf941c86912603104, 0x3be1551f367e3d72, 0x94cccd3d2cdba54c, 0xcdf09373ca0df592, 0x000000000001b0 } }, { { 0x60bfe422ab010263, 0xa74d6e416d8953c3, 0xead32ca616acd072, 0x53b31727b9ec284e, 0xd0c31f4684c9a59, 0xf9b08f118200baff, 0xa7faa53ddb542796, 0xe1813944527cc0b0, 0x0000000000018f }, { 0xebc2dc2bd2c99e03, 0xd6ae0a673f29830f, 0x221137a856a52ea8, 0x1628e2d5f29b54a4, 0xe10e9d71f0242592, 0x985f80acd8ef5388, 0x5123d09200dc35e2, 0x93a23bd8ade824db, 0x000000000001d7 }, { 0xa9d0e7505bbdcd61, 0xae075316fe4b8165, 0x5564f126006901e8, 0x4869b88705ddbb4f, 0x4a5157ac2fd2b6ae, 0xedbb6a5f0c1e4b06, 0xc3758b11fbb75d26, 0xce6ece215ae32c68, 0x00000000000021 } }, { { 0xf2d5d90bfae43dda, 0xd7d6140067058cee, 0xeb1e2c07ff03d5e5, 0x88de46d2b9c7a216, 0xc8aada8d98ac73e9, 0x6326248356581eb8, 0xd479d8a4512a38df, 0x36930e4c6be66893, 0x00000000000149 }, { 0xd407590a787ff16d, 0xce313277fa4e9bcc, 0x64515ea404f51559, 0x487be2511402de90, 0x57f69153d63dbc39, 0x7a32c6f5bd06b69, 0xfe5e72e943084431, 0x604d490d0c1826b4, 0x00000000000037 }, { 0x5299df4bceb2bde4, 0x6de7537e6ad6e6d8, 0x8df52ddab75f8955, 0xa0f21641392e254d, 0xec875c9c2ab89d17, 0xb529b1d5ec825120, 0xafe1433444098714, 0xec7f36a25a484103, 0x00000000000117 } }, { { 0x1534ecd026cc173, 0x63908b7b2bcc6245, 0x3fff8b12ce2eb4d5, 0x28ad839fc13bc6eb, 0xafddf727520d393d, 0xc1e73824cea0a2a5, 0xdfd4a7d6e0445cc3, 0x8d722e8987f37f33, 0x00000000000082 }, { 0xdc07f891f979e72c, 0xb65488f5f226ff44, 0xea0c2e4903e0ed1e, 0xa771dee83f02bba5, 0x798c834208f8fa43, 0x86e0c24bb1ebcef3, 0xcb6d649f5f4568ca, 0x9b22ee6aa405a91a, 0x000000000001d7 }, { 0xfbbe378db9ef44c1, 0x17db2f7c58459cf4, 0xe15b04dbc58d25b2, 0x9604e7796c0bcd19, 0x5103433b535d4d03, 0xfd36bd257f776009, 0x9d4e43210e623479, 0xfbc2bae75309a9a2, 0x0000000000010a } }, { { 0xa5bbe67a232ab25f, 0x21a5696380112cd4, 0x751c2f1d75d6553c, 0x5d5b4d9a54ba3e0, 0xd5ad4821b6c71a02, 0xd08983d1c687f16e, 0x6ae66e71c65e6f4b, 0xb91c7abfeaf69692, 0x000000000001df }, { 0x38f14743c52eb9a1, 0x6465ee1aec929ef2, 0xcc1438c27bccc101, 0x70991a665faab2b2, 0xf7bee3e8405aa330, 0x6e56ba70ab5f08bd, 0xb073be44617d83f3, 0x7c911e954feac165, 0x0000000000007b }, { 0x9d32609f5fb48f9a, 0x6ab8d54a9f25ee75, 0xc6a65b6346d56b16, 0x4f9552c68fc2676, 0xac306cbd87e3aa8d, 0xc34a0fc843f22969, 0x586075e7d26e8c81, 0x2ba9de72a192a92, 0x0000000000011f } }, { { 0xb3052ecb957b750a, 0xedfe116b58e83225, 0x53ef9ad1da8818a6, 0xc40ba3092818fe42, 0xef5881d96b322617, 0x6c17d10628f92bf0, 0x1788ea4840f7dad7, 0xe2e684557633e296, 0x00000000000042 }, { 0x9a66980225f51163, 0xc64ca72962ad42b6, 0xc123a962691ffeea, 0x17122ebd89e1f70d, 0x9df1addfe65f121a, 0x26b11ef8c08c930d, 0x290c5a72a8ad867c, 0xd2bef852766216d8, 0x000000000000ac }, { 0xb13b3c242ace60fa, 0x8855cf078eccc29f, 0x78ceceafc8625079, 0x9f51124ddfe1ea34, 0xb26a11de2b5755de, 0x339d45a1f8b297a8, 0xe6fa9c483a9f5ae8, 0x496727a199a5c7ec, 0x0000000000000d } }, { { 0x975947d9320c706c, 0xf658b2c5e91a2432, 0xf6bd0ec9e3702d75, 0xccedb0ba13107fe7, 0x107d6aa61a3e401b, 0xf3a2eb75eb376678, 0xf172c2b81fdeff89, 0xa93a7a50dd68b467, 0x0000000000000f }, { 0xf51e04bdfb52d96b, 0x34971bc175d2d672, 0xddf13e35101dc460, 0xcc5d1033b2b1488c, 0xb8918c87a01528ba, 0x63b2a80e3346362d, 0xd9461111b6dc9313, 0x3a3dde44abd77093, 0x0000000000008e }, { 0x7d9676669311ee25, 0x14ad06dd42688b7f, 0xfd102a6f08a4f988, 0xb428f5a8e3b2abca, 0x3d59a10a5fcf2701, 0x56c7c7bacc70ab0e, 0x2473d5e9810d689, 0xf64d3ead8783cc0c, 0x000000000001cf } }, { { 0xbb27b9b6ecca16fd, 0x42e7e1f98051805e, 0x58ac508007924f6, 0x6091e2004fde7944, 0xd30f439b7144d54b, 0x333a7205332ae813, 0x6a45e53fa10415c8, 0x8b7343b75fa7f038, 0x00000000000173 }, { 0x9e5f46cedfcd6692, 0xd5d58e17d8bba51b, 0xc07bc7521f53a94d, 0x520619740c409c08, 0xb73cb50513f88306, 0x7f964210384ca01b, 0xba82b5249728a592, 0x7b7a074119c14585, 0x000000000001cd }, { 0x3510445a7ea2a6f2, 0xbbe96b7f0ec08d0e, 0xc810c7564cb37375, 0xd1cd5ffb71a1cc29, 0xcdef7700eebe02c4, 0x9e4797fb9e26cf6e, 0x4df1a665e26d48b0, 0x4565e09e94b8f362, 0x00000000000091 } } }, { { { 0xdc62fca2eac3ae3, 0xd12abace66316877, 0x6490876fa7d4f687, 0x6fcead9cad145286, 0xc4b45bf2d1179022, 0xd4765d4c0aa507db, 0x27402ab4fc2b48a0, 0x246e19048fb8c2ba, 0x000000000000f8 }, { 0xbf9eaf14ae43ebaf, 0xd93d46029387a9d8, 0xd8b59ffe02746aef, 0xe45b56a073e6f440, 0x32d460c450fa5c1b, 0x548ffe82f803fc37, 0xd3d4abcb0205e16d, 0x668fce41fdf830d, 0x00000000000040 }, { 0x7536b3d3db0c461c, 0x810ef555ea690338, 0x4742f5294bee1491, 0x7e4caa56676c7400, 0xf4881d1d5f298116, 0xfbd31a65de17d806, 0xcb435bb2baa040ea, 0x3542cd2bc8a90911, 0x000000000000bc } }, { { 0x3639e7237ef09cd4, 0xaf6fcc5733d902bf, 0x86c5bdbc00788712, 0x1a60f4e8c1f0a990, 0x7079082359ef3c17, 0x8c6c11decb853f0a, 0x2a64bb3a04341e06, 0x5bb04f0a0d2db706, 0x000000000000d6 }, { 0x1cb4ba7e117252d3, 0xbe423c398137db83, 0xb675d6064735e1f, 0x17447ff0c81effd0, 0x56b1c552ac1cb81b, 0xbaa4ad20dc4423ed, 0x2e034aefe677a581, 0xe99b1ab3c410c71b, 0x00000000000075 }, { 0xd133a3f25579ba26, 0x11c7e00ee5ea69d9, 0xb3ebddecb7b1789, 0xd777cc37fd6e571f, 0x74aa22f7ffa5b3ca, 0x69feb16521db034f, 0xbe5cd503b433e7c8, 0x5ad9f9f7c1345fd2, 0x0000000000018e } }, { { 0x8d12d6367110aba1, 0x28b55be52d2ef768, 0x18cf4dd797421cd3, 0xc7ba007e0827ac10, 0x7e5b4808a2af2fd1, 0x6a76a3d2e7c648d3, 0x3a47ac6adde2d6b9, 0x48ba4a53ab915d80, 0x00000000000178 }, { 0xadd85bb23d0aafc9, 0x19ded4fafbc17ba9, 0xfa5858467f17cebe, 0x1417789dc53383cc, 0x1b1e63634575f5c0, 0xdb990fcb53b0b65a, 0xbd76f858e13567a9, 0xb030112d92c8791d, 0x00000000000067 }, { 0xbadc935cc5ac3b44, 0xf9b9baa18133bb0d, 0xcb00b6ecb3588442, 0x4400a2e130b7748f, 0x133da927b4505118, 0xa03711789435b263, 0x855b1246d6466d0e, 0x9e4cdb0d4d186b34, 0x000000000000d4 } }, { { 0xb012b5d93bd53b0f, 0xc833008fcaaa3d67, 0x111d43ac9143e730, 0x945cf2dbf8c3b8dc, 0xc57858a57fd5f6bf, 0x9907442d27425c06, 0x93b4c01b810999fd, 0xf5f1ae606e67adc7, 0x00000000000087 }, { 0x84c86c353de9470e, 0x795b9dc9e6e7c013, 0xa66d4126e30b732f, 0xce05900d0d3e1ff5, 0x817ce01033fc0f57, 0x1667a4f532d6261e, 0xc661561a38a23278, 0xa0c42c56e18c372d, 0x00000000000122 }, { 0x5e05b1113543b73f, 0x87c40d066b012542, 0x81ba5c2d29700b36, 0xbc58ab8fa91d69ee, 0x922ba9ae2e5bb321, 0x85d05aad1cf09db2, 0xa4aaa6c927ab80d2, 0x26ce52833635fbfa, 0x00000000000132 } }, { { 0xdf44438121b0a0d8, 0x228e653e4af9d49e, 0xd4f8359d8a5732e1, 0xbde51f206b6c706e, 0x838b8ed1661403bd, 0x2fde6fc5f91fb9a7, 0x7e0acbafd0fb5fd3, 0x7d8f3415f0308f68, 0x000000000001d0 }, { 0x4ce9272f03bb6321, 0xa48957b7546203eb, 0xc973ce54f4ddb15f, 0xefc0b8d168673b36, 0x5b5302f3dbe9fa8, 0xbf049e5c24db2111, 0x9a4eda8ea66ace6f, 0x2a1a44dfa767e6a1, 0x00000000000172 }, { 0x6c4e808eeaad0ff9, 0x4fdd44caca45a129, 0x8f353a6eee2714b4, 0xcafb9d5b618b5c48, 0x730a9553301ff964, 0x1e1c0199806c9eb5, 0x9ccfc8a12c8526b5, 0x892ae4f26539c7f5, 0x00000000000049 } }, { { 0x484141bbece5a531, 0xd30c4638d00d9bfd, 0xb382ccee9c8fc3a7, 0x52733879c24b80be, 0x565a8287fd8f2d69, 0x79736605f20f533, 0x6a64e7e5b1f88096, 0x4c14d52346a7bac2, 0x0000000000014f }, { 0xb9abd1ed1e3426e, 0x46d1c36a2e4ef750, 0x886d85538274d32d, 0x46cf3d0dccb40180, 0x7abe02a74c3e97dd, 0xffae699f8d95e680, 0xbb1b06318cd03bdd, 0x59468b1fa08ebb9f, 0x0000000000006a }, { 0x34a3d4dcc1fad228, 0x651fc55118e017c1, 0x10c9232460ec611e, 0xcf6009036276dc7d, 0xdf14634e2cfc050e, 0xe3bdd4a87fb15b20, 0xb38bd38b468a4201, 0x958d2a99ab9cd31f, 0x00000000000063 } }, { { 0xf266775bc7568654, 0x6da0e8ab0ac82c4c, 0x6e44205d89da02c7, 0xdbc7cfee73591ef1, 0x4d53217132fb2cbf, 0x3b680005e3b3d831, 0x77b7bab87b868fbb, 0xec984c0299b70909, 0x0000000000013e }, { 0xb2ef60edc3914543, 0x75d5bb63717832e, 0x1092698258aca1f5, 0x6d6c4260d9986d0e, 0x2e22bd88a4765a2e, 0xa0836b3760af764, 0x76e9cc38ed58268d, 0x5eb53dfe83524306, 0x000000000000c8 }, { 0x1ea87068d4bbe7b7, 0xe5b6519906fbebcd, 0xc563dd2043f1c710, 0xddbfe14a6fa1f064, 0x41cea59859cd38c0, 0x9bd02d91b6f62d20, 0xd2430920ec450d2c, 0xdfe6d0cdd651843, 0x0000000000015a } }, { { 0x924bca3dac080b48, 0x30f623ecb4e371ef, 0x45da945a2c12d8e0, 0x6ae7e0b8e4402355, 0xe786693c9682714e, 0xc2e30d6e8e4f5c30, 0xf21f10a68c46b81b, 0xfdc74266e8112b06, 0x000000000000d6 }, { 0x2ff983b678cc1471, 0x6b7e4584e7f3594f, 0x9d9058e1d2fb668e, 0xcd0ef507521d3d1, 0xac1f852a1430688c, 0x79e07445ab56bff1, 0x2e31fe4e1be8d955, 0xdf57eaf16c4967e5, 0x0000000000013d }, { 0xaac36503c5ec147a, 0xeff79b5f03b8329b, 0x4ef7e1b0c26ddbdb, 0x24a7dfc223051710, 0xc97f6e0c8a3b0eec, 0xb308de994801ba46, 0x8908f91af311bca8, 0x7af18e198b177ec8, 0x000000000000f2 } }, { { 0xd82eb739d3e4a130, 0x1529126443cf4320, 0xd3fe244cdf3a465, 0x4a7b8cf9f7341fa6, 0x184d215f5524765, 0xa502ff77fd94d7a3, 0x9a5a0bbdca7d9a6a, 0xa4f85fdbcb18881c, 0x000000000001d5 }, { 0xbc22a780e42eb0e5, 0x7ba1ec0e44c6581f, 0x21c52c2352f18d0a, 0x43a6d0ed3ff96c4, 0x977d0812ad4f7bd3, 0x59ee90424249d37d, 0x246273bad2757f9f, 0xbeb01d7be3a89286, 0x000000000000bd }, { 0x643f1ae95264e8ed, 0x51f14afab48fa28, 0x57a92980fe04294d, 0x2b1e1adc4bec3cd9, 0x75295457536e7576, 0x9edf6038bbd2b846, 0xde1d2f1f8b5f67e0, 0xf7e868d45b80bee9, 0x000000000000eb } }, { { 0x5e93a846c5574ab1, 0x4224a6a38b9de392, 0xfa2f42db9dbd780, 0x30ee5e667682c04c, 0x86e032854d33256d, 0x41f6705a67577d77, 0xb7b7127fc38945f7, 0xf8a708b2d139cdbd, 0x0000000000015e }, { 0xc7b65127bcbd405e, 0x4af522a3f87a3645, 0xaeaefad7ea6426f5, 0x3dc31bf688138e8c, 0xcc94e8475e8fce82, 0xfd415477edea35a0, 0x594a5101a47f7f33, 0x12248623b63105fa, 0x000000000000ca }, { 0x6a5e7b67e6791725, 0x1dac9ca2e39a6f27, 0x5ad15d1b12b36cd3, 0xa31346f06f9e3751, 0x62923bee93945143, 0xcd676ad621be558, 0xed8d352bb9f14de6, 0x76308e5dd08af457, 0x000000000001a9 } }, { { 0x75957febe785c537, 0x6f5d048e67e90c9b, 0x1ddbfc1077a37db8, 0x2511ae4b06f01fb9, 0x3dedcb621092bf8d, 0x134fdf5cb8196d0e, 0xaf5ceb50cbf4e985, 0x5b83c418977552dd, 0x00000000000187 }, { 0x534aa39ff9f14ac2, 0xd242b425bd11661c, 0xe8865c24db0b0f96, 0xa0c5cab61dd22585, 0x6fd8776bf550471, 0x36da46b4b09d5ee, 0xbc5fe46cd7268253, 0x7d389ba5101c693, 0x0000000000002b }, { 0x60646b2ce588641, 0xbffb3c169d7f333b, 0xf3b37a2f0d50c313, 0x6124ca09cea68f96, 0x87fe82a1d346fa3b, 0x20dbf85e88f26bde, 0x3cd3b7f723a3a632, 0x1737e6809a098310, 0x000000000001a6 } }, { { 0x5a96050c25d40b98, 0x2d215afdb8c0fb4e, 0x131659afce7b657f, 0xb98f8156322edb34, 0xa7f57a7422a7a816, 0xc10d538ee5ef71d0, 0x7bac3c256625d37f, 0xce5647cca8e98100, 0x00000000000026 }, { 0xa619c587ff87d427, 0x485be8f6637901de, 0xb992b756ed0a5060, 0x677c18aa10746756, 0xf39b7db6c4f5f5fe, 0xe64b6653965d9521, 0xd73cc4bbd2fe4c51, 0x5eb83d035b75c591, 0x00000000000138 }, { 0x17982c039cec487d, 0xf681feeb8678488c, 0x9ba268d0d612d75e, 0x3ea79c5cfd1ce127, 0x92516b29592ca56f, 0xd6de50b2c62da403, 0xaa8f4c23329d4647, 0x6abac5614962a321, 0x00000000000070 } }, { { 0x9d597deae189a932, 0xce0689d71631984, 0xca8a45c4cf01b29d, 0x442a5baba9c6254c, 0x3632264e9c30a0d, 0x7769932edacb0041, 0x38f941c0d0570a21, 0x29b6903f8ac12d45, 0x00000000000016 }, { 0x841e4842cc4a6a03, 0x58b9d70d002e5294, 0xaa8c78c5e0645b20, 0x31a6a7202289f0ee, 0xb6e52aed1564de25, 0x47e328b960766e09, 0x9baee250c4853899, 0xf370f547c66a85a9, 0x000000000001a3 }, { 0x2ee66afc3a7de8dd, 0xf543f1faf6e0592e, 0x9eeb02c788f02c5, 0x99de556c38315747, 0xb88025ad6e238c2c, 0xb582b5098c306ea1, 0x3aaf560b9fa1fa37, 0xf73dac3a9f495373, 0x0000000000009b } }, { { 0xdc2a9be2a54e78e0, 0x15e86d2dec838d5b, 0xa96c26edb696147, 0x79dad5264b51c3b3, 0x373d96dc17bd2255, 0xdbe81defe422515e, 0x794519c0817ee060, 0x7e1770126269b0e9, 0x000000000000b4 }, { 0xbaa0c0495ef90cbe, 0x2da34e548213a947, 0xdfe5986228152629, 0xae3f9d6e3a7673a6, 0x113c2acbfc55eab8, 0xdf582722bcd9cec6, 0x54eca3a429cda6df, 0xe94db449df2154eb, 0x000000000000f3 }, { 0xd4d232ddb041a528, 0x4f83f703b7ea88db, 0xab663b5babe1b8a0, 0x79691af9adfcb3c9, 0x505a6d4ca1517953, 0xbb0ac32fb88c5454, 0x4890e4510d7574c0, 0x7756419716633482, 0x000000000000a7 } }, { { 0xe425d5b2555b0671, 0x3d3ed26d4e50832e, 0xe077cbbd535bfccf, 0x410d79e19d0e4559, 0xb0bab1a337eb7b3a, 0x314ffd3792d57e78, 0x29bb68bc28ac0092, 0xc375c428cb710f0f, 0x00000000000178 }, { 0x60cca254f7021e13, 0x66c7fff1d6a850d2, 0x8809947e6f6b5985, 0xff941ce9876f23bd, 0x214f9048748d018b, 0x98d4de7d435e78e6, 0xc6b76fe8e9d9b990, 0x6b19398b12286a3b, 0x000000000000e3 }, { 0x21a4509c03286d5f, 0x804ec730cdf87033, 0x73d9c9ef4be2461a, 0x7162d1112fc113fc, 0x704b9cad0b5e0eee, 0xd647991b9002ef7d, 0xfbd5501eb4675c32, 0x39975ce0f914911d, 0x00000000000183 } } }, { { { 0x10a0a143e4954c22, 0xabbfd755f42bb83c, 0xd0523468c61f4731, 0x96666a53df3ccc78, 0x67d4f282760e9277, 0x45bd2ae10f47c090, 0x82952c95f86952d7, 0xe7c3de54af0a88a0, 0x00000000000180 }, { 0xa05ec456a76063a8, 0x485c79fec3a685c4, 0x91b14f5f2f11e086, 0x441230ec667b5b5e, 0xb8197806ce6fba35, 0xff065c9afba43c58, 0x47dbb6db224546d7, 0xb5cbe6282d71d1e0, 0x00000000000080 }, { 0xe21d96a8efe9fd57, 0x619c42f5e0fcdfdd, 0xfd91e962f1495a22, 0xc73e6cb9b02605b5, 0xd2cea7f0b3536a6b, 0x7bbff8deddc5dd52, 0xe9c9efb8ff5c4126, 0xc2c593e92d871300, 0x000000000001cb } }, { { 0xc5ddb5838a2841ca, 0xfe67c08462e3e0f6, 0x582b4bc8c1264ffc, 0xd16ecce5e1149857, 0xcd1141610509c36, 0x837a48fd864a7244, 0x14fbed2b2d17e0bd, 0x6c68688dcf5c1516, 0x0000000000014a }, { 0xa929ec0f6aa96908, 0x399390227152abea, 0xbd34aa465b516ce9, 0x1085a150b6ea722b, 0x29de8a3c3e0ddd09, 0xc672b51207287a2a, 0x48af68f12adc8e9, 0xac9080ab3f958ce8, 0x000000000000fc }, { 0x7ff76db06383734b, 0x9b8ff7da9027df04, 0x7e68d64d6e291191, 0x9c02629eec569609, 0x1fb3ad9ee79135ec, 0xef84d41db536f9f8, 0xee5b409d752c21ba, 0x896f4cc870aa8596, 0x000000000000d9 } }, { { 0x1c6d2e240cf3722b, 0x38c46a00105dc4c1, 0xcd3d37ea03490fe5, 0x8a83555b1cde67ea, 0xa6a3e46906bee43e, 0xa335649f8f0d9d6a, 0x3bfb238c0a679067, 0x3854173e7ed90ad0, 0x0000000000015d }, { 0xb04d4757e99402f1, 0x90e974e8705ed270, 0xe296acf2aa37fc1a, 0xd4cd68af55e71a6d, 0x9fb1eb40f3e824ad, 0x271b600a03d69e13, 0x80f679f4d2af095f, 0x4edb84451db3a680, 0x000000000001ed }, { 0xe7f3af03f9b47303, 0x1d65dcc1d74b9a67, 0xff9e0621ef5de67a, 0x5992e59435fa8f23, 0xf217a902b9ef0b67, 0x13cb658f1ed6e16a, 0x5a997ee3ea4825d0, 0x5544b40e56b5fa7d, 0x00000000000081 } }, { { 0xcfbfd94a540f0470, 0xd989b7eb142a5b4e, 0x3b60b425b7a74017, 0x735f53b40263b33c, 0x98535d5ac59913a1, 0x836b61a018588f14, 0x5c25f9b4582675e7, 0x755f0b6604919e32, 0x0000000000011b }, { 0xebfab42929efdf69, 0x5cc34e678b73f22d, 0xa3bf69c28cf905a7, 0x78ffefc37a22a686, 0x30ceae2b5e8df685, 0xacdf6db84d8e2a60, 0xf665a1fbe1b88e71, 0x13cf38dc72f082f1, 0x00000000000136 }, { 0xe178ce6857e25747, 0xc795e39d5df50038, 0x4af7f273961695d6, 0xc7274f1531b53319, 0x67d54c0146dd6c13, 0x39d0a725d1d5c755, 0xe392a2883d2a6ea7, 0x14ce7ffbacf69106, 0x00000000000175 } }, { { 0xbfc35b0c67509f8a, 0x875705a830f9d34d, 0xb49da0747e95fe76, 0xb4a7429de50ea4a1, 0x7d34dd80f455fcd3, 0x596688d8417bd4a9, 0x9c6ed5d6ca6cf214, 0xc8f1d419183c13f8, 0x000000000001b5 }, { 0x74f74198620925d, 0x2942ee2017bea62e, 0xbc9b23f1a263c44a, 0xcfe4b7cc1b1e38d4, 0x947f021206741f7e, 0xab4730111fa7a36f, 0xd1094fdcddceddd6, 0xd930044d593c8141, 0x00000000000016 }, { 0x8da0949764de096a, 0x130882331af6a083, 0x1f0111bc259e9fdd, 0x6daaea9974b3cf7a, 0x27f6753f070136d, 0xbe09beba90a73208, 0x264a70ac186cbb00, 0xc028c7a48cd4466d, 0x00000000000120 } }, { { 0x1986bbb507de24f, 0xbf3be8346fe51d2c, 0x4a01399debe53b32, 0x39fa8b84a3f81261, 0x61a85ea50c9123e7, 0x8bd47ee3e0aab91d, 0x4741b58f4e49aa53, 0x6272ae6d18ebfd33, 0x000000000000b0 }, { 0x4195b434224115f7, 0xddf00a334520dd2d, 0xd1061dfaa690da78, 0x83262bf457088ab9, 0xa5696f52b88e559f, 0xe33940db4d43341, 0xab8632747f8a7def, 0x929610138c361ef9, 0x000000000000af }, { 0x38223f30ffb32e1f, 0xc258be1fe16febe7, 0x144c60ffcabe7b55, 0xbbb0459f13506d65, 0xfa135ba74ba29247, 0x9ebe79015d4fd0f7, 0x1c6f86963082ca9, 0xcccfc7049c5d10f5, 0x00000000000024 } }, { { 0xee532a78d10c3e4c, 0x418cb54019aa3c6d, 0x3b0e44fd35619803, 0xdb7618707f2ec36a, 0x7568537bc816e3e0, 0x32d4cc0f52d0dfa9, 0xd75030e2472fe65a, 0xdcea7e3b98a14c43, 0x00000000000129 }, { 0x25d99f265fc92980, 0xa1057d248f575141, 0x1cb40d27058d6323, 0xc0efe07822c17e5, 0x420c67fbe17d9220, 0x50aabecb2eac366c, 0x7be1c0fbe2c1b8f, 0x5c97d7372bc10754, 0x00000000000063 }, { 0xf07d09182ffe51ec, 0x560153ebbc60ed75, 0x5301bd6e311b111d, 0x509c2dbf4039f9cc, 0x9bcb190b96048789, 0xca56461e40367bdc, 0x3675a638b556716b, 0xb9260a464a9cb9a, 0x00000000000154 } }, { { 0x25cfd3a1e8dae440, 0xf3b85b381175cbf, 0xed16231a9a8c44ff, 0x145158625a0b8bf4, 0xf434084410c97ad9, 0xe972f51fb74f8a11, 0x257f6fffd546927a, 0x5bc630ad1d845976, 0x000000000001f0 }, { 0xef7032eabccfdbfd, 0x10a8aa0a1cef1777, 0x5d80de8539ddab27, 0x12aa4e1c297c28c3, 0xdc01d2ac1a34ca0b, 0x55d57397e68fffab, 0xde1c713727661a1c, 0xed237645357b731, 0x000000000000b8 }, { 0x8fc9a4e0fa520b1c, 0x7202b5b06e97ff0e, 0x4a6a9dc16d451860, 0x9f362980f8843f13, 0xdc241aaf0382576c, 0x5264ea3586faa756, 0x54c6cf7ada25e016, 0x1d391c2ea82b7e86, 0x000000000001b1 } }, { { 0xd191be63e6eb721b, 0xca6124944d2da6a2, 0x1ee716bddf37d32f, 0xf942399c8fd1b17c, 0xde75df63398b07ca, 0x363fa8c5b2e2ea71, 0x759fef4be501b749, 0xcd83765821c6d231, 0x00000000000167 }, { 0x50db77b1a380cf41, 0x54a97d047e7af420, 0x719cc93d6ba080fe, 0x2e96d80b58f09934, 0x6f7c942462bf9ac, 0x7810f36d0fe51aa, 0xb3084b3910461aaa, 0xbab03056b1b3df0c, 0x000000000001e1 }, { 0x610c983fcfdd2ff0, 0x89c9d92fd83a35f0, 0x832b62ee4f5e6d46, 0x945407f7b7462e1c, 0xb73dd363ff63eada, 0x3dc59992cb7854e, 0x4911b7c9d41dddd6, 0x4bb573d299e61678, 0x00000000000035 } }, { { 0xf3ddb09001e3d19a, 0x2e7365e9ba1215b9, 0x55763da888e6e79a, 0x8e19a9a33567f4b, 0xd7caf0abcc409d9d, 0x2bfbcddd15c18cf7, 0x83a31e23dec180a8, 0x9159c97cbbe1e6d3, 0x00000000000139 }, { 0x24c6529bf8ddb416, 0x2c771b3ffcd505b, 0x4a02040f52466761, 0x488eb1ee19fc320d, 0xa03a7a84fc81bac9, 0x82d904461f5fe624, 0xcb5e1377c92d2c19, 0x91c55c849e9bd06c, 0x000000000000e4 }, { 0x1e5ba92b70b7b4aa, 0x7d898fb23d9f232f, 0x2a2e737db6366999, 0x34a77e1e0e51c167, 0x5e7bb0b4ce6ca2a, 0xcc575c011512d044, 0xe7f92b542c528cfd, 0x33a76c6ec4c0cc2e, 0x00000000000056 } }, { { 0x5991cc1eec61a108, 0x9cd5cfc297edcb49, 0x840968e22834dcd1, 0xec4921e4bebbf7e9, 0x726eb2a996fdc117, 0x7c8faf7de460e8f, 0x4cca6265160a149c, 0x6ac091f62e33410c, 0x0000000000008e }, { 0xd2bb52ffd2f809c4, 0xdfb2be87251776a, 0x1502c62c782ce2e1, 0x2baf08a4a1ff2f4a, 0x314c390127e13c27, 0xf61f0279bdb775e2, 0xb2447fc09bae9795, 0x83e39b56b36f0eae, 0x00000000000143 }, { 0xb88c1cc7ccaf04d3, 0xf049562fd685eb7, 0xbe382242225e8f96, 0xfb4e007a4f4765bf, 0xf5e9db9c06c40b3f, 0x5c3d8af912e744d6, 0x8364ad7a1d06c866, 0x49eb8e9dead41f0f, 0x0000000000004d } }, { { 0x698084fa24ed3a02, 0xb3f46b5f740eac0a, 0xd4ea92a8d8c16a07, 0x92459469b5216f71, 0x3180f9832362453b, 0x6b5b6e74929b1811, 0xe9561442a669ae7, 0x9cc369b56b9e0d73, 0x000000000000fd }, { 0xe440726027830fa4, 0x5ae33b55b97ed7d2, 0x4d3e026c99fd1611, 0x92aa715815681235, 0xd318ab6202b420af, 0x703f28ce971db610, 0x2e89f008d4a5cb8, 0x563dee1f25edde6d, 0x0000000000017d }, { 0x53aaec41b530c8cd, 0x8b773f8c400736d5, 0x4a8d2b60e377ff55, 0x4d9860cb70920342, 0xfea713f1c8ecce59, 0x3d737a7683526614, 0x9f6a718c51f57b5c, 0xafca1a3673255896, 0x000000000000d9 } }, { { 0x804781305f78ba6f, 0x3e6a8f63732508ef, 0xb9aac56f47c858d6, 0x14cac218f2ac2cf1, 0x402384da8fdd7c1c, 0x74e798d89d618e66, 0xc9c2d694906f5594, 0xffb9e017e0ad7384, 0x0000000000012b }, { 0x556bf316d9c25a8a, 0x810403d59a73c0ab, 0xc0959e76d5f5888c, 0x26dbc7d28296b8, 0xea558afe6207511f, 0xcc235e5923ea92b4, 0x18fda5af26d55673, 0x7386e69c3c6fd82a, 0x000000000001b1 }, { 0xa12ab3ba5cdfe5c7, 0x1f6ab34e6606e3d, 0xb34cf21ddee1481, 0x5c855ed3eafe148b, 0x52ab476328201c8b, 0x6ca1bafc680e8356, 0x38fd30699002650b, 0x82ee3f62be1b8fb9, 0x00000000000010 } }, { { 0xab81c2ae67731b9c, 0xcdd9629073c3e334, 0xe891b5dd90258784, 0x9f60d86283a5cd03, 0x759d520ce4c47fe6, 0xf2b42c6341e97c8, 0xc5923a77c0387c6a, 0x3f05c143a38dd439, 0x000000000000ef }, { 0x32ce08b61dcf7265, 0x6f19a58279d790de, 0x2374ad51eb4d3395, 0x23736dbf37c84703, 0xdf015b8c1ab2b68c, 0xc66a286ecffc31fb, 0x868d2a963deab741, 0xc3881c91179adf2c, 0x000000000000d6 }, { 0xcdc876a970cd143f, 0xda184bcb16c102e6, 0xd8a8cfb38fa50c04, 0xe8f1f8f69eb8e05b, 0xd425d437c8220802, 0x7eb80921fdf72ea, 0x54465b543d929303, 0xb1faa943baaa4f70, 0x000000000000c8 } }, { { 0x346d34de06a43837, 0xf2ce0739aac36458, 0xb6c50da9badcabbf, 0x8e15db55733d7c15, 0x7edc07ee89660fc4, 0xe07812e0418044fb, 0x4e0230b1c805ff54, 0xddd7762fc53281fe, 0x00000000000147 }, { 0xcc51ff90bd05e636, 0xb01f59f0d7a156ac, 0x995bba74f23bc1b6, 0x84ff1f530109e60f, 0x837e1bd57098f019, 0x15244aff791ccc30, 0x3948734dcfaa66df, 0x109531932b629ce1, 0x00000000000099 }, { 0x2d9204d96688e39e, 0x548c351e1579ac94, 0x543ffb66e8b941f6, 0x8bc26c8326dd60a0, 0xb4fee3e782566e3a, 0x895d1f5289f69642, 0xdfd60905a8e6954c, 0x4a8e97087acf317, 0x000000000001c7 } } }, { { { 0x8663e29ce04f748e, 0xa703eaa24c70da33, 0xb8a30c6a5d6e092e, 0x39add9eef81da4e0, 0x6b6756ce95777511, 0x8be5526d3f14966d, 0x685c18954ebefc8e, 0x321849f638fcfb0d, 0x000000000000d8 }, { 0xae43569571b92da4, 0x104fa9603f1d4e1a, 0xa4a46d3f7ac61576, 0x5e349fddb3a0eea3, 0x2a90233d5d95ae21, 0x2dcb5b4d4cc6f5a9, 0x1dfe6c2db508971d, 0xb9485b186d2fee65, 0x00000000000049 }, { 0x81e3e566bec2a4fc, 0x2e57756fce29e114, 0xcdbd3570c270f17f, 0x1cac9ef4a7c37ec1, 0x1031ad00f2f99b6e, 0x2f77dd1db29e153d, 0x616abe0db494911d, 0x7d419054068c97c5, 0x0000000000004f } }, { { 0xd4dcbb7e459d430e, 0x39ba9cf7820e37c9, 0xcb8e4a2e11d9fa79, 0xf8f64b47ed15b520, 0x453a684f2d17bab4, 0x50e8a87a66805def, 0xcaa3142754dbd6ae, 0x4c52b0d3630984ec, 0x000000000001a0 }, { 0xe60d3fd7efac98a1, 0x2b9b0edb96d382bc, 0x4d8bb37d6cb0c770, 0xbbd028c9118bab18, 0x3cd40c42ff74b9ea, 0x74b735913754f2a8, 0x9b39476a2e34f4d0, 0x3c679127b8edb19e, 0x000000000001c0 }, { 0x8bc17b890aed6dbe, 0xea74131c8f8e369f, 0x97a7e467bfeabd7, 0xc82d17ad4d65eb7e, 0x198c444521b4683, 0xbbe4c3aebb6bca51, 0x1a143bb018814fbd, 0x682b8ea9970ba91f, 0x0000000000017a } }, { { 0xd580f22ff71eceda, 0xe92e5f1ecee7b95b, 0x42cf6ad66cf711dd, 0xd6b0bd668b63b758, 0xe50b294d001e7de3, 0xcd420a34335e76bf, 0x142d4647133970d2, 0x648c539566d05a85, 0x0000000000005a }, { 0x90689d9329bb72a1, 0xe0780a8b8b16b066, 0x6fffb646494d407e, 0xd851d034681e6e93, 0xadc07c3e0ff9e237, 0x1cdc1b3aa53b8e89, 0xe16b60db4ed2215b, 0x936efce1fae9f852, 0x0000000000000f }, { 0x74e864fcb1ef9717, 0x2d4cd00bb6186d, 0xdc99329f8ec12756, 0x1f17358e0085597c, 0x6f2dd26647c603e0, 0xefa8add7134f1d69, 0xaabe9cf00710adb4, 0x17ef6052eb56816a, 0x0000000000018a } }, { { 0x380c130c1df46383, 0x7a85a05ea9c1b853, 0x217584b0530a14a5, 0xa228a837fef6d55a, 0xe6b4782e76459ba6, 0x98af75335ef5d4bb, 0xc837d3285a0bd841, 0xf9df344d30785ff3, 0x0000000000008c }, { 0xb1771e82742f1eb1, 0xf2e1534e970e4166, 0x403665be85109aee, 0xc864925dd32a6a12, 0xde6cd988783c14b8, 0xaec99de0b364f8eb, 0xcab684a31d04ffc4, 0xe01fb279a31888cb, 0x00000000000036 }, { 0xe8fdadeda8bc35c6, 0x2e682a30ffaf9e51, 0x1e677df92ec5ed51, 0xb93670988a857ab0, 0x866c2cb9e11e0203, 0x27fb1be6751e27c8, 0xd386fec8e22e1bd7, 0x8f0d65fc8317cd3b, 0x000000000000a9 } }, { { 0xe0eb629c450cce36, 0x7d5c4f8590e97cd2, 0x9f084e39fc597983, 0xf4fbccbd732f144c, 0x824acf4576e10762, 0x9c87329d1f0893da, 0xcec9ec043eaadfa6, 0xdefcf89eb2e6eb5e, 0x00000000000155 }, { 0xe4847060692e2d90, 0x2644be321432327, 0xefe1621afb1aa376, 0x58b707853de828e, 0xfcc8a73bd762278c, 0x86cbe8e83f085565, 0x90e9359c0e46696f, 0xb501e51fd6dcb85b, 0x0000000000014c }, { 0x4acd942cdf8c9bd7, 0xb74664b947b87553, 0xc865781ca961c605, 0x43008f53229550c, 0xb32f0d3b5395ead6, 0x19e69740d001ef96, 0x17d7dc4ba0261941, 0x813b8090e911c7c3, 0x000000000001ad } }, { { 0xad075a44b121e42b, 0x1e3f876f74a8ce0b, 0xa7c5645c04a33c65, 0x7e812c369eac3bfb, 0x2cc819be2c1b6040, 0xb1b22f31f2c0e086, 0x530927d79a0189a4, 0x2c591532606be406, 0x000000000001f2 }, { 0xbd308eee7d461288, 0x48fdb516e51090c9, 0x1ba9355d8a0a9e5a, 0xb3f423026a4facd4, 0x84b9d1c3291fb4a3, 0xf964f0b0a5957a22, 0xb46bedfda65e4054, 0x6e649ac02eb02851, 0x000000000000bb }, { 0x4f11b6f06a0cd676, 0x1a13570842a59827, 0xcede0d6c1e8c52ed, 0xa0d1fef9602cce5f, 0x6496c495eb20f49a, 0x119e7be24ab8dda0, 0xa016ea8cf183c384, 0xeed53f9f8acdd87c, 0x000000000001af } }, { { 0x7c8be85828227333, 0x34f6bcf77f9269a2, 0xe25061a68ac2431a, 0xa42e01cda4a06bd1, 0xa187a976d7596729, 0xf2c78c670f868c1, 0x2a1aeb8da39e3c7, 0xdcb6c9da1ea48820, 0x0000000000010d }, { 0x67d019c74e358ecb, 0x896b1ead4e08b85d, 0xd8a2605fdbde9650, 0xda7e97951594960f, 0xa0e596cd953a6363, 0xa4f59ae58128f1f9, 0xd8496c5d1d761ca8, 0x9446b6efceb6c6a3, 0x00000000000182 }, { 0xbb3ebec0955f624a, 0xc7d2adba6b361de5, 0x73801241607d1504, 0xd53e1174cf4cb1cd, 0xee44582ffc576a01, 0x688516616d35376, 0x5c4f9e956f4f7d12, 0x76b8ac682d128367, 0x00000000000019 } }, { { 0xafc1c2740142a6d6, 0xb047cb2a53c835f7, 0x4776ff1a4c2335a4, 0x973d5dc88c2f3b05, 0xe40b463c65dfc1da, 0x874293a93d9d4375, 0x9690e5a1396c1c44, 0xbe97ea5ddd64af25, 0x00000000000123 }, { 0xe8673da4514f2be1, 0xd80ce2f7988b4ca, 0x219f7da24fae5c26, 0x99b1228edd5afda9, 0x67f8cd830fd20034, 0x7187aa74ac4c00aa, 0xf35c590414c9f674, 0x396085ae09443020, 0x00000000000065 }, { 0x7e9defdf3d10f929, 0x73b5ca8616aec848, 0xe38cd9735bf3d159, 0xde967cba14a832ae, 0xa675d7bf171f47dc, 0xeccfe33bce4124d8, 0xd47700ea239cb581, 0xe1fe1e4f8113858d, 0x000000000000f3 } }, { { 0xb895ee84c8f27179, 0x482186f43e1c881f, 0x14ff7cc0c77a5369, 0xac53d3318411b05f, 0xb30b9488ccc0fd9a, 0x1395ca1937ff8f84, 0xf9a6969ad601da6e, 0x152c72b5fc2b6158, 0x000000000000d9 }, { 0xe60a778b0c5135eb, 0xd39cf72d3eb419af, 0x908ef451b8ddeb81, 0xfe04dc02510177f6, 0xa43ae8c47bc85bdd, 0xb46485145882a58e, 0x830f8b0947030c49, 0x5a75df9ed047b00c, 0x000000000000b5 }, { 0xebc4b5f7f5e3718e, 0x19ff276ecd1b6dfe, 0xb830e6e0d6b0ddf2, 0xeb7ca3c947340bb9, 0xb2d21c37a45f6954, 0x86a951cc3e26c32e, 0x6f1cd42324e72dee, 0x7313828e2da17b5b, 0x0000000000012a } }, { { 0xdee2a831888a85c8, 0xd3f8a354c7c74bc3, 0x4f52f287b414bab, 0x2ff157b4595b20e4, 0x1653e5d85fcd40cc, 0x9fdf5b3be0d258bc, 0x4edf72807425e5eb, 0x4abbf1f480007f7d, 0x0000000000015f }, { 0xcaef9adedbfa9fe5, 0xbedd050f428bb3a8, 0x962b1c6a202b7326, 0x40afd9ec0ef7ecd2, 0xdadb93005095b4be, 0xe26fe62655d4aa2f, 0xc9eba6d6bfa726ca, 0x49b3bb403e82b355, 0x000000000001ea }, { 0x3c12ce24f82dbe21, 0x3071a5cb65568b17, 0x207178de35e87566, 0x402ac6659c881667, 0x59e5263e29e3ef1c, 0xe65003fdc77fa44c, 0x1529b196f578a373, 0x86495f511ebb4d62, 0x00000000000095 } }, { { 0x3e217c8f6d62528f, 0x8d81ac665d92cef3, 0x96980a019d1c15ca, 0x9ee3344467bba833, 0x508e934549bbba, 0x3d16ef8032f1d181, 0x778b2936421f6bbc, 0xa5015db1d1e60b6d, 0x0000000000013d }, { 0xbb9e9eb8aa387865, 0xeec5ef54fd41b641, 0x636b537c8b8e5c41, 0x2684e944b92406f7, 0xbaef63b7a0f1daed, 0x184f952acac36459, 0xc1fbe0decd4e8790, 0x8241c22e26b3cdb1, 0x00000000000063 }, { 0x6d639a7dfa219972, 0x7e61ea57018ba2ba, 0xcfd8912ff8f3a190, 0xb6d7d9846d5ed801, 0xf04b3d7a238ec084, 0x83968bf90c48554e, 0xa521cd45b8c2996b, 0xd5df35e0eb7f3682, 0x0000000000004b } }, { { 0x43de5049a28c113b, 0x8b2bc7ddb6b24a4a, 0xfae24c217bbcc612, 0x61de6ad4d6d98529, 0xe46c94c6c89f6ca1, 0xf08d2c2946067bf, 0xea2e6083713dc065, 0xef79ea4e26557b3f, 0x00000000000033 }, { 0xb515ba57279d7882, 0xf3ab9f7bc5e3ba15, 0x26332d5cdbbe7fd7, 0x82216a2d391ae819, 0xdfcfadb9f3598a5d, 0xb7cd46b70fbe9520, 0x811dfa759ac95375, 0xe864582da08982c4, 0x00000000000060 }, { 0x366f42119263116e, 0x899afca56eea4ac7, 0x31962397c33006a0, 0x1de2e2899e77cd1f, 0x4e7ab19362118520, 0x2b21fc945de52e1a, 0xe9b30a770a10c894, 0xa31ea8a585b4dec6, 0x000000000001f1 } }, { { 0xf1c48be2fc4f0f89, 0xa2c3feb89fc67172, 0x184a87adf0c66133, 0xa1a9e10164ca299a, 0x804b4afe49fec449, 0x1f1ccf1d2361f120, 0x4d819ea85765b265, 0x4f7b80e612524613, 0x0000000000003f }, { 0x110ece4dd076e175, 0x9471ac0375ff2d3, 0x5a5dc6bb35c9adb, 0xde2fdd3c9dfaade9, 0x92156aabd2611842, 0x52d665ec9325e011, 0x3c4b9b5c168dc38c, 0xd3b515c531b2418d, 0x000000000001f7 }, { 0xf7dccb871015f3e4, 0x1c1f41c70b1767e2, 0x8393f03703f6f58a, 0xfdb8496f1f5abd4e, 0xc79e7a52fe1f0667, 0x35da062975796dd3, 0x8eaf42ed765ef47f, 0xedd291e29fded1fe, 0x0000000000014c } }, { { 0x67f540cb361f188d, 0x4f2cdd3cfb7d4b55, 0xaf2f25aed068120d, 0xd1a1448056335a17, 0xe16b935b50940a6a, 0x288ae0549864ca4e, 0xf2728ff9fd507275, 0x374ddc267e53112f, 0x00000000000196 }, { 0x2a8ea0ffc8262131, 0x2b941d7a2e817ee, 0x3c8f4ee92678bc5e, 0x4301bfa7d2f88423, 0x8ae29f4e83a3a8dc, 0x5b13ef0823c34290, 0x26fb2c4bb36907f0, 0x1c3f4301a28d5f2e, 0x000000000001e4 }, { 0x1f342509944de82f, 0xe65e683bfc4b51dd, 0xbb02f42b369a360b, 0x5b40958fa2ef9577, 0x1ebd9a426b0386c4, 0x2ff3125e5e1e6ccf, 0xd3472ccbf71ad903, 0xb0152cf166c2852c, 0x00000000000194 } }, { { 0xe6d15f3c93e96bc9, 0x55b55b7a0cf39e8e, 0x439d3a3974ca41de, 0x8f472853aa12763, 0xcdcef9e7c76b328, 0xc1992fd944f31cd9, 0x1f1b885302ab4658, 0xa8d0828f585ba1fd, 0x0000000000004f }, { 0x17b8aea7af25087e, 0x1dae41edb91844ae, 0x19e96147f2dbf111, 0x6a0475b70a82754a, 0x75ad00f80d1a4467, 0x64eb8b97d9f88106, 0xfa325c81f3062fc3, 0xb6972b7aaedbea7b, 0x000000000001db }, { 0xfbf0452a027800ec, 0x72daac5e910d6dd5, 0x2c2e823f95e68434, 0x38443660852f5f3a, 0x1dcac0762903989c, 0xb2c24fd8b00085ce, 0x6f4fbe7022b52585, 0x6ea9b83c77b40174, 0x000000000001e3 } } }, { { { 0x3209558a089e4589, 0x662edc723b1d80fb, 0x8b7710eaf9c3b0fe, 0x297e5461df3244f5, 0xb2588ea316e384e8, 0xc0e0d5108473a8ba, 0xf1660ac5f1703ed2, 0x6cd6f3dd5a1a4d40, 0x00000000000058 }, { 0xeab84a020fff6546, 0xcb62f5a9ac6b3139, 0x49e065fa7e71d5c4, 0xe1c1b81d3aff9e0a, 0xa5d5ddc513628127, 0x9c31ad8470766c0a, 0x9085ead5f6ac8e04, 0x6124e00fa95a28c2, 0x000000000001f3 }, { 0xfe50e11c2302efd9, 0x91ed5a4b0c484a20, 0xbc10df943f8f917c, 0x313b52ece4fd8ce7, 0x701a67399424192a, 0x800e2e8f0efc68ad, 0xb1d4668da5cdf9be, 0x9f4cca907566d890, 0x000000000000de } }, { { 0xa3db0aa91eedac4c, 0xe7c58176ae930bd5, 0x217e1f09b74ee113, 0x5b31a44098bd7467, 0x74c2e8751def7944, 0x1f0ed6c67742f04c, 0x2dafce4c9f0a1225, 0x8c526efeb5a14439, 0x00000000000044 }, { 0xa83f6f9b3ebc922a, 0x16949b9cbdb8d439, 0xf2ed1ed63807fdd9, 0x6c2c1aaad74500b7, 0x657b911182cf1f52, 0x1f6cfa570d14a142, 0xd37b716b49b126a4, 0x8d435eecbfd8bdf2, 0x00000000000032 }, { 0x63027b7e38c90284, 0x7a635ddf1bd116ac, 0xcf30bbac180a628c, 0xc11c955c3f45b86d, 0x3c5dd71ef40dad5f, 0x3750c21611d5ed8, 0x536f13b58e42cd66, 0x69745b46fbea1f35, 0x0000000000015f } }, { { 0x7c313780bc10f12b, 0x3a3832aaaf460900, 0x24ac5ff42c9a9a4c, 0x67f7ad63f8b8b9d6, 0xec2aba9596eaaea1, 0xa649ac029cb2be5c, 0x81232d88eac135df, 0x924f3bb39eada16a, 0x00000000000097 }, { 0xdee4a26c59a58adb, 0x6730c128507c72ef, 0x3b8e11beba8944a8, 0x714fc44bd255c916, 0x562c3d089ec9dec8, 0x2e4989e638eca9a2, 0xb8f3b13a9f4fb05f, 0x84b9f47afeb31725, 0x00000000000199 }, { 0x3bef3750204821d2, 0x28f202be119ec564, 0xec330c24ba310b1d, 0x773ae7dfaf787c53, 0xf32834f5ac6f93a4, 0xff638296f1213175, 0x18d1541ae41351d, 0x14e58edbb6c6d808, 0x00000000000140 } }, { { 0xb597026266cb82f2, 0x87b18d3c0660431, 0x23602191081c0ee9, 0x41fcabe79d6c8716, 0xbff7d90dc93d6e9c, 0xd86be037e3ad26aa, 0x32183346db84f5db, 0x6d889b25fe01d722, 0x00000000000008 }, { 0xb681ab276bfb9d63, 0xa9a195438115542, 0x16b0c408485938c0, 0xa9ff1fbc0cdbe7e8, 0x24d270bec3bae12, 0x76da22422ff9627d, 0xebc6062f24904547, 0x583b8d6a32ffbf79, 0x0000000000006b }, { 0xdcd5a777122ea11e, 0xf32c55844e5e9c1, 0xf68c5d994cf184fc, 0x7b253c709cf6e468, 0x7e90714a943dde79, 0x82694eb35077cf1, 0x178ffc6c7dba74d, 0x839fbd215170179b, 0x00000000000059 } }, { { 0x3916650b948e3a42, 0xc9b304fed1f563e6, 0xeab3f9b99ac490fc, 0x6e2e77c4bf8806a4, 0xe6dcd03eb7e2dbf2, 0xd4dd57b29e7bca11, 0xcb74b2eafcbc7c41, 0x99ab34ce4a9fe39f, 0x00000000000135 }, { 0x2aad06751cd2ef57, 0xe82b72ead510b2a9, 0xe8171247f5be844e, 0xef0626889c64ce3f, 0xb9ae8bf3141848c7, 0xe79f05771402783, 0x7a6ce97230a8258f, 0xeb1b84a9946d80d9, 0x0000000000005f }, { 0x18ca99a6e4f0d2fb, 0x4cf1e71937f53387, 0x78133ae4962c37d6, 0xc3b0b3de92812c73, 0x969b1b4e30ce5fc7, 0x459599e277e226b1, 0xbf347c38db3833d8, 0x5e8b91b4b8c339bc, 0x000000000000fe } }, { { 0xd68ab4f410987ac5, 0x44ee470f6ad424ac, 0x450154653f017bad, 0x2697459ffb68e86a, 0xec407a54c8e1ae9a, 0xf2f39d8a20362885, 0x49217e96a4176b1d, 0x134509cc67be2b4c, 0000000000000000 }, { 0xcd04309c69c3fe9c, 0x468ea52014117327, 0xcf1bce740c3440f, 0x8db52fd4c092a9b2, 0x41e4046a919da237, 0xe046b37feb10b587, 0x9cade631b788ca09, 0x284c347bc6d0e9fe, 0x00000000000026 }, { 0x7ee0515d26fbc9d1, 0xd144280010d4c366, 0xc5de0ecfa974565d, 0x40ca82629f5bc88c, 0x50c11b6c2be9ca2d, 0xe6898c16c43a6d1f, 0x68c7a4706cb0d410, 0x6cf4dc1cbdf49112, 0x00000000000091 } }, { { 0x419b7e5546b74d29, 0x1b2f722498d36394, 0x90d7862884365d54, 0x6ebc3ab6bec2574, 0xc731c8eda57aeb3a, 0xf464404f6e4e0b1f, 0xf1046d9cb4475174, 0x891a44b91feb9925, 0x0000000000014f }, { 0xcf31126f047bc8c3, 0xb59309a1d922a1ec, 0x35afe9c0d8226031, 0x84fcd392c91a9ce, 0x4751655f007b7102, 0x2a5263c1916247fb, 0x72010649ef3c13a9, 0xb8b498356283e0c2, 0x00000000000031 }, { 0x6f8740d22e0d2ce3, 0x8ef6f253dfd8cd3, 0x53a6de6c461f552d, 0xe20b52b66590229, 0x58b6cf21109fa345, 0x7cc5cb76efdd2358, 0x7fe7a7e6b599eb8d, 0x41886a69acd9446b, 0x00000000000096 } }, { { 0x13ab93a387c8bc53, 0xc06116989d716680, 0x9ffee995886607fb, 0xe4e9dcb6206c94e4, 0xa9fe7d353e23ac7c, 0xaabdbec2c336dd95, 0xfe3fd13dbb855961, 0x366ac60ef0e8bd2b, 0x0000000000004f }, { 0x885325ef94d3ce5d, 0xf4b9788c1fe4b0ae, 0x2ab61610675f38ec, 0xd76d19d95fe0f2c6, 0xeba069235a6d536c, 0xa025f441fdb2a0a3, 0x1394f33fa86fe600, 0x37301f8e0303a8b, 0x00000000000185 }, { 0xf0dbef4d937a9202, 0xf2efdba28006d6f3, 0x4bb52139b4e86c1a, 0xae87758c69c13fa6, 0x6abb6d6cc7605b60, 0x9068ea4a73620145, 0xda8090a6d32ca45a, 0x1f931d54f9d2c916, 0x000000000000f5 } }, { { 0x496341d30906ed7b, 0x10db164a91dc50b8, 0xe4172df950e6abb6, 0x9877727a3af2c25e, 0xf71256ba50270ec8, 0xc088325c9a3c5e9f, 0x7497e9f2df2de6be, 0x13378ab6d5344dac, 0x000000000000ac }, { 0xce1cc4db556554b0, 0x6791a191514ffc8a, 0xa53ef6832cfbe7b8, 0x5a7af1d589b920d5, 0x7cad9ec7f998d160, 0xae00666ccb8a7936, 0x762c2e6d532297cb, 0xf8dc6373ddbf8a07, 0x00000000000093 }, { 0xd1901e7582089fdb, 0x8dd7d8853b0e864a, 0xfb3934170262938f, 0x5e2df2628a10deff, 0xb048317dd04b8ad7, 0x42f86de22bcc6ece, 0x7fae7c26ac60d54f, 0xe4a5317a7ddf3973, 0x00000000000026 } }, { { 0xd473c1bb4f430e2a, 0xcd15d0578d5a61d5, 0x90091d8d1bab8d0f, 0x581e6103c95c2b54, 0x4b6468261f43590c, 0x48d4774da58df711, 0x3ffeb4f5960b5f57, 0xebfdcf26b0f198f2, 0x000000000001ab }, { 0x136efd560721e2, 0xa5c3b9e929e29e2c, 0x3ee7f46536aa716a, 0x7e26bebe58a21ef1, 0xdd2918928366bbf9, 0xbc8422d7d9d2ef7a, 0x8532674a448dba86, 0x9f1ea6b7767d1321, 0x000000000001b5 }, { 0x17db2da642c21472, 0x2550ef1178bb37b4, 0x8bd6c41c24d98de3, 0x3b6aa952f304ea20, 0x4dcc07619da5f166, 0xfcdc416a33f9d8cf, 0x7c7f068262c83a99, 0x53e17a283cca9e41, 0x000000000000e5 } }, { { 0x64ca7ad0a991a914, 0x648cc6f5356919b9, 0xa1b76ebe6839bea2, 0x3b577f5d06f2c294, 0xb6e09c73e578ce5, 0x41e1a1ba6f72c497, 0x7c755f7637e02300, 0x1096e17c07f1ce80, 0x000000000000a5 }, { 0x4c5d5e3d71578b8b, 0x4761adbc63659b98, 0xa1e663ac50c61f12, 0x9f84671f8e19f7e6, 0xefe0a66983e44e28, 0x96078b9f35735111, 0x12d021854b7b1ef1, 0xd10c18c6e3161521, 0x0000000000001e }, { 0x84937ed603d07bd2, 0x9b4b893ba9b6c049, 0xf9f88cb6945d67a0, 0x1fafe8889f9e9c2d, 0xa8257249286a3e4a, 0xdf2286812db84ec4, 0xe1e12f124748b234, 0xbf7771d2a86a7e5, 0x000000000000e5 } }, { { 0x81f4446821a4fff9, 0xd45aab6cacaee329, 0xf10d4607222d47be, 0x24eedcd84a79b585, 0xb034ff1d261422d3, 0x656941ceeb5b0f51, 0x39f68bbf0824360d, 0xa1a5a1ab2251af49, 0x0000000000002b }, { 0x9a0cf7d4fc94f7ad, 0x31fe79f61f31ed05, 0x9d35d3399f3bb2b8, 0x401ab3c6f5a276df, 0x7438b754c213ddb6, 0x5a4dc7bdd1741a19, 0x90060367315f5251, 0x27635b767ee6b358, 0x000000000001e5 }, { 0xb9ff28309169b4c8, 0x352652b7685c3b77, 0x395f97f42f9de293, 0x7547c4109a92fb75, 0xf7c152354acafa39, 0x761d869f873c6ca6, 0xdfe571bba018ba15, 0xd98cf14699912a71, 0x0000000000007d } }, { { 0x11b58c5e9c961fcd, 0x3b10508e37c4dbd0, 0xddeac7327230bcf0, 0x40560b253555bc24, 0x1acc9c274fc21e4, 0xf364537724b2ce5d, 0x8455547ac009d593, 0x9f488f2b953e3d50, 0x000000000001f4 }, { 0x54e3606efca871e7, 0x8d3c5cc457e5e28, 0x91be1ed886766ed6, 0x76ee55ae84c8e657, 0xd9a835adab6777f5, 0xb7ec491ccb6865b, 0xa3b16c6a629183b5, 0xfc885b8ba4d3a983, 0x000000000001b6 }, { 0x48eda7c577aa371f, 0x8d03acb58f0b940a, 0x72182a8e1fb35ba1, 0x775a2eef66c9f4fd, 0x3384ddbd34066984, 0x1b9e3f3c826ee61e, 0xab2596538ece69e1, 0xd5936a0b5f1a1421, 0x00000000000095 } }, { { 0x2c14aa64372437d1, 0x5cb508882fca6cfd, 0x1ef247cdc93a214d, 0x2fccee8345e41760, 0xe5464a017cbc2ea1, 0xf5520d1268e7b651, 0xe48a6ed292c3b86e, 0x50fb57facfa25897, 0x000000000001ec }, { 0xacc95c4ab40f17cf, 0xba8d2fc59560c28a, 0xed6d59807420f584, 0xb57ef812357c556, 0x689fec58eba0608c, 0xdc1f98b56a28ed30, 0x10d5f7cf65f26890, 0x215dec260e843c39, 0x000000000000a8 }, { 0xb56ce17dc9f3046a, 0x3b44265ec891b6f9, 0xaf35367e9b6d363d, 0xf68f6723c6dd0709, 0xb763c6f432a7ca53, 0xa483eb566d6174d7, 0xd6380f0f1cb698a5, 0x2fe7f8775f626835, 0x0000000000012d } }, { { 0xfabe431594d0ca38, 0x3320826744a2a693, 0x6916a8d6bb8ae926, 0x8ff8083626b842df, 0x5f2042070b9210fa, 0xb48a6971aab277e8, 0xd5a482ba3023717d, 0xfa03a1b0f0eb4fb0, 0x00000000000054 }, { 0x4310b203d5840670, 0x281d63ad12ef83b8, 0x3f13296e31c8b0eb, 0x38feb8e57b4056f3, 0xdbd0d21b6e1db5a5, 0xc5b313e6d0b910a2, 0x95030c6bac39d9dd, 0x1e212c28806dab46, 0x00000000000015 }, { 0x34b2685ea7250423, 0xbd66b0dc73e85081, 0xedb582c5cb17f5ae, 0x400aa57c3d38afd1, 0x1a80d1a7a0dda88b, 0x13ab8a7d27b4b419, 0xb7cd3b8f44d80392, 0x2c6b91d873f8597, 0x00000000000137 } } }, { { { 0x2e3a5406d7f1e011, 0x80c1b24eab075b1c, 0x69d1793f9b173d2a, 0x7cd6e25c85bbe87f, 0xfd909ea5e4fb367a, 0x14d6f891678492b1, 0x4a12effbe6ec59, 0x90d07c92006354eb, 0x0000000000011c }, { 0xc51ba4b7a18686f4, 0x12a80f12df7ac90d, 0xd3115c9632a9d581, 0x367c6c4ade0d561f, 0x6031c478b6f6e141, 0x7fee4c21b691168c, 0xd58158bbb3136741, 0x34b789677a15f906, 0x000000000000ef }, { 0x8984cc759b92628, 0x2e7b37d62b667c45, 0x9a3b58c74898a005, 0x893b6e2e72ecdd32, 0xce539b7ba9a418cb, 0x9a27807b691d8d70, 0x2603dcb2fb831488, 0xdae148fa0f2bf8a1, 0x00000000000036 } }, { { 0x25c2c2371bd054d, 0x18ffcf17351724a4, 0xec5603c87c9bc5db, 0xdb968345d4c1a09f, 0xbbfb79ba9697628f, 0xb57d05f124a2dfd8, 0x26f5b380ede6bd4e, 0xa4ca404b3ddaaada, 0x00000000000126 }, { 0x4d079e5956ff8423, 0xa0c1624e9c454ffe, 0x533a9b6ea1920384, 0xbc39c4b5c8c12ff9, 0xe1ed4213f90b9ecc, 0xe110637514d2a55c, 0x9b942f900fa45051, 0xb575fdd106f04e0e, 0x00000000000085 }, { 0x3e1bce128d4da4, 0x6494d55e39750bcf, 0x89af2d3020b5edab, 0xe00b5d02f23164c9, 0xed2cadc478923f10, 0xcf301e6febffaf7d, 0x1292c2552b3897ba, 0x790427ce62a99103, 0x000000000001b0 } }, { { 0xe4db49d117a46ebb, 0x6c323a811a4b0e56, 0xb6e2294e8e3add69, 0x2c5066279aae3863, 0xb0fb1a5ed228a34a, 0x525a5287b11f376b, 0x8b29cd8704ee9ca7, 0x2352ee89fbfd2259, 0x000000000001f1 }, { 0xf71f87970a52128c, 0x7085b5d2725cb290, 0x49a4a5b988a0e25, 0x124ea52c716c62c6, 0xfcf417931919f8cb, 0x819acc6d29aa35fd, 0xdbbf7781d054325f, 0x2860f19660ec81f8, 0x000000000000c1 }, { 0xc8b05be4018baf12, 0x7ed0fba95193295a, 0x5d72aecde7a64c29, 0x88b19be0c7e00509, 0x4acf3771de7b14f6, 0xa2ff90aace1c7cce, 0x8a3022e614e19cf9, 0x7b96051582ec14df, 0x0000000000004c } }, { { 0x8554f4c8a24eab4, 0x5917d5f8439cde9e, 0xf50f29eab1e926f1, 0xad89d0718723a9d5, 0x499dddc798e984da, 0xa820ff2b58d80155, 0x88ff3502379a0561, 0xd6e58c6f972cb5e1, 0x000000000001b1 }, { 0x1a255a9247db92db, 0x638c5418c2778115, 0xa5adb80943ebdd2, 0x5d1758fd67461e49, 0x6514ca9c327f22d2, 0x665b9ceb843d1c65, 0xa2c86253b31dccbf, 0x3eacd2f3ee7bf6f8, 0x00000000000109 }, { 0xdc4803145a74f322, 0xee4890b1e5fc3e75, 0x93c2dce78bbe6d72, 0x1c078133a60a5b31, 0x80561fbf2b465b0f, 0x7513e37a04c1bfcf, 0x42263c6dba304077, 0x6e84f293bf8277f9, 0x00000000000104 } }, { { 0x684d2c8aa9d0753d, 0x9fa8f614f39e17a, 0x341ac162ecf143a5, 0x724eb68d9817a0d1, 0x6fcd70fca16c1a7a, 0x29849fa37a089811, 0xdf734992d76f754a, 0xa2345510360d0223, 0x0000000000015c }, { 0xe62f949965740d68, 0x71cc493409e23afe, 0xbe0b994670f125e6, 0x40884abe2f3b0b14, 0x884bdcb10d33346a, 0xf9be79965839ecf6, 0xd5184b3174ff579, 0x7bb4175b94788a0f, 0x00000000000142 }, { 0x3ad361cfad0f04e5, 0xbba9783ca28b3a6a, 0x5056e803d2e6d4f8, 0x97cf686ff3cbc88a, 0x3d1f0232dedc428b, 0xbd9c8d6b7195e096, 0xbefd8a5625c2764b, 0xf53de23674c873e1, 0x00000000000022 } }, { { 0xe593c50431faf1ed, 0xb0341cba40752da1, 0x293f8375d8da1cad, 0x7399b8e3638ce46c, 0x9192256d884165ca, 0xd38f74bb6279e9cf, 0x8ec7e25429d9f43b, 0xf2e1823890a86b90, 0x00000000000150 }, { 0xb027c6eb4b9a1010, 0x11c25504673f4f12, 0x7900a9c570190eb3, 0xaf79a90c0f4fc05, 0x76ffdb2255e634d5, 0x4123b134543b60d7, 0x844a660d1650dd07, 0x3eaa47ee572c488f, 0x00000000000104 }, { 0xb57bab97be16cc3b, 0x801405d716a40fb, 0x72e2dda7e34a432f, 0x4fcdc9cfb46650d, 0xe9db348ea8b41289, 0xf68e07be6ccbf82c, 0x1280dbf2f36f0975, 0xbb1169704b734106, 0x000000000001b3 } }, { { 0xaf12f0aec5663058, 0x24ba44b7076cc7f3, 0x155dfc3628381388, 0x882a9bab456f2f1f, 0xa22ac4741b4e6e02, 0x7353363ee709b5dc, 0xb78f2487d9053c89, 0xbdefb0467bc0a076, 0x00000000000027 }, { 0xb530e50747a166c, 0x2211ebc8a7418450, 0xea14a9316a34ee8e, 0xb60f9f734bfad0f7, 0x2ba74e5ca85f4a1e, 0xbcd432e8d7dfc9b2, 0xaf0c1fbf8dabcd0b, 0x276127cf1dfabed0, 0x00000000000170 }, { 0x92b1ab1fef3b824, 0x9d02987c4436823c, 0x501eba7088637e44, 0xdd1229a5782d1dc7, 0x37f0c9efc28e37b1, 0x4bacd79864e9b3c2, 0x9cb0f635ee450cff, 0xab9dfa8165cf8a51, 0x00000000000079 } }, { { 0xd4a50bd9139e2575, 0xf0b0b459b5c990a4, 0x50145591a2a8f2ef, 0x25e76e754c37c56b, 0xdc750b4fb5f5040b, 0x53d0ee60084b2843, 0xd62b9368e5fdfb92, 0xd2e4c00a0d520d72, 0x000000000001f8 }, { 0x4f5078c7b07d96ab, 0xa86edbc7a0c202b8, 0x34c16fc47d1aae8a, 0x32abcdadfea18fd4, 0x72787311bb036c8e, 0x7a61adaee971910d, 0x4fe4f55e9fb418e1, 0xa6aa3ca69e882f5, 0x000000000001f5 }, { 0x489b1527b425692b, 0xaf1861edd94d5a09, 0xc00c76f3a4178c, 0x9faeb906c013c45d, 0x9df4ace57e38025a, 0xbd0e0e8d60afdfc4, 0x2c9c9fdf8fc44e2e, 0xe29e1fdaa161338f, 0x0000000000008d } }, { { 0xb6ec1d81dc7b3957, 0x568c5bb2b1878468, 0xe17d6fe61e045bd6, 0xd1f4d88503986ce7, 0xd3cde19cf329240d, 0xb9840fe5393203d2, 0x58f350e3ae71ce67, 0xa776e47961e95999, 0x000000000000f2 }, { 0xa805397429798e9a, 0xd62a32e3912be923, 0x1ccce5832f2fd484, 0xc1c73c1704fce920, 0x3307114a491bbe15, 0x9b0b809128aeeea7, 0x960e41a734562c1b, 0xd109e06ba24eb639, 0x00000000000161 }, { 0xe4e38f628b439556, 0xc22a11a9063ab910, 0x2428cc4ca3daa761, 0x95ef7ad7a2cba073, 0x8d5d70d30be86be7, 0x8f052c790360a69, 0x28a94b568a4d8d0e, 0x369b7cdad51d779b, 0x0000000000016c } }, { { 0x58e6439d4c2ad117, 0x655d8e32e3a45bad, 0xf380b7c161f3505c, 0x801daa99f5cba69a, 0x5c4cb9009e524a33, 0xfd002b78ba2164f, 0xbec5b418794bbb06, 0x165330a9659e26b1, 0x000000000000ee }, { 0x9a95da2aaa7a54d3, 0xa631c3ecae8bc79a, 0x5e8f63fca4364316, 0xc11c9d87c016bce7, 0xff5f6dcc3d55c62e, 0x3f04f5f1cf7271f2, 0x5c8f56d06651de37, 0xa91fd0f0349d0d07, 0x00000000000164 }, { 0xeebb7574558b501e, 0xf150265a9a9fe05c, 0x12410e8b2bab0f38, 0x93737838c6a8ea48, 0x9184581ff2be8f90, 0xe91c74cfbfa4374b, 0x1a7059ffb3a0536d, 0xc319f3d89cd5421d, 0x0000000000001b } }, { { 0xfb76a3a19eb82f16, 0x92ccd6d4bd0c5cda, 0x9ec6c35d12b1059e, 0x911296f0a4d72ca1, 0xc435dde174564c1b, 0xdeaa1ae50d622a04, 0x7eb617bfa78176c5, 0x53bb95e24ca49dd2, 0x0000000000004d }, { 0x68a234e2b7ef45a4, 0xe2af9ab74a1072aa, 0xffcf5fbc3742e31b, 0xc2f83701264f273d, 0x007bb37b3eab6d, 0x9530b426d09a4af2, 0x416fe4d39e895a88, 0x251ed540068d55d1, 0x00000000000014 }, { 0xbfaf4ad7aca6cbf, 0x8a270faf85ef906b, 0xd8a4c6d09d483ef8, 0x29c318a5757d1a0e, 0x81ee2a175a2ef48, 0xf464f9998a0a02b0, 0x61e7ae96f5384a4d, 0x822d1b42e479c827, 0x00000000000150 } }, { { 0xb258a74d4e0be0d6, 0x2f78cc8e23702119, 0x3baf1756d3543ed4, 0x2e78259fa4fc9ff4, 0x6079a636c7892ef8, 0x4d0c4c417409251c, 0x5f73a8a36b6753c2, 0x4d4cc381175a5cff, 0x0000000000000e }, { 0x9b8b469f6ed06f23, 0x9f95d0d5e8dd6323, 0x371ee88a36c1fcf, 0x4dea5cf8b89a8802, 0x898d6f47f0dfddc3, 0x382f698a1961aea6, 0x6af5347e83c4d96c, 0xc149257f46717926, 0x0000000000017b }, { 0x765a7a9717e05ad2, 0x19b389d2ee0bef3f, 0x274f01d42fab2a19, 0x6dea2b6bfad98920, 0x98002c68c277658d, 0xe22f40177b541eec, 0xf6e7ac6ac7b87f14, 0x17631c4c304bf8b5, 0x000000000000ba } }, { { 0x85f2f671f2cd735e, 0x720d44f60a77bdca, 0xfb0f13971b32fad1, 0x2e3b45ca74319476, 0x1567fd2da9ca8e0d, 0xe6b01641156898ad, 0x55014b930dfef099, 0x8d5690dd87c3ebec, 0x00000000000164 }, { 0x7349b63e913f482d, 0x8ebee32f513d1999, 0xbefc96542c2cac2a, 0x68cca7a89a31c29f, 0xf3ec2c025931d67e, 0x9047b26603e2ee5e, 0xef648f1e3acb4225, 0x89afc070187f736a, 0x00000000000061 }, { 0xee9f123138bcd251, 0xdbed13221fca30f2, 0x6c740947e905646b, 0x4350b1f20ad1ad1, 0x6ab5954669c280c2, 0xce6e58eda38b2f11, 0x1710310c6824aea7, 0xe41298ec5ef79bb8, 0x00000000000101 } }, { { 0xe9c8b336d403747b, 0x21b037eaa0c04317, 0x31563f1ead9a7ec3, 0xce6eec81ba1334f3, 0x905dc26827f6e9c, 0xe99750b1bc41636a, 0x2656eef1aaaff5de, 0xbf5cf37d239008af, 0x00000000000113 }, { 0xeda8b35ee906b57c, 0xa80d906530f6eca7, 0x8e665ced0515ea97, 0xc5ea123c18ad6feb, 0x50db8cc742237fa2, 0xb3a719ef8fb78c8e, 0x36129eb886c4bc78, 0x36f0a2f3d733a146, 0x0000000000018d }, { 0x54873b97cc30578a, 0x6f5a293068ef9d13, 0xf47c0402c0b11f82, 0xc208bc616f219ddc, 0x1b965fe20faeff7, 0xb0ed316bde6c843b, 0x17c48b8bd83f0359, 0x9e5b9820bac870e8, 0x000000000000e2 } }, { { 0xead6ae18888de2a7, 0x8764effa2367ce72, 0x8432197065eb15f6, 0x3aa89ae60d3da11a, 0xd5ec5c4551f11de6, 0x6e17b4a4a14c1c53, 0x9691d6f938cf4357, 0x3c41b0ded26ec11a, 0x00000000000089 }, { 0x4806aa775f42b3ac, 0xd2a8ad1b3fb3fcd8, 0x757b4b8a248b7559, 0x4ff82f9a199ed26b, 0x414a076f257930fd, 0xc080f84db1b04d57, 0x2bda027914b0112b, 0xb3dbbea40ae0bbdb, 0x0000000000017d }, { 0x93fa719456ec93e0, 0x1efd720eefa532e9, 0xf524188707cac16e, 0x7b876252efdc97cd, 0x639ad33f258e5ed0, 0xe5f5557c715bded8, 0x9b39bba18d60d7a5, 0x5d7dd6905ef33532, 0x000000000000f8 } } }, { { { 0x82f40b992b61db53, 0xe22e9c8c3560e4f7, 0xcee9228d1860aee2, 0x437f957bb51eb53d, 0xdbccbf1f2d252970, 0x7097a4116867506e, 0xdf8374f2a2662642, 0x6eeb7eed09b006ed, 0x000000000001b8 }, { 0xa9bcb33282d69efc, 0xc04b25b2db974928, 0x96339d965f6bad91, 0xaf479423673047e8, 0x300d6c94f91d04ef, 0xfa7cb0bfd256445, 0x6df4844f11f0f54b, 0xb8e749323efbc19a, 0x000000000000c8 }, { 0xdb4760e411d84fb5, 0xfeeeae8389fc2c72, 0x33f0c281037c33db, 0x6cd6b2d05eea5448, 0xd65a1b23dd6a161, 0x7b4ea3731f724f1, 0xfea025d87c21ee3d, 0x2d85735dc8d7d6c2, 0x000000000001df } }, { { 0x5dccb62bb7703259, 0x8fce44dddc288655, 0x7752bfa24c3237c2, 0x20397d3147a35264, 0xa52f6b0b830ee7c, 0x33515d1fd003701c, 0x7104b7701db348e2, 0x76c3df6c82abab20, 0x0000000000000e }, { 0x83db49c935d225c8, 0xd6d2d8e83a5cfb2e, 0x6949671a9515329c, 0xb5abff3107f3d42b, 0x7db2336b5befc460, 0x1272df8b2fd79340, 0xe8ccfed7aac7f9b9, 0x4849837fb49a183f, 0x0000000000010e }, { 0x38bc7ac7bcbff85a, 0x1c33921b5fe5e74, 0x7d3787c4c822a22a, 0x3b524649d2369691, 0x444925e21f3fd1ec, 0x5e1555c96d2affc1, 0xf15a4b188ba5e79e, 0xd9b0746192e2c4d, 0x00000000000190 } }, { { 0xb6b0eca83b0ae329, 0x65b405ad0a02a856, 0x10bb7ce6742e730, 0x33078585abf6e350, 0xb17e1388f18374b1, 0x8eb301d44057c59d, 0xfaac67d9fceb1c60, 0x88fe2f2130d89773, 0x00000000000149 }, { 0x1e4ed8a532b9a42c, 0xac13c48a2f6af60e, 0x581e255f0dec55b8, 0x1799f01b60d581b4, 0x95249042ad5f5a92, 0x18d9bb34501ba7f3, 0x20ae4b4ceae273c1, 0x9472691d1bd72023, 0x0000000000013d }, { 0xd4c02da77715ea4, 0x69d49da6627a37b9, 0xa1f461ae0f9ebccb, 0x780e269a70607b58, 0xf0bc139f4b4e18c6, 0xe6a8e86417e5468e, 0x3dc083f939a35f2b, 0xb06cd4046b3171ca, 0x00000000000190 } }, { { 0xd96b894288b782a1, 0xcd9141e0efa76a95, 0x6e8ff26eb3ab407f, 0x4a57c7b2fcaf37e9, 0x673c18a24f060dd9, 0x59b40917ffbc98d3, 0x722fc716c8a4ca42, 0x58a986560dc12ac7, 0x00000000000080 }, { 0xc474f7e8c641755a, 0x138a47dff4a158c3, 0x37c3ce33129615f7, 0xd0a1bc0def4af4d3, 0xf167a34b5518a548, 0xcc6a93e67b4afaee, 0xc1afec5b4e993fd2, 0x2e97ba0835f4e787, 0x00000000000019 }, { 0xdc07586a3936f9a3, 0xd9092125bb2bcd78, 0x8d7be2448d20aa65, 0x18327bc37dd879fe, 0x6a94501864c3bd74, 0xcad3c42395d5032a, 0xe4465ee81ef0b3b3, 0xef15e3211425dca1, 0x00000000000107 } }, { { 0xf13f643c5f38ca08, 0x76b9a65d91435a5d, 0x99bf3d32df2af4b8, 0x6f105d721849c3d1, 0xd33e2d4017cde796, 0x4860374fa8ae6fcc, 0x695935a36d2b1821, 0xf4f7a830ee441fc1, 0x000000000000c1 }, { 0x1ed6cd32336a8d33, 0x41b71b7d255422d5, 0x448ea5c94f884938, 0xefc7e06f33978580, 0xe1147a5672b3dd, 0xbba0cc9dde59d203, 0xbda754a3705fe975, 0xfc533492806e316b, 0x00000000000171 }, { 0x735649c9b32bb9f1, 0xa0de90c9d4a933f0, 0x6b6344f0e3f1b889, 0xbe211aec37c01f43, 0xde5cdc8aa2bbcb6f, 0xb5ed7c9f1f204405, 0x1be6c326df9a580f, 0x405430093b3ee9ff, 0x00000000000036 } }, { { 0xdefa57fb154e0c71, 0x1bf9fead2b5aeaff, 0x7748e0f1de990555, 0x6b1f6d2b193385ea, 0x75f47a24ff34bb18, 0xa05f5bc94b1c8c4e, 0xe12ca902f9b0b5a8, 0x3ac901e981e108b9, 0x0000000000013f }, { 0x4a6a0ee4230696c3, 0x35eb59f2d435d420, 0xec8560cde580ea59, 0x51bbab6905be5965, 0xb9c6d2989237f741, 0x9decaeac50ce59af, 0x52c4dea7b51d75a5, 0xaffdbe6e08ed45ec, 0x00000000000114 }, { 0x274b37e6a6823751, 0x7d488d6c98785644, 0x9e4354fb2cc241de, 0x7d2f5ac7afa2abed, 0xe6f6b5ed539b07e8, 0xad85d68c3fca314e, 0x7f8fae4d7ea2f5a6, 0xe42c061a0b84788f, 0x000000000001dd } }, { { 0xc532c3c16fa1955f, 0x62888ec280565188, 0x659d722517133d28, 0xd587a27adbf895c2, 0xee6cb5cf80a955e4, 0x355bf65acba7f673, 0x7405c49d430423ae, 0x171c1642532f1f24, 0x00000000000059 }, { 0x51d78e2cfdc2dc2a, 0x66411f6f3899e6be, 0x4825213e5cdab34c, 0x4f50fdbee32b48b8, 0xe64e5ba7a2a358d0, 0x9ed6673a8e4481da, 0x92d13d035cf2f7fe, 0x6ae7210074f60ef6, 0x00000000000107 }, { 0xa59df45d04572f6f, 0x706fe0de5d12690e, 0xb96a5a17ea9a99e4, 0x817627e9b4579d10, 0x2c3d26101eda2232, 0xd78a7abf1270e182, 0xa35970769e75b423, 0x8db05048ac2009d1, 0x0000000000016f } }, { { 0xa2a310083d3e90e9, 0xf837f51ab848d9ac, 0x6034553f93b300ad, 0x87beba74bd236cf1, 0x6790c33a6853c349, 0x4ae936e010ee125e, 0x6f20cedc00583b0, 0x126ebb6276625fbe, 0x00000000000078 }, { 0xc5aa51ea3ba30ca5, 0xe9e6f5a347cbfc1d, 0x5449612deb4accb1, 0x96d639f754c91036, 0x5f650b521422e649, 0xda1f69edef2c369b, 0xfd6c2f5aee250c10, 0x53fc7ce2a69ca674, 0x000000000001b4 }, { 0xe438e6dcf7448b03, 0x92629c5428e7ec59, 0x7e1027e123255268, 0x2198b38067748e9c, 0xdfb95a2a541d191c, 0x72aab94c5df37557, 0x88d5467be0bf1b22, 0xd04edf34c0a0ed25, 0x000000000001b9 } }, { { 0x69e1d63c4588b893, 0x8e78305626d8fb80, 0x7c4bb4f95efc0833, 0x3d917d0ce35c69b8, 0xa538177680cdca20, 0x65162f7c14e4a730, 0xf2c6084e3b20684c, 0x7b16f40ca457246b, 0x00000000000066 }, { 0xeeb014da802426ff, 0xef82b6ec96db44b1, 0xa2932bd4e7949891, 0xe332f6bf438da812, 0x4c06545ddb5b49d5, 0xf8230f701605e6dc, 0xdec79d25b3705cc0, 0x5c50fa90a38c7ddf, 0x000000000000a1 }, { 0x1b012938ae7d3a90, 0xee71ef5a4feab920, 0xec82a498d22fa8f8, 0xca2f41dbb01e9154, 0x1afa40ce0b9e88bb, 0xa511e15f41b4f984, 0xb1ad5425715f4972, 0xfd5d1383a27c9a5d, 0x000000000001cf } }, { { 0x5eb1f4c74da4ef5c, 0xebbf4153208e6864, 0x58f2b6326800f4ec, 0x669290469c638190, 0x7d56f60c59ba1b7f, 0x75e74ee6dc398b0, 0xf47afd0e97b4144f, 0x9aaf40d7a2c470e, 0x00000000000105 }, { 0xc1af745e65613610, 0xe185015a0ef71f73, 0x50639e16b173a91e, 0xa4ad142fb852db10, 0x88ee4fedb1d43881, 0xc874dc197a062127, 0x90c5748bbd9b8129, 0xa9a8b75a4a838c87, 0x000000000000e3 }, { 0xacd93b13a48f62d2, 0xb2e53b90653da5c4, 0xc0991fd9a5d624e3, 0x93f9f98e10a5f890, 0x70a7922447475fff, 0x845a6efe630bd2ad, 0x1782c540b8446e60, 0xb6e165d3e4dde082, 0x000000000001f9 } }, { { 0x6687619d28b29879, 0x8983f4f9135c537, 0xb5214b11952878b5, 0xb76bf11dc227a6b0, 0x96f2a28d8986abb3, 0xedb8b50b2b6988b, 0xa38753025cc172c6, 0x7559dc1d92dada0b, 0x00000000000143 }, { 0x9a0cc3f536437657, 0xf01c943e597b7b8d, 0x46b16d4c5925b991, 0xd3ff4c0c71c2df16, 0x9f1e07cba314397d, 0x6891c095be50b8f5, 0xbf69712929bb38cd, 0xe96d6b0521f89700, 0x00000000000122 }, { 0xbd21555656257c3f, 0x81008bd356e0cc37, 0x8529917a89f0652d, 0xb8cb4c1e630fd4f9, 0x5a33194c0f78ab44, 0x814571544fe1a48, 0x10c5e06a01480f44, 0xc36508a9239ff2b5, 0x00000000000049 } }, { { 0xf3642d30ef018551, 0xb119a77b03b0e4f1, 0x865438efc5d8286e, 0xf02233f34e31cc6, 0xcc2fe0b14cfde3dc, 0xb68af5d0924dd94d, 0x93dbc0ddfdc0d50b, 0xf4c6645aaf8f4ef3, 0x00000000000190 }, { 0xb3745776c289ca4a, 0xeac215d39af326a9, 0xae57b19448a4a294, 0x95d3bd0d16335604, 0x7cfd65e1c3ff17cc, 0x2a27ebb21660521d, 0xa2d4427ec020c5fe, 0x38cd40f716983864, 0x0000000000006c }, { 0xb7ced268518f195a, 0x4693d17209792cb4, 0x763220bebadf6db6, 0x9045b85ee47997bb, 0x9977703a91bea7c3, 0x5da64a5f958d6034, 0x9c0689de9fa228af, 0x8bdf215d16f5a8b3, 0x000000000001c8 } }, { { 0x6126ccd9a80c7978, 0xce83c6308aed31a4, 0xa8086b94ec115f3e, 0xbefaf5065b8e6510, 0x68ca79e3bc47994b, 0x2de63dae4a34ebfa, 0xcb72cbc28f8c2ab6, 0xb1c6dd24a7906235, 0x000000000001f6 }, { 0x988af6cb5a9f94c3, 0x171648318dd23f41, 0xbbad48a0db222d59, 0xc267e4d2562d89f1, 0xacce069ebe557c2e, 0xd6d331ed2a2ca92d, 0x22f5a55e6903fd0a, 0x55a3b6bbc5b8f7a1, 0x00000000000186 }, { 0xb5bd9f4a4fa5a080, 0x2bf00b01370d450e, 0x6c14f2f1971b6b88, 0x854ff4a28e55b2f4, 0x879dada6397cc721, 0x1a9409b94183aaf5, 0x3769912a5dbe0b00, 0xf4aa4134ff71057e, 0x000000000001ef } }, { { 0x1aa9a5ea70e577f9, 0x3dc595c78647d3ce, 0xd28fe974b21f371f, 0x11f23ccb4f1ac604, 0x61adac84300fd73e, 0xbb33d2cec53fd063, 0x757abf20550aead9, 0x21c72fe01a3fbf1a, 0x000000000001c0 }, { 0xe57fc7f665642ee1, 0x4abd7cc24ff6b300, 0x8fed7fdf7a8ed910, 0x72ae1cb37c67b9ea, 0xd124ea090ab0ae68, 0x315618d0f5356848, 0x44aea38d83219e47, 0x731405219e03be31, 0x0000000000007d }, { 0xfcdb2166f6a41ac4, 0x74c69332d530c59, 0xc1be6ae1820b1c42, 0xf38bccede94f67a5, 0xbf5e0c6feab6724f, 0xbb3ef6ba8ef06517, 0xa37df9ae3181f56b, 0x99f09b435fa99879, 0x00000000000161 } }, { { 0x31f9c92bd5398bc0, 0x3c11115cab47ffaf, 0x9684107d650eadee, 0xe5d75181067d5904, 0xb759805c9ddb5959, 0x6948959d23a946ed, 0x544bab1aeb6e3d69, 0x4ec29d4acf59e667, 0x00000000000005 }, { 0x60771294106204e6, 0x8a15c21a5e675251, 0x71639aec99432168, 0x49c6fb503c9750f5, 0xdb85873fa7a8fbaf, 0x43921e3dc8bb97b3, 0xd31b2e72ff91fc03, 0x336631fa29b33622, 0x00000000000014 }, { 0xb4837a7076697d10, 0x300d0b7fbf1ea237, 0xca157c54206001dc, 0x7a082d6e780f1b26, 0xd024c02d6ad5c739, 0x964bf4132daf90af, 0xa288c647ad59e0fa, 0x1ec4fb418c1f37b6, 0x00000000000069 } } }, { { { 0x3231de36e88421c6, 0xbca6ca51ff816e4, 0x1e7cd25ef8cfc60d, 0x8d9aec948bef4ef7, 0x55ac70aa90f60405, 0x29bca383b5b170fa, 0x1678f74fd8d60a16, 0xb0283db05679e65e, 0x000000000001f5 }, { 0x37738cebffdd64c, 0xc952805218707e96, 0x72852c705804cee0, 0x20eed7fcc8b80c91, 0xbe9b438eb297b1cd, 0xe4027a77a4b139f3, 0xd71d34b8b370c44b, 0x8ddd1ca6ab2f582d, 0x00000000000056 }, { 0x76c8e540cbe1d142, 0x98b729d281893d29, 0x97ef33aa20a922c1, 0xb1d558c44b6bfc64, 0x1f81d2d151f186f4, 0xab06891f17b60f28, 0xe9c86e22366c7f50, 0x3ff97bfcc78d82a5, 0x000000000001cd } }, { { 0x47c6ff5b56ce4abc, 0x90864ff55acc3558, 0x8c0234b816eae1cb, 0x17cc8f6a2d18a500, 0x95dc2b4a0e00838, 0xbc609952e62e11a, 0xd8ef94d49527c0af, 0xbd7be5d206cb3e15, 0x000000000001f0 }, { 0x30a441bbe2db03a4, 0x8a78d223ceaf1664, 0xa9fd93ba2fbe97eb, 0xd32cbd80f64ef770, 0xd1e2f18631744346, 0x387a308e1d121ebd, 0x540aec6e880678c3, 0x548380241b1191dc, 0x00000000000190 }, { 0x80dfbb5b5dedbe28, 0x8fd753d8427eae83, 0xe26d84af51ac7efc, 0xb346bd72a3569fc3, 0x9183f4436ccf88a4, 0xce0e722e096162af, 0x33d9926cc69126bb, 0x9ce4743e0500af21, 0x0000000000011e } }, { { 0xc01fb913496062b6, 0x433b15897b76be21, 0x5a3ceab95fffcd98, 0xd3a49cf46122e89a, 0x24fc316fbe98dd0e, 0xd62624e76eb2127a, 0xe7a9e7f780f08cf, 0xdd9d3432bca9b4a7, 0x0000000000017c }, { 0x937ff6a5cdacd6eb, 0xaf105e2b42fa6175, 0xe91b6688e86fb09c, 0x1778e6c1e2461633, 0x32805af2871a0247, 0xdaad22985f83d81f, 0x467440785580369d, 0x8104d4e9bb86fc92, 0x0000000000013a }, { 0x22f8a313b4605f54, 0xc89a099703872ef3, 0x785889d30cd19ba4, 0xd841194cf9a91de9, 0x4e27af0de95146af, 0xbfe086db7ad3fe05, 0xf13aea7cbae1b040, 0x43c5fd4e27dd9319, 0x0000000000003e } }, { { 0xa7782565d4dcac58, 0x88a765154ed48046, 0x6efaba0b99da3181, 0x18a461023e68bdb8, 0x57a757974ea9e8e7, 0xbe9445145361d95d, 0x7c34c5d5ecd96f4, 0xc4fa051bc9d35b26, 0x00000000000173 }, { 0xfd024331db55ce93, 0x733f08ead10470eb, 0x70139e486373cb6c, 0xe31afe4883848cfa, 0x6f7dc64df2c0dac3, 0x681afe8df5d5fe84, 0x920beb6037218cbe, 0x9d46241ffe4e2e, 0x00000000000167 }, { 0xae3ad3b47227d7de, 0x14397ace80fa5937, 0xb02ea1703f061c14, 0x21e8e42ffe8b3efd, 0x49d7082aad0de109, 0x5de41783ca3bdf37, 0xaca21dbfde2ccb8e, 0x87aa660090725869, 0x000000000000f2 } }, { { 0xbf148f8ed2d803f0, 0x1a9de5a767e93612, 0xfeaddf1bb684dfdb, 0x67573a32a7cd69bf, 0x492b004855c8b469, 0xd43c5f00408a2775, 0xdd64cad685843489, 0xb5883715a63cf0a4, 0x00000000000035 }, { 0x6cb0066e05a19c07, 0xffa3010f83f23937, 0x4f8b686555fd3708, 0xcdc8b55b1e9e40, 0xcfd4c5bc97157544, 0x3ce08cc123e56f87, 0x633101108932a790, 0x9b2ba17fded53013, 0x000000000001cb }, { 0xb6a9bead6f3e641b, 0x3dd8fab098e23438, 0x731ccf1a2c487313, 0xa7e5d7d558b7bef8, 0xc8fa37eb5a06fd12, 0x355e87c297bf04d0, 0x7aea821e0b01891b, 0x32de3e1debe710cc, 0x000000000000cb } }, { { 0x91b3cb666f2a4ae6, 0x26ecafd5cfadf9c2, 0xf9d528d052a4212a, 0x5e53502756d21ed1, 0xf340acf59b543195, 0xa848f8a0945625c9, 0x78e2e6ee4ca4aabc, 0x83f4e6e3cb0639c8, 0x00000000000182 }, { 0x7b511d4a8badb6d7, 0x8039ea3f6e2c6ec5, 0xc99bbfd8f725224c, 0x302ecca1ae3ccd7, 0xe8674c25c9b62bde, 0xd3c13aa9aa9d50a3, 0xbadf6ff1c536b80, 0x36aae2bdb90c1e30, 0x00000000000040 }, { 0x139b2c95cd36cc31, 0xc574d110d0e2e085, 0xd4c150c01d156f15, 0x8520ded03c8b31e2, 0x38d4c526f117b287, 0x5e9e1fc970f6cfa1, 0x9e6f76b95fa9468, 0xe5df11aec5c32145, 0x00000000000012 } }, { { 0xef3a297bff15ceba, 0xd4b6ce00a72f57f4, 0xf38c8d4d1d329730, 0x3fecb8b9b1f62929, 0x178ba912547fa742, 0x63e6a1d186a18a8a, 0x580b39651f42280, 0x6c4375a10cc11dd7, 0x000000000001ec }, { 0xfab859c28bf5766c, 0x6ce5f15f7f540050, 0x659a99b23e6ce4ef, 0xa50af87a11cf8ba1, 0x4a3997a6a7e4d283, 0xa5a988e53c2d6f2e, 0x77cc3c9d2ac9a47c, 0x69453a60f6ca6e5e, 0x00000000000185 }, { 0xc5edb62731044eb8, 0xc5afb3faa0820b0c, 0xf0c2a56bd07701ae, 0x96c740495c772131, 0x3d06bcf4a125845c, 0x3e8c73a336b8ad6b, 0x27c98965a85589e7, 0xaca80341a8ced61f, 0x000000000000d3 } }, { { 0x8be95bc51ec19c7c, 0x5e4fe0e663c9655a, 0x3a5c7ceef4c34bba, 0x4cc502321a062f57, 0xffde0a495b82a35b, 0x93ae50b0d08b5115, 0xd9a29d050c6638b5, 0x8a6a7827b71cd2f5, 0x0000000000012e }, { 0xf6a2d89cb3e141f6, 0xe435f97f7a283edb, 0xce5282b698a48ff9, 0xba4d80d36cad1999, 0xc32b5d197357c0d8, 0xa450ce76ca9ea8fc, 0x390e286ef83bab82, 0x2cc4d4583a99ca0f, 0x00000000000150 }, { 0xc8e2b0663901570a, 0x58014bfc172dbca5, 0x4442e3133e1ea652, 0x4b9b8b89d620aed7, 0x75adebb916610e99, 0x2109e448e04d911, 0xc54d393394d7d525, 0xf3644b96a794e7f9, 0x00000000000050 } }, { { 0xbceef8a907350a93, 0x755fe0c738bca8bc, 0x274dba5c865e02b4, 0xb0ffb1b2e3e8e210, 0x91044f76dfd9bdfa, 0xd7bdbe79f850011d, 0x965efa320e66c402, 0x85f2e14443cf7cf5, 0x000000000001d1 }, { 0x48c7a8bb817e6f0b, 0xd5c1e02cf0cfebf0, 0x8336d7fd237db974, 0xed9702717ec662eb, 0xf9e057affe52a73, 0xdf8482ce4f0471a8, 0x8dabc28aa0f492b6, 0x80a072a324179853, 0x000000000001ae }, { 0x1cbb7b7779b73b2e, 0x6dce15ac5ddd081b, 0xf43f08d10be6518e, 0x6dffabba812ee591, 0x66fbdd87fd8337ca, 0x4fc9a218061785a0, 0xe70c8ec23e4741e2, 0xa6e52d47c9530e6b, 0x000000000001f8 } }, { { 0xbaa5242b7d208a2c, 0x3c3dcc3e4ab1b18a, 0x8ac91e0876ada1c4, 0xc35da930c0b6f379, 0x8ee3a9d0ee2427a6, 0xbf7622ef4f716912, 0xf8e756c5204ad331, 0x6237981b397a279e, 0x000000000001d3 }, { 0xf3458ed9560578f8, 0x67c87e4350d92423, 0x2262a22cb5b37de1, 0x9dd986b69da86130, 0x5a15bcb7b24ddc52, 0xbf3245a9c7579526, 0xbb548af95e674e7, 0xda54dab54baaf29, 0x0000000000014b }, { 0x897bd654b281c7bb, 0xfaf8d8f03d814665, 0xd50c3c5b2169b5b1, 0x3e4ef6b3faa98daf, 0x3d5bcff54782dbb0, 0xc7242bce11b60258, 0x678d22e3d6db29a1, 0x880a1654b4555ced, 0x000000000000ae } }, { { 0x81e2fcc325c7897d, 0x5e59fb4cc1371529, 0xda41ea9dd7041db6, 0xc07d5224b055e17d, 0x279132e58b8cea78, 0xd6697bf847a91c80, 0x56152b7b49013346, 0x51144b23648f623b, 0x0000000000003c }, { 0xdb2c5312ce61af41, 0xcbbcca548cc0a254, 0xe9a99e22d48cea0c, 0xbf8a4bb6bb9db456, 0x3367ad8716de811, 0x983ffc6c8177d9b8, 0x2f0525b1441ed23b, 0x427c3c57483f7912, 0x000000000000d3 }, { 0x39c2efe500ffcc2d, 0x5e5a5a70969ce642, 0x788d4875f721089e, 0xe88d9fc1e0439434, 0xe892e0ba0d407f2f, 0xa3089406a6e860a3, 0xc0109cc9034e4734, 0xd88089d95138f385, 0x00000000000133 } }, { { 0x7b2eef277fac15f7, 0xd12830ff41786a98, 0xd3028cc6bd2b9995, 0x8fb98fdf9dc1b7aa, 0x2cdcee8d44970d6e, 0x63972373f8a4ea6f, 0x9fda2008826649cb, 0x160e14794332b91c, 0x0000000000007b }, { 0xd7f40f43ec87e7ed, 0x13240347a9eba86, 0x207e178c5cb5d2e3, 0xc5c22863f7489eff, 0x5d1e7cad887f896, 0xe6e3ad889dcc15d1, 0x10c2afb9a0bb6cd6, 0x757d23cc1696f2c1, 0x00000000000109 }, { 0xbab2dd2474f2ef3f, 0xef3fb76ba6d26953, 0xc9e7c3d2a8f8c0e7, 0x84d15318e486f81, 0x4e6b0ba29289ea01, 0x2448945ad7afd09e, 0x2e7ed6fe06b7f317, 0xe0b824217cfd5ec4, 0x0000000000007c } }, { { 0xf5b708bf7647f835, 0xda9530c7e0299222, 0xa39aaa0cefe7765f, 0xdc550e09b090b517, 0xa4c5990d62537343, 0xc40dc0ff9e4a5a04, 0x1b88069909ac10f7, 0xc6953f60e0a3fa59, 0x000000000001f2 }, { 0xd3232a886fd3539c, 0x123d7b7373f9776c, 0xf756d0c63f59cae6, 0x532847bea1acc43d, 0xa690ba5e29b5d3f9, 0x89b71472757fedfb, 0x8613e330f9a5642b, 0xde2ac468a33c987, 0x00000000000077 }, { 0x879f0b9768478c81, 0xf762787c9ae17117, 0xfdcf47d694f577a6, 0xc4fe2db04c886121, 0x75312043d79c3e16, 0x21d0eb221c4514a, 0x5466673a43d0a3fa, 0x1c8d809d6ba49cc8, 0x00000000000075 } }, { { 0xf722617f5a46dce, 0xd560d20b832995d4, 0x81640e19f33d72e1, 0xd064b678d8381592, 0xb723e121286f99f8, 0x17975cd787a6d615, 0x2385ed9942cf98b5, 0xc79d5d96bd4ebca7, 0x000000000001ca }, { 0x9d0bbcafbd0a2679, 0x525f21f95034195, 0x52f8494a833cce3f, 0x754f611ea33fefd3, 0xe6739ad4366c68c9, 0xdf1ccd8f2d8e141b, 0xac47e92aa25dc7f2, 0xac07835f8a61dc4c, 0x000000000000db }, { 0x1a5a34377909c54, 0x57731d94f9312998, 0xf0fc3d04d8f64c47, 0xe9a82e6394d2b704, 0xec4e96423b701e73, 0x95c55ec3857b8014, 0x4ef1d6f0ca9dd9bd, 0x1930726e3ca929fd, 0x0000000000011e } }, { { 0x210bdd1726650dae, 0xbaff54d88855e062, 0x2af99c77d950391b, 0x597fc5be805f070, 0xf2b467741ad9a4db, 0x266439b0ca8d01c2, 0xdcc067b08bd9e9e7, 0x8dda95d5389a0eb4, 0x000000000001b3 }, { 0x440d595e7315223, 0x8a7e79e7ea64aaeb, 0x456cbb38626d64cc, 0x3e1041f66054ff6a, 0x74ba4927fd280c9d, 0x948b0db52d626b66, 0x9c1e1cc53fef10cb, 0xc5650bedd61876b9, 0x00000000000079 }, { 0x95dfe65b23e0bcff, 0x6350bc033c5bfc9f, 0x5817edaa4707c576, 0x7b6cf62334428aa6, 0x1ce691bd6271b11f, 0xfeb75ef45d592f98, 0xca625f27a9218045, 0xf77f7a482f3ae8cc, 0x00000000000004 } } }, { { { 0xc8086b7341e66c4a, 0x23ab0042f355e893, 0x60c14e6721c61d7e, 0x8f315e803f2442a3, 0xfa587bf61f493735, 0xd7077d084b606bec, 0x89881a7bf38343c3, 0xacd1ab02519ba6a, 0x000000000000d3 }, { 0x2484d6fae7f7b7c9, 0xbd35567ac5bca6a5, 0x90173d62d0419505, 0xdd6f206775386b18, 0x99943180409607d4, 0xb436b5b49b171db1, 0x38a8c02f672df6d9, 0x545a9450ac041f5b, 0x000000000000fe }, { 0x9b33384c61b8cff6, 0xbeaa8d81d356ca1e, 0x2bb17984c67d2264, 0xb12c781cfdc0a823, 0xb7eb6afedef0758c, 0x47041f56fd93009a, 0xd61064f3da491086, 0x97adea70d71d2b4, 0x00000000000170 } }, { { 0xa1171df0a8eb2c98, 0x79d08113203de8e0, 0x9117e6dfac23c0a9, 0xa0d4c978d47e77b3, 0x461cbaa12ff9982f, 0x366e79fdf60359a, 0x9f9628c0ef68cf5a, 0x6c78a1aa9aed6266, 0x00000000000141 }, { 0xdf9e4cb409d46dd3, 0xebb735eb927539e3, 0xc6fd591bb91cb5a, 0x2e482c036ae4227a, 0x4304fd25e1c1d81c, 0xe4ae469295699605, 0x294f9cac3a91c7ee, 0x832c89cbd1937f86, 0x00000000000171 }, { 0x336514acf097e333, 0xee751ed8cd04a62a, 0x69b0e7b5396858f6, 0x585e730ee41d2a52, 0xa30c474c029d725f, 0x83b5b41be3e11341, 0x8e1ffbc53d7c4bd7, 0x509924ee094ea312, 0x000000000000a6 } }, { { 0x22fafe367b85fd2c, 0xd3c75f38f11f381, 0xa5828f3ea92787ef, 0xd515b67a6700a19b, 0x6dd43878ae6c8cbf, 0xc8d193cd5e4f4a09, 0xfe930f22a9f86196, 0xe7d82e0c5a57e61c, 0x000000000000ca }, { 0xcc681afa3bf4aabf, 0x7b9543eab7813836, 0xfa31afc35068ad2, 0xdaed3e9d883d06e7, 0x5f06453d4c00700b, 0x516eb1748d011c99, 0xedc4dd8ce3174e6a, 0xee7758063b8d3fc5, 0x000000000001f8 }, { 0x236cd9068aec25da, 0x6165ac2f08370aa5, 0x1241ab581a2ae511, 0x20c810db8ae089cf, 0xc43591ff641c396, 0x3d1d8db50d21649a, 0x5b5522da212fa5ae, 0x41d74270b0f12923, 0x00000000000052 } }, { { 0xf9ba2fe95cb4ba13, 0x8a088d42972ada1e, 0x2321175daca2544d, 0x16b7b954e9432a79, 0xc69d2a890a107e27, 0x1901fc61044939e6, 0xce32fc08c8dd11ee, 0xdeae841f4c20da9f, 0x00000000000164 }, { 0x42f606607e39b06d, 0x20ed72533e2808d4, 0x871b3942cef86f6, 0xe9da846ec230c0af, 0xcd61756ad520f629, 0x5158b60c4cd54439, 0xaa981142a07be827, 0x351d66d43a1af55a, 0x000000000001a3 }, { 0xb8d7c458e46fcdc8, 0x3a02a8b4f63eab80, 0xbbbed2423e7d8ab2, 0x88b9ecfab259cbd6, 0xad54da113aa0f9f5, 0xe5d142dc62993b31, 0xb265f305304994e1, 0x38364d6c829fb6ba, 0x00000000000038 } }, { { 0x61cfdab8891dbedf, 0x6b36538d9feb28ed, 0x6778f144934444b5, 0xe538e18b400794d1, 0x1799191ba7fb1aa3, 0xa874c577afd9298f, 0xc3cda90486a0a85, 0x21218d4aecfb0a1f, 0x00000000000148 }, { 0x9ff0ffbed06cfa7, 0x63c149052ca08898, 0x7d04033dd7883617, 0xcce70ff0302af536, 0x318877b44c670cd5, 0x56e4594ace8af8e8, 0x14814a623b0f65e9, 0xd20134aea9979132, 0x000000000001b2 }, { 0xb8a41d6fb053056f, 0x4beb3cbfbead28b, 0xbf428c65564fea34, 0x9ddceb23e9640526, 0x90c0b2766dc5d681, 0x54a44de1f551f6ee, 0x302cceee2f5b998, 0x5fa78d01f7cde009, 0x00000000000089 } }, { { 0xcc2c10d9710d2e3d, 0x86d44d7d3243d640, 0xae4ce5937608765b, 0xee5ba263e3d0de18, 0x7d79a2e7cf58cb5e, 0x85ed1534258a9e89, 0x1f381a5a15d5feda, 0x10671a5de3992c6e, 0x000000000001d6 }, { 0x1daaefbabfedb47a, 0x6d36549518f98c4b, 0x93f50a93d8a265b9, 0x7156f73a1cf153c6, 0xba9924be07a5fc24, 0x993fa70b8b229b59, 0xdcecc88dc08d70ff, 0x517fc618b5cffe7, 0x0000000000015b }, { 0x8114cee80bd4abb1, 0x4040d11e3fa342eb, 0xf8b468736f0ccb1c, 0xa66d9ad79a618b6d, 0xe3d9fffcb1e25813, 0x4ef4158707013eba, 0xabf3d493bc2419b7, 0x64accf34f26e2a3c, 0x00000000000180 } }, { { 0xffe6dcd178ed863a, 0xbf0fcb00805f41e9, 0x238f25f2e0bbe3cc, 0xe36f366e46203f31, 0x25a5e37909996849, 0x5dcd9937dcf3bf00, 0x17f6837ee89e2935, 0x309fd0aa2b75faba, 0x000000000001e2 }, { 0xc7f70f14fc21a4fa, 0xeb6c4c45d902234d, 0x436cea8f96691bae, 0xd1d4a9a8a196efa5, 0xa6b47bbdbac8e21a, 0x15c6ab788be50a09, 0xf82e4b3b6b1d7735, 0xdd6e78db984b07a2, 0x0000000000018d }, { 0x7c2a4679eb639226, 0xe4f1210b137001ea, 0x2853b3a1f646153b, 0x1039623a1fa413ee, 0x284a1ad4f5b5679b, 0x931912d40d14325e, 0xbbcec17ebef7d52b, 0x8905bb6bd303279c, 0x000000000000f6 } }, { { 0x3010e7c36dd49f52, 0x69380a79a51cf96d, 0x6e8cf59bef66e227, 0x50fe4dbbfbc6d373, 0xe531ba515984cc51, 0xddad2533ef0bef63, 0x45db7242a52eceb8, 0x580ee7541556dfb3, 0x000000000000e9 }, { 0x885658a34d0af1fa, 0x7fae8d24fcb082ee, 0xee0707ee7ad8f741, 0xdc688e6a732053e1, 0x89bc311e52f68bb9, 0x37e54e0ab60b2e57, 0xa3f28e0f8d9252f3, 0x50dd13368c50da5c, 0x000000000001e7 }, { 0x553a5fc8cb7a9457, 0x4b11a1db647e8e76, 0x1e904b3fa3fbfe63, 0x1836de152cb56248, 0x33eda14c27362836, 0x30f36c1ab45d5d1, 0xeac4a61d6f87e757, 0x964f39431e7f409c, 0x0000000000010f } }, { { 0x33519072cf7bf487, 0xc6e6162fe45e4ee, 0x300c9529d2d14572, 0x3d5f75b90e463628, 0xe71f0e5bdd39a96c, 0x61f18f065549ea3a, 0xf2dcb5005872e08a, 0x9f96af9dda4c9ac7, 0x00000000000135 }, { 0xba8c03a55cac6c81, 0x7dd41c559511bc66, 0xfd3ed63160642a53, 0xa373457423f05efe, 0x5e47676567c1db26, 0x4fe62ef8db1de5c3, 0x163b38181490f56d, 0xede9ae3e85433350, 0x00000000000014 }, { 0x3f3df19a70775731, 0x21910261a88338ba, 0xef384e6977e8ed9e, 0x750288517bb91ff6, 0x3cb9e17033afbf21, 0xcddf71ad5fa84651, 0x95d7e8c2e03149d, 0xeb0fc745b54fdd82, 0x00000000000181 } }, { { 0x970c538cf7f808f5, 0xa723dc18fad65195, 0x3c6fee1935c752de, 0x7b27053ee4a15484, 0x90f71a4ae902b50, 0x22bd4d5cfa9b57d2, 0x2b0b3a8547de0ed7, 0x4c46d0ce52fb259, 0x000000000001e0 }, { 0xac66390361b4d649, 0xad4c0a729fb2dcbc, 0xc350394626a088f5, 0xbfd152c837554e50, 0x6327a82de02e2024, 0x13ca8ff32e0d1d45, 0xb2a32690249650aa, 0x3506bef3204ace79, 0x00000000000179 }, { 0xf0d694bfde4f21e1, 0xf368c9d0ccd48bbb, 0xa40b138a3ef0b89e, 0xb3dbc2c14502af75, 0xbc1f960aeba7d898, 0x3b2b8f019091e34f, 0x373c9cf25a947bcd, 0x13e00fdb4df323c7, 0x00000000000054 } }, { { 0xfb4f09835faf973, 0x4745bf5dfd688a8f, 0xac7faa5ee493a0e6, 0x9e0fd03d45b81f4b, 0xdad081cabd0c3a8c, 0x4d053901ddd779c5, 0x41cb5ae488c12be9, 0x752e9293df49a537, 0x00000000000095 }, { 0xfb0f1054898eec52, 0xd14f09946dc38fbf, 0x62f49d30be28302f, 0xb6284d9f67aa61e4, 0x1525eefd660eea1d, 0x8f2bdda39bd84790, 0x4184415b338b0dc2, 0x49d00179c80b4d59, 0x0000000000012b }, { 0x918964b3bbdb340, 0x30b01d17b6e0c215, 0x4357356f5e18cd0f, 0x891c37d297eab00a, 0x182ce20c9fcfbcbb, 0xfdb592e8c8decb78, 0x2433ff10f442b1b3, 0xa2bb3fee7dace168, 0x00000000000026 } }, { { 0xdc68c7e2f5fa4bc3, 0xf7a8156dea0460e8, 0x3536bbe77e097bf4, 0x7397322be3994a71, 0x7d13e7ec010ec6b3, 0x182834ea5dcbb46c, 0x2a31995c4273769e, 0x22f56f7d9233c49c, 0x00000000000176 }, { 0xc3cbdd1113a1ce5a, 0x63052dcf5157ce36, 0xeacc9bec507f7f17, 0xb57e6eb1e08b22e8, 0xe09c111733d9bbc9, 0x79053d2473512a36, 0xf325a3f789f131c3, 0x95a59fb8360080a5, 0x00000000000144 }, { 0xfcb61238a8ddfa3d, 0x9458f553e2f32aab, 0xb02ef13e544e0cde, 0x55675efda8dbdb08, 0x33afa0698f31c4eb, 0x929148c3147de4ce, 0x9e32e63598d212d2, 0x60d4fc9d57e91cf1, 0x0000000000013f } }, { { 0x7c5ac08d549b4d43, 0xaa356584d5a13e5e, 0xc142803252ed176b, 0x5681d17a9d8895a0, 0xe5cfa75a9aa7a283, 0x75d0c01a87940625, 0xb7475132ceb279ed, 0xfbd4d4890099cc2e, 0x000000000000d9 }, { 0x8c22b6ab22771832, 0x13f661ec1d786c66, 0x5b57d10cc84a13c0, 0x4080beeebbca481c, 0x7a587a33d38a5c58, 0xbd1078d128f52905, 0xb624046c59310618, 0xdd857dadd0dea26a, 0x00000000000053 }, { 0x54b7be756fc2d3e3, 0xfc1c08bbbf3486db, 0xe5092bebb1d819d2, 0x43c49eeed1fab71b, 0xddaf075bf4592b21, 0x257053fb3d568449, 0xcc1c67929c8a1383, 0xba52388d1b7640e0, 0x000000000001c1 } }, { { 0xedabe7eb5d6b6b25, 0x305212bdee6118c3, 0xb1bfa91e2089707d, 0x332bfed44a25f7fc, 0x6bc5b52361d10430, 0x4ae35fc2075f2a2f, 0x83eccc9d27496d44, 0x7240edfc9040785f, 0x000000000001be }, { 0x17d0b2523fe774bd, 0xf0581d0a1637f6cc, 0x2384ea7fe5855ed5, 0xef96fc3bdf809be0, 0xe39777f31d1abe62, 0x51f1dce16d5dfb8c, 0x8e45fc9b30339de1, 0x55818ac6d2a2f703, 0x000000000000f8 }, { 0x79dea0b068e42b48, 0x87e1b2dff9c919b1, 0x588f223dc9f52f8e, 0xc02ce0ae75fef17f, 0x1041573edc5d0edb, 0x9c5b1d08afe253f1, 0x80d4c63af90ebd6, 0x4c69bb1cc99e7466, 0x00000000000196 } }, { { 0x97c6c4215416358c, 0xb6317e6d399f0750, 0x2c391666683ec583, 0x32d62a9aeee52c3b, 0xf358b09ff28c25ea, 0xe8157fec686dc899, 0xb8b88516e84a6242, 0x4c50ba45c5359020, 0x000000000000b2 }, { 0x91d35847d71b90ef, 0x9dd98570d8683c6, 0xc82226d3697531ec, 0x831016e0a909528b, 0xaa1e37a3352cba62, 0xf247c8d38b63345f, 0xc2cbe8e26d0e73db, 0xbe04a250d605bca4, 0x000000000000ee }, { 0x9761c71a8140d270, 0xa2feabcbbf2936d3, 0xfe3df6e111da4393, 0xba8b869ac338a921, 0xf9d25355f999ff9f, 0xc1ccc8dd21213e02, 0x4e3be1bfc4a417c5, 0xb00e63240d886105, 0x00000000000165 } } }, { { { 0x7626d538bf7c97eb, 0xe98e397df1c20fa8, 0xafbbf8729684eeb5, 0xbe613ca1b80db22f, 0xb89ce2f6207e14a6, 0x2e66334d160fab2f, 0x50b95f82fa6c952a, 0x27d54b84a1ec166e, 0x0000000000011f }, { 0x887a96e283c757be, 0x46cb612cf90cee2e, 0x9e2d7b5edcc9b504, 0xd01ef9f152c839ae, 0xdab59adc0cdd2558, 0xece12ee31dade6b3, 0xa8ec7497aec41ba9, 0x5c538d31b7684c84, 0x0000000000009c }, { 0xbed594cb253f8149, 0x766b4662274a955d, 0x832b102789290374, 0x297d819df8cb9d82, 0xb81ce551d9569451, 0x11e14782c72d906, 0x581f5f2e96f6f699, 0x6ec0f8710da2f474, 0x000000000001fa } }, { { 0x3d04f446648daa46, 0x80da454246b59126, 0xdf4e6e53b1f429b5, 0xd9f5dd2beac649db, 0xcdecda7095beb495, 0xdaf6aa75c17d2664, 0xefc365c09fca3c9d, 0xfb2f7780a2c724dc, 0x00000000000032 }, { 0xcf5a6af1848a5022, 0x1bf1e50e2ea38d9, 0x1e5bfe38d5504bbf, 0xdc7810487607a8c, 0x3fe57294aca76fd0, 0x47c5691ccf4c3b4f, 0x2c5b5fff1eba62db, 0xb3ceacb84f3067bb, 0x000000000001d7 }, { 0x4cdb9be390134dee, 0x1b825bbf39fe61d5, 0x4deb6b615244c212, 0x7084523a6cea3ea1, 0x2d782cdb7c6941b1, 0x16d68a1c6613a405, 0x1f6cd8feb9abf103, 0xe0936520cf053492, 0x00000000000013 } }, { { 0xff65dbde3b6541f4, 0x9c76cde347acdef8, 0x1983cdde49737ad2, 0x2a7583621a209fa9, 0x1fa6b4022f55aee1, 0x53a6d3d9dc698052, 0x527ed61595adcdf8, 0x9d1d817e7d1c3057, 0x0000000000019b }, { 0xa50ec679406f3007, 0x9a484de595f2a31, 0x5b007a996f9e0ff1, 0x8117e69fe6e7af2b, 0xe9661900948be9e6, 0xaceaa7b8bc6e0fb3, 0x4d5a9c3f44b421be, 0x72b2f0f0c5c7afa, 0x00000000000107 }, { 0x2acc78a8e2cb7582, 0x582653ec114409ef, 0x2f992d91f83c6daf, 0x6bdbee449747bf3d, 0xef2f369cfdae1c7d, 0x12a93966ea1b7eac, 0x5d037a48ce1c833d, 0x4400a256a579e534, 0x000000000000df } }, { { 0x5d61db8dda5fed69, 0xcb7552c896836da1, 0x2cb2271706d3d23f, 0x8b1438ba85196499, 0x5ed767615a984ccc, 0xc86da46ffcf80738, 0x5e03d67c8977f9, 0x89ecd6b710ee75f0, 0x0000000000009a }, { 0xa93819163f08334c, 0xbb0653889f0550e1, 0xa3a9991b5c4bf680, 0x2203e23a276d214e, 0x5707fb4c696d0568, 0xc05f3c67c3be5f98, 0xa9a2f848c52c78e5, 0x6e8444923d15b923, 0x00000000000147 }, { 0x6e5b00e3ef669abc, 0x905924aa26498b42, 0xacf0f0072a5ff13, 0xd7900bc13a3e96bd, 0xe7b06e9d2757b6bd, 0xf2c97be32dc515a9, 0x36031be9677c836b, 0x5d8b157abac8afc9, 0x00000000000056 } }, { { 0x25cfa6a3447c0918, 0x7876d0b6e34d2c2e, 0xfae51c73982cc5b6, 0x225b667be944c06e, 0xc26b41e729bebee6, 0x4ce5354bc0447a38, 0xdc8644f028fe3481, 0xe3583d2060f3f0e3, 0x000000000001e5 }, { 0xcf4c7dbbe8ac1342, 0x9668ee20cde03930, 0x937e49d54f5b9f87, 0xd3634a6e431fbfa, 0x708d8e3f9ab75ffc, 0xce65e0ccf247da71, 0x546dbfa7772261d2, 0xbcce11f0ff802a9e, 0x00000000000081 }, { 0xde08b413d275c734, 0xaa2d6bcace1c8f0f, 0x4f0516280208bd36, 0x8e5752076b91a36a, 0x9ac760d3fb5a8552, 0xa328d1a46224abd8, 0x9a31c8b7ae21825e, 0xc2ed44403d614094, 0x000000000001af } }, { { 0xb71ef47a661c302e, 0x54f7d744496f0299, 0xdf0cd04bb1ea1426, 0xdb0a9a44369f2c92, 0x999f8798860c2465, 0x94cac0bcc219997f, 0xfa63555366772a5, 0x8ca0d2c1aead22d0, 0x0000000000007f }, { 0xe6f446aad9c0d6f2, 0xa28b70ae969d3c58, 0xdb1f409776aeef16, 0xfe68a93cbf5952c0, 0xdd6d088de8d9703f, 0xf56b2adb471d6084, 0xcb684a949fd37dd9, 0x9c0f9b2af8d766f5, 0x0000000000004d }, { 0xe0d5ce570a3be98d, 0xad2c0cde8cf902a8, 0xbab7d43293b14d1, 0x28ae74064047223e, 0x5f89ba7f0dc0601a, 0xa5132eacc6778a7c, 0x7575fef15d024900, 0xc8e1ca8c32581084, 0x00000000000078 } }, { { 0x3a9f1e90bc277dbc, 0x1f4e4bec4d7df9d, 0xf740af10bd0c7083, 0x58bcc221cf37e964, 0xdf3c4db26732fbed, 0x2351ee3393e13c7c, 0x76650cbe60346f36, 0x59c139addf9508cc, 0x00000000000001 }, { 0x5d3144992777f25e, 0x497df9980d4ba969, 0x3883c194773ad0f, 0xdd1fc46d15785ff8, 0x17352d38c1af6e1a, 0x321e8592a81e6473, 0xe258965ae9d0453a, 0xec45ae05119758d4, 0x00000000000053 }, { 0xeaf0a0396db2b269, 0xe261855b028ffe0b, 0xd776a7a9b6b88eed, 0xcab5b3dc74bc85b1, 0x282f70fe1f266fe4, 0x51866fb36964cd2, 0xcec6bfe3200fde46, 0xeacfa78e4a067c6b, 0x00000000000096 } }, { { 0x6797b675de330ac3, 0x72af14b99fa7d5e, 0xb97193c84b3adf7e, 0xeec0b6ce7d219ef7, 0xd6c683ac27bc5a8e, 0x351a9f726d716848, 0x460ff0cf8e5a821c, 0x10543f29572d55e4, 0x00000000000109 }, { 0x4cf05e7ce683fe5, 0xc9fa5b44c66545b8, 0xef608df6c706d42a, 0xd255468b1d142ba7, 0x1a65d9a51483a3d4, 0xbc1718064a0a97d2, 0xbea10a9249985531, 0xc6cf9f0a304f4437, 0x0000000000013d }, { 0xb212619fdda67a3, 0x1dcc54853bd233fd, 0xe69f3cf8677ca3c3, 0x5496cb1d5cea12ad, 0xa3e2d480f8896a80, 0x6601b95582e7c3bd, 0x4b1a96660109a52f, 0xddaa2cafcff66f3, 0x000000000000da } }, { { 0xb825aa15eb4ae8d4, 0xe4e0dd04806d69f6, 0xffe38b9ba6dc2ae9, 0x9519c7f89e31523e, 0x62924fbc1a64e3ce, 0x559dbf8f2ebda931, 0xd8a949bacac5ec4d, 0x6913e537728b4bdc, 0x00000000000103 }, { 0x2500783d1a0411cc, 0xc7b6e701e912c43b, 0x43c08305c50b9308, 0x51e182075de7b03e, 0xefbefb418b4b9c5f, 0x67a59e37ce6f5e9b, 0xd58fddaed196a50c, 0x1dcc92ae75ef88ae, 0x00000000000079 }, { 0xcb8fcff6a6155635, 0xcaa420366d2925b4, 0xf8a6c9488f9529c0, 0xe5e0e4eace0c5091, 0x45500a63ab85b1c0, 0xdca450c27178dc81, 0x7dc3742486e6b55f, 0xf385652cc3e95d4d, 0x000000000000f0 } }, { { 0xdcf711bd0841981d, 0x7d0202567f5abcf, 0xa14cf2d9b4a258d0, 0x4cf6e1c4b6470b6c, 0xf436fa2b1ddce7fd, 0x64d2cba643faf0f3, 0xd7e1d3a83d3d38dd, 0x368f0590ab0fac1c, 0x00000000000030 }, { 0xbb888fa5fa06e469, 0x580e9bb9afad48d5, 0xf24b20710e9625bb, 0x8929c8312ed38ad6, 0xe509131d12faf297, 0x63d901b0a10977f9, 0x5fa92e371eec8446, 0x437c0e914aa6bc93, 0x00000000000097 }, { 0xa34f8305722c8a1d, 0x5928815b40d35247, 0xb85e7809de4a859e, 0x6bd503f9f0b75ce9, 0x87e7b21d27a931f7, 0x6849002bc5b3244e, 0x59eb41698a7ce50, 0x99dd8e1fd6ab634d, 0x00000000000142 } }, { { 0x1685e1a0124c72ec, 0xd7630d11b28b8dca, 0xcb3fd8662bd89f36, 0xc05e82796a2ec7e8, 0xca61a5a812236b7d, 0x331c9dcef5d6bff1, 0xb22b446deec385cd, 0x3a19acf227386d8a, 0x000000000001d0 }, { 0x2f5dc54d871aad0f, 0x56629dc703d39fa8, 0xcb5a13fad60f447e, 0x928ab81670f4d628, 0xc23bc2aa849f316f, 0xfa66e51bbf08f1a6, 0xf034e40c3eac8691, 0xb05d35cf099bb6cb, 0x000000000001e1 }, { 0x5a38b1dc08130bdf, 0x3b83e5281d75279f, 0x7e71120062d73385, 0x16be631ca2d9259d, 0x48cd09f5d1b4c963, 0xb7cf16920aeeae0a, 0x472f61612b1156c9, 0x7ea007fb4a84579b, 0x000000000001de } }, { { 0x245134943b577684, 0x4bb8f9d434c7ef03, 0x29270dd78953b9b8, 0x469fe62665c4e3fb, 0x7dca993d52434c7a, 0xb25ab118204bfaf, 0x166014e8b406de7e, 0xa29b193520266412, 0x00000000000032 }, { 0x3035960dcb28815a, 0xb3b07836ec1f738d, 0xf3d2980218869c6d, 0x83bc3810c1d598a5, 0x9b1110451f546cc7, 0x1f5939974268334e, 0xfef9812e6199986a, 0xb6eaf90f6ab52bb8, 0x000000000000e4 }, { 0xad0148e557d6629a, 0x3d673448f76f2ea, 0xead550bdf45494e5, 0xfd193aa1bd5d5117, 0x9b990c6e65e399a9, 0xb362a8262fbd5a96, 0x49f30a6223329fb4, 0x9fa55cb7dcd1c33, 0x0000000000010c } }, { { 0x9abd645726492ea2, 0x437c7d21174f345, 0x374661b58c177c8a, 0xa55e73c24e85ef6b, 0x481ea373e988a471, 0x35cde86d6f9466f9, 0xc7209f3eafea3280, 0x9f91d6022843f13a, 0x000000000000ae }, { 0xb5b4ba62b04a1d44, 0x9ccbc16f1b145f1d, 0x23dcdf97295920a8, 0x8a0b92058812756b, 0x9b6de850bbbe7bbc, 0xc817ec583c47ef5f, 0xc758d9fe32b8ee16, 0xf5d7fcd516f45069, 0x000000000001be }, { 0x8377aac3ef5ab38e, 0xdcf82160032113b9, 0xfd7f7b72ba009459, 0xcc00c001e7c4b466, 0x660a87b47b94f1bd, 0x2f87a4760107edf9, 0xa8fb5cfec7df04ed, 0x273e4ba09ecb8eaf, 0x000000000001aa } }, { { 0x6730bb6233b02dca, 0xe691ce18634b068b, 0xd4af17aff75cee7c, 0xe6abf575758942e7, 0xe935d236d5730ed1, 0x9bff8460afc8b6ee, 0x30e9364cfcba88e5, 0xcd1ae32284562c98, 0x0000000000018f }, { 0xb21349f21dead7e4, 0xdcac9a6341b0a9ee, 0xfc927d019ad85d6a, 0x89e0ec66842c4171, 0x16baadbbdcb627f3, 0x4c07c28ec3ff141f, 0x427196efe892594a, 0xa492c12511274894, 0x000000000001e2 }, { 0xee7393072b8d1434, 0xd409e4ba69fd7af0, 0x6abf61e219ead94, 0x2dfc2a9bc875ef5e, 0x79611dbd77b36d7c, 0x831f163a3c343880, 0x3c666639ad729749, 0xe44fba5761caa621, 0x000000000001b8 } }, { { 0x6604a4dc8ce12e69, 0xf678a1ae0fe20bc, 0xa94e00017ff46909, 0x5a3ed8ff52cf4ed3, 0xc7475e608ff8b904, 0x3129606653697308, 0xb52ef97c2299d6fb, 0xf3dfd0aab3e85e64, 0x000000000001a4 }, { 0xc711af53f9170157, 0x81868500540664e9, 0xd4ba4f07ddd205b7, 0xd58e1e9e41e0857b, 0x815571003df788f0, 0x487b9df0323509e1, 0x7fc55b8c28e05a78, 0x63192dbb33b0dd92, 0x00000000000070 }, { 0xee969a0ec36efc49, 0xf1cd8c53a768d5c1, 0x1f52819c474e7123, 0xce4163fae66c4142, 0x96aee28dc4dd83c6, 0x24c51d2792c6be40, 0x14d81d159c8a4fc9, 0xcd9e1b008f9ba228, 0x0000000000002e } } }, { { { 0xc35fa86e26e9ee34, 0xa70b3f8c2ac00ab0, 0xbdf6c88525c6dfe4, 0x3c5029d99813144a, 0x37555963b41a31db, 0x510c93b0fa042aac, 0xd728040581b869c8, 0x70242890604d572d, 0x000000000000a4 }, { 0xa9a64046724f124, 0x9d86a70fa77de222, 0x41683f80eae994e1, 0x239b75f53732c0a2, 0xfde1799f75657b8d, 0x6d9e87d4a662fdc9, 0x2121897551336200, 0xd7786f31d3178617, 0x0000000000000f }, { 0xc05b306b4394af0c, 0x63afc04552f0210f, 0xe72072a06d522c87, 0x981e2604b2ab8d10, 0xa5d6a84db237bf62, 0xd313401ffdc790a6, 0xd5f6ddbfc09f16ee, 0xfab8680db9643670, 0x000000000001ec } }, { { 0xc8ddfbc21bad1673, 0xf3b821080674d2a3, 0xdd16cd8a7e80cc3e, 0xb2c87af93128dde0, 0xe33dde9d974df6cc, 0x33b7e02084eee40f, 0x8e7911d90669a88b, 0x5e2eba6ecee3fb61, 0x00000000000115 }, { 0x4dd2e39d9d577ae1, 0x261d9988fff45ed5, 0xe07c1b06f6d67e97, 0x85543b2e7a0762cc, 0x356336063c90b396, 0x3cfe3e4bd82bd489, 0x2151cefe97c5c10a, 0x92a85e020ed752fe, 0x00000000000108 }, { 0xe8b712dfc6d36a83, 0x6f79e2f0177627a0, 0xd664f5a03098fcb3, 0x3a8d0e231b6bb58c, 0x93a5189ce905430, 0x83c7d02c30a1a438, 0xf20447439c1e94d5, 0x38916faae5586850, 0x00000000000099 } }, { { 0x17a96a32fcb1bff6, 0x7900899cf8f38944, 0x6e6bcce074c1516b, 0x5f16887aa835b987, 0xcad1ca69e562ca2a, 0xafd03821df0f2eab, 0x74f68c7f57b94f65, 0x61d469d25fd93338, 0x0000000000010c }, { 0xfd11c272b915de75, 0x782fb9b53647918, 0xf4323242536e9c28, 0xb90b78132f91498f, 0xb6c883b94ec3c535, 0xf825a3378b683115, 0xaf66430f0561fdcd, 0x7342f875ce39e350, 0x000000000000a7 }, { 0xd07afed86c6510dd, 0x23df141af0a55e78, 0x68a60a94fba54031, 0x3b2bb64997cb5451, 0x8f60744b0440770a, 0x8911bfffdfbf3f66, 0x14682caaf127c16b, 0xf74a261f31de01a5, 0x000000000001cf } }, { { 0x663aaee663b2c3d3, 0x31b2041490290aa4, 0x37af86f7d2d10752, 0xd6dc067aa7b01743, 0x874e51d20ef4bb16, 0x20f1b559b4475d8a, 0x146d7757c1285c00, 0x284c70243fc9b7f5, 0x0000000000003b }, { 0x8993bf6ef0607e43, 0x95c84a3b14556c5d, 0xc23f4f4c45dacefa, 0x9f48df1c08440462, 0xed03d022cbb499b3, 0xca34d30ce77b4a01, 0x6a79f6c3537ac90c, 0x1af9acb4aaad1b2f, 0x00000000000030 }, { 0xb79a44a4999c1bcf, 0xdad65f6e30bb9e7, 0xc3ef234bb1b9804a, 0xd6de26612d78876b, 0x23ffea4bf1624705, 0xc2900bfc97d9ae05, 0xca4ea71579e5f602, 0x7cf7a90d3c08bb07, 0x0000000000009d } }, { { 0xc5492ea8e95aa8c2, 0x789d0d19fff4fa69, 0x4359d20cd1d49b68, 0xc8ba2b23411b7d21, 0xccaf6723017a40a, 0xd5ca2efefe34c8c9, 0xce7e9207add962bb, 0x55c4c1baa13959ef, 0x000000000000ab }, { 0xbfd1c79c3c73006c, 0x1685ff3bb497384d, 0x9c80f5b3e1c823d7, 0x772bc7b3e59013af, 0xdea78b42668b7ae9, 0x256a54a9c625c6c, 0xdae038eaae99e8a3, 0xc21cc27b37f7518d, 0x000000000000fe }, { 0xd268ac0489e8f35a, 0x95368bd2b82ba814, 0xc92a2f4a98ad0bde, 0x7bde4cc7ff09c5b3, 0xba38a38f38cf943, 0xa50f1e43b8759504, 0xfa5782e1290ca60d, 0x31b60240d843b139, 0x000000000000b2 } }, { { 0xbf84079729263e40, 0xa101fde4595582e3, 0x31914dbf938962f, 0x167cf06ba0a69fbe, 0xc3dbb15dd3cb5a15, 0x693195e4e58af8ef, 0x24eb26f2ea637c62, 0x9f3035854a1b2879, 0x00000000000086 }, { 0x485e2e7255e024a, 0xaeb4979a54f0c060, 0x56562c8ec694d630, 0xf138bb359d180dbe, 0x932101570d7d0b27, 0xb91dffc5704a2798, 0xeb5e07003f292c72, 0x2aaca7b7278dec93, 0x00000000000136 }, { 0x5f3ec054337d331d, 0xdad1fcaf6b091485, 0x494402a7352f32c3, 0x3fee5c56946de8d, 0x8dd89e6585724b50, 0xea53e6b4a66340b2, 0x59323cc94f8f09d, 0x19e285152daf69ba, 0x00000000000115 } }, { { 0x8ed44b07f6ebad0f, 0x26df842c8b9e51a, 0x5772c7dd6fefb16f, 0x95b338bb152b7aa3, 0x1685301910004262, 0x4364a6d9d3ac716f, 0x82a888ccbbcbfa00, 0xff51b3ac058f6197, 0x000000000001d3 }, { 0x984896298f88aff0, 0xc2dbbf45daf593a, 0xf6eb1ad1fcf9b7d8, 0x2fdad226582906b9, 0xc203b8bfb0580540, 0xdd01398d708c3032, 0x96d1747b5a5608aa, 0xbd153f437db6fa62, 0x00000000000032 }, { 0x45039422db5a9de8, 0xc2f396d7130ff7b, 0xd9aa012e0e59a547, 0x32f2e2a147676464, 0x4c3fecaac65bc750, 0xf8f135959d070fda, 0x611b11e41e8fe3fa, 0x4d10e556082830dd, 0x00000000000162 } }, { { 0x3825b3c48622687f, 0x5964554040fbddbb, 0xdc0bf09f32406a36, 0x8d60263db2a34c01, 0x9e97ae8734a76a79, 0x5789556d027d1a, 0x43fdb644dbd52e4c, 0xf7a02982ee0a31ea, 0x0000000000009a }, { 0x689ea60e32bbd38b, 0x505064883a12b6e7, 0x2ab065ee676cc016, 0x2e3e08c03a2fd911, 0xa8d5af1d197e55fa, 0x6c5cc3db8d999fe0, 0x3eddfe74718c0950, 0xc6e9e43b7e7215f8, 0x000000000001c8 }, { 0xf075fd2610b011f7, 0x5ad0afcb4535d317, 0xf1b09e6409f70759, 0xc4ea76daff3c8963, 0xc97aa6dfc4f891db, 0x67e5eb45beec56e8, 0x90e81848bd778a29, 0x682bcf78e4d87017, 0x0000000000009f } }, { { 0x6edaaa8a7ab1d4a3, 0x580e6bd6c92ee51b, 0x56d5ef0770d0463c, 0x28a9650bf4dad4d0, 0xbf6227b5dfa1f9f7, 0x25c89899b2689555, 0x8e5824b78c2a816f, 0xfb485dadcf60c312, 0x0000000000009c }, { 0xd62880666cb0ba89, 0xd77bbe544a5932e9, 0x305b8c397af301cd, 0xf7f377ac160132a1, 0xe06a71fc97b2a394, 0x2e8bc88afbb2062d, 0x808ec6cdea895dd4, 0xd3bf46c591ea476f, 0x00000000000189 }, { 0x768929d6d14250d0, 0xc8fd4b0fb23a5f1d, 0xec69e010051046cc, 0x61e76ff1edcbf4f, 0x63eadc5f49708982, 0x6df4fffe808b5ff0, 0x7008707f2448b30d, 0x41efafa9682872d4, 0x0000000000010e } }, { { 0x28284bb13bf61ce7, 0xc22249e2c7859726, 0x699ff236fb571f25, 0x67d5e76597bec308, 0x97a0b76388c98d33, 0x5c1011825e3c99f, 0xe2b4c1ace86db5cc, 0xbfe1caf74bb3b3f2, 0x0000000000017b }, { 0xaa06ac1a3fb7510a, 0x663f3f94e40266a7, 0x5f5f332cf2285ee4, 0xf52460de0e6ad858, 0xa06849f74cefe15f, 0x9f627a8c220eb787, 0xec5892ce0fa5e776, 0xc0dc02f33bc869a, 0x00000000000061 }, { 0x11375d021445d073, 0x47675dac14526d95, 0x77f9e3741998b0b, 0xcd63f0b43c4da289, 0xaf9df5a80dc52ef9, 0xe0707b5448087406, 0x4dab321bea222bea, 0x56ccf4f79369d2b0, 0x000000000000ef } }, { { 0xf73ebe25108d173d, 0xa422536f027221f9, 0x9819a89d9f429888, 0xbfb0a821b6585159, 0xef558ea173197bac, 0xccc4fe604ec18101, 0x80d53e0452a86938, 0x168c817ac4719ac4, 0x000000000001c3 }, { 0x62af0ea30faf65ba, 0xab8de99d606da84e, 0x86f09966968fd78a, 0x108d554da382ab28, 0x9807485067e62110, 0xa509fae00783e920, 0xd862110c288a08cd, 0xcd8610231df7203e, 0x00000000000076 }, { 0xe3c54086584fc1ad, 0x9bd467cf5bb6d97b, 0x14d8f38f7d59dc96, 0xc093d27659718d41, 0x8721ef6d5e6ba746, 0x96aed683fa52792d, 0xa4ff632c989c92b7, 0x5bf2bdbe6439c9d8, 0x0000000000002a } }, { { 0xb54d1fef3e76c713, 0xeebfbaa287a34471, 0x2f91710620f91057, 0x129ccde80e8372ab, 0xa1078850f60655e6, 0x946526fc128cb9e0, 0xff3bb66e32ec1e79, 0x96471b53514c0b36, 0x000000000001c0 }, { 0xc12178d1b17280ce, 0x8b88f3385c9ae37c, 0x5377de8110bd92ec, 0x56a0974071ccc361, 0xa510c1de2c5c8009, 0x1bc7970cf0da195a, 0x62448f1427df0612, 0xde3f56a8e4491c4b, 0x00000000000023 }, { 0xde9131bf56ce3b5e, 0x655090deb6797916, 0xaf82c46a4b0be8c, 0xbebf0c0ecbc2051a, 0x81b76f7f615f2ea5, 0x2f8e62ac8d3e80e4, 0xbfc32173786e486b, 0xa153b6eb0f393e0a, 0x000000000001f9 } }, { { 0x3b37f2a95bd973c, 0xc84ac09d423151d1, 0x906bd5a968ffc30b, 0x3c1be80d0adff1e2, 0xaf09160d9e414e56, 0xae68fbcb9697743f, 0x75e3f39a3ad249de, 0xcd4d7776cf537b73, 0x00000000000006 }, { 0xfa0ace533f78bec2, 0xb35542301d5dd1b, 0x8f265b6f24f65cd2, 0xc613b280543729fb, 0x7236db85c727269, 0xfba26575e08bd0eb, 0xf046b4e99889da16, 0x923aea26a5279421, 0x0000000000017c }, { 0x291cba4f3b246a10, 0xc2ea2902e385a68b, 0x4b94a7dfad95fa99, 0x975446e14a1485bb, 0xf9f316ed0596718c, 0x8316a541e278b0ae, 0x65072e4f988e40f7, 0xff3d51de0bc12d53, 0x000000000000e1 } }, { { 0xfb7e831e8a0f9b25, 0xb0bb78d9f8b4b06c, 0x290e42e6a9ac15b9, 0x5c253090305434b0, 0xe75401ca5017f5aa, 0xf984dd3999038a21, 0x84b9e915c46a61d, 0x8e537bf9592cbc06, 0x0000000000002e }, { 0x4c1459bb80e368bf, 0x306629a895cdda87, 0xf616a7a8b2647172, 0x30f3ffa1568fc18c, 0x4ba53eb8328098af, 0x4cd48bce06a110e9, 0xc194b4a71109b294, 0x6f5482ecd4b2971c, 0x00000000000105 }, { 0xe946e757d2c61d8b, 0x99935ee4b72dcc1c, 0x1e6e9864f979297c, 0x800455eb0de9fb17, 0xb85ebc5ad889db0f, 0x68902704a1dfa93b, 0xc1adf3547b3dc0f4, 0x5be7e4997c7abbb4, 0x000000000001d4 } }, { { 0x4fba9f3bbc6f45a2, 0x14c4c3f7c8c87465, 0x170e2ae172a35689, 0x3a90f97089db47fe, 0x9a0e221c3cda8bae, 0x4511db09d1ea6bd1, 0x41c397699ca28c40, 0xaa18d305e9c8bfd4, 0x000000000001d0 }, { 0x32cced9166ae13f4, 0x593836aa0c213287, 0x2a31f4cc015657e8, 0x822440affb3f7cf0, 0x5b176078772539f5, 0xcd0d511ca5e9b724, 0x45ee27edcf3b1c5d, 0xb6677c9e43e2e5dd, 0x00000000000197 }, { 0x4f93ea60fba6dca8, 0xea84cc93b9a4b68a, 0xe2f8e49ae027a46e, 0xd1ad81f9b426967e, 0x6d462fc30edae270, 0x936bfedd8e7f391d, 0xb163c6562524816d, 0xa148a71577b541e4, 0x000000000000dc } } }, { { { 0x19e355954c5e341f, 0xc0dbb6d29e6d8a60, 0x41f424284bfb09a2, 0x21fab3eb80dab4d6, 0xbdcdb2c31d05521c, 0xbd3d0d1bf55767fa, 0xa51864b88fee0ab8, 0x78ab3d729208f579, 0x00000000000072 }, { 0xdbc6235f8c3c7b6, 0xc1a0557cf8067e3c, 0xc18d994af2f9113a, 0xab036bfacb0632d1, 0x3440ef8f22a2d392, 0x272b9a6a1b28e10, 0xf2d7a45fc44b2c0d, 0x7a52f63e4b2c1987, 0x000000000000d7 }, { 0xbbe8dacf21e9ea76, 0x43b0e70b14ac5b44, 0x81bf00ec1a8e170d, 0xd473d108c6d22034, 0x2a7b4b20c22a7bfe, 0x91324cc45ddeba4e, 0x1a4041ce60deb513, 0x802722fb174e66d0, 0x000000000000f1 } }, { { 0xd0f76925cfe1fd47, 0x38d096010915db92, 0xf313537cb824c025, 0x64cc499803f244c5, 0x9983500e39306ed, 0x377469df299dab39, 0xe0eea2a9084a2f69, 0x5a3ea9279e772775, 0x0000000000013c }, { 0xa6d468db29c32bf0, 0x438f42a208cd0e88, 0x15e229957d27310c, 0x268feeb16ba0092d, 0x194884524fe67873, 0x7e712073bca13c91, 0x1bd3b2741cf31aad, 0x631fb68f10c51e43, 0x00000000000015 }, { 0x51725188b3d28b04, 0xb20e7357adb09a89, 0x5ad0a7012923c98b, 0xe0d989925f19266d, 0x49381ce3fea63100, 0x3b2970ce2da99f95, 0x1b554668d20998c3, 0x44409722fe3e7e1e, 0x00000000000044 } }, { { 0x3a0e6a229c67c00a, 0xd75f7ca569bde760, 0xcd8244dfbae03e13, 0xb4ba971528fb6849, 0x372927996cc09fcb, 0xe3800c61f5f6a99a, 0x98c88b8320e133d8, 0xf31edd8747bd3961, 0x0000000000002b }, { 0x7c07b605c5f56a78, 0xe0f63993bfce17d9, 0x1707b6006f0fff24, 0xfef455c9cb1f0c24, 0x4720cd42696df367, 0x1f00a219403a9658, 0x1cc5ef342378a9b2, 0x4f67f7218701e89e, 0x000000000000ca }, { 0x60301be8ca3b2411, 0x45f6a2cede824e63, 0x23138630fa6d5fc7, 0x8dfee3ad0a55a7b2, 0x2fc7d0a0464dd7f0, 0xa5b7a262b69959d3, 0x62b63afc13dbef1, 0x916868c2698851cd, 0x00000000000108 } }, { { 0x2a8a296dc7a35b6f, 0x4ec064d6f9e2169b, 0xd60c4352f21df14c, 0x54f5f9fceaeec9be, 0x8e20902241bc7a89, 0xd89763e76df3d67a, 0xab1fc269dded0337, 0x5c89311114e37e50, 0x00000000000093 }, { 0xd2b5f826dc4c9ff3, 0x5c2bc9bb1e7b95e9, 0xb3dc85135f1d589d, 0xb09dea0c163e4708, 0xd9f53cd55b3fdcfe, 0xb65469afbd050375, 0x925988eac7aef191, 0x20a3056577016b4d, 0x000000000001e8 }, { 0x444922ac5e6b2aed, 0x28f295705e1a350b, 0x350d84e814bc4834, 0x367ebe75ae994aee, 0x843f0313802ba061, 0x9cac25e21c91ac34, 0x7b1c7f663b2bc06f, 0x67b3ffd4f10a0db5, 0x00000000000026 } }, { { 0xe1b129bfe721c225, 0xc1e46b5a1a671e0a, 0xc04d37837289d0dd, 0xf0841a516735d66c, 0xdf7993920a949769, 0x886527047e577e4a, 0x429ba7ded3c7508b, 0x6714edee8617b85d, 0x000000000001c7 }, { 0x7ea12ef63ad7f06c, 0xf70deca4484cbd45, 0x3ef0edfebd77d8df, 0x98474effd154a886, 0x519b716e6ee4f63f, 0xc0c192ddce9a6655, 0xff33b90c0f3e20b5, 0x155b0dd6e561e385, 0x000000000001bd }, { 0xb0e42d684c5682fb, 0x950ae5da40e4f60, 0xc046b531966535ef, 0x519b894eeff577c9, 0xa11f9aa6e596ef78, 0xa5f084a99f1236e, 0x7d1ea33026a0e16e, 0xdd9fc5774d736a42, 0x000000000001f9 } }, { { 0xd18edc91cf6b2f8b, 0xf7a53f6518658f5a, 0xfdfd40f70fd806a8, 0x81025a5f53ced3ca, 0x7b5d27360a0d9d5c, 0xa6fd5924c54010de, 0xb7181883b9488396, 0x2679f74404ba13ea, 0x000000000001db }, { 0x2c6270986741c56e, 0x30feb493f85fbf3e, 0x3767a898210e7b3a, 0xb9586818b5903777, 0xe22b5037d1846390, 0xa7e45d9eb3311333, 0xd6fb4bdd92a8e862, 0xbb013ebc2acbbc06, 0x00000000000187 }, { 0x0ea13060106df2, 0x5fb181875984313e, 0xbb94f8c9b4dee636, 0x7ca442b4f1435ee5, 0x2fa9663038d740f1, 0xe16f14c8f87d3ba6, 0xfe04147bf7426ca6, 0x3286e69dab7e7a01, 0x000000000001d5 } }, { { 0xb0e7ee8236243bf3, 0x1d0472cfd13ce186, 0xbc87ce1a1d2de2d4, 0xfe33236eb81cf75c, 0x292a9bd2e99f8a43, 0x36e33157ddcedc1e, 0x7f0f377e54e10c5a, 0xef87017bc7386422, 0x000000000001cb }, { 0x3fc1f5446c7c2198, 0x343b96ce89fe00d6, 0xe4ecbb840adcedbb, 0x574c854c74b6ae60, 0x46c87bd7a5148524, 0x764e0cece5b5aa81, 0xbffb07d87136a119, 0x957c76261047437c, 0x00000000000113 }, { 0x947e1c8be779339c, 0xc67b0db587bd2661, 0x3a5301ecab4da635, 0x5d95bfb37e22af7, 0x7a9553c2d59f2f40, 0xb738eb317bac3c5b, 0x701d446fc118ff19, 0x592007e88de391f8, 0x00000000000178 } }, { { 0x9a4e436cac054216, 0xbbbf35b94fec54d8, 0x9963d4931ffa1e3a, 0x4c6ed17609820dbe, 0x4e03e7a52cd31c6, 0x2f7cdb67e9d6193b, 0x28be0eb318ae069a, 0xf2bf74d31d4d3d11, 0x000000000000d2 }, { 0x85945e3dcdff5108, 0x68a5324db7bd0c1, 0xe3d87cf53ab8f477, 0x355793018487285e, 0x5887eca5fb79447d, 0x1498a44d2a39d2b7, 0x5eca55d6b1a94c2e, 0x1843c554ef915f83, 0x000000000000a0 }, { 0x3efa3e2a2db05b94, 0x7faa3ea249fdba56, 0xe1c336598e84ddf1, 0x9e980d3ba8c2ed7a, 0x997477e146cd8278, 0x3a7c0046b4762da0, 0xa5c1dc9fc238ff53, 0xcd01258fcfd8eecf, 0x000000000001c7 } }, { { 0x66f0dff58b0c9468, 0xd5e455a7fcfaa0a0, 0x8424ccf53d28ef21, 0x4d75bbc722ae7ae4, 0xb4b52add71157198, 0xc90d733ad5ecff6b, 0xbf5e59413a5fb002, 0x69e3be1fd0fdc92b, 0x0000000000011b }, { 0x7bbe824234ee10ea, 0x3bdd5a1fd2e90884, 0x8b31fe4da411a297, 0x39aa0987be2617dd, 0xa17b5c5d66c17079, 0x5a0d5945af2cae3b, 0x26ed6242bd36965f, 0x74dc1b1e53d5cf1f, 0x00000000000195 }, { 0x786f52e075391b51, 0xce926ae9fe1f0227, 0xafc64dbb2b4e6f7f, 0x6e580dfa37d7ab43, 0x3852412634b8a3a6, 0x5af8735f1df375e1, 0x56f36273e6dc917d, 0x46db4d4d2c7e97e4, 0x000000000000d7 } }, { { 0x54b135b9f54063b0, 0xb2ddda8313617745, 0xfa22a30dc9d64e4f, 0x6cc92d6960d4f2fa, 0x9cadf2a7ef065458, 0x885b6885803eedc2, 0x596cf1b4dd22a883, 0x8abdb9165ca162a0, 0x000000000001bc }, { 0x1a804fd0ebbc7d21, 0xc9113198554faadc, 0x7ab19b10bb83b335, 0xc4115914dae0e47a, 0x13479da480d5b34f, 0xa0b3d75eb66146f, 0xacd1839dfcc45fd8, 0x63fcbfeffcb4ed7c, 0x00000000000120 }, { 0x902fc7d38b1ba24, 0x73021e057c833f35, 0x4155994a17e45e, 0x989cdd09c50639e3, 0x8d1fb8feffdee8bb, 0x17ce13bc774bad58, 0x6e11f82779175c51, 0xb560e6dabdfd0878, 0x0000000000010f } }, { { 0x3adf17ab34129c32, 0x7473eac3df0524ae, 0x157ed4b83c3f429f, 0x67c2dede7f69c911, 0x4f7af29e39c1e45d, 0xcbe6f9c893a90ba2, 0xe37ccd054cfcc57b, 0x21f478e6af278b9f, 0x000000000001df }, { 0x62bda312ae98c361, 0x26f0333b50e84f79, 0xa38c82374c480b33, 0x22742b5e2d51058d, 0x147cf2a1ffcf78fe, 0x1b393fa5d0d55f7d, 0x1960284c6cd9f625, 0x6fd080939c5debd4, 0x0000000000009e }, { 0x8902415ece179e50, 0x6a4035610fa414fa, 0x51248e6742a97775, 0xd99d9642f6d07455, 0xeab864878365f040, 0xe830cffc532f5cc4, 0x705d382d16843b03, 0x80a726ea7d562c97, 0x00000000000107 } }, { { 0x812588162275dde6, 0x9e22a600e3abec05, 0x4efdcb263597f08b, 0x392423a59387e067, 0x3aafef9b0f971ea7, 0x7290a7033298caed, 0x2e9a24cf480c62bc, 0x6605c65f68f2411b, 0x00000000000189 }, { 0x86e53e516de1a53c, 0xc2c8e5ffda3daad, 0xec5de1465b80818b, 0xaf2dde21a1663c28, 0xedd57159b96ac111, 0x803fac37c331d9fb, 0xd012b8999a1d5914, 0x607a0e3cde39f842, 0x000000000000c2 }, { 0x790306c8f5cd39ba, 0x709d66393d3fe967, 0x5508025fe15f56e5, 0xe417bbbba89ec760, 0xbc9ec47097fffefd, 0x8aace0e8a0bb68e2, 0xcabbccedceca7510, 0x917420c0ae7440fc, 0x00000000000147 } }, { { 0xa49d9bcf1d2ec05c, 0x8499acb4f238be29, 0xceecc4310c0e2a22, 0x4039ed35814a15ae, 0xb6b4959c49a7f515, 0xce85c357602bf6ff, 0xc01c3d5751e19962, 0x9ee9bf79565b7044, 0x000000000000c8 }, { 0x63dc305d06680380, 0xda6c609250a46fa9, 0x7145aae61e48e3e7, 0x3da4b05c0ddfc88b, 0x6c32c74a76223b62, 0x593f5d136f1928bb, 0x8645a33a101a2148, 0x873c767e5556246a, 0x000000000001fd }, { 0xe1420d79612cc1e7, 0x29052a6d209f5c87, 0xe44b1899ccefd953, 0x86ce511e0f54bad9, 0x5469793a22b82258, 0x8aaf2384b457e479, 0x142577917e3c7d77, 0x5377f86947a35829, 0x0000000000000b } }, { { 0x3d412d0238d90c5e, 0x5369e32d83eda405, 0xfd150485b1921d0b, 0xec5ff56cad3b526f, 0x25df4cb19f53d69d, 0x48e67a61e01e54e1, 0x488f6a58e96e9d8b, 0xacafe55ccea22523, 0x0000000000011e }, { 0x9783c47135512fed, 0xc630fac0425341e5, 0xc82b5015b897dd32, 0xc7ac2dbf8a472795, 0x5e217e77c2bb55d3, 0x1ce8e018ad4ca8e8, 0xe30b559ffbbd5e4, 0xf617554ef2b43d0e, 0x000000000001d8 }, { 0x623a03cbde7cf86c, 0xd95189f405cfa944, 0x1cea5dc6b693499d, 0xa87934f1b84af135, 0xacb2b99ff3f5949f, 0xd30944a78c5c6d2d, 0x46020846a4b350d7, 0x4294330ad82762c3, 0x000000000000c1 } }, { { 0x4b189d2fdb7cd05, 0xf57a93ceb3d6e198, 0xbf4bdf3b10eba0d9, 0xe7de69992e098849, 0xa2005805b699033f, 0x70852cd2c18076a0, 0xff5b7722f804b1d, 0x4056f94f9d83d7a6, 0x00000000000021 }, { 0x3aead4e75088318b, 0xcd2e38fc804a0ca5, 0x78bac1723038886e, 0x1a94dae1d4b655a0, 0x3ed23d6bd44e5beb, 0x5941b18b7da3304a, 0x872543da16bddba4, 0xd9197ef693a3da48, 0x00000000000176 }, { 0xc59247bd818453e2, 0x33cd350db85d1287, 0x9d7cf8f69a7be941, 0x41b93389cebfd259, 0xb0663f540553487a, 0x20e8f6b1c58e4ac0, 0x317b6bb9cec3b215, 0x772f352842398c1d, 0x00000000000147 } } }, { { { 0x44210b4665fbbc31, 0x3844d6eebe28393c, 0xb60220c72e2dee8f, 0x9a95e1c138736e3f, 0x603a0edfdafd4103, 0x39329362f289f520, 0xb80b1a388f6355cd, 0x1d898d988b30a374, 0x000000000000f3 }, { 0x73642271a7b212b4, 0xe172be1f0f0ca8dc, 0x5793084980b615ab, 0x2423fa2c336059e, 0x96b4f69da9e01c5a, 0xc279db784306cf31, 0x21a1bfbcc3b069c6, 0x4b18ceffc59ab678, 0x00000000000015 }, { 0xe65661b77e98eff, 0x4b0d1586a0f7ae24, 0xca6b16f77c3b152c, 0xf43537313dd13b86, 0x20dcfea913e23dca, 0x40f23ec6d7c81983, 0x451be799bb2e9fad, 0xe3da8072d23cf11c, 0x0000000000016c } }, { { 0xa60d9bd03d95b609, 0x3698b2692727ae4e, 0x54d77c592becd4e9, 0x3892fc36fb53d8a7, 0xa7ebe027155a87f1, 0x8558adc46d5e6d63, 0x85d58dd445d5eec3, 0x60911747f1b274fd, 0x0000000000016d }, { 0x4b5f58a39b6ac1bb, 0xde7fb5e8688318a5, 0xbeeb059cd289c6e7, 0x21e0a3d25968b56d, 0xcb842bbca54b8702, 0xc87fcdda8c6e0844, 0x24fc0ccad0e942c7, 0x54868d1ca7cbe12c, 0x0000000000013f }, { 0xc593990ab0a27349, 0x6177106992a55364, 0xb289ff1152846edd, 0x1be5fc0887bec43f, 0x60f980d53d507e2b, 0x657789e67660c581, 0xb9a24f1f3d97c5c5, 0x775035de03e25cfb, 0x00000000000141 } }, { { 0xdf14b6054f9698fb, 0x7a5e069768e8e0b8, 0x6fb892118811cebf, 0x4440be89715a8cef, 0xeb4812a1450a58db, 0x84cee1efa51960dd, 0x62f871fa4dbfa47c, 0xf50dddb31618f9c9, 0x00000000000087 }, { 0x29d743121152166, 0x69da6852d0610304, 0xb524dfb4c5f3b965, 0xb984e4723aeba73a, 0x11aa590d68b49aa6, 0x6221f69ed242c8c, 0xb050e5039809b2af, 0x7be160edce21ec08, 0x00000000000149 }, { 0xfee91f10454e52d7, 0x246a9dc3e33088be, 0xd2ce60a1c84167d4, 0x8bbdff9e4feef81c, 0xf6e78fe110f1619c, 0xf9e28eef80ead0d9, 0xcdee2b656bd8e81, 0x4f202e363dfbbab1, 0x00000000000122 } }, { { 0x166eb434165ac2c9, 0x780bd090a75bf436, 0x60cdd3ac5aa46363, 0xf85b703666ac5a69, 0x235d2bb3f2ee4bef, 0xe320d988bee8e99, 0x31db74ceabfaf847, 0x6bf6043e1e0baefb, 0x000000000001bb }, { 0x114908a965f2b040, 0xcd506f862b2db432, 0x3fc56e5a9c8913d0, 0xb416b0643c5b091f, 0x697e606b08ce00f9, 0x5f9a1d5c2c5f62b4, 0x84386478d00c4de8, 0xbd576e5d074cb9c5, 0x00000000000093 }, { 0x59ad263220a0b2b3, 0xd78fcccfbda22002, 0x91029a1666546a63, 0x1ac04abb3b008431, 0x5c85f72561f02871, 0x7e66fc61577eb9b2, 0x55e6681a7ef5d58f, 0x8ad17ed50498dba, 0x00000000000075 } }, { { 0x9b47e9dcd682be4c, 0xe16b96d47e894815, 0x91c3b8171a1603cc, 0x665d2a627b2a12b8, 0x28ab1e1a7eec1e60, 0xa3e4bc03cc996297, 0x22689a6fa1b21ead, 0x93ca8ce59a9222db, 0x000000000000a5 }, { 0x563b77e090b6ed2a, 0x67e30fdbf022676b, 0x805cbb019454f144, 0x6e740bd5cf6370f2, 0x908c161e928585b4, 0x1c00aab326d68265, 0x90b1e647ccae1ab1, 0x991633357736ca10, 0x000000000000ac }, { 0x92d491ee546af1ea, 0x82b017cea3fd630, 0x212f13db1aaf3607, 0x7e157804e76e2d42, 0xa3aa9279ce9f22c6, 0x6b1e81c9639b1131, 0xb359fedcd054b47b, 0x9f16c9d3833cd60a, 0x000000000000a9 } }, { { 0x7f70aa54698c6610, 0x44c67940039bf0e, 0xce353391fc653c6d, 0x99316c0727eb075, 0x73d184d1f12f81c3, 0x58592400d3f1d261, 0x41271f1b56f50793, 0xd5597e449d3485fe, 0x000000000001f0 }, { 0xae92af37ba55fc7e, 0xb66387430f7cf46e, 0xe83eb24f265111d1, 0x8d2364b52c361578, 0x7125bc89934599, 0xb4fb020cd3d0ab24, 0x573f678471dd407a, 0x51ae90c86a4f8254, 0x000000000001c0 }, { 0x23a716a3d990ea68, 0xeecd00933834bc0, 0xaca5e2f9395696b2, 0xefd1b3ded47ff460, 0x3b1c7c11de84aa76, 0x3eabfbb0063ff8f8, 0x2ccfec31de7c839e, 0xa4017cdf59ac07e5, 0x000000000001ce } }, { { 0xa27dac5230741dcb, 0x5ad1a3d8e3421e93, 0xda607a0cc4b54c86, 0x6ff22eb5673ffb32, 0x7b04a32226001d09, 0xd811d66718613565, 0xa0e8fb49cc571f5e, 0xbbc91dd9832f361f, 0x00000000000023 }, { 0xa7dc2d5e1646b064, 0x444bfe6d9a34f975, 0x301ab16192b198ca, 0xeb21f2831c4541b8, 0x4e46517413d67911, 0x6a9122fdc38f5ba5, 0xb8f089d076ffb356, 0xace443e8e8f173e5, 0x000000000001e6 }, { 0x572982613430286, 0x624a6f3fbf9410ae, 0x4a4e0ff47cb36f49, 0x8fe4f7603bf6faa5, 0x5343edee644088be, 0x1b7e727dd129f62a, 0x502cf3d0240d0f57, 0x271937f08e6ddba8, 0x000000000000ae } }, { { 0x1db9cfd99d375c5f, 0x60a0ede24b57930e, 0xb4de832fa812b38b, 0xad539ec266dc2a62, 0x9a4101b8fa53f65, 0x2fc451e01f30f800, 0xc454d48efbe2bcbd, 0xb1455c3a0c6a834d, 0x00000000000186 }, { 0x627cd9957d15fd1d, 0x3d5da5c2b214aa54, 0x1c531b1d5d5c89c0, 0x6c0c4c3cbcc0bb70, 0xd8df9b0949f3e79b, 0x7640adb41f7508c6, 0x55c2d64b32d5395b, 0x62d12ffd9061bbaa, 0x000000000001a8 }, { 0x7b59c16f5ac690f4, 0x11fa3b0b3e930f9e, 0xcb345053b91de126, 0x84bd59d7524cfba8, 0x53e97ed05887d3f8, 0xbc78cc88dd6d262f, 0x3adcffd8c61c2763, 0x71c846bff05c8ee9, 0x000000000000c8 } }, { { 0x60236bd8a9397488, 0x22d5b2694aa89465, 0x8d356a3a677d85e8, 0x1a1af94d3962edb6, 0x3d7cd3e182321bb9, 0x2db6b75f0fbdeaa8, 0x50105f3b2725c44f, 0xa144f680a349866d, 0x0000000000007c }, { 0x89a24bb48dfd3c50, 0xc5e6844206f5c0ac, 0x45e3f9af09939809, 0xd3ae206b4ed2c88d, 0x665b2a91444f64bf, 0x48211f2e4e0fc843, 0x36916e36bb39c80f, 0x7ba7ff77e483c2fe, 0x000000000000ea }, { 0x3a4ffb05763a548b, 0x2e3c06d4567ceb10, 0x3f6e8469fc50a7f4, 0x3784d569fe72a17d, 0x332a841db5601f5, 0x925c085aaa8fff53, 0x878f72e0b60df9db, 0x2c067d889be077de, 0x00000000000017 } }, { { 0x953b5f902c0568c2, 0x3c6acb0c13d367b4, 0xef7ebf1676e8c46d, 0x31510eb425d36f2a, 0x48d7e4ffab04e691, 0xc42e7bab64fcc35f, 0xeca764528dba31ad, 0xbc5a91145a3f2246, 0x00000000000086 }, { 0x667c767d4d0b269, 0xc98fe551c19a1aaa, 0x9c8b3982ca073372, 0x2884b4041f9fc474, 0x84607fe8361f151e, 0x41d20bcbe3959735, 0xcaba58ebb9c6fe90, 0x3d449350ea4cca39, 0x0000000000017f }, { 0xf87edadb104a404e, 0xb715d5856011a534, 0x2fb965a565e9ce5c, 0x18fc5aa0e176ae67, 0x4d88e2e88aa8ff8f, 0xf26c5692bc673e68, 0x6ec9e205c85f636d, 0xe59c5f38998df66e, 0x00000000000113 } }, { { 0x3da8058768c452c3, 0xe6c968ca9c19b837, 0x7025fd062cd09738, 0x49d97ffc67576860, 0x13d8238fca638afa, 0xbb29ac961d1cdf07, 0x5d684ea4cb6ebded, 0xc18e19de39231992, 0x00000000000129 }, { 0xf16e20f50dc25f21, 0x990b68a5003f5d30, 0x8a3f1a9b88aa9722, 0xf4dc5dc0ebc1d861, 0xa84527881005e6a4, 0x998cf2d0c48ff42c, 0xeec77e421cdec2b3, 0x11b4743e950371c7, 0x000000000001be }, { 0xfb6aeb3bfbf72e89, 0xac872b42ba680ba3, 0xb0a8408ef2e026bd, 0xc66f1412d4924b14, 0xbf30a440c6b5b473, 0xa79b198e7fb0db59, 0x53f545d4279c5dea, 0x2fab201b99ac159e, 0x00000000000029 } }, { { 0x90bfd6386534315f, 0xc1adf0c68a0f8d09, 0xe08c15c590214c15, 0xc1af78d898262e23, 0xae26d89bb5750868, 0x2ab4e6ac0ffd486f, 0x3ec2bd7ff5072e9d, 0x529181368e022ef6, 0x000000000000ea }, { 0xf9e2af4c63de801b, 0x6dc483b8e56e4e6f, 0xe3448decae1031ff, 0xc31e76433865b194, 0xd75f07630b6f068b, 0x6c3f2a5a4865f122, 0x49154c8506530c9a, 0x3b117f69520c9b83, 0x0000000000008f }, { 0xa17c088abf1f73bf, 0x726e6df04b613219, 0x25a5834043073207, 0xcfa44b076d67ab10, 0xdb42cc60addde6c0, 0x749f41443e0d746d, 0x3a6d73e6675ff091, 0xf827d045825cca33, 0x00000000000066 } }, { { 0x120bc2fa3fa08897, 0xa49708efd3ad9dc1, 0x5d37c913f805b6e0, 0x1279aef81f31600c, 0x7a0f44024ad3e2c0, 0x327f996f48bb514, 0xa26fbf05f9d4e799, 0x76b9a52fedb96471, 0x00000000000041 }, { 0xeb72bc0611101407, 0x60e7e7bb9461237b, 0xfea775515b4bbc0d, 0x27d1b74538dfb639, 0xcdf40822d967c70a, 0xad13f8ee85078c5f, 0x249952650910e1c5, 0x74a2e7643c0f379f, 0x00000000000194 }, { 0xa0bbca8ed992bfb2, 0x626c264e7b4e3315, 0xa67aa754882c9ccd, 0x978e4e4161d52841, 0x91c4bd01ea145c32, 0xa95b1071a9de37a1, 0x8d6a8db3a60abcd2, 0x2eba0be5f0eb290b, 0x0000000000018a } }, { { 0xeada0bd8b0692df4, 0x7c952298655da711, 0x6981e4927cc17527, 0x73d675c4ba814e39, 0xe9dfd80ade7c9c9d, 0x211c5393ed46873d, 0xeccee93730b8b238, 0x4f12695d8a2e4139, 0x00000000000039 }, { 0xa9d5d4317524d6b0, 0x73a5e07e53886856, 0x89f9e773b26dc8f6, 0x175ca5f9d2c501a3, 0x15c8d7d8e734a57d, 0x92259af3281e0b6f, 0x1e4af3713bd517b3, 0xa815b1a2644aebfb, 0x000000000000dd }, { 0xe04a8f23b5d8840c, 0xbf36b71b17ffb3d3, 0x7fad71d5f18e6369, 0xee72332897b5981b, 0x19fc2bb9f36b6d7d, 0x276a58204fd5d276, 0x45e2497cdb2ae2b0, 0xa8526996b852f3ae, 0x000000000000ff } }, { { 0xd423de9bb638faae, 0x729bac292ac90128, 0x473bd4be71cfde36, 0x9bb34b796530b31d, 0x230fd19506c79cc8, 0xf8e61f6f095b3535, 0x96fde323e8ffac40, 0x4a4aa2f6fb7e1677, 0x0000000000012c }, { 0x3b61bdf2c40c9d34, 0xde98aaf88886e8e0, 0x3f8907de1d296e86, 0x39249603e5b29367, 0xd6cd1406620c28b8, 0xc097c9c22ed31523, 0x7e75bb25f8be8286, 0x9b3c08bd0eba725f, 0x000000000000b1 }, { 0x89431e4fa55e75f4, 0x3230d097864af1b3, 0xcb5f9b6875531493, 0x29577a5b7206c331, 0x90a8b2461c451c34, 0x904e4eb4b89bd408, 0x1e63e2c1ba3d498, 0x4da0ad7fcea667d, 0x00000000000163 } } }, { { { 0x77a6755c3df5e18, 0x73311924cf219297, 0xe0742886822854a6, 0xfbdf6237cb16e9e, 0x6a950cb65e85f4b3, 0x7da407fd5c8ddd0, 0x5586d0677f5081bd, 0x99e8524ff6bdf243, 0x0000000000006f }, { 0xed0dc7f7b459dfba, 0xdab0a0b758555257, 0x4febb17d698d462, 0x279584bbf359492b, 0xc303652a0e9ef66d, 0xf38d967dd2b89f9c, 0x4fbfdc863c6a5ab0, 0xfe8029aa29ce6385, 0x00000000000181 }, { 0x62bd3a9f493fde0, 0x895eae938dbf56a4, 0xbd2d199b99def98c, 0x6b0c539b5899d360, 0xb7995c3698714b26, 0xa8e37a22b2ea3fa9, 0x7acffd6270ef4de8, 0x805907cba97fc619, 0x0000000000017e } }, { { 0x1cfea72c1de18075, 0x71c0a0a56affe04e, 0xce18d4fc1374fa5e, 0x1d0153927b47c461, 0x7e4fca02c5eff9f6, 0xaf345df13cad3fe9, 0xfa1772638a336eb5, 0xccf5599ab5d12f96, 0x00000000000197 }, { 0x62c8c9c6e085e54a, 0x8aa789268ac4e8c5, 0xa416110bd98d715e, 0x90fb45ee9597390b, 0x88b8e7f9afe17771, 0x23245115aa5da178, 0xf9544a045a324d21, 0x7c9152480c03d913, 0x000000000001db }, { 0x3d004aae23715a21, 0xc4bef3257ed97815, 0x2047883ba2affddf, 0xeab830dc1849575, 0x32455592eb8ae566, 0x890e86bc3d6a6fc7, 0x33caaaa4a3d797d6, 0xa39b835f53df1e94, 0x00000000000053 } }, { { 0x5f215cf354d76f6d, 0xac13eef18a29b525, 0x2c7c2a948ed7c719, 0xe41bf58cb4121447, 0x75e8eb0bde259423, 0x9b13ee7abe0183b3, 0x845a724e38ed4bc5, 0x6dfdd13f588b9260, 0x00000000000019 }, { 0xe9b51c557fb88f0e, 0x7428bc1312f724f3, 0x464b134bda423590, 0xb010b5d2ba552448, 0x6d210b89cbdaba56, 0x93abb0fbe4f69cbb, 0x307b10eeac700e65, 0xa8f6571d8b1569ec, 0x00000000000018 }, { 0x14ad7bea08c5ef29, 0x21115d6b978ea8d8, 0x22b86c93b0d8f5e8, 0x25ec84817d0a5ad1, 0x9aee3bf545e2dd3e, 0x4b6d51f6096d2406, 0x788c8be3b785fd4d, 0x88d220ed069e787b, 0x0000000000003d } }, { { 0xbf86956c2bdbfde5, 0x60c436f57af046fb, 0x43ab0e5aa00715b4, 0xff1b4f9b5ce9dbd2, 0xdd705a6ebf8f3ddf, 0xb164f9c4a2aa6eea, 0xfde62a834fda1665, 0x4cbb995f0d010cbf, 0x000000000000a3 }, { 0x654a1f96d56aed4c, 0xd80f29fc9de364fc, 0x4be12f4fcb7f0f27, 0xf9818d5f9e3cce18, 0xef3fa7b19ba6869d, 0xb3a9dd759c44a78e, 0x8260f558193c489a, 0x7a8af7dcfc8cfa61, 0x00000000000021 }, { 0x610d670b5fbb2321, 0x53123caaf3cccb28, 0x6643d4b94fae619f, 0x493507f2976735be, 0xdfca2b42393e9cb5, 0x69c5ea32fe31da79, 0xf9f9b9e5c854c96, 0x98db67bb7897c09d, 0x0000000000009f } }, { { 0x583959b3cd5c23bf, 0x5e5852dc90248afe, 0x221e7946adf5ac62, 0xb62da09544a4ccc6, 0xe2566bcb013ccc38, 0x84826e4ded261eda, 0x31355d45accf8307, 0x21f47a4761bfb021, 0x000000000000e8 }, { 0xae7ab02127c44e1f, 0x31c71d6c51419ecc, 0x524a297adf28a516, 0x3a8e9742df52557b, 0x7af6e57b61e44906, 0x764bad1d0acf0a51, 0x9cd6b67f6a11fb72, 0xfbac8465423e9f0e, 0x000000000001c7 }, { 0x849d5d6b314dd65, 0xb96976281c16d606, 0x3ce9dd03c4a8ad9c, 0x48c541843d81f3cc, 0x7ae522e06215be1e, 0xd98f7f0765fd07eb, 0xf375760a503cfdbe, 0x9ebd1a36d3a9e3bb, 0x0000000000014d } }, { { 0xe237503995833458, 0x72ffa5313f0e6ee8, 0x1e0dea4f9629b8bf, 0xbd12aed2240dd85a, 0x8a71ef782810175a, 0xcc32dc2258d33d66, 0x8b68a380a0f3eb4e, 0x1d042704fc7215a3, 0x00000000000057 }, { 0xf96c51bb48d09ca6, 0x3af3afde24e250d7, 0xe8f3b4a99b041515, 0x1df56057906443c0, 0x8ab644c216bf7f30, 0xba942649341700bf, 0xce91d4de114998ae, 0xf5925d1adcec09f6, 0x0000000000001e }, { 0x6a6e291cd3b9b201, 0xe1197743e7ec4bbc, 0xf4b2fe811e8e9a37, 0xb5f0256cc304cae, 0xe23c024baa56dfd6, 0xfcbc431cb15a177b, 0x578579f221551eee, 0x608f0ee9b0b0e92e, 0x000000000000b9 } }, { { 0x7e2d65d83a7a654b, 0x48d577fea9ee4374, 0xc273cae4f9b682c4, 0xc517298c7da43e2e, 0x478ce336711e25a, 0x32c995d390347168, 0xdb2b50ffb58e491f, 0x22e8d54997d71519, 0x0000000000008d }, { 0x326a942d934d7f07, 0xc4955a3a6b718e3e, 0xcf9b97fe82f18f7, 0x536a8950a85e6dc7, 0x34c3d201027f8bc0, 0x317d12dafc018dfe, 0x50f66a29e9bc9fb6, 0x52b293f52c5d5390, 0x00000000000006 }, { 0x7fd65a939850ee18, 0x13cf62735405cbe, 0xf32a38382172f433, 0xb52922e8096ad37a, 0x1ebcfab459d9e238, 0x761be97305031c28, 0xd15c55dc3e0f11f, 0xe0977339b324808e, 0x000000000001da } }, { { 0x17709fbda2e1e6ff, 0x17b29a5b78ec6c42, 0xa1199e9f95e709b9, 0x7f8ee7644451919c, 0x7b891712c1173fc, 0xb4b9671973750663, 0xfe08e2cd5ef14a6b, 0xfeaac4dd2bb91ae4, 0x00000000000160 }, { 0x2059fc1bd8003a29, 0xea9d3324ee24ed3d, 0xba1207d543daf82f, 0x4dc27cbc91ee84f8, 0xf715fc3d1fa198b7, 0xb820c4fd55be48ad, 0x4571bdec7ff73395, 0xe4aab02f82050b4d, 0x00000000000163 }, { 0x7610f2dbee2dcdfa, 0x4540e9988dc250c1, 0x1114b91202d62146, 0x5f63edf689f3ebdf, 0xd6072449afbfb248, 0xff92b649b5ae95b7, 0xa56867df0801d7a, 0xd1b4b32cc09ecef8, 0x000000000000bf } }, { { 0xd3687c10196ed0bc, 0xd9a3a140a7bac0f5, 0xfaffcd22dd2a3b58, 0xfe55cdc36f59f459, 0xae9e7cbec2d37c65, 0x6115d053b420827, 0xb8b58f7742466224, 0x23795048f9d325e4, 0x000000000001a2 }, { 0xf53734bd304883d6, 0x3b0db414305cb64e, 0xe6763fd6ca728e50, 0x56a5f70b6c8d8a7e, 0x8688a5cb851def11, 0xcc949c9876879872, 0x9061e67cde92702f, 0x63db08742adab913, 0x000000000001d3 }, { 0x3eb2d89ac75f89d9, 0x3fb943660f9eba30, 0x51f3470bd4e9389f, 0x5fe2bd578f7e115d, 0xcb5fccb9a667ddb8, 0xca8a12966e1c6836, 0x4eef104875d1f562, 0xa432e5422acd8e15, 0x000000000001c0 } }, { { 0x693cd33bfcaf9c6c, 0xff75ce3180625eeb, 0x299d0cb6740c1831, 0xe55878d692988543, 0x9aeb0b78bb540b78, 0x9513ac0bb73765cd, 0x4eba51a96abed237, 0xbd1cac547aefb5fd, 0x000000000000d9 }, { 0x30e5654bc8d889c3, 0x98bac9de65b75404, 0xe9b3503d01a2d030, 0x961296769bab3b71, 0xb56778ab8a683c11, 0x8fb0b3a25c6f3254, 0xab98ed371cab86b1, 0xd37eabfc2b8606c3, 0x00000000000013 }, { 0x20918511f7abb8ee, 0x2e80849544994453, 0x26b01281dc96f9fa, 0xecb0b352d5592311, 0x1b43875891992760, 0x15b72c9a94486fed, 0xd8cec85536f319b9, 0xb478f1f9619e8e54, 0x0000000000001d } }, { { 0x8d2d3407074ffabb, 0x2b1fcd194e64f79, 0x911ab91d4e208fdd, 0xf7bff0511073fd61, 0xe452eaca31c09659, 0x18a379899ac5c0c, 0xf88a0517ca2b58dc, 0x814d2500d1b7909f, 0x000000000001df }, { 0xb5a2fb77c2ecc5ac, 0x2274a56bddce991d, 0x71f7be8e8ec4a8fe, 0x474139c34b003365, 0x56c4ee0aa15f8290, 0x6882f30d3fc5d632, 0x87e5c5421f83b0a8, 0x93558708af3eb14b, 0x0000000000004d }, { 0x9f7dc0eb1f29a769, 0xa0a08b394cb58c3, 0x7dc6ed47139862cf, 0x2b6afd204d052ff0, 0x387e79da8b54fbf6, 0xba2d4ce2105dd059, 0x24cd78e548f4273a, 0x617ec8e13dc54148, 0x000000000001cd } }, { { 0x55a88151ef6917ef, 0xe397e0d6080ffc9f, 0x2f1f025f03add875, 0xab61d33cbbdf1cf1, 0x30780ed991c8191f, 0xfbcbebe327115fbd, 0x6309ae3034908f46, 0xa6349f336d708746, 0x00000000000156 }, { 0xef004e76fece2110, 0x19ab374c1d059bba, 0xf6dc6a71408be1c8, 0x95d928494bb7c69a, 0x2479aee36828bd24, 0xb40a0af220ef4053, 0x4b02fb8899cf57e9, 0x30cd16e9e0edc50d, 0x0000000000017e }, { 0x1803ee3be203157b, 0x397278fcc14352e1, 0x989d2eacbf1db490, 0xfa10ef311aa073d2, 0x8f36ba59b6dbbfba, 0xb0fda6e453d76dd4, 0xbff13aecd2b10967, 0xfe25a6a9c05e1d46, 0x00000000000095 } }, { { 0xee49086c36b59ce6, 0x692d80343a98e93f, 0x5812bf054da7e9fb, 0xdbdd5e39a4a3fe2d, 0xa71c9c93660e0df8, 0x17e6c020626981f8, 0x67c2643987f03275, 0xf79074ad5ba8eefc, 0x0000000000009a }, { 0x69a0f2c582137c35, 0xb45c268c295c6f90, 0xa829ec1ad1026c22, 0xc711c667e4596ea, 0xea83a4b02afe28d9, 0x98b2ab6112a5f559, 0x2160296402b7a586, 0x737588feece45def, 0x0000000000012a }, { 0x3add99282d126575, 0xbfa56348d38568af, 0x97a222e24448ddfb, 0x74c1e72d8be370d7, 0x311a12b92221b886, 0x870b2992fa42c906, 0xd1f37ae6c2e4e0be, 0x5eb1b76a45ca4c11, 0x00000000000095 } }, { { 0x5dfab35562c2ae44, 0x895f9f96403b7988, 0x2a174496123c85bb, 0x79781c5bf5666f33, 0x10cb50640f5fcf63, 0x1281ded652ae6a7a, 0x44428db6a6eac09a, 0x604c9fac98ae8a4b, 0x00000000000059 }, { 0xe522c34a9b74b924, 0xff26d647a798d3b3, 0xee1ea519982578ac, 0x37ab95728f42f54a, 0x8ac61c67faae1ce5, 0xfbd4df261d278045, 0x8ee949d3df482190, 0xd1c79a287f173b93, 0x00000000000108 }, { 0x977f8809c6d1cb57, 0xce8664a3f0e796c6, 0x7c726aebc4940af0, 0xe48e75afb9863515, 0x288abc060564acf9, 0x96005e0a324e713c, 0x7f4dc21ea91cf7d5, 0x7fa89d5511dea78a, 0x000000000001c5 } }, { { 0x4b605be6dd807aeb, 0xaab1836dfcb9b5f8, 0xf486dc8fca095839, 0x7ab5d4ab4a585e9f, 0x51b0e5dfcb6db01d, 0x29eff92bc1a2fcd7, 0x9345cfd334cbfa69, 0x4d955ee46c42a052, 0x00000000000154 }, { 0xed387a8818674d44, 0x12816666d4dddd17, 0x9f2bd8428655385f, 0xbb71e43e0ad2e49b, 0x1cfad7166b83252f, 0x3ab1b35e1a31dc2e, 0x9f99f3014a891679, 0xbe13c06c138f809c, 0x000000000001c8 }, { 0xd872d441074ef59b, 0x3125daabae8429f7, 0x1826fd692d5b1f3a, 0x61bed0f4bdb3ffda, 0xd10395d8b8d6ebcb, 0xe0f26e79e0a7ffed, 0xf7232c9c84b3609d, 0x4a5af3641bb53c71, 0x000000000000ea } } }, { { { 0xf239c418bd1acc0e, 0x5c38ffefa342403d, 0x66518f311b14b6b9, 0xd5dab26b3afef1af, 0x44782adac45dc2c6, 0x9626e2dcf1e1dd01, 0xe5f84dc428431544, 0x528b70bee40f479f, 0x00000000000115 }, { 0x157d1890fbfccbd0, 0x43e225cd72e19ab0, 0x990ac6e8c0794afc, 0x9306edae28dad150, 0x4a7526c2cb1618b3, 0xec240b2e001e2f4d, 0xd3c09882b01e2493, 0x64baf4ba56ad800c, 0x000000000001fc }, { 0x88b2f5dfd0f698c4, 0xee6db30329315ee5, 0x3e6e280cd5084c4b, 0x95446cf0251889b9, 0xe839f6a31f83622f, 0xa207a02aa69fd47f, 0xc094da8ed15a00fb, 0xb77f8114f8b12d91, 0x00000000000062 } }, { { 0xc235541d265680cf, 0xfc1ddb1242fd58b5, 0x9149407e1a9b0a65, 0xb8d3d12e084eb9c8, 0xe00bef49f36317a1, 0x9dbcb35edd60e2ea, 0xa29fb1a1ba390f80, 0x951e016b4af84238, 0x00000000000145 }, { 0xb4b41415e3085df5, 0xbefbb776c808486b, 0xcb937c52af73645c, 0xd58f73e598c1403c, 0x57093a26e254af4b, 0xb73fa0f821eef047, 0xd978bb1726ea9382, 0x298f62501d8d26cf, 0x000000000000f6 }, { 0x27be487b36862fd4, 0x6096c7b2ad2b41c3, 0x2e389e111c269b7b, 0x9121d304bbf2ca58, 0x758452ba3579b965, 0xc40bd75401c541b, 0x2b444a91bd8041a8, 0xe91a94a369170416, 0x000000000000b4 } }, { { 0xbaf1f983d30d8ffb, 0x88630e94d3c6b265, 0x57a07e871ae0e325, 0xa4ebfd13538e99b2, 0xf9f499958bd791d5, 0x2ad9121dabb50206, 0x913b4381e9a42495, 0xe712b6293cf2f4c3, 0x00000000000192 }, { 0x52b5a5c310e1c0c9, 0x666b783cb08134be, 0xaa620afa0bf69f2f, 0x51582b06efb589c8, 0x6405062c5a86035f, 0xc26c4d05b3f94dad, 0x6a70699c32ddf163, 0xc35284f22cffed9b, 0x00000000000127 }, { 0x74c35b12a500f956, 0x59a0d8c71369e4a8, 0x720656438d4b23f3, 0x72ba245f4ab08eff, 0x9e9b905a7a230ae3, 0xbf1ef9954efd34bd, 0xea9b6847b99d86ce, 0xd19d53c239db1ba8, 0x0000000000012f } }, { { 0x7dcca58533ead54d, 0x126cd3c57c9e2f1c, 0x40399ce793b25ab0, 0xaef851d7f727a25d, 0xc7d068177f7f95c4, 0xab64a08bbb2a4e1c, 0xc6ac899eabed6ba4, 0x45b03a03945253c0, 0x00000000000135 }, { 0x77a02cdd0397a60a, 0x2dd142ff3a8dcebe, 0x2c3a096a59ae60d3, 0xfc088a1170d714b, 0x91aa12cac6709e9, 0x3b8f5e6aabdd9535, 0x498aadbac98194a4, 0xef71fb574cceb67c, 0x0000000000018f }, { 0x2a85a5d4649467c4, 0x7f3c555505b8c1ff, 0x69e6489b26a9d533, 0x5865b0eb60e3ac8d, 0xc6ac9221349d719, 0x8f4e4d524b5fb362, 0x6bc5a6b320eb5aaf, 0x4e3972fc734b7ab, 0x000000000000ef } }, { { 0xe0a11c5ef00d15d6, 0xfd6579630c91e06b, 0x26ae8f6fbb7de49b, 0x4a67ef8bd0e3cb15, 0x162745f4d2cb80ad, 0x433db9663aac678, 0x172b7603a5fcf24f, 0x46a2740a9dcb0d19, 0x000000000001a6 }, { 0xaf98976d469891d2, 0xc3e0f62491e9c2df, 0xefb04a0bc414fedd, 0x8e6ea06c3dba1ef6, 0xfbc060798ddb9cb5, 0xd184a0bd71ebcfd, 0x5848f9b4d3f7be7f, 0xe55276e7fb2dfa59, 0x0000000000005c }, { 0x9c4fa8e3c6590ee4, 0x8e0d20ff5ca64d60, 0x4ad71ce63e28dab4, 0x209ac2125d362fae, 0x974bd2a3a7826b91, 0x6fee24f0da943bdd, 0x4a524f502d89f4ed, 0x9b2ee02a31fdeb25, 0x0000000000004e } }, { { 0x767593b4eeb72297, 0xd54fd196d3bd65f8, 0xa74dbff5d72e6780, 0x20908c9b8d6b6275, 0xa0c695384265a4cc, 0x91d73ca0c31b0c06, 0xdadbf715e4f2a4de, 0x35b48c7071247a11, 0x00000000000002 }, { 0xc1e813d43cb4bde7, 0xc8d7b80d8df93daf, 0x3d2af9e8cb66f8b1, 0xda38caabfe9b9963, 0x7c7bb6d56795df8c, 0xa8cfbf2e0e936f7e, 0x89b3d6d3ed80bd21, 0xd679a2a28466ceff, 0x000000000001ac }, { 0x66bc9bbd9e90a465, 0xde1c5de7f0d9cfae, 0xcf174d2ff2914dcf, 0x49ffce3a700dc135, 0x7b9e2654d1ff414b, 0x71347a3d919999a2, 0x19d4584461254541, 0x149ce8961577437, 0x000000000000e4 } }, { { 0x2551b478e837dc77, 0xa668edda58df84b9, 0x58551885c96cbb56, 0xbf44cf6a47b37cc1, 0xdbadf57c84003d04, 0x9e869e752588d63e, 0x7c106c2c1c532634, 0xedf82ab963ecb54, 0x000000000001a1 }, { 0xa5b638544c15b620, 0xd6212d005f723fe, 0x4ad8e25a28faf202, 0x9866356b948a6dca, 0x8dadc1de83c0486d, 0xfe0c755ea1adbdeb, 0xe5b8fc63444ff4f3, 0xfb13c246d887170d, 0x00000000000060 }, { 0x733269f9475464d7, 0xb3b5751249cd4197, 0x401b8e9525e275e9, 0x71a8d27d4082f942, 0x56aba37c0a011992, 0x165725ce7451036e, 0xda325dd65abc2d1f, 0x89f24500ce0770e1, 0x0000000000001f } }, { { 0x284f4462e872125, 0xf30fcda8ad5a8b29, 0xb2fe47f69087e9d3, 0xda70812724adea02, 0x7cdb8f5e704ffd0a, 0xdd7ab409c7398078, 0x19d5164501c22f04, 0xd02a74b8ef201fce, 0x0000000000014a }, { 0x3da347b9ef327baf, 0x54aefccecfddad8c, 0xbd4463c6277b3ebd, 0x7f206e02d31a9911, 0xe4ce0a16e116ac29, 0xa6619269b550ce12, 0x7af60de136973c39, 0xefc520a3808fc337, 0x0000000000008b }, { 0x672dbfc5664c99c0, 0xa1d6b7bc19e47f2c, 0x27158e196d3e4850, 0x4a7ee8391aacaa9, 0x7137353f9f958551, 0x6788428a8f5d0eb8, 0x4cf752ae5f1dfcf4, 0xfecd1b31f4590e4e, 0x00000000000008 } }, { { 0x198ff1eebd56e712, 0x5e2931ed9570886b, 0x8667501da64a4b8, 0x63af62d01068761b, 0xa9fff0da475fa4e, 0xf454978a69dc4ea2, 0x43e0621c1a118570, 0x2d798464d84b2db9, 0x000000000001dd }, { 0xb96cbf3c98f02160, 0x760471686f5f1301, 0x9c391da9da6a79ab, 0x98bc6501eb94e4df, 0xac672834b65bb335, 0x9cdd3584e381143c, 0x5a72fe995598ac18, 0xe05ed7406091e1b, 0x000000000001ef }, { 0x56d5ebc10c291273, 0xe00a7b53a2d3062, 0xf8aa7ae40bfdde85, 0x12f22d97e70aa286, 0x905119211b3daaf, 0x12f4372a4909c975, 0x8665c14740f2fc4b, 0x8b91e709215e6105, 0x000000000000f3 } }, { { 0xe1983bd8b1b7c846, 0xfad32a51c6d2085a, 0x5626642660750fad, 0xd9ed5128090bb368, 0x1840f0a1dbee5021, 0x881ea313397b365e, 0xabb7e75035d9db9e, 0xe3a22a3e89142288, 0x00000000000039 }, { 0x4277f10d75b0c73f, 0x584e247c3dc4bf2a, 0x64e128a613a69a15, 0x3eb34bd50d367602, 0xe9d766bb14ecc08, 0x16655fbfb2b21b4, 0x60d6334ed19c724e, 0xb346f117cad2b497, 0x00000000000063 }, { 0xc5b0f329be4190fe, 0x1e060e5a19ed8890, 0xd02aadf28538faef, 0xc75293aa35dd32a1, 0x82a41d5fb4a93962, 0xd5e76c19d11ac9b6, 0xf5c0948232362258, 0x8814e42a36105cde, 0x000000000000b3 } }, { { 0x335831403c2b05a9, 0x855ef53d3a1344ce, 0xc81433e28ae0c3fb, 0x13c2228f927f10ca, 0xa552ce3fbc4da617, 0xdb5f3e744a387447, 0xecb38273706a6a73, 0x2277d5f6cdb0da0c, 0x00000000000108 }, { 0xaff68f2852916a30, 0xe1c5e1b3a0f7ad8b, 0x3c582bb8cd21aafb, 0x2776d8122fb83eca, 0x31a4ba6561b30b45, 0xfcdd963813c98083, 0xbc04b0db92bb33e4, 0x434d4932bb292726, 0x0000000000002f }, { 0xd727ef3f53a37dc3, 0x9c577234cfff4dd6, 0xada597d37857928e, 0x8157958d04a9cd89, 0xe8e7579dd5bbd25c, 0xee15448dbbaf3a6, 0xddb105bbea02c437, 0x3056880adaf833bd, 0x000000000000d1 } }, { { 0x12103835f33b9da1, 0xcf5390631cfcfea4, 0xe08c5a641d76bcca, 0x6f9186972e1574ac, 0x6ba112c24d61851a, 0x77176af03b2e7f9e, 0x4ae42bed47a6f325, 0x33763fd09a1a1139, 0x0000000000003d }, { 0xbcbb1674a2371207, 0x29ffc683760b03e4, 0x613ffce865913257, 0x350f43712234f52c, 0xe0b2ddfa324b051a, 0x8bf789357c817f98, 0xc29ea72c547bac47, 0xd92a5a90d09aab2, 0x0000000000010a }, { 0x24e07a3eeecbf0e8, 0x7f02145aada8e36d, 0xa8945d9dcfa21c4b, 0xc9c4775d0ba3bdbe, 0x19db80dd4b1c192b, 0x393e9837a463c044, 0xf9642d9615d7a8eb, 0xcf8846cdbefa6f2a, 0x00000000000199 } }, { { 0x9b8c006fdc9db825, 0xf85b8462a29d57b2, 0x5188db9b60076208, 0xfac91db1f38d3533, 0x871a711dd07a652c, 0xd5ad306e7ffffcac, 0x7cef63573e764049, 0x5c31879542d959d6, 0x00000000000064 }, { 0xc198e7171b8d34b6, 0xe57208bd90d70336, 0x38c7c3e9eaf86e93, 0x16fdc50f39882551, 0x2edaa4df36fbe94, 0xbb5a9b57ffc34f2c, 0xd36ff539683ba2bc, 0xec52391ca69c5f53, 0x00000000000069 }, { 0x844954d4a962e5e4, 0xe0ef4e85aa536011, 0xc3fe832711e72cba, 0xbf90fa24221e0772, 0xfd69c31799102f63, 0x766a535e1ff42947, 0xcddbb1522bc86b01, 0xd6691205e6feb97f, 0x00000000000039 } }, { { 0xdff54d18611b4f1b, 0x39544b20121ef85a, 0x89d8e6252f7c5c80, 0xf8434edbfee5d5c6, 0x67af39876c22ca0b, 0x229f545950eed049, 0x8de2ba484fd76acf, 0x5aaa7de072bb9f93, 0x0000000000018d }, { 0x2f8ce7df895dc129, 0x7ecdc32538af5a1d, 0xab40bf14f5b3d51a, 0x492733b007af71f5, 0x1f38d1aca3b906ff, 0xf2520d2a7f15f190, 0x5e36960e76a5be6e, 0x4660c5f544b5ebb7, 0x000000000001bd }, { 0xdb3dddccadb27884, 0xc7b4c9b53995d61a, 0xef994b708c9a0eed, 0xb1dfe78ceb5818a4, 0x7a46480b90c19d02, 0x4a236001d16ad3b, 0x5604f1a37262a8f7, 0xdc28f8dd9791cb54, 0x00000000000153 } }, { { 0xabfa9e2b30381c07, 0x959ce8075205bcd0, 0xfdc8c381fbab41e, 0xd08df9b70a7777bc, 0xb2504840a19f21ab, 0xcac0f2d9b99539a, 0x1b5f777102b4a080, 0xd6b90f26af3864c0, 0x000000000001e1 }, { 0xabf90639410dc085, 0x9d06504842f78e49, 0xcc14ed8fad51aac9, 0x134e1726263717b8, 0xd112ac184c0c7b03, 0x3a3e2f5b607df4fb, 0x95bc62968855eccd, 0xd462f7ec6ce731e, 0x000000000001de }, { 0x95928f3c85c4b64b, 0x6ed6297e96e5fb7e, 0xb661588b23d3e60f, 0x6059bed2a3e03fd0, 0x881abbdffa5ada5e, 0xdd980ad833c9d98, 0xe4d972a899fed51b, 0xa29bed86d19ae54e, 0x00000000000091 } } }, { { { 0x159bcbcd756ad3ed, 0x51a944c56fdd223, 0x92ac337ece57fb0b, 0x78ec927e78906c42, 0xef0a7da1f8186e63, 0xbea0fb78d9100d64, 0xac528fe8c6b590f7, 0x7395800353cf5ea, 0x000000000000ef }, { 0x49c53e0c13b1040f, 0x8e5dadd65371ae49, 0xf8739c240eded815, 0xb228b3542f365e9c, 0x21ebfe17ebf1295f, 0xd1cf685d3888ad34, 0x34feb693e766fb5, 0xa4fc57c699a997af, 0x00000000000074 }, { 0xe4ea75e10d15b315, 0x27b36237d3bda1fc, 0x340e0397a81be23, 0x66b76f1fbfb0712e, 0x76575bb03457500d, 0xa38296c692d33d84, 0x95e112aca8fcae26, 0x853e7e009e57030a, 0x00000000000116 } }, { { 0x86aaff67601af029, 0x1e997b87b97650cb, 0x63e51cad7d9208fe, 0xd7b66152c3fc3658, 0xb3832836d6ed745b, 0x557cb9dc163e9c39, 0x3c62df55c8c54a3e, 0x65e6630e8ed2c4bd, 0x00000000000169 }, { 0xd4781deb4b1eb811, 0x91d33a735a91b8e3, 0x2b80bbb01dff328, 0xbcbdca3a2d994872, 0x62cb99f106660a2a, 0x9c05d03b3021da03, 0xb155b1155e343ac0, 0x59e76baf1bf868ea, 0x00000000000110 }, { 0x4e77e8b03d9d1a5c, 0xa5b9a0817b5de942, 0xe1c2bbcc3cb09c94, 0xba074a677a607560, 0xd49212383656a40e, 0xfc6eedd83f13b9a8, 0xd67a350367a4549f, 0x1c59d47bb5f94dd0, 0x000000000000cc } }, { { 0xf39a41d4b9cffa34, 0xee3d186f6b567e37, 0xc5e0d127a44a34e7, 0x184335334114bca0, 0xe7cc70bbc7241064, 0x347be14690cad044, 0x2ea344a7cc62bb7e, 0xc6fe5786ff8c245a, 0x000000000001d3 }, { 0x35d4f9bdbc19a2c4, 0x1f72653fc5e91ee7, 0x63647e4e4259a986, 0x28abfbc7c97da01, 0x264bb6c068e82cc9, 0xa50fec487a5768b9, 0x5c76ce03dd139a4, 0xc3514d59221d1484, 0x00000000000165 }, { 0x81e3edd36ae2802f, 0x7d0a33492ae19859, 0x751b289d956e3e42, 0x88a015cbaf558718, 0xa21a5b1c98de6f0c, 0x2703af64a8866494, 0xaddfdc626bf1c45b, 0x7860984b4ebc1d69, 0x00000000000111 } }, { { 0xe3842f6d3055d2d2, 0x4cf18a39e279c0f8, 0x6c9360bffbc4abf5, 0x6c1573bc5240ae61, 0x72f76f8c03060ad2, 0x1d8d2f030fa4964, 0x593701acd65cfcd8, 0x6d533351a5e1ade8, 0x00000000000093 }, { 0x33011e82a7567f89, 0x8195c74e5d17dc87, 0x84da93974f7c4bcf, 0xa3e5685fc5d0ca0, 0x7f5806def04b3a63, 0xd2e643222ec54113, 0xc3d7fa43b33d769e, 0xb5072aa853cc643d, 0x000000000001dc }, { 0xac1fa173ec64a2e5, 0xa6eafc538ce31a48, 0x139be90a360becc8, 0xabc675ac7c1d0886, 0x6c0e5c2c906a8f95, 0xf94ce0dee0fca0af, 0x57b127e0d61a67f8, 0xd4e0c4cf3879244a, 0x000000000000ca } }, { { 0xe62ba0a4e476db14, 0xc5a8126693bda74a, 0xe7ecc42b811ab531, 0xd65897e935bf5c70, 0xc917ce540486fd74, 0xd65be0ef40d2cb89, 0x41b7762143e8d9d8, 0xb519f029b847638b, 0x00000000000090 }, { 0x53f45257391e41fb, 0x65263fd450efe190, 0xad89f81417d17ef8, 0xc0e8a65a381ca67a, 0x89fc62ffd434fff0, 0xde9cf9ae8a19ee26, 0x405ffe62a31178fc, 0x525473dbc88d92d7, 0x0000000000002a }, { 0x2c6795951b943479, 0xe6f5b56f2057bd75, 0x7cd5b687de119012, 0x62a5337227ea14d0, 0x3806de10a5d010ee, 0x6889ca3773725c57, 0xd72f2cc955c99f1f, 0xd86d9d72f0c209e, 0x00000000000054 } }, { { 0xc842c107159d74d4, 0x2cd0e28bede2316, 0xaebb84d27c0491fc, 0x9112930dc7f1385f, 0xadbd6bad99dc57ed, 0x3a214c0e03d4999d, 0xc5264a3ec9f621c5, 0x862ef120103957da, 0x00000000000024 }, { 0xcd86ceff334c601e, 0xed18e48d2d7ffd33, 0x71e16d435f0f189, 0xf87afd07e77d14e2, 0xacc7b037f3c38296, 0xfb181664a78b5f1c, 0xfc8134ba9c9a29f2, 0xee49cdca7d9934ed, 0x0000000000005c }, { 0xf12b7fbf87b21a44, 0x467e173addac9117, 0xe847a7189e1784, 0xecd4388e8af8a175, 0xe215da4febe9d653, 0xba6aa572074eb4c6, 0x24336306a3965fda, 0xa2334f768c890a03, 0x00000000000008 } }, { { 0xa3e04654e578bf94, 0x1de2bc10e33d6b2e, 0xd1929719e80f71eb, 0xbe4a8f918f5542d2, 0xea8d1fd556799982, 0x24288006a42bcc82, 0xf952fe90fcae34b8, 0xdc6f3acf4da474db, 0x0000000000014f }, { 0x136c2f9a9e968824, 0xba076a6eb6c28696, 0x424f5ee863ed9662, 0xb75aeab8f34eca1a, 0x4a2f5299ac74bf74, 0x406c057cdfce269f, 0x29b0c041c4c88f, 0x9e8122b6070cc0fe, 0x0000000000002e }, { 0x7c2526622154dfad, 0x5776bad26787f048, 0xb8b3b25d5af75964, 0x82bdfa8bac523b33, 0x38eb579894857548, 0x84469ae2b124d886, 0x8611a669dc6624c6, 0xbf598daea8a43461, 0x0000000000017c } }, { { 0x8d65f736b637ae74, 0x820606fd6992b909, 0x18b947329fc6cef7, 0x20b4d2655fa344de, 0xe6a96181591ed201, 0xde96db4147761ccc, 0xd22deedddbc5baf0, 0x33de7fe37a197e19, 0x00000000000067 }, { 0xb431315bf208fd44, 0x3a35bc9fd9e46890, 0xc763490f58fdd165, 0xee6be89926cd03d2, 0xe199f71d108d2e77, 0x8bbf1c5643ed4be4, 0x8b7e10f98e4af815, 0xd016eb12deedd5dc, 0x00000000000174 }, { 0x6d2c85287372dc6, 0xfdb888cab68bb115, 0xb23bfb051c181d07, 0xe9272ef9f1a297c2, 0x4c1bbc9523932cf9, 0x9f71f659c00915c3, 0x11f2126cb4ae62d, 0xbb39372912857410, 0x000000000001d3 } }, { { 0x1f64297622ed09b6, 0x210de62be67a87b4, 0x6de36db7c1946577, 0x79c6add38423d1dc, 0x2734053e4194e299, 0x667f1f0dbe54f034, 0xa5083840c590870b, 0x1976908453d8a503, 0x000000000000fb }, { 0x76a74e3c3a8e6897, 0xc73c76a5d8aee82f, 0xb804298c6dc947df, 0x1e73ec4f4edd39d4, 0x3c7d44805fd4b050, 0x27a85c8d25ddc8a3, 0x43817b1c32404964, 0x22e8f04bbb8b5e14, 0x00000000000015 }, { 0x747186ddea187f87, 0x11ee28abb191494d, 0x32292885e52e4e66, 0x4b2257f66d450a46, 0x8ef2bbe43faf1b13, 0x5881839c559d5d91, 0xd95e3ff3f84cbdd1, 0xbf4807653724bcdb, 0x0000000000008e } }, { { 0xd9aebc39204856aa, 0x9b2caa0ebd0cb9d7, 0x681e0c57961e7c6, 0x94bceed0d0c9ebb, 0x4e30c57085e264a9, 0x57356341121b81ed, 0x97f558d6f657cae6, 0x26bd559476ddafd9, 0x00000000000142 }, { 0x5369a759a278b272, 0x6960798ce2aefd47, 0x72371238ff922dce, 0x7b0c361e60329add, 0x89892a4963d6ac99, 0x5bb84a5635508e96, 0x353dfcfbeded4938, 0x854484985adce0ac, 0x0000000000016d }, { 0x5a331004db555a0b, 0xc6dd24aa60ae7541, 0x37584208099d7412, 0x93c9efbe5eab4692, 0xc38ed3ee1eace536, 0x4bd539892ee25298, 0x9a31156c78ade433, 0x61632f48bb6b1863, 0x000000000001e4 } }, { { 0xbaf174536a5b9a4d, 0xa843864c1f5c938d, 0xcbaf69b8ca06ef19, 0xc0d3c5b97f4ca57f, 0x6176ace64fb6e59e, 0x337b928d4883b228, 0xe69bd3fe186ef045, 0x300482c6f906d91c, 0x000000000000c6 }, { 0xd7bd9d8f0c18ac8d, 0x38bcd5c64048d008, 0x7b364faa5d5fc8ff, 0x526b6430cdae23c9, 0xcba0e24891d1086d, 0x1412f662a73973e0, 0xd0e663409704b950, 0xdd72baa100560a11, 0x00000000000186 }, { 0x8c7efa79d8180b80, 0x8a1678c83e521552, 0xc94d746053d5818b, 0x74e3b57c7fa62b9f, 0x4f9427b78504d465, 0xc94b06b2bcad91d6, 0x802fba1e1ee59b5d, 0x3b8b9f631b6fbb6f, 0x0000000000018e } }, { { 0xa80b0b50e6ed24ff, 0xf8bf2b083c0d1189, 0xc36fc6c8378b7f25, 0x200521fc0c3df518, 0xd487ae53303bd38, 0xd7aa3b3ef8539554, 0x995570cb5c442d5f, 0xff2a0e6969ed1273, 0x00000000000171 }, { 0x15c174e887e48e96, 0xe7eae6f640318bf3, 0x6c535b4ba8ef2534, 0x82ba38a89fffa986, 0x1bee9feae5ade80c, 0xe7f5cef2d5bee352, 0x242652f06493b8f5, 0x705e63264a0b48cb, 0x00000000000188 }, { 0xb1b0ba9bf02df1e4, 0x127f9bc1f6757a78, 0x469e0b97fe166d5, 0xcb6dcd3bb26645c4, 0x3e5932ee5a43e76b, 0x9454fea722c79936, 0xfeb7983332673c7a, 0xe1f2c1e39d93b8f1, 0x00000000000137 } }, { { 0x337ee254cd815b2c, 0x7f99ad1fb3521b9c, 0xa8b4a1a4c08b9bd6, 0xaeada8eed0cb33f7, 0xdd9fcc5c6c8e34e8, 0x8d7c59a9cd73498e, 0x2125b37b28142de0, 0xc46e21f2ccd95b8a, 0x00000000000186 }, { 0xf91fb11ad129a04a, 0x30ab5f9e52ec1e9, 0xc6cf816228f1b02a, 0xf71f0c4e8389c2a, 0x3b717e3fa1f9ea31, 0x46dad0c64631780f, 0x78fae9e920428325, 0x76c2e1f61492ab73, 0x0000000000013a }, { 0xc8624b15fd73a590, 0x34d609f496e87c99, 0xddd9c2122ef25cd0, 0xa22472e4595f6b33, 0xb80492b0028f0404, 0x7348e46f7244cbd4, 0x9b523602073871, 0xdb1615c91b57c153, 0x00000000000115 } }, { { 0xb30efc9e52c6d099, 0xaf8e085e6cdb3068, 0x7fea91f8e7544b92, 0x7c2e1e8d3af67edf, 0xb9bfdd7b5a96fe0f, 0x96bc7e721afbc623, 0x7ff51641ed6eb5c6, 0x6eae0f9ba47d4f5, 0x000000000001b1 }, { 0xadfc4f19c2cb857c, 0x8f3389e423515e0c, 0xdc09df41cfa4966a, 0xe6a192689f0dc020, 0x766cfea4989d80bc, 0x57cd622b2018da41, 0x83fc6cdddf644d10, 0x65e311a32ce19a5, 0x00000000000174 }, { 0x97b744859a219e71, 0xe207111985361175, 0xd8cf2e3cefe4ab91, 0x9f2b5fe31277e73f, 0xdc4899839e855054, 0x62c728aae2f884cd, 0x6d10d20309415de1, 0xe5573717e4c20d0a, 0x0000000000016b } }, { { 0x757f9a02a911b8b3, 0xaf1a91b8921039fc, 0x7d29206b045d9664, 0x5a278060443eac99, 0xdd12e68b38871252, 0xf865dc2095a971a8, 0x1a428fb40d9fdf20, 0x89cb048dc6d3dbb2, 0x0000000000017d }, { 0x57f2bdb1a431aedd, 0x9f434d2f7fa74df2, 0x487795632d819f5c, 0x8029e37cdc2f192b, 0x2fcef039ef1fb53c, 0xb7f01c16ee8bd680, 0xe7585f0ae0c0a2f1, 0x438068bddf74e266, 0x000000000000bd }, { 0xb1d17767c5cdad68, 0xe9b106129c131874, 0xc30e942ef3543f1f, 0x554c74829bcbcf49, 0x75c8aa6a2056bb09, 0x1a0823835e5f622a, 0x1124db1fc4581d4d, 0x21370319daac7364, 0x00000000000197 } } }, { { { 0x950db5046460ba03, 0x3a04299291ec33aa, 0x9ab0613ed7569077, 0x507aba5e82e1bb7f, 0x117bb1cc0530912f, 0xf5e09e65df99c9d7, 0x5f6d67ad76c75bb6, 0x173ac7e50ad4d989, 0x000000000001bf }, { 0x83d97d7a0bb76168, 0xd79a4489dd85b45f, 0x4f0bc1412327bfd4, 0x91158063a949de8f, 0x3990b85548ca61b2, 0xce8f1ba7091eb557, 0x966b9fd2fa37ab0, 0x3863d484d4c6ca85, 0x00000000000175 }, { 0xe11571603089dfa2, 0x2c48f7f429665659, 0x20f1903cb8f7784a, 0x465955b68f4e0a54, 0xdd870abafecbb392, 0x687bb1136d7468c9, 0x815c06bc60511b65, 0x5c35c40506e11ce9, 0x0000000000015a } }, { { 0x6409ee3c21140c0a, 0x45f4d55b415fba4d, 0xd97f30d6d91d5c02, 0xfeae831d3674204f, 0x667f043df7a3722, 0xc9e5e9ecac40b3b1, 0x66ebb51693972a26, 0x57b145a49e1bad10, 0x0000000000006c }, { 0x3992aa4e362686d, 0x200fce7812e36561, 0x6faea2e7be2440a8, 0xdc3500fd502cc37a, 0xc1ee66319cb82eba, 0x94e1adfd06c102e1, 0x6e8002a85c9e9a06, 0xcb8a5488906d2e53, 0x0000000000005c }, { 0x9c15f70c916b94d6, 0x82c30a2ec5e445fc, 0xc1b5d334e2baa932, 0xcda89553b311a11e, 0x4e65b851ae3c8ca1, 0x5ce51b793e918ec6, 0x2a11e0bb90550e98, 0xc7c5b139b6a72f5a, 0x000000000000f9 } }, { { 0x35984fc940002e7a, 0x4babdb7b0a439a2c, 0x483ebd275505832, 0x1d4875565b2fa7fe, 0x4b0bb4a20802d4e8, 0x7f6e86411c02f728, 0x3ee6d7a7fe981c5, 0xdaf18244c6f48edb, 0x000000000000d5 }, { 0x8d1b4cbb88ced9bd, 0x84a807030721bff4, 0x9f2445a3271b9a2b, 0x5e04a0ca4ba2cded, 0xfed48a2e3ddd4a73, 0xfe52941eed860b38, 0x73e9674fcb107752, 0xcc627ef57d5c605d, 0x000000000001ae }, { 0xf1d1ca1f05cef34e, 0x1e49c3e35f0ce09c, 0x7b9104efbfefc0e6, 0xcbc43da97d70270, 0x331b59442fe79186, 0x756db0eed3cdc9c2, 0x49edcd272f02d5b3, 0xa22de4f181d87ac4, 0x0000000000015b } }, { { 0x198ea8e91ffb06cd, 0xc1779fbb74cfb7fa, 0x24f942d999d046b3, 0x6844bb83d7c10311, 0x88fd7417ea0de03f, 0x45e47027a24b6821, 0x364b51d7e38724b0, 0x795a8b177f2442f, 0x000000000000b7 }, { 0xdea73a92ff0b6818, 0x95da9b3c6f53bcf7, 0xdc1fa45c2dabf2f8, 0x3a5ad43291f6dc89, 0xb07b729f6088661, 0xcc3d124f9a9b452, 0xe228f4078158b1cf, 0xf9c5f737102455b8, 0x000000000001d3 }, { 0x7c5715084dae6b94, 0xe0360bdd6eb951ab, 0x434134c2a2246456, 0xef35c313f621fa3e, 0xb231805e1a78c1d3, 0xb803b9a5ed1411e1, 0x91f2e214aacb20e7, 0xccf5f09e86b3b9c1, 0x000000000001e3 } }, { { 0xa2c03695927a1b1a, 0x3851e2e4199fb455, 0x944df3abc5bac344, 0x4c7d5b90ebc299ab, 0x6b1ee029fc4858d7, 0x78d0a437770fe0bc, 0x3489536715c2764e, 0x27d54527e493fac, 0x0000000000002f }, { 0x155af68854820d21, 0xc14af9461810f70e, 0x8c750614f30342a9, 0x880a095c84d80d23, 0x7df4930f083a7167, 0x4a5282bb8633a49d, 0x236c20e1dd899375, 0x5a1dca925642241e, 0x000000000000cb }, { 0xbf436f5a9850d89, 0x1e13af203507f688, 0xbdf00d5795f9135c, 0xa506418fa62c9de5, 0xd57b20dee0ffb580, 0x3d4de19d97dcd0f9, 0xb3add31b9c9b56f8, 0x2719f98ee1413252, 0x000000000001d4 } }, { { 0x5c9b6e9415d68bcc, 0x944636f9d8725a5d, 0x41a176d0d2d152a1, 0x75656036395552c7, 0xf281bd0d9ea32e7c, 0xc66dc07056817e66, 0xdb68fa7f0ab1821a, 0xccdd50a052b62be3, 0x0000000000007d }, { 0xeb395ae4687de2dc, 0x556cef9ef3aa347c, 0x1b50d2248610ef39, 0xc6e4e555328dd99, 0xe8481e5020d39ec4, 0x6b458a518c704c59, 0xe3dfff2b14fd3528, 0xa347f10197a6f03f, 0x00000000000099 }, { 0xbad9716c240b826f, 0x26db8089ee0941f7, 0x7d0e0fbb920c85d3, 0x8aec6b2a7642a49a, 0x9d0789cbbda31405, 0x39c6e1d0d6bd5c85, 0x8671ca19fea84f33, 0x55227edef5900ec6, 0x00000000000064 } }, { { 0x2396b7b44b962d59, 0x93fe24f91549b925, 0xe21fa3f58ebb4424, 0x4bedbd127a474fba, 0xa9bf79c563de3c9b, 0xdae68046c7b363e2, 0xeb2a77319342fd3f, 0x112813865f1bdf2d, 0x000000000001b2 }, { 0xfbcda32d546def7e, 0xe33b77df070f5aea, 0x35ba45e6d4c4003d, 0x3e49d8a493df9d77, 0x70d7eff6d152af6, 0xa5c60741e25c146f, 0xdbffb1932983af0a, 0x5eedc319fe481064, 0x00000000000073 }, { 0xd51495d53e8a70be, 0x84eb3f2307cc69da, 0x1e128a71205b09b7, 0x1405cd9380bd7273, 0x70b2c3424621a8be, 0xfd3c5ac75cffa5de, 0xa2e1457fa725658e, 0xa95170a8f31fbad5, 0x00000000000147 } }, { { 0x1eac0e2731ad98eb, 0xb0ba9d28916349b7, 0xe7a03d95aa782617, 0xc7afcf53bbb5c75e, 0xd6c523bb8789dd97, 0x5494e48275feac6a, 0x1d1a08f27c3da52f, 0xabab7bfaa56cff63, 0x000000000000e6 }, { 0xc82bb9584909d00b, 0x72596294eded0b38, 0x908791bb8e23a7f0, 0x4b08f45c0b58ce9f, 0xbe14226cc82a7d42, 0xd0d2882026e2175d, 0xaa51e5830cc4495b, 0x3a8fccaf499062fb, 0x000000000001a2 }, { 0xe7043694bee1f965, 0xe7cc4427563083c, 0x3cc7804a391ad13f, 0xd63f78fe2f64da7b, 0x88724d098b32fb83, 0x98e97e3686948707, 0x84887ed0632f378c, 0xb7b287c296a05ba2, 0x000000000000c5 } }, { { 0x7473597f83ef318a, 0x97af15f57a5bf1b, 0x1bdef9a30cae6df2, 0x5f808d38e881636f, 0xbd69ead3194be8ef, 0x2c72765846cdba9b, 0xe0983c9240961ff5, 0x2a1c1c9bd0c283c5, 0x00000000000001 }, { 0xde2569a7d348547a, 0x572f8dd80bc956e6, 0x1b21997ccebeb8bd, 0x5576161e88323635, 0xacbcea484fce9b3a, 0xc94c209708017b03, 0x6c07ff13906fa9a8, 0x37602d4e0e51ac56, 0x00000000000085 }, { 0x61cfbc1f4f35fab2, 0x4cd613b7eab10483, 0x3caba7ed78be514f, 0xaaf2f3bc9b16208a, 0xb367b9be771daca3, 0xa3231517f2cf1c7c, 0x697f3c6665d92edf, 0x86acba67637aae4e, 0x000000000001d2 } }, { { 0xabea5630a6fa068c, 0x9bd99e04b5276650, 0x23bddaab374d1cd6, 0x1920db9b1eac6a4a, 0xd3c03669c9dd988d, 0x1cc8038726eeddae, 0x56abb861bb0cc975, 0x780ae81d9ccd76c3, 0x0000000000012d }, { 0x9ac093083f0bca22, 0x8984d6ec853cdc00, 0xc3ecedd5c56a527, 0x1032f23de255d70b, 0x85b2d89d457254d9, 0x469fdb9fb6ed796, 0xc385c0de7ffb1aac, 0x76bb54fa05342948, 0x000000000001a9 }, { 0x5bb78bb4a907f068, 0xb5dc52afbe765bb0, 0x53cb0e86758e8562, 0xa0c6ec788b47e5a1, 0xcff962bfe5e521b7, 0xece9a49bfd7605b0, 0x176d2409cce1debb, 0xea9fb98ca5ba90aa, 0x000000000001fc } }, { { 0xaf14bd6966e9c86, 0x1b1d662918fc5819, 0x63d4b866ca841aef, 0x883520ba6987a858, 0xc0ab0e370d4b70dd, 0x9b0c6110f0aca313, 0x323a2413ab0c4a4a, 0x8bd11c877ae2a887, 0x000000000001b9 }, { 0x5d16f0b6f7e20643, 0xc1c32b85c0b3e0b3, 0x7e2fc0e7774cf3d1, 0xf2944d044ee76053, 0xf841ff2f97d2b1ff, 0x9e98fbb2a3bccbcf, 0xaf00f7785922d978, 0x78354f7848026213, 0x0000000000008c }, { 0x4df619650ec728d7, 0x800a3db9353e579, 0x89aa358f6593d6b5, 0x5ca70c70fdc9cbc5, 0x14fc1d7a07f85189, 0x1139af556357a44d, 0x5c4927f2ba39d09e, 0x59dbd24c7c803f89, 0x00000000000139 } }, { { 0xf2028b6d594de408, 0x61156357b7e9a166, 0x996aaaf2deb93b99, 0xb0ed117efc1ff1e8, 0x70b551dc7610ba41, 0x8f412078ad311bcc, 0x919ed1a7b2c5ddd, 0xfb327fdecec709c1, 0x000000000000c1 }, { 0x193d47d0643137ff, 0x717d42bb216104cf, 0x5c4bf67a8f2e3e4a, 0x349268ddafdf1b2b, 0xca4c02561a2011c7, 0xd914b56807b87450, 0xabe8ec3b37ac95da, 0xf129a1078936d92a, 0x0000000000002c }, { 0xc81e8aa91758efde, 0xed9c788b9bb2499, 0x60a210d3987733ba, 0x161d736f7b9a96a8, 0x14b5c7d0f8d66c06, 0x404a4292379a1def, 0xce27b4dd0a9eebf3, 0xcbf559cfe8d00304, 0x0000000000016d } }, { { 0x5b10b32c7deb6a1a, 0x8db1cbf93f9ed15f, 0x1981147d11b41ead, 0x41cfee1987066bda, 0x2abf9c5ca94e4c01, 0x54dbe45f453084b1, 0x9a833fc988c5c4f0, 0x691da70c258707a3, 0x000000000000a5 }, { 0x833047f1eeeb8be2, 0x99613d42985b8e47, 0x5ac0021cb6aca9be, 0xfaca781722a3a541, 0x6423096a7d74191e, 0xd2c69e49261649f7, 0xfbdfb23c9b75f7a6, 0x1b0f13a772392312, 0x000000000000fd }, { 0xc69e9b55de2e14f7, 0x61a0835cbfc3da6d, 0xbe6b2e95fdf7e116, 0xa256cc2a246105a4, 0x16720b63733358cd, 0xbc78dbb2c33ce38a, 0xe25c1b94f3da217e, 0xd9eee644a1d23ebe, 0x000000000001ac } }, { { 0x1846b28f03bb768d, 0xa500258b05deb2de, 0x51a1da826b4c9f7, 0x3f3c5c7650f91ce5, 0x1c4e4ffcad253f1f, 0xa485751e847b66be, 0xf28e2f502c8e3e4c, 0x70df1d0c56a8c191, 0x00000000000137 }, { 0xb365e0dc047366ea, 0xddab491b8c3f620a, 0x13a74e0a06cf85c2, 0xe32a711ef723059e, 0x5a9c40a02875f72c, 0xe654d121afd7f81c, 0x498febe10637ab89, 0x7d6c0c73313a79bf, 0x00000000000026 }, { 0x50358ccd26c15aec, 0xfd1052084449315d, 0x5f31827bf091c2cd, 0x49f75059b4f3faa8, 0xd6c0794aa2e1c8f4, 0x18c13391859cc0f5, 0xeabb9a7bf4b93940, 0xfbbf7add0de9ee65, 0x00000000000107 } }, { { 0x7b1d811c8757759a, 0xb73d2fbbdf508f17, 0xd23f849d35faff86, 0xeeb9d7d21dd4c939, 0xac3e9250aeb73b2d, 0x74205f7c3f14bfa6, 0xe5185e0bad69cafc, 0x2a82e9c48aada19b, 0x000000000000d6 }, { 0xa1e2cd7041526155, 0x7162b965f4e5927c, 0x67d2ab45979ee219, 0x22c21ac1ac4c53f1, 0xe2362c594c104e29, 0x4f9206e26609e8be, 0xfd1ffbd3631d20f1, 0xc53f3c2d98bfab7b, 0x000000000000d9 }, { 0x781c62bdfba5943c, 0x6474706f6a3c8d46, 0x8321f5bb3442b1c7, 0x6edf9669b3ebfceb, 0xbc2c55d722a7cf8, 0xd890450393890085, 0xb01b833f30e5e6df, 0xa7cc6891d286efe2, 0x00000000000043 } } }, { { { 0x52fb786ad8e7fc4e, 0x13540e6b04e158b4, 0x4dbc28d103a5b65b, 0xc4e6aef047e25e3d, 0x887138cf277f1ee7, 0x44e93208b66e3f83, 0xcf0fe81171054a52, 0xbfef5794aa8b2ef3, 0x000000000001ca }, { 0x3ec99f14e49f4404, 0xcc61cfbe396327d5, 0x41d76ceea33c8a0f, 0xdd37c87e10daf6a5, 0xd3d3e5e84bfbdbf3, 0x633987524aeeb8ad, 0x15899bbe9e518213, 0x2191f73cc9818de1, 0x00000000000106 }, { 0xa88b215960a61b47, 0x5e4f54619223ca25, 0x4ea3d6959b45c068, 0xb163c66cf5f02884, 0xed9a5c78268649df, 0xf62154983b174085, 0x8226415d17bc3ddd, 0x31283293b7737e99, 0x00000000000139 } }, { { 0xdb6c7dd840e5a4e1, 0xde81919ce6551bc6, 0xe7904d942b422aad, 0x798f8923a48b581e, 0xb421b59e61e38b36, 0x85cd2934629dfc63, 0x772ea92178aa5348, 0xce58aafb97df1410, 0x0000000000005f }, { 0x609b94d50adfb857, 0x67717b19410e3aae, 0x48a0ece2ead1367c, 0xaa685f5a54015bf7, 0x340275d0ac5f095, 0x48074cb73dde5855, 0x86b12342da5726ae, 0x90b6c34090df5c5d, 0x000000000001f2 }, { 0xafdc5f8d544d4901, 0xe1fa5f0250e357c6, 0x4a0a4b91925c7cf8, 0xb60b5a9c22bea919, 0x77fa442d2c51271d, 0xe402fcb2dda80439, 0x17da1a5a45b7fd08, 0x99e262b3c25fd7c2, 0x00000000000146 } }, { { 0x88403181c19d0f49, 0x2672a4339d32e78d, 0xf6e8f9e6700bf0d3, 0x35b807be94853bfb, 0xa98cf6293defbc, 0xb7ea701fbde67f8f, 0x4ebbe9e7651d52fa, 0x3739da5f7812af68, 0x0000000000009a }, { 0xd9a10aa113a4e7d7, 0xbc0566a45a735ee2, 0x753eb48416902f4f, 0xc3110febb8a53fd4, 0x242e30710ca6dabe, 0xe000fbbe9f2a8336, 0xf3be214ebb0de039, 0xe5df3d631a34afd0, 0x00000000000022 }, { 0x39bd14a48b63f1f5, 0x5d157006ecb6614c, 0x631f21eb11ff07c8, 0x727fca08fcb78b79, 0xd79935975f7dfe07, 0xb0726a94281ac84d, 0x9580e683437c6871, 0x1db3d1b1f44dcfa, 0x0000000000001b } }, { { 0x2e0304869292e389, 0x23b42ff866e971b1, 0xfc1df68fbad3effa, 0xf11f46ce1ff52319, 0xb359ffbc8a98217a, 0x9db2ab848f65b053, 0xfc50734df4bd5dc2, 0xcc543bf5764c5b7f, 0x000000000000f9 }, { 0xd0a7913c18ae6e47, 0xd61284312352fd7a, 0xc5d41f398d4a02d8, 0x282dcf84fad3f7ac, 0xb539154f486ca67b, 0xac2fda719d518f36, 0x15a810ccd37c9cb9, 0x67798e262dfd7c00, 0x00000000000002 }, { 0xdd96e9dd1ebc800b, 0x1d2ca07223bea848, 0x20b0cab4b84baad5, 0x2ec483c6b5240ff3, 0x8cd47f06b222b1d6, 0xfcf1148a1125c959, 0x1148aaddadc20bdd, 0x4832906a12c4c05d, 0x00000000000044 } }, { { 0x7ccfef0263fc6bbc, 0xe837155f7757e282, 0x49fa0f72e0e51549, 0x3d37d6d6d59bcf29, 0x610acb737d409b1, 0xaeb15ec67fe37217, 0x24d10737f713e899, 0x6a42cf7e1f63c4a6, 0x000000000001d0 }, { 0x40860d4d654e92bf, 0xb32764ba33ecd97e, 0x19790858f5c19560, 0x2e8edc697fa37065, 0x8823283ba8ad041c, 0xb878fadc474a0f05, 0x7b122b74e8d0cdb2, 0xb58da07175a81646, 0x000000000001de }, { 0xb9b7ba8868c44db9, 0xad1ea682857dc0d2, 0xd8134957d69ee804, 0x251f0ba5df6fa669, 0x19146750a417849e, 0x773c2bbe9b9f09e, 0x1dbbd7d4e5a4bae6, 0xcad050460125bae6, 0x00000000000173 } }, { { 0x75ef827af1284115, 0x95c4e77aa43fcf59, 0xc7e2e7111d2a97c3, 0xbd35892cc78e4bba, 0x1616b925f6699ac6, 0x82e150baee791f6c, 0x5727bbe6bfe4a585, 0xc3a556524cec801c, 0x000000000000d4 }, { 0xf1e194578e3de3a6, 0x3e22093161b060e6, 0x18c01bb7da302945, 0x32b9523a1376f70b, 0xdea578adf48e7f27, 0x8f84ba9f31381aaf, 0x6dde898cf90ae502, 0x3706dd1a6c36cbf, 0x000000000001cb }, { 0x5a597446a157caf3, 0x9a8f9ad21bcbe9be, 0xa5ebaf961ed9d580, 0x4d80d8be910b6b1a, 0x83c5ee2a92958349, 0xd3a0f178fa3eecee, 0x378cc1d15ac83395, 0x9549eef09d81e98a, 0x00000000000154 } }, { { 0xea4f13133e9d85c, 0x13bcf737c3d8c272, 0xac1fe9d0007a83c0, 0x521f21365719a1db, 0xbfe334b5a3b04c77, 0xc8c00e40097fbab2, 0x27b0392aeeaa09, 0x6f61ee93d3c9ede7, 0x0000000000003e }, { 0x47065cb6592bd641, 0xb0a25532c6d98d68, 0x605f0aa8ad215fd4, 0xd541ce08aba7e801, 0x331ba49da00cc0e7, 0x69df453879be03b, 0x1d0bcbd5011c3f88, 0x6ef160dabd24bcf1, 0x00000000000085 }, { 0x3371406e325c66c2, 0x36739f0c36f3d685, 0x26fe77dc25b9e62e, 0x751b7f113d455e89, 0x34d68e77bc8f3fc7, 0x5333eb24db5e110b, 0x2bfbf773cea920cd, 0x6b651b422993a806, 0x000000000001d1 } }, { { 0x6901774f06aae000, 0xee8a01564cf1c9b, 0x97ba12079507f1d1, 0xa802e7125a29386d, 0x32da5bfa14f9cee9, 0x9d2ce245b315dae8, 0x97bce5159bcf07f0, 0x21c03a8cdb1c6424, 0x00000000000114 }, { 0x507594cc1b03edcb, 0x1f1e0f4c7594c746, 0x5bb846c2857196de, 0xdfbe5f07dccad3af, 0xea142a70bc711283, 0xc8cd25acd910dfd1, 0xb8e25dd1ec3500af, 0xf88b7a2126f1161b, 0x0000000000000c }, { 0x4e3535e520626472, 0x65a61ab5b80d6c6e, 0xbf4f176bfeac4f36, 0x3f81c6331259b640, 0x686025fb1b22a03d, 0x7a0e5b207ce77fc6, 0x2c1ac45104f9c2c1, 0x2a1b4a10cbf47b0e, 0x0000000000010c } }, { { 0x1406cc8235e2e524, 0xcc77a354c98332a3, 0xf244db6c4fb6f94f, 0xfe45dc8e663cbddc, 0xade8f1bccb5d92da, 0xd63f24321674a664, 0xc40fbbdec768cd7e, 0x860f5bd3cded4766, 0x0000000000004d }, { 0xd5c60bb9d2ab23ff, 0x2484b9a8ef6ee045, 0xfec1a5d41535b39, 0x44a5bb92e1a126c0, 0xdca69078c0ae8a9c, 0x837edb778c7b796e, 0x94170d418768f32b, 0x47245d47a5d946f2, 0x000000000000be }, { 0x92852c839edcdb0f, 0x810c7c06d2e787d, 0xf1cf4e4c9ed8ce88, 0x7d5d129ac73a279b, 0xba1a16ae11560a1b, 0xa5f0a15ba33461cd, 0xe14a2499209ed5a3, 0xea7228a8e589592f, 0x000000000001f5 } }, { { 0x5958c6c7ca1e6e66, 0x49a1c97cc993fcb7, 0xd9123c0962aca77, 0xe7b1cbbc4c3c6a0d, 0x34ad86aab1b5e30, 0x8188a0962c805988, 0xc9b4f1b556135e60, 0x9110250f8bb2b6ff, 0x00000000000008 }, { 0x84d400e421255fd8, 0x48f8ceadbeb20a7e, 0xb25c579b7aaeffb7, 0x91b51c579a7d3699, 0x4d93749fe0d8fadd, 0x570151502b2512ca, 0xa6547646aa79fb8a, 0xe26a25a60813b228, 0x00000000000129 }, { 0x480aba512a4b6597, 0xd9fd045ab75c31bd, 0xa301f68df614b68c, 0x63d3b6f35f62d46a, 0x991c67273bce979d, 0x61ecaee850642f0, 0x6d43aa98081134c5, 0x4522a1ff775deb42, 0x0000000000016f } }, { { 0x7c754fe5a3b0cb57, 0xa3cc76edb192253a, 0xf39c78bd10ee80ac, 0x3819f4418ebde7ff, 0x4f90594f1bcac9a, 0xa18aac78f2edfde, 0x5fb4c89e6112be61, 0xd42c277f6417a929, 0x0000000000012b }, { 0xed76e48ad34d400f, 0x78692df986aa214e, 0xa5e51c698786f433, 0x69c3fd16ce7f2fd8, 0xcb090a613922689d, 0x64b82c81f39e91b1, 0xe541d806e7650bba, 0xe6da48ff238d6731, 0x00000000000137 }, { 0x4ba55856cc3c6d69, 0x22a6497793cda478, 0xd8731b20072e550a, 0xfd2c7332cf8b34eb, 0x95b148ed48699e90, 0x361464351d2cb8df, 0x7e14ac9b6925839c, 0xa869c075ba9c25a3, 0x0000000000002a } }, { { 0x5537bb2069135490, 0x46644be8fba005a8, 0x5f370d61dd02e296, 0x39720580a964f26f, 0xabc2974c2d65088c, 0x66fd1db096d0acf5, 0x58259cf933535d8a, 0x1c35d436e9d90e69, 0x00000000000183 }, { 0xc2974a4381f3ac78, 0xede816c921bf03cf, 0x606b8cd7af919e19, 0x6c05e511a30a3724, 0xa8ad2da0f37744c6, 0xd666b33e8c75b1f6, 0x964827dbb78f0a6a, 0x153c8083e0ca8c08, 0x00000000000158 }, { 0x82619446c625774d, 0x70f3671549f7ec86, 0x4843806f9ae609ce, 0xce76f009ea97a368, 0xf8362cfdb7fb818a, 0xf574277ed130f9a, 0x1763cc85e720186b, 0xc578704b8d0fdb18, 0x00000000000191 } }, { { 0xc9706c920d361b59, 0x44e0e03fb5dff998, 0xa85f152f12063445, 0x2644b3449b75f1d1, 0xdd1ae39cd20f1e, 0xc470a6950c3e77ac, 0x9b45b60b975923da, 0xa966e8a30b54309b, 0x00000000000177 }, { 0x8d1669ed88ea4c9, 0x29c6640898efbb2d, 0x21f8ce8f0ca53e9d, 0xd7c837bbe8cc5407, 0xc9945a12d3ba2323, 0x8f0f9101abc9806b, 0xb4145769aaf703b7, 0xa9f2b76d3d01f560, 0x00000000000193 }, { 0xdb26908638003fd3, 0x747f13c8d609d80a, 0x587c2ee4364225f5, 0x6da46d12254af586, 0xe448af82cb6f0e19, 0xed5013a192f36dac, 0x492111ded7d9ab4, 0x1265090eca483d85, 0x000000000001ad } }, { { 0xd183796c727320e7, 0x4579defb0b2c9337, 0x6898b42dc51b0a5f, 0xd639a571934e897d, 0x15fb4ff0cfc396c3, 0xe76c880f6c801e63, 0x59c722f1d4cfa175, 0x545e671e4bcb9c63, 0x00000000000073 }, { 0x1e12f4ae4592339b, 0xab3bf7e53968c318, 0x41f16aa0cfdcd4ab, 0x2c4617f926ed644e, 0x86f294b0874e6057, 0xd1a3a17f61078e26, 0x481cd9cb2ba2ec42, 0xe8c57e707685319c, 0x0000000000015a }, { 0x7e211c16f8fa0102, 0x208d356348d108fb, 0x2bb7d8c79ce49efd, 0x5a4331b424ff70e7, 0xd2da428daa049a9e, 0x760179a116099649, 0x47ae46a2726f7d85, 0xe67d8a94360e057e, 0x00000000000162 } }, { { 0x8c44b7b6210ba796, 0xa937c7a5d78ec228, 0xfda3983659be6a65, 0x910551c1e203c528, 0xad163cdcad26994a, 0xddb2fbf9cf6d3e60, 0x88f0cbe3a79ae923, 0x1ed71e71843068ce, 0x000000000000ce }, { 0xe0f2ec561ff724c9, 0xd030bc26b7786150, 0xc6f8df5617608970, 0x796826a0ad92406b, 0xee3b39df4ce03788, 0xc2b9f78ef665808b, 0x112e23814793ceac, 0xaf67a151e4a5b839, 0x0000000000019c }, { 0xa9cad747ab1fe6a3, 0xa57f27c309423e90, 0x68d841da7180e4fb, 0x7ac9f16efaf5e26b, 0x2879c17a83730032, 0xe226e4863cc3e224, 0x81720c31b91c8124, 0xcaf72b20f9990a8f, 0x000000000001a5 } } }, { { { 0xbe8170a1a7eb69e1, 0xd44de1b4ec01bad3, 0x721f555620d3c457, 0x9c952e7d1285dd88, 0xea643510f4118ad8, 0xe5b756a0fcd02485, 0xb0253172a19680e7, 0x842b818eeb7f3592, 0x00000000000086 }, { 0x2d23cbd1fd0dcf3c, 0x501d29fa311106d, 0xf5d691add1406a8e, 0xef8f4821a955b1c2, 0xac39724ce44af6e7, 0x5d9c782527ca04a4, 0x3abfa465a3f209b8, 0x46ad6a6af10d8a71, 0x0000000000016a }, { 0x3036532fd92edb7e, 0x32737b2114f5a292, 0xdc23b5c294dee329, 0x29289eece38e0a64, 0x258f24ee57919a36, 0x3db1b2fcc87cfdde, 0x3fdbc8754b431d73, 0x1923044386842b68, 0x00000000000069 } }, { { 0x8af0b0708ea7b3d6, 0xd3507b13f310d11e, 0x4de3c666da47b60f, 0xd328331a3527ce40, 0x52462b20385f6236, 0xb4c2e3fd6bb4f8ed, 0x13c511be082bc49a, 0xfe805c6ffa0c1a9e, 0x000000000000a1 }, { 0x83ecb45f477cfe1d, 0x4187647e6f3f2aa9, 0x26dae7cb4c8d3f27, 0x2246dca1715e6b91, 0xdec761ba4d02328, 0x6769ca3dff8767b3, 0xbb7b90c8f13c51c5, 0xe42cd0ec26442c4d, 0x0000000000009d }, { 0x3cccdb76d83f9722, 0x185e08090d3c27d8, 0x1d80352fb33d3b19, 0x8ab3ddbf13eec9b8, 0x6e09a5d2b2cafa5c, 0xcd66c951a5d960a8, 0x2786ac647ecf8cd6, 0x4a38ccd72a856d22, 0x0000000000000a } }, { { 0x82f0e97d21792ac1, 0x837e1a0d16d36cf0, 0xa0d232e7af19ed6b, 0x7692c148a321be40, 0xbbb810e8129c6931, 0x6345bb331d934156, 0x58e0a6464b100c85, 0x4f80d1be7972a506, 0x0000000000010d }, { 0x1ec565ebe94a1df4, 0x1dbc6baa422ef620, 0x2e05ad067ac145fa, 0x406a4f916b0a4a5b, 0xac80e4b13bb148ab, 0x44b002521fab3883, 0xe14c99d455579cc3, 0xde28a4d887c6579c, 0x000000000000f2 }, { 0x8545e9c2e7106e42, 0x7faf1d95b3e8cb56, 0x36eb4ec7fcf50371, 0x337367333721005d, 0x36ef19ba2a8444dc, 0x265c23505a8aa62a, 0xdf184ed03c875023, 0x1dfb9e88b9417b4f, 0x00000000000008 } }, { { 0xe0b883791c6e25c1, 0xb916afd6f37d6f48, 0x3a5262b0d4f73ec9, 0x7888fec1ea32067e, 0x2701daac7225bc4a, 0xcfb64dd4f568fc02, 0xb9b505645be96365, 0x6b7afa19fa44d269, 0x00000000000187 }, { 0xa671f3d33f92b826, 0x8bdd493ff604a994, 0xa23eb6f5f0e6078a, 0x4e42d4a89434f5ea, 0x375925165f75a2aa, 0x9546138c3979ba29, 0x427c9350089764ee, 0xcc8b397ae5e3083e, 0x00000000000102 }, { 0x273654b26aa4e181, 0x1a909c9c11174bda, 0x23405fe3cdfe4dd, 0xfff40a1b5ca2ca2a, 0x29b9b311f3b6c431, 0xd49cab00ef149905, 0x97b958262aab092d, 0xfa4bf25fffc5267d, 0x0000000000003c } }, { { 0xdfe831324b1529b3, 0x4b0ec824bda04d80, 0x3f67672560585262, 0x9976f81bee840cb1, 0x7f4d7a18b65318b2, 0x47ae0af2fc50a1b8, 0xe0ec9227b9b7289f, 0x31bed246e34e64f0, 0x0000000000010d }, { 0xd506ca010462a7f0, 0xd92f9a0df853d43b, 0xb8262167fa909290, 0x9829995c2a275c56, 0xeafc075666a8b638, 0x1a317c74cf75f7ac, 0x77b01e143258de9d, 0x1cba9ccb8011dbb0, 0x000000000001c0 }, { 0x5a978b98b2ce6cdf, 0x160d55037ad8d933, 0xf13208818853bf97, 0xe623a796ca95551, 0xa96d549c0ac7309a, 0xb0242b095897f804, 0x4e715beb82ac84cf, 0xec59f3f3d812b00b, 0x00000000000178 } }, { { 0x8eb66a58f43356a0, 0x61c506c1eea1686, 0x225828b1049fcecd, 0xd4a31daba064c3c3, 0xb9c6c207fb2bc107, 0x4915d2d07033f8da, 0x3b17514b52d0448d, 0x586db37f6c67081c, 0x0000000000006e }, { 0x23c4eae26aa29e3c, 0x5e8ee96298b43d17, 0x76047b6985fb6488, 0xae90bffb9ef0ed4c, 0xebe2e472b4fd0504, 0x71ba0087e3c22706, 0xe1a48b230550b3cf, 0x17c67ceda8f35ad7, 0x000000000001d5 }, { 0xc7537a539963aacf, 0x609c14740fe1627c, 0x7c90d42fa883657d, 0x80663494d29bc920, 0x6e4d110b1c672c1a, 0x9f54904e5aeac3f7, 0x7f9d6fa63736de7e, 0x36563b1cab208770, 0x00000000000071 } }, { { 0xcd0069373a1f60a, 0xde063feb0100a37e, 0x954f331ca3d003bf, 0xc3b05d1dc8d9a757, 0xf2edbe4775c5ecf9, 0x4c7a4d001e7327e, 0xe0310f8a12074733, 0xbc08659fce888357, 0x0000000000006f }, { 0x8ca28155aebaf47c, 0xd7c91ea91dd00216, 0x7a5603ab409aad2a, 0x677cb66d6799ccdc, 0x1d01b4bee2ef961b, 0x200734eebbfe2a2d, 0xfa51c9d0dab17053, 0x23dc7e7d6f429e24, 0x000000000001d8 }, { 0xabdeb40ab83f49c4, 0xab4364dbae29dd60, 0x6b80f2a23daf83e7, 0xd6b9f17f7b9ac3a9, 0x388f35d876499c9e, 0x643c7c333a21bc50, 0x7ee9308571677db, 0xa89b020669cb4cf9, 0x00000000000070 } }, { { 0xea7e4f439e7e5c4d, 0xd4dc366aba65bd8a, 0xc626f573123905b3, 0xea6aee98972db9d8, 0x972184f24a11cad, 0x910b037cf8e69802, 0x478d9a2f48c42862, 0xc22d3952b612617a, 0x000000000001dd }, { 0x2aaf61bbd1a636fb, 0xf3adcaadeabf3d50, 0xe211bff593b86761, 0xcf7a7db81f9c32a1, 0xbce9ef906e44df32, 0x74e7bdf84b7c1ce4, 0xa422b7c3bb5fb5e, 0x5dc582ba965af94c, 0x00000000000189 }, { 0x3828f8f84f6df3cd, 0x750b283f358180d9, 0x2152b49b1cb6111d, 0x44a2768bca99bdf3, 0x4bbc8d8468469f4f, 0x968d7c48c84b651a, 0x8721fdfe13120f89, 0xfd30e607abb56ffb, 0x00000000000110 } }, { { 0xba8404fa6e445ea8, 0x7e02363a28b2a1f1, 0x6791f99fa753abd7, 0x3851c37a38fecdfd, 0x4f9a376b067901a7, 0x9727e3db229b90e6, 0x27207c98a910e99a, 0x561752a885c0afe9, 0x00000000000146 }, { 0x2bd0c788cec83fe7, 0x9a70053835caa74e, 0x5801156a0adfb970, 0x3393a89454fd4402, 0xb7622f71788d009d, 0x140cec1c87b5b1bb, 0x30635c961d4cf8a2, 0xb195967c39ebc496, 0x0000000000015c }, { 0x2d4178ebd8c89e55, 0x7363fe07cc1c0549, 0x24dbfb3c0c343a7b, 0x6e2d32c266b5686b, 0x1a7368a9d7b75090, 0x642026a48c5cc0b9, 0x8acf3c33bb280023, 0x56af4cbdb664e244, 0x000000000000c5 } }, { { 0xb783db7692220fef, 0xf2ff8c8a140ffb1f, 0xb8acd95db8e4a067, 0x2859c0156c38fe38, 0xd147991eec562f35, 0xfbd25c70e244558b, 0x3cdf2df936a58122, 0x79402c4e45e31eb3, 0x00000000000036 }, { 0x5d7ac40e420da8fc, 0x3a65980e73db9c67, 0x3895bd916a5fac48, 0x8f2dd65b911d5282, 0x9d99b4becb6ca5ca, 0xfd192ac2f743a7b1, 0x354e7074862da849, 0x3bf1e4f2befabcab, 0x0000000000011c }, { 0x66a2c03591f21cbd, 0xab4a1306c9b450fd, 0xeca243bbbf86ecfb, 0xb90aef932966a370, 0xb91589cdf2d67ee1, 0xe4c95ade2f0ba2f0, 0x1a419c6b4409b614, 0xc7f4410cbfb598a9, 0x000000000000b3 } }, { { 0x2be3dba6af76a904, 0xfb87b008170142f3, 0x68cbeaea7a81fa7f, 0x864b6904e4917d7, 0x3ef6fa5522da89de, 0xb159216271a36a1, 0xd56890c0dba3c6ee, 0x5872b3fb6fb282e6, 0x0000000000011c }, { 0xc9d32f25f63393b4, 0x5ed2257572650de2, 0x17e21cfcadaf889f, 0x996b96ad87e078a6, 0xc1a5fff3037ab946, 0xc039008e22e34a01, 0x520c4ef2970928fb, 0xf6f98e1d6ae1a626, 0x00000000000173 }, { 0x2da9ea61a22fcefa, 0x6a76235316cb8b55, 0x6ba04a75a71267fc, 0xaa357a8c5f6ac57b, 0x511981ca1c82a6f7, 0x21b16027000c53fd, 0x905d6ff813807852, 0xfc00a8d4bdac7963, 0x00000000000004 } }, { { 0x97704d97e58f4a67, 0xe493d01a54d7fc4, 0xdb81fd0fbb2f9bf3, 0x20b055df4698d31b, 0xb532e0be9deb11dd, 0x4341abab9678fcf2, 0x948a5e3c6e600140, 0xa6e6261c70e1210e, 0x000000000000cf }, { 0x9c15863ab88907e7, 0x563fce9604bdc90b, 0x738a52c952db6d90, 0x3c52cb01c6b3d1e7, 0x7db309820feb7351, 0xa0683c3cdfbfe2b0, 0x784800f4f4c4a8d2, 0xf38887b51b0595ad, 0x00000000000026 }, { 0xd420a95fc4b187eb, 0xf076b13fe1cd0f93, 0xc1a7150ffc52cd88, 0x8983e1da05187aa8, 0x9ddff5184cd72337, 0xe10b0976d9097726, 0x89a8ebacf7750227, 0xdbf92ed31c96dc85, 0x000000000001ea } }, { { 0x512b3d28842f4db2, 0xdf751112cc7834e8, 0xc1e9f9430af9836a, 0x24a3add0d034e551, 0x55003bdf5da7a1de, 0x7128122a50db0ad5, 0xc1384dfb10f45379, 0xc7aec14073860eb9, 0x00000000000032 }, { 0xf1c4d7fcbe9b203d, 0xce370a39a73d069d, 0x62bfce87da384970, 0x6c03d8854319b2df, 0xa3c6f6e43467457e, 0xf6b85564303bd0aa, 0x19c4301ecc40228c, 0xa84c678004a96d89, 0x00000000000184 }, { 0x19359cf038cf7020, 0x88964dac0023021b, 0xceba95002b527074, 0x15f2497ca977a216, 0x96ce9c2c370744b9, 0xbfc70498bf7fa82d, 0x7c276333e4e44a6a, 0xc36da182d80aaa9f, 0x00000000000146 } }, { { 0x93ff7e657a29efab, 0x5a6b08a77b998900, 0x7cb56b88995249da, 0xb29d5af916407437, 0x65de2fe99639c080, 0x4048bca5679ea082, 0x39162dcdb99bb71a, 0x9f46310d33214fb, 0x000000000000e6 }, { 0x7b0bce8c0f9dc33e, 0xb6f6830a520b6118, 0x4f5751b4f123f3f6, 0xaa651eb72825349e, 0xae4024991dd662a7, 0x51833d992c565985, 0x5862bc06087b6d65, 0xd5abea207991c962, 0x0000000000012d }, { 0x14beb6fc772cac5c, 0x84bd4f0c0def1599, 0xe0a8de7de28ab410, 0xfae9b9251e147924, 0x28a1a881f82787d7, 0xfe7f9201e1717c47, 0x20f4a6423a56dbb0, 0x3cd72afd0532d9b7, 0x00000000000151 } }, { { 0x220f0839cb7f34fc, 0x4cbbf8c3af9768d0, 0x6987cff6254ec8a4, 0x603675750f3dd1fa, 0xbec43a7f44d685d8, 0x9d6d5e089f61e13f, 0xedac6c27cec92a54, 0x166eae2929709c37, 0x00000000000084 }, { 0x971810eb9213ebf0, 0x688591702841fc78, 0x2c1bd691b61827b5, 0x90632ec2c7f045ca, 0x64a925e34aab8de3, 0x3a4bba835388bd75, 0x6e1c2a68193fe52c, 0x8f8aef33e9362af3, 0x000000000001db }, { 0x53588a089720f882, 0xe5af6fa5e2d29c12, 0x1f73799c0a3ff5bc, 0xf2896301104998e, 0x90daff1548f6c808, 0xad3e666ac5b2634c, 0x7fdc0eae2e3ed8a7, 0x268a02fc351d0e53, 0x000000000001ac } } }, { { { 0xe58c942bd0279f23, 0x8ad3cc5bd3a57df, 0x486520b05dc62f3, 0x13cdcb2ddfecabd2, 0x77ea3bd2dbe9fb6f, 0xcffc5a64028e9391, 0xe42a1cabe7c7e43e, 0x68033784cc5494ff, 0x0000000000002b }, { 0x609b98172014920, 0x8460d302a118ab98, 0xbbe5063a64c0153d, 0x7941ceabae04cfef, 0xc1651fa7a3a22179, 0x581b5a12c3154da2, 0x2d99ef01e3e6384e, 0xb3f3a2ce262419a7, 0x0000000000015a }, { 0x4473d9afb81d029d, 0x54f665d62fdf8a7d, 0x1ce307f773a2f82e, 0x21e0d03d65d824cd, 0x8005b6386fbb9889, 0xe190988249d6cd10, 0xfb3b6d66e4fb0406, 0x50c66091096935e8, 0x0000000000005d } }, { { 0x5daaf27917190f83, 0x3427ab270c8e29d3, 0x907a90da0336f7a9, 0x7cdb4ac34bff74f0, 0x9aecc50da5fcdabb, 0x619f318f56bb7f87, 0x307f61f14481c618, 0xeeac0dc37a80125e, 0x00000000000171 }, { 0x2859b78cb4faa0b1, 0xc3d488bc86348723, 0xe62f607adeb9d55d, 0x58a27eadce60d641, 0x2a588337f530d2dd, 0xdcaafce7c841ea37, 0x366d93e1b700a439, 0x94aa62d42a1bf91a, 0x0000000000016c }, { 0x8cfac3f434f6f6e3, 0xbcb3e726c55bffc, 0xf7f8d3091d42c371, 0xc6218211a64e1496, 0x610a44045d8ef7f7, 0x68e35d548be72be4, 0x186800e7f4dc6b2f, 0xf9f85e9743c78d3f, 0x0000000000013d } }, { { 0xd99c14a224c68df, 0xec492a0743b534c6, 0x8443711aa9dc45d8, 0x7f9115b7fa83a891, 0x93e371599a96972c, 0xaf295261da3770bc, 0x277be790b6dc59fe, 0x763e765a6363f1f9, 0x0000000000004b }, { 0x86e0ab90e9992dae, 0x97540f527ecd9d10, 0x5dbd87caa0251c71, 0x86fa1d36f877cfd, 0xf8610b1bc2f768f0, 0xca0c02e56f0c9f18, 0x734d5f07004f0850, 0x29f11439b6f9eb2b, 0x00000000000039 }, { 0xe005057535c61c8a, 0x8593a4b99dcee5c8, 0x908cc519481c0567, 0xac95fcb587e37a22, 0xda46414fdd64de3f, 0x535b1b9deb1d17be, 0xf669f852370a8200, 0x4eae7a3783551a60, 0x00000000000181 } }, { { 0xaf46d125444a8c26, 0xc561047e4c039a18, 0x5e15f0148af5d65, 0xd52f90edc1fc1dd5, 0x98361a4ad7bcb6f5, 0x6227d53993cfaf14, 0x340edc5a343e5e8e, 0x701d1af00459b5dd, 0x000000000000d9 }, { 0x898e38f40b23a7e0, 0x9563a215352023f3, 0x536942d51beedfca, 0x56af55a19dd2b9a9, 0xfccd2ab1596db43c, 0x653bbf5ba6461977, 0xf9103adca32ddf6a, 0x34baba5d9e4bae1d, 0x00000000000116 }, { 0xaa0991ea60582c7a, 0xe83b522e13879636, 0x4558853ca0664870, 0x79c56e2572a8823b, 0x910f4a5759dc8411, 0x963b6d3a550328e, 0xc4b7907cb6257231, 0xbdce06dde94efc0d, 0x0000000000002a } }, { { 0x2c23e9983e8d25c7, 0xd351abd328aa3978, 0x708dfc2ef596985e, 0x52ae252394c8187c, 0xd04e502bc6521043, 0xf034c272d505ebd, 0x58f6720a8444f9c6, 0xb1813e93b40f104f, 0x0000000000018f }, { 0xca879eb534035fe9, 0x77dee89e906986db, 0xf55b9045a7d36d5e, 0xaaceb682c9ad35e9, 0xf511de3a082668bd, 0x237d7ca5924b4f24, 0x18cbf6d897444fb8, 0x8d5f458e8460318b, 0x0000000000001d }, { 0x2176dcbc62ca5360, 0x9058f800fbb9efe5, 0x4b1b52fba379817c, 0xc03352d6694a1d89, 0x73cbb984367cbe33, 0x847bf5aa4f6ad98a, 0x6d944fba54622791, 0x188b3d54f675f9b3, 0x000000000001eb } }, { { 0x18562514442c80a5, 0x9645fae56e056809, 0xe1a835dfbf08392b, 0xab10cb1384a7fc81, 0x632d0ef303df8200, 0x3b05de34636797e3, 0x86068e8a262a3833, 0xa515c6915e0717a5, 0x000000000001a1 }, { 0xda9bdd86a6ba7958, 0xd88a721133876fc2, 0xb864b4143ba7fd09, 0xba83b563c7e3bcfa, 0x65e4f864fb99d809, 0x18c57f4c937b9fe8, 0x582774ef502351da, 0xae3acadfe73dee7b, 0x00000000000031 }, { 0x52caba56a0f8be05, 0x6acdf8329941169d, 0xde36e248d001551f, 0xe2f7c693b490914b, 0x41e9366486e487d1, 0x4fe5ff3cf4b9bf8f, 0x5b872bf9e8a6c6e6, 0xaa59458f51fa74ae, 0x00000000000096 } }, { { 0x27c7cd40c429f6e8, 0xa40023a5ee20b8f2, 0x4494b68fc0ff99eb, 0xc7d0cc862d7f69e4, 0xd8adb61eb1759040, 0x73dda23aea7d3b85, 0x96a7b1a115f43a8e, 0xa4c2a79ac27221c1, 0x000000000000b9 }, { 0x3df485ba2e429764, 0x1a469b7fcb962957, 0x13428b477d6b48a, 0x90c656c1f25abaca, 0xe68ac2ca597da7c4, 0xe604f077b2a74644, 0x36f445af17e87632, 0x3638b378cc188785, 0x00000000000059 }, { 0x61425ef0f333af5e, 0x3b5101018e5808a0, 0x4e317187c6796a69, 0x90f1c18b1c81aa8f, 0x967d4d4651c47e3, 0x6a419ef1c1c277eb, 0xe13f274c8fee255e, 0xb71b3e0d42d4ff33, 0x00000000000059 } }, { { 0x466393a4c4310e38, 0x7dc743aca6e44d2b, 0x7f308f1eb23eb5a1, 0x74bfa7ee5ca00abe, 0x44932fd7672cb67a, 0x41b6dee7b2027c96, 0xf983f451355c8036, 0xbef32266572d8109, 0x0000000000006a }, { 0x8b4d58ccf2b9365, 0x4ad972f45d44d74c, 0x407fd2b48524190f, 0x9452623a47ab7015, 0xf742a2acac6d1c66, 0x3d40d859f72fc639, 0xef5bd131b3018a30, 0x218f6d85a84807e7, 0x00000000000102 }, { 0x4c3d71d5a96fd19e, 0xdee5f845b5fb5c4f, 0x62adb2cf8360f413, 0x37e1c247a1aed428, 0x1259d0dcf73a24fa, 0xa44977a3221ea459, 0x126bfc9df2f622af, 0x59aa82421d0d6dc, 0x000000000001c6 } }, { { 0xc041f4097bcf6c1e, 0x2ad322e85c0a03ca, 0x73ed1df50e9cd3d, 0x82cdbe6518bf9bfc, 0x640acaf5f3ac504e, 0xc7bf9df630510631, 0xa6309fc0a0bdcfdc, 0x8d705423bd74ea8e, 0x0000000000006f }, { 0x1c1dab712add69ba, 0x2c7216f634f50005, 0xe35aabf3a39fd271, 0x257e380adb201d9c, 0x45bac98aafc15214, 0x1792bc7f5e212218, 0x958464c6446ad879, 0xc4945919e3adb71b, 0x00000000000107 }, { 0x299ced6132846b34, 0x5fce1ca22528e9f0, 0xc3b3da5efdb5c44d, 0xa4c641b85d92dad4, 0xaf4b4493a0a5eb4c, 0xbdbdb23aa01121bf, 0x6242a480b5c439e2, 0xdae7fa2faa81f13d, 0x00000000000091 } }, { { 0xfec2ac60314a5859, 0xf8164b148f0456fe, 0x99f969b1ccfade74, 0x4aa7353b7d9f37b5, 0x2e1b427ff2ebb7b3, 0x619bcaabee78d362, 0x29904925134c37fa, 0x9a073c53bb16b4b0, 0x0000000000007f }, { 0xce177a3b418ca490, 0xce2405b9f0c2fda7, 0x3b0de467c10328a1, 0xf565d9e616fdd429, 0xfd3cdc4f9832b3cb, 0x34b9ed286add367, 0x28ecd57466b031b9, 0x19be103ef255a5cf, 0x0000000000013d }, { 0xaeaaf2581117eb5e, 0xad66fc6b80ca5d6, 0xb864561a59788ee2, 0xfc905382e5c41b3e, 0x329f4aa0b03137b2, 0x22a4ed46e3234cb5, 0xb934fa771ddcdf6, 0xc7200ff3beb534b1, 0x00000000000153 } }, { { 0x985bc17d90d82e8, 0xc6b04e3a4549f1a7, 0xa77386767ddf6239, 0x94410a929f130999, 0x7cedcff22609e95, 0xe53e1fa44155e840, 0xf302344c86757d71, 0xb5ad9611e271f248, 0x000000000001e7 }, { 0x80fdb6c7644a925, 0xba13a4e0ae781fb1, 0x8cb510fc330febec, 0xe908d6130da33ac3, 0x743226e665d80cb4, 0x84a3c127e7072884, 0x680ec500763508, 0x44a56b9505e7756, 0x00000000000093 }, { 0x5326885c758281b8, 0xf058fc111121f33, 0x5fcb6126eee255e3, 0xad02e84b47bfc36e, 0xd391efa20bdf91f4, 0xcd2e552655167bd8, 0x5f840460f921bbe, 0xfb14caebf41e967, 0x0000000000004a } }, { { 0xeed7682bcd101a58, 0xacabc9bd31aac27f, 0x98e54af0e170776d, 0x2d5aecfcd92a5faf, 0xd5f224fa074e7149, 0x165b6559efc1a124, 0x9e7907a77dec1916, 0xe1fc7065ad0e5bb0, 0x000000000000d5 }, { 0x14e86fd2508507d6, 0x13925305ac3551ca, 0x63aef845507ea8b, 0x8b24c07d962ca5c4, 0x6f5fa79d27654763, 0x38b9c78cb4aa4556, 0x9d1f71d2af300517, 0xf8c8e20ab4a4c56b, 0x000000000000d8 }, { 0x2949d1090fa7ac98, 0x3433a3c279e0a272, 0x7a29306258c06ba4, 0x316b281ce4b0cb58, 0x70270c6ef19c6071, 0x59abb49adbcceb53, 0x1faec8689db2f88e, 0xfd64a0b7c7bca955, 0x0000000000015d } }, { { 0x831f1a6eac087533, 0x73bc47a4cb56df88, 0x12d642c879a8fe35, 0x5deb801367526544, 0x1fddde92f5214d07, 0x7efd32c636016de4, 0xfa0ccb0cc2b65064, 0xe98091ff8be03dcc, 0x000000000001a6 }, { 0x49af6dc77663b9d, 0x2e26931f80dadcd2, 0xf921003a3d56e53d, 0x662fba5a27f99694, 0xdc09dab494fa05e9, 0xfd1bc6830e0e904f, 0xfb025203ca00d508, 0x7cf091c7425af0e6, 0x00000000000167 }, { 0xade81e0e8cd9c002, 0x82cff0964d5c4401, 0xf57197a9cb7823d7, 0x97c52a238d8a8579, 0x9d30ad88326bda00, 0x47e673f2a38c19c7, 0x568a6d907c8575d2, 0xb190e937ff0cdbe, 0x00000000000177 } }, { { 0x2af96e1b08fed4e4, 0x57e3cc999e6b309c, 0x97f7e292f88a8584, 0x86a69eabf4361f26, 0x3207582b40f7112a, 0xecb0b64b5ea6848a, 0xc79cf0454c35a189, 0x51d1b7c35f4af2cd, 0x0000000000014b }, { 0x348f4324492a89f1, 0x784c180471c2c595, 0x4238a14053ef8fd6, 0x8209764de4e76396, 0x25adbff12e42aeab, 0xb618b4a742cd40fd, 0xffc426dcb072b585, 0x16c85a251e705295, 0x0000000000009d }, { 0xfcfd37405bd00ec1, 0x27d42234a6a3d060, 0x9c9d82d797d0e411, 0x8ac10a509cee50a7, 0xee35c6591d859eb2, 0x8560b8c6acdee08d, 0xa37b19bc4b87183c, 0xbcf9326c17b71b8e, 0x000000000000b0 } }, { { 0x7e948ae97ab0cb9c, 0x870748fe6c3ef637, 0x95c6a0f8794b9de7, 0xc6b5a469d3dad872, 0x17abf84eece32834, 0xc32663205e711bc0, 0x1686a8293d5ecaa7, 0xf0743e00def6f8a7, 0x000000000001e2 }, { 0x1b430b5040b0167c, 0xf3e5033291430dad, 0xd0fa879f128c7f78, 0x81a069160305aea2, 0x78d7da818f4e8532, 0xd5d6c80d0f3b4e82, 0xdfc6d4ecced78ddd, 0x9627fa59b155cc88, 0x00000000000016 }, { 0x946afd35910f3619, 0x5e0e640b4c207b16, 0xefacd6bb34c63521, 0xf4c8a3b5e69a11e9, 0x2eb77802a033cf50, 0x12d1314562c8423f, 0x494f792e997feae6, 0xed1296e7bf5d450e, 0x00000000000010 } } }, { { { 0x6240deb8f6ec3545, 0xb3ffe5f621284b3b, 0x3cdce77a80d01d05, 0x31514fa782b0f6f5, 0x858033d0fc11e2c9, 0x2ffd3070d9f5b85d, 0xc6c73a0f704e2e44, 0x818b69a125244aea, 0x00000000000171 }, { 0xfa6178d9fd98d6b5, 0xd761e33fabfefcc2, 0xaa22bdf0b6a00967, 0x6c858015b21f80b8, 0x374fa28219614aed, 0x329d1ba20a01fd99, 0xc1673471f38b155c, 0x8b985cbf1e99a53d, 0x000000000000a3 }, { 0xdfbd4aef8599549f, 0xc1f2711c69508446, 0x3979d3aef5ce0b97, 0xb11c0b34a41f9963, 0x62c27ee8b6f294dc, 0x14fdd32892929700, 0x1ad98805dbe74636, 0x46ce3e4f30872870, 0x000000000000d9 } }, { { 0xbb92ac0582fb2811, 0x41bff1507278b81f, 0x6f4718af474a398d, 0xe4155c559654f112, 0x5baec8d89150a32d, 0xe9fff310199d61ff, 0x53af0b19e6fe1ae0, 0x5bfcdd75a9d5f447, 0x00000000000015 }, { 0x2c000b1e50fce0e4, 0x56edc4ef6d97c7a3, 0x3f035d844f9f1971, 0x2e62462a07e9a2fe, 0x699f6fe7a51fe4b6, 0x48d1ae863985d208, 0x4ebef2e7f06e99f3, 0x89a420b6c608a80d, 0x00000000000142 }, { 0x9cf1b7503f1f3067, 0x4c7b52142457bbcf, 0x83d38065ae3532ce, 0xabbd9a86d6786d40, 0xf9a24645ebf88bb7, 0xd43c2527fc50ab73, 0x444f4824ca525662, 0x858bfe781d4bfca4, 0x00000000000195 } }, { { 0xacc90828347aa283, 0x5c74f6f24806ba75, 0x1b4c206b226a26bd, 0x637e4ada5236a0b3, 0x42eaed7abe2766da, 0x78f0cb3094d954e8, 0x49b013ad4ded07b0, 0x4bb86c7ab4455431, 0x00000000000108 }, { 0xfdbb7299c6f0073f, 0x5ed89d5eaae3cabe, 0x24a8736fd25f1978, 0xd45e76b14b86c447, 0xc4a6fe3fb1a74ca9, 0x1a78164cab7bc744, 0xd10ba93c9b4e3dbe, 0xf97c74ea3f66df93, 0x00000000000157 }, { 0x6cb3924453a9d0cd, 0xb22386392b8bab6c, 0xe8c8339a4e693130, 0xb0043024c029fa9f, 0xc90484039fd94ab, 0x6946aae513a7749c, 0x7cece578892d5a12, 0xf1c5d90bf61d37c, 0x0000000000019f } }, { { 0xee3d8db07c3ea74a, 0x9f975a432014adaa, 0xbae20d7729831571, 0x24e3a09c93b19939, 0xd43d75a5847574d4, 0x6729b388f6c9d715, 0xd7696037ed79d83c, 0xd3cf0fb6e6ade282, 0x00000000000179 }, { 0xf6eef7cfed5ee76f, 0xdbda5f159b7435e6, 0xe8cffd1d06b61ecd, 0xdab4cb52a8ff96e, 0x97b3af5ae9331333, 0x439555b01ae4740b, 0x2335729a8d6101a9, 0x2b7d58ed71be6c90, 0x0000000000004a }, { 0xb24036122b95b24a, 0xdb3b20bcabea97ac, 0xfceb9b98cce62215, 0xb7af65083ddf283a, 0xc8609912520982c6, 0x3a8a9debd9934207, 0x868f20a56d91dd74, 0x903bb7c453e46ba2, 0x0000000000012b } }, { { 0xdbd6eb614a11aa09, 0x2cd16260b9d758e8, 0x9e446a503fc53e0e, 0x8e3dff9ca646e9ce, 0x4a292f0576e4a199, 0xc014fa88d4330016, 0x90c614ab681b382a, 0xc259748ef9e736d5, 0x00000000000022 }, { 0x73dcd9e4ed17818, 0x84df824b70c37478, 0xef9c6727ed5f8331, 0x2dfb50f556997eb1, 0x64a729bb839ca6df, 0x2976ec0cba496816, 0x53fe2e12a0238478, 0x3bd6328fe3b108a7, 0x00000000000078 }, { 0x642061fdbff8e3a5, 0xfd51db8698bca4ea, 0x5c92785270c32eb7, 0x61b0f8f298ed8bd8, 0x2be368d7f69437e8, 0x42c2cbef61e56dfc, 0x3c891c766611a856, 0x875b1f2a9a849f89, 0x000000000000e4 } }, { { 0xe5fe3440d1f1c8de, 0x39537a0e64f042a, 0xc931aad6ab36355b, 0x20ff521eab53578c, 0x262d57de45e63897, 0xcbe2119025bd15d9, 0x207e6dc7baec92b7, 0x8cfca09497658783, 0x000000000000b4 }, { 0x6c1f449f1109b914, 0x5adeca4c908d7ecb, 0xa8eff790c54976e7, 0xe724e783928b05bb, 0x3c58e4ffbe520dae, 0xc053cb7b4eef62a5, 0x4c88c1bedf8f958f, 0x36c271816a4bf8d6, 0x0000000000010d }, { 0x949d88bc1aa536b2, 0x59565404d5ab0444, 0xb1485c6edfceb61b, 0x7e0ae572d50cc42e, 0x61b3856675cac08b, 0xebbba583c3e1c2d8, 0xc210949c1a338e1c, 0x75f79d69b3d18e5b, 0x000000000000f8 } }, { { 0x28864c2734c43fa4, 0x1f571d1e49184d12, 0x8a6dcde1fbfb9d24, 0x6b07657bf614884a, 0xd98335b5bff7be42, 0xa56eaa8baaf650ac, 0xa96ee117bc978328, 0x11d45fba9ca225, 0x000000000000ed }, { 0xd9f3820512c30a8, 0x4d3379db5043bcbb, 0x1bbb7ad0c14f5caa, 0xc3067581236c00b1, 0xb8f01e5f6f81e4d6, 0x8f11f9ef0097b5f1, 0x58a7d2a46be8e5d0, 0xe1baf5378b44d478, 0x00000000000068 }, { 0x2d387d1c78496918, 0x48b650901f0a63b2, 0x17c9f59500b50777, 0xaa151d7c16258b5d, 0x47543bc47890f451, 0x3e0d661dbc6cf83c, 0x2708c8cfc6d85d55, 0xda2bb3aedb4d7c41, 0x0000000000017b } }, { { 0x9cc751c3653a8498, 0x3c4cbf9adb3499fd, 0x4758241c68b574bd, 0xb6783c222d37602d, 0xfab842106eb0a97a, 0x29ed6525b8b4c810, 0xd7976bd779f4632f, 0xe156b7952a47663c, 0x000000000001e3 }, { 0x5116c927e453c8fe, 0x499cd1ea12566da1, 0xdf3c7124bfc51d37, 0x8410330fb7b383d0, 0xe04693ceb0c7201d, 0x4825130a763bfe79, 0xcd7280128d5485a, 0x50d395bfd2c64a1e, 0x00000000000189 }, { 0xef1aafd109b4ee09, 0xf32034a427bcc54a, 0x4d709bf33b69faff, 0xe77822ba9c2b63b3, 0x8dce748c40989769, 0xf94d723bee70f0b5, 0x3454bf737be11fd3, 0xf010f562a2dc9108, 0x00000000000019 } }, { { 0x74dc380e82ed7d93, 0x2aac2efa36edb00a, 0x7017a94775443a2c, 0x51ca276daaa6b977, 0x1508c9c8ad167349, 0x69f7223cc079d1a4, 0xf14196aa77db04cf, 0x426b4afed967785, 0x0000000000012e }, { 0x9271dfd49a48f611, 0xb3bb479fb779b557, 0xc3a73c444fd9040b, 0x9a61cec45abfcb6d, 0x2261d1ab7fa68908, 0x970f6422abf930ea, 0x637fba88597a62ee, 0x182eb3fd9531cc2d, 0x000000000000c8 }, { 0xc360d89d576b26bb, 0xd1501e84b1a75a3d, 0x19fa1e0ff85fcf5e, 0x40f674ee82ffc8e6, 0xdd33deac6ad1093e, 0xd0d0c6d698e8cb6b, 0x951899e11033c6ac, 0xfdd39a1c9a0c106b, 0x0000000000014e } }, { { 0xf809c661aa781cb3, 0x8f3c07ea0be2cd9e, 0xa69e966c278c9980, 0x9794165d34c0395d, 0x1574ee07a608a6a9, 0x82865628c85ffdea, 0x31dfd6602bbc2ee9, 0x8d6e89b5c3947ea7, 0x00000000000121 }, { 0xa25305626abc6f7a, 0x2576e03ec872de52, 0x4b3104ac5b80ed15, 0x6c1d70277c37bc64, 0xa0151681d992650d, 0x736419ccef53ca3, 0x3bff587d4cd67b6, 0x4c72a9cd1fcc9cce, 0x000000000001cd }, { 0x227baf3d66abdb07, 0x20c69ad3db1bc549, 0x2c2ccf952fe7b984, 0x56aecf902a98aa92, 0x32c99c41808d4f4f, 0x64aed5f82653569a, 0x78396be7c154a86a, 0x1a91736588487c21, 0x000000000000a4 } }, { { 0x58845693efeadbf2, 0xcd801b5931df0548, 0xb6b4584cac661a8b, 0x838c516da3dabd8d, 0x77a9705c9e7b935c, 0xd18fd320554e65c5, 0xc121fc17b56d76c6, 0x6074275d9fa7d2f5, 0x000000000000d8 }, { 0xfafcbe973924bbb1, 0x3a697198a5bdf341, 0xefc61d3a4f845cc8, 0x6450e49cb43489af, 0x8f0611b6516488bc, 0xa8e503638b0d0aad, 0x1b61c7fbd8f93038, 0xb713e90769621ac5, 0x000000000001a1 }, { 0x7ded576910429547, 0x78a1498d406f5fd9, 0x1f4fc268f80856e1, 0xd178d06bc3804ea4, 0x654a262314d5457c, 0x494f9b56513bb59f, 0x3e529be2648c1d1e, 0x7adb20b6d00615b5, 0x000000000000a1 } }, { { 0xfd1239a4e0b3e25e, 0xab377d726b0643f4, 0xd2327939fdf7c100, 0x6147ce1733a79747, 0xcebf028c1be6389, 0xb42366b3229b10ac, 0xe1634264b269aade, 0xc8ad14f9a4962c05, 0x00000000000116 }, { 0x43e9838e53f575a1, 0x6202fdf7e2fd299, 0xe047156efad2fbb8, 0x8ea235177bb5f82a, 0x904da8718c72ebb4, 0xfaf3d009ef4081d4, 0x35f6074d94932fd8, 0xf461399ef25aeb5a, 0x00000000000162 }, { 0xef7910f28757751d, 0xf58303d1da3510a7, 0x11dc96c35f562633, 0x2274085aa006d18d, 0xb1eee2d5f20ea494, 0xf79af7b47b9e72b0, 0xd05e81c07c1c0533, 0xb39b93c6fbba5915, 0x00000000000024 } }, { { 0xc79975f19fba8deb, 0xc32f96ae0bd12ec0, 0xdfb0bcc3d4f1b2c9, 0x331866907ea2405, 0x30ae24a10c02ce10, 0x6681acccfd8e30d7, 0x10603bcc58896e73, 0xebc0e9d4dc02419f, 0x0000000000008e }, { 0x2bbddea4256db8b, 0x37418bae0acc71d2, 0xe13b91cf12b11061, 0x63cd62f79163959, 0x341a6606d0a40d28, 0x2772c4d5c174df66, 0xcb4fd1dd29300a8, 0xba618fd77cf3b3c2, 0x00000000000139 }, { 0xba23d3f569a5df79, 0x1099cac7027cf247, 0x2712576844383299, 0x9197f4a183fc5753, 0x4bf96d0e269d3db8, 0x6dd3980d5c79177, 0xb2236af226dc8b22, 0x7816b2a6ccd7bbbf, 0x000000000001d8 } }, { { 0x83e29995b93414b4, 0xb5e81cb2baaeed63, 0x330d2efe2d53836b, 0xd266ddb4983a49ca, 0x4006a040528010d5, 0xad54f58a466413cd, 0x2ad1f38a802bcd54, 0x1d2f821e6a8918e0, 0x0000000000003e }, { 0xe5b109b927ea0f9d, 0x76efb4bedb20e238, 0x79ad8190efe1afa9, 0x826e91e5ed378b4e, 0x7bd7e4388b343420, 0xbc590dc3259d19aa, 0x98148b5f36b6e414, 0x153475cd17d0a7a8, 0x00000000000064 }, { 0xe9618352d9f59df4, 0x67d26bb78d0e5d53, 0x62399129b44ca894, 0x70030766520d2129, 0x72474120f4ee11df, 0x88f7173a1ea8d48c, 0x2ac5f362219899cb, 0xea74cc48994b85cf, 0x00000000000141 } }, { { 0xa27eed947a9fee91, 0x3664a37cd8ebfa08, 0x92237baea418df12, 0xfdbde91f44159063, 0xafc35d5849a05cf4, 0xcc1a6ae74c9493cc, 0x6115b1d3567520d, 0x96dcaa08ad90c50a, 0x0000000000015f }, { 0x42afe163417a3a68, 0x883476e87bf1fc4d, 0x28ad597be59fde01, 0xd28eb1758cb5f20d, 0x6022ce6317fcebb7, 0xa5d857cdfcbd1fb7, 0xb354f55b174452d, 0x1630cad3f7abb46d, 0x0000000000004b }, { 0x3a2b965781ce3a29, 0x9da3333eae2f65f, 0x1d8103592fe40c93, 0x1ecd61d662376d32, 0x726d767980775e16, 0xf1c637c55a50cfbe, 0xdebf323036adb04d, 0xdeacda99734a6331, 0x00000000000085 } } }, { { { 0xcbf1aebc33edbacb, 0x1173871a2cb7d078, 0x3dfde177f4a5278b, 0xacd6be91fcb8d617, 0x7f28f4e2ad021cd2, 0x1a162fcfcf905d7b, 0x74a2585a10297b04, 0x21fb80d7c6f867b4, 0x0000000000019a }, { 0x77290e0289ecadca, 0xa4eda590cbd49b2, 0xf91cbf609a4fd600, 0x770acce3a34a513a, 0x5b0eb182a64a82bd, 0x9f8ad43632d9236a, 0x417de7243f2176a2, 0x191e5dcad45d2165, 0x00000000000142 }, { 0xff896d77d0129770, 0x618e465ad8f23dc1, 0x770fc612426442e4, 0x7b64be9e9c93490c, 0xb6b6cdd5317934ac, 0x16240de6dde8631e, 0xe9c236151c5eede0, 0x69daad7117689cab, 0x00000000000048 } }, { { 0xb854117a38630e16, 0xe1c23f20472a1a20, 0x35f55aae820b8f70, 0x6132a154aa801287, 0xc6c9b5b600844d20, 0xff86338b9e513c6c, 0x29df2fd0823cadf5, 0xea1b397bf6c25aec, 0x00000000000075 }, { 0x256173eb8a8f77eb, 0x3304d2f16117e14c, 0x2b97f8cedc9dd811, 0x71966a15605cc539, 0x8ab14ed8f9687a15, 0x914185b9a7ea7517, 0x50024663376dc95, 0x5238a716cd5bc285, 0x000000000001f3 }, { 0x368e87f2e4908fb6, 0x36246f8fb9079eb, 0x6e69de07697971dd, 0xad1f379bcb91a2f8, 0x63ff614d636228b4, 0xd59d5744dc2c9ec, 0xb7ff14fd74d63d79, 0xbafa1d3586f92bd8, 0x000000000000d3 } }, { { 0x1919f983e642b969, 0x57d85dab76c5d452, 0x4d0fb1c896b6984a, 0xd90790d33a70329f, 0x42db96099524c025, 0x8a1b5f2eb77b1e8f, 0xdebfce9e77e1a189, 0xa18ebb94734892be, 0x00000000000057 }, { 0x7ff0211378c163fe, 0x1feebc3bf680e7cc, 0xb488af2c0ff3e303, 0xbd39f338600116d1, 0xd22c549685adea14, 0x9715048648c8383b, 0x91d1f25ea93677b0, 0x9a1695c09a01e28d, 0x00000000000152 }, { 0xcb00691f9d083475, 0x30ba61375499a7b8, 0x50898e88cc4ba0bf, 0xf47551ca219384fa, 0xb7c6cdd4715eadb2, 0x10bf946d7129511c, 0x98d6a98a83661bca, 0x166e3e8b73042b95, 0x000000000000f2 } }, { { 0xcb319022dfb7ca44, 0x9a8e73885738039e, 0xa9bc74ff474a8503, 0xf3a043098195fab0, 0xb0fb50755806f894, 0xe912098d2067b27d, 0x6c42c55fff088569, 0xb67a34c95c9b6cc9, 0x00000000000190 }, { 0x7976b169b6c03052, 0x8b552ccb9b3fede, 0x4b18d2921d80f094, 0x5cb89f509e18d868, 0x758260efb59508a3, 0x7af190bc716b87fc, 0x121193a5b63db3f5, 0x1e23c5bd90302660, 0x000000000000fa }, { 0xe9ea9f272737bc5b, 0xb069cadfdc23991e, 0xa68e11b3b04e8205, 0x698c676ee923c355, 0xc569876473c6135, 0xfe9c11107624be36, 0xe3efc5002e7d4e, 0xfe357d419c2a760a, 0x00000000000124 } }, { { 0x48f12ff00d774977, 0x76155ed023d1af5a, 0x7c13c4f6ca9e0cb6, 0xcf79384831279cb9, 0xdf6656705bb1278, 0x3bb32e57cd3061c7, 0x366910b5843e9bc2, 0xddc4c00b9cd8bd2f, 0x000000000000f4 }, { 0x52814566b14ac381, 0x6b353a094238bdb0, 0x989a5ec6f28bc9e3, 0xe321d702abe1f45c, 0xea00e950ee0b5b8e, 0xe024ccbc90879003, 0x720a014d0276f44f, 0xd05c46e0240e6310, 0x000000000001b8 }, { 0xce184ede41af9451, 0x8023a5736beeb22a, 0xcc5ea7e447f8aed0, 0xecea84c0f35bf1c0, 0x40c427c4f58e7fbe, 0x4cde55da1ac93c9c, 0x3551fd8d6fc60ed1, 0x4c3f56a8e7ecbf04, 0x0000000000011e } }, { { 0x61ec6a7e6b68f694, 0x90f3acdce26b0076, 0x2675ba586064e61c, 0xa85e95c1661f8826, 0xf2d7695fb2887fd7, 0x873a4174368d8339, 0xe342c06e5252ab44, 0x4eceeecc7e5fdb75, 0x0000000000011a }, { 0x20c0845dbdd5c624, 0xcce04358f47cc9ac, 0x6d436417f1124c89, 0xf486c59cc9077aec, 0x2b8e6d5f2694ad67, 0xbe2bf3cda7bc1aa1, 0xc7d77a6b6be2eeee, 0x3032b0a7db4bca74, 0x000000000001ed }, { 0x76d0ec9fa65039c0, 0xa958a7c2f56985b5, 0x2396b1ae47a69c38, 0xee5d5e2a3a32abce, 0xd3c967525f39d694, 0xd0bf2588722fa8f, 0xb985059e00e9c162, 0x85aaf9e024eb5f16, 0x00000000000102 } }, { { 0x180a4413ccba3588, 0x2d458cbc58e012e8, 0xc2467538f42ca8dd, 0xd5b15de4ea01a574, 0x491d5c1167b6e282, 0x3fb248d6121ec9d6, 0x165330cfc9f1466, 0x7c11294ffed6522d, 0x0000000000005c }, { 0x3aaa7e37d16c6ced, 0x5a0a7fbbf4320058, 0x80b9f1c2734a9634, 0x74da05eb49e17bee, 0xe049097e57489df7, 0x5fd6c536b748bbe4, 0x3dfb16983976c248, 0x770258b2560f1001, 0x0000000000013a }, { 0x65a30cb41d7c5697, 0x9ca170282a35932b, 0xfad405171e2a14c0, 0x78e6d7fed3199ba3, 0x4b0d4cc79db09996, 0x1415fe14ee3fb882, 0x768f43b6639d2e0d, 0x3a9c4a0fc8b0b380, 0x00000000000179 } }, { { 0x1498ab37c9e7d0fd, 0x9bd610be7ab4749c, 0x1aa845cee5ce7a1f, 0xb0527e2db6cee267, 0x78db22e7d7c82b1e, 0x2cebd5c12e14772d, 0x941cb8dbcec47737, 0x664efefea50da510, 0x00000000000180 }, { 0xca94ee37e86eec1, 0x1c2a1d3311b5755d, 0x44f4589fd29c0268, 0x9952246625b415f2, 0x215da626593f5ae3, 0x7cf97bd1de0252e1, 0x5d6409acb5b4ad5f, 0x730081c98185e422, 0x0000000000004a }, { 0x4b6b5a6ae5d7a8a5, 0x6ea5924640d8b6cd, 0xffbda8ca5a2d0c53, 0xdd9a856b7e7fd982, 0xfe28fa695dcf1d8a, 0x869fa7a1b4e8de20, 0x48e6b0ec136c059b, 0x30a869580ba520f4, 0x0000000000004d } }, { { 0xdde558b12936f645, 0x276d59912ac3863b, 0x23b4817af7d3b38a, 0x7112f1ee65b940dc, 0xc2c7b6d82bd70f63, 0x7e8944269c6317ff, 0xa123483b6aefcde0, 0x5982cda38b3f13c2, 0x000000000000c6 }, { 0x51273b86ffae6f2, 0xfa5fc1ec64956338, 0xf2702f96ac47948b, 0xc5811b8a9d4a2089, 0x78b062731fb3de28, 0xaa01bafcad9cc3b9, 0x23873870b6e850f4, 0xb1f96763f52af064, 0x000000000000b4 }, { 0x666e1c5ddbe9fc23, 0x73c7e7573a45fbbd, 0x6b7345a7b4775a7e, 0x5e87f05cf2611664, 0x1d2c1e846a24c78f, 0x898cd32a292e5579, 0xa2328843ee40ba37, 0xb33ee257e6b9b338, 0x0000000000009f } }, { { 0xcf52417f39f35e49, 0x9b4def78a3216102, 0x31327855529cce21, 0x1aa3502151543991, 0x39aa9b6558910f7, 0x7fe3a76e1db44905, 0x354a58d21d60c5d4, 0x61c2faec30fc7a85, 0x00000000000138 }, { 0x5fb66708c4b98b0c, 0xacc8b44640b11efd, 0x61dd7be269aa72b2, 0x3243224bd6f5f3e3, 0x6c43f659733ecd35, 0xe51172c4d43a4f5, 0x873381cfa1666e8, 0x744bbfc64a778912, 0x0000000000017f }, { 0xecdfa4630ca7d225, 0x9a52cebaa082492b, 0x1aa4cfba583b2bde, 0x1df9478e079ca751, 0xc938001bda37be51, 0xbf800cd27c1d926d, 0x42899930bae4cd65, 0x9d94f9221a873820, 0x0000000000006a } }, { { 0xf1c32e04ccc6e819, 0xbe33e2387e5a2338, 0x11f440e10a3f088, 0xf6801c47459052ec, 0x8e16e70aea514ccd, 0xa2bc6ecdf191d13a, 0x490c34b2fd166f1e, 0x61a1e8be66003e3e, 0x000000000000a7 }, { 0x4e8a28398dfaaaaf, 0xdd9cb027f2002623, 0x88d017af3c97715e, 0x94d2d39ff352cdb8, 0xa85c6e158e20ced5, 0x9d7459e61b50be64, 0x4bb3f2753a0557b5, 0xab72a64e80f346b5, 0x000000000001ec }, { 0x3412e12ec239702f, 0x1782fe8da6a64e13, 0xed95918628616b95, 0x33997123b9f1ae0f, 0xc8a001e72f18ef8, 0x3de92cdfa9f2bb7, 0x81fc4d3651084fa2, 0xb78dbfc7011ca451, 0x000000000000b9 } }, { { 0x2f32404f0534e5e7, 0xaa9fc553aca1a94d, 0xba77d1a35bd55fb, 0xb48475e33150bfb7, 0xbce0e6aa338a43c1, 0x14cbe0ac435d7f6, 0x66388310be1098ba, 0xe88b823633acd2da, 0x00000000000069 }, { 0xaeaf48b983bec19f, 0x35bfca2886fe73bd, 0xbd9cf1447c9d6aec, 0x2c03e8013cf25690, 0xd5c912caf569dab0, 0x55ced7f5d4fffbfb, 0xdfa3e78db85ee6b8, 0xf38a5c287b75c00a, 0x000000000000e7 }, { 0x4d38e10bda74270a, 0x8cf3ca3d3bd01fb6, 0xec150aa3ff9bb1ca, 0xd3500e2cb77406d9, 0x13a389c5c156cba3, 0x5fcd935e6cc1a246, 0x115f915de03e80b6, 0x75738c0e6113ad74, 0x000000000001e4 } }, { { 0xce59928bf8213282, 0xd5f2751a116103ff, 0x523ddcd83ce04a03, 0x29cd94604c55ead9, 0x4e7b182d1f21dd08, 0x21f91fb0accb1e95, 0x9560acc16fdf9f82, 0x7242c07a37c0f86c, 0x0000000000011a }, { 0x2c87fe6c2407ebd4, 0xc8b6fa4f7ca77725, 0x610ad90b51de91ef, 0x313d225233a459b4, 0x77c8c8bb472cda8f, 0x9028efce4ccbbe3e, 0xde0445c3df587957, 0xd8134b6fb3191df1, 0x000000000000e0 }, { 0x9314f1b4f4ed2b09, 0x1775303b8cd641a9, 0x149325ca32ac1f3a, 0x52fc3de11de31334, 0xbba99b4c6a71d328, 0xc4ce9c1a2e0199c3, 0xa91a211570d52fe4, 0xec5b294d05310291, 0x00000000000070 } }, { { 0xd66c4b3b351eff64, 0xcd4918652eedc9d9, 0x776298ec1cf35c3, 0x45484316e35af40a, 0x3f1c464cead67241, 0xa5ee1e8e495547b1, 0xa4041770a7ecf21c, 0x418e12065c7cf9d2, 0x00000000000033 }, { 0xf829c1ca9422c30, 0x8856d277beea0c2c, 0x56eeb630c98f1d53, 0x519ae2d8e92e8855, 0xd5c98472b8ed9e00, 0xeb19e57da5b2709a, 0x2fca5fb8c768d89e, 0x553d379e64d1aa7e, 0x000000000000ff }, { 0x97323290b1c3f6a4, 0x80809a63970857cd, 0x4c55af4946ccd4b3, 0x6f5ae57b3241867d, 0x717282408ca0885, 0x86d529dba7f16c78, 0xe20bf968071a46b1, 0xcad600b85e1cae07, 0x0000000000013c } }, { { 0x9a436f182ae840ab, 0xee4bdbaa850ab063, 0x996695faa022aa48, 0xda32527a05270485, 0xa32349b347c3edb2, 0xd9042607c5f3b47f, 0xc110b1b8639c0017, 0x7a611accf12b53e1, 0x0000000000017d }, { 0x5a42f3007e57aa9f, 0xdbfa4258aec5c620, 0xfba428e9d3f4afd1, 0x474dc4fd3b007225, 0xe7b45630d595c87c, 0x9f5659ef6d1be1b8, 0x41eab0f1cc28ea1f, 0xe93d76c74d9c3ede, 0x00000000000090 }, { 0xb71dcfb0d645ccc6, 0xd3dcbb9d900d8cce, 0xa079b8f593c2461b, 0x8e18cb4810fcc901, 0x6ffc1783c71ed753, 0x76adb76669bfbb85, 0xfdd4c79f04718d04, 0x4725b32dc8b3deee, 0x00000000000112 } } }, { { { 0x82378be6f1fe3acb, 0x5ee6127c257a6453, 0x62cf740d7cfba531, 0xab8f508aecb34ff, 0xfbee9c04cd912de0, 0xb4e640e6351f2fc3, 0x1c3b1cfe21f820bc, 0x5903d9b335cdb63c, 0x0000000000005f }, { 0xd5c89eb7f99a0eab, 0xbee2da2d1743477c, 0x20ebbb46998513f8, 0xe8ef56083546000a, 0xff32ca93353030e6, 0xae76f40137ef27bf, 0xdc7fcfdd0c7e5b37, 0xf07d8058b59b8ce2, 0x00000000000122 }, { 0x72b0426b10c498e6, 0xec1d6506e3a38c78, 0x6bb78c3a3e410468, 0x77ddf3228eb640, 0xc82e8b0c1572e890, 0x282fa558b508ffcf, 0x1465e159afcb255c, 0x4f65a2f8f4a428c3, 0x0000000000004b } }, { { 0xc7a61461e63919f1, 0xf09f7d5fe7abd118, 0x434c39c4e5c151f0, 0xabd53c72a255d3e8, 0x412c595594556eee, 0x282bf2e5fbadad31, 0x4e66e4e88635747e, 0xe94473e150aa3d3, 0x00000000000136 }, { 0x59811a27a3718354, 0xa905252adb546fd, 0xcf13e9d5221bf185, 0xb855a910cef65a3, 0xca7dda8dd5bf2314, 0x84820879887213cb, 0xb9ea16bd79b78760, 0x17904d8ca401e50c, 0x00000000000014 }, { 0xc74d7681975095, 0x4fa088bbe4366231, 0x573fd945882a0995, 0xa5195e33f4aeb90d, 0x8b3d40db81829c08, 0xac5900e1183a8e96, 0x7765d7b36039fbb1, 0xc068e2a0c7881553, 0x0000000000001e } }, { { 0x1e28eb378f7669e, 0x7757cb578af39153, 0xfc94c21442da2b95, 0xfc008555d58fed91, 0x97ee54c694f5434f, 0xfab9809fe6dc60c0, 0xd05b69106a928f73, 0xc48bcb7a968e8ed5, 0x00000000000108 }, { 0x21baf2680834ef7d, 0xf2386aa2397898e8, 0x4414d3888af37a66, 0x8e2093a6bef06719, 0x4c961aa3fa6ff23f, 0xeecfac44ca1cac55, 0xaf551656dafea45a, 0x555d9ba01b3553da, 0x00000000000046 }, { 0xdaf7fce812f96b5a, 0x7d771ddda3c232b7, 0x5a2a5934e708af03, 0xd3225a3ea169a05b, 0x1212615a6ec51a40, 0x7e5856f032b3450e, 0x1fc830feae2cf7a2, 0xffb69e2a4b7bc69e, 0x000000000001be } }, { { 0xb1a2552af192ac25, 0x69dc4019505cffbc, 0x66bee7c25594b9f1, 0xc97987390c8a57a8, 0x93e75f9744ada23d, 0xe8b6495eb3be8276, 0x260b1acdd7fbb4f2, 0x566dbc0ddc1f6276, 0x000000000000e0 }, { 0x3d40c149fb2e0eb6, 0x9c9a1b7cf1a9756b, 0x7c9b4d9b0ec4c5dd, 0x4ff6a7abea2c01e0, 0xc90b0ab49ffdd83c, 0x61f402a027838131, 0x56b915221c95f935, 0xbf9a962a89ebf717, 0x0000000000010d }, { 0x285b9c7c3867a3cc, 0x6e510c5895d999dc, 0xc8dbe2ebbc411b2e, 0xb0aad56efe46a554, 0xdf41b735d890d191, 0xbd2efe8b38b99d1a, 0xb365a0e39e10a68c, 0xbb27a44c13e1b53e, 0x00000000000119 } }, { { 0x7f9ef50eff55e173, 0xdd1aac13c32beceb, 0xf0eb5716ca54efdf, 0x26037ac0120ad316, 0x1bcb0c21793e56f7, 0x9f2fd77e14ffd684, 0x83a7b6ec781655f1, 0x4bfc532ecd148c2, 0x000000000001bf }, { 0x9886bbf8dbffce3, 0xf021b11a423d57f6, 0xf1cfa238e53bde6e, 0xeb60a7dbd1cdc42c, 0xc79779d143f1a4af, 0x101c9f7e6fbef8f1, 0xd2c30530130bbed2, 0xedc7e7592138a144, 0x000000000001b5 }, { 0xbc4a40f7f4febd25, 0x481eb3af8d57462b, 0xdc5cae77186cd15c, 0x95b83c8220d75b45, 0x55d98a0c51b7e35d, 0x5bfb22c21f336804, 0xb3bfd9423e58704e, 0x7c503bffc4eb696c, 0x000000000000d7 } }, { { 0xa516548171da01e2, 0xbd1b6891dbb49748, 0x4936535b467f5806, 0xe6521b1c343ead20, 0xaf9409a1293998c0, 0x472c82bc63257b03, 0x47cc91beec795c6b, 0x3cf010724f22d6a2, 0x0000000000017f }, { 0x63f13561f9928845, 0x9db8629372794a2c, 0x9d149edbc1c25efa, 0x239ba94502a17650, 0x4c7e65c1310af4eb, 0x5d5b06c2a3fca77e, 0x6389910019d026b6, 0xbf9d5f2a97cf4beb, 0x000000000000ec }, { 0xbc2361724962dc4, 0x58a543fd33e76565, 0x5ce4ee1faced4e73, 0x7891c589decb91f8, 0x855c388e63d679a, 0xe10131ed70125e2c, 0x765578537cdaba74, 0xc849fca6139dd87d, 0x0000000000014a } }, { { 0xd78444670b5f4cfa, 0xc5f3e3783433ec59, 0x872c9aece42e85ea, 0xed9fed33e1f5828f, 0x9242e9f91e05cb49, 0x2ec7243a01bef363, 0x6179762494737ac5, 0xac404e4f4912a6a6, 0x00000000000111 }, { 0xb123521e7486a938, 0x5eab63417745235d, 0xf18bdb7da5e3ccc3, 0x3ee3e3f62537e8d8, 0x54d522091eb090ca, 0x273c22ecb824672, 0x553267c649485b04, 0xd134e60c8ecd0f8f, 0x000000000000bc }, { 0xd17b9f75af96d343, 0xc9cf3d1d0b410c59, 0x6779581cc1dfb73b, 0xf814ada5b925259f, 0xc5478ffd3466e820, 0x1213c843f5938d1c, 0xd4f343cadcad6fbc, 0xe1dd42a8ae6e1dc2, 0x00000000000098 } }, { { 0xd663ad9fb7b9711f, 0x39819335a04b3836, 0x137906f348ad65ce, 0x8a5e3a62fe4b0477, 0x624bad77456cfa3c, 0x7aa2e855f664353, 0x50145425800eb9bf, 0xcb6ff3043ec388f8, 0x000000000001f2 }, { 0x293318aa1752c43b, 0x68b3139395619f3a, 0xb9b0d7dce08a5778, 0xe43d4d444bc27e8f, 0x418ea586f71cd5e2, 0xf38b4717833debe0, 0xd22b60a4a822c4ce, 0xa49cb51eecd74c06, 0x000000000000c4 }, { 0x6917283add6dba60, 0x1e9e81a8c8656b88, 0xbed473df1a2a6638, 0x5f640e21d2f6d3e, 0x5a8e11b27458f10, 0x66a51bda53e44e6e, 0x9ec9b476fb09ed99, 0xbf8b474dedfe453b, 0x00000000000148 } }, { { 0x2a17e32eb2a0e67d, 0x1712a2c7f1d8774b, 0xdac084062002292, 0xec8d5ff2b8580845, 0xe815d36d36c691c6, 0xf60ff672be191597, 0x3f4f8e0b6f518351, 0x328a66468946600f, 0x0000000000019c }, { 0xe1718b4e2d2d6a33, 0xf2b1113c1c54f75c, 0x947b0a28cc3e330d, 0x5c2a1f3b04b21983, 0xae90466d3f2ffdba, 0x31aac04981fc9c20, 0x28ce406b2c6d7dd9, 0xfc1a3f57585ed3d4, 0x0000000000000a }, { 0xbe06917f4a046b51, 0xab2222706a846ea2, 0x8ad6d4598a10cbbf, 0xcdd233e5087e53d7, 0xaf34b349bafd7099, 0xd3705afa5293494f, 0xf0d0df2dc02d246c, 0x8c88fee084fa5321, 0x00000000000162 } }, { { 0x71d607cc525aadd4, 0x202eba9ea0d2c28c, 0x9d79a664243cd6, 0x3ae248bf332affba, 0xcacf141f591afa0f, 0x6e4d126a4401ac3f, 0x63d3c08c17c278c2, 0x97c654e4646443a1, 0x000000000001c8 }, { 0x9bc90a27ad9f7a36, 0x79d17a6d2e731e6c, 0x699ad360fd520cc4, 0xadeec28ac284104, 0x248af5069a78be8c, 0x8b8fe31d3211d6dd, 0x16e324c5c84c6b05, 0x5d823f33f22fbea7, 0x000000000000ec }, { 0x2b79c4c5f71d0e00, 0x6b4ddbf243f9fd74, 0xdae641f00530fe53, 0xde811436d58583ed, 0x28c4306d64de4823, 0xeba044e08681a6e7, 0xe7a3bcf5b38339c2, 0x77f90264c8c7c3a7, 0x00000000000150 } }, { { 0xf56c47a90e34e8b7, 0xdc79ab2fcce6ee10, 0xe4ae6d3d5b86da1c, 0xeeb4bc05c0e4e6c5, 0xba58065212892dd7, 0x7539a9f406810fa, 0x4fb9a5540bcca4b2, 0xbfba41266f0bc8c9, 0x0000000000014a }, { 0xd0854d648e9715cf, 0xe3e57c25a0f833a4, 0x152b1f93ef96ea95, 0x1dd99bfc2647d5c, 0xee131a1319e2d60e, 0x8bf06e8fae544b1, 0xfb9cac28918b6ce4, 0x41924c13e37bea, 0x00000000000039 }, { 0x1f3469a25fc50149, 0x75f56b585032e6e7, 0xe6df19840ab44652, 0x7ad0a3486f03ec83, 0x1fa6db446a762ba5, 0x3c5f2199b6175bd5, 0x4412fcc8590d4200, 0x45755b6269236f96, 0x000000000000a6 } }, { { 0xf035db6b49a9f9ba, 0x572710db88141461, 0xf64257f43b7fa88b, 0x46a3ed0ba3b9aa6f, 0x79e72b194502b825, 0xc021386f82429026, 0x5a5b792d56c43861, 0xab6e4c031bea09ba, 0x0000000000000b }, { 0xa3ac19f20d89e44d, 0x79a20b06e314b121, 0x30b9cbe1feab78c0, 0x5d57177643543d7a, 0x98ce1785ab94cbcb, 0x6c1ba9997d61e606, 0x1300163d56dd0667, 0xaf9ead6e016807ae, 0x000000000000cc }, { 0x5c8193e2f484b02e, 0xc0f709b46fee28b1, 0x2a392ab1d6219174, 0xd7d5d5ded974638a, 0x7f523e07bf503448, 0x6c0f42a69d7f4ac8, 0xd651ccf3f6ad597c, 0xc338310919789138, 0x000000000001d1 } }, { { 0x4185cc3bb38232ae, 0x2cff7dda77d1059a, 0xca08843fd097094b, 0xd3903cf561d703b1, 0xc021853c0958ff92, 0x7043c3bb06ab8cb6, 0x2e7ba087a910d832, 0x88ec80fded52dfe8, 0x0000000000008a }, { 0x85da55a2b8d44b2c, 0x94f30ed712e2b44c, 0xffe62213d70845a4, 0x853daa0957321866, 0xc52e82f96d58af75, 0x729d87152257d454, 0x3103df3c80e3aab7, 0xe35fa020fa3d01ff, 0x00000000000164 }, { 0x7d1a15c45b430b57, 0xafa972cb68efc9ff, 0x5b961e6b87adbcca, 0x11e6e784214dd9ec, 0x1d76fb0bba169690, 0x9abfb9acf0d7ddba, 0x892e7250d9fd5648, 0xc2277060279a6376, 0x000000000001a3 } }, { { 0x31d9295d80874097, 0x9d3d4e8f44ccd2bf, 0x73b9a84bfa533a69, 0x4406388553b23c0a, 0x451d1447272ee311, 0x409e1133fe64c093, 0xf1e597a261e16e2c, 0xf842d322b931ee08, 0x000000000001f1 }, { 0x8f9d84ad82cb3264, 0x3ea183b9a5dde0e0, 0xc4e09b6589ef51e3, 0xe5c8c0fb98e32b85, 0x228d8bee166bba6e, 0x6b270111689a41d2, 0x547126496cfef81a, 0xae925b2dad2cf571, 0x0000000000007c }, { 0xbe96c181ef1e57e7, 0x1b73b2f62bb80fef, 0x305c22642b618c65, 0x7527e3aad7dd7325, 0xfd06c03c0b7ab18d, 0xe2e26ae6bc766f15, 0xa93b41267e750935, 0x33c0f1af7ec2116, 0x00000000000188 } }, { { 0x8fa76e63e77cb1ff, 0x606e3e8272d39cfe, 0xfeb0884e7b7d66c, 0x5bae468740d2a638, 0x510c7c5adfc9145a, 0x7e15de5be397e964, 0xefffe4d1769582e2, 0x37712f3fb8c511fa, 0x00000000000099 }, { 0x2c6fe6c510319146, 0xa47d822bdcc807be, 0xb5ae9f1fa6dc40ab, 0xb506508a3d55265b, 0x103c3888038f4f8f, 0xc2afda0408785e7a, 0x53dab9c0941519b, 0xf9dfa5636f4ca1, 0x000000000001ba }, { 0x79211cc39af8a631, 0xdab2f970bd588c8, 0x4759c9507a09f3a7, 0x31017d86692cd514, 0xec0c5dc0d00159a1, 0xc0f6869382216cd9, 0x1833086d7571a28b, 0xd56b21c384a5b8ff, 0x0000000000011d } } }, { { { 0xd37e81dbcd9440d2, 0x4a97bf1ff5590fe3, 0xe871cfb75651e3fb, 0x764921454e23f15c, 0x6a681c8d9f4859ab, 0x7dbbfc26bdc70391, 0x2f05e2aa35d6b874, 0x43b887e9873206e8, 0x0000000000003a }, { 0xc78aeef078c3bbd4, 0x576abdd03a7c5892, 0x2fc5dcf82eb135ae, 0xfce85ca54248fe2c, 0x6f24bd8a4ead10d5, 0x1f06103d3e5ea22a, 0xaaadc40d6201ec7f, 0x116dfa25362dde33, 0x00000000000023 }, { 0x65a5af617c7152af, 0x2759cecbf35bffa5, 0x18ca1bbff9310a0d, 0xd0560477512d3963, 0xae8a468aeb6fc756, 0x6d9467e504af1295, 0x9b8cbf321fb056b7, 0xcf233c7f5c1b599b, 0x000000000000fd } }, { { 0xbfb5b2e10d87b66e, 0xc93509e6ea09c7d5, 0xf6766a78af5b11cf, 0xc4714623e64ac169, 0xa645c8c8bbd38f48, 0x148dadc005a430b3, 0x1097ec7e3392e08, 0x401affb37d1b6f34, 0x00000000000117 }, { 0xaf89c2a7590b96af, 0xc6f5c8f1ccda1060, 0xe7865a17db8b24a9, 0xe819e86c37c324dd, 0x1e2fd41079456574, 0x96bf22b987a66d2c, 0x92972a396a2a6207, 0xc3bed1b62d94e4f2, 0x000000000001a2 }, { 0x284d7e44a821e6c7, 0x589a42e9da68b605, 0x3c3c41401cf4ab30, 0xe0ca4f7599373af7, 0xba93ee3f119452c9, 0x515f7de8db655401, 0xa3f39c4b8146aaf1, 0xc882223e40a82c8d, 0x0000000000003b } }, { { 0xa6e8f41a80d5cbd5, 0xdc2520e60c8a3e36, 0x1446923465ca608c, 0x130fef60f65c52c5, 0x903e7f87b2da7165, 0x36f66b64be2d1814, 0x2820b2e38588b1d, 0xb4728f684735f74, 0x00000000000150 }, { 0x31aa8c4b2dff4d09, 0x28ec976609361b36, 0x601179b299265469, 0xaff8926127c176f0, 0x5f61c442461d27a9, 0x8b94aa54c60c11e9, 0xeba29397ddda70f9, 0x8c48e8281ebeabe4, 0x000000000001be }, { 0xeb4ff0bf82301c5a, 0x83221bd9b77fc6be, 0x518bb58c2e96619b, 0xba6524ae4c09e53e, 0x2b140100432ec811, 0xe5945fed8267b607, 0x3ffee26d76f601ed, 0xaf1ea52f27b7a09f, 0x0000000000013a } }, { { 0xbab5d4a2422daeb2, 0x4116b2b50281c23, 0x52214eebec60e288, 0x5e46babe2165f13f, 0x96782d4f8f6a75e8, 0xe06c1f7a8b096571, 0x84d47b472f58927f, 0xec311422e71addb6, 0x00000000000105 }, { 0xdb9f7123beb8449d, 0xc97ebc6078da465e, 0x7180262f65477fd1, 0x7ca193d5d4d6aa82, 0xf65a1d528c232179, 0xdf2143af428b359b, 0xd5452314fa72cda2, 0xfcdfecbb3c312afb, 0x00000000000011 }, { 0xc7ab91933aff3a80, 0x14c24ed3abfb0711, 0x1dbbc9f5570c40b9, 0x51708bd41e6f3071, 0x9526a3d244e21951, 0x1b03b96ed3aec2c9, 0xfd33d8a2925bf906, 0x365aa322e4852cb5, 0x000000000001f7 } }, { { 0x8d5d608536c2e06, 0x8fa6af1ff5a28bce, 0x9473be3e5ab9e8df, 0x776af855eac1110d, 0xd11048d30365e70f, 0x114bbb5d099e3f07, 0x83e742482cf5ba7e, 0x4fd31658f8b89f06, 0x000000000000ca }, { 0xef867ab27bb11f7, 0x3ceb1009cf9025b2, 0x2dd1b04b573516aa, 0x9fbdc17e006134fd, 0x2b3eaff465fa90f2, 0x71612c71e944b77d, 0x1f99c785f600cfdd, 0xb6e2535c6a210634, 0x00000000000055 }, { 0x451acb08dd997735, 0xbf3b857943c64a3d, 0xa6fa5712c4226787, 0x8326a1e68e5a0e2b, 0x2a0c23f9f3f17522, 0x1d56972da65b1909, 0x549de38597465f52, 0x640e74bd0820eb80, 0x00000000000148 } }, { { 0x70fb052bdb4fed13, 0xf7fed73ced475c28, 0x934b6024929f50f4, 0xc10f76aaf7f8d71b, 0xce31444931723790, 0xf8c423dc90829c95, 0x812f33bef96f14cd, 0xa0370a757c379a06, 0x00000000000152 }, { 0x559958a0f110d70d, 0x5c627a22a0f9acf0, 0x83acef50229d1c7c, 0x449b651a3c64de37, 0xb95e979480a8743, 0x4430589491931537, 0x1f29f62ab6415e50, 0x4006d73bd6f45d5b, 0x000000000001c4 }, { 0xdff0fadb286d9667, 0xf4b4038cd5e84baa, 0xc01ecfa552266880, 0x2ec71cecffb98d3, 0x80c78291cced08c5, 0x84e0e34ce2f19f88, 0xcd32ef5476bd3992, 0xa87b36c199ed386, 0x00000000000184 } }, { { 0x4af032befdd0af53, 0x58a7bf1380d73161, 0xbaca10cc85aa3656, 0x6d0655310c547639, 0x586c8176afe9cf1d, 0xbeeadc7b811a56e2, 0xc3249de7a986ac62, 0x2274998fd3044ea, 0x0000000000017f }, { 0x2874d52d89af1f93, 0xa84865db9bcee28a, 0xb42f17c8162aa830, 0x4323187743904719, 0x31a886eff3cc55b3, 0x1f5a94958aca5135, 0x94d5e496f404fd53, 0xf11765d1bd2e7d50, 0x00000000000110 }, { 0x240a3e36a7602dde, 0xde4c063ec7500774, 0x8723f245dacaafaa, 0xaed7785b3cf92674, 0x8d663a7abbbdbdb8, 0xbde79411ec8cab6f, 0xba89ebaebf228613, 0x10981cb84f61d419, 0x00000000000136 } }, { { 0x417e867cc7fd697c, 0x139604fd27133465, 0xabd99b9c0e52d566, 0x336188b425ebfcef, 0x6257093ddd4dfcb6, 0xf1b4e60c65dffc48, 0xbd56de6b1d9fcf99, 0x3425a50a2e257100, 0x000000000001eb }, { 0xddb6d753d02e81b2, 0x3236acf767216826, 0x5600816151539df1, 0xd64c390c6ecabdf, 0xe5756ecef7cfc244, 0x3a5ec50feb1d2047, 0x2780759bfe30570c, 0xfd61eef7754a6286, 0x00000000000173 }, { 0x4469fd8fd137f26a, 0x68d0fdf1f65284f9, 0xa4378fc17307360b, 0x9c4d9840588e6129, 0x2ba754214d70ecc0, 0x3dc9307feb972daa, 0xd349219b89fa0eb8, 0xdb7ec9b3f8babf28, 0x000000000000a0 } }, { { 0x66b75122c87107d9, 0x2f05a03733258c35, 0xd75288e181d1cac1, 0x346b927009f1aac7, 0xe79db0079c1467e3, 0x2d12a7eeb4dcfa31, 0x9837dbc37dbadc0b, 0x73f25adfb92183b9, 0x00000000000102 }, { 0xf11b8c45bceb27c8, 0xccb81605785eb1ed, 0x5bde08477bbed67d, 0xb47d9d1ed7dbc70f, 0x278a5cf77b813dea, 0x4c8d682b5743672c, 0x5514ad018b0ffca6, 0xb9d3f168dbe0ceba, 0x0000000000000b }, { 0x1434c8b4c123f6d1, 0x6fa8978b26233a39, 0xd6717d5d2f85e23d, 0xbd74dd89b947d791, 0xc3d8d33c437866f8, 0x21091b9f5333a393, 0xfd628fd3e3e7ea88, 0x71d89c49d8157eac, 0x00000000000071 } }, { { 0x8815a8eb41810043, 0x7404fbc80020b38b, 0xaa4c64ec107005be, 0x1cf0925f5dcf0ab9, 0x9391e97f97fb149d, 0xf719ea0cf09c9fb1, 0xf2fa406f86c9b55c, 0xb8d367047568ce61, 0x0000000000010d }, { 0x5fa3bc7c72d4e98d, 0x4138e00186c8f6e0, 0x21b5c4d562bb67bc, 0xb3b74a97339c0072, 0x25368b0d96fc1adc, 0xd823b2802416dbd3, 0x62be73240ac7fa25, 0xa2b25f0a56aebfd0, 0x0000000000017a }, { 0x737d552f583e0ac8, 0x7249a62f80fe91ac, 0x95e0f4881797f630, 0x8d519948a9410b6f, 0x355b606defbf3a03, 0xe1f1b799c186f80, 0x822ff40f18431d8a, 0x28600a2faa4e4801, 0x00000000000079 } }, { { 0xa91febf9c6eab60b, 0xc2b7465901f36ebd, 0xa28d56cfdf5f6013, 0xf9ef191cc3056db6, 0x1e792154db9ff53a, 0x15430dd757ae6a55, 0xbc50d7de50ef8e1a, 0x7bf6f97a51160f9, 0x000000000001d2 }, { 0xcfd5b9bc841e8f5, 0x85e0cd527801c931, 0x51771cdbf1f6fc05, 0x2f4b0a775caba2b0, 0xe19a63b0699965b9, 0xa7c73029ce6c704e, 0xaa1eb0964027fa, 0x82e37fcd2073a3ff, 0x00000000000083 }, { 0x7cb375cbcd8bd1, 0xd021dd24782c5fe1, 0xa4daba8d92e97ee0, 0x849a85831d39b11, 0x5c4316130f29cfed, 0x3f1744a5eece30, 0x2d8805b87a11abb2, 0x6d1086b5cfc8b81c, 0x00000000000031 } }, { { 0x1d953c5cbec067f8, 0x468b77c4517046a4, 0xec8b874a0cd24b98, 0xc0102f64a53304fb, 0xd02c647cb00b3eae, 0x13e116e8f6daab09, 0xe0514cbf8339368f, 0x6c36a25dd02763cd, 0x000000000001fd }, { 0x1ea822132285148c, 0x982e363d3c45f7d6, 0xe5d178e4862b0a15, 0xbae4d9a5d6deed53, 0x3ef882fcb8db300f, 0x8f1dc3c65f7095c7, 0x44985a51a4074feb, 0x8b38a7f0b57eb625, 0x0000000000006c }, { 0xb07dfaceacb5ddea, 0xb1d1465f9410bd8, 0xa9c2fe50177844ec, 0xe266a44f1d13f1e7, 0x78570f17c9957335, 0xe272807149b886a, 0xaac3a0b72f99f1d2, 0x4ed138195494f3e8, 0x00000000000008 } }, { { 0x48af958788e1be80, 0xfb0c35bbe1fd934c, 0xdc46425bec07d2e0, 0xed2ccca6055444cf, 0xb80232e829a29fa7, 0x21ee190f23ff3189, 0xa66bb07ae97ad1f9, 0xf7c56c50ebb9f4d1, 0x0000000000010a }, { 0xa2f1fb1b048d73f8, 0x3dc5717b520e1aa7, 0x4826b6359ae1696c, 0xdd38c20b09ee99b3, 0xe4ce4c813ea1fdf, 0xf3f98e0902654720, 0x857c9327b4acd8d2, 0x14178c3edb67f6b3, 0x0000000000019c }, { 0x662815531c66f5a2, 0xb26b8b7697ce516e, 0xd85f3c218808a9d1, 0x2438a0b20785d333, 0x3bf51d56e616f828, 0x9948607c4257eb00, 0x9cc93f18c4b62591, 0x91e7a4e534e28071, 0x00000000000146 } }, { { 0x2407bf93ce4fcae, 0x7dd9ead8035129af, 0x2cf56f9bf3386823, 0xaabde0d1cd5fdd4e, 0x9888e0498a216b8d, 0xf38b4af87c5235f, 0xf88337c02192a275, 0x7aa24255df062552, 0x0000000000018d }, { 0x6661f7bd846485a5, 0xffbfb438156ec0a9, 0xe93613c6a407d1f1, 0x88f1872c9c52c246, 0x9ddde95444c40fbf, 0xb8b91b0370148d6e, 0x2f9e0438c9d6a80c, 0xc8fd3d704b71f2cf, 0x000000000000d8 }, { 0x85ae33968ae9b226, 0x95636f38ce9faf6f, 0x264b36a28d36d0b0, 0xfb7252b6c9c0466d, 0x20e2289eb6492e9, 0xafcb1b0a9492e3a7, 0xfac23cdefab858b2, 0xae49354e453ca710, 0x000000000000c8 } }, { { 0x6f0c36d09d45d60f, 0xd20ad61af807c7df, 0x56144a7268d2a23b, 0x6675c25073e38e8, 0xef5b8a4f6f96d644, 0x1ed61a6323118dbf, 0xe2cc47fd8b43ed1c, 0x55732b6e4d8eb6b9, 0x0000000000014a }, { 0xce81a2a56d9e6bbe, 0x98e2279e306a8271, 0xfc9b8095af1d51dd, 0x3e3ccf83a53fbe6f, 0xfdc565833aeedfaa, 0x9c90c2f1869b265b, 0x91e7d92a2008e87e, 0xaf561565bb86f58e, 0x0000000000000a }, { 0x575e4c75ecf0d2fe, 0xdd334c4ea9f91b53, 0x1d3824e9bf8b3573, 0x6aa41d2bb2dbd8de, 0xb4a01fc901739eb6, 0x956013730f327477, 0x833adb09e6fa1b46, 0x7319d9f6e7d0c54b, 0x0000000000001d } } }, { { { 0x824457a349324616, 0x5b7e6897994836d4, 0x662d1bad0ec9a471, 0x3cfaa4efcb3df0ff, 0x445f1417efed13d8, 0x75eacee0a7c162cc, 0x6254a648874f5ed7, 0xc7d87de9857f52fc, 0x000000000000c4 }, { 0x114a7277fc31feda, 0xa5695ff2e27378ab, 0xd92ee35fe88bada2, 0x89ddab351a04dbf7, 0x5b0077ee45cf54f8, 0xa827236731e3193b, 0x1b2f6db5808bf870, 0x2525151b8c591b1f, 0x000000000001ed }, { 0xe0653e75604fdade, 0x12c1cb4bf83082f0, 0x31c0a2dec0dae735, 0xdd2b351410026ff3, 0xcd710ef977701eaf, 0x5a23bdd4b8a7da74, 0x5969e1a241500b78, 0x9c45635c1a87b68d, 0x00000000000042 } }, { { 0x220f02af49e5b0a1, 0x174a2adf25743c53, 0x7526dce431b42883, 0x46856cd029deeb44, 0x67ec7c212d12ef1b, 0x6358c324c1b3b03f, 0x44f552bd945756a6, 0x5f4bf36f495043b2, 0x0000000000005b }, { 0x1be7ee08574168a6, 0x6b4cff261070b315, 0x75c1c332ad9d8709, 0x253018ec08d756c1, 0x2d6eb0bdd31c6660, 0xb6167fb0003cd687, 0x8caa1724b080ecc4, 0x104b01570cbf43b2, 0x000000000000c6 }, { 0x973913c7c793f400, 0xd9210797a60b8e9a, 0x3def6920ef28b6cc, 0x3b211154d0063fe0, 0xea646974c86c8fc1, 0x6f1ee36b657b354c, 0xb38b2a1d75bbf74b, 0xdcc9c92d6c9dfbe5, 0x000000000000b6 } }, { { 0xaebf670b8c0d2331, 0x381cef8561c52386, 0x2f6551ffaddc7914, 0x1a5008699a3de7d3, 0x998fa728ce226454, 0x24e56d9d39d8aab1, 0xf8d2303077525186, 0x7c073978f319deb4, 0x00000000000074 }, { 0x1cc2ad425755c908, 0xa3cb1054d450957, 0x4e1a88a32a85cab3, 0x894445327db80fbd, 0x4a08153ae8a61ed5, 0xcc36494a353e205a, 0x50e8863e576277e4, 0xc5d05a23364112ec, 0x0000000000002b }, { 0x702e30235a8f0007, 0x16831e17b0b9efa4, 0xb0a8a45149643850, 0xa4806f25876635b4, 0xd3696a73d28968ad, 0x482172fa47af4e9e, 0xc69e309c5777a10f, 0x216990f5d53958de, 0x0000000000012a } }, { { 0xa4de1a0fb1565552, 0xb09a83f8a06c7bd5, 0x24a1dc96e3e33584, 0x383504e0116c701d, 0x84536072f4cc7893, 0xcef5f990dc609e6a, 0xe194b986c93619bc, 0xbdfc0a51cf2fb58b, 0x00000000000166 }, { 0x3deda08b3a81d0e3, 0x5b2b70938b2e69f6, 0xd9fd1ba2765538cc, 0x2b510e1b03054978, 0xfd96202ee685db01, 0x933d466de6862d53, 0xcc3b0a60d4866c25, 0xb4f7186ae171f2e3, 0x0000000000002b }, { 0x63fa89ee9d1669e1, 0xddac8156b2fa76a1, 0x82b8e3a1134fc4d0, 0xcdf00130e23fda75, 0xcf05af598a84d09f, 0x13cea2671684aa2d, 0xa4aa84eb156f4f46, 0xee1333b3358098d8, 0x00000000000022 } }, { { 0x7716b09d6f73fdf5, 0x21bed7924d55236d, 0x3d429966d7e2474b, 0x5ebd60b9a8eee7fb, 0x1f31db0b957c1c93, 0x3d749415b6062029, 0x8ca6471836e8e5df, 0xabd1810dd418b14d, 0x00000000000062 }, { 0xa99f03ea8d3865fe, 0x2b210c310ee41f03, 0x38cff184080e3bfe, 0xee4b83118c68f038, 0xb7e67a4e74568af5, 0xdd6dba1fa4994d1f, 0xf90816fc2ee7b849, 0xc9e066a1354aebec, 0x0000000000012e }, { 0xc9b03e8b6af257af, 0x270c4680cb592efd, 0x92142c8f4ba99ae9, 0x3e003e2825c1ba18, 0x1828c0385988086a, 0x55463ea5f29fe3fd, 0x2bd3708facbf1d52, 0x25a5af7a9380bdc4, 0x00000000000016 } }, { { 0x3686bb78e4b5b4a4, 0xcadf2fbd980e01d5, 0xb510925da72953e6, 0x2d243298c606cd4c, 0x214faeddcbfe0b36, 0x74096a7c69fc6431, 0x403a13ddf2455df, 0x6d66da45c70709f1, 0x00000000000108 }, { 0xb58a081083bbe437, 0xaae00def937faae6, 0xd6740658842c1f27, 0xdc7fbafea36310f5, 0x2c71b8cfa46f223a, 0x1dabce7d6532bb3f, 0x3fbb6bff4075c1c7, 0xa261da35554ba76, 0x0000000000011c }, { 0x79d7b1c675bb0b61, 0xc3fdb734fadfe3d1, 0xfcce42de93bdedd, 0x2c4cdcf381c2a954, 0xbff93c5d47379eb1, 0xa9847b2a86eadd79, 0x151106e92f54482f, 0x2fdbf9e597ddbee0, 0x000000000001bc } }, { { 0x8e6402ea4639502d, 0x6ab974325d2af13c, 0x1b83959ac016391, 0x624c58a5bfa408f2, 0x2e695fdd2d0cf55b, 0xd9a4039948186d2f, 0x921c1d5bdeaf7bd7, 0x276f6bf3c3a01444, 0x0000000000010e }, { 0xdf659df054cb51f0, 0x39ff55fbdb937ad7, 0x6c201bf55cfe7c81, 0xa3daa6764dc96f0b, 0x31d1ea59e6dbc21b, 0xb8a54921fdb171ec, 0x727ed8b09785b240, 0x3eb465d7d27c8e9a, 0x00000000000099 }, { 0x6aee111e911cf9eb, 0x3606bbaf7e0898e8, 0x2e2cfc50ef47552c, 0x5be20853ddaa8066, 0x3a061dbf1906ad30, 0x99d1d6ce522a3081, 0x89be986e88ef792d, 0xbaa9e33738c840dc, 0x00000000000053 } }, { { 0x862e72cd2aa3b432, 0x57f0aac47aebcffd, 0x8d7642841a9e99d9, 0x4ec0c0ab7dabfce0, 0xa614b732e5ee6dbf, 0x90263649708f1737, 0x76a00667b43e49f0, 0xdcc1fa4a49b75c2, 0x0000000000008c }, { 0x1b77140fa68053d2, 0x1971cebb54e63133, 0xf94f0d50c02b4b46, 0x4940e1b510f277de, 0x619239e8139b0208, 0xab3f21b24faeb13c, 0x350671013a686355, 0x749915fff585bfa5, 0x000000000000c0 }, { 0x245a279783b64ceb, 0xe2fd698b75397c67, 0xa48acba385153f7e, 0x5b70589240b2747b, 0xb9484ab5e686e3a3, 0xcfa98df1b7be38e7, 0x75112a28dbe0d271, 0x125d702525cd97be, 0x00000000000176 } }, { { 0x43405e32287d1e9d, 0xc3b7503a11aae8c5, 0x5edf4068406efbc8, 0x278527326904e978, 0x83b5ca418ec0ed2d, 0x5bb6f8d6281c4202, 0xb2b13372f19b8a2d, 0xe971492409dccc30, 0x00000000000028 }, { 0x2135b00d0b45542e, 0x7fb9dbc9c03b284, 0xd51d786c004b719a, 0xd8bb901e30dc47fe, 0x4587c7b4705e5fdc, 0x2fd5ac9006f2aa36, 0xa1167272301b11de, 0x93b440b5c393b50d, 0x00000000000163 }, { 0xe5eea08f6115acfa, 0xe8b94ab84b4c59f, 0xc8c4b7eff9683d80, 0x240f89857f070731, 0x775315a994a33981, 0xf682bed103415cbd, 0x80a7117cc328ff0a, 0x4116c16a21823b4d, 0x000000000000ef } }, { { 0x38b890f8ce2e0849, 0xf5303a4ebeb4912b, 0x807eced676b931c3, 0xc1135640b8ef4ace, 0xe0845d85e07a8bd8, 0x1c3076d659ae9ff3, 0x786182df843622fc, 0x14ae6e25595aadde, 0x0000000000010e }, { 0xc3b089c9ab8db7a3, 0x5ef41a4caa3abcbf, 0x3262431f6694bd05, 0xa8eb21b47c674e7c, 0xbbb16c96765e4fb3, 0xe7c2d54717ef714c, 0x15cc820c59f2874a, 0x59fa000f4c1626e, 0x0000000000007f }, { 0xf5282fffdfb7f9f8, 0x69dae514941a9c77, 0x7f64a06bef970ed1, 0x97be74da3813ed0f, 0x8ddef454c67151ca, 0x6aa06e8576f7361e, 0xe34381455420fc9b, 0x73baa5fa31786ee1, 0x00000000000018 } }, { { 0x5ee80731c933898f, 0x61a6f789ce42a86d, 0x8b9159099f1a7cb5, 0xbf979d3df67a41d2, 0x45afa3a729eeb3a3, 0xd4910a06765a92b6, 0x8ce977a79ac7c45, 0x4f993191ff90da4d, 0x0000000000011b }, { 0xd5ec271de8a78057, 0x498b5db77d3331c8, 0xd79111fd02575b58, 0xcfb15e0a4e8997c5, 0x4c061d9f9907386, 0x1524e89b9e44b96f, 0xfcadfd5ab2639540, 0xc155273fb89ace33, 0x000000000000cf }, { 0xa807198c1cef2b2, 0xb3bb692e0d22b82b, 0xc612f1a055e5d4bf, 0xf24b77b99f72cb89, 0xfdc54655c942bbc1, 0x142e1971280f6169, 0x59fdb8b0a73d9c47, 0x679eb3b37dd537f5, 0x000000000001e6 } }, { { 0x3da805385077e96e, 0x305e932f4e3b45b0, 0x877c591e4da1feb7, 0x2b7ccc601709caa3, 0xf87b271ec000591, 0x17859281adf03d28, 0x69d7bd36da4f0e75, 0x32c2757f0a8995a6, 0x0000000000018c }, { 0xfae084c1197666e4, 0x15fba7ff594d506, 0xb7cbdcf58ced3cb1, 0x41b8fae2bf2cc0a2, 0x798d04822640aa31, 0x74b60be440d05053, 0x4e21820abc1181b7, 0x3415d94dd31fe254, 0x00000000000086 }, { 0x26f81d418c0c2ec7, 0x83d47347f53fa9d7, 0x5dd16b8486c81a48, 0xd6125a3d5896d932, 0x6ad6a26140fd0cb1, 0x37956cbc01d3834, 0x9292163f17fffa6d, 0xfdd69d31840cc02b, 0x00000000000053 } }, { { 0x8ab636e412f558f1, 0xeebf41470cb66437, 0x78ff2655b05c0f4f, 0x240a49e80f80764b, 0x41f74f8c9ff63a93, 0x59f898bb9364810e, 0x6b0663f45c6087eb, 0xa3e0b091697ac34a, 0x000000000000f7 }, { 0x3b864b339eeef138, 0x39b0bd2d1054e70e, 0xcfd49a0e08d400d3, 0x8969eacf3981c815, 0x42c8bcdeb3da5e01, 0xaf4a07a44d38a51b, 0xa25c3da3d4bd40d4, 0x25772b011c057617, 0x0000000000002d }, { 0x47f1966606c886ce, 0xd92712309c16cab5, 0xd1cae7a16d430cf9, 0x38efa8a5d6c0c743, 0x3707732b864384c4, 0x3db1cb7b3f232057, 0x98d8ea37b2de7fc, 0x72f4ea76d11b7a3a, 0x00000000000165 } }, { { 0xb2c27d6bbd14ba0, 0x80dad2bcd17adddd, 0xedf6cc3597b1a62e, 0xb5c2bf1ef48dde2c, 0xe5d84cc23e5b1b47, 0x6b9413e31ba5d7b9, 0x955dd77a95cbc8f4, 0x1ea183387c79023d, 0x0000000000017e }, { 0xf75b317bb8d02c2c, 0xd5ab3bd5a36aff7b, 0x3f64a493e9e3a43d, 0x6364c6d01add5c63, 0x7d5a372bbc472619, 0x4560df927576d55c, 0x816d27060c563f08, 0x647764b7982d2803, 0x000000000001ae }, { 0xb0879009b3447fbf, 0x10c3ba04f50d58a1, 0x28ba350196220394, 0x716df8d6ccfa0a0c, 0x3e7f793cfa2161a1, 0x78105d56b7b5e4bd, 0xea646cb724b663c7, 0xf9aef85cf2af4dec, 0x00000000000166 } }, { { 0x1f88ba11e7c7f313, 0x7708c0646fe26875, 0xdaf68fe5da76781, 0xa394199070892717, 0x5a02d8be5c63bde1, 0xf6e9d9d4f5be11b, 0x41a2113a6b34d46e, 0x4fa1bf0e4f4755c1, 0x00000000000167 }, { 0x93f6a72e6ed01265, 0x95fe61ed98848bf8, 0x1dc7996f3c3048b0, 0x693f6d718da0d94b, 0xa2bbd78ed157d415, 0xcdb7b2a1a0a44577, 0xc89096a9e43302d, 0x5f583d68d595c91, 0x000000000001b7 }, { 0x6089aab27bd8859c, 0xdfb4d6982dc3829d, 0x146bf4fc4bca5fa2, 0x3ae4a4cc4ec55380, 0xe32def71cec80d4, 0xf949d077eefe0e9f, 0x892357bb1d690124, 0x21c7d7078e544c7, 0x0000000000007a } } }, { { { 0xf434179af0181caf, 0x280e26f544b5e82e, 0xf9cce7b67c334733, 0x7337508ae404cf7e, 0x454c4e9a1a4e44bc, 0xa044041a81bec4ad, 0xed5affb50574a331, 0x6c363630c27b6cec, 0x00000000000069 }, { 0x74d06e9966a2d3e2, 0xad6db4d15927135f, 0x22b1617482d310d1, 0xa2ed3628e5b9ebc9, 0x6e4860ce60e092e3, 0xa72bb03c8ca25301, 0xc6dfad7363c6a22e, 0xf8449a51d8b43303, 0x00000000000160 }, { 0x7e200c4d472d674d, 0x8c4494847c29a3c3, 0xed02da01f27ee31d, 0xea30420198985474, 0x9dfa0e7209f3c7b8, 0xf125b00e2fa2f303, 0x5cba26eb0029de98, 0xbc43824e4334bc55, 0x0000000000004b } }, { { 0x1952df2041cba224, 0x2342f8db76eeed37, 0x74ca70d4f9cc81c5, 0x49a1aed5fc7a72a2, 0xb71434a54c347f60, 0x26eff8cd3e66830b, 0x1501c57c1bb1a350, 0x7570671f32f70956, 0x00000000000039 }, { 0xd6a80f12263f676c, 0x701ec0cc9e4faaea, 0xab40751e0bc531bf, 0xb83f2eea077b2152, 0xb53b50f7044ac414, 0x4e2fb0928eed930f, 0x8fa58b00ff68fa7e, 0x42292821ebcbfb50, 0x0000000000018a }, { 0x1368a0bf1bc4bde, 0x94a969b8f550ffd2, 0x9726ce5b49427d6f, 0xbd834c84d4a17c18, 0x67a8e9566af07229, 0x4413c155e5fed336, 0x337eaa888c2162f3, 0x2446b810cc93bce, 0x0000000000013f } }, { { 0xf37210b775b6c835, 0xc82bcde9a02f7f34, 0xfb2aa1057c73445a, 0xa5d9c82336aebd99, 0xd4c8cdb75dc0456b, 0x1b724d65e7cb33de, 0xfea854c83206dc08, 0xffa08a6ab6909bd7, 0x000000000001dc }, { 0x5f3f88774128b16a, 0x868ff5fe33bfbd82, 0x2f5fca347c3549da, 0x31b81d9fa2379768, 0x1d7068e43bd82bb, 0x7278ce8c6b188146, 0x6844e424ec58d2e1, 0x642b0a85a39db1a8, 0x00000000000121 }, { 0x73e1517d618d96be, 0x38167011f2c19aca, 0xcc9c7a34a620d94e, 0x45c8b3e5336c2c51, 0x44f14a680f3a0713, 0x1fce16394c69baec, 0xabafe04b38037520, 0x4781bc8b4f48ccdd, 0x00000000000085 } }, { { 0x5220bd36811e3b65, 0x23714fca6a077174, 0x41b9968b791ea501, 0x42eabc898cd7fe32, 0xd5e03b018a4e3089, 0x8857c50ff81c1045, 0x1a196909ba7dc9bf, 0x6fc8f5e103c9b980, 0x00000000000144 }, { 0x29051ae854464707, 0xa82b957e6751a13f, 0xc0e3ba962dbefce2, 0xba7a36fdad05dd9b, 0x77dbe06990a5a32c, 0xebdfc7a08078a1a4, 0x5aa86c3d8247a637, 0x8f5f94de83b275dd, 0x0000000000010a }, { 0x9c7da3e1c2095440, 0x3865f428ba079c17, 0xb661ee87bdac76fc, 0x2e22756face648d3, 0x450111dbd5eb53f3, 0x850f4aff30c0f001, 0x8a5b5b80b4cb9989, 0x9a99909a033122a8, 0x000000000000cc } }, { { 0x6899417b96eb1c2e, 0x579b6fa3ae984bd, 0x3e96a0d62fc41e7f, 0xdbf090fa1b94810d, 0x7748b09cc5a0f90d, 0xab491bc51c1885e6, 0xdb43078f7846c2c8, 0x1fc5ce0d39516429, 0x0000000000012e }, { 0xbe7a9087441a3ec1, 0xd3a943e37a2012a6, 0x7a98751d9eda0845, 0x2db5c0854b642af9, 0xd9b8c26ae24233ed, 0x3b1827877647fdef, 0x2518ca3cd2dc1569, 0xaf66fedf01eb8043, 0x000000000001f9 }, { 0x49ece327332defd5, 0x9b65453b77183447, 0xf55765c22bcb4d04, 0xcdcf1e7738cde2d8, 0xf1f00db95690508c, 0x74ba5924d17b5674, 0x638cb18ed50cceb9, 0x7a55b8137021bf49, 0x00000000000095 } }, { { 0x425d198a91870a6e, 0xb7404ea00af4f86c, 0x811a7b85a16e0923, 0xfea39f161a63a5b0, 0x6d9faeafc8d5b100, 0x227aa96aaadf7d04, 0x6d1471bd8fa96eca, 0x72a08aa78c3875e8, 0x00000000000158 }, { 0x726045187c69b27d, 0x2314df6e8f262f17, 0xb43858d5f4fdf64a, 0x2f898d7346e2fe86, 0x210c468ccd355814, 0xec72ca33b7af8a4c, 0xf474ccb044dfe82c, 0xe1f2147fa02eba01, 0x0000000000017c }, { 0x45dea65a299fdbeb, 0xb1be80c6d849a0cf, 0x41db2c3f764cd7e0, 0x219cacc2e10c9ab7, 0x78c62a696d55f60f, 0xf59abf023ad9d8a5, 0x7f888e40dd11a9f9, 0x89ec1f49261d8c08, 0x000000000001ac } }, { { 0x65fd78d43ec8f7b9, 0x141bf31ddd1f33c3, 0x3db2ab5ffd2010ec, 0xef25660a0bfe2477, 0xc2c91fcab3b9d2cf, 0xe56f370f0df2836a, 0x39ba5cc40baa3ef6, 0x6efaa6d97da40876, 0x000000000001fb }, { 0x27ed05edab58008d, 0xc89bc069b612a5f4, 0xfcf0421224fc2af0, 0x3faf3d81a8e6a86a, 0x4f02f206e323539f, 0x3f9698e549f9ffb, 0x6136fbc8deb41060, 0xaa81dee3d0833f21, 0x00000000000095 }, { 0x3ed14f16200876b6, 0xe9b1109c4adb3231, 0x9de11442f9e78872, 0xad2c3eea02830b27, 0xbf414b0d9f22f8c9, 0xeda1318930547375, 0xdced5ef085da520d, 0x2d18c6c4f6c8bc9d, 0x00000000000027 } }, { { 0x66de0a9b4c462f16, 0xb43b9e9c8c4004f2, 0xb7b20e8b0128a66f, 0xf3540e436e4a55dc, 0x7f03938f65850f3a, 0x1d197d96eb4e8fb, 0xfad43c674f99ca6e, 0x9b3ac9b6ebd58e4f, 0x000000000000af }, { 0x8b9e90f24c8b7ef4, 0xc3e481d66072631e, 0x2c762d4eaa71ff7, 0xca5cc09e558cfba, 0xfc300c82701d3c39, 0x92cc5e31d5067bab, 0x714433b44c877eb7, 0xbcf0c2e6e9c644b5, 0x00000000000095 }, { 0xd82ec9c43a70eefe, 0x4232215de571e6d5, 0x4a8064a513481d37, 0xf067e112dedc737, 0x89811b14f7ac835, 0x1d8b8fa29b06fcb2, 0xc2c7af6f1769135f, 0x407ae26d894beccd, 0x000000000000b0 } }, { { 0x743b6ce2691b6684, 0xb5a6b02c68f57aa7, 0x836a795d6ff0baf5, 0xcd61a39900b83a45, 0xc8295f20a16ee7bb, 0xc56eddf57efa5135, 0x3fd63485f2abde2a, 0xfef2bce7f6ec8ff6, 0x00000000000002 }, { 0x44bfc14b70d4a338, 0x4f3ed9e39d0d85a2, 0xce985bbaced0e475, 0xa98755d74d2b9c00, 0x40fe57f5894bb6bd, 0xeeeabce5ce362f1, 0x9bc95215626706df, 0x61720fa811dc5f7e, 0x0000000000007d }, { 0x72c53ef19a651310, 0x1b6dffbc7ff642d5, 0x5bdd705291bb1383, 0x5f51a8eddbeb306e, 0x814f4b3aa03a85b2, 0x5008ba7ce0ff133, 0x196570d783e699cc, 0x328883e76548d123, 0x000000000001f3 } }, { { 0xe4284b613100755a, 0xd59ae4507c6210fc, 0xa4608cbf92e60806, 0x9f53e8aa50934e14, 0x8c6a7d1a32834343, 0xce0e2195e179295a, 0xbadf547dc8a798df, 0x7154826bc8001af7, 0x000000000000a5 }, { 0xa5f97ab840c202f5, 0xb263a048ade03e8a, 0xae58ca0535fceb3e, 0x3945bce576ce4aba, 0xf0555ddea776e250, 0x8103b0297fc31032, 0x1b7c6bbabbc49e33, 0x63fdae3f1eb3b503, 0x000000000001cd }, { 0xf07674e111062695, 0x84b4baa88be58e18, 0xe6c1c3bd10f32b41, 0x43944f0f5f1f1534, 0x502dc01012b5a3e2, 0xea46f096202d90e, 0xc0d2dc0707d9f91d, 0xd8e2b91c93721437, 0x000000000000f9 } }, { { 0xb0e815f7bfc255ca, 0xe9c1783050eafadb, 0xeaef26e28b3ff39b, 0xaf6d0ded8195f89f, 0x6c1ed95af32e7468, 0x344193522c24ae73, 0x1bbe35ec682080aa, 0x25904f8395838088, 0x000000000001f1 }, { 0xae15c98c42d0603f, 0xd326862adf550d6f, 0x742891c73b21f58d, 0x210a5bb7c218cbf5, 0x8e8b88ef525f30e1, 0x90d8b9210d51debc, 0xc69e2384f4d587b5, 0x30163cad95ecf64d, 0x0000000000017e }, { 0x3556217d78f5ba98, 0xe078c83e60f1fdef, 0x309c25508b08d0b2, 0x52fa3b9c6d186658, 0xb1a9ac31192bf498, 0x6e809ffde39e6d99, 0xda8df7447738c88c, 0x10e19b2e60d99ee3, 0x000000000001c2 } }, { { 0x9024fe7a67e45805, 0x480d4316744bab7f, 0xba05d8767da4a8e0, 0xe95e7ac16f01e840, 0xe91ba23098063c3c, 0xf19d5f94382b54ac, 0x185cfd088c512b29, 0x4548a194c7d8140, 0x000000000001eb }, { 0x3f7b2658e1ae40af, 0x90535c558483e68f, 0x8b5bc30fbbeef439, 0x2f409177365d0588, 0x26100dae876a204b, 0xb029776b2938587a, 0x59fe89be71cc88b1, 0x9da336e5f7ef431a, 0x00000000000113 }, { 0x6e0f55b8addccede, 0xc8ae1caf4a3e3b29, 0x4123871728578d4e, 0xfd8cbb5ea04508a, 0x5b300b13048647a4, 0x89169fa91eac84e4, 0xce9cd0979b84aa26, 0xe98a095ca84fe0e9, 0x00000000000179 } }, { { 0xe8a80d2c46d05b8b, 0x1d4fbdb5701f332b, 0xb1ce7b2d1d3a5684, 0x1e404725e32feb52, 0xa2aac7c6d7aafcbc, 0xfeb1c4d249d5d78a, 0xfa6b3aa1b6e4c067, 0x873253edb50b0a5a, 0x0000000000019e }, { 0xde7db52961be3405, 0x85855db514571502, 0xe292a74c7f56a0c9, 0x2e2337811dd1a0e0, 0x1c1445bf99c729bb, 0x7b4910e180e91078, 0x73241f1875287920, 0xd3b909446847e854, 0x0000000000010e }, { 0x749cbb52405d2e1e, 0x13a2e00a18dcccd3, 0x963f953fa602d2b0, 0x3638ae1a6fd5f19e, 0x100bbd51413d9e5a, 0x62771e2f8badc862, 0xdd34f5cb6ac0055b, 0xf33343beb4548ad0, 0x00000000000180 } }, { { 0x15bd1d039e4c27f5, 0x7a2c0922f6d06008, 0x5f0d778710f969a3, 0xe98ce601cd725ca7, 0xe09cd0ba871ded59, 0x5e91319ccf969092, 0x5b0bddc4039fbbc1, 0x40661828fb745387, 0x000000000000ab }, { 0x695406c6652da337, 0xd22298841f780bad, 0x6e2a81355018f6fb, 0xc490dd2b9ed519fa, 0x57e9e3e985292ed7, 0xcd646813f1cdc5d9, 0x6f8c1f37629167d9, 0x23b59fe226eef323, 0x00000000000147 }, { 0xb8761c57f4d58df2, 0xa40823a48f05f76b, 0xca9d7402c4bee84d, 0xf0217601570311, 0x1b8e03ee3dbee7ba, 0x125a920fa6989486, 0x7f5c355bf9314e2e, 0x76d0819227f022bd, 0x000000000000fe } }, { { 0xae581895d56b288f, 0xe2dc8136d3f5d9f, 0x99c06bd26e917d28, 0x2c8160a759c7154e, 0xc5f8ad06a4be9579, 0x290ca82956ca1d66, 0x6f4ac00b6b1efcc6, 0xe2fe266cafa22b4f, 0x00000000000005 }, { 0x3d3d2e9e3c1e506f, 0x862bd0518e2ed641, 0x7d7b7207d3dc72c2, 0xc3bd20c05b21056b, 0x3092250487ad8dee, 0x8ad32c7cd286117b, 0xc9b84c9e9def6115, 0xec8d55ac9d31024e, 0x000000000001bc }, { 0x28f5238b51236e0c, 0x2edbdc459972d33c, 0x6a7548b4888ba5, 0x56fdcf02363fee47, 0x1b5b15d3da3274f0, 0x48c4ce6967250809, 0x611f13dd098676a7, 0xc9b4818c09972f51, 0x00000000000086 } } }, { { { 0x91c1a5b7d7fb095, 0xfa9f1c85796d01e7, 0xe2264b76ae9dfbf0, 0x5d19da7b1dd1429f, 0xaa344a42957b0fad, 0xc21d22566da1e98a, 0xd1a333fac6d3b8d6, 0x49f7402c9d5f2290, 0x00000000000042 }, { 0x22ae5d0131fdcf35, 0xf001686b4cd29af9, 0xa57879743d653fb9, 0x87180d50a5148b72, 0x21abfaa86402eef3, 0xa9e1789855a67459, 0x350bf06f2b2ee743, 0x176280be7b3c196a, 0x0000000000005b }, { 0x874acc4c0d9201fb, 0xefa62582b2ef10eb, 0xe45f6f7304176a88, 0x437df1b88963f85e, 0xca6eb5c1a2261159, 0xda5860bf769f155e, 0xc4ea88249f4fa4cf, 0xaca307c453463e33, 0x00000000000102 } }, { { 0x9f8707e583983e15, 0x12ebd3a8b9288289, 0x4bf4634e3d5820b6, 0xfd838370f64da37b, 0x988f4d4aa377002c, 0x5f50b0d58be48df8, 0xc0332ca0af26c8b2, 0x9c094db9f74f0bf1, 0x00000000000063 }, { 0xd647ab206cdb68c, 0x249e2d04684137bf, 0x16c3c965e16b877f, 0x3017c7dd75d4b199, 0x1d63b126d83e60f, 0xa5991199d47846bb, 0xf78798e1f206c626, 0x31b39e60306a999e, 0x00000000000130 }, { 0xe890ca51825d3128, 0x1b922cc94d287b4, 0x3410fdb7a3c92cf2, 0x3ccfd0e703079484, 0x2d7759d044fd595a, 0x5e81fcb33e967e2, 0x71a5b2e16bfdeebd, 0x1be187f6e3b29aa1, 0x0000000000001e } }, { { 0x4cebd7fb5ba751e3, 0xdd2d9f4a58c50469, 0xfb1068ad3655494a, 0xce294d93d6bc2d03, 0x698a8d232503dbb8, 0xcc10477f5a70e0e5, 0x25ff2307354bf210, 0x7e5b24bb7ace1b5a, 0x00000000000125 }, { 0x82959222208d3e2b, 0x13fe2c27dd5b9fc8, 0x65093f95a9d440ad, 0x235cb52f4bfdc528, 0x2d74d74628c7153c, 0x59c8ba456f52a399, 0x6c11816038b42010, 0xa04a7c508878dfbe, 0x00000000000181 }, { 0x7ad8642fb09cbdf6, 0xe32b0d3c1e4fa85f, 0x912f8593dc5cce7, 0xcbce625742f5dd5c, 0xc2be048d166b2e3b, 0xa4be56e0743848dc, 0xcb7eef1c2db7aabe, 0xc909eb15fb39095d, 0x0000000000001d } }, { { 0xc11b413ec8133b61, 0x8d2a6d6dee9aeac7, 0x360189c6bcf01006, 0x807c205efa70f94, 0xff4133ea92c255c9, 0xca09991114d97b65, 0x7c0de1a459d13a3f, 0xd486974ea0f83cd0, 0x00000000000133 }, { 0x44b8ada1d6994aab, 0x9c93417edf5d4cac, 0x851fc9a85b7a2afb, 0x8b282c5fd972dfac, 0x7b5405848a7e1f86, 0x4d68c2d64af5cefc, 0x3c428fb531ef15b7, 0x2eb61b2c7585289a, 0x00000000000049 }, { 0x9960da30aa869e77, 0x5ccbfbf1be085fcb, 0x28b72c0c4e031152, 0x49b221d5ebae6b54, 0x5ab632f181949dd4, 0x979eb42dab96b6ab, 0x9c9e18214b66a8f0, 0xc36d569b52aca74c, 0x0000000000015f } }, { { 0xedc17f51919d07cf, 0xd4ceaa896b0004d5, 0x6bb9247ff18b08e8, 0x5473c58fbf889e7, 0x7c2d31fecab4d809, 0xf128181e9464dfda, 0x98bbdb1308ae28f5, 0x7bcab48e6b61ee7f, 0x0000000000011f }, { 0x697bac427041e0a7, 0x3a65a6413ed8fcc1, 0x84594862ad12f598, 0xa5c8d65c72ca187f, 0x1c3eafca9ab0bec4, 0x99516ee3e25d383e, 0x16d076f36fde88e0, 0x14ca8dcd57d6c79c, 0x0000000000016d }, { 0xf69c3249219e8e9a, 0x7f669de3f7cdd82b, 0x773e65f8b1c5840, 0xdf859dbd747bb6c0, 0x9cb6990ed72c9bd, 0xabee97ab90f2006e, 0xfc1f82348d89cebc, 0xc2a3e20f1ce2323c, 0x00000000000129 } }, { { 0x3c26047dca862a93, 0x55e3b2897eed8f8, 0x98857492cf82dab8, 0x1436f3fbf6c1b63c, 0xb3123f38a054e203, 0x946afd8f20aaa278, 0x51d40deba696e3aa, 0x42527c3fbf99b1ba, 0x00000000000097 }, { 0xd2d681091c4f3180, 0xaac8d46a972f43e, 0x159e05abf0870653, 0x247f63013f3a8001, 0x2af633503acdc693, 0x757557fffa39456e, 0xb6ed05d0a2c432fa, 0xe1663397f587939f, 0x00000000000106 }, { 0x20f9e4ad692dec2e, 0xa431998387f5af6d, 0x11cadce01d9fc0e5, 0x52c59d231bed8f83, 0xb4a14a8ff5a5a461, 0xe0e78fd570306ae5, 0x97b9311e8778fddc, 0x1dbf49a19c870b86, 0x000000000000a1 } }, { { 0xacc3c68076c65686, 0x8ff967cba8861f6c, 0xea6598061da6acba, 0x9753e8b694dd2df7, 0xd1419379584cba8e, 0x665a994246c49b1d, 0x65bed1bb1cb4c46f, 0x10ce467546714f6b, 0x0000000000008a }, { 0x48439614b1432eb1, 0xd2d7dd76b6c8d6d0, 0xf78cac256b94c1ec, 0x643a685f20c33f16, 0x30abd388b50ebace, 0x59e821dc93d53b88, 0x27ef71e006125bdf, 0xe143a3bb75653407, 0x00000000000101 }, { 0xce85fa410e4c1d9a, 0x9b6509f3745537e1, 0x3bf759e21a73d456, 0x9f4773db761de408, 0xf1896a30d457c2e9, 0xbab01d3111aa3a7f, 0x7a49aa97782c559c, 0xfae694c907ae582d, 0x000000000000e2 } }, { { 0xe5e9d32a658ae0a5, 0x7187cd3e4d1363a0, 0xad8d48a965bc081e, 0xef81db99ea5db1ae, 0xef66360dcee00c59, 0x2fe3b26d4c77192f, 0x81d7e37634243183, 0x3dcc8352607cf93a, 0x000000000001d4 }, { 0x3e5545412de4d69f, 0x78fc0957a8ed2172, 0xd686ef83f20e9b62, 0xdbda10460c3534c5, 0xb39a46a2485f067a, 0xd47e84856acd3009, 0x67ff76eece23e6f8, 0x7ed3684ad1df7ddd, 0x00000000000069 }, { 0xc9ad780c8229b50f, 0xf3de7883c8c2663b, 0xe2423de3daf08174, 0x2dbe6827e5110046, 0x7292b8c25077ab0, 0x2caf940dbdd19007, 0x2b7eabbb8ad78f50, 0xbc34bc1ca541684, 0x00000000000169 } }, { { 0x2367ab32bdeb823b, 0x9b7b7cd4c7d0504b, 0xa8bf67d1a3136b7, 0x1d28b6b384f79d92, 0x10f131a4b146711d, 0xced264fc71678071, 0x4797dff38190161a, 0x887771ff965dec69, 0x0000000000013c }, { 0xfba7c2f7ec05663a, 0xbef394ab45e9b32, 0x86aa64425c52f8d2, 0xd0dd5dcabbac2ec, 0xe2614aae12bad485, 0xda3aadbce4334c0f, 0x560933dbaa4f9aa5, 0x3ee89d0deb9f8265, 0x00000000000175 }, { 0xef7eb9ab5136c0a1, 0xa124a5864d5d335d, 0xdb94e8872138f5ce, 0x7067c0b2f948903a, 0xe857d305963afacf, 0xf552f1257286d4d6, 0xd06dbee8c389f070, 0xbde47b24361c311e, 0x00000000000035 } }, { { 0x1137a0166cbc050f, 0xc91404a0ed79d645, 0x4ec6386467eb326c, 0xc86fbfcd8bde142b, 0xdebbfa37d759d370, 0x83e747382ef7bdec, 0xa8a1426c943187c2, 0xbd7486344bec56b1, 0x0000000000007f }, { 0x400e8796f35b6f66, 0x78c80d935d099754, 0x2a4050c835109d9d, 0x74edeea7de41e4dd, 0xe3bf35fd0760123e, 0x2e91906620d27810, 0x756e25505659711, 0xe4d81358398e33bf, 0x00000000000162 }, { 0x86176c2b24e8c5c8, 0x7ccf5a96d3676798, 0xea3b6ef2c31576bf, 0x49269d025573efa9, 0x87383c5f27b59bdc, 0xb01fb6f2a832f6ce, 0xfc0351ea5513d81d, 0x8451d56280c79916, 0x000000000001ac } }, { { 0xa6870e9fd03287e8, 0x7a3f9aa50177c59c, 0x5dc44d97dbcc848d, 0x73d14c35d2aab93d, 0xbd2461ad9ecb914e, 0x948b782ea2aa8610, 0x3b346dda88780d1b, 0x5f11f999726edfdc, 0x000000000000b7 }, { 0x120290b3b2b987f, 0x3e9b3c1827d888f2, 0x83b88cfcb2222e91, 0x1943b460365b9abf, 0xe7584610c449bdb9, 0xe81f41060b986563, 0xbe5be515b4182896, 0xf64cf40a031e7a2, 0x00000000000010 }, { 0x1e283504e420c74e, 0x3144c3414794a788, 0x694cbe3f3cb1b64b, 0xc8e7287cdb77cbe6, 0xdb8f900fe9451212, 0xf66b27a923e0064c, 0xafee9394a10ce663, 0x7362e0a73dcbe74a, 0x0000000000004d } }, { { 0xf9ee0719a174f316, 0x3ae97a0e3412d742, 0xa16ed793c8ad6da8, 0x1d89edd7d54c5898, 0x4257f74b879b72e2, 0xba4bc1b5712c58ae, 0x9b3f82f9722857ab, 0xaf77bbef6342e2d1, 0x00000000000088 }, { 0x9b23399f4bbdbfec, 0xb59531f32fac5c1b, 0x3ecb0a605992efdd, 0x7f4d5abe1c703aa9, 0x9bc0ee662738d146, 0x350152d071a8ec38, 0x3fe3385635aa02e8, 0x72a310d64350171f, 0x00000000000157 }, { 0xe219e0f4e2c8a857, 0x9fce106516f4a282, 0x510243b130b97e, 0xaa1639ed8d42ec65, 0x142eb28f65ba28d6, 0xd253cf2dcf2ad161, 0x28519cff7909c5f2, 0x824654fbad00ac1b, 0x0000000000008a } }, { { 0xb0f1faa955ccbd10, 0xc1251d5d2708080e, 0x4f58d679d1c9ed16, 0xbbdb830aa027cf9b, 0xe602e374737a538c, 0x7bc474334c048542, 0xe826149ce429c25f, 0x300b64781d7db119, 0x00000000000067 }, { 0x32ad0c5e2fca21fd, 0x8916d96190b4096f, 0xc47c9c5284fca46, 0xda9734b547020e54, 0xb2782f23f6d79cc3, 0x39056c70485efcc4, 0x931bcce4bf179bea, 0x28707614fdf44cee, 0x0000000000018e }, { 0xceaf9a80968e8adf, 0xecc4d4d430abcb48, 0x965212c96d7d05c3, 0xc6ffb5142484fad2, 0x78a17368c99388dd, 0xab30bd1a96c50460, 0x9dc26f83e0b7d66a, 0xb7f5b2adcb8c4a66, 0x000000000001a8 } }, { { 0x7d2b9a57fa480cd2, 0x232896eff2d36885, 0x578cf17c55f9a32f, 0x519a497a37d2d2de, 0x9180d3c106025fd8, 0xab164dbc0396b8a, 0x1c97ab569dc0cca3, 0xee14cede619d4d12, 0x0000000000006a }, { 0xc2a06e68b71bd1c0, 0xbce0138f898db9eb, 0x7ca2bf95a30856f5, 0xf6dc4232bd03d15a, 0x163feb8d4cc5072, 0x234722867baf78d9, 0xc81d64534319b864, 0x91c666ad124b1556, 0x000000000000fd }, { 0x549c31a761d6710d, 0xcb17f7b5737226b4, 0xdcce609563c31948, 0x3785bec55be9b306, 0x74022e68416ab062, 0x256bfbb492b37a66, 0x78137110a7fb3655, 0xfb6051a623eeee46, 0x00000000000110 } }, { { 0x9153fb424e6f95d, 0xca8a0415dc7b83ad, 0x5842d222584a25ba, 0x1c503ad8c2b0f659, 0x8ad89f5eb5e4d4e, 0xad2b9f060ac7b976, 0x4bcdc6b2cf3fb4c, 0x55937e04c0b217a2, 0x000000000000aa }, { 0x5d38d0ff74613997, 0xd740f9bbcff377f1, 0x75771622af606f64, 0xba9ffdf26a810961, 0x7168a6a3677b1d2e, 0x40a1cfc923caf816, 0xa2097261ecbf9700, 0x4d4c784e5bd49936, 0x00000000000028 }, { 0xec2d6a30f4355260, 0xe8620f4c370c1228, 0xd9474696dfa359d7, 0x59098d12c5a22eb4, 0x85b917737e9be91e, 0xffc843f95b01d388, 0xcc6cf72adf820b60, 0xbac105539d7bcfd2, 0x00000000000144 } } }, { { { 0xb3856ea5d8db3be2, 0xd97e743b17e1ba7e, 0x9445dd62742174f5, 0x911a545da86d8680, 0x5f61e1aeff2d85ef, 0x9dce4808f9ea6875, 0x598253350ae2ab9, 0xb9ba54cef72416e4, 0x00000000000061 }, { 0x377eb5d340a540e3, 0x786bb3ebbd56cdc9, 0xe4f7c98ff085740e, 0x5a3b35bd9c6cf794, 0x615ab337559486e6, 0xa800b8ad86a0a480, 0xad3b6ff7574f746b, 0x590ad81159241379, 0x000000000001b6 }, { 0x8b5f8a3cae7675a2, 0x46ec80177575ff0b, 0x5098dcc3f9cdc703, 0x76eef789e893f9c0, 0xa6e8792bff84af65, 0x88326166e6035135, 0xed6d1a73ee093ab3, 0x89e956670f1b09f4, 0x00000000000081 } }, { { 0x1c26a4c1ab4dc53c, 0x8c4bfc13bfda0648, 0x2a7b0087dd5a6ebf, 0xa9ececb9e34584ad, 0x716b0b04eb0b6ba, 0x54bac8c239fe4af9, 0xf93ae1245067afbf, 0xd4128cb6fdbc49ce, 0x00000000000196 }, { 0x13f33ff16f37aea5, 0x6b54437bb02ef971, 0xd64c6ece5f72dd42, 0x4b6ae2afdcafea43, 0x483238513ac956a7, 0xa135b88cec85ab9c, 0xd4ed52d00cff8f0c, 0xec7a31bc6cac4d02, 0x000000000001f8 }, { 0xa92dad52aeb8b79a, 0xfbce0b286267b4c1, 0xf88eb3f54219185f, 0x7b17328d6ea3d714, 0xcc66fc914c72df96, 0xdd72000008477fe, 0xaa04771a8c6c1fe, 0x2c873e51ab1d99b4, 0x0000000000012e } }, { { 0x612fbd91b89c342b, 0xc70b02a5a0799a6f, 0xb525db2cfbe1d56c, 0xfe273fefc58dca96, 0x1ba15b6836df0565, 0xefd4219f0c5396a7, 0x1f26f004c9466f3e, 0xd3b03a7c4fc43119, 0x0000000000013e }, { 0x92cd818632704f9a, 0xd43f842eba17645e, 0x97221201a8d04c48, 0xb87c215aadd4834b, 0x25defb50b6d895e5, 0x3395f1a5c32cd07e, 0x2eb538ac798983ad, 0xd70d48c8446b0f66, 0x00000000000169 }, { 0xe35921b2c4cf5371, 0x8e73bbe0a9f40948, 0x47a9286c7ab41368, 0xbcd9083d8d466cf1, 0x21fb6cb86eb736b8, 0xb5b500285e983f7f, 0x823c280b7b387921, 0x97e42db0251015c2, 0x000000000001ed } }, { { 0xfdd9331471cf8f93, 0x9bb1219411cc092e, 0x754a605585828c70, 0xf4391b4c81e6d427, 0xa9673ce0ba690f9c, 0x8907996a3f83bdc2, 0x4234083df243971, 0x2345b4e0178c207a, 0x000000000001b4 }, { 0x427dafba2c0fadd, 0x33eee1ff1d8d0e16, 0xa6b901f8c4df7b77, 0xa937d17f8e32841e, 0x1a9034f650d5533, 0x6ca1edbc3d8f82cc, 0x26df0577521a2f12, 0xfe936a390e3b282a, 0x00000000000083 }, { 0x89e5ecbab4720e2e, 0x3dd0197eefbd44b8, 0x51d3c7f77819791d, 0x2b654b9178889b5a, 0xf8a20005456f11e6, 0x4fe728757303cdd7, 0x8d29c2a0f9e3bf51, 0x35cea2014ab09e2b, 0x000000000001ea } }, { { 0x3b5d3e3a3b639d70, 0xa4d2d376bcf6f4d, 0x8dcd11fa305c5d9b, 0xeb0ebb78fa1e7a6e, 0xafb0c47a7d35955e, 0x2fc7028ca67014a3, 0x2ab5819d453e9049, 0x747bb689f42269a7, 0x0000000000001b }, { 0xd5d25f7eda117131, 0x19292f3eb0a25887, 0x28f1da97473168e4, 0x823e424590fb117e, 0xde8835649f033758, 0x4e0752ce15127b1, 0x7ccf2bd46f550505, 0x10bb547e187ae243, 0x0000000000012d }, { 0x53626c011c8b767b, 0xcccdb321f25e1d95, 0xcdb42e270a098b97, 0x9e63bb9a76fec2c0, 0xcf2d11c1262bc59b, 0x726079b8ba6227e2, 0x39afcaf401a0c54c, 0x4aab2e4b0a148298, 0x000000000001e6 } }, { { 0x8b3a681d2831c5b5, 0x972352dbc6606732, 0x2a116a61a2889d94, 0xb2acb1cdd5534c5f, 0x4b433f3b72090a4b, 0xce5a85879d6b719b, 0x8d193ca15bea1d46, 0xa005acebb6336f9f, 0x000000000000f4 }, { 0x91a712db02ae2f65, 0xfb7baf61cd17b60b, 0x3b586e4778ba7f53, 0x41af2482b749be76, 0x8d74ee13fbafe60b, 0x7c8ca308f04e4ecc, 0x8ff214e6f8da751c, 0x91613962e33de0a7, 0x0000000000012b }, { 0x1f9bc632752dd941, 0x5169cd38a3c05ad0, 0x8d71ef10d99736ef, 0x474d529eff112634, 0x79e6832759bbd4c3, 0x735f6d373e73eb4b, 0xcd3f3aa0dd3c841d, 0x9071a48d32ec0e5e, 0x0000000000016e } }, { { 0x203c033776e748bb, 0x2338454cf7bd59ec, 0x1e2ba2d99459b9, 0xb375a49009b13b4, 0x474783a3947e1600, 0x1c102ce3ecc7501e, 0x7c05206e502e34c0, 0x424be27c3dc64031, 0x00000000000014 }, { 0x85da4a0f463af5d3, 0x2b3f3237317a9839, 0xf66232049b25de20, 0xbf2674ae002fb511, 0x93f73aefe1dc2756, 0x306ea7d6316f8e39, 0x126e1c9abb2d63de, 0xf154f43482536c1f, 0x00000000000131 }, { 0x8c9c188edf4d20d2, 0x9673614dd995748f, 0xd40d0262eed3de63, 0xde8a1d83f71be90c, 0x639c75804cc5684c, 0xf0c542479e7fc851, 0x9c61d940e0676ca, 0x181bba3e38e37efb, 0x000000000000a0 } }, { { 0xb7721b0db401c018, 0xbd519fe409d2028b, 0xf15c89900ce9095f, 0x6db2a728214b887d, 0xc378eb47518922c8, 0xd39239cb83588e4, 0x549c45662087e812, 0xc84cfc093c2b32ed, 0x000000000000df }, { 0xc216c34626ddacd8, 0xd68f33c34a6febe3, 0xeae9a3f15a56cc1b, 0xaeca2a45af0b543e, 0xbd80966f8b19d2d5, 0x6e82fd6d38fe06ee, 0x55fae990e8d4faff, 0x68531cc8c86e4bdd, 0x00000000000160 }, { 0xb62d37b54c9c9e7a, 0x20a9c77159d20413, 0x9e7d2f027a89651, 0xb2af5ab8d23f5450, 0xbf413f536eeef31e, 0xa14aa9055e5603d0, 0x682ee7cbda39c6df, 0x61f4a3ad3f7a2a28, 0x000000000001c8 } }, { { 0xea958b6a3b9816f2, 0x87007d459f6d17d7, 0x925b59cff9d0ea42, 0x72d6c0e5e109aace, 0x9b734732f96f3bb, 0x93ce855e5e7153a5, 0x76266355337002f1, 0x2e59305e365f81b4, 0x00000000000137 }, { 0xe14ee2c2d51ae84d, 0x86434fb3f97cf23e, 0xdade4932d3bfe438, 0x8fa5a104a8ed2b9a, 0x77b98b793da8b1c0, 0xe02fd8c2aaaebb8, 0x86dd99157b47e875, 0x6f776c1bd14b2a83, 0x000000000000ab }, { 0xc4a29f5be829a915, 0x2d1dc11f4b8a2481, 0xaa43f9969db4a66c, 0x1a065d46421bda85, 0x91c646bb88401503, 0xe5c588ef0d8c7158, 0x9174891a3a6a2abd, 0x3d12e77871d417c, 0x0000000000012e } }, { { 0xd77b4fc68685893, 0xff71e00c65e9075b, 0xec95ad937309e589, 0xe2faf4bce7fd12d3, 0x78a7ecfd73a54585, 0x3c55c28232055070, 0x2063538aea42ee82, 0xe01909979cdd2569, 0x000000000000ce }, { 0xf67efa68e490b89a, 0x16b5e9c2adc57b0b, 0x524db956bf7154a4, 0x49ddbce228ffa2b2, 0x23dfce278fb01e35, 0x7a7a3e5304098c39, 0x8c603e76b2b367bf, 0xbd2ccec32b800341, 0x00000000000188 }, { 0x7a0ac1e56ed8d63b, 0x94e31cf3402d9ede, 0x438ad12ca55b36a0, 0x2795caee36e9d33a, 0xc4fd928e833e3cbe, 0xf4287815ab6be50d, 0x36102aa0c6da1cb8, 0xe72d28fa92c9abed, 0x000000000000b6 } }, { { 0x80f3fe996fefbf54, 0xb59c0225ecc7397, 0x3bb11c885e93ac82, 0x233840d245f5e861, 0xd86945be4b981bf7, 0xbce3faa217081ae8, 0xb1c5cb88dcd29411, 0x6cb702b5a27f770e, 0x00000000000182 }, { 0x74640e20b325bbb3, 0x55feb570a5f21396, 0x65f32edda815da49, 0xf3c8ea1d30a08ab1, 0xcb193f6300029bf2, 0xe0743dc236838305, 0xe8544fba27110ede, 0x980e5ab68e5c9aa9, 0x000000000000e7 }, { 0x1328805ace5363a, 0x76fe9c7135a7b6b8, 0xd3ca404ebae60468, 0xddb869c3bc25bb08, 0xd5557a1447c082a1, 0xeedb9c23242d1104, 0x74c1b3d8c6422b11, 0x65f3dce7737b214, 0x000000000000a0 } }, { { 0x1c196961b008db2, 0xdfdccf29d4e8b151, 0x1c633af3679b8d36, 0x7ddfdc6d4b64e82, 0xd664bc208f7204c5, 0x7cae5fe58cdd9ca2, 0x478b622f34d16888, 0x74b0aa9cf80ee118, 0x00000000000032 }, { 0x7d8e7940e03b9c52, 0xa23b6565b457e36, 0xddbbe2ae3564a2ff, 0xf50c4b8443636bb7, 0x2944f5d6b434227d, 0xfac31d35b1902d6a, 0xa9a3ab0cb0da4e38, 0xdae13bec7586133f, 0x00000000000199 }, { 0xc77a33b127f50c25, 0x1e23924208ef810f, 0x9d10fba96e80ce16, 0x90cea0c6b42ebfd1, 0xeeba47777ab5cf02, 0x292911d442b24604, 0x6c0296d210c450a0, 0x50c4c42a9496f2f5, 0x000000000000c6 } }, { { 0x78cb84b6863820bc, 0x68596ff29e2d0761, 0x32e1f691ca32bc8, 0xe607d4f741b15e40, 0x88d63a3ba6ca375b, 0x149a102d954a025d, 0x56467cee57502986, 0x41df3f3613552717, 0x00000000000122 }, { 0xa01aede427e0ef4f, 0x6afea8967dd75df, 0xb4ef485fac44b27, 0x342525b882286eb7, 0x5abf6ab3802c3d4, 0x4dfe9058c236cf0d, 0x314268d64d969035, 0xe73d9ead2f8ec8c8, 0x000000000001d7 }, { 0xa4b669ad74f266c9, 0x9ffa420d7f0dcb87, 0xe49d00429a249dfb, 0x4e1e51663e79812d, 0x8a4d124ad25d9903, 0x9553ab488136d5a7, 0x8761a9846686d396, 0x6458f01c196822dc, 0x00000000000078 } }, { { 0x7d4ae51840ef050f, 0xdd288512db1e5a9f, 0x462204a8341da090, 0xc72c67f46e1f850e, 0xd181965fcebbf9b6, 0x7258f4b3380d50e, 0x1c86e7d21fd6b36, 0x9478d6a642032681, 0x0000000000000d }, { 0x61cd7a7c1b6aad99, 0xf5f5533b0348367e, 0x3ade1290e9ea8635, 0xa1d4588a11cb6bb9, 0xbad62d4611b0b379, 0xffa71af77ecaa21d, 0x7b9f5ff08c42f4f0, 0x4b8f6e4ef870778f, 0x000000000000c0 }, { 0xc41f666d02e6eefa, 0xabc811e19d37fe50, 0xaad53b542d6e0d34, 0x83dc6fbe85f8e035, 0x7c481dd5ec0ac6aa, 0x5060bdc6eba5d488, 0x490d33302b98bad9, 0xb9893320c5b924b6, 0x00000000000149 } }, { { 0xef159b751891404f, 0x87a01c6cbce54eda, 0xf10fe1f9ef317579, 0xea4542dcbfc2ef4c, 0x1f9fead760d48e1c, 0x7133d5589b512a8, 0x7af72f2661e0d4a8, 0x265c806703ccf817, 0x00000000000141 }, { 0xbe6b6a5db6cccae, 0x381f8e17c2488437, 0x797031b566b18863, 0x4720b18e1f4eae0f, 0x2dc9ef118a592058, 0x56e6eb66ae7f6482, 0x44d1cd179b48c03e, 0x97c816a5a44d96b1, 0x00000000000169 }, { 0xf6f9e3fa96f4b2fa, 0x8e38f9eb8caef59d, 0xd2f4543412a805e3, 0x1ae0ea53d4bac997, 0x8f3a96726f1d5739, 0x6d314b9bcf3977ec, 0x3b65a5bc29cfc982, 0xc2029f801d1287b3, 0x000000000001d1 } } }, { { { 0x79a1ef564e261e01, 0x7b682709434e0f69, 0xba4c0d7006538930, 0x758c10b7ed649887, 0x204acaa1ef222e0, 0x5e578b4c57f1c384, 0x8333638ae7c1d45c, 0x74be5e7e3c359b0a, 0x000000000001e6 }, { 0xa8cd9b9900951564, 0x2f0f2feb340442a6, 0x394098459d095e0d, 0x467182dcd5eb55bb, 0x3bbb0853d877fda7, 0x2f668ce9e182afdb, 0xa3293e385f1115e2, 0x6c53b148f0e4b753, 0x00000000000129 }, { 0xc1b80308070c4e04, 0xa421ff332beef317, 0x6c2ce016611d52f0, 0xd1b27be1052723a8, 0x769a9719ac871c00, 0xdaa17f49f5c4a911, 0x273dfd2f7a208a49, 0x9ed5745f7bbdb020, 0x0000000000007d } }, { { 0xe6ed3d24d5e6ad29, 0xb8c2584e420ca2c7, 0xffc9266a2f772b23, 0x9808ad313c167e63, 0xec76f2874e6ff3fa, 0xdbb53bfa311294e6, 0xa7f5922799dda2e5, 0xb63ca73b10a53218, 0x000000000001c2 }, { 0x9c745e7779a4e9b2, 0x132f5afc7b54bc4b, 0xc0680d1a50424256, 0xc571dd15f5d2e7ef, 0xbcd4ffd67eddf99c, 0x80e8261e5bf0da4c, 0xd781f70a6519e30b, 0x147b9121c148b808, 0x000000000000da }, { 0x120d6c3f72cc2ddc, 0x2e6f68331fc9ed59, 0xfaa022463e23d688, 0x4eac70e2c40b4ad, 0x5fef069d27b1e082, 0x494953a2700fc949, 0x257e4ce9381b6aa8, 0x2a842382ba5a6f33, 0x000000000001a0 } }, { { 0x83becbc3ee935d7f, 0xb5ce9a7c7c95992d, 0x19ccbcc87b70b872, 0xc14c174028af7e26, 0x7218344fca28f289, 0x6874d83f51c57750, 0x99dc4b372ffcee55, 0x1025ef7d356b03ea, 0x00000000000093 }, { 0xb196d17c63128bd1, 0x2a3c53857719278e, 0x263a7470937269e3, 0x49da565ad8efb820, 0x7ea0c65d21773d6a, 0xb176ab9335e00949, 0xb775fade6651084, 0xc515d6967da8b6a6, 0x00000000000073 }, { 0x73621a5f5869a922, 0x845e50dfdc17344f, 0x260baa2730ea04dd, 0x75ec59222fc0a9c5, 0x6a71fcdb15b94ce9, 0xc55cdbafafdac9b3, 0x9a71b027e55ad459, 0x47a71b5a39e8654a, 0x0000000000019f } }, { { 0x847dce6e19c51707, 0x329d43c88eb74b69, 0x6a590263df6760ce, 0xfa6221eb35cabdcd, 0x28ab7109bfa7b64d, 0x5e8a73e1381bd932, 0x1065bd4aa7b6df56, 0xcebe16d165cfb96c, 0x000000000001f4 }, { 0x59684ed19f738bec, 0x9dd2fd2c36cec530, 0xb7b82a4ff5c9acaf, 0x5bbd8cb08544047b, 0xa079bbd5b4d26fae, 0x369f3cc3eebbad17, 0x5ccccaa9c48f1513, 0x1d7d41e9183a14, 0x00000000000087 }, { 0x212fae440051ad73, 0x75cd73b525daf3c7, 0x87b119d1831b26f1, 0x242dc494e419ff57, 0xcf567c1f5098a2b7, 0xaf1a5bfa73efadbc, 0x9c4e3a44a7cb1c7d, 0xbe8b71d440c2799b, 0x000000000000f5 } }, { { 0x33276e5e982c8870, 0x887234374d1588df, 0xad2bdf07bfe3c2b9, 0xe100a2da196b0722, 0x1486e2d48c8847f6, 0xf3f2009a0175fba6, 0x6d4b8fe0f527193b, 0xed27fe35b496bcaf, 0x000000000001b1 }, { 0x9355cb77ae0bf160, 0x6c3eb61a044441f4, 0xbf2b327112688393, 0xb1587e5f4274f180, 0x42eeca6a286321a6, 0xc666d25cb77e8d8a, 0x4ff3d81511b16df4, 0x780189be1645adda, 0x00000000000170 }, { 0x1177427b6a67f884, 0x1ac586c0864b54f9, 0x2989fc31a26bd3f0, 0x9d4b7ed7d5755588, 0x4738291821a9bbe3, 0xb2a771f82a160c7f, 0x3b731fb6854d04eb, 0xddca949b746aa22e, 0x00000000000102 } }, { { 0x8eca3e3996d4b414, 0x7e58c28462cc104b, 0x38a559571908d666, 0x753d6d7c8213ba97, 0xf7acf91bdaf498e5, 0x62d441d678fb6181, 0xe8e240ab5b47de82, 0xc1357a13a4909b92, 0x000000000001d4 }, { 0x4de8f1c0eb1103fc, 0x4dacc9a577b27743, 0x83383ea5443dbecd, 0xa4d74eee7b55d654, 0x1dafef1677b59f56, 0x1342488ff9f6964f, 0x2716daaa7a8a6b4, 0xbcf761ac2e63c8cb, 0x0000000000000b }, { 0x9dd8f86cbef5f7be, 0x9a410b695ee9a57c, 0x1ce80c814caf9fd3, 0xe1c378428c2a26d9, 0x525050c3b2f6bb5d, 0x8e8ca30460d46bee, 0x81eb516ab70393cf, 0x29941841e5d5b431, 0x0000000000005c } }, { { 0x1ad3d3d17eaf7a7b, 0xf9affe3664a2a696, 0x50260e0432db763, 0x60d933f43d1bb796, 0x8e9bf31e4b1e9762, 0xd54fe1f57abb8508, 0xeb29eb97ef33ecea, 0xb63bef8599e484f7, 0x00000000000013 }, { 0x1704749d9e906b30, 0x4490590bfd83899b, 0xac666526b553c149, 0x57540a4942e281b9, 0x628d266b6fc1985d, 0x1b5b7ad6da70a2f5, 0xcdbdd266a7382faf, 0xce11254b3112ce95, 0x00000000000118 }, { 0x865f69e1b70a7d2e, 0xa57af20ec335e3b0, 0x65b8bc59afd0c2d9, 0x1eb93380c19947c2, 0x130116daf997e38, 0x61b59d9b40e865ed, 0x1b68e0dacf38d100, 0x45ea2350c83c00f, 0x00000000000176 } }, { { 0x817e11749b15355b, 0xf558e04e732bce6f, 0x8a3ffeb3329b38b6, 0xda22ea40d3de6ce4, 0x9d8c95627bb3406e, 0x668809b5b5590a4f, 0x9415e6137351f6e, 0x64dcd6cbff75b657, 0x000000000000b4 }, { 0x6a49f88d52ebb491, 0xee21c1312e655130, 0x552aa4f06ae9c6cc, 0x134a3fcf92a16177, 0x606402380c33b06f, 0xf5861b8aea55b761, 0x45f346b8088aa92d, 0xa2a7c2d1d1ca3d9e, 0x000000000000e1 }, { 0x1b82da19819fff4d, 0x2c20e45091d149bf, 0xdd83d922f490ce60, 0xa45a28334d45128d, 0xe5b95463dc0f673d, 0x722bd19a4608b297, 0x3a85468f8c94d764, 0xb551ceb2a5bcfbe9, 0x000000000000af } }, { { 0x1b139710f75f029b, 0xd7d594974529af03, 0x5efc06e88ab6cbad, 0xae023362555050b, 0x3b6e85773a4b8f02, 0x41e12307377e8934, 0xcfa4356750916b5a, 0x61c3b7ef145b5d25, 0x0000000000008d }, { 0x519b12a92faff877, 0xa17fa71586939ca, 0x20cac7a8a4451ef0, 0x102fc212d95ac032, 0xa9f7b1ab5b48d485, 0xb8cde7070f517c82, 0xc9a1eaa27179cc9d, 0xe2131d482e0bf78b, 0x0000000000000e }, { 0x203816d6fe66e569, 0x2c96159a9f5457e6, 0xc462134d1bafdc6c, 0xee5e7b62fb9e0391, 0xe01c101bddc5c62e, 0x235150749a8cdaef, 0x15b8401f274c47a6, 0x1bad8b5fdb2af243, 0x0000000000007f } }, { { 0x96f904777de5fb06, 0xe50375b0d42c168c, 0xc8eae81ae2752a29, 0xf48e2e04122bec6a, 0x17579b89ab5644b8, 0x1d5be6b7ea2182af, 0xd7709b66e4697b39, 0xdc0fb2d341f478b8, 0x0000000000008f }, { 0xb0453a0410226546, 0x6fe5f646f063a4d4, 0xf4159cdc12bb1860, 0x88d0cac5bbd5d1f7, 0x73e834ed35af688d, 0xa0285ac285ee1a3c, 0x603e23ebd12d34f6, 0x8e6131bc153b9604, 0x00000000000166 }, { 0x9216aed17647457b, 0xa2afa4585a424030, 0xd875af6278df267a, 0x980ec15fb7b7ad67, 0x86a87633ed83058d, 0xed06e104e15a3486, 0x79be7ca043a6cca9, 0x4f886eed3a72629d, 0x0000000000019a } }, { { 0x54d1d68eb4859adf, 0x2eb4beec96ce5d07, 0x548a766ee5895391, 0xe46ff8d78fe14602, 0x810c92520e5d9554, 0xebede0c64052076, 0x8a54b7f158aa36cf, 0x4102f8f354142297, 0x0000000000008a }, { 0x88e06486e58fcc41, 0x3daa44df1ce6359d, 0x2943bb6dffffe088, 0x518a0a6305d745af, 0x2ca7325b0688660e, 0x372943fdbb8d2620, 0x945edc2cd86fc372, 0xd7bb2fade3ccc7a2, 0x000000000000cd }, { 0xd0efe0c8a1d4402, 0x1e3793708120f0d2, 0xfbd8dd4ed0e599e2, 0xa0c49179dbbe4287, 0xb739117513733796, 0x2da51a4e2a522960, 0xa524f63254ed5961, 0x337da9ebc97cf5b2, 0x0000000000013b } }, { { 0xf1fdfe4421870385, 0xaad5cb98ee46d24, 0x992c437449b3a6ed, 0xd41417e77a0bd339, 0xf9137c9b832748a4, 0x41cadc2cb8324da6, 0x13c0ed5ff4e03581, 0x3a0a22a49c777e53, 0x000000000000d4 }, { 0x4cb6e3c593bbc6e6, 0xc514d81eca0346f2, 0xf84da2a96b809792, 0x10f4baf262c7b5ce, 0x7047b597c840a4d5, 0x107558dab2af97b3, 0x6f50bed58ed7323d, 0xc779f9088d4f40a3, 0x0000000000017f }, { 0x93b9c58d2ad40ebd, 0xb7b1fcf8b690d16e, 0x9d186d785588b7c, 0x7185cdab63839557, 0x71d5758bd039fa93, 0x1acf6aff62a7df9c, 0xc96d1ef21bb11d1d, 0x96e8e3e3f4eb53b5, 0x00000000000114 } }, { { 0x6d84fb3392ad2c06, 0x53988f2f4f8a5a90, 0xbc57c0ec077b1103, 0xd5b83e482f5b758a, 0x48af0e816da6973e, 0xc8ba4243520f3790, 0xe56737a976c3c4ed, 0x8f996d875c338dfc, 0x00000000000086 }, { 0xa5d86de5e153a463, 0x6f18ab71d7a76a06, 0xa3e32ab9fd1a8e72, 0x4059a2ffaa7181be, 0xc64aa8a1484810ca, 0x8563dcc77079b0df, 0x83d061e6fdf06915, 0xc003ca0e5558de6f, 0x00000000000117 }, { 0xfc749850be4637a4, 0x1ab0dc5179c6716f, 0xdef6cfbd68248239, 0xd35e3c81b69428bd, 0xa43843f8593f44c, 0x22ada498b1164e43, 0xece44578bb37cc2e, 0xfb0684868843218c, 0x00000000000139 } }, { { 0x9523126d6c246957, 0xd2fe8845789085b5, 0xd885cd8c1ba3d512, 0xe2a2541b8c0f6009, 0x8dfd51ead8bfe425, 0xc6e9f03dea0f683a, 0x5527ba60e8f5f481, 0xe855faee18db3ff6, 0x000000000000a3 }, { 0x1ec8e1ecb7e5e94d, 0x350a3db0da978cfc, 0x1eaa86a59a6c6ce2, 0x38da869cc3eccf55, 0x7ec6cf961a51eaae, 0xf116132a3ce2bd35, 0xa7054a0e48b9d83f, 0xcf0de9fd30ad5c1c, 0x00000000000147 }, { 0xf7ffa13658452005, 0x95dbaca8075613d6, 0x20b38c7341c4085b, 0x78ad8504a9c0e1, 0xc794b5d75586efbb, 0x7ba8da20e15c1119, 0x38bc2bd81770c196, 0x6fbc913616d536da, 0x00000000000036 } }, { { 0xed6d5eda4d958a1b, 0xf794e0fc7c319b58, 0x69646b58970101ec, 0xa9dcea04b55ec35a, 0x9f8c010b89bc26e, 0x7b415add5f25c154, 0xca2f17fdc0f346c8, 0x1d22d2dcef4e9952, 0x00000000000062 }, { 0xb9b7889def986a27, 0xc0f2a1ed2d626156, 0x88863f0c7489599c, 0xca3a25366265493, 0x1beb5abd5dabc300, 0x5d2d057d450a0c2c, 0xaee4fd0000e4f241, 0xea67e79c01d4be02, 0x000000000000ab }, { 0x8743cf1fbf016b48, 0x2f76891054205a22, 0x805da1e204a5aa1d, 0x7551c79f2f23455b, 0x581328a799caaea5, 0x57eca80789842ac6, 0xc72b3684c1df440d, 0x7051b88d81bbf0e, 0x00000000000119 } } }, { { { 0xd469d21ff3d27f36, 0xdde161f07ed5bb54, 0x4bcac85e251a5265, 0x8daabe97bd3f6fec, 0xb4b42f4873d09644, 0xb34a2d1c560c81e3, 0x2751488b910a0724, 0x99b99c97fbbaaa99, 0x0000000000008b }, { 0xd48734154fe9bd36, 0xfecc379e3e443270, 0x11a72ca96acfbfcf, 0x98c5bdc8d228704f, 0xa9fbcfe73bc076a, 0x6fef5777dbf96b10, 0xdcb5c8041e64805a, 0xf9691e6f740d24f9, 0x00000000000007 }, { 0x1fb83057b2f1c552, 0x832785fbc3819b77, 0x7f2e26ebc1a951d4, 0x923fec5878212b24, 0x154c789909661d62, 0x1b386b9a62d95b35, 0xd16c3a1558eb842e, 0x2a2e6a328c817c7, 0x00000000000170 } }, { { 0x22aabeb7ee37114f, 0x5e0780f97a833b1a, 0xa66b4ceae812c524, 0xe7438c91a2247af5, 0x4100b0ca3ae4c0dc, 0x7a34118df3c73ce4, 0x5a2dfb5ff4ec8f96, 0x7ca482b934b599df, 0x00000000000194 }, { 0xa84f96d2e103f784, 0x32d1ff5ee03cfa49, 0x1d7960b82c14cda2, 0x24e4774d1f06a76a, 0x4c002b82e116ae0c, 0x56b49a8c8fdda676, 0x955c3ffe0c41e021, 0xca98679d05a96138, 0x000000000001d8 }, { 0x434bea3697a43b9b, 0x34e85d58739bc4c, 0x9bcb2b2484fe7316, 0xfe7aaac6c46ecde6, 0x2ef2a85b546d6f0c, 0x74471c61c043c079, 0xc358c1bd085d57ba, 0xca780c1307535356, 0x00000000000046 } }, { { 0x7860f3887419fc70, 0xfc904fce75706e62, 0x1a10bb2fa155f8cf, 0x8958d6815f6daf07, 0x972c49700c39af11, 0xbfa4c80f363beba5, 0x6c47feece0e46124, 0xd8cd8e19fe7b13e7, 0x000000000001bd }, { 0x9944495327efaa64, 0x895648675b9ae032, 0x6e2e3007bcc2902, 0xaff59da6ec65d6aa, 0x4efd141166519557, 0x3d0fe9f5625d7e8c, 0x66b983b03da7ac59, 0x8f6c8ce3cbc3325f, 0x00000000000084 }, { 0x756de8269175a6a4, 0xebd0ce9fa9272333, 0x86b0064de47dedc7, 0x3f8861b0d437479e, 0xb4977e2a64291959, 0x9e4a2d3bdcad8cef, 0x6c9f68b3ccf0a859, 0xcc5264334ba94f27, 0x000000000001f9 } }, { { 0x91e57bfeaec21a19, 0x4d5af33fd9c3c52e, 0x40e3bd18c659a6ba, 0xcd2c9362851af53e, 0xd327c47e07494f78, 0xe836caf3316e664f, 0x1186472d1f128881, 0x98496484670a21d3, 0x00000000000178 }, { 0x7182a1b03e7d3dc2, 0x4a8407ae1cdb245f, 0x8c9115449576bea5, 0x9025c516a7e557f, 0x889c0c57ad4d5b9d, 0x4499fda78b160401, 0xc8ea97bfba61cf1d, 0xdc1def08c9be796, 0x000000000001d7 }, { 0xf66b42ef44339685, 0x13cec1f7fe09f489, 0x53e307bef3f19298, 0xc6ed97934b81678e, 0xa944f1b2c955ed14, 0xfe0b28eaef47d43c, 0x4338bff264b1339c, 0x58ac7fcaca4a85ff, 0x00000000000127 } }, { { 0xa1d4a110044b8b20, 0x786541bf7ded168e, 0x35635e08ea1db0b1, 0xc0a3812292eca333, 0x937cc0001ab39e7a, 0x8706c93f7c0c01ab, 0x5a1c17c059ab5afc, 0xd3dd83676d217640, 0x000000000000f1 }, { 0x6d3b0e885c7d9d7f, 0xf303e71af537a2fc, 0x86da19dd695e8464, 0x60403aab9396853d, 0x15ac37437332a923, 0x2c4f2d0b934eb5ef, 0xedfa39f4b319992b, 0x482413ce493e7167, 0x00000000000171 }, { 0x1d0f9a4372c1a9cd, 0xaf2e74909842ece8, 0xd8a0f9eb36e47449, 0x8c7700cb6d398396, 0xb9d3278cce9ff2d0, 0x2400f5dbc2fc4ad7, 0x828472d6da444c27, 0x908550c9e31458d2, 0x000000000000d5 } }, { { 0xfae239c19dea5097, 0x139fafb83dbff20b, 0x55c7a230e3236442, 0x72638ae5783ade71, 0xec3a4507a948756e, 0xffd75a4cfb636a16, 0x63e887734e886766, 0x4da3697fdf82e81c, 0x0000000000004f }, { 0xb261c1fd2522c49f, 0x96fe33bab59390cb, 0x57c8c029101496bf, 0x4f4856a511525e11, 0x4b1a1ad265bfe814, 0xfd4acf0eb8282424, 0xa38b32d168d97ab9, 0xaeb8a3d259947bf, 0x000000000001ce }, { 0xda89e88eb683f7a2, 0xa7bd1c0909070d2c, 0x9a92ccbb0d4efebf, 0x11f3e32e2c404e9, 0xc1930dd8bec3f25d, 0x6e5760ac59622248, 0xe9cf7f5652c5ae65, 0x305cd48b96d48b59, 0x000000000000a5 } }, { { 0xd1ff571686dcd2b8, 0x55ae8514d615e850, 0x4929abc97d39fa14, 0xa118f48080e2832, 0xa73f8cc9c07227fd, 0xeb4866a0a55eb7ed, 0x1f32904c6a5cdaf5, 0x93912dbd75a936ca, 0x0000000000000d }, { 0x1c5ca5861e98d777, 0xdcd61d885fae2472, 0x2e0593e034d515f9, 0x3b04641e9797a875, 0xf4ed12ea645a373c, 0x58313821e8d05623, 0xba40620f3c1999ba, 0x133c16eda5cf69fc, 0x0000000000018c }, { 0xe39c46938f3bfcaa, 0x96228885c98c5ccd, 0xfb3b65facaf9c567, 0x7a1c123cea2a8188, 0x930e718c03b4e01f, 0x28ab75bc34f1d278, 0x4ee903df34bfb25f, 0x8e8bf8af71b6ae40, 0x00000000000148 } }, { { 0xfd1c4f3b83eda436, 0x912498ef35d77adc, 0x7c572c46a38e42e7, 0xcf2b56a326d862c7, 0xf7c4c558491d8bc, 0x57e689d7407f6ca2, 0x4fbd2b18575647b3, 0xbc4f37cf08d8de9d, 0x0000000000009b }, { 0xfeefbec2425e6e53, 0x7d4033430b5563cf, 0xe98a361637e54b87, 0x1056827d0fe30d98, 0xdedd9a5ed46ff2e6, 0x5eae8c6333cae1f4, 0xbc0db1f6ce8f471c, 0x2eb21080d8c74fa5, 0x00000000000155 }, { 0x34bdbcd9f2ff51a4, 0xdec9eb02b9f47868, 0xdcbf4be7018fe23e, 0xb3ed83a89974cb35, 0xcec4f024984ccb6d, 0xa5155c378c1ef9b4, 0x21a4fc9bf2c9ceb9, 0xbcdc1e01cea6ceec, 0x0000000000008d } }, { { 0xea8367d598b8b34d, 0x9831111dec264ab6, 0x277d0ce4b29e5e88, 0xba38f1d0d28864bb, 0x35782cf6b3d91a37, 0xf28742c897ba22a0, 0x721aad208e177c76, 0xa3322011e3ade89e, 0x000000000000ed }, { 0x6191125840f94a5f, 0x32762c946a4252d2, 0xb3cb59536d1f10d9, 0x1c1c2cc8511f2fda, 0x3f7185db5a4d41d7, 0x7411bf960214917f, 0x83648905fc1fb20f, 0x8d7ad0215433639a, 0x00000000000025 }, { 0xc861b9312ac88230, 0xe4859df29b3a092b, 0x716bb486491091c1, 0xddc70569f5167c7b, 0x43225f54776d9860, 0xfb2d53621b912a20, 0xe6c5110c25a482c8, 0x3175a6392b97425d, 0x0000000000009f } }, { { 0x6f0203256cc120df, 0x9ec6791679043a3a, 0x57eff9b043f592ea, 0x3e91217fdd01cf2a, 0x41af1937afd05a16, 0xad9487cce0817bb9, 0xb7604c86de9a21e, 0xd1f70b1e6cf0b477, 0x000000000001fa }, { 0x2cfd77052850680b, 0x8bf6bcec34060590, 0xef5d1721356b0020, 0x58b67d97c4018215, 0x445e4a042295e7c3, 0xd9f153270cdd3271, 0x80d3573cee790333, 0x802b30a23ce0042f, 0x00000000000083 }, { 0x8d10256d82417708, 0x3515e64af313bc95, 0xa20c8c8b723f45c2, 0x8fbe4471e385d9c9, 0xb194146219b78741, 0x8548ac6e0e53455b, 0x456e0a9a11e86a1c, 0xe97436acbe23e3b7, 0x00000000000020 } }, { { 0x6d8e365a9f5bfab7, 0x879ca6ebb0de6013, 0x557153eaf622e917, 0x4135db4e1d5edb57, 0xf63b66578fb3e7bb, 0xdf44873670e3effc, 0x220ca26dc2f4eb2e, 0x5ae869d0941d75eb, 0x0000000000006f }, { 0xf2501506889963f5, 0x62929f20d0432f99, 0x41966349f4112540, 0xa84778f1e38d50a0, 0xa763e78b617a9215, 0xff284bc8396914cb, 0x969a8403f1af2eb3, 0x9a83fbc1d1c41e3, 0x0000000000016c }, { 0xed9ea899f5d86ee1, 0xf5a38970b180671, 0x3e562701450453b8, 0x75a183d1bce13c1a, 0x4a8f64c1214b2686, 0x81900c2dacd9b806, 0x63678393acd54c6b, 0x4b35da8a4d313787, 0x000000000000b3 } }, { { 0x4f10e12b6a01b240, 0x46d73b85653bab36, 0xe6342b931269ea4a, 0x9cfc6c88c916242f, 0x4a20af185c5785fd, 0x1987a7a116fa5ea0, 0x37130acb06c78cbb, 0x2165da75b15c3234, 0x000000000001bf }, { 0x4d9eceda3c70c086, 0x1d9af7031240639e, 0x44466b42de799306, 0x7e957b635030e948, 0xe8cc29a439616b82, 0x42e73794b1e204e5, 0x558302e186485712, 0xc9cab0ebeba8957c, 0000000000000000 }, { 0x11ba3bebbb8e3c2c, 0x9997544d3f57cd2, 0x487ecd566f555d27, 0x5cd6ae0a68c94bcb, 0xec45f3a8d0e7940b, 0x754908cfb45250b4, 0x3e391ae821c2ecf5, 0x6f5275e2bc795bce, 0x0000000000012e } }, { { 0x47717648270dc75e, 0xdf9d8ef44942197f, 0x6395cf1116173f45, 0xab99494e3ba937f4, 0x6b63b7af767a7c38, 0xbad7c6dcde7b8a95, 0xa77e034ac1b81c76, 0x8dbffa62f1c17784, 0x00000000000159 }, { 0x97f854de5b413c44, 0xc5f34f17d90916dd, 0x3ff54dba0768d260, 0x4944ad97063910ef, 0x431b23cf6e2cf20, 0x8e23a1f42eb62526, 0xe2645a57b2ee5803, 0xb12a3b386dbcdbe8, 0x0000000000018f }, { 0x4ae91055951098f0, 0x5ba3a66d728de4a9, 0x3517824e8cb4f2a7, 0xe526a96e7850ff61, 0x2de643e057f6d32, 0xd8f9787f3c0cbcb1, 0x3d4f042b3ddcb87b, 0x9a52f1498cf932c9, 0x0000000000000c } }, { { 0xfeec01c08cc588c0, 0xe8dbad299b402abc, 0xf8adf48088ea1142, 0x37a53ccf44906ed4, 0x4b1c79cf8ec45b7b, 0xded050d8c005ea6, 0xd720cf13256d9d16, 0x34e91e5b87b48f43, 0x0000000000019d }, { 0xe5e16922de996abb, 0xb4b27ed91b2bfca6, 0x1531c760bf435879, 0x505ec59f9a3fede1, 0x1783e117b877739e, 0xd001bfc174b42869, 0x635ab05244e92578, 0xd7d595ee023a2161, 0x000000000001aa }, { 0x409eceddb6728ce2, 0xc918248fbe039502, 0x2f7af729b771fd4b, 0xf35708492c9f0ace, 0x173fee4af8c5bb87, 0x1e72779d034385fd, 0x698db9f52150ad99, 0x1681efd01a411b02, 0x00000000000094 } }, { { 0x66ddb50fb7d997a0, 0xe36da284ccb133d, 0xc10f2c0d407e4cfa, 0xbfa7f2c0fef2661d, 0x5f4e47aff9edcfb5, 0xc7580eea3243db62, 0x49030667a7ab698d, 0xca6ed8b65dc97a95, 0x00000000000069 }, { 0xae0c38bf4fb4e109, 0x1a53f372d9e741e2, 0x77cd5a5333f78dda, 0xf027f088e31decdc, 0x7591546a54ea1aa6, 0x94bc9b754fd33681, 0x6c2e3d96cccbacd5, 0x92444a3365f06963, 0x00000000000191 }, { 0xd912ed1889ccfcc0, 0x1a9107d6cf907f8c, 0xe504d05c80c54f63, 0x9f7db6e19c104445, 0x93f04f5bd7592d7d, 0x8c1fd7cfc96a332d, 0x57f255930c7f3b89, 0xa62a8df1f0b647ac, 0x0000000000004f } } }, { { { 0xfcf7d7036614728e, 0x670ae4a16db5df3a, 0xea6d696c54bb3442, 0xf9b89b786df998f7, 0x414e0b8dfebefdc2, 0xe0dc2350e52172a2, 0x76fbd4c42c1f7448, 0x18e9953b657881ec, 0x0000000000013d }, { 0x19ec3e95560d5aca, 0xf6f4d493ba419954, 0xccf2c08ecc6f9910, 0xdaabc1463d638777, 0x7d1042bca2fed1c, 0x4ed2f86a60f118b2, 0x21e66200564112f8, 0xe1e8eb5bf2b0a063, 0x00000000000147 }, { 0xc440b861a9d82a57, 0xed2b506db449b989, 0x593781381749b651, 0xf56e4a4d8470e577, 0x341cbfe63fa214bb, 0xf38e051ed9608e68, 0x6bf2a19a9325d1c7, 0x732bb965c2ce424e, 0x0000000000003e } }, { { 0xf5d62fac85927c96, 0x617cd659eb41ddbc, 0xf5cb3965c1f9fddf, 0xe5d6813b97bceb61, 0x9a5495f1970d91a0, 0x5f7309726a7bdd72, 0x573c478525761536, 0x3246d5af79618bfc, 0x00000000000006 }, { 0x24e4f0b60206e38a, 0x9b65df6cf4c4bf0b, 0x5b2fc1342acb00b7, 0x26a3cf048e55ea22, 0xcf635ec88d63cc04, 0x28c7ffdc265bd6b8, 0x48c9024d9e3c22dd, 0xe35398ec8261a0f7, 0x0000000000000f }, { 0x7a5c457299557136, 0xa520f663845474bf, 0x7c6c2e21fa183e97, 0xcb35ee4959ea79b9, 0x80aab48621be70db, 0x5bc3d9ee32f458e2, 0xec1788a6ca937876, 0x8699c8a55a085359, 0x00000000000174 } }, { { 0xfd9dfc75f9ef6c3a, 0x9e37833d69c791a9, 0xa79a3d764ce96208, 0x49c7e9b000deb1a8, 0xa338d54d8b337633, 0xf5e80ac1f41b4d32, 0x56515f7498484416, 0x6d8d62cbc417db38, 0x00000000000055 }, { 0x45370c0cf51991a8, 0x57a190f540493720, 0x3482e64e7e7f9f96, 0x6a0fbfeddbe49c0e, 0x3e0244868701b878, 0x486b139ecf50e6a0, 0x1ad1393deb5836c3, 0x715dcc8b2d07a2dd, 0x00000000000078 }, { 0xe3593d1668da6e03, 0x520ebbc53ce94928, 0xe1f489c5d957a1, 0xd5ae01b339184184, 0x8e631fbb52c88fb8, 0xdd3e46c10d3c35c4, 0x4816de626122e774, 0x6f7c6f5301dd4828, 0x00000000000140 } }, { { 0x4eeb8e70e49b055a, 0x78e19e434a4003df, 0x4022aa7134360acf, 0x2f10a37bc3a5c9f4, 0xdc874bde81caaf3b, 0xa60c4262ad5eaf95, 0xa529b9939c157166, 0x8414d4db29b99609, 0x00000000000042 }, { 0x39cb5ab9b8679da0, 0x90ec40bc18227061, 0xc3480f59866e602d, 0xa11866a432745bde, 0x82bdc342c1e508b9, 0x8f3a4b58f5892eee, 0x8a58091664c7abeb, 0xa041f13244c2bf81, 0x000000000000c4 }, { 0x31467e71f8b68ae3, 0xbeebb93c29181c62, 0xa7bb867d99cc3c6d, 0x4d84be8353690f4d, 0xedb233d198333652, 0x8326822cd80c7c6d, 0x8d0e0823a518f62f, 0x3d54da8b22c7abaa, 0x000000000000e5 } }, { { 0x5857cf207f433d6f, 0xc77c9b25f5ca992, 0x49d379256aac5656, 0x62d4fbfae40ffad8, 0xdd78dd988c042a6d, 0x2a8908f882a0fac8, 0x983542df17cdae3a, 0x79cc55f42350c897, 0x000000000000bd }, { 0xfc29d55eaa4da9f4, 0xd4c6fa16fb7e98c, 0xcc54c8be3814bed7, 0x219385be5786ebb7, 0x3673887b3a3977b6, 0x63ed3c32902af36c, 0x47c9523f90a64dcb, 0xbf422bd312689396, 0x000000000000d6 }, { 0x62eb84d7ec1a569a, 0x6c287c1c161faca9, 0x1f7004b28064ac0a, 0x3f226434ba8f51f8, 0xb4cae5e0ed198b36, 0xc0f290daaf99694f, 0xa2d71d0827beb7b8, 0xeaa7c5794d5b88f1, 0x000000000001df } }, { { 0xbfeed6c3599e2482, 0x7db455fc2fc5df3b, 0xa04f71bada408ee1, 0xec9118ca2b88ed22, 0x7326717d5a1c9a39, 0xb7d6c40b7b347a87, 0x364f06348834bee, 0xaba433b6629756e8, 0x000000000000ce }, { 0xd4df92ef35c1330, 0xe1f8e14311fd6c62, 0xfb9fa7849d6478ac, 0xb1ff5632a0169ff3, 0xb23efd1e79d84305, 0x58940385a7eb6ee9, 0x188a08136e8dd657, 0x6731c621d9174ccd, 0x0000000000001e }, { 0xa46de6051e262f13, 0x2412ee5ab25be4ee, 0xbb83ef3081e2f9a7, 0x4f8071e6feda3a21, 0x9f80d8a27a148509, 0xc2fe46aaa68c8728, 0xfcab3653c85c6e29, 0x9f2e12af776a98b, 0x000000000001a1 } }, { { 0x7eb6862057da7cbd, 0xdd4a98de1f276cf, 0x46dbc5cb0d20bea6, 0xc516ba6cc1c8fda2, 0xe9f6267cddc7095, 0x16b440a0f46cadf, 0x749f1f44b0defb05, 0x9c649b7aa9b56583, 0x000000000000a6 }, { 0x77caf3a85f8196ac, 0xbbbdddc4e29e1520, 0x6a3f9cef33055a76, 0xf17d9e338078c854, 0xa91f47478a27ba21, 0x48a5ead1a7b18cbb, 0x1850a0565fc08765, 0xca5516b36ba4f99f, 0x00000000000141 }, { 0x22c2fc7de1e2d2ab, 0xaf0fe80d50a3fe65, 0xfd458b6232680055, 0x87ad2d69943ccc96, 0x7218bba511f645f2, 0x149a822ae8f4883e, 0xc212eb21d33ed039, 0xf230d1b7ac2e0042, 0x00000000000082 } }, { { 0x92fe1daa31106dd5, 0xefc0c40b53a9cec3, 0x154cd36c7b1c050c, 0x3cb3a9f5a47190fc, 0x1c1019c451764540, 0xc50bfb6c4091464b, 0x37100b7e6f0ae7ad, 0x21ec2759c5a705a1, 0x00000000000162 }, { 0x17f94aa728098162, 0xd17026a466aeb24a, 0xc013bf5a43a9deec, 0xc44d11f84fdf1065, 0xd44804ef42f5353f, 0xd15f5e31e5866352, 0xc27dd4798ba95ad6, 0x30ae7df2cd774557, 0x000000000001d9 }, { 0xcfa02eb7aee4fc42, 0x263a60b6c837125c, 0xdd33e4db55689ec9, 0x74d0ceb9d407ad89, 0x527d980032874ca, 0xda1dcdb2bad59a3b, 0xda86e0758a756c42, 0xa0d11b74895ef339, 0x000000000001ef } }, { { 0xbe8105a8114f013c, 0x9ca209fe776258a2, 0x92a34edd72d021d2, 0x334b2cf1dc1f3c5c, 0x9fd3fb746745152c, 0x559262896ac20229, 0x718f08f8c8d7688b, 0x56eb19a459d51fac, 0x0000000000014c }, { 0x6ff3e93fea6f6eaa, 0x6589d0224fe7993c, 0xc593cc0e029c1fed, 0xdea89d1e787e0812, 0x1969a2ee68e93b2d, 0x11bc1306d30edc8d, 0xaa11b4b38553364e, 0xe00654b5111907e6, 0x000000000000a1 }, { 0x32fdf1c154174133, 0x900186e8e9a41212, 0x101b06c88ca558de, 0x8cf2f6e69017fe9b, 0x8388a882fa18129, 0xbe725edb51dc29ae, 0x469bc4fc7f33c942, 0x4533fce72b170e75, 0x00000000000192 } }, { { 0xe952dbeb0d485d1f, 0x723f853d124ab27d, 0x90dafdcacec38e0, 0x8578f33c4cccc1e6, 0x1fc187cc71aa034b, 0x446f6ae3c4696195, 0xafe511df961ea300, 0x74ddc93005e9ea36, 0x00000000000077 }, { 0x7c11e4baf520965a, 0x764cf28833d5c409, 0x104dfb3ed02ecbec, 0xfe5009e0f94090a5, 0x2cc847607451595a, 0x795bae952ceb45e4, 0xc61d627169f8517, 0xf0784b7b5c4403e1, 0x00000000000161 }, { 0x2832ebcc8909736, 0x5a54f718ebe4d3a4, 0x287065c3a4f9e28c, 0xb7d221720218e9bc, 0x3dc2d9eff6fe3be8, 0x43afc5ade17b7ce6, 0x69e89e07b7476944, 0xc7ce510938b9c648, 0x000000000001e3 } }, { { 0xd57d85a659abf3fa, 0x7633e780b5fedd07, 0xb5c0b8cb84d6e095, 0xb7284a248aaf8979, 0x6feb20a5000c43ee, 0xd152cbe2f383b027, 0xc1df42c506ec4828, 0x56eb28fc0ae657c, 0x000000000001e7 }, { 0xf2d6562a255d007d, 0x6da0653022d6fe04, 0x33529506c2c56d38, 0x2d460fe1bab65b70, 0x7859ac572fbe9d8f, 0x61b86292a14b78d7, 0xa9b7e485de96dc71, 0x81cee4d752c0bd, 0x00000000000122 }, { 0x5ab0670777e0e966, 0xb313750557fa2204, 0x2e676294b8c37988, 0xdc2a6c973107b56c, 0xdf9abd493443fc39, 0x345a54430c34d678, 0xcd38b115c9087266, 0x987f49bc84e85fc4, 0x00000000000050 } }, { { 0x9f5b341bc677305a, 0xe1d849733066d6b7, 0xbebb17d1a5f4d136, 0x9a0265c783c8640e, 0xd3c5fb65c1e1e45e, 0x3f86d4bf20078024, 0x333184907fac0de3, 0x12ad80fa3e79ad37, 0x00000000000110 }, { 0x174779e5d5b0663, 0x5d59244ad36e9f5e, 0x7f520b85ce4b469d, 0xd65d11313d46a23a, 0x88a82ffe4037b716, 0x16848376d2875fb7, 0x8932844afef311f3, 0xce85f4d650d2f540, 0x00000000000061 }, { 0xde511a10b13f7949, 0xcff3b8559862e851, 0xf67aac75a5033cbf, 0x66118dc19bd30a20, 0xf0315beb47a4f8a7, 0x60483550ccdea7a7, 0xeb2e2a1f431b582, 0xbe38616af0796908, 0x0000000000000d } }, { { 0x7afc2a9919d58fa6, 0x117084b34c4d4e2a, 0x8bfb3d2fc06ddb58, 0x7e1a69104a1dff25, 0x8e257ac3f3e9f893, 0xbc4c1b0f22bb0ac4, 0xe23b4143bffa2ee, 0x6045420f4e0ca45b, 0x00000000000150 }, { 0x5200f33f2581bb5e, 0xa5aac119694d9869, 0x61218b5bdb028718, 0x43ae6f9db9bb9579, 0xe97080da7ab6a49c, 0x10f8bea05617ce7e, 0x3f002f0ca66282a6, 0xcae4f55e7b42e5a7, 0x000000000001e9 }, { 0xc0ed3c16d31bffed, 0xa38a1717e37e31a0, 0xfbbd077d1351a8c3, 0x7469c94e1be7d525, 0x75368c2ce4689287, 0x5c0e5105288d275f, 0x23021336b711d4a5, 0x9cc79cbfd8234657, 0x00000000000099 } }, { { 0x6547aeef517b38e5, 0x7e4f6ca37216269c, 0xc73280e6d3c1aaea, 0xbfcf6d54a13a6d7, 0x3b250450351170e2, 0x6b8425baa48ca0a1, 0x43121096fe5159e1, 0x3ee5dd547d02b31f, 0x0000000000016b }, { 0xbdaeb693cedf75ad, 0xda6b13ba04bfc4c6, 0x55651db1edc11731, 0x2d357353f2560bfd, 0xf1ac3f99604a720f, 0xcb063678d89f2387, 0x10845082b887e3ae, 0xb305011a6fa0d71f, 0x000000000001a3 }, { 0x1768dd7790848f49, 0xd409bc4e14d55841, 0x1c4e8f2fd3ee2673, 0xe209f9cf27f7590e, 0x4a9ccd5136d37f7e, 0x25d7131aa4237a0f, 0x95e923c4762bfe03, 0x94fd7d3b43ee0949, 0x00000000000056 } }, { { 0x69b2bd50b036f9a9, 0x9f60bcd2d3cd8a81, 0xec314e90752a73e6, 0xaab76483d27027fd, 0x18b06fd251556152, 0x9e6bfb51d8a134b0, 0xd1a28419a4eb8599, 0xbd7ec5a50f0ee83f, 0x00000000000156 }, { 0xf4c5891161339a17, 0x6bc3f20b10b881d0, 0x4fd041c77611f6e7, 0xa3b82c7b23878787, 0xdd460faca87f2e81, 0x233bcbb185e31989, 0xcb90ba6df516804f, 0xd8e1a7ea8a3e259a, 0x000000000001eb }, { 0x621e6732550e8751, 0x67f56b0ab0325ca6, 0x89cc13c6a8b641d9, 0x12f26007c94bdd1e, 0x5d656425befb0d86, 0xd1764fdc95c6c70a, 0x76332510162de9b8, 0x2b3cf8307530f736, 0x000000000000a1 } } }, { { { 0xac5b83b0fe98771d, 0xd7943fc7162ac06a, 0x1f8cc6f2bed34cd5, 0x8b01c03287cfb93e, 0x8c3fa4e21617db31, 0x4da40bcf49467890, 0x1df0323231257e2b, 0xfae0ea10360f6d33, 0x00000000000120 }, { 0xa0195e0930d4510f, 0x25fdcba70037ccb7, 0xf97df418e4f7a344, 0x4778b6f980b3b926, 0x5bae787d554dea2a, 0xc2b368e0e25a75e, 0x86da750f588706d6, 0x91270e1795b465c9, 0x000000000000fd }, { 0xae309758356cc54c, 0xb49ca158e6d13a83, 0x306876a99d151390, 0x815ce6e957694fbe, 0xe59670b878477f04, 0x3b4f2a35b789e4d0, 0x6a9e1525cbfe2fc5, 0xc66d317987b0f851, 0x0000000000007d } }, { { 0xb581e981f5f1af3c, 0xd79a910aa07caa49, 0x60af426f3ed90b4a, 0x58c24b24d562f589, 0xfa251bcaf68ce99b, 0xa27df26d4613aa03, 0x7bd0e27f940589c1, 0x4ca6fd4bb61988c3, 0x0000000000001d }, { 0x85b8a1a90a03d499, 0x93b9c688f1fbd291, 0x5528fe91a1c20154, 0x9e0d447abd9949b4, 0xafb8995590ef023a, 0x944e28a02e868888, 0x6c48746c9252cdf6, 0xc5527ee98065e005, 0x00000000000064 }, { 0x305adbd8e0f542c4, 0x3be4a41c24da197, 0x9f91159115b3cd09, 0x600faaeff02cd183, 0xa9ee2ddd261746ef, 0x9e6db367d8b7623b, 0x983bdf8e09190893, 0x33311efa68f3ea59, 0x00000000000133 } }, { { 0x8e7cdad98dbd319a, 0x647d4b1401dfb187, 0xea7f1dfd2a1f2829, 0xebfaefac482ac369, 0xd102b11ef0faa5cc, 0x98b282f8501d9b35, 0x6285c8a4144c000f, 0x3e9c8764d15828e3, 0x000000000001f4 }, { 0xdb269202adbe54d8, 0xfc60ae1c617b1e43, 0xa4fccfab95eb877d, 0xe393d06265ef61ff, 0x17238bfd39815342, 0xc682ca451b163922, 0x3a0f28aea0e32a05, 0xc0e8c2c192591f40, 0x000000000000c2 }, { 0x86e23ecb620818b7, 0x8e2013ad2e9df5d4, 0x323a54b4b7834505, 0x8ec92f87d91fab26, 0xfe64935ec1f00e4, 0x3a6be2def0ba8f13, 0xb27ae5b130a6dd30, 0x7a7dd3c5f1f27d2, 0x0000000000008f } }, { { 0xe05fdd67f847fa09, 0xf002b1b328a7afd7, 0xc404b59fd6268f2b, 0x36ea4a192d31deb4, 0x45ddc20a0d17d802, 0x754bd7842452c034, 0x72eef0f7fb4aa02c, 0xf9b3f586c52fb0d2, 0x0000000000003e }, { 0x70701dd58289898e, 0xc48f7ddb65c5184e, 0x64401f3cd85ee3f5, 0xca5e1d5e603bf076, 0xf5b9069358305ac3, 0xe6bf9b47905d9524, 0x249a4cdcbd770ee2, 0x87a50818d339a367, 0x00000000000012 }, { 0x9483afaf9d095f0e, 0x2c9cbd7a6785c9dc, 0x2be1f1ede4a3b5de, 0x304f9c17d7bd43f0, 0xe96742d49a5560cf, 0xfe62b877a3c4177, 0x576f0117d2de4798, 0xe5ccb6a035130be1, 0x00000000000152 } }, { { 0xdccf08b9a14fa44e, 0xbfededf42f983cc1, 0xb19daacbfa3bb72, 0xfaffa038a463f260, 0x96016e8e45fbbfd5, 0x1733a4d68cb2ba8f, 0xe7af363223ad9333, 0xa84e298354781863, 0x000000000001e3 }, { 0x3fea4b4a31b8bdaa, 0xb82d3ffe87657669, 0x157e66818230787a, 0xbc9e40f5250a6b1d, 0x1dbe1e3b1df30f43, 0xa6b0ce7b0e9b3ef0, 0x2cbda3412aa82fb, 0x619665dad9fb40a7, 0x0000000000019b }, { 0xdfd5b09a6d570b8, 0xccf1316981988e, 0x437405afb04657f1, 0xf0c255a6250c67d6, 0xcf5344562a9d74cc, 0x46beb6aeeab4810c, 0x2b7b640483ab227f, 0xbc3a5af25a1c9b0e, 0x0000000000011d } }, { { 0xea95db6fca3dbc3d, 0xf7ea7cc65b413ef9, 0xa9ebb11d32352113, 0x6ff77d0b0451b9a3, 0x2f958cdaef7e1977, 0xb8a392d81cf26eef, 0xe299f2b75c70bd1, 0x5a7e9c03e82cf061, 0x0000000000006a }, { 0xcc17e337a9df6539, 0x6b1a0ff19f89caee, 0x3c58ed5b53be98a8, 0xa0e08a41a24b2ea1, 0x521919487c060962, 0x92bc1103ab249fc3, 0xb9de8514d1dcf62d, 0x2e8ea2eb132c757c, 0x000000000001fb }, { 0x535822b394074469, 0x8402dab73590a779, 0x9a09fad5cb894f71, 0x515d8551ef6d1c2c, 0xa245b4ecc1ccc5b9, 0xb4bd09a57d419198, 0x629bf73b3106d6e2, 0x288aea95f14df9ce, 0x00000000000104 } }, { { 0xffd2aef39ee22544, 0xfe2cc793d56d9235, 0x1b94ef2bd50a4c9e, 0x2c7a5f693239566f, 0xdeefb4de9589673e, 0x98637ff2520304c6, 0x518a5e2969935251, 0x96ac55c91005daa0, 0x000000000001a3 }, { 0x538597e040c58b65, 0x665f65212e521f7d, 0x4f0105c2c3a0beb9, 0x10bffaf8aecb9dea, 0x119e81c5cb0516e1, 0x34d8bc227247983f, 0x9d1e121e4069cd52, 0x877ce7d879699fcb, 0x0000000000002d }, { 0x5f032ddff48d40b2, 0xd495b326722e59f5, 0xa058f7c7e6c2b267, 0x46d32c65f6dba298, 0x2acb5b6cea7e3c68, 0xd207be8e4bb260af, 0x91ee1b80d7d8a1ea, 0x9f3ce85f5113cb2, 0x000000000001fa } }, { { 0x7cc177230a1c9d3d, 0xe99119d0875cf64, 0xfbc4cabd526dca75, 0x4cec7016b583d9c2, 0x939ee31f4fbea50c, 0x176a4e7a369104b6, 0x815f54780827cc3e, 0xd6a9d24efefc2e1d, 0x000000000001aa }, { 0xf9fa4854de32301b, 0xa6037ebb1611846b, 0xf3c8685c140a9315, 0x9de3b39be028a49, 0x4948c1d6f02fbf27, 0x74f389308b1feb89, 0x39635861e322fd13, 0x193d31db3fd6bb3c, 0x000000000000f7 }, { 0x8776d69c3468af3d, 0x32f96d063c57b35f, 0xa8b4ee3bc7f00652, 0x163701490a425eec, 0x67b9277d7c7c65e9, 0x42f94d2c96b77be6, 0xc41f0f252d3cf87c, 0xd828a0718eb646fa, 0x00000000000028 } }, { { 0xd657255928eb6d96, 0xb726be32fe1059e1, 0x6d291d0d801b2aa1, 0x6623c42bde681ad3, 0x81112e256469cf91, 0x3946f02ffa6982bb, 0xd8943dd5d101be2a, 0x50e93fd5914e8fab, 0x000000000001d8 }, { 0x7c5b1c5dbadaf5bd, 0xfe688ed405280524, 0xb903379971800a2b, 0x27d7f4434c58f121, 0x4b2d37ccfa42d253, 0xdcc1409b548c24c8, 0x3f859c52e01ec15d, 0x5b18ecdc583a6475, 0x000000000000ac }, { 0xda6ad52e7307ea18, 0xfe561e6e73bf0ea0, 0xac5c6d6e14b584ce, 0x5860f09bc4c0f12a, 0xcd02f54a0d3d330f, 0x45852053d6f73677, 0xf6e137465f15ef62, 0xf46eff27671b5ddb, 0x000000000000bc } }, { { 0x77dcb03c10649aba, 0x23dc36b14a05e03d, 0x4ab7d151dcb2a992, 0xadf6e846bc219902, 0x74d523c0561d5c9f, 0x51ee248f5d3d984a, 0xe528abc735a272e8, 0x814558bfa2c91409, 0x0000000000013c }, { 0x2427c76e8b820316, 0xabe1ed28a49f0490, 0xeeb99dcdcd5688e7, 0xe433de6c3668cd9c, 0x1e1891fdb76e3d16, 0xf1f3815526ed6c94, 0x68682e793b574e2d, 0x5723dbf2c7d9e3de, 0x000000000000e8 }, { 0xa4234d31cdb2d394, 0xe8c8071d19a55d30, 0xdc285a1e17579c7d, 0x5b2f1a821e81710c, 0xc748a327f4281109, 0x88be96eb2b798f79, 0x3dbd2754769aed12, 0xbf42f1f4a26e83a1, 0x000000000000ec } }, { { 0x4f6247c53bb5052f, 0xae8b38d6f6a61d13, 0xc86924965f63bc2b, 0x1e2be67249a13c5d, 0x26a1c36e9873cbc7, 0xc225a6acbeab4b59, 0x929f86580a79fe85, 0xf14424fdb05efb6, 0x0000000000013e }, { 0xc39f1ed093acbe62, 0xc4d714b4ea2dd712, 0x9b54f7cc53b34d44, 0xe2fa5028fecafc9d, 0x3718d347b568bbe3, 0xa7ede14337e8788a, 0xad609f9f8e19a941, 0xc4534af15e699276, 0000000000000000 }, { 0x2861ea56d67f3cc0, 0xed029b40cb527f4b, 0xfe2d60ccd01587ad, 0x58820434900b06ef, 0xd473ed1b146d75f, 0xa6e830cd78d88d04, 0x77aa2f56b98b127c, 0x7703dbfb4dc3691e, 0x000000000001e1 } }, { { 0x19d7669a007b30bb, 0xbf4091d9a61818c9, 0x1616a4e63d039dbb, 0x987220092c695462, 0xc2681b6a4d35d7cd, 0x5629f50e87c890cf, 0x457ddb724f4cb590, 0x6aa1c73951e0384a, 0x000000000001cb }, { 0xaaa83de322f55a0e, 0x786bd713b02d74a2, 0x397acdf1584e757a, 0xdb1eca9b8e08cf13, 0xb9da6a7ba1324979, 0x947a3afd02cc2288, 0xc7740b197eefaf00, 0xc3221605ac6e2170, 0x00000000000154 }, { 0x169d6d304848eb43, 0xa139733d226e9ca9, 0xd2961b067a24a656, 0xb5f6dcabc43fda45, 0xa839c2ff8164e093, 0x725cade1256013a6, 0x484d01defc97e9e0, 0x6778e33878fa9505, 0x000000000000dc } }, { { 0x441f8e2c54aa3ab0, 0x8943a25a4c42893e, 0xec96f96ba26fcaed, 0xf66e7ef8390bb281, 0xd5d38b46c9eec91b, 0x7797762c0956f9cc, 0x932f3f53aeb2ca69, 0x2c2b3841e44bddaa, 0x00000000000077 }, { 0x9eb1c537e3e53117, 0xd237c1fdc41bf392, 0x281bc58945055e7b, 0x15e56af23847aaa2, 0x53dbabeba6fdb1e9, 0x266b07873032b318, 0xde8f913f41352704, 0x4aeede7dc9bc417e, 0x00000000000031 }, { 0x2ff7447acdf6e193, 0x55d6ad7e1dc8ce7a, 0x8d6e4c048d38e203, 0x7c1a45a4fc1ee798, 0xa31936ebe92704f, 0x4aed1bf6efc852ae, 0xdb2ff7a371773ed5, 0x57d4be6188aa872a, 0x000000000001f6 } }, { { 0xab703ad2a19c74ca, 0x594ba454cc240444, 0xd8a3c505c2060fce, 0x511d214ab4fdcbca, 0xa5cdf8d5dae06fbf, 0x9944986d617b066a, 0x2e38b6948c78584, 0x8141f5865a708052, 0x000000000001b5 }, { 0x347a0e8d77f4c5b1, 0x8968a8194d9abd03, 0x6bca80f34fa04948, 0x4c0e2fde3fa47fcf, 0xfecd92da4bd24562, 0x79120474ba4acc9e, 0xd21916be1b06bafa, 0xce89f9e2381bf4f4, 0x00000000000150 }, { 0x2f0171f4ea5f7e9b, 0x6e7b502e2f33a060, 0x8fdf78879ed3fedd, 0xbffc684a7d748c7d, 0x80e42f4272d6417a, 0x57a276a93ea869cd, 0xdf33a97b840ade1f, 0xeb8e33aadba32200, 0x00000000000166 } }, { { 0x615a4d8dd16b1e27, 0xd8e0e7bb575b0a85, 0x4d42849c5bcf83a3, 0x282f03d9a26ff0a8, 0x7672a2d99ed7a31e, 0xacf66af8d70c474b, 0x13cb8608b37594e4, 0x4b677f30b5da5741, 0x0000000000009b }, { 0x8f45d5a0eeede418, 0x593b9f3970bae10, 0x360f32882cef9729, 0x59d81d2ba3b68d72, 0x6361a7b1d53519cf, 0x762639b631a3c2b7, 0x3f5781f52c681d5e, 0x642f13f748398a66, 0x000000000000f1 }, { 0x92f263e5bbf55108, 0xa7cd745e4b143232, 0xb93928c67c9012fb, 0xac45f91b42745431, 0x40d42a6a12dd1634, 0x87b0cd35e47c6172, 0x27a308b1a231b638, 0x78f7a27171214cc, 0x00000000000193 } } }, { { { 0xf62ffa1a5e5243d3, 0xeeb09275cf134b5f, 0x148683caf634a4, 0x439d78e03668c31, 0x3e4c77204e794f61, 0x960ee2bbe5e5d2e5, 0xcbd7f02e38796056, 0x5771366efbb4dbca, 0x00000000000164 }, { 0x68a0c56e56cc0c98, 0xe9f92ecf60f37d67, 0x4d72a3906c2beec4, 0x681ffc9d66439cb2, 0xbe4bb143b2face3b, 0xcbeeb3869228e345, 0xe6313e5178659193, 0x9f25e04f8d30d0da, 0x00000000000019 }, { 0xb00a5853d912bb34, 0xe1d14c246888bd0f, 0x9c87cb2c551168fe, 0x6cac61d6e7c5690e, 0x1c2e24e4913c2e0, 0xa91c0794a318912a, 0x47efc164ab5dfd19, 0x266ca61f20d9ca89, 0x00000000000161 } }, { { 0x721a37de823c3efb, 0x4ce37487673f3e7a, 0xf0206487cd7e641c, 0x4d0573667013b087, 0x9037530d6d701e1, 0xd65d1aaba23b11cb, 0x43418e6ed91ec281, 0x3b458440f464f352, 0x000000000001a9 }, { 0x27f56e14645899c1, 0x75624fd369868e30, 0x9e746917ff78bd4f, 0xff732c6f898f0868, 0xfb3ba5d748971123, 0x210daccfc8f0695a, 0xbf3624901ea58097, 0x5e7e3a17165e04f7, 0x000000000001bc }, { 0xa67a87f3b5da218b, 0x54f4ecd3a2dcd525, 0x9cb43d5a0f549cc5, 0x460d258c64d94df0, 0xa040e67d9065ca01, 0xe1d500c18edbae34, 0xdd4829f81b3d5cdb, 0xf5cd0d76a9d124a, 0x000000000001c1 } }, { { 0xff2f8e7dbb9b321e, 0xc1e96329fc47422e, 0x3ee2d7b0d5df6548, 0x5898765dfacf394f, 0xc7a0afced6126686, 0x50c1992a2f6ce811, 0x7e8ed32d76b09827, 0xe9fde4fe8ca16123, 0x000000000000ed }, { 0xa6dee18dbbaf987, 0x682c2e33e0ab1439, 0xf8d16cf4def1e74b, 0x9326f9a523d7d319, 0x476ab0046f6d45f0, 0x6bcee6481ad7ad81, 0xac23b0e38d9a131b, 0x3dd84712d50a6605, 0x00000000000049 }, { 0x12c3d244a441b277, 0x32554343d4b98771, 0xbc4c7e1d1ab453ab, 0xb815c54191ba5d82, 0x874265677325a66f, 0xede69c5a5ecb15d2, 0x9d06c1ead4d63928, 0xc07680d19f58e189, 0x000000000001d3 } }, { { 0xc662ff9f5bcb4600, 0xe847986ebd479960, 0xc70c127587092a6b, 0xccc492332ea75ae9, 0x683a9fdb7bdf1d6f, 0x3f9268f166f388ff, 0xfd0d81037f467e7b, 0xb74b9336b13e6047, 0x00000000000140 }, { 0x3df2020539c25dd8, 0xd1fa1bbd70e7b89c, 0x472901ab4f6d852d, 0xbeaaf923754fcb82, 0x85a020131066c6cf, 0x5bf564df116c79ad, 0xc08dc0f1d7bf3aaa, 0x769e9a84d8344aec, 0x0000000000009e }, { 0x725aee3674ec0e25, 0xdcc4d253ea0c7adc, 0xb91e7ad5bf11081, 0xe527c167aef001be, 0x7a74953607b9993, 0x249a07eb7eb6cbc5, 0xe9f387fe0362ef69, 0xa4a8fce20fcc3032, 0x000000000000dc } }, { { 0xcbcfd657a19f6961, 0x45cc3875a0881dd5, 0x1ddbcf924fae972d, 0xb97665690edabc9, 0xbc6b78fdc1441acc, 0x72bd8723f187b1fc, 0xfebbbdc38525e3d0, 0x74fd07832a87f6e8, 0x00000000000136 }, { 0x21b580d14b93847d, 0xf5cebab87926f8bb, 0x49c8ea4767aaf796, 0x2845744bdb2903ea, 0xe049ddc557b51b40, 0xc220ad9820b958c4, 0x87e643f9bddb5d29, 0x2d77b7d432546ecc, 0x0000000000004e }, { 0x84a5b539d3a6c872, 0x694dd713ccd9cd94, 0xdcdc6fe1922201de, 0x7ff13b539b4f1d2d, 0xe82015b5a9597f8d, 0xbab06b14ddb882c3, 0xa74b944108ecfa4b, 0xcf801698d98cf4ef, 0x0000000000005f } }, { { 0x4b04ce5eeb2bfc, 0x3242e3a5429d364a, 0xe793f6831ec5c9fa, 0xb30f16ab5da966d0, 0x736dfd2eeb7f5a68, 0xd5533e3f20583fe0, 0x1271264e85816f18, 0xd35c0e6aa6593bf, 0x000000000000bd }, { 0x1ba1d9dd489548e0, 0x7b56879450a8078f, 0xf43688c00cb325d, 0x75ec59c476ceec2, 0xd73c19b64da10f7e, 0x80415363c0332bf7, 0xf81d3f9eb3de649e, 0x86366cd596e1e28d, 0x000000000001c8 }, { 0x871034477fa7c09a, 0xdfd8cac88fb07d6a, 0x962d362ea879f073, 0x12345ff944e5702b, 0x51371f6a1572f9f8, 0x82889b1118c03586, 0x60ffde0a8e920014, 0x6a969b8077d921ed, 0x00000000000093 } }, { { 0xc640959e9d7983cf, 0x1f3429bbdbb09c9d, 0x89141a99a9342a82, 0xbf0298f45405b0a6, 0x3d62cf7cac39697a, 0x3ecda7ff9b082a80, 0xfa75a99cca541fa4, 0x3834bcb928c5bf73, 0x000000000001d4 }, { 0x948ee1dd9079ce34, 0x3607c9f8ca1ea94b, 0x3ef19086fadd3cd1, 0x61d92359f34f185, 0x36b644a3c700a9ad, 0x39e242ae6532257d, 0x96774dabadc6bbc6, 0x682c1d0513ea2d4f, 0x000000000000ba }, { 0x36d5631621a78f9e, 0xee4e567ccccfe5d6, 0x371c15790cb4ce34, 0x49474dad5d6a1326, 0xc5b906d04f458a82, 0x145067bccd50be5f, 0x146c474a21aa0d0, 0x41f4c9c3b089c252, 0x0000000000001d } }, { { 0x7ba85ee2d8e73dc7, 0x364f3b76c615d2f1, 0x708a35a34e851015, 0x87330f330b68a9fc, 0x5bf02d3c54291800, 0xd85befe45f61be31, 0x28d1f3da56d30659, 0x1610bf38427acf30, 0x000000000001e1 }, { 0x3afe3d97eaaa5fbc, 0x7a387257678cccce, 0x5399aad992ae018, 0x44131e3882ade7ec, 0xb4dc235b929134f4, 0x32848693c63c2cec, 0xfc6da23bebb6c49, 0x89c511460513292a, 0x000000000000d1 }, { 0x8738d07d0df4901b, 0x3affb74cb7e689f7, 0xb1648a46476726d, 0xfd96690e10133d03, 0x98fa6a5554482bf7, 0x71c68c7de5bd569c, 0xaee496e5b2ac82ec, 0x63e098ac05d2bdda, 0x00000000000102 } }, { { 0x348e59ab808436e, 0x654cbab1c7e8de21, 0xd876b6b57864aec4, 0x7f97563fc5a3b8ce, 0x919ecc78196ecccd, 0x92f0146d5fe5095f, 0xd83565da9f02b95b, 0xbc6fe0ecbb6bb8cd, 0x000000000000e3 }, { 0x80635f21c6beba2c, 0xf3323b2918d231c8, 0xeb8ddfb4fd1dc4be, 0xffb56322e382b673, 0x717a10e08dddbb67, 0x6f11eb182a999d90, 0x1d8d6918971843d, 0xaaf57e44a8f2bdb5, 0x000000000001ab }, { 0xc141c3abdfa1a3cc, 0x40657967b42fdd36, 0x558854aa41c4abc, 0x4a8910df29159da8, 0x6bea0c153e3ed08d, 0xb61cafff6fb5b19b, 0xe88478ace1f8e05e, 0x7d56375034f778a, 0x00000000000096 } }, { { 0x935722fb96d764c, 0x85037c158dcdd303, 0x7d34147721bc1856, 0xd3b18e4acabcafe9, 0x6c51f9b518b7bedd, 0x4ff0d70fab0c6e0, 0x6ac83c745ae27220, 0xa14a3e3684576d41, 0x0000000000019a }, { 0x8b08d98565f87d9c, 0xabc0d9f573d7180c, 0x6dd8e28acecc0141, 0x12d7b4d7c50099da, 0x514adffe1609daf1, 0x86596e9f58af5be, 0x78ed55842989f3ad, 0x305ecbe9e550f37a, 0x0000000000013a }, { 0x10c422ba12228047, 0xb76f3b5afdedf7bf, 0x2cd6c5cb600eb732, 0x429d73def4dd0a17, 0x91b2784f032c7a3f, 0x987fc95aae742374, 0xd87f5a9a4ea19f14, 0x925bd0b7dcf37af0, 0x000000000001b9 } }, { { 0x4d54267abf51ac9, 0x9126e2107d07fbf0, 0x296a37ecb80a2393, 0xfcf644ad3988dc3a, 0xaf58c4b55ebb94db, 0xa49944e00cbaf184, 0xe74b9bcacf515b1c, 0x5e09235b8c071d49, 0x000000000001e8 }, { 0x4adae6db82cd8a2c, 0x305e5afdc058a2e1, 0xff46dc81c65c6bd3, 0xb9e1d7524ee36b1f, 0xd4a779e83db46f54, 0x4594658f2eeae29e, 0xcd3b2efcfc6def4c, 0x2718976e2fd35b80, 0x000000000001db }, { 0x1856304ec4a8ae9a, 0x11583bf23318bac5, 0x2d5e861e076373d4, 0x237b2e428cd38c7e, 0x6e8a51364ac25bbc, 0x20fa784d7610fda4, 0x36a991c0adb31a19, 0x87fa3cd87233e892, 0x0000000000002b } }, { { 0xfb2e17dfebb96f57, 0x698d15624818895b, 0x8c867e4b77296b7f, 0xc3c4580c69d17242, 0xdf586bc5b63a5462, 0xd179d12f6c32a277, 0x82deecf3380a33df, 0x127e27918dc424fd, 0x00000000000126 }, { 0x4f7911b202d7838c, 0x2c389460db5cc5d9, 0xb15d6766044cdd10, 0x6b62e3098140629e, 0xbb587cdb20c8a693, 0xcabf9f1f038ceb8, 0x6f3cc05213664a34, 0xf297593c8d9ff9f1, 0x000000000000b3 }, { 0xec334418bc8a5588, 0x32005a75c6545edc, 0x1fabaa4a22c747b5, 0x9d068261f7d8f795, 0x2ceb314f722d7e64, 0x8e78791326554863, 0xdc85c6f3b5bca72a, 0x347d4a84574818ea, 0x0000000000013c } }, { { 0xbadaabc3ef513665, 0x1cb8bad2b9b9f96f, 0x486d4c26c280964d, 0x312fd189fea77dcb, 0xa35bfe8717c0efb0, 0x22d0699db53bdf22, 0x1ef9bed13624f409, 0xca2752e1e47ef7e4, 0x00000000000070 }, { 0xec0b5a68ba8c3e1e, 0x9b77bab3776cedf8, 0xef0768def31c2f1c, 0xd13df0f9a9a5190e, 0xacb3e6cbc09f3e88, 0x97a541adc3938bb9, 0x3e12117e4b1a2524, 0x52a73e5bcacbb7a4, 0x0000000000000f }, { 0x4895a85e6d5e4115, 0xa9faab79338d64b8, 0xca909d2b1f9ec59, 0x41fc60eef78508e9, 0xea8e43bd682d59b8, 0x20596875ea36dfc7, 0x5a9002050a0dc284, 0xbe69fc02742c9940, 0x00000000000101 } }, { { 0xbce5701635220f80, 0xf8e1174ea814fecf, 0x9dd88bccf458e7e, 0xaac1cc2941a76356, 0xab7348430f8ed1e9, 0x4914a7886336654a, 0xa1f5e21f754cebfd, 0xf023f4c122c204cb, 0x00000000000198 }, { 0x701ea7320efbdea, 0x84f813b9231ec5cb, 0xc9072032454e31f4, 0xfa6342c47db0135c, 0xf83a22f0c083d53f, 0x8746433f4b2cb3dd, 0xca31473256a47356, 0x95f76318196127e7, 0x000000000001fc }, { 0x3900c390afcff64, 0x2b425ead65d7b8f7, 0xf5e6c28b60f14451, 0x40440bf60b8a2643, 0xead29ee9f945382, 0xbfb539b971fa77cc, 0xf10b5f2b88cb8e3, 0xe326e4b021c94833, 0x000000000001bd } }, { { 0xb66dc95313c87b76, 0x6b1c92c0d88b1f83, 0x470c5107a1b5a637, 0x5246aa0145db87ed, 0x91abab1add0bbff6, 0x3fd1f8600420e1da, 0x35afdd5904c999e4, 0xdf9839e9d348e1e5, 0x000000000001b3 }, { 0xd67021357b656fe3, 0x5f70f3b8e35e9048, 0x3aaf61af5a8640c2, 0xddd7e8fb126827f5, 0x2a5fd3a5c8f954eb, 0xd5d19a61bbf22a97, 0x78b48e10f24b2f45, 0xaba19235741089ae, 0x00000000000185 }, { 0xf6edb80844a6179e, 0xc716651bcfa12547, 0xef74ee751f698dd1, 0xc07ff7aa1a322637, 0xe92c7af10da7b7e1, 0xfd54e1565b259195, 0x4fa81bb85d70235c, 0xc1f0527a35a58a34, 0x00000000000190 } } }, { { { 0x39ea20a880fd9830, 0x6c95fae8e153b3c6, 0xa67dd793a7e1806b, 0xe04266ca78599d6e, 0xbbd1f1d6710bb690, 0x3f4b7cf2a1236ffb, 0xc07f2e14b0eccc2f, 0xe38d338aee519b62, 0x000000000000af }, { 0xe0c2139897ec0d98, 0x1e4a721dee1a02b9, 0xee40b8f2c6b47b54, 0xb90fe71bfa4c73e9, 0x33c4ce6eb2e93da2, 0xf6cf7a43153c8e7c, 0xd599df2ec4f8c096, 0x652e135d1e092cde, 0x00000000000007 }, { 0x330ddf0944468c12, 0x90859d3be123ef9, 0xd2eb31876a65ca5b, 0xacd7475fe0180fc0, 0xa6aad8a8d4364da1, 0x334ee5f2d44e8749, 0xd3759273dc8d174, 0x6f2d962a60b1cdc3, 0x000000000000c7 } }, { { 0x83f0827c46bc2501, 0xc7249a32184444f0, 0xff872af6a6dd47ef, 0xd922e2410a6bcca7, 0x52dc0cd68343d541, 0x30a85274dc9e87c, 0xdee7b8a1df327857, 0x7398ba6855b8a03a, 0x0000000000012b }, { 0xc13c5a37de099a98, 0xb36be8586334ea09, 0xb72ed763d2d03126, 0x4b100e15e16478c6, 0xcd0aca0020806ae, 0xf469a622fd7000dd, 0x5c95f32a0907cd00, 0xfc03f0f27be7dbfa, 0x00000000000048 }, { 0xf0a8b56afc90ba15, 0x1fb95017cf0e2539, 0xcd8430e7397018c8, 0x28d8fd486dff1c85, 0x88b8ef8468a6f7f0, 0x34c67d6e0be2e793, 0x2da0a04073183a65, 0xea9159790398f771, 0x00000000000006 } }, { { 0x2ca1dd1438caaf10, 0xeb3cb57365b36fb2, 0x52977818025daa11, 0x381c8e50a333a748, 0xb0cf2981ef1fb5ae, 0x47f30f54c39bf817, 0x3da8e0b9435e644e, 0x39c063318408c04, 0x0000000000007d }, { 0x5a67f77014dbfb79, 0x5f57493e0711b394, 0x1b3d7065095c64e3, 0x960f57ac5a273a88, 0xe4c0ccf1f2d11c81, 0x34151122efcb7f69, 0x28b53e118b97ae6d, 0xf18b62755ae53e83, 0x00000000000070 }, { 0xe3c9125cb9f4b272, 0xf7790f408580ace8, 0x40ea6e144c3d0307, 0xffa5cf8613ab88ec, 0x677a0afa86ff29bc, 0x8af36a8ff654266e, 0xf7a8532dab70a410, 0xde31cf450c871d5a, 0x0000000000008f } }, { { 0xc59ca6b4ad7ad035, 0x9d987be4ed65aa2, 0x2527927d933ca7f4, 0xfcb96b2e0e1d220, 0xb1ba68ef60c56fb7, 0x3c6aebe6c1dcf8e0, 0xadec33f1f5020255, 0xc445657287d3f511, 0x00000000000102 }, { 0x35b82e18b294949c, 0x4aba4ea06c2217d2, 0x81ff391d0a615a4f, 0x95281a045f21d2af, 0xfd63e5247fa1ad7c, 0x7646effab71c1a07, 0x49e507f3cd83e7c3, 0x18431fd5643f24f5, 0x000000000001af }, { 0x817c94b6c2c530a6, 0xe6f8c2d8db12e0c5, 0xe20deffb690218f4, 0x9d22707fa4e9de45, 0x65b7c23cad5b9f3e, 0xecfb6500b4a0d0a1, 0x96a6059d2c7d5662, 0xc9ec31f566fff957, 0x000000000000e9 } }, { { 0xb7f5f08e3f4e6fe0, 0x76f422e0bfa8946d, 0x7e730de45886c08e, 0xb39c42a4ae02ac56, 0x3587a519ec0779ae, 0x2300432d42122e86, 0xbfe1aaf266ec409a, 0x64ab809adbce66d4, 0x00000000000089 }, { 0x56457915e6c08f15, 0x173ee82ef48529ff, 0xdc147f5b85a381eb, 0xbc8cca569482db5d, 0xfd40f5f5bebbd10a, 0x30939104c8cd349e, 0xa687fc56558b38cd, 0x4e32cbc32cdbef63, 0x000000000000aa }, { 0xc59cdb1ff7fbe775, 0xd54e91e53eb7c739, 0x171f7def4b2ea8f7, 0x8abdb8cb16f635a8, 0x34a35807a710e2f6, 0xd8ea7fe6d5ed6265, 0x3515d2f101ceee27, 0x628b43a2793f7971, 0x00000000000104 } }, { { 0xb6db29497116ee4d, 0x25b6ffa76eca5881, 0xdc0402ba45ac092e, 0x54278ef2b9f25654, 0xd5fc74c618eacaff, 0x7457389361bfa9c4, 0x390cad64187857fd, 0xce34eb3039d7e9ed, 0x000000000000b6 }, { 0x78b5914a555bf377, 0xdf0ec211669cb8cf, 0x5ff87d6ea5d89eaa, 0xf7d95b5a7d94ece4, 0x76aa0a0e4e44e4a9, 0x5cd7ee212aacf873, 0xa9a351f4fe39ce21, 0xb82cbd39aff864da, 0x00000000000072 }, { 0x2ddf34502a2bb0fe, 0x3a06d2c2bef9bb20, 0x65c88bf0b99901d2, 0x9dc1d0edc298e716, 0x6e2ab8f75de8d35e, 0x7e3ac52e59971cac, 0x100166628849d85c, 0x53ed60f1e452423f, 0x000000000000fb } }, { { 0xe9d5a3b0c60692ec, 0x57663d0f296a949f, 0x7df08c7dbc560676, 0x5f78701d57d1b3e5, 0x8886ffa463e59665, 0xd7c7458efec3db4f, 0x29b7e66154d99354, 0x95db440ae658e3d4, 0x0000000000002a }, { 0xcf63ece2b0180b88, 0x2b9c59b0b2347010, 0xbb2f02230e19568e, 0x4a7ea9aa43a2cc47, 0xa7e99f0adca468f5, 0xc0b196f2735c0ca7, 0x9710b096320e4be3, 0xdd1bac117fedaf3a, 0x00000000000153 }, { 0x3777ce1628259984, 0x25089395128130e8, 0x5c89f8db5f1ceea1, 0xa1f50462af607032, 0x23100df34684e66c, 0xf30a23f6d2fc5586, 0x96b708f521c224aa, 0xad7b787412eb3e93, 0x00000000000140 } }, { { 0x5ec281182041ead7, 0x9c78d7be25fcf948, 0xe6a37b2caae9f60d, 0xb3a61ee58ccf05e, 0xb4c81327f5b12235, 0x768aef229aa2540f, 0x72a91db03a5eeac3, 0x1051f3d2c23e8c2a, 0x00000000000149 }, { 0x24b90f0243302a9b, 0x4782e58842d9fec3, 0x5435e8a9072d6466, 0xcb62e2e81e44d40, 0x780e7a8bafa290d, 0x3e547b694a9c0d64, 0xe57154f234e668fd, 0xbe493bd7e91a0c6a, 0x0000000000005e }, { 0xa6347908743dc49b, 0xcde85b270d637379, 0x4d138c461e712563, 0xea8f8bd1afd20d3, 0x9747784617efad69, 0xae71f5597eae5cef, 0x880f9fb2ee16a548, 0x3c045def8f99363d, 0x000000000001eb } }, { { 0x20a913ace408ff75, 0xb5d0b4d7163c891a, 0xc4c5527958714331, 0xd96b7b54f0a8ebc1, 0xca95f3f1986c1ee9, 0x97e95a19173b6cec, 0xccc195e7a643fee5, 0x12a1903cebb666a5, 0x0000000000007f }, { 0x8a73f32d975bb91c, 0xf82472918583dd62, 0x5541cf9b0ccead26, 0xfead6c164d380cca, 0xe6a09880af0f9684, 0xecc89296e321f801, 0x44cb8d7f141caad8, 0xf0e99925822520f9, 0x0000000000011e }, { 0x1b5ecbd53d1d3c20, 0xa3e92f7a0585e579, 0x3a4a70bee28494b2, 0x8ce1518c230e9a6f, 0xa5335519d6aef9ef, 0x371667131881af1c, 0xa6eb98050ec8d851, 0x660e3a010eb465b8, 0x0000000000014c } }, { { 0x75431d4619a0cfd, 0xb1f3f43e45ec8ea0, 0x26ee8246b1497616, 0xec382834f0410915, 0x1692efafedc3b03e, 0x9c80d69506346e7c, 0x45c716ab5590e1af, 0xb0e8d870311ba6c2, 0x0000000000009b }, { 0xc0f67def3074110f, 0xeb0ac4ed6c92f532, 0xc0b1e1354baee64, 0xd4b54a450b49a97, 0x96ef36b8e803ca52, 0xb7f23496c92f6b98, 0xcf57463d7c9b04a0, 0xf83f743448700eac, 0x00000000000065 }, { 0xc1817d3042002289, 0x4f9ed02b719579fb, 0x682e5b79abbeb93d, 0x8d013f547f16541a, 0xd48c8cead754345, 0x55d1331cbb2a6ed3, 0x70f448aadd06f1b7, 0xbc948724cfbd3a0, 0x00000000000001 } }, { { 0xe111cee5d5f0930e, 0xb45c751dd2f1837f, 0x702631c499879bf, 0xa08534e4d8179a0f, 0x3f5b4bc4cb6fd549, 0xccc32b84eb50039e, 0x93136e0a5fa3c2a8, 0x8399bc5c365ca53e, 0x0000000000002d }, { 0xc76d858b1c948c6f, 0x16af4039e87b6a01, 0xd89738617c15de9b, 0xdc438b8f821cfc72, 0x5684ad9e56e4f429, 0x4894350cbbcaa908, 0x758a7d4187253464, 0x64ebe2815bf76c5c, 0x0000000000000d }, { 0x16236d8685327d9f, 0x2bad1b418e196801, 0x9980c5f9e73c8b15, 0x8ad61b68cb575e00, 0x30830adc8f856fa, 0x4ae0d9783a3566e6, 0x2f502571815ea9c5, 0x70e10b892d2b80dd, 0x000000000000f3 } }, { { 0x31de9ee3c6b3ad4f, 0x415c3ce21c3f7d13, 0x6b42e669688a0083, 0xa08fbc8c620a4da0, 0x85c6906fc1ac5e88, 0x9bdcc7bc7d77e269, 0xe0f3a96e5a929c0e, 0x8587490277800c81, 0x0000000000001a }, { 0xe53a15e57cfe0537, 0xfc384262bd0069ec, 0x851e036052ccce0a, 0x97496e88e8263012, 0xb7c6008057bd1e2d, 0x2d2987d7c6f0fbd2, 0x41941c7cf6ff687, 0xc663b38484de1e17, 0x00000000000010 }, { 0x72f9b7d2db60213a, 0x5a4736be83b25874, 0x2766de5291944411, 0xb8b05390360167ed, 0x7edbba66c6a1f02c, 0x9d4e0b09f5fc8bcc, 0xa5d8dc4f7f37b0df, 0xaf6f2833a02297d1, 0x000000000000ee } }, { { 0x5988c663ca0a79e4, 0x9baacf7f5e7a556b, 0x1d7e654f4c477fbd, 0x214a8786562ed6d5, 0x2dae913b7e9bf7d6, 0x22ef329f47fd1ef3, 0xf0713a41dc577919, 0x1dbf7730f1d8257a, 0x00000000000040 }, { 0x94a239f4c3d79505, 0xe585f7059c0d4a07, 0xace337269da5eefe, 0xeb6ff53c8adeaf02, 0xccd6bad7edc40c7c, 0x74bf9e0637a14221, 0xd75a7cd6af7555e6, 0x898b13ee877f4b84, 0x000000000001ce }, { 0x9aaa686c0c9dc827, 0xe1fc1711e6423e38, 0xbca6abd340d4cdc9, 0xcdee947cbcf6fa56, 0xbe3eb531f55e52df, 0x14a6cee10700af00, 0x764940df67da58ac, 0x93623fb53fd87b0, 0x0000000000006a } }, { { 0xa1ec8ca2366b509f, 0xa42aac76a03e1c32, 0x816d7f6ba966d596, 0x9e71fd9ddb6f9891, 0xdaac095e0dcfb2a3, 0xd9cbfb95feb20132, 0x3052397e8069918f, 0x3d603602182f0263, 0x000000000000de }, { 0x6399b3f126a202d5, 0xbe3dad56d5b97ff2, 0xcffeb4dc8de43846, 0x94fea060dc2ed006, 0x9b6427f6845dd442, 0x6e5ae8b3be1f52e5, 0xdd276dbcdae79ce7, 0x604e4f722d008801, 0x00000000000069 }, { 0x93cd7d15a906d08b, 0xf43a84b610768fc3, 0xa1030529fc2fae60, 0xb89da5eb44a44744, 0x77044eb2f65cef7f, 0x527bab12f391f3de, 0x15c3574a3be65c10, 0xe78d0f89f40bee1e, 0x00000000000011 } }, { { 0x82b95d9261419390, 0x3afd4ad91af047a7, 0xb993737cfcb7b941, 0xd0bb02057f4d3368, 0x4b657f772ea17c5, 0x34b1068730228b8f, 0xe21f1d4ba1e1559e, 0xcbf32068302fdae9, 0x0000000000009f }, { 0xd08adec12d6ae3af, 0x9a8f274e34bd46e1, 0x1cd23fba42825e13, 0xd1b5880fa623000f, 0x32232c7f48dc0856, 0x99029bd7f3a3ce09, 0xc58747df4097ad4c, 0xa767b596186cc0a4, 0x000000000001eb }, { 0x8f932205f784a830, 0x1d556e881575d716, 0x8cce3afde4dad2ac, 0xcc13a681133e2341, 0xf0d9f977b66298bc, 0x70e7f22a9f9a1b00, 0x8329603a7c758d13, 0x196d33e637e05ae3, 0x00000000000031 } } }, { { { 0x1b77a1f1162f2951, 0x17c98ee01969c700, 0xffae66a6d05c105c, 0x71f2974b05436be5, 0xded0021d48fdf196, 0x8a39cf15f333f8b8, 0xf96d6d98bbab4faa, 0xc5a41f773349f13f, 0x00000000000170 }, { 0x62533d1173bc07bc, 0xcb610d7a3bbac8cd, 0x59bbe625d935dd8a, 0xfcefc8c7241b9e9f, 0x4c1ae5acada4ab01, 0xf4f0d6a49bccd08d, 0x23c2323cdbd76891, 0x4cea2530e1da7637, 0x000000000000dc }, { 0x7c95b52c4b55d89c, 0xb7287f3d2d5126e6, 0x6de0507cc99933e4, 0xd623b9a8d2cff9a3, 0x651522491873ae5a, 0xea869830d75222fc, 0xc35c9bb3a80d03d7, 0x8c62ffb09ca3d563, 0x0000000000002c } }, { { 0xe899e3bcf3f4bfe6, 0x94e1c20591f38b94, 0x3dc82567fe51be71, 0x2e552922928777e7, 0xa3730aecb2926594, 0x680e0901040f1e8, 0x51343f0ea6761179, 0x5cc788110cd5f378, 0x00000000000157 }, { 0x4fc4fe911d870975, 0x7ea5a5e8414fe4ac, 0x6e228496fd88b24f, 0xfece7fb96b711ab4, 0x3395d338c6ba8052, 0x853a836b70fd6a8f, 0x7349a7242a8f4fd9, 0x75d5b547aff22dbe, 0x00000000000092 }, { 0x651de66c4c9b571d, 0xb84064ff88ea693a, 0xb4bba3754f140f15, 0xe8ef9c29ddb90bc4, 0xbe1252747767425c, 0x9841952297ac7710, 0x769b21fb1f14959b, 0x2d1a3b17bae35bd8, 0x000000000000f7 } }, { { 0xdd267641cd26729c, 0xa7f20124ec8a4630, 0x4ba45fa7e69ecb2c, 0xae54ad463b4f99c0, 0x56df141e40fce827, 0x6a5aa6c79cf9192d, 0x50c8feb259b9cea8, 0xb2164e5c68cc1a66, 0x0000000000011f }, { 0xc7979832f25ba035, 0xdc2439adfa016c3a, 0x353c47efaf3569ed, 0x82333c2b8913b928, 0x29832fb49a2bb9c5, 0x125de2df9797be34, 0x7d21ce1ea7e716d2, 0xb00ee6d467b764ab, 0x00000000000023 }, { 0xf62eae3541aa6c1e, 0xb9d8eb2159c0f15d, 0xbefbaae3cd41734c, 0x97cc651c12e19d90, 0xc1130410f048dbb2, 0x812145c2bb89c8d4, 0x5c3b692181ed6113, 0x8a638430b7a5f65a, 0x00000000000051 } }, { { 0x7822ab4c7e21b1ae, 0x47cdf66624da8f18, 0x8260f44799180078, 0x89f7e2acbaabafd, 0xef651eaf5d6059f5, 0xc6925ab7aaf4ac68, 0xa40fe77a2187b893, 0x5c9a3a4673edc98c, 0x00000000000180 }, { 0x937995052c22ccc9, 0xfd6122654d2d3c01, 0x29bdb1c48cafb741, 0x39d45b05b2d3f7b3, 0x668828ee38b06940, 0x5d0e9de6c7c47068, 0x7006a192353784e3, 0xa481e6f3d909b77e, 0x00000000000138 }, { 0xe03eb2902ff911ba, 0x7235db84c0b34bea, 0x65495dc5f026e9fc, 0x2d767fddfd2c5e28, 0x5a9e6d99ec26a8ac, 0x2b88585bf5c71696, 0x2379750ec9e72060, 0xbefc9904a0a63982, 0x00000000000109 } }, { { 0x139326f593af52e1, 0x4e1ef35ce8d47208, 0x80fbc43143dc4d87, 0x9674bf9e70afbf2d, 0xd0278852ff0a982d, 0xa0f6edf5e21d7936, 0x8ba8d744819c8141, 0x556adc1fe10129f4, 0x00000000000008 }, { 0x876701ea67d1a696, 0x144f32c3d6121a06, 0x566e47070012c338, 0xc4dd53b7e6e72ef9, 0x9d5b6439cee8b847, 0x97533187beee5974, 0xcc793bc0dc93d2a2, 0xe7187f2dfdd95cf4, 0x00000000000137 }, { 0x95480d2f6b28f5d5, 0xfc3f70a23289fe3e, 0x6bead0981f306165, 0xf5ee5da0ac38d422, 0x5e4d325c754bf0e9, 0x2964646ce1fb82ee, 0x99a63494521f7806, 0xf12561457e363edc, 0x00000000000069 } }, { { 0xabd75648c0525839, 0x56431ec2bf718858, 0xb92e6ee78f94b85c, 0xdd1c0455d09d4bba, 0xa87ad9dc945c93b7, 0x457fdc5b117e150e, 0xc0f7e2d83d755dcc, 0xa1447fcd33e81e73, 0x00000000000106 }, { 0x8d7a05ed0d872bcc, 0x1422ed5614e99c84, 0xefaae742b2f81cbb, 0xe31d5b0a71f0e6eb, 0x119bae7306eb4685, 0xe34608fe9b18f6c4, 0x84e2280b812ba525, 0xe511f8ff01c73251, 0x00000000000179 }, { 0x15d84da86e97bff5, 0xdbad0b25fed95e46, 0xf6e4c351aeaba9ee, 0x91388b70da14f6ff, 0x2bcd739dbda3f7b, 0x49a7e77cb7ba325e, 0x7fdb54abffcc1ac8, 0x486d55f387db993f, 0x0000000000018b } }, { { 0xf9954c6eeb847bd9, 0x8e2cf9696d1ea173, 0x31d98e9d343b2ea8, 0x251ef231507fe882, 0xbab0054cc02accb2, 0x7a1edbb1aae42c16, 0xd4f1c0ec6a37248b, 0x6f567d41ed74f19a, 0x000000000000ac }, { 0xb69ead3db403fa10, 0xabe6b87bd9e1f31f, 0xceaa6cf81564dd24, 0x898234812fc2db9e, 0xc757788fa449998f, 0xfe231c3649425d51, 0x7853daf0a798b34e, 0xc41b03aa78676f3a, 0x000000000000c6 }, { 0xcb8d0b5fb1f31009, 0x786e03810346f9f2, 0x8a3c713614237514, 0x9238af009141f051, 0xb7225cf7fa0237ee, 0xf301fa000139cc8b, 0x645cad45ceabc9fc, 0xe15437da9d28ead3, 0x0000000000007d } }, { { 0xdbc20ad2c9ad8969, 0xba839e0fc0b5dad0, 0x60677a611cf09217, 0x763d49b2bd7a250b, 0xebdf4b4abd92f00e, 0x24694bfd943320ce, 0x4d7bab88fff86316, 0x9d5a1063a0e45a66, 0x00000000000104 }, { 0xb06c759f39128489, 0x8fc8f40573d44113, 0x199d40598e317c81, 0x4cc55ce774b5825a, 0xb2c0ebd47618bf09, 0xdcae5bbdd7422539, 0xf1ce788f2db47e31, 0x4a6c1217d301c462, 0x00000000000076 }, { 0x4574b961dee19970, 0xdb13b74a34e4c75d, 0x4ed46c5bcbf2f481, 0x52f5adfb5625d55a, 0x365307cbb5e1a118, 0xc45873e65c47d01d, 0x6150a1d702589db2, 0x5aab24fd232b3f12, 0x000000000000f8 } }, { { 0xf8c196b9a8d2462e, 0xd180cf1728ecac2b, 0x959f3c5fd7bfbd8a, 0xef3e3e1e7006ff96, 0x4b4f9a3c2a62cb81, 0x4263ef330c69f7cd, 0x5040e233e56d7f9e, 0x779c99812627b1a0, 0x00000000000094 }, { 0x24a52ddefcecc990, 0x5e3c858856955aa9, 0x9865360ebb53b08a, 0x577d8311dc78cb57, 0xc8408f8479adbff8, 0xd9ad82e59a87825, 0xb6b8a19bbb058650, 0xc3d03b8e0e27f63c, 0x000000000000f4 }, { 0x839c7b7f0323de83, 0x9690736b9538652b, 0xfd80c353764d452a, 0x1557723060f591fe, 0xef263acf47f16bcd, 0x5477fbc9bfedd13f, 0xc2f400c8ea99cfda, 0xce48d99c63beb122, 0x00000000000034 } }, { { 0x2ca176a1b68c75d0, 0x767e050e759555b2, 0xaf0fd5bb97cef168, 0xa95452844454d697, 0x66ed7dc5b6b81a5a, 0x19cc87928cb120f3, 0x760cea08afd1d1e5, 0x6af89e5f073a4965, 0x00000000000084 }, { 0x375542185c5ad34b, 0x2cc95cff8419877e, 0x770f9fee2b32c139, 0xab7db33462315a07, 0xd1c71e8c72809d69, 0x9e0bd37e7ac075da, 0xd3e40fca11e024f6, 0xab47e630c511b263, 0x00000000000181 }, { 0xd8d00a5080df3fad, 0x1eca9428795fba04, 0xef67cde4cde33812, 0x4e200a3ce36825f3, 0x2f36f4c0694e456c, 0x919d9f13b4d3239b, 0x5a25a076cb6006be, 0x247a252f503e5b91, 0x000000000000a6 } }, { { 0x86387c70c08e5c54, 0xb6c0cd60f82324af, 0xe7785c6d3b140eed, 0xff2289edc90a50d7, 0x381b5dd3a025f2e8, 0xc470ba3caea49e3b, 0x746045158bf7485e, 0x96b56d1d5b98ae9c, 0x000000000000a4 }, { 0xbe7e96fc40a960d4, 0xc126cbb08fac81b4, 0xb96bd95578f9560b, 0x18164bab0da95ec8, 0x56100ca442cebc80, 0xe416496b855cf687, 0xd5d2a3d79410586, 0xf4522362621205c3, 0x000000000001d2 }, { 0xe7b80d841d026d55, 0x899d3b14b25e19c9, 0xbb01d39768865daa, 0x1504733421bb1ec0, 0x47dda4634704a7bd, 0xfcefb945875f5ce1, 0x5b0e086bdb36ce8a, 0xabd5091773fe3bd1, 0x00000000000051 } }, { { 0x7e7ef454cbc515c9, 0x787d5993f1092417, 0x41deff0b412a9219, 0x26700ac95fdb2d7f, 0xe6a4a342c17288f9, 0xff684b17c12769a3, 0xe1308ca65310e693, 0x6048f4a4fd077506, 0x000000000000e3 }, { 0xb82b16bab78bf1a4, 0xeec810202f84c36c, 0x312e2e4736b111a0, 0x3cdee2b038065b30, 0x87da1e1c1328618, 0xd6bc6ecba7e4b780, 0x2a6879cb102dbbdf, 0xb963acc50e40495d, 0x000000000001a4 }, { 0x6fc7b782ae1201b, 0x85f4c561e33ef534, 0x62a578d5adec5c43, 0xd25d84d0acf0efca, 0xeb1883b50f7ff2f2, 0x4729cbd65f00db36, 0x6dc76a4111e15c58, 0xf07c18b6085da1fa, 0x000000000000a7 } }, { { 0xddeda5365867c855, 0xfd28b99f1cc2fd3c, 0x19e6c0d572e914b6, 0xc3de8d9d61b3d207, 0x82ad7b66f67a6d6e, 0x731abbe0cea82f8d, 0x329b600c8e412855, 0x539c82a09edb5d5d, 0x0000000000007b }, { 0x34bed74d1743fa22, 0xed073c7f3c4fb159, 0x7936a316e12bde20, 0x9294454ca188f176, 0x4d55268dd5c95e93, 0xbdb6a493e4e83f0a, 0x23a76dd5abf4eb70, 0xa82659b3ff7f1893, 0x0000000000014e }, { 0x26744b07a1282d1b, 0x75a0f5a3adda7b30, 0xca2dfefdb4af1edc, 0xbe854514d4303b32, 0x811bcb32ef737f27, 0x304718db55787149, 0x721ac3ef36cda23a, 0xe4986cb11505b655, 0x000000000000a6 } }, { { 0x648d3433707e2a6c, 0x294e578f98c1e0e5, 0x9ad0a237517e415d, 0x556c18f5e78b535a, 0xa0d12d235f91d081, 0x266b0d8b3b9bcc3, 0x4c60a28247118316, 0xe635b2d5b051e375, 0x00000000000198 }, { 0xbc56e46cb3ac7a7f, 0x4c2d9d5a767b2e1d, 0x8cc1574ef00f53d8, 0x63d90c808eb3965c, 0x57b6dab622d191b1, 0x3e51f392cfe67593, 0x858e72888152c93e, 0x28a22d769afaf23e, 0x000000000001b4 }, { 0xe1bb9861a7029cf3, 0x4307a383d22859bc, 0x1771f7f6f82db0d5, 0x5b1a51ddb6bdda37, 0x431477cd08239805, 0x38f40daf3b45384b, 0xbc858a80e5e3f4c9, 0xb6c0c5ad92305b0d, 0x0000000000012d } }, { { 0x3bd93540576c14d3, 0x7460fa51c00ce0da, 0x709a5463a7e0ba75, 0x4e2a0cea6984e7eb, 0x3b8a5fe70ec40990, 0x82013159da1b1b99, 0x742715ea06951dfd, 0xe113e1346b48774, 0x00000000000018 }, { 0xde212e6e783e6f66, 0xf3889fa6c383557f, 0x74babd883daea8c0, 0xe17bddc4f5f8c361, 0x27f918583297e810, 0x19ab51d0afeb41d0, 0xd2e1c8ac8d9daed6, 0xe7471f64a8ced89d, 0x00000000000148 }, { 0x32a9078e2acc14c5, 0x5c67f886b5d307f4, 0xa29806ce994ec2ff, 0xf05c13080e6d411a, 0xf8ccdf15412ee775, 0x981356768c7ea966, 0x2cdec6e8e2f87900, 0x58dfcb2c9f115c2, 0x000000000001d2 } } }, { { { 0x2d69e0de12a3504, 0xd14b3e3e6c0c8ff3, 0x85151b91d8267139, 0x89b9c1596c8f9a18, 0xbb6324c80cf3efa5, 0xd1398b2212c79abb, 0x8e162eabfade52d8, 0x497811ecca4aa96a, 0x00000000000178 }, { 0x4ff777a91ab2618f, 0x2b7e582c325103f2, 0xb95691454f738019, 0xd9917ee88f8aeed, 0xf448b36e80acae0, 0xf0860680843edcff, 0xc9c1d276a4108b58, 0x7a849cd2faff66f7, 0x00000000000189 }, { 0xd30dffe8ffa436ab, 0x340f965de01dd5b2, 0x738f372b2b7d3362, 0x14ce8104deac6ff5, 0x423e8c26ec6256a7, 0xc0d16b1c11ab36c0, 0x597e4b56c23365a, 0x78155850effee822, 0x00000000000090 } }, { { 0x7b683e90d9f332a1, 0xf974d07948d49279, 0xf9cb733220e1c24b, 0x2ddcd39a8d01609c, 0x8c723589d5da3319, 0x2305fa53f7a62966, 0x3a96d9d65b4170a5, 0x57b53dea30b2ce03, 0x000000000001e6 }, { 0xdbf179793195618f, 0xf25f9bf4a75a4fd6, 0xee09d94782a50365, 0xe824b3aaaf63dbb0, 0x9374a9ec06d17f25, 0xcc476070df027879, 0x42750366cb88cb9b, 0x280a89ade0526959, 0x000000000000cc }, { 0x66e1627f07c72e06, 0xb5217622cad67006, 0xf93712cd6958ecb1, 0xcf30e2d1be0ce3a2, 0xa0d6b220e8484f9a, 0x2e9228f2c211e85d, 0x71aea4eb12be199f, 0xd44906b9386c098d, 0x00000000000111 } }, { { 0x90057ba1964e90f6, 0x1995407ce7eba315, 0x29635041b5c48961, 0x274799fc804bb8a8, 0x80039553274fe881, 0x5c74dd23fc2b5f9, 0x9b7111eb18ba1433, 0x5ff18e3359f9ff9e, 0x0000000000009c }, { 0x32b72af6c1dccba5, 0x8febd39b4f017bfa, 0xb037b046458644e0, 0xd464ffb6a19cff1c, 0x93c5c8c708d45371, 0x83e46bb0d9041a9c, 0x84a903b15b01a261, 0xb1f72732257de55f, 0x00000000000093 }, { 0x62218065978aeabb, 0xda015bbcde2f621c, 0x5f3b6a5004f1bf9c, 0xb756d09c52331d91, 0xbe214ad4291c70b0, 0x7cb3d3b89cea9851, 0x6a7f3f60292d7f8e, 0x339c79fb98ca7096, 0x000000000000e4 } }, { { 0x1da7b185393c8a14, 0x3ec55db0f4e5794d, 0x2a715d355271f1ae, 0x8de2bffbaa8b5e6e, 0x96464043d11c8308, 0x881328056b5d3a9d, 0x86e665b18d76c287, 0xb8f234aff24baabf, 0x000000000001da }, { 0xd4af3fc3dc8f1698, 0xfa892d9ec84d504, 0xc92e131ba5bfd77f, 0x5efd2173f8d0c5b, 0xf115e1a80b2777e3, 0x4b265b53a8b3a42e, 0x941770cc28812c44, 0xf0ba7497ea7b29d4, 0x000000000001d3 }, { 0x5171bfa1063833c9, 0xf7523bc43ec834ea, 0x5a5504cd958ab84d, 0x71937e34c59014c3, 0x758919fe1a3821cc, 0x56f54e1296926a77, 0x103791becb64155c, 0xe06e47ff4c243d67, 0x00000000000001 } }, { { 0xf0f6dd48b92c0e72, 0xd018b90821e6b08f, 0xb903d955ff7727e3, 0x91f3690d3e29870c, 0x17eca945033f6f73, 0x9d68321fd6c9a697, 0xf1bf4d01e4990116, 0x53f9d7aaa8367fc2, 0x00000000000038 }, { 0xde1ef37fba6cd525, 0x775a0c5f20b2ab55, 0x8fbb600c00dc84be, 0x21c719c1b28c42c5, 0x5dace12b6dcdf447, 0xa1ca024626f93f35, 0xec861db3bf8f8499, 0xfa33f71bc5a6fd42, 0x00000000000196 }, { 0xc6544dbc9dc62b12, 0xb7ff50cad43db62a, 0x347f18b0da31731b, 0xab5f0d721a0cfac6, 0xc72cd30b02f84a5, 0x7866f3c5ea012d8b, 0x494c8630d43d1f29, 0xb280b25bf7a52847, 0x000000000000d3 } }, { { 0x13791b5ce7a547c4, 0x3f0cac4769f36499, 0x7d4b0e4e6c1f830a, 0x63a33351abc228e, 0x4e4c13ae42a11fad, 0xbabda96242ce5b6f, 0x56a8f86031060e32, 0x45afdc00ce3e1a4a, 0x000000000000c8 }, { 0x8fef0ee887c30933, 0x7fc09762537e6a17, 0x18bbaf05edb1b6dd, 0x90715cf394c7d29b, 0xb058076fe174c861, 0xf66645f92559f67a, 0x66aba416310a3bc3, 0x7017fa74310030f0, 0x000000000000f0 }, { 0x54aa7a26e3a0d7b6, 0xae34fa751dbf594e, 0x8757137718e8ba98, 0x53db6930ba307fe0, 0x13d8f51163112948, 0xef24cf088aed80d9, 0xff27f77b9e14681b, 0xeb7a8b757677edf5, 0x0000000000017f } }, { { 0x34844d70ed6e9241, 0x5ffc05640f78b88c, 0xdd55cc9dd4affb1b, 0x17915bad6c10b077, 0xfbef8c749b85a45e, 0xe298bdbb83933744, 0x9b80c5dbcd0adf77, 0xf8b9a32397cc234c, 0x00000000000147 }, { 0x7cd1c783f6ca5cb6, 0x288cabf475110e73, 0xab49b063c5969e0, 0x84f3778fca7a86f3, 0x34d6cfddca5709a, 0xb1ab36d05fe96b0e, 0x79241f132279e140, 0x816b738b8e5caace, 0x000000000001bf }, { 0x3d662f33a52b22f6, 0x9a78e4038215cf81, 0x42b526063e2eaf89, 0xbae3f9be38625db8, 0x51acfd93075841f6, 0x8ed20794f5e70f2f, 0xb7aadd1ba5dfd7e3, 0x2b015e2a53fe1348, 0x000000000000eb } }, { { 0x4c362be058fb0633, 0x25aaf76ac31b65e, 0x1d670cbb692bf117, 0xd97c93846922650b, 0x6690a29ac1f85355, 0xa7c6f255c877360, 0x8e2e70bbd4ed61e9, 0xb024d0c1b458bacd, 0x000000000000db }, { 0xe8be5af82f01756e, 0xe6261e692f5f3876, 0x1aed90c05c62e245, 0x48086aa45c2ef678, 0x5b6f257539650c23, 0x5966721091dbff90, 0x9bd01bcedef11083, 0x83ddb7fef52fe4f, 0x0000000000017e }, { 0x886e5e1f5febe70e, 0xc3bbbee076fbfbcd, 0x3b6082f7cbb480a3, 0xc728fa440e40e07b, 0x9530608822354fcb, 0xf2f2843d36ddd46f, 0xc5252d8ec2d16fc8, 0xf8dd727e9092bef2, 0x000000000000c6 } }, { { 0xc70564a0ceb60254, 0x73015c22c18a33d3, 0xff99ea5d991cfc1d, 0xf87712cb19f0ec24, 0x242468ed2fb26c15, 0xef967b60b35f1043, 0xe4cb3c88552413bb, 0xe4f356a23d228450, 0x00000000000068 }, { 0xc7d53567c3ca5426, 0x7cf06c351dab8ae0, 0xec7c4cca00649de0, 0xc0449e471d057375, 0xd0d2e4f6cf8d09f3, 0x51735597ea566a2a, 0xd252f550a291e6b1, 0x9f1fb8f595cf3601, 0x000000000000d8 }, { 0xad11c32f9cb02f59, 0x56f4d7ce48e255c2, 0x230bb33f26ad6c7c, 0x3d8c3627c9dac0ba, 0x7d9c6f7042494754, 0x2a854bc1c9383d07, 0xaabe090881c0800c, 0xcd0519e80d236474, 0x000000000000d7 } }, { { 0xa2eac8f90279999f, 0x4c1ec1c5a1e532d2, 0xa3d7e4e1df1560ae, 0x446d72a8a1b451da, 0xb230a128b1bddfef, 0xf5bb4d4b086faced, 0xbcade27c6144b333, 0x694148f4fcc86dbc, 0x000000000000c1 }, { 0x12d02ae704a9433b, 0xb41e7b82b649906d, 0xe8212557a2351b79, 0x25ee50eeab00293d, 0x820e800af03e0acc, 0x9a09557a95fceb46, 0x465887f9a1fd68e6, 0x4934e69f36aa332e, 0x000000000001f2 }, { 0xb675165a703df30c, 0xe0c30812609d50c5, 0xb709a199d34018d6, 0x496668587d8bc968, 0x2a338dd371c84fa0, 0xd46372a0ec7a49f5, 0x2c172bff4a2480cd, 0x446050d263889a06, 0x00000000000199 } }, { { 0xcbdeab5263536bd, 0xacb07d5ca525cd01, 0x957e8c8f0724e1c5, 0x33a6f6b87236f3e4, 0x9cd29279b80fab11, 0xe23062ea63d50367, 0x6e832b6a129e12b9, 0x314abd90ddd8b515, 0x0000000000008d }, { 0xf77b4b5573b928eb, 0xf9c88cbcd017e09d, 0x3ae59d52617c157a, 0xe852392d2d5b3877, 0xec24816c9a7706ed, 0x369817cd991797a0, 0x6a0ebb8d2eb5e768, 0x61f729475cf3bac8, 0x00000000000174 }, { 0x3d2eabdf2d10fe3b, 0x763c6007f3f47cc6, 0x88209819189cfdfe, 0x1b102a2f473c8fd1, 0x5cb719f565037ce2, 0x5d3975dea5637269, 0x461acee1ab85099c, 0xdff4c258735dd26d, 0x00000000000096 } }, { { 0x1ae40ebcac9a7068, 0x5a566b0d63436518, 0x99a28c399b25e107, 0xf9a798fe215efb95, 0x733db870be48268e, 0x8c2ec27d7708721f, 0x580d784e5a6a808a, 0x748646fd4d937f92, 0x0000000000017c }, { 0x2ffdf700aae49650, 0x594293e332101952, 0xab8a782925cdda58, 0x4948b94ead141365, 0x8125d01d62c845af, 0x4b93697464680ff5, 0x2db5ad46bbc3a6f8, 0x442cdd6a51374291, 0x000000000000d0 }, { 0x587725f9a507ea51, 0x5b7d9b0c3537fd62, 0x709e6a354ccb49dd, 0xc40bfe260a982729, 0x4e9f3eb22cb48824, 0xa1ced35875e2cbe6, 0x40413c23217e801, 0x93f1edec90c18942, 0x00000000000134 } }, { { 0x37591e3c4d59d7e7, 0x757724912fcc3374, 0x4d55aaf31aa95068, 0x86dbf01937498ba9, 0x50fbd5d2ed3b5e7b, 0x65d28a7fe35f97c3, 0x44e394a1849f4075, 0x59e3568331a1be9, 0x000000000001d7 }, { 0x8dd39a443c3189a3, 0x1d40ae87ee434ff1, 0x52807c20456375be, 0xcaa677b4e97e47e2, 0x61577cb28b16e413, 0x3383f8779dedf43c, 0xf784fdd11da9c5f8, 0xb990b593deb65b72, 0x0000000000005c }, { 0x7c26da3c0b88d68e, 0x9443fac0fe3ad6fa, 0x9cbe31be65f9291f, 0x568566307612dd22, 0xf861c0cecbd8e494, 0xafb8cc6b931280e8, 0xbdba888df73b5947, 0xfb6751c71374c680, 0x00000000000004 } }, { { 0xe87736c0517c853f, 0xf33b61da5f12e8f2, 0x93692525284292ce, 0xf7a6e2792f0be6d6, 0xda48f3d375ac6446, 0xbc3b62042be23467, 0xc16355f8314ad278, 0xc0bdd22c451df610, 0x00000000000042 }, { 0xbfedc62bd65b0b52, 0xfd3cee281130bfbc, 0xdbc0eeb6f54983d8, 0xeda2a910cc3b7d49, 0x6530f55e838fde3a, 0x510f566e969bd442, 0xa10f141fdbac550f, 0x2503f98269d3b084, 0x00000000000106 }, { 0xa09ba6cfd29508d, 0x3f980cbbdbe7e20c, 0x42a480daf5b2ea4d, 0xddb2c204cbf684a, 0xdc2728dbfbd4636b, 0x2ed4cb53be1f2da7, 0x5c688e9fbf277b17, 0x9a77775c4638856f, 0x00000000000182 } }, { { 0xcc3b7cca9297025b, 0x60b62fa65c34d7e0, 0xce898e2ce26d69c6, 0x1d9687a77c8ff6f7, 0xdf52e6fa92f7b4d6, 0xb20b1b2c08dfd624, 0xcd6aef059179b957, 0xf9f54cc8d2592cda, 0x000000000001fe }, { 0x5e2c9471c5230fa1, 0x52861d98f22e4696, 0xda79b4415fec7c29, 0x7093cf316da123b7, 0x510688727dfef3f, 0xc1a3073b04f920eb, 0x59c860288f1f8ee4, 0x8d7506e1bd84e01b, 0x000000000000bb }, { 0xf8f0004ed905c05e, 0xff80b3e1d6a4151a, 0x3fe2092d59179c2a, 0x9f5932478ae64154, 0xd4a13a1ce99574ba, 0x6cdb5fdda3a1f989, 0xf6c361a490e97e32, 0x5deb67b5178c8467, 0x00000000000176 } } }, { { { 0x8722e08c75248c9d, 0xd389b70e984b95b, 0xf2cbdbefdb34ce03, 0x2c06a975b58eb996, 0x833d026b02ee8742, 0xcac951765a14e20f, 0x7c98008bf44c048a, 0x2ac310b346a99fcc, 0x00000000000027 }, { 0x9d9dbde0f772c389, 0xfeab6c934d546ea1, 0x70e9e46f5cc36ac2, 0x954ea46fe1d4744f, 0xfb346335bf64cfe5, 0x6f7ee83076badbcf, 0x74567e6129a5b852, 0x26645a5e14d983e5, 0x0000000000016a }, { 0x5eccb27900ed211a, 0x27bd376f81ab9016, 0xce475537ec848974, 0x1e7660a0ba8b5e3, 0x2865c5ca163a9af1, 0x7be8ebceb0a9832d, 0xe2de7f2dc93c486, 0x19c28c9e216b2ade, 0x00000000000181 } }, { { 0xc7a70fce1bb1f056, 0x942ad09aabb1eb7c, 0xed49139dd9ace00d, 0x546be7e89b222b3f, 0x3b4dc82c4e1b2223, 0x1f722540cfc017ba, 0xd998afaf52b3bc9, 0x9ddf363461d7b7ca, 0x00000000000125 }, { 0xfc17a44aa24cd957, 0xd75ed971e11456f7, 0x2f3c74b3947ca41d, 0x1ac2d0242cd7358c, 0x21adf793d7155a60, 0xc6cc691035aaee28, 0x7f82abfd9b24e780, 0x5420e472f7564404, 0x00000000000046 }, { 0xb989e8f192b65a25, 0xbf7956542227d017, 0xbabf2ac4789bc47, 0xcc83d7e8c01b3741, 0xa4a21c69cee957bc, 0xc6b187bb75168958, 0x5554f92a365a5b2c, 0x1beca29d3cbc735c, 0x00000000000109 } }, { { 0x18528be7adee896a, 0x8cd4285bb5782d82, 0xed5dabbcb2cb097, 0x31d3bcc01cf81ec2, 0x45d22a874b377b30, 0x400d54da29eaf644, 0xdc92fe5b2f2ed003, 0x69c30fc7c192d111, 0x000000000000de }, { 0xdf455dfc8c01b649, 0xfddc6c4d41cca870, 0x7634fe4f9e231a77, 0x9983aa4aa55f073f, 0x33950972d861bfac, 0xeba1c6fa3d63d51d, 0x5395718b33695489, 0x6009fd8a661eec39, 0x0000000000000a }, { 0x1d9c8d2a505cbc31, 0x8afc2a3858396878, 0xc18051329dbe0ab0, 0x29382c2d0dbfcc41, 0xbf2238d6892afd0e, 0x9edac8ab0075f06c, 0x18d6cc9af00874d6, 0x466175af0dfce22d, 0x000000000000f1 } }, { { 0x422ff6749fa1cb1, 0x49d32d94e0fbafdc, 0xe8aef468d2e8fdc1, 0xb2a37e1bd168343a, 0x49fc6e2025c56364, 0xf25995e320e7c3f, 0x5d7d965c8131bfce, 0xe285169e242005ce, 0x00000000000122 }, { 0x25b8c4df1f301a0e, 0xed3e03581d0790b8, 0x9ed63f779930f8d6, 0x12a7ea8358332251, 0xc16d9bbfef208ee4, 0xca863ce093e555dc, 0x83034be7f6d250ec, 0xb21566381a970584, 0x000000000001cd }, { 0x79a14b8dcae571f2, 0x9a938b478537145a, 0x6604f2a75f623fd5, 0x8393388180f155fc, 0x21c6d59bcefb22db, 0xcf25bf14ee6cfe02, 0x80ea2dfb1da086f3, 0xc74609e75f6e9c07, 0x0000000000004c } }, { { 0x198deff891e295e, 0xc930cc8891ae6400, 0x42499d7e6cddb9a9, 0x561fe159a93f2d9a, 0x413c840753fc6c19, 0x81df7c53b546db60, 0xf15a514abd154947, 0x770d656c42bd5b2e, 0x00000000000075 }, { 0xca17154e332ffebb, 0xa9e94a717e5d746e, 0xc9b09337ab3f7b6f, 0x2b469663d8bb55cf, 0x9136aa6f5b7f58b3, 0x4992a6df73e13a5b, 0x9512c0f5ff0f57fc, 0xb27c047b31be3e53, 0x000000000001f6 }, { 0x687f2ce15ced8e71, 0xd3e2d3526c0aed2c, 0x70f72dfc765204b3, 0xaee8621ab7d1ae76, 0xcbe537821b6890b4, 0xdcac385be0b4284, 0x81634df6a29d2168, 0x5c49832bf3f1f2fe, 0x000000000001a0 } }, { { 0xf679c0d79f1ec57c, 0xd99b048b2bb1d97, 0x3effe692ee16eb6, 0x65a92acc4c9e40d6, 0xa8ba55ac18b2be09, 0xad9b0c3397edd28c, 0x942bca186556d5f4, 0xda47a2be81f19b35, 0x000000000001dd }, { 0xa7e48941f03f8527, 0x8a6ca5daf8a81952, 0xca73ce55feb80044, 0x32f96b850413fd08, 0x7c484213239f0b1, 0xa6f590a6b0d7bc76, 0xbdcd3188f6e8c5bb, 0xf5e2eb0fcf0458c6, 0x0000000000011c }, { 0x418ccc96f6322aa8, 0xce972749835287b1, 0x7116f0d9b56d20e, 0x9a73441535bdcd4c, 0xceba7289aa93cdde, 0x7a0d2e2c1a31ab33, 0xc25efbd292805803, 0x245651b6b8823d76, 0x0000000000013f } }, { { 0x6816156d8414cb6, 0xd61c64eb4ba19b7c, 0x8a487354dfdb07aa, 0xf52332f321db6ff8, 0x8bdafb11ab95c560, 0x12b6d267b4693749, 0xb31101f4f531cf70, 0x806b33f2b963527d, 0x000000000000e9 }, { 0x78c632634aa08f76, 0xf1a846cd800bdf2, 0xe9fe2f6e24d7d234, 0x82f8899456874b11, 0x55962fcbf869a96f, 0x1e85c3afa1f272a3, 0xfd4a4bc6d933b69c, 0x1d0e619f260b63f8, 0x00000000000169 }, { 0xe7d074c706783f76, 0x2e93b677f4879c0a, 0xafdafc09a1b8f75a, 0x9a8c41ef85d93524, 0x61b44bc317355866, 0xb4c298d5c7d073c7, 0x63c75b4955662a76, 0xbae90d28259713d8, 0x00000000000145 } }, { { 0xa9595268ecce0531, 0xf4b594f8a1230d3, 0xc22788d9792ceb88, 0x797a0205867eca00, 0x269ff97c1f197aa, 0xede57f8894502d82, 0xf84a323904363371, 0xcaac1d195d6e966e, 0x000000000000c0 }, { 0x8efb86dc1ac1cc75, 0x75ef28b1d378bd5c, 0x5844e1422d3a50fb, 0xee7aa2fa349d9911, 0xd03669eb2415dabc, 0xf769b5416636ee76, 0xe70d6422f1a261d6, 0xfe3ba799f8bab951, 0x0000000000009e }, { 0x4590df76d7a0c79d, 0xf722b55b4fdd9c4e, 0x3a080da962e7720e, 0x2e94dcbad69561d9, 0x9b20d650702f245a, 0x63387a65a26d402e, 0xdd3c2426aafbf87, 0x604ce75fc354b5e7, 0x000000000001db } }, { { 0xf2010c358b3bbdb9, 0xe086681a274bf9da, 0xe0cc482a49ed170f, 0x95efd34d559a17b2, 0xbddb488454904005, 0xed86e6ee216bb642, 0xe4e450692d37db76, 0x8cac9480b08b63c7, 0x00000000000010 }, { 0x8e45f3f439a6b75a, 0x80a04c69610baa41, 0x7f2b5cf64ae082e3, 0x33a13fe448bed0b3, 0x7afcdfd030cdd0ea, 0x3e39e8051ed9a658, 0xb65e38c9838924fe, 0x327ea882708322f1, 0x00000000000119 }, { 0x5fe126acbfb4c789, 0x77293560de28637a, 0x24f49766e2bf8817, 0x3d194c99f8c443bf, 0x1850ee785b70e178, 0x81872cb5f71cbf19, 0x57c175f4c1a785ba, 0x5c9797e7860dd37d, 0x00000000000058 } }, { { 0xb3efa48eebc664fe, 0x30ab7784697e6809, 0x90c4d6f9491e3fde, 0xa6dd96fff3b76508, 0xe7adb01f7530d966, 0x53e2f478a14f646, 0xb05016ff7d2ccb4a, 0xe71257612179ed36, 0x00000000000015 }, { 0x3ebc2402df3a5bcf, 0xe1168e40325028db, 0x60504d5fde0dab35, 0xa929ce281deacf2e, 0x8c755064f5ca847f, 0xbebb8d5ec0672ee2, 0x1d7e0ef73b470036, 0x19d808f7d7d5ece, 0x000000000001c7 }, { 0x87697a5ab39c92b1, 0x141779f3bcfde9be, 0x4f3bcedfcadcbf29, 0xc4e5b185c3281e4a, 0x45dd14127a32924c, 0xe29073fb19c755b6, 0x6827b36e5951c934, 0x5676fe245fc04f28, 0x0000000000003c } }, { { 0x1e02740b7799618e, 0x9ce7504200ed124e, 0x4a6cd4d05da54af5, 0x9102e7cf2cb322f9, 0x1c425374c3d10b53, 0xdb7eb7f1d97d322f, 0xae39d10bd68cbe01, 0xab5e29ce18acf93a, 0x000000000001e0 }, { 0xd79a6220865d4e5f, 0xb7f774fc29820852, 0xf7f28b724d1299fa, 0xf80adc6b69a89063, 0xc6b4cdf1cd134a45, 0x8aa823a5acb4e63d, 0x5e4f02a46fb643dd, 0x15ed95e41e058c38, 0x000000000001a4 }, { 0xb1b2ed421b6a13b5, 0xd2c8b8f64f5ff210, 0xe8b8fab9c34e5a73, 0x4d04d70252c4d997, 0x4330a27eef77c99, 0x7e0d3b5174ecbd8f, 0xd5282f43f037acec, 0x8a8f934102707325, 0x0000000000017a } }, { { 0x5ddc8d6a967ae47b, 0xf2491b44614b991f, 0x86d40a5eae709a32, 0x7c513ea41812985, 0x1f659a15658dab19, 0xb458688a9d38bc4, 0xecc43ed657d70eef, 0x744dba2eec85ad14, 0x000000000000e4 }, { 0xe878a56b808668e, 0xee11f9dc8e69d91, 0x3df7a198080d3454, 0x76db65b1b61ab502, 0x16aaec3950d1953f, 0x1c6dc215efe5c9bd, 0xfc9b8092feba3daf, 0x9fa90c782417624a, 0x00000000000087 }, { 0x24a7590992643e66, 0x2e875479c0905d1b, 0x3d5ded7fac69897a, 0x992781e1a607ba34, 0xee77dc8d89a703ba, 0xb5f0589885e61916, 0xab55eb13f407debe, 0x19870261a10c679e, 0x00000000000156 } }, { { 0x18e81edac1431bcb, 0x937e6450e3ccb69d, 0x22b56e018eeb7b19, 0x33abf6ede02b7a1b, 0x768f713ee1aae4f6, 0x77954142b09f02a5, 0x1271243de2617680, 0x21255caf2661ddd9, 0x00000000000002 }, { 0xa69aa28c7e0f2bd3, 0x86618ad0f0ed9199, 0x1ef531594e0d97d8, 0xfed3025099ea4f84, 0xb661dba8bc4827d4, 0xc7bacf920429f2c8, 0xbc2557b73f897b8b, 0x1ea836814b031178, 0x000000000000ae }, { 0xa5822368adda8f4f, 0xfd16906e4c8a0fc9, 0x70a664201bc363ef, 0x1162c7086ef200da, 0x1998bcdcabdcd70d, 0x43b7a3a823b834d6, 0x95c9b44ffd94d1f, 0x602944f7246e39b0, 0x000000000000fc } }, { { 0x683322125bd144d3, 0x3a37e9eadd80e65e, 0xc8fd64eb77725fde, 0x98b3deb140e405da, 0x40e14ae55ad404f9, 0x8fb0c8221d3e571e, 0x7b080721bd86775, 0x5b5759e56a358c05, 0x00000000000046 }, { 0xc48219e0f32be061, 0xfe4bfdc1c71ced9, 0xe1437300e16ddee4, 0x51f8e9673c7375e1, 0xc2a76964cc55ea7b, 0xbebdc718de2a4eb6, 0xfeeb60f8034105f0, 0xa6f4cafd9679a039, 0x0000000000014f }, { 0xf814aa109baec341, 0x17eea650bcde7013, 0x71cc67c9cf1519a4, 0x44d63b23cb044b3e, 0x7a6785aed22371ae, 0x240a8d3561378d7e, 0x3d555a88d95169ee, 0x61ae3c2f3dae7af2, 0x00000000000110 } }, { { 0x25b93adf2f95e904, 0xcb0970a33fdf41d8, 0x9061fb6d624a9a24, 0x9ea28cc7d89b60f2, 0xf6406abca266f0ee, 0xd4f5c58a37c7d817, 0xb5fe2ad883bae366, 0xcb440490ae5e6253, 0x000000000000f3 }, { 0x13c15e1fec00e0de, 0x8489e2a711e6dfc6, 0xf8d83d5b750aebb0, 0xf76c13628ca84d22, 0xf2ea250118c6193c, 0x10c40392e2c07c7b, 0x124edacce2e161db, 0xb0fa254dcac3f5d3, 0x000000000000c2 }, { 0x14a776125f5d7fda, 0x377c9999045b973a, 0x88cfd9c5a0be2ce0, 0x7bd2f38fbaa09185, 0xb0c400775be07f50, 0x750fd2a63945e758, 0xd73a11a9344f9937, 0x416e2e9c7aaa3452, 0x0000000000006b } } }, { { { 0xea0577017597a212, 0xeb6bd00a921e5b75, 0xe50c570522529f82, 0xe8e6104e4f91e060, 0x18e7a80a105d8d06, 0x1685b87a1cf6d406, 0xb506a87feb8b29ea, 0xd6799630666501d3, 0x0000000000006f }, { 0xb973d2c8c96d60e4, 0x76aadcbcb72f3306, 0x5a9cd9923276ae24, 0xef8771bbf81d4cdc, 0x438dd481cb9fd4f4, 0x2048d9a04f8f2f77, 0x69372383717e0220, 0xc0f65765651cdee0, 0x0000000000010c }, { 0x5423bfe298ba20d0, 0x43802b0a82c4b2c, 0xdecf4b3763ddbca7, 0x1f51dd7b2b024767, 0x2b784ff1b571b42d, 0x7ad77259534b099d, 0xf18638260771dd96, 0x70edc7584161de74, 0x0000000000018f } }, { { 0x1f5ba22e1d58532a, 0x71826aa95e76e874, 0xf84f860db4eb0bc3, 0xdf0815998a27ff72, 0x7ae36bc69642ff8b, 0x612bd1f167b01347, 0xe6bb3e5c37e9baa, 0x85f5c0be3552aa6c, 0x000000000000dd }, { 0xdb34535972cb07a8, 0x38435d2c546d6685, 0x9365816c242ab24, 0xfcacd45de69c7785, 0x954f99a98beb68a8, 0xc7146975277adfcb, 0x6b8f3337ef12ec84, 0x1622b191fcfcf22d, 0x000000000001d3 }, { 0x2a82c1faab5c2357, 0x3eee9293de0a6617, 0xff9fed5e4994cfdf, 0x414971c9c9a9b3c5, 0x46a1b807d7e28b16, 0x5dc62ad99201b0c4, 0x60b25aa004220660, 0xa3907904b6911077, 0x00000000000035 } }, { { 0x7cfae3f6bfb08179, 0x60b88d61df1fa4da, 0x6e8a7b9812eaf631, 0x815ba5ef8245c9f4, 0x43769edf513da594, 0xdde17fca0bb242b8, 0x4402937a35b96dae, 0x5fb39c2aebe2c415, 0x000000000001a1 }, { 0x5bc8effd4751505a, 0xe7ec1689084d6f59, 0x56bba4422212d2b4, 0xef1024a12694cdbe, 0x71057cc2e008628a, 0x5517058dd2bf4618, 0x310df7015648ff2, 0xe0a8810de08c4b23, 0x00000000000061 }, { 0x14ecee750423a1fb, 0xc811e17890318049, 0x560d53b18c066992, 0x6512adca7a5af984, 0xf4e6e153e8cd47ab, 0x8e49ae69926740db, 0x4957bc8b1e9f1afe, 0xd3f8eae4f9d6c83c, 0x0000000000011b } }, { { 0xa243ccd2141170cd, 0x48e929b7967f33bc, 0x9ba7a0ca76030aaa, 0x1abca2a00e97a1c, 0x9f41c238c6ec02f0, 0x531c118896af335e, 0x6fe0b0882bc105d2, 0x6992e27cce4bc7cc, 0x000000000000ac }, { 0x15980de33865b631, 0x29f6d42a22e74c6, 0xe0713717cdf41db, 0xe54f402786d04813, 0x22aa566aeb670057, 0xc1065ab239725b5d, 0xf9f23c52d149a2c0, 0xc9fc8d7583792f5a, 0x000000000000f7 }, { 0x147ee76998b70847, 0x51b675735c3d392d, 0xe61f7fc641cbbf21, 0x6b725f220928fa69, 0x7d4b60610bfda973, 0xee129cde95833cf7, 0xc482fecddbbb4d81, 0xd6ee0ea10da8e382, 0x00000000000104 } }, { { 0xbd409c5f8a1ca37a, 0x15c073c26f7c2f68, 0xc19dceb79fde1aee, 0x64960dde7ad51408, 0x57e2220572d3ef1, 0x5930939db319e35f, 0x609f24ab8858c4be, 0xb47d5e3830b1685d, 0x000000000000b4 }, { 0xd952cee37e9b70da, 0x62a0c7ceb453f68d, 0x6dcf09056e2ae445, 0xfba6e083f2a7eb8f, 0xd14cf54b13ed2797, 0x74720a88efa55674, 0x2428cb1a0d89236c, 0xcdac471551ac9d1e, 0x00000000000075 }, { 0x87651a8f08d6615d, 0x64e877ff16e0b7a9, 0xa168e9c2e4882431, 0xc1e1e101444ebbcf, 0x2f98d432c69fe4d7, 0xf332f028d61b009d, 0x8c4610e0e4cc07ef, 0xe82146ac921b3a8d, 0x000000000001ae } }, { { 0xc1d7cda3265d642, 0xd8b039b5edc6e235, 0x731145e29ab7af14, 0x3117efed10ec5606, 0x1fdbd39a0f4da84e, 0x729cd0c908ced9fe, 0x9bf1b19741a9e370, 0x1c92d9ac1e39383f, 0x0000000000011a }, { 0xec89b5e7710d83a, 0x5dae005fccb8e0e3, 0x380cc8c50d3c2ae5, 0x23d08fe2b8948b89, 0x9136edb63fb908d0, 0xaf6133aa412f1fb7, 0x115f29d20090bc2f, 0x3a270565fed7365d, 0x00000000000187 }, { 0x5933b12f74a998c5, 0xbf3c01ad2813ff1c, 0x9b5cf25c9c00eb6d, 0x83166e5657961aed, 0x97610a02fd42cd2b, 0x24af1be17f233c44, 0x2c27dda2347df52f, 0x2cd5111e4f096f88, 0x00000000000187 } }, { { 0x11e7348cbb1be542, 0x6c8dd1b97f1f946f, 0x1e9ae60149133a0d, 0xc400e1a4d4caa40f, 0x876f279d44ea6331, 0x901511d4110595ff, 0x4137f5bccdfbee68, 0x6ac8b13519f3be07, 0x00000000000163 }, { 0x8352695ffad5a0, 0x83e52fe6039e142, 0xe0965400b588c8f3, 0xe161e9f12289f561, 0x78357a80b6eda226, 0xca7dcee27945a3f2, 0x588846ca574ae18d, 0x6bcd265c3c0cdc04, 0x00000000000111 }, { 0x1b9876a89d53dd9a, 0x3959ae72d8f1fcd9, 0xe2ef8471547d3cc0, 0xb9172dd5db93be4e, 0x614c2d1cc931c919, 0xa8d45c61b1eeeb7c, 0x96017c69ab36308, 0x63aac38709cca2d9, 0x000000000000aa } }, { { 0xed439fc7369efe2f, 0x817b186d3126f9bb, 0x2e9be3d242066243, 0x5e9a557bf1cf745f, 0xcf8926292b4ad919, 0x843d91d399a1f277, 0xab02fdc60362c7f7, 0x459ce213de227e4b, 0x000000000000cf }, { 0xf2ad7fb3eb9508ce, 0x72a750a528700ac4, 0x2f1edf1e46c56855, 0x5ff8e3e166df8a03, 0x5b3c1e047a8e0205, 0x3700d829ee635cf2, 0x73ab59c98529eca2, 0xd26e09c7ba1c96a1, 0x00000000000067 }, { 0xb8a18fa19a3e0367, 0x46db48fa7ad5ca39, 0xe04f2b0e0b5468b5, 0xf09b9007fe6dca86, 0xef6eac3623672289, 0xa29159c7caf9546e, 0xb33b68118a2d28f7, 0xafb4e74ca17097df, 0x0000000000010d } }, { { 0xeddf06820ad7bb59, 0xd77afd5752cdc902, 0x9b8467defe50d90f, 0xb01da8ffec1ca65a, 0x486da87fb8378bb7, 0xce17fec77a4ae758, 0xdbe79288d8ca70ee, 0xc8c6ccb44134f2b, 0x00000000000054 }, { 0xa453841fbc53c5b1, 0x52d4ba9ea5f654fb, 0x639f214bd01c2a09, 0x755bc8c6ea868b67, 0xa23a80dd3e3d2086, 0x18a698ca69a180e8, 0xe7ab3291bb9b466b, 0xf40f3a27e2cbd013, 0x000000000001f2 }, { 0xdff7d75bf9ef4c5f, 0xd9dd4dcc1866f51a, 0x5f97856d1c3328c6, 0xae4dc54fb8b8db17, 0x9b7c0d05e569cd5b, 0x8a79133887313a5f, 0x1df8c59c2322f705, 0xf5ae6690a51473c3, 0x0000000000000f } }, { { 0xba092bbf5850abe8, 0xbdaa30ece3be5dc7, 0x11c3e015249d52b2, 0x69b5eeaf8fe5bef4, 0xf20afec2c07a21e7, 0x9b9b7d6c217e48c9, 0x59861283f3aae6d, 0x5a9345d90d5f775, 0x00000000000181 }, { 0xc8dfd54e0fb312d2, 0xbb143c619b7d06f7, 0xf18036839efabd8, 0x74bd32fd5e6f8d84, 0xc95934f58dcbdb36, 0x877212e19d0fe27c, 0xcbaedac8afa89f24, 0x7a1d73cb354ee234, 0x00000000000154 }, { 0x5b23b16c6f7d584a, 0xb65648a70b3fbbb7, 0x145de75fa7639510, 0xc77ae6332df21e72, 0xa0490de7fd330cef, 0x1150552a6f6de53e, 0x63b587a2c97710e7, 0x1286790b229a683c, 0x0000000000005f } }, { { 0x3f9f16e9001b9f41, 0xdc61c52737eb7659, 0x887c64619e6a2681, 0x3e9ef4510678e0cd, 0xcfcd1b3b943564a3, 0x391cae24fe9e0a17, 0x558324fbea2a9b39, 0x2053e007617da402, 0x000000000000e4 }, { 0xd29549db58118adf, 0xebd052a351d26602, 0xab1007169f8e57f, 0x2ffdac7bcf944a40, 0x819b58bba5eb1009, 0xafd546a68fed9a53, 0xb054aec2f307bfdc, 0x29f2c205e78df7e3, 0x00000000000063 }, { 0xd3c1173eccfddbfb, 0x6ebd1f4841c70a4d, 0xea3896b8983aa052, 0x54ea2bbe803172fb, 0xf39f27eb943f8797, 0xdc8847e033a2bf79, 0xaabf7f61a64f88d9, 0x53c7c30e65c5378d, 0x00000000000121 } }, { { 0xcd44d8b3e321bdb6, 0x7f51dea64e4b6c27, 0x758aed49213fe4cd, 0xd114a7c2886d4747, 0xe7d1cabba7c5b218, 0x54931b08f675fb50, 0x9595dcd10aaa36d0, 0x9d34094088c54e25, 0x000000000001c3 }, { 0x1c0299e52e03caec, 0xdd9a7967478fa951, 0xe7172570fd607e80, 0xb3eea0de1667d785, 0x5a42162095e6d977, 0x1fabc4a78a15c967, 0x3437e3c0d1630483, 0x7e70d021f08f6027, 0x00000000000160 }, { 0x60af45fc65bd29da, 0x56fcf094581b839a, 0x2bf57edc4fb75bac, 0x6a3b8a4e916de298, 0xa3e791f24fed6782, 0xcefd21f86bc8bfc3, 0xd6ec4a90a4603a7e, 0xdafc1ee3ca6ad534, 0x000000000000ea } }, { { 0xd36532a2c1175e80, 0x9c6939edb2b8999f, 0xfc237bfe8e7e9567, 0x5ce9afa44aaa9279, 0xdef420019ac69f38, 0xdf997a8b61857b60, 0x23d919a629d54334, 0x231c1fd32447c4c1, 0x00000000000087 }, { 0xfbaf47ec8f2b3cc0, 0x47d13f7257c1e846, 0xb13ddc0c8e9aee6, 0x164de138b86ace99, 0xe5d4b754c3d402ed, 0x35d524fabf2fd30a, 0xf9242f23a5694fc1, 0xe4bce1a81b5f2b56, 0x00000000000010 }, { 0x71551cee2513f6e5, 0x8da9b7ec68566bd0, 0xc29bc49f4aeb6f53, 0xb8dfb3fd91acc259, 0x15996c6d08739b0f, 0x72cfc5254d6871ea, 0x9a933170f04b5498, 0xa268489001f51346, 0x0000000000013f } }, { { 0x2925dc46a81216ea, 0x456fd91eded5b01, 0x5546b95dab9049f8, 0x528d31cbf7ef60c6, 0x75c1dce85c1d759b, 0xef12fc1b2b7cacc4, 0x3f0ffae4aa9a3824, 0xbbec9146c880b681, 0x000000000001a1 }, { 0x50df0fd96c9980d6, 0xe7789bc2a08bc534, 0xed4775722dd9f964, 0x32b39282e0fd825d, 0x61961536bd7af448, 0xc94468bb8086a487, 0x5477cfe9f772dd10, 0xf0cc360f01e6f44e, 0x000000000000db }, { 0xc619edf316d14f82, 0x720b394b5c8bf1d2, 0x2589424f8ada7b51, 0x9f787c9ed45e0279, 0xf2b881e7ef35170a, 0xfbf1a487192582f9, 0xd52225b2a3eb3b92, 0xbea365d4af8cbfd0, 0x0000000000000d } }, { { 0x2c78d7058d4cd7b0, 0x2940a8ae9dd99d7f, 0x8e22eefc8fb20840, 0xff6ebf932580609c, 0xfb8cde8b57d2f0e9, 0xb102454d4fdd06dc, 0xba3186255293b37e, 0xe8cfffaecdcb4fbc, 0x000000000000e2 }, { 0x1b9657ab1f421553, 0x8dbfff8c308a205a, 0x9333fabb14632138, 0xcd2f6e58de540d92, 0xbf0987b15dc00e68, 0x36eec24e6cbfdbd2, 0xe30775cd3f9f9efc, 0x9ef7a335f4d38b35, 0x000000000001b2 }, { 0xcc2708472abb8ff6, 0xdbb7ec2387de1dd, 0xed6560078716df81, 0x746e300286eb617b, 0x925f1f5f456accda, 0x4e4323a4086d41d3, 0x741adcd4698096ca, 0x6b4e6df74d364f37, 0x00000000000120 } } }, { { { 0x48e16015ec603610, 0x12d14ff9a474f924, 0x9b99a1437da27c4c, 0xd24d245c02143dc7, 0x3cf3c8f5e7262de, 0x1819a0f887a915a, 0x9945a3e5be8e4b99, 0x35807f80b98b2e46, 0x00000000000021 }, { 0xc96ed8701fba9339, 0x3b88ac02bb556872, 0xe8d57467c4e900bc, 0xf0042575ce0131b7, 0x9c27f6530c633647, 0xecf746b738d9fa1f, 0x9317ae0bf57d6103, 0x5cbaf43000051bce, 0x00000000000109 }, { 0xa47660b3ae8ed97e, 0x3dfa6cc19b9e0e71, 0x63229102199262a9, 0x89b254e787ecdb63, 0xac46425277d4cf6b, 0xbce8730112961fc, 0x8e41f17fd954346c, 0x3713effbae48c17d, 0x00000000000187 } }, { { 0xe656744fdfca00f6, 0xedc61e22641526f, 0x5dc1a308a5b45079, 0x78de02621aae72d, 0x824d7c67f064a6c0, 0xfc533a28548cf5dd, 0x42316672e8d7e5d0, 0xcc078d091c88a09f, 0x00000000000048 }, { 0xfde4168ad4c98750, 0x15da0eb5fd73c02e, 0x895f10e3e40d65e1, 0x20e9c98c1d80c86c, 0xcddcb719ae044569, 0xe3d6bcda98054335, 0x892f6aa1134031eb, 0x2445ff138842e2e, 0x00000000000012 }, { 0xcd5a41dea085b835, 0x641730ae6737638e, 0x7fe160882a8b6934, 0xbf4722041850de70, 0x9d3bac428aa1bd44, 0xed56a2417fa095f3, 0xf2f6e08ff2dfc325, 0x2abff271955cf91c, 0x0000000000018c } }, { { 0x259114501deb44b3, 0x7be2b3e6e6d2377, 0xcbc86682778ab06b, 0xff6c111843c6c7e3, 0xcf7cab72650430a3, 0xe26158b5cc6391ee, 0xcf2f028d8647cc65, 0x9537e03cc1878750, 0x00000000000147 }, { 0xc0b0350677235532, 0x9e41d88860d29327, 0xbbf5a6175aa5fde7, 0x2da9e492fc58900a, 0xb94e9574f71b3408, 0x6543a19acbb9c80b, 0xae8a7e9250c98e0e, 0x11790b167d3104e1, 0x000000000000d2 }, { 0x499ff5ecb092aa2, 0xb5ddee80d4e0f79f, 0xcdade03097e4bb6a, 0x366c7be6b31c199e, 0x8f4c5f02998c7aa0, 0xd38afbb93f77391b, 0x332ec31a32a461e2, 0x96f45d3860e4d1f1, 0x00000000000170 } }, { { 0xe43e881287d29b2b, 0x5a870809c8259ad5, 0xad81643fe4c9f454, 0x7a754075fcc9120e, 0x9f4332e1b4907413, 0x6fd5f24bc9fae193, 0xe81a31fd5ac9d9dd, 0xfdc2c08df5237ac0, 0x00000000000041 }, { 0xf1227a57c08fc523, 0x1cb573a8c4529536, 0xe59c7a377ba76f12, 0x2f6ae20c423d5de9, 0x1d530c072764d86c, 0x86428887b45a5c56, 0x101960552c570064, 0xca052f94a2ab7882, 0x000000000000d4 }, { 0x82ee1b4f47c0e5b2, 0x7850e3e848563f94, 0xf36e520d054572c8, 0xd9cd4a1df5f518f7, 0x79693668418143ee, 0x2842c946ac5cf6c6, 0x33b620746077c412, 0x7926850face2d34, 0x0000000000013c } }, { { 0x788e23949fe41710, 0x4a51bdd497cb14ab, 0xa30da7364ede00a9, 0x31f0fb6876a1aad2, 0xeeda9d17db843e51, 0xcef73ab2cba71759, 0xa6f453885eb80a59, 0xb9368a9661a0e869, 0x00000000000013 }, { 0x3d05ae73cb3b9a96, 0x4b3c5c2f997ac113, 0xcc2f11fe122b36d3, 0xc323d64cd6d9cf1f, 0x1568c44915bad31c, 0x1a68d0f5cc80f1ce, 0xd9b28adef68d7376, 0x10138bf898c28f03, 0x00000000000183 }, { 0x36e9605b27f0d6e9, 0x99c0b95949109ab5, 0x64abf258786d2511, 0xd117c27a678cf856, 0xc9e2010f67f536e5, 0xee14d12a0d0ac17b, 0x68cf251d04b76191, 0xd068cd963ff1d18c, 0x000000000000ca } }, { { 0xe6412239fb525b3f, 0x2d29788d30f35e92, 0xd3681a84f3c02e9c, 0xa27a86b24f804565, 0x9880d80a5fd9665, 0x929fb3852b795573, 0xbc4dc845f0aca0d7, 0xcc7d40bb21afbb7a, 0x00000000000170 }, { 0x60aec6a72800b07e, 0xc1e01a4b8788b01b, 0xe036421cf4154c02, 0x7c47e107102aeba6, 0xdbcbca61f4c9b663, 0x1e60e04394f5db2d, 0xa2ae36ad8c157da, 0x5371130e11d60257, 0x000000000001a2 }, { 0x4b02b43ef5cdf5fa, 0x5e9216e00dbc6f5f, 0xd1d09e5510921dd1, 0x52410f257c9c1865, 0xc231c7e8c919dbb5, 0xab18cf934aff382b, 0x853c22fefc19c824, 0x8d9f8a8f3086d5f2, 0x000000000000e3 } }, { { 0x5626f3900fabd948, 0x2082431995ffb061, 0x46829affe69df616, 0x28b7c7118bf924dd, 0x84823a2c224c08ec, 0x1505d9453e151fa9, 0xa08c2610afdb5c4e, 0xc9369f5e831c34d8, 0x0000000000017e }, { 0x92fc96771c4aabba, 0xb92a1f25d93ef704, 0xc3ad32443142d68a, 0x10b88fbdffdd46eb, 0x4e333ca854ecd3a5, 0xed8feefd8e9ea887, 0x93552c870892630a, 0x41f2c03e4875d738, 0x000000000001d8 }, { 0x3e589af655a95024, 0x830dfb152e4e039f, 0xf5329f1a1ffdff40, 0x56b6b98c6ee1419c, 0x2f1d68688e030f45, 0x2967f8ac2459fac0, 0x74fee0ca71eb6944, 0x4043299d2276cc71, 0x000000000001e8 } }, { { 0x928333a32600233c, 0x2874ae5f60ba3bac, 0xfbff205f8e2ba109, 0xde71a4fe6f8b7655, 0xb64c7d7b03815829, 0x7c0ef12784219d4e, 0x25f97cb6ad0eb256, 0x19fc1cac953db74d, 0x000000000000ee }, { 0x50d0eb6b1a1d644, 0x503fd4f1c7798629, 0x347e1ed129e859f1, 0x27789e6077873b9c, 0xd41f35cc2dfcfc1f, 0xa8e897e2a0ade3e9, 0xd19f836531e5d0a1, 0xfceae4fbbf38721f, 0x0000000000018c }, { 0x3b029f631b367021, 0x2cc1292347fecddc, 0x2ffafcf3998a7a89, 0x18fdaea856524f1a, 0x4c566933971a21ec, 0xa9200fe5e6b89038, 0x7ce4d5ec744d48d5, 0xe728b68462678dae, 0x00000000000155 } }, { { 0xd5c45b2d962ff522, 0x5e914c68714bf705, 0x86381b1d40997385, 0x74c97b38f933232, 0xf2ed6db113ac1fb0, 0xa3bc3f61a5be6747, 0xdf3a9e6bd7bb92f7, 0x10a40d1f68f3ff0f, 0x000000000001a8 }, { 0xaaef94d0a32f5fd, 0xc71678676c6a8489, 0xebf4c236580cdf51, 0xcff13b3e67063903, 0x23a82a7a004fb69, 0x121c5e16345e8a3f, 0xb684fae1055b6e44, 0x6946ae6e9475504a, 0x00000000000085 }, { 0xf8223fad099f1271, 0xfd3e64a29b5d6aec, 0xf9d83c7ab45fdeec, 0x4d64ebfeef122904, 0x84f6698a58b21478, 0xef263b55a13dcbb1, 0x55e231768ff5342f, 0xadf7c311d2798937, 0x00000000000179 } }, { { 0x457d519167b42a7c, 0x3cecc857a463229, 0xd2f391086b2b22a, 0x9a07fb1aaa82131d, 0xb8f566bf8bc54b25, 0x747e690e060f9689, 0x28fe191793188e4f, 0x5cee350d751e7ca3, 0x0000000000018a }, { 0x506949fe724d9085, 0xcc56ea0587c8b73c, 0x434aa82e4112aeab, 0xf3e5d8e91a6fc43f, 0xd2c8d6a9c9e4b038, 0x5668e575f84c56da, 0xf7934552977de455, 0x73751fac3aa80b6d, 0x0000000000009c }, { 0xad460efaf2130c0, 0xc91d9c33c291a2c1, 0x727a60bc9f95120c, 0x45caadc721b836d4, 0x66b29a7af51ed088, 0x683fab8cbc742152, 0x9fbad74e8b06c745, 0x9adee6c2d129c8fa, 0x000000000000b2 } }, { { 0xdb0a069dcbb4135e, 0xd1faf42c1e3913bd, 0xdb47033e39810015, 0x424d5adb8cf7c079, 0x925924e96ed4f4ec, 0xebffe57a0881cd9e, 0x824135018065300b, 0xc13aff0c35d42cb0, 0x0000000000013e }, { 0x4eba16785301b6eb, 0x8dd1118cfcd99a4c, 0x55bbe69945b73552, 0xbe06e803fd0a60c5, 0x6d0dff8dd4085177, 0x4cce8c54293c1a2b, 0x7eadfaef9dee21a, 0xbab0142862f4cf82, 0x000000000001d9 }, { 0xde1debceeba89c2d, 0x14eab81163fc55c8, 0x34efb6122b05db6a, 0xf02c8df1d9af9bfd, 0x602e5e9ccdbb393a, 0xc46c8d68120dc9f0, 0xb890031ede8c8211, 0x7d20d88b64744bc3, 0x000000000001ed } }, { { 0x87ade2f86482eb0a, 0x80013ec34928c9fa, 0xf8c0602c987f9606, 0x2b9a5f08198d0b55, 0xad438f11c88bb215, 0x5b674c7172809172, 0xac856b055d527617, 0x1703dd5dd4e1d5b0, 0x00000000000163 }, { 0x33e028da1f88c856, 0x1c48ab2a094b4eab, 0xd3c59d4ce65e5da8, 0x2c218f9933219797, 0x91b70e4398862bc3, 0xc913b34e0ac4fb1b, 0x3ebbb5123ac9b088, 0x5c55267999f24c47, 0x0000000000005f }, { 0xfdd05f1426b1b792, 0x6ab692d422a18fab, 0xbb0823f091b55fff, 0xca67b449d4cf7ffa, 0x2788dd371250a7c1, 0x7039326803225881, 0x4827a99cc2c1f17, 0x633c458ecbfe0021, 0x00000000000194 } }, { { 0x4032dd1eef66c2f3, 0x60bc654bb06a0289, 0x1059ea417b77f861, 0xa4fb7133bb75afaf, 0x6c7f113082d85387, 0x42cabf4adb92e659, 0x6d39868eb45f6898, 0x29bdc792183f6214, 0x0000000000009e }, { 0xd9320738a2da33b2, 0x6da31cf288d0a83e, 0x7b09a95889d47564, 0xb55d386a4a986fc8, 0x5f196ea1ff02d928, 0xf042fe15880e2f42, 0x8aec37f2b432b9f7, 0xb0a030a82117eec0, 0x00000000000151 }, { 0x66947a91721720b1, 0xd097acab600461b, 0x8df1bd8f5d155606, 0x4fe1cf1de44d9920, 0xef987f22e2af2b91, 0xecd4a41e138230f6, 0xa65ee49c2eef03c8, 0xabd3d717c99663b, 0x000000000000c2 } }, { { 0xa210ad1d5d85cfb5, 0xa88488c17dbc17ef, 0x27d48b7a32b6d438, 0x6aadb4a9c41f7743, 0x7e8cc38978f05cea, 0xdac4b02e1bf25f59, 0xee5d509837a87223, 0xf283e2675063d31f, 0x0000000000006d }, { 0xf77844bf80ecbcb, 0x9fe2d93939edab65, 0x9a3a7868559740d0, 0xcfd267e260d70f39, 0x8b6e6a3732b29012, 0x3e19d9be3068b140, 0x4c3e17f3b67b6be9, 0x9e40d002c65258e1, 0x000000000000f2 }, { 0xb2c1181e46b50070, 0x6961534b91fdba83, 0xe2f872a457d4e1cb, 0x642e1aa5903f7660, 0x5e0cae940a4d0396, 0x623d115699177f56, 0xb28523858689faab, 0xe54a85dbbf37f8d2, 0x00000000000125 } }, { { 0x8d9075bf22cca545, 0x9350e3d1fd4e2f61, 0xc852d4f853ae4ea8, 0x41a8a6245b528967, 0xa410eb98527369c5, 0x2d059cf0a1f3a24a, 0x1d530b953191dcb4, 0xe8fa2e2b1a3c5ead, 0x000000000000f7 }, { 0xc205ebe33dfe40d1, 0xc25e6c88034fdbf6, 0x948dcc717dfd696d, 0xd15cb2c7c6aa95f5, 0xd4a2f670347a5df2, 0x38afb73c13897d6e, 0xb16c167d2cf29b93, 0x68ae27b1a977a5b9, 0x000000000001b7 }, { 0x8462a21b2b0cf10a, 0xcbe41326f6a2ea43, 0xc0bcef107e4ad9d4, 0x15351bc47672a1a1, 0xe64dab1fbb81fd41, 0x9ace59c03960fac7, 0xe47608ba6557fe87, 0x3513e4f71878e203, 0x000000000001de } } }, { { { 0x652993a1e9b3093f, 0x52f4825d4832ed06, 0xa1ec596ab75dcec1, 0xd25a55e655feb8c4, 0x859624bab81252eb, 0xaef5af22d8a38fa8, 0xf3887ae1a23d2ae0, 0x78ef68809f1f3c94, 0x000000000001bd }, { 0xccfc83005f69dd0f, 0xeabf76c90ac075a, 0x9f94645129f53ded, 0x61c132060edb9293, 0x936c674ad0f03dd0, 0xd6f100b734643cad, 0xc8190b2eb9535e29, 0x94486acb3ba4b870, 0x0000000000008f }, { 0x6c2c0bd57e1012b1, 0x416a36396210ec75, 0x9465ec26af79f6dd, 0x9855423a902d5834, 0x323ddc096cca5c70, 0x7431d095b55c637, 0xfa7d99d26200e077, 0xf7dd4257995d65f0, 0x000000000001da } }, { { 0x9601c762538fe3e, 0xd8b05ce8711b8203, 0x17f891659beffefe, 0xea782d9da24d63b2, 0x14bb50a4b9d6e049, 0xe929a66a6f42a7d5, 0x8c4a4d2a10a3fe51, 0x84d6f279a143a7da, 0x0000000000001e }, { 0x3d005009006578ed, 0xcc8b1f095263efea, 0xe8a6bf23b614c065, 0x141ad608f382d45c, 0xf6560abbafc113d9, 0xe9e060627a8a0a9b, 0xdb7aaec09f2ba087, 0x813068ad46945ff4, 0x00000000000166 }, { 0xe49bab094ae4a1a1, 0x69a7cbf9898fc451, 0x34101ac7d431f4b, 0xba6c0c556c0e8e92, 0x9321f5ad1bd7cb7d, 0x837590da776b2dab, 0xcdb909fe56d5515f, 0x8b26425bf7d1a76b, 0x00000000000180 } }, { { 0xb51fa4ff3948f01a, 0xfc03acfb7a824d82, 0x644dd2ddaf0836aa, 0xe7c496c24e10eff9, 0x3436dd63807863e8, 0xec2c61eb208b1213, 0x68d539554a83f67d, 0xc5c81a5352b0d10b, 0x00000000000145 }, { 0x2d683236fc59ad89, 0x9be85466e6508f9d, 0x4da5e426b8f8f33a, 0x70f242f4d1a2cc89, 0xa636d8c013fe1c98, 0xc7cde1f7f201e1a1, 0xfb4a0e7c69a96175, 0x5e38e8e858288906, 0x00000000000041 }, { 0x5d1156ae964f8601, 0x8f3b4988fcf6000d, 0x57d78ca426d1ddb0, 0x2de637806cc7d47c, 0x63eec623ad4bd599, 0x4b30cce375b328eb, 0xe1abbe8fb06ffdeb, 0x84b872a708a5dcc1, 0x0000000000003b } }, { { 0x341b39674ac4d7bc, 0xa578fdaa91d1cee2, 0xd257e9613575594a, 0xc0430367661f6fad, 0x212d0830fe8394d9, 0x6369335f7d13745e, 0xa1e58a380e0da6c2, 0xf04d510dd6af6322, 0x00000000000100 }, { 0xcc3ef5c1d624e59d, 0x1748650a232d8330, 0x175b79c00d32a1cc, 0xc3b5b44866d03455, 0xf78d70333a59bbc7, 0xb43ca95048816f20, 0x30a9501896459a9a, 0x1f8377888d9de144, 0x0000000000007e }, { 0x5635bb821be668d9, 0x10440a5c4938035a, 0xf35fe5ca72e73afc, 0xed4de3fa423403b3, 0xc4bcc3195da3a8c6, 0x2028cbae917876fc, 0xc9b9c506dfe340c3, 0x2f7e35f76bee3e36, 0x0000000000009d } }, { { 0x37beba69b5a59e3e, 0x23c83b8f52612f6e, 0xb649bb0158667cdf, 0x74d42e8a0ffbfee2, 0x616f889e78d7c015, 0xf989d376099543c0, 0xcb766ce1cb998b5, 0x916b8406573b7149, 0x00000000000192 }, { 0x691f9d93600e9940, 0xfa2ee633446136b8, 0xe1b8312902195062, 0xc4d3fbc5536498e2, 0x79168a05b3ea2b2, 0x542d8d68b14f8cf0, 0x5889a8c306b249bf, 0x44b562c361607315, 0x000000000000f6 }, { 0x2d558234ffbc8531, 0xaa6cf1949d539d3e, 0xcd576d5b99fba6cc, 0x5b4eba0e254c85d6, 0x344e9d61ddec7cfd, 0x98d90c63d7851ecd, 0x7f71ea0cc0f9e2f0, 0x76bcd57963e93ab9, 0x0000000000000b } }, { { 0xf7a6e9db5fb7dfef, 0xdd53cd4afb0624b1, 0x57dc2b3df743267a, 0x990d5b73b7122aea, 0xec26d53093065886, 0x4abd26b875c55edc, 0x356bb0dd23c89998, 0x627e2e12d883143e, 0x000000000000dc }, { 0x2a5474da6da527a8, 0x57639560fdd0c10c, 0xb7c8ea2c94ba69fd, 0xfbd92c1d72005b41, 0x8230fd212af8e809, 0xd8d011682dd78dc5, 0x6682319c4ed02197, 0x746f2039889230a, 0x000000000000fb }, { 0x2bc3955f74e90bfc, 0x1180ad53617ff353, 0x4fd7e150bb003bc6, 0xc1c39fcd06f7f900, 0x8800a40bf35d2e3, 0xbe305815e3bcb1a9, 0x8844912ea7f3d75b, 0x3dc459aefaea8ed8, 0x000000000000fd } }, { { 0x7cc7800ce3aebd13, 0xaed7d967e3736541, 0xfa6617c262d3cf83, 0x90a5d9a38d5a2f16, 0xa5fb373ed23483d6, 0xd2e081cb2cb3192e, 0xc3c21c94356ab532, 0xa4fce257a3be7abd, 0x00000000000053 }, { 0xa6c5ad0dd5b5e518, 0x2dbad12580db6e59, 0x18d8b1d39fdae7c, 0xaa0ea804a4091691, 0xb8792de0ee106f59, 0xecab35dda736a4b5, 0x1f9d17b0a121a7f4, 0x39996e19341cb56, 0x0000000000008c }, { 0x67f5de0d7c713142, 0xde40227558c91c74, 0x22cdb586a1ed1393, 0x6fc3c9f5c2203331, 0xead83c1fa3db6b91, 0x9811551cd6da3ce8, 0xcbce5b5dee5dea88, 0xd9b28971c547734a, 0x000000000001e0 } }, { { 0xaf9bc2661cdf81dd, 0xe21069c0f8a35d90, 0x79740ea241c4eae2, 0x9f90df6cccb4a717, 0x2fc11eb7285b84d1, 0xfa48b2de15dcfdfc, 0xa4c0667c0a09c3ac, 0x315e32351a36dd1, 0x000000000001d2 }, { 0xd744a5ee0a0b0573, 0xe6e0723223a212, 0x88b97ebd902d37ef, 0xd139c1c0740446b4, 0xe1cdcf0a34fa2913, 0x4decd49357c71865, 0x199ae63eb8224c07, 0x76fdb78018714db7, 0x000000000000e7 }, { 0x49858aa4003f345e, 0x5c1bd9d3ab631e86, 0xc63a33c800c0f5b4, 0x76df9f836c24f0e2, 0x3afe6bcca9b47db, 0x6ab5a6a2e902b0f6, 0x3982a2530f4467f, 0x1460d2e4c9708e3, 0x0000000000000e } }, { { 0x2ef8a2e71f92f5b9, 0xfc643f6002d15bfe, 0x306437157fda1a6c, 0x56ca4485c325f5fe, 0x36735b69179d143f, 0xa9769f19dd9e1aaa, 0x740cbc5f0f8340c7, 0x64d1c44664134f65, 0x00000000000182 }, { 0x37bf172992c1c9cd, 0x64572826b300fb52, 0x1812a32ed1ffde9b, 0xd68214cba6eee8b7, 0xd96f7219c02e689f, 0x217a3634a25e6e06, 0xb1f623e92fae1bdc, 0x242d2dea8f0186c7, 0x00000000000154 }, { 0xf86cd2058b52375c, 0xb5c0e7da264fe53b, 0x49ddaf331d1a9dc9, 0x24ecb21b734f76e8, 0xceeeb4b5d7a15da2, 0xab98782cd381d22e, 0x815096b5c9d94907, 0xbea9c2eed2d7e017, 0x000000000001d5 } }, { { 0xca2f126fbdc2e343, 0xcc0429acebe77f2c, 0x549b269dbcdb1e6d, 0x23bba8da7548940, 0x62740a707b473a3, 0x2cfac0b7d5486f80, 0x11fa3101c4148ceb, 0x7b3c3089598fbbaa, 0x0000000000015b }, { 0xb00c501dcf7404cc, 0x66279d600511e655, 0x1fd663647e63de2a, 0x280286215fbb6749, 0xb90703655b8e747f, 0x1fbbb6c5c2148650, 0xc9be677751e4071f, 0xe951c73414cc2820, 0x00000000000143 }, { 0x900e6674faa1d3d8, 0x16cec11276e8514b, 0x72987c4b9216f215, 0xe04d7cdbc60bca6f, 0x37edee19327513a3, 0x82d6bcb74fa68989, 0xc34f03ab4886322c, 0xc8c9e8e9311b1a68, 0x0000000000017d } }, { { 0xb8d7504d0f12b04b, 0xe13698f4edd1a87a, 0xc033369bb3bb9fbf, 0x6a8b40ae649157ed, 0xbe5accecdaffb0b0, 0x75aa6012f45f6fb6, 0xb2bd26ae8f9f681a, 0x7ce02f4784754986, 0x000000000001c9 }, { 0xbcdd6ac5f67b9e33, 0x9efda86b4e714afa, 0x747eb2650493bcf, 0x66f3d655b59754e6, 0x629690e89376b0be, 0xea4b034402631cf4, 0x30ab51f9faa37e66, 0x947a4d0d6759e7ab, 0x000000000001c4 }, { 0xba41d2eb84055dc, 0xdd60f42843e7f710, 0x5abbb819ea0ca7c2, 0x57e90c686703df4, 0xcebf2834310cd7ae, 0x4725bb2b3f06299c, 0x48aa0a1aa32bc864, 0xae14967093e5fa40, 0x0000000000000e } }, { { 0x19fa717bdd5daf9f, 0x1c5cf8ab3e9f8692, 0x3fc6f9d90f562b2f, 0x5f23234068904ef0, 0x8a921ea5f71d23f8, 0x48ffdc730a0056c7, 0xe4fca49714a67171, 0x93f54f426aa0e6dd, 0x0000000000008f }, { 0x51760c14dd9927f0, 0x6de14189db2b0924, 0x2a2cda2fb61e62e6, 0x950196fae8aeb8a1, 0xe72f68e53ffc806c, 0xafd8fe05f2ce6991, 0x6544c9db4f4b4f4f, 0xd83cde38e7c23022, 0x0000000000013b }, { 0x8c4eb85241ec6f97, 0xacaba8acf3661716, 0x2d2d4b823707691d, 0xf44ba00e82031613, 0x4baa5924a9732e8a, 0xf0c2dd5266e161f, 0x96f947fb86051ec5, 0xa77cfb66ffe81813, 0x0000000000012d } }, { { 0xb92b69d804ae1f08, 0x9d07d16086fa9c52, 0xfed97b4463d1710d, 0xdfbd86b660104bdc, 0xc6b3d64854a4df09, 0xf6b629369b164c6d, 0xa61c53912417cb0d, 0x9d07c361fe8cfd01, 0x000000000000c6 }, { 0xebea8941edf450c6, 0xa6fc27560e6b4878, 0xc10dd66dfdc92b22, 0xa0f45f37ed2f36c5, 0x487fd84a5d51369a, 0xe0fbb1421dad0e98, 0x11751f9a6ce44790, 0xc5c80bbf1985e081, 0x0000000000009c }, { 0x3b3b9286fa98a745, 0xb496bea671a6a8ec, 0xd37e0959ae7eb343, 0x29c74c538b3dcd86, 0x56bc13bff9505638, 0x18a01407cec7400a, 0x873ea051b562085e, 0x71869ff16f748124, 0x000000000001a6 } }, { { 0x863e98494dd8ad43, 0xa06aa10d5deda07d, 0x936e8c9537d2c7c6, 0x4f35a79e684566b7, 0xdbf4664d04224466, 0x68fa5bf92f41ecfd, 0xf2a5bd4c0e827d1, 0x49b90caeef48fb73, 0x000000000001c5 }, { 0x16714f33dd434c10, 0x20fee5a3f8072e01, 0xb5740e523e52e534, 0x72075c5420f25cc6, 0x7c170fa9b2d67b56, 0xbbf707be21701c8a, 0x10c69535f35e205a, 0xb7f20fcbeae14900, 0x00000000000072 }, { 0x7fc519d7497daff5, 0x654002aa471d4b9f, 0xb6ec539673c905bb, 0xbed10e07e9284e90, 0x8a241eea99585871, 0x34a51d9644b7d13d, 0x17548d35398ea0e6, 0x868fd0e878cbb0eb, 0x00000000000151 } }, { { 0x74729fd529f543d3, 0x52fa2491714a0849, 0xd4574fc00cfd3f0a, 0x9cc88f8b4f53c251, 0xf0d51bd8ad2056ec, 0x96be48bd8d9c7889, 0x18bf650e3de1bba4, 0x19caf60ae74dc732, 0x000000000001d8 }, { 0x3cbd82d425d851ab, 0x8efffb5eea68f17c, 0x4a4ac53e6010cd02, 0x91e2b85a4a61dafb, 0x952bee248d837009, 0xddf75fd77381c2e6, 0xfbef7a9028119f72, 0xa6c1bebb52042726, 0x000000000001aa }, { 0x43d28b5ca69b4a30, 0xcdd425eef4865b22, 0x684f0c2d6c61f015, 0x637a8b6c5e223476, 0x555cda8b7774a77, 0xe196290ea7985895, 0xb2a0a057f8ad9218, 0x4e0f0de95cd3b285, 0x000000000001a5 } } }, { { { 0xb741f301927f744b, 0x93e400f231d534d3, 0xf5a0ab14f95f8389, 0x69c64285bef2b086, 0xe88eec955660a089, 0xa1e7c6cf6ac11826, 0x74460d75a994d383, 0xd150155becbcd344, 0x00000000000050 }, { 0xcc063517341d9e3f, 0xfe954b578efa6e8f, 0xeabc06b0e78d1512, 0xa757ee9939ff1f1e, 0xae8c76637fa69cd2, 0xbd252286ad0231d8, 0x8dbdb57c19ad1e59, 0x47a1718afb09d729, 0x000000000001c9 }, { 0x140a8d4d1fc96270, 0x6d3166eec02b0cbb, 0x686404251fbe411e, 0x7af93f1968f54a1a, 0x66c06aac0cdd4d1d, 0x1156afc2f4e21189, 0x217b6c862ec182d5, 0xd9de8692821edbfc, 0x000000000000a8 } }, { { 0xa06f58a394ce944a, 0xa600ee64330aea1d, 0x1fbff6b290103fcf, 0xfcff7c91bff2b71, 0xe2a63c35f185262c, 0x6a477b5f92907819, 0x683a63bd9f40e44b, 0xb4633197b00df1c1, 0x00000000000145 }, { 0x4f611b889cfed9e2, 0x2a9662369e3ba77d, 0x6025a6e01b2f8bef, 0xf648b9816f8c2ed9, 0x3bb5d01918d377ba, 0xe0f06a6b9bd9dfb2, 0x5ec6da99d6b40f8, 0x8ec07da836fd5c34, 0x00000000000112 }, { 0x6b9d4163f443c7a, 0xdbc947808e25b946, 0x5695f26f9c85a634, 0xf2e4050c45ae33e, 0xffc810e81825b889, 0xa43562abed19a70d, 0xcaac058ccdbe262c, 0x69d701cb3b3c79c, 0x000000000001b7 } }, { { 0x86ec2c27b03d5100, 0x51516f715a398e74, 0xb3316cd72fc08424, 0x170fa79b602875ca, 0x7c90beb1e71d6f80, 0xc5fa33e723464f7d, 0xa9bda16e7cff635b, 0xe6a7fdc7cc41a070, 0x00000000000135 }, { 0x6bce84481d36ab01, 0x9011c90b5689cee9, 0xae545edfacdabc6d, 0x40fdd60ee6538b75, 0x346c4b9fb039fd20, 0xbe46f7adfbae795, 0x87498c7025bf1e0f, 0x4bd7c5abe4968a5a, 0x00000000000122 }, { 0x28d5447579c61a86, 0x51095b0ab5f0f464, 0x76a890bee0ddd660, 0x2149df9c74f0b414, 0x83bf380844c37753, 0x7a876a3e9da8076b, 0xd7a33780e8c0588b, 0x7f70f4d6a58f7d7f, 0x000000000001d4 } }, { { 0xf88b2f9b8d904d1a, 0xc27a28b1073c8614, 0x69eed3e3d9dbdafe, 0xaf10e1b69976b759, 0xf0fdd85e9e97f4c6, 0x7180b24839fa913a, 0xce004c1018e6c965, 0x4aafe890e77b3709, 0x00000000000103 }, { 0x9cd34f7d533c50bd, 0x2f35063e326cebd0, 0x7042d04bbd8f86d7, 0x3bfb071c59eb459e, 0x7420ffd586809039, 0xc421f9c8b8e872e4, 0x66a6ebb0825d5e00, 0x886b7fca3bb43e83, 0x0000000000019a }, { 0x77da9a805ee6c7e0, 0xc16ac3d3c2a72c83, 0x2515f09b348169b9, 0x23354be5bf35614a, 0xce9d7fc0c3e5505c, 0xa5d24bab1e32a8cc, 0xa13c834bd8812697, 0x47b8278dc15e5191, 0x000000000000ba } }, { { 0x9d759d20019b9435, 0xacc9cdb457420f0a, 0x294d432d5e6087f9, 0xdf92a5971207867b, 0x11c7d8d0e732a2fc, 0x6d4a3fecad4623bf, 0x766e4b1377afdb15, 0xdb4b51099d3b1f50, 0x000000000001b4 }, { 0xcc7f188fcf0aab03, 0x587c855c83251e28, 0x2b607f0fda439ca2, 0x938d39bfefa6f8e9, 0x60c5e747eb50c133, 0xa7d4444ffd06eeed, 0x96d39be8acf06e9d, 0x5dd08cdfe5e1a15c, 0x00000000000073 }, { 0x92adb222f292e20e, 0x416197085a054399, 0x15dd9033eaea8ebb, 0x8f438468ee3f0535, 0x36f5f23de6673b08, 0xb416ca5215518509, 0xfa328ba9350d040d, 0x2902a43dab59253, 0x00000000000027 } }, { { 0xc613d0972c693b33, 0x882d74393d4f713c, 0x181ce92b9f9b604f, 0x50270e4e68f0b7f1, 0xa931edcef179d0a9, 0x6910475647a0df2b, 0x72ad4bd19454e5df, 0x1368ff812eb3a15f, 0x000000000001f9 }, { 0x2783a31e61ca8ea0, 0xc81e0393e65c877f, 0x629a529e516c74b2, 0x6c7394621b4f50ce, 0x5f75bdbfc6f97e6f, 0xbaeaec0eda16cd8f, 0x48f1202cf53d2fd9, 0xa3ca66c76bf22eb3, 0x0000000000006a }, { 0xe6d294cb5ad9e19e, 0x88e116905f8bd552, 0x875de285f76b6a3e, 0x45ff7a62f10560b9, 0x6d08d2d0e8401c2d, 0xdd2b7967f22a29e6, 0x40db0912ba275e19, 0x89ef6054910b462b, 0x0000000000009b } }, { { 0x6e475d8160f6abda, 0x18520e94151e4892, 0x51f53654c16b5b42, 0xb778a8c1a919a5b5, 0x3b23b29237f4a88d, 0x43aea4707a0fb933, 0x7f78b17da7cba97c, 0xa9fe943d634bed98, 0x00000000000144 }, { 0x7874653d9be96746, 0xcf9cafbbaa81721a, 0x56e0b2111022aa45, 0x2e5d527d970a9a06, 0x7b6c31612ff807a8, 0x2967fa78fdefafcf, 0xa931cfaaeabecf9d, 0xe35027dc96cc2859, 0x000000000000a5 }, { 0xce19d0d7cd4fe0c0, 0xd68f9f70a1fcf6d1, 0xf58f6dd587891a97, 0xbc7cd035cd87af02, 0x16c326c31036e5d4, 0x1c302144c13b4732, 0xb3ec4bad5a7dd300, 0xfbd4420430d4af7e, 0x00000000000091 } }, { { 0x8c7a880a1438249f, 0x81e4983881616a8, 0x5fc2e60200c988aa, 0xd4240c2962ea11fc, 0x3a0b3c1c22b66e7, 0xd469ef7af6949242, 0x330c8492808448a6, 0x998914da33a146a2, 0x0000000000012e }, { 0xcc73e7616d3fc502, 0x74bfe33ee92877de, 0xb9f859c1901121d6, 0x79f1a5f661091dfe, 0x68f4123844e58887, 0x684164ce2a899e09, 0x8d303060d6349222, 0xb4803ba5326738a5, 0x000000000000f2 }, { 0xfb3cd6b112d4f35f, 0xd99de69b7adfc182, 0x76293d6a0a7a374f, 0x1f96892e808e0a70, 0x96958db041b28bdb, 0x9dba8e2e9afa5040, 0x1b256e08474aef7f, 0x1c1bba18c2dc33b1, 0x00000000000129 } }, { { 0xc9190db4f5cd8515, 0x46ea49e262613fb0, 0xac264c7ff7ce1e99, 0x39c4d011344c4b09, 0xe8bbbb84f9aafa16, 0xc6aa45143315f8a2, 0x1f5dfbc185fd43af, 0x7f9e567d3b30b884, 0x000000000001ff }, { 0xf479a0cb21965f8e, 0x225b5dc4ceb78935, 0x9ff024d3d3f82f73, 0x7355161ea9911977, 0x48b97be612ef975, 0xb095fe93acda0f9c, 0x1d038c4929bcfc95, 0x3cc1671b4d2ffa8d, 0x0000000000019a }, { 0x66e24ef573a95bcc, 0x1657d79fdaa7277c, 0xd25b62fdf3ff2361, 0x120c2c3b11430045, 0xf78333f317d80a4c, 0x596577beddabe0b7, 0xe408bea78dfa2938, 0x7255b322b9d312aa, 0x0000000000017f } }, { { 0xc62c85bce68705e, 0xf369be89277fbe69, 0x7ead58dc623f1aca, 0xd27d19965e843b22, 0xead5be7e21f3f55a, 0xcef3121364f72050, 0xb1e4c2df833933b1, 0xfeba64ddc173027d, 0x0000000000015d }, { 0xe8b65655e0fc048c, 0xded7db9954246f93, 0x98947846d3890d8c, 0x16baf7d0b97d8638, 0xd379fa1540a47c12, 0x15b3b0210e0e9769, 0x62d32fb543981018, 0xdd5ef51e1377f611, 0x00000000000006 }, { 0x16e3a10c8fdeb44f, 0xf5cbfa62434bf096, 0x88d300be730a517c, 0x25ef09962c4c893c, 0x281221e9d3c38bf9, 0xbf7ee3c6a034081b, 0xaab3f3690229ee9d, 0xdf70ccb25a20d5ff, 0x000000000000cc } }, { { 0x15441554ba365846, 0xe532e9e172571f19, 0x4d4098fbba161501, 0xe8d13004a70789bf, 0xeea90112755bbb01, 0x623dca20d35ae91d, 0x8408fc44f042fbb0, 0x3660e95a2004a578, 0x0000000000012e }, { 0x35f352b983433252, 0x8fd0271120d3e700, 0xc4da0823408e87c4, 0xdbfe6c4600426789, 0x978c7e270cc75bf5, 0x1e3361a506c8f626, 0x6433fbeeb142045, 0x7ddeb99a19a0b11a, 0x0000000000001a }, { 0x23428d7226536747, 0x84d9c0849d7acbed, 0x7925b96bb40132d2, 0x8b672d5a608ed7a6, 0x8c663fe7b2f7a331, 0x43a481af243aecff, 0xf1b768b017adfb38, 0x59a75383adc94cb8, 0x00000000000165 } }, { { 0x86e9ad021b792ce3, 0xc024fe44a731d1b9, 0x738f29e86a3f450f, 0x2ec343d2e9f29cef, 0xe85317819309647c, 0x58631167e5431aab, 0x546cf3e5ff293296, 0xdd6b42b3c93f6ac3, 0x000000000001a8 }, { 0x4c7f2582a721b360, 0xc1e26fa0c1948e22, 0xa55434991c191eb6, 0x2b7d789b0e1035c3, 0xd3edadc05a3db3e, 0xd54270cce05246ee, 0x8cb4356cf6c7e508, 0xaf24b7d4b18a5a02, 0x00000000000133 }, { 0x30bddfed30608824, 0x5712ddc25f2a4a6, 0xe8efe565e2da8bdc, 0x9b1a84cc83856c93, 0xfc03343cfc7f914f, 0xf980c4486d2d793c, 0xef06678b4f66eb1e, 0xf900a33ef787d89f, 0x00000000000151 } }, { { 0x44042f85fba36bca, 0x6ce0a9fe7239268a, 0x5ad77018c7af54df, 0xca7015594cac33be, 0xdc2c24ba8de9015f, 0x13c2332c771e6937, 0x6849fc972e76703d, 0xe6d3a2022daa4ddb, 0x000000000000ed }, { 0xf362a1e9d9671e60, 0x881e3d6b4a3e5842, 0x6223baf42a11f806, 0x5766dca80aef566e, 0x37fa382739e877ed, 0x561e2a8581bb7594, 0xd18fb8f787c433f7, 0xcedaae3858905488, 0x0000000000011a }, { 0xe8a0c7e8b064888b, 0x8f80e2b063e9e274, 0x467d537a83664f54, 0xf26112e25b00a643, 0xa65fa76a1dcb34f0, 0x3af7e5434f9ecd5c, 0xac5a10caf0c96df7, 0x14123e4aace056ba, 0x0000000000002a } }, { { 0x566e8698110b3e62, 0xfc37a4852694fa26, 0xf5ed91756761e94d, 0x63ac3b7a510d923b, 0x7b66e0d33d826ec6, 0x7fcd18ae3e366c11, 0x80586ada5052004e, 0xdf11c386226481de, 0x000000000000d1 }, { 0xe4dc97eb21d45de9, 0xbe4b675bd04a1766, 0xac270dae971b5e04, 0x9b1ab8d579b062a4, 0x28062a96666d72ca, 0xf5a04b23155954de, 0x43383720362fed23, 0x2fe7957c4c61e469, 0x0000000000018a }, { 0xc7bb8adfd7a06de8, 0x6167ff4661fd91b3, 0x593b4c6fc1a77c5f, 0xe09c93e0b0977e4a, 0x9f3cf20260d9c218, 0x41dd98fd834fbd5e, 0xf5514ddd4700c2b2, 0x39955778626edec2, 0x000000000001d4 } }, { { 0xc0815c71b7445828, 0x4c38d0536267d3e4, 0x8be3175cad58c091, 0x72b21f68037fd5ba, 0x39a42c81e71ce448, 0xb024b2b0878c7a72, 0x11db573b9c492ae9, 0xa2728b4c8582899c, 0x000000000001f1 }, { 0xb7ce8a5fa853a748, 0x2c8c5251963f3c37, 0x20123c78d01e7ce3, 0x40ba27682e13aadb, 0x53f03673a476171b, 0x77c8a996b9a592c0, 0x58c3b0a34ab2f1db, 0x40e78608e167dcc0, 0x000000000000e9 }, { 0xb7f32d09a29f381c, 0x7480b65780f8b5ae, 0xd08433431b2f78c0, 0xdcd1dbebc52c2392, 0xc1214e17f65ad0f5, 0x980cfca6f527cf88, 0x8f8c0f9a0ae6148d, 0x226d78cd9f0b9c3, 0x00000000000166 } } }, { { { 0x9d5bfb6c7944f38c, 0x5d9b0365c357b2e3, 0xda27ee9f7c346e47, 0x976251afbe00f2bc, 0x3d7f2616cf38022c, 0x35e5e79a34061898, 0x98aad08b34cb9f4b, 0x3cb1506f3ef9e931, 0x0000000000019c }, { 0x85decd4a1a07a6c9, 0x33d6aed5380de99e, 0x625d1c578adada84, 0x90753b7c3d57d4e9, 0xeadc34152eec129, 0xf19ffd8ac76745d, 0xfff93fbea6e885fb, 0x3547af12828e5b26, 0x0000000000017b }, { 0xb4213672fa6a8505, 0x2692b8392743cb8d, 0xa9931c35ea21c82f, 0xaafc66ede57cb101, 0x4a9b1c272e11680d, 0x93fa708ea829d947, 0x788ee88f052e1c3a, 0xc7b5e762b0560526, 0x0000000000012b } }, { { 0x1da7b1e548e27ff3, 0xa7dcb3063e863973, 0xa7f2c384eb93045c, 0xec75ff4cb6148659, 0xe986f931bea2e121, 0xdacf281595156aa0, 0x27dc73d6c01f12ef, 0x5bfbd0a1b2691f40, 0x000000000000c6 }, { 0xccd163462754bdd6, 0x9d8f90468ea8cd34, 0xcc71e0a09c8c2160, 0x4ace4c491837168f, 0xe876d579a7d50241, 0xa06573d204adf046, 0xc8c04545dc62477c, 0x62b0faca7b6c79ff, 0x00000000000137 }, { 0xb17d931ae0e5db3d, 0x5006ecf7956625b7, 0xfc34d81553b076f6, 0x2aa68571b4184dcd, 0x432a043d4d72f300, 0xe63f89cffc109bd3, 0xbb4ec1a2dc09977d, 0x94cee3186605103a, 0x00000000000163 } }, { { 0xcddf65f3e29b74f4, 0x213745acbc252661, 0x94872a3e7dbbc413, 0xf408a1702bc25c6e, 0xa774519f13795b4f, 0x7bab021903c32910, 0x2fe49dd2e4e68c2, 0xf9ee0d280a299d68, 0x0000000000011e }, { 0x3e5b186facbf040a, 0xae4b8b6a19c74dee, 0x884dfbbcc9fd80ca, 0x39f6ce06065c2e29, 0x9cfd4189e121df79, 0xdedf3ef170a2bca, 0x9df6dac88a943407, 0xea79196b4a4318db, 0x00000000000001 }, { 0x7f588afeec4aefcb, 0x7693c48e22c4a9d2, 0x55374a64df91ebad, 0x7a7d002ccb520a3a, 0xf36168458c90dd5d, 0x1d24c060f27feb0e, 0xf31a5d074979abe8, 0x7bb18af5fcc82dea, 0x00000000000171 } }, { { 0x9b84705e75e2d589, 0x885de8dea3211ef8, 0x4d0191c69bca30ac, 0xccaa058d8ec7faef, 0xc552c409e8489e1a, 0x6de5861f0084a9a6, 0x81fccc36dfc917fb, 0x930b04f1013e3675, 0x000000000001fc }, { 0xf3f50f441855d67c, 0x6dcd8bf84741c6d, 0x6ff93295504dde0f, 0x312a892f81cdd737, 0xed0622f866b14296, 0x1ab2068c18fb209b, 0x3b8d7cb97b79e3ff, 0x96c2c4098983c2c1, 0x00000000000025 }, { 0x8f930cf83ffaaaee, 0x1455940a6e0733db, 0x33412e5ce6b9860, 0xf6f6617fd9f64ad2, 0xfb62a2b6ea67ade7, 0xa491f915bc8f4d67, 0xddf08a3115bd746d, 0x5947c1f60d2feb36, 0x000000000001c2 } }, { { 0xd69671b43a6d5128, 0xac49f702ebce6e3b, 0xf5532aac36e71ce, 0x49f0ef7927b53a17, 0xa36e7b8e7b37784f, 0x1c1def93ecebe1be, 0x2173e58f418b7c9b, 0x9fb8601aa164a3ed, 0x000000000000af }, { 0x36a591d7ad55b450, 0x8a114b801531559, 0x5b7c5bfd09f77cd0, 0x4ecbba791f0f404, 0x7808430fc255103c, 0x3e72f96ad5cfbf4d, 0xc1f26fcb258e3939, 0x885d5856e7b25d9a, 0x0000000000003c }, { 0xff7849233d263960, 0xaec3adc911eb4e3e, 0x9709bc593fb680e0, 0xf50e58b970d95ba2, 0x78494042fee2ee4e, 0x84e4e177818e920d, 0x2029b7feed4062d8, 0xc44e3075ec8c5698, 0x000000000001d9 } }, { { 0xf28b57353aced98f, 0xa4534d86b0ae5501, 0x980ce7c0111060ef, 0xfd3785adecf7c9ff, 0xc5734c0dea96a426, 0xecfd71c204cc7f46, 0x30b9f6190b42815e, 0x74e800d1b4666362, 0x0000000000019c }, { 0x8e8f7dc26dcb26ff, 0xdbb6228ab188ffef, 0xa9978851ccc772f3, 0x5e6b0eb9af9ee792, 0x1edc88dd21fede42, 0x743b3907b5fce92f, 0x44dc893febfbdf75, 0xe5408dc60baee618, 0x000000000001f4 }, { 0x8aa868348b387dfe, 0x1380f307953f9ab8, 0x421411b4aa35998b, 0x38c660ece8e4a9db, 0x62a842fd88c886ec, 0x907d28eb5b23eb14, 0x771a7311c8f17534, 0x45c56efbaa43a29, 0x00000000000035 } }, { { 0x5b44d6c3e4b60ab3, 0x1c976e78974916ed, 0xde869e5cd4db0489, 0xa22f28648b132665, 0xdb1a6f87a5c103e0, 0x316f38df78f9b01e, 0x4572eb6c04f848e, 0x94e2b4b56ec70a1, 0x00000000000182 }, { 0x5639d5474a70c52c, 0xef939073ea0eb8d7, 0x5af36ff2f4bacd2, 0x75ec839856c81ed8, 0x4f7d2b87296f18eb, 0xc0f794f4c2621e27, 0x4052081207d3bb9, 0xb2f97568ad51e42f, 0x000000000001b8 }, { 0xb148952cefe89a74, 0xb7c3610cb9289d1c, 0x5c14603e3d8bca2c, 0x839c5bab6df98423, 0x9c45ca79410c33b8, 0x4166fa696c8ba9cb, 0x56058d102b43dd11, 0xc6373fec16c7fadb, 0x0000000000002d } }, { { 0x92e6302a513bd07a, 0xc47d6b951871f5bb, 0x3d6955cc6dda060, 0xb5cef9fe5a39bbe2, 0xb321d6fcd01c96d6, 0xa3d457397056845b, 0x2569b97db9f70631, 0x8612a37245cd1484, 0x00000000000142 }, { 0x37bded823ff41f, 0xc3c142d3d103e907, 0x90fe4a888d878ca4, 0x95d1c37757245f10, 0xb36df2931a4acef5, 0x8fe32ed6db10f19b, 0x4a2223e73dcc21c5, 0x911b4daab6153446, 0x000000000001b4 }, { 0xe4c84a5524d26fcb, 0x7e470e397fda0c11, 0xcc01e56b5281869c, 0x675e5684514cb2e4, 0xf00fc93e6c621175, 0x7eaf9e09f399e3da, 0x450f932ec50fa48b, 0x3562609ed124a23a, 0x000000000001f0 } }, { { 0x87a3a72fbcd8e5de, 0xd2775c9e7efc5174, 0x4b059d2dcc332443, 0x534fe093bdf0f407, 0x3ee40a27a84642af, 0x2e6ceec969b142b2, 0xdd6431a337c57070, 0xf31db6ff6190da58, 0x00000000000054 }, { 0x289ef48a5b190605, 0x3e513c0986a77e85, 0x294b47ab9cc66f42, 0xdf5e6f89a3477a7d, 0xcecf39ac80c99ca3, 0x16aac8294fffff07, 0xf9b81e98bd998969, 0x753798ab055e13a, 0x000000000001b0 }, { 0xfb63c725e2a0e570, 0x8f8686759fc84592, 0x1d1ddd890a19b443, 0x619d2a94bcd6dc7c, 0xd0fc82d01eb5cda7, 0xed8f9396c0e8c4ae, 0x70a3d86c2d60dd73, 0x6bd958cfc053fcbf, 0x000000000001e8 } }, { { 0xf496272940698af8, 0x232013b4b4b10781, 0x95bebe64a68db296, 0x3672dd594489bdd8, 0x7ee14a5d3a5bece1, 0xd7db52ec19437492, 0xb5ac4f27cb88e5b5, 0x47b99856d5f88114, 0x00000000000183 }, { 0xa6a1ad3eb8b1be86, 0xc3846c9865919fe8, 0x3682a8a67e42ae85, 0x26d6f167a8986e08, 0xa9290e5bd26b5ac7, 0x9fb3b4fc7adedacf, 0xe415b1e7cf04ad8f, 0x4a70aeb0f5be31e9, 0x0000000000010a }, { 0xe62e75352034207e, 0x3e08e6187ae7e68b, 0x872848e2d2089728, 0xed5b78fcbf59f906, 0x4647da48855e36b0, 0x2aff43b09b98b948, 0x19c1ba1f14aad40f, 0xca712a6ffc28a592, 0x00000000000004 } }, { { 0x7f9a132b40980815, 0x5e2c71b98e0e478e, 0x7aff6facd34f370a, 0x240a55d96b05f0a6, 0x5d61337a21dc5e32, 0x889f483700ce08db, 0x237a04b724da0774, 0xbc5d85769c10b2a5, 0x000000000000d1 }, { 0x8da9adf2f5aaf228, 0x4721c44367c5f2e5, 0xccf986abe3a8c417, 0xc7421fa81dce6b2f, 0x35604d92ee9fbc56, 0xb9abacb58c27931e, 0x76403b57c771dc49, 0xd8d7a0502bc0aa50, 0x000000000000b5 }, { 0xb4d0fb63f814ed, 0x9d11ba9c072863f9, 0xffd4e3181df08178, 0x573ac16c9db1410f, 0x146489f6e26522c2, 0x64404ca3ef2d7023, 0xa508b4888398a09f, 0x109c5102ca4ae475, 0x0000000000006b } }, { { 0xa2dc73f9bc05034c, 0x9a325dd417b70ab0, 0xffd2664610f4b1f2, 0xdcef0459238a2e0a, 0xc803e9bd49a302c5, 0xc1ae89af9c8fa5bf, 0x8df39da435b1277f, 0x63ccaaa137164368, 0x000000000000ea }, { 0x54cfad783e6d1895, 0x83c84daa7379dc17, 0x987d30f09b67f7ae, 0x8b8e50671a602d62, 0x5ba6edda6ca1e00c, 0x259448bfdad0a885, 0xddaec43f1795e4b8, 0x2346701f7e41d6c1, 0x000000000001fe }, { 0xca38e2e8c34ca215, 0x102a797ed6207045, 0xb87a7a78b3ffc8d7, 0xcbbccf71fc3b0aa2, 0x57eaaf811afc68ba, 0x41def878fe5561cf, 0x6d36e8420550c748, 0x53044c51d0fcc40b, 0x00000000000065 } }, { { 0xa90d1c83afab0c8a, 0x11da51267cc52001, 0xe61d3e5e374df05c, 0x35e3008fd0d24167, 0xbb898fb270dfa870, 0x3f729d08680b14aa, 0x4373d718fff5901d, 0xd6b377838aafd464, 0x00000000000196 }, { 0x7b5e52e88550c3a3, 0xcbd77def48655080, 0xeb70b6ea4870a0d7, 0xe0264ad8768d3062, 0x4014c9a0baad95fb, 0xe814e82992577aa1, 0xf3b7173da2f31c9b, 0xbc24a75af6a86472, 0x000000000001fa }, { 0xfcade7d6fa9ed274, 0xd69a5bde71efaa9f, 0x458d4ae8d8b12a80, 0x6681560c5b634586, 0x3caa771a9b4a4be1, 0x65c48bf91c3325d1, 0xbf5b42d489591e4e, 0x171cec6cc10fd7f7, 0x00000000000122 } }, { { 0x74777e7920c910dd, 0xbdc1d0bd4b4d3541, 0x69ce79dac718f95e, 0x91f19c8da3d6aea0, 0xe76d5a4eb2443c64, 0xa9c526c5a3e41c9b, 0x3c9ffe9b0ee228a, 0xeeadd3cfe1ca216a, 0x00000000000029 }, { 0xbb240f5b097b9492, 0x3ba9135325b7fb9e, 0x46f3d62751682c2e, 0xc50587b156094034, 0xa78a48e8b8aca116, 0x899b093f3dbfb311, 0xd50ff1250f8a661e, 0x61f48f21762e87e2, 0x00000000000010 }, { 0x33885dd8f773ef08, 0x189e5f6f78a15cff, 0xaabf72801bfbebae, 0xac0464fc26bf3e0c, 0x4a453c299a0a6e6b, 0x9689ed85c949af84, 0x4b2c87a23b68c459, 0x18e3d3350c0c1600, 0x000000000000e3 } }, { { 0xe175dee850d64beb, 0xbdee450ea668dd63, 0x2ba20238d8cffbe7, 0x2831eba5d899e6ac, 0x7a1a30ccdd76f065, 0xdb3768b21cece37c, 0xeb1f1a4c5a68d68e, 0x38d6093ff2fd119a, 0x00000000000065 }, { 0x1de507ec1a474491, 0xed8a9c8512b21161, 0x1e3f49e7afc104f4, 0x5e6e736e5b1a46ef, 0x8e5d4fa6ae374251, 0xaf600ffc041f2a00, 0x8beab52475ab0317, 0xd04f86193dd96bcc, 0x000000000000b9 }, { 0xbae650d95ba32bdf, 0x8d6856c7f3e6a800, 0x4e5df02d047c7408, 0x1b25256fb07349b1, 0xd91a3ec7557606c5, 0xf162e07cd39b9769, 0x35bdcf89b4b4cfa0, 0x75b9dc00699a11e8, 0x00000000000077 } } }, { { { 0x3fcc9aaac59877bc, 0x2aa3a62ce7b5a7dd, 0x858b393831ddae33, 0xca3975c408800fb6, 0xa01bbfaa13771f96, 0x2546374cb507e812, 0x88bb69167d597f97, 0x1ad806e8c9320e61, 0x0000000000011f }, { 0xb7407f3a944a4a0f, 0xabd40387c84fbbfa, 0x6ad805313ed7ec0f, 0x6d461cd7ea1877d1, 0xdc397456d8f17e18, 0xb68c359388ade748, 0xd5a5cffe3e5d37dd, 0x60aaef204d875fd3, 0x000000000001a6 }, { 0x9f9874ded2cfa0d0, 0x9037cf9e9b6fae2, 0x9df2bda1ea7c74a1, 0x2991024a11054156, 0x99d84b25718936d5, 0xa4f9021423bffae8, 0x14d368d26592d8ae, 0x3c633c59242e3e77, 0x00000000000093 } }, { { 0x73a7c78060b377ee, 0x12dea7c85f1867aa, 0x26ce3105a1ae67, 0x25aaca4b4c5c3e33, 0x55b6d7d115827d12, 0xe9f61ceb66a61d3b, 0x2cda4e07d29ad577, 0x79e2b062b9e195b8, 0x0000000000006f }, { 0x539346c64225f3db, 0x756c6c12d643dd8e, 0x1be443bee25d951a, 0x1ed30cf26b584c4, 0x36c37d5de671c446, 0x45eb2458e852afea, 0xe255061c63b93130, 0x7b8eb5700a409599, 0x000000000000b7 }, { 0xfcd661b46d91d68c, 0xa91bc97dd8d19819, 0x9f59c0cbfd97fcc, 0x65212e54307ef69e, 0x421486b9f86f5f83, 0x1821e70c66712e17, 0x2a5b4275ff18beba, 0xe16f7223fdd5d40f, 0x0000000000000b } }, { { 0xe9bed41b7389259e, 0x443d1b7bc90b54b3, 0x4c60e17ecb196c92, 0x329e3144cf60a6c5, 0xd06715db60b428a7, 0xaf6b323cc6dbb83d, 0x9a4070f546374380, 0x8f154028f774156d, 0x000000000000df }, { 0xd83e6eb84e85ee53, 0x62df3abd5bc2b9b0, 0xe408668e1c06923c, 0x3fe8c04d0361118d, 0xffb95deb09f2a597, 0x73e6b5ceadb6d31, 0x5e3a6aa017becd42, 0x9506577ea2a0e581, 0x000000000001c0 }, { 0x9333744c69d859d4, 0x207937262e04c57e, 0x3f5fd1ac92d23a8f, 0x3168aff5272060a3, 0xaa8ec9a2b6d810f4, 0x4112c66a00ee9fbc, 0x35a40ddbc7f0bcfb, 0x6d30f18a6a171f3, 0x000000000000fa } }, { { 0xf8d7297bd908ad81, 0x3fb9b1fd09df1f8c, 0xb6a948f03f871668, 0x9f315928f4747223, 0xf83a2329eb41b453, 0x8d6ea22a73a89a79, 0x5802e3e0055b68eb, 0xc5d02a8ae509964f, 0x0000000000015a }, { 0xfddb29a3c2742678, 0x736256434ae95e14, 0xb40e1531f94661e, 0x5ef12ff02da54cb5, 0x857a96a9e9d6db2, 0x5aee18096e920a95, 0x5894065cc55bf620, 0x903948f8154740a7, 0x00000000000105 }, { 0xc8b8384f2675dd43, 0x26f7dd985e156cdf, 0x9e8ff10c22067244, 0x782521d5798c0443, 0x8128f0229aa7111a, 0x76f544cc42a8426a, 0x5a5bc30e8cf9a786, 0xc9b542d6a332302d, 0x0000000000005f } }, { { 0xdaac0ef05ecb09c4, 0x5aad9f8c7b8ae263, 0xa54654ff39e0f2f9, 0x3e8e597ed80c5486, 0x55a53fed53dc4657, 0xa785a7f5c1280797, 0x51dba1f5a442cbca, 0xf7b4ece68db2e451, 0x00000000000164 }, { 0x913d5c968f7832f, 0xe2df6fc83d3357b, 0x78c0d66792076c76, 0x48bfe4673878983f, 0x57b64b2857e6c285, 0x7b16778eaf6fed97, 0x4382cf180c2fd97e, 0x14189c550964931a, 0x00000000000087 }, { 0x76696d8e5d88692b, 0x2d8715ab559e3790, 0x3e275b63c2453ec7, 0xa1a3b379f4f0bf55, 0xca0058186669c816, 0x228fb50ab3ed6e38, 0xe15b20ed14afa4ba, 0x55cd38fa417100e7, 0x000000000001a8 } }, { { 0x3b8bb0dac1cc8e17, 0x144881c6925b0667, 0x5284ea4267d79e28, 0xdc2966029def0eac, 0x974b5f1cc3d4428, 0xf4aa8142e22ca2d4, 0x5ea7aeb9d5866f9e, 0x4caf3b90f28416cd, 0x00000000000065 }, { 0xa1295726c4acb9d, 0xb032da743eab2b8b, 0x3dbdf76ed5b31f1b, 0xa4baa047a9d69d83, 0x972beb91957c9d44, 0xcc1470d2f1c86aa0, 0xf7f5f51611d315a3, 0x56130687bbde85f5, 0x0000000000015b }, { 0xb9c9a3f050c6534c, 0x57166851eccc1c3b, 0xcce40e5c6a63ae52, 0xe13354ad9816430c, 0x30101959c2a2f32b, 0xb1d070bfca855c11, 0xf42f530c5d43ebb2, 0x44b6791dd3a141b8, 0x0000000000010c } }, { { 0x2624976585a52b99, 0xb8fd0d09a613d96c, 0x9879a3c5940ca2d, 0x1adffa2f43fa5ed8, 0xfaf33667e7a3a25a, 0xba12b5abc4659c0f, 0x98dd261e7137716, 0x6c474b6237afa608, 0x000000000000c8 }, { 0x6d903c9bab3baac2, 0x7267cca380f80038, 0x65c2ff037646876e, 0x66940c7ccc82058e, 0xde6936540c02a11c, 0x374f495369e234a, 0x6e55fe0eb1d4ca89, 0x972e33af55032616, 0x000000000000bd }, { 0xed4fabcb6cf581f0, 0xe11c51d665e5e16, 0x60b369f65754f3d5, 0xf6d0cceb61b34beb, 0x64d3b72cb05eca5d, 0xeb92fba3ac5f1092, 0xac1cdaba012a7e60, 0x1d96018c4a2671b9, 0x000000000000b5 } }, { { 0xb44d50861c29944c, 0x8c6351eedc6fac78, 0x1ebf0f87764293b7, 0x6eab8937e734668a, 0x8f8294f3dd7590db, 0x7cd0ef31cb225a0b, 0xc6b95f4350c3ee94, 0x25a6df9b3d971d77, 0000000000000000 }, { 0xa61596179a45c1cf, 0xce7dbebed80e608e, 0xf0fd9a4aeb9adf8d, 0xd9b59a2c25613013, 0x2e5807bf5342f6ee, 0xaaabc2bae73ad21b, 0x692156728ef0136a, 0x4c36fe421ec143cd, 0x000000000000e0 }, { 0x7b90ec368c44996c, 0x17f20f8f4386105, 0x88bb0c6097bf96c9, 0xbdb602694fd02bb1, 0xc8ab8ccec6482b53, 0x216badbcb27a77ca, 0xae013700a5fe5f87, 0xc089ae09f7e070d5, 0x00000000000107 } }, { { 0xde269771a46ede3e, 0xf948bec724a1b130, 0x6c3597d15cf7bf90, 0x5f3ac30b7bce8cf2, 0x92385ba7dbd987a4, 0xc506fa4de1fdb508, 0x3e49ac7ccb2b7b9c, 0x1e925f398712c6ae, 0x0000000000014d }, { 0xcd8bb7e0d7ba6d24, 0x4a07716ea69e44f1, 0xff99d57cb7ed1163, 0xab17808f5fa954fa, 0x9311df399f381800, 0xbf5ec4fd511451f, 0xeff7822ef97d20ba, 0xd1b6188390304fd8, 0x0000000000019f }, { 0x2d6406caf3805544, 0x64619f8e7aea58b2, 0x79feba7f383cc377, 0x681830c68933fe99, 0xc408f2d6cb8bece5, 0x98abfcbc64efe0a3, 0xbd39203c55cf5ffb, 0x64ddd255c92c18e4, 0x0000000000007a } }, { { 0x2ebc9a7ca349e02b, 0x4206165cd25c27ff, 0x59ebf4e7b1369bfc, 0xee68235060a31bed, 0xdaf267590d97f94, 0x8c2a4693ad71549a, 0xc91f1feb8d7fd137, 0xa54b83b55d7ae2b9, 0x000000000001d4 }, { 0x37524a80969528a9, 0xb42b668cca474f61, 0x7f3ebf9af8580b09, 0x9b8bbb4a2bdcbc0, 0xe2d07d5cd5277e44, 0xce939035c0388ac3, 0xb16d788ea3ff344b, 0xbe728a5b9f091c8f, 0x000000000000a0 }, { 0x2c1a78814115e9ac, 0xf066a4c5bc472982, 0x3d8d4826aa6c2e9d, 0x11342cfbb84b2c0f, 0x6f38c32d7091834e, 0x5af5153aaa78e6c4, 0x507909fe9ad7adc3, 0xe420443c1b4c6315, 0x0000000000011e } }, { { 0x58379296c20c29d1, 0xb2bf53b46cb76251, 0x16ca4dc2976355db, 0x947b7b211f3a7510, 0x532ded3d871bf93e, 0x917506c7a59543f0, 0xbf921e8e0c5fa65c, 0xa3faa57d2e51ca9, 0x00000000000176 }, { 0x6cba1c5271e553ce, 0xf13221cd87f25444, 0x6d8e0444a69cc8cf, 0x136fe9dc3336030e, 0x2b5e54f710f0f52d, 0xba6db7b0a6a63b3d, 0x406e2717f1c7f198, 0x16f4378e88460561, 0x00000000000127 }, { 0xdc5b3695b5b514ca, 0xe4e2a1114db058d7, 0x453ca4150d18eab1, 0xd20a20e608595faa, 0x66071746acfa7ff0, 0xc9ae812f426d7543, 0x1daf8dba32c8064a, 0x177d59438f2ce367, 0x0000000000002e } }, { { 0x21b2d13c87867adb, 0x6bd6d8abfd929d8a, 0xc2c281a39a505bf7, 0x1209eb6eb73354c2, 0x5fbf2959f9cb1d54, 0xde2df844e92e3f96, 0x1fdcca95723934ef, 0xecc413eb7db23e52, 0x00000000000016 }, { 0x437b44b63f5fc54d, 0x8e90cb17fd258109, 0xb9b308829240d039, 0xe9c3480e3bc5b951, 0xbd78d696863ac86, 0x6b857ef6f3cb9dbc, 0x75eb03274306f5bf, 0xdd513ea7526663cc, 0x000000000000b0 }, { 0x963c6d40845c2a9a, 0x9d4dafaec5de83bf, 0x30a0232e93d63d3, 0xdefc04753abad2d1, 0x5b72eb770e48a026, 0x94b66ca4015caa3b, 0x61c095858933427d, 0x2d9f36f07f3e80a6, 0x000000000001ae } }, { { 0x3cca7305d65a247a, 0xc1f9725602028c13, 0x164f11837a131fc1, 0xf84db66aff1d3bce, 0x180865cd19ad2a7a, 0xc80004243d204c5c, 0xa56ffc8926f22680, 0x17511525f9820ca1, 0x0000000000002f }, { 0x9ebd52af58d4be42, 0xe0bba213046fd83b, 0xfa487adf011891e2, 0x989a74dd1c595bd2, 0x7970121eb03c3692, 0x255096dacea817ea, 0xb0760cb4546d3301, 0x41462bc45cec2e58, 0x000000000000de }, { 0x77f3a369443ab210, 0xef0d6d6d4cd6308f, 0x7f32d7a4c3b36c14, 0x221c3f0e4a22af89, 0x83814e24a1eeb04, 0xf8e2aadc7cc48a0, 0x2fe86da68691d1f8, 0x1c8f34e7408e84ea, 0x00000000000022 } }, { { 0xd1111e6009f874ed, 0xb3a5e29ba9a7e2a6, 0x9b2ca2096ccb80f9, 0x5267b4e8d1c42beb, 0x840baf4c044aad24, 0x35ec1c34de7c3af5, 0xb3dbe13fefa31e18, 0x12469baaba06be0a, 0x00000000000193 }, { 0xde8fdf24ec671744, 0x2aa96faadb5f612f, 0x6e97a8f20fd4d27b, 0x5aad4b6834a98189, 0xae7d0c893da36569, 0x6f0462ea978052e2, 0x101a66dc99bed6ef, 0x6db7cb08ed9cd14, 0x00000000000050 }, { 0xeced8e783825c648, 0x61235ed1b3b2f58f, 0xd3d532123003ab60, 0x79cccffbc9c908dd, 0xc73357d5ac641b7e, 0x2d9f445c69b5eb10, 0xf12cd519e2934104, 0x42305a405473315d, 0x000000000001d9 } }, { { 0xe6ce8913a647933a, 0xe16957948cf63700, 0x32d7d0d4c927a500, 0x71277ffd71453bb8, 0x7474c84205de6f5e, 0xc59fd244e1e27c2b, 0x57917c129ac869ac, 0x7a4d0186cbd65218, 0x000000000000b1 }, { 0xd66f3d8a15287992, 0xb33dff0de03a8cb3, 0xe859611836663278, 0x3a17babaf1847976, 0x524df1526a8418c3, 0x4be05ec4b1877770, 0xad645035b3385b84, 0xbe639909ca3703df, 0x000000000000f5 }, { 0xbd32bcb71f404aee, 0x8ef6f7a39768a181, 0xe3e973f0fe3a24fa, 0x1cc3ae4e55d34b8f, 0xd20407acf160b6a8, 0xd06a9074fdeda49a, 0xd66c0610b58056a0, 0x640840084cb7b472, 0x000000000000ee } } }, { { { 0x3b5a8199a0c79c97, 0xfc73db2ad6c4c00c, 0x5d2d976ea9341b6e, 0x59d45b3576ccdcfa, 0x78f0e93d84bd3434, 0x2e7e69a6e82bca49, 0x6fc3f639fe00e6f2, 0xb4277441dde1ea34, 0x00000000000109 }, { 0x1e312f9cf2941e03, 0x3d1b9b743189f42f, 0x43aad3b6dc3af972, 0xf55f0f8aa624b934, 0xc52a07e04f7b7778, 0x2c561ab5f0e75ca5, 0xb31035b6c43dae98, 0x14c5cb451c374281, 0x0000000000007c }, { 0xfe931306e90b8b7a, 0xb298f7b1dd5d444a, 0xaf06c114f9c5e22d, 0x215f7d0e93416b0b, 0x46b130f812049c8, 0x82abffe2f12d7754, 0x9f1da213f31a016b, 0x66c82a6c1f27aa2a, 0x000000000000e8 } }, { { 0x75df98d5b7b93e99, 0xc55cd0c5843307f, 0x2011c6aceb71baf0, 0x318825347ed7e76f, 0x398e7179210dc33c, 0xf4528a1667811784, 0x81dcc0ad5637a06f, 0x5ef1823c31be22a5, 0x00000000000181 }, { 0xf44bb01c8f4421c8, 0x8dbdfb228bff78e9, 0x265cae0575c74bde, 0xa71ef5b3631f43d2, 0x4841d1264d14fe9b, 0x77e7e428a83bb8dd, 0xb5a15cf0e8e307c5, 0x42d6e52137f1ca25, 0x000000000001ba }, { 0x5de5684bb3c1d119, 0xd5168448004f5c28, 0x63c9c123cb242373, 0xfa1daf5d57231ce8, 0x840e3790279ec8ba, 0xcbd2366f0f57055b, 0x6a42fca1c53ff558, 0x1472b44d009860fb, 0x00000000000198 } }, { { 0x21d153c8c7ef12dc, 0xff1f8553119619c9, 0x24046dc5a3c1e091, 0x60334721c4236509, 0x6f1c830776b9ba0, 0xa2a095fef3cdb726, 0x5855541943baa13a, 0x3a232b7858301693, 0x000000000001ea }, { 0x8841c88ebeddd579, 0x9b3fd1bc72b444d3, 0xbfb3aba96714fa82, 0x51f02399a9899a67, 0xe55e5031121df3e2, 0x712e30db02168982, 0x288fe049c29f16fd, 0x169a6b81a350f4e4, 0x000000000000e1 }, { 0x8bcae889a44e09c1, 0x3b320c960b2b83b7, 0x9d2ee8db9312397, 0x738ac4956420b20e, 0x976f38bb3647a9ff, 0x6cba37a6746e7141, 0x5d5fadbfcd0caf97, 0x2b11afadf5e40182, 0x0000000000010e } }, { { 0xa018e75b7f16e141, 0xd91816518dda4868, 0xb1b32e59ce8f88af, 0x540d16ad1387ff93, 0xa6d2c637cae58bd, 0x40ed7aa379043af7, 0xd0478cf20e1689fe, 0x9caa583f82b32e53, 0x00000000000179 }, { 0x2385fe77e8936c4, 0xb1e2c4b45b1e7c12, 0x2e1623fc3f4bb874, 0xda7a332c1240c0b2, 0xb6b03570f79f6f39, 0x26e32445dcf16224, 0x8911e279bda175bc, 0xa8082034c64f5e4, 0x000000000000f6 }, { 0xc6ecc9999c6a2fcc, 0xd2eb2f723e061499, 0x5e1b7d010993f8f4, 0xd4a407f120467e42, 0x51bd93dff4a102b8, 0xf7c78d732e9e0f5d, 0x5bdfd204f64e1025, 0xda10632b3ce63711, 0x00000000000144 } }, { { 0x2f6fc1cd155f0a8f, 0xa9ceb488ddd3fa9a, 0x1dd5e602d2f84061, 0x7aa6baf6e9949dae, 0x3fd943e4a390791, 0x4538a1fcaaff4f18, 0x416a6ebe92e4406a, 0xc6ddce607787af43, 0x00000000000156 }, { 0x405971bc55cf947, 0xee640d6ad14bcf0e, 0xa3bf2ac291729e8a, 0x81e0dcbaeb9458d9, 0x76387ce16a027fdc, 0x67a7a870fab4602b, 0x3b8c26a76805532, 0x948f164796f3ac95, 0x00000000000037 }, { 0x1ed8821a261ab274, 0xe0e2792a89a9d114, 0x3479cf0c0c129298, 0xa6ec4c159c4b25f5, 0x8c3c13a20269c099, 0x250025979fe4cf1e, 0xfa928a9cbc6294dd, 0x8f0a609edbe74b59, 0x00000000000185 } }, { { 0x26b920341bfc99db, 0x416de6fbf894fb9c, 0x1f8dde3a7d9a08f3, 0xc357ec7e750b7e8a, 0x4288a05b2a92902a, 0x41823f205f6e00e9, 0x8d3b317e62344950, 0x12b9a4a66c3a71e7, 0x00000000000011 }, { 0xe276659db15a1bc2, 0xc78a4d0cd2545b80, 0xfebac86ed4715bde, 0x5028e0b0320da15c, 0xd7b1ed01f120da3e, 0x33c522e157325a25, 0xcea17fb63f527c3e, 0xbe716301601621d4, 0x00000000000146 }, { 0x2175261591c1fb3d, 0x7690d9bea5a19eab, 0xceac8d3911111162, 0x846428f689ed26b9, 0x4a939e647f48d761, 0x71041eb625596a6e, 0x7f68d7817b3993a5, 0xfb8ff145d79c0857, 0x00000000000080 } }, { { 0x268ed2aa2b1a6194, 0x30f9649c19a89651, 0x5aae1af42ebf8343, 0x4a29e2b43736d2e7, 0x68967a54731a5c8e, 0xaff8976359f70eb3, 0x8301145780635d38, 0xa62ed7c4b8a5554d, 0x000000000001c0 }, { 0x79e027713d2fa432, 0x17b591c8d2d91c4f, 0x7920f147ee45f188, 0x11979690a9c35d02, 0x3fe3d354f8d48c1, 0xbce3e89a83bfbfef, 0xa888f82f8e41fe10, 0xbaee4e5a38041c40, 0x0000000000019e }, { 0xa597a69f07310e7e, 0xbbf9a04e1973051f, 0xfdb18dbb8061a60b, 0x43af67ddb357cdac, 0x1c178653ffa3f93e, 0x80786e1496502dc2, 0x5586006fa576de3a, 0x4c020fa818533549, 0x000000000001f0 } }, { { 0x1117708db066a88, 0x7e45f096dfb5b014, 0x13cd206ca95e5f4a, 0xadf3c2c8714ce18f, 0x351c1fbbb0846752, 0x82a6770868e78dfd, 0xcf9b4d54a1047aef, 0x5e9c5d1d524e356a, 0x0000000000008b }, { 0xeb6a88dc02300d1, 0xc5f086b27ef61420, 0xd787e825a61e51fc, 0xf91f1c0d7aa75513, 0x3c0c4dc1bdb2afb3, 0x950567615830a03c, 0xcb9b965d41e57c31, 0xf0bc9bb5f7537944, 0x000000000000ae }, { 0x2710a63257e180ac, 0xf880f8a86daa7d12, 0xf4c6e35d2cdf3a89, 0xd318b05ce5977d9f, 0xe92c3fc6d6679b07, 0x756a0c02dc048b05, 0x3b9c05f608785a95, 0x512407a45bb844c5, 0x00000000000183 } }, { { 0x7a61f0998277a37b, 0x78fff68936244032, 0xfa59250de4bde697, 0xbed57d8a3ba8f57f, 0xebe52b4a513a4d42, 0x54442949a22666ce, 0x3d777f26f11d463d, 0xf3d0ce5392f66424, 0x0000000000002b }, { 0xeabb80e9ba33a391, 0x115ce2e6d105a6eb, 0x3dd3c16dc7dee97b, 0x9e4540d22af15db8, 0x9f210c667846826, 0x67ea2886a53c25d5, 0x557507c9b2c7f249, 0x60acef53a67b3dd5, 0x00000000000002 }, { 0xa7075234deaed0db, 0x8685b1af51a90856, 0xe2d68f952a4112f, 0xe3191cdffaf6924f, 0x2b20768f57f96241, 0x8abddfef2e7dc75b, 0xfc98b9fa31802bdb, 0x759a9f9522ca0037, 0x000000000001f5 } }, { { 0xa5f5ad3fa676528a, 0x7b3a208973808da, 0xa644cc80b85c4d49, 0xf388136ac6f5a6d8, 0x133ac8d850ba7cfa, 0x8ca0518e2b5377cd, 0x6ba6e2fda1b2825d, 0xc90dfeb4e66e0965, 0x0000000000013c }, { 0xfde39424442ed8a9, 0xa43396699f42d978, 0xf942e3b5858acd1c, 0x96868551f06731ed, 0x38d2ad7b3741d0, 0xbe77cc97c775a552, 0xb6d239bfc3b8247a, 0x423bdc3346eca9e4, 0x00000000000016 }, { 0xc9bf3074e86fd004, 0x6ff910a62ce8aff3, 0xf69a8c1522a5808b, 0x141252658027e2a3, 0x1dd7d501b5432c33, 0x6827ec07765205da, 0xaba6579487c1cc2f, 0xe1b9cf81f351708a, 0x0000000000012c } }, { { 0x50572b57dadd51cb, 0x41ac7d5a19b50a29, 0x21702091f42bfcb5, 0xf4c3d8a1967e0d8e, 0xe52bd9d8f1a67628, 0x6e4a77d5b4f2e0ae, 0xd971f3907caf79aa, 0x4f1ea5f17016d2fb, 0x0000000000017f }, { 0x27323591543e706d, 0x944ecc20e861fcf8, 0x68ababdbdd88ca7e, 0x45c8566388d8ab15, 0x1ddfdd82a88ddfff, 0x637b9c5bf666dbc5, 0x97dc1a091ff04c63, 0x380fe4164f9c38be, 0x0000000000006f }, { 0xfc030c6b8524ecf4, 0x4aed9ab268b32333, 0x1c6a23e97cc924e, 0x9a3c1e1a87d773ff, 0x4389a6c8a1f14954, 0x96454b968766eb80, 0x91f9a2cc475ff210, 0xc2a3e744f227d397, 0x00000000000026 } }, { { 0x6080c9cf790f10f0, 0xa1ce67ada118be86, 0x9fbecb09e3b787, 0xa0257f80df244adc, 0x52b70c0bb227c632, 0xe8c0c9e925d2fe28, 0x6385f97000ad8651, 0x4b0c7a825d3dcc08, 0x0000000000016b }, { 0x567489c42b7c5837, 0x70ccd9f217b9bd77, 0x9c9a81a071c440da, 0xca16cfdbd1daa1a3, 0xd426e32e236e812, 0x88bcd53e0038107c, 0xad330d75917a8a19, 0x94e99652cee7d15c, 0x000000000000b3 }, { 0x8b888b3291b81623, 0x448cd4673f372bf9, 0xb93424f08309c3df, 0x4cfd19ea5e86c797, 0x499883eaae49c733, 0xbefd1dee1005a8ef, 0x2aedc129548eb248, 0x4fade3380eb04274, 0x000000000001b7 } }, { { 0x63ffb44a72ccb348, 0x4ba50335a7e1c359, 0xb32d89d3966c1a26, 0x70c464b37305fab, 0x2d3ce4fd0c79a378, 0xd31c88bf51d7838d, 0xddd56e72f68f0d4b, 0x86d9d494a5bfcb3c, 0x00000000000025 }, { 0x41d4866dcc7f5df6, 0x8f3c68bdd4524b87, 0x282d64f46befeb24, 0xf0ea4c96edd6aade, 0xe78118dea8aff459, 0xae58c567753f7e96, 0x4c50e26cb514cab3, 0x69828f02459e7301, 0x00000000000059 }, { 0xf643884836be26c0, 0xb9a7d31af9135f15, 0x56526726eb3930a0, 0x8e2499b5bb995f7, 0xc32ad572d1956e59, 0x85e410fed39c18c3, 0xe72c0e1f02b86f85, 0xe6b77790aa67494a, 0x00000000000144 } }, { { 0x2862eb3d07c45b6c, 0xe9659e55f72b3721, 0xacafc5fedf1be690, 0xfffc287e3b08743f, 0xdc8e73f071b814f7, 0x171a3fe3463a9487, 0x9b19b34365a42c49, 0xfaddb0414e1a298f, 0x00000000000198 }, { 0x913bdc739d6464bf, 0x1b6a8ad1e45a24e0, 0x3ddae2586369f59f, 0x95e6ceafedf42613, 0xa89740e0a610745f, 0xcd073c2ef5d82067, 0x8d7e7852790877a8, 0x2138b2f7076f1522, 0x00000000000036 }, { 0x28d591760721b8c1, 0x8cd33223ebaf2172, 0x14aeb670eaf8fb94, 0x3f1eb50671528882, 0xfde449ca6bbf2e26, 0x8da92deb47be32f4, 0x5e2cd6e70bde6ad0, 0xd946dfd6fbf8283f, 0x000000000000f6 } }, { { 0xaace388e0e93c63c, 0x17a1be6b5eb0a0f4, 0x48b2936236cfde47, 0xa874549a0e778290, 0xb327d8278e70d32d, 0x503946ae2f2ae13c, 0xd3a7018dbe1ed375, 0xf84a311824efa6e4, 0x0000000000019e }, { 0x9cf2e643eee32d36, 0x1982284f8a8e590a, 0x962ca89dd710fa9b, 0x80075340810fe9fe, 0x2bd0ae1d26a08099, 0x295420e33d931f9a, 0x4dfe5aacfe9a890d, 0xe0a1d185623254a8, 0x00000000000052 }, { 0x7b16a1512d386c79, 0x3977b3289956191b, 0xafbc34bc6218e03e, 0x581987edc9b1c3f3, 0x410334ecbe665b69, 0x9d0633fa82f9f93c, 0xb77188fa0dfae99b, 0x346207ba080404ac, 0x000000000000ab } } }, { { { 0x0b04d9dabeeafc, 0x36fb0164a72386d8, 0xbcd096efedaa9d9, 0xad30c39d91a7aff5, 0x2077f07f5e1e811b, 0x6c4ef9d942b2942d, 0x2c26bd28ea90375f, 0xa373ef139805dba2, 0x00000000000050 }, { 0x7c903e21e9fc9aa, 0x4901b171af494979, 0x5e0d04d089015d27, 0x32610f7b647b665b, 0x8a423546718dc96d, 0x6d0b3e466933d56d, 0x3147bd5d1b33d14f, 0x30baf07cbd5f8245, 0x0000000000019f }, { 0x61fba800a947cb20, 0xe25f07cbddee54d5, 0x38e718db9ee892f3, 0x75d8414f2d713881, 0xa61d5debf39f64a7, 0x4f56c0742717bbe8, 0x36207974808d90c3, 0x9c738fe81f9be427, 0x00000000000189 } }, { { 0x4c653fc882928c56, 0xb274784854c7865, 0x26dc5304d7b1c913, 0xb811295ef83e5dfc, 0x42e500905cd6c94c, 0x1e6dae245975006b, 0xa1043a0790b7f2e5, 0xc11cf2c92b10a2, 0x00000000000160 }, { 0x7a2efb521fd56acf, 0x9ac6c0738cce24f4, 0xfeb0fc53b7dc7a28, 0xd90965b0247eee27, 0x5ef9a12ef0c7564b, 0x73eef721ba18a158, 0x62fafdfaccbb54b5, 0x7c938b092101fbb3, 0x000000000000ec }, { 0xf062c16e34a52cbe, 0x846d2c3ff9c162aa, 0xdba58a9dcaab45f, 0x4f164bd574a49458, 0x122b44a0b524d220, 0x87b30fef00c50218, 0x16cd298a24abff77, 0xe862555a5033f439, 0x000000000001b1 } }, { { 0x1928e0fe86bc64a0, 0x1c95637a8157fa9b, 0xaa09feaf2550a5bd, 0x9295823d73570e2e, 0xd3f39112cebaea8f, 0xc5107ba58763ef26, 0xecc1a02687aaef80, 0x2cc4c25d86aa77ac, 0x0000000000004d }, { 0x3012e08fdc17a74d, 0x47695c16dc461e56, 0xc8dde63e33e2bbf9, 0x4e5f109fa2a1789a, 0x9fa2fa4c607d2323, 0x6c8c1c0ce415dc8, 0x92c629aad047cc1b, 0xc1d2bd1f0d7e644f, 0x000000000000c5 }, { 0xa5848af87c88afc6, 0xdeeb8444fc43d626, 0xf1a291bac70aa5e0, 0xcda01cb8bbeb66b6, 0x2a2bb25763db414b, 0xbddfe33f0c8d1e2a, 0xedb95cc6862b4a27, 0x157de2cf62763c59, 0x00000000000005 } }, { { 0x6a439f7d48595fd8, 0xfde1b7405fb352e4, 0xaeab84f0347b3a30, 0x778c102f8052eda, 0x12fa1f3e72f7e711, 0xc96dc2e7f62658c8, 0xc1b3d46ccb1d32e2, 0x442d1c5e7f70ea45, 0x000000000001ad }, { 0x899d8d64457bb9cd, 0x490c5c7ea45a9806, 0x93f77d1830647e0e, 0xc0fbd2fc0878e25d, 0xacaf1e7826827aad, 0x6171e3f90da431fd, 0x6e940eb21e27fbf6, 0x66b62abd624df780, 0x000000000000e1 }, { 0xc9ce52f93b3825fb, 0xbeb1ff2a830631f9, 0x466dadd511fc10a7, 0x752b83ec0f6d5995, 0xb6ee18bd26b6cc8b, 0xf1367ba3d6bcd245, 0x1d00f3ee720746a9, 0xf9efd4303e55dda0, 0x00000000000001 } }, { { 0x139ef519292de6b9, 0xf6c30f82f93817a6, 0xe5f69674d33a1a59, 0xb20a421447b9eb0, 0xe7b72c96a3292aba, 0xd1fb3b56ab989c91, 0x2d7fc61448633c0b, 0x95f090fcde90c863, 0x000000000000ab }, { 0x3c07e4bb27e8689f, 0x25e2ce4af87de89, 0xaa758ae1c0a55ac6, 0x81f429ead02f8eef, 0x9b82ed29da88be7, 0x7e257d8b314300a, 0x7429a8217788ad8d, 0x5b3d1b428e7fcd64, 0x00000000000148 }, { 0xabb3aa3897fbe34d, 0x6162e042ca997e3e, 0x2693ca273e8736a3, 0xadbff5eca0318872, 0xa01e7994f9e7e98e, 0x70e3baa8ae47c1b4, 0x8a4e1973d9e96dc6, 0x423fdd69fa0f48ca, 0x0000000000010e } }, { { 0xd2b88e1116e71876, 0x90a81496a4983617, 0x10749aa4f32a7620, 0x1b75aefb2bf557f, 0xf08c2a9a64a90f5f, 0x1ecf7eab74a20d4c, 0xdefb007dc675af2b, 0xe8eb102fff5da2e3, 0x000000000001ea }, { 0x94e5c9b40a1877b4, 0x3777f3a09d898901, 0x81b77f6c5d7770c3, 0x8c787a0102b314b, 0xdbc6172d398c2575, 0xd4de24acbcbcddd5, 0x4c00cd302fbf21f6, 0x1e850c3b8e36ace2, 0x00000000000051 }, { 0x990257831d502dd3, 0x4117568cc3a040e3, 0x7d43d9041fc9a182, 0x3b6f0211c387cebd, 0x561296e218587fae, 0x8611e12a309f6bf7, 0x82d4cc08533b77dd, 0x38689d2d54b91d5a, 0x00000000000101 } }, { { 0x14aa7028b19727f0, 0x1f710adb147cad7c, 0xc0c4c2d7249e79a0, 0x152ec0dc5975a3fd, 0xbdf6dd37567f39d7, 0xf7f8d44f4fa34c78, 0xcb7eeac2694a78cb, 0x624fea8c88c0ffb9, 0x0000000000006e }, { 0x5f0419330b06cdb1, 0xd0f94ca4252c7623, 0x912e8d73b862308e, 0x268fbe4628b03a0d, 0x8cc4344d47c40977, 0xd02a2e6fe44efb6a, 0x73c7ca22be9da2a4, 0x4d6f712fdf7ef60e, 0x000000000001d9 }, { 0xf0a598a4cfdc339a, 0x9432b77cb0c01eb, 0x48f7f9660defe786, 0xff7675feb2ca3615, 0x4fb8ff4ab4917d74, 0xf45d53efce8739ef, 0x822a36f9c22749fe, 0x4b18830d6277f2e8, 0x00000000000071 } }, { { 0x9ec2dc6008ac149, 0x126a1e75877d07f0, 0x99c7950bfd76ee14, 0x11e2f2a79b72c01c, 0xf00ee22dde53e5c9, 0x3a5cd2dabec5bd51, 0x5a78d31176d958f3, 0xa890abc99dd23bdb, 0x00000000000006 }, { 0x9c7a12314a54a9d0, 0x930068810cf46755, 0x888aca9fdb649aeb, 0xd132d6ff2bd28cbf, 0x83c5de0199e30d0d, 0x75cdbf47ad91fbd4, 0x4ab9e9a05385bc63, 0xe20bcddef54b309, 0x000000000000d6 }, { 0xc336420f8d7d69a1, 0xe4d94e7790ec90f9, 0x8e91505fb16b7d51, 0xab45f3bec3d4f3f5, 0xde71f60c5aa18258, 0x5703827f77ee60ed, 0x8be32210ceb9c192, 0xb254d89b53299295, 0x00000000000151 } }, { { 0x98d7ed20bf28498f, 0x95eb3e3861e172e, 0x78f465c9dc375426, 0xfbfa2c39be94992c, 0x9ff430e4d88591ea, 0xe1cf8b61622befde, 0xf4e5430370cd168d, 0x3d93d92d02b80610, 0x00000000000186 }, { 0xa248327ee761fdb6, 0xf6ea842aa900a688, 0x4e422dda1f70f581, 0xbaae6e9827e5aade, 0xef6b4dd1e9fc74dd, 0xcf52987d672a36f1, 0xfac07ae34559bda0, 0xbe8e001a33887a5b, 0x00000000000035 }, { 0xc30d37b2112a76a6, 0x4cc53cab8c8ce8c5, 0x79627da39d3b4efb, 0x39472572a3a95d46, 0xdf296dd3ba4f4633, 0xf0de2ea1eef42181, 0x90c97af2799e8784, 0x478dd71fd7d5c6a2, 0x0000000000010b } }, { { 0x1926a989a5af1d08, 0x225731100b3e61a1, 0xedcffe4d6e1cad3c, 0x4c3e4fa1a86424bb, 0x4fe1cdf2d5b43b95, 0x70a35faa19328a13, 0x5e7cd425c5b53d4f, 0x6d8ad42da5d0ff52, 0x000000000001b9 }, { 0x5e8294bfbdf905ec, 0xca86b2d6f3c429d1, 0x9e3319700197161f, 0xca906853815a6d90, 0x41998b63ad226b4f, 0xcda0f39500b81223, 0x143966c712c1060f, 0xacb5168cb5db7cc6, 0x000000000001de }, { 0x71ecdab5dc0e5067, 0x8b0bed821209a0b8, 0x440e0b9a2d0d6ba4, 0x9216534f7652fa8f, 0x549a111de911220, 0xdb03af4f84185d52, 0x6e07b58a60f81ff8, 0x1e7638d1f27137a5, 0x00000000000002 } }, { { 0x651f4e379ba28ed2, 0xea0251b7f3381433, 0xe20c0a1569d148d6, 0x6226d86358280901, 0xd43076b5a061aa13, 0x95b723da5b4c941c, 0xbb29d81297913aa6, 0x65114731f259da4c, 0x0000000000016a }, { 0x7f62bf7a018f8345, 0xc78f94d2f3d0be65, 0xf7999b6d2c31d4b5, 0xd48f6d581bc763d8, 0x43fe8dd4dfcef26b, 0xd31a8f59367a296, 0xbc206c8d28777ec0, 0x3018ebc178aa0798, 0x000000000001de }, { 0xbd00ea558c063fb5, 0x7ccb15e741ac249a, 0xfc8f95c846f7df18, 0x21f04b0c35f109d9, 0x81c1d3d76321e5ca, 0xeadc1c1039d4f0e1, 0xc0a3e2539b0192d3, 0x3f795354827fe8b9, 0x00000000000080 } }, { { 0x45f19776bda16c60, 0x5f1a463fb1c2b493, 0xa59220df546c41cd, 0x8345af35d045cc7c, 0x7ef28124c740547f, 0x64ad7fb44188a34e, 0xe111499e46f4f9f0, 0xa724ecc691e03a7d, 0x0000000000004b }, { 0xb798910fd5f04506, 0x118415cfe3be9858, 0xb3f35dfde7036831, 0xbc14ed14d8662a2d, 0xbfcb7d33421ad89, 0x5cc0cf4a63fa6dae, 0xd426f589f7b3e1e8, 0x80df0503824a0fef, 0x000000000001bf }, { 0xf198adc96aeb3b5, 0x2a5a16422bf45a12, 0xf68929885801f135, 0x587f57ab693ad93b, 0x69a8153a55d16f34, 0x364256bd32dc1eda, 0x5c171950af995df9, 0x2471dcf2c5055f4b, 0x0000000000005a } }, { { 0xd68b47998970ffb6, 0x2bdf13f9eab5de52, 0xef4d989e9eb49671, 0xdff550d8dfc5418b, 0x42c4de4f25a94e68, 0x665f49d20c04a635, 0xf6482ea21ff7fcc7, 0xd6718bc772500604, 0x000000000000dc }, { 0xc9f09eb6b7e2dae4, 0xf5238344a361e253, 0xa68db3ddc3525812, 0xd76cad1641740516, 0x5715a0b6c0386e27, 0x5a060aa3cee0b651, 0xbe2dca79667b05f3, 0x8b6d23dca66acc37, 0x00000000000055 }, { 0x84a44b78a1a6231d, 0x52d17b35fc5242fb, 0xe778f73eecce6c34, 0xfb882e655ba1c96d, 0xc5a2102ef2fa2e3b, 0xd3d55f7b741f9c13, 0x2c487325117c5afc, 0xeba017242be06de1, 0x00000000000088 } }, { { 0xb93241f9589237ce, 0x2a0e12a83449b5b2, 0x8a68c7f2851b903d, 0x111177f9b2f7195b, 0x81db599fba43dff5, 0x589af50bd6c48d64, 0x57ea9967b764afd, 0xb6326aea2de00abb, 0x0000000000001d }, { 0x11454053757f2dc, 0x7b4bad5ac4d6e26a, 0xbacaa4f619ec287b, 0x19b52fa7202ff30a, 0x72b8cdfec557f9, 0xec827c35bfc64702, 0x98a6d196cec63036, 0xe81a78fe5a13fe9d, 0x0000000000010a }, { 0x19ef4f8bccc4ef21, 0x36fc83402bd48f8a, 0x7516da280c64e97, 0xb16a98fb3e6af5c2, 0x53c69edc37b67232, 0xe3485bc87855234a, 0x3f4c38a24d463b56, 0xaba131fe249f7594, 0x00000000000020 } }, { { 0xd034049832294b12, 0x43c79b00e97d0fac, 0x8e644946a66485df, 0xa5aa97fc78650810, 0xd3cef2e5640bb63a, 0xb748e2ece558b859, 0xb77eb92ecaf08a97, 0x57b67140137c9b50, 0x0000000000010e }, { 0x155868cd66e00337, 0xbc47a4de7a867871, 0x46435a90b062e9c5, 0x369e2338bd0e52ec, 0xfa40d26297f4d01, 0x74bf4b0fce399540, 0x4e37576505bffabd, 0x84e5b162f60a5abc, 0x00000000000050 }, { 0x4ca88092a27f7028, 0xa7c7e15cdf69d027, 0xc6394fdfb8c1e757, 0xd6919f57b4519939, 0x78643d0e30d0c895, 0xb6aaf4d5339af0cd, 0x748ad77b812cd431, 0xf9c603722494a567, 0x00000000000130 } } }, { { { 0xef52bd6595e11002, 0x1c3074e66e8b144d, 0x9d70789cf10a4696, 0xb680c10e174acc4f, 0x984c7c80c5ec21c6, 0x5df0ca7fe5d3aed0, 0xc0f513c1a7068e61, 0x885e8e43f5739b38, 0x000000000001f5 }, { 0x76254518731a279c, 0x2a4f38ba44fc43cd, 0xf33868bec45ed2aa, 0xa119f58694eaeec7, 0xeaed22f63d148caa, 0xc7b91342bb5e38d9, 0x8f8acd29a35aa4ed, 0xfa108b56a98e62e9, 0x000000000001d1 }, { 0xe00dfa15df28b34f, 0x17615c8bbbe89090, 0x13957baa2bc4086a, 0x1c8900d0e992d8a3, 0x3f09b00cbe14982a, 0x3ab5c52079fc6da8, 0xcc35176c20a45092, 0xee1eccd0a2365dea, 0x00000000000199 } }, { { 0x1b578023f0dcbbc7, 0x402305f3739e4d96, 0xed0d62981360eb81, 0xd0708da4c4b7af58, 0xb5f18abfc1e40a35, 0xff421fd092a23cc, 0xa19c250147cd0979, 0x437cfaa7f002c1d3, 0x00000000000196 }, { 0x6f713d71a5623ff, 0x8d6ebaff330d0790, 0x2100233efd3dfc1e, 0x855c88ec96c9d419, 0x383e9ad7059fb135, 0x63e70e3efcbe4297, 0xf9a228637d164ee7, 0x661370c432147a04, 0x00000000000022 }, { 0xb878e63584cd1027, 0x74cf1a11312fd603, 0xaa93b67afd5625ed, 0x98a95fbf7dcdc1d4, 0xcccdac79265d24b2, 0x498413734d149db6, 0xc16dbaafd3121ca3, 0x5afad9913ef683f4, 0x000000000000f0 } }, { { 0x4d9f8f19b265c49c, 0xaf1ae4ea5d2c645d, 0xc6c049af7bc5f288, 0x9d05492cd561dc8b, 0x44426c844b244ab7, 0x5ad850b80d653d29, 0x31688014b523c998, 0x39dd9ffb44ac9a85, 0x00000000000056 }, { 0x3ea0d36361b5992f, 0x42500af8ee1fd872, 0xe5372a8a3757c897, 0xd3184d4e9e3b529f, 0xb4d275a2879c9831, 0x5a8a4f77f51aa895, 0x3fea0c5867480ba1, 0x7222f5d057bfec64, 0x000000000000df }, { 0x980f33fb6b53d576, 0xe055f92ea6ac2126, 0x9c5d0d20a4bebb9b, 0x49e3ce5db16cef0, 0x2f5b642f044ff10e, 0x7f8289e7840cf756, 0xb16d1fd539b9ffb6, 0x296ddc7b97f5e919, 0x000000000001fc } }, { { 0x502073884233685f, 0x20ef6edfd2b46869, 0x4b4974b1ab3b58ee, 0x1c8af8fddf01d9c3, 0x796c4f9fd1d84e2e, 0xef84a1ad325a1699, 0x7f468b36383be3fb, 0x118730fa20998770, 0x000000000000e7 }, { 0xd0539ba973f0538d, 0xc22b55f9bb89cde8, 0x91f7d3f5436b55d8, 0xefd175c87d75871e, 0x39c4ee3da4491a38, 0xbfcfc36f2b2cdf72, 0x7e1d7bcb3181a5e7, 0x18dfb7099b78c3af, 0x000000000001da }, { 0x885461e8b83af069, 0xa84b80fa161d6baa, 0xd66cc8598ae4a232, 0x7fe0e27847bf4a05, 0x2cb7ace0869181ed, 0x2d5dc90d86a56aa, 0x99d405c86bee1f9f, 0x9b63d44b2a58a0ed, 0x00000000000195 } }, { { 0x512ccf35cdb22da3, 0xd698caff60d42c28, 0x8aa418797a012e87, 0xbaff2077b190b045, 0xb3fc6e053bee8b1b, 0x406e2208253b5922, 0x7e9846cc37c44db0, 0xaf3a3037c482da65, 0x00000000000111 }, { 0xcf3671ed5935a567, 0xb814deba0da92182, 0x15eda026aa60acaa, 0x83afbe05d285d632, 0xdb3536fa3438a19f, 0x4deb6b92ccdbf318, 0x3bbcf80750a71694, 0xb66ee7d29bd914c0, 0x000000000001f7 }, { 0xa98eee708463c280, 0x6f4bd1af9bd0163a, 0xbea3065f7e619cc6, 0x729bb640340bf53d, 0x2ba5a15b32c69183, 0xd6ad1649c854515, 0x25b6b7ab6b161882, 0x2d12a80ab8aae22b, 0x00000000000098 } }, { { 0xa791cb69bc2cf1af, 0x697b9892fa08b8ec, 0xc6764f8ee300f3d6, 0x4ae0ca27bf754e3c, 0xe55f1874bc5d5d28, 0x3cf34e7afe854fc5, 0x9c9a2a142e6c4a04, 0xa914668e1244e415, 0x00000000000091 }, { 0x855c8991d8f994cb, 0xa3ae289b748d2495, 0x3faec82cb54ed0eb, 0x1a1d638e8b59334d, 0x25fe76a191e7ad2c, 0x3619937d23721815, 0x571379e8d981b114, 0x8a7dbd4bea4d369c, 0x000000000001ce }, { 0xe582e37dec748803, 0xc656dbfc008c1111, 0xc94b762f4803bc0e, 0xf113f8339ef8e5c9, 0x4be5d2a6d943627c, 0x7924a1b95663eb98, 0xb5cfd51a436bec56, 0xfa94222c2a7a4b2e, 0x00000000000072 } }, { { 0x8d64734df52b0238, 0xd8a110006fd5e6ed, 0x8a6b55d4ffd7611e, 0xc1f3f5660e1a9afb, 0x8ea6c1a31c4c9faa, 0x4e0977c5332ff561, 0x79a6b4edb3cb38a3, 0x88f93f78c7e434ec, 0x0000000000014c }, { 0xab9d473457696982, 0xda16f17389c53ccc, 0x4162224bb825c86e, 0xcdcd7a25f9ba6ee9, 0xf69bc3e853f1f9ab, 0x5c9b87dd606654ac, 0x4bfc61e433304c90, 0x75fc002b71e6cc58, 0x000000000001cf }, { 0x9ebbbb8f1c1815bc, 0xc5675dd61d86f8e, 0xdd3c7509fd6c97e1, 0xf2dbdc19910a1e9b, 0x3a04ddf8d80a57f8, 0x1d20a02fe577015d, 0x543876f2b1e115ac, 0xd4b28aca4cd56a36, 0x00000000000088 } }, { { 0x3b9f209a6d6a7029, 0x740726c09d6528e3, 0x93dfc078a6c24051, 0xf6dacc1aa15b28f3, 0xbeec0e44f81e4b89, 0xdc7f28241c873b55, 0xa269d27feed4bebb, 0xd7598bce62b0242c, 0x0000000000012f }, { 0x7064aec90e38e003, 0x98b8bf2a62ef91ba, 0xec90b306adf20ceb, 0x3d991e9056d883d8, 0x6f960b97d7076f56, 0x4c6d6d8edb3b1fc9, 0x4711e2fd53aaa285, 0x7349622f92d2af82, 0x0000000000019c }, { 0xde97c6206c903950, 0xd2bafaef40c8e7e9, 0x3ecc967abe6cd59e, 0xe5b541ee5a95c286, 0x7381de7b2bf8176d, 0xe5525f1d2ef4ab86, 0x671c644bb177abed, 0x9f8b5edb779b56e2, 0x00000000000150 } }, { { 0xb72a66ac6bd5d31b, 0xb21a5557a4da0047, 0x170d30c64de000f3, 0xeaec2723872a5138, 0xab57210f64e18855, 0x175e055e45934df5, 0x45ef81457f2dd137, 0x29df7de7748439e1, 0x000000000000be }, { 0x9dbc553f75ef92c9, 0xe55d3a441d31571d, 0x104d235090384cb2, 0x26d688af0dea454a, 0x2222500e8c4efa61, 0x2c199d45619ba540, 0x1d369935c4b2e65b, 0xd388f6638d924881, 0x00000000000072 }, { 0xb20c48751f7b5ad1, 0x6c72412600df7a06, 0x3ef11b336f7cd715, 0xbd2459521323937d, 0xbae87b314e6a4dd, 0x19d97f7c84dcc642, 0xd8e0eca42fe84c66, 0x266be87c6407bf15, 0x00000000000144 } }, { { 0xa6984df299924ebc, 0x45c413a3d15c0ba9, 0xaacbb89edcf39cfa, 0xec1c737028ec5dc0, 0x408896f76badf1e2, 0x2dbb5d429cb651f1, 0x24ceffed4e842f43, 0x64656f7ebaa271c4, 0x00000000000058 }, { 0xa2ef6722d3d591ed, 0x147aa375048beab2, 0x1c47cd71a7b259e4, 0x451a63b173214abf, 0x18c3244c48c3a607, 0x4f37f51b6062d12d, 0x1cbb7913bfb7b098, 0x75abdc645725ece0, 0x0000000000018d }, { 0x68e2ba8615f29764, 0x8ea7651c090272ab, 0x67752acbf4e151fd, 0x2f92b39ebb8ef77e, 0xbdb84e3035003e0c, 0xc10b685422983fbb, 0xc542e2f9c7ed9de0, 0x3f5c3cf2612f463c, 0x000000000001f6 } }, { { 0x571e29848c004347, 0x743d5d5a56273028, 0x37700ae82ee40572, 0xd4c251a712479a3e, 0x3230b433b223bd8e, 0xa59f688dd735f3fc, 0x7a8b3479e133739a, 0xe5317cbebb1b2478, 0x000000000001ae }, { 0xcea28f8f926e51bc, 0x205bc24686c328ed, 0x79c93cee1db6e7c1, 0x2ed59f470c8d31e7, 0x3f8c7f1072e79ee, 0x9d13a53ecdaec1ea, 0xee30098be243d0b7, 0x2c1f26f713d4204a, 0x000000000000a9 }, { 0x777820bc4bba9ac, 0x1eaf934c4d91891e, 0xe983e13ebbfb9424, 0x35cc8c50bf344a65, 0xdeac5276359ec007, 0x13321f360706edd2, 0x7f50e01e9cbf9583, 0x316a1f265290f712, 0x00000000000031 } }, { { 0x9d281362e8e1ce2a, 0x487a1df6ee2846db, 0xc33d2d90567df7d6, 0x722adcd309f28921, 0x9a317e5e1fdcf358, 0x62d2fddbdb3b173f, 0x4a486d3a7213f41c, 0x161707da334a142c, 0x00000000000141 }, { 0x20b6a440eee4765c, 0x58a4df56b272e672, 0x577504d049ae3c19, 0xf0eb89ca4c660a5d, 0x63ae17263953f0ce, 0x8b5e373d112e9b6a, 0xd4364ab2076067d3, 0x1148fd01abf2e245, 0x0000000000014e }, { 0x762b86ff412b3dbf, 0x84fca85ebfe08b8d, 0xcc44289b7534ec36, 0x7c3f9a8f3095292d, 0x6cc443b453fa2880, 0x775f2f2e72c975f3, 0x827d7a32bef901dd, 0xca4192740bd69e4b, 0x00000000000148 } }, { { 0x38dc4e37bf9891b0, 0x250d52e1189ef9de, 0x81dca9a1c3f1a0bf, 0x54776b683439739c, 0x8dd6d8bd487839c9, 0xb0c0cbda060bc418, 0x6f69a2670fdb24b1, 0x9c96de16b211e758, 0x0000000000013f }, { 0xd9b5002ebf83def4, 0x94a4769cbc111923, 0xff5a4a8fe679b4fc, 0x7d5bb1f5750e5c40, 0x97792500edc8d217, 0xacf8dd7b9e27542d, 0x328f5cbe0922e10c, 0x5058224e337ec863, 0x00000000000057 }, { 0xbf22796ff3a80880, 0xbe4fc9616e318bc8, 0xad510e4f83fd1439, 0x1357fc5dd68b2fd1, 0xf0f7cbcbc9ee0b17, 0x1b79ca5664be09dc, 0xc382d3a08b1e01db, 0x5beb9614cc39925d, 0x00000000000084 } }, { { 0x225aa1c030ddd8f7, 0x5458db91cbe1d15e, 0xf52805da30e85b65, 0xc84fd2e3567dd8f, 0xb1f3050edd0be08c, 0xc4ea6dfa6b702fc4, 0x3dcf99c039f97818, 0x3f39e7e2c1fdaa54, 0x0000000000012b }, { 0x33fe7b2c2ffd8b44, 0x8acbb3369b31b28d, 0x8a7cbf4aa706eb3, 0xf7e95a5d8bbe9be3, 0xed5283dcdad9c4af, 0xe8037333b928dbb, 0xe1a682ae1b9113bb, 0xef98623bff66100, 0x00000000000196 }, { 0x21b2f35d63091e49, 0x15260a9d659eda59, 0x72f7224560873fec, 0x910bcddee9b30a1f, 0x128144ac1f17a124, 0x6527f5857a87688b, 0xe4d9e6d0a798aed3, 0x14d6e8bca19f8231, 0x000000000001d3 } }, { { 0x4d6c1484a8e236ca, 0x330d24ac806a10e, 0x977d16d1406c5d71, 0x9257c7db5df0aeea, 0x87148728fb2c5838, 0x5e7f751213066c3a, 0xaf7fc5e1e319a52b, 0x221b5e860e7ffc6e, 0x0000000000015e }, { 0xd9d8b03c36db005c, 0x32d344496089e19f, 0xc0eff90226501a1c, 0x89ef4b659ef4b1fd, 0x4aa95d1405aef81d, 0x449c2e49e370717e, 0x32b2dd3065ae525c, 0xb4ed910a2ea06372, 0x00000000000013 }, { 0xb625a5733afe9260, 0x400cba569936872, 0xc3ff9b86cae7402b, 0x58f89a0ca73b4c43, 0xb3f43c12399a81bf, 0xa990a588c396f1a2, 0xbafb77040bd33d71, 0x2dd1db8985235efe, 0x000000000000ff } } }, { { { 0x63056c8ffaf186e7, 0x54708fe7860f9513, 0x25874b8a691d7aa7, 0x1a3caf9411fcb56, 0xe952080e1c405d0e, 0x4146c7c2a4c3d294, 0xc36b063aa0e8ed60, 0x64e9e0a4c30930e8, 0x000000000000ea }, { 0xebf99250c56c2245, 0x9b2debe6abccfa2e, 0xfeb75d2ee6165b5c, 0x1cd08c0875d5ed1, 0xe12e5f83879b4978, 0x8acb24fa7ba0763b, 0x3976212314375cc, 0x747209cb29b83fc2, 0x00000000000179 }, { 0xa1c6e9338b708ab5, 0xa96a322d9100efb, 0xf2a3211a21f0b5da, 0x860c4fcf7b470b88, 0x926c6ce5a332998a, 0x769f870e1b1425b2, 0xf7054c2a376041cb, 0x39b7f7a6657a18cc, 0x000000000001d5 } }, { { 0xdf83a28fd4f215dd, 0xb06190b29afbfc21, 0xa6c72c5a682c306, 0x9f263395960dc01e, 0xcf8738385f1b8e42, 0xd45f6af5cffe2902, 0x9fe9979497539707, 0xe1323116401b4f57, 0x00000000000150 }, { 0xc45b25c108f32b6d, 0xa19641d804995412, 0x4aa624f62b15627b, 0x1653cf2d14374f27, 0xfdc9e5a2fda0047f, 0xf2723c46fbcf3ad2, 0x4948c66775851a83, 0x412d10684ae4e191, 0x00000000000086 }, { 0x38a61667a716e9d3, 0x27083e1ab1cfb3e3, 0x8a3af9da69566c6c, 0xc57412280bca7c47, 0x3652476dea7373b8, 0x68c5df452a89f704, 0xe111351f6d2063d0, 0x5647a64ecbfe69ae, 0x00000000000037 } }, { { 0xd9d04ed0a4a6cabb, 0xb5d7ecc814b98f92, 0xea26436a5ba38724, 0x3cc2d807d0c0c35d, 0xaab2eda807972ab2, 0xb6d35a3c91c0ff8e, 0xe128935933bc558e, 0x5dea206471f4295c, 0x00000000000086 }, { 0x6ba3631256c55c1a, 0x2920374e324620d4, 0xcd0288df5fecf6fa, 0x6764ff0baa3be200, 0x3cea1d5fadff3409, 0x8c5fada5c3994754, 0x316c0f6e7441e6e9, 0xd94cd2b5ba1e697, 0x00000000000089 }, { 0x5e7c09579937e841, 0x23a40115b306189, 0xf6bce06f917fd0ae, 0x5779b30452a7d0eb, 0x308a75e71256ed91, 0x400183e16048cbdc, 0x89491d081903e7fe, 0x7a7c273d9dd3a797, 0x000000000001b2 } }, { { 0xc8f3a9e034b4c380, 0x74926e8b282370e2, 0xac77b3478c30df06, 0xde6a5f366be4b7eb, 0x1f0bdc509412f71f, 0xd36a274e95b6c89f, 0x2190fab3ffeb3624, 0xdb029e45473db1f5, 0x000000000000a2 }, { 0x6717f8bfffd01e3e, 0x33b5dbd22d3b4d9b, 0xa226482cdfd9a3cd, 0x1d09da4503d9ffc8, 0xada0eebf0b5b9b62, 0xcc0052dee4a53f76, 0xbaa1df8e1a708d46, 0x888d4b7b1ee0373a, 0x00000000000193 }, { 0x3a2ef5809823e48c, 0xaa5a3e333bec2673, 0x5fb35a8782aa9f7c, 0x1da856e63cd6eb4c, 0xd3903177cf64d6fc, 0xf16d5434dc208f95, 0xc91ddcaf203dc45d, 0xbc7b8b3c48c04593, 0x00000000000117 } }, { { 0xd78efc3e397922b8, 0x847d079bfb68d900, 0x7883fb3f70671442, 0x4d13b24047212424, 0x7bfee9269cd35ac1, 0xb6ddc404f62f780d, 0xe02ed851babd6cc4, 0xa8fb251c49bf24d, 0x000000000000af }, { 0x9f2a26bd20fa7205, 0x42996b3671d47eed, 0xb295998dbf3a450b, 0x1645b7756a96e1a5, 0xcbaaa0b598d510e6, 0xc4526022d15d00df, 0xf23df29ea3a928fb, 0xe28b18eb56e83cfd, 0x00000000000007 }, { 0xd9b145e6a7d133e4, 0xa8f07d9ca7e8e237, 0x95314448534c24e5, 0xbdcd50ffd23e86c0, 0xf7b0d63d19578710, 0xaa676367fb775dfb, 0x95d99cc078dc9f5e, 0x6517317629404d45, 0x000000000000da } }, { { 0xb56b2866bea83f37, 0x5e43e16986e32bfc, 0x19f96ef425711f47, 0x53a3a7dd798f3e9b, 0x51ffdfdbb0a4fa77, 0x1570bb84fc4d3b8, 0x9d41b0c50b22253b, 0x1fd4481258eabd32, 0x00000000000171 }, { 0x29e48d680d4a2929, 0x41e4d491ab31723a, 0x2427ab614b86ac3, 0x89002720cf757b, 0x70fe1c615bcfec82, 0xac254dfc6a4eec01, 0x50a284c7a0b35cf, 0xa15e15e469aef357, 0x000000000001f7 }, { 0xd0bec48236a48a70, 0x9f1d79bbe4e05da, 0xd62a4313276811e, 0xe12a3905ee690353, 0xa7ad9f66c6f2b6d3, 0x785c1f3ed3cc9128, 0xc54713c349e80df3, 0x4b6142fb582e6eb7, 0x0000000000019c } }, { { 0x7aaa010f0b643d0, 0x9775e17170cb383f, 0xb70feeeb6d1115e0, 0x19314867466d44a3, 0xd4e420f40cdb1563, 0x2313e9d047c793f0, 0x25eb25de0b8c4c, 0x2b5d37fd0582d374, 0x000000000000c4 }, { 0xed189b5dab547ff0, 0xa618c098a244c21e, 0x264b8a3698160620, 0x17a1d4715bb74f86, 0xbf8ca47db07f12d0, 0xdebaa49a7dc25b73, 0x599d464a2f0d5a51, 0xa61b87e89f8f8d70, 0x00000000000002 }, { 0x5ebef4030ad87275, 0xeda52b9c496248ea, 0xcb1b3f1c51e19a9f, 0xe3d6b1adb068be4f, 0xb43a05b89608252d, 0x52bf235f8c052c3e, 0x78c121b9189944ae, 0xdf6b9db9f81bdac2, 0x00000000000005 } }, { { 0xd092429c364918e5, 0x9a9ce03556d481, 0x6da6868fd0e57f22, 0xf4573d3442ec0158, 0x9af377f81df5830f, 0xd53ba52e9c4679bb, 0xb83f96b1875abd08, 0xcbee7604b469a8b8, 0x00000000000062 }, { 0x8d83ced2b212000, 0xdf03565c8f836241, 0xe3fa0e6060a956b8, 0x76cd59a74c2568d7, 0x54dbd0af9b263c07, 0x2dccc72f947a61e3, 0x39c131774ebf9cfa, 0xe2a5681e13fc7151, 0x000000000000f1 }, { 0xf8fe662f9667e936, 0xe0fa026f5db0241f, 0xe61c743bb5e08830, 0xcc768815a3ff794d, 0xccd1bc95a450ae68, 0xebb09841bc93a5ed, 0x77a0ced2bf2bf346, 0xee613856be48ca0f, 0x00000000000021 } }, { { 0x68464c4bdb1f2d7d, 0x3191a911c43fa3ee, 0x4a585bdad937eb19, 0x8d40ea3fb034deaf, 0xf1d4274000c4c800, 0x159f68c9dd18d966, 0xe0726742b16eae24, 0x6919577ce9617d43, 0x00000000000171 }, { 0x940b7f7caedc916e, 0xf674c8d1e518b043, 0xaca1b35cb0aea5d3, 0x317928e0490f7635, 0xda3a28c07d7f4b6b, 0x9e482be971deca48, 0x25a795e43f8dffbe, 0xe2c198a42e63d8c7, 0x0000000000011c }, { 0xfca77d707d1fcae5, 0x99d59b9b7a2d5d77, 0x893f6a4099644fca, 0x3391725bb2601f3a, 0x6800f434404d0588, 0x9158614217d53db5, 0x7fc0b9a981640ab, 0x4ddec1f6956c8b4d, 0x0000000000015a } }, { { 0xa7df9be2645585c2, 0x99c1b5d3545749a9, 0x10b899288a0fcefb, 0xb9ae125d1d592f12, 0xd0272821dbded518, 0x37c7d4ed7277d752, 0x6fc651552ec18176, 0xc4abbdd5bbb87319, 0x00000000000028 }, { 0x732d4bece09c2c2f, 0x793e72686da46542, 0x5985ef3337ffdf78, 0x3b39dcaa1355b476, 0xc4192966c8e3671f, 0x66c8bbe7b339ad0a, 0xd4b448381ab81231, 0xde1d6ff672799ab6, 0x0000000000005f }, { 0x20ee4b36f32b454d, 0x61687d25efdf095e, 0xb056facaf8d6ec87, 0x3ff90b9210b0589c, 0xecdd305de3888110, 0x5cff1cb63ac78d6d, 0x92a6759d9900364e, 0x1c2c2a201439ba7f, 0x000000000000c0 } }, { { 0x80d04b614e488027, 0x730cbbd126eb1e6a, 0xaae456ecfd17921b, 0xfc43601f88fdb339, 0xa0c5ac70da3d0bc2, 0x8f360230bddda806, 0x821e21992609640a, 0x96c9b78b43671605, 0x0000000000003e }, { 0x1ae1da393935a8b2, 0x268c38da590eb237, 0x3db7a65c5c1e55d3, 0x9dfa708b123dca05, 0x115cc3f9524db2d1, 0x61e52aa4dce97909, 0x1569eaf97473749e, 0x4663beab10716232, 0x000000000000ef }, { 0xf35610011d50f236, 0xec0da132a0771328, 0x29a23e03d540b491, 0xab01c8597d0b2520, 0x78e6307c45950445, 0x55773494a88d0992, 0xcea60b9fc8e37c45, 0x3228fc543c7479cc, 0x0000000000016c } }, { { 0x438de41c5fc1c694, 0xf12cc06354a0db1b, 0x6aa4ace14a0a0f89, 0xd9d89922cd012b1b, 0x3e19865045396984, 0xce4d0162e1bb86b6, 0x4300bff5c35e3235, 0x48881bf99eb9fcec, 0x0000000000004e }, { 0x574c17e83952eb71, 0xed6be8e93007ceca, 0x8da4f650f9d4b3ac, 0x6817d878901c076, 0xcc184241f4e4c09e, 0x3874afbac252cdce, 0x6d419ead6a5e5d55, 0xed513d0ffa5c6eb2, 0x00000000000010 }, { 0x838f3513b631676e, 0xa2ed7d92fff6e8c9, 0x44dc2996cd1b6211, 0x2bd2a5eef7e01191, 0x7b0a4fdff8ae61b6, 0x2e6e01020519fe87, 0xcf961134467aa8be, 0x5abdab263e6cac5, 0x000000000001c1 } }, { { 0x4ee4beb339562d0c, 0xed1bc5d173363f8f, 0xe1f832ef01a47ce9, 0x6652e56312691707, 0x6eca89e48ca10651, 0x32e260cf567e077e, 0x3f1aaca8a2440a62, 0x6f7054b09dd496fe, 0x0000000000006d }, { 0x4f7168b239a5382d, 0x803ec49929dffed4, 0x5fb1fa1209744a80, 0xec3378786d11cf46, 0xc60bfd813664806a, 0x8a29440da0112757, 0x4fd1e135180ceb1, 0xd5089b48f45b6019, 0x00000000000131 }, { 0x1f00ea980eeca293, 0x5b4d25854196783c, 0x7b4641a3855393b9, 0xb58b3734089e79f3, 0x550e7cab2008c4db, 0x773b3d0886c35321, 0x1c4c3acb066fad98, 0x1f459c26f1b3248b, 0x000000000000f6 } }, { { 0xf9c7ff71836eef2e, 0xc316ee5102d4be80, 0xe371b650d3e858fc, 0x33dbfdbbfb55cd0e, 0x8505e58d4cb789e9, 0x9d51406f1df47b22, 0x56e0e316e7ac16e, 0x95acb7896068b6f, 0x00000000000056 }, { 0x36672dc87b73333, 0xc6051b0b951f1c72, 0x5219dfa8f5aa7650, 0xfdb326345662caaf, 0x7144461bc4d7a0ef, 0xc95ce0ce2508cf95, 0x40e8c9baa4900a8b, 0x848f11d20021627b, 0x0000000000016d }, { 0x40d87e5413db8d91, 0x3a2234ce75d60a61, 0xf4e4f564995e860d, 0xa5174ba2cabc90f4, 0x93f3b226a72dcd56, 0xceff7b8b50e6bd90, 0xd6a9c645a06cfb3a, 0xc55a69ec235f4d9, 0x0000000000019d } }, { { 0xb43bd5acd626e4a, 0x5b47bff570703be, 0x93ff56a089f6942f, 0xd5105fd6c8f1bb2c, 0x3a6695142961d2cf, 0x6a558c8268f82c59, 0x95c3e712684d8a5e, 0x7f3af2a8e254ddff, 0x000000000001c6 }, { 0x8a163e4c61dfd756, 0xd2740bb689ddf680, 0x8950b1098d7f67e7, 0xbcd502cd267e76ae, 0xfc4a96ea9376a048, 0xa9b09d3a251a0012, 0xf4cf4cff392167f, 0xfa52b906a0f635c0, 0x0000000000003d }, { 0xf3404e61a304d438, 0xfaab21b36c62149b, 0x73ad36580d62bf98, 0x82e5e4bf67be394f, 0x43fa7fd6cd556345, 0xf27066bf66850268, 0xebb61fa1f26441a7, 0xfd005c9381fa0002, 0x00000000000190 } } }, { { { 0x9a34f572241c79cf, 0x983b04ba51f4171c, 0x4032154e3460f751, 0xc0728f5a3454f420, 0xae74f4ada7dc4770, 0xaaab80e212380aeb, 0x77312662541cd2dd, 0x6f35ed4f8a70fe3c, 0x0000000000018e }, { 0x5c1f9c9cb65078c1, 0xacfd5c5d4b65a703, 0xd3b7faa173eb37b9, 0xc497d51946418fc2, 0xb17499097c8175c9, 0x98415c5b51b143bb, 0xa945e822edf279cb, 0x523f66467316a8ad, 0x000000000000d0 }, { 0xe7ace900055845a0, 0x531c25cc1574b6e0, 0xf6a10cf6a1dc4551, 0xc376b7ba69d25ec6, 0x42f00153c8d48074, 0x3773d0eebac8a2c9, 0xcc6ee7678103e36e, 0xd5b91ce2da02868e, 0x00000000000179 } }, { { 0xc6e6668fe2413c2c, 0xdc28e10ef50e9e2b, 0x93ec3ffbdcc5addf, 0x6bbd0829a5fc7af5, 0x3aae9a9cd3b48b68, 0x9e337eec30252bd7, 0x282f1756f6929b9d, 0xf42343896b1c3245, 0x0000000000006a }, { 0xaaee1e96be6280c6, 0x82ba6c55d904b9a, 0xc690cd524ba8c287, 0xcd52cb20a9c05ea0, 0xfb0243e9250aa64f, 0x5ec6f12f9c76fe0a, 0x3d4d272fa228bcbe, 0x5a8786516b5e85da, 0x00000000000050 }, { 0xc7bb7ecfbf2e4bbb, 0xf25c7a805b78484f, 0xcd0836c93c497112, 0xe06acc42e785eed4, 0xb2078b65ffe83f40, 0xc318c0dcf916e0cc, 0x35a3e0feea5f2819, 0x385a91977be51c8, 0x000000000001f4 } }, { { 0x1d4fa0d242207500, 0xe257d590f0689a7d, 0x587915460dc7f0f7, 0xd95b77558197b974, 0xf14eab862a257330, 0xea6be1595a97388a, 0x87049254d201a770, 0x19cf387b4fce2b81, 0x0000000000016f }, { 0x656c5fe058ae1b46, 0x5c840b042a09c7d3, 0xc35148ad5afe2315, 0xb85cc06615708b09, 0xd4cb865dff5a1721, 0x9b40a949431e26d5, 0x12e6ceced24ca065, 0x438511694e9c942f, 0x000000000000a2 }, { 0x90715288482a77ec, 0x970585eeda45ec71, 0xffc0963084d52489, 0x687af92a966a242f, 0xf186ec7a623c818e, 0x9aea27d124dc42a9, 0x7e56068855bedab6, 0x2e90770f035bf35a, 0x000000000000e5 } }, { { 0xca30a3bea826f130, 0xb51df69be8b6375d, 0x15396f1fdb7b9d41, 0x92097fea79b7ebf8, 0x9d2aedd9d7ca66b0, 0x536456e2fe0c0e2, 0xfa11d082391abdc3, 0xb2692bafc212913f, 0x0000000000015d }, { 0x608e5e19c7fb1ce8, 0x5557a69070fc74ea, 0x96006c787833634c, 0x5298a3e5d8743e97, 0xbc0149534ac6eb48, 0xadee01c5d4942eb5, 0xc1a84bf0ec56841, 0x2427cd59be9d08e, 0x000000000000dc }, { 0x5f52b596fa3aad1, 0xf4ebbe3f57fac638, 0xd5413b77657a74d7, 0xb449a8a2e9cdbfe5, 0xf74aac35c0fa68d7, 0x767b0d049dd954e8, 0xfb8bea5804ca8d88, 0xf2d7fc7aa4bfa4c9, 0x00000000000139 } }, { { 0xefc0835d67252bb9, 0x74867e42bd636052, 0xd20fb148bbc5caf9, 0xeea040fe3bdce793, 0x7c34a9df93eff1f2, 0x2c56c64640237921, 0x6ea5f20defa42cb2, 0xc271cde2ac252db4, 0x000000000001f7 }, { 0xef65ee7330e0ce95, 0xed131c2fce1b30e5, 0x6bc073e1b945f612, 0xe5268b8a18dfd41c, 0xfdb4f2789d25d583, 0xb42e4dc97c88e85a, 0x65cbd38f6591ffe, 0xa2331cde68b65e21, 0x000000000001c2 }, { 0xbe24df1581fc861b, 0x99c8aa24b84e8eb9, 0x6a4341b7b9ddee2f, 0x4d54536f12155d3e, 0x29d696420af48be2, 0x6ee6c19f11a7efc9, 0xa1cfa3f3d53aa26d, 0xdb7ae5db5e429a24, 0x000000000000c9 } }, { { 0x11828bafd22b3bc3, 0xcafc5d9929203f09, 0xaba31f22f273ab4b, 0x972fe82ebdfa568e, 0xb5fc1495b865d0e2, 0xd53942e6250de70c, 0x848a6657046c5d07, 0xa18166e1c4c5ae18, 0x00000000000078 }, { 0x11ad19cdcacf1876, 0x773935ef00da45df, 0xf9217b8f92c583a2, 0x3294a97717f4ecad, 0x4e3f370d9ce8056a, 0xc78ec7dc2ea0ab14, 0xd8a19af25b6468ae, 0x6b3cabc25cbbcd11, 0x00000000000118 }, { 0x8a7436cdf9688fb7, 0xdb94fd6a3d9e6680, 0x332e0b1ffd9da86d, 0x95d4d8c251836dfa, 0x9b8c7cd053e4691f, 0x7519e8a7edab1967, 0x88b5addf76437a68, 0xf33461c525ecbcca, 0x00000000000076 } }, { { 0x165c5f3c9f4bf0fb, 0xf2413a39f45ca26d, 0x1f3d7afba461179d, 0xe9cc4432607bd987, 0x71fcc4b211832db2, 0xdfae6bc6ca66a9f6, 0xf9cd5d2161c635b7, 0xda5e0c17f1bfe6c7, 0x00000000000068 }, { 0x7678d56e409b237a, 0x9ad7b88fc35445a5, 0xc942165591e5a2ed, 0xcb9145bf9b59edee, 0xf3ff407013d7e424, 0x72e2b1e94b340e2f, 0x15b98046b6a996f4, 0xc9103a580174111c, 0x00000000000173 }, { 0xca8c68ea0f5a947b, 0x8a64cba0c30885b1, 0x9a3ad3004ffd4dd6, 0xcddfc3502061c56f, 0x51465b0c168153cc, 0xaebc4293e975ab82, 0x6d71957f760b67c6, 0x31c37e493f46765, 0x00000000000042 } }, { { 0x8b73160908f22da9, 0x5c016a42aa3e533b, 0x74a16b8b9cbd96c1, 0x1364f939fc1a75d6, 0xc7aa563fa7f1bd73, 0x616e548b0b9130e5, 0x610e282a327d1b3, 0xb767cabfffafc9b3, 0x0000000000007d }, { 0x83d2bd00e65c6f8e, 0x19e628f9dec80650, 0x49eaee0fa474a7a5, 0xf7cd1a3171019bbd, 0xbb65579957601b21, 0x592b8585a39fba45, 0x4edf64980f96b4d9, 0x529878e36d85935c, 0x00000000000175 }, { 0x1cd9c12f51870da2, 0xa8eeb8c6eb504805, 0xcb7f2b70f4cfc6d8, 0xb716b28e6ecfc430, 0x27cb437ff1ea2bf1, 0xd3eba92ec92fd091, 0x714ae587692583df, 0xc458a11f13bc2848, 0x0000000000016d } }, { { 0xfd278023cc11244, 0x628d65d4f7aaacfe, 0xebeac8d799073b86, 0x73f7634f23001cc2, 0x147c403d385a9d58, 0xe1d450418b16e7db, 0x406342d97206ae0f, 0x69792a94db99bec8, 0x0000000000011b }, { 0xa689783b535a7552, 0x7e96ef674d29d79a, 0x2bf4fb7483d65736, 0x36b4e5769d3a843e, 0xa83cc0f8b8545541, 0x99f58b3289a3442f, 0xa22ea38ee84e477d, 0x85f5e59524e586ee, 0x0000000000013f }, { 0xc58474ada58add28, 0xc7972d3e20bab29b, 0xf28b0ee2c8c6df38, 0x81ecf3fd24cf57bb, 0xcba385c210d1aecf, 0x900961362cf45008, 0x4703d252b900c5b2, 0x1c741bde9b5bbfb7, 0x000000000000d6 } }, { { 0x7074c63ae7c1db0a, 0x2532d471c3e0b072, 0xd2f67bbfe5dce807, 0xd87c71b9a5294e1f, 0xc6c7f6a4addca6d0, 0x22f37b363bbc5b4f, 0x774fa0da26b951da, 0x3c8da3ea6063f344, 0x00000000000028 }, { 0x164e538a481e49e5, 0x70131adf339d1540, 0xa7bb5d44e1500cb4, 0x2d2bf38ea3b5cbd8, 0xcb15a3c41dfd87cf, 0x8cc8f27e2d964781, 0x13759c7163a7770b, 0x39a2f226f2ee6dab, 0x000000000000e8 }, { 0xc97d8e3063b54564, 0x242f4345c7e04ac9, 0x5fbdd2ba02e4fb05, 0xcff41ecf60f61329, 0x76c148ddcf872f3f, 0xddd93663d747f4e7, 0x93345c761e9a72f2, 0x4d253af3ee962363, 0x00000000000007 } }, { { 0x29a561c7926b7699, 0xd025b700bc0d9d49, 0x72cb531b080393a4, 0xd3b5e18fac8ab008, 0x9f7b6eb6bb0d25ec, 0x28c6a39f086a94d3, 0x6934d92342a69e39, 0x5d383d88026c298d, 0x00000000000057 }, { 0xed320a02576ceffa, 0x209f609abec941fa, 0x403a55e52b1fe5c7, 0x6b031ef7dd90ce16, 0x18bc20345a9a2a84, 0xfafa1e405a35b3cf, 0xa90690d5a3efb562, 0x330716b81fd9330, 0x00000000000019 }, { 0x148a61bcd8a0df92, 0x938d6d0afc496977, 0xba2b85ca8d1e1e3b, 0xac6e3fda4e92fd5f, 0x3fd4194fed80ce35, 0x2f427420c66e326e, 0x911459b0406b932a, 0x47703bb4f95a83d, 0x00000000000050 } }, { { 0x74f5a0a3fde13869, 0x2cc35047c9203709, 0x5633c2bd5e475a18, 0x6bccc7b5d63c5945, 0x7efa0c67abf8c374, 0x65acd1583a6743eb, 0x8391af19ce1b4e9, 0x4d3d251666e45906, 0x00000000000063 }, { 0xda3e572cfdad0b29, 0xad8839871ee518b1, 0x68e72697765fde02, 0x5d7541f5f353dfc6, 0x41bb802631dc0e42, 0xcede54b989c77eea, 0xb767cc927b45abe3, 0xec5c033db9146e92, 0x0000000000008d }, { 0xeb35a70f21f81539, 0x489b6f1de027a338, 0x54a9c1cb1a7d4402, 0x115550726e3c1482, 0x5ad7bca153ebe5b1, 0x38d2a2b28e67f6ed, 0x89325faba8fd4bc9, 0x34e6e5e2c6215891, 0x00000000000141 } }, { { 0x25c9bd1649c4f71b, 0x17bcfdaecb49a9bd, 0xab1c2105afe56a0e, 0x2b8bb6c47f203c0a, 0xb7d8b5698ccdd199, 0x6f5a6e11614ede75, 0xa3f5813334d4c13c, 0x59329537e147590, 0x00000000000163 }, { 0x98baf272a9fa0d90, 0xc1636442de5f1c5c, 0xb545419804e74c91, 0x675800ea90c61d95, 0x1277565084349054, 0x596d8ad8597baf08, 0xbd7aa7d55a4f0017, 0x5e27f04c798c1548, 0x00000000000182 }, { 0x5d9cd91f7d1df6b6, 0x397c616cfbffd1eb, 0xe9ba2f6fd47e14e6, 0x2fa00d2d2496214f, 0xa47a0d22620a950f, 0x7fe7c001e1983678, 0x984336736b2921b2, 0xd2faedb094fccddd, 0x00000000000061 } }, { { 0x76dd14b7960fcb9a, 0x4243939d51e17ff4, 0x5e6830ab14ed16a2, 0x3b5422d345367fa8, 0x50d41cbaf824b8a3, 0xb39e1f53723ed265, 0x3025e88db0985e5b, 0x2ef54fc9fa8d9821, 0x0000000000013d }, { 0xd7ff87dfa6739b65, 0xb58320bffb816c, 0x9dd2d1c51bc8149c, 0x971b1cb9801d890b, 0x47ca941a3409a551, 0x5f8c80c43eb02131, 0x5310751c3ad89bb0, 0x85d03034ad9ec379, 0x00000000000114 }, { 0x6ed601e8b4a5e284, 0x164b78cea0de4de5, 0x8ed5ced6225401f4, 0x40ea8cb22d346d4f, 0x1a53fdb5860c1e3c, 0xa6c154d71e09ace4, 0x62298b6f9f22cfe2, 0x89e6a78a0f653b53, 0x00000000000182 } }, { { 0x45f0d39b79187010, 0xf2c09361f87deff, 0xccc75af8a2523ff6, 0xdeff981f5b364fea, 0x12dcbd9f0a3b3fd5, 0x27b1c437b132f374, 0xbd9cc7aa6d992c6, 0x356f74309c5eb783, 0x000000000001f1 }, { 0x2663ec2e6e701c40, 0x55e3cb4c28192f20, 0x7b53f09f6c8b08bb, 0x5a5252138d9a94f2, 0xe080e036b5c1fe6d, 0xbc99f0814a930eba, 0xdc1f887bdf982d14, 0x3efc759d5351a39a, 0x000000000000e2 }, { 0x85ca711dc8bca1a5, 0x1968ac275631c4e1, 0x888730f70b707d0d, 0xedd455911b83faba, 0x7fe331721c36efa1, 0xa9954bcedc44465d, 0x44cdbdfcf43148e5, 0x93c2a19b6e1e7b89, 0x0000000000004b } } }, { { { 0x644de2f4e751b9bd, 0x829352f719b881ba, 0x253dd70307b4cd65, 0x7cf3063281d4875f, 0x11c0af78cd2cde6e, 0x62ebd21291b39cd1, 0xc87c5fb5977f1584, 0x45432ccebbd5659c, 0x00000000000020 }, { 0x5b9a36ad5b7c247a, 0x75113268726b158a, 0x7dc7ba1b1787451b, 0x80db885104dfb0da, 0x4977ddb5788cee62, 0x8d3d3741ace96979, 0xffe8336ef77c5cd, 0xfa459c91097fb848, 0x00000000000174 }, { 0xb53184911f965514, 0x50c1b9c0e89460ec, 0xa7dee818718d8e4c, 0xdbcf312bccb6365a, 0xdaf5c851a4112136, 0xf7e0d3ff1f34e001, 0xd7bea3e1d0daaa4c, 0x587e5229be620fda, 0x00000000000194 } }, { { 0x615b7e955094dd36, 0x5dc4608730ed7dfa, 0x10838836b7c32737, 0xe072a1ecdde77bc2, 0x2849216e6190959, 0xac13e731081c4bcf, 0xa0719b94fabc523c, 0xbdb6581420464449, 0x000000000000ae }, { 0x4845016f96eeee99, 0x710fa7022002f7a2, 0x7e2ec871470cf084, 0xad55bfad7a64152, 0x2004c8067e3262fd, 0xcc2f14c1be201a2c, 0xf2f5f572a3b2637c, 0x309711345b197f93, 0x0000000000017d }, { 0xfb52c39edd39247d, 0xa8840ad52be76c97, 0xbba1853df123e189, 0x9571c7fc7c8cf14a, 0x93818cd93a89525f, 0xa58d3453bf918f0d, 0x301e40565f59c140, 0x8b2ebcf198e196a8, 0x00000000000179 } }, { { 0xcd2510f5a07b79a5, 0x18bd417827250d5a, 0xde08a3ed93019454, 0xefe7a31670ee9465, 0xdee6c53c43a7d6d7, 0x80907fe4f73d6a48, 0x9072d17314d73b53, 0xf5936bfc9be1ba54, 0x000000000001bb }, { 0x7bfbd0543a735592, 0x19c5a15353cd9682, 0x536c747cb5a1657a, 0xe6ea08ef07b21dd1, 0x5e4689f151a5885f, 0xd8241f97134f5ada, 0x61f6ed51bf00d107, 0x3b06b36b33d6c9fe, 0x000000000000c3 }, { 0x17a3eb85d4fe5197, 0x36978ab5f7eabbdd, 0xbec7dcdda68c42bf, 0xc044d0dae1a3afc6, 0x4743098c978443a4, 0xa83a4d1967436270, 0xbafa2587b48d9b29, 0x40446adfb4051453, 0x000000000001a1 } }, { { 0xf4acf8756ff649, 0x6a79dba2976fa58e, 0x3235975727744303, 0xc6ded38ae3b640ec, 0x8b8888571f4d1a50, 0x3d22c72ff2a2fbea, 0x4bc080f9f6d38479, 0x3ad5d72fa82c0796, 0x0000000000011b }, { 0x71c54f0ba67bea5d, 0xfbf6eaaa9a492f81, 0x97270e94a55dcddc, 0x82d0b996b76e29fd, 0x54152994634482bd, 0x45cf0be1729b0709, 0x41d2ff4542a0c369, 0xaee1a0700ff19148, 0x000000000001cd }, { 0x53062d5da92340df, 0x9ac59617c4adf37e, 0xe58749466ec6db05, 0x8470935e02b90843, 0x2fab61e4b0c7a8f2, 0x9d86a13dcfa6605c, 0xdd3843ccca80f66c, 0x7b0520a5c591f3b7, 0x0000000000008a } }, { { 0x56101aa163e4f2e9, 0xa1f469968544997c, 0x23614129f40438a0, 0xb936865abd33fb66, 0xcb0fb03f330c5d1b, 0x9ab5ba3f65a071ac, 0x7fdcae65daac0c59, 0xacdcccf8cdb90e95, 0x00000000000149 }, { 0x523cb84a827f1f1, 0xb17be2bab21330d0, 0xff2f377968b52a58, 0x8f3f24184a804c74, 0x55ed25d9ffe1d4b3, 0x1514ffb9a9d61e74, 0xa938c30b468329ee, 0x690246686aa764b3, 0x00000000000069 }, { 0xd92dc798a1a8ef7d, 0x962c38530d85345, 0x8785d116bcb721f7, 0x167465c434118a7e, 0x2d0849f456b034b6, 0x41a5b3f3b148b123, 0xee3ae595a2517e96, 0x6d40d0495094b7c, 0x0000000000014f } }, { { 0x898a334d13b8beed, 0x605cc462ca4e0fbd, 0x8b6b2fc8cbea76cb, 0xd714f1d872ef3436, 0x532a6d5a1fbdde88, 0xd39015a8f0b9e868, 0x38499b0d674769b4, 0x433cb45a1777f551, 0x000000000001c0 }, { 0x85320c6071daa793, 0x2f06474adc7bebd3, 0x97f30be600cc2036, 0xebe5e507a39c70f9, 0xab73e7ea328f1a31, 0xcab1509cbae989a4, 0x206e04ff6e83728f, 0xfeb8d7e3d3c83e51, 0x000000000000d4 }, { 0xfb060dcc88def0ca, 0xd45bcaaaa8ef93f7, 0x39193bd08f52f45b, 0xd700edc08072cf87, 0x1e651e98165f6e1c, 0x8b314bd11d06723f, 0xe3b0dc53437db272, 0x658b9e728afff0ed, 0x000000000000f7 } }, { { 0x36fa0340da5b398a, 0x842f3a7eead54c7d, 0xbdb868a76b2be3d8, 0xa033364f97fba2b8, 0x3a56209273aa5d75, 0x47f7ba44bb6fd526, 0xdeb36ba5df274431, 0xdbfb870b7ab59fff, 0x000000000001fc }, { 0x6df9405e18daf57e, 0x4e61fe78b6f9ce69, 0xa2961f2eabefc456, 0x5bfeee23b23917b2, 0x3a20a36e148efab, 0xb5c5257d6836bf4e, 0xbb12d19019b62596, 0xee4ddec327185a24, 0x000000000001b3 }, { 0x416ff6bad37480b4, 0xabde2278a9c5fa2c, 0x7a538badd64d08c, 0x476f8dabc14e4c6c, 0x4a35da62a796eb45, 0xe3f7e26e90776bd, 0xbe9c5f88de0bdfe9, 0x6ec52be4cdb2e94f, 0x000000000001c6 } }, { { 0x4e77512f3ec2fd67, 0x948eec05188b572f, 0xbc57af62ee002dd6, 0x1d32edc09f4383de, 0x699871bf334eacff, 0xa974f6c9507df4c3, 0x47c60f2bd6eceeb2, 0x66923887e87e500d, 0x000000000001fe }, { 0x9a2105222843a513, 0xd61fd92e8cd23cc6, 0x6e8bb996fee890ba, 0x53f0ff9fcbe2108b, 0xced9278b2f71b5b4, 0x3f998acf55953f, 0x1af46542ab1c242, 0xd6c2fe5127b47876, 0x000000000000f6 }, { 0x1ef3a650886e7b04, 0x5af37fb43bf9741f, 0x4f9706007ef70bcf, 0x87264ea030f4e919, 0x81280c82af4c7c04, 0xb32373a84b3eced, 0xdf449dfb2611a7b4, 0x97dc69873823eeda, 0x000000000000f3 } }, { { 0x54590dfee3c04931, 0xd8151ba1dcb6ebf0, 0x7aa5e3d4e0fe6072, 0x3e88dd230e59156f, 0xb251e747de555781, 0x4fa7146d661f257a, 0x590b1b847c4c3de8, 0xf5c6f30493e84ff4, 0x000000000000fc }, { 0x19d5611d04b82a06, 0xd770356733e81a5f, 0x6fafedfa6afedcfb, 0x79c27fd2c90d9628, 0xf8a0dc6507fdedb2, 0xa0f7a23af94a81d5, 0x1767aee72f9d69f0, 0xf13616a5b27a1361, 0x0000000000015d }, { 0x5c1f9804efb53a60, 0x32f9265d1edf5570, 0x96183393f7819032, 0xca6df9f7a85a8ee6, 0x18edb9273be1ec89, 0x809c5203f1fab0db, 0x71a22ad80b898d31, 0xc281c84573bbc1f1, 0x00000000000112 } }, { { 0x6cf540841039b1dc, 0x737c834afdc2ad60, 0x5603feae7ce6fff4, 0x2d93b6456d72a674, 0x69f8bac241efa41a, 0xfd6d33bd56de97be, 0x8ba11d25eb29f211, 0xdcc74abf8eb28cdd, 0x00000000000175 }, { 0x4930372dfef1d08b, 0x211eb15a15de7a41, 0xbd702c378fedd85c, 0xb8433e2044c1cdd5, 0x4bdd20b203504df1, 0x93dd1046d3ec8f9, 0x8094998392c2414b, 0xea638cc492e97c28, 0x0000000000014f }, { 0xf4ddb2ea2c95f92f, 0x44d73f7b815b0573, 0xeeb0061c89c7f9f8, 0xb706deca63bce662, 0xabf5c324352bb98b, 0x4bd464bfd43f2351, 0x839fc638246e7171, 0x36db8a1975c9d68, 0x000000000001bd } }, { { 0xd0e71f67ac818e57, 0xa86c2f7e65386f8a, 0x8258722fe3dc02ce, 0xa384764c4485418f, 0xd5e897911a232be7, 0xba63334999d54a11, 0x808fe6dcddecd37, 0xb4ec3aa8e24e101d, 0x000000000001d9 }, { 0x8cccd7e925a8b68d, 0xfa0e5c9862b9ea1f, 0xe0f668e4511d9966, 0xd0a97c52b974a565, 0x95e824016dab1b71, 0xfbf005ffcb6d297d, 0xf250b138476bc902, 0x134db9d61b436b14, 0x000000000000e7 }, { 0xbe881496629a0eae, 0x8862d1cddb4c1062, 0x5e0c5553e05bbdd5, 0xd9c090d2f64c2206, 0x8572e39616f03e17, 0xc59f488b07a6f892, 0x1dbd6c7a65a643cb, 0x1fe4377d33aa77ff, 0x0000000000017a } }, { { 0xcb4b4a32b881d616, 0xea10ea7256ae92a2, 0xaf17ad7e7de8f73a, 0x3fc1a95a24acacf, 0xa8c32cb40bbbc044, 0xb4849473aa1968e1, 0x515f25f57d3c1afd, 0x42cc436fba63fce1, 0x00000000000081 }, { 0xded73589c2a6ef85, 0x1cd9b884035be0d5, 0xca1812d84468894c, 0xe81005a315e587e5, 0x825e6de3fd2c367e, 0x1e201c4f962fb069, 0x28004483af32b313, 0x85c7b7f543c6c6b8, 0000000000000000 }, { 0xd98330fdbc657553, 0x827796952005e6e, 0xb43771e099879f7, 0x7f7b1e1b8e8bf24c, 0x2c5f9365c45684d7, 0x1b359089f51fc442, 0xcdebceea34dc45ea, 0x8c2ba30221c780ff, 0x0000000000007c } }, { { 0xf193f82b6a9be6ea, 0x267fade52ea9307c, 0xd5099b74c9a01eb9, 0x83e6a5a3baf92f10, 0x4098718975df07bb, 0x1114cd9ec3f3376c, 0x9cf9172363db8e3e, 0xd892be2012b20e3d, 0x00000000000054 }, { 0x1726d7a4068f46a, 0x49ae276faa2c962b, 0xb293e92c37a8903, 0x5ca6a41ce8d6a805, 0x10a5b38af1714b00, 0x1225f11fd763e543, 0x57daa813eba54b4c, 0xd0feeccc3efbbaa2, 0x000000000000b8 }, { 0xd7a9fbf70b28969e, 0xe4d6d10d4e824f2c, 0xf3008a272be5db0, 0x982923608e56abeb, 0x7044f960cccceefc, 0x6884f620fd309b6d, 0xf9c677088123c611, 0x74a51567810cfda1, 0x000000000000c5 } }, { { 0x2c7c02ac945abf50, 0x8329ff43846cdd2, 0x587f45c6eb79319a, 0x32f153473bdbdbaa, 0x7b3e85babd2f74cf, 0xcca447c4eee3fe2d, 0x6ebdee9eb6e83d94, 0xc049ea1409396163, 0x000000000000f8 }, { 0xddcd39c807f882d9, 0xed1e3a606413841, 0xf08b378288ad2dd0, 0x5d252cf11e12c392, 0xf8229ae2b27e0a3e, 0x9ac6b52aac712948, 0x2683069878f83fd7, 0xe9442d7b367e9766, 0x00000000000095 }, { 0x41c949d170f6710e, 0xcc629d6cb6771289, 0x318ab663d7189d6a, 0x14c073a30a44071d, 0x4954e1603f978220, 0xe38457dfb1845efc, 0x55c3dc5b293d9ded, 0x3715a52ab772c491, 0x0000000000019c } }, { { 0x1dcd2d6439654ca3, 0x1fc9499178ed428, 0xcf476999ae59e67b, 0x73d38288c4a4328a, 0x1977429eadbad67d, 0xc70078c4c9f14f9a, 0x1baa67ad0c443205, 0xe604046e7d0ee783, 0x000000000001e7 }, { 0x4d3c2ebaf4d9e09f, 0xa6c6118166318e98, 0x18f63da6191e87cf, 0x66ecc8f70322acf7, 0xca29d30bbb38ed5d, 0x32aac148f41a70ee, 0xe330f19f69236c32, 0xd4371ef95b8a5ec4, 0x000000000001d1 }, { 0xac61f9bb67de954b, 0xfb80a57c6e0c69c3, 0x1605a8f13af3fea6, 0x47cbbf1e44ae70e9, 0xf82316f3d97835ac, 0x53e7d634da9e1f43, 0xbd899e6c2b802ca9, 0xee9166bbf6d92ae6, 0x0000000000009f } } }, { { { 0x86b56395365d1245, 0xed2db34ca55b9e00, 0xb03ae3a462650d13, 0xe090bcf358be52f1, 0x28254583d8e37492, 0x45edc441ba0537fd, 0xfe2887071e67b92e, 0x10959babd0392ce, 0x00000000000109 }, { 0x1ea1e6cb374d2bf0, 0xe58e89c2d87a524e, 0x97fcab1e92cefa28, 0xd268e530bdb80da2, 0x6c6a1e7980724a94, 0x8827f71d2295d330, 0xa891a0f3c3f679c9, 0x90e1a2c23bb569aa, 0x000000000001c4 }, { 0x2da5377dae5fe4, 0x9dba48330205e894, 0x83b3230c60d156ff, 0x6db2e7052a78ca9b, 0xb01751ed2e51824d, 0xee00e4797b73fc1b, 0x532bc932da240bc7, 0xe58b69c33680a169, 0x000000000001fa } }, { { 0xc894f76ce02fd9b, 0x8113b0973f7c696d, 0x332b0efe7ad69077, 0x1aa0e472c246a94d, 0x124861255c5ab566, 0xad2ccf9bcd5dc204, 0x768df24dd9cd287b, 0xeec8e535b1c89ac4, 0x00000000000086 }, { 0xdfff5c3ececa03b, 0x9a60343ef75ff45e, 0x14f6dd4eb1df84b5, 0x8e70f2c612575ece, 0xb7fdc711b232cc6d, 0x871c7f5451c1a606, 0x19b1d5081ca729f8, 0x3b515f6afd1102ee, 0x00000000000067 }, { 0xb43be9a4eed8aa55, 0x9b1de4e6d8414f80, 0xc212d6960140968c, 0x3fa519c24adaa8ed, 0x354ccab7a2f7108b, 0x234da105dc0d0403, 0xc3e60bda8dc3cd2f, 0x23db9339ed137962, 0x0000000000006f } }, { { 0x1d2c0f7e3169f883, 0xa937bc0b1207238, 0xe1f21f16a55dd264, 0xc3ae00e6c56f8d52, 0x55d40fab931dd491, 0x1fefcf3e9050a0b6, 0x51de78c8c252558f, 0xe823abbe2d57ff9a, 0x000000000000f7 }, { 0x86f13f7abe353f9a, 0x4fea94d4fa435c0f, 0x4dda891d0d746a5c, 0xbcf8b47ba5046254, 0xb94f72d9ec86efd6, 0xce3a4706e32afb80, 0xabb70c012e032ee4, 0xf327a0446c7ff182, 0x0000000000015a }, { 0xbc87cbc6a38276d5, 0x37bc80518da61b7e, 0xee2c91a2532d7bf5, 0x5653bb573adffb6d, 0xa115615d55c5088b, 0x3a1f9bf5a20a2cfa, 0xd11d31dfc59ee0dc, 0x1a354af1a7a1ab5b, 0x00000000000183 } }, { { 0xc6d1beb4e2a0c132, 0x816b194700c3ed6d, 0x1cfb72eb0be08fab, 0x9e3282e5a49fb850, 0x730729e4d0f18d45, 0xbb855442d06c4378, 0x114f8cdba4a0fc01, 0x7f9015ee340e5b5f, 0x00000000000065 }, { 0x783d7b53e35aedb6, 0xf83baec86d23dcfc, 0x4cf9043e23a34821, 0x31fa1a2f025ee4ae, 0x2232dcc860f4ddcd, 0x32f76509710bd77c, 0x6163bcc6fe9c0523, 0x46ffcad17789f74f, 0x0000000000003b }, { 0xf4488f150bc50e8e, 0xa620e6dd21545c94, 0x8bbd45bd98223102, 0x2fe9115215a694ba, 0x612a457824d47f19, 0x15da21220b8368ae, 0x57223ae82e21db5d, 0xc48856538c7c75a3, 0x000000000001a4 } }, { { 0x5f39b6199f69ebe6, 0x2ae1acd143c8c4c3, 0x22ea31187e475dd7, 0xbc9daf1092a90328, 0x8190744f128c2d1, 0x3df147b2ddfc91fa, 0x5d6b435913d0850e, 0x2749aed65cd0b2e, 0x000000000000f1 }, { 0x1ac8eab9f9c66383, 0x1024db70f90bd771, 0xabd8ed7cce5fd3d1, 0x11b61decf08fb492, 0x7383efaf1f6b57f, 0x4c234f6ad3b07724, 0xe63b74bb3e958e39, 0xa4643aa630d9e191, 0x000000000001fc }, { 0x9044b5c13f283df5, 0xd2ac92f9544f9ea5, 0x87872d68b9f381e1, 0x4f24c759ae079c6c, 0x79ef7502af16e1e8, 0xa52cefbb40ebc9cf, 0x2bc1a226934b86e0, 0x7e1fed4e0e1be237, 0x0000000000012c } }, { { 0x61737abe4d41686a, 0x9955b0bac46a61d0, 0xc9411ea93ac7e6ea, 0xbdbbffea661f23aa, 0x55bc9f82c149262, 0xb85d6e408a71d85e, 0x3855fdb683de5abc, 0xea755df70520dec9, 0x00000000000010 }, { 0xe5adfdb6e810c258, 0xc59a9f5b7737288d, 0xeb94dba8d9d3fd81, 0xb549652280ad94c9, 0xd651047a6082e94a, 0x8263849926de5898, 0x953bbf527fc43364, 0x9913326a2bec2b12, 0x0000000000009d }, { 0xa1c8a74046d969c2, 0x592254e9705d52af, 0xe596f4c3fb3ffdcb, 0x6d414da455c6a996, 0x4bab386e0002c34e, 0xb228f64a15d249e3, 0x1cad8252d436f631, 0x6f324845e50ac5cb, 0x00000000000176 } }, { { 0x42ba0e0e4c8a9e87, 0xe70aec22c2d0a70, 0x20a5ebff140ac28e, 0xfc0d06faf2e8ca02, 0x23ab02a26f371ae, 0xae778b56dff0902d, 0xc41a4a2f3bd87e52, 0xdb655ad1a80226c0, 0x000000000001f6 }, { 0xa091c4743bf6ffb2, 0xc2e398fda4558b5a, 0x8f1d0e8be0d66bdc, 0xf1cea23f5117d67d, 0xe39fe6da260eb5b3, 0xe9153d86618f6d83, 0xbf654f6233fbd86c, 0x452a3251f7058dbe, 0x00000000000025 }, { 0x7c7397681e34d860, 0x81433f8f722caedf, 0xb8e6f1209baa6041, 0xd61ba1b89569d4fd, 0x81db7eeb2cbaf70e, 0x4e8060662c1668ad, 0xe09f83f45c56624e, 0x8ccb3aca59d4cdfa, 0x0000000000014c } }, { { 0x16073c3bed32a9df, 0x365b0340102a5e3a, 0xc9b0d13e0c492349, 0xbdc70c5c0b46b4a7, 0x54c08e6112e23a38, 0x9dd68c971fd4db24, 0x9f36a25b5e8aecd0, 0x11250d68d09f4d87, 0x00000000000071 }, { 0x9fbb66efe2fa358e, 0x943c1536f7f14fbd, 0xbf2c7b1f1882b130, 0xd7cc259fbc4cef19, 0x158ec9399b8eb4f1, 0x75b7e80298619c3b, 0xc099c6dd590b9f65, 0x82ddbbfbf720eed1, 0x00000000000135 }, { 0xed047084f932cbf7, 0xfa0172e00fef37d6, 0x6ef8c5a38c8dcb2b, 0xef4fcaecd94512e2, 0xf6149bf62480d851, 0xa29e7299909943ff, 0xe3f83005f6ead631, 0x2f62c6f5ed378cc6, 0x00000000000140 } }, { { 0x775494cbdc9a3730, 0x772172d4ae7a66d5, 0x389e18e63c6d3867, 0x5ea1ecea531e86fe, 0x511333fea92c45bb, 0x379115d47e257820, 0x2b570f6019b5c4f7, 0x68d31619f656f06a, 0x00000000000100 }, { 0x2d3e337bb91be6b5, 0x61820e99e2a53522, 0xd627cf09038e8993, 0x392afb1cc3b24ccd, 0x80e77a3e7393e585, 0x533d63372970f972, 0x84011330334d6e23, 0x66e587e0de2a535b, 0x000000000001cf }, { 0xb03f8963371e78f9, 0xb687c665674eef15, 0xce7cf89aa34e049a, 0xedb7a00d7116b511, 0xbd1c54b0ecd08c18, 0x393b3a99a8b7db11, 0xc719a91ba3f3849e, 0x69bbc4acbb2eef43, 0x000000000001f2 } }, { { 0x5eb40b9e1f3f112c, 0xfa9ec57419c3398e, 0xbe7ff4a34b16b60f, 0xb8b41326ea372471, 0x3146fe2a7ee07ce9, 0xe4e2cf04648cc73b, 0xc232e2981dfadaa, 0xb17d5d02f6de020, 0x000000000000ba }, { 0x6fbbde18dd96ab20, 0xc20f7514fd233f18, 0xa1dfdfbb60787bb0, 0xee1576e5ef09bed9, 0x57356247f475de74, 0xb2e7a3a70c5da4f6, 0xdb7d2a0b9e237bf6, 0xd84a31de1cdce0b4, 0x00000000000083 }, { 0xe64483d8e041dad6, 0x8a190eb8040376c, 0x8fa313986707c9e0, 0x79006d6e2230312a, 0x71a675504421b312, 0xde0320fe818eccca, 0xf9e126c29922b524, 0x21ef17be7d9d22cd, 0x0000000000014e } }, { { 0xabe3535ae3a1db42, 0x444af157e6c64f45, 0x80a5ca14a86a841d, 0x5958f0fb7165bb6e, 0x1c5a11757bfa53eb, 0xf3a1a1390443cead, 0xfa84d176ec1844d4, 0xbc3617a44b9ff9c0, 0x000000000000fa }, { 0x4fd4cfc85a4bcf69, 0x318b4cbca59cafc7, 0xbe480e1f884eb1ae, 0xb9a3731e5b21cc9d, 0x3bbffed11358b5f8, 0x503e6532f5959448, 0xa80410464cf46977, 0x84fd75c5fd4f1cfe, 0x00000000000007 }, { 0x5f5bf74df0d70d24, 0x947570532698323a, 0xd4e1f10b640b9ee, 0xc9631c84cf538398, 0x3b0e36a5713cee66, 0x5da59d64b6cddeac, 0xe45f547ce57a90a7, 0x7d8f4a0fd46c5086, 0x00000000000062 } }, { { 0x8a4d4289ae302e8e, 0x6a56b7a4365d0e29, 0x9cc14f2b287aa3b7, 0x2953da15b66bda1f, 0x89616c95c72eb19, 0x2668111d0434dd46, 0x3accc1f4fea25751, 0xc6eac05620d2aff7, 0x00000000000182 }, { 0x93e1b80b4d1a97c8, 0xf139c44b42b603a2, 0xb323da07e1abfeec, 0xa6e64292a1e5b34, 0x335e8d7febdb8cd, 0x5915938f4cb95249, 0x2d1a0c91e3467571, 0xa4a27105a8fbacc6, 0x000000000001b3 }, { 0x48fc9afce72de22f, 0x88e7bc70076aba91, 0x5482ebe0f67c7ac8, 0xac08ea10a72f913a, 0x502e3e3374af2e59, 0x45de75b1719067a7, 0xff61f5d600918490, 0x8499b5291608b6f8, 0x000000000000e1 } }, { { 0x93c533133cd981ef, 0xf1b44c30ef898ce0, 0xca75c05afc4528ad, 0x4a987322d737bd37, 0x4db8d4c09b5d256c, 0xbe294ee975b08a14, 0x6b1c195d66293c01, 0x895188c35bd15c68, 0x0000000000002a }, { 0x6202ee48b2205ae5, 0x41b12712f620f571, 0xa041cbb8424facbe, 0x23f6311eb71ccd94, 0x7e8085a1258454f0, 0x377df41f58c275a2, 0x471d37195e53b4fc, 0xe451f59fcf6affd6, 0x000000000000e5 }, { 0xacff466ec2312b48, 0xc23cb382f60b1db5, 0xea1e2236e9edf148, 0x3a21e17db1f0b33b, 0x6526d398130d32aa, 0xb3a0b5388a33f64c, 0x62030757689f6c17, 0x2b6b9c596ba2ad33, 0x00000000000106 } }, { { 0xfd69746244917515, 0x54efb34a6f9e407e, 0x4159176898ed95c3, 0xdc0487197d88e544, 0xa44b02c0dbfa95b9, 0x6fcb94e5d8f4c4cc, 0x5cb583cb78a42a38, 0xed1ff58e630a474c, 0x0000000000011e }, { 0x4ec942d294fd5547, 0x717f05045b520793, 0xa3d18d5fc3193fb0, 0xc1297a23aeaa1e52, 0xd12b682ccadbc865, 0x448b9c1b15996280, 0x2aeb48643009e5e, 0xb21b9ec02c3320e9, 0x000000000001af }, { 0x187450d993020a57, 0xccb62452eaa0192e, 0x8e01983a4ef808a8, 0xb481f50a41599992, 0xd0c34aec53b1eedb, 0x6a654d3a112b7d00, 0x17c9723f6e3b7022, 0x124f386b47c544ad, 0x00000000000184 } }, { { 0x3b4f56afeeee4692, 0x24e8756eebc33d2f, 0x823940cd9e507972, 0x718d5ba6602bad84, 0xfcb9202f08c80b28, 0x3bd50b3e11bb7afd, 0xdc38402b5baeee7c, 0x197f49c5fd9e229e, 0x00000000000040 }, { 0x46e63f5158376e9c, 0x993000a37afb9883, 0xb08a18fd7d84850c, 0xea0d7452b18f943b, 0x8018d209368899d3, 0x71edb200aca0a8c8, 0x10de21a4c97c57, 0xdfb310effdc0409f, 0x000000000001fd }, { 0x7eff6f70095ae96b, 0x1d89ae4d75f6dfb0, 0xea79b69f7abb5c6c, 0xf9808d91960863a7, 0xd1c13050b0b2c9c9, 0x9ea058010c3d1300, 0x243a689299123a8f, 0xa6f34ce70c7d792, 0x00000000000061 } } }, { { { 0xb591b27fdddfa434, 0xbe368ec003e28f8c, 0xfa433bb792d57a7a, 0xcfd7d573f0fa736, 0x4bc735f18ca48f33, 0x4c427fcf06388d87, 0x56198a3e56e1bafd, 0xb4dcabd12c0be599, 0x000000000001f5 }, { 0xf0c4833ab0e1dd09, 0xc590f2d83b3ddfa3, 0xd8c1d9fd716da5e7, 0x7c4d9051372d9550, 0x50ec1ea38092c734, 0x2cfa7fb75637b790, 0x7b09037901351e6b, 0xe55df45a83ebec40, 0x000000000001b7 }, { 0xab45ac211d9b7026, 0x1dde941ced90eb2d, 0xe6fb2f6b5bc0d809, 0x9594a99cf5c24655, 0xb280d8f752f8070e, 0xa6995d710d16548d, 0x1380d3469e4f5c3a, 0xcada2078572a9983, 0x000000000001d6 } }, { { 0xcf2b0fdb4b948637, 0xcc551705674778e5, 0x3147fee58a295563, 0xb34812f2099e287e, 0x6e31f6b8bf8f56c0, 0x84bb66e490d3eaa6, 0x78b57f175018f279, 0xfe519e5d96ae4303, 0x000000000001d3 }, { 0x16200fcc67e8c0f7, 0xc51481bb69c758a, 0x7d1f1a732add6798, 0x7a3f4daf6a87fdd9, 0x1d95b474ffbf709e, 0x1c0a5fbf338532f1, 0xdf4186df3a922a76, 0xde897343bfb9fb1d, 0x000000000000f0 }, { 0x7a04e8c71fb87a91, 0x7f0f0e1e9318a5f5, 0x1fc7930bf9122d55, 0xcde91e792d2c904a, 0x9005aef3b70a458f, 0x28baaded5c8aef44, 0xe73f8127e06497c3, 0x6e66ee309cbe617, 0x000000000001aa } }, { { 0x885595077cb20d1e, 0xe78d3c816f075cfe, 0xe838bda0212f82aa, 0x289c5d53115b0d5e, 0x6dd44ebfddacae68, 0x569af48aeff6731, 0x88bc2d45cb159fc9, 0x17b213ca295d072e, 0x000000000000ec }, { 0xb87942f895e9d13a, 0x135196c628b83a17, 0x5ee18f6522b87bae, 0xaadfb25b91591d4d, 0x22f0e9f89c03737a, 0x85f24903b84eaf25, 0xff6e552913865ee1, 0x19e320c662525fed, 0x0000000000005a }, { 0xb6fb4265493fc026, 0x6bec59a07bcacf14, 0xec5fa8838df5cb56, 0x7a86b034eab08ea7, 0xb158c4ccea6b7655, 0x23d18eb74747ae15, 0x89e7daadaff86a38, 0xacb8083e83b013ed, 0x000000000000e8 } }, { { 0xc8ab5c168fa43d75, 0xf526695ee53e1944, 0x7950a41e9997b0c6, 0x3d6b85acf50b5110, 0x22fbce8b54c80564, 0x324051be5c5ea5f2, 0xbff6a1e92d189442, 0xcb415a6a4476bb10, 0x000000000001b0 }, { 0x512fb8b7597cd2e3, 0xe8867d1cf035cc84, 0xb87001f4143d40ec, 0xad262eec2731b76, 0x1a94b4eca5c61d3e, 0x2b543404bc911abe, 0xca5e1ededb614cb7, 0x91613b2d7f7ccda1, 0x00000000000123 }, { 0xaf201b9ac95107d5, 0x39791fdf29158e6c, 0x9cd2930490a71afc, 0xef39d0afa5b29bba, 0x63be0733b887c721, 0xd7b5b35dddbb4b0, 0x31c76e4193e7bda6, 0xaa7528bc3e046bfe, 0x00000000000017 } }, { { 0x4ebc0d1c73451671, 0xc3dd1c3aa06906a3, 0x56b81826788b9953, 0x3011667e6ba271bc, 0xc6e3e579bfdac3a0, 0x2c0f477a289419b7, 0x840d501fb86814b0, 0x4dc62c2b96e1ab8c, 0x000000000000a4 }, { 0xe46d726f2527370d, 0x2770bc5d98500c0c, 0x353d8f0ad2bf04fd, 0x69c222b39e836397, 0xdfa07ace1424153d, 0x645182502eee549d, 0x29a4259a9aab97b0, 0xa3cd706c95623abe, 0x0000000000002d }, { 0x73c2fd8e356906e8, 0x8545c2306b11acd6, 0xfbece5227884bae1, 0x3efcd8d880873983, 0x45650ecb9f5f3377, 0xc52d3f45a9409190, 0x5630ecb4398d73ad, 0x7104c40d0bdb097d, 0x000000000000cb } }, { { 0xa2ca2ce4e7896626, 0x59bff2c6ec29c24a, 0x6fccc8abfde9e92, 0xab8bdc105d373a6d, 0x960520046ae202dc, 0xa37fab06e410e15b, 0xf5da3d7cd0295c12, 0xd498cca08a75b9d2, 0x00000000000175 }, { 0x3f0c17f134604405, 0xefde344bbbc76627, 0xfc4587e2fa00f3c3, 0x52dce97c7d47f3f5, 0x85b5cfe2803bba9f, 0x212ef8229de8278d, 0x5007d25161098acb, 0xc0c3d503183dcabe, 0x000000000000b5 }, { 0x40d4a5fc1d676fe7, 0xe5cfd851b5d9b008, 0xd7252a857f10e376, 0xac752674fafa68c1, 0xb4edba356384f55f, 0x18bed9c62037a979, 0x707236f3aa12ea28, 0x7b821360f67cd3fc, 0x000000000000b8 } }, { { 0x4b8be8027c819c07, 0xaec82ef8e3f18017, 0x85f1d7eccb2b651, 0x601376abb59e013, 0xb58ad71ae1f6df3f, 0x30c1d9e7a06ac257, 0xd88339497e8d77ee, 0x612c9b6c85963f03, 0x00000000000077 }, { 0x2a3d597d6dd4b2d1, 0x16d1efad04401721, 0xf65c8e7761e01205, 0xb569cc5fbd953021, 0xb8dfa4a384b86b42, 0xf24c7b25e10d260, 0xa1abd1ef4ea040d6, 0x5bce1305298fce47, 0x00000000000104 }, { 0x992a67ba165a751d, 0xa0ee7e09e2e9ae, 0x16315b8fc7c1e548, 0x253cef1b3cff80f, 0x2fe5cd69c01f793e, 0xaff281cf7ecf2c9, 0xd778214b9e63cedf, 0xa2f9e2a40c276773, 0x00000000000144 } }, { { 0xa4954d59f7c685ed, 0x9babbcc3c7227041, 0xe97b22215211a8d0, 0xabed71b6e7f05c82, 0xd0a4df8e8d53de1a, 0xa3f2f4601cab7a8f, 0x62609e8a9dd6fa5, 0xc055533a5c02f094, 0x0000000000006d }, { 0x89568f3cb6da233, 0xbfe8b234ceb9346f, 0x28c8dd42d0b98cb6, 0xf6ffdd0c349434fe, 0x320263369ea73cc9, 0x5a349a4039d2befa, 0x4d56eb0aaf5588a, 0xa680be9c62a964e8, 0x000000000001b1 }, { 0x480ee6b3578727e0, 0x3a81a06527ac80ab, 0x3c636b2fdecb3f3a, 0xcf125aae549d15ec, 0xb1cffb270367950, 0x9b413026d8622fdd, 0x582428c983e30a91, 0x69c5a70bbdb5658a, 0x0000000000010c } }, { { 0x57e77b0cbf168222, 0x51bcea2928e3f46b, 0x283681f612c07649, 0x34c4dcdaebd8a6dc, 0x1338d928f5a52c12, 0xf1888800910e526e, 0xe68c407f6a9be978, 0x7bf8c43e9666e12b, 0x00000000000161 }, { 0x633a26dabcd42314, 0x734b5fac14d46387, 0x64d80263fd576f7b, 0x9667f3766d6024e3, 0xa672ee542ba3d627, 0x9035151b17b5f745, 0xa2a3ccea8c7b075, 0x3519a49273396ee5, 0x00000000000166 }, { 0xe6ff4a58314c7549, 0x1a22c9e029152866, 0xd5f44fffe0a23555, 0x280e02e393561181, 0x94a81d83f92829a, 0x6d3fcb0f742d6004, 0x35e1cd9530d081e9, 0x64576a3823ecb35a, 0x000000000001cb } }, { { 0x8f4305d558b60042, 0xa136e0abe304a477, 0xca7fc58ab612ec7b, 0xd2d7e820135473b7, 0xc6fc03d806108ef4, 0xb0b22d22ac28b886, 0xcdbd5154ea7c991f, 0x36923590e5b0fe0, 0x000000000000cb }, { 0xed64256378f04a74, 0x326dcb821b319f5, 0x13b970514888df36, 0xd92f83ddd31fa675, 0x5599ea24ff79fdfe, 0x2abcba447c3562cb, 0xeafba9b44ce1b70a, 0xa78f52bb44ed9f1f, 0x0000000000005f }, { 0x8b53892fe960877c, 0xb3792a1d6723adc8, 0x33eff86ad91d39e4, 0x22574611c5759791, 0xa89a736c634a3b5, 0x2f61bbe5851b951, 0xaa80ff00f08a77ea, 0x10e23c07f1c07769, 0x00000000000084 } }, { { 0xb8f4a3f9b2759e2a, 0xf5af83421dad14dc, 0xde43980ea5e53daa, 0xa2d28fed0d33f2b9, 0x456f1529b510844, 0x79167daad5a20312, 0xf8636e72026111d3, 0x337974f38408deb6, 0x0000000000006a }, { 0x8039943a2667acaf, 0x7b07819ae7f7708c, 0x954a8e4869e4393e, 0xae80b4a7aabc05bd, 0xe9e897b9f0404800, 0x8d618927cbbfc680, 0x57d810daf6beba1f, 0x67a51d0f6857afaf, 0x00000000000003 }, { 0xf4b3bb4544ca8d63, 0x687e02766f9b5e5b, 0x8a9e092c2fbce2ce, 0x5f2431fa6bc38db, 0x33549a603836c5a4, 0x4804261c920fa4a8, 0xa9e1af8a34ca16d, 0xcdc89938a11772a, 0x00000000000130 } }, { { 0xb0777580b5e71de5, 0xaca1bd3b8fe0344a, 0xfe5b440705483bbb, 0x191e09f5da675d2d, 0x3dbe9fb2dd94ceb5, 0xf7c94b5d07969f7e, 0xca924b751a17115d, 0xadcf0b373f3282b8, 0x00000000000031 }, { 0xeaeb6d2663a96fa3, 0x457cb3587d49f771, 0x46fdfd49aed1d009, 0x8f652fd3f981147d, 0x2d1b2068588ed4cb, 0xb21d9263e52d4d9c, 0x40e86e54de5ed616, 0xc1ba4d7406f12639, 0x0000000000016c }, { 0x45a24ad697ce2fe0, 0x614bef3edd673609, 0x5569c34915e8b254, 0xfe5fa55b6dbbd86a, 0x45918155a4fe1307, 0x4e5106d00249e08a, 0xbdbd6bba4c0fe751, 0xb1ef4c1a2109559d, 0x000000000001bf } }, { { 0xa4fff0ff40e9475d, 0x5b8845b18b0083e3, 0x82d883ac992ca6f7, 0xab0fee78f90d876, 0x700e6f7595bdae3f, 0x917252eb0432377e, 0xbdb9019a65fe3416, 0xe7b71eab38701e75, 0x00000000000027 }, { 0xecc37c6e5268d336, 0xc43129a22e0caf13, 0xa055e7f8bb6867d4, 0x9cbcdbcc1158e255, 0xb0ae65a617d4c5d6, 0xd53200377a7af6e7, 0xa1067bf9dd0321ad, 0x9d0fe7155cd7b194, 0x000000000000dc }, { 0x70cede4c8cd0607d, 0x1f8dea3b193a223c, 0xe6478de842ffddb6, 0x119498e2b52605be, 0x8fbdf21bd993a061, 0xd7a6e128926a6a59, 0x9238e06a8106dde8, 0x48d812920dc50681, 0x00000000000003 } }, { { 0xa341c887eb7c4922, 0x3eafe3e1d563a865, 0x1016f73dbcc8756, 0xd0dcac45634585a9, 0x2a2e54b734e1299d, 0x31149f313c6f4e07, 0x8ea232812cc77569, 0xed842bc81725835e, 0x00000000000051 }, { 0xee7f783a832fe37a, 0x472750c06f0b0baa, 0xc3ec753765a0ed86, 0x915dca6175196d2c, 0x31b97301310169dc, 0xa92ca7f1c7b1370b, 0x4188040e2e9e7d0a, 0x152bf86c949bca2, 0x00000000000018 }, { 0x3cf1681eb88e0a59, 0x3d64cf49c563ac35, 0x2e43a4c02fb0a848, 0xc62a5f3a519c4388, 0x21e95b2ae216d6fa, 0xe8eea4570ba6e1c5, 0xbf9ba35dce9867bf, 0x4638a0f956483fca, 0x00000000000056 } }, { { 0x486e495e9d51c7a2, 0xf9ca9da3cff9505a, 0x9c2b4bac924ffed6, 0x4798af5a8d65b761, 0x7bad1420a2ebedde, 0x52fb16955a980b06, 0xf32f74ebf931984, 0x2e7119ca27eb8cbe, 0x000000000000d3 }, { 0xe66f01e21a393aa3, 0xce7f564add2b92a6, 0x441e81649d65cea9, 0x3f4ecb56a487a74a, 0x42e31faccf35a5f9, 0xb257d2514038de16, 0xe99194b9fcc62a39, 0xd4ce7d1d4dc7be17, 0x00000000000139 }, { 0xec201d7d5c8839a, 0x947010b986ea4072, 0x907b159798aecf09, 0x55fcabfabb609f1e, 0x21a5e33736309ba4, 0xcf176d8022fbb828, 0xfebc6f6c46b7521f, 0xf7f63f4a08b6220e, 0x00000000000114 } } }, { { { 0x9d7c3f9fda633639, 0x618e04528d8a8b0f, 0xfc56f136660a3bf0, 0xcb82e3060ea31580, 0xa07d6fe2b2abce2b, 0x56ee514afe3018b5, 0xc91f75115f3f26c5, 0x481f764ac1546de8, 0x00000000000036 }, { 0x2876bc4983d4ce99, 0x9e49b5a89a2a8667, 0x87efa340b061f959, 0x9b0d0188df38f9bd, 0x106c1b632e53bddd, 0x75f75006e0af02da, 0x6ff885ad6401ab42, 0x498aead096354a4, 0x000000000001e0 }, { 0xa96294b1d7d47f1c, 0xd220a969770c0146, 0x85ff711033cde0e9, 0x850c4e0fe55ccca8, 0x6cc53f3f02cd958d, 0xb0434063d4680529, 0xd84f874d7c4dd0e3, 0xe13b7fbe7adec8df, 0x000000000000c3 } }, { { 0xcf52515363d7ee29, 0xf7ddc4e9f9f62ad7, 0xe9766e0a50832ba1, 0xbcaa4c9102922b4a, 0xf8795779ecc6a1bd, 0x16d0f934ded7f482, 0x2f243b8e5f9424dd, 0x5270cce7d647f9f6, 0x00000000000024 }, { 0x18209a4e7423f92a, 0x78228a687cf709c8, 0x3e45e3a0cebace7f, 0x5bb16fda48cd5f23, 0x59bd15953b34b99d, 0x891ce0823962f57c, 0x7240740085b312cc, 0x33ba795d5216e2d1, 0x000000000001de }, { 0xb849e89fa508f886, 0x1513a741298987fe, 0x747c522e86db8045, 0x3de116cde5d87a5b, 0x6f1b902c24b6c385, 0xccbe4aa4c4e7208d, 0x9eeabca7bf67c1b, 0x1bc21fc9f9348a70, 0x000000000001fe } }, { { 0x612db5d37aa2fd53, 0xff19b8f43120bad9, 0x34578e8a034c1300, 0x42f511ad5b88f406, 0x99dd54b8282f6d00, 0x2669b75c2124ad35, 0xa8674f1ce512077c, 0x9c2346fe58330de4, 0x00000000000040 }, { 0xbcf07c4f87759ddd, 0x3b326438686eb8e0, 0xc872572348ae8aa8, 0x59caa98384a6b896, 0x872ef2cba8939247, 0x291c0b522fd1b237, 0x7b331793bbd6b3ea, 0x533630bba650a0a8, 0x00000000000077 }, { 0xfbb6b261b6749e0f, 0x2b2691029c0456ad, 0xf26996e14c26634a, 0xd7316cc28e463d8e, 0xb2cb00c76e761df9, 0x1b410b53aca44c72, 0x6bfdf16e7e0e9e86, 0x5bfb08cef8d3fddd, 0x00000000000015 } }, { { 0x143cb8c2d66187bf, 0xcb3bf3a6ca5d2167, 0xc93e3ca281e2f991, 0x49e26c7ba5c0ce1a, 0x5f8b8d850d85236d, 0xb3304a780c64525d, 0x20f311dfb8d48871, 0xf75032efb16fe87a, 0x00000000000063 }, { 0xb9812f445ea796db, 0x4cab27b264880c6b, 0x19d665126d7ab517, 0x3693a1986adb8d38, 0xf850aac6662d21b6, 0x6fb27add7b1b2fd, 0x85628c9742a4db6e, 0xdf7f8a33239794ca, 0x00000000000098 }, { 0xf1a01e9e2fbaafa9, 0xc788a9d21ac2588, 0x52a4ec26e2114cec, 0x24bdc3c36807dd22, 0xfceb1572a6d39439, 0xe7cea90248834062, 0x401eb8945f5666d0, 0xc4d70baac3fbdd75, 0x00000000000033 } }, { { 0xaab4891ccbed95a4, 0x4dd53f0cbdbeb720, 0x4dcabe73ca0bcbbc, 0xa1c17ab19d3707a7, 0x7469d5c1907d796e, 0x2582e173f0af2e8, 0xc991cafa146651e3, 0xc7d12e3f260b36b7, 0x000000000000b4 }, { 0x40cb4afe3a8d54f9, 0xdf83a85f4516afe9, 0xfe6ae4efb49e9d3, 0x833cf92fa313b5e5, 0xa165ff2742aee7c1, 0x803cb36c833ad321, 0x4ef152ceb2ae6717, 0x3600498414204dd0, 0x00000000000002 }, { 0xef51490236aebad0, 0xdc9aa0cfdfcd46d4, 0x56cb6d1b1f3219f8, 0x7657a72da0d7a08e, 0x3cc95b08cbb93f31, 0xe8c650a65d2048b2, 0x82aebb933cc641b6, 0xa1ae46d26137ac81, 0x000000000001c0 } }, { { 0x291cd76ef528de41, 0x4bcadd1fddbb32ce, 0x51fc2b217ebc7223, 0xea0c3c4979e6c163, 0x1627ff4f88e7e03a, 0x67e816c30bae19a9, 0x674181471b5b1b09, 0xde3b47dfac3f59b9, 0x00000000000029 }, { 0x90d4133705a2f3d5, 0x941752c33743e382, 0x305064ea1427c57b, 0xcf3cd44e863549bd, 0x81faa0abd90882ed, 0x8d1b27316a66600f, 0xc4d9d4bdb85c8c28, 0xff8604dd23ca07bb, 0x000000000000fc }, { 0x1c93036bd51b4f60, 0x5994738a043de842, 0xc533b36a0374db44, 0xc7d10718d35d717d, 0x700ed92a7242b93b, 0x888608eb8720b5ee, 0xa3322a47701cbe70, 0x3f074af43d821dc1, 0x000000000000c6 } }, { { 0x401bed1c766fe72d, 0x2dd8d3c2ee183c60, 0x49de556138f673f, 0x8946a9f145b6feb5, 0xb1a2d0ea77928f2c, 0x49b551caa50f842, 0x4ea68ab78380804b, 0x40634d7d622b6b2a, 0x000000000001ed }, { 0xfea6fc287db6947b, 0xd34db819ee3f720f, 0xc18a93542c1e3bd0, 0xe6dd79cb178bdd3e, 0x17f017c76a49feae, 0x85cf1186397ebe66, 0x6309a50dc367a4c, 0xa3bdf8f2e3f9f3fc, 0x000000000000c1 }, { 0xb45a5d78f2e1573, 0x2d83ff33f9e0f87d, 0x6c71a6511d5f1aec, 0xbc7a82a638e8fabb, 0x6fa811e8c68c001f, 0xd6ed333b2412d394, 0xdf12dc8257efcb62, 0xeacf2de736807749, 0x000000000000b3 } }, { { 0x13c8fff84ff367e3, 0xcc447d574ae6d34d, 0xfb32b2bd9e188463, 0xf1827ca16b4e1242, 0x6c8cfcb24370d2be, 0x7902ec6c53bf0ee7, 0x8c059761bc5bc793, 0x6fcde17031d815da, 0x00000000000073 }, { 0x724f7fa05c3d055e, 0xde3a43cb82f7e888, 0x2d309f54373b143a, 0xbcd5e05a09e2224a, 0x2be62617e0f853f4, 0xc7a4ea5ae8411473, 0xaf99eed7a6b3d193, 0x47a0bf80e5201aba, 0x00000000000011 }, { 0x83a5423765d3343e, 0x6e805e204b2e3332, 0xcddd96b65de81e8e, 0xeea7fe8d43642b1c, 0xc38860b695968550, 0xac289c8e663e3ec4, 0x2caa41e111c85533, 0x92bd5f0e691a65a, 0x00000000000023 } }, { { 0x98c34b28a2f89f8, 0x6e3b8f4b337fb871, 0x4efb08b78c47b72f, 0xb40df70e85e80001, 0xe7f309a9e51c7573, 0xa55f41c43bd78f21, 0x4bf159ab481ec23a, 0xdb67d1fdd7aa03e8, 0x00000000000032 }, { 0x5b2d316fd1b92e07, 0xd75294591a5332d4, 0x996b53244fb3d3b4, 0x7bba3bca68257937, 0xbba98a25acdfd558, 0x48f945ada6e82da, 0xd6d2bed738ac5dbc, 0x129fc1261ae07a39, 0x00000000000105 }, { 0x45929e379b5fc85d, 0xf59799299ba3e6b4, 0x91965374b7aade80, 0x5f6405f53ab79bc2, 0x5ccc2ad10ba87c4, 0x52c1a521c64e2923, 0x7024a48e411c7190, 0x729783b485010d7f, 0x0000000000015f } }, { { 0x71954d31df32fd80, 0x811856d9c33014d4, 0x13eb834e5313373e, 0x6a7651ef17b8edbe, 0x307cbcefcfbbcd4d, 0x4b73903645e414b7, 0x57b98b4b5df525d4, 0x3b78664029557226, 0x00000000000191 }, { 0xc6e280dc63442af3, 0x7346c384a0e52761, 0x2461e1c0e104f710, 0x6a6d46737b133ede, 0x3b8da7cb59f3410b, 0x19cf5b491c55bf47, 0x5b746058836734ad, 0x6400a290ea22b04, 0x000000000000bb }, { 0x840d209c883bdad2, 0xd53e17e076a388fd, 0xcf56accc2cb74f4e, 0xb2a70428ca20f6dd, 0x1aae7119345a48a0, 0xd0b0c7d2abe0ab0, 0xf8486bd5bfaf6385, 0xfc1aab70202581af, 0x000000000000bd } }, { { 0x5e85d53136231868, 0xfd512dd9458e9c2e, 0x32a3ad2791b910c1, 0xf3f09a8680b1ed0b, 0x9d82d62730c2ca1c, 0xe167dac69fe8e659, 0xd8809c61e3de7e36, 0x699c836c794142c7, 0x000000000001b4 }, { 0x97051eb1acf0076f, 0xd7ce58f5ca8f27af, 0xfc932d688e82b7b9, 0x63644158720fdf17, 0xc89bdaa9142d7cdf, 0x2259f06e4cc520ec, 0xf65332718a785948, 0xfbe015fbe63391f8, 0x00000000000094 }, { 0xde221ab57100ad4a, 0x4fc67d29c5757bcb, 0x9372ec3149acfa1c, 0x920d9038a2edea1c, 0x4eabc8bba6e67a5a, 0xff9f6ffddcea0683, 0x1408fee3b2a73848, 0xc4493537f1baae67, 0x00000000000145 } }, { { 0x30059a615b766290, 0x67978e7af10ec2ad, 0x5c88308fe6eff3e0, 0xe2bd5d09f5f414bd, 0xa5f00dec572cc392, 0x31fb38c509b9e396, 0x8664949b8f11f9b6, 0xf0f126a96674d7a3, 0000000000000000 }, { 0x6e7bdbce00ff523f, 0x15ffc8e809ebcf37, 0x29a259457ada824, 0xcac1df8269df7a4c, 0x35b066cecc7b51f8, 0x118bde9e64f83b7e, 0xa0881718eced67ed, 0x6f54142f78cffa5d, 0x0000000000005b }, { 0x83e327821dfbd185, 0xca27851979356980, 0xb8a68ac92fd7736e, 0x9c7e55615c4ee3c7, 0x635e8bc0f1424144, 0xa6a980a34af0c867, 0x6a180ccc36c5725f, 0xa73b458fe531b612, 0x00000000000083 } }, { { 0xe2d9f3798f3b4c94, 0x2f466cfb3901c961, 0xaea1f47f6c42bb40, 0x4d0fd93820462e0b, 0xa5a1271300dc6c6d, 0xd2ebbaa50f14e69c, 0x1a55838cf12ca3f0, 0xb257e6d302ad13c, 0x00000000000051 }, { 0xe8feebe8761593e6, 0x9e4b698b9194631e, 0x4bf430cda4445319, 0xe3237468d6628208, 0x627f256820145b82, 0xe64590e2deb9e234, 0xebde4bf35c90f6be, 0x3e0adbbc5dec5f8, 0x0000000000019c }, { 0x108c7a57cfe873f0, 0xcfad54dfc7693f95, 0x9f1a44648e475caf, 0x1a348f0e533e8aed, 0xc1832008b41559ec, 0xa68041c47e318f42, 0xa91ae6e57b482d15, 0xa7fa9ba63ff95b9a, 0x0000000000019e } }, { { 0x1a0210f817df7fbf, 0xf36cdf35459eda70, 0x94617ed6322ac977, 0x23a41ffec21f719a, 0x2582c3bfb9dfee6, 0x985c6220940cd38d, 0xdfd3ca1557b5489b, 0xcd0508c9f969ea99, 0x00000000000112 }, { 0x632173acdb50bcd5, 0x99e464f1c7ccf9ff, 0x519b19b2817edf50, 0x5cdfc8e50640107d, 0x442635dff3a410fc, 0x65efcfb47bb2299a, 0x94cba930a0b2699, 0x43d6d4d71f6765d4, 0x000000000000e3 }, { 0x5bbf8f841d107afc, 0xa72144931797d7c8, 0xc57104baa67bbf0f, 0x92419cd7e2b249a6, 0xdc3f53a8b3cffe7d, 0x61416c83210e855a, 0x3474519f8478e98f, 0x2be65282561a288a, 0x000000000000d4 } }, { { 0x9c1e87d34002b348, 0x88501d1d60c25b60, 0xaac51ac71f33c691, 0xbbe0c5a776f958c7, 0xb5af8ccd3bbacf77, 0xa07c7181734ccb53, 0x64a8293210cb998d, 0x773afa8ab7f1530f, 0x00000000000173 }, { 0xbd9bc426b408e1d, 0x13feb7e04f8b14c3, 0xb476b35c1dea4950, 0xa0a277973e37781e, 0x46a1b02a0ccdd348, 0x4c808992cdb81029, 0x54a0d23387365c63, 0xb8903e738f49ceca, 0x000000000001fc }, { 0xde1a8877657a5dad, 0x20f2038ca46aa6d, 0x1258246694b6d893, 0x5bfc9c651366cd0f, 0x22885fc013742241, 0xb80ead487c61ae68, 0x3a341311a9023383, 0x8a9ad6ace96e198e, 0x00000000000026 } } }, { { { 0x6a4c7a49bd8a7c98, 0xa308b8b8da4f8ab6, 0x56946cfc4b057e4d, 0xefc292876cb5617a, 0xbd22657d2d7ad303, 0xeaa2e6fc3c551fac, 0x9a54d29cbaaa9c13, 0x5b8fd8ed386d1c05, 0x00000000000161 }, { 0xe636fcdb6b063f49, 0xa5090680b100ec2e, 0xf2424c58bc48d855, 0x3704793c00e9ce2f, 0xee32df6dc2f654ea, 0xa8bb62edfe07a70e, 0x19fc8a1210f0cefe, 0x9c577f67447d6178, 0x00000000000075 }, { 0xd533de4318d64eb8, 0xca22553b94ca1ea1, 0x1e9645867bbd69f8, 0xad3920c512a3101e, 0x819e95f1a65f7b82, 0x962f8975083a52f6, 0x5f7251c60e5da144, 0xc97bb051c533432e, 0x000000000000eb } }, { { 0x15b26d2ca8526166, 0xe8d23423bd13d83f, 0x69869ca7b9892371, 0xe8d1dec177354a38, 0x90103ead33f5bc9b, 0x2b06fa9d5baa9aa4, 0xee35552cc853ecf3, 0x53af52cdd87940d4, 0x000000000000da }, { 0x5209f24603272c14, 0x688a73450f71cae5, 0x6f69946eb6823825, 0x3ff0f9f608f8b557, 0x38456f5c4913ab94, 0xc88858830371546a, 0x952e8eff7ef48b32, 0x45599cf87e36bcbc, 0x00000000000185 }, { 0x6368e5334942f874, 0xcaa2d30a46cb9027, 0x7261aca9380c57f6, 0x18ddd6275c424af6, 0x69a111106bc2e7b4, 0x1ba7cc693c2231e, 0x821ec3678051af77, 0xd1b3e5b286ca0d7f, 0x00000000000101 } }, { { 0x4d97e4ee55350aa4, 0x5965bdce7bd32de1, 0x9474c25d5b7ef366, 0xa0481a9131b54cab, 0xc3ea0e1a4c220300, 0x6a73fc81b641221d, 0xc2e6c16ee0477858, 0x55e972f598b62438, 0x00000000000157 }, { 0x984955c8af32c1a4, 0x48de5308e99a131, 0x4016595deb48879, 0xb5e2e07f8f567ef9, 0xab22c3fe0104f5d, 0x3c1950e0d8f92bc6, 0xb0b25463e3238ed, 0xa3b41b593c7e7935, 0x00000000000084 }, { 0x44b637c305757307, 0x8de4645c6c492036, 0x8b18a1c187ac83b0, 0x9d6bcefedc4094f5, 0xdc65f02f6c3a1bc9, 0x23fa062523ce82b0, 0x60912e80af3a46ff, 0x959d1fc20667d7f8, 0x0000000000013f } }, { { 0x26aca9010da99f40, 0xb5791442da73b30, 0x4f04101b9c7317d2, 0x19427e0f72cf96dc, 0x162353bba43e6ab0, 0x226563fbd2b8bc03, 0x6528bc712215e937, 0x95ca122a9053695e, 0x00000000000177 }, { 0x16698b79fe087970, 0x68b8a310bc16c39d, 0xf9dd1872dc3f122, 0xcf1f0a08c9afd4fd, 0x9ce2cbb114922daf, 0x61edc38e5259c1ea, 0x388533ca3e6fd4c, 0xf763d5ee3450e813, 0x00000000000061 }, { 0x713cc9e45a3c534, 0x952f9f05d9714049, 0xb3f2aa9b7623bd82, 0xa93cf06ebb1ac3b9, 0xb76143a69f1b2baf, 0xe6e836c6cc6bdfe3, 0x178574e42b157b51, 0x7fecacbdf0d035a0, 0x0000000000010a } }, { { 0x179fde9de0687ca3, 0x3e299b73741291ad, 0xe54de11fbb521891, 0x3cb15a576ae48212, 0x9b3255bd8873c15b, 0x4764e7e43f50a496, 0xdbce1be018a853d1, 0xf4a73523a7a965ed, 0x00000000000134 }, { 0x77193eb6f168d211, 0x8b0d1ed8e54b81b0, 0xb4675034144dc280, 0xe3c1fa7f13e49693, 0x58db86a1fa13a1c4, 0x6f31cc81a173493a, 0x11fd7e0dd203a759, 0x377989872a959618, 0x0000000000004c }, { 0xbd9e33dcad8f516d, 0x464b0bf9d394ced7, 0x1a877f2362feab69, 0x28483891a02b13dd, 0x4036b738cf98fed8, 0x23d138a33c5cb0c2, 0x4b26b2dc496407c8, 0x91eb5834009a7e6c, 0x000000000000ee } }, { { 0xb1425d81a16e6b11, 0xbcd4dfc424e3fe87, 0x402e24c7338ba762, 0xe6a7afbc047fa971, 0x13b88561cd81fc24, 0x140f1a6082f0ad5f, 0x99a51e38293a7d76, 0xd5f87935607d6ff4, 0x000000000000a7 }, { 0x2811d19a3d1b983d, 0xfc91b5599231d12, 0xf0895e9f4447e916, 0xbcd13b570b7ae680, 0x66305634c98e664a, 0x782795e86766ad79, 0xb02ac2093b84d3f3, 0x3158b7d00cc43c27, 0x00000000000111 }, { 0xf7f7f1c1d1039b2a, 0x2b208c78455f8c3d, 0x5befc98bb292f15c, 0xff1fac020dd26cf0, 0xedcce230fa212be, 0x8e8606f603d74444, 0x25b22f765bf9bc5a, 0x7f5509e41f9676b2, 0x0000000000016a } }, { { 0xc7b3e2ea5d671c2d, 0x86caa931ffd8a83a, 0x369a2446e094fa31, 0xe794152af82cec50, 0xc549ca7b0d469639, 0x75b5ece630a777ed, 0x6dd5cde1992b079b, 0x133ce1cb1c03fb4f, 0x00000000000159 }, { 0x5df39389f403a312, 0x37a53552f947dadd, 0xfd456e5c2c863a69, 0xc91eaf0b4e5840fc, 0x6d84164a8a9dea66, 0xc58b7ed043c8f9bb, 0x7187527709a5e7c7, 0x8139d498fa96fe4d, 0x0000000000015e }, { 0xfeeea0d245b9468d, 0x1b30b6aef075263e, 0xf586f66a81dea883, 0x31cd34b78785ce18, 0x5440a8cf98de9364, 0x8ede31af17b10641, 0x8bf4cd032b1c82b5, 0x6f0d0bd212050f07, 0x000000000000c3 } }, { { 0x954840b2d58437aa, 0x26bd612f5e4576fd, 0x88668963ea3c75e5, 0x6cfb3f706d0f4f8b, 0x7d25e25885df1774, 0x600981fe49f8e922, 0xf0105e98bcc5bdcf, 0x52472ab1d7af9f63, 0x000000000001f0 }, { 0xb69ac9938c5e79ae, 0x23e27984211baad9, 0x1397add0e8d6edaa, 0xfce267e5e016cb2c, 0x5c685b0dc87d9d07, 0x6ac57e9bf3fe76c5, 0xdb5b29488ce13494, 0x3b7fe53440ea80fa, 0x00000000000113 }, { 0xee75aa6f76570c1f, 0x1c435914d82d8773, 0x5763bc8b83571b4, 0x9582e0414eac91fa, 0x5e9c152e89d04341, 0xf985f1f34cd8fba7, 0x8f3a1d772d924f35, 0xd9faddb6347bb354, 0x0000000000011d } }, { { 0x6cea9604a1e4de16, 0xebd4f33cb8413e21, 0x765a947f5291703b, 0xcb7713566672416c, 0x4005a054761f6469, 0x714dcd776490bd54, 0xb71ba20dac0456f9, 0x55475a8abc354c39, 0000000000000000 }, { 0x5b9e624830d41e7f, 0x783a666f374af63c, 0x19ae1eb217c44f6f, 0xa11c9c6f305ea961, 0x535a7f2aed645d02, 0xb30d439f1ebf17d2, 0x2f12cb2b8f54fb53, 0xd9d6f5b867ba0bd3, 0x000000000000f7 }, { 0x32566bcb03ae9a6f, 0xf57440933f91b00e, 0x94ce2c9b2441cf4c, 0xc3e679ab3f66bf17, 0xd4d7f56e2bae737, 0xbfe9d7c4aff961cb, 0x5c30405c3c40ee48, 0xa025b4f7581e291d, 0x000000000001b8 } }, { { 0xc4626fe6cf61f5b2, 0x945b1a4359c34567, 0xea9d38c2551639c9, 0x6189fb6a0ec7678c, 0x972d037ca4be16da, 0x56815da5324dfb8b, 0x2dd7d76137656621, 0xca6f155b3c2d6412, 0x000000000000b9 }, { 0xda76e5966bd50bd0, 0x9e41456eba94ecc4, 0x3e208f674579347b, 0xe2769edcab5cd866, 0x1c850de6cf97a3e5, 0x9230e437a73b2502, 0x51e2f96b3bf77300, 0xee26f1688a2c138f, 0x00000000000082 }, { 0x5a6ce0f1d141093d, 0x39fb3941e4839e65, 0xc6863332a82692a9, 0xd321f2b652217baa, 0xabe378e4aa750de9, 0x30c7b9cf9c1e70e2, 0x9bd48a77ce86bd08, 0xeb6ba35ccab3e0bc, 0x00000000000133 } }, { { 0x7f059e2e1e526fd1, 0xc462acf9a77ef2c7, 0x6d0d7f8539d67b90, 0xb5c2c4b78bf71b0f, 0x10a3f02edf5c2ca4, 0x84a51525907c27f6, 0x7b2c3b99afebaddd, 0x8c5f8fe09ffcf2b3, 0x000000000001de }, { 0x8fd66d858ad85e7e, 0x922b57bfaece1c0b, 0x4bd57e37f1abbda, 0xbf76f99f43388835, 0x6bc11123c39c51da, 0x2aabc63d4e62d19f, 0x7da9b06b4391965, 0x8eaf5e8be654316d, 0x000000000001c2 }, { 0xdfba9a8462118f37, 0xa0849b9caa3d4137, 0xd7d4dd3cef2f9a23, 0x93370172dec7149c, 0x69a2757e2144e1bc, 0xcfbd39828cf4b0ec, 0x675cc8cf575c1f1, 0x7512d900447c7673, 0x00000000000098 } }, { { 0x434044128e276a1f, 0xa8f35c782c532d9d, 0xe699be08ffa0d395, 0xb843b15b121d61dc, 0x5a45b9c1408790e1, 0xb65e00a52674ffdc, 0x3142b66642b31d14, 0xc99c86a366b58034, 0x000000000000f3 }, { 0x97e4385de555c016, 0x182e1150b6a8244, 0x79038d9658adeb23, 0x500c7cfa01d0310e, 0x8fb357f51c54419e, 0xfb3c881fe58df78a, 0x3a39ac60499ac48b, 0xa777e78b8ca5ec96, 0x00000000000193 }, { 0xb323a18920955f94, 0xde20b9e8b36b67a5, 0x49062658fabde88b, 0x37377e673c30960f, 0x73deb919a5483b4a, 0xb220e2e651110524, 0x85f94d82a4ca7ee3, 0x33ee855d6f3a617c, 0x00000000000189 } }, { { 0x6e4bd4d06f836b65, 0x64f199534f3deac9, 0x63ff306a544378c0, 0xb6336bbae17c1fbc, 0xc33385028b55044a, 0xfcf24aa72307e87b, 0x8c05fbb2c723872a, 0x43f8a1fab07ec01f, 0x00000000000195 }, { 0xea00bc53d4e1ed97, 0x56563c6d1dc1baa5, 0xbfc42c7683446502, 0x3bbd66bd9f74780f, 0x7d86f6eb32c23777, 0x7d4288e450ff3f5b, 0x4277bd790ce7c41d, 0xa86c2052dc1504ba, 0x0000000000007c }, { 0xae99f53d52c58914, 0x44ee3dd86de2f5fc, 0xe55296d39545f5d8, 0xa72adaecaf1d081e, 0xaca87314477b2d47, 0x7fd7526e64b24c4b, 0x33476ccb1b3bfc38, 0x65ac9e685d414e66, 0x00000000000076 } }, { { 0x9a4b4f67149fd104, 0x166c2f4b4cf42e90, 0xb23e6904826e016, 0xe2f00b8d2c4747b7, 0x12e779805e9490fd, 0x6030aecc03a9d57a, 0xa65704536030d9d, 0x95e1e57f5e90ed3b, 0x00000000000193 }, { 0x381a120be4fd984, 0xb0f295e39e19c5e6, 0x38951a79b09c8a3f, 0x529307e49f735b81, 0x6bc70873c5f9dc5d, 0x818c77c0e9c67ee7, 0x588a715124db946a, 0x7cdda5d77576b6d6, 0x000000000001ac }, { 0xca4ec074a8ddb993, 0xf6e18e367c2f29d2, 0xead3d1beec8e686c, 0x6800187be32a8d36, 0x822aa1f939fbef4e, 0xc3963c1250816672, 0x3afa5cefdfe386de, 0xf7b2edc6e9560b89, 0x00000000000023 } }, { { 0xd4b247acab51f6a1, 0x52a4bec27332505, 0xfccdbc58c0362234, 0xf3ea4afbc147da3a, 0xc27435910246a3b2, 0x311797d5cffe2ad8, 0x3951a61b25f7df8b, 0xabd1cde73154dc42, 0x0000000000000a }, { 0x27b49e91185ca0bb, 0xb30abd2765689418, 0x28eaa0bbe6aaf855, 0x1cb5cc35179ecd90, 0xe050dd55135b3feb, 0x8c1b5c8765bb80e6, 0xc6782f1dc34cae33, 0xac93f339471be408, 0x000000000000cc }, { 0x139b11a696bfdd26, 0xeeebc839b9ae939, 0x9b48bac6e1eb2d1a, 0xb0d4ee64666be13b, 0x1d5bc7be36059616, 0x51e5896da05a82f0, 0x4f877e5372d383df, 0xd8af46233afab0c2, 0x00000000000044 } } }, { { { 0xeb1998321af05ea9, 0xd30022af2fd47de, 0x8da93b736b442e1c, 0x85aae1a1bb6c3140, 0x3c29aa99620ef6a0, 0x4867521dbef2a99b, 0x56627e166941292, 0x6095da3a54753840, 0x000000000001ff }, { 0x35dec7baa479ba0, 0x1307929c1faa8ef2, 0xa9496769c16b5c74, 0xe1f86bacb934548d, 0x2d0c9a491ebcd86a, 0x9e5c48beedc68955, 0x49aecbab7a7d81b1, 0x4fc8c36c6eac32e6, 0x0000000000017c }, { 0xb71a0cb817cb5396, 0x361787a32afe3207, 0xf6f52d7774755e28, 0x54d44641f77f9855, 0xf3f5d2285773a43d, 0x365fa5af7b058a09, 0xef3d3c91907f989c, 0x6910ce074d0b7d90, 0x000000000000a3 } }, { { 0xe6bf118bd5296e7b, 0x37a52fbb800ad73f, 0xd8745010f3491d1e, 0x21e2d43a8f1461f8, 0x1ef6b51dbe23f1b6, 0xc8df9c4bca7b7aac, 0x7693decb200ec623, 0xbbe5d297a4abe830, 0x00000000000113 }, { 0xee95534e70a5f4c8, 0x9898c4e4d6fd7dde, 0xdd93329215c8f7a9, 0x17f20d5654fe0f, 0x355ba099373d1eb, 0x7fb1781495112af3, 0x34d4fd6fad638a61, 0x2a78d8b56b10600b, 0x00000000000147 }, { 0xba0a3474ddb45d3b, 0xa8134bc3326831b, 0x97f5c17435826094, 0xddd5e89eab8408f9, 0xfe997788afb79710, 0x97c3d09a632eb797, 0xb9688aa5ae1c520a, 0x58bfc3daad1c0e22, 0x00000000000021 } }, { { 0x406f503556c774ee, 0x840fd49c56f9c874, 0x9bde6e19266ba467, 0x8b96975cf9b1b05c, 0xae0938ccb14c7519, 0xa86026cae45fedfb, 0x4cbe29dc6a9a7850, 0xb96e0478c1ea2b0f, 0x00000000000071 }, { 0xbd4ad0ee3f49b9fa, 0x9bfe04afc04d17f7, 0x87469906f44a9959, 0x94a9880c2cd3317c, 0xf841fbf17d42f5f9, 0x82af9a0809e3df30, 0xadce94a81a1afc34, 0xad6f45be8788dc8, 0x000000000001e2 }, { 0xe153c4573f29a0a0, 0x4e3aa569f245d295, 0x24d73a67ceb39758, 0xb230fcf1839354ad, 0x33890f7c7e0135b8, 0x173c6b6cd3cfbc0, 0x59570093f4c2f0e1, 0x6f6128f29ee5239e, 0x000000000000c7 } }, { { 0xc66806b9ccbede1e, 0xbc50e9f245edccbe, 0x49f8fc66266167b1, 0x5817b02763b0467b, 0x70f7c2c5df0fa6fb, 0x93beae0196f1218e, 0xe4908fe82993667b, 0x5300a2c4a4d3050f, 0x000000000001ac }, { 0x64bf9a2cc6424061, 0xc39ac710c40c0ffb, 0xb982a95a42be943, 0x7c041b4f29b8615f, 0x488ddaff5cd7817, 0xa54040cc62d92904, 0xcb3ecea16335b2c0, 0x2639f7c8a6bba783, 0x000000000001e2 }, { 0x630905e70e0b9ef0, 0x8d8df477d82fc1ee, 0xa911d773cd80bfdf, 0xbacbd88f07adfff1, 0xd22cac1817788006, 0x2465e1e478173b3f, 0x40cce214f9156ebe, 0x1d68a3f5897ce709, 0x0000000000004c } }, { { 0x167adea602f10274, 0x1f134325d13751d0, 0xbdc4565bd282c0f4, 0x9f101143433ce965, 0x9c356ed732f7de60, 0x2528eb3d5bba7ad1, 0x5593c0000ed48b99, 0xe560286f2b3cb38d, 0x0000000000005d }, { 0xcf2d1ac48ee926d2, 0x38089114e52cac76, 0x9365bd21e8f8be05, 0x8b318993b8f4b8eb, 0x51ac24e77c55fa9, 0xf49b4e252996168a, 0x3f91c8d2e0b5c1eb, 0xe38eb81b44deedf4, 0x000000000001c2 }, { 0xaa6b1ac5305fbb43, 0xec0de68dec8bb16f, 0x4631f89b12cb4383, 0x68606f57ba0c5a76, 0xcf9cd54c18bd151c, 0xc95d9504453de5ce, 0xa9e87f7f6b07574b, 0xc3d8a521c1b57780, 0x000000000000ea } }, { { 0x48ba0500069a5a1, 0x82ca439a9213b0fd, 0xb4fb80d7803a844b, 0x73b83cdcaf700892, 0xbfb046b16c555455, 0xa9fbbd10897d6b0c, 0xbff33e455a3f4660, 0xf7e77eb4f5c4fa1f, 0x0000000000015e }, { 0xe6709607ce754f13, 0xaffaaabe83d02aa0, 0xd16ae299e6d7d916, 0xa4a70764974eee8, 0x87ff2edafe6994d7, 0xc769c8269d037588, 0x490cfc5dd58e631f, 0x35f3626b054288df, 0x00000000000146 }, { 0x847cc70929e0c119, 0xcdf6e8eef9afa03f, 0xa5dce625a9f8dafa, 0xe84c6924b63d1bad, 0x2bc4aa3a94db172f, 0xdf846c7f6ad6cd24, 0x62f3be31b20fa872, 0x85b205e373fceaa5, 0x0000000000003b } }, { { 0xf6d59f94c627d279, 0x94f7e5b36ddd1c94, 0x5886d8ceeb7f2e45, 0x29ee0b0d34e075c7, 0x6dcfd63bfac5f249, 0x8b96d02f20997893, 0xf543b0e9608616b, 0x6649fcfbba03b050, 0x00000000000172 }, { 0x73420a5c9c6b9030, 0xf0bc6375e0629741, 0xa0f90e6e1097e857, 0x2f0f53c05f1fbc8a, 0xd1960a73b160cfde, 0x539e115c07067a8d, 0xb0998e5002b0f549, 0x771f045825e00c38, 0x000000000000f3 }, { 0xd0a1ca11e30a85b5, 0xf56e1805f719e5c8, 0x5a9bac3a1235f047, 0x1cf3587f2bb961bc, 0x852dab6b267d789d, 0x662b710cce32702a, 0x585185c13f293a3d, 0x17c4c9cb0b686a99, 0x00000000000175 } }, { { 0x387363198aa57aba, 0x5d2d26f3fbc058b7, 0xe5e901bc212d8a, 0xd52aa2a74ea4073, 0xd59774b5aa638752, 0x61018aef8a45a9d3, 0x6c5d50e4dc9bfbad, 0x831a26b873623f18, 0x00000000000066 }, { 0x78b9dee42b30f7e6, 0x1f0c95785dedce6f, 0xbf4b32f050cc8248, 0xb48a5e5a52df79c0, 0xa67df70516d24489, 0x311351e33c1f5fc2, 0xa5b9fdaf05839e8f, 0xa2181485df3bdfbf, 0x00000000000122 }, { 0x52e906975ad7a7e6, 0x2bf47f3c80a04e41, 0x3776ba2fc2854dd6, 0x489b1fab654f038e, 0x17c1eba82fca350a, 0x481801a9e7b74c70, 0xc78f97d32fb4c48, 0x55d5aadbca1bc046, 0x0000000000017d } }, { { 0x3014c174992733c6, 0x36c0dc4689c9800c, 0xaaa04f7b3c22a23, 0xdc75724de60c9eb4, 0x52db41501cca4ebb, 0xd15e77c0c926122e, 0x8e7cdb49fb15c87c, 0xe47cd491b8e269bd, 0x000000000000c6 }, { 0x2df077007f222239, 0x7607b986bbc6a921, 0x817453221b0d17ec, 0x3c74ada18683b702, 0xd0717da7f985793e, 0x5cfe19c4c8747b82, 0xc08d4250ce861027, 0x65b8906087681fa7, 0x0000000000014d }, { 0x88d1b09b0b5e805b, 0x92be5f991d061ad, 0xbe768ac1212283a9, 0xa39ffd1be6316ba9, 0xb3615fbcdc36888c, 0x8de80842bda0deac, 0x30b79f04ba2fb404, 0xa5ef1cf26cb056c3, 0x00000000000172 } }, { { 0x6dada07c183567da, 0x99ce3afe87fc05dc, 0x11a672969d220f69, 0x8097adbe1c64276e, 0xd8c5649e8600f370, 0x94c3c8e3c05d8f2a, 0xb4db4c7043374641, 0xeff753e3c81947af, 0x000000000000ff }, { 0x2a3989d916c2a590, 0xc51f9776c5ccc7bd, 0xe24475ff3af7ee2, 0xa9e9256664e68300, 0xde81e4c4fc94bf4, 0x757624fbcf490d0c, 0x9291e175c6d7a1dc, 0xa17a4ce01b324a3c, 0x00000000000086 }, { 0xca484cc880713b57, 0x60fdfc9fc6c5b130, 0x206246e9b81e00c1, 0xec4da9823a6cfdd6, 0x7aa056bb4b40bd5a, 0x7ad5ee9c06649f12, 0x1d97059a54175b66, 0xb9b4647808556a16, 0x00000000000043 } }, { { 0x7b99a0c4ad1a57ce, 0x43812379996afa64, 0xecfe73748e416677, 0xb6f1d44726485dda, 0xc2b2fc29226a27e2, 0x82f1f665cd946456, 0xd2baffe7270dc1d8, 0xd20a8adf4688bd78, 0x000000000001b6 }, { 0x5bd0a1c38db1a8a, 0x601017dff8a5c25c, 0x21bc723b5a10950f, 0x37d91711761e61fb, 0xce47a411ef6bc2f, 0xcbe01f630e68534a, 0xb37fadcaf532d213, 0xa9fa39e7d6cfaacf, 0x0000000000005a }, { 0xbf411ad7f1dd42cc, 0x1b469fb2e0c693e0, 0x6d6fde83dd6a9a55, 0xd588973384a70034, 0xe40f52d11ced1638, 0xd66b0a653772ca8d, 0xc6d058ea167f8aad, 0x32df96439fc42d5e, 0x00000000000086 } }, { { 0x46caa103f7b3a32c, 0xa9e64f57386c1e95, 0x582715df7ca061e3, 0xe5661ad466a11477, 0xa85dfb36026f8b6e, 0x900e548f1cd51ed5, 0x1bf9b3685ab6b0d9, 0x6e9dfed6201309c4, 0x00000000000039 }, { 0x3b67e00028c526a7, 0xb4f6024e6fe3b6fb, 0x1c9667812fd6992a, 0x73ebe185686e9db9, 0x4597d3be0e3b9dc1, 0x12a437a7ed2c33af, 0x342951ac7eaa1c3b, 0x78036ba3282c84c9, 0x000000000001be }, { 0x71fc7ae307402ec4, 0xf182d3fcff90af61, 0xe4037876ec85143a, 0xd61136673aab1e07, 0xfe0df908d89c92a2, 0x7a1cda0628a48c9, 0xbe12c1daa2ab3598, 0xcd1abc9b4db3ff19, 0x000000000001f9 } }, { { 0xb18a44dddf94324, 0x33b9b724160dc32d, 0x75e9c385d02c574d, 0x58e03fbbea281dee, 0xfac3cfd2663d4e3a, 0xd92c055ab97c97f8, 0x7ec9e5ea3af58113, 0x6f742cdd86aec180, 0x0000000000005a }, { 0x1038e4fbbd7bf631, 0x3cb4fa09cf460bc8, 0x10a4cbf796749098, 0x4303416eb304ef16, 0xed6dd8ad2cd537ff, 0x3b9c7f06e1eb7ced, 0xc48f5eeda2211dbb, 0xd8a3b38192ac3aa9, 0x000000000000a2 }, { 0xf545f98e16b700c, 0xc7b14c2c1cf73321, 0x92f6d48a89a7279b, 0x3dbb75a0273b29cd, 0xd0198506581b4392, 0x38ad48438b432356, 0x898a36d7d832231f, 0x8ed17a7636be0e14, 0x0000000000017f } }, { { 0x5c1b880ec7260d61, 0x8f89f84acbe0ab0, 0x202cb5db9f9845b4, 0xbbf742d1097086f5, 0xaa3617a70622577b, 0x612c3a80480bf1f1, 0x77ac49a77779bbfa, 0x15470063871064d7, 0x00000000000103 }, { 0xbfbe82aff37eb626, 0x8572fcd11e03802b, 0xd0e72b59c3acc603, 0xf939898e5f8001eb, 0xaed5622f213b09bd, 0x4834a66fd641469, 0xef9e2c5cafbaebc8, 0x5e042c60e2b880c6, 0x00000000000083 }, { 0xbda349fc184b1d5d, 0xe710789666856aa, 0x28bbe0920d8b27c0, 0x987fdd1d81e23a05, 0xbdd8ffd9578e9874, 0x161f3f7c04c8231f, 0x3cf50d0977250ef5, 0x2b18f742ad90b386, 0x000000000001fb } }, { { 0x6b84e7368a436763, 0xc4410dc1dddd7657, 0x781f98f57e5c2fa8, 0x58a45bfe4fa2b939, 0xc56660f4709ceef, 0xe2bef063c0a12dd5, 0x28b0ffe9a434f8a1, 0xf6015dcf8fb40179, 0x00000000000042 }, { 0x55caaf45ce20dac4, 0xb9d3b9a619fc5a37, 0xe875ee55e2869afb, 0x70de6ccba24525f0, 0xb08639d7a25f5ad1, 0x4a09fe83df5c64bc, 0x1bf41452ad98f798, 0x8bacd6e51c26acd8, 0x00000000000025 }, { 0x565416fbb3b71f2f, 0x34c1ce59d40beb3d, 0x6768b064006c9446, 0xaf14ea1b62a601ea, 0xd66d2753d766e4a1, 0x5a2823498247fd36, 0x9fe0c2f7c9ff90e5, 0x7a60bf6581275a3d, 0x000000000001c5 } } }, { { { 0x15089e86b0bdf392, 0x96510a6b1ec16133, 0x886a4f6bc2c52795, 0x60388b4bb16c60eb, 0xbfa0de706e32b8b2, 0xea07c52b95198f4d, 0x345730c9c28150dd, 0x89752ca33b033cb1, 0x000000000000f2 }, { 0x3c064fcf5e9f04d2, 0x32667c7c0e9fa340, 0x920563f5844983c2, 0xf561365ddd692127, 0xf7c574ef3dc8725f, 0xd7e43213d5cc66a1, 0x6b2c61113c6df938, 0x77f84831c97c0573, 0x000000000001d6 }, { 0x1c1699a8e33b30e9, 0x5d7bbb9db8ecf7e7, 0x5d98a310a76ca84e, 0x3bd947b113c04312, 0x5fad79043c45b87f, 0xcf6ae2efbbd022c5, 0x6ef023e55ebe21c2, 0x255df80a1e06130a, 0x000000000001f3 } }, { { 0x5a0405e796cdbb7, 0xd7bc96a8872a9559, 0x4511bf3916d89a58, 0xf9fc154bfd1a66aa, 0xf146815493ea2709, 0xed2c4890dd6f40d0, 0x1d96ea363a7a3d8e, 0xba8932580a7e0f41, 0x00000000000194 }, { 0x3c673baffedb1019, 0xe9db0b575e6ea854, 0xca5b68c3d220d77d, 0xe6d576707f35c8c3, 0xa0cebe3b813fd20c, 0xbbd2baa809629d19, 0x840fe7fcc8346a6d, 0x529fb2ec0a46f366, 0x00000000000083 }, { 0x53c596eed49a8aa1, 0xc7132be9c0c364aa, 0xc9e180b38bd25afe, 0x2db0a3248484de1a, 0x732bc51d1b15fa0b, 0xdafe2eb558d6b01d, 0xa00eaa4807295c7b, 0x137479d5f71009f2, 0x000000000000a4 } }, { { 0xbfd80a7f3221caa0, 0x2eafb5bad4ce4707, 0x39e2295c562ed95d, 0xf423d3782903881f, 0xb8711a245df72710, 0xb3710382a975b3b8, 0xc4cfa76869988d94, 0x7570c25ae1a4a0c7, 0x00000000000165 }, { 0x26263c09428e3d5b, 0xcdcd688e7159148c, 0x435f0a2f2d90abb0, 0x19d8c4b2482d780, 0x7d1c7e216bdf028a, 0x3ffd114247f9dc75, 0x21524678728254a2, 0x9b5674610db0db4, 0x000000000001ae }, { 0x184d8dbaeb8cf518, 0x6e3fefcd4beb7f43, 0xad55de4dccd192ca, 0xfbf852b04960d172, 0xb0fa9e2e8a1f3e0f, 0xee55b6b5f8ae38e7, 0xed69230a10e5c33c, 0xcbf2e68bf913fd9b, 0x00000000000065 } }, { { 0xff7b94e9e5344e13, 0x572e275641f87ab1, 0xd227df28f2cbf22f, 0x32a8c26c5f00f1f5, 0x576092a2ce42d81c, 0xc50ea9e9ffa9a9af, 0xa959aa8d93ca5f35, 0x3dfac97531d48826, 0x0000000000014d }, { 0x3c16e21af7ae5eab, 0x97912aee4707fafb, 0xfc17cbb2fb7d4bef, 0x6bc1a3e9f48ad4b9, 0x63793f3a09ff01f1, 0x2536c2a3ccf86f91, 0x151300d1d7856fa2, 0x715c49b824e79a7f, 0x0000000000001b }, { 0x1b2be81ddfb7e66c, 0x8aa8312fee1494ad, 0xc19faaf68b1cfb65, 0xfa48e3bb7b21f0f, 0x2d0906cdf999588f, 0x2a45528d387eb9ee, 0x9c015877891d1f08, 0x5206a8c1da63012f, 0x000000000001d3 } }, { { 0xf056ddc39ac89338, 0x8a9ef4e6c0f5ef92, 0xeab41bc3fa13fe60, 0x30107319e0ba884d, 0x6f64bf8ead57591f, 0xc92ef9771c7229ba, 0x30748742ef322767, 0xa71601141a2bcc69, 0x00000000000004 }, { 0x49d41a3f5d9db5cc, 0x3e4b94aadfc6e44d, 0x199636bf7ff38513, 0xbcaee1c6a4883cca, 0xfc1b33e5ac64b596, 0xf277dab02397a282, 0x99b791a8c46d7de8, 0xb0b5fde7bdd5ab1e, 0x0000000000002d }, { 0xe667992d9fab95ba, 0xdb9f24f2cf704d91, 0x3760f3f15fd8df25, 0x7c4ae39965a4c117, 0x9106d1df2c2e7478, 0x385486582c9d5d6e, 0x1e0e56f53a15f28c, 0x8f81ea48e5f9a01f, 0x000000000000ac } }, { { 0x8401e94798340e70, 0xdee7d30fec9681b0, 0x1e1305a83e40c669, 0x41ec3fca1c793336, 0xd1d520109fce0b5e, 0xbbf75dd8e840042b, 0xf2dd7bfb383961a8, 0x8298fff94f607d80, 0x000000000000f5 }, { 0xe09d8c6f9608cc11, 0x54781cee33a6d815, 0x92f622ba45b11c01, 0x30ae4bd03c499a55, 0x3443ae0f928ff841, 0x8d979fee889878a0, 0x746a1636bd833ca4, 0x48141f4424eb5c15, 0x0000000000000e }, { 0xf3c31fa042891565, 0x3181e0a81d775d4d, 0xcbcabd716ce76da4, 0xf89b816ebd4bd970, 0x651522c1c632f1f1, 0xe4e7ca4df76d9f41, 0x8928b501ddeae076, 0x5ee94d826d17df60, 0x00000000000069 } }, { { 0x973a108f36708989, 0xe3ef63613d59743b, 0x8e8c1038932bb287, 0x4e7f3171f82aff3b, 0x7b4c628ed723315b, 0xf846e4d7c4acda31, 0x96cd1a2fd0b35604, 0x2ea9510fb7877963, 0x000000000000da }, { 0x5647615b8774d5c4, 0xa40a1f389695beda, 0xdfebc3103b24575, 0xc5435987dd12e10, 0xcc66ab542feda00e, 0x426ce51bc80f752a, 0xa7fe2fc8762b93fc, 0x9b6dde7899d1a546, 0x000000000000fa }, { 0xd9b3c59382dc3333, 0x40a73ab550d9f041, 0xb65e87f89049abda, 0xc098e7f6dff833f6, 0x7ebe5efecbfd9822, 0x2c0a20afa2f26b00, 0xcdaecf826586f53, 0x559ed042e22df4d, 0x00000000000142 } }, { { 0x3d6c2cef27f1caec, 0x840c138f6a5255e9, 0xc7f4d351d9813995, 0x269e4b49f55eacf2, 0x20ce5b30b93da4d6, 0x7ad78412046759bc, 0x8bbba6f0bfdba377, 0x50a5eb37da6b5e86, 0x000000000001f2 }, { 0x47f45517472bfec6, 0xff12ab06a13a5b4f, 0x1238daf698731190, 0x99ba4c27796062ad, 0x789efefd5f60619, 0x84ed1bdd5501a744, 0x72049d864624ae93, 0x4799c42a0904c45e, 0x00000000000160 }, { 0xa9467cb2ae3ec8ac, 0x8fed2ed7fd6609d7, 0x175d76d3a76e70b0, 0x3e5f44852dd1be57, 0x185bc7a9ec8d7fc8, 0xb5af7b79ed543a0, 0xdf80fbae63e91096, 0xc4ba2e9a0d639a2a, 0x000000000000d3 } }, { { 0x13fc017d97c0c95d, 0x69457181b570ae6e, 0x117387d7f9116c77, 0x92e9b99a533deb6e, 0xbd64f8fc819b09d4, 0x701ad6fc11887ec8, 0x50d1a4bb818158d9, 0x72a44a47ae497167, 0x0000000000009f }, { 0x5f25f7080aa7f0d9, 0x2082cfe7fdbf1e71, 0x7a61fcfcd34fefa5, 0x64c1d546e8a76cf0, 0xb4d9bd14c5a0dfa6, 0xe1ddec317d5bb13d, 0xcd3c13e443ab1c9c, 0x7215890fd7592e30, 0x0000000000017b }, { 0xf6bfdd4c1c9490a8, 0xfcfae34eec4ac1d0, 0x9ae63b1f276c86c2, 0x24a90a03defcbf42, 0xfa2536b6157c685, 0x4ffc4010dabc979a, 0x75fb867bd6a20f8a, 0xa9af12bbb0470d2d, 0x00000000000179 } }, { { 0xee9eb3b2e91f1e25, 0x3377fceb03efd37, 0xc3edf4a4873180f8, 0x8ec56e89f464bfca, 0x16305bfb57be2d81, 0x8ebacf7af69fb0d5, 0xd37effdc56472075, 0x40ced1c6bb189934, 0x000000000000b2 }, { 0x95e9aa9d04cf9b40, 0x13478325915c4d77, 0x33759236938e09d1, 0xa764810876386708, 0x6686010dc59552c5, 0x973f1965af16eb7a, 0x7974e0a20a8c1baf, 0x74335801cb201918, 0x00000000000135 }, { 0x121c1df4c4240b6e, 0x9d4adf1ff7f2b4eb, 0x65f486c23545b92d, 0xcf2c58eb145289fb, 0x248935126e872264, 0xdaa0f9bc55c59ae8, 0x991d66c64339d485, 0x6b57656393e1124, 0x00000000000157 } }, { { 0x1d99f6e72da18ebe, 0x4662b61e6f905195, 0xabd27c8b1633d936, 0x65bc625a65da7d05, 0x4d1d0d313bc363e7, 0xf47cb99ada982da5, 0x8030fff810a5d85c, 0xa2f07bbf039386ce, 0x00000000000057 }, { 0x6319283932faad2f, 0x1ed6486fa55305cb, 0xadbbfcf66f987d, 0x652553592ad87823, 0x67a748fd756553f0, 0x7bf2d4b1a4e4c6e3, 0xdfe5b69aa8c17645, 0x5b47a54431c9cf8b, 0x00000000000140 }, { 0xa99bbce339767729, 0x706a5f553f45172e, 0x349ca74bd585f1f8, 0x7a3355c3094e2d83, 0xd68d964f8f0dfc0f, 0x5a2f0d4d76bda539, 0x5a3f3234af16687e, 0xe1b682e039fc2dba, 0x000000000001fb } }, { { 0x6b7f949abfa1dc7f, 0xe43a4ab557638bb0, 0xb03f52d8d52ac42a, 0x12a3877ed2d906f6, 0x967a014566a0261a, 0x8a431a303ace98e1, 0xea6baa11f301b70f, 0x513c884ee291196d, 0x000000000001ae }, { 0x97a5383cf6d2ae7a, 0x88459cb8b26a2cf3, 0x1329c58482cfbc8c, 0x70bb3b6a5aaa39f5, 0xef1011b128688c70, 0xcbde1712fde0c0f2, 0x1cd6f63a7b41591a, 0x29d5a6c2ce38f859, 0x00000000000041 }, { 0x1c526cb3ba738bc7, 0x7f7b40becbd38914, 0x3139559f21dddcae, 0xb6a8e90115e045f4, 0xbba354e9cab19b79, 0x4bfa8e247f75d592, 0x4ff54006837adea4, 0xa6de36fca57adf80, 0x00000000000113 } }, { { 0xb678ff66a17f1f96, 0x75096460bbb2a32d, 0x31f996e2df4bc7f5, 0xd16c92fd689d9b0c, 0xcf7382ab0a98cf62, 0x3db09415fccd586f, 0xe1428cb8032ecb75, 0x7cd8493fa5fead56, 0x0000000000016c }, { 0x6ac3ff756fff44de, 0x26855160973cbb5c, 0x7cb8564826704daa, 0x961026f193d23234, 0x27a28365a4e3031a, 0xfe871616d0e5c253, 0x1a4d76765eea08a9, 0xab71f88df85f2ec2, 0x000000000001de }, { 0xbe41a9837e756861, 0xc0078d86d43bd79c, 0xa16b34cdff505ac, 0xdba0ece597c87fd3, 0x770b7c9e067efcab, 0xd06a41d39fae4dcc, 0x61f0f7a613190abe, 0xff02d5c44fac916, 0x000000000001be } }, { { 0x557163bb26e88f67, 0x636fd39bb115fcca, 0xb41dfc88b4e25d60, 0x93ed0812f504b65f, 0x92c64ddf98aeb3dd, 0x3451eb0e3b1355a0, 0x6320c388f7d07881, 0xf59830f11409bb9, 0x000000000001e0 }, { 0xa0555772d20b12b1, 0xdcbdcddd057d661c, 0xedb050b878eee8c5, 0x458fcf250fb3e16c, 0x7f97984dfad3cc94, 0x86efcb6309d6715e, 0x7bb6050eac66ede3, 0xa79b77b7739b3eed, 0x00000000000110 }, { 0x39733b503454c7e, 0x9ad58ffd3b9f9dcf, 0xb2c83f0f1a8e1100, 0x4c37a5cba8e65791, 0x9ea672123491e9f5, 0xdcc9a760a09bd903, 0x2de99369ff7ed05d, 0x15547eb42ce3ad1e, 0x00000000000007 } }, { { 0xc6f09eb9f07f67e3, 0x8004cde7649b31b7, 0xe09472ac5992500c, 0x7aaf29480df5d039, 0x2304c5e62cd82253, 0x20abb780917e3b9f, 0x2a26815b92aa0893, 0xc692376bddc4311e, 0x00000000000105 }, { 0xe060cf9e584952d6, 0x569ed240b9d6f3cd, 0xeab44539e50355f1, 0xae8551087c76674a, 0xcaefae6ed61c0f80, 0x93ba1447cda6c480, 0x32db8517411fe3, 0x2f8ca13c1d42217, 0x0000000000000f }, { 0xfb8ee707077f5831, 0x8f1f0676ef43b28f, 0x11cd627d8df35f95, 0xe8b151c676a3f53b, 0xe6f04540651c6b0f, 0x4a63af664d4c8301, 0xaba3fcfe4c3b9e07, 0x7a88fc75dff581e5, 0x000000000000c5 } } } };
mirage-crypto
2.0.2
ISC
https://github.com/mirage/mirage-crypto
git+https://github.com/mirage/mirage-crypto.git
h
mirage-crypto-2.0.2/ec/native/point_operations.h
#define MAKE_FN_NAME1(x,y) x ## y #define MAKE_FN_NAME(x,y) MAKE_FN_NAME1(x,y) #define fe_one MAKE_FN_NAME(CURVE_DESCRIPTION,_set_one) #define fe_add MAKE_FN_NAME(CURVE_DESCRIPTION,_add) #define fe_sub MAKE_FN_NAME(CURVE_DESCRIPTION,_sub) #define fe_mul MAKE_FN_NAME(CURVE_DESCRIPTION,_mul) #define fe_sqr MAKE_FN_NAME(CURVE_DESCRIPTION,_square) #define fe_nonzero MAKE_FN_NAME(CURVE_DESCRIPTION,_nonzero) #define fe_selectznz MAKE_FN_NAME(CURVE_DESCRIPTION,_selectznz) #define fe_from_bytes MAKE_FN_NAME(CURVE_DESCRIPTION,_from_bytes) #define fe_to_mont MAKE_FN_NAME(CURVE_DESCRIPTION,_to_montgomery) typedef WORD fe[LIMBS]; static WORD fe_nz(const WORD in1[LIMBS]) { WORD ret; fe_nonzero(&ret, in1); return ret; } static void fe_copy(WORD out[LIMBS], const WORD in1[LIMBS]) { for (int i = 0; i < LIMBS; i++) { out[i] = in1[i]; } } static void fe_cmovznz(WORD out[LIMBS], WORD t, const WORD z[LIMBS], const WORD nz[LIMBS]) { fe_selectznz(out, !!t, z, nz); } // Group operations // ---------------- // // Building on top of the field operations we have the operations on the // elliptic curve group itself. Points on the curve are represented in Jacobian // coordinates. // // Both operations were transcribed to Coq and proven to correspond to naive // implementations using Affine coordinates, for all suitable fields. In the // Coq proofs, issues of constant-time execution and memory layout (aliasing) // conventions were not considered. Specification of affine coordinates: // <https://github.com/mit-plv/fiat-crypto/blob/79f8b5f39ed609339f0233098dee1a3c4e6b3080/src/Spec/WeierstrassCurve.v#L28> // As a sanity check, a proof that these points form a commutative group: // <https://github.com/mit-plv/fiat-crypto/blob/79f8b5f39ed609339f0233098dee1a3c4e6b3080/src/Curves/Weierstrass/AffineProofs.v#L33> // point_double calculates 2*(x_in, y_in, z_in) // // The method is taken from: // http://hyperelliptic.org/EFD/g1p/auto-shortw-jacobian-3.html#doubling-dbl-2001-b // // Coq transcription and correctness proof: // <https://github.com/mit-plv/fiat-crypto/blob/79f8b5f39ed609339f0233098dee1a3c4e6b3080/src/Curves/Weierstrass/Jacobian.v#L93> // <https://github.com/mit-plv/fiat-crypto/blob/79f8b5f39ed609339f0233098dee1a3c4e6b3080/src/Curves/Weierstrass/Jacobian.v#L201> // // Outputs can equal corresponding inputs, i.e., x_out == x_in is allowed. // while x_out == y_in is not (maybe this works, but it's not tested). static void point_double(fe x_out, fe y_out, fe z_out, const fe x_in, const fe y_in, const fe z_in) { fe delta, gamma, beta, ftmp, ftmp2, tmptmp, alpha, fourbeta; // delta = z^2 fe_sqr(delta, z_in); // gamma = y^2 fe_sqr(gamma, y_in); // beta = x*gamma fe_mul(beta, x_in, gamma); // alpha = 3*(x-delta)*(x+delta) fe_sub(ftmp, x_in, delta); fe_add(ftmp2, x_in, delta); fe_add(tmptmp, ftmp2, ftmp2); fe_add(ftmp2, ftmp2, tmptmp); fe_mul(alpha, ftmp, ftmp2); // x' = alpha^2 - 8*beta fe_sqr(x_out, alpha); fe_add(fourbeta, beta, beta); fe_add(fourbeta, fourbeta, fourbeta); fe_add(tmptmp, fourbeta, fourbeta); fe_sub(x_out, x_out, tmptmp); // z' = (y + z)^2 - gamma - delta fe_add(delta, gamma, delta); fe_add(ftmp, y_in, z_in); fe_sqr(z_out, ftmp); fe_sub(z_out, z_out, delta); // y' = alpha*(4*beta - x') - 8*gamma^2 fe_sub(y_out, fourbeta, x_out); fe_add(gamma, gamma, gamma); fe_sqr(gamma, gamma); fe_mul(y_out, alpha, y_out); fe_add(gamma, gamma, gamma); fe_sub(y_out, y_out, gamma); } // point_add calculates (x1, y1, z1) + (x2, y2, z2) // // The method is taken from: // http://hyperelliptic.org/EFD/g1p/auto-shortw-jacobian-3.html#addition-add-2007-bl, // adapted for mixed addition (z2 = 1, or z2 = 0 for the point at infinity). // // Coq transcription and correctness proof: // <https://github.com/mit-plv/fiat-crypto/blob/79f8b5f39ed609339f0233098dee1a3c4e6b3080/src/Curves/Weierstrass/Jacobian.v#L135> // <https://github.com/mit-plv/fiat-crypto/blob/79f8b5f39ed609339f0233098dee1a3c4e6b3080/src/Curves/Weierstrass/Jacobian.v#L205> // // This function includes a branch for checking whether the two input points // are equal, (while not equal to the point at infinity). This case never // happens during single point multiplication, so there is no timing leak for // ECDH or ECDSA signing. static void point_add(fe x3, fe y3, fe z3, const fe x1, const fe y1, const fe z1, const int mixed, const fe x2, const fe y2, const fe z2) { fe x_out, y_out, z_out; WORD z1nz = fe_nz(z1); WORD z2nz = fe_nz(z2); // z1z1 = z1z1 = z1**2 fe z1z1; fe_sqr(z1z1, z1); fe u1, s1, two_z1z2; if (!mixed) { // z2z2 = z2**2 fe z2z2; fe_sqr(z2z2, z2); // u1 = x1*z2z2 fe_mul(u1, x1, z2z2); // two_z1z2 = (z1 + z2)**2 - (z1z1 + z2z2) = 2z1z2 fe_add(two_z1z2, z1, z2); fe_sqr(two_z1z2, two_z1z2); fe_sub(two_z1z2, two_z1z2, z1z1); fe_sub(two_z1z2, two_z1z2, z2z2); // s1 = y1 * z2**3 fe_mul(s1, z2, z2z2); fe_mul(s1, s1, y1); } else { // We'll assume z2 = 1 (special case z2 = 0 is handled later). // u1 = x1*z2z2 fe_copy(u1, x1); // two_z1z2 = 2z1z2 fe_add(two_z1z2, z1, z1); // s1 = y1 * z2**3 fe_copy(s1, y1); } // u2 = x2*z1z1 fe u2; fe_mul(u2, x2, z1z1); // h = u2 - u1 fe h; fe_sub(h, u2, u1); WORD xneq = fe_nz(h); // z_out = two_z1z2 * h fe_mul(z_out, h, two_z1z2); // z1z1z1 = z1 * z1z1 fe z1z1z1; fe_mul(z1z1z1, z1, z1z1); // s2 = y2 * z1**3 fe s2; fe_mul(s2, y2, z1z1z1); // r = (s2 - s1)*2 fe r; fe_sub(r, s2, s1); fe_add(r, r, r); WORD yneq = fe_nz(r); if (!xneq && !yneq && z1nz && z2nz) { point_double(x3, y3, z3, x1, y1, z1); return; } // I = (2h)**2 fe i; fe_add(i, h, h); fe_sqr(i, i); // J = h * I fe j; fe_mul(j, h, i); // V = U1 * I fe v; fe_mul(v, u1, i); // x_out = r**2 - J - 2V fe_sqr(x_out, r); fe_sub(x_out, x_out, j); fe_sub(x_out, x_out, v); fe_sub(x_out, x_out, v); // y_out = r(V-x_out) - 2 * s1 * J fe_sub(y_out, v, x_out); fe_mul(y_out, y_out, r); fe s1j; fe_mul(s1j, s1, j); fe_sub(y_out, y_out, s1j); fe_sub(y_out, y_out, s1j); fe_cmovznz(x_out, z1nz, x2, x_out); fe_cmovznz(x3, z2nz, x1, x_out); fe_cmovznz(y_out, z1nz, y2, y_out); fe_cmovznz(y3, z2nz, y1, y_out); fe_cmovznz(z_out, z1nz, z2, z_out); fe_cmovznz(z3, z2nz, z1, z_out); } /* Use a sliding window optimization method for scalar multiplication Hard-coded window size = 4 Implementation inspired from Go's crypto library https://github.com/golang/go/blob/a5cd894318677359f6d07ee74f9004d28b4d164c/src/crypto/internal/nistec/p256.go#L317 */ /* Select the n-th element of the table without leaking information about [n] */ static void table_select(fe out_x, fe out_y, fe out_z, size_t index, uint8_t n) { fe x, y, z = {0}; fe_one(x); fe_one(y); for(uint8_t i = 1 ; i < 16 ; ++i) { WORD cond = i ^ n; fe_cmovznz(x, cond, generator_table[index][n - 1][0], x); fe_cmovznz(y, cond, generator_table[index][n - 1][1], y); fe_cmovznz(z, cond, generator_table[index][n - 1][2], z); } fe_copy(out_x, x); fe_copy(out_y, y); fe_copy(out_z, z); } /* Returns [kG] by decomposing [k] in binary form, and adding [2^0G * k_0 + 2^1G * k_1 + ...] in constant time using pre-computed values of 2^iG */ static void scalar_mult_base(fe x2, fe y2, fe z2, const uint8_t* scalar, size_t len) { // P = 0 fe p_x, p_y, p_z = {0}; fe_one(p_x); fe_one(p_y); size_t index = 0; for(size_t i = 0 ; i < len ; ++i) { fe s_x, s_y, s_z; uint8_t window = scalar[i] & 0xf; table_select(s_x, s_y, s_z, index, window); point_add(p_x, p_y, p_z, p_x, p_y, p_z, 0, s_x, s_y, s_z); index++; window = scalar[i] >> 4; table_select(s_x, s_y, s_z, index, window); point_add(p_x, p_y, p_z, p_x, p_y, p_z, 0, s_x, s_y, s_z); index++; } fe_copy(x2, p_x); fe_copy(y2, p_y); fe_copy(z2, p_z); }
mirage-crypto
2.0.2
ISC
https://github.com/mirage/mirage-crypto
git+https://github.com/mirage/mirage-crypto.git
opam
mirage-crypto-2.0.2/mirage-crypto-ec.opam
version: "2.0.2" opam-version: "2.0" synopsis: "Elliptic Curve Cryptography with primitives taken from Fiat" description: """ An implementation of key exchange (ECDH) and digital signature (ECDSA/EdDSA) algorithms using code from Fiat (<https://github.com/mit-plv/fiat-crypto>). The curves P256 (SECP256R1), P384 (SECP384R1), P521 (SECP521R1), and 25519 (X25519, Ed25519) are implemented by this package. """ maintainer: "Hannes Mehnert <hannes@mehnert.org>" authors: [ "Hannes Mehnert <hannes@mehnert.org>" "Nathan Rebours <nathan.p.rebours@gmail.com>" "Clément Pascutto <clement@tarides.com>" "Etienne Millon <me@emillon.org>" "Virgile Robles <virgile.robles@protonmail.ch>" # and from the fiat-crypto AUTHORS file "Andres Erbsen <andreser@mit.edu>" "Google Inc." "Jade Philipoom <jadep@mit.edu> <jade.philipoom@gmail.com>" "Massachusetts Institute of Technology" "Zoe Paraskevopoulou <zoe.paraskevopoulou@gmail.com>" ] license: "MIT" homepage: "https://github.com/mirage/mirage-crypto" doc: "https://mirage.github.io/mirage-crypto/doc" bug-reports: "https://github.com/mirage/mirage-crypto/issues" depends: [ "dune" {>= "2.7"} "ocaml" {>= "4.13.0"} "dune-configurator" "eqaf" {>= "0.7"} "mirage-crypto-rng" {=version} "digestif" {>= "1.2.0"} "alcotest" {with-test & >= "0.8.1"} "ppx_deriving_yojson" {with-test} "ppx_deriving" {with-test} "yojson" {with-test & >= "1.6.0"} "asn1-combinators" {with-test & >= "0.3.1"} "ohex" {with-test & >= "0.2.0"} "ounit2" {with-test} ] conflicts: [ "ocaml-freestanding" ] build: [ ["dune" "subst"] {dev} ["dune" "build" "-p" name "-j" jobs] ["dune" "runtest" "-p" name "-j" jobs] {with-test} ] dev-repo: "git+https://github.com/mirage/mirage-crypto.git" tags: ["org:mirage"] x-maintenance-intent: [ "(latest)" ]
mirage-crypto
2.0.2
ISC
https://github.com/mirage/mirage-crypto
git+https://github.com/mirage/mirage-crypto.git
opam
mirage-crypto-2.0.2/mirage-crypto-pk.opam
version: "2.0.2" opam-version: "2.0" homepage: "https://github.com/mirage/mirage-crypto" dev-repo: "git+https://github.com/mirage/mirage-crypto.git" bug-reports: "https://github.com/mirage/mirage-crypto/issues" doc: "https://mirage.github.io/mirage-crypto/doc" authors: ["David Kaloper <dk505@cam.ac.uk>" "Hannes Mehnert <hannes@mehnert.org>" ] maintainer: "Hannes Mehnert <hannes@mehnert.org>" license: "ISC" synopsis: "Simple public-key cryptography for the modern age" build: [ ["dune" "subst"] {dev} ["dune" "build" "-p" name "-j" jobs ] ["dune" "runtest" "-p" name "-j" jobs] {with-test} ] depends: [ "conf-gmp-powm-sec" {build} "ocaml" {>= "4.13.0"} "dune" {>= "2.7"} "ounit2" {with-test} "randomconv" {with-test & >= "0.2.0"} "ohex" {with-test & >= "0.2.0"} "mirage-crypto" {=version} "mirage-crypto-rng" {=version} "digestif" {>= "1.2.0"} "zarith" {>= "1.13"} "eqaf" {>= "0.8"} ] conflicts: [ "ocaml-freestanding" ] description: """ Mirage-crypto-pk provides public-key cryptography (RSA, DSA, DH). """ x-maintenance-intent: [ "(latest)" ]
mirage-crypto
2.0.2
ISC
https://github.com/mirage/mirage-crypto
git+https://github.com/mirage/mirage-crypto.git
opam
mirage-crypto-2.0.2/mirage-crypto-rng-miou-unix.opam
version: "2.0.2" opam-version: "2.0" homepage: "https://github.com/mirage/mirage-crypto" dev-repo: "git+https://github.com/mirage/mirage-crypto.git" bug-reports: "https://github.com/mirage/mirage-crypto/issues" doc: "https://mirage.github.io/mirage-crypto/doc" authors: ["Romain Calascibetta <romain.calascibetta@gmail.com>" ] maintainer: "Romain Calascibetta <romain.calascibetta@gmail.com>" license: "ISC" synopsis: "Feed the entropy source in an miou.unix-friendly way" build: [ ["dune" "subst"] {dev} ["dune" "build" "-p" name "-j" jobs ] ["dune" "runtest" "-p" name "-j" jobs] {with-test} ] depends: [ "ocaml" {>= "5.0.0"} "dune" {>= "2.7"} "miou" {>= "0.2.0"} "logs" "mirage-crypto-rng" {=version} "duration" "mtime" {>= "1.0.0"} "digestif" {>= "1.2.0"} "ohex" {with-test & >= "0.2.0"} ] description: """ Mirage-crypto-rng-miou-unix feeds the entropy source for Mirage_crypto_rng-based random number generator implementations, in an miou.unix-friendly way. """ x-maintenance-intent: [ "(latest)" ]
mirage-crypto
2.0.2
ISC
https://github.com/mirage/mirage-crypto
git+https://github.com/mirage/mirage-crypto.git
opam
mirage-crypto-2.0.2/mirage-crypto-rng-mirage.opam
version: "2.0.2" opam-version: "2.0" homepage: "https://github.com/mirage/mirage-crypto" dev-repo: "git+https://github.com/mirage/mirage-crypto.git" bug-reports: "https://github.com/mirage/mirage-crypto/issues" doc: "https://mirage.github.io/mirage-crypto/doc" authors: ["David Kaloper <dk505@cam.ac.uk>" "Hannes Mehnert <hannes@mehnert.org>" ] maintainer: "Hannes Mehnert <hannes@mehnert.org>" license: "BSD-2-Clause" synopsis: "Entropy collection for a cryptographically secure PRNG" build: [ ["dune" "subst"] {dev} ["dune" "build" "-p" name "-j" jobs ] ["dune" "runtest" "-p" name "-j" jobs] {with-test} ] depends: [ "ocaml" {>= "4.13.0"} "dune" {>= "2.7"} "mirage-crypto-rng" {=version} "duration" "logs" "lwt" {>= "4.0.0"} "mirage-runtime" {>= "3.8.0"} "mirage-sleep" {>= "4.0.0"} "mirage-mtime" {>= "4.0.0"} "mirage-unix" {with-test & >= "5.0.0"} "ohex" {with-test & >= "0.2.0"} ] description: """ Mirage-crypto-rng-mirage provides entropy collection code for the RNG. """ x-maintenance-intent: [ "(latest)" ]
mirage-crypto
2.0.2
ISC
https://github.com/mirage/mirage-crypto
git+https://github.com/mirage/mirage-crypto.git
opam
mirage-crypto-2.0.2/mirage-crypto-rng.opam
version: "2.0.2" opam-version: "2.0" homepage: "https://github.com/mirage/mirage-crypto" dev-repo: "git+https://github.com/mirage/mirage-crypto.git" bug-reports: "https://github.com/mirage/mirage-crypto/issues" doc: "https://mirage.github.io/mirage-crypto/doc" authors: ["David Kaloper <dk505@cam.ac.uk>" "Hannes Mehnert <hannes@mehnert.org>" ] maintainer: "Hannes Mehnert <hannes@mehnert.org>" license: "ISC" synopsis: "A cryptographically secure PRNG" build: [ ["dune" "subst"] {dev} ["dune" "build" "-p" name "-j" jobs ] ["dune" "runtest" "-p" name "-j" jobs] {with-test} ] depends: [ "ocaml" {>= "4.14.0"} "dune" {>= "2.7"} "dune-configurator" {>= "2.0.0"} "duration" "logs" "mirage-crypto" {=version} "digestif" {>= "1.1.4"} "ounit2" {with-test} "randomconv" {with-test & >= "0.2.0"} "ohex" {with-test & >= "0.2.0"} ] conflicts: [ "mirage-runtime" {< "3.8.0"} ] description: """ Mirage-crypto-rng provides a random number generator interface, and implementations: Fortuna, HMAC-DRBG, getrandom/getentropy based (in the unix sublibrary) """ x-maintenance-intent: [ "(latest)" ]
mirage-crypto
2.0.2
ISC
https://github.com/mirage/mirage-crypto
git+https://github.com/mirage/mirage-crypto.git
opam
mirage-crypto-2.0.2/mirage-crypto.opam
version: "2.0.2" opam-version: "2.0" homepage: "https://github.com/mirage/mirage-crypto" dev-repo: "git+https://github.com/mirage/mirage-crypto.git" bug-reports: "https://github.com/mirage/mirage-crypto/issues" doc: "https://mirage.github.io/mirage-crypto/doc" authors: ["David Kaloper <dk505@cam.ac.uk>" "Hannes Mehnert <hannes@mehnert.org>" ] maintainer: "Hannes Mehnert <hannes@mehnert.org>" license: "ISC" synopsis: "Simple symmetric cryptography for the modern age" build: [ ["dune" "subst"] {dev} ["dune" "build" "-p" name "-j" jobs ] ["dune" "runtest" "-p" name "-j" jobs] {with-test} ] depends: [ "ocaml" {>= "4.13.0"} "dune" {>= "2.7"} "dune-configurator" {>= "2.0.0"} "ounit2" {with-test} "ohex" {with-test & >= "0.2.0"} "eqaf" {>= "0.8"} ] conflicts: [ "ocaml-freestanding" "result" {< "1.5"} ] description: """ Mirage-crypto provides symmetric ciphers (DES, AES, RC4, ChaCha20/Poly1305). """ x-maintenance-intent: [ "(latest)" ]
mirage-crypto
2.0.2
ISC
https://github.com/mirage/mirage-crypto
git+https://github.com/mirage/mirage-crypto.git
ml
mirage-crypto-2.0.2/mirage/config.ml
open Mirage let main = let packages = [ package "mirage-crypto-rng" ; package "mirage-crypto-pk" ; package "mirage-crypto" ; package ~min:"0.8.7" "fmt" ; package "ohex" ; ] in main ~packages "Unikernel" job let () = register "crypto-test" [main]
mirage-crypto
2.0.2
ISC
https://github.com/mirage/mirage-crypto
git+https://github.com/mirage/mirage-crypto.git
ml
mirage-crypto-2.0.2/mirage/unikernel.ml
let start () = Logs.info (fun m -> m "using Fortuna, entropy sources: %a" Fmt.(list ~sep:(any ", ") Mirage_crypto_rng.Entropy.pp_source) (Mirage_crypto_rng.Entropy.sources ())) ; Logs.info (fun m -> m "64 byte random:@ %a" (Ohex.pp_hexdump ()) (Mirage_crypto_rng.generate 64)) ; let n = Bytes.(unsafe_to_string (create 32)) in let key = Mirage_crypto.Chacha20.of_secret n and nonce = Bytes.(unsafe_to_string (create 12)) in Logs.info (fun m -> m "Chacha20/Poly1305 of 32*0, key 32*0, nonce 12*0: %a" (Ohex.pp_hexdump ()) (Mirage_crypto.Chacha20.authenticate_encrypt ~key ~nonce n)); let key = Mirage_crypto_pk.Rsa.generate ~bits:4096 () in let signature = Mirage_crypto_pk.Rsa.PKCS1.sign ~hash:`SHA256 ~key (`Message n) in let verified = let key = Mirage_crypto_pk.Rsa.pub_of_priv key in let hashp = function `SHA256 -> true | _ -> false in Mirage_crypto_pk.Rsa.PKCS1.verify ~hashp ~key ~signature (`Message n) in Logs.info (fun m -> m "Generated a RSA key of %d bits (sign + verify %B)" (Mirage_crypto_pk.Rsa.priv_bits key) verified); Lwt.return_unit
mirage-crypto
2.0.2
ISC
https://github.com/mirage/mirage-crypto
git+https://github.com/mirage/mirage-crypto.git
ml
mirage-crypto-2.0.2/pk/common.ml
let rec until p f = let r = f () in if p r then r else until p f let guard p err = if p then Ok () else Error err let ( let* ) = Result.bind
mirage-crypto
2.0.2
ISC
https://github.com/mirage/mirage-crypto
git+https://github.com/mirage/mirage-crypto.git
ml
mirage-crypto-2.0.2/pk/dh.ml
open Mirage_crypto.Uncommon open Common exception Invalid_key type group = { p : Z.t ; (* The prime modulus *) gg : Z.t ; (* Group generator *) q : Z.t option ; (* `gg`'s order, maybe *) } let group ~p ~gg ?q () = let* () = guard (Z.(p > zero && is_odd p) && Z_extra.pseudoprime p) (`Msg "invalid prime") in let* () = guard Z.(one < gg && gg < p) (`Msg "invalid generator") in Ok { p ; gg ; q } type secret = { group : group ; x : Z.t } (* * Estimates of equivalent-strength exponent sizes for the moduli sizes. * 2048-8192 are taken from "Negotiated FF DHE Parameters for TLS." * Sizes above and below are further guesswork. *) let exp_equivalent = [ (1024, 180); (2048, 225); (3072, 275); (4096, 325); (6144, 375); (8192, 400) ] and exp_equivalent_max = 512 let exp_size bits = try snd @@ List.find (fun (g, _) -> g >= bits) exp_equivalent with Not_found -> exp_equivalent_max let modulus_size { p; _ } = Z.numbits p (* * Current thinking: * g^y < 0 || g^y >= p : obviously not computed mod p * g^y = 0 || g^y = 1 : shared secret is 0, resp. 1 * g^y = p - 1 : order of g^y is 2 * g^y = g : y mod (p-1) is 1 *) let bad_public_key { p; gg; _ } ggx = ggx <= Z.one || ggx >= Z.(pred p) || ggx = gg let valid_secret { p ; _ } s = Z.(one < s && s < p) let key_of_secret_z ({ p; gg; _ } as group) x = if valid_secret group x then match Z.(powm_sec gg x p) with | ggx when bad_public_key group ggx -> raise_notrace Invalid_key | ggx -> ({ group ; x }, Z_extra.to_octets_be ggx) else raise_notrace Invalid_key let key_of_secret group ~s = (* catches Invalid_private_key and re-raises with exception trace: *) try key_of_secret_z group (Z_extra.of_octets_be s) with Invalid_key -> raise Invalid_key (* XXX * - slightly weird distribution when bits > |q| * - exponentiation time *) let rec gen_key ?g ?bits ({ p; q; _ } as group) = let pb = Z.numbits p in let s = imin (Option.value bits ~default:pb |> exp_size) (Option.fold ~none:pb ~some:Z.numbits q) |> Z_extra.gen_bits ?g ~msb:1 in try key_of_secret_z group s with Invalid_key -> gen_key ?g ?bits group let shared { group ; x } cs = match Z_extra.of_octets_be cs with | ggy when bad_public_key group ggy -> None | ggy -> Some (Z_extra.to_octets_be (Z.powm_sec ggy x group.p)) (* Finds a safe prime with [p = 2q + 1] and [2^q = 1 mod p]. *) let rec gen_group ?g ~bits () = let gg = Z.(~$2) and (q, p) = Z_extra.safe_prime ?g (imax bits 1) in if Z.(powm gg q p = one) then { p; gg; q = Some q } else gen_group ?g ~bits () module Group = struct (* Safe-prime-style group: p = 2q + 1 && gg = 2 && gg^q = 1 mod p *) let s_group ~p = let p = Z_extra.of_octets_be p in { p ; gg = Z.(~$2) ; q = Some Z.(pred p / ~$2) } (* Any old group. *) let group ~p ~gg ~q = let f = Z_extra.of_octets_be in { p = f p ; gg = f gg ; q = Some (f q) } (* RFC2409 *) let oakley_1 = (* 2^768 - 2 ^704 - 1 + 2^64 * { [2^638 pi] + 149686 } *) s_group ~p: "\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xC9\x0F\xDA\xA2\x21\x68\xC2\x34\ \xC4\xC6\x62\x8B\x80\xDC\x1C\xD1\x29\x02\x4E\x08\x8A\x67\xCC\x74\ \x02\x0B\xBE\xA6\x3B\x13\x9B\x22\x51\x4A\x08\x79\x8E\x34\x04\xDD\ \xEF\x95\x19\xB3\xCD\x3A\x43\x1B\x30\x2B\x0A\x6D\xF2\x5F\x14\x37\ \x4F\xE1\x35\x6D\x6D\x51\xC2\x45\xE4\x85\xB5\x76\x62\x5E\x7E\xC6\ \xF4\x4C\x42\xE9\xA6\x3A\x36\x20\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF" let oakley_2 = (* 2^1024 - 2^960 - 1 + 2^64 * { [2^894 pi] + 129093 }. *) s_group ~p: "\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xC9\x0F\xDA\xA2\x21\x68\xC2\x34\ \xC4\xC6\x62\x8B\x80\xDC\x1C\xD1\x29\x02\x4E\x08\x8A\x67\xCC\x74\ \x02\x0B\xBE\xA6\x3B\x13\x9B\x22\x51\x4A\x08\x79\x8E\x34\x04\xDD\ \xEF\x95\x19\xB3\xCD\x3A\x43\x1B\x30\x2B\x0A\x6D\xF2\x5F\x14\x37\ \x4F\xE1\x35\x6D\x6D\x51\xC2\x45\xE4\x85\xB5\x76\x62\x5E\x7E\xC6\ \xF4\x4C\x42\xE9\xA6\x37\xED\x6B\x0B\xFF\x5C\xB6\xF4\x06\xB7\xED\ \xEE\x38\x6B\xFB\x5A\x89\x9F\xA5\xAE\x9F\x24\x11\x7C\x4B\x1F\xE6\ x49\x28\x66\x51\xEC\xE6\x53\x81\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF" (* RFC3526 *) let oakley_5 = (* 2^1536 - 2^1472 - 1 + 2^64 * { [2^1406 pi] + 741804 } *) s_group ~p: "\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xC9\x0F\xDA\xA2\x21\x68\xC2\x34\ \xC4\xC6\x62\x8B\x80\xDC\x1C\xD1\x29\x02\x4E\x08\x8A\x67\xCC\x74\ \x02\x0B\xBE\xA6\x3B\x13\x9B\x22\x51\x4A\x08\x79\x8E\x34\x04\xDD\ \xEF\x95\x19\xB3\xCD\x3A\x43\x1B\x30\x2B\x0A\x6D\xF2\x5F\x14\x37\ \x4F\xE1\x35\x6D\x6D\x51\xC2\x45\xE4\x85\xB5\x76\x62\x5E\x7E\xC6\ \xF4\x4C\x42\xE9\xA6\x37\xED\x6B\x0B\xFF\x5C\xB6\xF4\x06\xB7\xED\ \xEE\x38\x6B\xFB\x5A\x89\x9F\xA5\xAE\x9F\x24\x11\x7C\x4B\x1F\xE6\ \x49\x28\x66\x51\xEC\xE4\x5B\x3D\xC2\x00\x7C\xB8\xA1\x63\xBF\x05\ \x98\xDA\x48\x36\x1C\x55\xD3\x9A\x69\x16\x3F\xA8\xFD\x24\xCF\x5F\ \x83\x65\x5D\x23\xDC\xA3\xAD\x96\x1C\x62\xF3\x56\x20\x85\x52\xBB\ \x9E\xD5\x29\x07\x70\x96\x96\x6D\x67\x0C\x35\x4E\x4A\xBC\x98\x04\ \xF1\x74\x6C\x08\xCA\x23\x73\x27\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF" let oakley_14 = (* 2^2048 - 2^1984 - 1 + 2^64 * { [2^1918 pi] + 124476 } *) s_group ~p: "\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xC9\x0F\xDA\xA2\x21\x68\xC2\x34\ \xC4\xC6\x62\x8B\x80\xDC\x1C\xD1\x29\x02\x4E\x08\x8A\x67\xCC\x74\ \x02\x0B\xBE\xA6\x3B\x13\x9B\x22\x51\x4A\x08\x79\x8E\x34\x04\xDD\ \xEF\x95\x19\xB3\xCD\x3A\x43\x1B\x30\x2B\x0A\x6D\xF2\x5F\x14\x37\ \x4F\xE1\x35\x6D\x6D\x51\xC2\x45\xE4\x85\xB5\x76\x62\x5E\x7E\xC6\ \xF4\x4C\x42\xE9\xA6\x37\xED\x6B\x0B\xFF\x5C\xB6\xF4\x06\xB7\xED\ \xEE\x38\x6B\xFB\x5A\x89\x9F\xA5\xAE\x9F\x24\x11\x7C\x4B\x1F\xE6\ \x49\x28\x66\x51\xEC\xE4\x5B\x3D\xC2\x00\x7C\xB8\xA1\x63\xBF\x05\ \x98\xDA\x48\x36\x1C\x55\xD3\x9A\x69\x16\x3F\xA8\xFD\x24\xCF\x5F\ \x83\x65\x5D\x23\xDC\xA3\xAD\x96\x1C\x62\xF3\x56\x20\x85\x52\xBB\ \x9E\xD5\x29\x07\x70\x96\x96\x6D\x67\x0C\x35\x4E\x4A\xBC\x98\x04\ \xF1\x74\x6C\x08\xCA\x18\x21\x7C\x32\x90\x5E\x46\x2E\x36\xCE\x3B\ \xE3\x9E\x77\x2C\x18\x0E\x86\x03\x9B\x27\x83\xA2\xEC\x07\xA2\x8F\ \xB5\xC5\x5D\xF0\x6F\x4C\x52\xC9\xDE\x2B\xCB\xF6\x95\x58\x17\x18\ \x39\x95\x49\x7C\xEA\x95\x6A\xE5\x15\xD2\x26\x18\x98\xFA\x05\x10\ \x15\x72\x8E\x5A\x8A\xAC\xAA\x68\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF" let oakley_15 = (* 2^3072 - 2^3008 - 1 + 2^64 * { [2^2942 pi] + 1690314 } *) s_group ~p: "\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xC9\x0F\xDA\xA2\x21\x68\xC2\x34\ \xC4\xC6\x62\x8B\x80\xDC\x1C\xD1\x29\x02\x4E\x08\x8A\x67\xCC\x74\ \x02\x0B\xBE\xA6\x3B\x13\x9B\x22\x51\x4A\x08\x79\x8E\x34\x04\xDD\ \xEF\x95\x19\xB3\xCD\x3A\x43\x1B\x30\x2B\x0A\x6D\xF2\x5F\x14\x37\ \x4F\xE1\x35\x6D\x6D\x51\xC2\x45\xE4\x85\xB5\x76\x62\x5E\x7E\xC6\ \xF4\x4C\x42\xE9\xA6\x37\xED\x6B\x0B\xFF\x5C\xB6\xF4\x06\xB7\xED\ \xEE\x38\x6B\xFB\x5A\x89\x9F\xA5\xAE\x9F\x24\x11\x7C\x4B\x1F\xE6\ \x49\x28\x66\x51\xEC\xE4\x5B\x3D\xC2\x00\x7C\xB8\xA1\x63\xBF\x05\ \x98\xDA\x48\x36\x1C\x55\xD3\x9A\x69\x16\x3F\xA8\xFD\x24\xCF\x5F\ \x83\x65\x5D\x23\xDC\xA3\xAD\x96\x1C\x62\xF3\x56\x20\x85\x52\xBB\ \x9E\xD5\x29\x07\x70\x96\x96\x6D\x67\x0C\x35\x4E\x4A\xBC\x98\x04\ \xF1\x74\x6C\x08\xCA\x18\x21\x7C\x32\x90\x5E\x46\x2E\x36\xCE\x3B\ \xE3\x9E\x77\x2C\x18\x0E\x86\x03\x9B\x27\x83\xA2\xEC\x07\xA2\x8F\ \xB5\xC5\x5D\xF0\x6F\x4C\x52\xC9\xDE\x2B\xCB\xF6\x95\x58\x17\x18\ \x39\x95\x49\x7C\xEA\x95\x6A\xE5\x15\xD2\x26\x18\x98\xFA\x05\x10\ \x15\x72\x8E\x5A\x8A\xAA\xC4\x2D\xAD\x33\x17\x0D\x04\x50\x7A\x33\ \xA8\x55\x21\xAB\xDF\x1C\xBA\x64\xEC\xFB\x85\x04\x58\xDB\xEF\x0A\ \x8A\xEA\x71\x57\x5D\x06\x0C\x7D\xB3\x97\x0F\x85\xA6\xE1\xE4\xC7\ \xAB\xF5\xAE\x8C\xDB\x09\x33\xD7\x1E\x8C\x94\xE0\x4A\x25\x61\x9D\ \xCE\xE3\xD2\x26\x1A\xD2\xEE\x6B\xF1\x2F\xFA\x06\xD9\x8A\x08\x64\ \xD8\x76\x02\x73\x3E\xC8\x6A\x64\x52\x1F\x2B\x18\x17\x7B\x20\x0C\ \xBB\xE1\x17\x57\x7A\x61\x5D\x6C\x77\x09\x88\xC0\xBA\xD9\x46\xE2\ \x08\xE2\x4F\xA0\x74\xE5\xAB\x31\x43\xDB\x5B\xFC\xE0\xFD\x10\x8E\ \x4B\x82\xD1\x20\xA9\x3A\xD2\xCA\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF" let oakley_16 = (* 2^4096 - 2^4032 - 1 + 2^64 * { [2^3966 pi] + 240904 } *) s_group ~p: "\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xC9\x0F\xDA\xA2\x21\x68\xC2\x34\ \xC4\xC6\x62\x8B\x80\xDC\x1C\xD1\x29\x02\x4E\x08\x8A\x67\xCC\x74\ \x02\x0B\xBE\xA6\x3B\x13\x9B\x22\x51\x4A\x08\x79\x8E\x34\x04\xDD\ \xEF\x95\x19\xB3\xCD\x3A\x43\x1B\x30\x2B\x0A\x6D\xF2\x5F\x14\x37\ \x4F\xE1\x35\x6D\x6D\x51\xC2\x45\xE4\x85\xB5\x76\x62\x5E\x7E\xC6\ \xF4\x4C\x42\xE9\xA6\x37\xED\x6B\x0B\xFF\x5C\xB6\xF4\x06\xB7\xED\ \xEE\x38\x6B\xFB\x5A\x89\x9F\xA5\xAE\x9F\x24\x11\x7C\x4B\x1F\xE6\ \x49\x28\x66\x51\xEC\xE4\x5B\x3D\xC2\x00\x7C\xB8\xA1\x63\xBF\x05\ \x98\xDA\x48\x36\x1C\x55\xD3\x9A\x69\x16\x3F\xA8\xFD\x24\xCF\x5F\ \x83\x65\x5D\x23\xDC\xA3\xAD\x96\x1C\x62\xF3\x56\x20\x85\x52\xBB\ \x9E\xD5\x29\x07\x70\x96\x96\x6D\x67\x0C\x35\x4E\x4A\xBC\x98\x04\ \xF1\x74\x6C\x08\xCA\x18\x21\x7C\x32\x90\x5E\x46\x2E\x36\xCE\x3B\ \xE3\x9E\x77\x2C\x18\x0E\x86\x03\x9B\x27\x83\xA2\xEC\x07\xA2\x8F\ \xB5\xC5\x5D\xF0\x6F\x4C\x52\xC9\xDE\x2B\xCB\xF6\x95\x58\x17\x18\ \x39\x95\x49\x7C\xEA\x95\x6A\xE5\x15\xD2\x26\x18\x98\xFA\x05\x10\ \x15\x72\x8E\x5A\x8A\xAA\xC4\x2D\xAD\x33\x17\x0D\x04\x50\x7A\x33\ \xA8\x55\x21\xAB\xDF\x1C\xBA\x64\xEC\xFB\x85\x04\x58\xDB\xEF\x0A\ \x8A\xEA\x71\x57\x5D\x06\x0C\x7D\xB3\x97\x0F\x85\xA6\xE1\xE4\xC7\ \xAB\xF5\xAE\x8C\xDB\x09\x33\xD7\x1E\x8C\x94\xE0\x4A\x25\x61\x9D\ \xCE\xE3\xD2\x26\x1A\xD2\xEE\x6B\xF1\x2F\xFA\x06\xD9\x8A\x08\x64\ \xD8\x76\x02\x73\x3E\xC8\x6A\x64\x52\x1F\x2B\x18\x17\x7B\x20\x0C\ \xBB\xE1\x17\x57\x7A\x61\x5D\x6C\x77\x09\x88\xC0\xBA\xD9\x46\xE2\ \x08\xE2\x4F\xA0\x74\xE5\xAB\x31\x43\xDB\x5B\xFC\xE0\xFD\x10\x8E\ \x4B\x82\xD1\x20\xA9\x21\x08\x01\x1A\x72\x3C\x12\xA7\x87\xE6\xD7\ \x88\x71\x9A\x10\xBD\xBA\x5B\x26\x99\xC3\x27\x18\x6A\xF4\xE2\x3C\ \x1A\x94\x68\x34\xB6\x15\x0B\xDA\x25\x83\xE9\xCA\x2A\xD4\x4C\xE8\ \xDB\xBB\xC2\xDB\x04\xDE\x8E\xF9\x2E\x8E\xFC\x14\x1F\xBE\xCA\xA6\ \x28\x7C\x59\x47\x4E\x6B\xC0\x5D\x99\xB2\x96\x4F\xA0\x90\xC3\xA2\ \x23\x3B\xA1\x86\x51\x5B\xE7\xED\x1F\x61\x29\x70\xCE\xE2\xD7\xAF\ \xB8\x1B\xDD\x76\x21\x70\x48\x1C\xD0\x06\x91\x27\xD5\xB0\x5A\xA9\ \x93\xB4\xEA\x98\x8D\x8F\xDD\xC1\x86\xFF\xB7\xDC\x90\xA6\xC0\x8F\ \x4D\xF4\x35\xC9\x34\x06\x31\x99\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF" let oakley_17 = (* 2^6144 - 2^6080 - 1 + 2^64 * { [2^6014 pi] + 929484 } *) s_group ~p: "\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xC9\x0F\xDA\xA2\x21\x68\xC2\x34\ \xC4\xC6\x62\x8B\x80\xDC\x1C\xD1\x29\x02\x4E\x08\x8A\x67\xCC\x74\ \x02\x0B\xBE\xA6\x3B\x13\x9B\x22\x51\x4A\x08\x79\x8E\x34\x04\xDD\ \xEF\x95\x19\xB3\xCD\x3A\x43\x1B\x30\x2B\x0A\x6D\xF2\x5F\x14\x37\ \x4F\xE1\x35\x6D\x6D\x51\xC2\x45\xE4\x85\xB5\x76\x62\x5E\x7E\xC6\ \xF4\x4C\x42\xE9\xA6\x37\xED\x6B\x0B\xFF\x5C\xB6\xF4\x06\xB7\xED\ \xEE\x38\x6B\xFB\x5A\x89\x9F\xA5\xAE\x9F\x24\x11\x7C\x4B\x1F\xE6\ \x49\x28\x66\x51\xEC\xE4\x5B\x3D\xC2\x00\x7C\xB8\xA1\x63\xBF\x05\ \x98\xDA\x48\x36\x1C\x55\xD3\x9A\x69\x16\x3F\xA8\xFD\x24\xCF\x5F\ \x83\x65\x5D\x23\xDC\xA3\xAD\x96\x1C\x62\xF3\x56\x20\x85\x52\xBB\ \x9E\xD5\x29\x07\x70\x96\x96\x6D\x67\x0C\x35\x4E\x4A\xBC\x98\x04\ \xF1\x74\x6C\x08\xCA\x18\x21\x7C\x32\x90\x5E\x46\x2E\x36\xCE\x3B\ \xE3\x9E\x77\x2C\x18\x0E\x86\x03\x9B\x27\x83\xA2\xEC\x07\xA2\x8F\ \xB5\xC5\x5D\xF0\x6F\x4C\x52\xC9\xDE\x2B\xCB\xF6\x95\x58\x17\x18\ \x39\x95\x49\x7C\xEA\x95\x6A\xE5\x15\xD2\x26\x18\x98\xFA\x05\x10\ \x15\x72\x8E\x5A\x8A\xAA\xC4\x2D\xAD\x33\x17\x0D\x04\x50\x7A\x33\ \xA8\x55\x21\xAB\xDF\x1C\xBA\x64\xEC\xFB\x85\x04\x58\xDB\xEF\x0A\ \x8A\xEA\x71\x57\x5D\x06\x0C\x7D\xB3\x97\x0F\x85\xA6\xE1\xE4\xC7\ \xAB\xF5\xAE\x8C\xDB\x09\x33\xD7\x1E\x8C\x94\xE0\x4A\x25\x61\x9D\ \xCE\xE3\xD2\x26\x1A\xD2\xEE\x6B\xF1\x2F\xFA\x06\xD9\x8A\x08\x64\ \xD8\x76\x02\x73\x3E\xC8\x6A\x64\x52\x1F\x2B\x18\x17\x7B\x20\x0C\ \xBB\xE1\x17\x57\x7A\x61\x5D\x6C\x77\x09\x88\xC0\xBA\xD9\x46\xE2\ \x08\xE2\x4F\xA0\x74\xE5\xAB\x31\x43\xDB\x5B\xFC\xE0\xFD\x10\x8E\ \x4B\x82\xD1\x20\xA9\x21\x08\x01\x1A\x72\x3C\x12\xA7\x87\xE6\xD7\ \x88\x71\x9A\x10\xBD\xBA\x5B\x26\x99\xC3\x27\x18\x6A\xF4\xE2\x3C\ \x1A\x94\x68\x34\xB6\x15\x0B\xDA\x25\x83\xE9\xCA\x2A\xD4\x4C\xE8\ \xDB\xBB\xC2\xDB\x04\xDE\x8E\xF9\x2E\x8E\xFC\x14\x1F\xBE\xCA\xA6\ \x28\x7C\x59\x47\x4E\x6B\xC0\x5D\x99\xB2\x96\x4F\xA0\x90\xC3\xA2\ \x23\x3B\xA1\x86\x51\x5B\xE7\xED\x1F\x61\x29\x70\xCE\xE2\xD7\xAF\ \xB8\x1B\xDD\x76\x21\x70\x48\x1C\xD0\x06\x91\x27\xD5\xB0\x5A\xA9\ \x93\xB4\xEA\x98\x8D\x8F\xDD\xC1\x86\xFF\xB7\xDC\x90\xA6\xC0\x8F\ \x4D\xF4\x35\xC9\x34\x02\x84\x92\x36\xC3\xFA\xB4\xD2\x7C\x70\x26\ \xC1\xD4\xDC\xB2\x60\x26\x46\xDE\xC9\x75\x1E\x76\x3D\xBA\x37\xBD\ \xF8\xFF\x94\x06\xAD\x9E\x53\x0E\xE5\xDB\x38\x2F\x41\x30\x01\xAE\ \xB0\x6A\x53\xED\x90\x27\xD8\x31\x17\x97\x27\xB0\x86\x5A\x89\x18\ \xDA\x3E\xDB\xEB\xCF\x9B\x14\xED\x44\xCE\x6C\xBA\xCE\xD4\xBB\x1B\ \xDB\x7F\x14\x47\xE6\xCC\x25\x4B\x33\x20\x51\x51\x2B\xD7\xAF\x42\ \x6F\xB8\xF4\x01\x37\x8C\xD2\xBF\x59\x83\xCA\x01\xC6\x4B\x92\xEC\ \xF0\x32\xEA\x15\xD1\x72\x1D\x03\xF4\x82\xD7\xCE\x6E\x74\xFE\xF6\ \xD5\x5E\x70\x2F\x46\x98\x0C\x82\xB5\xA8\x40\x31\x90\x0B\x1C\x9E\ \x59\xE7\xC9\x7F\xBE\xC7\xE8\xF3\x23\xA9\x7A\x7E\x36\xCC\x88\xBE\ \x0F\x1D\x45\xB7\xFF\x58\x5A\xC5\x4B\xD4\x07\xB2\x2B\x41\x54\xAA\ \xCC\x8F\x6D\x7E\xBF\x48\xE1\xD8\x14\xCC\x5E\xD2\x0F\x80\x37\xE0\ \xA7\x97\x15\xEE\xF2\x9B\xE3\x28\x06\xA1\xD5\x8B\xB7\xC5\xDA\x76\ \xF5\x50\xAA\x3D\x8A\x1F\xBF\xF0\xEB\x19\xCC\xB1\xA3\x13\xD5\x5C\ \xDA\x56\xC9\xEC\x2E\xF2\x96\x32\x38\x7F\xE8\xD7\x6E\x3C\x04\x68\ \x04\x3E\x8F\x66\x3F\x48\x60\xEE\x12\xBF\x2D\x5B\x0B\x74\x74\xD6\ \xE6\x94\xF9\x1E\x6D\xCC\x40\x24\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF" let oakley_18 = (* 2^8192 - 2^8128 - 1 + 2^64 * { [2^8062 pi] + 4743158 } *) s_group ~p: "\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xC9\x0F\xDA\xA2\x21\x68\xC2\x34\ \xC4\xC6\x62\x8B\x80\xDC\x1C\xD1\x29\x02\x4E\x08\x8A\x67\xCC\x74\ \x02\x0B\xBE\xA6\x3B\x13\x9B\x22\x51\x4A\x08\x79\x8E\x34\x04\xDD\ \xEF\x95\x19\xB3\xCD\x3A\x43\x1B\x30\x2B\x0A\x6D\xF2\x5F\x14\x37\ \x4F\xE1\x35\x6D\x6D\x51\xC2\x45\xE4\x85\xB5\x76\x62\x5E\x7E\xC6\ \xF4\x4C\x42\xE9\xA6\x37\xED\x6B\x0B\xFF\x5C\xB6\xF4\x06\xB7\xED\ \xEE\x38\x6B\xFB\x5A\x89\x9F\xA5\xAE\x9F\x24\x11\x7C\x4B\x1F\xE6\ \x49\x28\x66\x51\xEC\xE4\x5B\x3D\xC2\x00\x7C\xB8\xA1\x63\xBF\x05\ \x98\xDA\x48\x36\x1C\x55\xD3\x9A\x69\x16\x3F\xA8\xFD\x24\xCF\x5F\ \x83\x65\x5D\x23\xDC\xA3\xAD\x96\x1C\x62\xF3\x56\x20\x85\x52\xBB\ \x9E\xD5\x29\x07\x70\x96\x96\x6D\x67\x0C\x35\x4E\x4A\xBC\x98\x04\ \xF1\x74\x6C\x08\xCA\x18\x21\x7C\x32\x90\x5E\x46\x2E\x36\xCE\x3B\ \xE3\x9E\x77\x2C\x18\x0E\x86\x03\x9B\x27\x83\xA2\xEC\x07\xA2\x8F\ \xB5\xC5\x5D\xF0\x6F\x4C\x52\xC9\xDE\x2B\xCB\xF6\x95\x58\x17\x18\ \x39\x95\x49\x7C\xEA\x95\x6A\xE5\x15\xD2\x26\x18\x98\xFA\x05\x10\ \x15\x72\x8E\x5A\x8A\xAA\xC4\x2D\xAD\x33\x17\x0D\x04\x50\x7A\x33\ \xA8\x55\x21\xAB\xDF\x1C\xBA\x64\xEC\xFB\x85\x04\x58\xDB\xEF\x0A\ \x8A\xEA\x71\x57\x5D\x06\x0C\x7D\xB3\x97\x0F\x85\xA6\xE1\xE4\xC7\ \xAB\xF5\xAE\x8C\xDB\x09\x33\xD7\x1E\x8C\x94\xE0\x4A\x25\x61\x9D\ \xCE\xE3\xD2\x26\x1A\xD2\xEE\x6B\xF1\x2F\xFA\x06\xD9\x8A\x08\x64\ \xD8\x76\x02\x73\x3E\xC8\x6A\x64\x52\x1F\x2B\x18\x17\x7B\x20\x0C\ \xBB\xE1\x17\x57\x7A\x61\x5D\x6C\x77\x09\x88\xC0\xBA\xD9\x46\xE2\ \x08\xE2\x4F\xA0\x74\xE5\xAB\x31\x43\xDB\x5B\xFC\xE0\xFD\x10\x8E\ \x4B\x82\xD1\x20\xA9\x21\x08\x01\x1A\x72\x3C\x12\xA7\x87\xE6\xD7\ \x88\x71\x9A\x10\xBD\xBA\x5B\x26\x99\xC3\x27\x18\x6A\xF4\xE2\x3C\ \x1A\x94\x68\x34\xB6\x15\x0B\xDA\x25\x83\xE9\xCA\x2A\xD4\x4C\xE8\ \xDB\xBB\xC2\xDB\x04\xDE\x8E\xF9\x2E\x8E\xFC\x14\x1F\xBE\xCA\xA6\ \x28\x7C\x59\x47\x4E\x6B\xC0\x5D\x99\xB2\x96\x4F\xA0\x90\xC3\xA2\ \x23\x3B\xA1\x86\x51\x5B\xE7\xED\x1F\x61\x29\x70\xCE\xE2\xD7\xAF\ \xB8\x1B\xDD\x76\x21\x70\x48\x1C\xD0\x06\x91\x27\xD5\xB0\x5A\xA9\ \x93\xB4\xEA\x98\x8D\x8F\xDD\xC1\x86\xFF\xB7\xDC\x90\xA6\xC0\x8F\ \x4D\xF4\x35\xC9\x34\x02\x84\x92\x36\xC3\xFA\xB4\xD2\x7C\x70\x26\ \xC1\xD4\xDC\xB2\x60\x26\x46\xDE\xC9\x75\x1E\x76\x3D\xBA\x37\xBD\ \xF8\xFF\x94\x06\xAD\x9E\x53\x0E\xE5\xDB\x38\x2F\x41\x30\x01\xAE\ \xB0\x6A\x53\xED\x90\x27\xD8\x31\x17\x97\x27\xB0\x86\x5A\x89\x18\ \xDA\x3E\xDB\xEB\xCF\x9B\x14\xED\x44\xCE\x6C\xBA\xCE\xD4\xBB\x1B\ \xDB\x7F\x14\x47\xE6\xCC\x25\x4B\x33\x20\x51\x51\x2B\xD7\xAF\x42\ \x6F\xB8\xF4\x01\x37\x8C\xD2\xBF\x59\x83\xCA\x01\xC6\x4B\x92\xEC\ \xF0\x32\xEA\x15\xD1\x72\x1D\x03\xF4\x82\xD7\xCE\x6E\x74\xFE\xF6\ \xD5\x5E\x70\x2F\x46\x98\x0C\x82\xB5\xA8\x40\x31\x90\x0B\x1C\x9E\ \x59\xE7\xC9\x7F\xBE\xC7\xE8\xF3\x23\xA9\x7A\x7E\x36\xCC\x88\xBE\ \x0F\x1D\x45\xB7\xFF\x58\x5A\xC5\x4B\xD4\x07\xB2\x2B\x41\x54\xAA\ \xCC\x8F\x6D\x7E\xBF\x48\xE1\xD8\x14\xCC\x5E\xD2\x0F\x80\x37\xE0\ \xA7\x97\x15\xEE\xF2\x9B\xE3\x28\x06\xA1\xD5\x8B\xB7\xC5\xDA\x76\ \xF5\x50\xAA\x3D\x8A\x1F\xBF\xF0\xEB\x19\xCC\xB1\xA3\x13\xD5\x5C\ \xDA\x56\xC9\xEC\x2E\xF2\x96\x32\x38\x7F\xE8\xD7\x6E\x3C\x04\x68\ \x04\x3E\x8F\x66\x3F\x48\x60\xEE\x12\xBF\x2D\x5B\x0B\x74\x74\xD6\ \xE6\x94\xF9\x1E\x6D\xBE\x11\x59\x74\xA3\x92\x6F\x12\xFE\xE5\xE4\ \x38\x77\x7C\xB6\xA9\x32\xDF\x8C\xD8\xBE\xC4\xD0\x73\xB9\x31\xBA\ \x3B\xC8\x32\xB6\x8D\x9D\xD3\x00\x74\x1F\xA7\xBF\x8A\xFC\x47\xED\ \x25\x76\xF6\x93\x6B\xA4\x24\x66\x3A\xAB\x63\x9C\x5A\xE4\xF5\x68\ \x34\x23\xB4\x74\x2B\xF1\xC9\x78\x23\x8F\x16\xCB\xE3\x9D\x65\x2D\ \xE3\xFD\xB8\xBE\xFC\x84\x8A\xD9\x22\x22\x2E\x04\xA4\x03\x7C\x07\ \x13\xEB\x57\xA8\x1A\x23\xF0\xC7\x34\x73\xFC\x64\x6C\xEA\x30\x6B\ \x4B\xCB\xC8\x86\x2F\x83\x85\xDD\xFA\x9D\x4B\x7F\xA2\xC0\x87\xE8\ \x79\x68\x33\x03\xED\x5B\xDD\x3A\x06\x2B\x3C\xF5\xB3\xA2\x78\xA6\ \x6D\x2A\x13\xF8\x3F\x44\xF8\x2D\xDF\x31\x0E\xE0\x74\xAB\x6A\x36\ \x45\x97\xE8\x99\xA0\x25\x5D\xC1\x64\xF3\x1C\xC5\x08\x46\x85\x1D\ \xF9\xAB\x48\x19\x5D\xED\x7E\xA1\xB1\xD5\x10\xBD\x7E\xE7\x4D\x73\ \xFA\xF3\x6B\xC3\x1E\xCF\xA2\x68\x35\x90\x46\xF4\xEB\x87\x9F\x92\ \x40\x09\x43\x8B\x48\x1C\x6C\xD7\x88\x9A\x00\x2E\xD5\xEE\x38\x2B\ \xC9\x19\x0D\xA6\xFC\x02\x6E\x47\x95\x58\xE4\x47\x56\x77\xE9\xAA\ \x9E\x30\x50\xE2\x76\x56\x94\xDF\xC8\x1F\x56\xE8\x80\xB9\x6E\x71\ \x60\xC9\x80\xDD\x98\xED\xD3\xDF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF" (* RFC5114 *) (* 1024-bit, 160-bit subgroup *) let rfc_5114_1 = let p = "\xB1\x0B\x8F\x96\xA0\x80\xE0\x1D\xDE\x92\xDE\x5E\xAE\x5D\x54\xEC\ \x52\xC9\x9F\xBC\xFB\x06\xA3\xC6\x9A\x6A\x9D\xCA\x52\xD2\x3B\x61\ \x60\x73\xE2\x86\x75\xA2\x3D\x18\x98\x38\xEF\x1E\x2E\xE6\x52\xC0\ \x13\xEC\xB4\xAE\xA9\x06\x11\x23\x24\x97\x5C\x3C\xD4\x9B\x83\xBF\ \xAC\xCB\xDD\x7D\x90\xC4\xBD\x70\x98\x48\x8E\x9C\x21\x9A\x73\x72\ \x4E\xFF\xD6\xFA\xE5\x64\x47\x38\xFA\xA3\x1A\x4F\xF5\x5B\xCC\xC0\ \xA1\x51\xAF\x5F\x0D\xC8\xB4\xBD\x45\xBF\x37\xDF\x36\x5C\x1A\x65\ \xE6\x8C\xFD\xA7\x6D\x4D\xA7\x08\xDF\x1F\xB2\xBC\x2E\x4A\x43\x71" and gg = "\xA4\xD1\xCB\xD5\xC3\xFD\x34\x12\x67\x65\xA4\x42\xEF\xB9\x99\x05\ \xF8\x10\x4D\xD2\x58\xAC\x50\x7F\xD6\x40\x6C\xFF\x14\x26\x6D\x31\ \x26\x6F\xEA\x1E\x5C\x41\x56\x4B\x77\x7E\x69\x0F\x55\x04\xF2\x13\ \x16\x02\x17\xB4\xB0\x1B\x88\x6A\x5E\x91\x54\x7F\x9E\x27\x49\xF4\ \xD7\xFB\xD7\xD3\xB9\xA9\x2E\xE1\x90\x9D\x0D\x22\x63\xF8\x0A\x76\ \xA6\xA2\x4C\x08\x7A\x09\x1F\x53\x1D\xBF\x0A\x01\x69\xB6\xA2\x8A\ \xD6\x62\xA4\xD1\x8E\x73\xAF\xA3\x2D\x77\x9D\x59\x18\xD0\x8B\xC8\ \x85\x8F\x4D\xCE\xF9\x7C\x2A\x24\\x85\x5E\x6E\xEB\x22\xB3\xB2\xE5" and q = "\xF5\x18\xAA\x87\x81\xA8\xDF\x27\x8A\xBA\x4E\x7D\x64\xB7\xCB\x9D\ \x49\x46\x23\x53" in group ~p ~gg ~q (* 2048-bit, 224-bit subgroup *) let rfc_5114_2 = let p = "\xAD\x10\x7E\x1E\x91\x23\xA9\xD0\xD6\x60\xFA\xA7\x95\x59\xC5\x1F\ \xA2\x0D\x64\xE5\x68\x3B\x9F\xD1\xB5\x4B\x15\x97\xB6\x1D\x0A\x75\ \xE6\xFA\x14\x1D\xF9\x5A\x56\xDB\xAF\x9A\x3C\x40\x7B\xA1\xDF\x15\ \xEB\x3D\x68\x8A\x30\x9C\x18\x0E\x1D\xE6\xB8\x5A\x12\x74\xA0\xA6\ \x6D\x3F\x81\x52\xAD\x6A\xC2\x12\x90\x37\xC9\xED\xEF\xDA\x4D\xF8\ \xD9\x1E\x8F\xEF\x55\xB7\x39\x4B\x7A\xD5\xB7\xD0\xB6\xC1\x22\x07\ \xC9\xF9\x8D\x11\xED\x34\xDB\xF6\xC6\xBA\x0B\x2C\x8B\xBC\x27\xBE\ \x6A\x00\xE0\xA0\xB9\xC4\x97\x08\xB3\xBF\x8A\x31\x70\x91\x88\x36\ \x81\x28\x61\x30\xBC\x89\x85\xDB\x16\x02\xE7\x14\x41\x5D\x93\x30\ \x27\x82\x73\xC7\xDE\x31\xEF\xDC\x73\x10\xF7\x12\x1F\xD5\xA0\x74\ \x15\x98\x7D\x9A\xDC\x0A\x48\x6D\xCD\xF9\x3A\xCC\x44\x32\x83\x87\ \x31\x5D\x75\xE1\x98\xC6\x41\xA4\x80\xCD\x86\xA1\xB9\xE5\x87\xE8\ \xBE\x60\xE6\x9C\xC9\x28\xB2\xB9\xC5\x21\x72\xE4\x13\x04\x2E\x9B\ \x23\xF1\x0B\x0E\x16\xE7\x97\x63\xC9\xB5\x3D\xCF\x4B\xA8\x0A\x29\ \xE3\xFB\x73\xC1\x6B\x8E\x75\xB9\x7E\xF3\x63\xE2\xFF\xA3\x1F\x71\ \xCF\x9D\xE5\x38\x4E\x71\xB8\x1C\x0A\xC4\xDF\xFE\x0C\x10\xE6\x4F" and gg = "\xAC\x40\x32\xEF\x4F\x2D\x9A\xE3\x9D\xF3\x0B\x5C\x8F\xFD\xAC\x50\ \x6C\xDE\xBE\x7B\x89\x99\x8C\xAF\x74\x86\x6A\x08\xCF\xE4\xFF\xE3\ \xA6\x82\x4A\x4E\x10\xB9\xA6\xF0\xDD\x92\x1F\x01\xA7\x0C\x4A\xFA\ \xAB\x73\x9D\x77\x00\xC2\x9F\x52\xC5\x7D\xB1\x7C\x62\x0A\x86\x52\ \xBE\x5E\x90\x01\xA8\xD6\x6A\xD7\xC1\x76\x69\x10\x19\x99\x02\x4A\ \xF4\xD0\x27\x27\x5A\xC1\x34\x8B\xB8\xA7\x62\xD0\x52\x1B\xC9\x8A\ \xE2\x47\x15\x04\x22\xEA\x1E\xD4\x09\x93\x9D\x54\xDA\x74\x60\xCD\ \xB5\xF6\xC6\xB2\x50\x71\x7C\xBE\xF1\x80\xEB\x34\x11\x8E\x98\xD1\ \x19\x52\x9A\x45\xD6\xF8\x34\x56\x6E\x30\x25\xE3\x16\xA3\x30\xEF\ \xBB\x77\xA8\x6F\x0C\x1A\xB1\x5B\x05\x1A\xE3\xD4\x28\xC8\xF8\xAC\ \xB7\x0A\x81\x37\x15\x0B\x8E\xEB\x10\xE1\x83\xED\xD1\x99\x63\xDD\ \xD9\xE2\x63\xE4\x77\x05\x89\xEF\x6A\xA2\x1E\x7F\x5F\x2F\xF3\x81\ \xB5\x39\xCC\xE3\x40\x9D\x13\xCD\x56\x6A\xFB\xB4\x8D\x6C\x01\x91\ \x81\xE1\xBC\xFE\x94\xB3\x02\x69\xED\xFE\x72\xFE\x9B\x6A\xA4\xBD\ \x7B\x5A\x0F\x1C\x71\xCF\xFF\x4C\x19\xC4\x18\xE1\xF6\xEC\x01\x79\ \x81\xBC\x08\x7F\x2A\x70\x65\xB3\x84\xB8\x90\xD3\x19\x1F\x2B\xFA" and q = "\x80\x1C\x0D\x34\xC5\x8D\x93\xFE\x99\x71\x77\x10\x1F\x80\x53\x5A\ \x47\x38\xCE\xBC\xBF\x38\x9A\x99\xB3\x63\x71\xEB" in group ~p ~gg ~q (* 2048-bit, 256-bit subgroup *) let rfc_5114_3 = let p = "\x87\xA8\xE6\x1D\xB4\xB6\x66\x3C\xFF\xBB\xD1\x9C\x65\x19\x59\x99\ \x8C\xEE\xF6\x08\x66\x0D\xD0\xF2\x5D\x2C\xEE\xD4\x43\x5E\x3B\x00\ \xE0\x0D\xF8\xF1\xD6\x19\x57\xD4\xFA\xF7\xDF\x45\x61\xB2\xAA\x30\ \x16\xC3\xD9\x11\x34\x09\x6F\xAA\x3B\xF4\x29\x6D\x83\x0E\x9A\x7C\ \x20\x9E\x0C\x64\x97\x51\x7A\xBD\x5A\x8A\x9D\x30\x6B\xCF\x67\xED\ \x91\xF9\xE6\x72\x5B\x47\x58\xC0\x22\xE0\xB1\xEF\x42\x75\xBF\x7B\ \x6C\x5B\xFC\x11\xD4\x5F\x90\x88\xB9\x41\xF5\x4E\xB1\xE5\x9B\xB8\ \xBC\x39\xA0\xBF\x12\x30\x7F\x5C\x4F\xDB\x70\xC5\x81\xB2\x3F\x76\ \xB6\x3A\xCA\xE1\xCA\xA6\xB7\x90\x2D\x52\x52\x67\x35\x48\x8A\x0E\ \xF1\x3C\x6D\x9A\x51\xBF\xA4\xAB\x3A\xD8\x34\x77\x96\x52\x4D\x8E\ \xF6\xA1\x67\xB5\xA4\x18\x25\xD9\x67\xE1\x44\xE5\x14\x05\x64\x25\ \x1C\xCA\xCB\x83\xE6\xB4\x86\xF6\xB3\xCA\x3F\x79\x71\x50\x60\x26\ \xC0\xB8\x57\xF6\x89\x96\x28\x56\xDE\xD4\x01\x0A\xBD\x0B\xE6\x21\ \xC3\xA3\x96\x0A\x54\xE7\x10\xC3\x75\xF2\x63\x75\xD7\x01\x41\x03\ \xA4\xB5\x43\x30\xC1\x98\xAF\x12\x61\x16\xD2\x27\x6E\x11\x71\x5F\ \x69\x38\x77\xFA\xD7\xEF\x09\xCA\xDB\x09\x4A\xE9\x1E\x1A\x15\x97" and gg = "\x3F\xB3\x2C\x9B\x73\x13\x4D\x0B\x2E\x77\x50\x66\x60\xED\xBD\x48\ \x4C\xA7\xB1\x8F\x21\xEF\x20\x54\x07\xF4\x79\x3A\x1A\x0B\xA1\x25\ \x10\xDB\xC1\x50\x77\xBE\x46\x3F\xFF\x4F\xED\x4A\xAC\x0B\xB5\x55\ \xBE\x3A\x6C\x1B\x0C\x6B\x47\xB1\xBC\x37\x73\xBF\x7E\x8C\x6F\x62\ \x90\x12\x28\xF8\xC2\x8C\xBB\x18\xA5\x5A\xE3\x13\x41\x00\x0A\x65\ \x01\x96\xF9\x31\xC7\x7A\x57\xF2\xDD\xF4\x63\xE5\xE9\xEC\x14\x4B\ \x77\x7D\xE6\x2A\xAA\xB8\xA8\x62\x8A\xC3\x76\xD2\x82\xD6\xED\x38\ \x64\xE6\x79\x82\x42\x8E\xBC\x83\x1D\x14\x34\x8F\x6F\x2F\x91\x93\ \xB5\x04\x5A\xF2\x76\x71\x64\xE1\xDF\xC9\x67\xC1\xFB\x3F\x2E\x55\ \xA4\xBD\x1B\xFF\xE8\x3B\x9C\x80\xD0\x52\xB9\x85\xD1\x82\xEA\x0A\ \xDB\x2A\x3B\x73\x13\xD3\xFE\x14\xC8\x48\x4B\x1E\x05\x25\x88\xB9\ \xB7\xD2\xBB\xD2\xDF\x01\x61\x99\xEC\xD0\x6E\x15\x57\xCD\x09\x15\ \xB3\x35\x3B\xBB\x64\xE0\xEC\x37\x7F\xD0\x28\x37\x0D\xF9\x2B\x52\ \xC7\x89\x14\x28\xCD\xC6\x7E\xB6\x18\x4B\x52\x3D\x1D\xB2\x46\xC3\ \x2F\x63\x07\x84\x90\xF0\x0E\xF8\xD6\x47\xD1\x48\xD4\x79\x54\x51\ \x5E\x23\x27\xCF\xEF\x98\xC5\x82\x66\x4B\x4C\x0F\x6C\xC4\x16\x59" and q = "\x8C\xF8\x36\x42\xA7\x09\xA0\x97\xB4\x47\x99\x76\x40\x12\x9D\xA2\ \x99\xB1\xA4\x7D\x1E\xB3\x75\x0B\xA3\x08\xB0\xFE\x64\xF5\xFB\xD3" in group ~p ~gg ~q (* draft-ietf-tls-negotiated-ff-dhe-08 *) let ffdhe2048 = (* p = 2^2048 - 2^1984 + {[2^1918 * e] + 560316 } * 2^64 - 1 *) (* The estimated symmetric-equivalent strength of this group is 103 bits. Peers using ffdhe2048 that want to optimize their key exchange with a short exponent (Section 5.2) should choose a secret key of at least 225 bits. *) s_group ~p: "\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xAD\xF8\x54\x58\xA2\xBB\x4A\x9A\ \xAF\xDC\x56\x20\x27\x3D\x3C\xF1\xD8\xB9\xC5\x83\xCE\x2D\x36\x95\ \xA9\xE1\x36\x41\x14\x64\x33\xFB\xCC\x93\x9D\xCE\x24\x9B\x3E\xF9\ \x7D\x2F\xE3\x63\x63\x0C\x75\xD8\xF6\x81\xB2\x02\xAE\xC4\x61\x7A\ \xD3\xDF\x1E\xD5\xD5\xFD\x65\x61\x24\x33\xF5\x1F\x5F\x06\x6E\xD0\ \x85\x63\x65\x55\x3D\xED\x1A\xF3\xB5\x57\x13\x5E\x7F\x57\xC9\x35\ \x98\x4F\x0C\x70\xE0\xE6\x8B\x77\xE2\xA6\x89\xDA\xF3\xEF\xE8\x72\ \x1D\xF1\x58\xA1\x36\xAD\xE7\x35\x30\xAC\xCA\x4F\x48\x3A\x79\x7A\ \xBC\x0A\xB1\x82\xB3\x24\xFB\x61\xD1\x08\xA9\x4B\xB2\xC8\xE3\xFB\ \xB9\x6A\xDA\xB7\x60\xD7\xF4\x68\x1D\x4F\x42\xA3\xDE\x39\x4D\xF4\ \xAE\x56\xED\xE7\x63\x72\xBB\x19\x0B\x07\xA7\xC8\xEE\x0A\x6D\x70\ \x9E\x02\xFC\xE1\xCD\xF7\xE2\xEC\xC0\x34\x04\xCD\x28\x34\x2F\x61\ \x91\x72\xFE\x9C\xE9\x85\x83\xFF\x8E\x4F\x12\x32\xEE\xF2\x81\x83\ \xC3\xFE\x3B\x1B\x4C\x6F\xAD\x73\x3B\xB5\xFC\xBC\x2E\xC2\x20\x05\ \xC5\x8E\xF1\x83\x7D\x16\x83\xB2\xC6\xF3\x4A\x26\xC1\xB2\xEF\xFA\ \x88\x6B\x42\x38\x61\x28\x5C\x97\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF" let ffdhe3072 = (* p = 2^3072 - 2^3008 + {[2^2942 * e] + 2625351} * 2^64 -1 *) (* The estimated symmetric-equivalent strength of this group is 125 bits. Peers using ffdhe3072 that want to optimize their key exchange with a short exponent (Section 5.2) should choose a secret key of at least 275 bits. *) s_group ~p: "\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xAD\xF8\x54\x58\xA2\xBB\x4A\x9A\ \xAF\xDC\x56\x20\x27\x3D\x3C\xF1\xD8\xB9\xC5\x83\xCE\x2D\x36\x95\ \xA9\xE1\x36\x41\x14\x64\x33\xFB\xCC\x93\x9D\xCE\x24\x9B\x3E\xF9\ \x7D\x2F\xE3\x63\x63\x0C\x75\xD8\xF6\x81\xB2\x02\xAE\xC4\x61\x7A\ \xD3\xDF\x1E\xD5\xD5\xFD\x65\x61\x24\x33\xF5\x1F\x5F\x06\x6E\xD0\ \x85\x63\x65\x55\x3D\xED\x1A\xF3\xB5\x57\x13\x5E\x7F\x57\xC9\x35\ \x98\x4F\x0C\x70\xE0\xE6\x8B\x77\xE2\xA6\x89\xDA\xF3\xEF\xE8\x72\ \x1D\xF1\x58\xA1\x36\xAD\xE7\x35\x30\xAC\xCA\x4F\x48\x3A\x79\x7A\ \xBC\x0A\xB1\x82\xB3\x24\xFB\x61\xD1\x08\xA9\x4B\xB2\xC8\xE3\xFB\ \xB9\x6A\xDA\xB7\x60\xD7\xF4\x68\x1D\x4F\x42\xA3\xDE\x39\x4D\xF4\ \xAE\x56\xED\xE7\x63\x72\xBB\x19\x0B\x07\xA7\xC8\xEE\x0A\x6D\x70\ \x9E\x02\xFC\xE1\xCD\xF7\xE2\xEC\xC0\x34\x04\xCD\x28\x34\x2F\x61\ \x91\x72\xFE\x9C\xE9\x85\x83\xFF\x8E\x4F\x12\x32\xEE\xF2\x81\x83\ \xC3\xFE\x3B\x1B\x4C\x6F\xAD\x73\x3B\xB5\xFC\xBC\x2E\xC2\x20\x05\ \xC5\x8E\xF1\x83\x7D\x16\x83\xB2\xC6\xF3\x4A\x26\xC1\xB2\xEF\xFA\ \x88\x6B\x42\x38\x61\x1F\xCF\xDC\xDE\x35\x5B\x3B\x65\x19\x03\x5B\ \xBC\x34\xF4\xDE\xF9\x9C\x02\x38\x61\xB4\x6F\xC9\xD6\xE6\xC9\x07\ \x7A\xD9\x1D\x26\x91\xF7\xF7\xEE\x59\x8C\xB0\xFA\xC1\x86\xD9\x1C\ \xAE\xFE\x13\x09\x85\x13\x92\x70\xB4\x13\x0C\x93\xBC\x43\x79\x44\ \xF4\xFD\x44\x52\xE2\xD7\x4D\xD3\x64\xF2\xE2\x1E\x71\xF5\x4B\xFF\ \x5C\xAE\x82\xAB\x9C\x9D\xF6\x9E\xE8\x6D\x2B\xC5\x22\x36\x3A\x0D\ \xAB\xC5\x21\x97\x9B\x0D\xEA\xDA\x1D\xBF\x9A\x42\xD5\xC4\x48\x4E\ \x0A\xBC\xD0\x6B\xFA\x53\xDD\xEF\x3C\x1B\x20\xEE\x3F\xD5\x9D\x7C\ \x25\xE4\x1D\x2B\x66\xC6\x2E\x37\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF" let ffdhe4096 = (* p = 2^4096 - 2^4032 + {[2^3966 * e] + 5736041} * 2^64 - 1 *) (* The estimated symmetric-equivalent strength of this group is 150 bits. Peers using ffdhe4096 that want to optimize their key exchange with a short exponent (Section 5.2) should choose a secret key of at least 325 bits. *) s_group ~p: "\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xAD\xF8\x54\x58\xA2\xBB\x4A\x9A\ \xAF\xDC\x56\x20\x27\x3D\x3C\xF1\xD8\xB9\xC5\x83\xCE\x2D\x36\x95\ \xA9\xE1\x36\x41\x14\x64\x33\xFB\xCC\x93\x9D\xCE\x24\x9B\x3E\xF9\ \x7D\x2F\xE3\x63\x63\x0C\x75\xD8\xF6\x81\xB2\x02\xAE\xC4\x61\x7A\ \xD3\xDF\x1E\xD5\xD5\xFD\x65\x61\x24\x33\xF5\x1F\x5F\x06\x6E\xD0\ \x85\x63\x65\x55\x3D\xED\x1A\xF3\xB5\x57\x13\x5E\x7F\x57\xC9\x35\ \x98\x4F\x0C\x70\xE0\xE6\x8B\x77\xE2\xA6\x89\xDA\xF3\xEF\xE8\x72\ \x1D\xF1\x58\xA1\x36\xAD\xE7\x35\x30\xAC\xCA\x4F\x48\x3A\x79\x7A\ \xBC\x0A\xB1\x82\xB3\x24\xFB\x61\xD1\x08\xA9\x4B\xB2\xC8\xE3\xFB\ \xB9\x6A\xDA\xB7\x60\xD7\xF4\x68\x1D\x4F\x42\xA3\xDE\x39\x4D\xF4\ \xAE\x56\xED\xE7\x63\x72\xBB\x19\x0B\x07\xA7\xC8\xEE\x0A\x6D\x70\ \x9E\x02\xFC\xE1\xCD\xF7\xE2\xEC\xC0\x34\x04\xCD\x28\x34\x2F\x61\ \x91\x72\xFE\x9C\xE9\x85\x83\xFF\x8E\x4F\x12\x32\xEE\xF2\x81\x83\ \xC3\xFE\x3B\x1B\x4C\x6F\xAD\x73\x3B\xB5\xFC\xBC\x2E\xC2\x20\x05\ \xC5\x8E\xF1\x83\x7D\x16\x83\xB2\xC6\xF3\x4A\x26\xC1\xB2\xEF\xFA\ \x88\x6B\x42\x38\x61\x1F\xCF\xDC\xDE\x35\x5B\x3B\x65\x19\x03\x5B\ \xBC\x34\xF4\xDE\xF9\x9C\x02\x38\x61\xB4\x6F\xC9\xD6\xE6\xC9\x07\ \x7A\xD9\x1D\x26\x91\xF7\xF7\xEE\x59\x8C\xB0\xFA\xC1\x86\xD9\x1C\ \xAE\xFE\x13\x09\x85\x13\x92\x70\xB4\x13\x0C\x93\xBC\x43\x79\x44\ \xF4\xFD\x44\x52\xE2\xD7\x4D\xD3\x64\xF2\xE2\x1E\x71\xF5\x4B\xFF\ \x5C\xAE\x82\xAB\x9C\x9D\xF6\x9E\xE8\x6D\x2B\xC5\x22\x36\x3A\x0D\ \xAB\xC5\x21\x97\x9B\x0D\xEA\xDA\x1D\xBF\x9A\x42\xD5\xC4\x48\x4E\ \x0A\xBC\xD0\x6B\xFA\x53\xDD\xEF\x3C\x1B\x20\xEE\x3F\xD5\x9D\x7C\ \x25\xE4\x1D\x2B\x66\x9E\x1E\xF1\x6E\x6F\x52\xC3\x16\x4D\xF4\xFB\ \x79\x30\xE9\xE4\xE5\x88\x57\xB6\xAC\x7D\x5F\x42\xD6\x9F\x6D\x18\ \x77\x63\xCF\x1D\x55\x03\x40\x04\x87\xF5\x5B\xA5\x7E\x31\xCC\x7A\ \x71\x35\xC8\x86\xEF\xB4\x31\x8A\xED\x6A\x1E\x01\x2D\x9E\x68\x32\ \xA9\x07\x60\x0A\x91\x81\x30\xC4\x6D\xC7\x78\xF9\x71\xAD\x00\x38\ \x09\x29\x99\xA3\x33\xCB\x8B\x7A\x1A\x1D\xB9\x3D\x71\x40\x00\x3C\ \x2A\x4E\xCE\xA9\xF9\x8D\x0A\xCC\x0A\x82\x91\xCD\xCE\xC9\x7D\xCF\ \x8E\xC9\xB5\x5A\x7F\x88\xA4\x6B\x4D\xB5\xA8\x51\xF4\x41\x82\xE1\ \xC6\x8A\x00\x7E\x5E\x65\x5F\x6A\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF" let ffdhe6144 = (* p = 2^6144 - 2^6080 + {[2^6014 * e] + 15705020} * 2^64 - 1 *) (* The estimated symmetric-equivalent strength of this group is 175 bits. Peers using ffdhe6144 that want to optimize their key exchange with a short exponent (Section 5.2) should choose a secret key of at least 375 bits. *) s_group ~p: "\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xAD\xF8\x54\x58\xA2\xBB\x4A\x9A\ \xAF\xDC\x56\x20\x27\x3D\x3C\xF1\xD8\xB9\xC5\x83\xCE\x2D\x36\x95\ \xA9\xE1\x36\x41\x14\x64\x33\xFB\xCC\x93\x9D\xCE\x24\x9B\x3E\xF9\ \x7D\x2F\xE3\x63\x63\x0C\x75\xD8\xF6\x81\xB2\x02\xAE\xC4\x61\x7A\ \xD3\xDF\x1E\xD5\xD5\xFD\x65\x61\x24\x33\xF5\x1F\x5F\x06\x6E\xD0\ \x85\x63\x65\x55\x3D\xED\x1A\xF3\xB5\x57\x13\x5E\x7F\x57\xC9\x35\ \x98\x4F\x0C\x70\xE0\xE6\x8B\x77\xE2\xA6\x89\xDA\xF3\xEF\xE8\x72\ \x1D\xF1\x58\xA1\x36\xAD\xE7\x35\x30\xAC\xCA\x4F\x48\x3A\x79\x7A\ \xBC\x0A\xB1\x82\xB3\x24\xFB\x61\xD1\x08\xA9\x4B\xB2\xC8\xE3\xFB\ \xB9\x6A\xDA\xB7\x60\xD7\xF4\x68\x1D\x4F\x42\xA3\xDE\x39\x4D\xF4\ \xAE\x56\xED\xE7\x63\x72\xBB\x19\x0B\x07\xA7\xC8\xEE\x0A\x6D\x70\ \x9E\x02\xFC\xE1\xCD\xF7\xE2\xEC\xC0\x34\x04\xCD\x28\x34\x2F\x61\ \x91\x72\xFE\x9C\xE9\x85\x83\xFF\x8E\x4F\x12\x32\xEE\xF2\x81\x83\ \xC3\xFE\x3B\x1B\x4C\x6F\xAD\x73\x3B\xB5\xFC\xBC\x2E\xC2\x20\x05\ \xC5\x8E\xF1\x83\x7D\x16\x83\xB2\xC6\xF3\x4A\x26\xC1\xB2\xEF\xFA\ \x88\x6B\x42\x38\x61\x1F\xCF\xDC\xDE\x35\x5B\x3B\x65\x19\x03\x5B\ \xBC\x34\xF4\xDE\xF9\x9C\x02\x38\x61\xB4\x6F\xC9\xD6\xE6\xC9\x07\ \x7A\xD9\x1D\x26\x91\xF7\xF7\xEE\x59\x8C\xB0\xFA\xC1\x86\xD9\x1C\ \xAE\xFE\x13\x09\x85\x13\x92\x70\xB4\x13\x0C\x93\xBC\x43\x79\x44\ \xF4\xFD\x44\x52\xE2\xD7\x4D\xD3\x64\xF2\xE2\x1E\x71\xF5\x4B\xFF\ \x5C\xAE\x82\xAB\x9C\x9D\xF6\x9E\xE8\x6D\x2B\xC5\x22\x36\x3A\x0D\ \xAB\xC5\x21\x97\x9B\x0D\xEA\xDA\x1D\xBF\x9A\x42\xD5\xC4\x48\x4E\ \x0A\xBC\xD0\x6B\xFA\x53\xDD\xEF\x3C\x1B\x20\xEE\x3F\xD5\x9D\x7C\ \x25\xE4\x1D\x2B\x66\x9E\x1E\xF1\x6E\x6F\x52\xC3\x16\x4D\xF4\xFB\ \x79\x30\xE9\xE4\xE5\x88\x57\xB6\xAC\x7D\x5F\x42\xD6\x9F\x6D\x18\ \x77\x63\xCF\x1D\x55\x03\x40\x04\x87\xF5\x5B\xA5\x7E\x31\xCC\x7A\ \x71\x35\xC8\x86\xEF\xB4\x31\x8A\xED\x6A\x1E\x01\x2D\x9E\x68\x32\ \xA9\x07\x60\x0A\x91\x81\x30\xC4\x6D\xC7\x78\xF9\x71\xAD\x00\x38\ \x09\x29\x99\xA3\x33\xCB\x8B\x7A\x1A\x1D\xB9\x3D\x71\x40\x00\x3C\ \x2A\x4E\xCE\xA9\xF9\x8D\x0A\xCC\x0A\x82\x91\xCD\xCE\xC9\x7D\xCF\ \x8E\xC9\xB5\x5A\x7F\x88\xA4\x6B\x4D\xB5\xA8\x51\xF4\x41\x82\xE1\ \xC6\x8A\x00\x7E\x5E\x0D\xD9\x02\x0B\xFD\x64\xB6\x45\x03\x6C\x7A\ \x4E\x67\x7D\x2C\x38\x53\x2A\x3A\x23\xBA\x44\x42\xCA\xF5\x3E\xA6\ \x3B\xB4\x54\x32\x9B\x76\x24\xC8\x91\x7B\xDD\x64\xB1\xC0\xFD\x4C\ \xB3\x8E\x8C\x33\x4C\x70\x1C\x3A\xCD\xAD\x06\x57\xFC\xCF\xEC\x71\ \x9B\x1F\x5C\x3E\x4E\x46\x04\x1F\x38\x81\x47\xFB\x4C\xFD\xB4\x77\ \xA5\x24\x71\xF7\xA9\xA9\x69\x10\xB8\x55\x32\x2E\xDB\x63\x40\xD8\ \xA0\x0E\xF0\x92\x35\x05\x11\xE3\x0A\xBE\xC1\xFF\xF9\xE3\xA2\x6E\ \x7F\xB2\x9F\x8C\x18\x30\x23\xC3\x58\x7E\x38\xDA\x00\x77\xD9\xB4\ \x76\x3E\x4E\x4B\x94\xB2\xBB\xC1\x94\xC6\x65\x1E\x77\xCA\xF9\x92\ \xEE\xAA\xC0\x23\x2A\x28\x1B\xF6\xB3\xA7\x39\xC1\x22\x61\x16\x82\ \x0A\xE8\xDB\x58\x47\xA6\x7C\xBE\xF9\xC9\x09\x1B\x46\x2D\x53\x8C\ \xD7\x2B\x03\x74\x6A\xE7\x7F\x5E\x62\x29\x2C\x31\x15\x62\xA8\x46\ \x50\x5D\xC8\x2D\xB8\x54\x33\x8A\xE4\x9F\x52\x35\xC9\x5B\x91\x17\ \x8C\xCF\x2D\xD5\xCA\xCE\xF4\x03\xEC\x9D\x18\x10\xC6\x27\x2B\x04\ \x5B\x3B\x71\xF9\xDC\x6B\x80\xD6\x3F\xDD\x4A\x8E\x9A\xDB\x1E\x69\ \x62\xA6\x95\x26\xD4\x31\x61\xC1\xA4\x1D\x57\x0D\x79\x38\xDA\xD4\ \xA4\x0E\x32\x9C\xD0\xE4\x0E\x65\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF" let ffdhe8192 = (* p = 2^8192 - 2^8128 + {[2^8062 * e] + 10965728} * 2^64 - 1 *) (* The estimated symmetric-equivalent strength of this group is 192 bits. Peers using ffdhe8192 that want to optimize their key exchange with a short exponent (Section 5.2) should choose a secret key of at least 400 bits. *) s_group ~p: "\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xAD\xF8\x54\x58\xA2\xBB\x4A\x9A\ \xAF\xDC\x56\x20\x27\x3D\x3C\xF1\xD8\xB9\xC5\x83\xCE\x2D\x36\x95\ \xA9\xE1\x36\x41\x14\x64\x33\xFB\xCC\x93\x9D\xCE\x24\x9B\x3E\xF9\ \x7D\x2F\xE3\x63\x63\x0C\x75\xD8\xF6\x81\xB2\x02\xAE\xC4\x61\x7A\ \xD3\xDF\x1E\xD5\xD5\xFD\x65\x61\x24\x33\xF5\x1F\x5F\x06\x6E\xD0\ \x85\x63\x65\x55\x3D\xED\x1A\xF3\xB5\x57\x13\x5E\x7F\x57\xC9\x35\ \x98\x4F\x0C\x70\xE0\xE6\x8B\x77\xE2\xA6\x89\xDA\xF3\xEF\xE8\x72\ \x1D\xF1\x58\xA1\x36\xAD\xE7\x35\x30\xAC\xCA\x4F\x48\x3A\x79\x7A\ \xBC\x0A\xB1\x82\xB3\x24\xFB\x61\xD1\x08\xA9\x4B\xB2\xC8\xE3\xFB\ \xB9\x6A\xDA\xB7\x60\xD7\xF4\x68\x1D\x4F\x42\xA3\xDE\x39\x4D\xF4\ \xAE\x56\xED\xE7\x63\x72\xBB\x19\x0B\x07\xA7\xC8\xEE\x0A\x6D\x70\ \x9E\x02\xFC\xE1\xCD\xF7\xE2\xEC\xC0\x34\x04\xCD\x28\x34\x2F\x61\ \x91\x72\xFE\x9C\xE9\x85\x83\xFF\x8E\x4F\x12\x32\xEE\xF2\x81\x83\ \xC3\xFE\x3B\x1B\x4C\x6F\xAD\x73\x3B\xB5\xFC\xBC\x2E\xC2\x20\x05\ \xC5\x8E\xF1\x83\x7D\x16\x83\xB2\xC6\xF3\x4A\x26\xC1\xB2\xEF\xFA\ \x88\x6B\x42\x38\x61\x1F\xCF\xDC\xDE\x35\x5B\x3B\x65\x19\x03\x5B\ \xBC\x34\xF4\xDE\xF9\x9C\x02\x38\x61\xB4\x6F\xC9\xD6\xE6\xC9\x07\ \x7A\xD9\x1D\x26\x91\xF7\xF7\xEE\x59\x8C\xB0\xFA\xC1\x86\xD9\x1C\ \xAE\xFE\x13\x09\x85\x13\x92\x70\xB4\x13\x0C\x93\xBC\x43\x79\x44\ \xF4\xFD\x44\x52\xE2\xD7\x4D\xD3\x64\xF2\xE2\x1E\x71\xF5\x4B\xFF\ \x5C\xAE\x82\xAB\x9C\x9D\xF6\x9E\xE8\x6D\x2B\xC5\x22\x36\x3A\x0D\ \xAB\xC5\x21\x97\x9B\x0D\xEA\xDA\x1D\xBF\x9A\x42\xD5\xC4\x48\x4E\ \x0A\xBC\xD0\x6B\xFA\x53\xDD\xEF\x3C\x1B\x20\xEE\x3F\xD5\x9D\x7C\ \x25\xE4\x1D\x2B\x66\x9E\x1E\xF1\x6E\x6F\x52\xC3\x16\x4D\xF4\xFB\ \x79\x30\xE9\xE4\xE5\x88\x57\xB6\xAC\x7D\x5F\x42\xD6\x9F\x6D\x18\ \x77\x63\xCF\x1D\x55\x03\x40\x04\x87\xF5\x5B\xA5\x7E\x31\xCC\x7A\ \x71\x35\xC8\x86\xEF\xB4\x31\x8A\xED\x6A\x1E\x01\x2D\x9E\x68\x32\ \xA9\x07\x60\x0A\x91\x81\x30\xC4\x6D\xC7\x78\xF9\x71\xAD\x00\x38\ \x09\x29\x99\xA3\x33\xCB\x8B\x7A\x1A\x1D\xB9\x3D\x71\x40\x00\x3C\ \x2A\x4E\xCE\xA9\xF9\x8D\x0A\xCC\x0A\x82\x91\xCD\xCE\xC9\x7D\xCF\ \x8E\xC9\xB5\x5A\x7F\x88\xA4\x6B\x4D\xB5\xA8\x51\xF4\x41\x82\xE1\ \xC6\x8A\x00\x7E\x5E\x0D\xD9\x02\x0B\xFD\x64\xB6\x45\x03\x6C\x7A\ \x4E\x67\x7D\x2C\x38\x53\x2A\x3A\x23\xBA\x44\x42\xCA\xF5\x3E\xA6\ \x3B\xB4\x54\x32\x9B\x76\x24\xC8\x91\x7B\xDD\x64\xB1\xC0\xFD\x4C\ \xB3\x8E\x8C\x33\x4C\x70\x1C\x3A\xCD\xAD\x06\x57\xFC\xCF\xEC\x71\ \x9B\x1F\x5C\x3E\x4E\x46\x04\x1F\x38\x81\x47\xFB\x4C\xFD\xB4\x77\ \xA5\x24\x71\xF7\xA9\xA9\x69\x10\xB8\x55\x32\x2E\xDB\x63\x40\xD8\ \xA0\x0E\xF0\x92\x35\x05\x11\xE3\x0A\xBE\xC1\xFF\xF9\xE3\xA2\x6E\ \x7F\xB2\x9F\x8C\x18\x30\x23\xC3\x58\x7E\x38\xDA\x00\x77\xD9\xB4\ \x76\x3E\x4E\x4B\x94\xB2\xBB\xC1\x94\xC6\x65\x1E\x77\xCA\xF9\x92\ \xEE\xAA\xC0\x23\x2A\x28\x1B\xF6\xB3\xA7\x39\xC1\x22\x61\x16\x82\ \x0A\xE8\xDB\x58\x47\xA6\x7C\xBE\xF9\xC9\x09\x1B\x46\x2D\x53\x8C\ \xD7\x2B\x03\x74\x6A\xE7\x7F\x5E\x62\x29\x2C\x31\x15\x62\xA8\x46\ \x50\x5D\xC8\x2D\xB8\x54\x33\x8A\xE4\x9F\x52\x35\xC9\x5B\x91\x17\ \x8C\xCF\x2D\xD5\xCA\xCE\xF4\x03\xEC\x9D\x18\x10\xC6\x27\x2B\x04\ \x5B\x3B\x71\xF9\xDC\x6B\x80\xD6\x3F\xDD\x4A\x8E\x9A\xDB\x1E\x69\ \x62\xA6\x95\x26\xD4\x31\x61\xC1\xA4\x1D\x57\x0D\x79\x38\xDA\xD4\ \xA4\x0E\x32\x9C\xCF\xF4\x6A\xAA\x36\xAD\x00\x4C\xF6\x00\xC8\x38\ \x1E\x42\x5A\x31\xD9\x51\xAE\x64\xFD\xB2\x3F\xCE\xC9\x50\x9D\x43\ \x68\x7F\xEB\x69\xED\xD1\xCC\x5E\x0B\x8C\xC3\xBD\xF6\x4B\x10\xEF\ \x86\xB6\x31\x42\xA3\xAB\x88\x29\x55\x5B\x2F\x74\x7C\x93\x26\x65\ \xCB\x2C\x0F\x1C\xC0\x1B\xD7\x02\x29\x38\x88\x39\xD2\xAF\x05\xE4\ \x54\x50\x4A\xC7\x8B\x75\x82\x82\x28\x46\xC0\xBA\x35\xC3\x5F\x5C\ \x59\x16\x0C\xC0\x46\xFD\x82\x51\x54\x1F\xC6\x8C\x9C\x86\xB0\x22\ \xBB\x70\x99\x87\x6A\x46\x0E\x74\x51\xA8\xA9\x31\x09\x70\x3F\xEE\ \x1C\x21\x7E\x6C\x38\x26\xE5\x2C\x51\xAA\x69\x1E\x0E\x42\x3C\xFC\ \x99\xE9\xE3\x16\x50\xC1\x21\x7B\x62\x48\x16\xCD\xAD\x9A\x95\xF9\ \xD5\xB8\x01\x94\x88\xD9\xC0\xA0\xA1\xFE\x30\x75\xA5\x77\xE2\x31\ \x83\xF8\x1D\x4A\x3F\x2F\xA4\x57\x1E\xFC\x8C\xE0\xBA\x8A\x4F\xE8\ \xB6\x85\x5D\xFE\x72\xB0\xA6\x6E\xDE\xD2\xFB\xAB\xFB\xE5\x8A\x30\ \xFA\xFA\xBE\x1C\x5D\x71\xA8\x7E\x2F\x74\x1E\xF8\xC1\xFE\x86\xFE\ \xA6\xBB\xFD\xE5\x30\x67\x7F\x0D\x97\xD1\x1D\x49\xF7\xA8\x44\x3D\ \x08\x22\xE5\x06\xA9\xF4\x61\x4E\x01\x1E\x2A\x94\x83\x8F\xF8\x8C\ \xD6\x8C\x8B\xB7\xC5\xC6\x42\x4C\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF" end
mirage-crypto
2.0.2
ISC
https://github.com/mirage/mirage-crypto
git+https://github.com/mirage/mirage-crypto.git
ml
mirage-crypto-2.0.2/pk/dsa.ml
open Mirage_crypto.Uncommon open Common type pub = { p : Z.t ; q : Z.t ; gg : Z.t ; y : Z.t } let pub ?(fips = false) ~p ~q ~gg ~y () = let* () = guard Z.(one < gg && gg < p) (`Msg "bad generator") in let* () = guard (Z_extra.pseudoprime q) (`Msg "q is not prime") in let* () = guard (Z.is_odd p && Z_extra.pseudoprime p) (`Msg "p is not prime") in let* () = guard Z.(zero < y && y < p) (`Msg "y not in 0..p-1") in let* () = guard (q < p) (`Msg "q is not smaller than p") in let* () = guard Z.(zero = (pred p) mod q) (`Msg "p - 1 mod q <> 0") in let* () = if fips then match Z.numbits p, Z.numbits q with | 1024, 160 | 2048, 224 | 2048, 256 | 3072, 256 -> Ok () | _ -> Error (`Msg "bit length of p or q not FIPS specified") else Ok () in Ok { p ; q ; gg ; y } type priv = { p : Z.t ; q : Z.t ; gg : Z.t ; x : Z.t ; y : Z.t } let priv ?fips ~p ~q ~gg ~x ~y () = let* _ = pub ?fips ~p ~q ~gg ~y () in let* () = guard Z.(zero < x && x < q) (`Msg "x not in 1..q-1") in let* () = guard Z.(y = powm gg x p) (`Msg "y <> g ^ x mod p") in Ok { p ; q ; gg ; x ; y } let pub_of_priv { p; q; gg; y; _ } = { p; q; gg; y } type keysize = [ `Fips1024 | `Fips2048 | `Fips3072 | `Exactly of int * int ] let expand_size = function | `Fips1024 -> (1024, 160) | `Fips2048 -> (2048, 256) | `Fips3072 -> (3072, 256) | `Exactly (l, n) -> if 3 <= l && 2 <= n then (l, n) else invalid_arg "Dsa.generate: bits: `Exactly (%d, %d)" l n type mask = [ `No | `Yes | `Yes_with of Mirage_crypto_rng.g ] let expand_mask = function | `No -> `No | `Yes -> `Yes None | `Yes_with g -> `Yes (Some g) (* * FIPS.186-4-style derivation: * - p and q are derived using a method numerically like the one described in * A.1.1.2, adapted to use the native rng. * - g is derived as per A.2.1. *) let params ?g size = let two = Z.(~$2) in let (l, n) = expand_size size in let q = Z_extra.prime ?g ~msb:1 n in let p = let q_q = Z.(q * two) in until Z_extra.pseudoprime @@ fun () -> let x = Z_extra.gen_bits ?g ~msb:1 l in Z.(x - (x mod q_q) + one) in let gg = let e = Z.(pred p / q) in until ((<>) Z.one) @@ fun () -> let h = Z_extra.gen_r ?g two Z.(pred p) in Z.(powm h e p) in (* all checks above are already satisfied *) (p, q, gg) let generate ?g size = let (p, q, gg) = params ?g size in let x = Z_extra.gen_r ?g Z.one q in let y = Z.(powm gg x p) in (* checks are satisfied due to construction *) { p; q; gg; x; y } module K_gen (H : Digestif.S) = struct let drbg : 'a Mirage_crypto_rng.generator = let module M = Mirage_crypto_rng.Hmac_drbg (H) in (module M) let z_gen ~key:{ q; x; _ } z = let repr = Z_extra.to_octets_be ~size:(Z.numbits q // 8) in let g = Mirage_crypto_rng.create ~strict:true drbg in Mirage_crypto_rng.reseed ~g (repr x ^ repr Z.(z mod q)); Z_extra.gen_r ~g Z.one q let generate ~key buf = z_gen ~key (Z_extra.of_octets_be ~bits:(Z.numbits key.q) buf) end module K_gen_sha256 = K_gen (Digestif.SHA256) let sign_z ?(mask = `Yes) ?k:k0 ~key:({ p; q; gg; x; _ } as key) z = let k = match k0 with Some k -> k | None -> K_gen_sha256.z_gen ~key z in let k' = Z.invert k q and b, b' = match expand_mask mask with | `No -> Z.one, Z.one | `Yes g -> let m = Z_extra.gen_r ?g Z.one q in m, Z.invert m q in let r = Z.(powm_sec gg k p mod q) in (* normal DSA sign is: s = k^-1 * (z + r * x) mod q *) (* we apply blinding where possible and compute: s = k^-1 * b^-1 * (b * z + b * r * x) mod q see https://github.com/openssl/openssl/pull/6524 for further details *) let s = let t1 = let t11 = Z.(b * x mod q) in Z.(t11 * r mod q) in let t2 = Z.(b * z mod q) in let t3 = Z.((t1 + t2) mod q) in let t4 = Z.(k' * t3 mod q) in Z.(b' * t4 mod q) in if r = Z.zero || s = Z.zero then invalid_arg "k unsuitable" else (r, s) let verify_z ~key:({ p; q; gg; y }: pub ) (r, s) z = let v () = let w = Z.invert s q in let u1 = Z.(z * w mod q) and u2 = Z.(r * w mod q) in Z.((powm gg u1 p * powm y u2 p) mod p mod q) in Z.zero < r && r < q && Z.zero < s && s < q && v () = r let sign ?mask ?k ~(key : priv) digest = let bits = Z.numbits key.q in let size = bits // 8 in let (r, s) = sign_z ?mask ?k ~key (Z_extra.of_octets_be ~bits digest) in Z_extra.(to_octets_be ~size r, to_octets_be ~size s) let verify ~(key : pub) (r, s) digest = let z = Z_extra.of_octets_be ~bits:(Z.numbits key.q) digest and (r, s) = Z_extra.(of_octets_be r, of_octets_be s) in verify_z ~key (r, s) z let rec shift_left_inplace buf = function | 0 -> () | bits when bits mod 8 = 0 -> let off = bits / 8 in let to_blit = Bytes.length buf - off in Bytes.unsafe_blit buf off buf 0 to_blit ; Bytes.unsafe_fill buf to_blit (Bytes.length buf - to_blit) '\x00' | bits when bits < 8 -> let foo = 8 - bits in for i = 0 to Bytes.length buf - 2 do let b1 = Bytes.get_uint8 buf i and b2 = Bytes.get_uint8 buf (i + 1) in Bytes.set_uint8 buf i ((b1 lsl bits) lor (b2 lsr foo)) done ; Bytes.set_uint8 buf (Bytes.length buf - 1) (Bytes.get_uint8 buf (Bytes.length buf - 1) lsl bits) | bits -> shift_left_inplace buf (8 * (bits / 8)) ; shift_left_inplace buf (bits mod 8) let (lsl) buf bits = let buf' = Bytes.of_string buf in shift_left_inplace buf' bits; Bytes.unsafe_to_string buf' let massage ~key:({ q; _ }: pub) digest = let bits = Z.numbits q in if bits >= String.length digest * 8 then digest else let buf = Z_extra.(to_octets_be Z.(of_octets_be digest mod q)) in buf lsl ((8 - bits mod 8) mod 8)
mirage-crypto
2.0.2
ISC
https://github.com/mirage/mirage-crypto
git+https://github.com/mirage/mirage-crypto.git
dune
mirage-crypto-2.0.2/pk/dune
(library (name mirage_crypto_pk) (public_name mirage-crypto-pk) (libraries zarith mirage-crypto mirage-crypto-rng eqaf) (private_modules common dh dsa rsa z_extra))
mirage-crypto
2.0.2
ISC
https://github.com/mirage/mirage-crypto
git+https://github.com/mirage/mirage-crypto.git
ml
mirage-crypto-2.0.2/pk/mirage_crypto_pk.ml
module Dh = Dh module Dsa = Dsa module Rsa = Rsa module Z_extra = Z_extra
mirage-crypto
2.0.2
ISC
https://github.com/mirage/mirage-crypto
git+https://github.com/mirage/mirage-crypto.git
mli
mirage-crypto-2.0.2/pk/mirage_crypto_pk.mli
(** {1 Public-key cryptography} *) (** Public and private key types are private, the constructors validate their well-formedness as much as possible, esp. so that [powm_sec] will not raise an exception (exponent > 1, or odd modulus). All modular exponentiations (unless otherwise noted) use the {!Z.powm_sec} function, which uses a static access pattern and operates in constant time (of the bit size of the input), independent of which bits are set and not set. The performance is up to 20% worse than [powm]. Additionally, blinding is applied to RSA and DSA by default. *) (** {b RSA} public-key cryptography algorithm. *) module Rsa : sig (** {1 Keys} Messages are checked not to exceed the key size, and this is signalled via the {!Insufficient_key} exception. Private-key operations are optionally protected through RSA blinding. *) exception Insufficient_key (** Raised if the key is too small to transform the given message, i.e. if the numerical interpretation of the (potentially padded) message is not smaller than the modulus. *) type pub = private { e : Z.t ; (** Public exponent *) n : Z.t ; (** Modulus *) } (** The public portion of the key. *) val pub : e:Z.t -> n:Z.t -> (pub, [> `Msg of string ]) result (** [pub ~e ~n] validates the public key: [1 < e < n], [n > 0], [is_odd n], and [numbits n >= 89] (a requirement for PKCS1 operations). *) type priv = private { e : Z.t ; (** Public exponent *) d : Z.t ; (** Private exponent *) n : Z.t ; (** Modulus ([p q])*) p : Z.t ; (** Prime factor [p] *) q : Z.t ; (** Prime factor [q] *) dp : Z.t ; (** [d mod (p-1)] *) dq : Z.t ; (** [d mod (q-1)] *) q' : Z.t ; (** [q^(-1) mod p] *) } (** Full private key (two-factor version). {b Note} The key layout assumes that [p > q], which affects the quantity [q'] (sometimes called [u]), and the computation of the private transform. Some systems assume otherwise. When using keys produced by a system that computes [u = p^(-1) mod q], either exchange [p] with [q] and [dp] with [dq], or re-generate the full private key using {{!priv_of_primes}[priv_of_primes]}. *) val priv : e:Z.t -> d:Z.t -> n:Z.t -> p:Z.t -> q:Z.t -> dp:Z.t -> dq:Z.t -> q':Z.t -> (priv, [> `Msg of string ]) result (** [priv ~e ~d ~n ~p ~q ~dp ~dq ~q'] validates the private key: [e, n] must be a valid {!type-pub}, [p] and [q] valid prime numbers [> 0], [odd], probabilistically prime, [p <> q], [n = p * q], [e] probabilistically prime and coprime to both [p] and [q], [q' = q ^ -1 mod p], [1 < d < n], [dp = d mod (p - 1)], [dq = d mod (q - 1)], and [d = e ^ -1 mod (p - 1) (q - 1)]. *) val pub_bits : pub -> int (** Bit-size of a public key. *) val priv_bits : priv -> int (** Bit-size of a private key. *) val priv_of_primes : e:Z.t -> p:Z.t -> q:Z.t -> (priv, [> `Msg of string ]) result (** [priv_of_primes ~e ~p ~q] is the {{!type-priv}private key} derived from the minimal description [(e, p, q)]. *) val priv_of_exp : ?g:Mirage_crypto_rng.g -> ?attempts:int -> e:Z.t -> d:Z.t -> n:Z.t -> unit -> (priv, [> `Msg of string ]) result (** [priv_of_exp ?g ?attempts ~e ~d n] is the unique {{!type-priv}private key} characterized by the public ([e]) and private ([d]) exponents, and modulus [n]. This operation uses a probabilistic process that can fail to recover the key. [~attempts] is the number of trials. For triplets that form an RSA key, the probability of failure is at most [2^(-attempts)]. [attempts] defaults to an unspecified number that yields a very high probability of recovering valid keys. Note that no time masking is done for the computations in this function. *) val pub_of_priv : priv -> pub (** Extract the public component from a private key. *) (** {1 The RSA transformation} *) type 'a or_digest = [ `Message of 'a | `Digest of string ] (** Either an ['a] or its digest, according to some hash algorithm. *) type mask = [ `No | `Yes | `Yes_with of Mirage_crypto_rng.g ] (** Masking (cryptographic blinding) mode for the RSA transform with the private key. Masking does not change the result, but it does change the timing profile of the operation. {ul {- [`No] disables masking. It is slightly faster but it {b exposes the private key to timing-based attacks}.} {- [`Yes] uses random masking with the global RNG instance. This is the sane option.} {- [`Yes_with g] uses random masking with the generator [g].}} *) val encrypt : key:pub -> string -> string (** [encrypt key message] is the encrypted [message]. @raise Insufficient_key (see {{!Insufficient_key}Insufficient_key}) @raise Invalid_argument if [message] is [0x00] or [0x01]. *) val decrypt : ?crt_hardening:bool -> ?mask:mask -> key:priv -> string -> string (** [decrypt ~crt_hardening ~mask key ciphertext] is the decrypted [ciphertext], left-padded with [0x00] up to [key] size. [~crt_hardening] defaults to [false]. If [true] verifies that the result is correct. This is to counter Chinese remainder theorem attacks to factorize primes. If the computed signature is incorrect, it is again computed in the classical way (c ^ d mod n) without the Chinese remainder theorem optimization. The deterministic {{!PKCS1.sign}PKCS1 signing}, which is at danger, uses [true] as default. [~mask] defaults to [`Yes]. @raise Insufficient_key (see {{!Insufficient_key}Insufficient_key}) *) (** {1 Key generation} *) val generate : ?g:Mirage_crypto_rng.g -> ?e:Z.t -> bits:int -> unit -> priv (** [generate ~g ~e ~bits ()] is a new {{!type-priv}private key}. The new key is guaranteed to be well formed, see {!val-priv}. [e] defaults to [2^16+1]. {b Note} This process might diverge if there are no keys for the given bit size. This can happen when [bits] is extremely small. @raise Invalid_argument if [e] is not a prime number (checked probabilistically) or not in the range [1 < e < 2^bits], or if [bits < 89] (as above, required for PKCS1 operations). *) (** {1 PKCS#1 padded modes} *) (** {b PKCS v1.5} operations, as defined by {b PKCS #1 v1.5}. For the operations that only add the raw padding, the key size must be at least 11 bytes larger than the message. For full {{!PKCS1.sign}signing}, the minimal key size varies according to the hash algorithm. In this case, the key size is [priv_bits key / 8], rounded up. *) module PKCS1 : sig val encrypt : ?g:Mirage_crypto_rng.g -> key:pub -> string -> string (** [encrypt g key message] is a PKCS1-padded (type 2) and encrypted [message]. @raise Insufficient_key (see {{!Insufficient_key}Insufficient_key}) *) val decrypt : ?crt_hardening:bool -> ?mask:mask -> key:priv -> string -> string option (** [decrypt ~crt_hardening ~mask ~key ciphertext] is [Some message] if the [ciphertext] was produced by the corresponding {{!encrypt}encrypt} operation, or [None] otherwise. [crt_hardening] defaults to [false]. *) val sig_encode : ?crt_hardening:bool -> ?mask:mask -> key:priv -> string -> string (** [sig_encode ~crt_hardening ~mask ~key message] is the PKCS1-padded (type 1) [message] signed by the [key]. [crt_hardening] defaults to [true] and verifies that the computed signature is correct. {b Note} This operation performs only the padding and RSA transformation steps of the PKCS 1.5 signature. The full signature is implemented by {{!sign}[sign]}. @raise Insufficient_key (see {{!Insufficient_key}Insufficient_key}) *) val sig_decode : key:pub -> string -> string option (** [sig_decode key signature] is [Some message] when the [signature] was produced with the given [key] as per {{!sig_encode}sig_encode}, or [None] *) val min_key : [< Digestif.hash' > `MD5 `SHA1 `SHA224 `SHA256 `SHA384 `SHA512 ] -> int (** [min_key hash] is the minimum key size required by {{!sign}[sign]}. *) val sign : ?crt_hardening:bool -> ?mask:mask -> hash:[< Digestif.hash' > `MD5 `SHA1 `SHA224 `SHA256 `SHA384 `SHA512 ] -> key:priv -> string or_digest -> string (** [sign ~crt_hardening ~mask ~hash ~key message] is the PKCS 1.5 signature of [message], signed by the [key], using the hash function [hash]. This is the full signature, with the ASN-encoded message digest as the payload. [crt_hardening] defaults to [true] and verifies that the computed signature is correct. [message] is either the actual message, or its digest. @raise Insufficient_key (see {{!Insufficient_key}Insufficient_key}) @raise Invalid_argument if message is a [`Digest] of the wrong size. *) val verify : hashp:([< Digestif.hash' > `MD5 `SHA1 `SHA224 `SHA256 `SHA384 `SHA512 ] -> bool) -> key:pub -> signature:string -> string or_digest -> bool (** [verify ~hashp ~key ~signature message] checks that [signature] is the PKCS 1.5 signature of the [message] under the given [key]. [message] is either the actual message, or its digest. [hashp] determines the allowed hash algorithms. Whenever [hashp] is [false], [verify] is also [false]. @raise Invalid_argument if message is a [`Digest] of the wrong size. *) end (** {1 OAEP padded modes} *) (** {b OAEP}-padded encryption, as defined by {b PKCS #1 v2.1}. The same hash function is used for padding and MGF. MGF is {b MGF1} as defined in {b PKCS #1 2.1}. Keys must have a minimum of [2 + 2 * hlen + len(message)] bytes, where [hlen] is the hash length. *) module OAEP (H : Digestif.S) : sig val encrypt : ?g:Mirage_crypto_rng.g -> ?label:string -> key:pub -> string -> string (** [encrypt ~g ~label ~key message] is {b OAEP}-padded and encrypted [message], using the optional [label]. @raise Insufficient_key (see {{!Insufficient_key}Insufficient_key}) *) val decrypt : ?crt_hardening:bool -> ?mask:mask -> ?label:string -> key:priv -> string -> string option (** [decrypt ~crt_hardening ~mask ~label ~key ciphertext] is [Some message] if the [ciphertext] was produced by the corresponding {{!encrypt}encrypt} operation, or [None] otherwise. [crt_hardening] defaults to [false]. *) end (** {1 PSS signing} *) (** {b PSS}-based signing, as defined by {b PKCS #1 v2.1}. The same hash function is used for padding, MGF and computing message digest. MGF is {b MGF1} as defined in {b PKCS #1 2.1}. Keys must have a minimum of [2 + hlen + slen] bytes, where [hlen] is the hash length and [slen] is the seed length. *) module PSS (H: Digestif.S) : sig val sign : ?g:Mirage_crypto_rng.g -> ?crt_hardening:bool -> ?mask:mask -> ?slen:int -> key:priv -> string or_digest -> string (** [sign ~g ~crt_hardening ~mask ~slen ~key message] the [PSS]-padded digest of [message], signed with the [key]. [crt_hardening] defaults to [false]. [slen] is the optional seed length and defaults to the size of the underlying hash function. [message] is either the actual message, or its digest. @raise Insufficient_key (see {{!Insufficient_key}Insufficient_key}) @raise Invalid_argument if message is a [`Digest] of the wrong size. *) val verify : ?slen:int -> key:pub -> signature:string -> string or_digest -> bool (** [verify ~slen ~key ~signature message] checks whether [signature] is a valid {b PSS} signature of the [message] under the given [key]. [message] is either the actual message, or its digest. @raise Invalid_argument if message is a [`Digest] of the wrong size. *) end end (** {b DSA} digital signature algorithm. *) module Dsa : sig (** {1 DSA signature algorithm} *) type priv = private { p : Z.t ; (** Modulus *) q : Z.t ; (** Subgroup order *) gg : Z.t ; (** Group Generator *) x : Z.t ; (** Private key proper *) y : Z.t ; (** Public component *) } (** Private key. [p], [q] and [gg] comprise {i domain parameters}. *) val priv : ?fips:bool -> p:Z.t -> q:Z.t -> gg:Z.t -> x:Z.t -> y:Z.t -> unit -> (priv, [> `Msg of string ]) result (** [priv ~fips ~p ~q ~gg ~x ~y ()] constructs a private DSA key from the given numbers. Will result in an error if parameters are ill-formed: same as {!val-pub}, and additionally [0 < x < q] and [y = g ^ x mod p]. Note that no time masking is done on the modular exponentiation. *) type pub = private { p : Z.t ; q : Z.t ; gg : Z.t ; y : Z.t ; } (** Public key, a subset of {{!type-priv}private key}. *) val pub : ?fips:bool -> p:Z.t -> q:Z.t -> gg:Z.t -> y:Z.t -> unit -> (pub, [> `Msg of string ]) result (** [pub ~fips ~p ~q ~gg ~y ()] constructs a public DSA key from the given numbers. Will result in an error if the parameters are not well-formed: [one < gg < p], [q] probabilistically a prime, [p] probabilistically prime and odd, [0 < y < p], [q < p], and [p - 1 mod q = 0]. If [fips] is specified and [true] (defaults to [false]), only FIPS-specified bit length for [p] and [q] are accepted. *) type keysize = [ `Fips1024 | `Fips2048 | `Fips3072 | `Exactly of int * int ] (** Key size request. Three {e Fips} variants refer to FIPS-standardized L-values ([p] size) and imply the corresponding N ([q] size); The last variants specifies L and N directly. *) type mask = [ `No | `Yes | `Yes_with of Mirage_crypto_rng.g ] (** Masking (cryptographic blinding) option. *) val pub_of_priv : priv -> pub (** Extract the public component from a private key. *) val generate : ?g:Mirage_crypto_rng.g -> keysize -> priv (** [generate g size] is a fresh {{!type-priv}private} key. The domain parameters are derived using a modified FIPS.186-4 probabilistic process, but the derivation can not be validated. Note that no time masking is done for the modular exponentiations. {b Note} The process might diverge if it is impossible to find parameters with the given bit sizes. This happens when [n] gets too big for [l], if the [size] was given as [`Exactly (l, n)]. @raise Invalid_argument if [size] is (`Exactly (l, n)), and either [l] or [n] is ridiculously small. *) val sign : ?mask:mask -> ?k:Z.t -> key:priv -> string -> string * string (** [sign ~mask ~k ~key digest] is the signature, a pair of strings representing [r] and [s] in big-endian. [digest] is the full digest of the actual message. [k], the random component, can either be provided, or is deterministically derived as per RFC6979, using SHA256. @raise Invalid_argument if [k] is unsuitable (leading to r or s being 0). *) val verify : key:pub -> string * string -> string -> bool (** [verify ~key (r, s) digest] verifies that the pair [(r, s)] is the signature of [digest], the message digest, under the private counterpart to [key]. *) val massage : key:pub -> string -> string (** [massage key digest] is the numeric value of [digest] taken modulo [q] and represented in the leftmost [bits(q)] bits of the result. Both FIPS.186-4 and RFC6979 specify that only the leftmost [bits(q)] bits of [digest] are to be taken into account, but some implementations consider the entire [digest]. In cases where {{!sign}sign} and {{!verify}verify} seem incompatible with a given implementation (esp. if {{!sign}sign} produces signatures with the [s] component different from the other implementation's), it might help to pre-process [digest] using this function (e.g. [sign ~key (massage ~key:(pub_of_priv key) digest)]). *) (** [K_gen] can be instantiated over a hashing module to obtain an RFC6979 compliant [k]-generator for that hash. *) module K_gen (H : Digestif.S) : sig val generate : key:priv -> string -> Z.t (** [generate key digest] deterministically takes the given private key and message digest to a [k] suitable for seeding the signing process. *) end end (** Diffie-Hellman, MODP version. *) module Dh : sig (** {1 Diffie-Hellman key exchange} *) exception Invalid_key (** Raised if the private key material is degenerate. The following invariants are checked: Secret key: [1 < secret < p] Public key: [1 < public < p-1] && [public <> gg] *) type group = private { p : Z.t ; (** modulus *) gg : Z.t ; (** generator *) q : Z.t option ; (** subgroup order; potentially unknown *) } (** A DH group. *) val group : p:Z.t -> gg:Z.t -> ?q:Z.t -> unit -> (group, [> `Msg of string ]) result (** [group ~p ~gg ~q ()] constructs a group if [p] is odd, a prime number, and greater than [zero]. [gg] must be in the range [1 < gg < p]. *) type secret = private { group : group ; x : Z.t } (** A private key. *) val modulus_size : group -> int (** Bit size of the modulus. *) val key_of_secret : group -> s:string -> secret * string (** [key_of_secret group s] is the {!secret} and the corresponding public key which use [s] as the secret exponent. @raise Invalid_key if [s] is degenerate. *) val gen_key : ?g:Mirage_crypto_rng.g -> ?bits:int -> group -> secret * string (** Generate a random {!secret} and the corresponding public key. [bits] is the exact bit-size of {!secret} and defaults to a value dependent on the {!type-group}'s [p]. {b Note} The process might diverge when [bits] is extremely small. *) val shared : secret -> string -> string option (** [shared secret public] is [Some shared_key] given a a previously generated {!secret} (which specifies the [group]) and the other party's public key. [shared_key] is the unpadded big-endian representation of the shared key. It is [None] if these invariants do not hold for [public]: [1 < public < p-1] && [public <> gg]. *) val gen_group : ?g:Mirage_crypto_rng.g -> bits:int -> unit -> group (** [gen_group ~g ~bits ()] generates a random {!type-group} with modulus size [bits]. Uses a safe prime [p = 2q + 1] (with [q] prime) for the modulus and [2] for the generator, such that [2^q = 1 mod p]. Runtime is on the order of a minute for 1024 bits. Note that no time masking is done for the modular exponentiation. {b Note} The process might diverge if there are no suitable groups. This happens with extremely small [bits] values. *) (** A small catalog of standardized {!type-group}s. *) module Group : sig (** From RFC 2409: *) val oakley_1 : group val oakley_2 : group (** From RFC 3526: *) val oakley_5 : group val oakley_14 : group val oakley_15 : group val oakley_16 : group val oakley_17 : group val oakley_18 : group (** From RFC 5114: *) val rfc_5114_1 : group val rfc_5114_2 : group val rfc_5114_3 : group (** From draft-ietf-tls-negotiated-ff-dhe-08 *) val ffdhe2048 : group val ffdhe3072 : group val ffdhe4096 : group val ffdhe6144 : group val ffdhe8192 : group end end (** {b Z} Convert Z to big endian string and generate random Z values. *) module Z_extra : sig (** {1 Conversion to and from string} *) val of_octets_be : ?bits:int -> string -> Z.t (** [of_octets_be ~bits buf] interprets the bit pattern of [buf] as a {{!Z.t}[t]} in big-endian. If [~bits] is not given, the operation considers the entire [buf], otherwise the initial [min ~bits (bit-length buf)] bits of [buf]. Assuming [n] is the number of bits to extract, the [n]-bit in [buf] is always the least significant bit of the result. Therefore: {ul {- if the bit size [k] of [t] is larger than [n], [k - n] most significant bits in the result are [0]; and} {- if [k] is smaller than [n], the result contains [k] last of the [n] first bits of [buf].}} *) val to_octets_be : ?size:int -> Z.t -> string (** [to_octets_be ~size t] is the big-endian representation of [t]. If [~size] is not given, it defaults to the minimal number of bytes needed to represent [t], which is [bits t / 8] rounded up. The least-significant bit of [t] is always the last bit in the result. If the size is larger than needed, the output is padded with zero bits. If it is smaller, the high bits in [t] are dropped. *) val into_octets_be : Z.t -> bytes -> unit (** [into_octets_be t buf] writes the big-endian representation of [t] into [buf]. It behaves like {{!to_octets_be}[to_octets_be]}, with [~size] spanning the entire [buf]. *) (** {1 Random generation} *) val gen : ?g:Mirage_crypto_rng.g -> Z.t -> Z.t (** [gen ~g n] picks a value in the interval [\[0, n - 1\]] uniformly at random. *) val gen_r : ?g:Mirage_crypto_rng.g -> Z.t -> Z.t -> Z.t (** [gen_r ~g low high] picks a value from the interval [\[low, high - 1\]] uniformly at random. *) end
mirage-crypto
2.0.2
ISC
https://github.com/mirage/mirage-crypto
git+https://github.com/mirage/mirage-crypto.git
ml
mirage-crypto-2.0.2/pk/rsa.ml
open Mirage_crypto.Uncommon open Common let two = Z.(~$2) and three = Z.(~$3) (* A constant-time [find_uint8] with a default value. *) let ct_find_uint8 ~default ?off ~f cs = let res = Eqaf.find_uint8 ?off ~f cs in Eqaf.select_int (res + 1) default res let (&.) f g = fun h -> f (g h) type 'a or_digest = [ `Message of 'a | `Digest of string ] module Digest_or (H : Digestif.S) = struct let digest_or = function | `Message msg -> H.(digest_string msg |> to_raw_string) | `Digest digest -> let n = String.length digest and m = H.digest_size in if n = m then digest else invalid_arg "(`Digest _): %d bytes, expecting %d" n m end exception Insufficient_key type pub = { e : Z.t ; n : Z.t } (* due to PKCS1 *) let minimum_octets = 12 let minimum_bits = 8 * minimum_octets - 7 let pub ~e ~n = (* We cannot verify a public key being good (this would require to verify "n" being the multiplication of two prime numbers - figuring out which primes were used is the security property of RSA). but we validate to ensure our usage of powm_sec does not lead to exceptions, and we avoid tiny public keys where PKCS1 / PSS would lead to infinite loops or not work due to insufficient space for the header. *) let* () = guard Z.(n > zero && is_odd n && numbits n >= minimum_bits) (`Msg "invalid modulus") in let* () = guard Z.(one < e && e < n) (`Msg "invalid exponent") in (* NOTE that we could check for e being odd, or a prime, or 2^16+1, but these are not requirements, neither for RSA nor for powm_sec *) Ok { e ; n } type priv = { e : Z.t ; d : Z.t ; n : Z.t ; p : Z.t ; q : Z.t ; dp : Z.t ; dq : Z.t ; q' : Z.t } let valid_prime name p = guard Z.(p > zero && is_odd p && Z_extra.pseudoprime p) (`Msg ("invalid prime " ^ name)) let rprime a b = Z.(gcd a b = one) let valid_e ~e ~p ~q = let* () = guard (rprime e (Z.pred p) && rprime e (Z.pred q)) (`Msg "e is not coprime of p and q") in guard (Z_extra.pseudoprime e) (`Msg "exponent e is not a pseudoprime") let priv ~e ~d ~n ~p ~q ~dp ~dq ~q' = let* _ = pub ~e ~n in let* () = valid_prime "p" p in let* () = valid_prime "q" q in let* () = guard (p <> q) (`Msg "p and q are the same number") in let* () = valid_e ~e ~p ~q in (* p and q are prime, and not equal -> multiplicative inverse exists *) let* () = guard Z.(q' = invert q p) (`Msg "q' <> q ^ -1 mod p") in let* () = guard Z.(n = p * q) (`Msg "modulus is not the product of p and q") in let* () = guard Z.(one < d && d < n) (`Msg "invalid private exponent") in let* () = guard Z.(dp = d mod (pred p)) (`Msg "dp <> d mod (p - 1)") in let* () = guard Z.(dq = d mod (pred q)) (`Msg "dq <> d mod (q - 1)") in (* e has been checked (valid_e) to be coprime to p-1 and q-1 -> muliplicative inverse exists *) let* () = guard Z.(one = d * e mod (lcm (pred p) (pred q))) (`Msg "1 <> d * e mod lcm (p - 1) (q - 1)") in Ok { e ; d ; n ; p ; q ; dp ; dq ; q' } let priv_of_primes ~e ~p ~q = let* () = valid_prime "p" p in let* () = valid_prime "q" q in let* () = guard (p <> q) (`Msg "p and q are the same prime") in let* () = valid_e ~e ~p ~q in let n = Z.(p * q) in let* _ = pub ~e ~n in (* valid_e checks e coprime to p-1 and q-1, a multiplicative inverse exists *) let d = Z.(invert e (lcm (pred p) (pred q))) in let dp = Z.(d mod (pred p)) and dq = Z.(d mod (pred q)) in (* above we checked that p and q both are primes and not equal -> there should be a multiplicate inverse *) let q' = Z.invert q p in (* does not need to check valid_priv, since it is valid by construction *) Ok { e; d; n; p; q; dp; dq; q' } (* Handbook of applied cryptography, 8.2.2 (i). *) let priv_of_exp ?g ?(attempts=100) ~e ~d ~n () = let* _ = pub ~e ~n in let* () = guard Z.(one < d && d < n) (`Msg "invalid private exponent") in let rec doit ~attempts = let factor s t = let rec go ax = function | 0 -> None | i' -> let ax2 = Z.(ax * ax mod n) in if Z.(ax <> one && ax <> pred n && ax2 = one) then Some ax else go ax2 (i' - 1) in Option.map Z.(gcd n &. pred) (go Z.(powm (Z_extra.gen ?g n) t n) s) in if attempts > 0 then let* s, t = Z_extra.strip_factor ~f:two Z.(e * d |> pred) in match s with | 0 -> Error (`Msg "invalid factor 0") | _ -> match factor s t with | None -> doit ~attempts:(attempts - 1) | Some p -> let q = Z.(div n p) in priv_of_primes ~e ~p:(max p q) ~q:(min p q) else Error (`Msg "attempts exceeded") in doit ~attempts let rec generate ?g ?(e = Z.(~$0x10001)) ~bits () = if bits < minimum_bits || e < three || (bits <= Z.numbits e || not (Z_extra.pseudoprime e)) then invalid_arg "Rsa.generate: e: %a, bits: %d" Z.pp_print e bits; let (pb, qb) = (bits / 2, bits - bits / 2) in let (p, q) = Z_extra.(prime ?g ~msb:2 pb, prime ?g ~msb:2 qb) in match priv_of_primes ~e ~p:(max p q) ~q:(min p q) with | Error _ -> generate ?g ~e ~bits () | Ok priv -> priv let pub_of_priv ({ e; n; _ } : priv) = { e ; n } let pub_bits ({ n; _ } : pub) = Z.numbits n and priv_bits ({ n; _ } : priv) = Z.numbits n type mask = [ `No | `Yes | `Yes_with of Mirage_crypto_rng.g ] let encrypt_unsafe ~key: ({ e; n } : pub) msg = Z.(powm msg e n) let decrypt_unsafe ~crt_hardening ~key:({ e; d; n; p; q; dp; dq; q'} : priv) c = let m1 = Z.(powm_sec c dp p) and m2 = Z.(powm_sec c dq q) in (* NOTE: neither erem, nor the multiplications (addition, subtraction) are guaranteed to be constant time by gmp *) let h = Z.(erem (q' * (m1 - m2)) p) in let m = Z.(h * q + m2) in (* counter Arjen Lenstra's CRT attack by verifying the signature. Since the public exponent is small, this is not very expensive. Mentioned again "Factoring RSA keys with TLS Perfect Forward Secrecy" (Weimer, 2015). *) if not crt_hardening || Z.(powm_sec m e n) = c then m else Z.(powm_sec c d n) let decrypt_blinded_unsafe ~crt_hardening ?g ~key:({ e; n; _} as key : priv) c = let r = until (rprime n) (fun _ -> Z_extra.gen_r ?g two n) in (* since r and n are coprime, there must be a multiplicative inverse *) let r' = Z.(invert r n) in let c' = Z.(powm_sec r e n * c mod n) in let x = decrypt_unsafe ~crt_hardening ~key c' in Z.(r' * x mod n) let (encrypt_z, decrypt_z) = let check_params n msg = if msg < two then invalid_arg "Rsa: message: %a" Z.pp_print msg; if n <= msg then raise Insufficient_key in (fun ~(key : pub) msg -> check_params key.n msg ; encrypt_unsafe ~key msg), (fun ~crt_hardening ~mask ~(key : priv) msg -> check_params key.n msg ; match mask with | `No -> decrypt_unsafe ~crt_hardening ~key msg | `Yes -> decrypt_blinded_unsafe ~crt_hardening ~key msg | `Yes_with g -> decrypt_blinded_unsafe ~crt_hardening ~g ~key msg ) let reformat out f msg = Z_extra.(of_octets_be msg |> f |> to_octets_be ~size:(out // 8)) let encrypt ~key = reformat (pub_bits key) (encrypt_z ~key) let decrypt ?(crt_hardening=false) ?(mask=`Yes) ~key = reformat (priv_bits key) (decrypt_z ~crt_hardening ~mask ~key) let bx00, bx01 = "\x00", "\x01" module PKCS1 = struct let min_pad = 8 (* XXX Generalize this into `Rng.samplev` or something. *) let generate_with ?g ~f n = let buf = Bytes.create n and k = let b = Mirage_crypto_rng.block g in (n // b * b) in let rec go nonce i j = if i = n then Bytes.unsafe_to_string buf else if j = k then go Mirage_crypto_rng.(generate ?g k) i 0 else match String.get_uint8 nonce j with | b when f b -> Bytes.set_uint8 buf i b ; go nonce (succ i) (succ j) | _ -> go nonce i (succ j) in go Mirage_crypto_rng.(generate ?g k) 0 0 let pad ~mark ~padding k msg = let pad = padding (k - String.length msg - 3 |> imax min_pad) in String.concat "" [ bx00 ; mark ; pad ; bx00 ; msg ] let unpad ~mark ~is_pad buf = let f = not &. is_pad in let i = ct_find_uint8 ~default:2 ~off:2 ~f buf in let c1 = String.get_uint8 buf 0 = 0x00 and c2 = String.get_uint8 buf 1 = mark and c3 = String.get_uint8 buf i = 0x00 and c4 = min_pad <= i - 2 in if c1 && c2 && c3 && c4 then Some (String.sub buf (i + 1) (String.length buf - i - 1)) else None let pad_01 = let padding size = String.make size '\xff' in pad ~mark:"\x01" ~padding let pad_02 ?g = pad ~mark:"\x02" ~padding:(generate_with ?g ~f:((<>) 0x00)) let unpad_01 = unpad ~mark:0x01 ~is_pad:((=) 0xff) let unpad_02 = unpad ~mark:0x02 ~is_pad:((<>) 0x00) let padded pad transform keybits msg = let n = keybits // 8 in let p = pad n msg in if String.length p = n then transform p else raise Insufficient_key let unpadded unpad transform keybits msg = if String.length msg = keybits // 8 then try unpad (transform msg) with Insufficient_key -> None else None let sig_encode ?(crt_hardening = true) ?mask ~key msg = padded pad_01 (decrypt ~crt_hardening ?mask ~key) (priv_bits key) msg let sig_decode ~key msg = unpadded unpad_01 (encrypt ~key) (pub_bits key) msg let encrypt ?g ~key msg = padded (pad_02 ?g) (encrypt ~key) (pub_bits key) msg let decrypt ?(crt_hardening = false) ?mask ~key msg = unpadded unpad_02 (decrypt ~crt_hardening ?mask ~key) (priv_bits key) msg let asn_of_hash, detect = let map = [ `MD5, "\x30\x20\x30\x0c\x06\x08\x2a\x86\x48\x86\xf7\x0d\x02\x05\x05\x00\x04\x10" ; `SHA1, "\x30\x21\x30\x09\x06\x05\x2b\x0e\x03\x02\x1a\x05\x00\x04\x14" ; `SHA224, "\x30\x2d\x30\x0d\x06\x09\x60\x86\x48\x01\x65\x03\x04\x02\x04\x05\x00\x04\x1c" ; `SHA256, "\x30\x31\x30\x0d\x06\x09\x60\x86\x48\x01\x65\x03\x04\x02\x01\x05\x00\x04\x20" ; `SHA384, "\x30\x41\x30\x0d\x06\x09\x60\x86\x48\x01\x65\x03\x04\x02\x02\x05\x00\x04\x30" ; `SHA512, "\x30\x51\x30\x0d\x06\x09\x60\x86\x48\x01\x65\x03\x04\x02\x03\x05\x00\x04\x40" ] in (fun h -> List.assoc h map), (fun buf -> List.find_opt (fun (_, d) -> String.starts_with ~prefix:d buf) map) let sign ?(crt_hardening = true) ?mask ~hash ~key msg = let module H = (val Digestif.module_of_hash' (hash :> Digestif.hash')) in let module D = Digest_or(H) in let msg' = asn_of_hash hash ^ D.digest_or msg in sig_encode ~crt_hardening ?mask ~key msg' let verify ~hashp ~key ~signature msg = let (>>=) = Option.bind and (>>|) = Fun.flip Option.map in Option.value (sig_decode ~key signature >>= fun buf -> detect buf >>| fun (hash, asn) -> let module H = (val Digestif.module_of_hash' (hash :> Digestif.hash')) in let module D = Digest_or(H) in hashp hash && Eqaf.equal (asn ^ D.digest_or msg) buf) ~default:false let min_key hash = let module H = (val Digestif.module_of_hash' (hash :> Digestif.hash')) in (String.length (asn_of_hash hash) + H.digest_size + min_pad + 2) * 8 + 1 end module MGF1 (H : Digestif.S) = struct let repr n = let buf = Bytes.create 4 in Bytes.set_int32_be buf 0 n; Bytes.unsafe_to_string buf (* Assumes len < 2^32 * H.digest_size. *) let mgf ~seed len = let rec go acc c = function | 0 -> Bytes.sub (Bytes.concat Bytes.empty (List.rev acc)) 0 len | n -> let h = Bytes.create H.digest_size in H.get_into_bytes (H.feedi_string H.empty (iter2 seed (repr c))) h; go (h :: acc) Int32.(succ c) (pred n) in go [] 0l (len // H.digest_size) let mask ~seed buf = let mgf_data = mgf ~seed (String.length buf) in unsafe_xor_into buf ~src_off:0 mgf_data ~dst_off:0 (String.length buf); mgf_data end module OAEP (H : Digestif.S) = struct module MGF = MGF1 (H) let hlen = H.digest_size let max_msg_bytes k = k - 2 * hlen - 2 let eme_oaep_encode ?g ?(label = "") k msg = let seed = Mirage_crypto_rng.generate ?g hlen and pad = String.make (max_msg_bytes k - String.length msg) '\x00' in let db = String.concat "" [ H.(digest_string label |> to_raw_string) ; pad ; bx01 ; msg ] in let mdb = Bytes.unsafe_to_string (MGF.mask ~seed db) in let mseed = Bytes.unsafe_to_string (MGF.mask ~seed:mdb seed) in String.concat "" [ bx00 ; mseed ; mdb ] let eme_oaep_decode ?(label = "") msg = let b0 = String.sub msg 0 1 and ms = String.sub msg 1 hlen and mdb = String.sub msg (1 + hlen) (String.length msg - 1 - hlen) in let db = Bytes.unsafe_to_string (MGF.mask ~seed:(Bytes.unsafe_to_string (MGF.mask ~seed:mdb ms)) mdb) in let i = ct_find_uint8 ~default:0 ~off:hlen ~f:((<>) 0x00) db in let c1 = Eqaf.equal (String.sub db 0 hlen) H.(digest_string label |> to_raw_string) and c2 = String.get_uint8 b0 0 = 0x00 and c3 = String.get_uint8 db i = 0x01 in if c1 && c2 && c3 then Some (String.sub db (i + 1) (String.length db - i - 1)) else None let encrypt ?g ?label ~key msg = let k = pub_bits key // 8 in if String.length msg > max_msg_bytes k then raise Insufficient_key else encrypt ~key @@ eme_oaep_encode ?g ?label k msg let decrypt ?(crt_hardening = false) ?mask ?label ~key em = let k = priv_bits key // 8 in if String.length em <> k || max_msg_bytes k < 0 then None else try eme_oaep_decode ?label @@ decrypt ~crt_hardening ?mask ~key em with Insufficient_key -> None (* XXX Review rfc3447 7.1.2 and * http://archiv.infsec.ethz.ch/education/fs08/secsem/Manger01.pdf * again for timing properties. *) (* XXX expose seed for deterministic testing? *) end module PSS (H: Digestif.S) = struct module MGF = MGF1 (H) module H1 = Digest_or (H) let hlen = H.digest_size let bxbc = "\xbc" let b0mask embits = 0xff lsr ((8 - embits mod 8) mod 8) let zero_8 = String.make 8 '\x00' let digest ~salt msg = H.to_raw_string @@ H.digesti_string @@ iter3 zero_8 (H1.digest_or msg) salt let emsa_pss_encode ?g slen emlen msg = let n = emlen // 8 and salt = Mirage_crypto_rng.generate ?g slen in let h = digest ~salt msg in let db = String.concat "" [ String.make (n - slen - hlen - 2) '\x00' ; bx01 ; salt ] in let mdb = MGF.mask ~seed:h db in Bytes.set_uint8 mdb 0 @@ Bytes.get_uint8 mdb 0 land b0mask emlen ; String.concat "" [ Bytes.unsafe_to_string mdb ; h ; bxbc ] let emsa_pss_verify slen emlen em msg = let mdb = String.sub em 0 (String.length em - hlen - 1) and h = String.sub em (String.length em - hlen - 1) hlen and bxx = String.get_uint8 em (String.length em - 1) in let db = MGF.mask ~seed:h mdb in Bytes.set_uint8 db 0 (Bytes.get_uint8 db 0 land b0mask emlen) ; let db = Bytes.unsafe_to_string db in let salt = String.sub db (String.length db - slen) slen in let h' = digest ~salt:salt msg and i = ct_find_uint8 ~default:0 ~f:((<>) 0x00) db in let c1 = lnot (b0mask emlen) land String.get_uint8 mdb 0 = 0x00 and c2 = i = String.length em - hlen - slen - 2 and c3 = String.get_uint8 db i = 0x01 and c4 = bxx = 0xbc and c5 = Eqaf.equal h h' in c1 && c2 && c3 && c4 && c5 let sufficient_key ~slen kbits = hlen + slen + 2 <= kbits / 8 (* 8 * (hlen + slen + 1) + 2 <= kbits *) let sign ?g ?(crt_hardening = false) ?mask ?(slen = hlen) ~key msg = let b = priv_bits key in if not (sufficient_key ~slen b) then raise Insufficient_key else let msg' = emsa_pss_encode ?g (imax 0 slen) (b - 1) msg in decrypt ~crt_hardening ?mask ~key msg' let verify ?(slen = hlen) ~key ~signature msg = let b = pub_bits key and s = String.length signature in s = b // 8 && sufficient_key ~slen b && try let em = encrypt ~key signature in let to_see = s - (b - 1) // 8 in emsa_pss_verify (imax 0 slen) (b - 1) (String.sub em to_see (String.length em - to_see)) msg with Insufficient_key -> false end
mirage-crypto
2.0.2
ISC
https://github.com/mirage/mirage-crypto
git+https://github.com/mirage/mirage-crypto.git
ml
mirage-crypto-2.0.2/pk/z_extra.ml
open Mirage_crypto.Uncommon let bit_bound z = Z.size z * 64 let of_octets_be ?bits buf = let rec loop acc i = function | b when b >= 64 -> let x = String.get_int64_be buf i in let x = Z.of_int64_unsigned Int64.(shift_right_logical x 8) in loop Z.(x + acc lsl 56) (i + 7) (b - 56) | b when b >= 32 -> let x = String.get_int32_be buf i in let x = Z.of_int32_unsigned Int32.(shift_right_logical x 8) in loop Z.(x + acc lsl 24) (i + 3) (b - 24) | b when b >= 16 -> let x = Z.of_int (String.get_uint16_be buf i) in loop Z.(x + acc lsl 16) (i + 2) (b - 16) | b when b >= 8 -> let x = Z.of_int (String.get_uint8 buf i) in loop Z.(x + acc lsl 8 ) (i + 1) (b - 8 ) | b when b > 0 -> let x = String.get_uint8 buf i and b' = 8 - b in Z.(of_int x asr b' + acc lsl b) | _ -> acc in loop Z.zero 0 @@ match bits with | None -> String.length buf * 8 | Some b -> imin b (String.length buf * 8) let byte1 = Z.of_int64 0xffL and byte2 = Z.of_int64 0xffffL and byte3 = Z.of_int64 0xffffffL and byte7 = Z.of_int64 0xffffffffffffffL let into_octets_be n buf = let rec write n = function | i when i >= 7 -> Bytes.set_int64_be buf (i - 7) Z.(to_int64_unsigned (n land byte7)) ; write Z.(n asr 56) (i - 7) | i when i >= 3 -> Bytes.set_int32_be buf (i - 3) Z.(to_int32_unsigned (n land byte3)) ; write Z.(n asr 24) (i - 3) | i when i >= 1 -> Bytes.set_uint16_be buf (i - 1) Z.(to_int (n land byte2)) ; write Z.(n asr 16) (i - 2) | 0 -> Bytes.set_uint8 buf 0 Z.(to_int (n land byte1)) ; | _ -> () in write n (Bytes.length buf - 1) let to_octets_be ?size n = let buf = Bytes.create @@ match size with | Some s -> imax 0 s | None -> Z.numbits n // 8 in into_octets_be n buf; Bytes.unsafe_to_string buf (* Handbook of Applied Cryptography, Table 4.4: * Miller-Rabin rounds for composite probability <= 1/2^80. *) let pseudoprime z = let i = match Z.numbits z with | i when i >= 1300 -> 2 | i when i >= 850 -> 3 | i when i >= 650 -> 4 | i when i >= 350 -> 8 | i when i >= 250 -> 12 | i when i >= 150 -> 18 | _ -> 27 in Z.probab_prime z i <> 0 (* strip_factor ~f x = (s, t), where x = f^s t *) let strip_factor ~f x = let rec go n x = let (x1, r) = Z.div_rem x f in if r = Z.zero then go (succ n) x1 else Ok (n, x) in if Z.(~$2) <= f then go 0 x else Error (`Msg ("factor_count: f: " ^ Z.to_string f)) let gen ?g n = if n < Z.one then invalid_arg "Rng.gen: non-positive: %a" Z.pp_print n; let bs = Mirage_crypto_rng.block g in let bits = Z.(numbits (pred n)) in let octets = bits // 8 in let batch = if Mirage_crypto_rng.strict g then octets else 2 * octets // bs * bs in let rec attempt buf = if String.length buf >= octets then let x = of_octets_be ~bits buf in if x < n then x else attempt (String.sub buf octets (String.length buf - octets)) else attempt (Mirage_crypto_rng.generate ?g batch) in attempt (Mirage_crypto_rng.generate ?g batch) let rec gen_r ?g a b = if Mirage_crypto_rng.strict g then let x = gen ?g b in if x < a then gen_r ?g a b else x else Z.(a + gen ?g (b - a)) let set_msb bits buf = if bits > 0 then let n = Bytes.length buf in let rec go width = function | i when i = n -> () | i when width < 8 -> Bytes.set_uint8 buf i (Bytes.get_uint8 buf i lor (0xff lsl (8 - width))) | i -> Bytes.set_uint8 buf i 0xff ; go (width - 8) (succ i) in go bits 0 let gen_bits ?g ?(msb = 0) bits = let bytelen = bits // 8 in let buf = Bytes.create bytelen in Mirage_crypto_rng.generate_into ?g buf ~off:0 bytelen; set_msb msb buf ; of_octets_be ~bits (Bytes.unsafe_to_string buf) (* Invalid combinations of ~bits and ~msb will loop forever, but there is no * way to quickly determine upfront whether there are any primes in the * interval. * XXX Probability is distributed as inter-prime gaps. So? *) let rec prime ?g ?(msb = 1) bits = let p = Z.(nextprime @@ gen_bits ?g ~msb bits) in if p < Z.(one lsl bits) then p else prime ?g ~msb bits (* XXX Add ~msb param for p? *) let rec safe_prime ?g bits = let q = prime ?g ~msb:1 (bits - 1) in let p = Z.(q * ~$2 + ~$1) in if pseudoprime p then (q, p) else safe_prime ?g bits
mirage-crypto
2.0.2
ISC
https://github.com/mirage/mirage-crypto
git+https://github.com/mirage/mirage-crypto.git
dune
mirage-crypto-2.0.2/rng/dune
(library (name mirage_crypto_rng) (public_name mirage-crypto-rng) (libraries mirage-crypto digestif logs) (private_modules entropy fortuna hmac_drbg rng))
mirage-crypto
2.0.2
ISC
https://github.com/mirage/mirage-crypto
git+https://github.com/mirage/mirage-crypto.git
ml
mirage-crypto-2.0.2/rng/entropy.ml
(* * Copyright (c) 2014 Hannes Mehnert * Copyright (c) 2014 Anil Madhavapeddy <anil@recoil.org> * Copyright (c) 2014-2016 David Kaloper Meršinjak * Copyright (c) 2015 Citrix Systems Inc * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * * Redistributions of source code must retain the above copyright notice, this * list of conditions and the following disclaimer. * * * Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. *) let src = Logs.Src.create "mirage-crypto-rng-entropy" ~doc:"Mirage crypto RNG Entropy" module Log = (val Logs.src_log src : Logs.LOG) let rdrand_calls = Atomic.make 0 let rdrand_failures = Atomic.make 0 let rdseed_calls = Atomic.make 0 let rdseed_failures = Atomic.make 0 module Cpu_native = struct external cycles : unit -> int = "mc_cycle_counter" [@@noalloc] external rdseed : bytes -> int -> bool = "mc_cpu_rdseed" [@@noalloc] external rdrand : bytes -> int -> bool = "mc_cpu_rdrand" [@@noalloc] external rng_type : unit -> int = "mc_cpu_rng_type" [@@noalloc] let cpu_rng = match rng_type () with | 0 -> [] | 1 -> [ `Rdrand ] | 2 -> [ `Rdseed ] | 3 -> [ `Rdrand ; `Rdseed ] | _ -> assert false end module S = Set.Make(struct type t = int * string (* only the name is relevant for comparison - the idx not *) let compare ((_a, an) : int * string) ((_b, bn) : int * string) = String.compare an bn end) let _sources = Atomic.make S.empty type source = Rng.source let register_source name = let rec set () = let sources = Atomic.get _sources in let n = S.cardinal sources in let source = (n, name) in if Atomic.compare_and_set _sources sources (S.add source sources) then source else set () in set () let id (idx, _) = idx let sources () = S.elements (Atomic.get _sources) let pp_source ppf (idx, name) = Format.fprintf ppf "[%d] %s" idx name let cpu_rng isn buf off = match isn with | `Rdseed -> Atomic.incr rdseed_calls; let success = Cpu_native.rdseed buf off in if not success then Atomic.incr rdseed_failures; success | `Rdrand -> Atomic.incr rdrand_calls; let success = Cpu_native.rdrand buf off in if not success then Atomic.incr rdrand_failures; success let random preferred = match Cpu_native.cpu_rng with | [] -> None | xs when List.mem preferred xs -> Some preferred | y::_ -> Some y let write_header source data = Bytes.set_uint8 data 0 source; Bytes.set_uint8 data 1 (Bytes.length data - 2) let header source data = let hdr = Bytes.create (2 + String.length data) in Bytes.unsafe_blit_string data 0 hdr 2 (String.length data); write_header source hdr; Bytes.unsafe_to_string hdr (* Note: * `bootstrap` is not a simple feedback loop. It attempts to exploit CPU-level * data races that lead to execution-time variability of identical instructions. * See Whirlwind RNG: * http://www.ieee-security.org/TC/SP2014/papers/Not-So-RandomNumbersinVirtualizedLinuxandtheWhirlwindRNG.pdf *) let whirlwind_bootstrap id = let outer = 100 and inner_max = 1024 and a = ref 0 in let buf = Bytes.create (outer * 2 + 2) in for i = 0 to outer - 1 do let tsc = Cpu_native.cycles () in Bytes.set_uint16_le buf ((i + 1) * 2) tsc; for j = 1 to tsc mod inner_max do a := tsc / j - !a * i + 1 done done; write_header id buf; Bytes.unsafe_to_string buf let cpu_rng_bootstrap = let rdrand_bootstrap id = let rec go acc = function | 0 -> acc | n -> let buf = Bytes.create 10 in let r = cpu_rng `Rdrand buf 2 in write_header id buf; if not r then go acc (pred n) else go (Bytes.unsafe_to_string buf :: acc) (pred n) in let result = go [] 512 |> String.concat "" in if String.length result = 0 then failwith "Too many RDRAND failures" else result in match random `Rdseed with | None -> Error `Not_supported | Some `Rdseed -> let cpu_rng_bootstrap id = let buf = Bytes.create 10 in let r = cpu_rng `Rdseed buf 2 in write_header id buf; if not r then if List.mem `Rdrand Cpu_native.cpu_rng then rdrand_bootstrap id else failwith "RDSEED failed, and RDRAND not available" else Bytes.unsafe_to_string buf in Ok cpu_rng_bootstrap | Some `Rdrand -> Ok rdrand_bootstrap let bootstrap id = match cpu_rng_bootstrap with | Error `Not_supported -> whirlwind_bootstrap id | Ok cpu_rng_bootstrap -> try cpu_rng_bootstrap id with | Failure f -> Log.err (fun m -> m "CPU RNG bootstrap failed: %s, using whirlwind" f); whirlwind_bootstrap id let interrupt_hook () = let buf = Bytes.create 4 in let a = Cpu_native.cycles () in Bytes.set_int32_le buf 0 (Int32.of_int a) ; Bytes.unsafe_to_string buf let timer_accumulator g = let g = match g with None -> Some (Rng.default_generator ()) | Some g -> Some g in let source = register_source "timer" in let `Acc handle = Rng.accumulate g source in (fun () -> handle (interrupt_hook ())) let feed_pools g source f = let g = match g with None -> Some (Rng.default_generator ()) | Some g -> Some g in let `Acc handle = Rng.accumulate g source in for _i = 0 to pred (Rng.pools g) do match f () with | Ok data -> handle data | Error `No_random_available -> (* should we log a message? *) () done let cpu_rng = match random `Rdrand with | None -> Error `Not_supported | Some insn -> let cpu_rng g = let randomf = cpu_rng insn and source = let s = match insn with `Rdrand -> "rdrand" | `Rdseed -> "rdseed" in register_source s in let f () = let buf = Bytes.create 8 in if randomf buf 0 then Ok (Bytes.unsafe_to_string buf) else Error `No_random_available in fun () -> feed_pools g source f in Ok cpu_rng let rdrand_calls () = Atomic.get rdrand_calls let rdrand_failures () = Atomic.get rdrand_failures let rdseed_calls () = Atomic.get rdseed_calls let rdseed_failures () = Atomic.get rdseed_failures
mirage-crypto
2.0.2
ISC
https://github.com/mirage/mirage-crypto
git+https://github.com/mirage/mirage-crypto.git
ml
mirage-crypto-2.0.2/rng/fortuna.ml
(* NOTE: when modifying this file, please also check whether rng/miou/pfortuna.ml needs to be updated. *) open Mirage_crypto open Mirage_crypto.Uncommon module SHAd256 = struct open Digestif type t = SHA256.t type ctx = SHA256.ctx let empty = SHA256.empty let get t = SHA256.(get t |> to_raw_string |> digest_string |> to_raw_string) let digest x = SHA256.(digest_string x |> to_raw_string |> digest_string |> to_raw_string) let digesti i = SHA256.(digesti_string i |> to_raw_string |> digest_string |> to_raw_string) let feedi = SHA256.feedi_string end let block = 16 (* the minimal amount of bytes in a pool to trigger a reseed *) let min_pool_size = 64 (* the minimal duration between two reseeds *) let min_time_duration = 1_000_000_000L (* number of pools *) let pools = 32 (* XXX Locking!! *) type g = { mutable ctr : AES.CTR.ctr ; mutable secret : string ; mutable key : AES.CTR.key ; pools : SHAd256.ctx array ; mutable pool0_size : int ; mutable reseed_count : int ; mutable last_reseed : int64 ; time : (unit -> int64) option } let create ?time () = let k = String.make 32 '\x00' in { ctr = (0L, 0L) ; secret = k ; key = AES.CTR.of_secret k ; pools = Array.make pools SHAd256.empty ; pool0_size = 0 ; reseed_count = 0 ; last_reseed = 0L ; time } let seeded ~g = let lo, hi = g.ctr in not (Int64.equal lo 0L && Int64.equal hi 0L) (* XXX We might want to erase the old key. *) let set_key ~g sec = g.secret <- sec ; g.key <- AES.CTR.of_secret sec let reseedi ~g iter = set_key ~g @@ SHAd256.digesti (fun f -> f g.secret; iter f); g.ctr <- AES.CTR.add_ctr g.ctr 1L let iter1 a f = f a let reseed ~g cs = reseedi ~g (iter1 cs) let generate_rekey ~g buf ~off len = let b = len // block + 2 in let n = b * block in let r = AES.CTR.stream ~key:g.key ~ctr:g.ctr n in Bytes.unsafe_blit_string r 0 buf off len; let r2 = String.sub r (n - 32) 32 in set_key ~g r2 ; g.ctr <- AES.CTR.add_ctr g.ctr (Int64.of_int b) let add_pool_entropy g = if g.pool0_size > min_pool_size then let should_reseed, now = match g.time with | None -> true, 0L | Some f -> let now = f () in Int64.(sub now g.last_reseed > min_time_duration), now in if should_reseed then begin g.reseed_count <- g.reseed_count + 1; g.last_reseed <- now; g.pool0_size <- 0; reseedi ~g @@ fun add -> for i = 0 to pools - 1 do if g.reseed_count land ((1 lsl i) - 1) = 0 then (SHAd256.get g.pools.(i) |> add; g.pools.(i) <- SHAd256.empty) done end let generate_into ~g buf ~off len = add_pool_entropy g; if not (seeded ~g) then raise Rng.Unseeded_generator ; let rec chunk off = function | i when i <= 0 -> () | n -> let n' = imin n 0x10000 in generate_rekey ~g buf ~off n'; chunk (off + n') (n - n') in chunk off len let add ~g (source, _) ~pool data = let buf = Bytes.create 2 and pool = pool land (pools - 1) and source = source land 0xff in Bytes.set_uint8 buf 0 source; Bytes.set_uint8 buf 1 (String.length data); g.pools.(pool) <- SHAd256.feedi g.pools.(pool) (iter2 (Bytes.unsafe_to_string buf) data); if pool = 0 then g.pool0_size <- g.pool0_size + String.length data (* XXX * Schneier recommends against using generator-imposed pool-seeding schedule * but it just makes for a horrid api. *) let accumulate ~g source = let pool = ref 0 in `Acc (fun buf -> add ~g source ~pool:!pool buf ; incr pool)
mirage-crypto
2.0.2
ISC
https://github.com/mirage/mirage-crypto
git+https://github.com/mirage/mirage-crypto.git
ml
mirage-crypto-2.0.2/rng/hmac_drbg.ml
module Make (H : Digestif.S) = struct type g = { mutable k : string ; mutable v : string ; mutable seeded : bool } let block = H.digest_size let (bx00, bx01) = "\x00", "\x01" let k0 = String.make H.digest_size '\x00' and v0 = String.make H.digest_size '\x01' let create ?time:_ () = { k = k0 ; v = v0 ; seeded = false } let seeded ~g = g.seeded let reseed ~g buf = let (k, v) = (g.k, g.v) in let k = H.hmac_string ~key:k @@ String.concat "" [v; bx00; buf] |> H.to_raw_string in let v = H.hmac_string ~key:k v |> H.to_raw_string in let k = H.hmac_string ~key:k @@ String.concat "" [v; bx01; buf] |> H.to_raw_string in let v = H.hmac_string ~key:k v |> H.to_raw_string in g.k <- k ; g.v <- v ; g.seeded <- true let generate_into ~g buf ~off len = if not g.seeded then raise Rng.Unseeded_generator ; let rec go off k v = function | 0 -> v | 1 -> let v = H.hmac_string ~key:k v |> H.to_raw_string in let len = let rem = len mod H.digest_size in if rem = 0 then H.digest_size else rem in Bytes.unsafe_blit_string v 0 buf off len; v | i -> let v = H.hmac_string ~key:k v |> H.to_raw_string in Bytes.unsafe_blit_string v 0 buf off H.digest_size; go (off + H.digest_size) k v (pred i) in let v = go off g.k g.v Mirage_crypto.Uncommon.(len // H.digest_size) in g.k <- H.hmac_string ~key:g.k (v ^ bx00) |> H.to_raw_string; g.v <- H.hmac_string ~key:g.k v |> H.to_raw_string (* XXX *) let accumulate ~g:_ = invalid_arg "Implement Hmac_drbg.accumulate..." let pools = 0 end
mirage-crypto
2.0.2
ISC
https://github.com/mirage/mirage-crypto
git+https://github.com/mirage/mirage-crypto.git
dune
mirage-crypto-2.0.2/rng/miou/dune
(library (name mirage_crypto_rng_miou_unix) (public_name mirage-crypto-rng-miou-unix) (libraries miou miou.unix mirage-crypto mirage-crypto-rng mirage-crypto-rng.unix digestif duration mtime.clock.os logs) (modules mirage_crypto_rng_miou_unix pfortuna))
mirage-crypto
2.0.2
ISC
https://github.com/mirage/mirage-crypto
git+https://github.com/mirage/mirage-crypto.git
ml
mirage-crypto-2.0.2/rng/miou/mirage_crypto_rng_miou_unix.ml
open Mirage_crypto_rng module Pfortuna = Pfortuna type _ Effect.t += Spawn : (unit -> unit) -> unit Effect.t external reraise : exn -> 'a = "%reraise" let periodic fn delta = let rec one () = fn (); Miou_unix.sleep (Duration.to_f delta); one () in Effect.perform (Spawn one) let getrandom delta source = let fn () = let per_pool = 8 in let size = per_pool * pools None in let random = Mirage_crypto_rng_unix.getrandom size in let idx = ref 0 in let fn () = incr idx; Ok (String.sub random (per_pool * (pred !idx)) per_pool) in Entropy.feed_pools None source fn in periodic fn delta let getrandom_init i = let data = Mirage_crypto_rng_unix.getrandom 128 in Entropy.header i data let rdrand delta = match Entropy.cpu_rng with | Error `Not_supported -> () | Ok cpu_rng -> periodic (cpu_rng None) delta let running = Atomic.make false let switch fn = let orphans = Miou.orphans () in let open Effect.Deep in let retc = Fun.id in let exnc = reraise in let effc : type c. c Effect.t -> ((c, 'r) continuation -> 'r) option = function | Spawn fn -> ignore (Miou.async ~orphans fn); Some (fun k -> continue k ()) | _ -> None in match_with fn orphans { retc; exnc; effc } let default_generator_already_set = "Mirage_crypto_rng.default_generator has already \ been set (but not via Mirage_crypto_rng_miou). Please check \ that this is intentional" let miou_generator_already_launched = "Mirage_crypto_rng_miou.initialize has already been launched \ and a task is already seeding the RNG." type rng = unit Miou.t let rec compare_and_set ?(backoff= Miou_backoff.default) t a b = if Atomic.compare_and_set t a b = false then compare_and_set ~backoff:(Miou_backoff.once backoff) t a b let rec clean_up sleep orphans = match Miou.care orphans with | Some None | None -> Miou_unix.sleep (Duration.to_f sleep); clean_up sleep orphans | Some (Some prm) -> Miou.await_exn prm; clean_up sleep orphans let call_if_domain_available fn = let available = Miou.Domain.available () in let current = (Stdlib.Domain.self () :> int) in if current = 0 && available > 0 || current <> 0 && available > 1 then Miou.call fn else Miou.async fn let initialize (type a) ?g ?(sleep= Duration.of_sec 1) (rng : a generator) = if Atomic.compare_and_set running false true then begin let seed = let init = Entropy.[ bootstrap; whirlwind_bootstrap; bootstrap; getrandom_init ] in List.mapi (fun i fn -> fn i) init |> String.concat "" in let () = try let _ = default_generator () in Logs.warn (fun m -> m "%s" default_generator_already_set) with No_default_generator -> () in let rng = create ?g ~seed ~time:Mtime_clock.elapsed_ns rng in set_default_generator rng; call_if_domain_available @@ fun () -> switch @@ fun orphans -> rdrand sleep; let source = Entropy.register_source "getrandom" in getrandom (Int64.mul sleep 10L) source; clean_up sleep orphans end else invalid_arg miou_generator_already_launched let kill prm = Miou.cancel prm; compare_and_set running true false; unset_default_generator ()
mirage-crypto
2.0.2
ISC
https://github.com/mirage/mirage-crypto
git+https://github.com/mirage/mirage-crypto.git
mli
mirage-crypto-2.0.2/rng/miou/mirage_crypto_rng_miou_unix.mli
(** {b RNG} seeding on {b Miou_unix}. This module initializes a RNG with [getrandom()], and CPU RNG. On BSD system (FreeBSD, OpenBSD, MacOS) [getentropy()] is used instead of [getrandom()]. On Windows 10 or higher, [BCryptGenRandom()] is used with the default RNG. Windows 8 or lower are not supported by this library. *) module Pfortuna : Mirage_crypto_rng.Generator (** {b Pfortuna}, a {b domain-safe} CSPRNG {{: https://www.schneier.com/fortuna.html} proposed} by Schneier. *) type rng (** Type of tasks seeding the RNG. *) val initialize : ?g:'a -> ?sleep:int64 -> 'a Mirage_crypto_rng.generator -> rng (** [initialize ?g ?sleep (module Generator)] will allow the RNG to operate in a returned task. This task periodically launches sub-tasks that seed the engine (using [getrandom()], [getentropy()] or [BCryptGenRandom()] depending on the system). These sub-tasks must be cleaned periodically (in seconds) according to the [sleep] parameter given (defaults to 1 second). The user must then {!val:kill} the returned task at the end of the program to be sure to clean everything. Otherwise, Miou will complain with the exception [Still_has_children]. We strongly recommend using {!module:Pfortuna} as an RNG engine rather than {!module:Mirage_crypto_rng.Fortuna}. The engine is launched in parallel with the other tasks if at least one domain is available. To ensure that there is no compromise in the values generated by a {i data-race}, [Pfortuna] is an {b domain-safe} implementation of Fortuna. The user cannot make any subsequent calls to [initialize]. In other words, you can only initialise a single {!type:rng} task. You must {!val:kill} the returned {!type:rng} if you want to re-initialise the RNG. A basic usage of [mirage-crypto-rng-miou-unix] is: {[ let () = Miou_unix.run @@ fun () -> let rng = Mirage_crypto_rng_miou_unix.(initialize (module Pfortuna)) in let str = Mirage_crypto_rng.generate 16 in Format.printf "random: %S\n%!" str; Mirage_crypto_rng_miou_unix.kill rng ]} *) val kill : rng -> unit (** [kill rng] terminates the {i background} task which seeds the RNG. *)
mirage-crypto
2.0.2
ISC
https://github.com/mirage/mirage-crypto
git+https://github.com/mirage/mirage-crypto.git
ml
mirage-crypto-2.0.2/rng/miou/pfortuna.ml
(* Pfortuna is a re-implementation of Fortuna with a mutex. The goal of this module is to provide a global and domain-safe RNG. The implementation use [Miou.Mutex] instead of [Mutex] - [Pfortuna] is only available as part of the [mirage-crypto-rng-miou-unix] package. Thus, in the context of Miou, [Pfortuna] can be used and recommended in place of [Fortuna], so that the user can generate random numbers in parallel in several domains. {[ let () = Miou_unix.run @@ fun () -> let rng = Mirage_crypto_rng_miou_unix.(initialize (module Pfortuna)) in ... Mirage_crypto_rng_miou_unix.kill rng ]} NOTE: when modifying this file, please also check whether rng/fortuna.ml needs to be updated. *) open Mirage_crypto open Mirage_crypto.Uncommon module SHAd256 = struct open Digestif type ctx = SHA256.ctx let empty = SHA256.empty let get t = SHA256.(get t |> to_raw_string |> digest_string |> to_raw_string) let digesti i = SHA256.(digesti_string i |> to_raw_string |> digest_string |> to_raw_string) let feedi = SHA256.feedi_string end let block = 16 (* the minimal amount of bytes in a pool to trigger a reseed *) let min_pool_size = 64 (* the minimal duration between two reseeds *) let min_time_duration = 1_000_000_000L (* number of pools *) let pools = 32 type t = { ctr : AES.CTR.ctr ; secret : string ; key : AES.CTR.key ; pools : SHAd256.ctx array ; pool0_size : int ; reseed_count : int ; last_reseed : int64 ; time : (unit -> int64) option } type g = Miou.Mutex.t * t ref let update (m, g) fn = Miou.Mutex.protect m @@ fun () -> g := fn !g let get (m, g) fn = Miou.Mutex.protect m @@ fun () -> fn !g let create ?time () = let secret = String.make 32 '\000' in let m = Miou.Mutex.create () in let t = { ctr= (0L, 0L); secret; key= AES.CTR.of_secret secret ; pools= Array.make pools SHAd256.empty ; pool0_size= 0 ; reseed_count= 0 ; last_reseed= 0L ; time } in (m, { contents= t }) let seeded ~t = let lo, hi = t.ctr in not (Int64.equal lo 0L && Int64.equal hi 0L) let set_key ~t secret = { t with secret; key= AES.CTR.of_secret secret } let reseedi ~t iter = let t = set_key ~t (SHAd256.digesti (fun fn -> fn t.secret; iter fn)) in { t with ctr= AES.CTR.add_ctr t.ctr 1L } let iter1 a f = f a let reseed ~t cs = reseedi ~t (iter1 cs) let generate_rekey ~t buf ~off len = let b = len // block* 2 in let n = b * block in let r = AES.CTR.stream ~key:t.key ~ctr:t.ctr n in Bytes.unsafe_blit_string r 0 buf off len; let r2 = String.sub r (n - 32) 32 in let t = set_key ~t r2 in { t with ctr= AES.CTR.add_ctr t.ctr (Int64.of_int b) } let add_pool_entropy t = if t.pool0_size > min_pool_size then let should_reseed, now = match t.time with | None -> true, 0L | Some fn -> let now = fn () in Int64.(sub now t.last_reseed > min_time_duration), now in if should_reseed then begin let t = { t with reseed_count= t.reseed_count + 1 ; last_reseed= now ; pool0_size= 0 } in reseedi ~t @@ fun add -> for i = 0 to pools - 1 do if t.reseed_count land ((1 lsl i) - 1) = 0 then (SHAd256.get t.pools.(i) |> add; t.pools.(i) <- SHAd256.empty) done end else t else t let generate_into ~t buf ~off len = let t = add_pool_entropy t in if not (seeded ~t) then raise Mirage_crypto_rng.Unseeded_generator; let rec chunk t off = function | i when i <= 0 -> t | n -> let n' = imin n 0x10000 in let t = generate_rekey ~t buf ~off n' in chunk t (off + n') (n - n') in chunk t off len let add ~t source ~pool data = let buf = Bytes.create 2 and pool = pool land (pools - 1) and source = Mirage_crypto_rng.Entropy.id source land 0xff in Bytes.set_uint8 buf 0 source; Bytes.set_uint8 buf 1 (String.length data); t.pools.(pool) <- SHAd256.feedi t.pools.(pool) (iter2 (Bytes.unsafe_to_string buf) data); if pool = 0 then { t with pool0_size= t.pool0_size + String.length data } else t let accumulate ~g source = let pool = ref 0 in `Acc (fun buf -> update g @@ fun t -> let t = add ~t source ~pool:!pool buf in incr pool; t) let reseed ~g cs = update g @@ fun t -> reseed ~t cs let generate_into ~g buf ~off len = update g @@ fun t -> generate_into ~t buf ~off len let seeded ~g = get g @@ fun t -> seeded ~t
mirage-crypto
2.0.2
ISC
https://github.com/mirage/mirage-crypto
git+https://github.com/mirage/mirage-crypto.git
mli
mirage-crypto-2.0.2/rng/miou/pfortuna.mli
include Mirage_crypto_rng.Generator
mirage-crypto
2.0.2
ISC
https://github.com/mirage/mirage-crypto
git+https://github.com/mirage/mirage-crypto.git
dune
mirage-crypto-2.0.2/rng/mirage/dune
(library (name mirage_crypto_rng_mirage) (public_name mirage-crypto-rng-mirage) (libraries lwt mirage-runtime mirage-crypto-rng mirage-sleep mirage-mtime duration logs))
mirage-crypto
2.0.2
ISC
https://github.com/mirage/mirage-crypto
git+https://github.com/mirage/mirage-crypto.git
ml
mirage-crypto-2.0.2/rng/mirage/mirage_crypto_rng_mirage.ml
(* * Copyright (c) 2014 Hannes Mehnert * Copyright (c) 2014 Anil Madhavapeddy <anil@recoil.org> * Copyright (c) 2014-2016 David Kaloper Meršinjak * Copyright (c) 2015 Citrix Systems Inc * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * * Redistributions of source code must retain the above copyright notice, this * list of conditions and the following disclaimer. * * * Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. *) let src = Logs.Src.create "mirage-crypto-rng-mirage" ~doc:"Mirage crypto RNG mirage" module Log = (val Logs.src_log src : Logs.LOG) open Mirage_crypto_rng let rdrand_task delta = match Entropy.cpu_rng with | Error `Not_supported -> () | Ok cpu_rng -> let open Lwt.Infix in let rdrand = cpu_rng None in Lwt.async (fun () -> let rec one () = rdrand (); Mirage_sleep.ns delta >>= one in one ()) let bootstrap_functions () = Entropy.[ bootstrap ; bootstrap ; whirlwind_bootstrap ; bootstrap ] let running = ref false let initialize (type a) ?g ?(sleep = Duration.of_sec 1) (rng : a generator) = if !running then Lwt.fail_with "entropy collection already running" else begin (try let _ = default_generator () in Log.warn (fun m -> m "Mirage_crypto_rng.default_generator has already \ been set, check that this call is intentional"); with No_default_generator -> ()); running := true; let seed = List.mapi (fun i f -> f i) (bootstrap_functions ()) |> String.concat "" in let rng = create ?g ~seed ~time:Mirage_mtime.elapsed_ns rng in set_default_generator rng; rdrand_task sleep; Mirage_runtime.at_enter_iter (Entropy.timer_accumulator None); Lwt.return_unit end
mirage-crypto
2.0.2
ISC
https://github.com/mirage/mirage-crypto
git+https://github.com/mirage/mirage-crypto.git
mli
mirage-crypto-2.0.2/rng/mirage/mirage_crypto_rng_mirage.mli
(* * Copyright (c) 2014 Hannes Mehnert * Copyright (c) 2014 Anil Madhavapeddy <anil@recoil.org> * Copyright (c) 2014-2016 David Kaloper Meršinjak * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * * Redistributions of source code must retain the above copyright notice, this * list of conditions and the following disclaimer. * * * Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. *) val initialize : ?g:'a -> ?sleep:int64 -> 'a Mirage_crypto_rng.generator -> unit Lwt.t (** [initialize ~g ~sleep generator] sets the default generator to the [generator] and sets up periodic entropy feeding for that rng. This function fails ([Lwt.fail]) if it is called a second time. The argument [~sleep] is measured in ns, and used as sleep between cpu assisted random number collection. It defaults to one second. *)
mirage-crypto
2.0.2
ISC
https://github.com/mirage/mirage-crypto
git+https://github.com/mirage/mirage-crypto.git
ml
mirage-crypto-2.0.2/rng/mirage_crypto_rng.ml
include Rng module Fortuna = Fortuna module Hmac_drbg = Hmac_drbg.Make module Entropy = Entropy
mirage-crypto
2.0.2
ISC
https://github.com/mirage/mirage-crypto
git+https://github.com/mirage/mirage-crypto.git
mli
mirage-crypto-2.0.2/rng/mirage_crypto_rng.mli
(** {1 Randomness} *) (** Secure random number generation. There are several parts of this module: {ul {- The {{!Generator}signature} of generator modules, together with a facility to convert such modules into actual {{!g}generators}, and functions that operate on this representation.} {- A global generator instance, which needs to be initialized by calling {!set_default_generator}.}} *) (** {1 Usage notes} *) (** {b TL;DR} Don't forget to seed; don't maintain your own [g]. For common operations on Unix (independent of your asynchronous task library, you can use /dev/urandom or getentropy(3) (actually getrandom(3) on Linux, getentropy() on macOS and BSD systems, BCryptGenRandom on Windows). Please ensure to call [Mirage_crypto_rng_unix.use_default], or [Mirage_crypto_rng_unix.use_dev_urandom] (if you only want to use /dev/urandom), or [Mirage_crypto_rng_unix.use_getentropy] (if you only want to use getrandom/getentropy/BCryptGenRandom). For fine-grained control (doing entropy harvesting, etc.), please continue reading the documentation below. {b Please be aware that the feeding of Fortuna and producing random numbers is not thread-safe} (it is on Miou_unix via Pfortuna). Suitable entropy feeding of generators are provided by other libraries {{!Mirage_crypto_rng_mirage}mirage-crypto-rng-mirage} (for MirageOS), and {{!Mirage_crypto_rng_miou_unix}mirage-crypto-miou-unix} (for Miou_unix). The intention is that "initialize" in the respective sub-library is called once, which sets the default generator and registers entropy harvesting asynchronous tasks. The semantics is that the entropy is always fed to the {{!default_generator}default generator}, which is not necessarily the one set by "initialize". The reasoning behind this is that the default generator should be used in most setting, and that should be fed a constant stream of entropy. The RNGs here are merely the deterministic part of a full random number generation suite. For proper operation, they need to be seeded with a high-quality entropy source. Although this module exposes a more fine-grained interface, e.g. allowing manual seeding of generators, this is intended either for implementing entropy-harvesting modules, or very specialized purposes. Users of this library should almost certainly use one of the above entropy libraries, and avoid manually managing the generator seeding. Similarly, although it is possible to swap the default generator and gain control over the random stream, this is also intended for specialized applications such as testing or similar scenarios where the RNG needs to be fully deterministic (RFC 6979, deterministic usage of DSA), or as a component of deterministic algorithms which internally rely on pseudorandom streams. In the general case, users should not maintain their local instances of {{!g}g}. All of the generators in a process have to compete for entropy, and it is likely that the overall result will have lower effective unpredictability. The recommended way to use these functions is either to accept an optional generator and pass it down, or to ignore the generator altogether, as illustrated in the {{!rng_examples}examples}. *) (** {1 Interface} *) type g (** A generator (PRNG) with its state. *) exception Unseeded_generator (** Thrown when using an uninitialized {{!g}generator}. *) exception No_default_generator (** Thrown when {!set_default_generator} has not been called. *) (** Entropy sources and collection *) module Entropy : sig (** Entropy sources. *) type source val sources : unit -> source list (** [sources ()] returns the list of available sources. *) val pp_source : Format.formatter -> source -> unit (** [pp_source ppf source] pretty-prints the entropy [source] on [ppf]. *) val register_source : string -> source (** [register_source name] registers [name] as entropy source. *) (** {1 Bootstrap} *) val whirlwind_bootstrap : int -> string (** [whirlwind_bootstrap id] exploits CPU-level data races which lead to execution-time variability. It returns 200 bytes random data prefixed by [id]. See {{:http://www.ieee-security.org/TC/SP2014/papers/Not-So-RandomNumbersinVirtualizedLinuxandtheWhirlwindRNG.pdf}} for further details. *) val cpu_rng_bootstrap : (int -> string, [`Not_supported]) Result.t (** [cpu_rng_bootstrap id] returns 8 bytes of random data using the CPU RNG (rdseed). On 32bit platforms, only 4 bytes are filled. The [id] is used as prefix. If only rdrand is available, the return value is the concatenation of 512 calls to rdrand. @raise Failure if rdrand fails 512 times, or if rdseed fails and rdrand is not available. *) val bootstrap : int -> string (** [bootstrap id] is either [cpu_rng_bootstrap], if the CPU supports it, or [whirlwind_bootstrap] if not. *) (** {1 Timer source} *) val interrupt_hook : unit -> string (** [interrupt_hook] collects lower bytes from the cycle counter, to be used for entropy collection in the event loop. *) val timer_accumulator : g option -> unit -> unit (** [timer_accumulator g] is the accumulator for the timer source, applying {!interrupt_hook} on each call. *) (** {1 Periodic pulled sources} *) val feed_pools : g option -> source -> (unit -> (string, [ `No_random_available ]) result) -> unit (** [feed_pools g source f] feeds all pools of [g] using [source] by executing [f] for each pool. *) val cpu_rng : (g option -> unit -> unit, [`Not_supported]) Result.t (** [cpu_rng g] uses the CPU RNG (rdrand or rdseed) to feed all pools of [g]. It uses {!feed_pools} internally. If neither rdrand nor rdseed are available, [`Not_supported] is returned. *) val rdrand_calls : unit -> int (** [rdrand_calls ()] returns the number of rdrand calls. *) val rdrand_failures : unit -> int (** [rdrand_failures ()] returns the number of rdrand failures. *) val rdseed_calls : unit -> int (** [rdseed_calls ()] returns the number of rdseed calls. *) val rdseed_failures : unit -> int (** [rdseed_failures ()] returns the number of rdseed failures. *) (**/**) val id : source -> int (** [id source] is the identifier used for [source]. *) val header : int -> string -> string (** [header id data] constructs a unique header with [id], length of [data], and [data]. *) (**/**) end (** A single PRNG algorithm. *) module type Generator = sig type g (** State type for this generator. *) val block : int (** Internally, this generator's {{!generate}generate} always produces [k * block] bytes. *) val create : ?time:(unit -> int64) -> unit -> g (** Create a new, unseeded {{!g}g}. *) val generate_into : g:g -> bytes -> off:int -> int -> unit [@@alert unsafe "Does not do bounds checks. Use Mirage_crypto_rng.generate_into instead."] (** [generate_into ~g buf ~off n] produces [n] uniformly distributed random bytes into [buf] at offset [off], updating the state of [g]. Assumes that [buf] is at least [off + n] bytes long. Also assumes that [off] and [n] are positive integers. Caution: do not use in your application, use [Mirage_crypto_rng.generate_into] instead. *) val reseed : g:g -> string -> unit (** [reseed ~g bytes] directly updates [g]. Its new state depends both on [bytes] and the previous state. A generator is seded after a single application of [reseed]. *) val accumulate : g:g -> Entropy.source -> [`Acc of string -> unit] (** [accumulate ~g] is a closure suitable for incrementally feeding small amounts of environmentally sourced entropy into [g]. Its operation should be fast enough for repeated calling from e.g. event loops. Systems with several distinct, stable entropy sources should use stable [source] to distinguish their sources. *) val seeded : g:g -> bool (** [seeded ~g] is [true] iff operations won't throw {{!Unseeded_generator}Unseeded_generator}. *) val pools : int (** [pools] is the amount of pools if any. *) end type 'a generator = (module Generator with type g = 'a) (** Ready-to-use RNG algorithms. *) (** {b Fortuna}, a CSPRNG {{: https://www.schneier.com/fortuna.html} proposed} by Schneier. *) module Fortuna : Generator (** {b HMAC_DRBG}: A NIST-specified RNG based on HMAC construction over the provided hash. *) module Hmac_drbg (H : Digestif.S) : Generator val create : ?g:'a -> ?seed:string -> ?strict:bool -> ?time:(unit -> int64) -> 'a generator -> g (** [create ~g ~seed ~strict ~time module] uses a module conforming to the {{!Generator}Generator} signature to instantiate the generic generator {{!g}g}. [g] is the state to use, otherwise a fresh one is created. [seed] can be provided to immediately reseed the generator with. [strict] puts the generator into a more standards-conformant, but slighty slower mode. Useful if the outputs need to match published test-vectors. [time] is used to limit the amount of reseedings. Fortuna uses at most once every second. *) val default_generator : unit -> g (** [default_generator ()] is the default generator. Functions in this module use this generator when not explicitly supplied one. @raise No_default_generator if {!set_default_generator} has not been called. *) val set_default_generator : g -> unit (** [set_default_generator g] sets the default generator to [g]. This function must be called once. *) (**/**) (* This function is only used by eio to set the default generator to None when the entropy harvesting tasks are finished. *) val unset_default_generator : unit -> unit (** [unset_default_generator ()] sets the default generator to [None]. *) (**/**) val generate_into : ?g:g -> bytes -> ?off:int -> int -> unit (** [generate_into ~g buf ~off len] invokes {{!Generator.generate_into}generate_into} on [g] or {{!generator}default generator}. The random data is put into [buf] starting at [off] (defaults to 0) with [len] bytes. @raise Invalid_argument if buffer is too small (it must be: [Bytes.length buf - off >= n]) or [off] or [n] are negative. *) val generate : ?g:g -> int -> string (** Invoke {!generate_into} on [g] or {{!generator}default generator} and a freshly allocated string. *) val block : g option -> int (** {{!Generator.block}Block} size of [g] or {{!generator}default generator}. *) (**/**) (* The following functions expose the seeding interface. They are meant to * connect the RNG with entropy-providing libraries and subject to change. * Client applications should not use them directly. *) val reseed : ?g:g -> string -> unit val accumulate : g option -> Entropy.source -> [`Acc of string -> unit] val seeded : g option -> bool val pools : g option -> int val strict : g option -> bool (**/**) (** {1:rng_examples Examples} Generating a random 13-byte string: {[let cs = Rng.generate 13]} Generating a list of string, passing down an optional {{!g}generator}: {[let rec f1 ?g ~n i = if i < 1 then [] else Rng.generate ?g n :: f1 ?g ~n (i - 1)]} Generating a [Z.t] smaller than [10]: {[let f2 ?g () = Mirage_crypto_pk.Z_extra.gen ?g Z.(~$10)]} Creating a local Fortuna instance and using it as a key-derivation function: {[let f3 secret = let g = Rng.(create ~seed:secret (module Generators.Fortuna)) in Rng.generate ~g 32]} *)
mirage-crypto
2.0.2
ISC
https://github.com/mirage/mirage-crypto
git+https://github.com/mirage/mirage-crypto.git
ml
mirage-crypto-2.0.2/rng/rng.ml
type source = int * string exception Unseeded_generator exception No_default_generator let setup_rng = "\nPlease setup your default random number generator. On Unix, the best \ path is to call [Mirage_crypto_rng_unix.use_default ()].\ \nBut you can use Fortuna (or any other RNG) and setup the seeding \ (done by default in MirageOS): \ \n\ \nTo initialize the RNG with a default generator, and set up entropy \ collection and periodic reseeding as a background task, do the \ following:\ \n If you are using MirageOS, use the random device in config.ml: \ `let main = Mirage.main \"Unikernel.Main\" (random @-> job)`, \ and `let () = register \"my_unikernel\" [main $ default_random]`. \ \n If you are using miou, execute \ `Mirage_crypto_rng_miou_unix.initialize (module Mirage_crypto_rng.Fortuna)` \ at startup." let () = Printexc.register_printer (function | Unseeded_generator -> Some ("The RNG has not been seeded." ^ setup_rng) | No_default_generator -> Some ("The default generator is not yet initialized. " ^ setup_rng) | _ -> None) module type Generator = sig type g val block : int val create : ?time:(unit -> int64) -> unit -> g val generate_into : g:g -> bytes -> off:int -> int -> unit [@@alert unsafe "Does not do bounds checks. Use Mirage_crypto_rng.generate_into instead."] val reseed : g:g -> string -> unit val accumulate : g:g -> source -> [`Acc of string -> unit] val seeded : g:g -> bool val pools : int end type 'a generator = (module Generator with type g = 'a) type g = Generator : ('a * bool * 'a generator) -> g let create (type a) ?g ?seed ?(strict=false) ?time (m : a generator) = let module M = (val m) in let g = Option.value g ~default:(M.create ?time ()) in Option.iter (M.reseed ~g) seed; Generator (g, strict, m) let _default_generator = Atomic.make None let set_default_generator g = Atomic.set _default_generator (Some g) let unset_default_generator () = Atomic.set _default_generator None let default_generator () = match Atomic.get _default_generator with | None -> raise No_default_generator | Some g -> g let get = function Some g -> g | None -> default_generator () let generate_into ?(g = default_generator ()) b ?(off = 0) n = let Generator (g, _, m) = g in let module M = (val m) in if off < 0 || n < 0 then invalid_arg ("negative offset " ^ string_of_int off ^ " or length " ^ string_of_int n); if Bytes.length b - off < n then invalid_arg "buffer too short"; begin[@alert "-unsafe"] M.generate_into ~g b ~off n end let generate ?g n = let data = Bytes.create n in generate_into ?g data ~off:0 n; Bytes.unsafe_to_string data let reseed ?(g = default_generator ()) cs = let Generator (g, _, m) = g in let module M = (val m) in M.reseed ~g cs let accumulate g source = let Generator (g, _, m) = get g in let module M = (val m) in M.accumulate ~g source let seeded g = let Generator (g, _, m) = get g in let module M = (val m) in M.seeded ~g let block g = let Generator (_, _, m) = get g in let module M = (val m) in M.block let pools g = let Generator (_, _, m) = get g in let module M = (val m) in M.pools let strict g = let Generator (_, s, _) = get g in s
mirage-crypto
2.0.2
ISC
https://github.com/mirage/mirage-crypto
git+https://github.com/mirage/mirage-crypto.git
ml
mirage-crypto-2.0.2/rng/unix/discover.ml
let () = let open Configurator.V1 in main ~name:"rng_flags" (fun _t -> let c_lib_flags = match Sys.os_type with | "Win32" | "Cygwin" -> ["-lbcrypt"] | _ -> [] in Flags.write_sexp "rng_c_flags.sexp" c_lib_flags )
mirage-crypto
2.0.2
ISC
https://github.com/mirage/mirage-crypto
git+https://github.com/mirage/mirage-crypto.git
dune
mirage-crypto-2.0.2/rng/unix/dune
(executable (name discover) (modules discover) (libraries dune-configurator)) (rule (targets rng_c_flags.sexp) (action (run ./discover.exe))) (rule (targets cflags_warn.sexp) (action (run ../../config/cfg.exe))) (library (name mirage_crypto_rng_unix) (public_name mirage-crypto-rng.unix) (modules mirage_crypto_rng_unix urandom getentropy) (libraries mirage-crypto-rng unix logs threads.posix) (foreign_stubs (language c) (include_dirs ../../src/native) (names mc_getrandom_stubs)) (c_library_flags (:include rng_c_flags.sexp))) (env (dev (c_flags (:include cflags_warn.sexp))))
mirage-crypto
2.0.2
ISC
https://github.com/mirage/mirage-crypto
git+https://github.com/mirage/mirage-crypto.git
ml
mirage-crypto-2.0.2/rng/unix/getentropy.ml
external getrandom_buf : bytes -> int -> int -> unit = "mc_getrandom" [@@noalloc] type g = unit (* The maximum value for length is GETENTROPY_MAX for `getentropy`: https://pubs.opengroup.org/onlinepubs/9799919799/functions/getentropy.html The minimum acceptable value for GETENTROPY_MAX is 256 https://pubs.opengroup.org/onlinepubs/9799919799/basedefs/limits.h.html The actual implementation may be one of `getrandom`, `getentropy`, or `BCryptGenRandom`, and will internally limit the maximum bytes read in one go and loop as needed if more bytes are requested and we get a short read. *) let block = 256 let create ?time:_ () = () let generate_into ~g:_ buf ~off len = getrandom_buf buf off len let reseed ~g:_ _data = () let accumulate ~g:_ _source = `Acc (fun _data -> ()) let seeded ~g:_ = true let pools = 0
mirage-crypto
2.0.2
ISC
https://github.com/mirage/mirage-crypto
git+https://github.com/mirage/mirage-crypto.git
c
mirage-crypto-2.0.2/rng/unix/mc_getrandom_stubs.c
#ifndef _MSC_VER # include <unistd.h> #endif #include "mirage_crypto.h" #include <caml/mlvalues.h> #include <caml/memory.h> #include <caml/unixsupport.h> #include <caml/bigarray.h> #if defined(__ANDROID_API__) && __ANDROID_API__ < 28 // on Android 27 and earlier, we use Google's <sys/random.h> recommended arc4random_buf # include <stdlib.h> void raw_getrandom (uint8_t *data, size_t len) { arc4random_buf(data, len); } #elif defined(__linux) || defined(__GNU__) # include <errno.h> // on Linux and GNU/Hurd, we use getrandom and loop # if __GLIBC__ && __GLIBC__ <= 2 && __GLIBC_MINOR__ < 25 # include <sys/syscall.h> # define getrandom(buf, len, flags) syscall(SYS_getrandom, (buf), (len), (flags)) # else # include <sys/random.h> # define getrandom(buf, len, flags) getrandom((buf), (len), (flags)) # endif void raw_getrandom (uint8_t *data, size_t len) { size_t off = 0; ssize_t r = 0; while (off < len) { r = getrandom(data + off, len - off, 0); if (r == -1) { if (errno == EINTR) continue; else uerror("getrandom", Nothing); } off += (size_t)r; } } #elif (defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__DragonFly__) || defined(__OpenBSD__) || defined(__APPLE__)) || defined(__NetBSD__) // on BSD and macOS, loop (in pieces of 256) getentropy #if defined(__APPLE__) // on macOS, getentropy is defined in sys/random.h (on BSD in unistd.h) #include <sys/random.h> #endif #include <sys/param.h> void raw_getrandom (uint8_t *data, size_t len) { size_t rlen = 0; for (size_t i = 0; i <= len; i += 256) { rlen = MIN(256, len - i); if (getentropy(data + i, rlen) == -1) uerror("getentropy", Nothing); } } #elif (defined(_WIN32)) /* There is a choice between using RtlGenRandom and BCryptGenRandom * here, and Microsoft does not make the choice obvious. It appears * that RtlGenRandom is best used when older Windows compatibility * is of concern, but requires some gymnastics around binding it * with the right calling convention. * * Therefore (https://github.com/mirage/mirage-crypto/pull/39) we * have decided to go with the more modern Windows API with bcrypt, * and make Windows 10 our minimum supported version of mirage-crypto. */ #include <windows.h> #include <ntstatus.h> #include <bcrypt.h> void raw_getrandom(uint8_t *data, size_t len) { NTSTATUS Status; Status = BCryptGenRandom(NULL, data, len, BCRYPT_USE_SYSTEM_PREFERRED_RNG); if (Status != STATUS_SUCCESS) uerror("BCryptGenRandom", Nothing); } #else #error "Retrieving random data not supported on this platform" #endif CAMLprim value mc_getrandom (value buf, value off, value len) { raw_getrandom(_bp_uint8_off(buf, off), Long_val(len)); return Val_unit; }
mirage-crypto
2.0.2
ISC
https://github.com/mirage/mirage-crypto
git+https://github.com/mirage/mirage-crypto.git
ml
mirage-crypto-2.0.2/rng/unix/mirage_crypto_rng_unix.ml
open Mirage_crypto_rng module Urandom = Urandom module Getentropy = Getentropy let use_dev_urandom () = let g = create (module Urandom) in set_default_generator g let use_getentropy () = let g = create (module Getentropy) in set_default_generator g let use_default () = use_getentropy () let src = Logs.Src.create "mirage-crypto-rng.unix" ~doc:"Mirage crypto RNG Unix" module Log = (val Logs.src_log src : Logs.LOG) external getrandom_buf : bytes -> int -> int -> unit = "mc_getrandom" [@@noalloc] let getrandom_into buf ~off ~len = getrandom_buf buf off len let getrandom size = let buf = Bytes.create size in getrandom_into buf ~off:0 ~len:size; Bytes.unsafe_to_string buf let getrandom_init i = let data = getrandom 128 in Entropy.header i data let running = Atomic.make false let initialize (type a) ?g (rng : a generator) = if Atomic.get running then Log.debug (fun m -> m "Mirage_crypto_rng_unix.initialize has already been called, \ ignoring this call.") else begin (try let _ = default_generator () in Log.warn (fun m -> m "Mirage_crypto_rng.default_generator has already \ been set, check that this call is intentional"); with No_default_generator -> ()); Atomic.set running true ; let seed = let init = Entropy.[ bootstrap ; whirlwind_bootstrap ; bootstrap ; getrandom_init ] in List.mapi (fun i f -> f i) init |> String.concat "" in let _ = Entropy.register_source "getrandom" in set_default_generator (create ?g ~seed rng) end
mirage-crypto
2.0.2
ISC
https://github.com/mirage/mirage-crypto
git+https://github.com/mirage/mirage-crypto.git
mli
mirage-crypto-2.0.2/rng/unix/mirage_crypto_rng_unix.mli
(** {b RNG} seeding on {b Unix}. This module initializes a Fortuna RNG with [getrandom()], and CPU RNG. On BSD systems (FreeBSD, OpenBSD, macOS) [getentropy ()] is used instead of [getrandom ()]. On Windows 10 or higher, [BCryptGenRandom()] is used with the default RNG. Windows 8 or lower are not supported by this library. *) (** [initialize ~g rng] will bring the RNG into a working state. *) val initialize : ?g:'a -> 'a Mirage_crypto_rng.generator -> unit [@@deprecated "Use 'Mirage_crypto_rng_unix.use_default ()' instead."] (** [getrandom size] returns a buffer of [size] filled with random bytes. *) val getrandom : int -> string (** A generator that opens /dev/urandom and reads from that file descriptor data whenever random data is needed. The file descriptor is closed in [at_exit]. *) module Urandom : Mirage_crypto_rng.Generator (** A generator using [getrandom(3)] on Linux, [getentropy(3)] on BSD and macOS, and [BCryptGenRandom()] on Windows. *) module Getentropy : Mirage_crypto_rng.Generator (** [use_default ()] initializes the RNG [Mirage_crypto_rng.default_generator] with a sensible default, at the moment using [Getentropy]. *) val use_default : unit -> unit (** [use_dev_random ()] initializes the RNG [Mirage_crypto_rng.default_generator] with the [Urandom] generator. This raises an exception if "/dev/urandom" cannot be opened. *) val use_dev_urandom : unit -> unit (** [use_getentropy ()] initializes the RNG [Mirage_crypto_rng.default_generator] with the [Getentropy] generator. *) val use_getentropy : unit -> unit
mirage-crypto
2.0.2
ISC
https://github.com/mirage/mirage-crypto
git+https://github.com/mirage/mirage-crypto.git
ml
mirage-crypto-2.0.2/rng/unix/urandom.ml
type g = In_channel.t * Mutex.t (* The OCaml runtime always reads at least IO_BUFFER_SIZE from an input channel, which is currently 64 KiB *) let block = 65536 let create ?time:_ () = let ic = In_channel.open_bin "/dev/urandom" and mutex = Mutex.create () in at_exit (fun () -> In_channel.close ic); (ic, mutex) let generate_into ~g:(ic, m) buf ~off len = let finally () = Mutex.unlock m in Mutex.lock m; Fun.protect ~finally (fun () -> match In_channel.really_input ic buf off len with | None -> failwith "couldn't read enough bytes from /dev/urandom" | Some () -> ()) let reseed ~g:_ _data = () let accumulate ~g:_ _source = `Acc (fun _data -> ()) let seeded ~g:_ = true let pools = 0
mirage-crypto
2.0.2
ISC
https://github.com/mirage/mirage-crypto
git+https://github.com/mirage/mirage-crypto.git
ml
mirage-crypto-2.0.2/src/aead.ml
module type AEAD = sig val tag_size : int type key val of_secret : string -> key val authenticate_encrypt : key:key -> nonce:string -> ?adata:string -> string -> string val authenticate_decrypt : key:key -> nonce:string -> ?adata:string -> string -> string option val authenticate_encrypt_tag : key:key -> nonce:string -> ?adata:string -> string -> string * string val authenticate_decrypt_tag : key:key -> nonce:string -> ?adata:string -> tag:string -> string -> string option val authenticate_encrypt_into : key:key -> nonce:string -> ?adata:string -> string -> src_off:int -> bytes -> dst_off:int -> tag_off:int -> int -> unit val authenticate_decrypt_into : key:key -> nonce:string -> ?adata:string -> string -> src_off:int -> tag_off:int -> bytes -> dst_off:int -> int -> bool val unsafe_authenticate_encrypt_into : key:key -> nonce:string -> ?adata:string -> string -> src_off:int -> bytes -> dst_off:int -> tag_off:int -> int -> unit val unsafe_authenticate_decrypt_into : key:key -> nonce:string -> ?adata:string -> string -> src_off:int -> tag_off:int -> bytes -> dst_off:int -> int -> bool end
mirage-crypto
2.0.2
ISC
https://github.com/mirage/mirage-crypto
git+https://github.com/mirage/mirage-crypto.git
ml
mirage-crypto-2.0.2/src/ccm.ml
open Uncommon let block_size = 16 let flags bit6 len1 len2 = bit6 lsl 6 + len1 lsl 3 + len2 let encode_len buf ~off size value = let rec ass num = function | 0 -> Bytes.set_uint8 buf off num | m -> Bytes.set_uint8 buf (off + m) (num land 0xff); (ass [@tailcall]) (num lsr 8) (pred m) in ass value (pred size) let set_format buf ?(off = 0) nonce flag_val value = let n = String.length nonce in let small_q = 15 - n in (* first octet block: 0 : flags 1..15 - q : N 16 - q..15 : Q *) Bytes.set_uint8 buf off flag_val; Bytes.unsafe_blit_string nonce 0 buf (off + 1) n; encode_len buf ~off:(off + n + 1) small_q value let gen_adata a = let llen, set_llen = match String.length a with | x when x < (1 lsl 16 - 1 lsl 8) -> 2, (fun buf off -> Bytes.set_uint16_be buf off x) | x when Sys.int_size < 32 || x < (1 lsl 32) -> 6, (fun buf off -> Bytes.set_uint16_be buf off 0xfffe; Bytes.set_int32_be buf (off + 2) (Int32.of_int x)) | x -> 10, (fun buf off -> Bytes.set_uint16_be buf off 0xffff; Bytes.set_int64_be buf (off + 2) (Int64.of_int x)) in let to_pad = let leftover = (llen + String.length a) mod block_size in block_size - leftover in llen + String.length a + to_pad, fun buf off -> set_llen buf off; Bytes.unsafe_blit_string a 0 buf (off + llen) (String.length a); Bytes.unsafe_fill buf (off + llen + String.length a) to_pad '\000' let gen_ctr nonce i = let n = String.length nonce in let small_q = 15 - n in let flag_val = flags 0 0 (small_q - 1) in let buf = Bytes.create 16 in set_format buf nonce flag_val i; buf let prepare_header nonce adata plen tlen = let small_q = 15 - String.length nonce in let b6 = if String.length adata = 0 then 0 else 1 in let flag_val = flags b6 ((tlen - 2) / 2) (small_q - 1) in if String.length adata = 0 then let hdr = Bytes.create 16 in set_format hdr nonce flag_val plen; hdr else let len, set = gen_adata adata in let buf = Bytes.create (16 + len) in set_format buf nonce flag_val plen; set buf 16; buf type mode = Encrypt | Decrypt let crypto_core_into ~cipher ~mode ~key ~nonce ~adata src ~src_off dst ~dst_off len = let cbcheader = prepare_header nonce adata len block_size in let small_q = 15 - String.length nonce in let ctr_flag_val = flags 0 0 (small_q - 1) in let ctrblock i block dst_off = Bytes.set_uint8 block dst_off ctr_flag_val; Bytes.unsafe_blit_string nonce 0 block (dst_off + 1) (String.length nonce); encode_len block ~off:(dst_off + String.length nonce + 1) small_q i; cipher ~key (Bytes.unsafe_to_string block) ~src_off:dst_off block ~dst_off in let cbc iv src_off block dst_off = unsafe_xor_into iv ~src_off block ~dst_off block_size ; cipher ~key (Bytes.unsafe_to_string block) ~src_off:dst_off block ~dst_off in let iv = let rec doit iv iv_off block block_off = match Bytes.length block - block_off with | 0 -> Bytes.sub iv iv_off block_size | _ -> cbc (Bytes.unsafe_to_string iv) iv_off block block_off; (doit [@tailcall]) block block_off block (block_off + block_size) in doit (Bytes.make block_size '\x00') 0 cbcheader 0 in let rec loop ctr src src_off dst dst_off len = let cbcblock, cbc_off = match mode with | Encrypt -> src, src_off | Decrypt -> Bytes.unsafe_to_string dst, dst_off in if len = 0 then () else if len < block_size then begin let buf = Bytes.make block_size '\x00' in Bytes.unsafe_blit dst dst_off buf 0 len ; ctrblock ctr buf 0 ; Bytes.unsafe_blit buf 0 dst dst_off len ; unsafe_xor_into src ~src_off dst ~dst_off len ; Bytes.unsafe_blit_string cbcblock cbc_off buf 0 len ; Bytes.unsafe_fill buf len (block_size - len) '\x00'; cbc (Bytes.unsafe_to_string buf) 0 iv 0 end else begin ctrblock ctr dst dst_off ; unsafe_xor_into src ~src_off dst ~dst_off block_size ; cbc cbcblock cbc_off iv 0 ; (loop [@tailcall]) (succ ctr) src (src_off + block_size) dst (dst_off + block_size) (len - block_size) end in loop 1 src src_off dst dst_off len; iv let crypto_core ~cipher ~mode ~key ~nonce ~adata data = let datalen = String.length data in let dst = Bytes.create datalen in let t = crypto_core_into ~cipher ~mode ~key ~nonce ~adata data ~src_off:0 dst ~dst_off:0 datalen in dst, t let crypto_t t nonce cipher key = let ctr = gen_ctr nonce 0 in cipher ~key (Bytes.unsafe_to_string ctr) ~src_off:0 ctr ~dst_off:0 ; unsafe_xor_into (Bytes.unsafe_to_string ctr) ~src_off:0 t ~dst_off:0 (Bytes.length t) let unsafe_generation_encryption_into ~cipher ~key ~nonce ~adata src ~src_off dst ~dst_off ~tag_off len = let t = crypto_core_into ~cipher ~mode:Encrypt ~key ~nonce ~adata src ~src_off dst ~dst_off len in crypto_t t nonce cipher key ; Bytes.unsafe_blit t 0 dst tag_off block_size let unsafe_decryption_verification_into ~cipher ~key ~nonce ~adata src ~src_off ~tag_off dst ~dst_off len = let tag = String.sub src tag_off block_size in let t = crypto_core_into ~cipher ~mode:Decrypt ~key ~nonce ~adata src ~src_off dst ~dst_off len in crypto_t t nonce cipher key ; Eqaf.equal tag (Bytes.unsafe_to_string t)
mirage-crypto
2.0.2
ISC
https://github.com/mirage/mirage-crypto
git+https://github.com/mirage/mirage-crypto.git
ml
mirage-crypto-2.0.2/src/chacha20.ml
(* Based on https://github.com/abeaumont/ocaml-chacha.git *) open Uncommon let block = 64 type key = string let of_secret a = a let chacha20_block state idx key_stream = Native.Chacha.round 10 state key_stream idx let init ctr ~key ~nonce = let ctr_off = 48 in let set_ctr32 b v = Bytes.set_int32_le b ctr_off v and set_ctr64 b v = Bytes.set_int64_le b ctr_off v in let inc32 b = set_ctr32 b (Int32.add (Bytes.get_int32_le b ctr_off) 1l) and inc64 b = set_ctr64 b (Int64.add (Bytes.get_int64_le b ctr_off) 1L) in let s, key, init_ctr, nonce_off, inc = match String.length key, String.length nonce, Int64.shift_right ctr 32 = 0L with | 32, 12, true -> let ctr = Int64.to_int32 ctr in "expand 32-byte k", key, (fun b -> set_ctr32 b ctr), 52, inc32 | 32, 12, false -> invalid_arg "Counter too big for IETF mode (32 bit counter)" | 32, 8, _ -> "expand 32-byte k", key, (fun b -> set_ctr64 b ctr), 56, inc64 | 16, 8, _ -> let k = key ^ key in "expand 16-byte k", k, (fun b -> set_ctr64 b ctr), 56, inc64 | _ -> invalid_arg "Valid parameters are nonce 12 bytes and key 32 bytes \ (counter 32 bit), or nonce 8 byte and key 16 or 32 \ bytes (counter 64 bit)." in let state = Bytes.create block in Bytes.unsafe_blit_string s 0 state 0 16 ; Bytes.unsafe_blit_string key 0 state 16 32 ; init_ctr state ; Bytes.unsafe_blit_string nonce 0 state nonce_off (String.length nonce) ; state, inc let crypt_into ~key ~nonce ~ctr src ~src_off dst ~dst_off len = let state, inc = init ctr ~key ~nonce in let block_count = len // block in let last_len = let last = len mod block in if last = 0 then block else last in let rec loop i = function | 0 -> () | 1 -> if last_len = block then begin chacha20_block state (dst_off + i) dst ; Native.xor_into_bytes src (src_off + i) dst (dst_off + i) block end else begin let buf = Bytes.create block in chacha20_block state 0 buf ; Native.xor_into_bytes src (src_off + i) buf 0 last_len ; Bytes.unsafe_blit buf 0 dst (dst_off + i) last_len end | n -> chacha20_block state (dst_off + i) dst ; Native.xor_into_bytes src (src_off + i) dst (dst_off + i) block ; inc state; (loop [@tailcall]) (i + block) (n - 1) in loop 0 block_count let crypt ~key ~nonce ?(ctr = 0L) data = let l = String.length data in let res = Bytes.create l in crypt_into ~key ~nonce ~ctr data ~src_off:0 res ~dst_off:0 l; Bytes.unsafe_to_string res module P = Poly1305.It let tag_size = P.mac_size let generate_poly1305_key ~key ~nonce = crypt ~key ~nonce (String.make 32 '\000') let mac_into ~key ~adata src ~src_off len dst ~dst_off = let pad16 l = let len = l mod 16 in if len = 0 then "" else String.make (16 - len) '\000' and len_buf = let data = Bytes.create 16 in Bytes.set_int64_le data 0 (Int64.of_int (String.length adata)); Bytes.set_int64_le data 8 (Int64.of_int len); Bytes.unsafe_to_string data in let p1 = pad16 (String.length adata) and p2 = pad16 len in P.unsafe_mac_into ~key [ adata, 0, String.length adata ; p1, 0, String.length p1 ; src, src_off, len ; p2, 0, String.length p2 ; len_buf, 0, String.length len_buf ] dst ~dst_off let unsafe_authenticate_encrypt_into ~key ~nonce ?(adata = "") src ~src_off dst ~dst_off ~tag_off len = let poly1305_key = generate_poly1305_key ~key ~nonce in crypt_into ~key ~nonce ~ctr:1L src ~src_off dst ~dst_off len; mac_into ~key:poly1305_key ~adata (Bytes.unsafe_to_string dst) ~src_off:dst_off len dst ~dst_off:tag_off let authenticate_encrypt_into ~key ~nonce ?adata src ~src_off dst ~dst_off ~tag_off len = if String.length src - src_off < len then invalid_arg "Chacha20: src length %u - src_off %u < len %u" (String.length src) src_off len; if Bytes.length dst - dst_off < len then invalid_arg "Chacha20: dst length %u - dst_off %u < len %u" (Bytes.length dst) dst_off len; if Bytes.length dst - tag_off < tag_size then invalid_arg "Chacha20: dst length %u - tag_off %u < tag_size %u" (Bytes.length dst) tag_off tag_size; unsafe_authenticate_encrypt_into ~key ~nonce ?adata src ~src_off dst ~dst_off ~tag_off len let authenticate_encrypt ~key ~nonce ?adata data = let l = String.length data in let dst = Bytes.create (l + tag_size) in unsafe_authenticate_encrypt_into ~key ~nonce ?adata data ~src_off:0 dst ~dst_off:0 ~tag_off:l l; Bytes.unsafe_to_string dst let authenticate_encrypt_tag ~key ~nonce ?adata data = let r = authenticate_encrypt ~key ~nonce ?adata data in String.sub r 0 (String.length data), String.sub r (String.length data) tag_size let unsafe_authenticate_decrypt_into ~key ~nonce ?(adata = "") src ~src_off ~tag_off dst ~dst_off len = let poly1305_key = generate_poly1305_key ~key ~nonce in let ctag = Bytes.create tag_size in mac_into ~key:poly1305_key ~adata src ~src_off len ctag ~dst_off:0; crypt_into ~key ~nonce ~ctr:1L src ~src_off dst ~dst_off len; Eqaf.equal (String.sub src tag_off tag_size) (Bytes.unsafe_to_string ctag) let authenticate_decrypt_into ~key ~nonce ?adata src ~src_off ~tag_off dst ~dst_off len = if String.length src - src_off < len then invalid_arg "Chacha20: src length %u - src_off %u < len %u" (String.length src) src_off len; if Bytes.length dst - dst_off < len then invalid_arg "Chacha20: dst length %u - dst_off %u < len %u" (Bytes.length dst) dst_off len; if String.length src - tag_off < tag_size then invalid_arg "Chacha20: src length %u - tag_off %u < tag_size %u" (String.length src) tag_off tag_size; unsafe_authenticate_decrypt_into ~key ~nonce ?adata src ~src_off ~tag_off dst ~dst_off len let authenticate_decrypt ~key ~nonce ?adata data = if String.length data < tag_size then None else let l = String.length data - tag_size in let r = Bytes.create l in if unsafe_authenticate_decrypt_into ~key ~nonce ?adata data ~src_off:0 ~tag_off:l r ~dst_off:0 l then Some (Bytes.unsafe_to_string r) else None let authenticate_decrypt_tag ~key ~nonce ?adata ~tag data = let cdata = data ^ tag in authenticate_decrypt ~key ~nonce ?adata cdata
mirage-crypto
2.0.2
ISC
https://github.com/mirage/mirage-crypto
git+https://github.com/mirage/mirage-crypto.git
ml
mirage-crypto-2.0.2/src/cipher_block.ml
open Uncommon module Block = struct module type Core = sig type ekey type dkey val of_secret : string -> ekey * dkey val e_of_secret : string -> ekey val d_of_secret : string -> dkey val key : int array val block : int (* XXX currently unsafe point *) val encrypt : key:ekey -> blocks:int -> string -> int -> bytes -> int -> unit val decrypt : key:dkey -> blocks:int -> string -> int -> bytes -> int -> unit end module type ECB = sig type key val of_secret : string -> key val key_sizes : int array val block_size : int val encrypt : key:key -> string -> string val decrypt : key:key -> string -> string val encrypt_into : key:key -> string -> src_off:int -> bytes -> dst_off:int -> int -> unit val decrypt_into : key:key -> string -> src_off:int -> bytes -> dst_off:int -> int -> unit val unsafe_encrypt_into : key:key -> string -> src_off:int -> bytes -> dst_off:int -> int -> unit val unsafe_decrypt_into : key:key -> string -> src_off:int -> bytes -> dst_off:int -> int -> unit end module type CBC = sig type key val of_secret : string -> key val key_sizes : int array val block_size : int val encrypt : key:key -> iv:string -> string -> string val decrypt : key:key -> iv:string -> string -> string val next_iv : ?off:int -> string -> iv:string -> string val encrypt_into : key:key -> iv:string -> string -> src_off:int -> bytes -> dst_off:int -> int -> unit val decrypt_into : key:key -> iv:string -> string -> src_off:int -> bytes -> dst_off:int -> int -> unit val unsafe_encrypt_into : key:key -> iv:string -> string -> src_off:int -> bytes -> dst_off:int -> int -> unit val unsafe_decrypt_into : key:key -> iv:string -> string -> src_off:int -> bytes -> dst_off:int -> int -> unit val unsafe_encrypt_into_inplace : key:key -> iv:string -> bytes -> dst_off:int -> int -> unit end module type CTR = sig type key val of_secret : string -> key val key_sizes : int array val block_size : int type ctr val add_ctr : ctr -> int64 -> ctr val next_ctr : ?off:int -> string -> ctr:ctr -> ctr val ctr_of_octets : string -> ctr val stream : key:key -> ctr:ctr -> int -> string val encrypt : key:key -> ctr:ctr -> string -> string val decrypt : key:key -> ctr:ctr -> string -> string val stream_into : key:key -> ctr:ctr -> bytes -> off:int -> int -> unit val encrypt_into : key:key -> ctr:ctr -> string -> src_off:int -> bytes -> dst_off:int -> int -> unit val decrypt_into : key:key -> ctr:ctr -> string -> src_off:int -> bytes -> dst_off:int -> int -> unit val unsafe_stream_into : key:key -> ctr:ctr -> bytes -> off:int -> int -> unit val unsafe_encrypt_into : key:key -> ctr:ctr -> string -> src_off:int -> bytes -> dst_off:int -> int -> unit val unsafe_decrypt_into : key:key -> ctr:ctr -> string -> src_off:int -> bytes -> dst_off:int -> int -> unit end module type GCM = sig include Aead.AEAD val key_sizes : int array val block_size : int end module type CCM16 = sig include Aead.AEAD val key_sizes : int array val block_size : int end end module Counters = struct module type S = sig type ctr val size : int val add : ctr -> int64 -> ctr val of_octets : string -> ctr val unsafe_count_into : ctr -> bytes -> off:int -> blocks:int -> unit end module C64be = struct type ctr = int64 let size = 8 let of_octets cs = String.get_int64_be cs 0 let add = Int64.add let unsafe_count_into t buf ~off ~blocks = let ctr = Bytes.create 8 in Bytes.set_int64_be ctr 0 t; Native.count8be ~ctr buf ~off ~blocks end module C128be = struct type ctr = int64 * int64 let size = 16 let of_octets cs = let buf = Bytes.unsafe_of_string cs in Bytes.(get_int64_be buf 0, get_int64_be buf 8) let add (w1, w0) n = let w0' = Int64.add w0 n in let flip = if Int64.logxor w0 w0' < 0L then w0' > w0 else w0' < w0 in ((if flip then Int64.succ w1 else w1), w0') let unsafe_count_into (w1, w0) buf ~off ~blocks = let ctr = Bytes.create 16 in Bytes.set_int64_be ctr 0 w1; Bytes.set_int64_be ctr 8 w0; Native.count16be ~ctr buf ~off ~blocks end module C128be32 = struct include C128be let add (w1, w0) n = let hi = 0xffffffff00000000L and lo = 0x00000000ffffffffL in (w1, Int64.(logor (logand hi w0) (add n w0 |> logand lo))) let unsafe_count_into (w1, w0) buf ~off ~blocks = let ctr = Bytes.create 16 in Bytes.set_int64_be ctr 0 w1; Bytes.set_int64_be ctr 8 w0; Native.count16be4 ~ctr buf ~off ~blocks end end let check_offset ~tag ~buf ~off ~len actual_len = if off < 0 then invalid_arg "%s: %s off %u < 0" tag buf off; if actual_len - off < len then invalid_arg "%s: %s length %u - off %u < len %u" tag buf actual_len off len [@@inline] module Modes = struct module ECB_of (Core : Block.Core) : Block.ECB = struct type key = Core.ekey * Core.dkey let (key_sizes, block_size) = Core.(key, block) let of_secret = Core.of_secret let unsafe_ecb xform key src src_off dst dst_off len = xform ~key ~blocks:(len / block_size) src src_off dst dst_off let ecb xform key src src_off dst dst_off len = if len mod block_size <> 0 then invalid_arg "ECB: length %u not of block size" len; check_offset ~tag:"ECB" ~buf:"src" ~off:src_off ~len (String.length src); check_offset ~tag:"ECB" ~buf:"dst" ~off:dst_off ~len (Bytes.length dst); unsafe_ecb xform key src src_off dst dst_off len let encrypt_into ~key:(key, _) src ~src_off dst ~dst_off len = ecb Core.encrypt key src src_off dst dst_off len let unsafe_encrypt_into ~key:(key, _) src ~src_off dst ~dst_off len = unsafe_ecb Core.encrypt key src src_off dst dst_off len let decrypt_into ~key:(_, key) src ~src_off dst ~dst_off len = ecb Core.decrypt key src src_off dst dst_off len let unsafe_decrypt_into ~key:(_, key) src ~src_off dst ~dst_off len = unsafe_ecb Core.decrypt key src src_off dst dst_off len let encrypt ~key src = let len = String.length src in let dst = Bytes.create len in encrypt_into ~key src ~src_off:0 dst ~dst_off:0 len; Bytes.unsafe_to_string dst let decrypt ~key src = let len = String.length src in let dst = Bytes.create len in decrypt_into ~key src ~src_off:0 dst ~dst_off:0 len; Bytes.unsafe_to_string dst end module CBC_of (Core : Block.Core) : Block.CBC = struct type key = Core.ekey * Core.dkey let (key_sizes, block_size) = Core.(key, block) let block = block_size let of_secret = Core.of_secret let check_block_size ~iv len = if String.length iv <> block then invalid_arg "CBC: IV length %u not of block size" (String.length iv); if len mod block <> 0 then invalid_arg "CBC: argument length %u not of block size" len [@@inline] let next_iv ?(off = 0) cs ~iv = check_block_size ~iv (String.length cs - off) ; if String.length cs > off then String.sub cs (String.length cs - block_size) block_size else iv let unsafe_encrypt_into_inplace ~key:(key, _) ~iv dst ~dst_off len = let rec loop iv iv_i dst_i = function | 0 -> () | b -> Native.xor_into_bytes iv iv_i dst dst_i block ; Core.encrypt ~key ~blocks:1 (Bytes.unsafe_to_string dst) dst_i dst dst_i ; (loop [@tailcall]) (Bytes.unsafe_to_string dst) dst_i (dst_i + block) (b - 1) in loop iv 0 dst_off (len / block) let unsafe_encrypt_into ~key ~iv src ~src_off dst ~dst_off len = Bytes.unsafe_blit_string src src_off dst dst_off len; unsafe_encrypt_into_inplace ~key ~iv dst ~dst_off len let encrypt_into ~key ~iv src ~src_off dst ~dst_off len = check_block_size ~iv len; check_offset ~tag:"CBC" ~buf:"src" ~off:src_off ~len (String.length src); check_offset ~tag:"CBC" ~buf:"dst" ~off:dst_off ~len (Bytes.length dst); unsafe_encrypt_into ~key ~iv src ~src_off dst ~dst_off len let encrypt ~key ~iv src = let dst = Bytes.create (String.length src) in encrypt_into ~key ~iv src ~src_off:0 dst ~dst_off:0 (String.length src); Bytes.unsafe_to_string dst let unsafe_decrypt_into ~key:(_, key) ~iv src ~src_off dst ~dst_off len = let b = len / block in if b > 0 then begin Core.decrypt ~key ~blocks:b src src_off dst dst_off ; Native.xor_into_bytes iv 0 dst dst_off block ; Native.xor_into_bytes src src_off dst (dst_off + block) ((b - 1) * block) ; end let decrypt_into ~key ~iv src ~src_off dst ~dst_off len = check_block_size ~iv len; check_offset ~tag:"CBC" ~buf:"src" ~off:src_off ~len (String.length src); check_offset ~tag:"CBC" ~buf:"dst" ~off:dst_off ~len (Bytes.length dst); unsafe_decrypt_into ~key ~iv src ~src_off dst ~dst_off len let decrypt ~key ~iv src = let len = String.length src in let msg = Bytes.create len in decrypt_into ~key ~iv src ~src_off:0 msg ~dst_off:0 len; Bytes.unsafe_to_string msg end module CTR_of (Core : Block.Core) (Ctr : Counters.S) : Block.CTR with type key = Core.ekey and type ctr = Ctr.ctr = struct (* FIXME: CTR has more room for speedups. Like stitching. *) assert (Core.block = Ctr.size) type key = Core.ekey type ctr = Ctr.ctr let (key_sizes, block_size) = Core.(key, block) let of_secret = Core.e_of_secret let unsafe_stream_into ~key ~ctr buf ~off len = let blocks = imax 0 len / block_size in Ctr.unsafe_count_into ctr buf ~off ~blocks ; Core.encrypt ~key ~blocks (Bytes.unsafe_to_string buf) off buf off ; let slack = imax 0 len mod block_size in if slack <> 0 then begin let buf' = Bytes.create block_size in let ctr = Ctr.add ctr (Int64.of_int blocks) in Ctr.unsafe_count_into ctr buf' ~off:0 ~blocks:1 ; Core.encrypt ~key ~blocks:1 (Bytes.unsafe_to_string buf') 0 buf' 0 ; Bytes.unsafe_blit buf' 0 buf (off + blocks * block_size) slack end let stream_into ~key ~ctr buf ~off len = check_offset ~tag:"CTR" ~buf:"buf" ~off ~len (Bytes.length buf); unsafe_stream_into ~key ~ctr buf ~off len let stream ~key ~ctr n = let buf = Bytes.create n in unsafe_stream_into ~key ~ctr buf ~off:0 n; Bytes.unsafe_to_string buf let unsafe_encrypt_into ~key ~ctr src ~src_off dst ~dst_off len = unsafe_stream_into ~key ~ctr dst ~off:dst_off len; Uncommon.unsafe_xor_into src ~src_off dst ~dst_off len let encrypt_into ~key ~ctr src ~src_off dst ~dst_off len = check_offset ~tag:"CTR" ~buf:"src" ~off:src_off ~len (String.length src); check_offset ~tag:"CTR" ~buf:"dst" ~off:dst_off ~len (Bytes.length dst); unsafe_encrypt_into ~key ~ctr src ~src_off dst ~dst_off len let encrypt ~key ~ctr src = let len = String.length src in let dst = Bytes.create len in encrypt_into ~key ~ctr src ~src_off:0 dst ~dst_off:0 len; Bytes.unsafe_to_string dst let decrypt = encrypt let decrypt_into = encrypt_into let unsafe_decrypt_into = unsafe_encrypt_into let add_ctr = Ctr.add let next_ctr ?(off = 0) msg ~ctr = add_ctr ctr (Int64.of_int @@ (String.length msg - off) // block_size) let ctr_of_octets = Ctr.of_octets end module GHASH : sig type key val derive : string -> key val digesti : key:key -> (string Uncommon.iter) -> string val digesti_off_len : key:key -> (string * int * int) Uncommon.iter -> string val tagsize : int end = struct type key = string let keysize = Native.GHASH.keysize () let tagsize = 16 let derive cs = assert (String.length cs >= tagsize); let k = Bytes.create keysize in Native.GHASH.keyinit cs k; Bytes.unsafe_to_string k let digesti_off_len ~key i = let res = Bytes.make tagsize '\x00' in i (fun (cs, off, len) -> Native.GHASH.ghash key res cs off len); Bytes.unsafe_to_string res let digesti ~key i = let res = Bytes.make tagsize '\x00' in i (fun cs -> Native.GHASH.ghash key res cs 0 (String.length cs)); Bytes.unsafe_to_string res end module GCM_of (C : Block.Core) : Block.GCM = struct assert (C.block = 16) module CTR = CTR_of (C) (Counters.C128be32) type key = { key : C.ekey ; hkey : GHASH.key } let tag_size = GHASH.tagsize let key_sizes, block_size = C.(key, block) let z128 = String.make block_size '\x00' let of_secret cs = let h = Bytes.create block_size in let key = C.e_of_secret cs in C.encrypt ~key ~blocks:1 z128 0 h 0; { key ; hkey = GHASH.derive (Bytes.unsafe_to_string h) } let bits64 cs = Int64.of_int (String.length cs * 8) let pack64s a b = let cs = Bytes.create 16 in Bytes.set_int64_be cs 0 a; Bytes.set_int64_be cs 8 b; Bytes.unsafe_to_string cs let counter ~hkey nonce = match String.length nonce with | 0 -> invalid_arg "GCM: invalid nonce of length 0" | 12 -> let (w1, w2) = String.get_int64_be nonce 0, String.get_int32_be nonce 8 in (w1, Int64.(shift_left (of_int32 w2) 32 |> add 1L)) | _ -> CTR.ctr_of_octets @@ GHASH.digesti ~key:hkey @@ iter2 nonce (pack64s 0L (bits64 nonce)) let unsafe_tag_into ~key ~hkey ~ctr ?(adata = "") cdata ~off ~len dst ~tag_off = CTR.unsafe_encrypt_into ~key ~ctr (GHASH.digesti_off_len ~key:hkey (iter3 (adata, 0, String.length adata) (cdata, off, len) (pack64s (bits64 adata) (Int64.of_int (len * 8)), 0, 16))) ~src_off:0 dst ~dst_off:tag_off tag_size let unsafe_authenticate_encrypt_into ~key:{ key; hkey } ~nonce ?adata src ~src_off dst ~dst_off ~tag_off len = let ctr = counter ~hkey nonce in CTR.(unsafe_encrypt_into ~key ~ctr:(add_ctr ctr 1L) src ~src_off dst ~dst_off len); unsafe_tag_into ~key ~hkey ~ctr ?adata (Bytes.unsafe_to_string dst) ~off:dst_off ~len dst ~tag_off let authenticate_encrypt_into ~key ~nonce ?adata src ~src_off dst ~dst_off ~tag_off len = check_offset ~tag:"GCM" ~buf:"src" ~off:src_off ~len (String.length src); check_offset ~tag:"GCM" ~buf:"dst" ~off:dst_off ~len (Bytes.length dst); check_offset ~tag:"GCM" ~buf:"dst tag" ~off:tag_off ~len:tag_size (Bytes.length dst); unsafe_authenticate_encrypt_into ~key ~nonce ?adata src ~src_off dst ~dst_off ~tag_off len let authenticate_encrypt ~key ~nonce ?adata data = let l = String.length data in let dst = Bytes.create (l + tag_size) in unsafe_authenticate_encrypt_into ~key ~nonce ?adata data ~src_off:0 dst ~dst_off:0 ~tag_off:l l; Bytes.unsafe_to_string dst let authenticate_encrypt_tag ~key ~nonce ?adata data = let r = authenticate_encrypt ~key ~nonce ?adata data in String.sub r 0 (String.length data), String.sub r (String.length data) tag_size let unsafe_authenticate_decrypt_into ~key:{ key; hkey } ~nonce ?adata src ~src_off ~tag_off dst ~dst_off len = let ctr = counter ~hkey nonce in CTR.(unsafe_encrypt_into ~key ~ctr:(add_ctr ctr 1L) src ~src_off dst ~dst_off len); let ctag = Bytes.create tag_size in unsafe_tag_into ~key ~hkey ~ctr ?adata src ~off:src_off ~len ctag ~tag_off:0; Eqaf.equal (String.sub src tag_off tag_size) (Bytes.unsafe_to_string ctag) let authenticate_decrypt_into ~key ~nonce ?adata src ~src_off ~tag_off dst ~dst_off len = check_offset ~tag:"GCM" ~buf:"src" ~off:src_off ~len (String.length src); check_offset ~tag:"GCM" ~buf:"src tag" ~off:tag_off ~len:tag_size (String.length src); check_offset ~tag:"GCM" ~buf:"dst" ~off:dst_off ~len (Bytes.length dst); unsafe_authenticate_decrypt_into ~key ~nonce ?adata src ~src_off ~tag_off dst ~dst_off len let authenticate_decrypt ~key ~nonce ?adata cdata = if String.length cdata < tag_size then None else let l = String.length cdata - tag_size in let data = Bytes.create l in if unsafe_authenticate_decrypt_into ~key ~nonce ?adata cdata ~src_off:0 ~tag_off:l data ~dst_off:0 l then Some (Bytes.unsafe_to_string data) else None let authenticate_decrypt_tag ~key ~nonce ?adata ~tag:tag_data cipher = let cdata = cipher ^ tag_data in authenticate_decrypt ~key ~nonce ?adata cdata end module CCM16_of (C : Block.Core) : Block.CCM16 = struct assert (C.block = 16) let tag_size = C.block type key = C.ekey let of_secret sec = C.e_of_secret sec let (key_sizes, block_size) = C.(key, block) let cipher ~key src ~src_off dst ~dst_off = C.encrypt ~key ~blocks:1 src src_off dst dst_off let unsafe_authenticate_encrypt_into ~key ~nonce ?(adata = "") src ~src_off dst ~dst_off ~tag_off len = Ccm.unsafe_generation_encryption_into ~cipher ~key ~nonce ~adata src ~src_off dst ~dst_off ~tag_off len let valid_nonce nonce = let nsize = String.length nonce in if nsize < 7 || nsize > 13 then invalid_arg "CCM: nonce length not between 7 and 13: %u" nsize let authenticate_encrypt_into ~key ~nonce ?adata src ~src_off dst ~dst_off ~tag_off len = check_offset ~tag:"CCM" ~buf:"src" ~off:src_off ~len (String.length src); check_offset ~tag:"CCM" ~buf:"dst" ~off:dst_off ~len (Bytes.length dst); check_offset ~tag:"CCM" ~buf:"dst tag" ~off:tag_off ~len:tag_size (Bytes.length dst); valid_nonce nonce; unsafe_authenticate_encrypt_into ~key ~nonce ?adata src ~src_off dst ~dst_off ~tag_off len let authenticate_encrypt ~key ~nonce ?adata cs = valid_nonce nonce; let l = String.length cs in let dst = Bytes.create (l + tag_size) in unsafe_authenticate_encrypt_into ~key ~nonce ?adata cs ~src_off:0 dst ~dst_off:0 ~tag_off:l l; Bytes.unsafe_to_string dst let authenticate_encrypt_tag ~key ~nonce ?adata cs = let res = authenticate_encrypt ~key ~nonce ?adata cs in String.sub res 0 (String.length cs), String.sub res (String.length cs) tag_size let unsafe_authenticate_decrypt_into ~key ~nonce ?(adata = "") src ~src_off ~tag_off dst ~dst_off len = Ccm.unsafe_decryption_verification_into ~cipher ~key ~nonce ~adata src ~src_off ~tag_off dst ~dst_off len let authenticate_decrypt_into ~key ~nonce ?adata src ~src_off ~tag_off dst ~dst_off len = check_offset ~tag:"CCM" ~buf:"src" ~off:src_off ~len (String.length src); check_offset ~tag:"CCM" ~buf:"src tag" ~off:tag_off ~len:tag_size (String.length src); check_offset ~tag:"CCM" ~buf:"dst" ~off:dst_off ~len (Bytes.length dst); valid_nonce nonce; unsafe_authenticate_decrypt_into ~key ~nonce ?adata src ~src_off ~tag_off dst ~dst_off len let authenticate_decrypt ~key ~nonce ?adata data = if String.length data < tag_size then None else let dlen = String.length data - tag_size in let dst = Bytes.create dlen in if authenticate_decrypt_into ~key ~nonce ?adata data ~src_off:0 ~tag_off:dlen dst ~dst_off:0 dlen then Some (Bytes.unsafe_to_string dst) else None let authenticate_decrypt_tag ~key ~nonce ?adata ~tag cs = authenticate_decrypt ~key ~nonce ?adata (cs ^ tag) end end module AES = struct module Core : Block.Core = struct let key = [| 16; 24; 32 |] let block = 16 type ekey = string * int type dkey = string * int let of_secret_with init key = let rounds = match String.length key with | 16 | 24 | 32 -> String.length key / 4 + 6 | _ -> invalid_arg "AES.of_secret: key length %u" (String.length key) in let rk = Bytes.create (Native.AES.rk_s rounds) in init key rk rounds ; Bytes.unsafe_to_string rk, rounds let derive_d ?e buf rk rs = Native.AES.derive_d buf rk rs e let e_of_secret = of_secret_with Native.AES.derive_e let d_of_secret = of_secret_with (derive_d ?e:None) let of_secret secret = let (e, _) as ekey = e_of_secret secret in (ekey, of_secret_with (derive_d ~e) secret) (* XXX arg order ocaml<->c slows down *) (* XXX bounds checks *) let encrypt ~key:(e, rounds) ~blocks src off1 dst off2 = Native.AES.enc src off1 dst off2 e rounds blocks let decrypt ~key:(d, rounds) ~blocks src off1 dst off2 = Native.AES.dec src off1 dst off2 d rounds blocks end module ECB = Modes.ECB_of (Core) module CBC = Modes.CBC_of (Core) module CTR = Modes.CTR_of (Core) (Counters.C128be) module GCM = Modes.GCM_of (Core) module CCM16 = Modes.CCM16_of (Core) end module DES = struct module Core : Block.Core = struct let key = [| 24 |] let block = 8 type ekey = string type dkey = string let k_s = Native.DES.k_s () let gen_of_secret ~direction key = if String.length key <> 24 then invalid_arg "DES.of_secret: key length %u" (String.length key) ; let key = Bytes.of_string key in let keybuf = Bytes.create k_s in Native.DES.des3key key direction keybuf; Bytes.unsafe_to_string keybuf let e_of_secret = gen_of_secret ~direction:0 let d_of_secret = gen_of_secret ~direction:1 let of_secret secret = (e_of_secret secret, d_of_secret secret) let encrypt ~key ~blocks src off1 dst off2 = Native.DES.ddes src off1 dst off2 blocks key let decrypt = encrypt end module ECB = Modes.ECB_of (Core) module CBC = Modes.CBC_of (Core) module CTR = Modes.CTR_of (Core) (Counters.C64be) end let accelerated = let flags = (match Native.misc_mode () with 1 -> [`XOR] | _ -> []) @ (match Native.AES.mode () with 1 -> [`AES] | _ -> []) @ (match Native.GHASH.mode () with 1 -> [`GHASH] | _ -> []) in flags
mirage-crypto
2.0.2
ISC
https://github.com/mirage/mirage-crypto
git+https://github.com/mirage/mirage-crypto.git
ml
mirage-crypto-2.0.2/src/cipher_stream.ml
open Uncommon module type Stream = sig type key type result = { message : string ; key : key } val of_secret : string -> key val encrypt : key:key -> string -> result val decrypt : key:key -> string -> result end module ARC4 = struct type key = int * int * int array type result = { message : string ; key : key } let of_secret buf = let len = String.length buf in if len < 1 || len > 256 then invalid_arg "ARC4.of_secret: key size %d" len; let s = Array.init 256 (fun x -> x) in let rec loop j = function | 256 -> () | i -> let x = String.get_uint8 buf (i mod len) in let si = s.(i) in let j = (j + si + x) land 0xff in let sj = s.(j) in s.(i) <- sj ; s.(j) <- si ; (loop [@tailcall]) j (succ i) in ( loop 0 0 ; (0, 0, s) ) let encrypt ~key:(i, j, s') buf = let s = Array.copy s' and len = String.length buf in let res = Bytes.create len in let rec mix i j = function | n when n = len -> (i, j, s) | n -> let i = succ i land 0xff in let si = s.(i) in let j = (j + si) land 0xff in let sj = s.(j) in s.(i) <- sj ; s.(j) <- si ; let k = s.((si + sj) land 0xff) in Bytes.set_uint8 res n (k lxor String.get_uint8 buf n); (mix [@tailcall]) i j (succ n) in let key' = mix i j 0 in { key = key' ; message = Bytes.unsafe_to_string res } let decrypt = encrypt end
mirage-crypto
2.0.2
ISC
https://github.com/mirage/mirage-crypto
git+https://github.com/mirage/mirage-crypto.git
dune
mirage-crypto-2.0.2/src/dune
(library (name mirage_crypto) (public_name mirage-crypto) (libraries eqaf) (private_modules aead chacha20 ccm cipher_block cipher_stream native poly1305 uncommon) (foreign_stubs (language c) (names detect_cpu_features misc misc_sse aes_generic aes_aesni ghash_generic ghash_pclmul ghash_ctmul des_generic chacha poly1305-donna entropy_cpu_stubs) (flags (:standard) (:include cflags_optimized.sexp))) (foreign_stubs (language c) (names chacha_generic) (flags (:standard) (:include cflags.sexp)))) (env (dev (c_flags (:include cflags_warn.sexp)))) (include_subdirs unqualified) (rule (targets cflags.sexp cflags_optimized.sexp cflags_warn.sexp) (action (run ../config/cfg.exe)))
mirage-crypto
2.0.2
ISC
https://github.com/mirage/mirage-crypto
git+https://github.com/mirage/mirage-crypto.git
ml
mirage-crypto-2.0.2/src/mirage_crypto.ml
module Uncommon = Uncommon module Poly1305 = Poly1305.It module type AEAD = Aead.AEAD include Cipher_block module Chacha20 = Chacha20 include Cipher_stream
mirage-crypto
2.0.2
ISC
https://github.com/mirage/mirage-crypto
git+https://github.com/mirage/mirage-crypto.git
mli
mirage-crypto-2.0.2/src/mirage_crypto.mli
(** Simpler crypto Mirage-crypto is a cryptographic library. The overarching API principle is simply mapping inputs to outputs, wherever feasible. Similar algorithms in the same class (like {{!Hash}hashes} or {{!Cipher_block}block ciphers}) are presented as distinct modules sharing the same signature. The opam package mirage-crypto-rng provides a cryptographically secure pseudo-random number generator, the package mirage-crypto-pk provides public key cryptography. *) (**/**) (** A treasure-trove of random utilities. This is largely an internal API used in related sub-libraries or tests. As such, it is prone to breakage. *) module Uncommon : sig val (//) : int -> int -> int (** [x // y] is the ceiling division [ceil (x / y)]. [x // y] is [0] for any non-positive [x]. @raise Division_by_zero when [y < 1]. *) val imin : int -> int -> int val imax : int -> int -> int val iter2 : 'a -> 'a -> ('a -> unit) -> unit val iter3 : 'a -> 'a -> 'a -> ('a -> unit) -> unit val xor : string -> string -> string val unsafe_xor_into : string -> src_off:int -> bytes -> dst_off:int -> int -> unit val invalid_arg : ('a, Format.formatter, unit, unit, unit, 'b) format6 -> 'a end (**/**) (** The poly1305 message authentication code *) module Poly1305 : sig type 'a iter = ('a -> unit) -> unit type t (** Represents a running mac computation, suitable for appending inputs. *) val mac_size : int (** [mac_size] is the size of the output. *) val empty : key:string -> t (** [empty] is the empty context with the given [key]. @raise Invalid_argument if key is not 32 bytes. *) val feed : t -> string -> t (** [feed t msg] adds the information in [msg] to [t]. *) val feedi : t -> string iter -> t (** [feedi t iter] feeds iter into [t]. *) val get : t -> string (** [get t] is the mac corresponding to [t]. *) val mac : key:string -> string -> string (** [mac ~key msg] is the all-in-one mac computation: [get (feed (empty ~key) msg)]. *) val maci : key:string -> string iter -> string (** [maci ~key iter] is the all-in-one mac computation: [get (feedi (empty ~key) iter)]. *) val mac_into : key:string -> (string * int * int) list -> bytes -> dst_off:int -> unit (** [mac_into ~key datas dst dst_off] computes the [mac] of [datas]. *) (**/**) val unsafe_mac_into : key:string -> (string * int * int) list -> bytes -> dst_off:int -> unit (** [unsafe_mac_into ~key datas dst dst_off] is {!mac_into} without bounds checks. *) (**/**) end (** {1 Symmetric-key cryptography} *) (** Authenticated encryption with associated data. This defines a uniform interface of symmetrics cryptographic algorithms which encrypt, and also protect the integrity of the data. Additional data, only used for integrity protection, not encrypted and not part of the ciphertext, can be passed in optionally. This prevents the same ciphertext being used at a different location. See {{:https://tools.ietf.org/html/rfc5116}RFC 5116} for further description. *) module type AEAD = sig val tag_size : int (** The size of the authentication tag. *) type key (** The abstract type for the key. *) val of_secret : string -> key (** [of_secret secret] constructs the encryption key corresponding to [secret]. @raise Invalid_argument if the length of [secret] is not a valid key size. *) (** {1 Authenticated encryption and decryption with inline tag} *) val authenticate_encrypt : key:key -> nonce:string -> ?adata:string -> string -> string (** [authenticate_encrypt ~key ~nonce ~adata msg] encrypts [msg] with [key] and [nonce], and appends an authentication tag computed over the encrypted [msg], using [key], [nonce], and [adata]. @raise Invalid_argument if [nonce] is not of the right size. *) val authenticate_decrypt : key:key -> nonce:string -> ?adata:string -> string -> string option (** [authenticate_decrypt ~key ~nonce ~adata msg] splits [msg] into encrypted data and authentication tag, computes the authentication tag using [key], [nonce], and [adata], and decrypts the encrypted data. If the authentication tags match, the decrypted data is returned. @raise Invalid_argument if [nonce] is not of the right size. *) (** {1 Authenticated encryption and decryption with tag provided separately} *) val authenticate_encrypt_tag : key:key -> nonce:string -> ?adata:string -> string -> string * string (** [authenticate_encrypt_tag ~key ~nonce ~adata msg] encrypts [msg] with [key] and [nonce]. The computed authentication tag is returned separately as second part of the tuple. @raise Invalid_argument if [nonce] is not of the right size. *) val authenticate_decrypt_tag : key:key -> nonce:string -> ?adata:string -> tag:string -> string -> string option (** [authenticate_decrypt ~key ~nonce ~adata ~tag msg] computes the authentication tag using [key], [nonce], and [adata], and decrypts the encrypted data. If the authentication tags match, the decrypted data is returned. @raise Invalid_argument if [nonce] is not of the right size. *) (** {1 Authenticated encryption and decryption into existing buffers} *) val authenticate_encrypt_into : key:key -> nonce:string -> ?adata:string -> string -> src_off:int -> bytes -> dst_off:int -> tag_off:int -> int -> unit (** [authenticate_encrypt_into ~key ~nonce ~adata msg ~src_off dst ~dst_off ~tag_off len] encrypts [len] bytes of [msg] starting at [src_off] with [key] and [nonce]. The output is put into [dst] at [dst_off], the tag into [dst] at [tag_off]. @raise Invalid_argument if [nonce] is not of the right size. @raise Invalid_argument if [String.length msg - src_off < len]. @raise Invalid_argument if [Bytes.length dst - dst_off < len]. @raise Invalid_argument if [Bytes.length dst - tag_off < tag_size]. *) val authenticate_decrypt_into : key:key -> nonce:string -> ?adata:string -> string -> src_off:int -> tag_off:int -> bytes -> dst_off:int -> int -> bool (** [authenticate_decrypt_into ~key ~nonce ~adata msg ~src_off ~tag_off dst ~dst_off len] computes the authentication tag using [key], [nonce], and [adata], and decrypts the [len] bytes encrypted data from [msg] starting at [src_off] into [dst] starting at [dst_off]. If the authentication tags match, [true] is returned, and the decrypted data is in [dst]. @raise Invalid_argument if [nonce] is not of the right size. @raise Invalid_argument if [String.length msg - src_off < len]. @raise Invalid_argument if [Bytes.length dst - dst_off < len]. @raise Invalid_argument if [String.length msg - tag_off < tag_size]. *) (**/**) val unsafe_authenticate_encrypt_into : key:key -> nonce:string -> ?adata:string -> string -> src_off:int -> bytes -> dst_off:int -> tag_off:int -> int -> unit (** [unsafe_authenticate_encrypt_into] is {!authenticate_encrypt_into}, but without bounds checks. @raise Invalid_argument if [nonce] is not of the right size. This may cause memory issues if an invariant is violated: {ul {- [String.length msg - src_off >= len].} {- [Bytes.length dst - dst_off >= len].} {- [Bytes.length dst - tag_off >= tag_size].}} *) val unsafe_authenticate_decrypt_into : key:key -> nonce:string -> ?adata:string -> string -> src_off:int -> tag_off:int -> bytes -> dst_off:int -> int -> bool (** [unsafe_authenticate_decrypt_into] is {!authenticate_decrypt_into}, but without bounds checks. @raise Invalid_argument if [nonce] is not of the right size. This may cause memory issues if an invariant is violated: {ul {- [String.length msg - src_off >= len].} {- [Bytes.length dst - dst_off >= len].} {- [String.length msg - tag_off >= tag_size].}} *) (**/**) end (** Block ciphers. Each algorithm, and each mode of operation, is contained in its own separate module. *) (** Module types for various block cipher modes of operation. *) module Block : sig (** Modes of operation: *) (** {e Electronic Codebook} "mode". *) module type ECB = sig type key val of_secret : string -> key (** Construct the encryption key corresponding to [secret]. @raise Invalid_argument if the length of [secret] is not in {{!key_sizes}[key_sizes]}. *) val key_sizes : int array (** Key sizes allowed with this cipher. *) val block_size : int (** The size of a single block. *) val encrypt : key:key -> string -> string (** [encrypt ~key src] encrypts [src] into a freshly allocated buffer of the same size using [key]. @raise Invalid_argument if the length of [src] is not a multiple of {!block_size}. *) val decrypt : key:key -> string -> string (** [decrypt ~key src] decrypts [src] into a freshly allocated buffer of the same size using [key]. @raise Invalid_argument if the length of [src] is not a multiple of {!block_size}. *) val encrypt_into : key:key -> string -> src_off:int -> bytes -> dst_off:int -> int -> unit (** [encrypt_into ~key src ~src_off dst dst_off len] encrypts [len] octets from [src] starting at [src_off] into [dst] starting at [dst_off]. @raise Invalid_argument if [len] is not a multiple of {!block_size}. @raise Invalid_argument if [src_off < 0 || String.length src - src_off < len]. @raise Invalid_argument if [dst_off < 0 || Bytes.length dst - dst_off < len]. *) val decrypt_into : key:key -> string -> src_off:int -> bytes -> dst_off:int -> int -> unit (** [decrypt_into ~key src ~src_off dst dst_off len] decrypts [len] octets from [src] starting at [src_off] into [dst] starting at [dst_off]. @raise Invalid_argument if [len] is not a multiple of {!block_size}. @raise Invalid_argument if [src_off < 0 || String.length src - src_off < len]. @raise Invalid_argument if [dst_off < 0 || Bytes.length dst - dst_off < len]. *) (**/**) val unsafe_encrypt_into : key:key -> string -> src_off:int -> bytes -> dst_off:int -> int -> unit (** [unsafe_encrypt_into] is {!encrypt_into}, but without bounds checks. This may cause memory issues if an invariant is violated: {ul {- [len] must be a multiple of {!block_size},} {- [src_off >= 0 && String.length src - src_off >= len],} {- [dst_off >= 0 && Bytes.length dst - dst_off >= len].}} *) val unsafe_decrypt_into : key:key -> string -> src_off:int -> bytes -> dst_off:int -> int -> unit (** [unsafe_decrypt_into] is {!decrypt_into}, but without bounds checks. This may cause memory issues if an invariant is violated: {ul {- [len] must be a multiple of {!block_size},} {- [src_off >= 0 && String.length src - src_off >= len],} {- [dst_off >= 0 && Bytes.length dst - dst_off >= len].}} *) (**/**) end (** {e Cipher-block chaining} mode. *) module type CBC = sig type key val of_secret : string -> key (** Construct the encryption key corresponding to [secret]. @raise Invalid_argument if the length of [secret] is not in {{!key_sizes}[key_sizes]}. *) val key_sizes : int array (** Key sizes allowed with this cipher. *) val block_size : int (** The size of a single block. *) val encrypt : key:key -> iv:string -> string -> string (** [encrypt ~key ~iv msg] is [msg] encrypted under [key], using [iv] as the CBC initialization vector. @raise Invalid_argument if [iv] is not [block_size], or [msg] is not [k * block_size] long. *) val decrypt : key:key -> iv:string -> string -> string (** [decrypt ~key ~iv msg] is the inverse of [encrypt]. @raise Invalid_argument if [iv] is not [block_size], or [msg] is not [k * block_size] long. *) val next_iv : ?off:int -> string -> iv:string -> string (** [next_iv ~iv ciphertext ~off] is the first [iv] {e following} the encryption that used [iv] to produce [ciphertext]. For protocols which perform inter-message chaining, this is the [iv] for the next message. It is either [iv], when [String.length ciphertext - off = 0], or the last block of [ciphertext]. Note that {[encrypt ~iv msg1 || encrypt ~iv:(next_iv ~iv (encrypt ~iv msg1)) msg2 == encrypt ~iv (msg1 || msg2)]} @raise Invalid_argument if the length of [iv] is not [block_size]. @raise Invalid_argument if the length of [ciphertext] is not a multiple of [block_size]. *) val encrypt_into : key:key -> iv:string -> string -> src_off:int -> bytes -> dst_off:int -> int -> unit (** [encrypt_into ~key ~iv src ~src_off dst dst_off len] encrypts [len] octets from [src] starting at [src_off] into [dst] starting at [dst_off]. @raise Invalid_argument if the length of [iv] is not {!block_size}. @raise Invalid_argument if [len] is not a multiple of {!block_size}. @raise Invalid_argument if [src_off < 0 || String.length src - src_off < len]. @raise Invalid_argument if [dst_off < 0 || Bytes.length dst - dst_off < len]. *) val decrypt_into : key:key -> iv:string -> string -> src_off:int -> bytes -> dst_off:int -> int -> unit (** [decrypt_into ~key ~iv src ~src_off dst dst_off len] decrypts [len] octets from [src] starting at [src_off] into [dst] starting at [dst_off]. @raise Invalid_argument if the length of [iv] is not {!block_size}. @raise Invalid_argument if [len] is not a multiple of {!block_size}. @raise Invalid_argument if [src_off < 0 || String.length src - src_off < len]. @raise Invalid_argument if [dst_off < 0 || Bytes.length dst - dst_off < len]. *) (**/**) val unsafe_encrypt_into : key:key -> iv:string -> string -> src_off:int -> bytes -> dst_off:int -> int -> unit (** [unsafe_encrypt_into] is {!encrypt_into}, but without bounds checks. This may casue memory issues if an invariant is violated: {ul {- the length of [iv] must be {!block_size},} {- [len] must be a multiple of {!block_size},} {- [src_off >= 0 && String.length src - src_off >= len],} {- [dst_off >= 0 && Bytes.length dst - dst_off >= len].}} *) val unsafe_decrypt_into : key:key -> iv:string -> string -> src_off:int -> bytes -> dst_off:int -> int -> unit (** [unsafe_decrypt_into] is {!decrypt_into}, but without bounds checks. This may casue memory issues if an invariant is violated: {ul {- the length of [iv] must be {!block_size},} {- [len] must be a multiple of {!block_size},} {- [src_off >= 0 && String.length src - src_off >= len],} {- [dst_off >= 0 && Bytes.length dst - dst_off >= len].}} *) val unsafe_encrypt_into_inplace : key:key -> iv:string -> bytes -> dst_off:int -> int -> unit (** [unsafe_encrypt_into_inplace] is {!unsafe_encrypt_into}, but assumes that [dst] already contains the mesage to be encrypted. This may casue memory issues if an invariant is violated: {ul {- the length of [iv] must be {!block_size},} {- [len] must be a multiple of {!block_size},} {- [src_off >= 0 && String.length src - src_off >= len],} {- [dst_off >= 0 && Bytes.length dst - dst_off >= len].}} *) (**/**) end (** {e Counter} mode. *) module type CTR = sig type key val of_secret : string -> key (** Construct the encryption key corresponding to [secret]. @raise Invalid_argument if the length of [secret] is not in {{!key_sizes}[key_sizes]}. *) val key_sizes : int array (** Key sizes allowed with this cipher. *) val block_size : int (** The size of a single block. *) type ctr val add_ctr : ctr -> int64 -> ctr (** [add_ctr ctr n] adds [n] to [ctr]. *) val next_ctr : ?off:int -> string -> ctr:ctr -> ctr (** [next_ctr ~off msg ~ctr] is the state of the counter after encrypting or decrypting [msg] at offset [off] with the counter [ctr]. For protocols which perform inter-message chaining, this is the counter for the next message. It is computed as [C.add ctr (ceil (len msg / block_size))]. Note that if [len msg1 = k * block_size], {[encrypt ~ctr msg1 || encrypt ~ctr:(next_ctr ~ctr msg1) msg2 == encrypt ~ctr (msg1 || msg2)]} *) val ctr_of_octets : string -> ctr (** [ctr_of_octets buf] converts the value of [buf] into a counter. *) val stream : key:key -> ctr:ctr -> int -> string (** [stream ~key ~ctr n] is the raw keystream. Keystream is the concatenation of successive encrypted counter states. If [E(x)] is the single block [x] encrypted under [key], then keystream is the first [n] bytes of [E(ctr) || E(add ctr 1) || E(add ctr 2) || ...]. Note that {[stream ~key ~ctr (k * block_size) || stream ~key ~ctr:(add ctr k) x == stream ~key ~ctr (k * block_size + x)]} In other words, it is possible to restart a keystream at [block_size] boundaries by manipulating the counter. *) val encrypt : key:key -> ctr:ctr -> string -> string (** [encrypt ~key ~ctr msg] is [stream ~key ~ctr (len msg) lxor msg]. *) val decrypt : key:key -> ctr:ctr -> string -> string (** [decrypt] is [encrypt]. *) val stream_into : key:key -> ctr:ctr -> bytes -> off:int -> int -> unit (** [stream_into ~key ~ctr dst ~off len] is the raw key stream put into [dst] starting at [off]. @raise Invalid_argument if [Bytes.length dst - off < len]. *) val encrypt_into : key:key -> ctr:ctr -> string -> src_off:int -> bytes -> dst_off:int -> int -> unit (** [encrypt_into ~key ~ctr src ~src_off dst ~dst_off len] produces the key stream into [dst] at [dst_off], and then xors it with [src] at [src_off]. @raise Invalid_argument if [dst_off < 0 || Bytes.length dst - dst_off < len]. @raise Invalid_argument if [src_off < 0 || String.length src - src_off < len]. *) val decrypt_into : key:key -> ctr:ctr -> string -> src_off:int -> bytes -> dst_off:int -> int -> unit (** [decrypt_into] is {!encrypt_into}. *) (**/**) val unsafe_stream_into : key:key -> ctr:ctr -> bytes -> off:int -> int -> unit (** [unsafe_stream_into] is {!stream_into}, but without bounds checks. This may cause memory issues if the invariant is violated: {ul {- [off >= 0 && Bytes.length buf - off >= len].}} *) val unsafe_encrypt_into : key:key -> ctr:ctr -> string -> src_off:int -> bytes -> dst_off:int -> int -> unit (** [unsafe_encrypt_into] is {!encrypt_into}, but without bounds checks. This may cause memory issues if an invariant is violated: {ul {- [dst_off >= 0 && Bytes.length dst - dst_off >= len],} {- [src_off >= 0 && String.length src - src_off >= len].}} *) val unsafe_decrypt_into : key:key -> ctr:ctr -> string -> src_off:int -> bytes -> dst_off:int -> int -> unit (** [unsafe_decrypt_into] is {!unsafe_encrypt_into}. *) (**/**) end (** {e Galois/Counter Mode}. *) module type GCM = sig include AEAD val key_sizes : int array (** Key sizes allowed with this cipher. *) val block_size : int (** The size of a single block. *) end (** {e Counter with CBC-MAC} mode. *) module type CCM16 = sig include AEAD val key_sizes : int array (** Key sizes allowed with this cipher. *) val block_size : int (** The size of a single block. *) end end module AES : sig module ECB : Block.ECB module CBC : Block.CBC module CTR : Block.CTR with type ctr = int64 * int64 module GCM : Block.GCM module CCM16 : Block.CCM16 end module DES : sig module ECB : Block.ECB module CBC : Block.CBC module CTR : Block.CTR with type ctr = int64 end val accelerated : [`XOR | `AES | `GHASH] list (** Operations using non-portable, hardware-dependent implementation in this build of the library. *) (** The ChaCha20 cipher proposed by D.J. Bernstein. *) module Chacha20 : sig include AEAD val crypt : key:key -> nonce:string -> ?ctr:int64 -> string -> string (** [crypt ~key ~nonce ~ctr data] generates a ChaCha20 key stream using the [key], and [nonce]. The [ctr] defaults to 0. The generated key stream is of the same length as [data], and the output is the XOR of the key stream and [data]. This implements, depending on the size of the [nonce] (8 or 12 bytes) both the original specification (where the counter is 8 byte, same as the nonce) and the IETF RFC 8439 specification (where nonce is 12 bytes, and counter 4 bytes). @raise Invalid_argument if invalid parameters are provided. Valid parameters are: [key] must be 32 bytes and [nonce] 12 bytes for the IETF mode (and counter fit into 32 bits), or [key] must be either 16 bytes or 32 bytes and [nonce] 8 bytes. *) end (** General stream cipher type. *) module type Stream = sig type key type result = { message : string ; key : key } val of_secret : string -> key val encrypt : key:key -> string -> result val decrypt : key:key -> string -> result end (** {e Alleged Rivest Cipher 4}. *) module ARC4 : Stream
mirage-crypto
2.0.2
ISC
https://github.com/mirage/mirage-crypto
git+https://github.com/mirage/mirage-crypto.git
ml
mirage-crypto-2.0.2/src/native.ml
module AES = struct external enc : string -> int -> bytes -> int -> string -> int -> int -> unit = "mc_aes_enc_bc" "mc_aes_enc" [@@noalloc] external dec : string -> int -> bytes -> int -> string -> int -> int -> unit = "mc_aes_dec_bc" "mc_aes_dec" [@@noalloc] external derive_e : string -> bytes -> int -> unit = "mc_aes_derive_e_key" [@@noalloc] external derive_d : string -> bytes -> int -> string option -> unit = "mc_aes_derive_d_key" [@@noalloc] external rk_s : int -> int = "mc_aes_rk_size" [@@noalloc] external mode : unit -> int = "mc_aes_mode" [@@noalloc] end module DES = struct external ddes : string -> int -> bytes -> int -> int -> string -> unit = "mc_des_ddes_bc" "mc_des_ddes" [@@noalloc] external des3key : bytes -> int -> bytes -> unit = "mc_des_des3key" [@@noalloc] external k_s : unit -> int = "mc_des_key_size" [@@noalloc] end module Chacha = struct external round : int -> bytes -> bytes -> int -> unit = "mc_chacha_round" [@@noalloc] end module Poly1305 = struct external init : bytes -> string -> unit = "mc_poly1305_init" [@@noalloc] external update : bytes -> string -> int -> int -> unit = "mc_poly1305_update" [@@noalloc] external finalize : bytes -> bytes -> int -> unit = "mc_poly1305_finalize" [@@noalloc] external ctx_size : unit -> int = "mc_poly1305_ctx_size" [@@noalloc] external mac_size : unit -> int = "mc_poly1305_mac_size" [@@noalloc] end module GHASH = struct external keysize : unit -> int = "mc_ghash_key_size" [@@noalloc] external keyinit : string -> bytes -> unit = "mc_ghash_init_key" [@@noalloc] external ghash : string -> bytes -> string -> int -> int -> unit = "mc_ghash" [@@noalloc] external mode : unit -> int = "mc_ghash_mode" [@@noalloc] end (* XXX TODO * Unsolved: bounds-checked XORs are slowing things down considerably... *) external xor_into_bytes : string -> int -> bytes -> int -> int -> unit = "mc_xor_into_bytes" [@@noalloc] external count8be : ctr:bytes -> bytes -> off:int -> blocks:int -> unit = "mc_count_8_be" [@@noalloc] external count16be : ctr:bytes -> bytes -> off:int -> blocks:int -> unit = "mc_count_16_be" [@@noalloc] external count16be4 : ctr:bytes -> bytes -> off:int -> blocks:int -> unit = "mc_count_16_be_4" [@@noalloc] external misc_mode : unit -> int = "mc_misc_mode" [@@noalloc] external _detect_cpu_features : unit -> unit = "mc_detect_cpu_features" [@@noalloc] external _detect_entropy : unit -> unit = "mc_entropy_detect" let () = _detect_cpu_features (); _detect_entropy ()
mirage-crypto
2.0.2
ISC
https://github.com/mirage/mirage-crypto
git+https://github.com/mirage/mirage-crypto.git
c
mirage-crypto-2.0.2/src/native/aes_aesni.c
/* Copyright (c) 2015 David Kaloper Meršinjak. All rights reserved. See LICENSE.md. */ /* AES using AES-NI and SSE2. * * References: * - Intel Advanced Encryption Standard (AES) New Instructions Set. Shay Gueron. * https://software.intel.com/sites/default/files/article/165683/aes-wp-2012-09-22-v01.pdf */ #include "mirage_crypto.h" #if defined (__mc_ACCELERATE__) /* xmm: [3, 2, 1, 0] */ #define _S_3333 0xff #define _S_2222 0xaa #define _S_1111 0x55 #define _S_0000 0x00 static int _mc_aesni_rk_size (uint8_t rounds) { return (rounds + 1) * 16; } #if defined(__x86_64__) || defined(_WIN64) static inline __m128i* __rk (const void *rk) { return (__m128i *) (((uint64_t)rk + 15) & -16); } #else static inline __m128i* __rk (const void *rk) { return (__m128i *) (((uint32_t)rk + 15) & -16); } #endif static inline __m128i __mix (__m128i r1, __m128i r2) { __m128i r = r1; r = _mm_xor_si128 (r, _mm_slli_si128 (r1, 0x4)); r = _mm_xor_si128 (r, _mm_slli_si128 (r1, 0x8)); r = _mm_xor_si128 (r, _mm_slli_si128 (r1, 0xc)); r = _mm_xor_si128 (r, r2); return r; } #define __assist(r1, r2, mode) (__mix (r1, _mm_shuffle_epi32 (r2, mode))) #ifdef _MSC_VER static inline void __pack (__m128i *o1, __m128i *o2, __m128i r1, __m128i r2, __m128i r3) { *o1 = _mm_castpd_si128 (_mm_shuffle_pd (_mm_castsi128_pd (r1), _mm_castsi128_pd (r2), 0)); *o2 = _mm_castpd_si128 (_mm_shuffle_pd (_mm_castsi128_pd (r2), _mm_castsi128_pd (r3), 1)); } #else static inline void __pack (__m128i *o1, __m128i *o2, __m128i r1, __m128i r2, __m128i r3) { *o1 = (__m128i) _mm_shuffle_pd ((__m128d) r1, (__m128d) r2, 0); *o2 = (__m128i) _mm_shuffle_pd ((__m128d) r2, (__m128d) r3, 1); } #endif static inline void _mc_aesni_derive_e_key (const uint8_t *key, uint8_t *rk0, uint8_t rounds) { __m128i schedule[15 + 1]; __m128i *rk = __rk (schedule); __m128i temp1, temp2; int i; switch (rounds) { case 10: rk[0] = _mm_loadu_si128 ((__m128i*) key); rk[1] = __assist (rk[0], _mm_aeskeygenassist_si128 (rk[0], 0x01), _S_3333); rk[2] = __assist (rk[1], _mm_aeskeygenassist_si128 (rk[1], 0x02), _S_3333); rk[3] = __assist (rk[2], _mm_aeskeygenassist_si128 (rk[2], 0x04), _S_3333); rk[4] = __assist (rk[3], _mm_aeskeygenassist_si128 (rk[3], 0x08), _S_3333); rk[5] = __assist (rk[4], _mm_aeskeygenassist_si128 (rk[4], 0x10), _S_3333); rk[6] = __assist (rk[5], _mm_aeskeygenassist_si128 (rk[5], 0x20), _S_3333); rk[7] = __assist (rk[6], _mm_aeskeygenassist_si128 (rk[6], 0x40), _S_3333); rk[8] = __assist (rk[7], _mm_aeskeygenassist_si128 (rk[7], 0x80), _S_3333); rk[9] = __assist (rk[8], _mm_aeskeygenassist_si128 (rk[8], 0x1b), _S_3333); rk[10] = __assist (rk[9], _mm_aeskeygenassist_si128 (rk[9], 0x36), _S_3333); break; case 12: /* XXX * Simplify this horror. */ rk[0] = _mm_loadu_si128 ((__m128i*) key); rk[1] = _mm_loadu_si128 ((__m128i*) (key+8)); rk[1] = _mm_shuffle_epi32 (rk[1], 0xee); /* XXX shift */ temp1 = __assist (rk[0], _mm_aeskeygenassist_si128 (rk[1], 0x01), _S_1111); temp2 = __assist (rk[1], temp1, _S_3333); __pack (&rk[1], &rk[2], rk[1], temp1, temp2); rk[3] = __assist (temp1, _mm_aeskeygenassist_si128 (temp2, 0x02), _S_1111); rk[4] = __assist (temp2, rk[3], _S_3333); temp1 = __assist (rk[3], _mm_aeskeygenassist_si128 (rk[4], 0x04), _S_1111); temp2 = __assist (rk[4], temp1, _S_3333); __pack (&rk[4], &rk[5], rk[4], temp1, temp2); rk[6] = __assist (temp1, _mm_aeskeygenassist_si128 (temp2, 0x08), _S_1111); rk[7] = __assist (temp2, rk[6], _S_3333); temp1 = __assist (rk[6], _mm_aeskeygenassist_si128 (rk[7], 0x10), _S_1111); temp2 = __assist (rk[7], temp1, _S_3333); __pack (&rk[7], &rk[8], rk[7], temp1, temp2); rk[9] = __assist (temp1, _mm_aeskeygenassist_si128 (temp2, 0x20), _S_1111); rk[10] = __assist (temp2, rk[9], _S_3333); temp1 = __assist (rk[9], _mm_aeskeygenassist_si128 (rk[10], 0x40), _S_1111); temp2 = __assist (rk[10], temp1, _S_3333); __pack (&rk[10], &rk[11], rk[10], temp1, temp2); rk[12] = __assist (temp1, _mm_aeskeygenassist_si128 (temp2, 0x80), _S_1111); break; case 14: rk[0] = _mm_loadu_si128((__m128i*) key); rk[1] = _mm_loadu_si128((__m128i*) (key+16)); rk[2] = __assist (rk[0], _mm_aeskeygenassist_si128 (rk[1], 0x01), _S_3333); rk[3] = __assist (rk[1], _mm_aeskeygenassist_si128 (rk[2], 0x00), _S_2222); rk[4] = __assist (rk[2], _mm_aeskeygenassist_si128 (rk[3], 0x02), _S_3333); rk[5] = __assist (rk[3], _mm_aeskeygenassist_si128 (rk[4], 0x00), _S_2222); rk[6] = __assist (rk[4], _mm_aeskeygenassist_si128 (rk[5], 0x04), _S_3333); rk[7] = __assist (rk[5], _mm_aeskeygenassist_si128 (rk[6], 0x00), _S_2222); rk[8] = __assist (rk[6], _mm_aeskeygenassist_si128 (rk[7], 0x08), _S_3333); rk[9] = __assist (rk[7], _mm_aeskeygenassist_si128 (rk[8], 0x00), _S_2222); rk[10] = __assist (rk[8], _mm_aeskeygenassist_si128 (rk[9], 0x10), _S_3333); rk[11] = __assist (rk[9], _mm_aeskeygenassist_si128 (rk[10], 0x00), _S_2222); rk[12] = __assist (rk[10], _mm_aeskeygenassist_si128 (rk[11], 0x20), _S_3333); rk[13] = __assist (rk[11], _mm_aeskeygenassist_si128 (rk[12], 0x00), _S_2222); rk[14] = __assist (rk[12], _mm_aeskeygenassist_si128 (rk[13], 0x40), _S_3333); break; default: ; }; for (i = 0; i <= rounds; i++) { _mm_storeu_si128((__m128i*) rk0 + i, rk[i]); } } static inline void _mc_aesni_invert_e_key (const uint8_t *rk1, uint8_t *kr0, uint8_t rounds) { __m128i rk[15]; for (uint8_t i = 0; i <= rounds; i++) rk[i] = _mm_loadu_si128 ((__m128i*) rk1 + i); _mm_storeu_si128((__m128i*) kr0 + 0, rk[rounds]); for (uint8_t i = 1; i < rounds; i++) _mm_storeu_si128((__m128i*) kr0 + i, _mm_aesimc_si128 (rk[rounds - i])); _mm_storeu_si128((__m128i*) kr0 + rounds, rk[0]); } static void _mc_aesni_derive_d_key (const uint8_t *key, uint8_t *kr, uint8_t rounds, uint8_t *rk) { if (!rk) { _mc_aesni_derive_e_key (key, kr, rounds); rk = kr; } _mc_aesni_invert_e_key (rk, kr, rounds); } static inline void _mc_aesni_enc (const uint8_t src[16], uint8_t dst[16], const uint8_t *rk0, uint8_t rounds) { __m128i r = _mm_loadu_si128 ((__m128i*) src), rk; rk = _mm_loadu_si128 ((__m128i*) rk0 + 0); r = _mm_xor_si128 (r, rk); for (uint8_t i = 1; i < rounds; i++) { rk = _mm_loadu_si128 ((__m128i*) rk0 + i); r = _mm_aesenc_si128 (r, rk); } rk = _mm_loadu_si128 ((__m128i*) rk0 + rounds); r = _mm_aesenclast_si128 (r, rk); _mm_storeu_si128 ((__m128i*) dst, r); } static inline void _mc_aesni_dec (const uint8_t src[16], uint8_t dst[16], const uint8_t *rk0, uint8_t rounds) { __m128i r = _mm_loadu_si128 ((__m128i*) src), rk; rk = _mm_loadu_si128 ((__m128i*) rk0 + 0); r = _mm_xor_si128 (r, rk); for (uint8_t i = 1; i < rounds; i++) { rk = _mm_loadu_si128 ((__m128i*) rk0 + i); r = _mm_aesdec_si128 (r, rk); } rk = _mm_loadu_si128 ((__m128i*) rk0 + rounds); r = _mm_aesdeclast_si128 (r, rk); _mm_storeu_si128 ((__m128i*) dst, r); } static inline void _mc_aesni_enc8 (const uint8_t src[128], uint8_t dst[128], const uint8_t *rk0, uint8_t rounds) { __m128i *in = (__m128i*) src, *out = (__m128i*) dst, rk; __m128i r0 = _mm_loadu_si128 (in ), r1 = _mm_loadu_si128 (in + 1), r2 = _mm_loadu_si128 (in + 2), r3 = _mm_loadu_si128 (in + 3), r4 = _mm_loadu_si128 (in + 4), r5 = _mm_loadu_si128 (in + 5), r6 = _mm_loadu_si128 (in + 6), r7 = _mm_loadu_si128 (in + 7); rk = _mm_loadu_si128 ((__m128i*) rk0 + 0); r0 = _mm_xor_si128 (r0, rk); r1 = _mm_xor_si128 (r1, rk); r2 = _mm_xor_si128 (r2, rk); r3 = _mm_xor_si128 (r3, rk); r4 = _mm_xor_si128 (r4, rk); r5 = _mm_xor_si128 (r5, rk); r6 = _mm_xor_si128 (r6, rk); r7 = _mm_xor_si128 (r7, rk); for (uint8_t i = 1; i < rounds; i++) { rk = _mm_loadu_si128 ((__m128i*) rk0 + i); r0 = _mm_aesenc_si128 (r0, rk); r1 = _mm_aesenc_si128 (r1, rk); r2 = _mm_aesenc_si128 (r2, rk); r3 = _mm_aesenc_si128 (r3, rk); r4 = _mm_aesenc_si128 (r4, rk); r5 = _mm_aesenc_si128 (r5, rk); r6 = _mm_aesenc_si128 (r6, rk); r7 = _mm_aesenc_si128 (r7, rk); } rk = _mm_loadu_si128 ((__m128i*) rk0 + rounds); r0 = _mm_aesenclast_si128 (r0, rk); r1 = _mm_aesenclast_si128 (r1, rk); r2 = _mm_aesenclast_si128 (r2, rk); r3 = _mm_aesenclast_si128 (r3, rk); r4 = _mm_aesenclast_si128 (r4, rk); r5 = _mm_aesenclast_si128 (r5, rk); r6 = _mm_aesenclast_si128 (r6, rk); r7 = _mm_aesenclast_si128 (r7, rk); _mm_storeu_si128 (out , r0); _mm_storeu_si128 (out + 1, r1); _mm_storeu_si128 (out + 2, r2); _mm_storeu_si128 (out + 3, r3); _mm_storeu_si128 (out + 4, r4); _mm_storeu_si128 (out + 5, r5); _mm_storeu_si128 (out + 6, r6); _mm_storeu_si128 (out + 7, r7); } static inline void _mc_aesni_dec8 (const uint8_t src[128], uint8_t dst[128], const uint8_t *rk0, uint8_t rounds) { __m128i *in = (__m128i*) src, *out = (__m128i*) dst, rk; __m128i r0 = _mm_loadu_si128 (in ), r1 = _mm_loadu_si128 (in + 1), r2 = _mm_loadu_si128 (in + 2), r3 = _mm_loadu_si128 (in + 3), r4 = _mm_loadu_si128 (in + 4), r5 = _mm_loadu_si128 (in + 5), r6 = _mm_loadu_si128 (in + 6), r7 = _mm_loadu_si128 (in + 7); rk = _mm_loadu_si128 ((__m128i*) rk0 + 0); r0 = _mm_xor_si128 (r0, rk); r1 = _mm_xor_si128 (r1, rk); r2 = _mm_xor_si128 (r2, rk); r3 = _mm_xor_si128 (r3, rk); r4 = _mm_xor_si128 (r4, rk); r5 = _mm_xor_si128 (r5, rk); r6 = _mm_xor_si128 (r6, rk); r7 = _mm_xor_si128 (r7, rk); for (uint8_t i = 1; i < rounds; i++) { rk = _mm_loadu_si128 ((__m128i*) rk0 + i); r0 = _mm_aesdec_si128 (r0, rk); r1 = _mm_aesdec_si128 (r1, rk); r2 = _mm_aesdec_si128 (r2, rk); r3 = _mm_aesdec_si128 (r3, rk); r4 = _mm_aesdec_si128 (r4, rk); r5 = _mm_aesdec_si128 (r5, rk); r6 = _mm_aesdec_si128 (r6, rk); r7 = _mm_aesdec_si128 (r7, rk); } rk = _mm_loadu_si128 ((__m128i*) rk0 + rounds); r0 = _mm_aesdeclast_si128 (r0, rk); r1 = _mm_aesdeclast_si128 (r1, rk); r2 = _mm_aesdeclast_si128 (r2, rk); r3 = _mm_aesdeclast_si128 (r3, rk); r4 = _mm_aesdeclast_si128 (r4, rk); r5 = _mm_aesdeclast_si128 (r5, rk); r6 = _mm_aesdeclast_si128 (r6, rk); r7 = _mm_aesdeclast_si128 (r7, rk); _mm_storeu_si128 (out , r0); _mm_storeu_si128 (out + 1, r1); _mm_storeu_si128 (out + 2, r2); _mm_storeu_si128 (out + 3, r3); _mm_storeu_si128 (out + 4, r4); _mm_storeu_si128 (out + 5, r5); _mm_storeu_si128 (out + 6, r6); _mm_storeu_si128 (out + 7, r7); } #define __b(ptr, n) (ptr + n * 16) #define __blocked_loop(f1, f8, src, dst, rk, rounds, blocks) \ while (blocks) { \ switch (blocks) { \ case 7: \ f1 (__b (src, 6), __b (dst, 6), rk, rounds); \ /* fall through */ \ case 6: \ f1 (__b (src, 5), __b (dst, 5), rk, rounds); \ /* fall through */ \ case 5: \ f1 (__b (src, 4), __b (dst, 4), rk, rounds); \ /* fall through */ \ case 4: \ f1 (__b (src, 3), __b (dst, 3), rk, rounds); \ /* fall through */ \ case 3: \ f1 (__b (src, 2), __b (dst, 2), rk, rounds); \ /* fall through */ \ case 2: \ f1 (__b (src, 1), __b (dst, 1), rk, rounds); \ /* fall through */ \ case 1: \ f1 (__b (src, 0), __b (dst, 0), rk, rounds); \ /* fall through */ \ case 0: \ return; \ default: \ f8 (src, dst, rk, rounds); \ src += 128; dst += 128; blocks -= 8; \ } \ } \ static inline void _mc_aesni_enc_blocks (const uint8_t *src, uint8_t *dst, const uint8_t *rk, uint8_t rounds, size_t blocks) { __blocked_loop (_mc_aesni_enc, _mc_aesni_enc8, src, dst, rk, rounds, blocks); } static inline void _mc_aesni_dec_blocks (const uint8_t *src, uint8_t *dst, const uint8_t *rk, uint8_t rounds, size_t blocks) { __blocked_loop (_mc_aesni_dec, _mc_aesni_dec8, src, dst, rk, rounds, blocks); } #endif /* __mc_ACCELERATE__ */ CAMLprim value mc_aes_rk_size (value rounds) { value s; _mc_switch_accel(aesni, s = mc_aes_rk_size_generic(rounds), s = Val_int (_mc_aesni_rk_size (Int_val (rounds)))) return s; } CAMLprim value mc_aes_derive_e_key (value key, value rk, value rounds) { _mc_switch_accel(aesni, mc_aes_derive_e_key_generic(key, rk, rounds), _mc_aesni_derive_e_key (_st_uint8 (key), _bp_uint8 (rk), Int_val (rounds))) return Val_unit; } CAMLprim value mc_aes_derive_d_key (value key, value kr, value rounds, value rk) { _mc_switch_accel(aesni, mc_aes_derive_d_key_generic(key, kr, rounds, rk), _mc_aesni_derive_d_key (_st_uint8 (key), _bp_uint8 (kr), Int_val (rounds), Is_block(rk) ? _bp_uint8(Field(rk, 0)) : 0)) return Val_unit; } CAMLprim value mc_aes_enc (value src, value off1, value dst, value off2, value rk, value rounds, value blocks) { _mc_switch_accel(aesni, mc_aes_enc_generic(src, off1, dst, off2, rk, rounds, blocks), _mc_aesni_enc_blocks ( _st_uint8_off (src, off1), _bp_uint8_off (dst, off2), _st_uint8 (rk), Int_val (rounds), Int_val (blocks) )) return Val_unit; } CAMLprim value mc_aes_dec (value src, value off1, value dst, value off2, value rk, value rounds, value blocks) { _mc_switch_accel(aesni, mc_aes_dec_generic(src, off1, dst, off2, rk, rounds, blocks), _mc_aesni_dec_blocks ( _st_uint8_off (src, off1), _bp_uint8_off (dst, off2), _st_uint8 (rk), Int_val (rounds), Int_val (blocks) )) return Val_unit; } CAMLprim value mc_aes_mode (__unit ()) { value enabled = 0; _mc_switch_accel(aesni, enabled = 0, enabled = 1) return Val_int (enabled); } __define_bc_7 (mc_aes_enc) __define_bc_7 (mc_aes_dec)
mirage-crypto
2.0.2
ISC
https://github.com/mirage/mirage-crypto
git+https://github.com/mirage/mirage-crypto.git
c
mirage-crypto-2.0.2/src/native/aes_generic.c
/* * public domain * Philip J. Erdelsky * http://www.efgh.com/software/rijndael.htm */ #include "mirage_crypto.h" #define KEYLENGTH(keybits) ((keybits)/8) #define RKLENGTH(keybits) ((keybits)/8+28) #define NROUNDS(keybits) ((keybits)/32+6) #define FULL_UNROLL static const uint32_t Te0[256] = { 0xc66363a5U, 0xf87c7c84U, 0xee777799U, 0xf67b7b8dU, 0xfff2f20dU, 0xd66b6bbdU, 0xde6f6fb1U, 0x91c5c554U, 0x60303050U, 0x02010103U, 0xce6767a9U, 0x562b2b7dU, 0xe7fefe19U, 0xb5d7d762U, 0x4dababe6U, 0xec76769aU, 0x8fcaca45U, 0x1f82829dU, 0x89c9c940U, 0xfa7d7d87U, 0xeffafa15U, 0xb25959ebU, 0x8e4747c9U, 0xfbf0f00bU, 0x41adadecU, 0xb3d4d467U, 0x5fa2a2fdU, 0x45afafeaU, 0x239c9cbfU, 0x53a4a4f7U, 0xe4727296U, 0x9bc0c05bU, 0x75b7b7c2U, 0xe1fdfd1cU, 0x3d9393aeU, 0x4c26266aU, 0x6c36365aU, 0x7e3f3f41U, 0xf5f7f702U, 0x83cccc4fU, 0x6834345cU, 0x51a5a5f4U, 0xd1e5e534U, 0xf9f1f108U, 0xe2717193U, 0xabd8d873U, 0x62313153U, 0x2a15153fU, 0x0804040cU, 0x95c7c752U, 0x46232365U, 0x9dc3c35eU, 0x30181828U, 0x379696a1U, 0x0a05050fU, 0x2f9a9ab5U, 0x0e070709U, 0x24121236U, 0x1b80809bU, 0xdfe2e23dU, 0xcdebeb26U, 0x4e272769U, 0x7fb2b2cdU, 0xea75759fU, 0x1209091bU, 0x1d83839eU, 0x582c2c74U, 0x341a1a2eU, 0x361b1b2dU, 0xdc6e6eb2U, 0xb45a5aeeU, 0x5ba0a0fbU, 0xa45252f6U, 0x763b3b4dU, 0xb7d6d661U, 0x7db3b3ceU, 0x5229297bU, 0xdde3e33eU, 0x5e2f2f71U, 0x13848497U, 0xa65353f5U, 0xb9d1d168U, 0x00000000U, 0xc1eded2cU, 0x40202060U, 0xe3fcfc1fU, 0x79b1b1c8U, 0xb65b5bedU, 0xd46a6abeU, 0x8dcbcb46U, 0x67bebed9U, 0x7239394bU, 0x944a4adeU, 0x984c4cd4U, 0xb05858e8U, 0x85cfcf4aU, 0xbbd0d06bU, 0xc5efef2aU, 0x4faaaae5U, 0xedfbfb16U, 0x864343c5U, 0x9a4d4dd7U, 0x66333355U, 0x11858594U, 0x8a4545cfU, 0xe9f9f910U, 0x04020206U, 0xfe7f7f81U, 0xa05050f0U, 0x783c3c44U, 0x259f9fbaU, 0x4ba8a8e3U, 0xa25151f3U, 0x5da3a3feU, 0x804040c0U, 0x058f8f8aU, 0x3f9292adU, 0x219d9dbcU, 0x70383848U, 0xf1f5f504U, 0x63bcbcdfU, 0x77b6b6c1U, 0xafdada75U, 0x42212163U, 0x20101030U, 0xe5ffff1aU, 0xfdf3f30eU, 0xbfd2d26dU, 0x81cdcd4cU, 0x180c0c14U, 0x26131335U, 0xc3ecec2fU, 0xbe5f5fe1U, 0x359797a2U, 0x884444ccU, 0x2e171739U, 0x93c4c457U, 0x55a7a7f2U, 0xfc7e7e82U, 0x7a3d3d47U, 0xc86464acU, 0xba5d5de7U, 0x3219192bU, 0xe6737395U, 0xc06060a0U, 0x19818198U, 0x9e4f4fd1U, 0xa3dcdc7fU, 0x44222266U, 0x542a2a7eU, 0x3b9090abU, 0x0b888883U, 0x8c4646caU, 0xc7eeee29U, 0x6bb8b8d3U, 0x2814143cU, 0xa7dede79U, 0xbc5e5ee2U, 0x160b0b1dU, 0xaddbdb76U, 0xdbe0e03bU, 0x64323256U, 0x743a3a4eU, 0x140a0a1eU, 0x924949dbU, 0x0c06060aU, 0x4824246cU, 0xb85c5ce4U, 0x9fc2c25dU, 0xbdd3d36eU, 0x43acacefU, 0xc46262a6U, 0x399191a8U, 0x319595a4U, 0xd3e4e437U, 0xf279798bU, 0xd5e7e732U, 0x8bc8c843U, 0x6e373759U, 0xda6d6db7U, 0x018d8d8cU, 0xb1d5d564U, 0x9c4e4ed2U, 0x49a9a9e0U, 0xd86c6cb4U, 0xac5656faU, 0xf3f4f407U, 0xcfeaea25U, 0xca6565afU, 0xf47a7a8eU, 0x47aeaee9U, 0x10080818U, 0x6fbabad5U, 0xf0787888U, 0x4a25256fU, 0x5c2e2e72U, 0x381c1c24U, 0x57a6a6f1U, 0x73b4b4c7U, 0x97c6c651U, 0xcbe8e823U, 0xa1dddd7cU, 0xe874749cU, 0x3e1f1f21U, 0x964b4bddU, 0x61bdbddcU, 0x0d8b8b86U, 0x0f8a8a85U, 0xe0707090U, 0x7c3e3e42U, 0x71b5b5c4U, 0xcc6666aaU, 0x904848d8U, 0x06030305U, 0xf7f6f601U, 0x1c0e0e12U, 0xc26161a3U, 0x6a35355fU, 0xae5757f9U, 0x69b9b9d0U, 0x17868691U, 0x99c1c158U, 0x3a1d1d27U, 0x279e9eb9U, 0xd9e1e138U, 0xebf8f813U, 0x2b9898b3U, 0x22111133U, 0xd26969bbU, 0xa9d9d970U, 0x078e8e89U, 0x339494a7U, 0x2d9b9bb6U, 0x3c1e1e22U, 0x15878792U, 0xc9e9e920U, 0x87cece49U, 0xaa5555ffU, 0x50282878U, 0xa5dfdf7aU, 0x038c8c8fU, 0x59a1a1f8U, 0x09898980U, 0x1a0d0d17U, 0x65bfbfdaU, 0xd7e6e631U, 0x844242c6U, 0xd06868b8U, 0x824141c3U, 0x299999b0U, 0x5a2d2d77U, 0x1e0f0f11U, 0x7bb0b0cbU, 0xa85454fcU, 0x6dbbbbd6U, 0x2c16163aU, }; static const uint32_t Te1[256] = { 0xa5c66363U, 0x84f87c7cU, 0x99ee7777U, 0x8df67b7bU, 0x0dfff2f2U, 0xbdd66b6bU, 0xb1de6f6fU, 0x5491c5c5U, 0x50603030U, 0x03020101U, 0xa9ce6767U, 0x7d562b2bU, 0x19e7fefeU, 0x62b5d7d7U, 0xe64dababU, 0x9aec7676U, 0x458fcacaU, 0x9d1f8282U, 0x4089c9c9U, 0x87fa7d7dU, 0x15effafaU, 0xebb25959U, 0xc98e4747U, 0x0bfbf0f0U, 0xec41adadU, 0x67b3d4d4U, 0xfd5fa2a2U, 0xea45afafU, 0xbf239c9cU, 0xf753a4a4U, 0x96e47272U, 0x5b9bc0c0U, 0xc275b7b7U, 0x1ce1fdfdU, 0xae3d9393U, 0x6a4c2626U, 0x5a6c3636U, 0x417e3f3fU, 0x02f5f7f7U, 0x4f83ccccU, 0x5c683434U, 0xf451a5a5U, 0x34d1e5e5U, 0x08f9f1f1U, 0x93e27171U, 0x73abd8d8U, 0x53623131U, 0x3f2a1515U, 0x0c080404U, 0x5295c7c7U, 0x65462323U, 0x5e9dc3c3U, 0x28301818U, 0xa1379696U, 0x0f0a0505U, 0xb52f9a9aU, 0x090e0707U, 0x36241212U, 0x9b1b8080U, 0x3ddfe2e2U, 0x26cdebebU, 0x694e2727U, 0xcd7fb2b2U, 0x9fea7575U, 0x1b120909U, 0x9e1d8383U, 0x74582c2cU, 0x2e341a1aU, 0x2d361b1bU, 0xb2dc6e6eU, 0xeeb45a5aU, 0xfb5ba0a0U, 0xf6a45252U, 0x4d763b3bU, 0x61b7d6d6U, 0xce7db3b3U, 0x7b522929U, 0x3edde3e3U, 0x715e2f2fU, 0x97138484U, 0xf5a65353U, 0x68b9d1d1U, 0x00000000U, 0x2cc1ededU, 0x60402020U, 0x1fe3fcfcU, 0xc879b1b1U, 0xedb65b5bU, 0xbed46a6aU, 0x468dcbcbU, 0xd967bebeU, 0x4b723939U, 0xde944a4aU, 0xd4984c4cU, 0xe8b05858U, 0x4a85cfcfU, 0x6bbbd0d0U, 0x2ac5efefU, 0xe54faaaaU, 0x16edfbfbU, 0xc5864343U, 0xd79a4d4dU, 0x55663333U, 0x94118585U, 0xcf8a4545U, 0x10e9f9f9U, 0x06040202U, 0x81fe7f7fU, 0xf0a05050U, 0x44783c3cU, 0xba259f9fU, 0xe34ba8a8U, 0xf3a25151U, 0xfe5da3a3U, 0xc0804040U, 0x8a058f8fU, 0xad3f9292U, 0xbc219d9dU, 0x48703838U, 0x04f1f5f5U, 0xdf63bcbcU, 0xc177b6b6U, 0x75afdadaU, 0x63422121U, 0x30201010U, 0x1ae5ffffU, 0x0efdf3f3U, 0x6dbfd2d2U, 0x4c81cdcdU, 0x14180c0cU, 0x35261313U, 0x2fc3ececU, 0xe1be5f5fU, 0xa2359797U, 0xcc884444U, 0x392e1717U, 0x5793c4c4U, 0xf255a7a7U, 0x82fc7e7eU, 0x477a3d3dU, 0xacc86464U, 0xe7ba5d5dU, 0x2b321919U, 0x95e67373U, 0xa0c06060U, 0x98198181U, 0xd19e4f4fU, 0x7fa3dcdcU, 0x66442222U, 0x7e542a2aU, 0xab3b9090U, 0x830b8888U, 0xca8c4646U, 0x29c7eeeeU, 0xd36bb8b8U, 0x3c281414U, 0x79a7dedeU, 0xe2bc5e5eU, 0x1d160b0bU, 0x76addbdbU, 0x3bdbe0e0U, 0x56643232U, 0x4e743a3aU, 0x1e140a0aU, 0xdb924949U, 0x0a0c0606U, 0x6c482424U, 0xe4b85c5cU, 0x5d9fc2c2U, 0x6ebdd3d3U, 0xef43acacU, 0xa6c46262U, 0xa8399191U, 0xa4319595U, 0x37d3e4e4U, 0x8bf27979U, 0x32d5e7e7U, 0x438bc8c8U, 0x596e3737U, 0xb7da6d6dU, 0x8c018d8dU, 0x64b1d5d5U, 0xd29c4e4eU, 0xe049a9a9U, 0xb4d86c6cU, 0xfaac5656U, 0x07f3f4f4U, 0x25cfeaeaU, 0xafca6565U, 0x8ef47a7aU, 0xe947aeaeU, 0x18100808U, 0xd56fbabaU, 0x88f07878U, 0x6f4a2525U, 0x725c2e2eU, 0x24381c1cU, 0xf157a6a6U, 0xc773b4b4U, 0x5197c6c6U, 0x23cbe8e8U, 0x7ca1ddddU, 0x9ce87474U, 0x213e1f1fU, 0xdd964b4bU, 0xdc61bdbdU, 0x860d8b8bU, 0x850f8a8aU, 0x90e07070U, 0x427c3e3eU, 0xc471b5b5U, 0xaacc6666U, 0xd8904848U, 0x05060303U, 0x01f7f6f6U, 0x121c0e0eU, 0xa3c26161U, 0x5f6a3535U, 0xf9ae5757U, 0xd069b9b9U, 0x91178686U, 0x5899c1c1U, 0x273a1d1dU, 0xb9279e9eU, 0x38d9e1e1U, 0x13ebf8f8U, 0xb32b9898U, 0x33221111U, 0xbbd26969U, 0x70a9d9d9U, 0x89078e8eU, 0xa7339494U, 0xb62d9b9bU, 0x223c1e1eU, 0x92158787U, 0x20c9e9e9U, 0x4987ceceU, 0xffaa5555U, 0x78502828U, 0x7aa5dfdfU, 0x8f038c8cU, 0xf859a1a1U, 0x80098989U, 0x171a0d0dU, 0xda65bfbfU, 0x31d7e6e6U, 0xc6844242U, 0xb8d06868U, 0xc3824141U, 0xb0299999U, 0x775a2d2dU, 0x111e0f0fU, 0xcb7bb0b0U, 0xfca85454U, 0xd66dbbbbU, 0x3a2c1616U, }; static const uint32_t Te2[256] = { 0x63a5c663U, 0x7c84f87cU, 0x7799ee77U, 0x7b8df67bU, 0xf20dfff2U, 0x6bbdd66bU, 0x6fb1de6fU, 0xc55491c5U, 0x30506030U, 0x01030201U, 0x67a9ce67U, 0x2b7d562bU, 0xfe19e7feU, 0xd762b5d7U, 0xabe64dabU, 0x769aec76U, 0xca458fcaU, 0x829d1f82U, 0xc94089c9U, 0x7d87fa7dU, 0xfa15effaU, 0x59ebb259U, 0x47c98e47U, 0xf00bfbf0U, 0xadec41adU, 0xd467b3d4U, 0xa2fd5fa2U, 0xafea45afU, 0x9cbf239cU, 0xa4f753a4U, 0x7296e472U, 0xc05b9bc0U, 0xb7c275b7U, 0xfd1ce1fdU, 0x93ae3d93U, 0x266a4c26U, 0x365a6c36U, 0x3f417e3fU, 0xf702f5f7U, 0xcc4f83ccU, 0x345c6834U, 0xa5f451a5U, 0xe534d1e5U, 0xf108f9f1U, 0x7193e271U, 0xd873abd8U, 0x31536231U, 0x153f2a15U, 0x040c0804U, 0xc75295c7U, 0x23654623U, 0xc35e9dc3U, 0x18283018U, 0x96a13796U, 0x050f0a05U, 0x9ab52f9aU, 0x07090e07U, 0x12362412U, 0x809b1b80U, 0xe23ddfe2U, 0xeb26cdebU, 0x27694e27U, 0xb2cd7fb2U, 0x759fea75U, 0x091b1209U, 0x839e1d83U, 0x2c74582cU, 0x1a2e341aU, 0x1b2d361bU, 0x6eb2dc6eU, 0x5aeeb45aU, 0xa0fb5ba0U, 0x52f6a452U, 0x3b4d763bU, 0xd661b7d6U, 0xb3ce7db3U, 0x297b5229U, 0xe33edde3U, 0x2f715e2fU, 0x84971384U, 0x53f5a653U, 0xd168b9d1U, 0x00000000U, 0xed2cc1edU, 0x20604020U, 0xfc1fe3fcU, 0xb1c879b1U, 0x5bedb65bU, 0x6abed46aU, 0xcb468dcbU, 0xbed967beU, 0x394b7239U, 0x4ade944aU, 0x4cd4984cU, 0x58e8b058U, 0xcf4a85cfU, 0xd06bbbd0U, 0xef2ac5efU, 0xaae54faaU, 0xfb16edfbU, 0x43c58643U, 0x4dd79a4dU, 0x33556633U, 0x85941185U, 0x45cf8a45U, 0xf910e9f9U, 0x02060402U, 0x7f81fe7fU, 0x50f0a050U, 0x3c44783cU, 0x9fba259fU, 0xa8e34ba8U, 0x51f3a251U, 0xa3fe5da3U, 0x40c08040U, 0x8f8a058fU, 0x92ad3f92U, 0x9dbc219dU, 0x38487038U, 0xf504f1f5U, 0xbcdf63bcU, 0xb6c177b6U, 0xda75afdaU, 0x21634221U, 0x10302010U, 0xff1ae5ffU, 0xf30efdf3U, 0xd26dbfd2U, 0xcd4c81cdU, 0x0c14180cU, 0x13352613U, 0xec2fc3ecU, 0x5fe1be5fU, 0x97a23597U, 0x44cc8844U, 0x17392e17U, 0xc45793c4U, 0xa7f255a7U, 0x7e82fc7eU, 0x3d477a3dU, 0x64acc864U, 0x5de7ba5dU, 0x192b3219U, 0x7395e673U, 0x60a0c060U, 0x81981981U, 0x4fd19e4fU, 0xdc7fa3dcU, 0x22664422U, 0x2a7e542aU, 0x90ab3b90U, 0x88830b88U, 0x46ca8c46U, 0xee29c7eeU, 0xb8d36bb8U, 0x143c2814U, 0xde79a7deU, 0x5ee2bc5eU, 0x0b1d160bU, 0xdb76addbU, 0xe03bdbe0U, 0x32566432U, 0x3a4e743aU, 0x0a1e140aU, 0x49db9249U, 0x060a0c06U, 0x246c4824U, 0x5ce4b85cU, 0xc25d9fc2U, 0xd36ebdd3U, 0xacef43acU, 0x62a6c462U, 0x91a83991U, 0x95a43195U, 0xe437d3e4U, 0x798bf279U, 0xe732d5e7U, 0xc8438bc8U, 0x37596e37U, 0x6db7da6dU, 0x8d8c018dU, 0xd564b1d5U, 0x4ed29c4eU, 0xa9e049a9U, 0x6cb4d86cU, 0x56faac56U, 0xf407f3f4U, 0xea25cfeaU, 0x65afca65U, 0x7a8ef47aU, 0xaee947aeU, 0x08181008U, 0xbad56fbaU, 0x7888f078U, 0x256f4a25U, 0x2e725c2eU, 0x1c24381cU, 0xa6f157a6U, 0xb4c773b4U, 0xc65197c6U, 0xe823cbe8U, 0xdd7ca1ddU, 0x749ce874U, 0x1f213e1fU, 0x4bdd964bU, 0xbddc61bdU, 0x8b860d8bU, 0x8a850f8aU, 0x7090e070U, 0x3e427c3eU, 0xb5c471b5U, 0x66aacc66U, 0x48d89048U, 0x03050603U, 0xf601f7f6U, 0x0e121c0eU, 0x61a3c261U, 0x355f6a35U, 0x57f9ae57U, 0xb9d069b9U, 0x86911786U, 0xc15899c1U, 0x1d273a1dU, 0x9eb9279eU, 0xe138d9e1U, 0xf813ebf8U, 0x98b32b98U, 0x11332211U, 0x69bbd269U, 0xd970a9d9U, 0x8e89078eU, 0x94a73394U, 0x9bb62d9bU, 0x1e223c1eU, 0x87921587U, 0xe920c9e9U, 0xce4987ceU, 0x55ffaa55U, 0x28785028U, 0xdf7aa5dfU, 0x8c8f038cU, 0xa1f859a1U, 0x89800989U, 0x0d171a0dU, 0xbfda65bfU, 0xe631d7e6U, 0x42c68442U, 0x68b8d068U, 0x41c38241U, 0x99b02999U, 0x2d775a2dU, 0x0f111e0fU, 0xb0cb7bb0U, 0x54fca854U, 0xbbd66dbbU, 0x163a2c16U, }; static const uint32_t Te3[256] = { 0x6363a5c6U, 0x7c7c84f8U, 0x777799eeU, 0x7b7b8df6U, 0xf2f20dffU, 0x6b6bbdd6U, 0x6f6fb1deU, 0xc5c55491U, 0x30305060U, 0x01010302U, 0x6767a9ceU, 0x2b2b7d56U, 0xfefe19e7U, 0xd7d762b5U, 0xababe64dU, 0x76769aecU, 0xcaca458fU, 0x82829d1fU, 0xc9c94089U, 0x7d7d87faU, 0xfafa15efU, 0x5959ebb2U, 0x4747c98eU, 0xf0f00bfbU, 0xadadec41U, 0xd4d467b3U, 0xa2a2fd5fU, 0xafafea45U, 0x9c9cbf23U, 0xa4a4f753U, 0x727296e4U, 0xc0c05b9bU, 0xb7b7c275U, 0xfdfd1ce1U, 0x9393ae3dU, 0x26266a4cU, 0x36365a6cU, 0x3f3f417eU, 0xf7f702f5U, 0xcccc4f83U, 0x34345c68U, 0xa5a5f451U, 0xe5e534d1U, 0xf1f108f9U, 0x717193e2U, 0xd8d873abU, 0x31315362U, 0x15153f2aU, 0x04040c08U, 0xc7c75295U, 0x23236546U, 0xc3c35e9dU, 0x18182830U, 0x9696a137U, 0x05050f0aU, 0x9a9ab52fU, 0x0707090eU, 0x12123624U, 0x80809b1bU, 0xe2e23ddfU, 0xebeb26cdU, 0x2727694eU, 0xb2b2cd7fU, 0x75759feaU, 0x09091b12U, 0x83839e1dU, 0x2c2c7458U, 0x1a1a2e34U, 0x1b1b2d36U, 0x6e6eb2dcU, 0x5a5aeeb4U, 0xa0a0fb5bU, 0x5252f6a4U, 0x3b3b4d76U, 0xd6d661b7U, 0xb3b3ce7dU, 0x29297b52U, 0xe3e33eddU, 0x2f2f715eU, 0x84849713U, 0x5353f5a6U, 0xd1d168b9U, 0x00000000U, 0xeded2cc1U, 0x20206040U, 0xfcfc1fe3U, 0xb1b1c879U, 0x5b5bedb6U, 0x6a6abed4U, 0xcbcb468dU, 0xbebed967U, 0x39394b72U, 0x4a4ade94U, 0x4c4cd498U, 0x5858e8b0U, 0xcfcf4a85U, 0xd0d06bbbU, 0xefef2ac5U, 0xaaaae54fU, 0xfbfb16edU, 0x4343c586U, 0x4d4dd79aU, 0x33335566U, 0x85859411U, 0x4545cf8aU, 0xf9f910e9U, 0x02020604U, 0x7f7f81feU, 0x5050f0a0U, 0x3c3c4478U, 0x9f9fba25U, 0xa8a8e34bU, 0x5151f3a2U, 0xa3a3fe5dU, 0x4040c080U, 0x8f8f8a05U, 0x9292ad3fU, 0x9d9dbc21U, 0x38384870U, 0xf5f504f1U, 0xbcbcdf63U, 0xb6b6c177U, 0xdada75afU, 0x21216342U, 0x10103020U, 0xffff1ae5U, 0xf3f30efdU, 0xd2d26dbfU, 0xcdcd4c81U, 0x0c0c1418U, 0x13133526U, 0xecec2fc3U, 0x5f5fe1beU, 0x9797a235U, 0x4444cc88U, 0x1717392eU, 0xc4c45793U, 0xa7a7f255U, 0x7e7e82fcU, 0x3d3d477aU, 0x6464acc8U, 0x5d5de7baU, 0x19192b32U, 0x737395e6U, 0x6060a0c0U, 0x81819819U, 0x4f4fd19eU, 0xdcdc7fa3U, 0x22226644U, 0x2a2a7e54U, 0x9090ab3bU, 0x8888830bU, 0x4646ca8cU, 0xeeee29c7U, 0xb8b8d36bU, 0x14143c28U, 0xdede79a7U, 0x5e5ee2bcU, 0x0b0b1d16U, 0xdbdb76adU, 0xe0e03bdbU, 0x32325664U, 0x3a3a4e74U, 0x0a0a1e14U, 0x4949db92U, 0x06060a0cU, 0x24246c48U, 0x5c5ce4b8U, 0xc2c25d9fU, 0xd3d36ebdU, 0xacacef43U, 0x6262a6c4U, 0x9191a839U, 0x9595a431U, 0xe4e437d3U, 0x79798bf2U, 0xe7e732d5U, 0xc8c8438bU, 0x3737596eU, 0x6d6db7daU, 0x8d8d8c01U, 0xd5d564b1U, 0x4e4ed29cU, 0xa9a9e049U, 0x6c6cb4d8U, 0x5656faacU, 0xf4f407f3U, 0xeaea25cfU, 0x6565afcaU, 0x7a7a8ef4U, 0xaeaee947U, 0x08081810U, 0xbabad56fU, 0x787888f0U, 0x25256f4aU, 0x2e2e725cU, 0x1c1c2438U, 0xa6a6f157U, 0xb4b4c773U, 0xc6c65197U, 0xe8e823cbU, 0xdddd7ca1U, 0x74749ce8U, 0x1f1f213eU, 0x4b4bdd96U, 0xbdbddc61U, 0x8b8b860dU, 0x8a8a850fU, 0x707090e0U, 0x3e3e427cU, 0xb5b5c471U, 0x6666aaccU, 0x4848d890U, 0x03030506U, 0xf6f601f7U, 0x0e0e121cU, 0x6161a3c2U, 0x35355f6aU, 0x5757f9aeU, 0xb9b9d069U, 0x86869117U, 0xc1c15899U, 0x1d1d273aU, 0x9e9eb927U, 0xe1e138d9U, 0xf8f813ebU, 0x9898b32bU, 0x11113322U, 0x6969bbd2U, 0xd9d970a9U, 0x8e8e8907U, 0x9494a733U, 0x9b9bb62dU, 0x1e1e223cU, 0x87879215U, 0xe9e920c9U, 0xcece4987U, 0x5555ffaaU, 0x28287850U, 0xdfdf7aa5U, 0x8c8c8f03U, 0xa1a1f859U, 0x89898009U, 0x0d0d171aU, 0xbfbfda65U, 0xe6e631d7U, 0x4242c684U, 0x6868b8d0U, 0x4141c382U, 0x9999b029U, 0x2d2d775aU, 0x0f0f111eU, 0xb0b0cb7bU, 0x5454fca8U, 0xbbbbd66dU, 0x16163a2cU, }; static const uint32_t Te4[256] = { 0x63636363U, 0x7c7c7c7cU, 0x77777777U, 0x7b7b7b7bU, 0xf2f2f2f2U, 0x6b6b6b6bU, 0x6f6f6f6fU, 0xc5c5c5c5U, 0x30303030U, 0x01010101U, 0x67676767U, 0x2b2b2b2bU, 0xfefefefeU, 0xd7d7d7d7U, 0xababababU, 0x76767676U, 0xcacacacaU, 0x82828282U, 0xc9c9c9c9U, 0x7d7d7d7dU, 0xfafafafaU, 0x59595959U, 0x47474747U, 0xf0f0f0f0U, 0xadadadadU, 0xd4d4d4d4U, 0xa2a2a2a2U, 0xafafafafU, 0x9c9c9c9cU, 0xa4a4a4a4U, 0x72727272U, 0xc0c0c0c0U, 0xb7b7b7b7U, 0xfdfdfdfdU, 0x93939393U, 0x26262626U, 0x36363636U, 0x3f3f3f3fU, 0xf7f7f7f7U, 0xccccccccU, 0x34343434U, 0xa5a5a5a5U, 0xe5e5e5e5U, 0xf1f1f1f1U, 0x71717171U, 0xd8d8d8d8U, 0x31313131U, 0x15151515U, 0x04040404U, 0xc7c7c7c7U, 0x23232323U, 0xc3c3c3c3U, 0x18181818U, 0x96969696U, 0x05050505U, 0x9a9a9a9aU, 0x07070707U, 0x12121212U, 0x80808080U, 0xe2e2e2e2U, 0xebebebebU, 0x27272727U, 0xb2b2b2b2U, 0x75757575U, 0x09090909U, 0x83838383U, 0x2c2c2c2cU, 0x1a1a1a1aU, 0x1b1b1b1bU, 0x6e6e6e6eU, 0x5a5a5a5aU, 0xa0a0a0a0U, 0x52525252U, 0x3b3b3b3bU, 0xd6d6d6d6U, 0xb3b3b3b3U, 0x29292929U, 0xe3e3e3e3U, 0x2f2f2f2fU, 0x84848484U, 0x53535353U, 0xd1d1d1d1U, 0x00000000U, 0xededededU, 0x20202020U, 0xfcfcfcfcU, 0xb1b1b1b1U, 0x5b5b5b5bU, 0x6a6a6a6aU, 0xcbcbcbcbU, 0xbebebebeU, 0x39393939U, 0x4a4a4a4aU, 0x4c4c4c4cU, 0x58585858U, 0xcfcfcfcfU, 0xd0d0d0d0U, 0xefefefefU, 0xaaaaaaaaU, 0xfbfbfbfbU, 0x43434343U, 0x4d4d4d4dU, 0x33333333U, 0x85858585U, 0x45454545U, 0xf9f9f9f9U, 0x02020202U, 0x7f7f7f7fU, 0x50505050U, 0x3c3c3c3cU, 0x9f9f9f9fU, 0xa8a8a8a8U, 0x51515151U, 0xa3a3a3a3U, 0x40404040U, 0x8f8f8f8fU, 0x92929292U, 0x9d9d9d9dU, 0x38383838U, 0xf5f5f5f5U, 0xbcbcbcbcU, 0xb6b6b6b6U, 0xdadadadaU, 0x21212121U, 0x10101010U, 0xffffffffU, 0xf3f3f3f3U, 0xd2d2d2d2U, 0xcdcdcdcdU, 0x0c0c0c0cU, 0x13131313U, 0xececececU, 0x5f5f5f5fU, 0x97979797U, 0x44444444U, 0x17171717U, 0xc4c4c4c4U, 0xa7a7a7a7U, 0x7e7e7e7eU, 0x3d3d3d3dU, 0x64646464U, 0x5d5d5d5dU, 0x19191919U, 0x73737373U, 0x60606060U, 0x81818181U, 0x4f4f4f4fU, 0xdcdcdcdcU, 0x22222222U, 0x2a2a2a2aU, 0x90909090U, 0x88888888U, 0x46464646U, 0xeeeeeeeeU, 0xb8b8b8b8U, 0x14141414U, 0xdedededeU, 0x5e5e5e5eU, 0x0b0b0b0bU, 0xdbdbdbdbU, 0xe0e0e0e0U, 0x32323232U, 0x3a3a3a3aU, 0x0a0a0a0aU, 0x49494949U, 0x06060606U, 0x24242424U, 0x5c5c5c5cU, 0xc2c2c2c2U, 0xd3d3d3d3U, 0xacacacacU, 0x62626262U, 0x91919191U, 0x95959595U, 0xe4e4e4e4U, 0x79797979U, 0xe7e7e7e7U, 0xc8c8c8c8U, 0x37373737U, 0x6d6d6d6dU, 0x8d8d8d8dU, 0xd5d5d5d5U, 0x4e4e4e4eU, 0xa9a9a9a9U, 0x6c6c6c6cU, 0x56565656U, 0xf4f4f4f4U, 0xeaeaeaeaU, 0x65656565U, 0x7a7a7a7aU, 0xaeaeaeaeU, 0x08080808U, 0xbabababaU, 0x78787878U, 0x25252525U, 0x2e2e2e2eU, 0x1c1c1c1cU, 0xa6a6a6a6U, 0xb4b4b4b4U, 0xc6c6c6c6U, 0xe8e8e8e8U, 0xddddddddU, 0x74747474U, 0x1f1f1f1fU, 0x4b4b4b4bU, 0xbdbdbdbdU, 0x8b8b8b8bU, 0x8a8a8a8aU, 0x70707070U, 0x3e3e3e3eU, 0xb5b5b5b5U, 0x66666666U, 0x48484848U, 0x03030303U, 0xf6f6f6f6U, 0x0e0e0e0eU, 0x61616161U, 0x35353535U, 0x57575757U, 0xb9b9b9b9U, 0x86868686U, 0xc1c1c1c1U, 0x1d1d1d1dU, 0x9e9e9e9eU, 0xe1e1e1e1U, 0xf8f8f8f8U, 0x98989898U, 0x11111111U, 0x69696969U, 0xd9d9d9d9U, 0x8e8e8e8eU, 0x94949494U, 0x9b9b9b9bU, 0x1e1e1e1eU, 0x87878787U, 0xe9e9e9e9U, 0xcecececeU, 0x55555555U, 0x28282828U, 0xdfdfdfdfU, 0x8c8c8c8cU, 0xa1a1a1a1U, 0x89898989U, 0x0d0d0d0dU, 0xbfbfbfbfU, 0xe6e6e6e6U, 0x42424242U, 0x68686868U, 0x41414141U, 0x99999999U, 0x2d2d2d2dU, 0x0f0f0f0fU, 0xb0b0b0b0U, 0x54545454U, 0xbbbbbbbbU, 0x16161616U, }; static const uint32_t Td0[256] = { 0x51f4a750U, 0x7e416553U, 0x1a17a4c3U, 0x3a275e96U, 0x3bab6bcbU, 0x1f9d45f1U, 0xacfa58abU, 0x4be30393U, 0x2030fa55U, 0xad766df6U, 0x88cc7691U, 0xf5024c25U, 0x4fe5d7fcU, 0xc52acbd7U, 0x26354480U, 0xb562a38fU, 0xdeb15a49U, 0x25ba1b67U, 0x45ea0e98U, 0x5dfec0e1U, 0xc32f7502U, 0x814cf012U, 0x8d4697a3U, 0x6bd3f9c6U, 0x038f5fe7U, 0x15929c95U, 0xbf6d7aebU, 0x955259daU, 0xd4be832dU, 0x587421d3U, 0x49e06929U, 0x8ec9c844U, 0x75c2896aU, 0xf48e7978U, 0x99583e6bU, 0x27b971ddU, 0xbee14fb6U, 0xf088ad17U, 0xc920ac66U, 0x7dce3ab4U, 0x63df4a18U, 0xe51a3182U, 0x97513360U, 0x62537f45U, 0xb16477e0U, 0xbb6bae84U, 0xfe81a01cU, 0xf9082b94U, 0x70486858U, 0x8f45fd19U, 0x94de6c87U, 0x527bf8b7U, 0xab73d323U, 0x724b02e2U, 0xe31f8f57U, 0x6655ab2aU, 0xb2eb2807U, 0x2fb5c203U, 0x86c57b9aU, 0xd33708a5U, 0x302887f2U, 0x23bfa5b2U, 0x02036abaU, 0xed16825cU, 0x8acf1c2bU, 0xa779b492U, 0xf307f2f0U, 0x4e69e2a1U, 0x65daf4cdU, 0x0605bed5U, 0xd134621fU, 0xc4a6fe8aU, 0x342e539dU, 0xa2f355a0U, 0x058ae132U, 0xa4f6eb75U, 0x0b83ec39U, 0x4060efaaU, 0x5e719f06U, 0xbd6e1051U, 0x3e218af9U, 0x96dd063dU, 0xdd3e05aeU, 0x4de6bd46U, 0x91548db5U, 0x71c45d05U, 0x0406d46fU, 0x605015ffU, 0x1998fb24U, 0xd6bde997U, 0x894043ccU, 0x67d99e77U, 0xb0e842bdU, 0x07898b88U, 0xe7195b38U, 0x79c8eedbU, 0xa17c0a47U, 0x7c420fe9U, 0xf8841ec9U, 0x00000000U, 0x09808683U, 0x322bed48U, 0x1e1170acU, 0x6c5a724eU, 0xfd0efffbU, 0x0f853856U, 0x3daed51eU, 0x362d3927U, 0x0a0fd964U, 0x685ca621U, 0x9b5b54d1U, 0x24362e3aU, 0x0c0a67b1U, 0x9357e70fU, 0xb4ee96d2U, 0x1b9b919eU, 0x80c0c54fU, 0x61dc20a2U, 0x5a774b69U, 0x1c121a16U, 0xe293ba0aU, 0xc0a02ae5U, 0x3c22e043U, 0x121b171dU, 0x0e090d0bU, 0xf28bc7adU, 0x2db6a8b9U, 0x141ea9c8U, 0x57f11985U, 0xaf75074cU, 0xee99ddbbU, 0xa37f60fdU, 0xf701269fU, 0x5c72f5bcU, 0x44663bc5U, 0x5bfb7e34U, 0x8b432976U, 0xcb23c6dcU, 0xb6edfc68U, 0xb8e4f163U, 0xd731dccaU, 0x42638510U, 0x13972240U, 0x84c61120U, 0x854a247dU, 0xd2bb3df8U, 0xaef93211U, 0xc729a16dU, 0x1d9e2f4bU, 0xdcb230f3U, 0x0d8652ecU, 0x77c1e3d0U, 0x2bb3166cU, 0xa970b999U, 0x119448faU, 0x47e96422U, 0xa8fc8cc4U, 0xa0f03f1aU, 0x567d2cd8U, 0x223390efU, 0x87494ec7U, 0xd938d1c1U, 0x8ccaa2feU, 0x98d40b36U, 0xa6f581cfU, 0xa57ade28U, 0xdab78e26U, 0x3fadbfa4U, 0x2c3a9de4U, 0x5078920dU, 0x6a5fcc9bU, 0x547e4662U, 0xf68d13c2U, 0x90d8b8e8U, 0x2e39f75eU, 0x82c3aff5U, 0x9f5d80beU, 0x69d0937cU, 0x6fd52da9U, 0xcf2512b3U, 0xc8ac993bU, 0x10187da7U, 0xe89c636eU, 0xdb3bbb7bU, 0xcd267809U, 0x6e5918f4U, 0xec9ab701U, 0x834f9aa8U, 0xe6956e65U, 0xaaffe67eU, 0x21bccf08U, 0xef15e8e6U, 0xbae79bd9U, 0x4a6f36ceU, 0xea9f09d4U, 0x29b07cd6U, 0x31a4b2afU, 0x2a3f2331U, 0xc6a59430U, 0x35a266c0U, 0x744ebc37U, 0xfc82caa6U, 0xe090d0b0U, 0x33a7d815U, 0xf104984aU, 0x41ecdaf7U, 0x7fcd500eU, 0x1791f62fU, 0x764dd68dU, 0x43efb04dU, 0xccaa4d54U, 0xe49604dfU, 0x9ed1b5e3U, 0x4c6a881bU, 0xc12c1fb8U, 0x4665517fU, 0x9d5eea04U, 0x018c355dU, 0xfa877473U, 0xfb0b412eU, 0xb3671d5aU, 0x92dbd252U, 0xe9105633U, 0x6dd64713U, 0x9ad7618cU, 0x37a10c7aU, 0x59f8148eU, 0xeb133c89U, 0xcea927eeU, 0xb761c935U, 0xe11ce5edU, 0x7a47b13cU, 0x9cd2df59U, 0x55f2733fU, 0x1814ce79U, 0x73c737bfU, 0x53f7cdeaU, 0x5ffdaa5bU, 0xdf3d6f14U, 0x7844db86U, 0xcaaff381U, 0xb968c43eU, 0x3824342cU, 0xc2a3405fU, 0x161dc372U, 0xbce2250cU, 0x283c498bU, 0xff0d9541U, 0x39a80171U, 0x080cb3deU, 0xd8b4e49cU, 0x6456c190U, 0x7bcb8461U, 0xd532b670U, 0x486c5c74U, 0xd0b85742U, }; static const uint32_t Td1[256] = { 0x5051f4a7U, 0x537e4165U, 0xc31a17a4U, 0x963a275eU, 0xcb3bab6bU, 0xf11f9d45U, 0xabacfa58U, 0x934be303U, 0x552030faU, 0xf6ad766dU, 0x9188cc76U, 0x25f5024cU, 0xfc4fe5d7U, 0xd7c52acbU, 0x80263544U, 0x8fb562a3U, 0x49deb15aU, 0x6725ba1bU, 0x9845ea0eU, 0xe15dfec0U, 0x02c32f75U, 0x12814cf0U, 0xa38d4697U, 0xc66bd3f9U, 0xe7038f5fU, 0x9515929cU, 0xebbf6d7aU, 0xda955259U, 0x2dd4be83U, 0xd3587421U, 0x2949e069U, 0x448ec9c8U, 0x6a75c289U, 0x78f48e79U, 0x6b99583eU, 0xdd27b971U, 0xb6bee14fU, 0x17f088adU, 0x66c920acU, 0xb47dce3aU, 0x1863df4aU, 0x82e51a31U, 0x60975133U, 0x4562537fU, 0xe0b16477U, 0x84bb6baeU, 0x1cfe81a0U, 0x94f9082bU, 0x58704868U, 0x198f45fdU, 0x8794de6cU, 0xb7527bf8U, 0x23ab73d3U, 0xe2724b02U, 0x57e31f8fU, 0x2a6655abU, 0x07b2eb28U, 0x032fb5c2U, 0x9a86c57bU, 0xa5d33708U, 0xf2302887U, 0xb223bfa5U, 0xba02036aU, 0x5ced1682U, 0x2b8acf1cU, 0x92a779b4U, 0xf0f307f2U, 0xa14e69e2U, 0xcd65daf4U, 0xd50605beU, 0x1fd13462U, 0x8ac4a6feU, 0x9d342e53U, 0xa0a2f355U, 0x32058ae1U, 0x75a4f6ebU, 0x390b83ecU, 0xaa4060efU, 0x065e719fU, 0x51bd6e10U, 0xf93e218aU, 0x3d96dd06U, 0xaedd3e05U, 0x464de6bdU, 0xb591548dU, 0x0571c45dU, 0x6f0406d4U, 0xff605015U, 0x241998fbU, 0x97d6bde9U, 0xcc894043U, 0x7767d99eU, 0xbdb0e842U, 0x8807898bU, 0x38e7195bU, 0xdb79c8eeU, 0x47a17c0aU, 0xe97c420fU, 0xc9f8841eU, 0x00000000U, 0x83098086U, 0x48322bedU, 0xac1e1170U, 0x4e6c5a72U, 0xfbfd0effU, 0x560f8538U, 0x1e3daed5U, 0x27362d39U, 0x640a0fd9U, 0x21685ca6U, 0xd19b5b54U, 0x3a24362eU, 0xb10c0a67U, 0x0f9357e7U, 0xd2b4ee96U, 0x9e1b9b91U, 0x4f80c0c5U, 0xa261dc20U, 0x695a774bU, 0x161c121aU, 0x0ae293baU, 0xe5c0a02aU, 0x433c22e0U, 0x1d121b17U, 0x0b0e090dU, 0xadf28bc7U, 0xb92db6a8U, 0xc8141ea9U, 0x8557f119U, 0x4caf7507U, 0xbbee99ddU, 0xfda37f60U, 0x9ff70126U, 0xbc5c72f5U, 0xc544663bU, 0x345bfb7eU, 0x768b4329U, 0xdccb23c6U, 0x68b6edfcU, 0x63b8e4f1U, 0xcad731dcU, 0x10426385U, 0x40139722U, 0x2084c611U, 0x7d854a24U, 0xf8d2bb3dU, 0x11aef932U, 0x6dc729a1U, 0x4b1d9e2fU, 0xf3dcb230U, 0xec0d8652U, 0xd077c1e3U, 0x6c2bb316U, 0x99a970b9U, 0xfa119448U, 0x2247e964U, 0xc4a8fc8cU, 0x1aa0f03fU, 0xd8567d2cU, 0xef223390U, 0xc787494eU, 0xc1d938d1U, 0xfe8ccaa2U, 0x3698d40bU, 0xcfa6f581U, 0x28a57adeU, 0x26dab78eU, 0xa43fadbfU, 0xe42c3a9dU, 0x0d507892U, 0x9b6a5fccU, 0x62547e46U, 0xc2f68d13U, 0xe890d8b8U, 0x5e2e39f7U, 0xf582c3afU, 0xbe9f5d80U, 0x7c69d093U, 0xa96fd52dU, 0xb3cf2512U, 0x3bc8ac99U, 0xa710187dU, 0x6ee89c63U, 0x7bdb3bbbU, 0x09cd2678U, 0xf46e5918U, 0x01ec9ab7U, 0xa8834f9aU, 0x65e6956eU, 0x7eaaffe6U, 0x0821bccfU, 0xe6ef15e8U, 0xd9bae79bU, 0xce4a6f36U, 0xd4ea9f09U, 0xd629b07cU, 0xaf31a4b2U, 0x312a3f23U, 0x30c6a594U, 0xc035a266U, 0x37744ebcU, 0xa6fc82caU, 0xb0e090d0U, 0x1533a7d8U, 0x4af10498U, 0xf741ecdaU, 0x0e7fcd50U, 0x2f1791f6U, 0x8d764dd6U, 0x4d43efb0U, 0x54ccaa4dU, 0xdfe49604U, 0xe39ed1b5U, 0x1b4c6a88U, 0xb8c12c1fU, 0x7f466551U, 0x049d5eeaU, 0x5d018c35U, 0x73fa8774U, 0x2efb0b41U, 0x5ab3671dU, 0x5292dbd2U, 0x33e91056U, 0x136dd647U, 0x8c9ad761U, 0x7a37a10cU, 0x8e59f814U, 0x89eb133cU, 0xeecea927U, 0x35b761c9U, 0xede11ce5U, 0x3c7a47b1U, 0x599cd2dfU, 0x3f55f273U, 0x791814ceU, 0xbf73c737U, 0xea53f7cdU, 0x5b5ffdaaU, 0x14df3d6fU, 0x867844dbU, 0x81caaff3U, 0x3eb968c4U, 0x2c382434U, 0x5fc2a340U, 0x72161dc3U, 0x0cbce225U, 0x8b283c49U, 0x41ff0d95U, 0x7139a801U, 0xde080cb3U, 0x9cd8b4e4U, 0x906456c1U, 0x617bcb84U, 0x70d532b6U, 0x74486c5cU, 0x42d0b857U, }; static const uint32_t Td2[256] = { 0xa75051f4U, 0x65537e41U, 0xa4c31a17U, 0x5e963a27U, 0x6bcb3babU, 0x45f11f9dU, 0x58abacfaU, 0x03934be3U, 0xfa552030U, 0x6df6ad76U, 0x769188ccU, 0x4c25f502U, 0xd7fc4fe5U, 0xcbd7c52aU, 0x44802635U, 0xa38fb562U, 0x5a49deb1U, 0x1b6725baU, 0x0e9845eaU, 0xc0e15dfeU, 0x7502c32fU, 0xf012814cU, 0x97a38d46U, 0xf9c66bd3U, 0x5fe7038fU, 0x9c951592U, 0x7aebbf6dU, 0x59da9552U, 0x832dd4beU, 0x21d35874U, 0x692949e0U, 0xc8448ec9U, 0x896a75c2U, 0x7978f48eU, 0x3e6b9958U, 0x71dd27b9U, 0x4fb6bee1U, 0xad17f088U, 0xac66c920U, 0x3ab47dceU, 0x4a1863dfU, 0x3182e51aU, 0x33609751U, 0x7f456253U, 0x77e0b164U, 0xae84bb6bU, 0xa01cfe81U, 0x2b94f908U, 0x68587048U, 0xfd198f45U, 0x6c8794deU, 0xf8b7527bU, 0xd323ab73U, 0x02e2724bU, 0x8f57e31fU, 0xab2a6655U, 0x2807b2ebU, 0xc2032fb5U, 0x7b9a86c5U, 0x08a5d337U, 0x87f23028U, 0xa5b223bfU, 0x6aba0203U, 0x825ced16U, 0x1c2b8acfU, 0xb492a779U, 0xf2f0f307U, 0xe2a14e69U, 0xf4cd65daU, 0xbed50605U, 0x621fd134U, 0xfe8ac4a6U, 0x539d342eU, 0x55a0a2f3U, 0xe132058aU, 0xeb75a4f6U, 0xec390b83U, 0xefaa4060U, 0x9f065e71U, 0x1051bd6eU, 0x8af93e21U, 0x063d96ddU, 0x05aedd3eU, 0xbd464de6U, 0x8db59154U, 0x5d0571c4U, 0xd46f0406U, 0x15ff6050U, 0xfb241998U, 0xe997d6bdU, 0x43cc8940U, 0x9e7767d9U, 0x42bdb0e8U, 0x8b880789U, 0x5b38e719U, 0xeedb79c8U, 0x0a47a17cU, 0x0fe97c42U, 0x1ec9f884U, 0x00000000U, 0x86830980U, 0xed48322bU, 0x70ac1e11U, 0x724e6c5aU, 0xfffbfd0eU, 0x38560f85U, 0xd51e3daeU, 0x3927362dU, 0xd9640a0fU, 0xa621685cU, 0x54d19b5bU, 0x2e3a2436U, 0x67b10c0aU, 0xe70f9357U, 0x96d2b4eeU, 0x919e1b9bU, 0xc54f80c0U, 0x20a261dcU, 0x4b695a77U, 0x1a161c12U, 0xba0ae293U, 0x2ae5c0a0U, 0xe0433c22U, 0x171d121bU, 0x0d0b0e09U, 0xc7adf28bU, 0xa8b92db6U, 0xa9c8141eU, 0x198557f1U, 0x074caf75U, 0xddbbee99U, 0x60fda37fU, 0x269ff701U, 0xf5bc5c72U, 0x3bc54466U, 0x7e345bfbU, 0x29768b43U, 0xc6dccb23U, 0xfc68b6edU, 0xf163b8e4U, 0xdccad731U, 0x85104263U, 0x22401397U, 0x112084c6U, 0x247d854aU, 0x3df8d2bbU, 0x3211aef9U, 0xa16dc729U, 0x2f4b1d9eU, 0x30f3dcb2U, 0x52ec0d86U, 0xe3d077c1U, 0x166c2bb3U, 0xb999a970U, 0x48fa1194U, 0x642247e9U, 0x8cc4a8fcU, 0x3f1aa0f0U, 0x2cd8567dU, 0x90ef2233U, 0x4ec78749U, 0xd1c1d938U, 0xa2fe8ccaU, 0x0b3698d4U, 0x81cfa6f5U, 0xde28a57aU, 0x8e26dab7U, 0xbfa43fadU, 0x9de42c3aU, 0x920d5078U, 0xcc9b6a5fU, 0x4662547eU, 0x13c2f68dU, 0xb8e890d8U, 0xf75e2e39U, 0xaff582c3U, 0x80be9f5dU, 0x937c69d0U, 0x2da96fd5U, 0x12b3cf25U, 0x993bc8acU, 0x7da71018U, 0x636ee89cU, 0xbb7bdb3bU, 0x7809cd26U, 0x18f46e59U, 0xb701ec9aU, 0x9aa8834fU, 0x6e65e695U, 0xe67eaaffU, 0xcf0821bcU, 0xe8e6ef15U, 0x9bd9bae7U, 0x36ce4a6fU, 0x09d4ea9fU, 0x7cd629b0U, 0xb2af31a4U, 0x23312a3fU, 0x9430c6a5U, 0x66c035a2U, 0xbc37744eU, 0xcaa6fc82U, 0xd0b0e090U, 0xd81533a7U, 0x984af104U, 0xdaf741ecU, 0x500e7fcdU, 0xf62f1791U, 0xd68d764dU, 0xb04d43efU, 0x4d54ccaaU, 0x04dfe496U, 0xb5e39ed1U, 0x881b4c6aU, 0x1fb8c12cU, 0x517f4665U, 0xea049d5eU, 0x355d018cU, 0x7473fa87U, 0x412efb0bU, 0x1d5ab367U, 0xd25292dbU, 0x5633e910U, 0x47136dd6U, 0x618c9ad7U, 0x0c7a37a1U, 0x148e59f8U, 0x3c89eb13U, 0x27eecea9U, 0xc935b761U, 0xe5ede11cU, 0xb13c7a47U, 0xdf599cd2U, 0x733f55f2U, 0xce791814U, 0x37bf73c7U, 0xcdea53f7U, 0xaa5b5ffdU, 0x6f14df3dU, 0xdb867844U, 0xf381caafU, 0xc43eb968U, 0x342c3824U, 0x405fc2a3U, 0xc372161dU, 0x250cbce2U, 0x498b283cU, 0x9541ff0dU, 0x017139a8U, 0xb3de080cU, 0xe49cd8b4U, 0xc1906456U, 0x84617bcbU, 0xb670d532U, 0x5c74486cU, 0x5742d0b8U, }; static const uint32_t Td3[256] = { 0xf4a75051U, 0x4165537eU, 0x17a4c31aU, 0x275e963aU, 0xab6bcb3bU, 0x9d45f11fU, 0xfa58abacU, 0xe303934bU, 0x30fa5520U, 0x766df6adU, 0xcc769188U, 0x024c25f5U, 0xe5d7fc4fU, 0x2acbd7c5U, 0x35448026U, 0x62a38fb5U, 0xb15a49deU, 0xba1b6725U, 0xea0e9845U, 0xfec0e15dU, 0x2f7502c3U, 0x4cf01281U, 0x4697a38dU, 0xd3f9c66bU, 0x8f5fe703U, 0x929c9515U, 0x6d7aebbfU, 0x5259da95U, 0xbe832dd4U, 0x7421d358U, 0xe0692949U, 0xc9c8448eU, 0xc2896a75U, 0x8e7978f4U, 0x583e6b99U, 0xb971dd27U, 0xe14fb6beU, 0x88ad17f0U, 0x20ac66c9U, 0xce3ab47dU, 0xdf4a1863U, 0x1a3182e5U, 0x51336097U, 0x537f4562U, 0x6477e0b1U, 0x6bae84bbU, 0x81a01cfeU, 0x082b94f9U, 0x48685870U, 0x45fd198fU, 0xde6c8794U, 0x7bf8b752U, 0x73d323abU, 0x4b02e272U, 0x1f8f57e3U, 0x55ab2a66U, 0xeb2807b2U, 0xb5c2032fU, 0xc57b9a86U, 0x3708a5d3U, 0x2887f230U, 0xbfa5b223U, 0x036aba02U, 0x16825cedU, 0xcf1c2b8aU, 0x79b492a7U, 0x07f2f0f3U, 0x69e2a14eU, 0xdaf4cd65U, 0x05bed506U, 0x34621fd1U, 0xa6fe8ac4U, 0x2e539d34U, 0xf355a0a2U, 0x8ae13205U, 0xf6eb75a4U, 0x83ec390bU, 0x60efaa40U, 0x719f065eU, 0x6e1051bdU, 0x218af93eU, 0xdd063d96U, 0x3e05aeddU, 0xe6bd464dU, 0x548db591U, 0xc45d0571U, 0x06d46f04U, 0x5015ff60U, 0x98fb2419U, 0xbde997d6U, 0x4043cc89U, 0xd99e7767U, 0xe842bdb0U, 0x898b8807U, 0x195b38e7U, 0xc8eedb79U, 0x7c0a47a1U, 0x420fe97cU, 0x841ec9f8U, 0x00000000U, 0x80868309U, 0x2bed4832U, 0x1170ac1eU, 0x5a724e6cU, 0x0efffbfdU, 0x8538560fU, 0xaed51e3dU, 0x2d392736U, 0x0fd9640aU, 0x5ca62168U, 0x5b54d19bU, 0x362e3a24U, 0x0a67b10cU, 0x57e70f93U, 0xee96d2b4U, 0x9b919e1bU, 0xc0c54f80U, 0xdc20a261U, 0x774b695aU, 0x121a161cU, 0x93ba0ae2U, 0xa02ae5c0U, 0x22e0433cU, 0x1b171d12U, 0x090d0b0eU, 0x8bc7adf2U, 0xb6a8b92dU, 0x1ea9c814U, 0xf1198557U, 0x75074cafU, 0x99ddbbeeU, 0x7f60fda3U, 0x01269ff7U, 0x72f5bc5cU, 0x663bc544U, 0xfb7e345bU, 0x4329768bU, 0x23c6dccbU, 0xedfc68b6U, 0xe4f163b8U, 0x31dccad7U, 0x63851042U, 0x97224013U, 0xc6112084U, 0x4a247d85U, 0xbb3df8d2U, 0xf93211aeU, 0x29a16dc7U, 0x9e2f4b1dU, 0xb230f3dcU, 0x8652ec0dU, 0xc1e3d077U, 0xb3166c2bU, 0x70b999a9U, 0x9448fa11U, 0xe9642247U, 0xfc8cc4a8U, 0xf03f1aa0U, 0x7d2cd856U, 0x3390ef22U, 0x494ec787U, 0x38d1c1d9U, 0xcaa2fe8cU, 0xd40b3698U, 0xf581cfa6U, 0x7ade28a5U, 0xb78e26daU, 0xadbfa43fU, 0x3a9de42cU, 0x78920d50U, 0x5fcc9b6aU, 0x7e466254U, 0x8d13c2f6U, 0xd8b8e890U, 0x39f75e2eU, 0xc3aff582U, 0x5d80be9fU, 0xd0937c69U, 0xd52da96fU, 0x2512b3cfU, 0xac993bc8U, 0x187da710U, 0x9c636ee8U, 0x3bbb7bdbU, 0x267809cdU, 0x5918f46eU, 0x9ab701ecU, 0x4f9aa883U, 0x956e65e6U, 0xffe67eaaU, 0xbccf0821U, 0x15e8e6efU, 0xe79bd9baU, 0x6f36ce4aU, 0x9f09d4eaU, 0xb07cd629U, 0xa4b2af31U, 0x3f23312aU, 0xa59430c6U, 0xa266c035U, 0x4ebc3774U, 0x82caa6fcU, 0x90d0b0e0U, 0xa7d81533U, 0x04984af1U, 0xecdaf741U, 0xcd500e7fU, 0x91f62f17U, 0x4dd68d76U, 0xefb04d43U, 0xaa4d54ccU, 0x9604dfe4U, 0xd1b5e39eU, 0x6a881b4cU, 0x2c1fb8c1U, 0x65517f46U, 0x5eea049dU, 0x8c355d01U, 0x877473faU, 0x0b412efbU, 0x671d5ab3U, 0xdbd25292U, 0x105633e9U, 0xd647136dU, 0xd7618c9aU, 0xa10c7a37U, 0xf8148e59U, 0x133c89ebU, 0xa927eeceU, 0x61c935b7U, 0x1ce5ede1U, 0x47b13c7aU, 0xd2df599cU, 0xf2733f55U, 0x14ce7918U, 0xc737bf73U, 0xf7cdea53U, 0xfdaa5b5fU, 0x3d6f14dfU, 0x44db8678U, 0xaff381caU, 0x68c43eb9U, 0x24342c38U, 0xa3405fc2U, 0x1dc37216U, 0xe2250cbcU, 0x3c498b28U, 0x0d9541ffU, 0xa8017139U, 0x0cb3de08U, 0xb4e49cd8U, 0x56c19064U, 0xcb84617bU, 0x32b670d5U, 0x6c5c7448U, 0xb85742d0U, }; static const uint32_t Td4[256] = { 0x52525252U, 0x09090909U, 0x6a6a6a6aU, 0xd5d5d5d5U, 0x30303030U, 0x36363636U, 0xa5a5a5a5U, 0x38383838U, 0xbfbfbfbfU, 0x40404040U, 0xa3a3a3a3U, 0x9e9e9e9eU, 0x81818181U, 0xf3f3f3f3U, 0xd7d7d7d7U, 0xfbfbfbfbU, 0x7c7c7c7cU, 0xe3e3e3e3U, 0x39393939U, 0x82828282U, 0x9b9b9b9bU, 0x2f2f2f2fU, 0xffffffffU, 0x87878787U, 0x34343434U, 0x8e8e8e8eU, 0x43434343U, 0x44444444U, 0xc4c4c4c4U, 0xdedededeU, 0xe9e9e9e9U, 0xcbcbcbcbU, 0x54545454U, 0x7b7b7b7bU, 0x94949494U, 0x32323232U, 0xa6a6a6a6U, 0xc2c2c2c2U, 0x23232323U, 0x3d3d3d3dU, 0xeeeeeeeeU, 0x4c4c4c4cU, 0x95959595U, 0x0b0b0b0bU, 0x42424242U, 0xfafafafaU, 0xc3c3c3c3U, 0x4e4e4e4eU, 0x08080808U, 0x2e2e2e2eU, 0xa1a1a1a1U, 0x66666666U, 0x28282828U, 0xd9d9d9d9U, 0x24242424U, 0xb2b2b2b2U, 0x76767676U, 0x5b5b5b5bU, 0xa2a2a2a2U, 0x49494949U, 0x6d6d6d6dU, 0x8b8b8b8bU, 0xd1d1d1d1U, 0x25252525U, 0x72727272U, 0xf8f8f8f8U, 0xf6f6f6f6U, 0x64646464U, 0x86868686U, 0x68686868U, 0x98989898U, 0x16161616U, 0xd4d4d4d4U, 0xa4a4a4a4U, 0x5c5c5c5cU, 0xccccccccU, 0x5d5d5d5dU, 0x65656565U, 0xb6b6b6b6U, 0x92929292U, 0x6c6c6c6cU, 0x70707070U, 0x48484848U, 0x50505050U, 0xfdfdfdfdU, 0xededededU, 0xb9b9b9b9U, 0xdadadadaU, 0x5e5e5e5eU, 0x15151515U, 0x46464646U, 0x57575757U, 0xa7a7a7a7U, 0x8d8d8d8dU, 0x9d9d9d9dU, 0x84848484U, 0x90909090U, 0xd8d8d8d8U, 0xababababU, 0x00000000U, 0x8c8c8c8cU, 0xbcbcbcbcU, 0xd3d3d3d3U, 0x0a0a0a0aU, 0xf7f7f7f7U, 0xe4e4e4e4U, 0x58585858U, 0x05050505U, 0xb8b8b8b8U, 0xb3b3b3b3U, 0x45454545U, 0x06060606U, 0xd0d0d0d0U, 0x2c2c2c2cU, 0x1e1e1e1eU, 0x8f8f8f8fU, 0xcacacacaU, 0x3f3f3f3fU, 0x0f0f0f0fU, 0x02020202U, 0xc1c1c1c1U, 0xafafafafU, 0xbdbdbdbdU, 0x03030303U, 0x01010101U, 0x13131313U, 0x8a8a8a8aU, 0x6b6b6b6bU, 0x3a3a3a3aU, 0x91919191U, 0x11111111U, 0x41414141U, 0x4f4f4f4fU, 0x67676767U, 0xdcdcdcdcU, 0xeaeaeaeaU, 0x97979797U, 0xf2f2f2f2U, 0xcfcfcfcfU, 0xcecececeU, 0xf0f0f0f0U, 0xb4b4b4b4U, 0xe6e6e6e6U, 0x73737373U, 0x96969696U, 0xacacacacU, 0x74747474U, 0x22222222U, 0xe7e7e7e7U, 0xadadadadU, 0x35353535U, 0x85858585U, 0xe2e2e2e2U, 0xf9f9f9f9U, 0x37373737U, 0xe8e8e8e8U, 0x1c1c1c1cU, 0x75757575U, 0xdfdfdfdfU, 0x6e6e6e6eU, 0x47474747U, 0xf1f1f1f1U, 0x1a1a1a1aU, 0x71717171U, 0x1d1d1d1dU, 0x29292929U, 0xc5c5c5c5U, 0x89898989U, 0x6f6f6f6fU, 0xb7b7b7b7U, 0x62626262U, 0x0e0e0e0eU, 0xaaaaaaaaU, 0x18181818U, 0xbebebebeU, 0x1b1b1b1bU, 0xfcfcfcfcU, 0x56565656U, 0x3e3e3e3eU, 0x4b4b4b4bU, 0xc6c6c6c6U, 0xd2d2d2d2U, 0x79797979U, 0x20202020U, 0x9a9a9a9aU, 0xdbdbdbdbU, 0xc0c0c0c0U, 0xfefefefeU, 0x78787878U, 0xcdcdcdcdU, 0x5a5a5a5aU, 0xf4f4f4f4U, 0x1f1f1f1fU, 0xddddddddU, 0xa8a8a8a8U, 0x33333333U, 0x88888888U, 0x07070707U, 0xc7c7c7c7U, 0x31313131U, 0xb1b1b1b1U, 0x12121212U, 0x10101010U, 0x59595959U, 0x27272727U, 0x80808080U, 0xececececU, 0x5f5f5f5fU, 0x60606060U, 0x51515151U, 0x7f7f7f7fU, 0xa9a9a9a9U, 0x19191919U, 0xb5b5b5b5U, 0x4a4a4a4aU, 0x0d0d0d0dU, 0x2d2d2d2dU, 0xe5e5e5e5U, 0x7a7a7a7aU, 0x9f9f9f9fU, 0x93939393U, 0xc9c9c9c9U, 0x9c9c9c9cU, 0xefefefefU, 0xa0a0a0a0U, 0xe0e0e0e0U, 0x3b3b3b3bU, 0x4d4d4d4dU, 0xaeaeaeaeU, 0x2a2a2a2aU, 0xf5f5f5f5U, 0xb0b0b0b0U, 0xc8c8c8c8U, 0xebebebebU, 0xbbbbbbbbU, 0x3c3c3c3cU, 0x83838383U, 0x53535353U, 0x99999999U, 0x61616161U, 0x17171717U, 0x2b2b2b2bU, 0x04040404U, 0x7e7e7e7eU, 0xbabababaU, 0x77777777U, 0xd6d6d6d6U, 0x26262626U, 0xe1e1e1e1U, 0x69696969U, 0x14141414U, 0x63636363U, 0x55555555U, 0x21212121U, 0x0c0c0c0cU, 0x7d7d7d7dU, }; static const uint32_t rcon[] = { 0x01000000, 0x02000000, 0x04000000, 0x08000000, 0x10000000, 0x20000000, 0x40000000, 0x80000000, 0x1B000000, 0x36000000, /* for 128-bit blocks, Rijndael never uses more than 10 rcon values */ }; #define GETU32(plaintext) (((uint32_t)(plaintext)[0] << 24) ^ \ ((uint32_t)(plaintext)[1] << 16) ^ \ ((uint32_t)(plaintext)[2] << 8) ^ \ ((uint32_t)(plaintext)[3])) #define PUTU32(ciphertext, st) { (ciphertext)[0] = (uint8_t)((st) >> 24); \ (ciphertext)[1] = (uint8_t)((st) >> 16); \ (ciphertext)[2] = (uint8_t)((st) >> 8); \ (ciphertext)[3] = (uint8_t)(st); } /** * Expand the cipher key into the encryption key schedule. * * @return the number of rounds for the given cipher key size. */ static int mc_rijndaelSetupEncrypt(uint32_t *rk, const uint8_t *key, int keybits) { int i = 0; uint32_t temp; rk[0] = GETU32(key ); rk[1] = GETU32(key + 4); rk[2] = GETU32(key + 8); rk[3] = GETU32(key + 12); if (keybits == 128) { for (;;) { temp = rk[3]; rk[4] = rk[0] ^ (Te4[(temp >> 16) & 0xff] & 0xff000000) ^ (Te4[(temp >> 8) & 0xff] & 0x00ff0000) ^ (Te4[(temp ) & 0xff] & 0x0000ff00) ^ (Te4[(temp >> 24) ] & 0x000000ff) ^ rcon[i]; rk[5] = rk[1] ^ rk[4]; rk[6] = rk[2] ^ rk[5]; rk[7] = rk[3] ^ rk[6]; if (++i == 10) return 10; rk += 4; } } rk[4] = GETU32(key + 16); rk[5] = GETU32(key + 20); if (keybits == 192) { for (;;) { temp = rk[ 5]; rk[ 6] = rk[ 0] ^ (Te4[(temp >> 16) & 0xff] & 0xff000000) ^ (Te4[(temp >> 8) & 0xff] & 0x00ff0000) ^ (Te4[(temp ) & 0xff] & 0x0000ff00) ^ (Te4[(temp >> 24) ] & 0x000000ff) ^ rcon[i]; rk[ 7] = rk[ 1] ^ rk[ 6]; rk[ 8] = rk[ 2] ^ rk[ 7]; rk[ 9] = rk[ 3] ^ rk[ 8]; if (++i == 8) return 12; rk[10] = rk[ 4] ^ rk[ 9]; rk[11] = rk[ 5] ^ rk[10]; rk += 6; } } rk[6] = GETU32(key + 24); rk[7] = GETU32(key + 28); if (keybits == 256) { for (;;) { temp = rk[ 7]; rk[ 8] = rk[ 0] ^ (Te4[(temp >> 16) & 0xff] & 0xff000000) ^ (Te4[(temp >> 8) & 0xff] & 0x00ff0000) ^ (Te4[(temp ) & 0xff] & 0x0000ff00) ^ (Te4[(temp >> 24) ] & 0x000000ff) ^ rcon[i]; rk[ 9] = rk[ 1] ^ rk[ 8]; rk[10] = rk[ 2] ^ rk[ 9]; rk[11] = rk[ 3] ^ rk[10]; if (++i == 7) return 14; temp = rk[11]; rk[12] = rk[ 4] ^ (Te4[(temp >> 24) ] & 0xff000000) ^ (Te4[(temp >> 16) & 0xff] & 0x00ff0000) ^ (Te4[(temp >> 8) & 0xff] & 0x0000ff00) ^ (Te4[(temp ) & 0xff] & 0x000000ff); rk[13] = rk[ 5] ^ rk[12]; rk[14] = rk[ 6] ^ rk[13]; rk[15] = rk[ 7] ^ rk[14]; rk += 8; } } return 0; } /** * Expand the cipher key into the decryption key schedule. * * @return the number of rounds for the given cipher key size. */ static int mc_rijndaelSetupDecrypt(uint32_t *rk, const uint8_t *key, int keybits) { int nrounds, i, j; uint32_t temp; /* expand the cipher key: */ nrounds = mc_rijndaelSetupEncrypt(rk, key, keybits); /* invert the order of the round keys: */ for (i = 0, j = 4*nrounds; i < j; i += 4, j -= 4) { temp = rk[i ]; rk[i ] = rk[j ]; rk[j ] = temp; temp = rk[i + 1]; rk[i + 1] = rk[j + 1]; rk[j + 1] = temp; temp = rk[i + 2]; rk[i + 2] = rk[j + 2]; rk[j + 2] = temp; temp = rk[i + 3]; rk[i + 3] = rk[j + 3]; rk[j + 3] = temp; } /* apply the inverse MixColumn transform to all round keys but the first and the last: */ for (i = 1; i < nrounds; i++) { rk += 4; rk[0] = Td0[Te4[(rk[0] >> 24) ] & 0xff] ^ Td1[Te4[(rk[0] >> 16) & 0xff] & 0xff] ^ Td2[Te4[(rk[0] >> 8) & 0xff] & 0xff] ^ Td3[Te4[(rk[0] ) & 0xff] & 0xff]; rk[1] = Td0[Te4[(rk[1] >> 24) ] & 0xff] ^ Td1[Te4[(rk[1] >> 16) & 0xff] & 0xff] ^ Td2[Te4[(rk[1] >> 8) & 0xff] & 0xff] ^ Td3[Te4[(rk[1] ) & 0xff] & 0xff]; rk[2] = Td0[Te4[(rk[2] >> 24) ] & 0xff] ^ Td1[Te4[(rk[2] >> 16) & 0xff] & 0xff] ^ Td2[Te4[(rk[2] >> 8) & 0xff] & 0xff] ^ Td3[Te4[(rk[2] ) & 0xff] & 0xff]; rk[3] = Td0[Te4[(rk[3] >> 24) ] & 0xff] ^ Td1[Te4[(rk[3] >> 16) & 0xff] & 0xff] ^ Td2[Te4[(rk[3] >> 8) & 0xff] & 0xff] ^ Td3[Te4[(rk[3] ) & 0xff] & 0xff]; } return nrounds; } static void mc_rijndaelEncrypt(const uint32_t *rk, int nrounds, const uint8_t plaintext[16], uint8_t ciphertext[16]) { uint32_t s0, s1, s2, s3, t0, t1, t2, t3; #ifndef FULL_UNROLL int r; #endif /* ?FULL_UNROLL */ /* * map byte array block to cipher state * and add initial round key: */ s0 = GETU32(plaintext ) ^ rk[0]; s1 = GETU32(plaintext + 4) ^ rk[1]; s2 = GETU32(plaintext + 8) ^ rk[2]; s3 = GETU32(plaintext + 12) ^ rk[3]; #ifdef FULL_UNROLL /* round 1: */ t0 = Te0[s0 >> 24] ^ Te1[(s1 >> 16) & 0xff] ^ Te2[(s2 >> 8) & 0xff] ^ Te3[s3 & 0xff] ^ rk[ 4]; t1 = Te0[s1 >> 24] ^ Te1[(s2 >> 16) & 0xff] ^ Te2[(s3 >> 8) & 0xff] ^ Te3[s0 & 0xff] ^ rk[ 5]; t2 = Te0[s2 >> 24] ^ Te1[(s3 >> 16) & 0xff] ^ Te2[(s0 >> 8) & 0xff] ^ Te3[s1 & 0xff] ^ rk[ 6]; t3 = Te0[s3 >> 24] ^ Te1[(s0 >> 16) & 0xff] ^ Te2[(s1 >> 8) & 0xff] ^ Te3[s2 & 0xff] ^ rk[ 7]; /* round 2: */ s0 = Te0[t0 >> 24] ^ Te1[(t1 >> 16) & 0xff] ^ Te2[(t2 >> 8) & 0xff] ^ Te3[t3 & 0xff] ^ rk[ 8]; s1 = Te0[t1 >> 24] ^ Te1[(t2 >> 16) & 0xff] ^ Te2[(t3 >> 8) & 0xff] ^ Te3[t0 & 0xff] ^ rk[ 9]; s2 = Te0[t2 >> 24] ^ Te1[(t3 >> 16) & 0xff] ^ Te2[(t0 >> 8) & 0xff] ^ Te3[t1 & 0xff] ^ rk[10]; s3 = Te0[t3 >> 24] ^ Te1[(t0 >> 16) & 0xff] ^ Te2[(t1 >> 8) & 0xff] ^ Te3[t2 & 0xff] ^ rk[11]; /* round 3: */ t0 = Te0[s0 >> 24] ^ Te1[(s1 >> 16) & 0xff] ^ Te2[(s2 >> 8) & 0xff] ^ Te3[s3 & 0xff] ^ rk[12]; t1 = Te0[s1 >> 24] ^ Te1[(s2 >> 16) & 0xff] ^ Te2[(s3 >> 8) & 0xff] ^ Te3[s0 & 0xff] ^ rk[13]; t2 = Te0[s2 >> 24] ^ Te1[(s3 >> 16) & 0xff] ^ Te2[(s0 >> 8) & 0xff] ^ Te3[s1 & 0xff] ^ rk[14]; t3 = Te0[s3 >> 24] ^ Te1[(s0 >> 16) & 0xff] ^ Te2[(s1 >> 8) & 0xff] ^ Te3[s2 & 0xff] ^ rk[15]; /* round 4: */ s0 = Te0[t0 >> 24] ^ Te1[(t1 >> 16) & 0xff] ^ Te2[(t2 >> 8) & 0xff] ^ Te3[t3 & 0xff] ^ rk[16]; s1 = Te0[t1 >> 24] ^ Te1[(t2 >> 16) & 0xff] ^ Te2[(t3 >> 8) & 0xff] ^ Te3[t0 & 0xff] ^ rk[17]; s2 = Te0[t2 >> 24] ^ Te1[(t3 >> 16) & 0xff] ^ Te2[(t0 >> 8) & 0xff] ^ Te3[t1 & 0xff] ^ rk[18]; s3 = Te0[t3 >> 24] ^ Te1[(t0 >> 16) & 0xff] ^ Te2[(t1 >> 8) & 0xff] ^ Te3[t2 & 0xff] ^ rk[19]; /* round 5: */ t0 = Te0[s0 >> 24] ^ Te1[(s1 >> 16) & 0xff] ^ Te2[(s2 >> 8) & 0xff] ^ Te3[s3 & 0xff] ^ rk[20]; t1 = Te0[s1 >> 24] ^ Te1[(s2 >> 16) & 0xff] ^ Te2[(s3 >> 8) & 0xff] ^ Te3[s0 & 0xff] ^ rk[21]; t2 = Te0[s2 >> 24] ^ Te1[(s3 >> 16) & 0xff] ^ Te2[(s0 >> 8) & 0xff] ^ Te3[s1 & 0xff] ^ rk[22]; t3 = Te0[s3 >> 24] ^ Te1[(s0 >> 16) & 0xff] ^ Te2[(s1 >> 8) & 0xff] ^ Te3[s2 & 0xff] ^ rk[23]; /* round 6: */ s0 = Te0[t0 >> 24] ^ Te1[(t1 >> 16) & 0xff] ^ Te2[(t2 >> 8) & 0xff] ^ Te3[t3 & 0xff] ^ rk[24]; s1 = Te0[t1 >> 24] ^ Te1[(t2 >> 16) & 0xff] ^ Te2[(t3 >> 8) & 0xff] ^ Te3[t0 & 0xff] ^ rk[25]; s2 = Te0[t2 >> 24] ^ Te1[(t3 >> 16) & 0xff] ^ Te2[(t0 >> 8) & 0xff] ^ Te3[t1 & 0xff] ^ rk[26]; s3 = Te0[t3 >> 24] ^ Te1[(t0 >> 16) & 0xff] ^ Te2[(t1 >> 8) & 0xff] ^ Te3[t2 & 0xff] ^ rk[27]; /* round 7: */ t0 = Te0[s0 >> 24] ^ Te1[(s1 >> 16) & 0xff] ^ Te2[(s2 >> 8) & 0xff] ^ Te3[s3 & 0xff] ^ rk[28]; t1 = Te0[s1 >> 24] ^ Te1[(s2 >> 16) & 0xff] ^ Te2[(s3 >> 8) & 0xff] ^ Te3[s0 & 0xff] ^ rk[29]; t2 = Te0[s2 >> 24] ^ Te1[(s3 >> 16) & 0xff] ^ Te2[(s0 >> 8) & 0xff] ^ Te3[s1 & 0xff] ^ rk[30]; t3 = Te0[s3 >> 24] ^ Te1[(s0 >> 16) & 0xff] ^ Te2[(s1 >> 8) & 0xff] ^ Te3[s2 & 0xff] ^ rk[31]; /* round 8: */ s0 = Te0[t0 >> 24] ^ Te1[(t1 >> 16) & 0xff] ^ Te2[(t2 >> 8) & 0xff] ^ Te3[t3 & 0xff] ^ rk[32]; s1 = Te0[t1 >> 24] ^ Te1[(t2 >> 16) & 0xff] ^ Te2[(t3 >> 8) & 0xff] ^ Te3[t0 & 0xff] ^ rk[33]; s2 = Te0[t2 >> 24] ^ Te1[(t3 >> 16) & 0xff] ^ Te2[(t0 >> 8) & 0xff] ^ Te3[t1 & 0xff] ^ rk[34]; s3 = Te0[t3 >> 24] ^ Te1[(t0 >> 16) & 0xff] ^ Te2[(t1 >> 8) & 0xff] ^ Te3[t2 & 0xff] ^ rk[35]; /* round 9: */ t0 = Te0[s0 >> 24] ^ Te1[(s1 >> 16) & 0xff] ^ Te2[(s2 >> 8) & 0xff] ^ Te3[s3 & 0xff] ^ rk[36]; t1 = Te0[s1 >> 24] ^ Te1[(s2 >> 16) & 0xff] ^ Te2[(s3 >> 8) & 0xff] ^ Te3[s0 & 0xff] ^ rk[37]; t2 = Te0[s2 >> 24] ^ Te1[(s3 >> 16) & 0xff] ^ Te2[(s0 >> 8) & 0xff] ^ Te3[s1 & 0xff] ^ rk[38]; t3 = Te0[s3 >> 24] ^ Te1[(s0 >> 16) & 0xff] ^ Te2[(s1 >> 8) & 0xff] ^ Te3[s2 & 0xff] ^ rk[39]; if (nrounds > 10) { /* round 10: */ s0 = Te0[t0 >> 24] ^ Te1[(t1 >> 16) & 0xff] ^ Te2[(t2 >> 8) & 0xff] ^ Te3[t3 & 0xff] ^ rk[40]; s1 = Te0[t1 >> 24] ^ Te1[(t2 >> 16) & 0xff] ^ Te2[(t3 >> 8) & 0xff] ^ Te3[t0 & 0xff] ^ rk[41]; s2 = Te0[t2 >> 24] ^ Te1[(t3 >> 16) & 0xff] ^ Te2[(t0 >> 8) & 0xff] ^ Te3[t1 & 0xff] ^ rk[42]; s3 = Te0[t3 >> 24] ^ Te1[(t0 >> 16) & 0xff] ^ Te2[(t1 >> 8) & 0xff] ^ Te3[t2 & 0xff] ^ rk[43]; /* round 11: */ t0 = Te0[s0 >> 24] ^ Te1[(s1 >> 16) & 0xff] ^ Te2[(s2 >> 8) & 0xff] ^ Te3[s3 & 0xff] ^ rk[44]; t1 = Te0[s1 >> 24] ^ Te1[(s2 >> 16) & 0xff] ^ Te2[(s3 >> 8) & 0xff] ^ Te3[s0 & 0xff] ^ rk[45]; t2 = Te0[s2 >> 24] ^ Te1[(s3 >> 16) & 0xff] ^ Te2[(s0 >> 8) & 0xff] ^ Te3[s1 & 0xff] ^ rk[46]; t3 = Te0[s3 >> 24] ^ Te1[(s0 >> 16) & 0xff] ^ Te2[(s1 >> 8) & 0xff] ^ Te3[s2 & 0xff] ^ rk[47]; if (nrounds > 12) { /* round 12: */ s0 = Te0[t0 >> 24] ^ Te1[(t1 >> 16) & 0xff] ^ Te2[(t2 >> 8) & 0xff] ^ Te3[t3 & 0xff] ^ rk[48]; s1 = Te0[t1 >> 24] ^ Te1[(t2 >> 16) & 0xff] ^ Te2[(t3 >> 8) & 0xff] ^ Te3[t0 & 0xff] ^ rk[49]; s2 = Te0[t2 >> 24] ^ Te1[(t3 >> 16) & 0xff] ^ Te2[(t0 >> 8) & 0xff] ^ Te3[t1 & 0xff] ^ rk[50]; s3 = Te0[t3 >> 24] ^ Te1[(t0 >> 16) & 0xff] ^ Te2[(t1 >> 8) & 0xff] ^ Te3[t2 & 0xff] ^ rk[51]; /* round 13: */ t0 = Te0[s0 >> 24] ^ Te1[(s1 >> 16) & 0xff] ^ Te2[(s2 >> 8) & 0xff] ^ Te3[s3 & 0xff] ^ rk[52]; t1 = Te0[s1 >> 24] ^ Te1[(s2 >> 16) & 0xff] ^ Te2[(s3 >> 8) & 0xff] ^ Te3[s0 & 0xff] ^ rk[53]; t2 = Te0[s2 >> 24] ^ Te1[(s3 >> 16) & 0xff] ^ Te2[(s0 >> 8) & 0xff] ^ Te3[s1 & 0xff] ^ rk[54]; t3 = Te0[s3 >> 24] ^ Te1[(s0 >> 16) & 0xff] ^ Te2[(s1 >> 8) & 0xff] ^ Te3[s2 & 0xff] ^ rk[55]; } } rk += nrounds << 2; #else /* !FULL_UNROLL */ /* * nrounds - 1 full rounds: */ r = nrounds >> 1; for (;;) { t0 = Te0[(s0 >> 24) ] ^ Te1[(s1 >> 16) & 0xff] ^ Te2[(s2 >> 8) & 0xff] ^ Te3[(s3 ) & 0xff] ^ rk[4]; t1 = Te0[(s1 >> 24) ] ^ Te1[(s2 >> 16) & 0xff] ^ Te2[(s3 >> 8) & 0xff] ^ Te3[(s0 ) & 0xff] ^ rk[5]; t2 = Te0[(s2 >> 24) ] ^ Te1[(s3 >> 16) & 0xff] ^ Te2[(s0 >> 8) & 0xff] ^ Te3[(s1 ) & 0xff] ^ rk[6]; t3 = Te0[(s3 >> 24) ] ^ Te1[(s0 >> 16) & 0xff] ^ Te2[(s1 >> 8) & 0xff] ^ Te3[(s2 ) & 0xff] ^ rk[7]; rk += 8; if (--r == 0) break; s0 = Te0[(t0 >> 24) ] ^ Te1[(t1 >> 16) & 0xff] ^ Te2[(t2 >> 8) & 0xff] ^ Te3[(t3 ) & 0xff] ^ rk[0]; s1 = Te0[(t1 >> 24) ] ^ Te1[(t2 >> 16) & 0xff] ^ Te2[(t3 >> 8) & 0xff] ^ Te3[(t0 ) & 0xff] ^ rk[1]; s2 = Te0[(t2 >> 24) ] ^ Te1[(t3 >> 16) & 0xff] ^ Te2[(t0 >> 8) & 0xff] ^ Te3[(t1 ) & 0xff] ^ rk[2]; s3 = Te0[(t3 >> 24) ] ^ Te1[(t0 >> 16) & 0xff] ^ Te2[(t1 >> 8) & 0xff] ^ Te3[(t2 ) & 0xff] ^ rk[3]; } #endif /* ?FULL_UNROLL */ /* * apply last round and * map cipher state to byte array block: */ s0 = (Te4[(t0 >> 24) ] & 0xff000000) ^ (Te4[(t1 >> 16) & 0xff] & 0x00ff0000) ^ (Te4[(t2 >> 8) & 0xff] & 0x0000ff00) ^ (Te4[(t3 ) & 0xff] & 0x000000ff) ^ rk[0]; PUTU32(ciphertext , s0); s1 = (Te4[(t1 >> 24) ] & 0xff000000) ^ (Te4[(t2 >> 16) & 0xff] & 0x00ff0000) ^ (Te4[(t3 >> 8) & 0xff] & 0x0000ff00) ^ (Te4[(t0 ) & 0xff] & 0x000000ff) ^ rk[1]; PUTU32(ciphertext + 4, s1); s2 = (Te4[(t2 >> 24) ] & 0xff000000) ^ (Te4[(t3 >> 16) & 0xff] & 0x00ff0000) ^ (Te4[(t0 >> 8) & 0xff] & 0x0000ff00) ^ (Te4[(t1 ) & 0xff] & 0x000000ff) ^ rk[2]; PUTU32(ciphertext + 8, s2); s3 = (Te4[(t3 >> 24) ] & 0xff000000) ^ (Te4[(t0 >> 16) & 0xff] & 0x00ff0000) ^ (Te4[(t1 >> 8) & 0xff] & 0x0000ff00) ^ (Te4[(t2 ) & 0xff] & 0x000000ff) ^ rk[3]; PUTU32(ciphertext + 12, s3); } static void mc_rijndaelDecrypt(const uint32_t *rk, int nrounds, const uint8_t ciphertext[16], uint8_t plaintext[16]) { uint32_t s0, s1, s2, s3, t0, t1, t2, t3; #ifndef FULL_UNROLL int r; #endif /* ?FULL_UNROLL */ /* * map byte array block to cipher state * and add initial round key: */ s0 = GETU32(ciphertext ) ^ rk[0]; s1 = GETU32(ciphertext + 4) ^ rk[1]; s2 = GETU32(ciphertext + 8) ^ rk[2]; s3 = GETU32(ciphertext + 12) ^ rk[3]; #ifdef FULL_UNROLL /* round 1: */ t0 = Td0[s0 >> 24] ^ Td1[(s3 >> 16) & 0xff] ^ Td2[(s2 >> 8) & 0xff] ^ Td3[s1 & 0xff] ^ rk[ 4]; t1 = Td0[s1 >> 24] ^ Td1[(s0 >> 16) & 0xff] ^ Td2[(s3 >> 8) & 0xff] ^ Td3[s2 & 0xff] ^ rk[ 5]; t2 = Td0[s2 >> 24] ^ Td1[(s1 >> 16) & 0xff] ^ Td2[(s0 >> 8) & 0xff] ^ Td3[s3 & 0xff] ^ rk[ 6]; t3 = Td0[s3 >> 24] ^ Td1[(s2 >> 16) & 0xff] ^ Td2[(s1 >> 8) & 0xff] ^ Td3[s0 & 0xff] ^ rk[ 7]; /* round 2: */ s0 = Td0[t0 >> 24] ^ Td1[(t3 >> 16) & 0xff] ^ Td2[(t2 >> 8) & 0xff] ^ Td3[t1 & 0xff] ^ rk[ 8]; s1 = Td0[t1 >> 24] ^ Td1[(t0 >> 16) & 0xff] ^ Td2[(t3 >> 8) & 0xff] ^ Td3[t2 & 0xff] ^ rk[ 9]; s2 = Td0[t2 >> 24] ^ Td1[(t1 >> 16) & 0xff] ^ Td2[(t0 >> 8) & 0xff] ^ Td3[t3 & 0xff] ^ rk[10]; s3 = Td0[t3 >> 24] ^ Td1[(t2 >> 16) & 0xff] ^ Td2[(t1 >> 8) & 0xff] ^ Td3[t0 & 0xff] ^ rk[11]; /* round 3: */ t0 = Td0[s0 >> 24] ^ Td1[(s3 >> 16) & 0xff] ^ Td2[(s2 >> 8) & 0xff] ^ Td3[s1 & 0xff] ^ rk[12]; t1 = Td0[s1 >> 24] ^ Td1[(s0 >> 16) & 0xff] ^ Td2[(s3 >> 8) & 0xff] ^ Td3[s2 & 0xff] ^ rk[13]; t2 = Td0[s2 >> 24] ^ Td1[(s1 >> 16) & 0xff] ^ Td2[(s0 >> 8) & 0xff] ^ Td3[s3 & 0xff] ^ rk[14]; t3 = Td0[s3 >> 24] ^ Td1[(s2 >> 16) & 0xff] ^ Td2[(s1 >> 8) & 0xff] ^ Td3[s0 & 0xff] ^ rk[15]; /* round 4: */ s0 = Td0[t0 >> 24] ^ Td1[(t3 >> 16) & 0xff] ^ Td2[(t2 >> 8) & 0xff] ^ Td3[t1 & 0xff] ^ rk[16]; s1 = Td0[t1 >> 24] ^ Td1[(t0 >> 16) & 0xff] ^ Td2[(t3 >> 8) & 0xff] ^ Td3[t2 & 0xff] ^ rk[17]; s2 = Td0[t2 >> 24] ^ Td1[(t1 >> 16) & 0xff] ^ Td2[(t0 >> 8) & 0xff] ^ Td3[t3 & 0xff] ^ rk[18]; s3 = Td0[t3 >> 24] ^ Td1[(t2 >> 16) & 0xff] ^ Td2[(t1 >> 8) & 0xff] ^ Td3[t0 & 0xff] ^ rk[19]; /* round 5: */ t0 = Td0[s0 >> 24] ^ Td1[(s3 >> 16) & 0xff] ^ Td2[(s2 >> 8) & 0xff] ^ Td3[s1 & 0xff] ^ rk[20]; t1 = Td0[s1 >> 24] ^ Td1[(s0 >> 16) & 0xff] ^ Td2[(s3 >> 8) & 0xff] ^ Td3[s2 & 0xff] ^ rk[21]; t2 = Td0[s2 >> 24] ^ Td1[(s1 >> 16) & 0xff] ^ Td2[(s0 >> 8) & 0xff] ^ Td3[s3 & 0xff] ^ rk[22]; t3 = Td0[s3 >> 24] ^ Td1[(s2 >> 16) & 0xff] ^ Td2[(s1 >> 8) & 0xff] ^ Td3[s0 & 0xff] ^ rk[23]; /* round 6: */ s0 = Td0[t0 >> 24] ^ Td1[(t3 >> 16) & 0xff] ^ Td2[(t2 >> 8) & 0xff] ^ Td3[t1 & 0xff] ^ rk[24]; s1 = Td0[t1 >> 24] ^ Td1[(t0 >> 16) & 0xff] ^ Td2[(t3 >> 8) & 0xff] ^ Td3[t2 & 0xff] ^ rk[25]; s2 = Td0[t2 >> 24] ^ Td1[(t1 >> 16) & 0xff] ^ Td2[(t0 >> 8) & 0xff] ^ Td3[t3 & 0xff] ^ rk[26]; s3 = Td0[t3 >> 24] ^ Td1[(t2 >> 16) & 0xff] ^ Td2[(t1 >> 8) & 0xff] ^ Td3[t0 & 0xff] ^ rk[27]; /* round 7: */ t0 = Td0[s0 >> 24] ^ Td1[(s3 >> 16) & 0xff] ^ Td2[(s2 >> 8) & 0xff] ^ Td3[s1 & 0xff] ^ rk[28]; t1 = Td0[s1 >> 24] ^ Td1[(s0 >> 16) & 0xff] ^ Td2[(s3 >> 8) & 0xff] ^ Td3[s2 & 0xff] ^ rk[29]; t2 = Td0[s2 >> 24] ^ Td1[(s1 >> 16) & 0xff] ^ Td2[(s0 >> 8) & 0xff] ^ Td3[s3 & 0xff] ^ rk[30]; t3 = Td0[s3 >> 24] ^ Td1[(s2 >> 16) & 0xff] ^ Td2[(s1 >> 8) & 0xff] ^ Td3[s0 & 0xff] ^ rk[31]; /* round 8: */ s0 = Td0[t0 >> 24] ^ Td1[(t3 >> 16) & 0xff] ^ Td2[(t2 >> 8) & 0xff] ^ Td3[t1 & 0xff] ^ rk[32]; s1 = Td0[t1 >> 24] ^ Td1[(t0 >> 16) & 0xff] ^ Td2[(t3 >> 8) & 0xff] ^ Td3[t2 & 0xff] ^ rk[33]; s2 = Td0[t2 >> 24] ^ Td1[(t1 >> 16) & 0xff] ^ Td2[(t0 >> 8) & 0xff] ^ Td3[t3 & 0xff] ^ rk[34]; s3 = Td0[t3 >> 24] ^ Td1[(t2 >> 16) & 0xff] ^ Td2[(t1 >> 8) & 0xff] ^ Td3[t0 & 0xff] ^ rk[35]; /* round 9: */ t0 = Td0[s0 >> 24] ^ Td1[(s3 >> 16) & 0xff] ^ Td2[(s2 >> 8) & 0xff] ^ Td3[s1 & 0xff] ^ rk[36]; t1 = Td0[s1 >> 24] ^ Td1[(s0 >> 16) & 0xff] ^ Td2[(s3 >> 8) & 0xff] ^ Td3[s2 & 0xff] ^ rk[37]; t2 = Td0[s2 >> 24] ^ Td1[(s1 >> 16) & 0xff] ^ Td2[(s0 >> 8) & 0xff] ^ Td3[s3 & 0xff] ^ rk[38]; t3 = Td0[s3 >> 24] ^ Td1[(s2 >> 16) & 0xff] ^ Td2[(s1 >> 8) & 0xff] ^ Td3[s0 & 0xff] ^ rk[39]; if (nrounds > 10) { /* round 10: */ s0 = Td0[t0 >> 24] ^ Td1[(t3 >> 16) & 0xff] ^ Td2[(t2 >> 8) & 0xff] ^ Td3[t1 & 0xff] ^ rk[40]; s1 = Td0[t1 >> 24] ^ Td1[(t0 >> 16) & 0xff] ^ Td2[(t3 >> 8) & 0xff] ^ Td3[t2 & 0xff] ^ rk[41]; s2 = Td0[t2 >> 24] ^ Td1[(t1 >> 16) & 0xff] ^ Td2[(t0 >> 8) & 0xff] ^ Td3[t3 & 0xff] ^ rk[42]; s3 = Td0[t3 >> 24] ^ Td1[(t2 >> 16) & 0xff] ^ Td2[(t1 >> 8) & 0xff] ^ Td3[t0 & 0xff] ^ rk[43]; /* round 11: */ t0 = Td0[s0 >> 24] ^ Td1[(s3 >> 16) & 0xff] ^ Td2[(s2 >> 8) & 0xff] ^ Td3[s1 & 0xff] ^ rk[44]; t1 = Td0[s1 >> 24] ^ Td1[(s0 >> 16) & 0xff] ^ Td2[(s3 >> 8) & 0xff] ^ Td3[s2 & 0xff] ^ rk[45]; t2 = Td0[s2 >> 24] ^ Td1[(s1 >> 16) & 0xff] ^ Td2[(s0 >> 8) & 0xff] ^ Td3[s3 & 0xff] ^ rk[46]; t3 = Td0[s3 >> 24] ^ Td1[(s2 >> 16) & 0xff] ^ Td2[(s1 >> 8) & 0xff] ^ Td3[s0 & 0xff] ^ rk[47]; if (nrounds > 12) { /* round 12: */ s0 = Td0[t0 >> 24] ^ Td1[(t3 >> 16) & 0xff] ^ Td2[(t2 >> 8) & 0xff] ^ Td3[t1 & 0xff] ^ rk[48]; s1 = Td0[t1 >> 24] ^ Td1[(t0 >> 16) & 0xff] ^ Td2[(t3 >> 8) & 0xff] ^ Td3[t2 & 0xff] ^ rk[49]; s2 = Td0[t2 >> 24] ^ Td1[(t1 >> 16) & 0xff] ^ Td2[(t0 >> 8) & 0xff] ^ Td3[t3 & 0xff] ^ rk[50]; s3 = Td0[t3 >> 24] ^ Td1[(t2 >> 16) & 0xff] ^ Td2[(t1 >> 8) & 0xff] ^ Td3[t0 & 0xff] ^ rk[51]; /* round 13: */ t0 = Td0[s0 >> 24] ^ Td1[(s3 >> 16) & 0xff] ^ Td2[(s2 >> 8) & 0xff] ^ Td3[s1 & 0xff] ^ rk[52]; t1 = Td0[s1 >> 24] ^ Td1[(s0 >> 16) & 0xff] ^ Td2[(s3 >> 8) & 0xff] ^ Td3[s2 & 0xff] ^ rk[53]; t2 = Td0[s2 >> 24] ^ Td1[(s1 >> 16) & 0xff] ^ Td2[(s0 >> 8) & 0xff] ^ Td3[s3 & 0xff] ^ rk[54]; t3 = Td0[s3 >> 24] ^ Td1[(s2 >> 16) & 0xff] ^ Td2[(s1 >> 8) & 0xff] ^ Td3[s0 & 0xff] ^ rk[55]; } } rk += nrounds << 2; #else /* !FULL_UNROLL */ /* * nrounds - 1 full rounds: */ r = nrounds >> 1; for (;;) { t0 = Td0[(s0 >> 24) ] ^ Td1[(s3 >> 16) & 0xff] ^ Td2[(s2 >> 8) & 0xff] ^ Td3[(s1 ) & 0xff] ^ rk[4]; t1 = Td0[(s1 >> 24) ] ^ Td1[(s0 >> 16) & 0xff] ^ Td2[(s3 >> 8) & 0xff] ^ Td3[(s2 ) & 0xff] ^ rk[5]; t2 = Td0[(s2 >> 24) ] ^ Td1[(s1 >> 16) & 0xff] ^ Td2[(s0 >> 8) & 0xff] ^ Td3[(s3 ) & 0xff] ^ rk[6]; t3 = Td0[(s3 >> 24) ] ^ Td1[(s2 >> 16) & 0xff] ^ Td2[(s1 >> 8) & 0xff] ^ Td3[(s0 ) & 0xff] ^ rk[7]; rk += 8; if (--r == 0) break; s0 = Td0[(t0 >> 24) ] ^ Td1[(t3 >> 16) & 0xff] ^ Td2[(t2 >> 8) & 0xff] ^ Td3[(t1 ) & 0xff] ^ rk[0]; s1 = Td0[(t1 >> 24) ] ^ Td1[(t0 >> 16) & 0xff] ^ Td2[(t3 >> 8) & 0xff] ^ Td3[(t2 ) & 0xff] ^ rk[1]; s2 = Td0[(t2 >> 24) ] ^ Td1[(t1 >> 16) & 0xff] ^ Td2[(t0 >> 8) & 0xff] ^ Td3[(t3 ) & 0xff] ^ rk[2]; s3 = Td0[(t3 >> 24) ] ^ Td1[(t2 >> 16) & 0xff] ^ Td2[(t1 >> 8) & 0xff] ^ Td3[(t0 ) & 0xff] ^ rk[3]; } #endif /* ?FULL_UNROLL */ /* * apply last round and * map cipher state to byte array block: */ s0 = (Td4[(t0 >> 24) ] & 0xff000000) ^ (Td4[(t3 >> 16) & 0xff] & 0x00ff0000) ^ (Td4[(t2 >> 8) & 0xff] & 0x0000ff00) ^ (Td4[(t1 ) & 0xff] & 0x000000ff) ^ rk[0]; PUTU32(plaintext , s0); s1 = (Td4[(t1 >> 24) ] & 0xff000000) ^ (Td4[(t0 >> 16) & 0xff] & 0x00ff0000) ^ (Td4[(t3 >> 8) & 0xff] & 0x0000ff00) ^ (Td4[(t2 ) & 0xff] & 0x000000ff) ^ rk[1]; PUTU32(plaintext + 4, s1); s2 = (Td4[(t2 >> 24) ] & 0xff000000) ^ (Td4[(t1 >> 16) & 0xff] & 0x00ff0000) ^ (Td4[(t0 >> 8) & 0xff] & 0x0000ff00) ^ (Td4[(t3 ) & 0xff] & 0x000000ff) ^ rk[2]; PUTU32(plaintext + 8, s2); s3 = (Td4[(t3 >> 24) ] & 0xff000000) ^ (Td4[(t2 >> 16) & 0xff] & 0x00ff0000) ^ (Td4[(t1 >> 8) & 0xff] & 0x0000ff00) ^ (Td4[(t0 ) & 0xff] & 0x000000ff) ^ rk[3]; PUTU32(plaintext + 12, s3); } /* OCaml front-end */ #define keybits_of_r(x) ((x - 6) * 32) #define __blocked_loop(f, src, dst, rk, rounds, blocks) \ while (blocks --) { \ f (rk, rounds, src, dst); \ src += 16 ; dst += 16 ; \ } static inline void _mc_aes_enc_blocks (const uint8_t *src, uint8_t *dst, const uint32_t *rk, uint8_t rounds, size_t blocks) { __blocked_loop (mc_rijndaelEncrypt, src, dst, rk, rounds, blocks); } static inline void _mc_aes_dec_blocks (const uint8_t *src, uint8_t *dst, const uint32_t *rk, uint8_t rounds, size_t blocks) { __blocked_loop (mc_rijndaelDecrypt, src, dst, rk, rounds, blocks); } CAMLprim value mc_aes_rk_size_generic (value rounds) { return Val_int (RKLENGTH (keybits_of_r (Int_val (rounds))) * sizeof(uint32_t)); } CAMLprim value mc_aes_derive_e_key_generic (value key, value rk, value rounds) { mc_rijndaelSetupEncrypt (_bp_uint32 (rk), _st_uint8 (key), keybits_of_r (Int_val (rounds))); return Val_unit; } CAMLprim value mc_aes_derive_d_key_generic (value key, value kr, value rounds, value __unused (rk)) { mc_rijndaelSetupDecrypt (_bp_uint32 (kr), _st_uint8 (key), keybits_of_r (Int_val (rounds))); return Val_unit; } CAMLprim value mc_aes_enc_generic (value src, value off1, value dst, value off2, value rk, value rounds, value blocks) { _mc_aes_enc_blocks ( _st_uint8_off (src, off1), _bp_uint8_off (dst, off2), _st_uint32 (rk), Int_val (rounds), Int_val (blocks) ); return Val_unit; } CAMLprim value mc_aes_dec_generic (value src, value off1, value dst, value off2, value rk, value rounds, value blocks) { _mc_aes_dec_blocks ( _st_uint8_off(src, off1), _bp_uint8_off(dst, off2), _st_uint32 (rk), Int_val (rounds), Int_val (blocks) ); return Val_unit; }
mirage-crypto
2.0.2
ISC
https://github.com/mirage/mirage-crypto
git+https://github.com/mirage/mirage-crypto.git
h
mirage-crypto-2.0.2/src/native/bitfn.h
/* * Copyright (C) 2006-2009 Vincent Hanquez <vincent@snarc.org> * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #ifndef BITFN_H #define BITFN_H #include <stdint.h> # if (defined(__i386__)) # define ARCH_HAS_SWAP32 static inline uint32_t bitfn_swap32(uint32_t a) { __asm__ ("bswap %0" : "=r" (a) : "0" (a)); return a; } /**********************************************************/ # elif (defined(__arm__)) # define ARCH_HAS_SWAP32 static inline uint32_t bitfn_swap32(uint32_t a) { uint32_t tmp = a; __asm__ volatile ("eor %1, %0, %0, ror #16\n" "bic %1, %1, #0xff0000\n" "mov %0, %0, ror #8\n" "eor %0, %0, %1, lsr #8\n" : "=r" (a), "=r" (tmp) : "0" (a), "1" (tmp)); return a; } /**********************************************************/ # elif defined(__x86_64__) # define ARCH_HAS_SWAP32 # define ARCH_HAS_SWAP64 static inline uint32_t bitfn_swap32(uint32_t a) { __asm__ ("bswap %0" : "=r" (a) : "0" (a)); return a; } static inline uint64_t bitfn_swap64(uint64_t a) { __asm__ ("bswap %0" : "=r" (a) : "0" (a)); return a; } # endif #ifndef ARCH_HAS_SWAP32 static inline uint32_t bitfn_swap32(uint32_t a) { return (a << 24) | ((a & 0xff00) << 8) | ((a >> 8) & 0xff00) | (a >> 24); } #endif #ifndef ARCH_HAS_SWAP64 static inline uint64_t bitfn_swap64(uint64_t a) { return ((uint64_t) bitfn_swap32((uint32_t) (a >> 32))) | (((uint64_t) bitfn_swap32((uint32_t) a)) << 32); } #endif static inline uint32_t rol32(uint32_t word, uint32_t shift) { return (word << shift) | (word >> (32 - shift)); } static inline uint32_t ror32(uint32_t word, uint32_t shift) { return (word >> shift) | (word << (32 - shift)); } static inline uint64_t rol64(uint64_t word, uint32_t shift) { return (word << shift) | (word >> (64 - shift)); } static inline uint64_t ror64(uint64_t word, uint32_t shift) { return (word >> shift) | (word << (64 - shift)); } static inline void array_swap32(uint32_t *d, const uint32_t *s, uint32_t nb) { while (nb--) *d++ = bitfn_swap32(*s++); } static inline void array_swap64(uint64_t *d, const uint64_t *s, uint32_t nb) { while (nb--) *d++ = bitfn_swap64(*s++); } static inline void array_copy32(uint32_t *d, const uint32_t *s, uint32_t nb) { while (nb--) *d++ = *s++; } static inline void array_copy64(uint64_t *d, const uint64_t *s, uint32_t nb) { while (nb--) *d++ = *s++; } #if defined(_MSC_VER) || defined(__BYTE_ORDER__) #if defined(_MSC_VER) || (__ORDER_LITTLE_ENDIAN__ == __BYTE_ORDER__) # define be32_to_cpu(a) bitfn_swap32(a) # define cpu_to_be32(a) bitfn_swap32(a) # define le32_to_cpu(a) (a) # define cpu_to_le32(a) (a) # define be64_to_cpu(a) bitfn_swap64(a) # define cpu_to_be64(a) bitfn_swap64(a) # define le64_to_cpu(a) (a) # define cpu_to_le64(a) (a) # define cpu_to_le32_array(d, s, l) array_copy32(d, s, l) # define le32_to_cpu_array(d, s, l) array_copy32(d, s, l) # define cpu_to_be32_array(d, s, l) array_swap32(d, s, l) # define be32_to_cpu_array(d, s, l) array_swap32(d, s, l) # define cpu_to_le64_array(d, s, l) array_copy64(d, s, l) # define le64_to_cpu_array(d, s, l) array_copy64(d, s, l) # define cpu_to_be64_array(d, s, l) array_swap64(d, s, l) # define be64_to_cpu_array(d, s, l) array_swap64(d, s, l) # define ARCH_IS_LITTLE_ENDIAN #elif __ORDER_BIG_ENDIAN__ == __BYTE_ORDER__ # define be32_to_cpu(a) (a) # define cpu_to_be32(a) (a) # define le32_to_cpu(a) bitfn_swap32(a) # define cpu_to_le32(a) bitfn_swap32(a) # define be64_to_cpu(a) (a) # define cpu_to_be64(a) (a) # define le64_to_cpu(a) bitfn_swap64(a) # define cpu_to_le64(a) bitfn_swap64(a) # define cpu_to_le32_array(d, s, l) array_swap32(d, s, l) # define le32_to_cpu_array(d, s, l) array_swap32(d, s, l) # define cpu_to_be32_array(d, s, l) array_copy32(d, s, l) # define be32_to_cpu_array(d, s, l) array_copy32(d, s, l) # define cpu_to_le64_array(d, s, l) array_swap64(d, s, l) # define le64_to_cpu_array(d, s, l) array_swap64(d, s, l) # define cpu_to_be64_array(d, s, l) array_copy64(d, s, l) # define be64_to_cpu_array(d, s, l) array_copy64(d, s, l) # define ARCH_IS_BIG_ENDIAN #else # error "endian is neither big nor little endian" #endif #else # error "__BYTE_ORDER__ is not defined" #endif #endif /* !BITFN_H */
mirage-crypto
2.0.2
ISC
https://github.com/mirage/mirage-crypto
git+https://github.com/mirage/mirage-crypto.git
c
mirage-crypto-2.0.2/src/native/chacha.c
/* Based on https://github.com/abeaumont/ocaml-chacha.git */ #include "mirage_crypto.h" extern void mc_chacha_core_generic(int count, const uint32_t *src, uint32_t *dst); #ifdef __mc_ACCELERATE__ static inline void mc_chacha_quarterround(uint32_t *x, int a, int b, int c, int d) { x[a] += x[b]; x[d] = rol32(x[d] ^ x[a], 16); x[c] += x[d]; x[b] = rol32(x[b] ^ x[c], 12); x[a] += x[b]; x[d] = rol32(x[d] ^ x[a], 8); x[c] += x[d]; x[b] = rol32(x[b] ^ x[c], 7); } static void mc_chacha_core(int count, const uint32_t *src, uint32_t *dst) { uint32_t x[16]; cpu_to_le32_array(x, src, 16); for (int i = 0; i < count; i++) { mc_chacha_quarterround(x, 0, 4, 8, 12); mc_chacha_quarterround(x, 1, 5, 9, 13); mc_chacha_quarterround(x, 2, 6, 10, 14); mc_chacha_quarterround(x, 3, 7, 11, 15); mc_chacha_quarterround(x, 0, 5, 10, 15); mc_chacha_quarterround(x, 1, 6, 11, 12); mc_chacha_quarterround(x, 2, 7, 8, 13); mc_chacha_quarterround(x, 3, 4, 9, 14); } for (int i = 0; i < 16; i++) { uint32_t xi = x[i]; uint32_t hj = cpu_to_le32(src[i]); dst[i] = le32_to_cpu(xi + hj); } } CAMLprim value mc_chacha_round(value count, value src, value dst, value off) { _mc_switch_accel(ssse3, mc_chacha_core_generic(Int_val(count), (const uint32_t *)(String_val(src)), (uint32_t *)(Bytes_val(dst) + Long_val(off))), mc_chacha_core(Int_val(count), (const uint32_t *)(String_val(src)), (uint32_t *)(Bytes_val(dst) + Long_val(off)))); return Val_unit; } #else //#ifdef __mc_ACCELERATE__ CAMLprim value mc_chacha_round(value count, value src, value dst, value off) { mc_chacha_core_generic(Int_val(count), (const uint32_t *)(String_val(src)), (uint32_t *)(Bytes_val(dst) + Long_val(off))); return Val_unit; } #endif
mirage-crypto
2.0.2
ISC
https://github.com/mirage/mirage-crypto
git+https://github.com/mirage/mirage-crypto.git
c
mirage-crypto-2.0.2/src/native/chacha_generic.c
/* Based on https://github.com/abeaumont/ocaml-chacha.git */ #include "mirage_crypto.h" static inline void mc_chacha_quarterround(uint32_t *x, int a, int b, int c, int d) { x[a] += x[b]; x[d] = rol32(x[d] ^ x[a], 16); x[c] += x[d]; x[b] = rol32(x[b] ^ x[c], 12); x[a] += x[b]; x[d] = rol32(x[d] ^ x[a], 8); x[c] += x[d]; x[b] = rol32(x[b] ^ x[c], 7); } void mc_chacha_core_generic(int count, const uint32_t *src, uint32_t *dst) { uint32_t x[16]; cpu_to_le32_array(x, src, 16); for (int i = 0; i < count; i++) { mc_chacha_quarterround(x, 0, 4, 8, 12); mc_chacha_quarterround(x, 1, 5, 9, 13); mc_chacha_quarterround(x, 2, 6, 10, 14); mc_chacha_quarterround(x, 3, 7, 11, 15); mc_chacha_quarterround(x, 0, 5, 10, 15); mc_chacha_quarterround(x, 1, 6, 11, 12); mc_chacha_quarterround(x, 2, 7, 8, 13); mc_chacha_quarterround(x, 3, 4, 9, 14); } for (int i = 0; i < 16; i++) { uint32_t xi = x[i]; uint32_t hj = cpu_to_le32(src[i]); dst[i] = le32_to_cpu(xi + hj); } }
mirage-crypto
2.0.2
ISC
https://github.com/mirage/mirage-crypto
git+https://github.com/mirage/mirage-crypto.git
c
mirage-crypto-2.0.2/src/native/des_generic.c
/* D3DES (V5.09) - * * A portable, public domain, version of the Data Encryption Standard. * * Written with Symantec's THINK (Lightspeed) C by Richard Outerbridge. * Thanks to: Dan Hoey for his excellent Initial and Inverse permutation * code; Jim Gillogly & Phil Karn for the DES key schedule code; Dennis * Ferguson, Eric Young and Dana How for comparing notes; and Ray Lau, * for humouring me on. * * THIS SOFTWARE PLACED IN THE PUBLIC DOMAIN BY THE AUTHOUR * 920825 19:42 EDST * * Copyright (c) 1988,1989,1990,1991,1992 by Richard Outerbridge. * (GEnie : OUTER; CIS : [71755,204]) Graven Imagery, 1992. */ #include "mirage_crypto.h" #define EN0 0 /* MODE == encrypt */ #define DE1 1 /* MODE == decrypt */ static void scrunch(const unsigned char *, unsigned long *); static void unscrun(const unsigned long *, unsigned char *); static void desfunc(unsigned long *, const unsigned long *); static void cookey(const unsigned long *, unsigned long[32]); static const unsigned short bytebit[8] = { 0200, 0100, 040, 020, 010, 04, 02, 01 }; static const unsigned long bigbyte[24] = { 0x800000L, 0x400000L, 0x200000L, 0x100000L, 0x80000L, 0x40000L, 0x20000L, 0x10000L, 0x8000L, 0x4000L, 0x2000L, 0x1000L, 0x800L, 0x400L, 0x200L, 0x100L, 0x80L, 0x40L, 0x20L, 0x10L, 0x8L, 0x4L, 0x2L, 0x1L }; /* Use the key schedule specified in the Standard (ANSI X3.92-1981). */ static const unsigned char pc1[56] = { 56, 48, 40, 32, 24, 16, 8, 0, 57, 49, 41, 33, 25, 17, 9, 1, 58, 50, 42, 34, 26, 18, 10, 2, 59, 51, 43, 35, 62, 54, 46, 38, 30, 22, 14, 6, 61, 53, 45, 37, 29, 21, 13, 5, 60, 52, 44, 36, 28, 20, 12, 4, 27, 19, 11, 3 }; static const unsigned char totrot[16] = { 1,2,4,6,8,10,12,14,15,17,19,21,23,25,27,28 }; static const unsigned char pc2[48] = { 13, 16, 10, 23, 0, 4, 2, 27, 14, 5, 20, 9, 22, 18, 11, 3, 25, 7, 15, 6, 26, 19, 12, 1, 40, 51, 30, 36, 46, 54, 29, 39, 50, 44, 32, 47, 43, 48, 38, 55, 33, 52, 45, 41, 49, 35, 28, 31 }; void mc_deskey(const unsigned char key[8], short edf, unsigned long into[32]) /* Thanks to James Gillogly & Phil Karn! */ { int i, j, l, m, n; unsigned char pc1m[56], pcr[56]; unsigned long kn[32]; for ( j = 0; j < 56; j++ ) { l = pc1[j]; m = l & 07; pc1m[j] = (key[l >> 3] & bytebit[m]) ? 1 : 0; } for( i = 0; i < 16; i++ ) { if( edf == DE1 ) m = (15 - i) << 1; else m = i << 1; n = m + 1; kn[m] = kn[n] = 0L; for( j = 0; j < 28; j++ ) { l = j + totrot[i]; if( l < 28 ) pcr[j] = pc1m[l]; else pcr[j] = pc1m[l - 28]; } for( j = 28; j < 56; j++ ) { l = j + totrot[i]; if( l < 56 ) pcr[j] = pc1m[l]; else pcr[j] = pc1m[l - 28]; } for( j = 0; j < 24; j++ ) { if( pcr[pc2[j]] ) kn[m] |= bigbyte[j]; if( pcr[pc2[j+24]] ) kn[n] |= bigbyte[j]; } } cookey(kn, into); return; } static void cookey(const unsigned long *raw1, unsigned long into[32]) { unsigned long *cook; const unsigned long *raw0; unsigned long dough[32]; int i; cook = dough; for( i = 0; i < 16; i++, raw1++ ) { raw0 = raw1++; *cook = (*raw0 & 0x00fc0000L) << 6; *cook |= (*raw0 & 0x00000fc0L) << 10; *cook |= (*raw1 & 0x00fc0000L) >> 10; *cook++ |= (*raw1 & 0x00000fc0L) >> 6; *cook = (*raw0 & 0x0003f000L) << 12; *cook |= (*raw0 & 0x0000003fL) << 16; *cook |= (*raw1 & 0x0003f000L) >> 4; *cook++ |= (*raw1 & 0x0000003fL); } for( i = 0; i < 32; i++) { into[i] = dough[i]; } return; } static void scrunch(const unsigned char *outof, unsigned long *into) { *into = (*outof++ & 0xffL) << 24; *into |= (*outof++ & 0xffL) << 16; *into |= (*outof++ & 0xffL) << 8; *into++ |= (*outof++ & 0xffL); *into = (*outof++ & 0xffL) << 24; *into |= (*outof++ & 0xffL) << 16; *into |= (*outof++ & 0xffL) << 8; *into |= (*outof & 0xffL); return; } static void unscrun(const unsigned long *outof, unsigned char *into) { *into++ = (*outof >> 24) & 0xffL; *into++ = (*outof >> 16) & 0xffL; *into++ = (*outof >> 8) & 0xffL; *into++ = *outof++ & 0xffL; *into++ = (*outof >> 24) & 0xffL; *into++ = (*outof >> 16) & 0xffL; *into++ = (*outof >> 8) & 0xffL; *into = *outof & 0xffL; return; } static const unsigned long SP1[64] = { 0x01010400L, 0x00000000L, 0x00010000L, 0x01010404L, 0x01010004L, 0x00010404L, 0x00000004L, 0x00010000L, 0x00000400L, 0x01010400L, 0x01010404L, 0x00000400L, 0x01000404L, 0x01010004L, 0x01000000L, 0x00000004L, 0x00000404L, 0x01000400L, 0x01000400L, 0x00010400L, 0x00010400L, 0x01010000L, 0x01010000L, 0x01000404L, 0x00010004L, 0x01000004L, 0x01000004L, 0x00010004L, 0x00000000L, 0x00000404L, 0x00010404L, 0x01000000L, 0x00010000L, 0x01010404L, 0x00000004L, 0x01010000L, 0x01010400L, 0x01000000L, 0x01000000L, 0x00000400L, 0x01010004L, 0x00010000L, 0x00010400L, 0x01000004L, 0x00000400L, 0x00000004L, 0x01000404L, 0x00010404L, 0x01010404L, 0x00010004L, 0x01010000L, 0x01000404L, 0x01000004L, 0x00000404L, 0x00010404L, 0x01010400L, 0x00000404L, 0x01000400L, 0x01000400L, 0x00000000L, 0x00010004L, 0x00010400L, 0x00000000L, 0x01010004L }; static const unsigned long SP2[64] = { 0x80108020L, 0x80008000L, 0x00008000L, 0x00108020L, 0x00100000L, 0x00000020L, 0x80100020L, 0x80008020L, 0x80000020L, 0x80108020L, 0x80108000L, 0x80000000L, 0x80008000L, 0x00100000L, 0x00000020L, 0x80100020L, 0x00108000L, 0x00100020L, 0x80008020L, 0x00000000L, 0x80000000L, 0x00008000L, 0x00108020L, 0x80100000L, 0x00100020L, 0x80000020L, 0x00000000L, 0x00108000L, 0x00008020L, 0x80108000L, 0x80100000L, 0x00008020L, 0x00000000L, 0x00108020L, 0x80100020L, 0x00100000L, 0x80008020L, 0x80100000L, 0x80108000L, 0x00008000L, 0x80100000L, 0x80008000L, 0x00000020L, 0x80108020L, 0x00108020L, 0x00000020L, 0x00008000L, 0x80000000L, 0x00008020L, 0x80108000L, 0x00100000L, 0x80000020L, 0x00100020L, 0x80008020L, 0x80000020L, 0x00100020L, 0x00108000L, 0x00000000L, 0x80008000L, 0x00008020L, 0x80000000L, 0x80100020L, 0x80108020L, 0x00108000L }; static const unsigned long SP3[64] = { 0x00000208L, 0x08020200L, 0x00000000L, 0x08020008L, 0x08000200L, 0x00000000L, 0x00020208L, 0x08000200L, 0x00020008L, 0x08000008L, 0x08000008L, 0x00020000L, 0x08020208L, 0x00020008L, 0x08020000L, 0x00000208L, 0x08000000L, 0x00000008L, 0x08020200L, 0x00000200L, 0x00020200L, 0x08020000L, 0x08020008L, 0x00020208L, 0x08000208L, 0x00020200L, 0x00020000L, 0x08000208L, 0x00000008L, 0x08020208L, 0x00000200L, 0x08000000L, 0x08020200L, 0x08000000L, 0x00020008L, 0x00000208L, 0x00020000L, 0x08020200L, 0x08000200L, 0x00000000L, 0x00000200L, 0x00020008L, 0x08020208L, 0x08000200L, 0x08000008L, 0x00000200L, 0x00000000L, 0x08020008L, 0x08000208L, 0x00020000L, 0x08000000L, 0x08020208L, 0x00000008L, 0x00020208L, 0x00020200L, 0x08000008L, 0x08020000L, 0x08000208L, 0x00000208L, 0x08020000L, 0x00020208L, 0x00000008L, 0x08020008L, 0x00020200L }; static const unsigned long SP4[64] = { 0x00802001L, 0x00002081L, 0x00002081L, 0x00000080L, 0x00802080L, 0x00800081L, 0x00800001L, 0x00002001L, 0x00000000L, 0x00802000L, 0x00802000L, 0x00802081L, 0x00000081L, 0x00000000L, 0x00800080L, 0x00800001L, 0x00000001L, 0x00002000L, 0x00800000L, 0x00802001L, 0x00000080L, 0x00800000L, 0x00002001L, 0x00002080L, 0x00800081L, 0x00000001L, 0x00002080L, 0x00800080L, 0x00002000L, 0x00802080L, 0x00802081L, 0x00000081L, 0x00800080L, 0x00800001L, 0x00802000L, 0x00802081L, 0x00000081L, 0x00000000L, 0x00000000L, 0x00802000L, 0x00002080L, 0x00800080L, 0x00800081L, 0x00000001L, 0x00802001L, 0x00002081L, 0x00002081L, 0x00000080L, 0x00802081L, 0x00000081L, 0x00000001L, 0x00002000L, 0x00800001L, 0x00002001L, 0x00802080L, 0x00800081L, 0x00002001L, 0x00002080L, 0x00800000L, 0x00802001L, 0x00000080L, 0x00800000L, 0x00002000L, 0x00802080L }; static const unsigned long SP5[64] = { 0x00000100L, 0x02080100L, 0x02080000L, 0x42000100L, 0x00080000L, 0x00000100L, 0x40000000L, 0x02080000L, 0x40080100L, 0x00080000L, 0x02000100L, 0x40080100L, 0x42000100L, 0x42080000L, 0x00080100L, 0x40000000L, 0x02000000L, 0x40080000L, 0x40080000L, 0x00000000L, 0x40000100L, 0x42080100L, 0x42080100L, 0x02000100L, 0x42080000L, 0x40000100L, 0x00000000L, 0x42000000L, 0x02080100L, 0x02000000L, 0x42000000L, 0x00080100L, 0x00080000L, 0x42000100L, 0x00000100L, 0x02000000L, 0x40000000L, 0x02080000L, 0x42000100L, 0x40080100L, 0x02000100L, 0x40000000L, 0x42080000L, 0x02080100L, 0x40080100L, 0x00000100L, 0x02000000L, 0x42080000L, 0x42080100L, 0x00080100L, 0x42000000L, 0x42080100L, 0x02080000L, 0x00000000L, 0x40080000L, 0x42000000L, 0x00080100L, 0x02000100L, 0x40000100L, 0x00080000L, 0x00000000L, 0x40080000L, 0x02080100L, 0x40000100L }; static const unsigned long SP6[64] = { 0x20000010L, 0x20400000L, 0x00004000L, 0x20404010L, 0x20400000L, 0x00000010L, 0x20404010L, 0x00400000L, 0x20004000L, 0x00404010L, 0x00400000L, 0x20000010L, 0x00400010L, 0x20004000L, 0x20000000L, 0x00004010L, 0x00000000L, 0x00400010L, 0x20004010L, 0x00004000L, 0x00404000L, 0x20004010L, 0x00000010L, 0x20400010L, 0x20400010L, 0x00000000L, 0x00404010L, 0x20404000L, 0x00004010L, 0x00404000L, 0x20404000L, 0x20000000L, 0x20004000L, 0x00000010L, 0x20400010L, 0x00404000L, 0x20404010L, 0x00400000L, 0x00004010L, 0x20000010L, 0x00400000L, 0x20004000L, 0x20000000L, 0x00004010L, 0x20000010L, 0x20404010L, 0x00404000L, 0x20400000L, 0x00404010L, 0x20404000L, 0x00000000L, 0x20400010L, 0x00000010L, 0x00004000L, 0x20400000L, 0x00404010L, 0x00004000L, 0x00400010L, 0x20004010L, 0x00000000L, 0x20404000L, 0x20000000L, 0x00400010L, 0x20004010L }; static const unsigned long SP7[64] = { 0x00200000L, 0x04200002L, 0x04000802L, 0x00000000L, 0x00000800L, 0x04000802L, 0x00200802L, 0x04200800L, 0x04200802L, 0x00200000L, 0x00000000L, 0x04000002L, 0x00000002L, 0x04000000L, 0x04200002L, 0x00000802L, 0x04000800L, 0x00200802L, 0x00200002L, 0x04000800L, 0x04000002L, 0x04200000L, 0x04200800L, 0x00200002L, 0x04200000L, 0x00000800L, 0x00000802L, 0x04200802L, 0x00200800L, 0x00000002L, 0x04000000L, 0x00200800L, 0x04000000L, 0x00200800L, 0x00200000L, 0x04000802L, 0x04000802L, 0x04200002L, 0x04200002L, 0x00000002L, 0x00200002L, 0x04000000L, 0x04000800L, 0x00200000L, 0x04200800L, 0x00000802L, 0x00200802L, 0x04200800L, 0x00000802L, 0x04000002L, 0x04200802L, 0x04200000L, 0x00200800L, 0x00000000L, 0x00000002L, 0x04200802L, 0x00000000L, 0x00200802L, 0x04200000L, 0x00000800L, 0x04000002L, 0x04000800L, 0x00000800L, 0x00200002L }; static const unsigned long SP8[64] = { 0x10001040L, 0x00001000L, 0x00040000L, 0x10041040L, 0x10000000L, 0x10001040L, 0x00000040L, 0x10000000L, 0x00040040L, 0x10040000L, 0x10041040L, 0x00041000L, 0x10041000L, 0x00041040L, 0x00001000L, 0x00000040L, 0x10040000L, 0x10000040L, 0x10001000L, 0x00001040L, 0x00041000L, 0x00040040L, 0x10040040L, 0x10041000L, 0x00001040L, 0x00000000L, 0x00000000L, 0x10040040L, 0x10000040L, 0x10001000L, 0x00041040L, 0x00040000L, 0x00041040L, 0x00040000L, 0x10041000L, 0x00001000L, 0x00000040L, 0x10040040L, 0x00001000L, 0x00041040L, 0x10001000L, 0x00000040L, 0x10000040L, 0x10040000L, 0x10040040L, 0x10000000L, 0x00040000L, 0x10001040L, 0x00000000L, 0x10041040L, 0x00040040L, 0x10000040L, 0x10040000L, 0x10001000L, 0x10001040L, 0x00000000L, 0x10041040L, 0x00041000L, 0x00041000L, 0x00001040L, 0x00001040L, 0x00040040L, 0x10000000L, 0x10041000L }; static void desfunc(unsigned long *block, const unsigned long *keys) { unsigned long fval, work, right, leftt; int round; leftt = block[0]; right = block[1]; work = ((leftt >> 4) ^ right) & 0x0f0f0f0fL; right ^= work; leftt ^= (work << 4); work = ((leftt >> 16) ^ right) & 0x0000ffffL; right ^= work; leftt ^= (work << 16); work = ((right >> 2) ^ leftt) & 0x33333333L; leftt ^= work; right ^= (work << 2); work = ((right >> 8) ^ leftt) & 0x00ff00ffL; leftt ^= work; right ^= (work << 8); right = ((right << 1) | ((right >> 31) & 1L)) & 0xffffffffL; work = (leftt ^ right) & 0xaaaaaaaaL; leftt ^= work; right ^= work; leftt = ((leftt << 1) | ((leftt >> 31) & 1L)) & 0xffffffffL; for( round = 0; round < 8; round++ ) { work = (right << 28) | (right >> 4); work ^= *keys++; fval = SP7[ work & 0x3fL]; fval |= SP5[(work >> 8) & 0x3fL]; fval |= SP3[(work >> 16) & 0x3fL]; fval |= SP1[(work >> 24) & 0x3fL]; work = right ^ *keys++; fval |= SP8[ work & 0x3fL]; fval |= SP6[(work >> 8) & 0x3fL]; fval |= SP4[(work >> 16) & 0x3fL]; fval |= SP2[(work >> 24) & 0x3fL]; leftt ^= fval; work = (leftt << 28) | (leftt >> 4); work ^= *keys++; fval = SP7[ work & 0x3fL]; fval |= SP5[(work >> 8) & 0x3fL]; fval |= SP3[(work >> 16) & 0x3fL]; fval |= SP1[(work >> 24) & 0x3fL]; work = leftt ^ *keys++; fval |= SP8[ work & 0x3fL]; fval |= SP6[(work >> 8) & 0x3fL]; fval |= SP4[(work >> 16) & 0x3fL]; fval |= SP2[(work >> 24) & 0x3fL]; right ^= fval; } right = (right << 31) | (right >> 1); work = (leftt ^ right) & 0xaaaaaaaaL; leftt ^= work; right ^= work; leftt = (leftt << 31) | (leftt >> 1); work = ((leftt >> 8) ^ right) & 0x00ff00ffL; right ^= work; leftt ^= (work << 8); work = ((leftt >> 2) ^ right) & 0x33333333L; right ^= work; leftt ^= (work << 2); work = ((right >> 16) ^ leftt) & 0x0000ffffL; leftt ^= work; right ^= (work << 16); work = ((right >> 4) ^ leftt) & 0x0f0f0f0fL; leftt ^= work; right ^= (work << 4); *block++ = right; *block = leftt; return; } void mc_Ddes(const unsigned char from[8], unsigned char into[8], const unsigned long* key1, const unsigned long* key2, const unsigned long* key3) { unsigned long work[2]; scrunch(from, work); desfunc(work, key1); desfunc(work, key2); desfunc(work, key3); unscrun(work, into); return; } void mc_des3key(const unsigned char hexkey[24], short mode, unsigned long into[96]) { const unsigned char *first, *third; short revmod; if( mode == EN0 ) { revmod = DE1; first = hexkey; third = &hexkey[16]; } else { revmod = EN0; first = &hexkey[16]; third = hexkey; } mc_deskey(&hexkey[8], revmod, &into[32]); mc_deskey(third, mode, &into[64]); mc_deskey(first, mode, into); return; } /* Validation sets: * * Single-length key, single-length plaintext - * Key : 0123 4567 89ab cdef * Plain : 0123 4567 89ab cde7 * Cipher : c957 4425 6a5e d31d * * Double-length key, single-length plaintext - * Key : 0123 4567 89ab cdef fedc ba98 7654 3210 * Plain : 0123 4567 89ab cde7 * Cipher : 7f1d 0a77 826b 8aff * * Double-length key, double-length plaintext - * Key : 0123 4567 89ab cdef fedc ba98 7654 3210 * Plain : 0123 4567 89ab cdef 0123 4567 89ab cdff * Cipher : 27a0 8440 406a df60 278f 47cf 42d6 15d7 * * Triple-length key, single-length plaintext - * Key : 0123 4567 89ab cdef fedc ba98 7654 3210 89ab cdef 0123 4567 * Plain : 0123 4567 89ab cde7 * Cipher : de0b 7c06 ae5e 0ed5 * * Triple-length key, double-length plaintext - * Key : 0123 4567 89ab cdef fedc ba98 7654 3210 89ab cdef 0123 4567 * Plain : 0123 4567 89ab cdef 0123 4567 89ab cdff * Cipher : ad0d 1b30 ac17 cf07 0ed1 1c63 81e4 4de5 * * d3des V5.09 rwo 9208.04 20:31 Graven Imagery **********************************************************************/ /* OCaml front-end */ static inline void _mc_ddes (const unsigned char *src, unsigned char *dst, unsigned int blocks, const unsigned long* key) { const unsigned long* key1 = key; const unsigned long* key2 = key + 32; const unsigned long* key3 = key + 64; while (blocks --) { mc_Ddes (src, dst, key1, key2, key3); src += 8 ; dst += 8; } } CAMLprim value mc_des_key_size (__unit ()) { return Val_int (sizeof (unsigned long) * 96); } CAMLprim value mc_des_des3key (value key, value direction, value dst) { mc_des3key (_bp_uint8 (key), Int_val (direction), (unsigned long *) _bp_uint8 (dst)); return Val_unit; } CAMLprim value mc_des_ddes (value src, value off1, value dst, value off2, value blocks, value key) { _mc_ddes (_st_uint8_off (src, off1), _bp_uint8_off (dst, off2), Int_val (blocks), (unsigned long *) _st_uint8 (key)); return Val_unit; } __define_bc_6(mc_des_ddes)
mirage-crypto
2.0.2
ISC
https://github.com/mirage/mirage-crypto
git+https://github.com/mirage/mirage-crypto.git
c
mirage-crypto-2.0.2/src/native/detect_cpu_features.c
#include "mirage_crypto.h" #ifdef __mc_detect_features__ #ifndef _MSC_VER # include <cpuid.h> #endif struct _mc_cpu_features mc_detected_cpu_features = { 0 }; #ifdef _MSC_VER #define bit_PCLMUL ((int)1 << 1) #define bit_SSSE3 ((int)1 << 9) #define bit_AES ((int)1 << 25) #define bit_RDRND ((int)1 << 30) #define bit_RDSEED ((int)1 << 18) CAMLprim value mc_detect_cpu_features (__unit ()) { int cpuInfo[4] = {-1}; int ebx; int ecx; __cpuid(cpuInfo, 0x00000000); int max = cpuInfo[0]; if (max < 1) return Val_unit; __cpuid(cpuInfo, 0x00000001); ecx = cpuInfo[2]; if (ecx & bit_PCLMUL) mc_detected_cpu_features.pclmul = 1; if (ecx & bit_SSSE3) mc_detected_cpu_features.ssse3 = 1; if (ecx & bit_AES) mc_detected_cpu_features.aesni = 1; if (ecx & bit_RDRND) mc_detected_cpu_features.rdrand = 1; if (max > 7) { __cpuid(cpuInfo, 0x00000007); ebx = cpuInfo[1]; if (ebx & bit_RDSEED) mc_detected_cpu_features.rdseed = 1; } return Val_unit; } #else CAMLprim value mc_detect_cpu_features (__unit ()) { unsigned int sig = 0, eax = 0, ebx = 0, ecx = 0, edx = 0; int max = __get_cpuid_max(0, &sig); if (max < 1) return Val_unit; __cpuid(1, eax, ebx, ecx, edx); if (ecx & bit_PCLMUL) mc_detected_cpu_features.pclmul = 1; if (ecx & bit_SSSE3) mc_detected_cpu_features.ssse3 = 1; if (ecx & bit_AES) mc_detected_cpu_features.aesni = 1; if (ecx & bit_RDRND) mc_detected_cpu_features.rdrand = 1; if (max > 7) { __cpuid_count(7, 0, eax, ebx, ecx, edx); if (ebx & bit_RDSEED) mc_detected_cpu_features.rdseed = 1; } return Val_unit; } #endif /* _MSC_VER */ #else /* __mc_detect_features__ */ CAMLprim value mc_detect_cpu_features (__unit ()) { return Val_unit; } #endif /* __mc_detect_features__ */
mirage-crypto
2.0.2
ISC
https://github.com/mirage/mirage-crypto
git+https://github.com/mirage/mirage-crypto.git
c
mirage-crypto-2.0.2/src/native/entropy_cpu_stubs.c
/* * Copyright (c) 2015-2016 David Kaloper Meršinjak */ #define _POSIX_C_SOURCE 199309L #include <caml/mlvalues.h> #include "mirage_crypto.h" #if defined (__i386__) || defined (__x86_64__) #include <x86intrin.h> #if defined (__x86_64__) #define random_t unsigned long long #define _rdseed_step _rdseed64_step #define _rdrand_step _rdrand64_step #define fill_bytes(buf, bufsz, off, data) memcpy(_bp_uint8_off(buf, off), data, 8) #elif defined (__i386__) #define random_t unsigned int #define _rdseed_step _rdseed32_step #define _rdrand_step _rdrand32_step #define fill_bytes(buf, bufsz, off, data) memcpy(_bp_uint8_off(buf, off), data, 4) #endif #endif /* __i386__ || __x86_64__ */ /* mc_cycle_counter specification and requirements Below the function mc_cycle_counter is defined (with different implementations on different platforms. Its lower 32 bits are used for entropy collection on every entry to the main event loop. The requirement for this function is that every call to it (from OCaml) should lead to a different output (in the lower 32 bits), and it should be unpredictable (since the timestamp / cpu cycle counter is fine-grained enough). The executable test/test_entropy.ml tests parts of the requirements by calling mc_cycle_counter 10 times and comparing the output to the previous output. */ #if defined (_MSC_VER) #include <immintrin.h> #include <memory.h> #if defined (_WIN64) #define random_t unsigned long long #define _rdseed_step _rdseed64_step #define _rdrand_step _rdrand64_step #define fill_bytes(buf, bufsz, off, data) memcpy_s(_bp_uint8_off(buf, off), bufsz, data, 8) #elif defined (_WIN32) #define random_t unsigned int #define _rdseed_step _rdseed32_step #define _rdrand_step _rdrand32_step #define fill_bytes(buf, bufsz, off, data) memcpy_s(_bp_uint8_off(buf, off), bufsz, data, 4) #endif #endif /* _MSC_VER */ #if defined (__arm__) /* * The ideal timing source on ARM are the performance counters, but these are * presently masked by Xen. * It would work like this: #if defined (__ARM_ARCH_7A__) // Disable counter overflow interrupts. __asm__ __volatile__ ("mcr p15, 0, %0, c9, c14, 2" :: "r"(0x8000000f)); // Program the PMU control register. __asm__ __volatile__ ("mcr p15, 0, %0, c9, c12, 0" :: "r"(1 | 16)); // Enable all counters. __asm__ __volatile__ ("mcr p15, 0, %0, c9, c12, 1" :: "r"(0x8000000f)); // Read: unsigned int res; __asm__ __volatile__ ("mrc p15, 0, %0, c9, c13, 0": "=r" (res)); */ #if defined(__ocaml_freestanding__) || defined(__ocaml_solo5__) static inline uint32_t read_virtual_count (void) { uint32_t c_lo, c_hi; __asm__ __volatile__("mrrc p15, 1, %0, %1, c14":"=r"(c_lo), "=r"(c_hi)); return c_lo; } #else /* see https://github.com/mirage/mirage-crypto/issues/113 and https://chromium.googlesource.com/external/gperftools/+/master/src/base/cycleclock.h The performance counters are only available in kernel mode (or if enabled via a kernel module also in user mode). Use clock_gettime as fallback. */ #include <time.h> static inline uint32_t read_virtual_count (void) { uint32_t pmccntr; uint32_t pmuseren; uint32_t pmcntenset; // Read the user mode perf monitor counter access permissions. __asm__ __volatile__ ("mrc p15, 0, %0, c9, c14, 0" : "=r" (pmuseren)); if (pmuseren & 1) { // Allows reading perfmon counters for user mode code. __asm__ __volatile__ ("mrc p15, 0, %0, c9, c12, 1" : "=r" (pmcntenset)); if (pmcntenset & 0x80000000ul) { // Is it counting? __asm__ __volatile__ ("mrc p15, 0, %0, c9, c13, 0" : "=r" (pmccntr)); // The counter is set up to count every 64th cycle return pmccntr; } } struct timespec now; clock_gettime (CLOCK_MONOTONIC, &now); return now.tv_nsec; } #endif /* __ocaml_freestanding__ || __ocaml_solo5__ */ #endif /* arm */ #if defined (__aarch64__) #define isb() __asm__ __volatile__("isb" : : : "memory") static inline uint64_t read_virtual_count(void) { uint64_t c; isb(); __asm__ __volatile__("mrs %0, cntvct_el0":"=r"(c)); return c; } #endif /* aarch64 */ #if defined (__powerpc64__) /* from clang's builtin version and gperftools at https://chromium.googlesource.com/external/gperftools/+/master/src/base/cycleclock.h */ static inline uint64_t read_cycle_counter(void) { uint64_t rval; __asm__ __volatile__ ("mfspr %0, 268":"=r" (rval)); return rval; } #endif #if defined (__riscv) && (64 == __riscv_xlen) //since rdcycle is a privileged instruction since linux 6.6, we use rdtime when in user-space static inline uint64_t cycle_count(void) { uint64_t rval; #if defined(__ocaml_freestanding__) || defined(__ocaml_solo5__) __asm__ __volatile__ ("rdcycle %0" : "=r" (rval)); #else __asm__ __volatile__ ("rdtime %0" : "=r" (rval)); #endif /* __ocaml_freestanding__ || __ocaml_solo5__ */ return rval; } #endif #if defined (__s390x__) static inline uint64_t getticks(void) { uint64_t rval; __asm__ __volatile__ ("stck %0" : "=Q" (rval) : : "cc"); return rval; } #endif #if defined (__mips__) static inline unsigned long get_count(void) { unsigned long count; __asm__ __volatile__ ("rdhwr %[rt], $2" : [rt] "=d" (count)); return count; } #endif #if defined (__loongarch_lp64) static inline unsigned long get_count(void) { unsigned long count; __asm__ __volatile__ ("rdtime.d %0, $zero\n" : "=r" (count)); return count; } #endif CAMLprim value mc_cycle_counter (value __unused(unit)) { #if defined (__i386__) || defined (__x86_64__) || defined (_MSC_VER) return Val_long (__rdtsc ()); #elif defined (__arm__) || defined (__aarch64__) return Val_long (read_virtual_count ()); #elif defined(__powerpc64__) return Val_long (read_cycle_counter ()); #elif defined(__riscv) && (64 == __riscv_xlen) return Val_long (cycle_count ()); #elif defined (__s390x__) return Val_long (getticks ()); #elif defined(__mips__) return Val_long (get_count()); #elif defined(__loongarch_lp64) return Val_long (get_count()); #else #error ("No known cycle-counting instruction.") #endif } /* end of mc_cycle_counter */ enum cpu_rng_t { RNG_NONE = 0, RNG_RDRAND = 1, RNG_RDSEED = 2, }; static int __cpu_rng = RNG_NONE; static void detect (void) { #ifdef __mc_ENTROPY__ random_t r = 0; if (mc_detected_cpu_features.rdrand) /* AMD Ryzen 3000 bug where RDRAND always returns -1 https://arstechnica.com/gadgets/2019/10/how-a-months-old-amd-microcode-bug-destroyed-my-weekend/ */ for (int i = 0; i < 10; i++) if (_rdrand_step(&r) == 1 && r != (random_t) (-1)) { __cpu_rng = RNG_RDRAND; break; } if (mc_detected_cpu_features.rdseed) /* RDSEED could return -1, thus we test it here https://www.reddit.com/r/Amd/comments/cmza34/agesa_1003_abb_fixes_rdrandrdseed/ */ for (int i = 0; i < 100; i++) if (_rdseed_step(&r) == 1 && r != (random_t) (-1)) { __cpu_rng |= RNG_RDSEED; break; } #endif } CAMLprim value mc_cpu_rdseed (value buf, value off) { #ifdef __mc_ENTROPY__ random_t r = 0; int ok = 0; int i = 100; do { ok = _rdseed_step (&r); _mm_pause (); } while ( !(ok | !--i) ); fill_bytes(buf, sizeof(r), off, &r); return Val_bool (ok); #else /* ARM: CPU-assisted randomness here. */ (void)buf; (void)off; return Val_false; #endif } CAMLprim value mc_cpu_rdrand (value buf, value off) { #ifdef __mc_ENTROPY__ random_t r = 0; int ok = 0; int i = 10; do { ok = _rdrand_step (&r); } while ( !(ok | !--i) ); fill_bytes(buf, sizeof(r), off, &r); return Val_bool (ok); #else /* ARM: CPU-assisted randomness here. */ (void)buf; (void)off; return Val_false; #endif } CAMLprim value mc_cpu_rng_type (value __unused(unit)) { return Val_int (__cpu_rng); } CAMLprim value mc_entropy_detect (value __unused(unit)) { detect (); return Val_unit; }
mirage-crypto
2.0.2
ISC
https://github.com/mirage/mirage-crypto
git+https://github.com/mirage/mirage-crypto.git
c
mirage-crypto-2.0.2/src/native/ghash_ctmul.c
/* * Copyright (c) 2016 Thomas Pornin <pornin@bolet.org> * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sublicense, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ /* * We compute "carryless multiplications" through normal integer * multiplications, masking out enough bits to create "holes" in which * carries may expand without altering our bits; we really use 8 data * bits per 32-bit word, spaced every fourth bit. Accumulated carries * may not exceed 8 in total, which fits in 4 bits. * * It would be possible to use a 3-bit spacing, allowing two operands, * one with 7 non-zero data bits, the other one with 10 or 11 non-zero * data bits; this asymmetric splitting makes the overall code more * complex with thresholds and exceptions, and does not appear to be * worth the effort. */ #include "mirage_crypto.h" #include <string.h> /* Microsoft compiler does not support 128-bit integers. Drop down to * 32-bit for MSVC. */ #if defined (ARCH_32BIT) || defined(_MSC_VER) /* * We cannot really autodetect whether multiplications are "slow" or * not. A typical example is the ARM Cortex M0+, which exists in two * versions: one with a 1-cycle multiplication opcode, the other with * a 32-cycle multiplication opcode. They both use exactly the same * architecture and ABI, and cannot be distinguished from each other * at compile-time. * * Since most modern CPU (even embedded CPU) still have fast * multiplications, we use the "fast mul" code by default. */ /* * Simple multiplication in GF(2)[X], using 16 integer multiplications. */ /* * Multiply two 32-bit integers, with a 64-bit result. This default * implementation assumes that the basic multiplication operator * yields constant-time code. */ #define MUL(x, y) ((uint64_t)(x) * (uint64_t)(y)) static inline void br_enc32be(void *dst, uint32_t x) { unsigned char *buf; buf = dst; buf[0] = (unsigned char)(x >> 24); buf[1] = (unsigned char)(x >> 16); buf[2] = (unsigned char)(x >> 8); buf[3] = (unsigned char)x; } static inline uint32_t br_dec32be(const void *src) { const unsigned char *buf; buf = src; return ((uint32_t)buf[0] << 24) | ((uint32_t)buf[1] << 16) | ((uint32_t)buf[2] << 8) | (uint32_t)buf[3]; } static inline void bmul(uint32_t *hi, uint32_t *lo, uint32_t x, uint32_t y) { uint32_t x0, x1, x2, x3; uint32_t y0, y1, y2, y3; uint64_t z0, z1, z2, z3; uint64_t z; x0 = x & (uint32_t)0x11111111; x1 = x & (uint32_t)0x22222222; x2 = x & (uint32_t)0x44444444; x3 = x & (uint32_t)0x88888888; y0 = y & (uint32_t)0x11111111; y1 = y & (uint32_t)0x22222222; y2 = y & (uint32_t)0x44444444; y3 = y & (uint32_t)0x88888888; z0 = MUL(x0, y0) ^ MUL(x1, y3) ^ MUL(x2, y2) ^ MUL(x3, y1); z1 = MUL(x0, y1) ^ MUL(x1, y0) ^ MUL(x2, y3) ^ MUL(x3, y2); z2 = MUL(x0, y2) ^ MUL(x1, y1) ^ MUL(x2, y0) ^ MUL(x3, y3); z3 = MUL(x0, y3) ^ MUL(x1, y2) ^ MUL(x2, y1) ^ MUL(x3, y0); z0 &= (uint64_t)0x1111111111111111; z1 &= (uint64_t)0x2222222222222222; z2 &= (uint64_t)0x4444444444444444; z3 &= (uint64_t)0x8888888888888888; z = z0 | z1 | z2 | z3; *lo = (uint32_t)z; *hi = (uint32_t)(z >> 32); } /* see bearssl_hash.h */ void br_ghash_ctmul(void *y, const void *h, const void *data, size_t len) { const unsigned char *buf, *hb; unsigned char *yb; uint32_t yw[4]; uint32_t hw[4]; /* * Throughout the loop we handle the y and h values as arrays * of 32-bit words. */ buf = data; yb = y; hb = h; yw[3] = br_dec32be(yb); yw[2] = br_dec32be(yb + 4); yw[1] = br_dec32be(yb + 8); yw[0] = br_dec32be(yb + 12); hw[3] = br_dec32be(hb); hw[2] = br_dec32be(hb + 4); hw[1] = br_dec32be(hb + 8); hw[0] = br_dec32be(hb + 12); while (len > 0) { const unsigned char *src; unsigned char tmp[16]; int i; uint32_t a[9], b[9], zw[8]; uint32_t c0, c1, c2, c3, d0, d1, d2, d3, e0, e1, e2, e3; /* * Get the next 16-byte block (using zero-padding if * necessary). */ if (len >= 16) { src = buf; buf += 16; len -= 16; } else { memcpy(tmp, buf, len); memset(tmp + len, 0, (sizeof tmp) - len); src = tmp; len = 0; } /* * Decode the block. The GHASH standard mandates * big-endian encoding. */ yw[3] ^= br_dec32be(src); yw[2] ^= br_dec32be(src + 4); yw[1] ^= br_dec32be(src + 8); yw[0] ^= br_dec32be(src + 12); /* * We multiply two 128-bit field elements. We use * Karatsuba to turn that into three 64-bit * multiplications, which are themselves done with a * total of nine 32-bit multiplications. */ /* * y[0,1]*h[0,1] -> 0..2 * y[2,3]*h[2,3] -> 3..5 * (y[0,1]+y[2,3])*(h[0,1]+h[2,3]) -> 6..8 */ a[0] = yw[0]; b[0] = hw[0]; a[1] = yw[1]; b[1] = hw[1]; a[2] = a[0] ^ a[1]; b[2] = b[0] ^ b[1]; a[3] = yw[2]; b[3] = hw[2]; a[4] = yw[3]; b[4] = hw[3]; a[5] = a[3] ^ a[4]; b[5] = b[3] ^ b[4]; a[6] = a[0] ^ a[3]; b[6] = b[0] ^ b[3]; a[7] = a[1] ^ a[4]; b[7] = b[1] ^ b[4]; a[8] = a[6] ^ a[7]; b[8] = b[6] ^ b[7]; for (i = 0; i < 9; i ++) { bmul(&b[i], &a[i], b[i], a[i]); } c0 = a[0]; c1 = b[0] ^ a[2] ^ a[0] ^ a[1]; c2 = a[1] ^ b[2] ^ b[0] ^ b[1]; c3 = b[1]; d0 = a[3]; d1 = b[3] ^ a[5] ^ a[3] ^ a[4]; d2 = a[4] ^ b[5] ^ b[3] ^ b[4]; d3 = b[4]; e0 = a[6]; e1 = b[6] ^ a[8] ^ a[6] ^ a[7]; e2 = a[7] ^ b[8] ^ b[6] ^ b[7]; e3 = b[7]; e0 ^= c0 ^ d0; e1 ^= c1 ^ d1; e2 ^= c2 ^ d2; e3 ^= c3 ^ d3; c2 ^= e0; c3 ^= e1; d0 ^= e2; d1 ^= e3; /* * GHASH specification has the bits "reversed" (most * significant is in fact least significant), which does * not matter for a carryless multiplication, except that * the 255-bit result must be shifted by 1 bit. */ zw[0] = c0 << 1; zw[1] = (c1 << 1) | (c0 >> 31); zw[2] = (c2 << 1) | (c1 >> 31); zw[3] = (c3 << 1) | (c2 >> 31); zw[4] = (d0 << 1) | (c3 >> 31); zw[5] = (d1 << 1) | (d0 >> 31); zw[6] = (d2 << 1) | (d1 >> 31); zw[7] = (d3 << 1) | (d2 >> 31); /* * We now do the reduction modulo the field polynomial * to get back to 128 bits. */ for (i = 0; i < 4; i ++) { uint32_t lw; lw = zw[i]; zw[i + 4] ^= lw ^ (lw >> 1) ^ (lw >> 2) ^ (lw >> 7); zw[i + 3] ^= (lw << 31) ^ (lw << 30) ^ (lw << 25); } memcpy(yw, zw + 4, sizeof yw); } /* * Encode back the result. */ br_enc32be(yb, yw[3]); br_enc32be(yb + 4, yw[2]); br_enc32be(yb + 8, yw[1]); br_enc32be(yb + 12, yw[0]); } CAMLprim value mc_ghash_key_size_generic (__unit ()) { //return size for m below return Val_int(16); } static inline void __copy (uint64_t key[2], uint32_t m[4]) { m[0] = key[0] & 0xFFFFFFFF; m[1] = key[0] >> 32; m[2] = key[1] & 0xFFFFFFFF; m[3] = key[1] >> 32; } CAMLprim value mc_ghash_init_key_generic (value key, value m) { //push key at off into m __copy ((uint64_t *) _st_uint8(key), (uint32_t *) m); return Val_unit; } CAMLprim value mc_ghash_generic (value m, value hash, value src, value off, value len) { br_ghash_ctmul(Bp_val(hash), Bp_val(m), _st_uint8_off(src, off), Int_val(len)); return Val_unit; } #endif /* i386 || arm */
mirage-crypto
2.0.2
ISC
https://github.com/mirage/mirage-crypto
git+https://github.com/mirage/mirage-crypto.git
c
mirage-crypto-2.0.2/src/native/ghash_generic.c
/* Copyright (c) 2017 David Kaloper Meršinjak. All rights reserved. See LICENSE.md. */ #include "mirage_crypto.h" #include <string.h> /* Generic table-driven GHASH. * * References: * - The Galois/Counter Mode of Operation. David A. McGrew and John Viega. * - NIST SP 800-38D. Recommendation for Block Cipher Modes of Operation: * Galois/Counter Mode (GCM) and GMAC. */ /* LARGE_TABLES -> 65K per key * !LARGE_TABLES -> 8K per key, ~3x slower. */ #define __MC_GHASH_LARGE_TABLES /* 64-bit Windows sets ARCH_64BIT but 128-bit integers are not supported * by the Microsoft compiler. Drop down to 32-bit for MSVC; * ghash_ctmul.c will implement ghash for MSVC. */ #if defined(ARCH_64BIT) && !defined(_MSC_VER) #define __set_uint128_t(w1, w0) (((__uint128_t) w1 << 64) | w0) static const __uint128_t r = __set_uint128_t (0xe100000000000000, 0); static inline __uint128_t __load_128_t (const uint64_t s[2]) { return __set_uint128_t (be64_to_cpu (s[0]), be64_to_cpu (s[1])); } static inline __uint128_t __load_128_t_with_padding (const uint8_t *src, size_t n) { uint64_t buf[2] = { 0 }; memcpy (buf, src, n); return __load_128_t (buf); } static inline void __store_128_t (uint64_t s[2], __uint128_t x) { s[0] = cpu_to_be64 (x >> 64); s[1] = cpu_to_be64 (x); } #if defined (__MC_GHASH_LARGE_TABLES) #define __t_width 8 // coefficient window #define __t_tables 16 // 128 / t_width #define __t_size 4096 // 2^t_width * t_tables #else #define __t_width 4 #define __t_tables 32 #define __t_size 512 #endif static inline __uint128_t __gfmul (__uint128_t a, __uint128_t b) { __uint128_t z = 0, v = a; for (int i = 0; i < 128; i ++) { if ((uint64_t) (b >> (127 - i)) & 1) z = z ^ v; v = (uint64_t) v & 1 ? (v >> 1) ^ r : v >> 1; } return z; } // NB Exponents are reversed. // TODO: Fast table derivation. static inline void __derive (uint64_t key[2], __uint128_t m[__t_size]) { __uint128_t e = 1 << (__t_width - 1), h = __load_128_t (key); for (int i = 0; i < __t_tables; i ++, e <<= __t_width) { __uint128_t exph = __gfmul (h, e); for (int j = 0; j < (1 << __t_width); j ++) m[(i << __t_width) | j] = __gfmul (exph, (__uint128_t) j << (128 - __t_width)); } } #define __t_mask ((1 << __t_width) - 1) static inline __uint128_t __gfmul_tab (__uint128_t m[__t_size], __uint128_t x) { __uint128_t r = 0; for (int i = 0; i < __t_tables; i ++) r ^= m[(i << __t_width) | ((uint8_t) (x >> (i * __t_width)) & __t_mask)]; return r; } static inline void __ghash (__uint128_t m[__t_size], uint64_t hash[2], const uint8_t *src, size_t n) { __uint128_t acc = __load_128_t (hash); for (; n >= 16; src += 16, n -= 16) acc = __gfmul_tab (m, acc ^ __load_128_t ((uint64_t *) src)); if (n > 0) acc = __gfmul_tab (m, acc ^ __load_128_t_with_padding (src, n)); __store_128_t (hash, acc); } CAMLprim value mc_ghash_key_size_generic (__unit ()) { return Val_int (sizeof (__uint128_t) * __t_size); } CAMLprim value mc_ghash_init_key_generic (value key, value m) { __derive ((uint64_t *) _st_uint8 (key), (__uint128_t *) Bp_val (m)); return Val_unit; } CAMLprim value mc_ghash_generic (value m, value hash, value src, value off, value len) { __ghash ((__uint128_t *) Bp_val (m), (uint64_t *) Bp_val (hash), _st_uint8_off (src, off), Int_val (len) ); return Val_unit; } #endif /* ARCH_64BIT */
mirage-crypto
2.0.2
ISC
https://github.com/mirage/mirage-crypto
git+https://github.com/mirage/mirage-crypto.git
c
mirage-crypto-2.0.2/src/native/ghash_pclmul.c
/* Copyright (c) 2017 David Kaloper Meršinjak. All rights reserved. See LICENSE.md. */ /* GHASH using PCLMULQDQ and SSE3. * * References: * - Intel Carry-Less Multiplication Instruction and its Usage for Computing the * GCM Mode. Shay Gueron and Michael E. Kounavis. * https://software.intel.com/sites/default/files/managed/72/cc/clmul-wp-rev-2.02-2014-04-20.pdf * - AES-GCM for Efficient Authenticated Encryption - Ending the Reign of HMAC-SHA-1? * Shay Gureon. https://crypto.stanford.edu/RealWorldCrypto/slides/gueron.pdf * - Optimized Galois-Counter-Mode Implementation on Intel. Vinodh Gopal et al. * http://www.intel.com/content/dam/www/public/us/en/documents/white-papers/communications-ia-galois-counter-mode-paper.pdf * - https://blog.quarkslab.com/reversing-a-finite-field-multiplication-optimization.html * - https://github.com/openssl/openssl/blob/master/crypto/modes/asm/aesni-gcm-x86_64.pl */ /* #define __MC_GHASH_KARATSUBA */ #define __MC_GHASH_REFLECTED_REDUCE #define __MC_GHASH_AGGREGATED_REDUCE #include "mirage_crypto.h" #ifdef __mc_ACCELERATE__ #include <string.h> #define xor(a, b) _mm_xor_si128 (a, b) #define xor4(a, b, c, d) xor (xor (a, b), xor (c, d)) #define __reduction_poly (_mm_set_epi64x (0, 0xc200000000000000)) static inline __m128i __shiftl1_si128 (__m128i w) { return _mm_or_si128 (_mm_slli_epi64 (w, 1), _mm_slli_si128(_mm_srli_epi64 (w, 63), 8)); } static inline __m128i __carry_si128 (__m128i w) { return _mm_cmpgt_epi32 (_mm_setzero_si128 (), _mm_shuffle_epi32 (w, 0xff)); } static inline void __shiftl1_256 (__m128i *r1, __m128i *r0, __m128i w1, __m128i w0) { __m128i c = _mm_and_si128 (__carry_si128 (w0), _mm_set_epi64x (0, 1)); *r1 = _mm_or_si128 (__shiftl1_si128 (w1), c); *r0 = __shiftl1_si128 (w0); } static inline __m128i __swap_epi64 (__m128i x) { return _mm_shuffle_epi32 (x, 0x4e); // ...or vpalignr } static inline __m128i __reverse_si128 (__m128i x) { __m128i mask = _mm_set_epi64x (0x0001020304050607, 0x08090a0b0c0d0e0f); return _mm_shuffle_epi8 (x, mask); } #if !defined (__MC_GHASH_KARATSUBA) static inline void __clmul_128 (__m128i *r1, __m128i *r0, __m128i a, __m128i b) { __m128i w0 = _mm_clmulepi64_si128 (a, b, 0x00), w1 = _mm_clmulepi64_si128 (a, b, 0x11), t = xor (_mm_clmulepi64_si128 (a, b, 0x01), _mm_clmulepi64_si128 (a, b, 0x10)); *r0 = xor (w0, _mm_slli_si128 (t, 8)); *r1 = xor (w1, _mm_srli_si128 (t, 8)); } #else static inline void __clmul_128 (__m128i *r1, __m128i *r0, __m128i a, __m128i b) { __m128i w0 = _mm_clmulepi64_si128 (a, b, 0x00), w1 = _mm_clmulepi64_si128 (a, b, 0x11), t = _mm_clmulepi64_si128 (xor (a, __swap_epi64 (a)), xor (b, __swap_epi64 (b)), 0x11); t = xor (t, xor (w0, w1)); *r0 = xor (w0, _mm_slli_si128 (t, 8)); *r1 = xor (w1, _mm_srli_si128 (t, 8)); } #endif /* __MC_GHASH_KARATSUBA */ #if !defined (__MC_GHASH_REFLECTED_REDUCE) static inline __m128i __slli_128 (__m128i a, uint8_t bits) { return _mm_or_si128 ( _mm_slli_epi64 (a, bits), _mm_srli_epi64 (_mm_slli_si128 (a, 8), 64 - bits) ); } static inline __m128i __reflect (__m128i x) { __m128i and_mask = _mm_set_epi32 (0x0f0f0f0f, 0x0f0f0f0f, 0x0f0f0f0f, 0x0f0f0f0f), lo_mask = _mm_set_epi32 (0x0f070b03, 0x0d050901, 0x0e060a02, 0x0c040800), hi_mask = _mm_set_epi32 (0xf070b030, 0xd0509010, 0xe060a020, 0xc0408000); return xor ( _mm_shuffle_epi8 (hi_mask, _mm_and_si128 (x, and_mask)), _mm_shuffle_epi8 (lo_mask, _mm_and_si128 (_mm_srli_epi16 (x, 4), and_mask))); } static inline __m128i __reduce_g (__m128i w1, __m128i w0) { __m128i t = _mm_srli_si128 (w1, 8); t = xor4 (w1, _mm_srli_epi64 (t, 63), _mm_srli_epi64 (t, 62), _mm_srli_epi64 (t, 57)); return xor (w0, xor4 (t, __slli_128 (t, 1), __slli_128 (t, 2), __slli_128 (t, 7))); } #define __repr_xform __reflect #else static inline __m128i __reduce_g (__m128i w1, __m128i w0) { __m128i p = __reduction_poly; // XXX Get rid of this (Gopal et al)? __derive becomes fiddly. __shiftl1_256 (&w1, &w0, w1, w0); w0 = xor (__swap_epi64 (w0), _mm_clmulepi64_si128 (w0, p, 0x00)); w0 = xor (__swap_epi64 (w0), _mm_clmulepi64_si128 (w0, p, 0x00)); return xor (w1, w0); } #define __repr_xform __reverse_si128 #endif static inline __m128i __load_xform (const __m128i *p) { return __repr_xform (_mm_loadu_si128 (p)); } static inline __m128i __loadu_si128_with_padding (const void *src, size_t n) { __m128i buf[1] = { 0 }; memcpy (buf, src, n); return __repr_xform (_mm_loadu_si128 (buf)); } static inline __m128i __gfmul (__m128i a, __m128i b) { __m128i w1, w0; __clmul_128 (&w1, &w0, a, b); return __reduce_g (w1, w0); } #if defined (__MC_GHASH_AGGREGATED_REDUCE) #define __keys 8 #else #define __keys 1 #endif static inline void __derive (__m128i key[1], __m128i *m) { __m128i acc = __repr_xform (_mm_set_epi64x (0, 0x80)), k = __load_xform (key); for (int i = 0; i < __keys; i ++) _mm_storeu_si128 (m + i, acc = __gfmul (acc, k)); } static inline void __ghash (__m128i *m, __m128i hash[1], const __m128i *src, size_t n) { __m128i k[__keys], acc = __load_xform (hash); k[0] = _mm_loadu_si128 (m); #if defined (__MC_GHASH_AGGREGATED_REDUCE) if (n >= 128) { __m128i a1, a0, b1, b0, c1, c0, d1, d0, e1, e0, f1, f0, g1, g0, h1, h0; k[1] = _mm_loadu_si128 (m + 1), k[2] = _mm_loadu_si128 (m + 2), k[3] = _mm_loadu_si128 (m + 3), k[4] = _mm_loadu_si128 (m + 4), k[5] = _mm_loadu_si128 (m + 5), k[6] = _mm_loadu_si128 (m + 6), k[7] = _mm_loadu_si128 (m + 7); for (; n >= 128; src += 8, n -= 128) { __clmul_128 (&a1, &a0, k[7], xor (acc, __load_xform (src))); __clmul_128 (&b1, &b0, k[6], __load_xform (src + 1)); __clmul_128 (&c1, &c0, k[5], __load_xform (src + 2)); __clmul_128 (&d1, &d0, k[4], __load_xform (src + 3)); __clmul_128 (&e1, &e0, k[3], __load_xform (src + 4)); __clmul_128 (&f1, &f0, k[2], __load_xform (src + 5)); __clmul_128 (&g1, &g0, k[1], __load_xform (src + 6)); __clmul_128 (&h1, &h0, k[0], __load_xform (src + 7)); acc = __reduce_g (xor(xor4 (a1, b1, c1, d1), xor4 (e1, f1, g1, h1)), xor(xor4 (a0, b0, c0, d0), xor4 (e0, f0, g0, h0))); } } #endif for (; n >= 16; n -= 16) acc = __gfmul (k[0], xor (acc, __load_xform (src ++))); if (n > 0) acc = __gfmul (k[0], xor (acc, __loadu_si128_with_padding (src, n))); _mm_storeu_si128 (hash, __repr_xform (acc)); } #endif /* __mc_ACCELERATE__ */ CAMLprim value mc_ghash_key_size (__unit ()) { value s; _mc_switch_accel(pclmul, s = mc_ghash_key_size_generic(Val_unit), s = Val_int (__keys * 16)) return s; } CAMLprim value mc_ghash_init_key (value key, value m) { _mc_switch_accel(pclmul, mc_ghash_init_key_generic(key, m), __derive ((__m128i *) _st_uint8 (key), (__m128i *) Bp_val (m))) return Val_unit; } CAMLprim value mc_ghash (value k, value hash, value src, value off, value len) { _mc_switch_accel(pclmul, mc_ghash_generic(k, hash, src, off, len), __ghash ( (__m128i *) Bp_val (k), (__m128i *) Bp_val (hash), (__m128i *) _st_uint8_off (src, off), Int_val (len) )) return Val_unit; } CAMLprim value mc_ghash_mode (__unit ()) { value enabled = 0; _mc_switch_accel(pclmul, enabled = 0, enabled = 1) return Val_int (enabled); }
mirage-crypto
2.0.2
ISC
https://github.com/mirage/mirage-crypto
git+https://github.com/mirage/mirage-crypto.git
h
mirage-crypto-2.0.2/src/native/mirage_crypto.h
#if !defined (H__MIRAGE_CRYPTO) #define H__MIRAGE_CRYPTO #include <stdint.h> #include <string.h> #include "bitfn.h" #include <caml/mlvalues.h> #ifdef ACCELERATE # ifdef _MSC_VER # include <intrin.h> # else # include <x86intrin.h> # endif #define __mc_ACCELERATE__ #define __mc_detect_features__ #endif #ifdef ENTROPY #define __mc_ENTROPY__ #define __mc_detect_features__ #endif #ifdef __mc_detect_features__ struct _mc_cpu_features { int aesni; int pclmul; int ssse3; int rdrand; int rdseed; }; /* Supported accelerations */ extern struct _mc_cpu_features mc_detected_cpu_features; #endif /* __mc_detect_features__ */ #ifdef __mc_ACCELERATE__ #define _mc_switch_accel(FEATURE, GENERIC_CALL, ACCELERATED_CALL) \ if (!(mc_detected_cpu_features.FEATURE)) { GENERIC_CALL; } \ else { ACCELERATED_CALL; } #else /* __mc_ACCELERATE__ */ #define _mc_switch_accel(_FEATURE, GENERIC_CALL, _ACCELERATED_CALL) \ GENERIC_CALL; #endif /* __mc_ACCELERATE__ */ #if defined (__x86_64__) || defined (__aarch64__) || defined (__powerpc64__) || (64 == __riscv_xlen) || defined (__s390x__) || (defined (__mips__) && _MIPS_SIM==_ABI64) || defined (__loongarch_lp64) || (1 == _WIN64) #define ARCH_64BIT #elif defined (__i386__) || defined (__arm__) || (32 == __riscv_xlen) || (defined (__mips__) && _MIPS_SIM==_ABIO32) || (1 == _WIN32) #define ARCH_32BIT #else #error "unsupported platform" #endif #ifndef __unused # if defined(_MSC_VER) && _MSC_VER >= 1500 # define __unused(x) __pragma( warning (push) ) \ __pragma( warning (disable:4189 ) ) \ x \ __pragma( warning (pop)) # else # define __unused(x) x __attribute__((unused)) # endif #endif #define __unit() value __unused(_) #define _st_uint8(v) ((const uint8_t*) (String_val(v))) #define _st_uint32(v) ((const uint32_t*) (String_val(v))) #define _st_uint8_off(v, off) ((const uint8_t*)(String_val(v) + Long_val(off))) #define _bp_uint8_off(bp, off) ((uint8_t *) Bp_val (bp) + Long_val (off)) #define _bp_uint8(bp) ((uint8_t *) Bp_val (bp)) #define _bp_uint32(bp) ((uint32_t *) Bp_val (bp)) #define __define_bc_6(f) \ CAMLprim value f ## _bc (value *v, int __unused(c) ) { return f(v[0], v[1], v[2], v[3], v[4], v[5]); } #define __define_bc_7(f) \ CAMLprim value f ## _bc (value *v, int __unused(c) ) { return f(v[0], v[1], v[2], v[3], v[4], v[5], v[6]); } /* Signature of generic functions */ CAMLprim value mc_aes_rk_size_generic (value rounds); CAMLprim value mc_aes_derive_e_key_generic (value key, value rk, value rounds); CAMLprim value mc_aes_derive_d_key_generic (value key, value kr, value rounds, value __unused (rk)); CAMLprim value mc_aes_enc_generic (value src, value off1, value dst, value off2, value rk, value rounds, value blocks); CAMLprim value mc_aes_dec_generic (value src, value off1, value dst, value off2, value rk, value rounds, value blocks); CAMLprim value mc_ghash_key_size_generic (__unit ()); CAMLprim value mc_ghash_init_key_generic (value key, value m); CAMLprim value mc_ghash_generic (value m, value hash, value src, value off, value len); CAMLprim value mc_xor_into_generic (value b1, value off1, value b2, value off2, value n); CAMLprim value mc_xor_into_bytes_generic (value b1, value off1, value b2, value off2, value n); CAMLprim value mc_count_16_be_4_generic (value ctr, value dst, value off, value blocks); #endif /* H__MIRAGE_CRYPTO */
mirage-crypto
2.0.2
ISC
https://github.com/mirage/mirage-crypto
git+https://github.com/mirage/mirage-crypto.git
c
mirage-crypto-2.0.2/src/native/misc.c
#include "mirage_crypto.h" static inline void xor_into (const uint8_t *src, uint8_t *dst, size_t n) { /* see issue #70 #81 for alignment considerations (memcpy used below) */ #ifdef ARCH_64BIT uint64_t s; for (; n >= 8; n -= 8, src += 8, dst += 8) *(uint64_t*) dst ^= *(uint64_t*)memcpy(&s, src, 8); #endif uint32_t t; for (; n >= 4; n -= 4, src += 4, dst += 4) *(uint32_t*) dst ^= *(uint32_t*)memcpy(&t, src, 4); for (; n --; ++ src, ++ dst) *dst = *src ^ *dst; } static inline void _mc_count_8_be (uint64_t *init, uint64_t *dst, size_t blocks) { uint64_t qw = be64_to_cpu (*init); while (blocks --) *(dst ++) = cpu_to_be64 (qw ++); } /* XXX * * Counters are garbage. ;_; * Calling this incurs about a 15% hit in AES-CTR. * * What slows things down: * - Naive __uint128_t. * - Loop unrolling. * - SSE carry bit handling. */ static inline void _mc_count_16_be (uint64_t *init, uint64_t *dst, size_t blocks) { uint64_t qw1 = init[0], qw2 = be64_to_cpu (init[1]); for (; blocks --; dst += 2) { dst[0] = qw1; dst[1] = cpu_to_be64 (qw2); if ((++ qw2) == 0) qw1 = cpu_to_be64 (be64_to_cpu (qw1) + 1); } } /* The GCM counter. Counts on the last 32 bits, ignoring carry. */ static inline void _mc_count_16_be_4 (uint64_t *init, uint64_t *dst, size_t blocks) { uint64_t qw1 = init[0]; uint32_t dw3 = ((uint32_t*) init)[2], dw4 = be32_to_cpu (((uint32_t*) init)[3]); for (; blocks --; dst += 2) { dst[0] = qw1; ((uint32_t*) dst)[2] = dw3; ((uint32_t*) dst)[3] = cpu_to_be32 (dw4 ++); } } CAMLprim value mc_xor_into_bytes_generic (value b1, value off1, value b2, value off2, value n) { xor_into (_st_uint8_off (b1, off1), _bp_uint8_off (b2, off2), Int_val (n)); return Val_unit; } #define __export_counter(name, f) \ CAMLprim value name (value ctr, value dst, value off, value blocks) { \ f ( (uint64_t*) Bp_val (ctr), \ (uint64_t*) _bp_uint8_off (dst, off), Long_val (blocks) ); \ return Val_unit; \ } __export_counter (mc_count_8_be, _mc_count_8_be) __export_counter (mc_count_16_be, _mc_count_16_be) __export_counter (mc_count_16_be_4_generic, _mc_count_16_be_4)