diff --git a/Cargo.lock b/Cargo.lock index e19586d..30baf0f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5,6 +5,16 @@ name = "ansi_term" version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" +[[package]] +name = "as-slice" +version = "0.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "generic-array 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)", + "generic-array 0.13.2 (registry+https://github.com/rust-lang/crates.io-index)", + "stable_deref_trait 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "atty" version = "0.2.2" @@ -30,6 +40,11 @@ name = "bufstream" version = "0.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" +[[package]] +name = "byteorder" +version = "1.3.4" +source = "registry+https://github.com/rust-lang/crates.io-index" + [[package]] name = "bzip2" version = "0.3.2" @@ -105,6 +120,7 @@ dependencies = [ "pbr 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", "serial 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "time 0.1.38 (registry+https://github.com/rust-lang/crates.io-index)", + "urpc 0.1.0-alpha.1", "zip 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -113,6 +129,41 @@ name = "gcc" version = "0.3.53" source = "registry+https://github.com/rust-lang/crates.io-index" +[[package]] +name = "generic-array" +version = "0.12.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "typenum 1.11.2 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "generic-array" +version = "0.13.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "typenum 1.11.2 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "hash32" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "byteorder 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "heapless" +version = "0.5.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "as-slice 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", + "generic-array 0.13.2 (registry+https://github.com/rust-lang/crates.io-index)", + "hash32 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "ioctl-rs" version = "0.1.5" @@ -254,6 +305,38 @@ name = "podio" version = "0.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" +[[package]] +name = "postcard" +version = "0.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "byteorder 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)", + "heapless 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)", + "postcard-cobs 0.1.5-pre (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "postcard-cobs" +version = "0.1.5-pre" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "proc-macro2" +version = "1.0.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "unicode-xid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "quote" +version = "1.0.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "proc-macro2 1.0.9 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "rand" version = "0.3.16" @@ -281,6 +364,24 @@ name = "rustc-serialize" version = "0.3.24" source = "registry+https://github.com/rust-lang/crates.io-index" +[[package]] +name = "serde" +version = "1.0.104" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "serde_derive 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "serde_derive" +version = "1.0.104" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "proc-macro2 1.0.9 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.16 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "serial" version = "0.4.0" @@ -319,11 +420,26 @@ dependencies = [ "serial-core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "stable_deref_trait" +version = "1.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" + [[package]] name = "strsim" version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" +[[package]] +name = "syn" +version = "1.0.16" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "proc-macro2 1.0.9 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", + "unicode-xid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "term_size" version = "0.3.0" @@ -372,6 +488,11 @@ dependencies = [ "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "typenum" +version = "1.11.2" +source = "registry+https://github.com/rust-lang/crates.io-index" + [[package]] name = "unicode-segmentation" version = "1.2.0" @@ -382,6 +503,20 @@ name = "unicode-width" version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" +[[package]] +name = "unicode-xid" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "urpc" +version = "0.1.0-alpha.1" +dependencies = [ + "heapless 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)", + "postcard 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "vec_map" version = "0.8.0" @@ -411,10 +546,12 @@ dependencies = [ [metadata] "checksum ansi_term 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)" = "23ac7c30002a5accbf7e8987d0632fa6de155b7c3d39d0067317a391e00a2ef6" +"checksum as-slice 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "37dfb65bc03b2bc85ee827004f14a6817e04160e3b1a28931986a666a9290e70" "checksum atty 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "d912da0db7fa85514874458ca3651fe2cddace8d0b0505571dbdcd41ab490159" "checksum bitflags 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "aad18937a628ec6abcd26d1489012cc0e18c21798210f491af69ded9b881106d" "checksum bitflags 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)" = "4efd02e230a02e18f92fc2735f44597385ed02ad8f831e7c1c1156ee5e1ab3a5" "checksum bufstream 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "f2f382711e76b9de6c744cc00d0497baba02fb00a787f088c879f01d09468e32" +"checksum byteorder 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "08c48aae112d48ed9f069b33538ea9e3e90aa263cfa3d1c24309612b1f7472de" "checksum bzip2 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "c3eafc42c44e0d827de6b1c131175098fe7fb53b8ce8a47e65cb3ea94688be24" "checksum bzip2-sys 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "98ce3fff84d4e90011f464bbdf48e3428f04270439f703868fd489d2aaedfc30" "checksum clap 2.26.0 (registry+https://github.com/rust-lang/crates.io-index)" = "2267a8fdd4dce6956ba6649e130f62fb279026e5e84b92aa939ac8f85ce3f9f0" @@ -423,6 +560,10 @@ dependencies = [ "checksum enum_primitive 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "be4551092f4d519593039259a9ed8daedf0da12e5109c5280338073eaeb81180" "checksum flate2 0.2.19 (registry+https://github.com/rust-lang/crates.io-index)" = "36df0166e856739905cd3d7e0b210fe818592211a008862599845e012d8d304c" "checksum gcc 0.3.53 (registry+https://github.com/rust-lang/crates.io-index)" = "e8310f7e9c890398b0e80e301c4f474e9918d2b27fca8f48486ca775fa9ffc5a" +"checksum generic-array 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)" = "c68f0274ae0e023facc3c97b2e00f076be70e254bc851d972503b328db79b2ec" +"checksum generic-array 0.13.2 (registry+https://github.com/rust-lang/crates.io-index)" = "0ed1e761351b56f54eb9dcd0cfaca9fd0daecf93918e1cfc01c8a3d26ee7adcd" +"checksum hash32 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "d4041af86e63ac4298ce40e5cca669066e75b6f1aa3390fe2561ffa5e1d9f4cc" +"checksum heapless 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)" = "10b591a0032f114b7a77d4fbfab452660c553055515b7d7ece355db080d19087" "checksum ioctl-rs 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "c733bd6be680c4365bfeb89ac48d4c39ee2c47d933da3601689131471aaf3267" "checksum kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d" "checksum libc 0.2.30 (registry+https://github.com/rust-lang/crates.io-index)" = "2370ca07ec338939e356443dac2296f581453c35fe1e3a3ed06023c49435f915" @@ -439,22 +580,32 @@ dependencies = [ "checksum num-traits 0.1.40 (registry+https://github.com/rust-lang/crates.io-index)" = "99843c856d68d8b4313b03a17e33c4bb42ae8f6610ea81b28abe076ac721b9b0" "checksum pbr 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "deb73390ab68d81992bd994d145f697451bb0b54fd39738e72eef32458ad6907" "checksum podio 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "e5422a1ee1bc57cc47ae717b0137314258138f38fd5f3cea083f43a9725383a0" +"checksum postcard 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)" = "f61f42c9617f3d7b447ee300bf80cb16c7cd7b28ca88555822793f073f69719f" +"checksum postcard-cobs 0.1.5-pre (registry+https://github.com/rust-lang/crates.io-index)" = "7c68cb38ed13fd7bc9dd5db8f165b7c8d9c1a315104083a2b10f11354c2af97f" +"checksum proc-macro2 1.0.9 (registry+https://github.com/rust-lang/crates.io-index)" = "6c09721c6781493a2a492a96b5a5bf19b65917fe6728884e7c44dd0c60ca3435" +"checksum quote 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "2bdc6c187c65bca4260c9011c9e3132efe4909da44726bad24cf7572ae338d7f" "checksum rand 0.3.16 (registry+https://github.com/rust-lang/crates.io-index)" = "eb250fd207a4729c976794d03db689c9be1d634ab5a1c9da9492a13d8fecbcdf" "checksum redox_syscall 0.1.31 (registry+https://github.com/rust-lang/crates.io-index)" = "8dde11f18c108289bef24469638a04dce49da56084f2d50618b226e47eb04509" "checksum redox_termios 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "7e891cfe48e9100a70a3b6eb652fef28920c117d366339687bd5576160db0f76" "checksum rustc-serialize 0.3.24 (registry+https://github.com/rust-lang/crates.io-index)" = "dcf128d1287d2ea9d80910b5f1120d0b8eede3fbf1abe91c40d39ea7d51e6fda" +"checksum serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)" = "414115f25f818d7dfccec8ee535d76949ae78584fc4f79a6f45a904bf8ab4449" +"checksum serde_derive 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)" = "128f9e303a5a29922045a830221b8f78ec74a5f544944f3d5984f8ec3895ef64" "checksum serial 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "a1237a96570fc377c13baa1b88c7589ab66edced652e43ffb17088f003db3e86" "checksum serial-core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3f46209b345401737ae2125fe5b19a77acce90cd53e1658cda928e4fe9a64581" "checksum serial-unix 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "f03fbca4c9d866e24a459cbca71283f545a37f8e3e002ad8c70593871453cab7" "checksum serial-windows 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "15c6d3b776267a75d31bbdfd5d36c0ca051251caafc285827052bc53bcdc8162" +"checksum stable_deref_trait 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "dba1a27d3efae4351c8051072d619e3ade2820635c3958d826bfea39d59b54c8" "checksum strsim 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b4d15c810519a91cf877e7e36e63fe068815c678181439f2f29e2562147c3694" +"checksum syn 1.0.16 (registry+https://github.com/rust-lang/crates.io-index)" = "123bd9499cfb380418d509322d7a6d52e5315f064fe4b3ad18a53d6b92c07859" "checksum term_size 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e2b6b55df3198cc93372e85dd2ed817f0e38ce8cc0f22eb32391bfad9c4bf209" "checksum termion 1.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "689a3bdfaab439fd92bc87df5c4c78417d3cbe537487274e9b0b2dce76e92096" "checksum termios 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "d5d9cf598a6d7ce700a4e6a9199da127e6819a61e64b68609683cc9a01b5683a" "checksum textwrap 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "f728584ea33b0ad19318e20557cb0a39097751dbb07171419673502f848c7af6" "checksum time 0.1.38 (registry+https://github.com/rust-lang/crates.io-index)" = "d5d788d3aa77bc0ef3e9621256885555368b47bd495c13dd2e7413c89f845520" +"checksum typenum 1.11.2 (registry+https://github.com/rust-lang/crates.io-index)" = "6d2783fe2d6b8c1101136184eb41be8b1ad379e4657050b8aaff0c79ee7575f9" "checksum unicode-segmentation 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "a8083c594e02b8ae1654ae26f0ade5158b119bd88ad0e8227a5d8fcd72407946" "checksum unicode-width 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "bf3a113775714a22dcb774d8ea3655c53a32debae63a063acc00a91cc586245f" +"checksum unicode-xid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "826e7639553986605ec5979c7dd957c7895e93eabed50ab2ffa7f6128a75097c" "checksum vec_map 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "887b5b631c2ad01628bbbaa7dd4c869f80d3186688f8d0b6f58774fbe324988c" "checksum winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)" = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a" "checksum winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc" diff --git a/Cargo.toml b/Cargo.toml index a7d0776..1e6474c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,3 +12,6 @@ enum_primitive = "*" time = "0.1" zip = "0.2.6" pbr = "1.0.1" + +[dependencies.urpc] +path = "/home/dev/git/urpc" diff --git a/diff_tetris.html b/diff_tetris.html new file mode 100644 index 0000000..418f7e9 --- /dev/null +++ b/diff_tetris.html @@ -0,0 +1,277 @@ + + +
+ + + + + +Offset 2045, 2052 lines modified | Offset 2045, 2052 lines modified | ||
00007fc0:·0000·0000·0000·0000·0000·0000·0000·0000··................ | 00007fc0:·0000·0000·0000·0000·0000·0000·0000·0000··................ | ||
00007fd0:·0000·0000·0000·0000·0000·0000·0000·0000··................ | 00007fd0:·0000·0000·0000·0000·0000·0000·0000·0000··................ | ||
00007fe0:·0000·0000·0000·0000·0000·0000·0000·0000··................ | 00007fe0:·0000·0000·0000·0000·0000·0000·0000·0000··................ | ||
00007ff0:·0000·0000·0000·0000·0000·0000·0000·4700··..............G. | 00007ff0:·0000·0000·0000·0000·0000·0000·0000·4700··..............G. | ||
00008000:·9261·b761·da61·9261·b761·da61·9261·b761··.a.a.a.a.a.a.a.a | 00008000:·9261·b761·da61·9261·b761·da61·9261·b761··.a.a.a.a.a.a.a.a | ||
00008010:·da61·9261·b761·da61·9061·0260·7360·fe60··.a.a.a.a.a.`s`.` | 00008010:·da61·9261·b761·da61·9061·0260·7360·fe60··.a.a.a.a.a.`s`.` | ||
00008020:·0260·7360·fe60·0260·7360·fe60·0260·7360··.`s`.`.`s`.`.`s` | 00008020:·0260·7360·fe60·0260·7360·fe60·0260·7360··.`s`.`.`s`.`.`s` | ||
00008030:·fe60·0000· | 00008030:·fe60·0000·0000·0000·0000·0303·0707·0f0e··.`.............. | ||
00008040:· | 00008040:·1f1b·0000·0000·0000·0000·8080·f0f0·e040··...............@ | ||
00008050:·f | 00008050:·f000·0000·0000·0000·0101·0303·0707·0f0d··................ | ||
00008060:· | 00008060:·0f0c·0000·0000·0000·c0c0·f8f8·f020·f880··.............·.. | ||
00008070:· | 00008070:·f830·0000·0000·0000·0303·0707·0f0e·1f1b··.0.............. | ||
00008080:· | 00008080:·1f18·0000·0000·0000·8080·f0f0·e040·f000··.............@.. | ||
00008090:· | 00008090:·f060·0000·0000·0000·0202·0f09·0d00·1810··.`.............. | ||
000080a0:·0 | 000080a0:·0c08·0303·3c3f·437c·9ce0·b0c0·a0c0·90e0··....<?C|........ | ||
000080b0:· | 000080b0:·5060·0000·0000·0000·0000·0303·0707·0f0e··P`.............. | ||
000080c0:· | 000080c0:·1f1b·0000·0000·0000·0e00·8e80·fcfc·ec4c··...............L | ||
000080d0:· | 000080d0:·fc0c·0000·0000·0000·0303·1f1f·0f04·1f02··................ | ||
000080e0:· | 000080e0:·0f0c·0000·0000·0000·8080·e0e0·f0f0·f8a0··................ | ||
000080f0:· | 000080f0:·f820·0707·0f0f·0f0f·1f1f·1f1e·3f3e·3f3e··.·..........?>?> | ||
00008100:· | 00008100:·3f3f·e0e0·f0f0·f0d0·e000·f040·e000·e000··??.........@.... | ||
00008110:· | 00008110:·c040·0000·0000·0000·0000·0000·1c1c·3e3e··.@............>> | ||
00008120:· | 00008120:·7f7f·0000·0000·0000·0303·1707·3f0a·3f1c··............?.?. | ||
00008130:· | 00008130:·1f1b·1f18·0700·0d0f·1d1f·1c05·1807·0606··................ | ||
00008140:·0 | 00008140:·0e0e·f060·e000·80c0·b0f0·38b0·18e0·6060··...`......8...`` | ||
00008150:· | 00008150:·7070·0300·0f0f·3f0f·3707·000f·101f·181c··pp....?.7....... | ||
00008160:· | 00008160:·0e0e·f000·40c0·7ce0·3c70·08c8·18f8·1878··....@.|.<p.....x | ||
00008170:· | 00008170:·0000·0700·0e0f·1e1f·1e18·041b·000f·0707··................ | ||
00008180:·0 | 00008180:·0707·e000·8080·c0c0·00a0·00e0·c0c0·e0e0··................ | ||
00008190:· | 00008190:·8080·1f18·0700·0f0f·1f0f·300f·101f·313d··..........0...1= | ||
000081a0:· | 000081a0:·2121·f060·e000·58c0·f8c0·00e0·00c0·8080··!!.`..X......... | ||
000081b0:·c0c0· | 000081b0:·c0c0·1f18·0700·1d1f·7c3f·600e·501f·383f··........|?`.P.8? | ||
000081c0:· | 000081c0:·2026·f878·f010·a0e0·c4e4·0cdc·0cfc·00c0···&.x............ | ||
000081d0:· | 000081d0:·0000·1f18·1f1f·1f1f·0e0f·0103·0103·0000··................ | ||
000081e0:·0 | 000081e0:·0000·00e0·c030·8070·e0f0·c0e0·a8e8·78f8··.....0.p......x. | ||
000081f0:· | 000081f0:·7070·3c3f·3b3c·1211·0304·010e·011e·003f··pp<?;<.........? | ||
00008200:· | 00008200:·007f·40a0·00e0·00c0·00e0·8060·8070·00f0··..@........`.p.. | ||
00008210:·00 | 00008210:·00f0·ffff·7f7f·3e3e·1c1c·0000·0000·0000··......>>........ | ||
00008220:·0 | 00008220:·0000·0f08·0d0e·212f·383d·383f·0007·0000··......!/8=8?.... | ||
00008230:· | 00008230:·0000·0707·0f0f·0f0c·1f16·3f30·3f30·0f08··..........?0?0.. | ||
00008240:· | 00008240:·0b0f·c0c0·f0f0·e080·f800·f840·f0f0·e000··...........@.... | ||
00008250:· | 00008250:·80c0·0000·0303·0707·0706·0f0b·1f18·1f18··................ | ||
00008260:·0 | 00008260:·0704·0000·e0e0·f8f8·f040·fc00·fc20·f878··.........@...·.x | ||
00008270:· | 00008270:·f000·0707·0f0f·0f0c·1f16·3f30·3f30·0f08··..........?0?0.. | ||
00008280:· | 00008280:·1f1f·c0c0·f0f0·e080·f800·f840·f0f0·e000··...........@.... | ||
00008290:· | 00008290:·40c0·0000·0000·0000·0000·0000·1c1c·223e··@............."> | ||
000082a0:· | 000082a0:·4973·b1c1·5963·223e·1c1c·0000·0000·0000··Is..Yc">........ | ||
000082b0:·0000·0000·0 | 000082b0:·0000·0000·0707·0f0f·0f0c·1f16·3f30·3f30··............?0?0 | ||
000082c0:·0 | 000082c0:·0f0c·0e00·dec8·fef0·fe9e·fe06·fc44·fcfc··.............D.. | ||
000082d0:· | 000082d0:·f818·0707·1f1f·0f02·1f00·3f06·3f0c·0f01··..........?.?... | ||
000082e0:· | 000082e0:·1d1f·8080·f8f0·fc60·ccb0·c020·c0f0·e038··.......`...·...8 | ||
000082f0:· | 000082f0:·e018·0000·0000·0000·0000·0000·0000·0000··................ | ||
00008300:·0000· | 00008300:·0000·0000·0707·8f88·d8d0·7878·6eee·fbe3··..........xxn... | ||
00008310:· | 00008310:·ff60·0000·0303·0707·0f0f·1f1f·1f1e·3f3e··.`............?> | ||
00008320:· | 00008320:·3f3e·0000·e0e0·f0f0·f0d0·e000·f040·e000··?>...........@.. | ||
00008330:· | 00008330:·e000·1b1f·3b3f·383b·3807·1807·001e·1c1c··....;?8;8....... | ||
00008340:· | 00008340:·3c3c·a0e0·b0f0·38b8·38c0·30c0·00f0·7070··<<....8.8.0...pp | ||
00008350:·7 | 00008350:·7878·0b0f·131f·031f·303f·303f·303c·2020··xx......0?0?0<·· | ||
00008360:·0000·00 | 00008360:·0000·00c0·d8c0·fce0·fce0·80e0·00e0·7070··..............pp | ||
00008370:· | 00008370:·7878·171f·071f·001f·000f·010f·0507·0e0e··xx.............. | ||
00008380:· | 00008380:·0707·c080·e080·6080·00e0·80e0·c0c0·4040··......`.......@@ | ||
00008390:· | 00008390:·0000·0f0f·1f1f·3807·3007·181f·181f·1818··......8.0....... | ||
000083a0:· | 000083a0:·0c0c·5ce0·5ce0·0868·38f8·38f8·38b8·0000··..\.\..h8.8.8... | ||
000083b0:· | 000083b0:·0000·3e3f·3e37·3c23·1c07·667f·637f·607e··..>?>7<#..f.c.`~ | ||
000083c0:· | 000083c0:·4040·b0f0·a0f0·0272·06fe·06fe·86fe·0000··@@.....r........ | ||
000083d0:· | 000083d0:·0000·1f1f·1e1f·080f·0007·0003·0000·0000··................ | ||
000083e0:·0 | 000083e0:·0000·c030·60e0·78f8·f8c8·f282·4ebe·3c7c··...0`.x.....N.<| | ||
000083f0:·3 | 000083f0:·3838·bfa9·ebbf·bcfc·ffff·cfcb·1f10·1f11··88.............. | ||
00008400:· | 00008400:·1e1e·00ff·0000·0f0f·f8ff·feff·ff7f·8383··................ | ||
00008410:·0 | 00008410:·0000·7f7f·787b·0102·0102·0007·000f·001f··....x{.......... | ||
00008420:· | 00008420:·003f·c040·40a0·00e0·b040·f000·00e0·00e0··.?.@@....@...... | ||
00008430:· | 00008430:·00f0·0000·0000·0000·0000·0000·0707·0f0f··................ | ||
00008440:· | 00008440:·0f0c·0000·0000·0000·0000·0000·c0c0·f0f0··................ | ||
00008450:· | 00008450:·e080·1f16·1f10·1f18·3738·3b33·3827·1c1f··........78;38'.. | ||
00008460:· | 00008460:·3c3c·f800·f840·f0f0·f818·b8a8·18e0·38f8··<<...@........8. | ||
00008470:· | 00008470:·3c3c·0000·0707·0f0f·0f0c·1f16·3f30·3f30··<<..........?0?0 | ||
00008480:· | 00008480:·0f09·0000·c0c0·f0f0·e080·f800·f840·fef0··.............@.. | ||
00008490:· | 00008490:·fcf0·0b0f·010f·001f·001f·607f·607e·606c··..........`.`~`l | ||
000084a0:· | 000084a0:·4040·e0e0·80c0·00c0·40e0·80e0·00e0·7070··@@......@.....pp | ||
000084b0:· | 000084b0:·7878·0707·0f0f·1f1f·1f1c·3f3d·3f3c·7f7c··xx........?=?<.| | ||
000084c0:· | 000084c0:·7f7f·c0c0·e0e0·f070·f010·f050·f010·e080··.......p...P.... | ||
000084d0:·0 | 000084d0:·c040·797a·3037·0601·0708·001f·003f·007f··.@yz07.......?.. | ||
000084e0:· | 000084e0:·00ff·c420·1ce0·30c0·c000·00c0·00e0·00e0··...·..0......... | ||
000084f0:·0 | 000084f0:·00e0·0000·e0e0·f090·8888·8484·8c8c·fafa··................ | ||
00008500:· | 00008500:·fd11·3dd1·7d53·f997·13ff·1efe·fcfc·f0f0··..=.}S.......... | ||
00008510:·0000·0 | 00008510:·0000·0707·0f0f·0f0f·1f1c·1f1d·3f3c·3f3c··............?<?< | ||
00008520:· | 00008520:·3f3f·1e1e·1111·1e10·1f13·1c14·cccf·ffbf··??.............. | ||
00008530:· | 00008530:·afa8·3d3e·383f·1e19·0304·010e·001f·003f··..=>8?.........? | ||
00008540:· | 00008540:·007f·c020·00f0·30c0·6080·c020·00f0·00f0··...·..0.`..·.... | ||
00008550:·00 | 00008550:·00f0·fefe·fe82·feee·3828·3828·3828·3828··........8(8(8(8( | ||
00008560:·3 | 00008560:·3838·eeee·eeaa·feba·fe82·feba·eeaa·eeaa··88.............. | ||
00008570:· | 00008570:·eeee·fefe·fe82·febe·fc84·fcbc·febe·fe82··................ | ||
00008580:· | 00008580:·fefe·f6f6·fe9a·fe9a·feaa·fea2·feb2·eeaa··................ | ||
00008590:· | 00008590:·eeee·fcfc·fe86·feb2·eeaa·eeaa·feb2·fe86··................ | ||
000085a0:· | 000085a0:·fcfc·0000·2222·5555·5555·5555·5555·2222··....""UUUUUUUU"" | ||
000085b0:·0000·0000· | 000085b0:·0000·0000·2020·5050·5050·5050·5050·2020··....··PPPPPPPP·· | ||
000085c0:·00 | 000085c0:·0000·0000·1212·3535·1515·1515·1515·1212··......55........ | ||
000085d0:·0000·00 | 000085d0:·0000·0000·2222·5555·1515·2525·4545·7272··....""UU..%%EErr | ||
000085e0:·0000·0000· | 000085e0:·0000·0000·a2a2·a5a5·a5a5·f5f5·2525·2222··............%%"" | ||
000085f0:·000 | 000085f0:·0000·0000·7272·4545·6565·1515·1515·6262··....rrEEee....bb | ||
00008600:·000 | 00008600:·0000·0000·6262·9595·6565·b5b5·9595·6262··....bb..ee....bb | ||
00008610:·000 | 00008610:·0000·0000·6e6e·eeee·6e6e·6e6e·6f6f·6767··....nn..nnnnoogg | ||
00008620:·00 | 00008620:·0000·0000·bebe·b9b9·b9b9·bebe·b8b8·3838··..............88 | ||
00008630:·00 | 00008630:·0000·0000·3c3c·6666·5e5e·5e5e·7e7e·3c3c··....<<ff^^^^~~<< | ||
00008640:·00 | 00008640:·0000·0000·0000·0303·0c0c·1010·2020·2020··............···· | ||
00008650:· | 00008650:·4040·0000·0000·1818·3c24·7a56·3c0c·0818··@@......<$zV<... | ||
00008660:· | 00008660:·0000·0000·0000·0000·0000·0303·0707·6464··..............dd | ||
00008670:· | 00008670:·5455·0000·0000·0000·0000·e0e0·f0f0·f0a0··TU.............. | ||
00008680:· | 00008680:·f880·7757·7b78·4f4f·7c7c·3838·1f1f·0707··..wW{xOO||88.... | ||
00008690:·0 | 00008690:·0101·f830·f000·f8f8·1c14·7f7d·ccfc·19f9··...0.......}.... | ||
000086a0:· | 000086a0:·f1f1·f830·f101·f9f9·1c14·7f7d·ccfc·18f8··...0.......}.... | ||
000086b0:· | 000086b0:·f0f0·0000·0707·0f0f·c9c9·a9ab·efaf·e7a7··................ | ||
000086c0:· | 000086c0:·f390·0000·e0e0·f0f0·f040·fc00·fc20·f878··.........@...·.x | ||
000086d0:· | 000086d0:·f000·ffff·8f8f·f8f8·e0e0·6f7f·3c3f·0f0f··..........o.<?.. | ||
000086e0:·0 | 000086e0:·0303·fcfc·f7f5·1f15·fcfc·8bfb·1bfb·f3f0··................ | ||
000086f0:· | 000086f0:·c3c3·0000·e0e0·f0f0·f040·ff03·ff20·fb7b··.........@...·.{ | ||
00008700:· | 00008700:·f303·fcfc·f7f5·1f15·fcfc·88f8·18f8·f0f0··................ | ||
00008710:· | 00008710:·c0c0·0000·3c3c·6e6e·5e5e·5e5e·7e7e·3c3c··....<<nn^^^^~~<< | ||
00008720:·0000· | 00008720:·0000·0000·0000·8080·4040·2424·1a1a·0101··........@@$$.... | ||
00008730:· | 00008730:·0600·0000·0000·0000·0303·0404·0909·0b0b··................ | ||
00008740:·0 | 00008740:·0f0e·0000·0000·0000·fcfc·e2e2·fdfd·f991··................ | ||
00008750:·f | 00008750:·fdc1·0f0e·0908·0f0f·6764·6464·1417·0303··........gddd.... | ||
00008760:· | 00008760:·0000·fd19·f901·f9f9·d656·7f3f·7df9·f9fd··.........V.?}... | ||
00008770:· | 00008770:·fefe·0f0e·0908·0f0f·0704·0404·1417·6363··..............cc | ||
00008780:· | 00008780:·6060·0f0f·1313·2727·2726·2f2b·3f38·3f38··``....'''&/+?8?8 | ||
00008790:· | 00008790:·2724·fcfc·e2e2·f9f9·f141·fd01·fd21·f979··'$.......A...!.y | ||
000087a0:·f | 000087a0:·f101·3f3f·dfd4·d4d4·d4df·343f·1f1f·0f0f··..??......4?.... | ||
+Max diff block lines reached; 140415/280927 bytes (49.98%) of diff not shown. + |