@layerzerolabs/lz-evm-protocol-v2 2.0.13 → 2.0.15

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.
Files changed (37) hide show
  1. package/artifacts/contracts/EndpointV2.sol/EndpointV2.json +82 -92
  2. package/artifacts/contracts/EndpointV2Alt.sol/EndpointV2Alt.json +84 -94
  3. package/artifacts/contracts/EndpointV2View.sol/EndpointV2View.json +209 -0
  4. package/artifacts/contracts/EndpointV2ViewUpgradeable.sol/EndpointV2ViewUpgradeable.json +196 -0
  5. package/artifacts/contracts/MessageLibManager.sol/MessageLibManager.json +12 -12
  6. package/artifacts/contracts/MessagingChannel.sol/MessagingChannel.json +2 -2
  7. package/artifacts/contracts/MessagingComposer.sol/MessagingComposer.json +2 -2
  8. package/artifacts/contracts/interfaces/ILayerZeroEndpointV2.sol/ILayerZeroEndpointV2.json +99 -51
  9. package/artifacts/contracts/interfaces/IMessageLibManager.sol/IMessageLibManager.json +29 -0
  10. package/artifacts/contracts/interfaces/IMessagingChannel.sol/IMessagingChannel.json +29 -0
  11. package/artifacts/contracts/libs/AddressCast.sol/AddressCast.json +14 -3
  12. package/artifacts/contracts/libs/Errors.sol/Errors.json +30 -45
  13. package/artifacts/contracts/libs/GUID.sol/GUID.json +2 -2
  14. package/artifacts/contracts/libs/Transfer.sol/Transfer.json +8 -8
  15. package/artifacts/contracts/messagelib/BlockedMessageLib.sol/BlockedMessageLib.json +3 -3
  16. package/artifacts/contracts/messagelib/SimpleMessageLib.sol/SimpleMessageLib.json +10 -10
  17. package/artifacts/contracts/messagelib/libs/ExecutorOptions.sol/ExecutorOptions.json +5 -5
  18. package/artifacts/contracts/messagelib/libs/PacketV1Codec.sol/PacketV1Codec.json +2 -2
  19. package/contracts/EndpointV2.sol +13 -49
  20. package/contracts/EndpointV2Alt.sol +4 -2
  21. package/contracts/EndpointV2View.sol +12 -0
  22. package/contracts/EndpointV2ViewUpgradeable.sol +86 -0
  23. package/contracts/MessageLibManager.sol +17 -17
  24. package/contracts/MessagingChannel.sol +8 -8
  25. package/contracts/MessagingComposer.sol +2 -2
  26. package/contracts/MessagingContext.sol +1 -1
  27. package/contracts/interfaces/ILayerZeroEndpointV2.sol +2 -13
  28. package/contracts/interfaces/ILayerZeroReceiver.sol +0 -1
  29. package/contracts/interfaces/IMessageLibManager.sol +2 -0
  30. package/contracts/interfaces/IMessagingChannel.sol +2 -0
  31. package/contracts/libs/AddressCast.sol +6 -5
  32. package/contracts/libs/Errors.sol +28 -31
  33. package/contracts/libs/Transfer.sol +5 -5
  34. package/contracts/messagelib/BlockedMessageLib.sol +1 -1
  35. package/contracts/messagelib/SimpleMessageLib.sol +1 -1
  36. package/contracts/messagelib/libs/ExecutorOptions.sol +6 -6
  37. package/package.json +3 -1
@@ -800,47 +800,6 @@
800
800
  "stateMutability": "view",
801
801
  "type": "function"
802
802
  },
