chain-registry 2.0.23 → 2.0.25
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.
- package/esm/mainnet/agoric/chain.js +8 -8
- package/esm/mainnet/hippoprotocol/chain.js +4 -1
- package/esm/mainnet/hippoprotocol/ibc-data.js +30 -0
- package/esm/mainnet/hippoprotocol/index.js +2 -0
- package/esm/mainnet/ibc-data.js +2 -0
- package/esm/mainnet/osmosis/ibc-data.js +29 -0
- package/esm/mainnet/seda/chain.js +8 -8
- package/esm/noncosmos/moonbeam/asset-list.js +1 -1
- package/esm/testnet/sedatestnet/chain.js +5 -5
- package/mainnet/agoric/chain.js +8 -8
- package/mainnet/hippoprotocol/chain.js +4 -1
- package/mainnet/hippoprotocol/ibc-data.d.ts +3 -0
- package/mainnet/hippoprotocol/ibc-data.js +32 -0
- package/mainnet/hippoprotocol/index.d.ts +1 -0
- package/mainnet/hippoprotocol/index.js +3 -1
- package/mainnet/ibc-data.js +2 -0
- package/mainnet/osmosis/ibc-data.js +29 -0
- package/mainnet/seda/chain.js +8 -8
- package/noncosmos/moonbeam/asset-list.js +1 -1
- package/package.json +3 -3
- package/testnet/sedatestnet/chain.js +5 -5
|
@@ -30,13 +30,13 @@ const info = {
|
|
|
30
30
|
genesis: {
|
|
31
31
|
genesisUrl: 'https://main.agoric.net/genesis.json'
|
|
32
32
|
},
|
|
33
|
-
recommendedVersion: 'agoric-upgrade-
|
|
34
|
-
compatibleVersions: ['agoric-upgrade-
|
|
33
|
+
recommendedVersion: 'agoric-upgrade-21',
|
|
34
|
+
compatibleVersions: ['agoric-upgrade-21'],
|
|
35
35
|
consensus: {
|
|
36
36
|
type: 'cometbft',
|
|
37
|
-
version: 'v0.
|
|
37
|
+
version: 'v0.37.15',
|
|
38
38
|
repo: 'https://github.com/agoric-labs/cometbft',
|
|
39
|
-
tag: 'v0.
|
|
39
|
+
tag: 'v0.37.15-alpha.agoric.1'
|
|
40
40
|
},
|
|
41
41
|
cosmwasm: {
|
|
42
42
|
enabled: false
|
|
@@ -48,14 +48,14 @@ const info = {
|
|
|
48
48
|
sdk: {
|
|
49
49
|
type: 'cosmos',
|
|
50
50
|
repo: 'https://github.com/agoric-labs/cosmos-sdk',
|
|
51
|
-
version: 'v0.
|
|
52
|
-
tag: 'v0.
|
|
51
|
+
version: 'v0.47.17',
|
|
52
|
+
tag: 'v0.47.17-alpha.agoric.1'
|
|
53
53
|
},
|
|
54
54
|
ibc: {
|
|
55
55
|
type: 'go',
|
|
56
|
-
version: '
|
|
56
|
+
version: 'v7.10.0',
|
|
57
57
|
repo: 'https://github.com/agoric-labs/ibc-go',
|
|
58
|
-
tag: '
|
|
58
|
+
tag: 'v7.10.0-alpha.agoric.2',
|
|
59
59
|
icsEnabled: ['ics20-1']
|
|
60
60
|
}
|
|
61
61
|
},
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
const info = [{
|
|
2
|
+
$schema: '../ibc_data.schema.json',
|
|
3
|
+
chain1: {
|
|
4
|
+
chainName: 'hippoprotocol',
|
|
5
|
+
clientId: '07-tendermint-0',
|
|
6
|
+
connectionId: 'connection-0'
|
|
7
|
+
},
|
|
8
|
+
chain2: {
|
|
9
|
+
chainName: 'osmosis',
|
|
10
|
+
clientId: '07-tendermint-3519',
|
|
11
|
+
connectionId: 'connection-10762'
|
|
12
|
+
},
|
|
13
|
+
channels: [{
|
|
14
|
+
chain1: {
|
|
15
|
+
channelId: 'channel-0',
|
|
16
|
+
portId: 'transfer'
|
|
17
|
+
},
|
|
18
|
+
chain2: {
|
|
19
|
+
channelId: 'channel-104931',
|
|
20
|
+
portId: 'transfer'
|
|
21
|
+
},
|
|
22
|
+
ordering: 'unordered',
|
|
23
|
+
version: 'ics20-1',
|
|
24
|
+
tags: {
|
|
25
|
+
status: 'live',
|
|
26
|
+
preferred: true
|
|
27
|
+
}
|
|
28
|
+
}]
|
|
29
|
+
}];
|
|
30
|
+
export default info;
|
package/esm/mainnet/ibc-data.js
CHANGED
|
@@ -61,6 +61,7 @@ import * as _genesisl1 from './genesisl1';
|
|
|
61
61
|
import * as _gitopia from './gitopia';
|
|
62
62
|
import * as _gravitybridge from './gravitybridge';
|
|
63
63
|
import * as _haqq from './haqq';
|
|
64
|
+
import * as _hippoprotocol from './hippoprotocol';
|
|
64
65
|
import * as _humans from './humans';
|
|
65
66
|
import * as _impacthub from './impacthub';
|
|
66
67
|
import * as _imversed from './imversed';
|
|
@@ -223,6 +224,7 @@ const ibcData = [
|
|
|
223
224
|
..._gitopia.ibcData,
|
|
224
225
|
..._gravitybridge.ibcData,
|
|
225
226
|
..._haqq.ibcData,
|
|
227
|
+
..._hippoprotocol.ibcData,
|
|
226
228
|
..._humans.ibcData,
|
|
227
229
|
..._impacthub.ibcData,
|
|
228
230
|
..._imversed.ibcData,
|
|
@@ -1934,6 +1934,35 @@ const info = [
|
|
|
1934
1934
|
}
|
|
1935
1935
|
}]
|
|
1936
1936
|
},
|
|
1937
|
+
{
|
|
1938
|
+
$schema: '../ibc_data.schema.json',
|
|
1939
|
+
chain1: {
|
|
1940
|
+
chainName: 'hippoprotocol',
|
|
1941
|
+
clientId: '07-tendermint-0',
|
|
1942
|
+
connectionId: 'connection-0'
|
|
1943
|
+
},
|
|
1944
|
+
chain2: {
|
|
1945
|
+
chainName: 'osmosis',
|
|
1946
|
+
clientId: '07-tendermint-3519',
|
|
1947
|
+
connectionId: 'connection-10762'
|
|
1948
|
+
},
|
|
1949
|
+
channels: [{
|
|
1950
|
+
chain1: {
|
|
1951
|
+
channelId: 'channel-0',
|
|
1952
|
+
portId: 'transfer'
|
|
1953
|
+
},
|
|
1954
|
+
chain2: {
|
|
1955
|
+
channelId: 'channel-104931',
|
|
1956
|
+
portId: 'transfer'
|
|
1957
|
+
},
|
|
1958
|
+
ordering: 'unordered',
|
|
1959
|
+
version: 'ics20-1',
|
|
1960
|
+
tags: {
|
|
1961
|
+
status: 'live',
|
|
1962
|
+
preferred: true
|
|
1963
|
+
}
|
|
1964
|
+
}]
|
|
1965
|
+
},
|
|
1937
1966
|
{
|
|
1938
1967
|
$schema: '../ibc_data.schema.json',
|
|
1939
1968
|
chain1: {
|
|
@@ -28,18 +28,18 @@ const info = {
|
|
|
28
28
|
},
|
|
29
29
|
codebase: {
|
|
30
30
|
gitRepo: 'https://github.com/sedaprotocol/seda-chain',
|
|
31
|
-
recommendedVersion: '
|
|
32
|
-
compatibleVersions: ['
|
|
31
|
+
recommendedVersion: 'v1.0.0',
|
|
32
|
+
compatibleVersions: ['v1.0.0'],
|
|
33
33
|
binaries: {
|
|
34
|
-
"linux/amd64": 'https://github.com/sedaprotocol/seda-chain/releases/download/
|
|
35
|
-
"linux/arm64": 'https://github.com/sedaprotocol/seda-chain/releases/download/
|
|
34
|
+
"linux/amd64": 'https://github.com/sedaprotocol/seda-chain/releases/download/v1.0.0/sedad-amd64',
|
|
35
|
+
"linux/arm64": 'https://github.com/sedaprotocol/seda-chain/releases/download/v1.0.0/sedad-arm64'
|
|
36
36
|
},
|
|
37
37
|
genesis: {
|
|
38
38
|
genesisUrl: 'https://raw.githubusercontent.com/sedaprotocol/seda-networks/main/mainnet/genesis.json'
|
|
39
39
|
},
|
|
40
40
|
language: {
|
|
41
41
|
type: 'go',
|
|
42
|
-
version: '1.
|
|
42
|
+
version: '1.23.5'
|
|
43
43
|
},
|
|
44
44
|
consensus: {
|
|
45
45
|
type: 'cometbft',
|
|
@@ -47,16 +47,16 @@ const info = {
|
|
|
47
47
|
},
|
|
48
48
|
sdk: {
|
|
49
49
|
type: 'cosmos',
|
|
50
|
-
version: 'v0.50.
|
|
50
|
+
version: 'v0.50.14'
|
|
51
51
|
},
|
|
52
52
|
cosmwasm: {
|
|
53
|
-
version: '
|
|
53
|
+
version: 'v0.53.3',
|
|
54
54
|
repo: 'https://github.com/CosmWasm/wasmd',
|
|
55
55
|
enabled: true
|
|
56
56
|
},
|
|
57
57
|
ibc: {
|
|
58
58
|
type: 'go',
|
|
59
|
-
version: 'v8.
|
|
59
|
+
version: 'v8.7.0'
|
|
60
60
|
}
|
|
61
61
|
},
|
|
62
62
|
logoURIs: {
|
|
@@ -28,11 +28,11 @@ const info = {
|
|
|
28
28
|
},
|
|
29
29
|
codebase: {
|
|
30
30
|
gitRepo: 'https://github.com/sedaprotocol/seda-chain',
|
|
31
|
-
recommendedVersion: 'v1.0.0-rc.
|
|
32
|
-
compatibleVersions: ['v1.0.0-rc.
|
|
31
|
+
recommendedVersion: 'v1.0.0-rc.6',
|
|
32
|
+
compatibleVersions: ['v1.0.0-rc.6'],
|
|
33
33
|
binaries: {
|
|
34
|
-
"linux/amd64": 'https://github.com/sedaprotocol/seda-chain/releases/download/v1.0.0-rc.
|
|
35
|
-
"linux/arm64": 'https://github.com/sedaprotocol/seda-chain/releases/download/v1.0.0-rc.
|
|
34
|
+
"linux/amd64": 'https://github.com/sedaprotocol/seda-chain/releases/download/v1.0.0-rc.6/sedad-amd64',
|
|
35
|
+
"linux/arm64": 'https://github.com/sedaprotocol/seda-chain/releases/download/v1.0.0-rc.6/sedad-arm64'
|
|
36
36
|
},
|
|
37
37
|
genesis: {
|
|
38
38
|
genesisUrl: 'https://raw.githubusercontent.com/sedaprotocol/seda-networks/main/testnet/genesis.json'
|
|
@@ -50,7 +50,7 @@ const info = {
|
|
|
50
50
|
version: 'v0.50.13'
|
|
51
51
|
},
|
|
52
52
|
cosmwasm: {
|
|
53
|
-
version: '
|
|
53
|
+
version: 'v0.53.3',
|
|
54
54
|
repo: 'https://github.com/CosmWasm/wasmd',
|
|
55
55
|
enabled: true
|
|
56
56
|
},
|
package/mainnet/agoric/chain.js
CHANGED
|
@@ -32,13 +32,13 @@ const info = {
|
|
|
32
32
|
genesis: {
|
|
33
33
|
genesisUrl: 'https://main.agoric.net/genesis.json'
|
|
34
34
|
},
|
|
35
|
-
recommendedVersion: 'agoric-upgrade-
|
|
36
|
-
compatibleVersions: ['agoric-upgrade-
|
|
35
|
+
recommendedVersion: 'agoric-upgrade-21',
|
|
36
|
+
compatibleVersions: ['agoric-upgrade-21'],
|
|
37
37
|
consensus: {
|
|
38
38
|
type: 'cometbft',
|
|
39
|
-
version: 'v0.
|
|
39
|
+
version: 'v0.37.15',
|
|
40
40
|
repo: 'https://github.com/agoric-labs/cometbft',
|
|
41
|
-
tag: 'v0.
|
|
41
|
+
tag: 'v0.37.15-alpha.agoric.1'
|
|
42
42
|
},
|
|
43
43
|
cosmwasm: {
|
|
44
44
|
enabled: false
|
|
@@ -50,14 +50,14 @@ const info = {
|
|
|
50
50
|
sdk: {
|
|
51
51
|
type: 'cosmos',
|
|
52
52
|
repo: 'https://github.com/agoric-labs/cosmos-sdk',
|
|
53
|
-
version: 'v0.
|
|
54
|
-
tag: 'v0.
|
|
53
|
+
version: 'v0.47.17',
|
|
54
|
+
tag: 'v0.47.17-alpha.agoric.1'
|
|
55
55
|
},
|
|
56
56
|
ibc: {
|
|
57
57
|
type: 'go',
|
|
58
|
-
version: '
|
|
58
|
+
version: 'v7.10.0',
|
|
59
59
|
repo: 'https://github.com/agoric-labs/ibc-go',
|
|
60
|
-
tag: '
|
|
60
|
+
tag: 'v7.10.0-alpha.agoric.2',
|
|
61
61
|
icsEnabled: ['ics20-1']
|
|
62
62
|
}
|
|
63
63
|
},
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const info = [{
|
|
4
|
+
$schema: '../ibc_data.schema.json',
|
|
5
|
+
chain1: {
|
|
6
|
+
chainName: 'hippoprotocol',
|
|
7
|
+
clientId: '07-tendermint-0',
|
|
8
|
+
connectionId: 'connection-0'
|
|
9
|
+
},
|
|
10
|
+
chain2: {
|
|
11
|
+
chainName: 'osmosis',
|
|
12
|
+
clientId: '07-tendermint-3519',
|
|
13
|
+
connectionId: 'connection-10762'
|
|
14
|
+
},
|
|
15
|
+
channels: [{
|
|
16
|
+
chain1: {
|
|
17
|
+
channelId: 'channel-0',
|
|
18
|
+
portId: 'transfer'
|
|
19
|
+
},
|
|
20
|
+
chain2: {
|
|
21
|
+
channelId: 'channel-104931',
|
|
22
|
+
portId: 'transfer'
|
|
23
|
+
},
|
|
24
|
+
ordering: 'unordered',
|
|
25
|
+
version: 'ics20-1',
|
|
26
|
+
tags: {
|
|
27
|
+
status: 'live',
|
|
28
|
+
preferred: true
|
|
29
|
+
}
|
|
30
|
+
}]
|
|
31
|
+
}];
|
|
32
|
+
exports.default = info;
|
|
@@ -3,8 +3,10 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
3
3
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
4
|
};
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
exports.chain = exports.assetList = void 0;
|
|
6
|
+
exports.ibcData = exports.chain = exports.assetList = void 0;
|
|
7
7
|
const asset_list_1 = __importDefault(require("./asset-list"));
|
|
8
8
|
const chain_1 = __importDefault(require("./chain"));
|
|
9
|
+
const ibc_data_1 = __importDefault(require("./ibc-data"));
|
|
9
10
|
exports.assetList = asset_list_1.default;
|
|
10
11
|
exports.chain = chain_1.default;
|
|
12
|
+
exports.ibcData = ibc_data_1.default;
|
package/mainnet/ibc-data.js
CHANGED
|
@@ -86,6 +86,7 @@ const _genesisl1 = __importStar(require("./genesisl1"));
|
|
|
86
86
|
const _gitopia = __importStar(require("./gitopia"));
|
|
87
87
|
const _gravitybridge = __importStar(require("./gravitybridge"));
|
|
88
88
|
const _haqq = __importStar(require("./haqq"));
|
|
89
|
+
const _hippoprotocol = __importStar(require("./hippoprotocol"));
|
|
89
90
|
const _humans = __importStar(require("./humans"));
|
|
90
91
|
const _impacthub = __importStar(require("./impacthub"));
|
|
91
92
|
const _imversed = __importStar(require("./imversed"));
|
|
@@ -248,6 +249,7 @@ const ibcData = [
|
|
|
248
249
|
..._gitopia.ibcData,
|
|
249
250
|
..._gravitybridge.ibcData,
|
|
250
251
|
..._haqq.ibcData,
|
|
252
|
+
..._hippoprotocol.ibcData,
|
|
251
253
|
..._humans.ibcData,
|
|
252
254
|
..._impacthub.ibcData,
|
|
253
255
|
..._imversed.ibcData,
|
|
@@ -1936,6 +1936,35 @@ const info = [
|
|
|
1936
1936
|
}
|
|
1937
1937
|
}]
|
|
1938
1938
|
},
|
|
1939
|
+
{
|
|
1940
|
+
$schema: '../ibc_data.schema.json',
|
|
1941
|
+
chain1: {
|
|
1942
|
+
chainName: 'hippoprotocol',
|
|
1943
|
+
clientId: '07-tendermint-0',
|
|
1944
|
+
connectionId: 'connection-0'
|
|
1945
|
+
},
|
|
1946
|
+
chain2: {
|
|
1947
|
+
chainName: 'osmosis',
|
|
1948
|
+
clientId: '07-tendermint-3519',
|
|
1949
|
+
connectionId: 'connection-10762'
|
|
1950
|
+
},
|
|
1951
|
+
channels: [{
|
|
1952
|
+
chain1: {
|
|
1953
|
+
channelId: 'channel-0',
|
|
1954
|
+
portId: 'transfer'
|
|
1955
|
+
},
|
|
1956
|
+
chain2: {
|
|
1957
|
+
channelId: 'channel-104931',
|
|
1958
|
+
portId: 'transfer'
|
|
1959
|
+
},
|
|
1960
|
+
ordering: 'unordered',
|
|
1961
|
+
version: 'ics20-1',
|
|
1962
|
+
tags: {
|
|
1963
|
+
status: 'live',
|
|
1964
|
+
preferred: true
|
|
1965
|
+
}
|
|
1966
|
+
}]
|
|
1967
|
+
},
|
|
1939
1968
|
{
|
|
1940
1969
|
$schema: '../ibc_data.schema.json',
|
|
1941
1970
|
chain1: {
|
package/mainnet/seda/chain.js
CHANGED
|
@@ -30,18 +30,18 @@ const info = {
|
|
|
30
30
|
},
|
|
31
31
|
codebase: {
|
|
32
32
|
gitRepo: 'https://github.com/sedaprotocol/seda-chain',
|
|
33
|
-
recommendedVersion: '
|
|
34
|
-
compatibleVersions: ['
|
|
33
|
+
recommendedVersion: 'v1.0.0',
|
|
34
|
+
compatibleVersions: ['v1.0.0'],
|
|
35
35
|
binaries: {
|
|
36
|
-
"linux/amd64": 'https://github.com/sedaprotocol/seda-chain/releases/download/
|
|
37
|
-
"linux/arm64": 'https://github.com/sedaprotocol/seda-chain/releases/download/
|
|
36
|
+
"linux/amd64": 'https://github.com/sedaprotocol/seda-chain/releases/download/v1.0.0/sedad-amd64',
|
|
37
|
+
"linux/arm64": 'https://github.com/sedaprotocol/seda-chain/releases/download/v1.0.0/sedad-arm64'
|
|
38
38
|
},
|
|
39
39
|
genesis: {
|
|
40
40
|
genesisUrl: 'https://raw.githubusercontent.com/sedaprotocol/seda-networks/main/mainnet/genesis.json'
|
|
41
41
|
},
|
|
42
42
|
language: {
|
|
43
43
|
type: 'go',
|
|
44
|
-
version: '1.
|
|
44
|
+
version: '1.23.5'
|
|
45
45
|
},
|
|
46
46
|
consensus: {
|
|
47
47
|
type: 'cometbft',
|
|
@@ -49,16 +49,16 @@ const info = {
|
|
|
49
49
|
},
|
|
50
50
|
sdk: {
|
|
51
51
|
type: 'cosmos',
|
|
52
|
-
version: 'v0.50.
|
|
52
|
+
version: 'v0.50.14'
|
|
53
53
|
},
|
|
54
54
|
cosmwasm: {
|
|
55
|
-
version: '
|
|
55
|
+
version: 'v0.53.3',
|
|
56
56
|
repo: 'https://github.com/CosmWasm/wasmd',
|
|
57
57
|
enabled: true
|
|
58
58
|
},
|
|
59
59
|
ibc: {
|
|
60
60
|
type: 'go',
|
|
61
|
-
version: 'v8.
|
|
61
|
+
version: 'v8.7.0'
|
|
62
62
|
}
|
|
63
63
|
},
|
|
64
64
|
logoURIs: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "chain-registry",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.25",
|
|
4
4
|
"description": "Cosmos chain registry ⚛️",
|
|
5
5
|
"author": "Dan Lynch <pyramation@gmail.com>",
|
|
6
6
|
"homepage": "https://github.com/hyperweb-io/chain-registry/tree/master/packages/chain-registry#readme",
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
"test:watch": "jest --watch"
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@chain-registry/types": "^2.0.
|
|
32
|
+
"@chain-registry/types": "^2.0.25"
|
|
33
33
|
},
|
|
34
34
|
"keywords": [
|
|
35
35
|
"chain-registry",
|
|
@@ -39,5 +39,5 @@
|
|
|
39
39
|
"interchain",
|
|
40
40
|
"tokens"
|
|
41
41
|
],
|
|
42
|
-
"gitHead": "
|
|
42
|
+
"gitHead": "19dd786d06fa32fab2eb98bed35c07f37820d266"
|
|
43
43
|
}
|
|
@@ -30,11 +30,11 @@ const info = {
|
|
|
30
30
|
},
|
|
31
31
|
codebase: {
|
|
32
32
|
gitRepo: 'https://github.com/sedaprotocol/seda-chain',
|
|
33
|
-
recommendedVersion: 'v1.0.0-rc.
|
|
34
|
-
compatibleVersions: ['v1.0.0-rc.
|
|
33
|
+
recommendedVersion: 'v1.0.0-rc.6',
|
|
34
|
+
compatibleVersions: ['v1.0.0-rc.6'],
|
|
35
35
|
binaries: {
|
|
36
|
-
"linux/amd64": 'https://github.com/sedaprotocol/seda-chain/releases/download/v1.0.0-rc.
|
|
37
|
-
"linux/arm64": 'https://github.com/sedaprotocol/seda-chain/releases/download/v1.0.0-rc.
|
|
36
|
+
"linux/amd64": 'https://github.com/sedaprotocol/seda-chain/releases/download/v1.0.0-rc.6/sedad-amd64',
|
|
37
|
+
"linux/arm64": 'https://github.com/sedaprotocol/seda-chain/releases/download/v1.0.0-rc.6/sedad-arm64'
|
|
38
38
|
},
|
|
39
39
|
genesis: {
|
|
40
40
|
genesisUrl: 'https://raw.githubusercontent.com/sedaprotocol/seda-networks/main/testnet/genesis.json'
|
|
@@ -52,7 +52,7 @@ const info = {
|
|
|
52
52
|
version: 'v0.50.13'
|
|
53
53
|
},
|
|
54
54
|
cosmwasm: {
|
|
55
|
-
version: '
|
|
55
|
+
version: 'v0.53.3',
|
|
56
56
|
repo: 'https://github.com/CosmWasm/wasmd',
|
|
57
57
|
enabled: true
|
|
58
58
|
},
|