Operators¶
Arithmetic¶
_arithmetic ¶
sign ¶
Return the sign of each element in the DataFrame (excluding the time column).
Returns -1 for negative values, 0 for zero, 1 for positive values, and null for missing (null) or NaN values.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
df
|
DataFrame
|
Input DataFrame with numeric value columns. |
required |
Returns:
| Type | Description |
|---|---|
DataFrame
|
New DataFrame with the same shape and time index, containing only -1, 0, 1 or null. |
Raises:
| Type | Description |
|---|---|
TypeError
|
If |
Source code in ctalearn/operator/_arithmetic.py
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 | |
log ¶
Calculate the natural logarithm of input array elements. Returns null for non-positive values (<= 0) and for null/NaN input.
Source code in ctalearn/operator/_arithmetic.py
37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 | |
symmetric_log ¶
Calculate the symmetric logarithm. Formula: sign(x) * log(|x| + 1)
Source code in ctalearn/operator/_arithmetic.py
58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 | |
sqrt ¶
Calculate the square root. Returns null for negative values and for null/NaN input.
Source code in ctalearn/operator/_arithmetic.py
77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 | |
symmetric_sqrt ¶
Calculate the symmetric square root. Formula: sign(x) * sqrt(|x|)
Source code in ctalearn/operator/_arithmetic.py
98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 | |
cbrt ¶
Calculate the cubic root.
Source code in ctalearn/operator/_arithmetic.py
116 117 118 119 120 121 122 123 124 125 126 127 128 | |
identity ¶
Return the input DataFrame as is.
Source code in ctalearn/operator/_arithmetic.py
131 132 133 134 135 136 137 138 | |
Cross-sectional¶
_cross_sectional ¶
cs_mean ¶
Calculate the cross-sectional mean for each timestamp (row-wise / axis=1).
The mean value is broadcast to all original columns, maintaining the same column structure as the input DataFrame.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
df
|
DataFrame
|
Input DataFrame. |
required |
ignore_nan
|
bool
|
If True, ignore NaN/Null values when computing the row mean. If False, if any NaN/Null exists in a row, the row mean becomes null. |
True
|
Returns:
| Type | Description |
|---|---|
DataFrame
|
DataFrame with the same column structure as input, where each column contains the row-wise mean value (broadcast to all columns). |
Source code in ctalearn/operator/_cross_sectional.py
12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 | |
cs_rank ¶
Rank the values for each timestamp (row-wise).
Rank is scaled to [0, 1] range where 0 is the lowest and 1 is the highest. Break ties by average.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
df
|
DataFrame
|
Input DataFrame. |
required |
ignore_nan
|
bool
|
If True, ignore NaN values and rank only valid values in each row. If False, if any Nan exists in a row, the entire row becomes NaN. |
True
|
Returns:
| Type | Description |
|---|---|
DataFrame
|
DataFrame with percentile ranked values (0 to 1). |
Raises:
| Type | Description |
|---|---|
TypeError
|
If |
Source code in ctalearn/operator/_cross_sectional.py
76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 | |
cs_zscore ¶
Calculate cross-sectional z-score for each timestamp.
Z-score is calculated as (value - mean) / std for each row. When std is 0 (all values are the same), z-score is set to 0.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
df
|
DataFrame
|
Input DataFrame. |
required |
ignore_nan
|
bool
|
If True, ignore NaN values. If False, if any NaN exists in a row, the entire row becomes NaN. |
True
|
Returns:
| Type | Description |
|---|---|
DataFrame
|
DataFrame with z-score normalized values. |
Source code in ctalearn/operator/_cross_sectional.py
141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 | |
cs_winsorize ¶
Winsorize values for each timestamp based on standard deviation.
Winsorizes x to make sure that all values in x are clipped between the lower and upper limits, which are specified as multiple of std.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
df
|
DataFrame
|
Input DataFrame. |
required |
std
|
float
|
Number of standard deviations from mean to use as limits. |
required |
ignore_nan
|
bool
|
If True, ignore NaN values. If False, if any NaN exists in a row, the entire row becomes NaN. |
True
|
Returns:
| Type | Description |
|---|---|
DataFrame
|
DataFrame with winsorized values. |
Source code in ctalearn/operator/_cross_sectional.py
198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 | |
vector_neut ¶
Perform cross-sectional vector neutralization. Formula: x - (dot(x, y) / dot(y, y)) * y
For given vectors x and y, it finds a new vector x' (output) such that x' is orthogonal to y.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
x
|
DataFrame
|
Input DataFrame X |
required |
y
|
DataFrame
|
Input DataFrame Y (Target) |
required |
Returns:
| Type | Description |
|---|---|
DataFrame
|
DataFrame with neutralized values. |
Source code in ctalearn/operator/_cross_sectional.py
259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 | |
regression_neut ¶
regression_neut(target: DataFrame, neut_factors: DataFrame | list[DataFrame], ridge_alpha: float = 1e-08) -> DataFrame
Fully vectorized cross-sectional regression using Batch Linear Algebra. No explicit Python loops over timestamps.
Source code in ctalearn/operator/_cross_sectional.py
322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 | |
process_alpha_weights ¶
Processes raw alpha signal matrix by applying optional neutralization and subsequent normalization to each row independently.
This function transforms a matrix of raw alpha scores into a matrix of portfolio weight vectors, ensuring NaN values are converted to zero weights.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
alpha_signals
|
DataFrame
|
A DataFrame of raw alpha values, where each row represents a different period or asset universe. |
required |
neutralize
|
bool
|
If True, each row (signal vector) is market-neutralized by subtracting its mean (calculated from non-NaN values), resulting in row sums of zero (Long/Short strategy). If False, no mean subtraction is performed. |
True
|
Returns:
| Type | Description |
|---|---|
DataFrame
|
For each row, the absolute sum of non-zero weights is scaled to 1.0. All input NaN values are set to 0.0, indicating no capital allocation. |
Source code in ctalearn/operator/_cross_sectional.py
437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 | |
cs_pca ¶
cs_pca(df: DataFrame, window: int, n_components: int = 1, output: Literal['scores', 'loadings', 'explained_variance'] = 'scores') -> DataFrame | tuple[DataFrame, ...]
Perform high-performance vectorized rolling cross-sectional PCA with Sign Correction.
Includes Max Loading Sign Correction to ensure consistent signal direction.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
df
|
DataFrame
|
Input DataFrame with time column and feature columns (symbols). |
required |
window
|
int
|
Rolling window size. Must be > 1. |
required |
n_components
|
int
|
Number of principal components to compute. |
1
|
output
|
(scores, loadings, explained_variance)
|
Type of output to return: - "scores": Principal component scores - "loadings": Principal component loadings (eigenvectors) - "explained_variance": Explained variance ratio for each component |
"scores"
|
Returns:
| Type | Description |
|---|---|
DataFrame or tuple[DataFrame, ...]
|
For all output types, each DataFrame has the same column structure as the input: - "loadings": Each column contains the loading value for that feature/symbol - "scores": The scalar score is broadcast to all original columns - "explained_variance": The scalar variance ratio is broadcast to all original columns |
Raises:
| Type | Description |
|---|---|
TypeError
|
If |
ValueError
|
If |
Source code in ctalearn/operator/_cross_sectional.py
492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 | |
Time-series¶
_time_series ¶
ts_rank ¶
Rank the values for each column over the past window size.
Returns the rank of the current value plus constant. Rank is scaled to [0, 1] range.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
df
|
DataFrame
|
Input DataFrame. |
required |
window
|
int
|
Size of the rolling window. |
required |
constant
|
float
|
Constant to add to the rank. |
0.0
|
Returns:
| Type | Description |
|---|---|
DataFrame
|
DataFrame with ranked values. |
Raises:
| Type | Description |
|---|---|
TypeError
|
If |
ValueError
|
If |
Source code in ctalearn/operator/_time_series.py
10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 | |
ts_mean ¶
Returns average value over the past window periods.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
df
|
DataFrame
|
Input DataFrame. |
required |
window
|
int
|
Size of the rolling window. |
required |
Returns:
| Type | Description |
|---|---|
DataFrame
|
DataFrame with rolling mean values. |
Source code in ctalearn/operator/_time_series.py
122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 | |
ts_median ¶
Returns median value over the past window periods.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
df
|
DataFrame
|
Input DataFrame. |
required |
window
|
int
|
Size of the rolling window. |
required |
Returns:
| Type | Description |
|---|---|
DataFrame
|
DataFrame with rolling median values. If window is even, return the average of the 2 center values. |
Source code in ctalearn/operator/_time_series.py
152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 | |
ts_std_dev ¶
Return standard deviation over the past window periods.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
df
|
DataFrame
|
Input DataFrame. |
required |
window
|
int
|
Size of the rolling window. |
required |
ddof
|
int
|
Delta degree of freedom. |
0
|
Returns:
| Type | Description |
|---|---|
DataFrame
|
DataFrame with rolling standard deviation values. |
Source code in ctalearn/operator/_time_series.py
183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 | |
ts_zscore ¶
Return z-score over the past window periods.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
df
|
DataFrame
|
Input DataFrame. |
required |
window
|
int
|
Size of the rolling window. |
required |
Returns:
| Type | Description |
|---|---|
DataFrame
|
DataFrame with rolling z-score values. |
Source code in ctalearn/operator/_time_series.py
216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 | |
ts_robust_zscore ¶
Calculate robust Z-score using median and median absolute deviation (MAD).
Formula: (x - median) / (c * MAD) Constant c = 1.4826. Returns 0 if MAD is 0 (constant window).
Source code in ctalearn/operator/_time_series.py
251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 | |
ts_sum ¶
Returns sum of values over the past window periods.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
df
|
DataFrame
|
Input DataFrame. |
required |
window
|
int
|
Size of the rolling window. |
required |
Returns:
| Type | Description |
|---|---|
DataFrame
|
DataFrame with rolling sum values. |
Source code in ctalearn/operator/_time_series.py
349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 | |
ts_min ¶
Returns min of values over the past window periods.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
df
|
DataFrame
|
Input DataFrame. |
required |
window
|
int
|
Size of the rolling window. |
required |
Returns:
| Type | Description |
|---|---|
DataFrame
|
DataFrame with rolling min values. |
Source code in ctalearn/operator/_time_series.py
379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 | |
ts_max ¶
Returns max of values over the past window periods.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
df
|
DataFrame
|
Input DataFrame. |
required |
window
|
int
|
Size of the rolling window. |
required |
Returns:
| Type | Description |
|---|---|
DataFrame
|
DataFrame with rolling max values. |
Source code in ctalearn/operator/_time_series.py
409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 | |
ts_scale ¶
Returns min-max scaling over the past window periods.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
df
|
DataFrame
|
Input DataFrame. |
required |
window
|
int
|
Size of the rolling window. |
required |
Returns:
| Type | Description |
|---|---|
DataFrame
|
DataFrame with rolling max values. |
Source code in ctalearn/operator/_time_series.py
439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 | |
ts_decay_linear ¶
Returns the linear decay on values over the past window periods.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
df
|
DataFrame
|
Input DataFrame. |
required |
window
|
int
|
Size of the rolling window. |
required |
dense
|
bool
|
If True, returns NaN if any value in window is NaN. If False, treat NaN as 0. |
True
|
Returns:
| Type | Description |
|---|---|
DataFrame
|
DataFrame with linearly decayed values. |
Source code in ctalearn/operator/_time_series.py
471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 | |
ts_delay ¶
Returns values delayed by d periods.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
df
|
DataFrame
|
Input DataFrame. |
required |
d
|
int
|
Lag periods. |
required |
Returns:
| Type | Description |
|---|---|
DataFrame
|
DataFrame with lagged values. |
Source code in ctalearn/operator/_time_series.py
519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 | |
ts_delta ¶
Returns x - ts_delay(x, d).
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
df
|
DataFrame
|
Input DataFrame. |
required |
d
|
int
|
Lag periods. |
required |
Returns:
| Type | Description |
|---|---|
DataFrame
|
DataFrame with delta values. |
Source code in ctalearn/operator/_time_series.py
547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 | |
ts_ffill ¶
Perform forward fill.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
df
|
DataFrame
|
Input DataFrame. |
required |
limit
|
int | None
|
Max consecutive values to fill. |
None
|
Returns:
| Type | Description |
|---|---|
DataFrame
|
Forward-filled DataFrame. |
Source code in ctalearn/operator/_time_series.py
575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 | |
ts_corr ¶
Compute rolling correlation between common columns of two DataFrames.
Performs an inner join on their respective time_col to align timestamps,
then calculates the rolling correlation for columns that exist in both DataFrames.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
df_a
|
DataFrame
|
First input DataFrame. |
required |
df_b
|
DataFrame
|
Second input DataFrame. |
required |
window
|
int
|
Size of the rolling window. |
required |
Returns:
| Type | Description |
|---|---|
DataFrame
|
DataFrame with rolling correlation values for common columns.
The time column name will follow |
Source code in ctalearn/operator/_time_series.py
606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 | |
ts_hurst_exponent ¶
Rolling Hurst exponent estimate (slope of log-log plot of lag vs std of differences).
For each rolling window, compute: tau(lag) = std(x[t] - x[t-lag]) hurst = slope of log10(tau) regressed on log10(lag)
Notes
- The degree-1 fit is solved in closed form (
weights . y) inside a single Numba kernel; mathematically identical to a least-squares polyfit, agreeing to ~1e-11 relative. - If a window contains NaN/null or has insufficient valid lags, the output is null for that row.
lag_start/lag_endfollow Pythonrange(start, end)semantics (end is exclusive), matching the common reference implementation.
Source code in ctalearn/operator/_time_series.py
728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 | |
Strategy¶
_strategy ¶
trend ¶
Calculate trend positions based on threshold values.
Logic: - 1 if x >= threshold - -1 if x <= -threshold - 0 if x is NaN (Input NaN handling) - Hold (Forward Fill) otherwise
Source code in ctalearn/operator/_strategy.py
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 | |
trend_reverse ¶
Calculate trend reverse positions. Simple negation of trend strategy.
Source code in ctalearn/operator/_strategy.py
49 50 51 52 53 54 | |
trend_mean_reversion ¶
Calculate mean reversion positions.
Logic: - 1 (Long) if x >= threshold - -1 (Short) if x <= -threshold - 0 (Close) if x crosses 0 (positive or negative crossover) AND not opening a position - 0 if x is NaN - Hold (Forward Fill) otherwise
Source code in ctalearn/operator/_strategy.py
57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 | |
trend_reverse_mean_reversion ¶
Calculate reverse mean reversion positions. Negation of trend_mean_reversion.
Source code in ctalearn/operator/_strategy.py
113 114 115 116 117 118 | |
trend_fast ¶
Calculate fast trend positions. Logic: - 1 (Long) if x >= threshold - -1 (Short) if x <= -threshold - 0 (Close) if x crosses threshold (x < threshold or x > -threshold) AND not opening a position - 0 if x is NaN - Hold (Forward Fill) otherwise
Source code in ctalearn/operator/_strategy.py
121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 | |
trend_reverse_fast ¶
Calculate reverse fast trend positions. Negation of trend_fast.
Source code in ctalearn/operator/_strategy.py
162 163 164 165 166 167 | |
trend_time ¶
Fixed-duration trend signal.
Logic (per column):
- Start long (1) when x >= threshold
- Start short (-1) when x <= -threshold
- Once started, keep the position for step rows (including the trigger row)
- After step rows, revert back to 0
- Null values do not create triggers; output is determined by the most recent trigger
within the last step rows (so the window can continue through nulls)
Notes
This is a "pulse"-style signal (duration-limited), not a forward-filled hold-until-close.
Source code in ctalearn/operator/_strategy.py
170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 | |