803
- {
804
- "inputs": [
805
- {
806
- "components": [
807
- {
808
- "internalType": "uint32",
809
- "name": "srcEid",
810
- "type": "uint32"
811
- },
812
- {
813
- "internalType": "bytes32",
814
- "name": "sender",
815
- "type": "bytes32"
816
- },
817
- {
818
- "internalType": "uint64",
819
- "name": "nonce",
820
- "type": "uint64"
821
- }
822
- ],
823
- "internalType": "struct Origin",
824
- "name": "_origin",
825
- "type": "tuple"
826
- },
827
- {
828
- "internalType": "address",
829
- "name": "_receiver",
830
- "type": "address"
831
- }
832
- ],
833
- "name": "executable",
834
- "outputs": [
835
- {
836
- "internalType": "enum ExecutionState",
837
- "name": "",
838
- "type": "uint8"
839
- }
840
- ],
841
- "stateMutability": "view",
842
- "type": "function"
843
- },
844
803
  {
845
804
  "inputs": [
846
805
  {
@@ -1022,6 +981,47 @@
1022
981
  "stateMutability": "view",
1023
982
  "type": "function"
1024
983
  },
984
+ {
985
+ "inputs": [
986
+ {
987
+ "components": [
988
+ {
989
+ "internalType": "uint32",
990
+ "name": "srcEid",
991
+ "type": "uint32"
992
+ },
993
+ {
994
+ "internalType": "bytes32",
995
+ "name": "sender",
996
+ "type": "bytes32"
997
+ },
998
+ {
999
+ "internalType": "uint64",
1000
+ "name": "nonce",
1001
+ "type": "uint64"
1002
+ }
1003
+ ],
1004
+ "internalType": "struct Origin",
1005
+ "name": "_origin",
1006
+ "type": "tuple"
1007
+ },
1008
+ {
1009
+ "internalType": "address",
1010
+ "name": "_receiver",
1011
+ "type": "address"
1012
+ }
1013
+ ],
1014
+ "name": "initializable",
1015
+ "outputs": [
1016
+ {
1017
+ "internalType": "bool",
1018
+ "name": "",
1019
+ "type": "bool"
1020
+ }
1021
+ ],
1022
+ "stateMutability": "view",
1023
+ "type": "function"
1024
+ },
1025
1025
  {
1026
1026
  "inputs": [
1027
1027
  {
@@ -1097,6 +1097,64 @@
1097
1097
  "stateMutability": "view",
1098
1098
  "type": "function"
1099
1099
  },
1100
+ {
1101
+ "inputs": [
1102
+ {
1103
+ "internalType": "address",
1104
+ "name": "_receiver",
1105
+ "type": "address"
1106
+ },
1107
+ {
1108
+ "internalType": "uint32",
1109
+ "name": "_eid",
1110
+ "type": "uint32"
1111
+ },
1112
+ {
1113
+ "internalType": "address",
1114
+ "name": "_lib",
1115
+ "type": "address"
1116
+ }
1117
+ ],
1118
+ "name": "isValidReceiveLibrary",
1119
+ "outputs": [
1120
+ {
1121
+ "internalType": "bool",
1122
+ "name": "",
1123
+ "type": "bool"
1124
+ }
1125
+ ],
1126
+ "stateMutability": "view",
1127
+ "type": "function"
1128
+ },
1129
+ {
1130
+ "inputs": [
1131
+ {
1132
+ "internalType": "address",
1133
+ "name": "_receiver",
1134
+ "type": "address"
1135
+ },
1136
+ {
1137
+ "internalType": "uint32",
1138
+ "name": "_srcEid",
1139
+ "type": "uint32"
1140
+ },
1141
+ {
1142
+ "internalType": "bytes32",
1143
+ "name": "_sender",
1144
+ "type": "bytes32"
1145
+ }
1146
+ ],
1147
+ "name": "lazyInboundNonce",
1148
+ "outputs": [
1149
+ {
1150
+ "internalType": "uint64",
1151
+ "name": "",
1152
+ "type": "uint64"
1153
+ }
1154
+ ],
1155
+ "stateMutability": "view",
1156
+ "type": "function"
1157
+ },
1100
1158
  {
1101
1159
  "inputs": [
1102
1160
  {
@@ -1780,16 +1838,6 @@
1780
1838
  "internalType": "address",
1781
1839
  "name": "_receiver",
1782
1840
  "type": "address"
1783
- },
1784
- {
1785
- "internalType": "address",
1786
- "name": "_receiveLib",
1787
- "type": "address"
1788
- },
1789
- {
1790
- "internalType": "bytes32",
1791
- "name": "_payloadHash",
1792
- "type": "bytes32"
1793
1841
  }
1794
1842
  ],
1795
1843
  "name": "verifiable",
@@ -384,6 +384,35 @@
384
384
  "stateMutability": "view",
385
385
  "type": "function"
386
386
  },
387
+ {
388
+ "inputs": [
389
+ {
390
+ "internalType": "address",
391
+ "name": "_receiver",
392
+ "type": "address"
393
+ },
394
+ {
395
+ "internalType": "uint32",
396
+ "name": "_eid",
397
+ "type": "uint32"
398
+ },
399
+ {
400
+ "internalType": "address",
401
+ "name": "_lib",
402
+ "type": "address"
403
+ }
404
+ ],
405
+ "name": "isValidReceiveLibrary",
406
+ "outputs": [
407
+ {
408
+ "internalType": "bool",
409
+ "name": "",
410
+ "type": "bool"
411
+ }
412
+ ],
413
+ "stateMutability": "view",
414
+ "type": "function"
415
+ },
387
416
  {
388
417
  "inputs": [
389
418
  {
@@ -217,6 +217,35 @@
217
217
  "stateMutability": "view",
218
218
  "type": "function"
219
219
  },
220
+ {
221
+ "inputs": [
222
+ {
223
+ "internalType": "address",
224
+ "name": "_receiver",
225
+ "type": "address"
226
+ },
227
+ {
228
+ "internalType": "uint32",
229
+ "name": "_srcEid",
230
+ "type": "uint32"
231
+ },
232
+ {
233
+ "internalType": "bytes32",
234
+ "name": "_sender",
235
+ "type": "bytes32"
236
+ }
237
+ ],
238
+ "name": "lazyInboundNonce",
239
+ "outputs": [
240
+ {
241
+ "internalType": "uint64",
242
+ "name": "",
243
+ "type": "uint64"
244
+ }
245
+ ],
246
+ "stateMutability": "view",
247
+ "type": "function"
248
+ },
220
249
  {
221
250
  "inputs": [
222
251
  {
@@ -2,9 +2,20 @@
2
2
  "_format": "hh-sol-artifact-1",
3
3
  "contractName": "AddressCast",
4
4
  "sourceName": "contracts/libs/AddressCast.sol",
5
- "abi": [],
6
- "bytecode": "0x60566037600b82828239805160001a607314602a57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600080fdfea2646970667358221220132015d699beab6d2da4a31bb680fd11bcc349178256cf5a6bc365c3fd6dc40b64736f6c63430008160033",
7
- "deployedBytecode": "0x73000000000000000000000000000000000000000030146080604052600080fdfea2646970667358221220132015d699beab6d2da4a31bb680fd11bcc349178256cf5a6bc365c3fd6dc40b64736f6c63430008160033",
5
+ "abi": [
6
+ {
7
+ "inputs": [],
8
+ "name": "AddressCast_InvalidAddress",
9
+ "type": "error"
10
+ },
11
+ {
12
+ "inputs": [],
13
+ "name": "AddressCast_InvalidSizeForAddress",
14
+ "type": "error"
15
+ }
16
+ ],
17
+ "bytecode": "0x60566037600b82828239805160001a607314602a57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600080fdfea26469706673582212201f0edbea7caac4e8f1f0fccd8f8141d9c88d475dde8672e25fabed0290ed375664736f6c63430008160033",
18
+ "deployedBytecode": "0x73000000000000000000000000000000000000000030146080604052600080fdfea26469706673582212201f0edbea7caac4e8f1f0fccd8f8141d9c88d475dde8672e25fabed0290ed375664736f6c63430008160033",
8
19
  "linkReferences": {},
9
20
  "deployedLinkReferences": {}
10
21
  }
@@ -5,12 +5,12 @@
5
5
  "abi": [
6
6
  {
7
7
  "inputs": [],
8
- "name": "AlreadyRegistered",
8
+ "name": "LZ_AlreadyRegistered",
9
9
  "type": "error"
10
10
  },
11
11
  {
12
12
  "inputs": [],
13
- "name": "ComposeExists",
13
+ "name": "LZ_ComposeExists",
14
14
  "type": "error"
15
15
  },
16
16
  {
@@ -26,17 +26,17 @@
26
26
  "type": "bytes32"
27
27
  }
28
28
  ],
29
- "name": "ComposeNotFound",
29
+ "name": "LZ_ComposeNotFound",
30
30
  "type": "error"
31
31
  },
32
32
  {
33
33
  "inputs": [],
34
- "name": "DefaultReceiveLibUnavailable",
34
+ "name": "LZ_DefaultReceiveLibUnavailable",
35
35
  "type": "error"
36
36
  },
37
37
  {
38
38
  "inputs": [],
39
- "name": "DefaultSendLibUnavailable",
39
+ "name": "LZ_DefaultSendLibUnavailable",
40
40
  "type": "error"
41
41
  },
42
42
  {
@@ -62,12 +62,7 @@
62
62
  "type": "uint256"
63
63
  }
64
64
  ],
65
- "name": "InsufficientFee",
66
- "type": "error"
67
- },
68
- {
69
- "inputs": [],
70
- "name": "InvalidAddress",
65
+ "name": "LZ_InsufficientFee",
71
66
  "type": "error"
72
67
  },
73
68
  {
@@ -83,17 +78,17 @@
83
78
  "type": "uint256"
84
79
  }
85
80
  ],
86
- "name": "InvalidAmount",
81
+ "name": "LZ_InvalidAmount",
87
82
  "type": "error"
88
83
  },
89
84
  {
90
85
  "inputs": [],
91
- "name": "InvalidArgument",
86
+ "name": "LZ_InvalidArgument",
92
87
  "type": "error"
93
88
  },
94
89
  {
95
90
  "inputs": [],
96
- "name": "InvalidExpiry",
91
+ "name": "LZ_InvalidExpiry",
97
92
  "type": "error"
98
93
  },
99
94
  {
@@ -104,72 +99,62 @@
104
99
  "type": "uint64"
105
100
  }
106
101
  ],
107
- "name": "InvalidNonce",
108
- "type": "error"
109
- },
110
- {
111
- "inputs": [],
112
- "name": "InvalidPayloadHash",
113
- "type": "error"
114
- },
115
- {
116
- "inputs": [],
117
- "name": "InvalidReceiveLibrary",
102
+ "name": "LZ_InvalidNonce",
118
103
  "type": "error"
119
104
  },
120
105
  {
121
106
  "inputs": [],
122
- "name": "InvalidSizeForAddress",
107
+ "name": "LZ_InvalidPayloadHash",
123
108
  "type": "error"
124
109
  },
125
110
  {
126
111
  "inputs": [],
127
- "name": "LzTokenUnavailable",
112
+ "name": "LZ_InvalidReceiveLibrary",
128
113
  "type": "error"
129
114
  },
130
115
  {
131
116
  "inputs": [],
132
- "name": "NotImplemented",
117
+ "name": "LZ_LzTokenUnavailable",
133
118
  "type": "error"
134
119
  },
135
120
  {
136
121
  "inputs": [],
137
- "name": "OnlyAltToken",
122
+ "name": "LZ_NotImplemented",
138
123
  "type": "error"
139
124
  },
140
125
  {
141
126
  "inputs": [],
142
- "name": "OnlyNonDefaultLib",
127
+ "name": "LZ_OnlyNonDefaultLib",
143
128
  "type": "error"
144
129
  },
145
130
  {
146
131
  "inputs": [],
147
- "name": "OnlyReceiveLib",
132
+ "name": "LZ_OnlyReceiveLib",
148
133
  "type": "error"
149
134
  },
150
135
  {
151
136
  "inputs": [],
152
- "name": "OnlyRegisteredLib",
137
+ "name": "LZ_OnlyRegisteredLib",
153
138
  "type": "error"
154
139
  },
155
140
  {
156
141
  "inputs": [],
157
- "name": "OnlyRegisteredOrDefaultLib",
142
+ "name": "LZ_OnlyRegisteredOrDefaultLib",
158
143
  "type": "error"
159
144
  },
160
145
  {
161
146
  "inputs": [],
162
- "name": "OnlySendLib",
147
+ "name": "LZ_OnlySendLib",
163
148
  "type": "error"
164
149
  },
165
150
  {
166
151
  "inputs": [],
167
- "name": "PathNotInitializable",
152
+ "name": "LZ_PathNotInitializable",
168
153
  "type": "error"
169
154
  },
170
155
  {
171
156
  "inputs": [],
172
- "name": "PathNotVerifiable",
157
+ "name": "LZ_PathNotVerifiable",
173
158
  "type": "error"
174
159
  },
175
160
  {
@@ -185,42 +170,42 @@
185
170
  "type": "bytes32"
186
171
  }
187
172
  ],
