diff --git a/2april.html b/2april.html new file mode 100644 index 0000000..4965af4 --- /dev/null +++ b/2april.html @@ -0,0 +1,16447 @@ + + + +TU_animation + + + + + + + + + + + + + + + + + + + +
+
+ +
+
+
In [1]:
+
+
+
from pathlib import Path
+import numpy as np
+import os
+from matplotlib import pyplot as plt
+import matplotlib as mpl
+from time import time
+from munch import Munch
+import pickle
+from itertools import count
+
+from FKMC.general import shapes, smooth
+
+%matplotlib inline
+np.seterr(all='warn')
+textwidth = 6.268
+mpl.rcParams['figure.dpi'] = 70
+default_figargs = dict(figsize = (textwidth,textwidth))
+
+import logging
+mpl_logger = logging.getLogger('matplotlib')
+mpl_logger.setLevel(logging.WARNING) 
+
+ +
+
+
+ +
+
+ + +
+ +
+ + +
+
DEBUG:matplotlib.pyplot:Loaded backend module://ipykernel.pylab.backend_inline version unknown.
+
+
+
+ +
+
+ +
+
+
+
In [2]:
+
+
+
with open('/data/users/tch14/pickled_data/TU_phase_data.pickle', 'rb') as file: 
+    TU_phase_obs = pickle.load(file)  
+
+ +
+
+
+ +
+
+
+
In [3]:
+
+
+
f, axes = plt.subplots(1,6, figsize = (25,5), gridspec_kw = dict(wspace = 0.25, hspace = 0.25))
+
+
+
+binder = 0
+norm = mpl.colors.Normalize(vmin=0, vmax=1)
+#TU_data.hints.Mf_moments == ('Ns', 'repeats', 'Us', 'Ts', 'moment', 'MCstep')
+M2 = TU_phase_obs.Mf_moments[-1, :, :, :, 2].mean(axis = 0).T
+M4 = TU_phase_obs.Mf_moments[-1, :, :, :, 4].mean(axis = 0).T
+Y = M2**2 / M4 if binder else M2
+
+pcol = axes[0].pcolormesh(TU_phase_obs.Us, TU_phase_obs.Ts, Y, cmap="RdBu_r", norm = norm, linewidth=0, rasterized = True)
+
+def get_nearby_index(sorted_list, value):
+    i = np.searchsorted(sorted_list, value)
+    return sorted_list[i], i
+
+T, T_i = get_nearby_index(TU_phase_obs.Ts, 1.8)
+U, U_i = get_nearby_index(TU_phase_obs.Us, 5)
+print(U, T)
+
+axes[0].plot([U,], [T], color = 'k', marker = 'o')
+axes[1].plot([U,], [T], color = 'k', marker = 'o')
+
+E_bins = TU_phase_obs.E_bins 
+e = 0.5
+
+for e in [0.001, 0.01, 0.1, 1]:
+
+    gap_indices = (-e < E_bins[:-1]) & (E_bins[:-1] < e)
+    gap_state_count = TU_phase_obs.DOS[-1, :, :, :, :].mean(axis=0)[:, :, gap_indices].sum(axis = -1)
+
+    pcol = axes[1].contour(TU_phase_obs.Us, TU_phase_obs.Ts, gap_state_count, cmap="RdBu_r", levels = [0.2,], label = 'e = {e}')
+
+axes[1].legend()
+    
+#pcol = axes[1].pcolormesh(TU_phase_obs.Us, TU_phase_obs.Ts, gap_state_count, cmap="RdBu_r", linewidth=0, rasterized = True)
+
+
+for i, N in zip(count(), TU_phase_obs.Ns):
+    if N < 16: continue
+    IPR = TU_phase_obs.IPR[i, :, U_i, T_i, :].mean(axis = 0)
+    DOS = TU_phase_obs.DOS[i, :, U_i, T_i, :].mean(axis = 0)
+    
+    axes[3].plot(E_bins[:-1], DOS, label = f'N = {N}')
+    axes[3].set(xlim = (-2*e, 2*e))
+    
+    #smooth by a value dependant on the size
+    IPR = smooth(IPR, scale = 32/N, axis = -1)
+    DOS = smooth(DOS, scale = 32/N, axis = -1)
+
+    axes[2].plot(E_bins[:-1], DOS, label = f'N = {N}')
+
+    
+    axes[4].plot(E_bins[:-1], IPR)
+    
+    
+energy_cuts = [0, 2, 3, 4]
+cut_colors = 'rgbky'
+energy_cuts_exact, energy_cuts_i = np.array([get_nearby_index(TU_phase_obs.E_bins, E) for E in energy_cuts]).T
+axes[4].vlines(energy_cuts_exact, colors = cut_colors, linestyle= 'dashed', ymin = 0, ymax = 0.1)
+    
+axes[2].legend()
+
+ +
+
+
+ +
+
+ + +
+ +
+ + +
+
5.172413793103448 1.9586206896551726
+WARNING:matplotlib.legend:No handles with labels found to put in legend.
+
+
+
+ +
+ +
+ + +
+
/home/tch14/conda-envs/intelpython3.5/lib/python3.6/site-packages/matplotlib/contour.py:1000: UserWarning: The following kwargs were not used by contour: 'label'
+  s)
+
+
+
+ +
+ +
Out[3]:
+ + + + +
+
<matplotlib.legend.Legend at 0x7f4823e31ef0>
+
+ +
+ +
+ +
+ + + + +
+ +
+ +
+ +
+
+ +
+
+
+
In [28]:
+
+
+
from matplotlib.animation import FuncAnimation
+from IPython.display import HTML, display
+
+def lerp(start, end, lerp): return start * (1 - lerp) + lerp * end
+T_bot = 0.5
+T_top = 4
+U_left = 2
+U_right = 8
+
+##how wide to make the central energy interval
+e = 0.3
+
+##where to make cuts for the scaling lines
+energy_cuts = [0, 2, 3, 4]
+cut_colors = 'rgbky'
+energy_cuts_exact, energy_cuts_i = np.array([get_nearby_index(TU_phase_obs.E_bins, E) for E in energy_cuts]).T
+energy_cuts_i = energy_cuts_i.astype(int)
+
+def move_shape(i):
+    if i < 0.25:
+        j = i / 0.25
+        T = lerp(T_bot, T_top, j)
+        U = U_left
+        return T, U
+    if i < 0.5:
+        j = (i-0.25) / 0.25
+        T = T_top
+        U = lerp(U_left, U_right, j)
+        return T, U
+    if i < 0.75:
+        j = (i-0.5) / 0.25
+        T = lerp(T_top, T_bot, j)
+        U = U_right
+        return T, U
+    else:
+        j = (i-0.75) / 0.25
+        T = T_bot
+        U = lerp(U_right, U_left, j)
+        return T, U
+    
+f, axes = plt.subplots(3,2, figsize = (10,15), gridspec_kw = dict(wspace = 0.25, hspace = 0.25))
+axes = axes.flatten()
+axes[[0,1,2,3,4,5]] = axes[:]
+    
+###   plot the phase diagrams
+binder = 0
+norm = mpl.colors.Normalize(vmin=0, vmax=1)
+#TU_data.hints.Mf_moments == ('Ns', 'repeats', 'Us', 'Ts', 'moment', 'MCstep')
+M2 = TU_phase_obs.Mf_moments[-1, :, :, :, 2].mean(axis = 0).T
+M4 = TU_phase_obs.Mf_moments[-1, :, :, :, 4].mean(axis = 0).T
+Y = M2**2 / M4 if binder else M2
+
+pcol = axes[0].pcolormesh(TU_phase_obs.Us, TU_phase_obs.Ts, Y, cmap="RdBu_r", norm = norm, linewidth=0, rasterized = True)
+
+E_bins = TU_phase_obs.E_bins 
+axes[2].vlines((-e, e), ymin = 0, ymax = 900)
+axes[3].vlines((-e, e), ymin = 0, ymax = 800)
+
+axes[0].set(title = 'Order Parameter')
+axes[1].set(title = '# of states near E = 0')
+axes[2].set(title = 'DOS')
+axes[3].set(title = 'Zoom on DOS around E = 0')
+axes[4].set(title = 'IPR')
+
+axes[3].set(xlim = (-2*e, 2*e), ylim = (0, 500))
+axes[4].set(ylim = (0, 0.1))
+
+
+gap_indices = (-e < E_bins[:-1]) & (E_bins[:-1] < e)
+gap_state_count = TU_phase_obs.DOS[-1, :, :, :, :].mean(axis=0)[:, :, gap_indices].sum(axis = -1)
+
+pcol = axes[1].pcolormesh(TU_phase_obs.Us, TU_phase_obs.Ts, gap_state_count, cmap="RdBu_r", linewidth=0, rasterized = True)
+
+#axes[0,0].set(xlim = (-5,5), ylabel = 'DOS\nT')
+#axes[1,0].set(ylabel = 'IPR\nT', xlabel = '$\omega$')
+
+#axes[0,1].set(ylabel = 'DOS')
+#axes[1,1].set(ylabel = 'IPR', xlabel = '$\omega$')
+
+legends = [None, None]
+points = [None, None]
+IPR_vlines = [None for _ in energy_cuts_exact]
+E_lines = [None for _ in TU_phase_obs.Ns]
+E_lines2 = [None for _ in TU_phase_obs.Ns]
+IPR_lines = [None for _ in TU_phase_obs.Ns]
+E_cut_lines = [None for _ in energy_cuts]
+
+#plot all the stuff that needs to change and save references to them
+def init():
+    global legends
+    #text = ax.text(0,1.05, f' ', fontsize = 15, transform=ax.transAxes)    
+    
+    T, T_i = get_nearby_index(TU_phase_obs.Ts, 0)
+    U, U_i = get_nearby_index(TU_phase_obs.Us, 0)
+    
+    points[0], = axes[0].plot([U,], [T], color = 'k', marker = 'o')
+    points[1], = axes[1].plot([U,], [T], color = 'k', marker = 'o')
+    
+    for i, E_i, E, colour in zip(count(), energy_cuts_i, energy_cuts_exact, cut_colors):
+        print(U_i, T_i, E_i)
+        IPR_cut = TU_phase_obs.IPR[:, :, U_i, T_i, E_i].mean(axis = 1)
+        
+        E_cut_lines[i], = axes[5].plot(TU_phase_obs.Ns, IPR_cut, color = colour, label = f'E = {E}', marker = 'o', linestyle = 'None')
+        IPR_vlines[i], = axes[4].plot([E,E], [0,900], color = colour, linestyle= 'dashed')
+
+
+    #IPR_lines = []
+    #E_lines = []
+    #for i, N in enumerate(o.Ns):
+        #E_line, = axes[0, 1].plot(o.E_bins[1:], o.sE[i][T_select, :], label = f'N = {N}')
+        #IPR_line, = axes[1, 1].plot(o.E_bins[1: ], o.sI[i][T_select, :])
+        #E_lines.append(E_line)
+        #IPR_lines.append(IPR_line)
+        
+    for i, N in zip(count(), TU_phase_obs.Ns):
+        if N < 16: continue
+        IPR = TU_phase_obs.IPR[i, :, U_i, T_i, :].mean(axis = 0)
+        DOS = TU_phase_obs.DOS[i, :, U_i, T_i, :].mean(axis = 0)
+
+        #smooth by a value dependant on the size
+        IPR = smooth(IPR, scale = 32/N, axis = -1)
+        DOS = smooth(DOS, scale = 32/N, axis = -1)
+
+        E_lines[i], = axes[2].plot(E_bins[:-1], 0*DOS, label = f'N = {N}')
+        E_lines2[i], = axes[3].plot(E_bins[:-1], 0*DOS, label = f'N = {N}')
+        IPR_lines[i], = axes[4].plot(E_bins[:-1], 0*IPR)
+        
+
+    
+    if legends[0] == None: legends[0] = axes[2].legend(loc = 'upper left')
+    if legends[1] == None: legends[1] = axes[5].legend()
+    return np.concatenate([points, E_lines, IPR_lines, IPR_vlines, E_cut_lines, [legend,legend2]])
+    
+def update(frame):
+    T, U =  move_shape(frame)
+    
+    T, T_i = get_nearby_index(TU_phase_obs.Ts, T)
+    U, U_i = get_nearby_index(TU_phase_obs.Us, U)
+
+    for p in points: p.set_data((U, ), (T, ))
+
+    for i, N in zip(count(), TU_phase_obs.Ns):
+        if N < 16: continue
+        IPR = TU_phase_obs.IPR[i, :, U_i, T_i, :].mean(axis = 0)
+        DOS = TU_phase_obs.DOS[i, :, U_i, T_i, :].mean(axis = 0)
+        
+        #smooth by a value dependant on the size
+        sIPR = smooth(IPR, scale = 32/N, axis = -1)
+        sDOS = smooth(DOS, scale = 32/N, axis = -1)
+
+        E_lines[i].set_data(E_bins[:-1], sDOS)
+        E_lines2[i].set_data(E_bins[:-1], DOS) #not smoothed!
+        
+        IPR_lines[i].set_data(E_bins[:-1], sIPR)
+    
+    for i, E_i, E, colour in zip(count(), energy_cuts_i, energy_cuts_exact, cut_colors):
+        IPR_cut = TU_phase_obs.IPR[:, :, U_i, T_i, E_i].mean(axis = 1)
+        
+        E_cut_lines[i].set_data(TU_phase_obs.Ns, IPR_cut)
+        #IPR_vlines[i].set_data([E,E], [0,900])
+    
+    return np.concatenate([points, E_lines, E_lines2, IPR_lines, E_cut_lines])
+    
+frames = np.linspace(0,1,120)
+frames = np.linspace(0,1,12)
+
+interval = 40000 /len(frames)
+
+ani = FuncAnimation(f, update, 
+                    frames=frames,
+                    init_func=init, 
+                    blit=False,
+                    repeat_delay = 1000,
+                    interval = interval,
+        )
+        
+HTML(ani.to_html5_video())
+
+ +
+
+
+ +
+
+ + +
+ +
+ + +
+
0 0 1000
+0 0 1200
+0 0 1300
+0 0 1400
+
+
+
+ +
+ +
Out[28]:
+ + + +
+ +
+ +
+ +
+ +
+ + +
+
0 0 1000
+0 0 1200
+0 0 1300
+0 0 1400
+
+
+
+ +
+ +
+ + + + +
+ +
+ +
+ +
+
+ +
+
+
+
In [ ]:
+
+
+
%%time
+with open("TU_sweep.html", "w") as f:
+    print(ani.to_html5_video(), file=f)
+
+ +
+
+
+ +
+
+
+
In [24]:
+
+
+
ani.save('TU_sweep.mp4', dpi = 300)
+
+ +
+
+
+ +
+
+ + +
+ +
+ + +
+
0 0 1000
+0 0 1200
+0 0 1300
+0 0 1400
+
+
+
+ +
+
+ +
+
+
+
In [ ]:
+
+
+
 
+
+ +
+
+
+ +
+
+
+ + + + + + diff --git a/CIVIC/index.html b/CIVIC/index.html deleted file mode 100644 index 08bbd26..0000000 --- a/CIVIC/index.html +++ /dev/null @@ -1,6422 +0,0 @@ - - - - - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - -

- This database brings together all the civillian casualty investigations publicly released by the US military. Below you can search the database based on date, country and keyword. Click an entry to see a detailed anaylysis of the invesitgation as well as download the original documents. -

- - - - -

- This is a joint project of CIVIC and Columbia Law School. -

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameDateType of investigationSubjectCountry
Investigation of Photographs by 5th Special Forces Group (Abn) of John Walker LindhDec 2001AR 15-6Ill-treatment of detaineesAfghanistan
CID Report: 0129-0CID899-63556Aug 2002CID (criminal)Ill-treatment of detaineesIraq
Investigation of CJSOTF-AP and 5th SF Group Detention OperationsJan 2002AR 15-6Ill-treatment of detaineesIraq
CID Report on Hadi Abdul Hussain Hasson, aka Al Zubaidy, ISN US91Z-300055-EPWApr 2003CID (criminal)Ill-treatment of detaineesIraq
CID Report: 0397-2004-CID023-67282Apr 2001CID (criminal)Ill-treatment of detaineesIraq
CID Report (Death): 0035-03-CID259-61144Apr 2003CID (criminal)Ill-treatment of detaineesIraq
CID Report: 0139-03-CID469-60206Apr 2003CID (criminal)Ill-treatment of detaineesIraq
CID Report: 0353-2003-CID093-45256Apr 2003CID (criminal)Ill-treatment of detaineesIraq
CID Report: 0050-03-CID349-59654May 2003CID (criminal) (led to JAG prosecution)Ill-treatment of detaineesIraq
CID Report: 001-03-CID899-63482May 2003CID (criminal)TheftIraq
Investigation into Missing Property of TranslatorsMay 2003AR 15-6TheftIraq
Investigation Report re: Allegations of Maltreatment of Detainees, Camp Marlboro, Baghdad, IraqJun 2003AR 15-6Ill-treatment of detaineesIraq
CID Report: 0014-03-CID899-63484Jun 2003CID (criminal)Ill-treatment of detaineesIraq
Investigation (Iraq, June 8, 2003) re: Report of Alleged Law of War ViolationsJun 2003AR 15-6ill-treatment of detainees; theftIraq
CID Report: 0046-03-CID899-63502Jun 2003CID (criminal)Ill-treatment of detaineesIraq
Investigation re: Abuse of Iraqi CiviliansJun 2003AR 15-6ill-treatment of detainees Iraq
Investigation re: Death of a DetaineJul 2003AR 15-6Ill-treatment of detaineesIraq
CID investigation into allegations of prisoner maltreatment/abuse at Camp Cropper, IraqJul 2003CID (criminal)Ill-treatment of detaineesIraq
investigation into Purported Abuse of Detainees at Ramadi Palace, Iraq, July 11-12, 2003Jul 2003AR 15-6Ill-treatment of detaineesIraq
Investigation into the Shooting of an Iraqi CivilianJul 2003AR 15-6Ill-treatment of detaineesIraq
CID Report: 0094-04-CID259-80177Aug 2003CID (criminal)Ill-treatment of detaineesIraq
Investigation re: Death of a DetaineeAug 2003AR 15-6Ill-treatment of detaineesIraq
Investigation re: Death of a DetaineeAug 2003AR 15-6Ill-treatment of detaineesIraq
CID Report: 0152-03-CID469-60212Aug 2003CID (criminal)Ill-treatment of detaineesIraq
Investigation re: Death of Iraqi Detainee Ziad Muhammed TariqAug 2003AR 15-6Ill-treatment of detaineesIraq
Investigation into Shooting Death of Iraqi Detainee, FOB Packhorse, Tikrit Iraq, Sept. 11, 2003Sep 2003AR 15-6Ill-treatment of detaineesIraq
Investigation into Allegations of Abuse of Detainee During InterrogationSep 2003AR 15-6Ill-treatment of detaineesIraq
Investigation re: Findings of Detainee AbuseSep 2003AR 15-6Ill-treatment of detaineesIraq
Investigation re: Suspected Assault on a Detainee by SoldiersNov 2003AR 15-6Ill-treatment of detaineesIraq
CID Report: 0223-2004-CID259-80257Nov 2003CID (criminal)Ill-treatment of detaineesIraq
Investigation into the Death of Abu Malik KenamiDec 2003AR 15-6Ill-treatment of detainees Iraq
CID Report: 0384-04-CID023-67275Dec 2003CID (criminal)Ill-treatment of detaineesIraq
CID Report: 0006-04-CID259-80132Dec 2003CID (criminal)Ill-treatment of detaineesIraq
Investigation re: Abuse of Detainees at Camp DragoonJan 2003AR 15-6Ill-treatment of detainees Iraq
Investigation of Alleged War Crimes in Iraq in 1st-41st Infantry’s Deployment to Operation Iraqi Freedom (OIF)Jan 2003AR 15-6Ill-treatment of detaineesIraq
Investigation into FBI Allegations of Detainee Abuse at Guantanamo Bay Detention FacilityJan 2003AR 15-6Ill-treatment of detaineesCuba
Investigation of the 800th Military Police BrigadeAug 2003AR 15-6Ill-treatment of detainees; detention conditions Iraq
Investigation of the Abu Ghraib Detention Facility and 205th Military Intelligence Brigade (U)Aug 2003AR 15-6Ill-treatment of detainees; detention conditions Iraq
Investigation (Baqubah, Iraq, November 22, 2003) re: The capture and detention of an Iraqi target and his two sonsNov 2003AR 15-6ill-treatment of detainees Iraq
Investigation re: Abuse of DetaineesAR 15-6Ill-treatment of detaineesIraq
CID Report (Death): 0011-04-CID469-79630Jan 2004CID (criminal)Ill-treatment of detainees Iraq
CID Report (Death): 009-04-CID679-83486Jan 2004CID (criminal)Ill-treatment of detaineesIraq
Investigation Concerning Objective San Diego Cache Explosion 29 January 2004Jan 2004AR 15-6Soldier casualtyAfghanistan
CID Report: 0044-2004-CID352-64027Feb 2004CID (criminal)Ill-treatment of detainees Iraq
Investigation re: Death of a DetaineeFeb 2004AR 15-6Ill-treatment of detaineesIraq
CID Report: 0245-04-CID259-80279Feb 2004CID (criminal)Ill-treatment of detaineesIraq
CID Report (Death): 0040-04-CID469-79638Feb 2004CID (criminal)Ill-treatment of detaineesIraq
CID Report: 0180-04-CID259-80227Mar 2004CID (criminal)Ill-treatment of detaineesIraq
CID Report: 0219-04-CID259-80253Mar 2004CID (criminal)Ill-treatment of detaineesIraq
Post-Incident Investigation: Ambush of BSC Team 31 Mar 04 in FallujahMar 2004UnclearContractor casualtyIraq
CID Report: 0127-04-CID469-19674Apr 2004CID (criminal)Ill-treatment of detaineesIraq
CID Report: 0225-2004-CID259-80259Apr 2004CID (criminal)Ill-treatment of detaineesIraq
CID Report (Death): 0106-04-CID259-80185Apr 2004CID (criminal)Ill-treatment of detaineesIraq
CID Report: 0139-2004-CID259-80203Apr 2004CID (criminal)Ill-treatment of detainees Iraq
CID Report: 0252-2004-CID259-80286May 2004CID (criminal)Ill-treatment of detainees Iraq
CID Report: 0186-04-CID259-80231May 2004CID (criminal)Ill-treatment of detaineesIraq
Investigation into U.S. Raid Near the Syrian-Iraq Border on 19 May 04May 2004AR 15-6Civilian CasualtySyrian-Iraq border
CID Report: 0058-04-CID939-82650May 2004CID (criminal)TheftIraq
CID Report (Death): 0171-04-CID259-80223May 2004CID (criminal)Ill-treatment of detaineesIraq
CID Report (Death): 0114-04-CID259-80207May 2004CID (criminal)Civilian CasualtyIraq
CID Report: 0164-04-CID259-80220Jun 2004CID (criminal)Ill-treatment of detaineesIraq
CID Report (Death): 0071-2004-CID065-62019Jun 2004CID (criminal)Ill-treatment of detainees Iraq
CID Report (Death): 0326-2004-CID056-76236Aug 2004CID (criminal)Civilian CasualtyIraq
Suspected Law of Armed Conflict Violation ReportOct 2005NCISCivilian Casualty Iraq
Investigation into Operation Iron TriangleMay 2006AR 15-6 (see also parallel criminal investigation)Ill-treatment of detainees Iraq
Investigation re: Alleged Theft of Detainee's MoneyJun 2004AR 15-6Ill-treatment of detainees Afghanistan
Investigation into Civilian Casualties Resulting From An Engagement On 12 July 2007 In The New Baghdad District of Baghdad, IraqJul 2007AR 15-6Civilian CasualtyIraq
Investigation into Conditions Surrounding the Possible Death of Two Reuters Reporters During an Engagement on 12 July 2007Jul 2007AR 15-6Civilian CasualtyIraq
nannannannan
Re-Investigation into Combat at COP Wanat on 13 July 2008Jul 2008JAGMANSoldier casualtyAfghanistan
Investigation into New Information Relative to Civilian Casualties from Engagement by U.S. and Afghan Forces 21-22 Aug 2008Aug 2008AR 15-6Civilian CasualtyAfghanistan
Investigation re: COP Keating Attack of 3 Oct 09Oct 2009AR 15-6Soldier casualtyAfghanistan
Investigation of Gardez District Pakyta Province Operation on 12 Feb 2012Feb 2010AR 15-6Civilian casualtyAfghanistan
Investigation of Air-to-Ground Uruzgan Incident 21 February 2010Feb 2010AR 15-6Civilian CasualtyAfghanistan
Investigation into Afghan National Civil Order Police HQ Attach 13 July 2010Jul 2010AR 15-6Soldier casualtyAfghanistan
Investigation into Deaths of HT2 Justin J. McNeley and CS2 Jarod P. Newlove, U.S. NavyJul 2010AR 15-6Soldier casualtyAfghanistan
Investigation into Possible Friendly Fire Incident During Hostage Rescue Operation on 8 October 2010Oct 2010AR 15-6Friendly fireAfghanistan
Investigation in Allegations of Civilian Casualty and/or Law of War Violations near Shah Wali KotNov 2010AR 15-6Civilian CasualtyAfghanistan
Investigation of Incident Pertaining to Hostage Rescue on American Yacht QuestFeb 2011AR 15-6Piracy; Civilian Casualty; engagement in hostilitiesSomalia
Investigation into 23 Feb 11 Rolling Stone Article on Another Runaway General Army Deploys Psy-Ops on US SenatorsFeb 2011AR 15-6Improper conductUSA
Investigation for the Civilian Death of Ahmed Omid Khpalwak on 28 July 2011Jul 2011AR 15-6Civilian CasualtyAfghanistan
Investigation into Facts and Circumstances Surrounding the Crash of CH-47 Aircraft on 6 August 2011Aug 2011AR 15-6Soldier casualtyAfghanistan
Investigation of Death of PFC Dustin Napier 8 January 2012 at FOB EagleJan 2012AR 15-6‘Green-on-blue attack’; Soldier casualtyAfghanistan
Investigation into Allegation that US Service Members Improperly Disposed of Islamic Religious MaterialsFeb 2012AR 15-6Improper conductAfghanistan
Investigation Concerning a Green on Blue Engagement on 20 February 2012Feb 2012AR 15-6‘Green-on-blue attack’; Soldier casualtyAfghanistan
Investigation Into The Green on Blue Incident, FOB Connolly, 23 Feb 2012Feb 2012AR 15-6‘Green-on-blue attack’; Soldier casualtyAfghanistan
Investigation into the SSG Bales Incident 11 March 2012Mar 2012AR 15-6 (parallel CID criminal proceedings noted)Civilian CasualtyAfghanistan
Investigation into Death of Sgt. William R. Wilson IIIMar 2012AR 15-6‘Green-on-blue attack’; Soldier casualtyAfghanistan
Investigation Concerning the 1 March 2012 Green on Blue Incident at Combat Outpost (COP) SangsarMar 2012AR 15-6‘Green-on-blue attack’; Soldier casualtyAfghanistan
Investigation into Alleged CIVCAS Incident, Pakitya Province, Afghanistan, 26 May 2012May 2012AR 15-6Civilian CasualtyAfghanistan
Investigation into the Attack on the Camp Bastion, Leatherneck, and Shorabak (BLS) Complex, Helmand Province, AfghanistanSep 2012AR 15-6Soldier casualtyAfghanistan
Investigation of the Helicopter Incident on 17 December 2013Dec 2013AR 15-6Soldier casualtyAfghanistan
Investigation Into Coalition Airstrike In The Vicinity of Arghandab, Afghanistan on 9 June 2014Jun 2014AR 15-6Soldier casualtyAfghanistan
Investigation into Marshal Fahim National Defence University Green on Blue 5 August 2014Aug 2014AR 15-6‘Green-on-blue attack’; Soldier casualtyAfghanistan
Investigation into Civilian Casualties (CIVCAS) Resulting from 5-6 November 2014 Airstrikes in the Vicinity of (IVO) Harim, SyriaNov 2014AR 15-6Civilian CasualtySyria
Investigation into Civilian Casualties (CIVCAS) on 13 March 2015 at ISIL Checkpoint, Hatra District, IraqMar 2015Commander-Directed Investigation (CDI)Civilian CasualtyIraq
Investigation of the Airstrike on the Doctors Without Borders Trauma Center in Kunduz, Afghanistan on 3 October 2015Oct 2015AR 15-6Civilian CasualtyAfghanistan
Investigation of Incident at FOB Robinson, 28-29 March 2006 Mar 2006AR 15-6Friendly FireAfghanistan
Investigation into friendly fire incident on 6 April 2011Apr 2011AR 15-6Friendly fireAfghanistan
Ganjgal Investigation into Combat Deaths on 8 September 2009Sep 2009AR 15-6Soldier casualtyAfghanistan
FOIA Case 10-0081 Records Concerning the Deaths of Three Iraqis Shot by U.S. Military PersonnelJul 2008AR 15-6Civilian Casualty Iraq
Investigation into Friendly Fire JDAM Incident Near Mazar-E Sharif, 26 November 2001Nov 2001DoD 6055.7 - Accident Friendly FireAfghanistan
2ndLt Pokorney and Cpl NixonnanFriendly Firenan
Investigation Report of Civilian Casualties that Occurred in Oruzgan Province, Afghanistan, on 30 June - 1 July 2002Jun 2002AR 15-6Civilian CasualtyAfghanistan
Investigation of the Friendly Fire Incident Involving CPT KornApr 2003AR 15-6Friendly FireIraq
Investigation into Friendly Fire Incident 5 December 2006Dec 2006Combined Investigation BoardFriendly FireAfghanistan
15-6 Fratricide Investigationinto the 2 February 2007 Engagement of Combat Outpost GrantFeb 2007AR 15-6Friendly FireIraq
Investigation into Patriot Shoot-Down of US Navy F/A-18 near Karbala GAP/An Anjaf Iraq 2 Apr 03Apr 2003DoD 6055.7 - Accident Friendly FireIraq
Investigation of Friendly Fire Incident, PFC Jesse Buryj, Karbal, Iraq, 5 May 04May 2004AR 15-6Friendly FireIraq
Investigation of the Friendly Fire Incident Involving PFC Jason MeyersApr 2003AR 15-6Friendly FireIraq
Investigation of friendly fire death of SFC John J. Tobiason, HHD on 28 November 2007, Camp Victory, IraqNov 2007AR 15-6Friendly FireIraq
Investigation into Death of Sergeant Forrest D. Cauthorn 5 April 2007Apr 2007AR 15-6Friendly FireIraq
Investigation - 14 May 2007 Deaths of SGT Christopher Gonzales and SGT Allen Dunckley and Wounding of 4 soldiersMay 2007AR 15-6Friendly fireIraq
Friendly fire incident -SPC Anderson, Danny, IraqFeb 2005AR 15-6Friendly FireIraq
Investigation into Fratricide Death of Specialist Ryan Collins 18 May 07May 2007AR 15-6Friendly FireIraq
Investigation into death of specialist Shawn Hensel, 14 August 2007Aug 2007AR 15-6Friendly FireIraq
Investigation into Death of SPC Sigsbee, PFC Kimme and PFC SharrettJan 2008nanFriendly FireIraq
Investigation into circumsances of death of SPC Wesley Robert Wells on 20 September 2004 Sep 2004AR 15-6Friendly fireAfghanistan
Investigation into Friendly Fire Incident - SSG Bass and SGT Meeuwsen, Baghdad - 23 Nov 05Nov 2005AR 15-6Friendly FireIraq
Investigation of suspected fratricide on 29 Aug 07, SGT(P) Andrew Nelson Aug 2007AR 15-6Friendly FireIraq
Investigation into an incident in the vicinity of the Salala Checkpoint on the night of 25-26 Nov 2011Nov 2011nanDeaths of Pakistani military personnelAfghanistan
Investigation concerning a 19 June 2012 complex attack on FBO FrontenacJun 2012AR 15-6Soldier casualtyAfghanistan
Investigation for 28 Nov 13 Helmand Province CIVCASNov 2013AR 15-6Civilian CasualtyAfghanistan
001._CIVCAS__05_JAN_05_CLEAR.pdfJan 2005AR 15-6Civilian CasualtyAfghanistan
002._CIVCAS_19_JAN_05_CLEAR.pdfJan 2005AR 15-6Civilian CasualtyAfghanistan
003._CIVCAS__10_FEB_05_CLEAR.pdfFeb 2005nanCivilian CasualtyAfghanistan
004._CIVCAS__22_MAR_05_CLEAR.pdfMar 2005nanCivilian CasualtyAfghanistan
005._CIVCAS__28_APR_05_CLEAR.pdfApr 2005nanCivilian CasualtyAfghanistan
006._CIVCAS__14_JUL_05_CLEAR.pdfJul 2005nanCivilian CasualtyAfghanistan
007._CIVCAS_14_SEP_05_CLEAR.pdfSep 2005nanCivilian CasualtyAfghanistan
008._CIVCAS__04_DEC_05_CLEAR.pdfDec 2005nanCivilian CasualtyAfghanistan
009._CIVCAS__06_DEC_05_CLEAR.pdfDec 2005nanCivilian CasualtyAfghanistan
010._CIVCAS__10_DEC_05_CLEAR.pdfDec 2005nanCivilian CasualtyAfghanistan
011._CIVCAS_05_MAY_06_CLEAR.pdfMay 2006nanCivilian CasualtyAfghanistan
012._CIVCAS_06_OCT_07_CLEAR.pdfOct 2007nanCivilian CasualtyAfghanistan
013._CIVCAS_08_OCT_06_CLEAR.pdfOct 2006nanCivilian CasualtyAfghanistan
014._CIVCAS_09_OCT_06_CLEAR.pdfOct 2006nanCivilian CasualtyAfghanistan
015._CIVCAS_09_JUL_06_CLEAR.pdfJul 2006nanCivilian CasualtyAfghanistan
016._CIVCAS_09_JUN_06_CLEAR.pdfJun 2006nanCivilian CasualtyAfghanistan
017._CIVCAS_13_JUN_06_CLEAR.pdfJun 2006nanCivilian CasualtyAfghanistan
018._CIVCAS_13_NOV_06_CLEAR.pdfNov 2006nanCivilian CasualtyAfghanistan
019._CIVCAS_13_OCT_06_CLEAR.pdfOct 2006nanCivilian CasualtyAfghanistan
020._CIVCAS_13_OCT_06_CLEAR.pdfOct 2006nanCivilian CasualtyAfghanistan
021._CIVCAS_15_APR_06_CLEAR.pdfApr 2006nanCivilian CasualtyAfghanistan
022._CIVCAS_17_APR_06_CLEAR.pdfApr 2006nanCivilian CasualtyAfghanistan
023._CIVCAS_17_JUN_06_CLEAR.pdfJun 2006nanCivilian CasualtyAfghanistan
024._CIVCAS_18_APR_06_CLEAR.pdfApr 2006nanCivilian CasualtyAfghanistan
025._CIVCAS_19_JUN_06_CLEAR.pdfJun 2006nanCivilian CasualtyAfghanistan
026._CIVCAS_25_SEP_06_CLEAR.pdfSep 2006nanCivilian CasualtyAfghanistan
027._CIVCAS_26_OCT_06_CLEAR.pdfOct 2006nanCivilian CasualtyAfghanistan
028._CIVCAS_09_JAN_07_CLEAR.pdfJan 2007nanCivilian CasualtyAfghanistan
029._CIVCAS_20_JAN_07_CLEAR.pdfJan 2007nanCivilian CasualtyAfghanistan
030._CIVCAS_17_FEB_07_CLEAR.pdfFeb 2007nanCivilian CasualtyAfghanistan
031._CIVCAS_19_FEB_07_CLEAR.pdfFeb 2007nanCivilian CasualtyAfghanistan
032._CIVCAS_09_MAR_07_CLEAR.pdfMar 2007nanCivilian CasualtyAfghanistan
033._CIVCAS_21_MAR_07_CLEAR.pdfMar 2007nanCivilian CasualtyAfghanistan
034._CIVCAS_12_APR_07_CLEAR.pdfApr 2007nanCivilian CasualtyAfghanistan
035._CIVCAS_19_APR_07_CLEAR.pdfApr 2007nanCivilian CasualtyAfghanistan
036._CIVCAS_11_JUN_07_CLEAR.pdfJun 2007nanCivilian CasualtyAfghanistan
037._CIVCAS_03_JUL_07_CLEAR.pdfJul 2007nanCivilian CasualtyAfghanistan
038._CIVCAS_16_AUG_07_CLEAR.pdfAug 2007nanCivilian CasualtyAfghanistan
039._CIVCAS_27_AUG_07_CLEAR.pdfAug 2007nanCivilian CasualtyAfghanistan
040._CIVCAS_29_AUG_07_CLEAR.pdfAug 2007nanCivilian CasualtyAfghanistan
041._CIVCAS_18_SEP_07_CLEAR.pdfSep 2007nanCivilian CasualtyAfghanistan
042._CIVCAS_25_SEP_07_CLEAR.pdfSep 2007nanCivilian CasualtyAfghanistan
043._CIVCAS_06_OCT_07_CLEAR.pdfOct 2007nanCivilian CasualtyAfghanistan
044._CIVCAS_07_OCT_07_CLEAR.pdfOct 2007nanCivilian CasualtyAfghanistan
045._CIVCAS_20_OCT_07_CLEAR.pdfOct 2007nanCivilian CasualtyAfghanistan
046._CIVCAS_27_NOV_07_CLEAR.pdfNov 2007nanCivilian CasualtyAfghanistan
047._CIVCAS_01_SEP_08_CLEAR.pdfSep 2008nanCivilian CasualtyAfghanistan
048._CIVCAS_02_MAR_08_CLEAR.pdfMar 2008nanCivilian CasualtyAfghanistan
049._CIVCAS_04_DEC_08_CLEAR.pdfDec 2008nanCivilian CasualtyAfghanistan
050._CIVCAS_04_JUL_08_CLEAR.pdfJul 2008nanCivilian CasualtyAfghanistan
051._CIVCAS_05_JUN_08_CLEAR.pdfJun 2008nanCivilian CasualtyAfghanistan
052._CIVCAS_05_May_08_CLEAR.pdfMay 2008nanCivilian CasualtyAfghanistan
053._CIVCAS_05_Sep_08_CLEAR.pdfSep 2008nanCivilian CasualtyAfghanistan
054._CIVCAS_06_Jul_08_CLEAR.pdfJul 2008nanCivilian CasualtyAfghanistan
055._CIVCAS_07_Mar_08_CLEAR.pdfMar 2008nanCivilian CasualtyAfghanistan
056._CIVCAS_07_Oct_08_CLEAR.pdfOct 2008nanCivilian CasualtyAfghanistan
057._CIVCAS_09_SEP_08_CLEAR.pdfSep 2008nanCivilian CasualtyAfghanistan
058._CIVCAS_12_DEC_08_CLEAR.pdfDec 2008nanCivilian CasualtyAfghanistan
059._CIVCAS_14_MAR_08_CLEAR.pdfMar 2008nanCivilian CasualtyAfghanistan
060._CIVCAS_15_JUN_08_CLEAR.pdfJun 2008nanCivilian CasualtyAfghanistan
061._CIVCAS_15_NOV_08_CLEAR.pdfNov 2008nanCivilian CasualtyAfghanistan
062._CIVCAS_16_OCT_08_CLEAR.pdfOct 2008nanCivilian CasualtyAfghanistan
063._CIVCAS_16_OCT_08_CLEAR.pdfOct 2008nanCivilian CasualtyAfghanistan
064._CIVCAS_18_JUN_08_CLEAR.pdfJun 2008nanCivilian CasualtyAfghanistan
065._CIVCAS_19_AUG_08_CLEAR.pdfAug 2008nanCivilian CasualtyAfghanistan
066._CIVCAS_19_Jul_08_CLEAR.pdfJul 2008nanCivilian CasualtyAfghanistan
067._CIVCAS_20_DEC_08_CLEAR.pdfDec 2008nanCivilian CasualtyAfghanistan
068._CIVCAS_29_APR_08_CLEAR.pdfApr 2008nanCivilian CasualtyAfghanistan
069._CIVCAS_21_NOV_08_CLEAR.pdfNov 2008nanCivilian CasualtyAfghanistan
070._CIVCAS_22_AUG_08_CLEAR.pdfAug 2008nanCivilian CasualtyAfghanistan
071._CIVCAS_22_JUN_08_CLEAR.pdfJun 2008nanCivilian CasualtyAfghanistan
072._CIVCAS_22_OCT_08_CLEAR.pdfOct 2008nanCivilian CasualtyAfghanistan
073._CIVCAS_24_DEC_08_CLEAR.pdfDec 2008nanCivilian CasualtyAfghanistan
074._CIVCAS_24_NOV_08_CLEAR.pdfNov 2008nanCivilian CasualtyAfghanistan
075._CIVCAS_25_JUN_08_CLEAR.pdfJun 2008nanCivilian CasualtyAfghanistan
076._CIVCAS_26_MAY_08_CLEAR.pdfMay 2008nanCivilian CasualtyAfghanistan
077._CIVCAS_31_JAN_08_CLEAR.pdfJan 2008nanCivilian CasualtyAfghanistan
078._CIVCAS_01_DEC_09_CLEAR.pdfDec 2009nanCivilian CasualtyAfghanistan
079._CIVCAS_01_MAR_09_CLEAR.pdfMar 2009nanCivilian CasualtyAfghanistan
080._CIVCAS_01_SEP_09_CLEAR.pdfSep 2009nanCivilian CasualtyAfghanistan
081._CIVCAS_02_FEB_09_CLEAR.pdfFeb 2009nanCivilian CasualtyAfghanistan
082._CIVCAS_02_JUN_09_CLEAR.pdfJun 2009nanCivilian CasualtyAfghanistan
083._CIVCAS_08_JUL_09_CLEAR.pdfJul 2009nanCivilian CasualtyAfghanistan
084._CIVCAS_09_DEC_09_CLEAR.pdfDec 2009nanCivilian CasualtyAfghanistan
085._CIVCAS_11_JUL_09_CLEAR.pdfJul 2009nanCivilian CasualtyAfghanistan
086._CIVCAS_11_JUN_09_CLEAR.pdfJun 2009nanCivilian CasualtyAfghanistan
087._CIVCAS_11_JUN_09_CLEAR.pdfJun 2009nanCivilian CasualtyAfghanistan
088._CIVCAS_11_NOV_09_CLEAR.pdfNov 2009nanCivilian CasualtyAfghanistan
089._CIVCAS_12_APR_09_CLEAR.pdfApr 2009nanCivilian CasualtyAfghanistan
090._CIVCAS_12_MAY_09_CLEAR.pdfMay 2009nanCivilian CasualtyAfghanistan
091._CIVCAS_13_MAY_09_CLEAR.pdfMay 2009nanCivilian CasualtyAfghanistan
092._CIVCAS_14_SEP_09_CLEAR.pdfSep 2009nanCivilian CasualtyAfghanistan
093._CIVCAS_16_JUN_09_CLEAR.pdfJun 2009nanCivilian CasualtyAfghanistan
094._CIVCAS_17_FEB_09_CLEAR.pdfFeb 2009nanCivilian CasualtyAfghanistan
095._CIVCAS_19_MAY_09_CLEAR.pdfMay 2009nanCivilian CasualtyAfghanistan
096._CIVCAS_20_JUN_09_CLEAR.pdfJun 2009nanCivilian CasualtyAfghanistan
097._CIVCAS_24_MAR_09_CLEAR.pdfMar 2009nanCivilian CasualtyAfghanistan
098._CIVCAS_24_NOV_09_CLEAR.pdfNov 2009nanCivilian CasualtyAfghanistan
099._CIVCAS_26_DEC_09_CLEAR.pdfDec 2009nanCivilian CasualtyAfghanistan
100._CIVCAS_25_MAY_09_CLEAR.pdfMay 2009nanCivilian CasualtyAfghanistan
101._CIVCAS_27_JUL_09_CLEAR.pdfJul 2009nanCivilian CasualtyAfghanistan
102._CIVCAS_28_APR_09_CLEAR.pdfApr 2009nanCivilian CasualtyAfghanistan
103._CIVCAS_28_SEP_09_CLEAR.pdfSep 2009nanCivilian CasualtyAfghanistan
104._CIVCAS_29_JAN_09_CLEAR.pdfJan 2009nanCivilian CasualtyAfghanistan
105._CIVCAS_31_JAN_09_CLEAR.pdfJan 2009nanCivilian CasualtyAfghanistan
106._CIVCAS_31_MAR_09_CLEAR.pdfMar 2009nanCivilian CasualtyAfghanistan
107._CIVCAS_31_OCT_09_CLEAR.pdfOct 2009nanCivilian CasualtyAfghanistan
108._CIVCAS_02_DEC_10_CLEAR.pdfDec 2010nanCivilian CasualtyAfghanistan
109._CIVCAS_03_OCT_10_CLEAR.pdfOct 2010nanCivilian CasualtyAfghanistan
110._CIVCAS_04__DEC_10_CLEAR.pdfDec 2010nanCivilian CasualtyAfghanistan
111._CIVCAS_04_MAY_10_CLEAR.pdfMay 2010nanCivilian CasualtyAfghanistan
112._CIVCAS_02_MAY_10_CLEAR.pdfMay 2010nanCivilian CasualtyAfghanistan
113._CIVCAS_06_APR_10_CLEAR.pdfApr 2010nanCivilian CasualtyAfghanistan
114._CIVCAS_06_DEC_10_CLEAR.pdfDec 2010nanCivilian CasualtyAfghanistan
115._CIVCAS_06_JAN_10_CLEAR.pdfJan 2010nanCivilian CasualtyAfghanistan
116._CIVCAS_08_JUL_10_CLEAR.pdfJul 2010nanCivilian CasualtyAfghanistan
117._CIVCAS_10_MAR_10_CLEAR.pdfMar 2010nanCivilian CasualtyAfghanistan
118._CIVCAS_11_OCT_10_CLEAR.pdfOct 2010nanCivilian CasualtyAfghanistan
119._CIVCAS_18_JUN_10_CLEAR.pdfJun 2010nanCivilian CasualtyAfghanistan
120._CIVCAS_19_APR_10_CLEAR.pdfApr 2010nanCivilian CasualtyAfghanistan
121._CIVCAS_19_AUG_10_CLEAR.pdfAug 2010nanCivilian CasualtyAfghanistan
122._CIVCAS_19_JUL_10_CLEAR.pdfJul 2010nanCivilian CasualtyAfghanistan
123._CIVCAS_19_NOV_10_CLEAR.pdfNov 2010nanCivilian CasualtyAfghanistan
124._CIVCAS_22_FEB_10_CLEAR.pdfFeb 2010nanCivilian CasualtyAfghanistan
125._CIVCAS_23_JUL_10_CLEAR.pdfJul 2010nanCivilian CasualtyAfghanistan
126._CIVCAS_23_OCT_10_CLEAR.pdfOct 2010nanCivilian CasualtyAfghanistan
127._CIVCAS_24_MAR_10_CLEAR.pdfMar 2010nanCivilian CasualtyAfghanistan
128._CIVCAS_25_MAY_10_CLEAR.pdfMay 2010nanCivilian CasualtyAfghanistan
129._CIVCAS_28_AUG_10_CLEAR.pdfAug 2010nanCivilian CasualtyAfghanistan
130._CIVCAS_28_JAN_10_CLEAR.pdfJan 2010nanCivilian CasualtyAfghanistan
131._CIVCAS_29_JAN_10_CLEAR.pdfJan 2010nanCivilian CasualtyAfghanistan
132._CIVCAS_29_SEP_10_CLEAR.pdfSep 2010nanCivilian CasualtyAfghanistan
133._CIVCAS_31_MAR_10_CLEAR.pdfMar 2010nanCivilian CasualtyAfghanistan
134._CIVCAS_02_AUG_11_CLEAR.pdfAug 2011nanCivilian CasualtyAfghanistan
135._CIVCAS_02_JAN_11_CLEAR.pdfJan 2011nanCivilian CasualtyAfghanistan
136._CIVCAS_03_NOV_11_CLEAR.pdfNov 2011nanCivilian CasualtyAfghanistan
137._CIVCAS_04_DEC_11_CLEAR.pdfDec 2011nanCivilian CasualtyAfghanistan
138._CIVCAS_07_FEB_11_CLEAR.pdfFeb 2011nanCivilian CasualtyAfghanistan
139._CIVCAS_10_FEB_11_CLEAR.pdfFeb 2011nanCivilian CasualtyAfghanistan
140._CIVCAS_12_DEC_11_CLEAR.pdfDec 2011nanCivilian CasualtyAfghanistan
141._CIVCAS_12_JUL_11_CLEAR.pdfJul 2011nanCivilian CasualtyAfghanistan
142._CIVCAS_13_DEC_11_CLEAR.pdfDec 2011nanCivilian CasualtyAfghanistan
143._CIVCAS_13_OCT_11_CLEAR.pdfOct 2011nanCivilian CasualtyAfghanistan
144._CIVCAS_14_MAR_11_CLEAR.pdfMar 2011nanCivilian CasualtyAfghanistan
145._CIVCAS_14_OCT_11_CLEAR.pdfOct 2011nanCivilian CasualtyAfghanistan
146._CIVCAS_15_MAY_11_CLEAR.pdfMay 2011nanCivilian CasualtyAfghanistan
147._CIVCAS_16_JAN_11_CLEAR.pdfJan 2011nanCivilian CasualtyAfghanistan
148._CIVCAS_18_FEB_11_CLEAR.pdfFeb 2011nanCivilian CasualtyAfghanistan
149._CIVCAS_18_MAY_11_CLEAR.pdfMay 2011nanCivilian CasualtyAfghanistan
150._CUVCAS_19_APR_11_CLEAR.pdfApr 2011nanCivilian CasualtyAfghanistan
151._CIVCAS_19_MAR_11_CLEAR.pdfMar 2011nanCivilian CasualtyAfghanistan
152._CIVCAS_20_FEB_11_CLEAR.pdfFeb 2011nanCivilian CasualtyAfghanistan
153._CIVCAS_20_SEP_11_CLEAR.pdfSep 2011nanCivilian Casualtynan
154._CIVCAS_21_JUL_11_CLEAR.pdfJul 2011nanCivilian CasualtyAfghanistan
155._CIVCAS_23_AUG_11_CLEAR.pdfAug 2011nanCivilian CasualtyAfghanistan
156._CIVCAS_23_JUL_11_CLEAR.pdfJul 2011nanCivilian CasualtyAfghanistan
157._CIVCAS_26_AUG_11_CLEAR.pdfAug 2011nanCivilian CasualtyAfghanistan
158._CIVCAS_26_DEC_11_CLEAR.pdfDec 2011nanCivilian CasualtyAfghanistan
159._CIVCAS_26_JUL_11_CLEAR.pdfJul 2011nanCivilian CasualtyAfghanistan
160._CIVCAS_27_AUG_11_CLEAR.pdfAug 2011nanCivilian CasualtyAfghanistan
161._CIVCAS_27_MAR_11_CLEAR.pdfMar 2011nanCivilian CasualtyAfghanistan
162._CIVCAS_30_APR_11_CLEAR.pdfApr 2011nanCivilian CasualtyAfghanistan
163._CIVCAS_30_JUL_11_CLEAR.pdfJul 2011nanCivilian CasualtyAfghanistan
164._CIVCAS_31_JAN_11_CLEAR.pdfJan 2011nanCivilian CasualtyAfghanistan
ACLU Army 11761-11781Feb 2005AR 15-6Civilian Casualty? Iraq
ACLU Army 11782-11828Oct 2005AR 15-6Civilian Casualty? Iraq
ACLU Army 11829-11835 Army 11836-11842 Army 11843-11844 Army 11845-11846Apr 2005AR 15-6Civilian Casualty?Iraq
ACLU Army 11847-11880 Army 11881-11891 Army 11892-11894 Army 11895-11897Apr 2005AR 15-6Civilian Casualty?Iraq
ACLU Army 11898-11913Feb 2005AR 15-6Civilian Casualty?Iraq
ACLU Army 11914-11933Mar 2005AR 15-6Civilian Casualty?Iraq
ACLU Army 11936-11937Jan 2006AR 15-6Civilian Casualty?Iraq
ACLU Army 11938-11954 Army 11955-11965 Army 11966-11976Oct 2005AR 15-6Civilian Casualty?Iraq
ACLU Army 11977-11996 Army 11997-12008 Army 12009-12010Oct 2005AR 15-6Civilian Casualty?Iraq
ACLU Army 12011-12026 Army 12027-12039 Army 12040-12049 Army 12050-12061Oct 2005AR 15-6Civilian Casualty?Iraq
ACLU Army 12062-12079 Army 12080-12098 Army 12099-12114Sep 2005AR 15-6Civilian Casualty? Iraq
ACLU Army 12115-12128 Army 12129-12133 Army 12134-12139 Army 12140-12144 Army 12145-12159 Army 12160-12173 Army 12174-12184 Army 12185-12193 Army 12194-12197Oct 2005AR 15-6Civilian Casualty?Iraq
ACLU Army 12198-12214 Army 12215-12221 Army 12222-12229 Army 12230-12241Oct 2005AR 15-6Civilian Casualty? Iraq
ACLU Army 12242-12249 Army 12250-12257Mar 2006AR 15-6Civilian Casualty? Iraq
ACLU Army 12258-12266 Army 12267-12276May 2006AR 15-6Civilian Casualty?Iraq
ACLU Army 12279-12305 Army 12306-12333 Army 12334-12358 Army 12359-12371Jan 2006AR 15-6Civilian Casualty? Iraq
ACLU Army 12372-12382 Army 12383-12397 Army 12398-12410 Army 12411-12422Mar 2006AR 15-6Civilian Casualty? Iraq
ACLU Army 12423-12447 Army 12448-12470Dec 2005AR 15-6Civilian Casualty?Iraq
ACLU Army 12471-12500 Army 12501-12518 Army 12519-12526 Army 12527-12542 Army 12543-12592Jan 2006AR 15-6Civilian Casualty? Iraq
ACLU Army 12593-12642Feb 2006AR 15-6Civilian Casualty?Iraq
ACLU Army 12643-12669 Army 12670-12697Apr 2006AR 15-6Civilian Casualty? Iraq
ACLU Army 12698-12734Oct 2005AR 15-6Civilian Casualty? Iraq
ACLU Army 12735-12744 Army 12745-12755 Army 12756-12765 Army 12766-12776 Army 12776-12792 Army 12793-12805Feb 2006AR 15-6Civilian Casualty? Iraq
ACLU Army 12806-12827 Army 12828-12848Jul 2006AR 15-6Civilian Casualty?Iraq
ACLU Army 12849-12866 Army 12867-12881 Army 12882-12895 Army 12896-12901Jan 2006AR 15-6Civilian Casualty?Iraq
ACLU Army 12902-12922Mar 2006AR 15-6Civilian Casualty? Iraq
ACLU Army 12923-12943Jan 2006AR 15-6Civilian Casualty?Iraq
ACLU Army 12944-12978Mar 2006AR 15-6Civilian Casualty? Iraq
ACLU Army 12979-13003Apr 2006AR 15-6Civilian Casualty? Iraq
ACLU Army 13004-13024Jul 2006AR 15-6Civilian Casualty? Iraq
ACLU Army 13025-13034 Army 13035-13037 Army 13038-13043 Army 13044-13048 Army 13049-13075 Army 13076-13102 Army 13103-13126May 2006AR 15-6Civilian Casualty? Iraq
ACLU Army 13127-13140Apr 2006AR 15-6Civilian Casualty? Iraq
ACLU Army 13141-13170May 2006AR 15-6Civilian Casualty?Iraq
ACLU Army 13171-13200 Army 13201-13231Apr 2006AR 15-6Civilian Casualty? Iraq
ACLU Army 13231-13250 Army 13251-13269Mar 2005AR 15-6Civilian Casualty? Iraq
ACLU Army 13270-13289 Army 13290-13302Jun 2005AR 15-6Civilian Casualty? Iraq
ACLU Army 13303-13346 Army 13347-13387May 2005AR 15-6Civilian Casualty? Iraq
ACLU Army 13388-13440Nov 2005AR 15-6Civilian Casualty? Iraq
ACLU Army 13441-13466Oct 2005AR 15-6Civilian Casualty? Iraq
ACLU Army 13467-13483Nov 2005AR 15-6Civilian Casualty?Iraq
ACLU Army 13484-13527Nov 2005AR 15-6Civilian Casualty?Iraq
ACLU Army 13528-13551Nov 2005AR 15-6Civilian Casualty? Iraq
ACLU Army 13552-13599Oct 2005AR 15-6Civilian Casualty? Iraq
ACLU Army 13600-13634Jan 2006AR 15-6Civilian Casualty?Iraq
ACLU Army 13635-13654Sep 2005AR 15-6Civilian Casualty?Iraq
ACLU Army 13655-13685Sep 2005AR 15-6Civilian Casualty?Iraq
ACLU Army 13686-13690May 2005AR 15-6Civilian Casualty? Iraq
ACLU Army 13691-13715 Army 13716-13724Apr 2005AR 15-6Civilian Casualty? Iraq
ACLU Army 13725-13754 Army 13755-13764Apr 2005AR 15-6Civilian Casualty? Iraq
ACLU Army 13765-13777 Army 13778-13804Apr 2005AR 15-6Civilian Casualty? Iraq
ACLU Army 13805-13816 Army 13817-13823Jun 2005AR 15-6Civilian Casualty? Iraq
ACLU Army 13824-13867May 2005AR 15-6Civilian Casualty? Iraq
ACLU Army 13868-13894May 2005AR 15-6Civilian Casualty?Iraq
ACLU Army 13895-13939Aug 2005AR 15-6Civilian Casualty?Iraq
ACLU Army 13940-13941Apr 2005AR 15-6Civilian Casualty?Iraq
ACLU Army 13942-13986 Army 13987-13993Mar 2005AR 15-6Civilian Casualty? Iraq
ACLU Army 13994-14001 Army 14002-14009Mar 2005AR 15-6Civilian Casualty? Iraq
ACLU Army 14010-14038May 2005AR 15-6Civilian Casualty? Iraq
ACLU Army 14039-14064Aug 2005AR 15-6Civilian Casualty? Iraq
ACLU Army 14065-14070Nov 2005AR 15-6Civilian Casualty? Iraq
ACLU Army 14071-14072Nov 2005AR 15-6Civilian Casualty? Iraq
ACLU Army 14074-14085 Army 14086-14096Jan 2006AR 15-6Civilian Casualty? Iraq
ACLU Army 14097-14123 Army 14124-14149Mar 2006AR 15-6Civilian Casualty? Iraq
ACLU Army 14150-14167Mar 2006AR 15-6Civilian Casualty? Iraq
ACLU Army 14168-14206Mar 2006AR 15-6Civilian Casualty? Iraq
ACLU Army 14207-14235 Army 14236-14271May 2006AR 15-6Civilian Casualty? Iraq
ACLU Army 14272-14288 Army 14289-14299Apr 2006AR 15-6Civilian Casualty? Iraq
ACLU Army 14300-14326May 2006AR 15-6Civilian Casualty?Iraq
ACLU Army 14327-14338 Army 14339-14343 Army 14344-14381Jan 2006AR 15-6Civilian Casualty? Iraq
ACLU Army 14382-14406 Army 14407-14431Apr 2006AR 15-6Civilian Casualty?Iraq
ACLU Army 14432-14455 Army 14456-14483Apr 2006AR 15-6Civilian Casualty? Iraq
ACLU Army 14484-14518 Army 14519-14543Feb 2006AR 15-6Civilian Casualty?Iraq
ACLU Army 14544-14563 Army 14564-14571Feb 2006AR 15-6Civilian Casualty?Iraq
ACLU Army 14572-14591 Army 14592-14594 Army 14595-14598 Army 14599-14626Mar 2006AR 15-6Civilian Casualty? Iraq
ACLU Army 14627-14651 Army 14652-14685 Army 14686-14693Feb 2006AR 15-6Civilian Casualty? Iraq
ACLU Army 14694-14725 Army 14726-14745Mar 2006AR 15-6Civilian Casualty? Iraq
ACLU Army 14746-14765Apr 2006AR 15-6Civilian Casualty?Iraq
ACLU Army 14766-14822May 2006AR 15-6Civilian Casualty?Iraq
ACLU Army 14823-14839Jun 2006AR 15-6Civilian Casualty?Iraq
ACLU Army 14840-14899Jan 2006AR 15-6Civilian Casualty?Iraq
ACLU Army 14900-14915 Army 14916-14935 Army 14936-14958 Army 14959-14960 Army 14961-14962Mar 2006AR 15-6Civilian Casualty?Iraq
ACLU Army 14963-14999 Army 15000-15029Feb 2006AR 15-6Civilian Casualty?Iraq
ACLU Army 15030-15064 Army 15065-15097Feb 2006AR 15-6Civilian Casualty?Iraq
ACLU Army 15098-15121Jan 2006AR 15-6Civilian Casualty?Iraq
ACLU Army 15122-15131Jun 2006AR 15-6Civilian Casualty?Iraq
ACLU Army 15132-15152May 2006AR 15-6Civilian Casualty?Iraq
ACLU Army 15153-15172 Army 15173-15194 Army 15195-15227Jun 2006AR 15-6Civilian Casualty? Iraq
ACLU Army 15228-15252 Army 15253-15270Mar 2006AR 15-6Civilian Casualty? Iraq
ACLU Army 15271-15283 Army 15284-15298 Army 15299-15312 Army 15313-15318 Army 15319-15325 Army 15326-15328 Army 15329-15332 Army 15333-15348Jan 2006AR 15-6Civilian Casualty? Iraq
ACLU Army 15349-15366 Army 15367-15385 Army 15386-15402Jan 2006AR 15-6Civilian Casualty?Iraq
ACLU Army 15418-15422Feb 2005AR 15-6Civilian Casualty? Iraq
ACLU Army 15423-15439Feb 2005AR 15-6Civilian Casualty?Iraq
ACLU Army 15440-15460 Army 15461-15487 Army 15488-15516 Army 15517-15554 Army 15555-15598 Army 15599-15612 Army 15613-15616 Army 15617-15620 Army 15621-15624 Army 15625-15628 Army 15629-15632 Army 15633-15636 Army 15637-15641 Army 15642-15646 Army 15647-15654Mar 2005AR 15-6Civilian Casualty? Iraq
ACLU Army 15655-15674 Army 15674-15682Mar 2005AR 15-6Civilian Casualty? Iraq
ACLU Army 15683-15722 Army 15723-15749Mar 2005AR 15-6Civilian Casualty? Iraq
ACLU Army 15750-15784 Army 15784-15811Mar 2005AR 15-6Civilian Casualty? Iraq
ACLU Army 15812-15831 Army 15832-15844Mar 2005AR 15-6Civilian Casualty? Iraq
ACLU Army 15845-15865 Army 15866-15870 Army 15871-15876 Army 15877-15881 Army 15882-15888Apr 2005AR 15-6Civilian Casualty?Iraq
ACLU Army 15889-15901Apr 2005AR 15-6Civilian Casualty? Iraq
ACLU Army 15902-15956Mar 2005AR 15-6Civilian Casualty?Iraq
ACLU Army 15957-15969 Army 15970-15975 Army 15976-15982 Army 15983-15993 Army 15994-16017 Army 16018-16031Apr 2005AR 15-6Civilian Casualty?Iraq
ACLU Army 16032-16045Mar 2005AR 15-6Civilian Casualty? Iraq
ACLU Army 16046-16059 Army 16060-16067Apr 2005AR 15-6Civilian Casualty?Iraq
ACLU Army 16068-16082 Army 16083-16096May 2005AR 15-6Civilian Casualty?Iraq
ACLU Army 16097-16111 Army 16112-16128 Army 16129-16137May 2005AR 15-6Civilian Casualty? Iraq
ACLU Army 16138-16158 Army 16159-16185May 2005AR 15-6Civilian Casualty?Iraq
ACLU Army 16186-16199May 2004AR 15-6Civilian Casualty? Iraq
ACLU Army 16200-16231 Army 16232-16264May 2005AR 15-6Civilian Casualty? Iraq
ACLU Army 16265-16284 Army 16285-16310May 2005AR 15-6Civilian Casualty?Iraq
ACLU Army 16311-16325 Army 16326-16333Jun 2005AR 15-6Civilian Casualty? Iraq
ACLU Army 16334-16371 Army 16372-16398Jun 2005AR 15-6Civilian Casualty? Iraq
ACLU Army 16399-16407May 2005AR 15-6Civilian Casualty?Iraq
ACLU Army 16408-16417 Army 16418-16420 Army 16421-16428 Army 16429-16439Jun 2005AR 15-6Civilian Casualty?Iraq
ACLU Army 16440-16461 Army 16462-16464Jun 2005AR 15-6Civilian Casualty? Iraq
ACLU Army 16465-16509 Army 16510-16521Jul 2005AR 15-6Civilian Casualty?Iraq
ACLU Army 16522-16544 Army 16545-16578Jul 2005AR 15-6Civilian Casualty?Iraq
ACLU Army 16579-16601 Army 16602-16607May 2005AR 15-6Civilian Casualty?Iraq
ACLU Army 16608-16643Jun 2005AR 15-6Civilian Casualty?Iraq
ACLU Army 16644-16648 Army 16649-16655 Army 16656-16661 Army 16662-16666 Army 16667-16671 Army 16672-16676 Army 16677-16678 Army 16679-16683 Army 16684-16698Jul 2005AR 15-6Civilian Casualty? Iraq
ACLU Army 16699-16734Jul 2005AR 15-6Civilian Casualty? Iraq
ACLU Army 16735-16754 Army 16755-16774 Army 16775-16793Jul 2005AR 15-6Civilian Casualty?Iraq
ACLU Army 16794-16843 Army 16844-16867Aug 2005AR 15-6Civilian Casualty?Iraq
ACLU Army 16868-16917Aug 2005AR 15-6Civilian Casualty?Iraq
ACLU Army 16918-16926Jul 2005AR 15-6Civilian Casualty?Iraq
ACLU Army 16927-16981Aug 2005AR 15-6Civilian Casualty?Iraq
ACLU Army 16982-17015Aug 2005AR 15-6Civilian Casualty? Iraq
ACLU Army 17016-17052Aug 2005AR 15-6Civilian Casualty?Iraq
ACLU Army 17053-17062 Army 17063-17065 Army 17066-17068 Army 17069-17071 Army 17072-17073 Army 17074-17075 Army 17076-17077 Army 17078-17079 Army 17080-17083 Army 17084-17088 Army 17089-17092 Army 17093-17097 Army 17098-17102 Army 17103-17115 Army 17116-17125 Army 17126-17147Aug 2005AR 15-6Civilian Casualty? Iraq
ACLU Army 17148-17163 Army 17164-17174Aug 2005AR 15-6Civilian Casualty?Iraq
ACLU Army 17175-17213Aug 2005AR 15-6Civilian Casualty? Iraq
ACLU Army 17214-17227 Army 17228-17233 Army 17234-17242 Army 17243-17250Sep 2005AR 15-6Civilian Casualty?Iraq
ACLU Army 17251-17270 Army 17271-17285 Army 17286-17302Sep 2005AR 15-6Civilian Casualty? Iraq
ACLU Army 17303-17312 Army 17313-17317 Army 17318-17321 Army 17322-17325Sep 2005AR 15-6Civilian Casualty?Iraq
ACLU Army 17326-17350Sep 2005AR 15-6Civilian Casualty?Iraq
ACLU Army 17351-17404Sep 2005AR 15-6Civilian Casualty? Iraq
ACLU Army 17405-17416 Army 17417-17428 Army 17429-17440Sep 2005AR 15-6Civilian Casualty?Iraq
ACLU Army 17441-17466Oct 2005AR 15-6Civilian Casualty? Iraq
ACLU Army 17467-17481 Army 17482-17496Oct 2005AR 15-6Civilian Casualty?Iraq
ACLU Army 17497-17545Oct 2005AR 15-6Civilian Casualty?Iraq
ACLU Army 17546-17580Oct 2005AR 15-6Civilian Casualty?Iraq
ACLU Army 17581-17598 Army 17599-17610 Army 17611-17617Oct 2005AR 15-6Civilian Casualty?Iraq
ACLU Army 17618-17632 Army 17633-17641 Army 17642-17646Oct 2005AR 15-6Civilian Casualty? Iraq
ACLU Army 17647-17660Oct 2005AR 15-6Civilian Casualty? Iraq
ACLU Army 17661-17694Oct 2005AR 15-6Civilian Casualty? Iraq
ACLU Army 17695-17712Oct 2005AR 15-6Civilian Casualty?Iraq
ACLU Army 17713-17732Nov 2005AR 15-6Civilian Casualty? Iraq
ACLU Army 17733-17747 Army 17748-17762 Army 17763-17776Nov 2005AR 15-6Civilian Casualty?Iraq
ACLU Army 17777-17802Nov 2005AR 15-6Civilian Casualty?Iraq
ACLU Army 17803-17818 Army 17819-17833 Army 17834-17845 Army 17846-17848Nov 2005AR 15-6Civilian Casualty?Iraq
ACLU Army 17849-17892Nov 2005AR 15-6Civilian Casualty?Iraq
ACLU Army 17893-17920Nov 2005AR 15-6Civilian Casualty? Iraq
ACLU Army 17921-17941Nov 2005AR 15-6Civilian Casualty? Iraq
ACLU Army 17942-17961 Army 17962-17983 Army 17984-18005Nov 2005AR 15-6Civilian Casualty?Iraq
ACLU Army 18009-18065 Army 18066-18110 Army 18111-18151Jan 2005AR 15-6Civilian Casualty? Iraq
ACLU Army Bates 1Jan 2005CIDCivilian Casualty?Iraq
ACLU Army Bates 2Feb 2005CIDCivilian Casualty?Iraq
ACLU Army Bates 3Jan 2005CIDCivilian Casualty?Iraq
ACLU Army Bates 4Apr 2005CIDCivilian Casualty?Iraq
ACLU Army Bates 5Feb 2005CIDCivilian Casualty?Iraq
ACLU Army Bates 6Jan 2005CIDCivilian Casualty?Iraq
ACLU Army Bates 7Apr 2005CIDCivilian Casualty?Iraq
ACLU Army Bates 8May 2005CIDCivilian Casualty?Iraq
ACLU Army Bates 9May 2005CIDCivilian Casualty?Iraq
ACLU Army Bates 10Jul 2005CIDCivilian Casualty?Iraq
ACLU Army Bates 11Aug 2005CIDCivilian Casualty?Iraq
ACLU Army Bates 12Jul 2005CIDCivilian Casualty?Iraq
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/1/index.html b/CIVIC/investigations/1/index.html deleted file mode 100644 index 2dc0db9..0000000 --- a/CIVIC/investigations/1/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleInvestigation of Photographs by 5th Special Forces Group (Abn) of John Walker Lindh
CountryAfghanistan
DateDec 2001
Military BranchArmy
Type of investigationAR 15-6
SubjectIll-treatment of detainees
Specific locationMazar-i-Sharif
Pages32
Original SourceACLU Torture Database
Original URLshttps://www.thetorturedatabase.org/files/foia_subsite/pdfs/DOD015517.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/10/index.html b/CIVIC/investigations/10/index.html deleted file mode 100644 index 7c0e733..0000000 --- a/CIVIC/investigations/10/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleCID Report: 001-03-CID899-63482
CountryIraq
DateMay 2003
Military BranchArmy
Type of investigationCID (criminal)
SubjectTheft
Specific locationBaghdad
Pages52
Original SourceACLU Torture Database
Original URLshttps://www.thetorturedatabase.org/document/cid-report-001-03-cid899-63482?search_url=search/apachesolr_search/15-6&search_args=page=7%26show=50
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/100/index.html b/CIVIC/investigations/100/index.html deleted file mode 100644 index 568f31d..0000000 --- a/CIVIC/investigations/100/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleGanjgal Investigation into Combat Deaths on 8 September 2009
CountryAfghanistan
DateSep 2009
Military BranchArmy
Type of investigationAR 15-6
SubjectSoldier casualty
Specific locationGanjgal, Konar Province
Pages2
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/FOIA_RR.asp?Path=/5 USC 552(a)(2)(D)Records&Folder=Ganjgal Investigation - 15 Sep 11
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/101/index.html b/CIVIC/investigations/101/index.html deleted file mode 100644 index 2a3537d..0000000 --- a/CIVIC/investigations/101/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleFOIA Case 10-0081 Records Concerning the Deaths of Three Iraqis Shot by U.S. Military Personnel
CountryIraq
DateJul 2008
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty
Specific locationBaghdad International Airport
Pages468
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/FOIA_RR.asp?Path=/5 USC 552(a)(2)(D)Records/FY 2012 Cases&Folder=FOIA Case 10-0081 Records Concerning the Deaths of Three Iraqis Shot by U.S. Military Personnel
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/102/index.html b/CIVIC/investigations/102/index.html deleted file mode 100644 index f1afc46..0000000 --- a/CIVIC/investigations/102/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleInvestigation into Friendly Fire JDAM Incident Near Mazar-E Sharif, 26 November 2001
CountryAfghanistan
DateNov 2001
Military BranchCENTCOM
Type of investigationDoD 6055.7 - Accident
SubjectFriendly Fire
Specific location~Mazar-E Sharif
Pages62
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/FOIA_RR.asp?Path=/5 USC 552(a)(2)(D)Records&Folder=Friendly Fires
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/103/index.html b/CIVIC/investigations/103/index.html deleted file mode 100644 index 9ff646e..0000000 --- a/CIVIC/investigations/103/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title2ndLt Pokorney and Cpl Nixon
Countrynan
Date
Military Branchnan
Type of investigationnan
SubjectFriendly Fire
Specific locationnan
Pages0
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/FOIA_RR.asp?Path=/5 USC 552(a)(2)(D)Records/Friendly Fires&Folder=2ndLt Pokorney and Cpl Nixon
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/104/index.html b/CIVIC/investigations/104/index.html deleted file mode 100644 index 4a65208..0000000 --- a/CIVIC/investigations/104/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleInvestigation Report of Civilian Casualties that Occurred in Oruzgan Province, Afghanistan, on 30 June - 1 July 2002
CountryAfghanistan
DateJun 2002
Military BranchCJTF
Type of investigationAR 15-6
SubjectCivilian Casualty
Specific locationOruzgan Province
Pages69
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/FOIA_RR.asp?Path=/5 USC 552(a)(2)(D)Records/Friendly Fires&Folder=Air Force AC-130 Attack
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/105/index.html b/CIVIC/investigations/105/index.html deleted file mode 100644 index 0cfe593..0000000 --- a/CIVIC/investigations/105/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleInvestigation of the Friendly Fire Incident Involving CPT Korn
CountryIraq
DateApr 2003
Military BranchArmy
Type of investigationAR 15-6
SubjectFriendly Fire
Specific locationAn Rashid
Pages56
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/FOIA_RR.asp?Path=/5 USC 552(a)(2)(D)Records/Friendly Fires&Folder=Capt Korn
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/106/index.html b/CIVIC/investigations/106/index.html deleted file mode 100644 index fbb2c81..0000000 --- a/CIVIC/investigations/106/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleInvestigation into Friendly Fire Incident 5 December 2006
CountryAfghanistan
DateDec 2006
Military BranchCENTCOM
Type of investigationCombined Investigation Board
SubjectFriendly Fire
Specific locationHelmand Province
Pages59
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/FOIA_RR.asp?Path=/5 USC 552(a)(2)(D)Records/Friendly Fires&Folder=F18 Friendly Fire
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/107/index.html b/CIVIC/investigations/107/index.html deleted file mode 100644 index c8c1861..0000000 --- a/CIVIC/investigations/107/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title15-6 Fratricide Investigationinto the 2 February 2007 Engagement of Combat Outpost Grant
CountryIraq
DateFeb 2007
Military BranchArmy
Type of investigationAR 15-6
SubjectFriendly Fire
Specific locationMilaab District, City of Ar Ramadi, Al Anbar Province
Pages0
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/Friendly Fires&Folder=McPeek and Zeimer
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/108/index.html b/CIVIC/investigations/108/index.html deleted file mode 100644 index bbf4609..0000000 --- a/CIVIC/investigations/108/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleInvestigation into Patriot Shoot-Down of US Navy F/A-18 near Karbala GAP/An Anjaf Iraq 2 Apr 03
CountryIraq
DateApr 2003
Military BranchCENTCOM
Type of investigationDoD 6055.7 - Accident
SubjectFriendly Fire
Specific locationKarbala Gap/An Najaf
Pages224
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/FOIA_RR_Files/5 USC 552(a)(2)(D)Records/Friendly Fires/Patriot Shootdown of US Navy F18/PATRIOT Shootdown of US Navy F A 18[1].pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/109/index.html b/CIVIC/investigations/109/index.html deleted file mode 100644 index a57acc5..0000000 --- a/CIVIC/investigations/109/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleInvestigation of Friendly Fire Incident, PFC Jesse Buryj, Karbal, Iraq, 5 May 04
CountryIraq
DateMay 2004
Military BranchArmy
Type of investigationAR 15-6
SubjectFriendly Fire
Specific locationKarbala
Pages287
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/FOIA_RR.asp?Path=/5 USC 552(a)(2)(D)Records/Friendly Fires&Folder=PFC Buryj
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/11/index.html b/CIVIC/investigations/11/index.html deleted file mode 100644 index e84de30..0000000 --- a/CIVIC/investigations/11/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleInvestigation into Missing Property of Translators
CountryIraq
DateMay 2003
Military BranchArmy
Type of investigationAR 15-6
SubjectTheft
Specific locationOff-coast
Pages13
Original SourceACLU Torture Database
Original URLshttps://www.thetorturedatabase.org/document/army-memo-re-ar-15-6-investigation-missing-property-translators?search_url=search/apachesolr_search/15-6&search_args=page=1%26show=50
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/110/index.html b/CIVIC/investigations/110/index.html deleted file mode 100644 index ef1a964..0000000 --- a/CIVIC/investigations/110/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleInvestigation of the Friendly Fire Incident Involving PFC Jason Meyers
CountryIraq
DateApr 2003
Military BranchArmy
Type of investigationAR 15-6
SubjectFriendly Fire
Specific locationBaghdad
Pages57
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/FOIA_RR_Files/5 USC 552(a)(2)(D)Records/Friendly Fires/PFC Meyers/PFC Meyers.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/111/index.html b/CIVIC/investigations/111/index.html deleted file mode 100644 index 5ec9220..0000000 --- a/CIVIC/investigations/111/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleInvestigation of friendly fire death of SFC John J. Tobiason, HHD on 28 November 2007, Camp Victory, Iraq
CountryIraq
DateNov 2007
Military BranchArmy
Type of investigationAR 15-6
SubjectFriendly Fire
Specific locationCamp Victory
Pages0
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/FOIA_RR.asp?Path=/5 USC 552(a)(2)(D)Records/Friendly Fires&Folder=SFC Tobiason
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/112/index.html b/CIVIC/investigations/112/index.html deleted file mode 100644 index 6a66a90..0000000 --- a/CIVIC/investigations/112/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleInvestigation into Death of Sergeant Forrest D. Cauthorn 5 April 2007
CountryIraq
DateApr 2007
Military BranchArmy
Type of investigationAR 15-6
SubjectFriendly Fire
Specific locationSouth of Riyadh, Kirkuk Province
Pages0
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/FOIA_RR.asp?Path=/5 USC 552(a)(2)(D)Records/Friendly Fires&Folder=SGT Cauthorn
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/113/index.html b/CIVIC/investigations/113/index.html deleted file mode 100644 index 7127084..0000000 --- a/CIVIC/investigations/113/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleInvestigation - 14 May 2007 Deaths of SGT Christopher Gonzales and SGT Allen Dunckley and Wounding of 4 soldiers
CountryIraq
DateMay 2007
Military BranchArmy
Type of investigationAR 15-6
SubjectFriendly fire
Specific locationDuraiya
Pages0
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/FOIA_RR.asp?Path=/5 USC 552(a)(2)(D)Records/Friendly Fires&Folder=SGT Dunckley
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/114/index.html b/CIVIC/investigations/114/index.html deleted file mode 100644 index ba212c6..0000000 --- a/CIVIC/investigations/114/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleFriendly fire incident -SPC Anderson, Danny, Iraq
CountryIraq
DateFeb 2005
Military BranchArmy
Type of investigationAR 15-6
SubjectFriendly Fire
Specific location?
Pages0
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/FOIA_RR.asp?Path=/5 USC 552(a)(2)(D)Records/Friendly Fires&Folder=SPC Anderson
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/115/index.html b/CIVIC/investigations/115/index.html deleted file mode 100644 index 1ad7142..0000000 --- a/CIVIC/investigations/115/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleInvestigation into Fratricide Death of Specialist Ryan Collins 18 May 07
CountryIraq
DateMay 2007
Military BranchArmy
Type of investigationAR 15-6
SubjectFriendly Fire
Specific locationnan
Pages163
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/FOIA_RR.asp?Path=/5 USC 552(a)(2)(D)Records/Friendly Fires&Folder=SPC Collins
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/116/index.html b/CIVIC/investigations/116/index.html deleted file mode 100644 index dd5a055..0000000 --- a/CIVIC/investigations/116/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleInvestigation into death of specialist Shawn Hensel, 14 August 2007
CountryIraq
DateAug 2007
Military BranchArmy
Type of investigationAR 15-6
SubjectFriendly Fire
Specific locationnan
Pages251
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/FOIA_RR.asp?Path=/5 USC 552(a)(2)(D)Records/Friendly Fires&Folder=SPC Hensel
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/117/index.html b/CIVIC/investigations/117/index.html deleted file mode 100644 index a0073d8..0000000 --- a/CIVIC/investigations/117/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleInvestigation into Death of SPC Sigsbee, PFC Kimme and PFC Sharrett
CountryIraq
DateJan 2008
Military Branchnan
Type of investigationnan
SubjectFriendly Fire
Specific locationBichigan area
Pages0
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/FOIA_RR.asp?Path=/5 USC 552(a)(2)(D)Records/Friendly Fires&Folder=SPC Sigsbee PFC Kimme and PFC Sharrett
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/118/index.html b/CIVIC/investigations/118/index.html deleted file mode 100644 index 7a1d69d..0000000 --- a/CIVIC/investigations/118/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleInvestigation into circumsances of death of SPC Wesley Robert Wells on 20 September 2004
CountryAfghanistan
DateSep 2004
Military BranchArmy
Type of investigationAR 15-6
SubjectFriendly fire
Specific locationNeka District, Paktika Province
Pages165
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/FOIA_RR.asp?Path=/5 USC 552(a)(2)(D)Records/Friendly Fires&Folder=SPC Wells
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/119/index.html b/CIVIC/investigations/119/index.html deleted file mode 100644 index dfa83f4..0000000 --- a/CIVIC/investigations/119/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleInvestigation into Friendly Fire Incident - SSG Bass and SGT Meeuwsen, Baghdad - 23 Nov 05
CountryIraq
DateNov 2005
Military BranchArmy
Type of investigationAR 15-6
SubjectFriendly Fire
Specific locationBaghdad
Pages303
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/FOIA_RR.asp?Path=/5 USC 552(a)(2)(D)Records/Friendly Fires&Folder=SSG Bass
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/12/index.html b/CIVIC/investigations/12/index.html deleted file mode 100644 index 313c045..0000000 --- a/CIVIC/investigations/12/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleInvestigation Report re: Allegations of Maltreatment of Detainees, Camp Marlboro, Baghdad, Iraq
CountryIraq
DateJun 2003
Military BranchArmy
Type of investigationAR 15-6
SubjectIll-treatment of detainees
Specific locationCamp Marlboro, Baghdad
Pages111
Original SourceACLU Torture Database
Original URLshttps://www.thetorturedatabase.org/document/ar-15-6-investigation-report-re-allegations-maltreatment-detainees-camp-marlboro-baghdad?search_url=search/apachesolr_search/15-6&search_args=page=1%26show=50
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/120/index.html b/CIVIC/investigations/120/index.html deleted file mode 100644 index 47bf6e9..0000000 --- a/CIVIC/investigations/120/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleInvestigation of suspected fratricide on 29 Aug 07, SGT(P) Andrew Nelson
CountryIraq
DateAug 2007
Military BranchArmy
Type of investigationAR 15-6
SubjectFriendly Fire
Specific locationRedacted
Pages64
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/FOIA_RR.asp?Path=/5 USC 552(a)(2)(D)Records/Friendly Fires&Folder=SSG Nelson
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/121/index.html b/CIVIC/investigations/121/index.html deleted file mode 100644 index e6de12c..0000000 --- a/CIVIC/investigations/121/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleInvestigation into an incident in the vicinity of the Salala Checkpoint on the night of 25-26 Nov 2011
CountryAfghanistan
DateNov 2011
Military BranchCENTCOM
Type of investigationnan
SubjectDeaths of Pakistani military personnel
Specific locationSalala Checkpoint, Khas Kunar Province
Pages77
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/FOIA_RR.asp?Path=/5 USC 552(a)(2)(D)Records&Folder=Cross Border Investigation (25 Nov 11)
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/122/index.html b/CIVIC/investigations/122/index.html deleted file mode 100644 index cad4ee3..0000000 --- a/CIVIC/investigations/122/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleInvestigation concerning a 19 June 2012 complex attack on FBO Frontenac
CountryAfghanistan
DateJun 2012
Military BranchArmy
Type of investigationAR 15-6
SubjectSoldier casualty
Specific locationFOB Frontenac, Shah Wali Kot District
Pages140
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/FOIA_RR.asp?Path=/5 USC 552(a)(2)(D)Records&Folder=(Added 06MAR18) 14-0204 Attack on FOB Frontenac Afghanistan 18-19 Jun 2012
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/123/index.html b/CIVIC/investigations/123/index.html deleted file mode 100644 index 6a2ef0b..0000000 --- a/CIVIC/investigations/123/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleInvestigation for 28 Nov 13 Helmand Province CIVCAS
CountryAfghanistan
DateNov 2013
Military BranchISAF
Type of investigationAR 15-6
SubjectCivilian Casualty
Specific locationHelmand Province
Pages44
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/FOIA_RR.asp?Path=/5 USC 552(a)(2)(D)Records&Folder=(Added 06MAR18) 14-0183 Incident at Faqiran Village Afghanistan 28 Nov 2013
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/124/index.html b/CIVIC/investigations/124/index.html deleted file mode 100644 index 2ed339c..0000000 --- a/CIVIC/investigations/124/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title001._CIVCAS__05_JAN_05_CLEAR.pdf
CountryAfghanistan
DateJan 2005
Military BranchCJTF
Type of investigationAR 15-6
SubjectCivilian Casualty
Specific locationnan
Pages7
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/125/index.html b/CIVIC/investigations/125/index.html deleted file mode 100644 index 40f00ac..0000000 --- a/CIVIC/investigations/125/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title002._CIVCAS_19_JAN_05_CLEAR.pdf
CountryAfghanistan
DateJan 2005
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty
Specific locationSiminay, Oruzgan Province
Pages7
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/126/index.html b/CIVIC/investigations/126/index.html deleted file mode 100644 index 0165e0f..0000000 --- a/CIVIC/investigations/126/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title003._CIVCAS__10_FEB_05_CLEAR.pdf
CountryAfghanistan
DateFeb 2005
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages17
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/127/index.html b/CIVIC/investigations/127/index.html deleted file mode 100644 index 81ba709..0000000 --- a/CIVIC/investigations/127/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title004._CIVCAS__22_MAR_05_CLEAR.pdf
CountryAfghanistan
DateMar 2005
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages9
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/128/index.html b/CIVIC/investigations/128/index.html deleted file mode 100644 index a5a90e1..0000000 --- a/CIVIC/investigations/128/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title005._CIVCAS__28_APR_05_CLEAR.pdf
CountryAfghanistan
DateApr 2005
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages9
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/129/index.html b/CIVIC/investigations/129/index.html deleted file mode 100644 index 53b75b4..0000000 --- a/CIVIC/investigations/129/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title006._CIVCAS__14_JUL_05_CLEAR.pdf
CountryAfghanistan
DateJul 2005
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages2
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/13/index.html b/CIVIC/investigations/13/index.html deleted file mode 100644 index 9e1d229..0000000 --- a/CIVIC/investigations/13/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleCID Report: 0014-03-CID899-63484
CountryIraq
DateJun 2003
Military BranchArmy
Type of investigationCID (criminal)
SubjectIll-treatment of detainees
Specific locationGhazalia
Pages61
Original SourceACLU Torture Database
Original URLshttps://www.thetorturedatabase.org/document/cid-report-0014-03-cid899-63484?search_url=search/apachesolr_search/15-6&search_args=page=8%26show=50
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/130/index.html b/CIVIC/investigations/130/index.html deleted file mode 100644 index 531c79c..0000000 --- a/CIVIC/investigations/130/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title007._CIVCAS_14_SEP_05_CLEAR.pdf
CountryAfghanistan
DateSep 2005
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages7
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/131/index.html b/CIVIC/investigations/131/index.html deleted file mode 100644 index 56aade8..0000000 --- a/CIVIC/investigations/131/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title008._CIVCAS__04_DEC_05_CLEAR.pdf
CountryAfghanistan
DateDec 2005
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages12
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/132/index.html b/CIVIC/investigations/132/index.html deleted file mode 100644 index 493fbeb..0000000 --- a/CIVIC/investigations/132/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title009._CIVCAS__06_DEC_05_CLEAR.pdf
CountryAfghanistan
DateDec 2005
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages4
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/133/index.html b/CIVIC/investigations/133/index.html deleted file mode 100644 index f195617..0000000 --- a/CIVIC/investigations/133/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title010._CIVCAS__10_DEC_05_CLEAR.pdf
CountryAfghanistan
DateDec 2005
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages9
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/134/index.html b/CIVIC/investigations/134/index.html deleted file mode 100644 index 865f211..0000000 --- a/CIVIC/investigations/134/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title011._CIVCAS_05_MAY_06_CLEAR.pdf
CountryAfghanistan
DateMay 2006
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages11
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/135/index.html b/CIVIC/investigations/135/index.html deleted file mode 100644 index 5b16078..0000000 --- a/CIVIC/investigations/135/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title012._CIVCAS_06_OCT_07_CLEAR.pdf
CountryAfghanistan
DateOct 2007
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages18
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/136/index.html b/CIVIC/investigations/136/index.html deleted file mode 100644 index cb2e1e3..0000000 --- a/CIVIC/investigations/136/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title013._CIVCAS_08_OCT_06_CLEAR.pdf
CountryAfghanistan
DateOct 2006
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages12
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/137/index.html b/CIVIC/investigations/137/index.html deleted file mode 100644 index ce03291..0000000 --- a/CIVIC/investigations/137/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title014._CIVCAS_09_OCT_06_CLEAR.pdf
CountryAfghanistan
DateOct 2006
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages12
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/138/index.html b/CIVIC/investigations/138/index.html deleted file mode 100644 index 0c13d9a..0000000 --- a/CIVIC/investigations/138/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title015._CIVCAS_09_JUL_06_CLEAR.pdf
CountryAfghanistan
DateJul 2006
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages16
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/139/index.html b/CIVIC/investigations/139/index.html deleted file mode 100644 index 97b4f48..0000000 --- a/CIVIC/investigations/139/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title016._CIVCAS_09_JUN_06_CLEAR.pdf
CountryAfghanistan
DateJun 2006
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages16
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/14/index.html b/CIVIC/investigations/14/index.html deleted file mode 100644 index a3b5c90..0000000 --- a/CIVIC/investigations/14/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleInvestigation (Iraq, June 8, 2003) re: Report of Alleged Law of War Violations
CountryIraq
DateJun 2003
Military BranchArmy
Type of investigationAR 15-6
Subjectill-treatment of detainees; theft
Specific locationUnclear
Pages46
Original SourceACLU Torture Database
Original URLshttps://www.thetorturedatabase.org/document/ar-15-6-investigation-iraq-june-8-2003-appointment-investigating-officer-re-report-alleged?search_url=search/apachesolr_search/15-6&search_args=show=50
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/140/index.html b/CIVIC/investigations/140/index.html deleted file mode 100644 index 43438b7..0000000 --- a/CIVIC/investigations/140/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title017._CIVCAS_13_JUN_06_CLEAR.pdf
CountryAfghanistan
DateJun 2006
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages19
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/141/index.html b/CIVIC/investigations/141/index.html deleted file mode 100644 index f35a609..0000000 --- a/CIVIC/investigations/141/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title018._CIVCAS_13_NOV_06_CLEAR.pdf
CountryAfghanistan
DateNov 2006
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages10
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/142/index.html b/CIVIC/investigations/142/index.html deleted file mode 100644 index b87123e..0000000 --- a/CIVIC/investigations/142/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title019._CIVCAS_13_OCT_06_CLEAR.pdf
CountryAfghanistan
DateOct 2006
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages12
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/143/index.html b/CIVIC/investigations/143/index.html deleted file mode 100644 index d5d6fca..0000000 --- a/CIVIC/investigations/143/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title020._CIVCAS_13_OCT_06_CLEAR.pdf
CountryAfghanistan
DateOct 2006
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages8
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/144/index.html b/CIVIC/investigations/144/index.html deleted file mode 100644 index 055b7c4..0000000 --- a/CIVIC/investigations/144/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title021._CIVCAS_15_APR_06_CLEAR.pdf
CountryAfghanistan
DateApr 2006
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages22
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/145/index.html b/CIVIC/investigations/145/index.html deleted file mode 100644 index 2fa0835..0000000 --- a/CIVIC/investigations/145/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title022._CIVCAS_17_APR_06_CLEAR.pdf
CountryAfghanistan
DateApr 2006
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages13
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/146/index.html b/CIVIC/investigations/146/index.html deleted file mode 100644 index 0e5fbab..0000000 --- a/CIVIC/investigations/146/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title023._CIVCAS_17_JUN_06_CLEAR.pdf
CountryAfghanistan
DateJun 2006
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages8
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/147/index.html b/CIVIC/investigations/147/index.html deleted file mode 100644 index c8b0ebb..0000000 --- a/CIVIC/investigations/147/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title024._CIVCAS_18_APR_06_CLEAR.pdf
CountryAfghanistan
DateApr 2006
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages25
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/148/index.html b/CIVIC/investigations/148/index.html deleted file mode 100644 index f4b895f..0000000 --- a/CIVIC/investigations/148/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title025._CIVCAS_19_JUN_06_CLEAR.pdf
CountryAfghanistan
DateJun 2006
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages13
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/149/index.html b/CIVIC/investigations/149/index.html deleted file mode 100644 index fce53c0..0000000 --- a/CIVIC/investigations/149/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title026._CIVCAS_25_SEP_06_CLEAR.pdf
CountryAfghanistan
DateSep 2006
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages13
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/15/index.html b/CIVIC/investigations/15/index.html deleted file mode 100644 index 4c9e53e..0000000 --- a/CIVIC/investigations/15/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleCID Report: 0046-03-CID899-63502
CountryIraq
DateJun 2003
Military BranchArmy
Type of investigationCID (criminal)
SubjectIll-treatment of detainees
Specific locationBaghdad
Pages101
Original SourceACLU Torture Database
Original URLshttps://www.thetorturedatabase.org/document/cid-report-0046-03-cid899-63502?search_url=search/apachesolr_search/15-6&search_args=page=8%26show=50
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/150/index.html b/CIVIC/investigations/150/index.html deleted file mode 100644 index c396037..0000000 --- a/CIVIC/investigations/150/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title027._CIVCAS_26_OCT_06_CLEAR.pdf
CountryAfghanistan
DateOct 2006
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages9
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/151/index.html b/CIVIC/investigations/151/index.html deleted file mode 100644 index bfb329f..0000000 --- a/CIVIC/investigations/151/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title028._CIVCAS_09_JAN_07_CLEAR.pdf
CountryAfghanistan
DateJan 2007
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages25
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/152/index.html b/CIVIC/investigations/152/index.html deleted file mode 100644 index e786069..0000000 --- a/CIVIC/investigations/152/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title029._CIVCAS_20_JAN_07_CLEAR.pdf
CountryAfghanistan
DateJan 2007
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages24
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/153/index.html b/CIVIC/investigations/153/index.html deleted file mode 100644 index 515e95f..0000000 --- a/CIVIC/investigations/153/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title030._CIVCAS_17_FEB_07_CLEAR.pdf
CountryAfghanistan
DateFeb 2007
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages11
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/154/index.html b/CIVIC/investigations/154/index.html deleted file mode 100644 index 8985214..0000000 --- a/CIVIC/investigations/154/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title031._CIVCAS_19_FEB_07_CLEAR.pdf
CountryAfghanistan
DateFeb 2007
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages11
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/155/index.html b/CIVIC/investigations/155/index.html deleted file mode 100644 index e2c2c00..0000000 --- a/CIVIC/investigations/155/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title032._CIVCAS_09_MAR_07_CLEAR.pdf
CountryAfghanistan
DateMar 2007
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages48
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/156/index.html b/CIVIC/investigations/156/index.html deleted file mode 100644 index 7d6563b..0000000 --- a/CIVIC/investigations/156/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title033._CIVCAS_21_MAR_07_CLEAR.pdf
CountryAfghanistan
DateMar 2007
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages12
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/157/index.html b/CIVIC/investigations/157/index.html deleted file mode 100644 index 5c4e309..0000000 --- a/CIVIC/investigations/157/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title034._CIVCAS_12_APR_07_CLEAR.pdf
CountryAfghanistan
DateApr 2007
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages9
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/158/index.html b/CIVIC/investigations/158/index.html deleted file mode 100644 index 7a3ac18..0000000 --- a/CIVIC/investigations/158/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title035._CIVCAS_19_APR_07_CLEAR.pdf
CountryAfghanistan
DateApr 2007
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages23
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/159/index.html b/CIVIC/investigations/159/index.html deleted file mode 100644 index c957b17..0000000 --- a/CIVIC/investigations/159/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title036._CIVCAS_11_JUN_07_CLEAR.pdf
CountryAfghanistan
DateJun 2007
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages15
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/16/index.html b/CIVIC/investigations/16/index.html deleted file mode 100644 index 34c529f..0000000 --- a/CIVIC/investigations/16/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleInvestigation re: Abuse of Iraqi Civilians
CountryIraq
DateJun 2003
Military BranchArmy
Type of investigationAR 15-6
Subjectill-treatment of detainees
Specific locationUnclear
Pages63
Original SourceACLU Torture Database
Original URLshttps://www.thetorturedatabase.org/document/commanders-inquiry-15-6-investigation-8?search_url=search/apachesolr_search/15-6&search_args=page=1%26show=50
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/160/index.html b/CIVIC/investigations/160/index.html deleted file mode 100644 index 20e84d6..0000000 --- a/CIVIC/investigations/160/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title037._CIVCAS_03_JUL_07_CLEAR.pdf
CountryAfghanistan
DateJul 2007
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages12
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/161/index.html b/CIVIC/investigations/161/index.html deleted file mode 100644 index dac5973..0000000 --- a/CIVIC/investigations/161/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title038._CIVCAS_16_AUG_07_CLEAR.pdf
CountryAfghanistan
DateAug 2007
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages8
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/162/index.html b/CIVIC/investigations/162/index.html deleted file mode 100644 index dc14432..0000000 --- a/CIVIC/investigations/162/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title039._CIVCAS_27_AUG_07_CLEAR.pdf
CountryAfghanistan
DateAug 2007
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages15
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/163/index.html b/CIVIC/investigations/163/index.html deleted file mode 100644 index 7cb6815..0000000 --- a/CIVIC/investigations/163/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title040._CIVCAS_29_AUG_07_CLEAR.pdf
CountryAfghanistan
DateAug 2007
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages17
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/164/index.html b/CIVIC/investigations/164/index.html deleted file mode 100644 index c6d10e0..0000000 --- a/CIVIC/investigations/164/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title041._CIVCAS_18_SEP_07_CLEAR.pdf
CountryAfghanistan
DateSep 2007
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages14
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/165/index.html b/CIVIC/investigations/165/index.html deleted file mode 100644 index 1d2e68e..0000000 --- a/CIVIC/investigations/165/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title042._CIVCAS_25_SEP_07_CLEAR.pdf
CountryAfghanistan
DateSep 2007
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages13
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/166/index.html b/CIVIC/investigations/166/index.html deleted file mode 100644 index 06cda28..0000000 --- a/CIVIC/investigations/166/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title043._CIVCAS_06_OCT_07_CLEAR.pdf
CountryAfghanistan
DateOct 2007
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages21
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/167/index.html b/CIVIC/investigations/167/index.html deleted file mode 100644 index d3622d1..0000000 --- a/CIVIC/investigations/167/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title044._CIVCAS_07_OCT_07_CLEAR.pdf
CountryAfghanistan
DateOct 2007
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages14
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/168/index.html b/CIVIC/investigations/168/index.html deleted file mode 100644 index 10370f9..0000000 --- a/CIVIC/investigations/168/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title045._CIVCAS_20_OCT_07_CLEAR.pdf
CountryAfghanistan
DateOct 2007
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages9
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/169/index.html b/CIVIC/investigations/169/index.html deleted file mode 100644 index 8255a12..0000000 --- a/CIVIC/investigations/169/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title046._CIVCAS_27_NOV_07_CLEAR.pdf
CountryAfghanistan
DateNov 2007
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages17
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/17/index.html b/CIVIC/investigations/17/index.html deleted file mode 100644 index 25d7988..0000000 --- a/CIVIC/investigations/17/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleInvestigation re: Death of a Detaine
CountryIraq
DateJul 2003
Military BranchArmy
Type of investigationAR 15-6
SubjectIll-treatment of detainees
Specific locationTikrit
Pages42
Original SourceACLU Torture Database
Original URLshttps://www.thetorturedatabase.org/document/ar-15-6-investigation-re-death-detainee?search_url=search/apachesolr_search/15-6&search_args=page=1%26show=50
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/170/index.html b/CIVIC/investigations/170/index.html deleted file mode 100644 index 87e16c2..0000000 --- a/CIVIC/investigations/170/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title047._CIVCAS_01_SEP_08_CLEAR.pdf
CountryAfghanistan
DateSep 2008
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages5
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/171/index.html b/CIVIC/investigations/171/index.html deleted file mode 100644 index 76c85f9..0000000 --- a/CIVIC/investigations/171/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title048._CIVCAS_02_MAR_08_CLEAR.pdf
CountryAfghanistan
DateMar 2008
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages15
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/172/index.html b/CIVIC/investigations/172/index.html deleted file mode 100644 index 8a54205..0000000 --- a/CIVIC/investigations/172/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title049._CIVCAS_04_DEC_08_CLEAR.pdf
CountryAfghanistan
DateDec 2008
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages11
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/173/index.html b/CIVIC/investigations/173/index.html deleted file mode 100644 index 416fa21..0000000 --- a/CIVIC/investigations/173/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title050._CIVCAS_04_JUL_08_CLEAR.pdf
CountryAfghanistan
DateJul 2008
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages22
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/174/index.html b/CIVIC/investigations/174/index.html deleted file mode 100644 index c7110c7..0000000 --- a/CIVIC/investigations/174/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title051._CIVCAS_05_JUN_08_CLEAR.pdf
CountryAfghanistan
DateJun 2008
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages15
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/175/index.html b/CIVIC/investigations/175/index.html deleted file mode 100644 index 29a3a60..0000000 --- a/CIVIC/investigations/175/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title052._CIVCAS_05_May_08_CLEAR.pdf
CountryAfghanistan
DateMay 2008
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages14
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/176/index.html b/CIVIC/investigations/176/index.html deleted file mode 100644 index cb1af4e..0000000 --- a/CIVIC/investigations/176/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title053._CIVCAS_05_Sep_08_CLEAR.pdf
CountryAfghanistan
DateSep 2008
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages15
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/177/index.html b/CIVIC/investigations/177/index.html deleted file mode 100644 index c821ba2..0000000 --- a/CIVIC/investigations/177/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title054._CIVCAS_06_Jul_08_CLEAR.pdf
CountryAfghanistan
DateJul 2008
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages18
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/178/index.html b/CIVIC/investigations/178/index.html deleted file mode 100644 index d99178f..0000000 --- a/CIVIC/investigations/178/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title055._CIVCAS_07_Mar_08_CLEAR.pdf
CountryAfghanistan
DateMar 2008
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages14
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/179/index.html b/CIVIC/investigations/179/index.html deleted file mode 100644 index e6e057f..0000000 --- a/CIVIC/investigations/179/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title056._CIVCAS_07_Oct_08_CLEAR.pdf
CountryAfghanistan
DateOct 2008
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages12
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/18/index.html b/CIVIC/investigations/18/index.html deleted file mode 100644 index 70d5e3b..0000000 --- a/CIVIC/investigations/18/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleCID investigation into allegations of prisoner maltreatment/abuse at Camp Cropper, Iraq
CountryIraq
DateJul 2003
Military BranchArmy
Type of investigationCID (criminal)
SubjectIll-treatment of detainees
Specific locationCamp Cropper
Pages240
Original SourceACLU Torture Database
Original URLshttps://www.thetorturedatabase.org/document/cid-report-0066-2004-cid342-64142?search_url=search/apachesolr_search/15-6&search_args=page=3%26show=50
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/180/index.html b/CIVIC/investigations/180/index.html deleted file mode 100644 index 079ff0f..0000000 --- a/CIVIC/investigations/180/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title057._CIVCAS_09_SEP_08_CLEAR.pdf
CountryAfghanistan
DateSep 2008
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages11
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/181/index.html b/CIVIC/investigations/181/index.html deleted file mode 100644 index d59c1cd..0000000 --- a/CIVIC/investigations/181/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title058._CIVCAS_12_DEC_08_CLEAR.pdf
CountryAfghanistan
DateDec 2008
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages19
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/182/index.html b/CIVIC/investigations/182/index.html deleted file mode 100644 index 85dc46c..0000000 --- a/CIVIC/investigations/182/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title059._CIVCAS_14_MAR_08_CLEAR.pdf
CountryAfghanistan
DateMar 2008
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages4
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/183/index.html b/CIVIC/investigations/183/index.html deleted file mode 100644 index 3fcaba2..0000000 --- a/CIVIC/investigations/183/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title060._CIVCAS_15_JUN_08_CLEAR.pdf
CountryAfghanistan
DateJun 2008
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages26
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/184/index.html b/CIVIC/investigations/184/index.html deleted file mode 100644 index a1b00ad..0000000 --- a/CIVIC/investigations/184/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title061._CIVCAS_15_NOV_08_CLEAR.pdf
CountryAfghanistan
DateNov 2008
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages6
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/185/index.html b/CIVIC/investigations/185/index.html deleted file mode 100644 index becb77a..0000000 --- a/CIVIC/investigations/185/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title062._CIVCAS_16_OCT_08_CLEAR.pdf
CountryAfghanistan
DateOct 2008
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages20
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/186/index.html b/CIVIC/investigations/186/index.html deleted file mode 100644 index 86e23af..0000000 --- a/CIVIC/investigations/186/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title063._CIVCAS_16_OCT_08_CLEAR.pdf
CountryAfghanistan
DateOct 2008
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages28
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/187/index.html b/CIVIC/investigations/187/index.html deleted file mode 100644 index 64503bd..0000000 --- a/CIVIC/investigations/187/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title064._CIVCAS_18_JUN_08_CLEAR.pdf
CountryAfghanistan
DateJun 2008
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages7
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/188/index.html b/CIVIC/investigations/188/index.html deleted file mode 100644 index 4204778..0000000 --- a/CIVIC/investigations/188/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title065._CIVCAS_19_AUG_08_CLEAR.pdf
CountryAfghanistan
DateAug 2008
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages3
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/189/index.html b/CIVIC/investigations/189/index.html deleted file mode 100644 index 148b945..0000000 --- a/CIVIC/investigations/189/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title066._CIVCAS_19_Jul_08_CLEAR.pdf
CountryAfghanistan
DateJul 2008
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages19
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/19/index.html b/CIVIC/investigations/19/index.html deleted file mode 100644 index a58db22..0000000 --- a/CIVIC/investigations/19/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Titleinvestigation into Purported Abuse of Detainees at Ramadi Palace, Iraq, July 11-12, 2003
CountryIraq
DateJul 2003
Military BranchArmy
Type of investigationAR 15-6
SubjectIll-treatment of detainees
Specific locationRamadi Palace
Pages8
Original SourceACLU Torture Database
Original URLshttps://www.thetorturedatabase.org/document/ar-15-6-investigation-investigative-findings-no-abuse-detainees-re-incident-ramadi-palace?search_url=search/apachesolr_search/15-6&search_args=show=50
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/190/index.html b/CIVIC/investigations/190/index.html deleted file mode 100644 index fc04b15..0000000 --- a/CIVIC/investigations/190/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title067._CIVCAS_20_DEC_08_CLEAR.pdf
CountryAfghanistan
DateDec 2008
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages11
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/191/index.html b/CIVIC/investigations/191/index.html deleted file mode 100644 index 3d04b2d..0000000 --- a/CIVIC/investigations/191/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title068._CIVCAS_29_APR_08_CLEAR.pdf
CountryAfghanistan
DateApr 2008
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages11
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/192/index.html b/CIVIC/investigations/192/index.html deleted file mode 100644 index b1ec67c..0000000 --- a/CIVIC/investigations/192/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title069._CIVCAS_21_NOV_08_CLEAR.pdf
CountryAfghanistan
DateNov 2008
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages13
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/193/index.html b/CIVIC/investigations/193/index.html deleted file mode 100644 index ec2804f..0000000 --- a/CIVIC/investigations/193/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title070._CIVCAS_22_AUG_08_CLEAR.pdf
CountryAfghanistan
DateAug 2008
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages29
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/194/index.html b/CIVIC/investigations/194/index.html deleted file mode 100644 index a720aef..0000000 --- a/CIVIC/investigations/194/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title071._CIVCAS_22_JUN_08_CLEAR.pdf
CountryAfghanistan
DateJun 2008
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages15
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/195/index.html b/CIVIC/investigations/195/index.html deleted file mode 100644 index f0efd49..0000000 --- a/CIVIC/investigations/195/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title072._CIVCAS_22_OCT_08_CLEAR.pdf
CountryAfghanistan
DateOct 2008
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages24
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/196/index.html b/CIVIC/investigations/196/index.html deleted file mode 100644 index 42f1827..0000000 --- a/CIVIC/investigations/196/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title073._CIVCAS_24_DEC_08_CLEAR.pdf
CountryAfghanistan
DateDec 2008
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages19
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/197/index.html b/CIVIC/investigations/197/index.html deleted file mode 100644 index 94cb8aa..0000000 --- a/CIVIC/investigations/197/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title074._CIVCAS_24_NOV_08_CLEAR.pdf
CountryAfghanistan
DateNov 2008
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages22
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/198/index.html b/CIVIC/investigations/198/index.html deleted file mode 100644 index e54a232..0000000 --- a/CIVIC/investigations/198/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title075._CIVCAS_25_JUN_08_CLEAR.pdf
CountryAfghanistan
DateJun 2008
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages17
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/199/index.html b/CIVIC/investigations/199/index.html deleted file mode 100644 index 9d80483..0000000 --- a/CIVIC/investigations/199/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title076._CIVCAS_26_MAY_08_CLEAR.pdf
CountryAfghanistan
DateMay 2008
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages21
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/2/index.html b/CIVIC/investigations/2/index.html deleted file mode 100644 index 94bb89b..0000000 --- a/CIVIC/investigations/2/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleCID Report: 0129-0CID899-63556
CountryIraq
DateAug 2002
Military BranchArmy
Type of investigationCID (criminal)
SubjectIll-treatment of detainees
Specific locationBaghdad
Pages25
Original SourceACLU Torture Database
Original URLshttps://www.thetorturedatabase.org/document/cid-report-0129-0cid899-63556?search_url=search/apachesolr_search/15-6&search_args=page=8%26show=50
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/20/index.html b/CIVIC/investigations/20/index.html deleted file mode 100644 index be51656..0000000 --- a/CIVIC/investigations/20/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleInvestigation into the Shooting of an Iraqi Civilian
CountryIraq
DateJul 2003
Military BranchArmy
Type of investigationAR 15-6
SubjectIll-treatment of detainees
Specific locationUnclear
Pages22
Original SourceACLU Torture Database
Original URLshttps://www.thetorturedatabase.org/document/army-memo-re-ar-15-6-investigation-shooting-iraqi-civilian?search_url=search/apachesolr_search/15-6&search_args=page=1%26show=50
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/200/index.html b/CIVIC/investigations/200/index.html deleted file mode 100644 index 33f875d..0000000 --- a/CIVIC/investigations/200/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title077._CIVCAS_31_JAN_08_CLEAR.pdf
CountryAfghanistan
DateJan 2008
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages0
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/201/index.html b/CIVIC/investigations/201/index.html deleted file mode 100644 index 36f23fe..0000000 --- a/CIVIC/investigations/201/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title078._CIVCAS_01_DEC_09_CLEAR.pdf
CountryAfghanistan
DateDec 2009
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages16
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/202/index.html b/CIVIC/investigations/202/index.html deleted file mode 100644 index f69c2ae..0000000 --- a/CIVIC/investigations/202/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title079._CIVCAS_01_MAR_09_CLEAR.pdf
CountryAfghanistan
DateMar 2009
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages24
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/203/index.html b/CIVIC/investigations/203/index.html deleted file mode 100644 index e9612fc..0000000 --- a/CIVIC/investigations/203/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title080._CIVCAS_01_SEP_09_CLEAR.pdf
CountryAfghanistan
DateSep 2009
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages13
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/204/index.html b/CIVIC/investigations/204/index.html deleted file mode 100644 index c71d3a9..0000000 --- a/CIVIC/investigations/204/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title081._CIVCAS_02_FEB_09_CLEAR.pdf
CountryAfghanistan
DateFeb 2009
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages15
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/205/index.html b/CIVIC/investigations/205/index.html deleted file mode 100644 index 6979c49..0000000 --- a/CIVIC/investigations/205/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title082._CIVCAS_02_JUN_09_CLEAR.pdf
CountryAfghanistan
DateJun 2009
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages19
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/206/index.html b/CIVIC/investigations/206/index.html deleted file mode 100644 index bf7572c..0000000 --- a/CIVIC/investigations/206/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title083._CIVCAS_08_JUL_09_CLEAR.pdf
CountryAfghanistan
DateJul 2009
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages22
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/207/index.html b/CIVIC/investigations/207/index.html deleted file mode 100644 index c81738a..0000000 --- a/CIVIC/investigations/207/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title084._CIVCAS_09_DEC_09_CLEAR.pdf
CountryAfghanistan
DateDec 2009
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages18
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/208/index.html b/CIVIC/investigations/208/index.html deleted file mode 100644 index 9ede46f..0000000 --- a/CIVIC/investigations/208/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title085._CIVCAS_11_JUL_09_CLEAR.pdf
CountryAfghanistan
DateJul 2009
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages3
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/209/index.html b/CIVIC/investigations/209/index.html deleted file mode 100644 index 0820d21..0000000 --- a/CIVIC/investigations/209/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title086._CIVCAS_11_JUN_09_CLEAR.pdf
CountryAfghanistan
DateJun 2009
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages22
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/21/index.html b/CIVIC/investigations/21/index.html deleted file mode 100644 index 75e2069..0000000 --- a/CIVIC/investigations/21/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleCID Report: 0094-04-CID259-80177
CountryIraq
DateAug 2003
Military BranchArmy
Type of investigationCID (criminal)
SubjectIll-treatment of detainees
Specific locationBaghdad
Pages69
Original SourceACLU Torture Database
Original URLshttps://www.thetorturedatabase.org/document/cid-report-0094-04-cid259-80177?search_url=search/apachesolr_search/15-6&search_args=page=8%26show=50
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/210/index.html b/CIVIC/investigations/210/index.html deleted file mode 100644 index c47a061..0000000 --- a/CIVIC/investigations/210/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title087._CIVCAS_11_JUN_09_CLEAR.pdf
CountryAfghanistan
DateJun 2009
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages20
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/211/index.html b/CIVIC/investigations/211/index.html deleted file mode 100644 index b55a2af..0000000 --- a/CIVIC/investigations/211/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title088._CIVCAS_11_NOV_09_CLEAR.pdf
CountryAfghanistan
DateNov 2009
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages19
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/212/index.html b/CIVIC/investigations/212/index.html deleted file mode 100644 index 6c9b8ae..0000000 --- a/CIVIC/investigations/212/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title089._CIVCAS_12_APR_09_CLEAR.pdf
CountryAfghanistan
DateApr 2009
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages23
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/213/index.html b/CIVIC/investigations/213/index.html deleted file mode 100644 index cec4399..0000000 --- a/CIVIC/investigations/213/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title090._CIVCAS_12_MAY_09_CLEAR.pdf
CountryAfghanistan
DateMay 2009
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages27
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/214/index.html b/CIVIC/investigations/214/index.html deleted file mode 100644 index a7878c7..0000000 --- a/CIVIC/investigations/214/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title091._CIVCAS_13_MAY_09_CLEAR.pdf
CountryAfghanistan
DateMay 2009
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages24
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/215/index.html b/CIVIC/investigations/215/index.html deleted file mode 100644 index b1cfe08..0000000 --- a/CIVIC/investigations/215/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title092._CIVCAS_14_SEP_09_CLEAR.pdf
CountryAfghanistan
DateSep 2009
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages17
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/216/index.html b/CIVIC/investigations/216/index.html deleted file mode 100644 index 4199ac6..0000000 --- a/CIVIC/investigations/216/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title093._CIVCAS_16_JUN_09_CLEAR.pdf
CountryAfghanistan
DateJun 2009
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages20
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/217/index.html b/CIVIC/investigations/217/index.html deleted file mode 100644 index 7658a3b..0000000 --- a/CIVIC/investigations/217/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title094._CIVCAS_17_FEB_09_CLEAR.pdf
CountryAfghanistan
DateFeb 2009
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages22
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/218/index.html b/CIVIC/investigations/218/index.html deleted file mode 100644 index 3a1c407..0000000 --- a/CIVIC/investigations/218/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title095._CIVCAS_19_MAY_09_CLEAR.pdf
CountryAfghanistan
DateMay 2009
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages3
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/219/index.html b/CIVIC/investigations/219/index.html deleted file mode 100644 index 5b86ab2..0000000 --- a/CIVIC/investigations/219/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title096._CIVCAS_20_JUN_09_CLEAR.pdf
CountryAfghanistan
DateJun 2009
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages18
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/22/index.html b/CIVIC/investigations/22/index.html deleted file mode 100644 index f5d6295..0000000 --- a/CIVIC/investigations/22/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleInvestigation re: Death of a Detainee
CountryIraq
DateAug 2003
Military BranchArmy
Type of investigationAR 15-6
SubjectIll-treatment of detainees
Specific locationCamp Warhorse
Pages58
Original SourceACLU Torture Database
Original URLshttps://www.thetorturedatabase.org/document/commanders-inquiry-15-6-investigation-0?search_url=search/apachesolr_search/15-6&search_args=page=1%26show=50
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/220/index.html b/CIVIC/investigations/220/index.html deleted file mode 100644 index f4fc380..0000000 --- a/CIVIC/investigations/220/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title097._CIVCAS_24_MAR_09_CLEAR.pdf
CountryAfghanistan
DateMar 2009
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages20
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/221/index.html b/CIVIC/investigations/221/index.html deleted file mode 100644 index f174542..0000000 --- a/CIVIC/investigations/221/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title098._CIVCAS_24_NOV_09_CLEAR.pdf
CountryAfghanistan
DateNov 2009
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages24
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/222/index.html b/CIVIC/investigations/222/index.html deleted file mode 100644 index 15e0b7e..0000000 --- a/CIVIC/investigations/222/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title099._CIVCAS_26_DEC_09_CLEAR.pdf
CountryAfghanistan
DateDec 2009
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages7
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/223/index.html b/CIVIC/investigations/223/index.html deleted file mode 100644 index de1eb5e..0000000 --- a/CIVIC/investigations/223/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title100._CIVCAS_25_MAY_09_CLEAR.pdf
CountryAfghanistan
DateMay 2009
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages4
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/224/index.html b/CIVIC/investigations/224/index.html deleted file mode 100644 index 338a996..0000000 --- a/CIVIC/investigations/224/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title101._CIVCAS_27_JUL_09_CLEAR.pdf
CountryAfghanistan
DateJul 2009
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages1
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/225/index.html b/CIVIC/investigations/225/index.html deleted file mode 100644 index 61ea812..0000000 --- a/CIVIC/investigations/225/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title102._CIVCAS_28_APR_09_CLEAR.pdf
CountryAfghanistan
DateApr 2009
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages19
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/226/index.html b/CIVIC/investigations/226/index.html deleted file mode 100644 index 7e9d78e..0000000 --- a/CIVIC/investigations/226/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title103._CIVCAS_28_SEP_09_CLEAR.pdf
CountryAfghanistan
DateSep 2009
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages27
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/227/index.html b/CIVIC/investigations/227/index.html deleted file mode 100644 index 2f2b932..0000000 --- a/CIVIC/investigations/227/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title104._CIVCAS_29_JAN_09_CLEAR.pdf
CountryAfghanistan
DateJan 2009
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages13
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/228/index.html b/CIVIC/investigations/228/index.html deleted file mode 100644 index 12a7d5d..0000000 --- a/CIVIC/investigations/228/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title105._CIVCAS_31_JAN_09_CLEAR.pdf
CountryAfghanistan
DateJan 2009
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages21
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/229/index.html b/CIVIC/investigations/229/index.html deleted file mode 100644 index 3650c40..0000000 --- a/CIVIC/investigations/229/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title106._CIVCAS_31_MAR_09_CLEAR.pdf
CountryAfghanistan
DateMar 2009
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages17
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/23/index.html b/CIVIC/investigations/23/index.html deleted file mode 100644 index c8b27fb..0000000 --- a/CIVIC/investigations/23/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleInvestigation re: Death of a Detainee
CountryIraq
DateAug 2003
Military BranchArmy
Type of investigationAR 15-6
SubjectIll-treatment of detainees
Specific location (precise location unclear)
Pages35
Original SourceACLU Torture Database
Original URLshttps://www.thetorturedatabase.org/document/commanders-inquiry-15-6-investigation-2?search_url=search/apachesolr_search/15-6&search_args=page=1%26show=50
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/230/index.html b/CIVIC/investigations/230/index.html deleted file mode 100644 index f2b7102..0000000 --- a/CIVIC/investigations/230/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title107._CIVCAS_31_OCT_09_CLEAR.pdf
CountryAfghanistan
DateOct 2009
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages20
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/231/index.html b/CIVIC/investigations/231/index.html deleted file mode 100644 index bbd8d7f..0000000 --- a/CIVIC/investigations/231/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title108._CIVCAS_02_DEC_10_CLEAR.pdf
CountryAfghanistan
DateDec 2010
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages22
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/232/index.html b/CIVIC/investigations/232/index.html deleted file mode 100644 index f347a65..0000000 --- a/CIVIC/investigations/232/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title109._CIVCAS_03_OCT_10_CLEAR.pdf
CountryAfghanistan
DateOct 2010
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages28
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/233/index.html b/CIVIC/investigations/233/index.html deleted file mode 100644 index e7c764f..0000000 --- a/CIVIC/investigations/233/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title110._CIVCAS_04__DEC_10_CLEAR.pdf
CountryAfghanistan
DateDec 2010
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages20
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/234/index.html b/CIVIC/investigations/234/index.html deleted file mode 100644 index 2201695..0000000 --- a/CIVIC/investigations/234/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title111._CIVCAS_04_MAY_10_CLEAR.pdf
CountryAfghanistan
DateMay 2010
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages14
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/235/index.html b/CIVIC/investigations/235/index.html deleted file mode 100644 index 8c25355..0000000 --- a/CIVIC/investigations/235/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title112._CIVCAS_02_MAY_10_CLEAR.pdf
CountryAfghanistan
DateMay 2010
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages19
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/236/index.html b/CIVIC/investigations/236/index.html deleted file mode 100644 index ca210fc..0000000 --- a/CIVIC/investigations/236/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title113._CIVCAS_06_APR_10_CLEAR.pdf
CountryAfghanistan
DateApr 2010
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages15
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/237/index.html b/CIVIC/investigations/237/index.html deleted file mode 100644 index b28c531..0000000 --- a/CIVIC/investigations/237/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title114._CIVCAS_06_DEC_10_CLEAR.pdf
CountryAfghanistan
DateDec 2010
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages39
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/238/index.html b/CIVIC/investigations/238/index.html deleted file mode 100644 index a9e01b0..0000000 --- a/CIVIC/investigations/238/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title115._CIVCAS_06_JAN_10_CLEAR.pdf
CountryAfghanistan
DateJan 2010
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages23
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/239/index.html b/CIVIC/investigations/239/index.html deleted file mode 100644 index 6fe199c..0000000 --- a/CIVIC/investigations/239/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title116._CIVCAS_08_JUL_10_CLEAR.pdf
CountryAfghanistan
DateJul 2010
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages27
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/24/index.html b/CIVIC/investigations/24/index.html deleted file mode 100644 index efc4810..0000000 --- a/CIVIC/investigations/24/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleCID Report: 0152-03-CID469-60212
CountryIraq
DateAug 2003
Military BranchArmy
Type of investigationCID (criminal)
SubjectIll-treatment of detainees
Specific locationTaji
Pages63
Original SourceACLU Torture Database
Original URLshttps://www.thetorturedatabase.org/document/cid-report-0152-03-cid469-60212?search_url=search/apachesolr_search/15-6&search_args=page=8%26show=50
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/240/index.html b/CIVIC/investigations/240/index.html deleted file mode 100644 index 90341c0..0000000 --- a/CIVIC/investigations/240/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title117._CIVCAS_10_MAR_10_CLEAR.pdf
CountryAfghanistan
DateMar 2010
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages22
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/241/index.html b/CIVIC/investigations/241/index.html deleted file mode 100644 index 53b2521..0000000 --- a/CIVIC/investigations/241/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title118._CIVCAS_11_OCT_10_CLEAR.pdf
CountryAfghanistan
DateOct 2010
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages26
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/242/index.html b/CIVIC/investigations/242/index.html deleted file mode 100644 index 8acf4f0..0000000 --- a/CIVIC/investigations/242/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title119._CIVCAS_18_JUN_10_CLEAR.pdf
CountryAfghanistan
DateJun 2010
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages20
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/243/index.html b/CIVIC/investigations/243/index.html deleted file mode 100644 index 5c9d4e6..0000000 --- a/CIVIC/investigations/243/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title120._CIVCAS_19_APR_10_CLEAR.pdf
CountryAfghanistan
DateApr 2010
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages12
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/244/index.html b/CIVIC/investigations/244/index.html deleted file mode 100644 index d250888..0000000 --- a/CIVIC/investigations/244/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title121._CIVCAS_19_AUG_10_CLEAR.pdf
CountryAfghanistan
DateAug 2010
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages36
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/245/index.html b/CIVIC/investigations/245/index.html deleted file mode 100644 index 5beedc2..0000000 --- a/CIVIC/investigations/245/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title122._CIVCAS_19_JUL_10_CLEAR.pdf
CountryAfghanistan
DateJul 2010
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages25
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/246/index.html b/CIVIC/investigations/246/index.html deleted file mode 100644 index 45433df..0000000 --- a/CIVIC/investigations/246/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title123._CIVCAS_19_NOV_10_CLEAR.pdf
CountryAfghanistan
DateNov 2010
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages22
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/247/index.html b/CIVIC/investigations/247/index.html deleted file mode 100644 index c49e1b2..0000000 --- a/CIVIC/investigations/247/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title124._CIVCAS_22_FEB_10_CLEAR.pdf
CountryAfghanistan
DateFeb 2010
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages33
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/248/index.html b/CIVIC/investigations/248/index.html deleted file mode 100644 index 183e401..0000000 --- a/CIVIC/investigations/248/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title125._CIVCAS_23_JUL_10_CLEAR.pdf
CountryAfghanistan
DateJul 2010
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages29
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/249/index.html b/CIVIC/investigations/249/index.html deleted file mode 100644 index 60e5a8c..0000000 --- a/CIVIC/investigations/249/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title126._CIVCAS_23_OCT_10_CLEAR.pdf
CountryAfghanistan
DateOct 2010
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages36
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/25/index.html b/CIVIC/investigations/25/index.html deleted file mode 100644 index 178ec3e..0000000 --- a/CIVIC/investigations/25/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleInvestigation re: Death of Iraqi Detainee Ziad Muhammed Tariq
CountryIraq
DateAug 2003
Military BranchArmy
Type of investigationAR 15-6
SubjectIll-treatment of detainees
Specific locationDakota Detention Facility
Pages13
Original SourceACLU Torture Database
Original URLshttps://www.thetorturedatabase.org/document/ar-15-6-investigation-re-legal-review-ar-15-6-death-iraqi-detainee-ziad-muhammed-tariq?search_url=search/apachesolr_search/15-6
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/250/index.html b/CIVIC/investigations/250/index.html deleted file mode 100644 index dd46989..0000000 --- a/CIVIC/investigations/250/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title127._CIVCAS_24_MAR_10_CLEAR.pdf
CountryAfghanistan
DateMar 2010
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages21
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/251/index.html b/CIVIC/investigations/251/index.html deleted file mode 100644 index cb88375..0000000 --- a/CIVIC/investigations/251/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title128._CIVCAS_25_MAY_10_CLEAR.pdf
CountryAfghanistan
DateMay 2010
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages24
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/252/index.html b/CIVIC/investigations/252/index.html deleted file mode 100644 index aee9a55..0000000 --- a/CIVIC/investigations/252/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title129._CIVCAS_28_AUG_10_CLEAR.pdf
CountryAfghanistan
DateAug 2010
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages13
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/253/index.html b/CIVIC/investigations/253/index.html deleted file mode 100644 index 42023ec..0000000 --- a/CIVIC/investigations/253/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title130._CIVCAS_28_JAN_10_CLEAR.pdf
CountryAfghanistan
DateJan 2010
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages12
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/254/index.html b/CIVIC/investigations/254/index.html deleted file mode 100644 index 9483a71..0000000 --- a/CIVIC/investigations/254/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title131._CIVCAS_29_JAN_10_CLEAR.pdf
CountryAfghanistan
DateJan 2010
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages29
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/255/index.html b/CIVIC/investigations/255/index.html deleted file mode 100644 index e14fc1d..0000000 --- a/CIVIC/investigations/255/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title132._CIVCAS_29_SEP_10_CLEAR.pdf
CountryAfghanistan
DateSep 2010
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages24
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/256/index.html b/CIVIC/investigations/256/index.html deleted file mode 100644 index 1df193d..0000000 --- a/CIVIC/investigations/256/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title133._CIVCAS_31_MAR_10_CLEAR.pdf
CountryAfghanistan
DateMar 2010
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages5
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/257/index.html b/CIVIC/investigations/257/index.html deleted file mode 100644 index 9fdbb08..0000000 --- a/CIVIC/investigations/257/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title134._CIVCAS_02_AUG_11_CLEAR.pdf
CountryAfghanistan
DateAug 2011
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages19
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/258/index.html b/CIVIC/investigations/258/index.html deleted file mode 100644 index 9b37f2f..0000000 --- a/CIVIC/investigations/258/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title135._CIVCAS_02_JAN_11_CLEAR.pdf
CountryAfghanistan
DateJan 2011
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages35
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/259/index.html b/CIVIC/investigations/259/index.html deleted file mode 100644 index 67e6459..0000000 --- a/CIVIC/investigations/259/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title136._CIVCAS_03_NOV_11_CLEAR.pdf
CountryAfghanistan
DateNov 2011
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages24
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/26/index.html b/CIVIC/investigations/26/index.html deleted file mode 100644 index 5c2eb3b..0000000 --- a/CIVIC/investigations/26/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleInvestigation into Shooting Death of Iraqi Detainee, FOB Packhorse, Tikrit Iraq, Sept. 11, 2003
CountryIraq
DateSep 2003
Military BranchArmy
Type of investigationAR 15-6
SubjectIll-treatment of detainees
Specific locationTikrit
Pages111
Original SourceACLU Torture Database
Original URLshttps://www.thetorturedatabase.org/document/ar-15-6-investigation-investigation-shooting-death-obeed-hethere-radad-0149-03-cid469-60209?search_url=search/apachesolr_search/15-6&search_args=show=50
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/260/index.html b/CIVIC/investigations/260/index.html deleted file mode 100644 index f509e7c..0000000 --- a/CIVIC/investigations/260/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title137._CIVCAS_04_DEC_11_CLEAR.pdf
CountryAfghanistan
DateDec 2011
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages23
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/261/index.html b/CIVIC/investigations/261/index.html deleted file mode 100644 index ee01cfe..0000000 --- a/CIVIC/investigations/261/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title138._CIVCAS_07_FEB_11_CLEAR.pdf
CountryAfghanistan
DateFeb 2011
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages27
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/262/index.html b/CIVIC/investigations/262/index.html deleted file mode 100644 index e0d2a3f..0000000 --- a/CIVIC/investigations/262/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title139._CIVCAS_10_FEB_11_CLEAR.pdf
CountryAfghanistan
DateFeb 2011
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages27
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/263/index.html b/CIVIC/investigations/263/index.html deleted file mode 100644 index 44816a4..0000000 --- a/CIVIC/investigations/263/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title140._CIVCAS_12_DEC_11_CLEAR.pdf
CountryAfghanistan
DateDec 2011
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages25
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/264/index.html b/CIVIC/investigations/264/index.html deleted file mode 100644 index d8c59f7..0000000 --- a/CIVIC/investigations/264/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title141._CIVCAS_12_JUL_11_CLEAR.pdf
CountryAfghanistan
DateJul 2011
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages23
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/265/index.html b/CIVIC/investigations/265/index.html deleted file mode 100644 index 47f9a5a..0000000 --- a/CIVIC/investigations/265/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title142._CIVCAS_13_DEC_11_CLEAR.pdf
CountryAfghanistan
DateDec 2011
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages21
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/266/index.html b/CIVIC/investigations/266/index.html deleted file mode 100644 index d102c66..0000000 --- a/CIVIC/investigations/266/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title143._CIVCAS_13_OCT_11_CLEAR.pdf
CountryAfghanistan
DateOct 2011
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages18
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/267/index.html b/CIVIC/investigations/267/index.html deleted file mode 100644 index 3602ccd..0000000 --- a/CIVIC/investigations/267/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title144._CIVCAS_14_MAR_11_CLEAR.pdf
CountryAfghanistan
DateMar 2011
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages36
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/268/index.html b/CIVIC/investigations/268/index.html deleted file mode 100644 index 8ad0231..0000000 --- a/CIVIC/investigations/268/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title145._CIVCAS_14_OCT_11_CLEAR.pdf
CountryAfghanistan
DateOct 2011
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages21
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/269/index.html b/CIVIC/investigations/269/index.html deleted file mode 100644 index c230c4e..0000000 --- a/CIVIC/investigations/269/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title146._CIVCAS_15_MAY_11_CLEAR.pdf
CountryAfghanistan
DateMay 2011
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages27
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/27/index.html b/CIVIC/investigations/27/index.html deleted file mode 100644 index 79b8746..0000000 --- a/CIVIC/investigations/27/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleInvestigation into Allegations of Abuse of Detainee During Interrogation
CountryIraq
DateSep 2003
Military BranchArmy
Type of investigationAR 15-6
SubjectIll-treatment of detainees
Specific locationFOB Ironhorse, Tikrit
Pages54
Original SourceACLU Torture Database
Original URLshttps://www.thetorturedatabase.org/document/army-memo-re-ar-15-6-investigation-allegations-abuse-detainee-during-interrogation?search_url=search/apachesolr_search/15-6&search_args=page=1%26show=50
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/270/index.html b/CIVIC/investigations/270/index.html deleted file mode 100644 index 60081b6..0000000 --- a/CIVIC/investigations/270/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title147._CIVCAS_16_JAN_11_CLEAR.pdf
CountryAfghanistan
DateJan 2011
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages26
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/271/index.html b/CIVIC/investigations/271/index.html deleted file mode 100644 index 1b6c416..0000000 --- a/CIVIC/investigations/271/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title148._CIVCAS_18_FEB_11_CLEAR.pdf
CountryAfghanistan
DateFeb 2011
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages17
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/272/index.html b/CIVIC/investigations/272/index.html deleted file mode 100644 index 0f362a8..0000000 --- a/CIVIC/investigations/272/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title149._CIVCAS_18_MAY_11_CLEAR.pdf
CountryAfghanistan
DateMay 2011
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages18
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/273/index.html b/CIVIC/investigations/273/index.html deleted file mode 100644 index 62f2bd3..0000000 --- a/CIVIC/investigations/273/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title150._CUVCAS_19_APR_11_CLEAR.pdf
CountryAfghanistan
DateApr 2011
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages27
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/274/index.html b/CIVIC/investigations/274/index.html deleted file mode 100644 index beda139..0000000 --- a/CIVIC/investigations/274/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title151._CIVCAS_19_MAR_11_CLEAR.pdf
CountryAfghanistan
DateMar 2011
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages26
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/275/index.html b/CIVIC/investigations/275/index.html deleted file mode 100644 index 3e92b28..0000000 --- a/CIVIC/investigations/275/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title152._CIVCAS_20_FEB_11_CLEAR.pdf
CountryAfghanistan
DateFeb 2011
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages33
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/276/index.html b/CIVIC/investigations/276/index.html deleted file mode 100644 index 2db982c..0000000 --- a/CIVIC/investigations/276/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title153._CIVCAS_20_SEP_11_CLEAR.pdf
Countrynan
DateSep 2011
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages0
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/277/index.html b/CIVIC/investigations/277/index.html deleted file mode 100644 index 99c42bd..0000000 --- a/CIVIC/investigations/277/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title154._CIVCAS_21_JUL_11_CLEAR.pdf
CountryAfghanistan
DateJul 2011
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages24
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/278/index.html b/CIVIC/investigations/278/index.html deleted file mode 100644 index 6a70693..0000000 --- a/CIVIC/investigations/278/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title155._CIVCAS_23_AUG_11_CLEAR.pdf
CountryAfghanistan
DateAug 2011
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages23
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/279/index.html b/CIVIC/investigations/279/index.html deleted file mode 100644 index a4efe5c..0000000 --- a/CIVIC/investigations/279/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title156._CIVCAS_23_JUL_11_CLEAR.pdf
CountryAfghanistan
DateJul 2011
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages22
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/28/index.html b/CIVIC/investigations/28/index.html deleted file mode 100644 index 03778ab..0000000 --- a/CIVIC/investigations/28/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleInvestigation re: Findings of Detainee Abuse
CountryIraq
DateSep 2003
Military BranchArmy
Type of investigationAR 15-6
SubjectIll-treatment of detainees
Specific locationBaghdad
Pages137
Original SourceACLU Torture Database
Original URLshttps://www.thetorturedatabase.org/document/ar-15-6-investigation-re-findings-detainee-abuse?search_url=search/apachesolr_search/15-6&search_args=page=2%26show=50
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/280/index.html b/CIVIC/investigations/280/index.html deleted file mode 100644 index b27a63d..0000000 --- a/CIVIC/investigations/280/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title157._CIVCAS_26_AUG_11_CLEAR.pdf
CountryAfghanistan
DateAug 2011
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages32
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/281/index.html b/CIVIC/investigations/281/index.html deleted file mode 100644 index 822bd54..0000000 --- a/CIVIC/investigations/281/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title158._CIVCAS_26_DEC_11_CLEAR.pdf
CountryAfghanistan
DateDec 2011
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages26
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/282/index.html b/CIVIC/investigations/282/index.html deleted file mode 100644 index c8a2faa..0000000 --- a/CIVIC/investigations/282/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title159._CIVCAS_26_JUL_11_CLEAR.pdf
CountryAfghanistan
DateJul 2011
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages20
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/283/index.html b/CIVIC/investigations/283/index.html deleted file mode 100644 index a2d41d8..0000000 --- a/CIVIC/investigations/283/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title160._CIVCAS_27_AUG_11_CLEAR.pdf
CountryAfghanistan
DateAug 2011
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages21
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/284/index.html b/CIVIC/investigations/284/index.html deleted file mode 100644 index ecbae64..0000000 --- a/CIVIC/investigations/284/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title161._CIVCAS_27_MAR_11_CLEAR.pdf
CountryAfghanistan
DateMar 2011
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages17
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/285/index.html b/CIVIC/investigations/285/index.html deleted file mode 100644 index 83ad147..0000000 --- a/CIVIC/investigations/285/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title162._CIVCAS_30_APR_11_CLEAR.pdf
CountryAfghanistan
DateApr 2011
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages27
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/286/index.html b/CIVIC/investigations/286/index.html deleted file mode 100644 index 621d0af..0000000 --- a/CIVIC/investigations/286/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title163._CIVCAS_30_JUL_11_CLEAR.pdf
CountryAfghanistan
DateJul 2011
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages22
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/287/index.html b/CIVIC/investigations/287/index.html deleted file mode 100644 index ad333b6..0000000 --- a/CIVIC/investigations/287/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Title164._CIVCAS_31_JAN_11_CLEAR.pdf
CountryAfghanistan
DateJan 2011
Military Branchnan
Type of investigationnan
SubjectCivilian Casualty
Specific locationnan
Pages27
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/foia_rr.asp?Path=/5 USC 552(a)(2)(D)Records/CIVCAS Investigations&Folder=12-0005 CIVCAS Investigations sub-folder
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/288/index.html b/CIVIC/investigations/288/index.html deleted file mode 100644 index a4add04..0000000 --- a/CIVIC/investigations/288/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 11761-11781
Country Iraq
DateFeb 2005
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationKalsu
Pages21
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army11761_11781.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/289/index.html b/CIVIC/investigations/289/index.html deleted file mode 100644 index 6aaeff6..0000000 --- a/CIVIC/investigations/289/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 11782-11828
Country Iraq
DateOct 2005
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationKalsu
Pages47
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army11782_11828.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/29/index.html b/CIVIC/investigations/29/index.html deleted file mode 100644 index 731c0ca..0000000 --- a/CIVIC/investigations/29/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleInvestigation re: Suspected Assault on a Detainee by Soldiers
CountryIraq
DateNov 2003
Military BranchArmy
Type of investigationAR 15-6
SubjectIll-treatment of detainees
Specific locationHasaybah
Pages76
Original SourceACLU Torture Database
Original URLshttps://www.thetorturedatabase.org/document/ar-15-6-investigation-re-suspected-assault-detainee-soldiers?search_url=search/apachesolr_search/15-6&search_args=page=2%26show=50
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/290/index.html b/CIVIC/investigations/290/index.html deleted file mode 100644 index 9574e78..0000000 --- a/CIVIC/investigations/290/index.html +++ /dev/null @@ -1,78 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 11829-11835 Army 11836-11842 Army 11843-11844 Army 11845-11846
CountryIraq
DateApr 2005
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationnan
Pages18
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army11829_11835.pdf -http://www.aclu.org/natsec/foia/pdf/Army11836_11842.pdf -http://www.aclu.org/natsec/foia/pdf/Army11843_11844.pdf -http://www.aclu.org/natsec/foia/pdf/Army11845_11846.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/291/index.html b/CIVIC/investigations/291/index.html deleted file mode 100644 index d95fae4..0000000 --- a/CIVIC/investigations/291/index.html +++ /dev/null @@ -1,78 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 11847-11880 Army 11881-11891 Army 11892-11894 Army 11895-11897
CountryIraq
DateApr 2005
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationnan
Pages51
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army11847_11880.pdf -http://www.aclu.org/natsec/foia/pdf/Army11881_11891.pdf -http://www.aclu.org/natsec/foia/pdf/Army11892_11894.pdf -http://www.aclu.org/natsec/foia/pdf/Army11895_11897.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/292/index.html b/CIVIC/investigations/292/index.html deleted file mode 100644 index d053377..0000000 --- a/CIVIC/investigations/292/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 11898-11913
CountryIraq
DateFeb 2005
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationKalsu
Pages16
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army11898_11913.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/293/index.html b/CIVIC/investigations/293/index.html deleted file mode 100644 index 96ba62e..0000000 --- a/CIVIC/investigations/293/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 11914-11933
CountryIraq
DateMar 2005
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationKalsu
Pages20
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army11914_11933.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/294/index.html b/CIVIC/investigations/294/index.html deleted file mode 100644 index 700237d..0000000 --- a/CIVIC/investigations/294/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 11936-11937
CountryIraq
DateJan 2006
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationnan
Pages2
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army11936_11937.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/295/index.html b/CIVIC/investigations/295/index.html deleted file mode 100644 index d45c9cf..0000000 --- a/CIVIC/investigations/295/index.html +++ /dev/null @@ -1,77 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 11938-11954 Army 11955-11965 Army 11966-11976
CountryIraq
DateOct 2005
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationnan
Pages39
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army11938_11954.pdf -http://www.aclu.org/natsec/foia/pdf/Army11955_11965.pdf -http://www.aclu.org/natsec/foia/pdf/Army11966_11976.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/296/index.html b/CIVIC/investigations/296/index.html deleted file mode 100644 index 0bc860a..0000000 --- a/CIVIC/investigations/296/index.html +++ /dev/null @@ -1,77 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 11977-11996 Army 11997-12008 Army 12009-12010
CountryIraq
DateOct 2005
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationnan
Pages34
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army11977_11996.pdf -http://www.aclu.org/natsec/foia/pdf/Army11997_12008.pdf -http://www.aclu.org/natsec/foia/pdf/Army12009_12010.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/297/index.html b/CIVIC/investigations/297/index.html deleted file mode 100644 index 3134ce3..0000000 --- a/CIVIC/investigations/297/index.html +++ /dev/null @@ -1,78 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 12011-12026 Army 12027-12039 Army 12040-12049 Army 12050-12061
CountryIraq
DateOct 2005
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationnan
Pages51
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army12011_12026.pdf -http://www.aclu.org/natsec/foia/pdf/Army12027_12039.pdf -http://www.aclu.org/natsec/foia/pdf/Army12040_12049.pdf -http://www.aclu.org/natsec/foia/pdf/Army12050_12061.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/298/index.html b/CIVIC/investigations/298/index.html deleted file mode 100644 index 69f6220..0000000 --- a/CIVIC/investigations/298/index.html +++ /dev/null @@ -1,77 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 12062-12079 Army 12080-12098 Army 12099-12114
Country Iraq
DateSep 2005
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationWestern Baghdad
Pages53
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army12062_12079.pdf -http://www.aclu.org/natsec/foia/pdf/Army12080_12098.pdf -http://www.aclu.org/natsec/foia/pdf/Army12099_12114.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/299/index.html b/CIVIC/investigations/299/index.html deleted file mode 100644 index d9f9263..0000000 --- a/CIVIC/investigations/299/index.html +++ /dev/null @@ -1,83 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 12115-12128 Army 12129-12133 Army 12134-12139 Army 12140-12144 Army 12145-12159 Army 12160-12173 Army 12174-12184 Army 12185-12193 Army 12194-12197
CountryIraq
DateOct 2005
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationNorthern Baghdad
Pages83
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army12115_12128.pdf -http://www.aclu.org/natsec/foia/pdf/Army12129_12133.pdf -http://www.aclu.org/natsec/foia/pdf/Army12134_12139.pdf -http://www.aclu.org/natsec/foia/pdf/Army12140_12144.pdf -http://www.aclu.org/natsec/foia/pdf/Army12145_12159.pdf -http://www.aclu.org/natsec/foia/pdf/Army12160_12173.pdf -http://www.aclu.org/natsec/foia/pdf/Army12174_12184.pdf -http://www.aclu.org/natsec/foia/pdf/Army12185_12193.pdf -http://www.aclu.org/natsec/foia/pdf/Army12194_12197.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/3/index.html b/CIVIC/investigations/3/index.html deleted file mode 100644 index 5ed2eab..0000000 --- a/CIVIC/investigations/3/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleInvestigation of CJSOTF-AP and 5th SF Group Detention Operations
CountryIraq
DateJan 2002
Military BranchArmy
Type of investigationAR 15-6
SubjectIll-treatment of detainees
Specific locationMultiple Locations
Pages75
Original SourceACLU Torture Database
Original URLshttps://www.thetorturedatabase.org/document/formica-report-article-15-6-investigation-cjsotf-ap-and-5th-sf-group-detention-operation?pdf_page=5
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/30/index.html b/CIVIC/investigations/30/index.html deleted file mode 100644 index 22d1f15..0000000 --- a/CIVIC/investigations/30/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleCID Report: 0223-2004-CID259-80257
CountryIraq
DateNov 2003
Military BranchArmy
Type of investigationCID (criminal)
SubjectIll-treatment of detainees
Specific locationKarbala
Pages110
Original SourceACLU Torture Database
Original URLshttps://www.thetorturedatabase.org/document/cid-report-0223-2004-cid259-80257?search_url=search/apachesolr_search/15-6&search_args=page=5%26show=50
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/300/index.html b/CIVIC/investigations/300/index.html deleted file mode 100644 index 9bd4d7b..0000000 --- a/CIVIC/investigations/300/index.html +++ /dev/null @@ -1,78 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 12198-12214 Army 12215-12221 Army 12222-12229 Army 12230-12241
Country Iraq
DateOct 2005
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationBaghdad
Pages44
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army12198_12214.pdf -http://www.aclu.org/natsec/foia/pdf/Army12215_12221.pdf -http://www.aclu.org/natsec/foia/pdf/Army12222_12229.pdf -http://www.aclu.org/natsec/foia/pdf/Army12230_12241.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/301/index.html b/CIVIC/investigations/301/index.html deleted file mode 100644 index 7b76a7a..0000000 --- a/CIVIC/investigations/301/index.html +++ /dev/null @@ -1,76 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 12242-12249 Army 12250-12257
Country Iraq
DateMar 2006
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationWestern Baghdad
Pages16
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army12242_12249.pdf -http://www.aclu.org/natsec/foia/pdf/Army12250_12257.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/302/index.html b/CIVIC/investigations/302/index.html deleted file mode 100644 index 4fa9071..0000000 --- a/CIVIC/investigations/302/index.html +++ /dev/null @@ -1,76 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 12258-12266 Army 12267-12276
CountryIraq
DateMay 2006
Military BranchMarines
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationnan
Pages19
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army12258_12266.pdf -http://www.aclu.org/natsec/foia/pdf/Army12267_12276.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/303/index.html b/CIVIC/investigations/303/index.html deleted file mode 100644 index d81e1e3..0000000 --- a/CIVIC/investigations/303/index.html +++ /dev/null @@ -1,78 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 12279-12305 Army 12306-12333 Army 12334-12358 Army 12359-12371
Country Iraq
DateJan 2006
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationRahem Awa, Kirkuk
Pages93
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army12279_12305.pdf -http://www.aclu.org/natsec/foia/pdf/Army12306_12333.pdf -http://www.aclu.org/natsec/foia/pdf/Army12334_12358.pdf -http://www.aclu.org/natsec/foia/pdf/Army12359_12371.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/304/index.html b/CIVIC/investigations/304/index.html deleted file mode 100644 index eed1500..0000000 --- a/CIVIC/investigations/304/index.html +++ /dev/null @@ -1,78 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 12372-12382 Army 12383-12397 Army 12398-12410 Army 12411-12422
Country Iraq
DateMar 2006
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationFOB Loyalty
Pages51
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army12372_12382.pdf -http://www.aclu.org/natsec/foia/pdf/Army12383_12397.pdf -http://www.aclu.org/natsec/foia/pdf/Army12398_12410.pdf -http://www.aclu.org/natsec/foia/pdf/Army12411_12422.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/305/index.html b/CIVIC/investigations/305/index.html deleted file mode 100644 index 2450f78..0000000 --- a/CIVIC/investigations/305/index.html +++ /dev/null @@ -1,76 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 12423-12447 Army 12448-12470
CountryIraq
DateDec 2005
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific location"Uday's Farm
Pages48
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army12423_12447.pdf -http://www.aclu.org/natsec/foia/pdf/Army12448_12470.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/306/index.html b/CIVIC/investigations/306/index.html deleted file mode 100644 index e0134a8..0000000 --- a/CIVIC/investigations/306/index.html +++ /dev/null @@ -1,79 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 12471-12500 Army 12501-12518 Army 12519-12526 Army 12527-12542 Army 12543-12592
Country Iraq
DateJan 2006
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationFOB Rustamiyah, Baghdad
Pages122
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army12471_12500.pdf -http://www.aclu.org/natsec/foia/pdf/Army12501_12518.pdf -http://www.aclu.org/natsec/foia/pdf/Army12519_12526.pdf -http://www.aclu.org/natsec/foia/pdf/Army12527_12542.pdf -http://www.aclu.org/natsec/foia/pdf/Army12543_12592.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/307/index.html b/CIVIC/investigations/307/index.html deleted file mode 100644 index 4770314..0000000 --- a/CIVIC/investigations/307/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 12593-12642
CountryIraq
DateFeb 2006
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationnan
Pages50
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army12593_12642.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/308/index.html b/CIVIC/investigations/308/index.html deleted file mode 100644 index 7719801..0000000 --- a/CIVIC/investigations/308/index.html +++ /dev/null @@ -1,76 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 12643-12669 Army 12670-12697
Country Iraq
DateApr 2006
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationFOB Striker
Pages55
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army12643_12669.pdf -http://www.aclu.org/natsec/foia/pdf/Army12670_12697.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/309/index.html b/CIVIC/investigations/309/index.html deleted file mode 100644 index d5c5f30..0000000 --- a/CIVIC/investigations/309/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 12698-12734
Country Iraq
DateOct 2005
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationKirkuk
Pages37
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army12698_12734.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/31/index.html b/CIVIC/investigations/31/index.html deleted file mode 100644 index 1038dc8..0000000 --- a/CIVIC/investigations/31/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleInvestigation into the Death of Abu Malik Kenami
Country Iraq
DateDec 2003
Military BranchArmy
Type of investigationAR 15-6
SubjectIll-treatment of detainees
Specific locationAbu Ghraib Prison
Pages56
Original SourceACLU Torture Database
Original URLshttps://www.thetorturedatabase.org/document/army-memo-re-ar-15-6-investigation-death-abu-malik-kenami?search_url=search/apachesolr_search/15-6&search_args=page=2%26show=50
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/310/index.html b/CIVIC/investigations/310/index.html deleted file mode 100644 index 066bd3a..0000000 --- a/CIVIC/investigations/310/index.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 12735-12744 Army 12745-12755 Army 12756-12765 Army 12766-12776 Army 12776-12792 Army 12793-12805
Country Iraq
DateFeb 2006
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationBaghdad
Pages71
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army12735_12744.pdf -http://www.aclu.org/natsec/foia/pdf/Army12745_12755.pdf -http://www.aclu.org/natsec/foia/pdf/Army12756_12765.pdf -http://www.aclu.org/natsec/foia/pdf/Army12766_12776.pdf -http://www.aclu.org/natsec/foia/pdf/Army12776_12792.pdf -http://www.aclu.org/natsec/foia/pdf/Army12793_12805.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/311/index.html b/CIVIC/investigations/311/index.html deleted file mode 100644 index 7baf998..0000000 --- a/CIVIC/investigations/311/index.html +++ /dev/null @@ -1,76 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 12806-12827 Army 12828-12848
CountryIraq
DateJul 2006
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationnan
Pages43
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army12806_12827.pdf -http://www.aclu.org/natsec/foia/pdf/Army12828_12848.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/312/index.html b/CIVIC/investigations/312/index.html deleted file mode 100644 index 9e781e9..0000000 --- a/CIVIC/investigations/312/index.html +++ /dev/null @@ -1,78 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 12849-12866 Army 12867-12881 Army 12882-12895 Army 12896-12901
CountryIraq
DateJan 2006
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationnan
Pages53
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army12849_12866.pdf -http://www.aclu.org/natsec/foia/pdf/Army12867_12881.pdf -http://www.aclu.org/natsec/foia/pdf/Army12882_12895.pdf -http://www.aclu.org/natsec/foia/pdf/Army12896_12901.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/313/index.html b/CIVIC/investigations/313/index.html deleted file mode 100644 index 754ccd7..0000000 --- a/CIVIC/investigations/313/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 12902-12922
Country Iraq
DateMar 2006
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationMosul
Pages21
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army12902_12922.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/314/index.html b/CIVIC/investigations/314/index.html deleted file mode 100644 index 1f5bede..0000000 --- a/CIVIC/investigations/314/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 12923-12943
CountryIraq
DateJan 2006
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationnan
Pages21
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army12923_12943.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/315/index.html b/CIVIC/investigations/315/index.html deleted file mode 100644 index 10bc937..0000000 --- a/CIVIC/investigations/315/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 12944-12978
Country Iraq
DateMar 2006
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationSamarra
Pages35
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army12944_12978.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/316/index.html b/CIVIC/investigations/316/index.html deleted file mode 100644 index eee10c6..0000000 --- a/CIVIC/investigations/316/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 12979-13003
Country Iraq
DateApr 2006
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationMosul
Pages25
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army12979_13003.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/317/index.html b/CIVIC/investigations/317/index.html deleted file mode 100644 index dd9d4a4..0000000 --- a/CIVIC/investigations/317/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 13004-13024
Country Iraq
DateJul 2006
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationBayji
Pages21
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army13004_13024.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/318/index.html b/CIVIC/investigations/318/index.html deleted file mode 100644 index ed2f574..0000000 --- a/CIVIC/investigations/318/index.html +++ /dev/null @@ -1,81 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 13025-13034 Army 13035-13037 Army 13038-13043 Army 13044-13048 Army 13049-13075 Army 13076-13102 Army 13103-13126
Country Iraq
DateMay 2006
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationSamarra
Pages102
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army13025_13034.pdf -http://www.aclu.org/natsec/foia/pdf/Army13035_13037.pdf -http://www.aclu.org/natsec/foia/pdf/Army13038_13043.pdf -http://www.aclu.org/natsec/foia/pdf/Army13044_13048.pdf -http://www.aclu.org/natsec/foia/pdf/Army13049_13075.pdf -http://www.aclu.org/natsec/foia/pdf/Army13076_13102.pdf -http://www.aclu.org/natsec/foia/pdf/Army13103_13126.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/319/index.html b/CIVIC/investigations/319/index.html deleted file mode 100644 index fb8ee63..0000000 --- a/CIVIC/investigations/319/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 13127-13140
Country Iraq
DateApr 2006
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationNear Samarra
Pages14
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army13127_13140.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/32/index.html b/CIVIC/investigations/32/index.html deleted file mode 100644 index f8db91b..0000000 --- a/CIVIC/investigations/32/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleCID Report: 0384-04-CID023-67275
CountryIraq
DateDec 2003
Military BranchArmy
Type of investigationCID (criminal)
SubjectIll-treatment of detainees
Specific location(precise location unclear)
Pages46
Original SourceACLU Torture Database
Original URLshttps://www.thetorturedatabase.org/document/cid-report-0384-04-cid023-67275?search_url=search/apachesolr_search/15-6&search_args=page=7%26show=50
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/320/index.html b/CIVIC/investigations/320/index.html deleted file mode 100644 index 0249ec4..0000000 --- a/CIVIC/investigations/320/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 13141-13170
CountryIraq
DateMay 2006
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationnan
Pages30
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army13141_13170.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/321/index.html b/CIVIC/investigations/321/index.html deleted file mode 100644 index 55273b0..0000000 --- a/CIVIC/investigations/321/index.html +++ /dev/null @@ -1,76 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 13171-13200 Army 13201-13231
Country Iraq
DateApr 2006
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationMahmudiyah
Pages61
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army13171_13200.pdf -http://www.aclu.org/natsec/foia/pdf/Army13201_13231.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/322/index.html b/CIVIC/investigations/322/index.html deleted file mode 100644 index 2d04dd4..0000000 --- a/CIVIC/investigations/322/index.html +++ /dev/null @@ -1,76 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 13231-13250 Army 13251-13269
Country Iraq
DateMar 2005
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationAl Abarra province
Pages39
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army13231_13250.pdf -http://www.aclu.org/natsec/foia/pdf/Army13251_13269.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/323/index.html b/CIVIC/investigations/323/index.html deleted file mode 100644 index bc82f52..0000000 --- a/CIVIC/investigations/323/index.html +++ /dev/null @@ -1,76 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 13270-13289 Army 13290-13302
Country Iraq
DateJun 2005
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationTaji
Pages33
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army13270_13289.pdf -http://www.aclu.org/natsec/foia/pdf/Army13290_13302.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/324/index.html b/CIVIC/investigations/324/index.html deleted file mode 100644 index 0f1d546..0000000 --- a/CIVIC/investigations/324/index.html +++ /dev/null @@ -1,76 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 13303-13346 Army 13347-13387
Country Iraq
DateMay 2005
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationAl Muthanna
Pages85
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army13303_13346.pdf -http://www.aclu.org/natsec/foia/pdf/Army13347_13387.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/325/index.html b/CIVIC/investigations/325/index.html deleted file mode 100644 index 56341d7..0000000 --- a/CIVIC/investigations/325/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 13388-13440
Country Iraq
DateNov 2005
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationSaba Al Boor
Pages53
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army13388_13440.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/326/index.html b/CIVIC/investigations/326/index.html deleted file mode 100644 index 6bea953..0000000 --- a/CIVIC/investigations/326/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 13441-13466
Country Iraq
DateOct 2005
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationTaji
Pages26
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army13441_13466.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/327/index.html b/CIVIC/investigations/327/index.html deleted file mode 100644 index 733b258..0000000 --- a/CIVIC/investigations/327/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 13467-13483
CountryIraq
DateNov 2005
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationnan
Pages17
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army13467_13483.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/328/index.html b/CIVIC/investigations/328/index.html deleted file mode 100644 index f22b775..0000000 --- a/CIVIC/investigations/328/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 13484-13527
CountryIraq
DateNov 2005
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationnan
Pages44
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army13484_13527.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/329/index.html b/CIVIC/investigations/329/index.html deleted file mode 100644 index 74b9bec..0000000 --- a/CIVIC/investigations/329/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 13528-13551
Country Iraq
DateNov 2005
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationTaji
Pages25
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army13528_13551.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/33/index.html b/CIVIC/investigations/33/index.html deleted file mode 100644 index f3e3a28..0000000 --- a/CIVIC/investigations/33/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleCID Report: 0006-04-CID259-80132
CountryIraq
DateDec 2003
Military BranchArmy
Type of investigationCID (criminal)
SubjectIll-treatment of detainees
Specific location(precise location unclear)
Pages44
Original SourceACLU Torture Database
Original URLshttps://www.thetorturedatabase.org/document/cid-report-0006-04-cid259-80132?search_url=search/apachesolr_search/15-6&search_args=page=6%26show=50
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/330/index.html b/CIVIC/investigations/330/index.html deleted file mode 100644 index 9f6ef40..0000000 --- a/CIVIC/investigations/330/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 13552-13599
Country Iraq
DateOct 2005
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationFarah Shia
Pages48
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army13552_13599.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/331/index.html b/CIVIC/investigations/331/index.html deleted file mode 100644 index 0f53c4d..0000000 --- a/CIVIC/investigations/331/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 13600-13634
CountryIraq
DateJan 2006
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationnan
Pages35
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army13600_13634.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/332/index.html b/CIVIC/investigations/332/index.html deleted file mode 100644 index 507caa0..0000000 --- a/CIVIC/investigations/332/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 13635-13654
CountryIraq
DateSep 2005
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationnan
Pages20
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army13635_13654.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/333/index.html b/CIVIC/investigations/333/index.html deleted file mode 100644 index 9c0ff2e..0000000 --- a/CIVIC/investigations/333/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 13655-13685
CountryIraq
DateSep 2005
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationnan
Pages31
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army13655_13685.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/334/index.html b/CIVIC/investigations/334/index.html deleted file mode 100644 index b98b8d4..0000000 --- a/CIVIC/investigations/334/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 13686-13690
Country Iraq
DateMay 2005
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationAl Abarra Nahiya
Pages5
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army13686_13690.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/335/index.html b/CIVIC/investigations/335/index.html deleted file mode 100644 index 78cd9c8..0000000 --- a/CIVIC/investigations/335/index.html +++ /dev/null @@ -1,76 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 13691-13715 Army 13716-13724
Country Iraq
DateApr 2005
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationBaghdad
Pages34
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army13691_13715.pdf -http://www.aclu.org/natsec/foia/pdf/Army13716_13724.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/336/index.html b/CIVIC/investigations/336/index.html deleted file mode 100644 index 42492f2..0000000 --- a/CIVIC/investigations/336/index.html +++ /dev/null @@ -1,76 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 13725-13754 Army 13755-13764
Country Iraq
DateApr 2005
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationBaghdad
Pages40
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army13725_13754.pdf -http://www.aclu.org/natsec/foia/pdf/Army13755_13764.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/337/index.html b/CIVIC/investigations/337/index.html deleted file mode 100644 index 62431fb..0000000 --- a/CIVIC/investigations/337/index.html +++ /dev/null @@ -1,76 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 13765-13777 Army 13778-13804
Country Iraq
DateApr 2005
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationBaghdad
Pages40
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army13765_13777.pdf -http://www.aclu.org/natsec/foia/pdf/Army13778_13804.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/338/index.html b/CIVIC/investigations/338/index.html deleted file mode 100644 index a5094ab..0000000 --- a/CIVIC/investigations/338/index.html +++ /dev/null @@ -1,76 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 13805-13816 Army 13817-13823
Country Iraq
DateJun 2005
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationGaziliya
Pages19
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army13805_13816.pdf -http://www.aclu.org/natsec/foia/pdf/Army13817_13823.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/339/index.html b/CIVIC/investigations/339/index.html deleted file mode 100644 index 05596d6..0000000 --- a/CIVIC/investigations/339/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 13824-13867
Country Iraq
DateMay 2005
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationYusifiyah
Pages44
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army13824_13867.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/34/index.html b/CIVIC/investigations/34/index.html deleted file mode 100644 index fdec31f..0000000 --- a/CIVIC/investigations/34/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleInvestigation re: Abuse of Detainees at Camp Dragoon
Country Iraq
DateJan 2003
Military BranchArmy
Type of investigationAR 15-6
SubjectIll-treatment of detainees
Specific locationCamp Dragoon
Pages35
Original SourceACLU Torture Database
Original URLshttps://www.thetorturedatabase.org/document/ar-15-6-investigation-re-abuse-detainees-camp-dragoon?search_url=search/apachesolr_search/15-6&search_args=page=2%26show=50
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/340/index.html b/CIVIC/investigations/340/index.html deleted file mode 100644 index f0ef5f8..0000000 --- a/CIVIC/investigations/340/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 13868-13894
CountryIraq
DateMay 2005
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationnan
Pages27
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army13868_13894.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/341/index.html b/CIVIC/investigations/341/index.html deleted file mode 100644 index fc3f9e8..0000000 --- a/CIVIC/investigations/341/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 13895-13939
CountryIraq
DateAug 2005
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationnan
Pages45
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army13895_13939.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/342/index.html b/CIVIC/investigations/342/index.html deleted file mode 100644 index 7c47728..0000000 --- a/CIVIC/investigations/342/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 13940-13941
CountryIraq
DateApr 2005
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationnan
Pages2
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army13940_13941.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/343/index.html b/CIVIC/investigations/343/index.html deleted file mode 100644 index d5dc9b0..0000000 --- a/CIVIC/investigations/343/index.html +++ /dev/null @@ -1,76 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 13942-13986 Army 13987-13993
Country Iraq
DateMar 2005
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationYusifiyah
Pages52
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army13942_13986.pdf -http://www.aclu.org/natsec/foia/pdf/Army13987_13993.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/344/index.html b/CIVIC/investigations/344/index.html deleted file mode 100644 index 1a213f6..0000000 --- a/CIVIC/investigations/344/index.html +++ /dev/null @@ -1,76 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 13994-14001 Army 14002-14009
Country Iraq
DateMar 2005
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationJafr As Sukr bridge
Pages16
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army13994_14001.pdf -http://www.aclu.org/natsec/foia/pdf/Army14002_14009.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/345/index.html b/CIVIC/investigations/345/index.html deleted file mode 100644 index 8632f9e..0000000 --- a/CIVIC/investigations/345/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 14010-14038
Country Iraq
DateMay 2005
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationYusifiyah
Pages29
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army14010_14038.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/346/index.html b/CIVIC/investigations/346/index.html deleted file mode 100644 index fc4278b..0000000 --- a/CIVIC/investigations/346/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 14039-14064
Country Iraq
DateAug 2005
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationSaba Al Boor
Pages26
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army14039_14064.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/347/index.html b/CIVIC/investigations/347/index.html deleted file mode 100644 index e5dc754..0000000 --- a/CIVIC/investigations/347/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 14065-14070
Country Iraq
DateNov 2005
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationBaqubah
Pages6
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army14065_14070.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/348/index.html b/CIVIC/investigations/348/index.html deleted file mode 100644 index 8f7e959..0000000 --- a/CIVIC/investigations/348/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 14071-14072
Country Iraq
DateNov 2005
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationBaqubah
Pages2
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army14071_14072.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/349/index.html b/CIVIC/investigations/349/index.html deleted file mode 100644 index 4324e8b..0000000 --- a/CIVIC/investigations/349/index.html +++ /dev/null @@ -1,76 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 14074-14085 Army 14086-14096
Country Iraq
DateJan 2006
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationHurriya neighborhood, Baghdad
Pages23
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army14074_14085.pdf -http://www.aclu.org/natsec/foia/pdf/Army14086_14096.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/35/index.html b/CIVIC/investigations/35/index.html deleted file mode 100644 index fc073ea..0000000 --- a/CIVIC/investigations/35/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleInvestigation of Alleged War Crimes in Iraq in 1st-41st Infantry’s Deployment to Operation Iraqi Freedom (OIF)
CountryIraq
DateJan 2003
Military BranchArmy
Type of investigationAR 15-6
SubjectIll-treatment of detainees
Specific locationMultiple Locations
Pages11
Original SourceACLU Torture Database
Original URLshttps://www.thetorturedatabase.org/document/ar-15-6-investigation-re-alleged-detainee-abuse?search_url=search/apachesolr_search/15-6&search_args=page=1%26show=50
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/350/index.html b/CIVIC/investigations/350/index.html deleted file mode 100644 index d8008b5..0000000 --- a/CIVIC/investigations/350/index.html +++ /dev/null @@ -1,76 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 14097-14123 Army 14124-14149
Country Iraq
DateMar 2006
Military BranchMarines
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationAbu Ghraib vicinity, Baghdad
Pages53
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army14097_14123.pdf -http://www.aclu.org/natsec/foia/pdf/Army14124_14149.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/351/index.html b/CIVIC/investigations/351/index.html deleted file mode 100644 index f0bc7a7..0000000 --- a/CIVIC/investigations/351/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 14150-14167
Country Iraq
DateMar 2006
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationWestern Baghdad
Pages18
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army14150_14167.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/352/index.html b/CIVIC/investigations/352/index.html deleted file mode 100644 index 34eb3b5..0000000 --- a/CIVIC/investigations/352/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 14168-14206
Country Iraq
DateMar 2006
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationShula
Pages39
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army14168_14206.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/353/index.html b/CIVIC/investigations/353/index.html deleted file mode 100644 index eeb5a80..0000000 --- a/CIVIC/investigations/353/index.html +++ /dev/null @@ -1,76 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 14207-14235 Army 14236-14271
Country Iraq
DateMay 2006
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationNorth of Baghdad
Pages65
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army14207_14235.pdf -http://www.aclu.org/natsec/foia/pdf/Army14236_14271.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/354/index.html b/CIVIC/investigations/354/index.html deleted file mode 100644 index 1ae4f44..0000000 --- a/CIVIC/investigations/354/index.html +++ /dev/null @@ -1,76 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 14272-14288 Army 14289-14299
Country Iraq
DateApr 2006
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationMahmudiya, south of Baghdad
Pages28
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army14272_14288.pdf -http://www.aclu.org/natsec/foia/pdf/Army14289_14299.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/355/index.html b/CIVIC/investigations/355/index.html deleted file mode 100644 index f33bd19..0000000 --- a/CIVIC/investigations/355/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 14300-14326
CountryIraq
DateMay 2006
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationnan
Pages27
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army14300_14326.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/356/index.html b/CIVIC/investigations/356/index.html deleted file mode 100644 index 3b56963..0000000 --- a/CIVIC/investigations/356/index.html +++ /dev/null @@ -1,77 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 14327-14338 Army 14339-14343 Army 14344-14381
Country Iraq
DateJan 2006
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationLutifiyah
Pages55
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army14327_14338.pdf -http://www.aclu.org/natsec/foia/pdf/Army14339_14343.pdf -http://www.aclu.org/natsec/foia/pdf/Army14344_14381.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/357/index.html b/CIVIC/investigations/357/index.html deleted file mode 100644 index a9fd5e1..0000000 --- a/CIVIC/investigations/357/index.html +++ /dev/null @@ -1,76 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 14382-14406 Army 14407-14431
CountryIraq
DateApr 2006
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationnan
Pages50
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army14382_14406.pdf -http://www.aclu.org/natsec/foia/pdf/Army14407_14431.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/358/index.html b/CIVIC/investigations/358/index.html deleted file mode 100644 index 64f86cd..0000000 --- a/CIVIC/investigations/358/index.html +++ /dev/null @@ -1,76 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 14432-14455 Army 14456-14483
Country Iraq
DateApr 2006
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationYusufiyah area (southwest of Baghdad)
Pages52
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army14432_14455.pdf -http://www.aclu.org/natsec/foia/pdf/Army14456_14483.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/359/index.html b/CIVIC/investigations/359/index.html deleted file mode 100644 index 10a9f15..0000000 --- a/CIVIC/investigations/359/index.html +++ /dev/null @@ -1,76 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 14484-14518 Army 14519-14543
CountryIraq
DateFeb 2006
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationnan
Pages60
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army14484_14518.pdf -http://www.aclu.org/natsec/foia/pdf/Army14519_14543.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/36/index.html b/CIVIC/investigations/36/index.html deleted file mode 100644 index 962877d..0000000 --- a/CIVIC/investigations/36/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleInvestigation into FBI Allegations of Detainee Abuse at Guantanamo Bay Detention Facility
CountryCuba
DateJan 2003
Military BranchArmy
Type of investigationAR 15-6
SubjectIll-treatment of detainees
Specific locationGuantanamo Bay
Pages29
Original SourceACLU Torture Database
Original URLshttps://www.thetorturedatabase.org/files/foia_subsite/pdfs/schmidt_furlow_report.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/360/index.html b/CIVIC/investigations/360/index.html deleted file mode 100644 index a64bd83..0000000 --- a/CIVIC/investigations/360/index.html +++ /dev/null @@ -1,76 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 14544-14563 Army 14564-14571
CountryIraq
DateFeb 2006
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationnan
Pages28
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army14544_14563.pdf -http://www.aclu.org/natsec/foia/pdf/Army14564_14571.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/361/index.html b/CIVIC/investigations/361/index.html deleted file mode 100644 index 2e2cda0..0000000 --- a/CIVIC/investigations/361/index.html +++ /dev/null @@ -1,78 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 14572-14591 Army 14592-14594 Army 14595-14598 Army 14599-14626
Country Iraq
DateMar 2006
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationJurf as Sakhr
Pages55
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army14572_14591.pdf -http://www.aclu.org/natsec/foia/pdf/Army14592_14594.pdf -http://www.aclu.org/natsec/foia/pdf/Army14595_14598.pdf -http://www.aclu.org/natsec/foia/pdf/Army14599_14626.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/362/index.html b/CIVIC/investigations/362/index.html deleted file mode 100644 index b11d05f..0000000 --- a/CIVIC/investigations/362/index.html +++ /dev/null @@ -1,77 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 14627-14651 Army 14652-14685 Army 14686-14693
Country Iraq
DateFeb 2006
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationBaladiat neighborhood, Baghdad
Pages67
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army14627_14651.pdf -http://www.aclu.org/natsec/foia/pdf/Army14652_14685.pdf -http://www.aclu.org/natsec/foia/pdf/Army14686_14693.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/363/index.html b/CIVIC/investigations/363/index.html deleted file mode 100644 index 77c005c..0000000 --- a/CIVIC/investigations/363/index.html +++ /dev/null @@ -1,76 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 14694-14725 Army 14726-14745
Country Iraq
DateMar 2006
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationBaghdad
Pages52
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army14694_14725.pdf -http://www.aclu.org/natsec/foia/pdf/Army14726_14745.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/364/index.html b/CIVIC/investigations/364/index.html deleted file mode 100644 index 9a8ea9d..0000000 --- a/CIVIC/investigations/364/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 14746-14765
CountryIraq
DateApr 2006
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationnan
Pages20
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army14746_14765.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/365/index.html b/CIVIC/investigations/365/index.html deleted file mode 100644 index 2b26bb1..0000000 --- a/CIVIC/investigations/365/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 14766-14822
CountryIraq
DateMay 2006
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationDora Market area, Baghdad
Pages57
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army14766_14822.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/366/index.html b/CIVIC/investigations/366/index.html deleted file mode 100644 index 57f1644..0000000 --- a/CIVIC/investigations/366/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 14823-14839
CountryIraq
DateJun 2006
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationnan
Pages17
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army14823_14839.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/367/index.html b/CIVIC/investigations/367/index.html deleted file mode 100644 index d0304ec..0000000 --- a/CIVIC/investigations/367/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 14840-14899
CountryIraq
DateJan 2006
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationnan
Pages60
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army14840_14899.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/368/index.html b/CIVIC/investigations/368/index.html deleted file mode 100644 index eb44671..0000000 --- a/CIVIC/investigations/368/index.html +++ /dev/null @@ -1,79 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 14900-14915 Army 14916-14935 Army 14936-14958 Army 14959-14960 Army 14961-14962
CountryIraq
DateMar 2006
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationnan
Pages63
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army14900_14915.pdf -http://www.aclu.org/natsec/foia/pdf/Army14916_14935.pdf -http://www.aclu.org/natsec/foia/pdf/Army14936_14958.pdf -http://www.aclu.org/natsec/foia/pdf/Army14959_14960.pdf -http://www.aclu.org/natsec/foia/pdf/Army14961_14962.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/369/index.html b/CIVIC/investigations/369/index.html deleted file mode 100644 index fc846f1..0000000 --- a/CIVIC/investigations/369/index.html +++ /dev/null @@ -1,76 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 14963-14999 Army 15000-15029
CountryIraq
DateFeb 2006
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationnan
Pages67
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army14963_14999.pdf -http://www.aclu.org/natsec/foia/pdf/Army15000_15029.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/37/index.html b/CIVIC/investigations/37/index.html deleted file mode 100644 index b082c14..0000000 --- a/CIVIC/investigations/37/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleInvestigation of the 800th Military Police Brigade
Country Iraq
DateAug 2003
Military BranchArmy
Type of investigationAR 15-6
SubjectIll-treatment of detainees; detention conditions
Specific locationAbu Ghraib, Baghdad Province; Camp Bucca Um Qasr
Pages53
Original SourceACLU Torture Database
Original URLsnan
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/370/index.html b/CIVIC/investigations/370/index.html deleted file mode 100644 index ced6704..0000000 --- a/CIVIC/investigations/370/index.html +++ /dev/null @@ -1,76 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 15030-15064 Army 15065-15097
CountryIraq
DateFeb 2006
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationBaghdad area
Pages68
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army15030_15064.pdf -http://www.aclu.org/natsec/foia/pdf/Army15065_15097.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/371/index.html b/CIVIC/investigations/371/index.html deleted file mode 100644 index 6a8250c..0000000 --- a/CIVIC/investigations/371/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 15098-15121
CountryIraq
DateJan 2006
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationnan
Pages24
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army15098_15121.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/372/index.html b/CIVIC/investigations/372/index.html deleted file mode 100644 index 9386228..0000000 --- a/CIVIC/investigations/372/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 15122-15131
CountryIraq
DateJun 2006
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationnan
Pages10
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army15122_15131.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/373/index.html b/CIVIC/investigations/373/index.html deleted file mode 100644 index e664f64..0000000 --- a/CIVIC/investigations/373/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 15132-15152
CountryIraq
DateMay 2006
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationnan
Pages21
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army15132_15152.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/374/index.html b/CIVIC/investigations/374/index.html deleted file mode 100644 index cc31b1f..0000000 --- a/CIVIC/investigations/374/index.html +++ /dev/null @@ -1,77 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 15153-15172 Army 15173-15194 Army 15195-15227
Country Iraq
DateJun 2006
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationIskandariyah
Pages75
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army15153_15172.pdf -http://www.aclu.org/natsec/foia/pdf/Army15173_15194.pdf -http://www.aclu.org/natsec/foia/pdf/Army15195_15227.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/375/index.html b/CIVIC/investigations/375/index.html deleted file mode 100644 index b5ba8b0..0000000 --- a/CIVIC/investigations/375/index.html +++ /dev/null @@ -1,76 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 15228-15252 Army 15253-15270
Country Iraq
DateMar 2006
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationNorthern Obeidi region
Pages43
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army15228_15252.pdf -http://www.aclu.org/natsec/foia/pdf/Army15253_15270.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/376/index.html b/CIVIC/investigations/376/index.html deleted file mode 100644 index ecf8022..0000000 --- a/CIVIC/investigations/376/index.html +++ /dev/null @@ -1,82 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 15271-15283 Army 15284-15298 Army 15299-15312 Army 15313-15318 Army 15319-15325 Army 15326-15328 Army 15329-15332 Army 15333-15348
Country Iraq
DateJan 2006
Military BranchArmy/Navy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationSouthern Baghdad
Pages78
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army15271_15283.pdf -http://www.aclu.org/natsec/foia/pdf/Army15284_15298.pdf -http://www.aclu.org/natsec/foia/pdf/Army15299_15312.pdf -http://www.aclu.org/natsec/foia/pdf/Army15313_15318.pdf -http://www.aclu.org/natsec/foia/pdf/Army15319_15325.pdf -http://www.aclu.org/natsec/foia/pdf/Army15326_15328.pdf -http://www.aclu.org/natsec/foia/pdf/Army15329_15332.pdf -http://www.aclu.org/natsec/foia/pdf/Army15333_15348.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/377/index.html b/CIVIC/investigations/377/index.html deleted file mode 100644 index 84f8714..0000000 --- a/CIVIC/investigations/377/index.html +++ /dev/null @@ -1,77 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 15349-15366 Army 15367-15385 Army 15386-15402
CountryIraq
DateJan 2006
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationnan
Pages54
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army15349_15366.pdf -http://www.aclu.org/natsec/foia/pdf/Army15367_15385.pdf -http://www.aclu.org/natsec/foia/pdf/Army15386_15402.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/378/index.html b/CIVIC/investigations/378/index.html deleted file mode 100644 index f381daf..0000000 --- a/CIVIC/investigations/378/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 15418-15422
Country Iraq
DateFeb 2005
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationOutside Baghdad
Pages5
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army15418_15422.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/379/index.html b/CIVIC/investigations/379/index.html deleted file mode 100644 index 999bf1f..0000000 --- a/CIVIC/investigations/379/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 15423-15439
CountryIraq
DateFeb 2005
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationnan
Pages17
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army15423_15439.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/38/index.html b/CIVIC/investigations/38/index.html deleted file mode 100644 index 3315abf..0000000 --- a/CIVIC/investigations/38/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleInvestigation of the Abu Ghraib Detention Facility and 205th Military Intelligence Brigade (U)
Country Iraq
DateAug 2003
Military BranchArmy
Type of investigationAR 15-6
SubjectIll-treatment of detainees; detention conditions
Specific locationAbu Ghraib, Baghdad Province
Pages177
Original SourceACLU Torture Database
Original URLshttps://www.thetorturedatabase.org/document/fay-report-investigation-205th-military-intelligence-brigades-activites-abu-ghraib?search_url=search/apachesolr_search/15-6&search_args=page=3%26show=50
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/380/index.html b/CIVIC/investigations/380/index.html deleted file mode 100644 index 5fd9bf2..0000000 --- a/CIVIC/investigations/380/index.html +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 15440-15460 Army 15461-15487 Army 15488-15516 Army 15517-15554 Army 15555-15598 Army 15599-15612 Army 15613-15616 Army 15617-15620 Army 15621-15624 Army 15625-15628 Army 15629-15632 Army 15633-15636 Army 15637-15641 Army 15642-15646 Army 15647-15654
Country Iraq
DateMar 2005
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationLikely Baghdad
Pages209
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army15440_15460.pdf -http://www.aclu.org/natsec/foia/pdf/Army15461_15487.pdf -http://www.aclu.org/natsec/foia/pdf/Army15488_15516.pdf -http://www.aclu.org/natsec/foia/pdf/Army15517_15554.pdf -http://www.aclu.org/natsec/foia/pdf/Army15555_15598.pdf -http://www.aclu.org/natsec/foia/pdf/Army15599_15612.pdf -http://www.aclu.org/natsec/foia/pdf/Army15613_15616.pdf -http://www.aclu.org/natsec/foia/pdf/Army15617_15620.pdf -http://www.aclu.org/natsec/foia/pdf/Army15621_15624.pdf -http://www.aclu.org/natsec/foia/pdf/Army15625_15628.pdf -http://www.aclu.org/natsec/foia/pdf/Army15629_15632.pdf -http://www.aclu.org/natsec/foia/pdf/Army15633_15636.pdf -http://www.aclu.org/natsec/foia/pdf/Army15637_15641.pdf -http://www.aclu.org/natsec/foia/pdf/Army15642_15646.pdf -http://www.aclu.org/natsec/foia/pdf/Army15647_15654.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/381/index.html b/CIVIC/investigations/381/index.html deleted file mode 100644 index 5c8ebd0..0000000 --- a/CIVIC/investigations/381/index.html +++ /dev/null @@ -1,76 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 15655-15674 Army 15674-15682
Country Iraq
DateMar 2005
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationEastern Baghdad
Pages28
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army15655_15674.pdf -http://www.aclu.org/natsec/foia/pdf/Army15674_15682.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/382/index.html b/CIVIC/investigations/382/index.html deleted file mode 100644 index 50cf7cb..0000000 --- a/CIVIC/investigations/382/index.html +++ /dev/null @@ -1,76 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 15683-15722 Army 15723-15749
Country Iraq
DateMar 2005
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationBaghdad
Pages67
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army15683_15722.pdf -http://www.aclu.org/natsec/foia/pdf/Army15723_15749.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/383/index.html b/CIVIC/investigations/383/index.html deleted file mode 100644 index 69876b5..0000000 --- a/CIVIC/investigations/383/index.html +++ /dev/null @@ -1,76 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 15750-15784 Army 15784-15811
Country Iraq
DateMar 2005
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationBaghdad
Pages62
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army15750_15784.pdf -http://www.aclu.org/natsec/foia/pdf/Army15784_15811.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/384/index.html b/CIVIC/investigations/384/index.html deleted file mode 100644 index 48a99d5..0000000 --- a/CIVIC/investigations/384/index.html +++ /dev/null @@ -1,76 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 15812-15831 Army 15832-15844
Country Iraq
DateMar 2005
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationRedacted, likely near Baghdad
Pages33
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army15812_15831.pdf -http://www.aclu.org/natsec/foia/pdf/Army15832_15844.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/385/index.html b/CIVIC/investigations/385/index.html deleted file mode 100644 index 5a5bcca..0000000 --- a/CIVIC/investigations/385/index.html +++ /dev/null @@ -1,79 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 15845-15865 Army 15866-15870 Army 15871-15876 Army 15877-15881 Army 15882-15888
CountryIraq
DateApr 2005
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationnan
Pages44
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army15845_15865.pdf -http://www.aclu.org/natsec/foia/pdf/Army15866_15870.pdf -http://www.aclu.org/natsec/foia/pdf/Army15871_15876.pdf -http://www.aclu.org/natsec/foia/pdf/Army15877_15881.pdf -http://www.aclu.org/natsec/foia/pdf/Army15882_15888.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/386/index.html b/CIVIC/investigations/386/index.html deleted file mode 100644 index 002c5bb..0000000 --- a/CIVIC/investigations/386/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 15889-15901
Country Iraq
DateApr 2005
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationKarradah Peninsula, Baghdad
Pages13
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army15889_15901.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/387/index.html b/CIVIC/investigations/387/index.html deleted file mode 100644 index a0e02b1..0000000 --- a/CIVIC/investigations/387/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 15902-15956
CountryIraq
DateMar 2005
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationnan
Pages55
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army15902_15956.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/388/index.html b/CIVIC/investigations/388/index.html deleted file mode 100644 index 1d261cf..0000000 --- a/CIVIC/investigations/388/index.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 15957-15969 Army 15970-15975 Army 15976-15982 Army 15983-15993 Army 15994-16017 Army 16018-16031
CountryIraq
DateApr 2005
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationnan
Pages75
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army15957_15969.pdf -http://www.aclu.org/natsec/foia/pdf/Army15970_15975.pdf -http://www.aclu.org/natsec/foia/pdf/Army15976_15982.pdf -http://www.aclu.org/natsec/foia/pdf/Army15983_15993.pdf -http://www.aclu.org/natsec/foia/pdf/Army15994_16017.pdf -http://www.aclu.org/natsec/foia/pdf/Army16018_16031.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/389/index.html b/CIVIC/investigations/389/index.html deleted file mode 100644 index 38cf4ef..0000000 --- a/CIVIC/investigations/389/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 16032-16045
Country Iraq
DateMar 2005
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationYusefiya
Pages14
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army16032_16045.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/39/index.html b/CIVIC/investigations/39/index.html deleted file mode 100644 index f77ed0f..0000000 --- a/CIVIC/investigations/39/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleInvestigation (Baqubah, Iraq, November 22, 2003) re: The capture and detention of an Iraqi target and his two sons
Country Iraq
DateNov 2003
Military BranchArmy
Type of investigationAR 15-6
Subjectill-treatment of detainees
Specific locationBaqubah
Pages79
Original SourceACLU Torture Database
Original URLshttps://www.thetorturedatabase.org/document/ar-15-6-investigation-baqubah-iraq-november-22-2003-re-capture-and-detention-iraqi-target?search_url=search/apachesolr_search/15-6&search_args=show=50
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/390/index.html b/CIVIC/investigations/390/index.html deleted file mode 100644 index 3e31e57..0000000 --- a/CIVIC/investigations/390/index.html +++ /dev/null @@ -1,76 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 16046-16059 Army 16060-16067
CountryIraq
DateApr 2005
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationnan
Pages22
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army16046_16059.pdf -http://www.aclu.org/natsec/foia/pdf/Army16060_16067.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/391/index.html b/CIVIC/investigations/391/index.html deleted file mode 100644 index 901e81d..0000000 --- a/CIVIC/investigations/391/index.html +++ /dev/null @@ -1,76 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 16068-16082 Army 16083-16096
CountryIraq
DateMay 2005
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationnan
Pages29
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army16068_16082.pdf -http://www.aclu.org/natsec/foia/pdf/Army16083_16096.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/392/index.html b/CIVIC/investigations/392/index.html deleted file mode 100644 index 15489b0..0000000 --- a/CIVIC/investigations/392/index.html +++ /dev/null @@ -1,77 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 16097-16111 Army 16112-16128 Army 16129-16137
Country Iraq
DateMay 2005
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationYusefiyah
Pages41
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army16097_16111.pdf -http://www.aclu.org/natsec/foia/pdf/Army16112_16128.pdf -http://www.aclu.org/natsec/foia/pdf/Army16129_16137.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/393/index.html b/CIVIC/investigations/393/index.html deleted file mode 100644 index aa94bf0..0000000 --- a/CIVIC/investigations/393/index.html +++ /dev/null @@ -1,76 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 16138-16158 Army 16159-16185
CountryIraq
DateMay 2005
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationnan
Pages48
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army16138_16158.pdf -http://www.aclu.org/natsec/foia/pdf/Army16159_16185.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/394/index.html b/CIVIC/investigations/394/index.html deleted file mode 100644 index e852c69..0000000 --- a/CIVIC/investigations/394/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 16186-16199
Country Iraq
DateMay 2004
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationBaghdad
Pages14
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army16186_16199.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/395/index.html b/CIVIC/investigations/395/index.html deleted file mode 100644 index 1f229e6..0000000 --- a/CIVIC/investigations/395/index.html +++ /dev/null @@ -1,76 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 16200-16231 Army 16232-16264
Country Iraq
DateMay 2005
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationBaghdad
Pages65
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army16200_16231.pdf -http://www.aclu.org/natsec/foia/pdf/Army16232_16264.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/396/index.html b/CIVIC/investigations/396/index.html deleted file mode 100644 index 82702fd..0000000 --- a/CIVIC/investigations/396/index.html +++ /dev/null @@ -1,76 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 16265-16284 Army 16285-16310
CountryIraq
DateMay 2005
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationnan
Pages46
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army16265_16284.pdf -http://www.aclu.org/natsec/foia/pdf/Army16285_16310.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/397/index.html b/CIVIC/investigations/397/index.html deleted file mode 100644 index 60bbb72..0000000 --- a/CIVIC/investigations/397/index.html +++ /dev/null @@ -1,76 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 16311-16325 Army 16326-16333
Country Iraq
DateJun 2005
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationYusufiyah
Pages23
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army16311_16325.pdf -http://www.aclu.org/natsec/foia/pdf/Army16326_16333.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/398/index.html b/CIVIC/investigations/398/index.html deleted file mode 100644 index 4916534..0000000 --- a/CIVIC/investigations/398/index.html +++ /dev/null @@ -1,76 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 16334-16371 Army 16372-16398
Country Iraq
DateJun 2005
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationBaghdad
Pages65
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army16334_16371.pdf -http://www.aclu.org/natsec/foia/pdf/Army16372_16398.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/399/index.html b/CIVIC/investigations/399/index.html deleted file mode 100644 index 5f8ddd0..0000000 --- a/CIVIC/investigations/399/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 16399-16407
CountryIraq
DateMay 2005
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationnan
Pages9
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army16399_16407.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/4/index.html b/CIVIC/investigations/4/index.html deleted file mode 100644 index 8e8cf50..0000000 --- a/CIVIC/investigations/4/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleCID Report on Hadi Abdul Hussain Hasson, aka Al Zubaidy, ISN US91Z-300055-EPW
CountryIraq
DateApr 2003
Military BranchArmy
Type of investigationCID (criminal)
SubjectIll-treatment of detainees
Specific locationCamp Bucca Um Qasr
Pages40
Original SourceACLU Torture Database
Original URLshttps://www.thetorturedatabase.org/document/cid-report-death-0237-04-cid259-80273?search_url=search/apachesolr_search/15-6&search_args=page=3%26show=50
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/40/index.html b/CIVIC/investigations/40/index.html deleted file mode 100644 index 2cea335..0000000 --- a/CIVIC/investigations/40/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleInvestigation re: Abuse of Detainees
CountryIraq
Date
Military BranchArmy
Type of investigationAR 15-6
SubjectIll-treatment of detainees
Specific location (precise location unclear)
Pages154
Original SourceACLU Torture Database
Original URLshttps://www.thetorturedatabase.org/document/ar-15-6-investigation-re-abuse-detainees?search_url=search/apachesolr_search/15-6&search_args=show=50
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/400/index.html b/CIVIC/investigations/400/index.html deleted file mode 100644 index c888ee4..0000000 --- a/CIVIC/investigations/400/index.html +++ /dev/null @@ -1,78 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 16408-16417 Army 16418-16420 Army 16421-16428 Army 16429-16439
CountryIraq
DateJun 2005
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationnan
Pages32
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army16408_16417.pdf -http://www.aclu.org/natsec/foia/pdf/Army16418_16420.pdf -http://www.aclu.org/natsec/foia/pdf/Army16421_16428.pdf -http://www.aclu.org/natsec/foia/pdf/Army16429_16439.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/401/index.html b/CIVIC/investigations/401/index.html deleted file mode 100644 index 25dedf6..0000000 --- a/CIVIC/investigations/401/index.html +++ /dev/null @@ -1,76 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 16440-16461 Army 16462-16464
Country Iraq
DateJun 2005
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationBaghdad
Pages25
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army16440_16461.pdf -http://www.aclu.org/natsec/foia/pdf/Army16462_16464.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/402/index.html b/CIVIC/investigations/402/index.html deleted file mode 100644 index db40ab6..0000000 --- a/CIVIC/investigations/402/index.html +++ /dev/null @@ -1,76 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 16465-16509 Army 16510-16521
CountryIraq
DateJul 2005
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationnan
Pages57
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army16465_16509.pdf -http://www.aclu.org/natsec/foia/pdf/Army16510_16521.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/403/index.html b/CIVIC/investigations/403/index.html deleted file mode 100644 index 634680c..0000000 --- a/CIVIC/investigations/403/index.html +++ /dev/null @@ -1,76 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 16522-16544 Army 16545-16578
CountryIraq
DateJul 2005
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationnan
Pages57
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army16522_16544.pdf -http://www.aclu.org/natsec/foia/pdf/Army16545_16578.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/404/index.html b/CIVIC/investigations/404/index.html deleted file mode 100644 index d73dc4e..0000000 --- a/CIVIC/investigations/404/index.html +++ /dev/null @@ -1,76 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 16579-16601 Army 16602-16607
CountryIraq
DateMay 2005
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationnan
Pages29
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army16579_16601.pdf -http://www.aclu.org/natsec/foia/pdf/Army16602_16607.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/405/index.html b/CIVIC/investigations/405/index.html deleted file mode 100644 index c274cab..0000000 --- a/CIVIC/investigations/405/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 16608-16643
CountryIraq
DateJun 2005
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationnan
Pages36
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army16608_16643.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/406/index.html b/CIVIC/investigations/406/index.html deleted file mode 100644 index 264254e..0000000 --- a/CIVIC/investigations/406/index.html +++ /dev/null @@ -1,83 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 16644-16648 Army 16649-16655 Army 16656-16661 Army 16662-16666 Army 16667-16671 Army 16672-16676 Army 16677-16678 Army 16679-16683 Army 16684-16698
Country Iraq
DateJul 2005
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationBaghdad
Pages55
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army16644_16648.pdf -http://www.aclu.org/natsec/foia/pdf/Army16649_16655.pdf -http://www.aclu.org/natsec/foia/pdf/Army16656_16661.pdf -http://www.aclu.org/natsec/foia/pdf/Army16662_16666.pdf -http://www.aclu.org/natsec/foia/pdf/Army16667_16671.pdf -http://www.aclu.org/natsec/foia/pdf/Army16672_16676.pdf -http://www.aclu.org/natsec/foia/pdf/Army16677_16678.pdf -http://www.aclu.org/natsec/foia/pdf/Army16679_16683.pdf -http://www.aclu.org/natsec/foia/pdf/Army16684_16698.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/407/index.html b/CIVIC/investigations/407/index.html deleted file mode 100644 index 2e550b1..0000000 --- a/CIVIC/investigations/407/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 16699-16734
Country Iraq
DateJul 2005
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationAbu Ghraib
Pages36
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army16699_16734.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/408/index.html b/CIVIC/investigations/408/index.html deleted file mode 100644 index f2e543f..0000000 --- a/CIVIC/investigations/408/index.html +++ /dev/null @@ -1,77 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 16735-16754 Army 16755-16774 Army 16775-16793
CountryIraq
DateJul 2005
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationnan
Pages59
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army16735_16754.pdf -http://www.aclu.org/natsec/foia/pdf/Army16755_16774.pdf -http://www.aclu.org/natsec/foia/pdf/Army16775_16793.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/409/index.html b/CIVIC/investigations/409/index.html deleted file mode 100644 index a45d793..0000000 --- a/CIVIC/investigations/409/index.html +++ /dev/null @@ -1,76 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 16794-16843 Army 16844-16867
CountryIraq
DateAug 2005
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationnan
Pages74
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army16794_16843.pdf -http://www.aclu.org/natsec/foia/pdf/Army16844_16867.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/41/index.html b/CIVIC/investigations/41/index.html deleted file mode 100644 index 05f6d9a..0000000 --- a/CIVIC/investigations/41/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleCID Report (Death): 0011-04-CID469-79630
Country Iraq
DateJan 2004
Military BranchArmy
Type of investigationCID (criminal)
SubjectIll-treatment of detainees
Specific locationSamarra
Pages263
Original SourceACLU Torture Database
Original URLshttps://www.thetorturedatabase.org/document/cid-report-death-0011-04-cid469-79630-0?search_url=search/apachesolr_search/15-6&search_args=page=5%26show=50
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/410/index.html b/CIVIC/investigations/410/index.html deleted file mode 100644 index f725f65..0000000 --- a/CIVIC/investigations/410/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 16868-16917
CountryIraq
DateAug 2005
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationnan
Pages50
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army16868_16917.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/411/index.html b/CIVIC/investigations/411/index.html deleted file mode 100644 index 9421c5c..0000000 --- a/CIVIC/investigations/411/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 16918-16926
CountryIraq
DateJul 2005
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationnan
Pages9
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army16918_16926.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/412/index.html b/CIVIC/investigations/412/index.html deleted file mode 100644 index f616c47..0000000 --- a/CIVIC/investigations/412/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 16927-16981
CountryIraq
DateAug 2005
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationnan
Pages55
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army16927_16981.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/413/index.html b/CIVIC/investigations/413/index.html deleted file mode 100644 index c9777e9..0000000 --- a/CIVIC/investigations/413/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 16982-17015
Country Iraq
DateAug 2005
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationNear Baghdad
Pages34
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army16982_17015.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/414/index.html b/CIVIC/investigations/414/index.html deleted file mode 100644 index 580e439..0000000 --- a/CIVIC/investigations/414/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 17016-17052
CountryIraq
DateAug 2005
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationnan
Pages37
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army17016_17052.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/415/index.html b/CIVIC/investigations/415/index.html deleted file mode 100644 index 518170f..0000000 --- a/CIVIC/investigations/415/index.html +++ /dev/null @@ -1,90 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 17053-17062 Army 17063-17065 Army 17066-17068 Army 17069-17071 Army 17072-17073 Army 17074-17075 Army 17076-17077 Army 17078-17079 Army 17080-17083 Army 17084-17088 Army 17089-17092 Army 17093-17097 Army 17098-17102 Army 17103-17115 Army 17116-17125 Army 17126-17147
Country Iraq
DateAug 2005
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationHay al Adel, Baghdad
Pages95
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army17053_17062.pdf -http://www.aclu.org/natsec/foia/pdf/Army17063_17065.pdf -http://www.aclu.org/natsec/foia/pdf/Army17066_17068.pdf -http://www.aclu.org/natsec/foia/pdf/Army17069_17071.pdf -http://www.aclu.org/natsec/foia/pdf/Army17072_17073.pdf -http://www.aclu.org/natsec/foia/pdf/Army17074_17075.pdf -http://www.aclu.org/natsec/foia/pdf/Army17076_17077.pdf -http://www.aclu.org/natsec/foia/pdf/Army17078_17079.pdf -http://www.aclu.org/natsec/foia/pdf/Army17080_17083.pdf -http://www.aclu.org/natsec/foia/pdf/Army17084_17088.pdf -http://www.aclu.org/natsec/foia/pdf/Army17089_17092.pdf -http://www.aclu.org/natsec/foia/pdf/Army17093_17097.pdf -http://www.aclu.org/natsec/foia/pdf/Army17098_17102.pdf -http://www.aclu.org/natsec/foia/pdf/Army17103_17115.pdf -http://www.aclu.org/natsec/foia/pdf/Army17116_17125.pdf -http://www.aclu.org/natsec/foia/pdf/Army17126_17147.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/416/index.html b/CIVIC/investigations/416/index.html deleted file mode 100644 index 18d12ad..0000000 --- a/CIVIC/investigations/416/index.html +++ /dev/null @@ -1,76 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 17148-17163 Army 17164-17174
CountryIraq
DateAug 2005
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationnan
Pages27
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army17148_17163.pdf -http://www.aclu.org/natsec/foia/pdf/Army17164_17174.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/417/index.html b/CIVIC/investigations/417/index.html deleted file mode 100644 index fbf45b5..0000000 --- a/CIVIC/investigations/417/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 17175-17213
Country Iraq
DateAug 2005
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationLikely Baghdad
Pages39
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army17175_17213.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/418/index.html b/CIVIC/investigations/418/index.html deleted file mode 100644 index a303fb4..0000000 --- a/CIVIC/investigations/418/index.html +++ /dev/null @@ -1,78 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 17214-17227 Army 17228-17233 Army 17234-17242 Army 17243-17250
CountryIraq
DateSep 2005
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationnan
Pages37
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army17214_17227.pdf -http://www.aclu.org/natsec/foia/pdf/Army17228_17233.pdf -http://www.aclu.org/natsec/foia/pdf/Army17234_17242.pdf -http://www.aclu.org/natsec/foia/pdf/Army17243_17250.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/419/index.html b/CIVIC/investigations/419/index.html deleted file mode 100644 index af86582..0000000 --- a/CIVIC/investigations/419/index.html +++ /dev/null @@ -1,77 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 17251-17270 Army 17271-17285 Army 17286-17302
Country Iraq
DateSep 2005
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationLikely Baghdad
Pages52
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army17251_17270.pdf -http://www.aclu.org/natsec/foia/pdf/Army17271_17285.pdf -http://www.aclu.org/natsec/foia/pdf/Army17286_17302.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/42/index.html b/CIVIC/investigations/42/index.html deleted file mode 100644 index 9876132..0000000 --- a/CIVIC/investigations/42/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleCID Report (Death): 009-04-CID679-83486
CountryIraq
DateJan 2004
Military BranchArmy
Type of investigationCID (criminal)
SubjectIll-treatment of detainees
Specific locationAl Asad
Pages413
Original SourceACLU Torture Database
Original URLshttps://www.thetorturedatabase.org/document/cid-report-death-009-04-cid679-83486?search_url=search/apachesolr_search/15-6&search_args=page=5%26show=50
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/420/index.html b/CIVIC/investigations/420/index.html deleted file mode 100644 index c53c0f5..0000000 --- a/CIVIC/investigations/420/index.html +++ /dev/null @@ -1,78 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 17303-17312 Army 17313-17317 Army 17318-17321 Army 17322-17325
CountryIraq
DateSep 2005
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationnan
Pages23
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army17303_17312.pdf -http://www.aclu.org/natsec/foia/pdf/Army17313_17317.pdf -http://www.aclu.org/natsec/foia/pdf/Army17318_17321.pdf -http://www.aclu.org/natsec/foia/pdf/Army17322_17325.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/421/index.html b/CIVIC/investigations/421/index.html deleted file mode 100644 index db0e5d1..0000000 --- a/CIVIC/investigations/421/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 17326-17350
CountryIraq
DateSep 2005
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationnan
Pages25
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army17326_17350.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/422/index.html b/CIVIC/investigations/422/index.html deleted file mode 100644 index 53a473e..0000000 --- a/CIVIC/investigations/422/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 17351-17404
Country Iraq
DateSep 2005
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationBaghdad
Pages54
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army17351_17404.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/423/index.html b/CIVIC/investigations/423/index.html deleted file mode 100644 index 0be8a24..0000000 --- a/CIVIC/investigations/423/index.html +++ /dev/null @@ -1,77 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 17405-17416 Army 17417-17428 Army 17429-17440
CountryIraq
DateSep 2005
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationnan
Pages36
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army17405_17416.pdf -http://www.aclu.org/natsec/foia/pdf/Army17417_17428.pdf -http://www.aclu.org/natsec/foia/pdf/Army17429_17440.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/424/index.html b/CIVIC/investigations/424/index.html deleted file mode 100644 index f055ca1..0000000 --- a/CIVIC/investigations/424/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 17441-17466
Country Iraq
DateOct 2005
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationOutside Baghdad
Pages26
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army17441_17466.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/425/index.html b/CIVIC/investigations/425/index.html deleted file mode 100644 index 1cf4f21..0000000 --- a/CIVIC/investigations/425/index.html +++ /dev/null @@ -1,76 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 17467-17481 Army 17482-17496
CountryIraq
DateOct 2005
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationnan
Pages30
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army17467_17481.pdf -http://www.aclu.org/natsec/foia/pdf/Army17482_17496.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/426/index.html b/CIVIC/investigations/426/index.html deleted file mode 100644 index 4097483..0000000 --- a/CIVIC/investigations/426/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 17497-17545
CountryIraq
DateOct 2005
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationnan
Pages49
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army17497_17545.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/427/index.html b/CIVIC/investigations/427/index.html deleted file mode 100644 index 81c50ba..0000000 --- a/CIVIC/investigations/427/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 17546-17580
CountryIraq
DateOct 2005
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationnan
Pages35
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army17546_17580.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/428/index.html b/CIVIC/investigations/428/index.html deleted file mode 100644 index 5993314..0000000 --- a/CIVIC/investigations/428/index.html +++ /dev/null @@ -1,77 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 17581-17598 Army 17599-17610 Army 17611-17617
CountryIraq
DateOct 2005
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationnan
Pages37
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army17581_17598.pdf -http://www.aclu.org/natsec/foia/pdf/Army17599_17610.pdf -http://www.aclu.org/natsec/foia/pdf/Army17611_17617.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/429/index.html b/CIVIC/investigations/429/index.html deleted file mode 100644 index bc5cb6f..0000000 --- a/CIVIC/investigations/429/index.html +++ /dev/null @@ -1,77 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 17618-17632 Army 17633-17641 Army 17642-17646
Country Iraq
DateOct 2005
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationKadhamiya, Baghdad
Pages29
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army17618_17632.pdf -http://www.aclu.org/natsec/foia/pdf/Army17633_17641.pdf -http://www.aclu.org/natsec/foia/pdf/Army17642_17646.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/43/index.html b/CIVIC/investigations/43/index.html deleted file mode 100644 index fd58ec0..0000000 --- a/CIVIC/investigations/43/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleInvestigation Concerning Objective San Diego Cache Explosion 29 January 2004
CountryAfghanistan
DateJan 2004
Military BranchArmy
Type of investigationAR 15-6
SubjectSoldier casualty
Specific location“Objective San Diego”, (precise location unclear)
Pages71
Original SourceACLU Torture Database
Original URLshttps://www3.centcom.mil/FOIA_RR_Files/5 USC 552(a)(2)(D)Records/Casualites/15-6 Investigation, 29 Jan 04 Cache Explosion IVO OBJ San Diego.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/430/index.html b/CIVIC/investigations/430/index.html deleted file mode 100644 index 94b28af..0000000 --- a/CIVIC/investigations/430/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 17647-17660
Country Iraq
DateOct 2005
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationBaghdad
Pages14
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army17647_17660.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/431/index.html b/CIVIC/investigations/431/index.html deleted file mode 100644 index a9b570c..0000000 --- a/CIVIC/investigations/431/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 17661-17694
Country Iraq
DateOct 2005
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationBaghdad
Pages34
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army17661_17694.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/432/index.html b/CIVIC/investigations/432/index.html deleted file mode 100644 index a15cd1b..0000000 --- a/CIVIC/investigations/432/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 17695-17712
CountryIraq
DateOct 2005
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationnan
Pages18
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army17695_17712.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/433/index.html b/CIVIC/investigations/433/index.html deleted file mode 100644 index c02d6e2..0000000 --- a/CIVIC/investigations/433/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 17713-17732
Country Iraq
DateNov 2005
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationTaji, Baghdad
Pages20
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army17713_17732.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/434/index.html b/CIVIC/investigations/434/index.html deleted file mode 100644 index 56ff989..0000000 --- a/CIVIC/investigations/434/index.html +++ /dev/null @@ -1,77 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 17733-17747 Army 17748-17762 Army 17763-17776
CountryIraq
DateNov 2005
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationnan
Pages44
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army17733_17747.pdf -http://www.aclu.org/natsec/foia/pdf/Army17748_17762.pdf -http://www.aclu.org/natsec/foia/pdf/Army17763_17776.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/435/index.html b/CIVIC/investigations/435/index.html deleted file mode 100644 index 04ef2d7..0000000 --- a/CIVIC/investigations/435/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 17777-17802
CountryIraq
DateNov 2005
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationnan
Pages26
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army17777_17802.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/436/index.html b/CIVIC/investigations/436/index.html deleted file mode 100644 index 000189b..0000000 --- a/CIVIC/investigations/436/index.html +++ /dev/null @@ -1,78 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 17803-17818 Army 17819-17833 Army 17834-17845 Army 17846-17848
CountryIraq
DateNov 2005
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationnan
Pages46
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army17803_17818.pdf -http://www.aclu.org/natsec/foia/pdf/Army17819_17833.pdf -http://www.aclu.org/natsec/foia/pdf/Army17834_17845.pdf -http://www.aclu.org/natsec/foia/pdf/Army17846_17848.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/437/index.html b/CIVIC/investigations/437/index.html deleted file mode 100644 index f312cc0..0000000 --- a/CIVIC/investigations/437/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 17849-17892
CountryIraq
DateNov 2005
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationnan
Pages44
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army17849_17892.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/438/index.html b/CIVIC/investigations/438/index.html deleted file mode 100644 index 868a8f5..0000000 --- a/CIVIC/investigations/438/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 17893-17920
Country Iraq
DateNov 2005
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationBaghdad
Pages28
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army17893_17920.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/439/index.html b/CIVIC/investigations/439/index.html deleted file mode 100644 index bed2ae4..0000000 --- a/CIVIC/investigations/439/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 17921-17941
Country Iraq
DateNov 2005
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationBaghdad
Pages21
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army17921_17941.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/44/index.html b/CIVIC/investigations/44/index.html deleted file mode 100644 index aa51d05..0000000 --- a/CIVIC/investigations/44/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleCID Report: 0044-2004-CID352-64027
Country Iraq
DateFeb 2004
Military BranchArmy
Type of investigationCID (criminal)
SubjectIll-treatment of detainees
Specific locationCamp Bucca, Um Qasr
Pages19
Original SourceACLU Torture Database
Original URLshttps://www.thetorturedatabase.org/document/cid-report-0044-2004-cid352-64027?search_url=search/apachesolr_search/15-6&search_args=page=8%26show=50
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/440/index.html b/CIVIC/investigations/440/index.html deleted file mode 100644 index 40043c6..0000000 --- a/CIVIC/investigations/440/index.html +++ /dev/null @@ -1,77 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 17942-17961 Army 17962-17983 Army 17984-18005
CountryIraq
DateNov 2005
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationnan
Pages64
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army17942_17961.pdf -http://www.aclu.org/natsec/foia/pdf/Army17962_17983.pdf -http://www.aclu.org/natsec/foia/pdf/Army17984_18005.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/441/index.html b/CIVIC/investigations/441/index.html deleted file mode 100644 index 9e22c41..0000000 --- a/CIVIC/investigations/441/index.html +++ /dev/null @@ -1,77 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army 18009-18065 Army 18066-18110 Army 18111-18151
Country Iraq
DateJan 2005
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty?
Specific locationNear Najaf
Pages143
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army18009_18065.pdf -http://www.aclu.org/natsec/foia/pdf/Army18066_18110.pdf -http://www.aclu.org/natsec/foia/pdf/Army18111_18151.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/442/index.html b/CIVIC/investigations/442/index.html deleted file mode 100644 index 7f366a4..0000000 --- a/CIVIC/investigations/442/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army Bates 1
CountryIraq
DateJan 2005
Military BranchArmy
Type of investigationCID
SubjectCivilian Casualty?
Specific locationRoadside Asr Kiev, Ash-Shumali
Pages54
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army000001.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/443/index.html b/CIVIC/investigations/443/index.html deleted file mode 100644 index 794b804..0000000 --- a/CIVIC/investigations/443/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army Bates 2
CountryIraq
DateFeb 2005
Military BranchArmy
Type of investigationCID
SubjectCivilian Casualty?
Specific locationGrid Coordinate MF 33702 29222, Shaqlawa
Pages35
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army000002.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/444/index.html b/CIVIC/investigations/444/index.html deleted file mode 100644 index 6575bdb..0000000 --- a/CIVIC/investigations/444/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army Bates 3
CountryIraq
DateJan 2005
Military BranchArmy
Type of investigationCID
SubjectCivilian Casualty?
Specific locationBagdad Central Confinement Facility (BCCF); Grid: 38S MB 130 840; Abu Graib
Pages51
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army000003.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/445/index.html b/CIVIC/investigations/445/index.html deleted file mode 100644 index 529fc81..0000000 --- a/CIVIC/investigations/445/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army Bates 4
CountryIraq
DateApr 2005
Military BranchArmy
Type of investigationCID
SubjectCivilian Casualty?
Specific locationGrid Coordinate , WD18318038146
Pages40
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army000004.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/446/index.html b/CIVIC/investigations/446/index.html deleted file mode 100644 index 5da7c10..0000000 --- a/CIVIC/investigations/446/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army Bates 5
CountryIraq
DateFeb 2005
Military BranchArmy
Type of investigationCID
SubjectCivilian Casualty?
Specific location200 Meters North of the Main gate, Shindand Air Field
Pages45
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army000005.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/447/index.html b/CIVIC/investigations/447/index.html deleted file mode 100644 index 6e6ac13..0000000 --- a/CIVIC/investigations/447/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army Bates 6
CountryIraq
DateJan 2005
Military BranchArmy
Type of investigationCID
SubjectCivilian Casualty?
Specific locationCompound 5, Theater Internment Facility, Camp Bucca, Iraq APO AE 09375 (CBI), CRID 38S MB 130840
Pages84
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army000006.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/448/index.html b/CIVIC/investigations/448/index.html deleted file mode 100644 index a17004f..0000000 --- a/CIVIC/investigations/448/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army Bates 7
CountryIraq
DateApr 2005
Military BranchArmy
Type of investigationCID
SubjectCivilian Casualty?
Specific locationBaghdad Central Confinement Facility (BCCF); Grid: 38S MB 130 840; Abu Ghraib
Pages3
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army000007.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/449/index.html b/CIVIC/investigations/449/index.html deleted file mode 100644 index 7d7f49f..0000000 --- a/CIVIC/investigations/449/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army Bates 8
CountryIraq
DateMay 2005
Military BranchArmy
Type of investigationCID
SubjectCivilian Casualty?
Specific locationMain Supply Route Red, 8 Miles South From Kabul, Near Grid Coordinate WD 0627420207, Kabul
Pages3
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army000008.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/45/index.html b/CIVIC/investigations/45/index.html deleted file mode 100644 index ae3ed3a..0000000 --- a/CIVIC/investigations/45/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleInvestigation re: Death of a Detainee
CountryIraq
DateFeb 2004
Military BranchArmy
Type of investigationAR 15-6
SubjectIll-treatment of detainees
Specific locationFOB Ironhorse, Tikrit
Pages23
Original SourceACLU Torture Database
Original URLshttps://www.thetorturedatabase.org/document/commanders-inquiry-15-6-investigation-3?search_url=search/apachesolr_search/15-6&search_args=page=1%26show=50
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/450/index.html b/CIVIC/investigations/450/index.html deleted file mode 100644 index 29732c5..0000000 --- a/CIVIC/investigations/450/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army Bates 9
CountryIraq
DateMay 2005
Military BranchArmy
Type of investigationCID
SubjectCivilian Casualty?
Specific locationCompound 4 and Internment Facility Aid Station (IFAS), Theater Internment Facility (TIF), Camp Bucca, Iraq APO AE 09375 (CBI), GRID 38 S MB 130840
Pages19
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army000009.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/451/index.html b/CIVIC/investigations/451/index.html deleted file mode 100644 index 19b4dfc..0000000 --- a/CIVIC/investigations/451/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army Bates 10
CountryIraq
DateJul 2005
Military BranchArmy
Type of investigationCID
SubjectCivilian Casualty?
Specific locationGrid MB 25251 82657, Highway One, Vicinity of Camp Sather, Baghdad International Airport (BIAP), Baghdad
Pages0
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army000010.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/452/index.html b/CIVIC/investigations/452/index.html deleted file mode 100644 index d5611b7..0000000 --- a/CIVIC/investigations/452/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army Bates 11
CountryIraq
DateAug 2005
Military BranchArmy
Type of investigationCID
SubjectCivilian Casualty?
Specific locationBaghdad Central Confinement Facility (BCCF); Grid: 38S MB 130 840; Abu Ghraib
Pages0
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army000011.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/453/index.html b/CIVIC/investigations/453/index.html deleted file mode 100644 index bc63df8..0000000 --- a/CIVIC/investigations/453/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleACLU Army Bates 12
CountryIraq
DateJul 2005
Military BranchArmy
Type of investigationCID
SubjectCivilian Casualty?
Specific locationGrid Coordinate MC28880017100
Pages0
Original SourceACLU Human Cost of War
Original URLshttp://www.aclu.org/natsec/foia/pdf/Army000012.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/46/index.html b/CIVIC/investigations/46/index.html deleted file mode 100644 index 2a7ff4c..0000000 --- a/CIVIC/investigations/46/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleCID Report: 0245-04-CID259-80279
CountryIraq
DateFeb 2004
Military BranchArmy
Type of investigationCID (criminal)
SubjectIll-treatment of detainees
Specific location(precise location unclear)
Pages17
Original SourceACLU Torture Database
Original URLshttps://www.thetorturedatabase.org/document/cid-report-0245-04-cid259-80279?search_url=search/apachesolr_search/15-6&search_args=page=8%26show=50
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/47/index.html b/CIVIC/investigations/47/index.html deleted file mode 100644 index 92b13c2..0000000 --- a/CIVIC/investigations/47/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleCID Report (Death): 0040-04-CID469-79638
CountryIraq
DateFeb 2004
Military BranchArmy
Type of investigationCID (criminal)
SubjectIll-treatment of detainees
Specific locationFOB Warrior, Kirkuk
Pages88
Original SourceACLU Torture Database
Original URLshttps://www.thetorturedatabase.org/document/cid-report-death-0040-04-cid469-79638?search_url=search/apachesolr_search/15-6&search_args=page=8%26show=50
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/48/index.html b/CIVIC/investigations/48/index.html deleted file mode 100644 index 3ba6dbd..0000000 --- a/CIVIC/investigations/48/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleCID Report: 0180-04-CID259-80227
CountryIraq
DateMar 2004
Military BranchArmy
Type of investigationCID (criminal)
SubjectIll-treatment of detainees
Specific locationMosul
Pages40
Original SourceACLU Torture Database
Original URLshttps://www.thetorturedatabase.org/document/cid-report-0180-04-cid259-80227?search_url=search/apachesolr_search/15-6&search_args=page=7%26show=50
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/49/index.html b/CIVIC/investigations/49/index.html deleted file mode 100644 index 2402612..0000000 --- a/CIVIC/investigations/49/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleCID Report: 0219-04-CID259-80253
CountryIraq
DateMar 2004
Military BranchArmy
Type of investigationCID (criminal)
SubjectIll-treatment of detainees
Specific locationAbu Ghraib
Pages79
Original SourceACLU Torture Database
Original URLshttps://www.thetorturedatabase.org/document/cid-report-0219-04-cid259-80253?search_url=search/apachesolr_search/15-6&search_args=page=6%26show=50
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/5/index.html b/CIVIC/investigations/5/index.html deleted file mode 100644 index 19fd36e..0000000 --- a/CIVIC/investigations/5/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleCID Report: 0397-2004-CID023-67282
CountryIraq
DateApr 2001
Military BranchArmy
Type of investigationCID (criminal)
SubjectIll-treatment of detainees
Specific locationBaghdad
Pages56
Original SourceACLU Torture Database
Original URLshttps://www.thetorturedatabase.org/document/cid-report-0397-2004-cid023-67282?search_url=search/apachesolr_search/15-6&search_args=page=8%26show=50
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/50/index.html b/CIVIC/investigations/50/index.html deleted file mode 100644 index 3aad9c9..0000000 --- a/CIVIC/investigations/50/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitlePost-Incident Investigation: Ambush of BSC Team 31 Mar 04 in Fallujah
CountryIraq
DateMar 2004
Military BranchU.S.M.C.
Type of investigationUnclear
SubjectContractor casualty
Specific location Fallujah
Pages3
Original SourceACLU Torture Database
Original URLshttps://www3.centcom.mil/FOIA_RR_Files/5 USC 552(a)(2)(D)Records/Contractor Casualites/r_Post-Incident Investigation 08-0027 (DoD Doc)-Bracketed.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/51/index.html b/CIVIC/investigations/51/index.html deleted file mode 100644 index 58619c9..0000000 --- a/CIVIC/investigations/51/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleCID Report: 0127-04-CID469-19674
CountryIraq
DateApr 2004
Military BranchArmy
Type of investigationCID (criminal)
SubjectIll-treatment of detainees
Specific locationBayjil
Pages99
Original SourceACLU Torture Database
Original URLshttps://www.thetorturedatabase.org/document/memorandum-us-army-criminal-investigation-command-director-usacrc-subject-cid-report-invest?search_url=search/apachesolr_search/15-6&search_args=page=6%26show=50
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/52/index.html b/CIVIC/investigations/52/index.html deleted file mode 100644 index 9ea78cd..0000000 --- a/CIVIC/investigations/52/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleCID Report: 0225-2004-CID259-80259
CountryIraq
DateApr 2004
Military BranchArmy
Type of investigationCID (criminal)
SubjectIll-treatment of detainees
Specific locationAl-Habbaniyah
Pages125
Original SourceACLU Torture Database
Original URLshttps://www.thetorturedatabase.org/document/cid-report-0225-2004-cid259-80259?search_url=search/apachesolr_search/15-6&search_args=page=5%26show=50
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/53/index.html b/CIVIC/investigations/53/index.html deleted file mode 100644 index 8cfbcd2..0000000 --- a/CIVIC/investigations/53/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleCID Report (Death): 0106-04-CID259-80185
CountryIraq
DateApr 2004
Military BranchArmy
Type of investigationCID (criminal)
SubjectIll-treatment of detainees
Specific locationAl-Ademeyeha, Baghdad,
Pages75
Original SourceACLU Torture Database
Original URLshttps://www.thetorturedatabase.org/document/cid-report-death-0106-04-cid259-80185?search_url=search/apachesolr_search/15-6&search_args=page=8%26show=50
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/54/index.html b/CIVIC/investigations/54/index.html deleted file mode 100644 index 1f38ab4..0000000 --- a/CIVIC/investigations/54/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleCID Report: 0139-2004-CID259-80203
Country Iraq
DateApr 2004
Military BranchArmy
Type of investigationCID (criminal)
SubjectIll-treatment of detainees
Specific locationTikrit
Pages230
Original SourceACLU Torture Database
Original URLshttps://www.thetorturedatabase.org/document/cid-report-0139-2004-cid259-80203?search_url=search/apachesolr_search/15-6&search_args=page=5%26show=50
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/55/index.html b/CIVIC/investigations/55/index.html deleted file mode 100644 index d0e97a1..0000000 --- a/CIVIC/investigations/55/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleCID Report: 0252-2004-CID259-80286
Country Iraq
DateMay 2004
Military BranchArmy
Type of investigationCID (criminal)
SubjectIll-treatment of detainees
Specific locationMosul
Pages120
Original SourceACLU Torture Database
Original URLshttps://www.thetorturedatabase.org/document/cid-report-0252-2004-cid259-80286?search_url=search/apachesolr_search/15-6&search_args=page=3%26show=50
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/56/index.html b/CIVIC/investigations/56/index.html deleted file mode 100644 index e069b5d..0000000 --- a/CIVIC/investigations/56/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleCID Report: 0186-04-CID259-80231
CountryIraq
DateMay 2004
Military BranchArmy
Type of investigationCID (criminal)
SubjectIll-treatment of detainees
Specific location (precise location unclear)
Pages43
Original SourceACLU Torture Database
Original URLshttps://www.thetorturedatabase.org/document/cid-report-0186-04-cid259-80231?search_url=search/apachesolr_search/15-6&search_args=page=8%26show=50
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/57/index.html b/CIVIC/investigations/57/index.html deleted file mode 100644 index abb9367..0000000 --- a/CIVIC/investigations/57/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleInvestigation into U.S. Raid Near the Syrian-Iraq Border on 19 May 04
CountrySyrian-Iraq border
DateMay 2004
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty
Specific locationSyrian-Iraq border
Pages62
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/FOIA_RR_Files/5 USC 552(a)(2)(D)Records/U.S. Raid Near the Syrian-Iraq Border on 19 May 04/r_Responsive_Docs-Facts_Findings-new-Bracketed.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/58/index.html b/CIVIC/investigations/58/index.html deleted file mode 100644 index 8c9c69a..0000000 --- a/CIVIC/investigations/58/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleCID Report: 0058-04-CID939-82650
CountryIraq
DateMay 2004
Military BranchArmy
Type of investigationCID (criminal)
SubjectTheft
Specific locationTallil
Pages221
Original SourceACLU Torture Database
Original URLshttps://www.thetorturedatabase.org/document/cid-report-0058-04-cid939-82650?search_url=search/apachesolr_search/15-6&search_args=page=5%26show=50
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/59/index.html b/CIVIC/investigations/59/index.html deleted file mode 100644 index 2cb66cd..0000000 --- a/CIVIC/investigations/59/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleCID Report (Death): 0171-04-CID259-80223
CountryIraq
DateMay 2004
Military BranchArmy
Type of investigationCID (criminal)
SubjectIll-treatment of detainees
Specific locationBaghdad
Pages34
Original SourceACLU Torture Database
Original URLshttps://www.thetorturedatabase.org/document/cid-report-death-0171-04-cid259-80223?search_url=search/apachesolr_search/15-6&search_args=page=7%26show=50
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/6/index.html b/CIVIC/investigations/6/index.html deleted file mode 100644 index 3f31ce4..0000000 --- a/CIVIC/investigations/6/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleCID Report (Death): 0035-03-CID259-61144
CountryIraq
DateApr 2003
Military BranchArmy
Type of investigationCID (criminal)
SubjectIll-treatment of detainees
Specific locationCamp Bucca Um Qasr
Pages73
Original SourceACLU Torture Database
Original URLshttps://www.thetorturedatabase.org/document/cid-report-death-0035-03-cid259-61144?search_url=search/apachesolr_search/15-6&search_args=page=8%26show=50
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/60/index.html b/CIVIC/investigations/60/index.html deleted file mode 100644 index 39bb543..0000000 --- a/CIVIC/investigations/60/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleCID Report (Death): 0114-04-CID259-80207
CountryIraq
DateMay 2004
Military BranchArmy
Type of investigationCID (criminal)
SubjectCivilian Casualty
Specific locationBaghdad
Pages152
Original SourceACLU Torture Database
Original URLshttps://www.thetorturedatabase.org/document/cid-report-death-0114-04-cid259-80207?search_url=search/apachesolr_search/15-6&search_args=page=5%26show=50
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/61/index.html b/CIVIC/investigations/61/index.html deleted file mode 100644 index e640f25..0000000 --- a/CIVIC/investigations/61/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleCID Report: 0164-04-CID259-80220
CountryIraq
DateJun 2004
Military BranchArmy
Type of investigationCID (criminal)
SubjectIll-treatment of detainees
Specific locationBaghdad
Pages26
Original SourceACLU Torture Database
Original URLshttps://www.thetorturedatabase.org/document/cid-report-0164-04-cid259-80220?search_url=search/apachesolr_search/15-6&search_args=page=7%26show=50
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/62/index.html b/CIVIC/investigations/62/index.html deleted file mode 100644 index 9344a37..0000000 --- a/CIVIC/investigations/62/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleCID Report (Death): 0071-2004-CID065-62019
Country Iraq
DateJun 2004
Military BranchArmy
Type of investigationCID (criminal)
SubjectIll-treatment of detainees
Specific locationCamp Cropper
Pages24
Original SourceACLU Torture Database
Original URLshttps://www.thetorturedatabase.org/document/cid-report-death-0071-2004-cid065-62019?search_url=search/apachesolr_search/15-6&search_args=page=5%26show=50
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/63/index.html b/CIVIC/investigations/63/index.html deleted file mode 100644 index 93ce117..0000000 --- a/CIVIC/investigations/63/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleCID Report (Death): 0326-2004-CID056-76236
CountryIraq
DateAug 2004
Military BranchArmy
Type of investigationCID (criminal)
SubjectCivilian Casualty
Specific location(precise location unclear)
Pages54
Original SourceACLU Torture Database
Original URLshttps://www.thetorturedatabase.org/document/cid-report-investigation-0326-2004-cid056-76236-5h9c1-0?search_url=search/apachesolr_search/15-6&search_args=page=5%26show=50
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/64/index.html b/CIVIC/investigations/64/index.html deleted file mode 100644 index dffd9eb..0000000 --- a/CIVIC/investigations/64/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleSuspected Law of Armed Conflict Violation Report
Country Iraq
DateOct 2005
Military BranchU.S. (JAG)
Type of investigationNCIS
SubjectCivilian Casualty
Specific locationFallujah
Pages7
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/FOIA_RR_Files/5 USC 552(a)(2)(D)Records/Incidents Reports or Actual Civilian Deaths in Iraq/Suspected Law of Armed Conflict Violation Report.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/65/index.html b/CIVIC/investigations/65/index.html deleted file mode 100644 index 63cf770..0000000 --- a/CIVIC/investigations/65/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleInvestigation into Operation Iron Triangle
Country Iraq
DateMay 2006
Military BranchArmy
Type of investigationAR 15-6 (see also parallel criminal investigation)
SubjectIll-treatment of detainees
Specific locationMuthana
Pages202
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/FOIA_RR.asp?Path=/5 USC 552(a)(2)(D)Records&Folder=Operation Iron Triangle
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/66/index.html b/CIVIC/investigations/66/index.html deleted file mode 100644 index 09bde49..0000000 --- a/CIVIC/investigations/66/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleInvestigation re: Alleged Theft of Detainee's Money
Country Afghanistan
DateJun 2004
Military BranchArmy
Type of investigationAR 15-6
SubjectIll-treatment of detainees
Specific locationFOB Eagle, Kandahar
Pages17
Original SourceCENTCOM FOIA
Original URLshttps://www.thetorturedatabase.org/document/ar-15-6-investigation-re-alleged-theft-detainees-money?search_url=search/apachesolr_search/15-6&search_args=page=1%26show=50
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/67/index.html b/CIVIC/investigations/67/index.html deleted file mode 100644 index 2b150a6..0000000 --- a/CIVIC/investigations/67/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleInvestigation into Civilian Casualties Resulting From An Engagement On 12 July 2007 In The New Baghdad District of Baghdad, Iraq
CountryIraq
DateJul 2007
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty
Specific location New Baghdad District of Baghdad
Pages43
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr_files/5 usc 552(a)(2)(d)records/death of reuters journalists/6--2nd brigade combat team 15-6 investigation.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/68/index.html b/CIVIC/investigations/68/index.html deleted file mode 100644 index ca83ae7..0000000 --- a/CIVIC/investigations/68/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleInvestigation into Conditions Surrounding the Possible Death of Two Reuters Reporters During an Engagement on 12 July 2007
CountryIraq
DateJul 2007
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty
Specific locationNew Baghdad District of Baghdad
Pages12
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/FOIA_RR_Files/5 USC 552(a)(2)(D)Records/Death of Reuters Journalists/5--1st Air Cavalry Brigade AR 15-6 Investigation.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/69/index.html b/CIVIC/investigations/69/index.html deleted file mode 100644 index 477676c..0000000 --- a/CIVIC/investigations/69/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Titlenan
Countrynan
Date
Military Branchnan
Type of investigationnan
Subjectnan
Specific locationnan
Pages0
Original SourceCENTCOM FOIA
Original URLsnan
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/7/index.html b/CIVIC/investigations/7/index.html deleted file mode 100644 index 6427ea1..0000000 --- a/CIVIC/investigations/7/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleCID Report: 0139-03-CID469-60206
CountryIraq
DateApr 2003
Military BranchArmy
Type of investigationCID (criminal)
SubjectIll-treatment of detainees
Specific locationSamarra
Pages200
Original SourceACLU Torture Database
Original URLshttps://www.thetorturedatabase.org/document/cid-report-0139-03-cid469-60206?search_url=search/apachesolr_search/15-6&search_args=page=7%26show=50
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/70/index.html b/CIVIC/investigations/70/index.html deleted file mode 100644 index 64a688f..0000000 --- a/CIVIC/investigations/70/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleRe-Investigation into Combat at COP Wanat on 13 July 2008
CountryAfghanistan
DateJul 2008
Military BranchNavy
Type of investigationJAGMAN
SubjectSoldier casualty
Specific locationWanat Village, Wygal District, Nuristan Province
Pages15
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/FOIA_RR.asp?Path=/5 USC 552(a)(2)(D)Records&Folder=WANAT Re-Investigation into the CombatActionWanatVillageWygalDistrictNuristanProvince Afgh on 13July2008
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/71/index.html b/CIVIC/investigations/71/index.html deleted file mode 100644 index f79b1ac..0000000 --- a/CIVIC/investigations/71/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleInvestigation into New Information Relative to Civilian Casualties from Engagement by U.S. and Afghan Forces 21-22 Aug 2008
CountryAfghanistan
DateAug 2008
Military BranchUSFOR
Type of investigationAR 15-6
SubjectCivilian Casualty
Specific locationAzizabad, Shindad District, Heart Province
Pages6
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/FOIA_RR_Files/5 USC 552(a)(2)(D)Records/Executive Summary of Shindand Investigation Herat Province Afghanistan/UNCLASS EXSUM.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/72/index.html b/CIVIC/investigations/72/index.html deleted file mode 100644 index bff6b4d..0000000 --- a/CIVIC/investigations/72/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleInvestigation re: COP Keating Attack of 3 Oct 09
CountryAfghanistan
DateOct 2009
Military BranchArmy
Type of investigationAR 15-6
SubjectSoldier casualty
Specific locationKamdesh, Nuristan
Pages45
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/FOIA_RR.asp?Area=&Path=/5 USC 552(a)(2)(D)Records&Folder=COP Keating
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/73/index.html b/CIVIC/investigations/73/index.html deleted file mode 100644 index b68c8e1..0000000 --- a/CIVIC/investigations/73/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleInvestigation of Gardez District Pakyta Province Operation on 12 Feb 2012
CountryAfghanistan
DateFeb 2010
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian casualty
Specific locationGardez District Pakyta,
Pages0
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/FOIA_RR.asp?Path=/5 USC 552(a)(2)(D)Records&Folder=AR15-6 Investigation of Gardez District Paktya Province Operation on 12 Feb 10
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/74/index.html b/CIVIC/investigations/74/index.html deleted file mode 100644 index dfa1b11..0000000 --- a/CIVIC/investigations/74/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleInvestigation of Air-to-Ground Uruzgan Incident 21 February 2010
CountryAfghanistan
DateFeb 2010
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty
Specific locationShahidi Hassas, Uruzgan District,
Pages0
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/FOIA_RR.asp?Path=/5 USC 552(a)(2)(D)Records&Folder=(Added 09JUN17) AR 15-6 Investigation - Uruzgan Incident 21 February 2010
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/75/index.html b/CIVIC/investigations/75/index.html deleted file mode 100644 index 118015a..0000000 --- a/CIVIC/investigations/75/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleInvestigation into Afghan National Civil Order Police HQ Attach 13 July 2010
CountryAfghanistan
DateJul 2010
Military BranchArmy
Type of investigationAR 15-6
SubjectSoldier casualty
Specific locationKandahar City
Pages215
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/FOIA_RR_Files/5 USC 552(a)(2)(D)Records/Afghan National Civil Order Police ANCOP HQ Attack 13 July 2010/Afghan National Civil Order Police ANCOP HQ Attack 13 July 2010.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/76/index.html b/CIVIC/investigations/76/index.html deleted file mode 100644 index 01602e9..0000000 --- a/CIVIC/investigations/76/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleInvestigation into Deaths of HT2 Justin J. McNeley and CS2 Jarod P. Newlove, U.S. Navy
CountryAfghanistan
DateJul 2010
Military BranchU.S. Air Force (preliminary inquiry) U.S. Army (15-6)
Type of investigationAR 15-6
SubjectSoldier casualty
Specific locationLogar
Pages89
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/FOIA_RR.asp?Path=/5 USC 552(a)(2)(D)Records/2. AR 15-6 Investigations/2016&Folder=AR 16-6 Investigation - McNeley and Newlove
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/77/index.html b/CIVIC/investigations/77/index.html deleted file mode 100644 index 8fbe304..0000000 --- a/CIVIC/investigations/77/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleInvestigation into Possible Friendly Fire Incident During Hostage Rescue Operation on 8 October 2010
CountryAfghanistan
DateOct 2010
Military BranchU.S.M.C.
Type of investigationAR 15-6
SubjectFriendly fire
Specific locationKonar Province
Pages758
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/FOIA_RR.asp?Path=/5 USC 552(a)(2)(D)Records&Folder=NORGROVE
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/78/index.html b/CIVIC/investigations/78/index.html deleted file mode 100644 index 8203100..0000000 --- a/CIVIC/investigations/78/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleInvestigation in Allegations of Civilian Casualty and/or Law of War Violations near Shah Wali Kot
CountryAfghanistan
DateNov 2010
Military BranchCFSOCC
Type of investigationAR 15-6
SubjectCivilian Casualty
Specific locationShah Wali Kot
Pages7
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/FOIA_RR_Files/5 USC 552(a)(2)(D)Records/Shah Wali Kot Afghanistan Investigation 2010/Shah Wali Kot, Afghanistan Investigation 2010.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/79/index.html b/CIVIC/investigations/79/index.html deleted file mode 100644 index 66b0446..0000000 --- a/CIVIC/investigations/79/index.html +++ /dev/null @@ -1,76 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleInvestigation of Incident Pertaining to Hostage Rescue on American Yacht Quest
CountrySomalia
DateFeb 2011
Military BranchArmy
Type of investigationAR 15-6
SubjectPiracy; Civilian Casualty; engagement in hostilities
Specific locationOff-coast
Pages0
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/FOIA_RR_Files/5 USC 552(a)(2)(D)Records/(Added 09JUN17) AR 15-6 Investigation - American Yacht Quest 1 March 2011/AR 15-6, American Yacht Quest Investigation, 1 MAR 11, Pgs 1-150__CLEAR.pdf -https://www3.centcom.mil/FOIA_RR_Files/5 USC 552(a)(2)(D)Records/(Added 09JUN17) AR 15-6 Investigation - American Yacht Quest 1 March 2011/AR 15-6, American Yacht Quest Investigation, 1 MAR 11, Pgs 151-313__CLEAR.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/8/index.html b/CIVIC/investigations/8/index.html deleted file mode 100644 index 8a9a662..0000000 --- a/CIVIC/investigations/8/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleCID Report: 0353-2003-CID093-45256
CountryIraq
DateApr 2003
Military BranchArmy
Type of investigationCID (criminal)
SubjectIll-treatment of detainees
Specific locationCamp Red, Baghdad
Pages36
Original SourceACLU Torture Database
Original URLshttps://www.thetorturedatabase.org/document/cid-report-0353-2003-cid093-45256?search_url=search/apachesolr_search/15-6&search_args=page=8%26show=50
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/80/index.html b/CIVIC/investigations/80/index.html deleted file mode 100644 index fd430a4..0000000 --- a/CIVIC/investigations/80/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleInvestigation into 23 Feb 11 Rolling Stone Article on Another Runaway General Army Deploys Psy-Ops on US Senators
CountryUSA
DateFeb 2011
Military BranchArmy
Type of investigationAR 15-6
SubjectImproper conduct
Specific locationnan
Pages133
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/FOIA_RR_Files/5 USC 552(a)(2)(D)Records/USFOR-A Investigation 23 Feb 11 Article on Another Runaway General Army Deploys Psy-Ops on US Senators-Uploaded-9 Aug 11/Rolling Stones Investigation.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/81/index.html b/CIVIC/investigations/81/index.html deleted file mode 100644 index 170d42c..0000000 --- a/CIVIC/investigations/81/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleInvestigation for the Civilian Death of Ahmed Omid Khpalwak on 28 July 2011
CountryAfghanistan
DateJul 2011
Military BranchUSFOR
Type of investigationAR 15-6
SubjectCivilian Casualty
Specific locationTarin Kowt, Uruzgan
Pages166
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/FOIA_RR_Files/5 USC 552(a)(2)(D)Records/Khpalwak Investigation/Khpalwak Investigation (Releasable).pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/82/index.html b/CIVIC/investigations/82/index.html deleted file mode 100644 index 2ded579..0000000 --- a/CIVIC/investigations/82/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleInvestigation into Facts and Circumstances Surrounding the Crash of CH-47 Aircraft on 6 August 2011
CountryAfghanistan
DateAug 2011
Military BranchArmy
Type of investigationAR 15-6
SubjectSoldier casualty
Specific locationWardak Province
Pages1436
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/FOIA_RR.asp?Path=/5 USC 552(a)(2)(D)Records&Folder=Wardak CH-47 Investigation
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/83/index.html b/CIVIC/investigations/83/index.html deleted file mode 100644 index a6fddb7..0000000 --- a/CIVIC/investigations/83/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleInvestigation of Death of PFC Dustin Napier 8 January 2012 at FOB Eagle
CountryAfghanistan
DateJan 2012
Military BranchArmy
Type of investigationAR 15-6
Subject‘Green-on-blue attack’; Soldier casualty
Specific locationFOB Eagle, Kandahar
Pages20
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/FOIA_RR_Files/5 USC 552(a)(2)(D)Records/(Added 11OCT17) FOIA 12-0208 Request Investigation Reports for Green on Blue Incidents (Jan-May 2012)/03_Green_on_Blue_AR_15_6_8_JAN_12_CLEAR.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/84/index.html b/CIVIC/investigations/84/index.html deleted file mode 100644 index 35c85b4..0000000 --- a/CIVIC/investigations/84/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleInvestigation into Allegation that US Service Members Improperly Disposed of Islamic Religious Materials
CountryAfghanistan
DateFeb 2012
Military BranchArmy
Type of investigationAR 15-6
SubjectImproper conduct
Specific locationBagram Airfield
Pages433
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/FOIA_RR.asp?Path=/5 USC 552(a)(2)(D)Records&Folder=Redacted 15-6 Investigation on the Improper Handling of the Quran
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/85/index.html b/CIVIC/investigations/85/index.html deleted file mode 100644 index 9687818..0000000 --- a/CIVIC/investigations/85/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleInvestigation Concerning a Green on Blue Engagement on 20 February 2012
CountryAfghanistan
DateFeb 2012
Military BranchArmy
Type of investigationAR 15-6
Subject‘Green-on-blue attack’; Soldier casualty
Specific locationRobat, Spin Boldak
Pages25
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/FOIA_RR_Files/5 USC 552(a)(2)(D)Records/(Added 11OCT17) FOIA 12-0208 Request Investigation Reports for Green on Blue Incidents (Jan-May 2012)/04_Green_on_Blue_AR_15_6_20_FEB_12_CLEAR.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/86/index.html b/CIVIC/investigations/86/index.html deleted file mode 100644 index 87062e3..0000000 --- a/CIVIC/investigations/86/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleInvestigation Into The Green on Blue Incident, FOB Connolly, 23 Feb 2012
CountryAfghanistan
DateFeb 2012
Military BranchArmy
Type of investigationAR 15-6
Subject‘Green-on-blue attack’; Soldier casualty
Specific locationFOB Connolly, Khugyani District, Nangarhar
Pages26
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/FOIA_RR_Files/5 USC 552(a)(2)(D)Records/(Added 11OCT17) FOIA 12-0208 Request Investigation Reports for Green on Blue Incidents (Jan-May 2012)/05_Green_on_Blue_AR_15_6_23_FEB_12_CLEAR.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/87/index.html b/CIVIC/investigations/87/index.html deleted file mode 100644 index ed7712e..0000000 --- a/CIVIC/investigations/87/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleInvestigation into the SSG Bales Incident 11 March 2012
CountryAfghanistan
DateMar 2012
Military BranchUSFOR
Type of investigationAR 15-6 (parallel CID criminal proceedings noted)
SubjectCivilian Casualty
Specific locationVillage Stability Platform (VSP) Belambai
Pages569
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/FOIA_RR_Files/5 USC 552(a)(2)(D)Records/AR 15-6 SSG Bales Incident 11 March 2012/AR 15-6 SSG Bales Incident, 11 March 2012.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/88/index.html b/CIVIC/investigations/88/index.html deleted file mode 100644 index c868d30..0000000 --- a/CIVIC/investigations/88/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleInvestigation into Death of Sgt. William R. Wilson III
CountryAfghanistan
DateMar 2012
Military BranchArmy
Type of investigationAR 15-6
Subject‘Green-on-blue attack’; Soldier casualty
Specific locationFOB Sharana, Sar Rowzah District, Paktika
Pages0
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/FOIA_RR_Files/5 USC 552(a)(2)(D)Records/(Added 11OCT17) FOIA 12-0208 Request Investigation Reports for Green on Blue Incidents (Jan-May 2012)/06_Green_on_Blue_AR_15_6_26_FEB_12_CLEAR.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/89/index.html b/CIVIC/investigations/89/index.html deleted file mode 100644 index 768c221..0000000 --- a/CIVIC/investigations/89/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleInvestigation Concerning the 1 March 2012 Green on Blue Incident at Combat Outpost (COP) Sangsar
CountryAfghanistan
DateMar 2012
Military BranchArmy
Type of investigationAR 15-6
Subject‘Green-on-blue attack’; Soldier casualty
Specific locationCOP Sangsar, Zharay District, Kandahar
Pages0
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr_files/5 usc 552(a)(2)(d)records/(added 11oct17) foia 12-0208 request investigation reports for green on blue incidents (jan-may 2012)/07_green_on_blue_ar_15_6_1_mar_12_clear.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/9/index.html b/CIVIC/investigations/9/index.html deleted file mode 100644 index 3b1e2c1..0000000 --- a/CIVIC/investigations/9/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleCID Report: 0050-03-CID349-59654
CountryIraq
DateMay 2003
Military BranchArmy
Type of investigationCID (criminal) (led to JAG prosecution)
SubjectIll-treatment of detainees
Specific locationAlbaygaih, Baghdad
Pages52
Original SourceACLU Torture Database
Original URLshttps://www.thetorturedatabase.org/document/cid-report-0050-03-cid349-59654?search_url=search/apachesolr_search/15-6&search_args=page=8%26show=50
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/90/index.html b/CIVIC/investigations/90/index.html deleted file mode 100644 index 8101574..0000000 --- a/CIVIC/investigations/90/index.html +++ /dev/null @@ -1,76 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleInvestigation into Alleged CIVCAS Incident, Pakitya Province, Afghanistan, 26 May 2012
CountryAfghanistan
DateMay 2012
Military BranchCJTF
Type of investigationAR 15-6
SubjectCivilian Casualty
Specific locationSuri Kheyl Village, Wazi Dzadran District, Pakitya
Pages66
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/FOIA_RR_Files/5 USC 552(a)(2)(D)Records/(Added 26JUN17) AR 15-6/DOC 3 pt 1 AR 15-6 pgs 001-084 CLEAR.pdf -https://www3.centcom.mil/FOIA_RR_Files/5 USC 552(a)(2)(D)Records/(Added 26JUN17) AR 15-6/DOC 3 pt 2 AR 15-6 pgs 085-168 CLEAR.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/91/index.html b/CIVIC/investigations/91/index.html deleted file mode 100644 index ee927c1..0000000 --- a/CIVIC/investigations/91/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleInvestigation into the Attack on the Camp Bastion, Leatherneck, and Shorabak (BLS) Complex, Helmand Province, Afghanistan
CountryAfghanistan
DateSep 2012
Military BranchArmy
Type of investigationAR 15-6
SubjectSoldier casualty
Specific locationHelmand Province
Pages0
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/FOIA_RR.asp?Path=/5 USC 552(a)(2)(D)Records&Folder=Camp Bastion Leatherneck Shorabak (BLS) Investigation
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/92/index.html b/CIVIC/investigations/92/index.html deleted file mode 100644 index e4da3f3..0000000 --- a/CIVIC/investigations/92/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleInvestigation of the Helicopter Incident on 17 December 2013
CountryAfghanistan
DateDec 2013
Military BranchArmy
Type of investigationAR 15-6
SubjectSoldier casualty
Specific locationShah Joy District, Zabul
Pages0
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/FOIA_RR_Files/5 USC 552(a)(2)(D)Records/AR 15-6 Investigation - Helicopter Incident 17 Dec 2013/AR15-6 Investigation- Helicopter Incident, 17 December 2013.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/93/index.html b/CIVIC/investigations/93/index.html deleted file mode 100644 index bc3de1c..0000000 --- a/CIVIC/investigations/93/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleInvestigation Into Coalition Airstrike In The Vicinity of Arghandab, Afghanistan on 9 June 2014
CountryAfghanistan
DateJun 2014
Military BranchArmy
Type of investigationAR 15-6
SubjectSoldier casualty
Specific locationArghandab
Pages0
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/FOIA_RR.asp?Path=/5 USC 552(a)(2)(D)Records&Folder=Friendly Fire Airstrike in the Vicinity of Arghandab Afghanistan 9 Jun 14
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/94/index.html b/CIVIC/investigations/94/index.html deleted file mode 100644 index 5117a4a..0000000 --- a/CIVIC/investigations/94/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleInvestigation into Marshal Fahim National Defence University Green on Blue 5 August 2014
CountryAfghanistan
DateAug 2014
Military BranchArmy
Type of investigationAR 15-6
Subject‘Green-on-blue attack’; Soldier casualty
Specific locationMarshal Fahim National Defence University, Kabul
Pages0
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/FOIA_RR.asp?Path=/5 USC 552(a)(2)(D)Records/2. AR 15-6 Investigations/2014&Folder=AR 15-6 Investigation - Marshal Fahim National Defense University Incident 5 Augut 2014
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/95/index.html b/CIVIC/investigations/95/index.html deleted file mode 100644 index f7072cb..0000000 --- a/CIVIC/investigations/95/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleInvestigation into Civilian Casualties (CIVCAS) Resulting from 5-6 November 2014 Airstrikes in the Vicinity of (IVO) Harim, Syria
CountrySyria
DateNov 2014
Military BranchArmy
Type of investigationAR 15-6
SubjectCivilian Casualty
Specific locationHarim City, Idlib Governate
Pages0
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/FOIA_RR_Files/5 USC 552(a)(2)(D)Records/CIVCAS Investigations/Harim City Syria 5-6 Nov 14/AR 15-6 Investigation - Harim Syria CIVCAS, 5-6 Nov 14.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/96/index.html b/CIVIC/investigations/96/index.html deleted file mode 100644 index 34555e3..0000000 --- a/CIVIC/investigations/96/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleInvestigation into Civilian Casualties (CIVCAS) on 13 March 2015 at ISIL Checkpoint, Hatra District, Iraq
CountryIraq
DateMar 2015
Military BranchAir Force
Type of investigationCommander-Directed Investigation (CDI)
SubjectCivilian Casualty
Specific locationHatra District
Pages59
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/FOIA_RR_Files/5 USC 552(a)(2)(D)Records/CIVCAS Investigations/Al Hatra District Iraq 13 Mar 15/Airstrike on ISIL Checkpoint, Al Hatra District Iraq CIVCAS, 13 Mar 15.pdf
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/97/index.html b/CIVIC/investigations/97/index.html deleted file mode 100644 index af45e00..0000000 --- a/CIVIC/investigations/97/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleInvestigation of the Airstrike on the Doctors Without Borders Trauma Center in Kunduz, Afghanistan on 3 October 2015
CountryAfghanistan
DateOct 2015
Military BranchUSFOR
Type of investigationAR 15-6
SubjectCivilian Casualty
Specific locationKunduz City
Pages120
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/FOIA_RR.asp?Path=/5 USC 552(a)(2)(D)Records&Folder=1. Airstrike on the MSF Trauma Center in Kunduz Afghanistan - 3 Oct 2015
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/98/index.html b/CIVIC/investigations/98/index.html deleted file mode 100644 index 812d9bf..0000000 --- a/CIVIC/investigations/98/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleInvestigation of Incident at FOB Robinson, 28-29 March 2006
CountryAfghanistan
DateMar 2006
Military BranchArmy
Type of investigationAR 15-6
SubjectFriendly Fire
Specific locationBagram Airfield
Pages196
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/FOIA_RR.asp?Path=/5 USC 552(a)(2)(D)Records/Friendly Fires&Folder=FOB Robinson
-
- - \ No newline at end of file diff --git a/CIVIC/investigations/99/index.html b/CIVIC/investigations/99/index.html deleted file mode 100644 index 9952735..0000000 --- a/CIVIC/investigations/99/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - -US Military Civilian Casualty Investigations - - - -
-

US Military Civilian Casualty Investigations

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleInvestigation into friendly fire incident on 6 April 2011
CountryAfghanistan
DateApr 2011
Military BranchArmy
Type of investigationAR 15-6
SubjectFriendly fire
Specific locationHelmand Province
Pages0
Original SourceCENTCOM FOIA
Original URLshttps://www3.centcom.mil/foia_rr/FOIA_RR.asp?Path=/5 USC 552(a)(2)(D)Records&Folder=Helmand Province (Afghanistan) Investigation April 6 2011
-
- - \ No newline at end of file diff --git a/CIVIC/static/DataTables/DataTables-1.10.18/css/dataTables.bootstrap.css b/CIVIC/static/DataTables/DataTables-1.10.18/css/dataTables.bootstrap.css deleted file mode 100644 index 6a9e753..0000000 --- a/CIVIC/static/DataTables/DataTables-1.10.18/css/dataTables.bootstrap.css +++ /dev/null @@ -1,187 +0,0 @@ -table.dataTable { - clear: both; - margin-top: 6px !important; - margin-bottom: 6px !important; - max-width: none !important; - border-collapse: separate !important; -} -table.dataTable td, -table.dataTable th { - -webkit-box-sizing: content-box; - box-sizing: content-box; -} -table.dataTable td.dataTables_empty, -table.dataTable th.dataTables_empty { - text-align: center; -} -table.dataTable.nowrap th, -table.dataTable.nowrap td { - white-space: nowrap; -} - -div.dataTables_wrapper div.dataTables_length label { - font-weight: normal; - text-align: left; - white-space: nowrap; -} -div.dataTables_wrapper div.dataTables_length select { - width: 75px; - display: inline-block; -} -div.dataTables_wrapper div.dataTables_filter { - text-align: right; -} -div.dataTables_wrapper div.dataTables_filter label { - font-weight: normal; - white-space: nowrap; - text-align: left; -} -div.dataTables_wrapper div.dataTables_filter input { - margin-left: 0.5em; - display: inline-block; - width: auto; -} -div.dataTables_wrapper div.dataTables_info { - padding-top: 8px; - white-space: nowrap; -} -div.dataTables_wrapper div.dataTables_paginate { - margin: 0; - white-space: nowrap; - text-align: right; -} -div.dataTables_wrapper div.dataTables_paginate ul.pagination { - margin: 2px 0; - white-space: nowrap; -} -div.dataTables_wrapper div.dataTables_processing { - position: absolute; - top: 50%; - left: 50%; - width: 200px; - margin-left: -100px; - margin-top: -26px; - text-align: center; - padding: 1em 0; -} - -table.dataTable thead > tr > th.sorting_asc, table.dataTable thead > tr > th.sorting_desc, table.dataTable thead > tr > th.sorting, -table.dataTable thead > tr > td.sorting_asc, -table.dataTable thead > tr > td.sorting_desc, -table.dataTable thead > tr > td.sorting { - padding-right: 30px; -} -table.dataTable thead > tr > th:active, -table.dataTable thead > tr > td:active { - outline: none; -} -table.dataTable thead .sorting, -table.dataTable thead .sorting_asc, -table.dataTable thead .sorting_desc, -table.dataTable thead .sorting_asc_disabled, -table.dataTable thead .sorting_desc_disabled { - cursor: pointer; - position: relative; -} -table.dataTable thead .sorting:after, -table.dataTable thead .sorting_asc:after, -table.dataTable thead .sorting_desc:after, -table.dataTable thead .sorting_asc_disabled:after, -table.dataTable thead .sorting_desc_disabled:after { - position: absolute; - bottom: 8px; - right: 8px; - display: block; - font-family: 'Glyphicons Halflings'; - opacity: 0.5; -} -table.dataTable thead .sorting:after { - opacity: 0.2; - content: "\e150"; - /* sort */ -} -table.dataTable thead .sorting_asc:after { - content: "\e155"; - /* sort-by-attributes */ -} -table.dataTable thead .sorting_desc:after { - content: "\e156"; - /* sort-by-attributes-alt */ -} -table.dataTable thead .sorting_asc_disabled:after, -table.dataTable thead .sorting_desc_disabled:after { - color: #eee; -} - -div.dataTables_scrollHead table.dataTable { - margin-bottom: 0 !important; -} - -div.dataTables_scrollBody > table { - border-top: none; - margin-top: 0 !important; - margin-bottom: 0 !important; -} -div.dataTables_scrollBody > table > thead .sorting:after, -div.dataTables_scrollBody > table > thead .sorting_asc:after, -div.dataTables_scrollBody > table > thead .sorting_desc:after { - display: none; -} -div.dataTables_scrollBody > table > tbody > tr:first-child > th, -div.dataTables_scrollBody > table > tbody > tr:first-child > td { - border-top: none; -} - -div.dataTables_scrollFoot > .dataTables_scrollFootInner { - box-sizing: content-box; -} -div.dataTables_scrollFoot > .dataTables_scrollFootInner > table { - margin-top: 0 !important; - border-top: none; -} - -@media screen and (max-width: 767px) { - div.dataTables_wrapper div.dataTables_length, - div.dataTables_wrapper div.dataTables_filter, - div.dataTables_wrapper div.dataTables_info, - div.dataTables_wrapper div.dataTables_paginate { - text-align: center; - } -} -table.dataTable.table-condensed > thead > tr > th { - padding-right: 20px; -} -table.dataTable.table-condensed .sorting:after, -table.dataTable.table-condensed .sorting_asc:after, -table.dataTable.table-condensed .sorting_desc:after { - top: 6px; - right: 6px; -} - -table.table-bordered.dataTable th, -table.table-bordered.dataTable td { - border-left-width: 0; -} -table.table-bordered.dataTable th:last-child, table.table-bordered.dataTable th:last-child, -table.table-bordered.dataTable td:last-child, -table.table-bordered.dataTable td:last-child { - border-right-width: 0; -} -table.table-bordered.dataTable tbody th, -table.table-bordered.dataTable tbody td { - border-bottom-width: 0; -} - -div.dataTables_scrollHead table.table-bordered { - border-bottom-width: 0; -} - -div.table-responsive > div.dataTables_wrapper > div.row { - margin: 0; -} -div.table-responsive > div.dataTables_wrapper > div.row > div[class^="col-"]:first-child { - padding-left: 0; -} -div.table-responsive > div.dataTables_wrapper > div.row > div[class^="col-"]:last-child { - padding-right: 0; -} diff --git a/CIVIC/static/DataTables/DataTables-1.10.18/css/dataTables.bootstrap.min.css b/CIVIC/static/DataTables/DataTables-1.10.18/css/dataTables.bootstrap.min.css deleted file mode 100644 index af6ecfe..0000000 --- a/CIVIC/static/DataTables/DataTables-1.10.18/css/dataTables.bootstrap.min.css +++ /dev/null @@ -1 +0,0 @@ -table.dataTable{clear:both;margin-top:6px !important;margin-bottom:6px !important;max-width:none !important;border-collapse:separate !important}table.dataTable td,table.dataTable th{-webkit-box-sizing:content-box;box-sizing:content-box}table.dataTable td.dataTables_empty,table.dataTable th.dataTables_empty{text-align:center}table.dataTable.nowrap th,table.dataTable.nowrap td{white-space:nowrap}div.dataTables_wrapper div.dataTables_length label{font-weight:normal;text-align:left;white-space:nowrap}div.dataTables_wrapper div.dataTables_length select{width:75px;display:inline-block}div.dataTables_wrapper div.dataTables_filter{text-align:right}div.dataTables_wrapper div.dataTables_filter label{font-weight:normal;white-space:nowrap;text-align:left}div.dataTables_wrapper div.dataTables_filter input{margin-left:0.5em;display:inline-block;width:auto}div.dataTables_wrapper div.dataTables_info{padding-top:8px;white-space:nowrap}div.dataTables_wrapper div.dataTables_paginate{margin:0;white-space:nowrap;text-align:right}div.dataTables_wrapper div.dataTables_paginate ul.pagination{margin:2px 0;white-space:nowrap}div.dataTables_wrapper div.dataTables_processing{position:absolute;top:50%;left:50%;width:200px;margin-left:-100px;margin-top:-26px;text-align:center;padding:1em 0}table.dataTable thead>tr>th.sorting_asc,table.dataTable thead>tr>th.sorting_desc,table.dataTable thead>tr>th.sorting,table.dataTable thead>tr>td.sorting_asc,table.dataTable thead>tr>td.sorting_desc,table.dataTable thead>tr>td.sorting{padding-right:30px}table.dataTable thead>tr>th:active,table.dataTable thead>tr>td:active{outline:none}table.dataTable thead .sorting,table.dataTable thead .sorting_asc,table.dataTable thead .sorting_desc,table.dataTable thead .sorting_asc_disabled,table.dataTable thead .sorting_desc_disabled{cursor:pointer;position:relative}table.dataTable thead .sorting:after,table.dataTable thead .sorting_asc:after,table.dataTable thead .sorting_desc:after,table.dataTable thead .sorting_asc_disabled:after,table.dataTable thead .sorting_desc_disabled:after{position:absolute;bottom:8px;right:8px;display:block;font-family:'Glyphicons Halflings';opacity:0.5}table.dataTable thead .sorting:after{opacity:0.2;content:"\e150"}table.dataTable thead .sorting_asc:after{content:"\e155"}table.dataTable thead .sorting_desc:after{content:"\e156"}table.dataTable thead .sorting_asc_disabled:after,table.dataTable thead .sorting_desc_disabled:after{color:#eee}div.dataTables_scrollHead table.dataTable{margin-bottom:0 !important}div.dataTables_scrollBody>table{border-top:none;margin-top:0 !important;margin-bottom:0 !important}div.dataTables_scrollBody>table>thead .sorting:after,div.dataTables_scrollBody>table>thead .sorting_asc:after,div.dataTables_scrollBody>table>thead .sorting_desc:after{display:none}div.dataTables_scrollBody>table>tbody>tr:first-child>th,div.dataTables_scrollBody>table>tbody>tr:first-child>td{border-top:none}div.dataTables_scrollFoot>.dataTables_scrollFootInner{box-sizing:content-box}div.dataTables_scrollFoot>.dataTables_scrollFootInner>table{margin-top:0 !important;border-top:none}@media screen and (max-width: 767px){div.dataTables_wrapper div.dataTables_length,div.dataTables_wrapper div.dataTables_filter,div.dataTables_wrapper div.dataTables_info,div.dataTables_wrapper div.dataTables_paginate{text-align:center}}table.dataTable.table-condensed>thead>tr>th{padding-right:20px}table.dataTable.table-condensed .sorting:after,table.dataTable.table-condensed .sorting_asc:after,table.dataTable.table-condensed .sorting_desc:after{top:6px;right:6px}table.table-bordered.dataTable th,table.table-bordered.dataTable td{border-left-width:0}table.table-bordered.dataTable th:last-child,table.table-bordered.dataTable th:last-child,table.table-bordered.dataTable td:last-child,table.table-bordered.dataTable td:last-child{border-right-width:0}table.table-bordered.dataTable tbody th,table.table-bordered.dataTable tbody td{border-bottom-width:0}div.dataTables_scrollHead table.table-bordered{border-bottom-width:0}div.table-responsive>div.dataTables_wrapper>div.row{margin:0}div.table-responsive>div.dataTables_wrapper>div.row>div[class^="col-"]:first-child{padding-left:0}div.table-responsive>div.dataTables_wrapper>div.row>div[class^="col-"]:last-child{padding-right:0} diff --git a/CIVIC/static/DataTables/DataTables-1.10.18/css/dataTables.bootstrap4.css b/CIVIC/static/DataTables/DataTables-1.10.18/css/dataTables.bootstrap4.css deleted file mode 100644 index 84ec203..0000000 --- a/CIVIC/static/DataTables/DataTables-1.10.18/css/dataTables.bootstrap4.css +++ /dev/null @@ -1,206 +0,0 @@ -table.dataTable { - clear: both; - margin-top: 6px !important; - margin-bottom: 6px !important; - max-width: none !important; - border-collapse: separate !important; - border-spacing: 0; -} -table.dataTable td, -table.dataTable th { - -webkit-box-sizing: content-box; - box-sizing: content-box; -} -table.dataTable td.dataTables_empty, -table.dataTable th.dataTables_empty { - text-align: center; -} -table.dataTable.nowrap th, -table.dataTable.nowrap td { - white-space: nowrap; -} - -div.dataTables_wrapper div.dataTables_length label { - font-weight: normal; - text-align: left; - white-space: nowrap; -} -div.dataTables_wrapper div.dataTables_length select { - width: auto; - display: inline-block; -} -div.dataTables_wrapper div.dataTables_filter { - text-align: right; -} -div.dataTables_wrapper div.dataTables_filter label { - font-weight: normal; - white-space: nowrap; - text-align: left; -} -div.dataTables_wrapper div.dataTables_filter input { - margin-left: 0.5em; - display: inline-block; - width: auto; -} -div.dataTables_wrapper div.dataTables_info { - padding-top: 0.85em; - white-space: nowrap; -} -div.dataTables_wrapper div.dataTables_paginate { - margin: 0; - white-space: nowrap; - text-align: right; -} -div.dataTables_wrapper div.dataTables_paginate ul.pagination { - margin: 2px 0; - white-space: nowrap; - justify-content: flex-end; -} -div.dataTables_wrapper div.dataTables_processing { - position: absolute; - top: 50%; - left: 50%; - width: 200px; - margin-left: -100px; - margin-top: -26px; - text-align: center; - padding: 1em 0; -} - -table.dataTable thead > tr > th.sorting_asc, table.dataTable thead > tr > th.sorting_desc, table.dataTable thead > tr > th.sorting, -table.dataTable thead > tr > td.sorting_asc, -table.dataTable thead > tr > td.sorting_desc, -table.dataTable thead > tr > td.sorting { - padding-right: 30px; -} -table.dataTable thead > tr > th:active, -table.dataTable thead > tr > td:active { - outline: none; -} -table.dataTable thead .sorting, -table.dataTable thead .sorting_asc, -table.dataTable thead .sorting_desc, -table.dataTable thead .sorting_asc_disabled, -table.dataTable thead .sorting_desc_disabled { - cursor: pointer; - position: relative; -} -table.dataTable thead .sorting:before, table.dataTable thead .sorting:after, -table.dataTable thead .sorting_asc:before, -table.dataTable thead .sorting_asc:after, -table.dataTable thead .sorting_desc:before, -table.dataTable thead .sorting_desc:after, -table.dataTable thead .sorting_asc_disabled:before, -table.dataTable thead .sorting_asc_disabled:after, -table.dataTable thead .sorting_desc_disabled:before, -table.dataTable thead .sorting_desc_disabled:after { - position: absolute; - bottom: 0.9em; - display: block; - opacity: 0.3; -} -table.dataTable thead .sorting:before, -table.dataTable thead .sorting_asc:before, -table.dataTable thead .sorting_desc:before, -table.dataTable thead .sorting_asc_disabled:before, -table.dataTable thead .sorting_desc_disabled:before { - right: 1em; - content: "\2191"; -} -table.dataTable thead .sorting:after, -table.dataTable thead .sorting_asc:after, -table.dataTable thead .sorting_desc:after, -table.dataTable thead .sorting_asc_disabled:after, -table.dataTable thead .sorting_desc_disabled:after { - right: 0.5em; - content: "\2193"; -} -table.dataTable thead .sorting_asc:before, -table.dataTable thead .sorting_desc:after { - opacity: 1; -} -table.dataTable thead .sorting_asc_disabled:before, -table.dataTable thead .sorting_desc_disabled:after { - opacity: 0; -} - -div.dataTables_scrollHead table.dataTable { - margin-bottom: 0 !important; -} - -div.dataTables_scrollBody table { - border-top: none; - margin-top: 0 !important; - margin-bottom: 0 !important; -} -div.dataTables_scrollBody table thead .sorting:before, -div.dataTables_scrollBody table thead .sorting_asc:before, -div.dataTables_scrollBody table thead .sorting_desc:before, -div.dataTables_scrollBody table thead .sorting:after, -div.dataTables_scrollBody table thead .sorting_asc:after, -div.dataTables_scrollBody table thead .sorting_desc:after { - display: none; -} -div.dataTables_scrollBody table tbody tr:first-child th, -div.dataTables_scrollBody table tbody tr:first-child td { - border-top: none; -} - -div.dataTables_scrollFoot > .dataTables_scrollFootInner { - box-sizing: content-box; -} -div.dataTables_scrollFoot > .dataTables_scrollFootInner > table { - margin-top: 0 !important; - border-top: none; -} - -@media screen and (max-width: 767px) { - div.dataTables_wrapper div.dataTables_length, - div.dataTables_wrapper div.dataTables_filter, - div.dataTables_wrapper div.dataTables_info, - div.dataTables_wrapper div.dataTables_paginate { - text-align: center; - } -} -table.dataTable.table-sm > thead > tr > th { - padding-right: 20px; -} -table.dataTable.table-sm .sorting:before, -table.dataTable.table-sm .sorting_asc:before, -table.dataTable.table-sm .sorting_desc:before { - top: 5px; - right: 0.85em; -} -table.dataTable.table-sm .sorting:after, -table.dataTable.table-sm .sorting_asc:after, -table.dataTable.table-sm .sorting_desc:after { - top: 5px; -} - -table.table-bordered.dataTable th, -table.table-bordered.dataTable td { - border-left-width: 0; -} -table.table-bordered.dataTable th:last-child, table.table-bordered.dataTable th:last-child, -table.table-bordered.dataTable td:last-child, -table.table-bordered.dataTable td:last-child { - border-right-width: 0; -} -table.table-bordered.dataTable tbody th, -table.table-bordered.dataTable tbody td { - border-bottom-width: 0; -} - -div.dataTables_scrollHead table.table-bordered { - border-bottom-width: 0; -} - -div.table-responsive > div.dataTables_wrapper > div.row { - margin: 0; -} -div.table-responsive > div.dataTables_wrapper > div.row > div[class^="col-"]:first-child { - padding-left: 0; -} -div.table-responsive > div.dataTables_wrapper > div.row > div[class^="col-"]:last-child { - padding-right: 0; -} diff --git a/CIVIC/static/DataTables/DataTables-1.10.18/css/dataTables.bootstrap4.min.css b/CIVIC/static/DataTables/DataTables-1.10.18/css/dataTables.bootstrap4.min.css deleted file mode 100644 index f1930be..0000000 --- a/CIVIC/static/DataTables/DataTables-1.10.18/css/dataTables.bootstrap4.min.css +++ /dev/null @@ -1 +0,0 @@ -table.dataTable{clear:both;margin-top:6px !important;margin-bottom:6px !important;max-width:none !important;border-collapse:separate !important;border-spacing:0}table.dataTable td,table.dataTable th{-webkit-box-sizing:content-box;box-sizing:content-box}table.dataTable td.dataTables_empty,table.dataTable th.dataTables_empty{text-align:center}table.dataTable.nowrap th,table.dataTable.nowrap td{white-space:nowrap}div.dataTables_wrapper div.dataTables_length label{font-weight:normal;text-align:left;white-space:nowrap}div.dataTables_wrapper div.dataTables_length select{width:auto;display:inline-block}div.dataTables_wrapper div.dataTables_filter{text-align:right}div.dataTables_wrapper div.dataTables_filter label{font-weight:normal;white-space:nowrap;text-align:left}div.dataTables_wrapper div.dataTables_filter input{margin-left:0.5em;display:inline-block;width:auto}div.dataTables_wrapper div.dataTables_info{padding-top:0.85em;white-space:nowrap}div.dataTables_wrapper div.dataTables_paginate{margin:0;white-space:nowrap;text-align:right}div.dataTables_wrapper div.dataTables_paginate ul.pagination{margin:2px 0;white-space:nowrap;justify-content:flex-end}div.dataTables_wrapper div.dataTables_processing{position:absolute;top:50%;left:50%;width:200px;margin-left:-100px;margin-top:-26px;text-align:center;padding:1em 0}table.dataTable thead>tr>th.sorting_asc,table.dataTable thead>tr>th.sorting_desc,table.dataTable thead>tr>th.sorting,table.dataTable thead>tr>td.sorting_asc,table.dataTable thead>tr>td.sorting_desc,table.dataTable thead>tr>td.sorting{padding-right:30px}table.dataTable thead>tr>th:active,table.dataTable thead>tr>td:active{outline:none}table.dataTable thead .sorting,table.dataTable thead .sorting_asc,table.dataTable thead .sorting_desc,table.dataTable thead .sorting_asc_disabled,table.dataTable thead .sorting_desc_disabled{cursor:pointer;position:relative}table.dataTable thead .sorting:before,table.dataTable thead .sorting:after,table.dataTable thead .sorting_asc:before,table.dataTable thead .sorting_asc:after,table.dataTable thead .sorting_desc:before,table.dataTable thead .sorting_desc:after,table.dataTable thead .sorting_asc_disabled:before,table.dataTable thead .sorting_asc_disabled:after,table.dataTable thead .sorting_desc_disabled:before,table.dataTable thead .sorting_desc_disabled:after{position:absolute;bottom:0.9em;display:block;opacity:0.3}table.dataTable thead .sorting:before,table.dataTable thead .sorting_asc:before,table.dataTable thead .sorting_desc:before,table.dataTable thead .sorting_asc_disabled:before,table.dataTable thead .sorting_desc_disabled:before{right:1em;content:"\2191"}table.dataTable thead .sorting:after,table.dataTable thead .sorting_asc:after,table.dataTable thead .sorting_desc:after,table.dataTable thead .sorting_asc_disabled:after,table.dataTable thead .sorting_desc_disabled:after{right:0.5em;content:"\2193"}table.dataTable thead .sorting_asc:before,table.dataTable thead .sorting_desc:after{opacity:1}table.dataTable thead .sorting_asc_disabled:before,table.dataTable thead .sorting_desc_disabled:after{opacity:0}div.dataTables_scrollHead table.dataTable{margin-bottom:0 !important}div.dataTables_scrollBody table{border-top:none;margin-top:0 !important;margin-bottom:0 !important}div.dataTables_scrollBody table thead .sorting:before,div.dataTables_scrollBody table thead .sorting_asc:before,div.dataTables_scrollBody table thead .sorting_desc:before,div.dataTables_scrollBody table thead .sorting:after,div.dataTables_scrollBody table thead .sorting_asc:after,div.dataTables_scrollBody table thead .sorting_desc:after{display:none}div.dataTables_scrollBody table tbody tr:first-child th,div.dataTables_scrollBody table tbody tr:first-child td{border-top:none}div.dataTables_scrollFoot>.dataTables_scrollFootInner{box-sizing:content-box}div.dataTables_scrollFoot>.dataTables_scrollFootInner>table{margin-top:0 !important;border-top:none}@media screen and (max-width: 767px){div.dataTables_wrapper div.dataTables_length,div.dataTables_wrapper div.dataTables_filter,div.dataTables_wrapper div.dataTables_info,div.dataTables_wrapper div.dataTables_paginate{text-align:center}}table.dataTable.table-sm>thead>tr>th{padding-right:20px}table.dataTable.table-sm .sorting:before,table.dataTable.table-sm .sorting_asc:before,table.dataTable.table-sm .sorting_desc:before{top:5px;right:0.85em}table.dataTable.table-sm .sorting:after,table.dataTable.table-sm .sorting_asc:after,table.dataTable.table-sm .sorting_desc:after{top:5px}table.table-bordered.dataTable th,table.table-bordered.dataTable td{border-left-width:0}table.table-bordered.dataTable th:last-child,table.table-bordered.dataTable th:last-child,table.table-bordered.dataTable td:last-child,table.table-bordered.dataTable td:last-child{border-right-width:0}table.table-bordered.dataTable tbody th,table.table-bordered.dataTable tbody td{border-bottom-width:0}div.dataTables_scrollHead table.table-bordered{border-bottom-width:0}div.table-responsive>div.dataTables_wrapper>div.row{margin:0}div.table-responsive>div.dataTables_wrapper>div.row>div[class^="col-"]:first-child{padding-left:0}div.table-responsive>div.dataTables_wrapper>div.row>div[class^="col-"]:last-child{padding-right:0} diff --git a/CIVIC/static/DataTables/DataTables-1.10.18/css/dataTables.foundation.css b/CIVIC/static/DataTables/DataTables-1.10.18/css/dataTables.foundation.css deleted file mode 100644 index 79848c9..0000000 --- a/CIVIC/static/DataTables/DataTables-1.10.18/css/dataTables.foundation.css +++ /dev/null @@ -1,118 +0,0 @@ -table.dataTable { - clear: both; - margin: 0.5em 0 !important; - max-width: none !important; - width: 100%; -} -table.dataTable td, -table.dataTable th { - -webkit-box-sizing: content-box; - box-sizing: content-box; -} -table.dataTable td.dataTables_empty, -table.dataTable th.dataTables_empty { - text-align: center; -} -table.dataTable.nowrap th, table.dataTable.nowrap td { - white-space: nowrap; -} - -div.dataTables_wrapper { - position: relative; -} -div.dataTables_wrapper div.dataTables_length label { - float: left; - text-align: left; - margin-bottom: 0; -} -div.dataTables_wrapper div.dataTables_length select { - width: 75px; - margin-bottom: 0; -} -div.dataTables_wrapper div.dataTables_filter label { - float: right; - margin-bottom: 0; -} -div.dataTables_wrapper div.dataTables_filter input { - display: inline-block !important; - width: auto !important; - margin-bottom: 0; - margin-left: 0.5em; -} -div.dataTables_wrapper div.dataTables_info { - padding-top: 2px; -} -div.dataTables_wrapper div.dataTables_paginate { - float: right; - margin: 0; -} -div.dataTables_wrapper div.dataTables_processing { - position: absolute; - top: 50%; - left: 50%; - width: 200px; - margin-left: -100px; - margin-top: -26px; - text-align: center; - padding: 1rem 0; -} - -table.dataTable thead > tr > th.sorting_asc, table.dataTable thead > tr > th.sorting_desc, table.dataTable thead > tr > th.sorting, -table.dataTable thead > tr > td.sorting_asc, -table.dataTable thead > tr > td.sorting_desc, -table.dataTable thead > tr > td.sorting { - padding-right: 1.5rem; -} -table.dataTable thead > tr > th:active, -table.dataTable thead > tr > td:active { - outline: none; -} -table.dataTable thead .sorting, -table.dataTable thead .sorting_asc, -table.dataTable thead .sorting_desc, -table.dataTable thead .sorting_asc_disabled, -table.dataTable thead .sorting_desc_disabled { - cursor: pointer; -} -table.dataTable thead .sorting, -table.dataTable thead .sorting_asc, -table.dataTable thead .sorting_desc, -table.dataTable thead .sorting_asc_disabled, -table.dataTable thead .sorting_desc_disabled { - background-repeat: no-repeat; - background-position: center right; -} -table.dataTable thead .sorting { - background-image: url("../images/sort_both.png"); -} -table.dataTable thead .sorting_asc { - background-image: url("../images/sort_asc.png"); -} -table.dataTable thead .sorting_desc { - background-image: url("../images/sort_desc.png"); -} -table.dataTable thead .sorting_asc_disabled { - background-image: url("../images/sort_asc_disabled.png"); -} -table.dataTable thead .sorting_desc_disabled { - background-image: url("../images/sort_desc_disabled.png"); -} - -div.dataTables_scrollHead table { - margin-bottom: 0 !important; -} - -div.dataTables_scrollBody table { - border-top: none; - margin-top: 0 !important; - margin-bottom: 0 !important; -} -div.dataTables_scrollBody table tbody tr:first-child th, -div.dataTables_scrollBody table tbody tr:first-child td { - border-top: none; -} - -div.dataTables_scrollFoot table { - margin-top: 0 !important; - border-top: none; -} diff --git a/CIVIC/static/DataTables/DataTables-1.10.18/css/dataTables.foundation.min.css b/CIVIC/static/DataTables/DataTables-1.10.18/css/dataTables.foundation.min.css deleted file mode 100644 index 73af41e..0000000 --- a/CIVIC/static/DataTables/DataTables-1.10.18/css/dataTables.foundation.min.css +++ /dev/null @@ -1 +0,0 @@ -table.dataTable{clear:both;margin:0.5em 0 !important;max-width:none !important;width:100%}table.dataTable td,table.dataTable th{-webkit-box-sizing:content-box;box-sizing:content-box}table.dataTable td.dataTables_empty,table.dataTable th.dataTables_empty{text-align:center}table.dataTable.nowrap th,table.dataTable.nowrap td{white-space:nowrap}div.dataTables_wrapper{position:relative}div.dataTables_wrapper div.dataTables_length label{float:left;text-align:left;margin-bottom:0}div.dataTables_wrapper div.dataTables_length select{width:75px;margin-bottom:0}div.dataTables_wrapper div.dataTables_filter label{float:right;margin-bottom:0}div.dataTables_wrapper div.dataTables_filter input{display:inline-block !important;width:auto !important;margin-bottom:0;margin-left:0.5em}div.dataTables_wrapper div.dataTables_info{padding-top:2px}div.dataTables_wrapper div.dataTables_paginate{float:right;margin:0}div.dataTables_wrapper div.dataTables_processing{position:absolute;top:50%;left:50%;width:200px;margin-left:-100px;margin-top:-26px;text-align:center;padding:1rem 0}table.dataTable thead>tr>th.sorting_asc,table.dataTable thead>tr>th.sorting_desc,table.dataTable thead>tr>th.sorting,table.dataTable thead>tr>td.sorting_asc,table.dataTable thead>tr>td.sorting_desc,table.dataTable thead>tr>td.sorting{padding-right:1.5rem}table.dataTable thead>tr>th:active,table.dataTable thead>tr>td:active{outline:none}table.dataTable thead .sorting,table.dataTable thead .sorting_asc,table.dataTable thead .sorting_desc,table.dataTable thead .sorting_asc_disabled,table.dataTable thead .sorting_desc_disabled{cursor:pointer}table.dataTable thead .sorting,table.dataTable thead .sorting_asc,table.dataTable thead .sorting_desc,table.dataTable thead .sorting_asc_disabled,table.dataTable thead .sorting_desc_disabled{background-repeat:no-repeat;background-position:center right}table.dataTable thead .sorting{background-image:url("../images/sort_both.png")}table.dataTable thead .sorting_asc{background-image:url("../images/sort_asc.png")}table.dataTable thead .sorting_desc{background-image:url("../images/sort_desc.png")}table.dataTable thead .sorting_asc_disabled{background-image:url("../images/sort_asc_disabled.png")}table.dataTable thead .sorting_desc_disabled{background-image:url("../images/sort_desc_disabled.png")}div.dataTables_scrollHead table{margin-bottom:0 !important}div.dataTables_scrollBody table{border-top:none;margin-top:0 !important;margin-bottom:0 !important}div.dataTables_scrollBody table tbody tr:first-child th,div.dataTables_scrollBody table tbody tr:first-child td{border-top:none}div.dataTables_scrollFoot table{margin-top:0 !important;border-top:none} diff --git a/CIVIC/static/DataTables/DataTables-1.10.18/css/dataTables.jqueryui.css b/CIVIC/static/DataTables/DataTables-1.10.18/css/dataTables.jqueryui.css deleted file mode 100644 index 5070b04..0000000 --- a/CIVIC/static/DataTables/DataTables-1.10.18/css/dataTables.jqueryui.css +++ /dev/null @@ -1,481 +0,0 @@ -/* - * Table styles - */ -table.dataTable { - width: 100%; - margin: 0 auto; - clear: both; - border-collapse: separate; - border-spacing: 0; - /* - * Header and footer styles - */ - /* - * Body styles - */ -} -table.dataTable thead th, -table.dataTable tfoot th { - font-weight: bold; -} -table.dataTable thead th, -table.dataTable thead td { - padding: 10px 18px; -} -table.dataTable thead th:active, -table.dataTable thead td:active { - outline: none; -} -table.dataTable tfoot th, -table.dataTable tfoot td { - padding: 10px 18px 6px 18px; -} -table.dataTable tbody tr { - background-color: #ffffff; -} -table.dataTable tbody tr.selected { - background-color: #B0BED9; -} -table.dataTable tbody th, -table.dataTable tbody td { - padding: 8px 10px; -} -table.dataTable.row-border tbody th, table.dataTable.row-border tbody td, table.dataTable.display tbody th, table.dataTable.display tbody td { - border-top: 1px solid #ddd; -} -table.dataTable.row-border tbody tr:first-child th, -table.dataTable.row-border tbody tr:first-child td, table.dataTable.display tbody tr:first-child th, -table.dataTable.display tbody tr:first-child td { - border-top: none; -} -table.dataTable.cell-border tbody th, table.dataTable.cell-border tbody td { - border-top: 1px solid #ddd; - border-right: 1px solid #ddd; -} -table.dataTable.cell-border tbody tr th:first-child, -table.dataTable.cell-border tbody tr td:first-child { - border-left: 1px solid #ddd; -} -table.dataTable.cell-border tbody tr:first-child th, -table.dataTable.cell-border tbody tr:first-child td { - border-top: none; -} -table.dataTable.stripe tbody tr.odd, table.dataTable.display tbody tr.odd { - background-color: #f9f9f9; -} -table.dataTable.stripe tbody tr.odd.selected, table.dataTable.display tbody tr.odd.selected { - background-color: #acbad4; -} -table.dataTable.hover tbody tr:hover, table.dataTable.display tbody tr:hover { - background-color: #f6f6f6; -} -table.dataTable.hover tbody tr:hover.selected, table.dataTable.display tbody tr:hover.selected { - background-color: #aab7d1; -} -table.dataTable.order-column tbody tr > .sorting_1, -table.dataTable.order-column tbody tr > .sorting_2, -table.dataTable.order-column tbody tr > .sorting_3, table.dataTable.display tbody tr > .sorting_1, -table.dataTable.display tbody tr > .sorting_2, -table.dataTable.display tbody tr > .sorting_3 { - background-color: #fafafa; -} -table.dataTable.order-column tbody tr.selected > .sorting_1, -table.dataTable.order-column tbody tr.selected > .sorting_2, -table.dataTable.order-column tbody tr.selected > .sorting_3, table.dataTable.display tbody tr.selected > .sorting_1, -table.dataTable.display tbody tr.selected > .sorting_2, -table.dataTable.display tbody tr.selected > .sorting_3 { - background-color: #acbad5; -} -table.dataTable.display tbody tr.odd > .sorting_1, table.dataTable.order-column.stripe tbody tr.odd > .sorting_1 { - background-color: #f1f1f1; -} -table.dataTable.display tbody tr.odd > .sorting_2, table.dataTable.order-column.stripe tbody tr.odd > .sorting_2 { - background-color: #f3f3f3; -} -table.dataTable.display tbody tr.odd > .sorting_3, table.dataTable.order-column.stripe tbody tr.odd > .sorting_3 { - background-color: whitesmoke; -} -table.dataTable.display tbody tr.odd.selected > .sorting_1, table.dataTable.order-column.stripe tbody tr.odd.selected > .sorting_1 { - background-color: #a6b4cd; -} -table.dataTable.display tbody tr.odd.selected > .sorting_2, table.dataTable.order-column.stripe tbody tr.odd.selected > .sorting_2 { - background-color: #a8b5cf; -} -table.dataTable.display tbody tr.odd.selected > .sorting_3, table.dataTable.order-column.stripe tbody tr.odd.selected > .sorting_3 { - background-color: #a9b7d1; -} -table.dataTable.display tbody tr.even > .sorting_1, table.dataTable.order-column.stripe tbody tr.even > .sorting_1 { - background-color: #fafafa; -} -table.dataTable.display tbody tr.even > .sorting_2, table.dataTable.order-column.stripe tbody tr.even > .sorting_2 { - background-color: #fcfcfc; -} -table.dataTable.display tbody tr.even > .sorting_3, table.dataTable.order-column.stripe tbody tr.even > .sorting_3 { - background-color: #fefefe; -} -table.dataTable.display tbody tr.even.selected > .sorting_1, table.dataTable.order-column.stripe tbody tr.even.selected > .sorting_1 { - background-color: #acbad5; -} -table.dataTable.display tbody tr.even.selected > .sorting_2, table.dataTable.order-column.stripe tbody tr.even.selected > .sorting_2 { - background-color: #aebcd6; -} -table.dataTable.display tbody tr.even.selected > .sorting_3, table.dataTable.order-column.stripe tbody tr.even.selected > .sorting_3 { - background-color: #afbdd8; -} -table.dataTable.display tbody tr:hover > .sorting_1, table.dataTable.order-column.hover tbody tr:hover > .sorting_1 { - background-color: #eaeaea; -} -table.dataTable.display tbody tr:hover > .sorting_2, table.dataTable.order-column.hover tbody tr:hover > .sorting_2 { - background-color: #ececec; -} -table.dataTable.display tbody tr:hover > .sorting_3, table.dataTable.order-column.hover tbody tr:hover > .sorting_3 { - background-color: #efefef; -} -table.dataTable.display tbody tr:hover.selected > .sorting_1, table.dataTable.order-column.hover tbody tr:hover.selected > .sorting_1 { - background-color: #a2aec7; -} -table.dataTable.display tbody tr:hover.selected > .sorting_2, table.dataTable.order-column.hover tbody tr:hover.selected > .sorting_2 { - background-color: #a3b0c9; -} -table.dataTable.display tbody tr:hover.selected > .sorting_3, table.dataTable.order-column.hover tbody tr:hover.selected > .sorting_3 { - background-color: #a5b2cb; -} -table.dataTable.no-footer { - border-bottom: 1px solid #111; -} -table.dataTable.nowrap th, table.dataTable.nowrap td { - white-space: nowrap; -} -table.dataTable.compact thead th, -table.dataTable.compact thead td { - padding: 4px 17px 4px 4px; -} -table.dataTable.compact tfoot th, -table.dataTable.compact tfoot td { - padding: 4px; -} -table.dataTable.compact tbody th, -table.dataTable.compact tbody td { - padding: 4px; -} -table.dataTable th.dt-left, -table.dataTable td.dt-left { - text-align: left; -} -table.dataTable th.dt-center, -table.dataTable td.dt-center, -table.dataTable td.dataTables_empty { - text-align: center; -} -table.dataTable th.dt-right, -table.dataTable td.dt-right { - text-align: right; -} -table.dataTable th.dt-justify, -table.dataTable td.dt-justify { - text-align: justify; -} -table.dataTable th.dt-nowrap, -table.dataTable td.dt-nowrap { - white-space: nowrap; -} -table.dataTable thead th.dt-head-left, -table.dataTable thead td.dt-head-left, -table.dataTable tfoot th.dt-head-left, -table.dataTable tfoot td.dt-head-left { - text-align: left; -} -table.dataTable thead th.dt-head-center, -table.dataTable thead td.dt-head-center, -table.dataTable tfoot th.dt-head-center, -table.dataTable tfoot td.dt-head-center { - text-align: center; -} -table.dataTable thead th.dt-head-right, -table.dataTable thead td.dt-head-right, -table.dataTable tfoot th.dt-head-right, -table.dataTable tfoot td.dt-head-right { - text-align: right; -} -table.dataTable thead th.dt-head-justify, -table.dataTable thead td.dt-head-justify, -table.dataTable tfoot th.dt-head-justify, -table.dataTable tfoot td.dt-head-justify { - text-align: justify; -} -table.dataTable thead th.dt-head-nowrap, -table.dataTable thead td.dt-head-nowrap, -table.dataTable tfoot th.dt-head-nowrap, -table.dataTable tfoot td.dt-head-nowrap { - white-space: nowrap; -} -table.dataTable tbody th.dt-body-left, -table.dataTable tbody td.dt-body-left { - text-align: left; -} -table.dataTable tbody th.dt-body-center, -table.dataTable tbody td.dt-body-center { - text-align: center; -} -table.dataTable tbody th.dt-body-right, -table.dataTable tbody td.dt-body-right { - text-align: right; -} -table.dataTable tbody th.dt-body-justify, -table.dataTable tbody td.dt-body-justify { - text-align: justify; -} -table.dataTable tbody th.dt-body-nowrap, -table.dataTable tbody td.dt-body-nowrap { - white-space: nowrap; -} - -table.dataTable, -table.dataTable th, -table.dataTable td { - box-sizing: content-box; -} - -/* - * Control feature layout - */ -.dataTables_wrapper { - position: relative; - clear: both; - *zoom: 1; - zoom: 1; -} -.dataTables_wrapper .dataTables_length { - float: left; -} -.dataTables_wrapper .dataTables_filter { - float: right; - text-align: right; -} -.dataTables_wrapper .dataTables_filter input { - margin-left: 0.5em; -} -.dataTables_wrapper .dataTables_info { - clear: both; - float: left; - padding-top: 0.755em; -} -.dataTables_wrapper .dataTables_paginate { - float: right; - text-align: right; - padding-top: 0.25em; -} -.dataTables_wrapper .dataTables_paginate .paginate_button { - box-sizing: border-box; - display: inline-block; - min-width: 1.5em; - padding: 0.5em 1em; - margin-left: 2px; - text-align: center; - text-decoration: none !important; - cursor: pointer; - *cursor: hand; - color: #333 !important; - border: 1px solid transparent; - border-radius: 2px; -} -.dataTables_wrapper .dataTables_paginate .paginate_button.current, .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover { - color: #333 !important; - border: 1px solid #979797; - background-color: white; - background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, white), color-stop(100%, #dcdcdc)); - /* Chrome,Safari4+ */ - background: -webkit-linear-gradient(top, white 0%, #dcdcdc 100%); - /* Chrome10+,Safari5.1+ */ - background: -moz-linear-gradient(top, white 0%, #dcdcdc 100%); - /* FF3.6+ */ - background: -ms-linear-gradient(top, white 0%, #dcdcdc 100%); - /* IE10+ */ - background: -o-linear-gradient(top, white 0%, #dcdcdc 100%); - /* Opera 11.10+ */ - background: linear-gradient(to bottom, white 0%, #dcdcdc 100%); - /* W3C */ -} -.dataTables_wrapper .dataTables_paginate .paginate_button.disabled, .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover, .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active { - cursor: default; - color: #666 !important; - border: 1px solid transparent; - background: transparent; - box-shadow: none; -} -.dataTables_wrapper .dataTables_paginate .paginate_button:hover { - color: white !important; - border: 1px solid #111; - background-color: #585858; - background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #585858), color-stop(100%, #111)); - /* Chrome,Safari4+ */ - background: -webkit-linear-gradient(top, #585858 0%, #111 100%); - /* Chrome10+,Safari5.1+ */ - background: -moz-linear-gradient(top, #585858 0%, #111 100%); - /* FF3.6+ */ - background: -ms-linear-gradient(top, #585858 0%, #111 100%); - /* IE10+ */ - background: -o-linear-gradient(top, #585858 0%, #111 100%); - /* Opera 11.10+ */ - background: linear-gradient(to bottom, #585858 0%, #111 100%); - /* W3C */ -} -.dataTables_wrapper .dataTables_paginate .paginate_button:active { - outline: none; - background-color: #2b2b2b; - background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #2b2b2b), color-stop(100%, #0c0c0c)); - /* Chrome,Safari4+ */ - background: -webkit-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%); - /* Chrome10+,Safari5.1+ */ - background: -moz-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%); - /* FF3.6+ */ - background: -ms-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%); - /* IE10+ */ - background: -o-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%); - /* Opera 11.10+ */ - background: linear-gradient(to bottom, #2b2b2b 0%, #0c0c0c 100%); - /* W3C */ - box-shadow: inset 0 0 3px #111; -} -.dataTables_wrapper .dataTables_paginate .ellipsis { - padding: 0 1em; -} -.dataTables_wrapper .dataTables_processing { - position: absolute; - top: 50%; - left: 50%; - width: 100%; - height: 40px; - margin-left: -50%; - margin-top: -25px; - padding-top: 20px; - text-align: center; - font-size: 1.2em; - background-color: white; - background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(25%, rgba(255, 255, 255, 0.9)), color-stop(75%, rgba(255, 255, 255, 0.9)), color-stop(100%, rgba(255, 255, 255, 0))); - background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%); - background: -moz-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%); - background: -ms-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%); - background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%); - background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%); -} -.dataTables_wrapper .dataTables_length, -.dataTables_wrapper .dataTables_filter, -.dataTables_wrapper .dataTables_info, -.dataTables_wrapper .dataTables_processing, -.dataTables_wrapper .dataTables_paginate { - color: #333; -} -.dataTables_wrapper .dataTables_scroll { - clear: both; -} -.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody { - *margin-top: -1px; - -webkit-overflow-scrolling: touch; -} -.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > thead > tr > th, .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > thead > tr > td, .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > tbody > tr > th, .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > tbody > tr > td { - vertical-align: middle; -} -.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > thead > tr > th > div.dataTables_sizing, -.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > thead > tr > td > div.dataTables_sizing, .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > tbody > tr > th > div.dataTables_sizing, -.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > tbody > tr > td > div.dataTables_sizing { - height: 0; - overflow: hidden; - margin: 0 !important; - padding: 0 !important; -} -.dataTables_wrapper.no-footer .dataTables_scrollBody { - border-bottom: 1px solid #111; -} -.dataTables_wrapper.no-footer div.dataTables_scrollHead table.dataTable, -.dataTables_wrapper.no-footer div.dataTables_scrollBody > table { - border-bottom: none; -} -.dataTables_wrapper:after { - visibility: hidden; - display: block; - content: ""; - clear: both; - height: 0; -} - -@media screen and (max-width: 767px) { - .dataTables_wrapper .dataTables_info, - .dataTables_wrapper .dataTables_paginate { - float: none; - text-align: center; - } - .dataTables_wrapper .dataTables_paginate { - margin-top: 0.5em; - } -} -@media screen and (max-width: 640px) { - .dataTables_wrapper .dataTables_length, - .dataTables_wrapper .dataTables_filter { - float: none; - text-align: center; - } - .dataTables_wrapper .dataTables_filter { - margin-top: 0.5em; - } -} -table.dataTable thead th div.DataTables_sort_wrapper { - position: relative; -} -table.dataTable thead th div.DataTables_sort_wrapper span { - position: absolute; - top: 50%; - margin-top: -8px; - right: -18px; -} -table.dataTable thead th.ui-state-default, -table.dataTable tfoot th.ui-state-default { - border-left-width: 0; -} -table.dataTable thead th.ui-state-default:first-child, -table.dataTable tfoot th.ui-state-default:first-child { - border-left-width: 1px; -} - -/* - * Control feature layout - */ -.dataTables_wrapper .dataTables_paginate .fg-button { - box-sizing: border-box; - display: inline-block; - min-width: 1.5em; - padding: 0.5em; - margin-left: 2px; - text-align: center; - text-decoration: none !important; - cursor: pointer; - *cursor: hand; - border: 1px solid transparent; -} -.dataTables_wrapper .dataTables_paginate .fg-button:active { - outline: none; -} -.dataTables_wrapper .dataTables_paginate .fg-button:first-child { - border-top-left-radius: 3px; - border-bottom-left-radius: 3px; -} -.dataTables_wrapper .dataTables_paginate .fg-button:last-child { - border-top-right-radius: 3px; - border-bottom-right-radius: 3px; -} -.dataTables_wrapper .ui-widget-header { - font-weight: normal; -} -.dataTables_wrapper .ui-toolbar { - padding: 8px; -} -.dataTables_wrapper.no-footer .dataTables_scrollBody { - border-bottom: none; -} -.dataTables_wrapper .dataTables_length, -.dataTables_wrapper .dataTables_filter, -.dataTables_wrapper .dataTables_info, -.dataTables_wrapper .dataTables_processing, -.dataTables_wrapper .dataTables_paginate { - color: inherit; -} diff --git a/CIVIC/static/DataTables/DataTables-1.10.18/css/dataTables.jqueryui.min.css b/CIVIC/static/DataTables/DataTables-1.10.18/css/dataTables.jqueryui.min.css deleted file mode 100644 index 4e99c26..0000000 --- a/CIVIC/static/DataTables/DataTables-1.10.18/css/dataTables.jqueryui.min.css +++ /dev/null @@ -1 +0,0 @@ -table.dataTable{width:100%;margin:0 auto;clear:both;border-collapse:separate;border-spacing:0}table.dataTable thead th,table.dataTable tfoot th{font-weight:bold}table.dataTable thead th,table.dataTable thead td{padding:10px 18px}table.dataTable thead th:active,table.dataTable thead td:active{outline:none}table.dataTable tfoot th,table.dataTable tfoot td{padding:10px 18px 6px 18px}table.dataTable tbody tr{background-color:#ffffff}table.dataTable tbody tr.selected{background-color:#B0BED9}table.dataTable tbody th,table.dataTable tbody td{padding:8px 10px}table.dataTable.row-border tbody th,table.dataTable.row-border tbody td,table.dataTable.display tbody th,table.dataTable.display tbody td{border-top:1px solid #ddd}table.dataTable.row-border tbody tr:first-child th,table.dataTable.row-border tbody tr:first-child td,table.dataTable.display tbody tr:first-child th,table.dataTable.display tbody tr:first-child td{border-top:none}table.dataTable.cell-border tbody th,table.dataTable.cell-border tbody td{border-top:1px solid #ddd;border-right:1px solid #ddd}table.dataTable.cell-border tbody tr th:first-child,table.dataTable.cell-border tbody tr td:first-child{border-left:1px solid #ddd}table.dataTable.cell-border tbody tr:first-child th,table.dataTable.cell-border tbody tr:first-child td{border-top:none}table.dataTable.stripe tbody tr.odd,table.dataTable.display tbody tr.odd{background-color:#f9f9f9}table.dataTable.stripe tbody tr.odd.selected,table.dataTable.display tbody tr.odd.selected{background-color:#acbad4}table.dataTable.hover tbody tr:hover,table.dataTable.display tbody tr:hover{background-color:#f6f6f6}table.dataTable.hover tbody tr:hover.selected,table.dataTable.display tbody tr:hover.selected{background-color:#aab7d1}table.dataTable.order-column tbody tr>.sorting_1,table.dataTable.order-column tbody tr>.sorting_2,table.dataTable.order-column tbody tr>.sorting_3,table.dataTable.display tbody tr>.sorting_1,table.dataTable.display tbody tr>.sorting_2,table.dataTable.display tbody tr>.sorting_3{background-color:#fafafa}table.dataTable.order-column tbody tr.selected>.sorting_1,table.dataTable.order-column tbody tr.selected>.sorting_2,table.dataTable.order-column tbody tr.selected>.sorting_3,table.dataTable.display tbody tr.selected>.sorting_1,table.dataTable.display tbody tr.selected>.sorting_2,table.dataTable.display tbody tr.selected>.sorting_3{background-color:#acbad5}table.dataTable.display tbody tr.odd>.sorting_1,table.dataTable.order-column.stripe tbody tr.odd>.sorting_1{background-color:#f1f1f1}table.dataTable.display tbody tr.odd>.sorting_2,table.dataTable.order-column.stripe tbody tr.odd>.sorting_2{background-color:#f3f3f3}table.dataTable.display tbody tr.odd>.sorting_3,table.dataTable.order-column.stripe tbody tr.odd>.sorting_3{background-color:whitesmoke}table.dataTable.display tbody tr.odd.selected>.sorting_1,table.dataTable.order-column.stripe tbody tr.odd.selected>.sorting_1{background-color:#a6b4cd}table.dataTable.display tbody tr.odd.selected>.sorting_2,table.dataTable.order-column.stripe tbody tr.odd.selected>.sorting_2{background-color:#a8b5cf}table.dataTable.display tbody tr.odd.selected>.sorting_3,table.dataTable.order-column.stripe tbody tr.odd.selected>.sorting_3{background-color:#a9b7d1}table.dataTable.display tbody tr.even>.sorting_1,table.dataTable.order-column.stripe tbody tr.even>.sorting_1{background-color:#fafafa}table.dataTable.display tbody tr.even>.sorting_2,table.dataTable.order-column.stripe tbody tr.even>.sorting_2{background-color:#fcfcfc}table.dataTable.display tbody tr.even>.sorting_3,table.dataTable.order-column.stripe tbody tr.even>.sorting_3{background-color:#fefefe}table.dataTable.display tbody tr.even.selected>.sorting_1,table.dataTable.order-column.stripe tbody tr.even.selected>.sorting_1{background-color:#acbad5}table.dataTable.display tbody tr.even.selected>.sorting_2,table.dataTable.order-column.stripe tbody tr.even.selected>.sorting_2{background-color:#aebcd6}table.dataTable.display tbody tr.even.selected>.sorting_3,table.dataTable.order-column.stripe tbody tr.even.selected>.sorting_3{background-color:#afbdd8}table.dataTable.display tbody tr:hover>.sorting_1,table.dataTable.order-column.hover tbody tr:hover>.sorting_1{background-color:#eaeaea}table.dataTable.display tbody tr:hover>.sorting_2,table.dataTable.order-column.hover tbody tr:hover>.sorting_2{background-color:#ececec}table.dataTable.display tbody tr:hover>.sorting_3,table.dataTable.order-column.hover tbody tr:hover>.sorting_3{background-color:#efefef}table.dataTable.display tbody tr:hover.selected>.sorting_1,table.dataTable.order-column.hover tbody tr:hover.selected>.sorting_1{background-color:#a2aec7}table.dataTable.display tbody tr:hover.selected>.sorting_2,table.dataTable.order-column.hover tbody tr:hover.selected>.sorting_2{background-color:#a3b0c9}table.dataTable.display tbody tr:hover.selected>.sorting_3,table.dataTable.order-column.hover tbody tr:hover.selected>.sorting_3{background-color:#a5b2cb}table.dataTable.no-footer{border-bottom:1px solid #111}table.dataTable.nowrap th,table.dataTable.nowrap td{white-space:nowrap}table.dataTable.compact thead th,table.dataTable.compact thead td{padding:4px 17px 4px 4px}table.dataTable.compact tfoot th,table.dataTable.compact tfoot td{padding:4px}table.dataTable.compact tbody th,table.dataTable.compact tbody td{padding:4px}table.dataTable th.dt-left,table.dataTable td.dt-left{text-align:left}table.dataTable th.dt-center,table.dataTable td.dt-center,table.dataTable td.dataTables_empty{text-align:center}table.dataTable th.dt-right,table.dataTable td.dt-right{text-align:right}table.dataTable th.dt-justify,table.dataTable td.dt-justify{text-align:justify}table.dataTable th.dt-nowrap,table.dataTable td.dt-nowrap{white-space:nowrap}table.dataTable thead th.dt-head-left,table.dataTable thead td.dt-head-left,table.dataTable tfoot th.dt-head-left,table.dataTable tfoot td.dt-head-left{text-align:left}table.dataTable thead th.dt-head-center,table.dataTable thead td.dt-head-center,table.dataTable tfoot th.dt-head-center,table.dataTable tfoot td.dt-head-center{text-align:center}table.dataTable thead th.dt-head-right,table.dataTable thead td.dt-head-right,table.dataTable tfoot th.dt-head-right,table.dataTable tfoot td.dt-head-right{text-align:right}table.dataTable thead th.dt-head-justify,table.dataTable thead td.dt-head-justify,table.dataTable tfoot th.dt-head-justify,table.dataTable tfoot td.dt-head-justify{text-align:justify}table.dataTable thead th.dt-head-nowrap,table.dataTable thead td.dt-head-nowrap,table.dataTable tfoot th.dt-head-nowrap,table.dataTable tfoot td.dt-head-nowrap{white-space:nowrap}table.dataTable tbody th.dt-body-left,table.dataTable tbody td.dt-body-left{text-align:left}table.dataTable tbody th.dt-body-center,table.dataTable tbody td.dt-body-center{text-align:center}table.dataTable tbody th.dt-body-right,table.dataTable tbody td.dt-body-right{text-align:right}table.dataTable tbody th.dt-body-justify,table.dataTable tbody td.dt-body-justify{text-align:justify}table.dataTable tbody th.dt-body-nowrap,table.dataTable tbody td.dt-body-nowrap{white-space:nowrap}table.dataTable,table.dataTable th,table.dataTable td{box-sizing:content-box}.dataTables_wrapper{position:relative;clear:both;*zoom:1;zoom:1}.dataTables_wrapper .dataTables_length{float:left}.dataTables_wrapper .dataTables_filter{float:right;text-align:right}.dataTables_wrapper .dataTables_filter input{margin-left:0.5em}.dataTables_wrapper .dataTables_info{clear:both;float:left;padding-top:0.755em}.dataTables_wrapper .dataTables_paginate{float:right;text-align:right;padding-top:0.25em}.dataTables_wrapper .dataTables_paginate .paginate_button{box-sizing:border-box;display:inline-block;min-width:1.5em;padding:0.5em 1em;margin-left:2px;text-align:center;text-decoration:none !important;cursor:pointer;*cursor:hand;color:#333 !important;border:1px solid transparent;border-radius:2px}.dataTables_wrapper .dataTables_paginate .paginate_button.current,.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover{color:#333 !important;border:1px solid #979797;background-color:white;background:-webkit-gradient(linear, left top, left bottom, color-stop(0%, #fff), color-stop(100%, #dcdcdc));background:-webkit-linear-gradient(top, #fff 0%, #dcdcdc 100%);background:-moz-linear-gradient(top, #fff 0%, #dcdcdc 100%);background:-ms-linear-gradient(top, #fff 0%, #dcdcdc 100%);background:-o-linear-gradient(top, #fff 0%, #dcdcdc 100%);background:linear-gradient(to bottom, #fff 0%, #dcdcdc 100%)}.dataTables_wrapper .dataTables_paginate .paginate_button.disabled,.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover,.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active{cursor:default;color:#666 !important;border:1px solid transparent;background:transparent;box-shadow:none}.dataTables_wrapper .dataTables_paginate .paginate_button:hover{color:white !important;border:1px solid #111;background-color:#585858;background:-webkit-gradient(linear, left top, left bottom, color-stop(0%, #585858), color-stop(100%, #111));background:-webkit-linear-gradient(top, #585858 0%, #111 100%);background:-moz-linear-gradient(top, #585858 0%, #111 100%);background:-ms-linear-gradient(top, #585858 0%, #111 100%);background:-o-linear-gradient(top, #585858 0%, #111 100%);background:linear-gradient(to bottom, #585858 0%, #111 100%)}.dataTables_wrapper .dataTables_paginate .paginate_button:active{outline:none;background-color:#2b2b2b;background:-webkit-gradient(linear, left top, left bottom, color-stop(0%, #2b2b2b), color-stop(100%, #0c0c0c));background:-webkit-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);background:-moz-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);background:-ms-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);background:-o-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);background:linear-gradient(to bottom, #2b2b2b 0%, #0c0c0c 100%);box-shadow:inset 0 0 3px #111}.dataTables_wrapper .dataTables_paginate .ellipsis{padding:0 1em}.dataTables_wrapper .dataTables_processing{position:absolute;top:50%;left:50%;width:100%;height:40px;margin-left:-50%;margin-top:-25px;padding-top:20px;text-align:center;font-size:1.2em;background-color:white;background:-webkit-gradient(linear, left top, right top, color-stop(0%, rgba(255,255,255,0)), color-stop(25%, rgba(255,255,255,0.9)), color-stop(75%, rgba(255,255,255,0.9)), color-stop(100%, rgba(255,255,255,0)));background:-webkit-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 25%, rgba(255,255,255,0.9) 75%, rgba(255,255,255,0) 100%);background:-moz-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 25%, rgba(255,255,255,0.9) 75%, rgba(255,255,255,0) 100%);background:-ms-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 25%, rgba(255,255,255,0.9) 75%, rgba(255,255,255,0) 100%);background:-o-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 25%, rgba(255,255,255,0.9) 75%, rgba(255,255,255,0) 100%);background:linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 25%, rgba(255,255,255,0.9) 75%, rgba(255,255,255,0) 100%)}.dataTables_wrapper .dataTables_length,.dataTables_wrapper .dataTables_filter,.dataTables_wrapper .dataTables_info,.dataTables_wrapper .dataTables_processing,.dataTables_wrapper .dataTables_paginate{color:#333}.dataTables_wrapper .dataTables_scroll{clear:both}.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody{*margin-top:-1px;-webkit-overflow-scrolling:touch}.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>thead>tr>th,.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>thead>tr>td,.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>tbody>tr>th,.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>tbody>tr>td{vertical-align:middle}.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>thead>tr>th>div.dataTables_sizing,.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>thead>tr>td>div.dataTables_sizing,.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>tbody>tr>th>div.dataTables_sizing,.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>tbody>tr>td>div.dataTables_sizing{height:0;overflow:hidden;margin:0 !important;padding:0 !important}.dataTables_wrapper.no-footer .dataTables_scrollBody{border-bottom:1px solid #111}.dataTables_wrapper.no-footer div.dataTables_scrollHead table.dataTable,.dataTables_wrapper.no-footer div.dataTables_scrollBody>table{border-bottom:none}.dataTables_wrapper:after{visibility:hidden;display:block;content:"";clear:both;height:0}@media screen and (max-width: 767px){.dataTables_wrapper .dataTables_info,.dataTables_wrapper .dataTables_paginate{float:none;text-align:center}.dataTables_wrapper .dataTables_paginate{margin-top:0.5em}}@media screen and (max-width: 640px){.dataTables_wrapper .dataTables_length,.dataTables_wrapper .dataTables_filter{float:none;text-align:center}.dataTables_wrapper .dataTables_filter{margin-top:0.5em}}table.dataTable thead th div.DataTables_sort_wrapper{position:relative}table.dataTable thead th div.DataTables_sort_wrapper span{position:absolute;top:50%;margin-top:-8px;right:-18px}table.dataTable thead th.ui-state-default,table.dataTable tfoot th.ui-state-default{border-left-width:0}table.dataTable thead th.ui-state-default:first-child,table.dataTable tfoot th.ui-state-default:first-child{border-left-width:1px}.dataTables_wrapper .dataTables_paginate .fg-button{box-sizing:border-box;display:inline-block;min-width:1.5em;padding:0.5em;margin-left:2px;text-align:center;text-decoration:none !important;cursor:pointer;*cursor:hand;border:1px solid transparent}.dataTables_wrapper .dataTables_paginate .fg-button:active{outline:none}.dataTables_wrapper .dataTables_paginate .fg-button:first-child{border-top-left-radius:3px;border-bottom-left-radius:3px}.dataTables_wrapper .dataTables_paginate .fg-button:last-child{border-top-right-radius:3px;border-bottom-right-radius:3px}.dataTables_wrapper .ui-widget-header{font-weight:normal}.dataTables_wrapper .ui-toolbar{padding:8px}.dataTables_wrapper.no-footer .dataTables_scrollBody{border-bottom:none}.dataTables_wrapper .dataTables_length,.dataTables_wrapper .dataTables_filter,.dataTables_wrapper .dataTables_info,.dataTables_wrapper .dataTables_processing,.dataTables_wrapper .dataTables_paginate{color:inherit} diff --git a/CIVIC/static/DataTables/DataTables-1.10.18/css/dataTables.semanticui.css b/CIVIC/static/DataTables/DataTables-1.10.18/css/dataTables.semanticui.css deleted file mode 100644 index 077db2a..0000000 --- a/CIVIC/static/DataTables/DataTables-1.10.18/css/dataTables.semanticui.css +++ /dev/null @@ -1,102 +0,0 @@ -/* - * Styling for DataTables with Semantic UI - */ -table.dataTable.table { - margin: 0; -} -table.dataTable.table thead th, -table.dataTable.table thead td { - position: relative; -} -table.dataTable.table thead th.sorting, table.dataTable.table thead th.sorting_asc, table.dataTable.table thead th.sorting_desc, -table.dataTable.table thead td.sorting, -table.dataTable.table thead td.sorting_asc, -table.dataTable.table thead td.sorting_desc { - padding-right: 20px; -} -table.dataTable.table thead th.sorting:after, table.dataTable.table thead th.sorting_asc:after, table.dataTable.table thead th.sorting_desc:after, -table.dataTable.table thead td.sorting:after, -table.dataTable.table thead td.sorting_asc:after, -table.dataTable.table thead td.sorting_desc:after { - position: absolute; - top: 12px; - right: 8px; - display: block; - font-family: Icons; -} -table.dataTable.table thead th.sorting:after, -table.dataTable.table thead td.sorting:after { - content: "\f0dc"; - color: #ddd; - font-size: 0.8em; -} -table.dataTable.table thead th.sorting_asc:after, -table.dataTable.table thead td.sorting_asc:after { - content: "\f0de"; -} -table.dataTable.table thead th.sorting_desc:after, -table.dataTable.table thead td.sorting_desc:after { - content: "\f0dd"; -} -table.dataTable.table td, -table.dataTable.table th { - -webkit-box-sizing: content-box; - box-sizing: content-box; -} -table.dataTable.table td.dataTables_empty, -table.dataTable.table th.dataTables_empty { - text-align: center; -} -table.dataTable.table.nowrap th, -table.dataTable.table.nowrap td { - white-space: nowrap; -} - -div.dataTables_wrapper div.dataTables_length select { - vertical-align: middle; - min-height: 2.7142em; -} -div.dataTables_wrapper div.dataTables_length .ui.selection.dropdown { - min-width: 0; -} -div.dataTables_wrapper div.dataTables_filter span.input { - margin-left: 0.5em; -} -div.dataTables_wrapper div.dataTables_info { - padding-top: 13px; - white-space: nowrap; -} -div.dataTables_wrapper div.dataTables_processing { - position: absolute; - top: 50%; - left: 50%; - width: 200px; - margin-left: -100px; - text-align: center; -} -div.dataTables_wrapper div.row.dt-table { - padding: 0; -} -div.dataTables_wrapper div.dataTables_scrollHead table.dataTable { - border-bottom-right-radius: 0; - border-bottom-left-radius: 0; - border-bottom: none; -} -div.dataTables_wrapper div.dataTables_scrollBody thead .sorting:after, -div.dataTables_wrapper div.dataTables_scrollBody thead .sorting_asc:after, -div.dataTables_wrapper div.dataTables_scrollBody thead .sorting_desc:after { - display: none; -} -div.dataTables_wrapper div.dataTables_scrollBody table.dataTable { - border-radius: 0; - border-top: none; - border-bottom-width: 0; -} -div.dataTables_wrapper div.dataTables_scrollBody table.dataTable.no-footer { - border-bottom-width: 1px; -} -div.dataTables_wrapper div.dataTables_scrollFoot table.dataTable { - border-top-right-radius: 0; - border-top-left-radius: 0; - border-top: none; -} diff --git a/CIVIC/static/DataTables/DataTables-1.10.18/css/dataTables.semanticui.min.css b/CIVIC/static/DataTables/DataTables-1.10.18/css/dataTables.semanticui.min.css deleted file mode 100644 index fcffe0c..0000000 --- a/CIVIC/static/DataTables/DataTables-1.10.18/css/dataTables.semanticui.min.css +++ /dev/null @@ -1 +0,0 @@ -table.dataTable.table{margin:0}table.dataTable.table thead th,table.dataTable.table thead td{position:relative}table.dataTable.table thead th.sorting,table.dataTable.table thead th.sorting_asc,table.dataTable.table thead th.sorting_desc,table.dataTable.table thead td.sorting,table.dataTable.table thead td.sorting_asc,table.dataTable.table thead td.sorting_desc{padding-right:20px}table.dataTable.table thead th.sorting:after,table.dataTable.table thead th.sorting_asc:after,table.dataTable.table thead th.sorting_desc:after,table.dataTable.table thead td.sorting:after,table.dataTable.table thead td.sorting_asc:after,table.dataTable.table thead td.sorting_desc:after{position:absolute;top:12px;right:8px;display:block;font-family:Icons}table.dataTable.table thead th.sorting:after,table.dataTable.table thead td.sorting:after{content:"\f0dc";color:#ddd;font-size:0.8em}table.dataTable.table thead th.sorting_asc:after,table.dataTable.table thead td.sorting_asc:after{content:"\f0de"}table.dataTable.table thead th.sorting_desc:after,table.dataTable.table thead td.sorting_desc:after{content:"\f0dd"}table.dataTable.table td,table.dataTable.table th{-webkit-box-sizing:content-box;box-sizing:content-box}table.dataTable.table td.dataTables_empty,table.dataTable.table th.dataTables_empty{text-align:center}table.dataTable.table.nowrap th,table.dataTable.table.nowrap td{white-space:nowrap}div.dataTables_wrapper div.dataTables_length select{vertical-align:middle;min-height:2.7142em}div.dataTables_wrapper div.dataTables_length .ui.selection.dropdown{min-width:0}div.dataTables_wrapper div.dataTables_filter span.input{margin-left:0.5em}div.dataTables_wrapper div.dataTables_info{padding-top:13px;white-space:nowrap}div.dataTables_wrapper div.dataTables_processing{position:absolute;top:50%;left:50%;width:200px;margin-left:-100px;text-align:center}div.dataTables_wrapper div.row.dt-table{padding:0}div.dataTables_wrapper div.dataTables_scrollHead table.dataTable{border-bottom-right-radius:0;border-bottom-left-radius:0;border-bottom:none}div.dataTables_wrapper div.dataTables_scrollBody thead .sorting:after,div.dataTables_wrapper div.dataTables_scrollBody thead .sorting_asc:after,div.dataTables_wrapper div.dataTables_scrollBody thead .sorting_desc:after{display:none}div.dataTables_wrapper div.dataTables_scrollBody table.dataTable{border-radius:0;border-top:none;border-bottom-width:0}div.dataTables_wrapper div.dataTables_scrollBody table.dataTable.no-footer{border-bottom-width:1px}div.dataTables_wrapper div.dataTables_scrollFoot table.dataTable{border-top-right-radius:0;border-top-left-radius:0;border-top:none} diff --git a/CIVIC/static/DataTables/DataTables-1.10.18/css/jquery.dataTables.css b/CIVIC/static/DataTables/DataTables-1.10.18/css/jquery.dataTables.css deleted file mode 100644 index 760eccb..0000000 --- a/CIVIC/static/DataTables/DataTables-1.10.18/css/jquery.dataTables.css +++ /dev/null @@ -1,448 +0,0 @@ -/* - * Table styles - */ -table.dataTable { - width: 100%; - margin: 0 auto; - clear: both; - border-collapse: separate; - border-spacing: 0; - /* - * Header and footer styles - */ - /* - * Body styles - */ -} -table.dataTable thead th, -table.dataTable tfoot th { - font-weight: bold; -} -table.dataTable thead th, -table.dataTable thead td { - padding: 10px 18px; - border-bottom: 1px solid #111; -} -table.dataTable thead th:active, -table.dataTable thead td:active { - outline: none; -} -table.dataTable tfoot th, -table.dataTable tfoot td { - padding: 10px 18px 6px 18px; - border-top: 1px solid #111; -} -table.dataTable thead .sorting, -table.dataTable thead .sorting_asc, -table.dataTable thead .sorting_desc, -table.dataTable thead .sorting_asc_disabled, -table.dataTable thead .sorting_desc_disabled { - cursor: pointer; - *cursor: hand; - background-repeat: no-repeat; - background-position: center right; -} -table.dataTable thead .sorting { - background-image: url("../images/sort_both.png"); -} -table.dataTable thead .sorting_asc { - background-image: url("../images/sort_asc.png"); -} -table.dataTable thead .sorting_desc { - background-image: url("../images/sort_desc.png"); -} -table.dataTable thead .sorting_asc_disabled { - background-image: url("../images/sort_asc_disabled.png"); -} -table.dataTable thead .sorting_desc_disabled { - background-image: url("../images/sort_desc_disabled.png"); -} -table.dataTable tbody tr { - background-color: #ffffff; -} -table.dataTable tbody tr.selected { - background-color: #B0BED9; -} -table.dataTable tbody th, -table.dataTable tbody td { - padding: 8px 10px; -} -table.dataTable.row-border tbody th, table.dataTable.row-border tbody td, table.dataTable.display tbody th, table.dataTable.display tbody td { - border-top: 1px solid #ddd; -} -table.dataTable.row-border tbody tr:first-child th, -table.dataTable.row-border tbody tr:first-child td, table.dataTable.display tbody tr:first-child th, -table.dataTable.display tbody tr:first-child td { - border-top: none; -} -table.dataTable.cell-border tbody th, table.dataTable.cell-border tbody td { - border-top: 1px solid #ddd; - border-right: 1px solid #ddd; -} -table.dataTable.cell-border tbody tr th:first-child, -table.dataTable.cell-border tbody tr td:first-child { - border-left: 1px solid #ddd; -} -table.dataTable.cell-border tbody tr:first-child th, -table.dataTable.cell-border tbody tr:first-child td { - border-top: none; -} -table.dataTable.stripe tbody tr.odd, table.dataTable.display tbody tr.odd { - background-color: #f9f9f9; -} -table.dataTable.stripe tbody tr.odd.selected, table.dataTable.display tbody tr.odd.selected { - background-color: #acbad4; -} -table.dataTable.hover tbody tr:hover, table.dataTable.display tbody tr:hover { - background-color: #f6f6f6; -} -table.dataTable.hover tbody tr:hover.selected, table.dataTable.display tbody tr:hover.selected { - background-color: #aab7d1; -} -table.dataTable.order-column tbody tr > .sorting_1, -table.dataTable.order-column tbody tr > .sorting_2, -table.dataTable.order-column tbody tr > .sorting_3, table.dataTable.display tbody tr > .sorting_1, -table.dataTable.display tbody tr > .sorting_2, -table.dataTable.display tbody tr > .sorting_3 { - background-color: #fafafa; -} -table.dataTable.order-column tbody tr.selected > .sorting_1, -table.dataTable.order-column tbody tr.selected > .sorting_2, -table.dataTable.order-column tbody tr.selected > .sorting_3, table.dataTable.display tbody tr.selected > .sorting_1, -table.dataTable.display tbody tr.selected > .sorting_2, -table.dataTable.display tbody tr.selected > .sorting_3 { - background-color: #acbad5; -} -table.dataTable.display tbody tr.odd > .sorting_1, table.dataTable.order-column.stripe tbody tr.odd > .sorting_1 { - background-color: #f1f1f1; -} -table.dataTable.display tbody tr.odd > .sorting_2, table.dataTable.order-column.stripe tbody tr.odd > .sorting_2 { - background-color: #f3f3f3; -} -table.dataTable.display tbody tr.odd > .sorting_3, table.dataTable.order-column.stripe tbody tr.odd > .sorting_3 { - background-color: whitesmoke; -} -table.dataTable.display tbody tr.odd.selected > .sorting_1, table.dataTable.order-column.stripe tbody tr.odd.selected > .sorting_1 { - background-color: #a6b4cd; -} -table.dataTable.display tbody tr.odd.selected > .sorting_2, table.dataTable.order-column.stripe tbody tr.odd.selected > .sorting_2 { - background-color: #a8b5cf; -} -table.dataTable.display tbody tr.odd.selected > .sorting_3, table.dataTable.order-column.stripe tbody tr.odd.selected > .sorting_3 { - background-color: #a9b7d1; -} -table.dataTable.display tbody tr.even > .sorting_1, table.dataTable.order-column.stripe tbody tr.even > .sorting_1 { - background-color: #fafafa; -} -table.dataTable.display tbody tr.even > .sorting_2, table.dataTable.order-column.stripe tbody tr.even > .sorting_2 { - background-color: #fcfcfc; -} -table.dataTable.display tbody tr.even > .sorting_3, table.dataTable.order-column.stripe tbody tr.even > .sorting_3 { - background-color: #fefefe; -} -table.dataTable.display tbody tr.even.selected > .sorting_1, table.dataTable.order-column.stripe tbody tr.even.selected > .sorting_1 { - background-color: #acbad5; -} -table.dataTable.display tbody tr.even.selected > .sorting_2, table.dataTable.order-column.stripe tbody tr.even.selected > .sorting_2 { - background-color: #aebcd6; -} -table.dataTable.display tbody tr.even.selected > .sorting_3, table.dataTable.order-column.stripe tbody tr.even.selected > .sorting_3 { - background-color: #afbdd8; -} -table.dataTable.display tbody tr:hover > .sorting_1, table.dataTable.order-column.hover tbody tr:hover > .sorting_1 { - background-color: #eaeaea; -} -table.dataTable.display tbody tr:hover > .sorting_2, table.dataTable.order-column.hover tbody tr:hover > .sorting_2 { - background-color: #ececec; -} -table.dataTable.display tbody tr:hover > .sorting_3, table.dataTable.order-column.hover tbody tr:hover > .sorting_3 { - background-color: #efefef; -} -table.dataTable.display tbody tr:hover.selected > .sorting_1, table.dataTable.order-column.hover tbody tr:hover.selected > .sorting_1 { - background-color: #a2aec7; -} -table.dataTable.display tbody tr:hover.selected > .sorting_2, table.dataTable.order-column.hover tbody tr:hover.selected > .sorting_2 { - background-color: #a3b0c9; -} -table.dataTable.display tbody tr:hover.selected > .sorting_3, table.dataTable.order-column.hover tbody tr:hover.selected > .sorting_3 { - background-color: #a5b2cb; -} -table.dataTable.no-footer { - border-bottom: 1px solid #111; -} -table.dataTable.nowrap th, table.dataTable.nowrap td { - white-space: nowrap; -} -table.dataTable.compact thead th, -table.dataTable.compact thead td { - padding: 4px 17px 4px 4px; -} -table.dataTable.compact tfoot th, -table.dataTable.compact tfoot td { - padding: 4px; -} -table.dataTable.compact tbody th, -table.dataTable.compact tbody td { - padding: 4px; -} -table.dataTable th.dt-left, -table.dataTable td.dt-left { - text-align: left; -} -table.dataTable th.dt-center, -table.dataTable td.dt-center, -table.dataTable td.dataTables_empty { - text-align: center; -} -table.dataTable th.dt-right, -table.dataTable td.dt-right { - text-align: right; -} -table.dataTable th.dt-justify, -table.dataTable td.dt-justify { - text-align: justify; -} -table.dataTable th.dt-nowrap, -table.dataTable td.dt-nowrap { - white-space: nowrap; -} -table.dataTable thead th.dt-head-left, -table.dataTable thead td.dt-head-left, -table.dataTable tfoot th.dt-head-left, -table.dataTable tfoot td.dt-head-left { - text-align: left; -} -table.dataTable thead th.dt-head-center, -table.dataTable thead td.dt-head-center, -table.dataTable tfoot th.dt-head-center, -table.dataTable tfoot td.dt-head-center { - text-align: center; -} -table.dataTable thead th.dt-head-right, -table.dataTable thead td.dt-head-right, -table.dataTable tfoot th.dt-head-right, -table.dataTable tfoot td.dt-head-right { - text-align: right; -} -table.dataTable thead th.dt-head-justify, -table.dataTable thead td.dt-head-justify, -table.dataTable tfoot th.dt-head-justify, -table.dataTable tfoot td.dt-head-justify { - text-align: justify; -} -table.dataTable thead th.dt-head-nowrap, -table.dataTable thead td.dt-head-nowrap, -table.dataTable tfoot th.dt-head-nowrap, -table.dataTable tfoot td.dt-head-nowrap { - white-space: nowrap; -} -table.dataTable tbody th.dt-body-left, -table.dataTable tbody td.dt-body-left { - text-align: left; -} -table.dataTable tbody th.dt-body-center, -table.dataTable tbody td.dt-body-center { - text-align: center; -} -table.dataTable tbody th.dt-body-right, -table.dataTable tbody td.dt-body-right { - text-align: right; -} -table.dataTable tbody th.dt-body-justify, -table.dataTable tbody td.dt-body-justify { - text-align: justify; -} -table.dataTable tbody th.dt-body-nowrap, -table.dataTable tbody td.dt-body-nowrap { - white-space: nowrap; -} - -table.dataTable, -table.dataTable th, -table.dataTable td { - box-sizing: content-box; -} - -/* - * Control feature layout - */ -.dataTables_wrapper { - position: relative; - clear: both; - *zoom: 1; - zoom: 1; -} -.dataTables_wrapper .dataTables_length { - float: left; -} -.dataTables_wrapper .dataTables_filter { - float: right; - text-align: right; -} -.dataTables_wrapper .dataTables_filter input { - margin-left: 0.5em; -} -.dataTables_wrapper .dataTables_info { - clear: both; - float: left; - padding-top: 0.755em; -} -.dataTables_wrapper .dataTables_paginate { - float: right; - text-align: right; - padding-top: 0.25em; -} -.dataTables_wrapper .dataTables_paginate .paginate_button { - box-sizing: border-box; - display: inline-block; - min-width: 1.5em; - padding: 0.5em 1em; - margin-left: 2px; - text-align: center; - text-decoration: none !important; - cursor: pointer; - *cursor: hand; - color: #333 !important; - border: 1px solid transparent; - border-radius: 2px; -} -.dataTables_wrapper .dataTables_paginate .paginate_button.current, .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover { - color: #333 !important; - border: 1px solid #979797; - background-color: white; - background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, white), color-stop(100%, #dcdcdc)); - /* Chrome,Safari4+ */ - background: -webkit-linear-gradient(top, white 0%, #dcdcdc 100%); - /* Chrome10+,Safari5.1+ */ - background: -moz-linear-gradient(top, white 0%, #dcdcdc 100%); - /* FF3.6+ */ - background: -ms-linear-gradient(top, white 0%, #dcdcdc 100%); - /* IE10+ */ - background: -o-linear-gradient(top, white 0%, #dcdcdc 100%); - /* Opera 11.10+ */ - background: linear-gradient(to bottom, white 0%, #dcdcdc 100%); - /* W3C */ -} -.dataTables_wrapper .dataTables_paginate .paginate_button.disabled, .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover, .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active { - cursor: default; - color: #666 !important; - border: 1px solid transparent; - background: transparent; - box-shadow: none; -} -.dataTables_wrapper .dataTables_paginate .paginate_button:hover { - color: white !important; - border: 1px solid #111; - background-color: #585858; - background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #585858), color-stop(100%, #111)); - /* Chrome,Safari4+ */ - background: -webkit-linear-gradient(top, #585858 0%, #111 100%); - /* Chrome10+,Safari5.1+ */ - background: -moz-linear-gradient(top, #585858 0%, #111 100%); - /* FF3.6+ */ - background: -ms-linear-gradient(top, #585858 0%, #111 100%); - /* IE10+ */ - background: -o-linear-gradient(top, #585858 0%, #111 100%); - /* Opera 11.10+ */ - background: linear-gradient(to bottom, #585858 0%, #111 100%); - /* W3C */ -} -.dataTables_wrapper .dataTables_paginate .paginate_button:active { - outline: none; - background-color: #2b2b2b; - background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #2b2b2b), color-stop(100%, #0c0c0c)); - /* Chrome,Safari4+ */ - background: -webkit-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%); - /* Chrome10+,Safari5.1+ */ - background: -moz-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%); - /* FF3.6+ */ - background: -ms-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%); - /* IE10+ */ - background: -o-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%); - /* Opera 11.10+ */ - background: linear-gradient(to bottom, #2b2b2b 0%, #0c0c0c 100%); - /* W3C */ - box-shadow: inset 0 0 3px #111; -} -.dataTables_wrapper .dataTables_paginate .ellipsis { - padding: 0 1em; -} -.dataTables_wrapper .dataTables_processing { - position: absolute; - top: 50%; - left: 50%; - width: 100%; - height: 40px; - margin-left: -50%; - margin-top: -25px; - padding-top: 20px; - text-align: center; - font-size: 1.2em; - background-color: white; - background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(25%, rgba(255, 255, 255, 0.9)), color-stop(75%, rgba(255, 255, 255, 0.9)), color-stop(100%, rgba(255, 255, 255, 0))); - background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%); - background: -moz-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%); - background: -ms-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%); - background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%); - background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%); -} -.dataTables_wrapper .dataTables_length, -.dataTables_wrapper .dataTables_filter, -.dataTables_wrapper .dataTables_info, -.dataTables_wrapper .dataTables_processing, -.dataTables_wrapper .dataTables_paginate { - color: #333; -} -.dataTables_wrapper .dataTables_scroll { - clear: both; -} -.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody { - *margin-top: -1px; - -webkit-overflow-scrolling: touch; -} -.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > thead > tr > th, .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > thead > tr > td, .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > tbody > tr > th, .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > tbody > tr > td { - vertical-align: middle; -} -.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > thead > tr > th > div.dataTables_sizing, -.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > thead > tr > td > div.dataTables_sizing, .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > tbody > tr > th > div.dataTables_sizing, -.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > tbody > tr > td > div.dataTables_sizing { - height: 0; - overflow: hidden; - margin: 0 !important; - padding: 0 !important; -} -.dataTables_wrapper.no-footer .dataTables_scrollBody { - border-bottom: 1px solid #111; -} -.dataTables_wrapper.no-footer div.dataTables_scrollHead table.dataTable, -.dataTables_wrapper.no-footer div.dataTables_scrollBody > table { - border-bottom: none; -} -.dataTables_wrapper:after { - visibility: hidden; - display: block; - content: ""; - clear: both; - height: 0; -} - -@media screen and (max-width: 767px) { - .dataTables_wrapper .dataTables_info, - .dataTables_wrapper .dataTables_paginate { - float: none; - text-align: center; - } - .dataTables_wrapper .dataTables_paginate { - margin-top: 0.5em; - } -} -@media screen and (max-width: 640px) { - .dataTables_wrapper .dataTables_length, - .dataTables_wrapper .dataTables_filter { - float: none; - text-align: center; - } - .dataTables_wrapper .dataTables_filter { - margin-top: 0.5em; - } -} diff --git a/CIVIC/static/DataTables/DataTables-1.10.18/css/jquery.dataTables.min.css b/CIVIC/static/DataTables/DataTables-1.10.18/css/jquery.dataTables.min.css deleted file mode 100644 index 6565b40..0000000 --- a/CIVIC/static/DataTables/DataTables-1.10.18/css/jquery.dataTables.min.css +++ /dev/null @@ -1 +0,0 @@ -table.dataTable{width:100%;margin:0 auto;clear:both;border-collapse:separate;border-spacing:0}table.dataTable thead th,table.dataTable tfoot th{font-weight:bold}table.dataTable thead th,table.dataTable thead td{padding:10px 18px;border-bottom:1px solid #111}table.dataTable thead th:active,table.dataTable thead td:active{outline:none}table.dataTable tfoot th,table.dataTable tfoot td{padding:10px 18px 6px 18px;border-top:1px solid #111}table.dataTable thead .sorting,table.dataTable thead .sorting_asc,table.dataTable thead .sorting_desc,table.dataTable thead .sorting_asc_disabled,table.dataTable thead .sorting_desc_disabled{cursor:pointer;*cursor:hand;background-repeat:no-repeat;background-position:center right}table.dataTable thead .sorting{background-image:url("../images/sort_both.png")}table.dataTable thead .sorting_asc{background-image:url("../images/sort_asc.png")}table.dataTable thead .sorting_desc{background-image:url("../images/sort_desc.png")}table.dataTable thead .sorting_asc_disabled{background-image:url("../images/sort_asc_disabled.png")}table.dataTable thead .sorting_desc_disabled{background-image:url("../images/sort_desc_disabled.png")}table.dataTable tbody tr{background-color:#ffffff}table.dataTable tbody tr.selected{background-color:#B0BED9}table.dataTable tbody th,table.dataTable tbody td{padding:8px 10px}table.dataTable.row-border tbody th,table.dataTable.row-border tbody td,table.dataTable.display tbody th,table.dataTable.display tbody td{border-top:1px solid #ddd}table.dataTable.row-border tbody tr:first-child th,table.dataTable.row-border tbody tr:first-child td,table.dataTable.display tbody tr:first-child th,table.dataTable.display tbody tr:first-child td{border-top:none}table.dataTable.cell-border tbody th,table.dataTable.cell-border tbody td{border-top:1px solid #ddd;border-right:1px solid #ddd}table.dataTable.cell-border tbody tr th:first-child,table.dataTable.cell-border tbody tr td:first-child{border-left:1px solid #ddd}table.dataTable.cell-border tbody tr:first-child th,table.dataTable.cell-border tbody tr:first-child td{border-top:none}table.dataTable.stripe tbody tr.odd,table.dataTable.display tbody tr.odd{background-color:#f9f9f9}table.dataTable.stripe tbody tr.odd.selected,table.dataTable.display tbody tr.odd.selected{background-color:#acbad4}table.dataTable.hover tbody tr:hover,table.dataTable.display tbody tr:hover{background-color:#f6f6f6}table.dataTable.hover tbody tr:hover.selected,table.dataTable.display tbody tr:hover.selected{background-color:#aab7d1}table.dataTable.order-column tbody tr>.sorting_1,table.dataTable.order-column tbody tr>.sorting_2,table.dataTable.order-column tbody tr>.sorting_3,table.dataTable.display tbody tr>.sorting_1,table.dataTable.display tbody tr>.sorting_2,table.dataTable.display tbody tr>.sorting_3{background-color:#fafafa}table.dataTable.order-column tbody tr.selected>.sorting_1,table.dataTable.order-column tbody tr.selected>.sorting_2,table.dataTable.order-column tbody tr.selected>.sorting_3,table.dataTable.display tbody tr.selected>.sorting_1,table.dataTable.display tbody tr.selected>.sorting_2,table.dataTable.display tbody tr.selected>.sorting_3{background-color:#acbad5}table.dataTable.display tbody tr.odd>.sorting_1,table.dataTable.order-column.stripe tbody tr.odd>.sorting_1{background-color:#f1f1f1}table.dataTable.display tbody tr.odd>.sorting_2,table.dataTable.order-column.stripe tbody tr.odd>.sorting_2{background-color:#f3f3f3}table.dataTable.display tbody tr.odd>.sorting_3,table.dataTable.order-column.stripe tbody tr.odd>.sorting_3{background-color:whitesmoke}table.dataTable.display tbody tr.odd.selected>.sorting_1,table.dataTable.order-column.stripe tbody tr.odd.selected>.sorting_1{background-color:#a6b4cd}table.dataTable.display tbody tr.odd.selected>.sorting_2,table.dataTable.order-column.stripe tbody tr.odd.selected>.sorting_2{background-color:#a8b5cf}table.dataTable.display tbody tr.odd.selected>.sorting_3,table.dataTable.order-column.stripe tbody tr.odd.selected>.sorting_3{background-color:#a9b7d1}table.dataTable.display tbody tr.even>.sorting_1,table.dataTable.order-column.stripe tbody tr.even>.sorting_1{background-color:#fafafa}table.dataTable.display tbody tr.even>.sorting_2,table.dataTable.order-column.stripe tbody tr.even>.sorting_2{background-color:#fcfcfc}table.dataTable.display tbody tr.even>.sorting_3,table.dataTable.order-column.stripe tbody tr.even>.sorting_3{background-color:#fefefe}table.dataTable.display tbody tr.even.selected>.sorting_1,table.dataTable.order-column.stripe tbody tr.even.selected>.sorting_1{background-color:#acbad5}table.dataTable.display tbody tr.even.selected>.sorting_2,table.dataTable.order-column.stripe tbody tr.even.selected>.sorting_2{background-color:#aebcd6}table.dataTable.display tbody tr.even.selected>.sorting_3,table.dataTable.order-column.stripe tbody tr.even.selected>.sorting_3{background-color:#afbdd8}table.dataTable.display tbody tr:hover>.sorting_1,table.dataTable.order-column.hover tbody tr:hover>.sorting_1{background-color:#eaeaea}table.dataTable.display tbody tr:hover>.sorting_2,table.dataTable.order-column.hover tbody tr:hover>.sorting_2{background-color:#ececec}table.dataTable.display tbody tr:hover>.sorting_3,table.dataTable.order-column.hover tbody tr:hover>.sorting_3{background-color:#efefef}table.dataTable.display tbody tr:hover.selected>.sorting_1,table.dataTable.order-column.hover tbody tr:hover.selected>.sorting_1{background-color:#a2aec7}table.dataTable.display tbody tr:hover.selected>.sorting_2,table.dataTable.order-column.hover tbody tr:hover.selected>.sorting_2{background-color:#a3b0c9}table.dataTable.display tbody tr:hover.selected>.sorting_3,table.dataTable.order-column.hover tbody tr:hover.selected>.sorting_3{background-color:#a5b2cb}table.dataTable.no-footer{border-bottom:1px solid #111}table.dataTable.nowrap th,table.dataTable.nowrap td{white-space:nowrap}table.dataTable.compact thead th,table.dataTable.compact thead td{padding:4px 17px 4px 4px}table.dataTable.compact tfoot th,table.dataTable.compact tfoot td{padding:4px}table.dataTable.compact tbody th,table.dataTable.compact tbody td{padding:4px}table.dataTable th.dt-left,table.dataTable td.dt-left{text-align:left}table.dataTable th.dt-center,table.dataTable td.dt-center,table.dataTable td.dataTables_empty{text-align:center}table.dataTable th.dt-right,table.dataTable td.dt-right{text-align:right}table.dataTable th.dt-justify,table.dataTable td.dt-justify{text-align:justify}table.dataTable th.dt-nowrap,table.dataTable td.dt-nowrap{white-space:nowrap}table.dataTable thead th.dt-head-left,table.dataTable thead td.dt-head-left,table.dataTable tfoot th.dt-head-left,table.dataTable tfoot td.dt-head-left{text-align:left}table.dataTable thead th.dt-head-center,table.dataTable thead td.dt-head-center,table.dataTable tfoot th.dt-head-center,table.dataTable tfoot td.dt-head-center{text-align:center}table.dataTable thead th.dt-head-right,table.dataTable thead td.dt-head-right,table.dataTable tfoot th.dt-head-right,table.dataTable tfoot td.dt-head-right{text-align:right}table.dataTable thead th.dt-head-justify,table.dataTable thead td.dt-head-justify,table.dataTable tfoot th.dt-head-justify,table.dataTable tfoot td.dt-head-justify{text-align:justify}table.dataTable thead th.dt-head-nowrap,table.dataTable thead td.dt-head-nowrap,table.dataTable tfoot th.dt-head-nowrap,table.dataTable tfoot td.dt-head-nowrap{white-space:nowrap}table.dataTable tbody th.dt-body-left,table.dataTable tbody td.dt-body-left{text-align:left}table.dataTable tbody th.dt-body-center,table.dataTable tbody td.dt-body-center{text-align:center}table.dataTable tbody th.dt-body-right,table.dataTable tbody td.dt-body-right{text-align:right}table.dataTable tbody th.dt-body-justify,table.dataTable tbody td.dt-body-justify{text-align:justify}table.dataTable tbody th.dt-body-nowrap,table.dataTable tbody td.dt-body-nowrap{white-space:nowrap}table.dataTable,table.dataTable th,table.dataTable td{box-sizing:content-box}.dataTables_wrapper{position:relative;clear:both;*zoom:1;zoom:1}.dataTables_wrapper .dataTables_length{float:left}.dataTables_wrapper .dataTables_filter{float:right;text-align:right}.dataTables_wrapper .dataTables_filter input{margin-left:0.5em}.dataTables_wrapper .dataTables_info{clear:both;float:left;padding-top:0.755em}.dataTables_wrapper .dataTables_paginate{float:right;text-align:right;padding-top:0.25em}.dataTables_wrapper .dataTables_paginate .paginate_button{box-sizing:border-box;display:inline-block;min-width:1.5em;padding:0.5em 1em;margin-left:2px;text-align:center;text-decoration:none !important;cursor:pointer;*cursor:hand;color:#333 !important;border:1px solid transparent;border-radius:2px}.dataTables_wrapper .dataTables_paginate .paginate_button.current,.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover{color:#333 !important;border:1px solid #979797;background-color:white;background:-webkit-gradient(linear, left top, left bottom, color-stop(0%, #fff), color-stop(100%, #dcdcdc));background:-webkit-linear-gradient(top, #fff 0%, #dcdcdc 100%);background:-moz-linear-gradient(top, #fff 0%, #dcdcdc 100%);background:-ms-linear-gradient(top, #fff 0%, #dcdcdc 100%);background:-o-linear-gradient(top, #fff 0%, #dcdcdc 100%);background:linear-gradient(to bottom, #fff 0%, #dcdcdc 100%)}.dataTables_wrapper .dataTables_paginate .paginate_button.disabled,.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover,.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active{cursor:default;color:#666 !important;border:1px solid transparent;background:transparent;box-shadow:none}.dataTables_wrapper .dataTables_paginate .paginate_button:hover{color:white !important;border:1px solid #111;background-color:#585858;background:-webkit-gradient(linear, left top, left bottom, color-stop(0%, #585858), color-stop(100%, #111));background:-webkit-linear-gradient(top, #585858 0%, #111 100%);background:-moz-linear-gradient(top, #585858 0%, #111 100%);background:-ms-linear-gradient(top, #585858 0%, #111 100%);background:-o-linear-gradient(top, #585858 0%, #111 100%);background:linear-gradient(to bottom, #585858 0%, #111 100%)}.dataTables_wrapper .dataTables_paginate .paginate_button:active{outline:none;background-color:#2b2b2b;background:-webkit-gradient(linear, left top, left bottom, color-stop(0%, #2b2b2b), color-stop(100%, #0c0c0c));background:-webkit-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);background:-moz-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);background:-ms-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);background:-o-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);background:linear-gradient(to bottom, #2b2b2b 0%, #0c0c0c 100%);box-shadow:inset 0 0 3px #111}.dataTables_wrapper .dataTables_paginate .ellipsis{padding:0 1em}.dataTables_wrapper .dataTables_processing{position:absolute;top:50%;left:50%;width:100%;height:40px;margin-left:-50%;margin-top:-25px;padding-top:20px;text-align:center;font-size:1.2em;background-color:white;background:-webkit-gradient(linear, left top, right top, color-stop(0%, rgba(255,255,255,0)), color-stop(25%, rgba(255,255,255,0.9)), color-stop(75%, rgba(255,255,255,0.9)), color-stop(100%, rgba(255,255,255,0)));background:-webkit-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 25%, rgba(255,255,255,0.9) 75%, rgba(255,255,255,0) 100%);background:-moz-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 25%, rgba(255,255,255,0.9) 75%, rgba(255,255,255,0) 100%);background:-ms-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 25%, rgba(255,255,255,0.9) 75%, rgba(255,255,255,0) 100%);background:-o-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 25%, rgba(255,255,255,0.9) 75%, rgba(255,255,255,0) 100%);background:linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 25%, rgba(255,255,255,0.9) 75%, rgba(255,255,255,0) 100%)}.dataTables_wrapper .dataTables_length,.dataTables_wrapper .dataTables_filter,.dataTables_wrapper .dataTables_info,.dataTables_wrapper .dataTables_processing,.dataTables_wrapper .dataTables_paginate{color:#333}.dataTables_wrapper .dataTables_scroll{clear:both}.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody{*margin-top:-1px;-webkit-overflow-scrolling:touch}.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>thead>tr>th,.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>thead>tr>td,.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>tbody>tr>th,.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>tbody>tr>td{vertical-align:middle}.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>thead>tr>th>div.dataTables_sizing,.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>thead>tr>td>div.dataTables_sizing,.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>tbody>tr>th>div.dataTables_sizing,.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>tbody>tr>td>div.dataTables_sizing{height:0;overflow:hidden;margin:0 !important;padding:0 !important}.dataTables_wrapper.no-footer .dataTables_scrollBody{border-bottom:1px solid #111}.dataTables_wrapper.no-footer div.dataTables_scrollHead table.dataTable,.dataTables_wrapper.no-footer div.dataTables_scrollBody>table{border-bottom:none}.dataTables_wrapper:after{visibility:hidden;display:block;content:"";clear:both;height:0}@media screen and (max-width: 767px){.dataTables_wrapper .dataTables_info,.dataTables_wrapper .dataTables_paginate{float:none;text-align:center}.dataTables_wrapper .dataTables_paginate{margin-top:0.5em}}@media screen and (max-width: 640px){.dataTables_wrapper .dataTables_length,.dataTables_wrapper .dataTables_filter{float:none;text-align:center}.dataTables_wrapper .dataTables_filter{margin-top:0.5em}} diff --git a/CIVIC/static/DataTables/DataTables-1.10.18/images/sort_asc.png b/CIVIC/static/DataTables/DataTables-1.10.18/images/sort_asc.png deleted file mode 100644 index e1ba61a..0000000 Binary files a/CIVIC/static/DataTables/DataTables-1.10.18/images/sort_asc.png and /dev/null differ diff --git a/CIVIC/static/DataTables/DataTables-1.10.18/images/sort_asc_disabled.png b/CIVIC/static/DataTables/DataTables-1.10.18/images/sort_asc_disabled.png deleted file mode 100644 index fb11dfe..0000000 Binary files a/CIVIC/static/DataTables/DataTables-1.10.18/images/sort_asc_disabled.png and /dev/null differ diff --git a/CIVIC/static/DataTables/DataTables-1.10.18/images/sort_both.png b/CIVIC/static/DataTables/DataTables-1.10.18/images/sort_both.png deleted file mode 100644 index af5bc7c..0000000 Binary files a/CIVIC/static/DataTables/DataTables-1.10.18/images/sort_both.png and /dev/null differ diff --git a/CIVIC/static/DataTables/DataTables-1.10.18/images/sort_desc.png b/CIVIC/static/DataTables/DataTables-1.10.18/images/sort_desc.png deleted file mode 100644 index 0e156de..0000000 Binary files a/CIVIC/static/DataTables/DataTables-1.10.18/images/sort_desc.png and /dev/null differ diff --git a/CIVIC/static/DataTables/DataTables-1.10.18/images/sort_desc_disabled.png b/CIVIC/static/DataTables/DataTables-1.10.18/images/sort_desc_disabled.png deleted file mode 100644 index c9fdd8a..0000000 Binary files a/CIVIC/static/DataTables/DataTables-1.10.18/images/sort_desc_disabled.png and /dev/null differ diff --git a/CIVIC/static/DataTables/DataTables-1.10.18/js/dataTables.bootstrap.js b/CIVIC/static/DataTables/DataTables-1.10.18/js/dataTables.bootstrap.js deleted file mode 100644 index f69acdc..0000000 --- a/CIVIC/static/DataTables/DataTables-1.10.18/js/dataTables.bootstrap.js +++ /dev/null @@ -1,182 +0,0 @@ -/*! DataTables Bootstrap 3 integration - * ©2011-2015 SpryMedia Ltd - datatables.net/license - */ - -/** - * DataTables integration for Bootstrap 3. This requires Bootstrap 3 and - * DataTables 1.10 or newer. - * - * This file sets the defaults and adds options to DataTables to style its - * controls using Bootstrap. See http://datatables.net/manual/styling/bootstrap - * for further information. - */ -(function( factory ){ - if ( typeof define === 'function' && define.amd ) { - // AMD - define( ['jquery', 'datatables.net'], function ( $ ) { - return factory( $, window, document ); - } ); - } - else if ( typeof exports === 'object' ) { - // CommonJS - module.exports = function (root, $) { - if ( ! root ) { - root = window; - } - - if ( ! $ || ! $.fn.dataTable ) { - // Require DataTables, which attaches to jQuery, including - // jQuery if needed and have a $ property so we can access the - // jQuery object that is used - $ = require('datatables.net')(root, $).$; - } - - return factory( $, root, root.document ); - }; - } - else { - // Browser - factory( jQuery, window, document ); - } -}(function( $, window, document, undefined ) { -'use strict'; -var DataTable = $.fn.dataTable; - - -/* Set the defaults for DataTables initialisation */ -$.extend( true, DataTable.defaults, { - dom: - "<'row'<'col-sm-6'l><'col-sm-6'f>>" + - "<'row'<'col-sm-12'tr>>" + - "<'row'<'col-sm-5'i><'col-sm-7'p>>", - renderer: 'bootstrap' -} ); - - -/* Default class modification */ -$.extend( DataTable.ext.classes, { - sWrapper: "dataTables_wrapper form-inline dt-bootstrap", - sFilterInput: "form-control input-sm", - sLengthSelect: "form-control input-sm", - sProcessing: "dataTables_processing panel panel-default" -} ); - - -/* Bootstrap paging button renderer */ -DataTable.ext.renderer.pageButton.bootstrap = function ( settings, host, idx, buttons, page, pages ) { - var api = new DataTable.Api( settings ); - var classes = settings.oClasses; - var lang = settings.oLanguage.oPaginate; - var aria = settings.oLanguage.oAria.paginate || {}; - var btnDisplay, btnClass, counter=0; - - var attach = function( container, buttons ) { - var i, ien, node, button; - var clickHandler = function ( e ) { - e.preventDefault(); - if ( !$(e.currentTarget).hasClass('disabled') && api.page() != e.data.action ) { - api.page( e.data.action ).draw( 'page' ); - } - }; - - for ( i=0, ien=buttons.length ; i 0 ? - '' : ' disabled'); - break; - - case 'previous': - btnDisplay = lang.sPrevious; - btnClass = button + (page > 0 ? - '' : ' disabled'); - break; - - case 'next': - btnDisplay = lang.sNext; - btnClass = button + (page < pages-1 ? - '' : ' disabled'); - break; - - case 'last': - btnDisplay = lang.sLast; - btnClass = button + (page < pages-1 ? - '' : ' disabled'); - break; - - default: - btnDisplay = button + 1; - btnClass = page === button ? - 'active' : ''; - break; - } - - if ( btnDisplay ) { - node = $('
  • ', { - 'class': classes.sPageButton+' '+btnClass, - 'id': idx === 0 && typeof button === 'string' ? - settings.sTableId +'_'+ button : - null - } ) - .append( $('', { - 'href': '#', - 'aria-controls': settings.sTableId, - 'aria-label': aria[ button ], - 'data-dt-idx': counter, - 'tabindex': settings.iTabIndex - } ) - .html( btnDisplay ) - ) - .appendTo( container ); - - settings.oApi._fnBindAction( - node, {action: button}, clickHandler - ); - - counter++; - } - } - } - }; - - // IE9 throws an 'unknown error' if document.activeElement is used - // inside an iframe or frame. - var activeEl; - - try { - // Because this approach is destroying and recreating the paging - // elements, focus is lost on the select button which is bad for - // accessibility. So we want to restore focus once the draw has - // completed - activeEl = $(host).find(document.activeElement).data('dt-idx'); - } - catch (e) {} - - attach( - $(host).empty().html('