bioforge 3.2.0__tar.gz → 3.4.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {bioforge-3.2.0 → bioforge-3.4.0}/PKG-INFO +1 -1
- {bioforge-3.2.0 → bioforge-3.4.0}/bioforge/__init__.py +1 -1
- {bioforge-3.2.0 → bioforge-3.4.0}/bioforge/engine/_loader.py +38 -0
- {bioforge-3.2.0 → bioforge-3.4.0}/bioforge/engine/engine.c +86 -1
- {bioforge-3.2.0 → bioforge-3.4.0}/bioforge/engine/engine.dll +0 -0
- {bioforge-3.2.0 → bioforge-3.4.0}/bioforge/genomemap.py +9 -7
- {bioforge-3.2.0 → bioforge-3.4.0}/bioforge/minimizers.py +11 -0
- {bioforge-3.2.0 → bioforge-3.4.0}/bioforge.egg-info/PKG-INFO +1 -1
- {bioforge-3.2.0 → bioforge-3.4.0}/tests/test_minimizers.py +23 -1
- {bioforge-3.2.0 → bioforge-3.4.0}/LICENSE +0 -0
- {bioforge-3.2.0 → bioforge-3.4.0}/README.md +0 -0
- {bioforge-3.2.0 → bioforge-3.4.0}/bioforge/aligner.py +0 -0
- {bioforge-3.2.0 → bioforge-3.4.0}/bioforge/analyze.py +0 -0
- {bioforge-3.2.0 → bioforge-3.4.0}/bioforge/bgzf.py +0 -0
- {bioforge-3.2.0 → bioforge-3.4.0}/bioforge/biocore.py +0 -0
- {bioforge-3.2.0 → bioforge-3.4.0}/bioforge/engine/__init__.py +0 -0
- {bioforge-3.2.0 → bioforge-3.4.0}/bioforge/engine/build.py +0 -0
- {bioforge-3.2.0 → bioforge-3.4.0}/bioforge/qcreport.py +0 -0
- {bioforge-3.2.0 → bioforge-3.4.0}/bioforge/refindex.py +0 -0
- {bioforge-3.2.0 → bioforge-3.4.0}/bioforge/smart_translator.py +0 -0
- {bioforge-3.2.0 → bioforge-3.4.0}/bioforge.egg-info/SOURCES.txt +0 -0
- {bioforge-3.2.0 → bioforge-3.4.0}/bioforge.egg-info/dependency_links.txt +0 -0
- {bioforge-3.2.0 → bioforge-3.4.0}/bioforge.egg-info/entry_points.txt +0 -0
- {bioforge-3.2.0 → bioforge-3.4.0}/bioforge.egg-info/requires.txt +0 -0
- {bioforge-3.2.0 → bioforge-3.4.0}/bioforge.egg-info/top_level.txt +0 -0
- {bioforge-3.2.0 → bioforge-3.4.0}/pyproject.toml +0 -0
- {bioforge-3.2.0 → bioforge-3.4.0}/setup.cfg +0 -0
- {bioforge-3.2.0 → bioforge-3.4.0}/setup.py +0 -0
- {bioforge-3.2.0 → bioforge-3.4.0}/tests/test_aligner.py +0 -0
- {bioforge-3.2.0 → bioforge-3.4.0}/tests/test_analyze.py +0 -0
- {bioforge-3.2.0 → bioforge-3.4.0}/tests/test_bgzf.py +0 -0
- {bioforge-3.2.0 → bioforge-3.4.0}/tests/test_biocore.py +0 -0
- {bioforge-3.2.0 → bioforge-3.4.0}/tests/test_errors.py +0 -0
- {bioforge-3.2.0 → bioforge-3.4.0}/tests/test_genomemap.py +0 -0
- {bioforge-3.2.0 → bioforge-3.4.0}/tests/test_qcreport.py +0 -0
- {bioforge-3.2.0 → bioforge-3.4.0}/tests/test_refindex.py +0 -0
- {bioforge-3.2.0 → bioforge-3.4.0}/tests/test_streaming.py +0 -0
- {bioforge-3.2.0 → bioforge-3.4.0}/tests/test_translator.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: bioforge
|
|
3
|
-
Version: 3.
|
|
3
|
+
Version: 3.4.0
|
|
4
4
|
Summary: High-performance bioinformatics engine for Edge Computing — 5-bit encoding, vectorised NumPy core, optional C backend
|
|
5
5
|
Author-email: Aarón Aranda Torrijos <noe9601@gmail.com>
|
|
6
6
|
License: # PolyForm Noncommercial License 1.0.0
|
|
@@ -18,6 +18,7 @@ _DLL_PATH = _ENGINE_DIR / ("engine.dll" if sys.platform == "win32" else "engin
|
|
|
18
18
|
_U8P = ctypes.POINTER(ctypes.c_uint8)
|
|
19
19
|
_I32P = ctypes.POINTER(ctypes.c_int32)
|
|
20
20
|
_I64P = ctypes.POINTER(ctypes.c_int64)
|
|
21
|
+
_U64P = ctypes.POINTER(ctypes.c_uint64)
|
|
21
22
|
_F64P = ctypes.POINTER(ctypes.c_double)
|
|
22
23
|
_I32 = ctypes.c_int32
|
|
23
24
|
_I64 = ctypes.c_int64
|
|
@@ -222,11 +223,30 @@ def _check_chain() -> None:
|
|
|
222
223
|
pass
|
|
223
224
|
|
|
224
225
|
|
|
226
|
+
C_MINIMIZERS_AVAILABLE: bool = False
|
|
227
|
+
|
|
228
|
+
def _check_minimizers() -> None:
|
|
229
|
+
"""Minimizers (w,k) del alineador de genomas (v3). Opcional."""
|
|
230
|
+
global C_MINIMIZERS_AVAILABLE
|
|
231
|
+
if not C_AVAILABLE or _lib is None:
|
|
232
|
+
return
|
|
233
|
+
try:
|
|
234
|
+
_lib.bio_minimizers.restype = _I64
|
|
235
|
+
_lib.bio_minimizers.argtypes = [
|
|
236
|
+
_U8P, _I64, _I32, _I32, # codes, n, k, w
|
|
237
|
+
_U64P, _I64P, _U8P, # out_hash, out_pos, out_strand
|
|
238
|
+
]
|
|
239
|
+
C_MINIMIZERS_AVAILABLE = True
|
|
240
|
+
except (AttributeError, OSError):
|
|
241
|
+
pass
|
|
242
|
+
|
|
243
|
+
|
|
225
244
|
_check_parser()
|
|
226
245
|
_check_batch()
|
|
227
246
|
_check_parallel()
|
|
228
247
|
_check_libdeflate()
|
|
229
248
|
_check_chain()
|
|
249
|
+
_check_minimizers()
|
|
230
250
|
|
|
231
251
|
|
|
232
252
|
# ── Wrappers Python ────────────────────────────────────────────────────────────
|
|
@@ -347,6 +367,24 @@ def c_nw_banded(
|
|
|
347
367
|
)
|
|
348
368
|
|
|
349
369
|
|
|
370
|
+
def c_minimizers(codes: np.ndarray, k: int, w: int):
|
|
371
|
+
"""Minimizers (w,k) canónicos en C. Devuelve (hashes, positions, strands)."""
|
|
372
|
+
codes = np.ascontiguousarray(codes, dtype=np.uint8)
|
|
373
|
+
n = int(codes.size)
|
|
374
|
+
nk = max(0, n - k + 1)
|
|
375
|
+
out_hash = np.empty(nk, dtype=np.uint64)
|
|
376
|
+
out_pos = np.empty(nk, dtype=np.int64)
|
|
377
|
+
out_strand = np.empty(nk, dtype=np.uint8)
|
|
378
|
+
cnt = _lib.bio_minimizers(
|
|
379
|
+
codes.ctypes.data_as(_U8P), _I64(n), _I32(int(k)), _I32(int(w)),
|
|
380
|
+
out_hash.ctypes.data_as(_U64P), out_pos.ctypes.data_as(_I64P),
|
|
381
|
+
out_strand.ctypes.data_as(_U8P),
|
|
382
|
+
)
|
|
383
|
+
if cnt < 0:
|
|
384
|
+
raise MemoryError("Motor C: fallo de memoria en minimizers")
|
|
385
|
+
return out_hash[:cnt], out_pos[:cnt], out_strand[:cnt]
|
|
386
|
+
|
|
387
|
+
|
|
350
388
|
def c_chain_dp(xs: np.ndarray, ys: np.ndarray, k: int,
|
|
351
389
|
max_gap: int, window: int, gap_w: float):
|
|
352
390
|
"""DP de chaining en C. Rellena y devuelve (f, prev).
|
|
@@ -1570,8 +1570,9 @@ EXPORT void bio_chain_dp(const int64_t* x, const int64_t* y, int32_t n,
|
|
|
1570
1570
|
if (gap > max_gap) continue;
|
|
1571
1571
|
int64_t mn = (dx < dy) ? dx : dy;
|
|
1572
1572
|
double match = (double)((mn < (int64_t)k) ? mn : (int64_t)k);
|
|
1573
|
+
/* coste de hueco estilo minimap2: gap_w·|l| + 0.5·log2|l| (l≠0) */
|
|
1573
1574
|
double cost = gap_w * (double)gap;
|
|
1574
|
-
if (gap > 0) cost += log2((double)gap
|
|
1575
|
+
if (gap > 0) cost += 0.5 * log2((double)gap);
|
|
1575
1576
|
double sc = f[j] + match - cost;
|
|
1576
1577
|
if (sc > best) { best = sc; bp = j; }
|
|
1577
1578
|
}
|
|
@@ -1579,3 +1580,87 @@ EXPORT void bio_chain_dp(const int64_t* x, const int64_t* y, int32_t n,
|
|
|
1579
1580
|
prev[i] = bp;
|
|
1580
1581
|
}
|
|
1581
1582
|
}
|
|
1583
|
+
|
|
1584
|
+
/* ── Minimizers (w,k) canónicos en C (alineador v3) ───────────────────────────
|
|
1585
|
+
Réplica exacta del cálculo vectorizado de minimizers.py:
|
|
1586
|
+
- k-mer directo/inverso por hash RODANTE (idéntico al Horner de NumPy),
|
|
1587
|
+
- hash invertible _hash64 (mismo esquema), canónico = menor(hf,hr),
|
|
1588
|
+
- mínimo por ventana deslizante de w k-mers (argmin más a la IZQUIERDA),
|
|
1589
|
+
- dedup de posiciones consecutivas (== np.unique sobre pos no-decrecientes).
|
|
1590
|
+
Escala a genomas donde sliding_window_view de NumPy se ahoga.
|
|
1591
|
+
|
|
1592
|
+
codes: uint8 2-bit (>=4 = base inválida). Salidas (tamaño ≥ n-k+1):
|
|
1593
|
+
out_hash/out_pos/out_strand. Devuelve el nº de minimizers, o -1 si malloc. */
|
|
1594
|
+
static uint64_t _hash64_c(uint64_t x, uint64_t mask) {
|
|
1595
|
+
x = x & mask;
|
|
1596
|
+
x = (~x + (x << 21)) & mask;
|
|
1597
|
+
x = x ^ (x >> 24);
|
|
1598
|
+
x = ((x + (x << 3)) + (x << 8)) & mask;
|
|
1599
|
+
x = x ^ (x >> 14);
|
|
1600
|
+
x = ((x + (x << 2)) + (x << 4)) & mask;
|
|
1601
|
+
x = x ^ (x >> 28);
|
|
1602
|
+
x = (x + (x << 31)) & mask;
|
|
1603
|
+
return x;
|
|
1604
|
+
}
|
|
1605
|
+
|
|
1606
|
+
EXPORT int64_t bio_minimizers(const uint8_t* codes, int64_t n, int32_t k, int32_t w,
|
|
1607
|
+
uint64_t* out_hash, int64_t* out_pos,
|
|
1608
|
+
uint8_t* out_strand) {
|
|
1609
|
+
int64_t nk = n - (int64_t)k + 1;
|
|
1610
|
+
if (nk <= 0) return 0;
|
|
1611
|
+
|
|
1612
|
+
uint64_t* h = (uint64_t*)malloc((size_t)nk * sizeof(uint64_t));
|
|
1613
|
+
uint8_t* st = (uint8_t*) malloc((size_t)nk * sizeof(uint8_t));
|
|
1614
|
+
if (!h || !st) { free(h); free(st); return -1; }
|
|
1615
|
+
|
|
1616
|
+
const uint64_t SENT = ~0ULL;
|
|
1617
|
+
uint64_t mask = (k >= 32) ? ~0ULL : ((1ULL << (2 * k)) - 1);
|
|
1618
|
+
uint64_t shift = (uint64_t)(2 * (k - 1));
|
|
1619
|
+
uint64_t fwd = 0, rev = 0;
|
|
1620
|
+
int32_t l = 0; /* bases válidas consecutivas */
|
|
1621
|
+
|
|
1622
|
+
for (int64_t i = 0; i < n; i++) {
|
|
1623
|
+
uint8_t c = codes[i];
|
|
1624
|
+
if (c < 4) {
|
|
1625
|
+
uint64_t cc = c;
|
|
1626
|
+
fwd = ((fwd << 2) | cc) & mask;
|
|
1627
|
+
rev = (rev >> 2) | ((3ULL - cc) << shift);
|
|
1628
|
+
l++;
|
|
1629
|
+
} else {
|
|
1630
|
+
l = 0; fwd = 0; rev = 0;
|
|
1631
|
+
}
|
|
1632
|
+
int64_t p = i - (int64_t)k + 1; /* k-mer que termina en i */
|
|
1633
|
+
if (p >= 0) {
|
|
1634
|
+
if (l >= k) {
|
|
1635
|
+
uint64_t hf = _hash64_c(fwd, mask);
|
|
1636
|
+
uint64_t hr = _hash64_c(rev, mask);
|
|
1637
|
+
if (hr < hf) { h[p] = hr; st[p] = 1; }
|
|
1638
|
+
else { h[p] = hf; st[p] = 0; }
|
|
1639
|
+
} else {
|
|
1640
|
+
h[p] = SENT; st[p] = 0;
|
|
1641
|
+
}
|
|
1642
|
+
}
|
|
1643
|
+
}
|
|
1644
|
+
|
|
1645
|
+
int64_t count = 0, last = -1;
|
|
1646
|
+
if (nk < w) { /* una sola ventana */
|
|
1647
|
+
int64_t bi = 0;
|
|
1648
|
+
for (int64_t j = 1; j < nk; j++) if (h[j] < h[bi]) bi = j;
|
|
1649
|
+
if (h[bi] != SENT) {
|
|
1650
|
+
out_hash[0] = h[bi]; out_pos[0] = bi; out_strand[0] = st[bi];
|
|
1651
|
+
count = 1;
|
|
1652
|
+
}
|
|
1653
|
+
} else {
|
|
1654
|
+
for (int64_t i = 0; i + w <= nk; i++) {
|
|
1655
|
+
int64_t bi = i; /* argmin más a la izquierda */
|
|
1656
|
+
for (int64_t j = i + 1; j < i + w; j++) if (h[j] < h[bi]) bi = j;
|
|
1657
|
+
if (bi != last && h[bi] != SENT) {
|
|
1658
|
+
out_hash[count] = h[bi]; out_pos[count] = bi;
|
|
1659
|
+
out_strand[count] = st[bi];
|
|
1660
|
+
count++; last = bi;
|
|
1661
|
+
}
|
|
1662
|
+
}
|
|
1663
|
+
}
|
|
1664
|
+
free(h); free(st);
|
|
1665
|
+
return count;
|
|
1666
|
+
}
|
|
Binary file
|
|
@@ -101,16 +101,17 @@ class Chain(NamedTuple):
|
|
|
101
101
|
# Parámetros de chaining (razonables; ajustables).
|
|
102
102
|
_MAX_GAP = 5000 # distancia máxima entre anclas consecutivas
|
|
103
103
|
_WINDOW = 64 # nº de predecesores que se examinan por ancla
|
|
104
|
-
|
|
104
|
+
_GAP_COEF = 0.01 # coste lineal de hueco = 0.01·k (fórmula de minimap2)
|
|
105
105
|
_MIN_ANCHORS = 2
|
|
106
106
|
|
|
107
107
|
|
|
108
|
-
def _chain_fill_numpy(xs: np.ndarray, ys: np.ndarray, k: int):
|
|
108
|
+
def _chain_fill_numpy(xs: np.ndarray, ys: np.ndarray, k: int, gap_w: float):
|
|
109
109
|
"""Fallback NumPy del DP de chaining (idéntico al C bio_chain_dp).
|
|
110
110
|
|
|
111
111
|
Bucle EXTERNO secuencial (f[i] depende de f[j<i]); bucle INTERNO sobre la
|
|
112
112
|
ventana de predecesores vectorizado. En empate gana el predecesor más
|
|
113
|
-
cercano (mismo desempate que el C).
|
|
113
|
+
cercano (mismo desempate que el C). Coste de hueco estilo minimap2:
|
|
114
|
+
``gap_w·|l| + 0.5·log2|l|``.
|
|
114
115
|
"""
|
|
115
116
|
n = xs.size
|
|
116
117
|
f = np.full(n, float(k), dtype=np.float64)
|
|
@@ -130,8 +131,8 @@ def _chain_fill_numpy(xs: np.ndarray, ys: np.ndarray, k: int):
|
|
|
130
131
|
if not valid.any():
|
|
131
132
|
continue
|
|
132
133
|
match = np.minimum(np.minimum(dx, dy), k).astype(np.float64)
|
|
133
|
-
logterm = np.where(gap > 0, np.log2(gap
|
|
134
|
-
sc = np.where(valid, f[lo:i] + match - (
|
|
134
|
+
logterm = np.where(gap > 0, 0.5 * np.log2(np.maximum(gap, 1)), 0.0)
|
|
135
|
+
sc = np.where(valid, f[lo:i] + match - (gap_w * gap + logterm), -np.inf)
|
|
135
136
|
b = sc.size - 1 - int(sc[::-1].argmax()) # empate → predecesor cercano
|
|
136
137
|
if sc[b] > kf:
|
|
137
138
|
f[i], prev[i] = float(sc[b]), lo + b
|
|
@@ -153,11 +154,12 @@ def _chain_one(x: np.ndarray, y: np.ndarray, k: int,
|
|
|
153
154
|
ys = np.ascontiguousarray(y[order], dtype=np.int64)
|
|
154
155
|
|
|
155
156
|
# Relleno del DP: C si está disponible (10-50× más rápido), si no NumPy.
|
|
157
|
+
gap_w = _GAP_COEF * k # 0.01·k (coste de hueco minimap2)
|
|
156
158
|
if C_CHAIN_AVAILABLE:
|
|
157
|
-
f, prev = c_chain_dp(xs, ys, k, _MAX_GAP, _WINDOW,
|
|
159
|
+
f, prev = c_chain_dp(xs, ys, k, _MAX_GAP, _WINDOW, gap_w)
|
|
158
160
|
prev = prev.astype(np.int64)
|
|
159
161
|
else:
|
|
160
|
-
f, prev = _chain_fill_numpy(xs, ys, k)
|
|
162
|
+
f, prev = _chain_fill_numpy(xs, ys, k, gap_w)
|
|
161
163
|
|
|
162
164
|
# Backtrack de cadenas no solapadas, por score descendente.
|
|
163
165
|
used = np.zeros(n, dtype=bool)
|
|
@@ -34,6 +34,7 @@ import numpy as np
|
|
|
34
34
|
from numpy.lib.stride_tricks import sliding_window_view
|
|
35
35
|
|
|
36
36
|
from .biocore import SequenceValueError
|
|
37
|
+
from .engine._loader import C_MINIMIZERS_AVAILABLE, c_minimizers
|
|
37
38
|
|
|
38
39
|
# ── LUT ASCII → código 2-bit (A=0, C=1, G=2, T=3; cualquier otra cosa = 4) ──────
|
|
39
40
|
_BASE_LUT = np.full(256, 4, dtype=np.uint8)
|
|
@@ -103,6 +104,16 @@ def minimizers(codes: np.ndarray, k: int = 15, w: int = 10) -> MinimizerSketch:
|
|
|
103
104
|
raise SequenceValueError(f"w debe ser ≥ 1 (se recibió {w}).")
|
|
104
105
|
|
|
105
106
|
codes = np.ascontiguousarray(codes, dtype=np.uint8)
|
|
107
|
+
# Motor C si está disponible (mucho más rápido en genomas grandes); si no,
|
|
108
|
+
# el fallback NumPy, que produce EXACTAMENTE lo mismo (verificado en tests).
|
|
109
|
+
if C_MINIMIZERS_AVAILABLE:
|
|
110
|
+
h, pos, strand = c_minimizers(codes, k, w)
|
|
111
|
+
return MinimizerSketch(h, pos, strand)
|
|
112
|
+
return _minimizers_numpy(codes, k, w)
|
|
113
|
+
|
|
114
|
+
|
|
115
|
+
def _minimizers_numpy(codes: np.ndarray, k: int, w: int) -> MinimizerSketch:
|
|
116
|
+
"""Fallback NumPy de :func:`minimizers` (idéntico al C bio_minimizers)."""
|
|
106
117
|
L = codes.size
|
|
107
118
|
n = L - k + 1 # nº de k-mers en la secuencia
|
|
108
119
|
if n <= 0:
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: bioforge
|
|
3
|
-
Version: 3.
|
|
3
|
+
Version: 3.4.0
|
|
4
4
|
Summary: High-performance bioinformatics engine for Edge Computing — 5-bit encoding, vectorised NumPy core, optional C backend
|
|
5
5
|
Author-email: Aarón Aranda Torrijos <noe9601@gmail.com>
|
|
6
6
|
License: # PolyForm Noncommercial License 1.0.0
|
|
@@ -9,7 +9,13 @@ import numpy as np
|
|
|
9
9
|
import pytest
|
|
10
10
|
|
|
11
11
|
from bioforge.biocore import SequenceValueError
|
|
12
|
-
from bioforge.
|
|
12
|
+
from bioforge.engine._loader import C_MINIMIZERS_AVAILABLE
|
|
13
|
+
from bioforge.minimizers import (
|
|
14
|
+
MinimizerSketch,
|
|
15
|
+
_minimizers_numpy,
|
|
16
|
+
encode_bases,
|
|
17
|
+
minimizers,
|
|
18
|
+
)
|
|
13
19
|
|
|
14
20
|
_COMP = str.maketrans("ACGTacgt", "TGCAtgca")
|
|
15
21
|
|
|
@@ -122,6 +128,22 @@ def test_hash_canonico_es_el_menor():
|
|
|
122
128
|
|
|
123
129
|
# ── Validación de argumentos ────────────────────────────────────────────────────
|
|
124
130
|
|
|
131
|
+
@pytest.mark.skipif(not C_MINIMIZERS_AVAILABLE, reason="motor C no disponible")
|
|
132
|
+
@pytest.mark.parametrize("seed", [0, 1, 2, 3])
|
|
133
|
+
def test_c_igual_que_numpy(seed):
|
|
134
|
+
# El camino C y el fallback NumPy deben dar EXACTAMENTE lo mismo.
|
|
135
|
+
rng = np.random.default_rng(seed)
|
|
136
|
+
s = list("".join("ACGT"[i] for i in rng.integers(0, 4, 2000)))
|
|
137
|
+
for p in rng.integers(0, 2000, 25): # unas cuantas N
|
|
138
|
+
s[p] = "N"
|
|
139
|
+
codes = encode_bases("".join(s))
|
|
140
|
+
c = minimizers(codes, k=15, w=10) # ruta C (activa)
|
|
141
|
+
n = _minimizers_numpy(codes, 15, 10) # fallback NumPy
|
|
142
|
+
assert np.array_equal(c.hashes, n.hashes)
|
|
143
|
+
assert np.array_equal(c.positions, n.positions)
|
|
144
|
+
assert np.array_equal(c.strands, n.strands)
|
|
145
|
+
|
|
146
|
+
|
|
125
147
|
@pytest.mark.parametrize("k", [0, 32, -1])
|
|
126
148
|
def test_k_invalido(k):
|
|
127
149
|
with pytest.raises(SequenceValueError):
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|