188
- "name": "PayloadHashNotFound",
173
+ "name": "LZ_PayloadHashNotFound",
189
174
  "type": "error"
190
175
  },
191
176
  {
192
177
  "inputs": [],
193
- "name": "SameValue",
178
+ "name": "LZ_SameValue",
194
179
  "type": "error"
195
180
  },
196
181
  {
197
182
  "inputs": [],
198
- "name": "SendReentrancy",
183
+ "name": "LZ_SendReentrancy",
199
184
  "type": "error"
200
185
  },
201
186
  {
202
187
  "inputs": [],
203
- "name": "Unauthorized",
188
+ "name": "LZ_Unauthorized",
204
189
  "type": "error"
205
190
  },
206
191
  {
207
192
  "inputs": [],
208
- "name": "UnsupportedEid",
193
+ "name": "LZ_UnsupportedEid",
209
194
  "type": "error"
210
195
  },
211
196
  {
212
197
  "inputs": [],
213
- "name": "UnsupportedInterface",
198
+ "name": "LZ_UnsupportedInterface",
214
199
  "type": "error"
215
200
  },
216
201
  {
217
202
  "inputs": [],
218
- "name": "ZeroLzTokenFee",
203
+ "name": "LZ_ZeroLzTokenFee",
219
204
  "type": "error"
220
205
  }
