Commit a0f3fcb
Release/26.7.15 (#361)
* SK-2955 align upsert/upsertType with Flow-DB changes (docs, tests, error-message cleanup) (#346)
Flow-DB now defaults record-level upsert to UPDATE (was REPLACE) and owns
upsert-placement validation server-side. The SDK already serializes
upsertType correctly and omits updateType when unset, so this is docs,
tests, and validation hygiene only.
- README: document upsertType is optional, default is now UPDATE, and
UPDATE vs REPLACE semantics.
- Samples: drop redundant explicit upsertType(UPDATE) (now the default)
in BulkMultiTableInsert{Sync,Async}; keep REPLACE samples as-is.
- Validations: defer upsert-placement checks to the backend (authoritative
messages); SDK only guards empty upsert columns.
- Tests: cover default-UPDATE omission at request/record level, both-level
serialization, and updated placement tests to reflect deferral.
Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
* [AUTOMATED] Private Release 2.1.1-dev-ce79ce1
* SK-3002 retry backoff support (#367)
* SK-3002 add SkyflowRetryInterceptor (configurable retry count + backoff)
Hand-written OkHttp interceptor replicating Fern's retry algorithm
(exponential backoff + proportional jitter, factor 0.2 fixed). Exposes
maxRetries / initialRetryDelayMillis / maxRetryDelayMillis; retries on
408/429/5xx. Carries a TODO to replace with Fern's generated interceptor
once a version exposing the delay knobs is vendored.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
* SK-3002 expose configurable timeout + retries (client & vault level)
- VaultConfig: vault-level timeout/maxRetries/initialRetryDelayMillis/
maxRetryDelayMillis (nullable = inherit)
- Skyflow.SkyflowClientBuilder: flat client-wide setters + propagation to
existing controllers (mirrors addSkyflowCredentials)
- VaultClient.updateExecutorInHTTP: set callTimeout + attach
SkyflowRetryInterceptor; per-field precedence vault > client > SDK default
(defaults 60s / 3 / 500ms / 2000ms)
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
* SK-3002 tests for configurable timeout + retries
- SkyflowRetryInterceptorTests: retry count, stop-on-success, 408/429/5xx
triggers, non-retryable passthrough, zero-retries
- VaultClientHttpConfigTests: callTimeout applied to shared client, precedence
(vault > client > default), bounded-not-zero regression guard, VaultConfig
field getters/setters
Note: pre-existing VaultClientTests#testSetBearerTokenWithEnvCredentials fails
on Java 21 (PowerMock byte-buddy cannot instrument JDK security classes) —
reproduced on base v3, unrelated to this change.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
* SK-3002 add sample for configurable timeout + retries
Demonstrates client-wide defaults on Skyflow.builder() and per-vault
overrides on VaultConfig, with precedence and unit notes. Compiles against
the local SDK build (samples module pins a released version, so it builds
once this change ships).
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
* SK-3002 add MockWebServer integration test (live timeout + retry proof)
Drives an OkHttpClient built like VaultClient (callTimeout + SkyflowRetry
Interceptor) against a real loopback MockWebServer:
- retries 503 then succeeds (server sees 1+retries requests)
- exhausts retries, returns last failure
- no retry on 400
- callTimeout aborts a never-responding server (~1s, not hanging) -- the fix
- observable backoff between retries
Adds com.squareup.okhttp3:mockwebserver as a test dependency.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
* SK-3002 remove MockWebServer test (breaks CI on PowerMock + Java 21)
MockWebServer's static init loads JDK security providers, which the
PowerMock/byte-buddy agent fails to instrument on Java 21
(IllegalClassFormatException: Unsupported class file major version 65) ->
ExceptionInInitializerError in setUp. This is the same agent/JDK
incompatibility that already fails testSetBearerTokenWithEnvCredentials.
Retry/timeout behavior remains covered by the mocked-Chain unit tests
(SkyflowRetryInterceptorTests) and the config/precedence tests
(VaultClientHttpConfigTests), both green in CI. Also drops the
mockwebserver test dependency.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
* SK-3002 raise coverage for new timeout/retry code
Cover the previously-untested new code paths flagged by Codecov:
- Skyflow.builder() setters + propagateHttpConfig loop (config set before
and after addVaultConfig) -> SkyflowClientBuilderHttpConfigTests
- resolveInt/resolveLong vault + client branches via maxRetries + backoff
precedence, asserted on the built SkyflowRetryInterceptor's fields
- interceptor InterruptedException-during-backoff path (throws IOException,
preserves interrupt flag)
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
* SK-3002-retry-backoff-support
* SK-3002 use Fern v4 generated RetryInterceptor; rename knobs to initialRetryDelay/maxRetryDelay
- Swap hand-written SkyflowRetryInterceptor for Fern's v4 generated RetryInterceptor
(public 4-arg ctor: maxRetries, Optional<Long> initial/max delay, Optional<Double> jitter);
delete SkyflowRetryInterceptor + its unit test
- Rename public knobs initialRetryDelayMillis/maxRetryDelayMillis -> initialRetryDelay/
maxRetryDelay (Fern naming); still long ms, client + vault levels only
- VaultClient attaches the generated RetryInterceptor on the shared client, passing resolved
values as Optional (jitter Optional.empty -> Fern default 0.2). Gains Retry-After /
X-RateLimit-Reset header awareness for free
- Update VaultClientHttpConfigTests to reflect Fern's Duration fields; rename sample
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
* SK-3002 fix CI coverage: prepend @{argLine} so JaCoCo agent attaches
The v4-regen added a static <argLine> (--add-opens ...) to maven-surefire-plugin,
which overwrote the argLine JaCoCo's prepare-agent injects. The coverage agent
therefore never attached -> no jacoco.exec -> "Skipping JaCoCo ... missing
execution data" -> no jacoco.xml -> Codecov "No coverage reports found" (build
green, 439 tests pass, but upload fails).
Prepend @{argLine} (Surefire late-binding of JaCoCo's property) so both the
coverage agent and the --add-opens flags apply. Verified locally: jacoco.exec
and jacoco.xml are generated again.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
* SK-3002 default maxRetries=0 (retries opt-in) to avoid retrying non-idempotent writes
Retries fire on 408/429/5xx for all operations regardless of HTTP verb, so
auto-retrying a non-idempotent write (e.g. insert without upsert) after a
5xx/timeout could create a duplicate record. Default maxRetries to 0 so the
unconfigured SDK does not retry; customers opt in by setting maxRetries.
The 60s callTimeout still bounds every call. initialRetryDelay/maxRetryDelay
defaults only take effect once maxRetries > 0.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
---------
Co-authored-by: Devesh-Skyflow <devesh.bhardwaj@skyflow.com>
Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
* [AUTOMATED] Private Release 2.1.1-dev-1236334
* SK-3002 retry backoff support (#368)
* SK-3002 add SkyflowRetryInterceptor (configurable retry count + backoff)
Hand-written OkHttp interceptor replicating Fern's retry algorithm
(exponential backoff + proportional jitter, factor 0.2 fixed). Exposes
maxRetries / initialRetryDelayMillis / maxRetryDelayMillis; retries on
408/429/5xx. Carries a TODO to replace with Fern's generated interceptor
once a version exposing the delay knobs is vendored.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
* SK-3002 expose configurable timeout + retries (client & vault level)
- VaultConfig: vault-level timeout/maxRetries/initialRetryDelayMillis/
maxRetryDelayMillis (nullable = inherit)
- Skyflow.SkyflowClientBuilder: flat client-wide setters + propagation to
existing controllers (mirrors addSkyflowCredentials)
- VaultClient.updateExecutorInHTTP: set callTimeout + attach
SkyflowRetryInterceptor; per-field precedence vault > client > SDK default
(defaults 60s / 3 / 500ms / 2000ms)
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
* SK-3002 tests for configurable timeout + retries
- SkyflowRetryInterceptorTests: retry count, stop-on-success, 408/429/5xx
triggers, non-retryable passthrough, zero-retries
- VaultClientHttpConfigTests: callTimeout applied to shared client, precedence
(vault > client > default), bounded-not-zero regression guard, VaultConfig
field getters/setters
Note: pre-existing VaultClientTests#testSetBearerTokenWithEnvCredentials fails
on Java 21 (PowerMock byte-buddy cannot instrument JDK security classes) —
reproduced on base v3, unrelated to this change.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
* SK-3002 add sample for configurable timeout + retries
Demonstrates client-wide defaults on Skyflow.builder() and per-vault
overrides on VaultConfig, with precedence and unit notes. Compiles against
the local SDK build (samples module pins a released version, so it builds
once this change ships).
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
* SK-3002 add MockWebServer integration test (live timeout + retry proof)
Drives an OkHttpClient built like VaultClient (callTimeout + SkyflowRetry
Interceptor) against a real loopback MockWebServer:
- retries 503 then succeeds (server sees 1+retries requests)
- exhausts retries, returns last failure
- no retry on 400
- callTimeout aborts a never-responding server (~1s, not hanging) -- the fix
- observable backoff between retries
Adds com.squareup.okhttp3:mockwebserver as a test dependency.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
* SK-3002 remove MockWebServer test (breaks CI on PowerMock + Java 21)
MockWebServer's static init loads JDK security providers, which the
PowerMock/byte-buddy agent fails to instrument on Java 21
(IllegalClassFormatException: Unsupported class file major version 65) ->
ExceptionInInitializerError in setUp. This is the same agent/JDK
incompatibility that already fails testSetBearerTokenWithEnvCredentials.
Retry/timeout behavior remains covered by the mocked-Chain unit tests
(SkyflowRetryInterceptorTests) and the config/precedence tests
(VaultClientHttpConfigTests), both green in CI. Also drops the
mockwebserver test dependency.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
* SK-3002 raise coverage for new timeout/retry code
Cover the previously-untested new code paths flagged by Codecov:
- Skyflow.builder() setters + propagateHttpConfig loop (config set before
and after addVaultConfig) -> SkyflowClientBuilderHttpConfigTests
- resolveInt/resolveLong vault + client branches via maxRetries + backoff
precedence, asserted on the built SkyflowRetryInterceptor's fields
- interceptor InterruptedException-during-backoff path (throws IOException,
preserves interrupt flag)
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
* SK-3002-retry-backoff-support
* SK-3002 use Fern v4 generated RetryInterceptor; rename knobs to initialRetryDelay/maxRetryDelay
- Swap hand-written SkyflowRetryInterceptor for Fern's v4 generated RetryInterceptor
(public 4-arg ctor: maxRetries, Optional<Long> initial/max delay, Optional<Double> jitter);
delete SkyflowRetryInterceptor + its unit test
- Rename public knobs initialRetryDelayMillis/maxRetryDelayMillis -> initialRetryDelay/
maxRetryDelay (Fern naming); still long ms, client + vault levels only
- VaultClient attaches the generated RetryInterceptor on the shared client, passing resolved
values as Optional (jitter Optional.empty -> Fern default 0.2). Gains Retry-After /
X-RateLimit-Reset header awareness for free
- Update VaultClientHttpConfigTests to reflect Fern's Duration fields; rename sample
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
* SK-3002 fix CI coverage: prepend @{argLine} so JaCoCo agent attaches
The v4-regen added a static <argLine> (--add-opens ...) to maven-surefire-plugin,
which overwrote the argLine JaCoCo's prepare-agent injects. The coverage agent
therefore never attached -> no jacoco.exec -> "Skipping JaCoCo ... missing
execution data" -> no jacoco.xml -> Codecov "No coverage reports found" (build
green, 439 tests pass, but upload fails).
Prepend @{argLine} (Surefire late-binding of JaCoCo's property) so both the
coverage agent and the --add-opens flags apply. Verified locally: jacoco.exec
and jacoco.xml are generated again.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
* SK-3002 default maxRetries=0 (retries opt-in) to avoid retrying non-idempotent writes
Retries fire on 408/429/5xx for all operations regardless of HTTP verb, so
auto-retrying a non-idempotent write (e.g. insert without upsert) after a
5xx/timeout could create a duplicate record. Default maxRetries to 0 so the
unconfigured SDK does not retry; customers opt in by setting maxRetries.
The 60s callTimeout still bounds every call. initialRetryDelay/maxRetryDelay
defaults only take effect once maxRetries > 0.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
* SK-3002 rename retry delay knobs to Fern's public names: initialRetryDelayMillis / maxRetryDelayMillis
Match Fern's public setter names exactly (initialRetryDelayMillis / maxRetryDelayMillis)
so the unit (ms) is self-documenting and consistent with Fern. timeout stays in
seconds (also matching Fern). Removes the mixed-unit footgun where the dropped
`Millis` suffix made `initialRetryDelay(500)` look like seconds.
Renamed across VaultConfig, Skyflow.SkyflowClientBuilder, VaultClient, the config
tests, and the sample. Fern interceptor field reflection in tests kept as-is
(Fern's field is `initialRetryDelay: Duration`, not the ctor param name).
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
* SK-3002 classify client-side timeout as 408 in batch error records
Timeouts previously surfaced in response.errors as code 500 with a raw
"...ApiClientException: Network error..." message, indistinguishable from a
server error. In the four bulk handlers, when a batch fails with a non-API
exception, walk the cause chain for an InterruptedIOException (OkHttp's
call/socket timeout) and report 408 + "Request timed out." instead of 500.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
---------
Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Co-authored-by: skyflow-bharti <bharti.sagar@skyflow.com>
* [AUTOMATED] Private Release 2.1.1-dev-3196451
---------
Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Co-authored-by: Devesh-Skyflow <Devesh-Skyflow@users.noreply.github.com>
Co-authored-by: skyflow-bharti <118584001+skyflow-bharti@users.noreply.github.com>
Co-authored-by: skyflow-bharti <bharti.sagar@skyflow.com>1 parent a475727 commit a0f3fcb
87 files changed
Lines changed: 3879 additions & 357 deletions
File tree
- samples
- src/main/java/com/example/vault
- v3
- src
- main/java/com/skyflow
- config
- generated/rest
- core
- resources
- flowservice
- requests
- records
- requests
- types
- utils
- validations
- test/java/com/skyflow
- utils
- validations
- vault/data
Some content is hidden
Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
260 | 260 | | |
261 | 261 | | |
262 | 262 | | |
263 | | - | |
264 | | - | |
| 263 | + | |
| 264 | + | |
| 265 | + | |
| 266 | + | |
| 267 | + | |
265 | 268 | | |
266 | 269 | | |
267 | 270 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
182 | 182 | | |
183 | 183 | | |
184 | 184 | | |
| 185 | + | |
| 186 | + | |
| 187 | + | |
| 188 | + | |
| 189 | + | |
| 190 | + | |
| 191 | + | |
| 192 | + | |
| 193 | + | |
| 194 | + | |
| 195 | + | |
| 196 | + | |
| 197 | + | |
185 | 198 | | |
186 | 199 | | |
187 | 200 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
18 | 18 | | |
19 | 19 | | |
20 | 20 | | |
21 | | - | |
| 21 | + | |
22 | 22 | | |
23 | 23 | | |
24 | 24 | | |
| |||
Lines changed: 2 additions & 2 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
5 | 5 | | |
6 | 6 | | |
7 | 7 | | |
8 | | - | |
9 | 8 | | |
10 | 9 | | |
11 | 10 | | |
| |||
59 | 58 | | |
60 | 59 | | |
61 | 60 | | |
62 | | - | |
| 61 | + | |
| 62 | + | |
63 | 63 | | |
64 | 64 | | |
65 | 65 | | |
| |||
Lines changed: 2 additions & 2 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
5 | 5 | | |
6 | 6 | | |
7 | 7 | | |
8 | | - | |
9 | 8 | | |
10 | 9 | | |
11 | 10 | | |
| |||
58 | 57 | | |
59 | 58 | | |
60 | 59 | | |
61 | | - | |
| 60 | + | |
| 61 | + | |
62 | 62 | | |
63 | 63 | | |
64 | 64 | | |
| |||
Lines changed: 74 additions & 0 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 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 | + | |
| 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 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
11 | 11 | | |
12 | 12 | | |
13 | 13 | | |
14 | | - | |
| 14 | + | |
15 | 15 | | |
16 | 16 | | |
17 | 17 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
55 | 55 | | |
56 | 56 | | |
57 | 57 | | |
| 58 | + | |
| 59 | + | |
| 60 | + | |
| 61 | + | |
| 62 | + | |
58 | 63 | | |
59 | 64 | | |
60 | 65 | | |
| |||
78 | 83 | | |
79 | 84 | | |
80 | 85 | | |
81 | | - | |
| 86 | + | |
| 87 | + | |
| 88 | + | |
82 | 89 | | |
83 | 90 | | |
84 | 91 | | |
| |||
100 | 107 | | |
101 | 108 | | |
102 | 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 | + | |
| 139 | + | |
| 140 | + | |
| 141 | + | |
| 142 | + | |
| 143 | + | |
103 | 144 | | |
104 | 145 | | |
105 | 146 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
2 | 2 | | |
3 | 3 | | |
4 | 4 | | |
| 5 | + | |
5 | 6 | | |
6 | 7 | | |
7 | 8 | | |
| |||
19 | 20 | | |
20 | 21 | | |
21 | 22 | | |
| 23 | + | |
22 | 24 | | |
23 | 25 | | |
24 | 26 | | |
| |||
45 | 47 | | |
46 | 48 | | |
47 | 49 | | |
| 50 | + | |
| 51 | + | |
| 52 | + | |
| 53 | + | |
| 54 | + | |
| 55 | + | |
| 56 | + | |
| 57 | + | |
| 58 | + | |
| 59 | + | |
48 | 60 | | |
49 | 61 | | |
50 | 62 | | |
| |||
68 | 80 | | |
69 | 81 | | |
70 | 82 | | |
| 83 | + | |
| 84 | + | |
| 85 | + | |
| 86 | + | |
| 87 | + | |
| 88 | + | |
| 89 | + | |
| 90 | + | |
| 91 | + | |
| 92 | + | |
| 93 | + | |
| 94 | + | |
| 95 | + | |
| 96 | + | |
71 | 97 | | |
72 | 98 | | |
73 | 99 | | |
| |||
143 | 169 | | |
144 | 170 | | |
145 | 171 | | |
| 172 | + | |
| 173 | + | |
| 174 | + | |
| 175 | + | |
| 176 | + | |
| 177 | + | |
| 178 | + | |
146 | 179 | | |
147 | 180 | | |
148 | | - | |
| 181 | + | |
| 182 | + | |
| 183 | + | |
| 184 | + | |
149 | 185 | | |
150 | 186 | | |
151 | 187 | | |
| |||
156 | 192 | | |
157 | 193 | | |
158 | 194 | | |
| 195 | + | |
| 196 | + | |
| 197 | + | |
| 198 | + | |
| 199 | + | |
| 200 | + | |
| 201 | + | |
| 202 | + | |
| 203 | + | |
| 204 | + | |
| 205 | + | |
| 206 | + | |
| 207 | + | |
| 208 | + | |
| 209 | + | |
| 210 | + | |
159 | 211 | | |
160 | 212 | | |
161 | 213 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
8 | 8 | | |
9 | 9 | | |
10 | 10 | | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
11 | 16 | | |
12 | 17 | | |
13 | 18 | | |
14 | 19 | | |
15 | 20 | | |
16 | 21 | | |
17 | 22 | | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
18 | 27 | | |
19 | 28 | | |
20 | 29 | | |
| |||
57 | 66 | | |
58 | 67 | | |
59 | 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 | + | |
60 | 105 | | |
61 | 106 | | |
62 | 107 | | |
| |||
0 commit comments