221
206
  ],
222
- "bytecode": "0x60566037600b82828239805160001a607314602a57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600080fdfea26469706673582212204c814034d95a410c4af9f92d68c1294c4eee1af4b42074272417ff6bac290df164736f6c63430008160033",
223
- "deployedBytecode": "0x73000000000000000000000000000000000000000030146080604052600080fdfea26469706673582212204c814034d95a410c4af9f92d68c1294c4eee1af4b42074272417ff6bac290df164736f6c63430008160033",
207
+ "bytecode": "0x60566037600b82828239805160001a607314602a57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600080fdfea2646970667358221220ee4e5ff80e72cf65c8cc5fa273578092c1f724159d71f20ab473329e530bea6b64736f6c63430008160033",
208
+ "deployedBytecode": "0x73000000000000000000000000000000000000000030146080604052600080fdfea2646970667358221220ee4e5ff80e72cf65c8cc5fa273578092c1f724159d71f20ab473329e530bea6b64736f6c63430008160033",
224
209
  "linkReferences": {},
225
210
  "deployedLinkReferences": {}
226
211
  }
@@ -3,8 +3,8 @@
3
3
  "contractName": "GUID",
4
4
  "sourceName": "contracts/libs/GUID.sol",
5
5
  "abi": [],
6
- "bytecode": "0x60566037600b82828239805160001a607314602a57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600080fdfea2646970667358221220d62f77d664333d8dfbe50239f2c1f167ca2e78cf753839b16ae362524404e0ae64736f6c63430008160033",
7
- "deployedBytecode": "0x73000000000000000000000000000000000000000030146080604052600080fdfea2646970667358221220d62f77d664333d8dfbe50239f2c1f167ca2e78cf753839b16ae362524404e0ae64736f6c63430008160033",
6
+ "bytecode": "0x60566037600b82828239805160001a607314602a57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600080fdfea2646970667358221220b09f7ba1ada3a2266e46110496d544843cbbf3e30d2a76a1c68053ee094d06d664736f6c63430008160033",
7
+ "deployedBytecode": "0x73000000000000000000000000000000000000000030146080604052600080fdfea2646970667358221220b09f7ba1ada3a2266e46110496d544843cbbf3e30d2a76a1c68053ee094d06d664736f6c63430008160033",
8
8
  "linkReferences": {},
9
9
  "deployedLinkReferences": {}
10
10
  }
@@ -3,11 +3,6 @@
3
3
  "contractName": "Transfer",
4
4
  "sourceName": "contracts/libs/Transfer.sol",
5
5
  "abi": [
6
- {
7
- "inputs": [],
8
- "name": "ToAddressIsZero",
9
- "type": "error"
10
- },
11
6
  {
12
7
  "inputs": [
13
8
  {
@@ -21,12 +16,17 @@
21
16
  "type": "uint256"
22
17
  }
23
18
  ],
24
- "name": "TransferNativeFailed",
19
+ "name": "Transfer_NativeFailed",
20
+ "type": "error"
21
+ },
22
+ {
23
+ "inputs": [],
24
+ "name": "Transfer_ToAddressIsZero",
25
25
  "type": "error"
26
26
  }
27
27
  ],
28
- "bytecode": "0x60566037600b82828239805160001a607314602a57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600080fdfea26469706673582212208d4f23135e49fb413c0259f42b52a0a209f4e994cf9775c97be522dd50cf059364736f6c63430008160033",
29
- "deployedBytecode": "0x73000000000000000000000000000000000000000030146080604052600080fdfea26469706673582212208d4f23135e49fb413c0259f42b52a0a209f4e994cf9775c97be522dd50cf059364736f6c63430008160033",
28
+ "bytecode": "0x60566037600b82828239805160001a607314602a57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600080fdfea264697066735822122025e578cb137e7fdf1cd4db6ab192e8965c7af7e355b24135ddd13a35afcbc09b64736f6c63430008160033",
29
+ "deployedBytecode": "0x73000000000000000000000000000000000000000030146080604052600080fdfea264697066735822122025e578cb137e7fdf1cd4db6ab192e8965c7af7e355b24135ddd13a35afcbc09b64736f6c63430008160033",
30
30
  "linkReferences": {},
31
31
  "deployedLinkReferences": {}
32
32
  }
@@ -5,7 +5,7 @@
5
5
  "abi": [
6
6
  {
7
7
  "inputs": [],
8
- "name": "NotImplemented",
8
+ "name": "LZ_NotImplemented",
9
9
  "type": "error"
10
10
  },
11
11
  {
@@ -87,8 +87,8 @@
87
87
  "type": "function"
88
88
  }
89
89
  ],
90
- "bytecode": "0x608060405234801561001057600080fd5b5061026f806100206000396000f3fe608060405234801561001057600080fd5b506004361061004c5760003560e01c806301ffc9a71461007e5780631881d94d146100a657806354fd4d50146100b55780636750cd4c146100dc575b6040517fd623472500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61009161008c366004610189565b6100f0565b60405190151581526020015b60405180910390f35b600260405161009d91906101d2565b6040805167ffffffffffffffff815260ff602082015260029181019190915260600161009d565b6100916100ea366004610213565b50600190565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f97f0258400000000000000000000000000000000000000000000000000000000148061018357507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b60006020828403121561019b57600080fd5b81357fffffffff00000000000000000000000000000000000000000000000000000000811681146101cb57600080fd5b9392505050565b602081016003831061020d577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b91905290565b60006020828403121561022557600080fd5b813563ffffffff811681146101cb57600080fdfea2646970667358221220c9c0506538080982fd403c3c32d7540c9fed117f863df9d5342f129ba868c53b64736f6c63430008160033",
91
- "deployedBytecode": "0x608060405234801561001057600080fd5b506004361061004c5760003560e01c806301ffc9a71461007e5780631881d94d146100a657806354fd4d50146100b55780636750cd4c146100dc575b6040517fd623472500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61009161008c366004610189565b6100f0565b60405190151581526020015b60405180910390f35b600260405161009d91906101d2565b6040805167ffffffffffffffff815260ff602082015260029181019190915260600161009d565b6100916100ea366004610213565b50600190565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f97f0258400000000000000000000000000000000000000000000000000000000148061018357507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b60006020828403121561019b57600080fd5b81357fffffffff00000000000000000000000000000000000000000000000000000000811681146101cb57600080fd5b9392505050565b602081016003831061020d577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b91905290565b60006020828403121561022557600080fd5b813563ffffffff811681146101cb57600080fdfea2646970667358221220c9c0506538080982fd403c3c32d7540c9fed117f863df9d5342f129ba868c53b64736f6c63430008160033",
90
+ "bytecode": "0x608060405234801561001057600080fd5b5061026f806100206000396000f3fe608060405234801561001057600080fd5b506004361061004c5760003560e01c806301ffc9a71461007e5780631881d94d146100a657806354fd4d50146100b55780636750cd4c146100dc575b6040517f2657b6c300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61009161008c366004610189565b6100f0565b60405190151581526020015b60405180910390f35b600260405161009d91906101d2565b6040805167ffffffffffffffff815260ff602082015260029181019190915260600161009d565b6100916100ea366004610213565b50600190565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f97f0258400000000000000000000000000000000000000000000000000000000148061018357507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b60006020828403121561019b57600080fd5b81357fffffffff00000000000000000000000000000000000000000000000000000000811681146101cb57600080fd5b9392505050565b602081016003831061020d577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b91905290565b60006020828403121561022557600080fd5b813563ffffffff811681146101cb57600080fdfea26469706673582212207325c273f24f61163cfdb1e23c56b38901e8e28127e69a8ee9f84318afd4358e64736f6c63430008160033",
91
+ "deployedBytecode": "0x608060405234801561001057600080fd5b506004361061004c5760003560e01c806301ffc9a71461007e5780631881d94d146100a657806354fd4d50146100b55780636750cd4c146100dc575b6040517f2657b6c300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61009161008c366004610189565b6100f0565b60405190151581526020015b60405180910390f35b600260405161009d91906101d2565b6040805167ffffffffffffffff815260ff602082015260029181019190915260600161009d565b6100916100ea366004610213565b50600190565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f97f0258400000000000000000000000000000000000000000000000000000000148061018357507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b60006020828403121561019b57600080fd5b81357fffffffff00000000000000000000000000000000000000000000000000000000811681146101cb57600080fd5b9392505050565b602081016003831061020d577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b91905290565b60006020828403121561022557600080fd5b813563ffffffff811681146101cb57600080fdfea26469706673582212207325c273f24f61163cfdb1e23c56b38901e8e28127e69a8ee9f84318afd4358e64736f6c63430008160033",
92
92
  "linkReferences": {},
93
93
  "deployedLinkReferences": {}
94
94
  }