@etherisc/gif-next 0.0.2-b97394c-442 → 0.0.2-b9e43cf-870

Sign up to get free protection for your applications and to get access to all the features.
Files changed (239) hide show
  1. package/README.md +63 -1
  2. package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.dbg.json +1 -1
  3. package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.json +155 -0
  4. package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +1 -1
  5. package/artifacts/contracts/components/Distribution.sol/Distribution.json +143 -86
  6. package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.dbg.json +1 -1
  7. package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.json +117 -0
  8. package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +1 -1
  9. package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +1 -1
  10. package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +26 -0
  11. package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +1 -1
  12. package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +1 -1
  13. package/artifacts/contracts/components/Pool.sol/Pool.json +168 -113
  14. package/artifacts/contracts/components/Product.sol/Product.dbg.json +1 -1
  15. package/artifacts/contracts/components/Product.sol/Product.json +141 -95
  16. package/artifacts/contracts/experiment/cloning/Cloner.sol/Cloner.dbg.json +1 -1
  17. package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock1.dbg.json +1 -1
  18. package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock2.dbg.json +1 -1
  19. package/artifacts/contracts/experiment/errors/Require.sol/Require.dbg.json +1 -1
  20. package/artifacts/contracts/experiment/errors/Revert.sol/Revert.dbg.json +1 -1
  21. package/artifacts/contracts/experiment/inheritance/A.sol/A.dbg.json +1 -1
  22. package/artifacts/contracts/experiment/inheritance/A.sol/AShared.dbg.json +1 -1
  23. package/artifacts/contracts/experiment/inheritance/B.sol/B.dbg.json +1 -1
  24. package/artifacts/contracts/experiment/inheritance/C.sol/C.dbg.json +1 -1
  25. package/artifacts/contracts/experiment/inheritance/IA.sol/IA.dbg.json +1 -1
  26. package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.dbg.json +1 -1
  27. package/artifacts/contracts/experiment/inheritance/IB.sol/IB.dbg.json +1 -1
  28. package/artifacts/contracts/experiment/inheritance/IC.sol/IC.dbg.json +1 -1
  29. package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.dbg.json +1 -1
  30. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.dbg.json +1 -1
  31. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.dbg.json +1 -1
  32. package/artifacts/contracts/experiment/statemachine/SM.sol/SM.dbg.json +1 -1
  33. package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.dbg.json +1 -1
  34. package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.dbg.json +1 -1
  35. package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.dbg.json +1 -1
  36. package/artifacts/contracts/instance/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.dbg.json +4 -0
  37. package/artifacts/contracts/instance/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.json +1206 -0
  38. package/artifacts/contracts/instance/BundleManager.sol/BundleManager.dbg.json +4 -0
  39. package/artifacts/contracts/instance/BundleManager.sol/BundleManager.json +788 -0
  40. package/artifacts/contracts/instance/Cloneable.sol/Cloneable.dbg.json +4 -0
  41. package/artifacts/contracts/instance/{AccessManagedSimple.sol/AccessManagedSimple.json → Cloneable.sol/Cloneable.json} +86 -2
  42. package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
  43. package/artifacts/contracts/instance/IInstance.sol/IInstance.json +129 -0
  44. package/artifacts/contracts/instance/IInstanceBase.sol/IInstanceBase.dbg.json +4 -0
  45. package/artifacts/contracts/instance/IInstanceBase.sol/IInstanceBase.json +448 -0
  46. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +1 -1
  47. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +104 -14
  48. package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
  49. package/artifacts/contracts/instance/Instance.sol/Instance.json +98 -658
  50. package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +1 -1
  51. package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +244 -114
  52. package/artifacts/contracts/instance/InstanceBase.sol/InstanceBase.dbg.json +4 -0
  53. package/artifacts/contracts/instance/InstanceBase.sol/InstanceBase.json +763 -0
  54. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +1 -1
  55. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +2 -2
  56. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +1 -1
  57. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +183 -151
  58. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +1 -1
  59. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +26 -74
  60. package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.dbg.json +4 -0
  61. package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.json +285 -0
  62. package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.dbg.json +1 -1
  63. package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.json +24 -32
  64. package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.dbg.json +1 -1
  65. package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +1 -1
  66. package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.dbg.json +1 -1
  67. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +1 -1
  68. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +1 -1
  69. package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +1 -1
  70. package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +59 -16
  71. package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +1 -1
  72. package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +1 -1
  73. package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +1 -1
  74. package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +1 -1
  75. package/artifacts/contracts/instance/module/ISetup.sol/ISetup.dbg.json +1 -1
  76. package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.dbg.json +1 -1
  77. package/artifacts/contracts/instance/service/BundleService.sol/BundleService.dbg.json +4 -0
  78. package/artifacts/contracts/instance/service/BundleService.sol/BundleService.json +1031 -0
  79. package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.dbg.json +4 -0
  80. package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.json +436 -0
  81. package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.dbg.json +1 -1
  82. package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.json +39 -52
  83. package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +1 -1
  84. package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +49 -72
  85. package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +1 -1
  86. package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +13 -37
  87. package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.dbg.json +4 -0
  88. package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.json +720 -0
  89. package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.dbg.json +1 -1
  90. package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.json +13 -13
  91. package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +1 -1
  92. package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.json +13 -13
  93. package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.dbg.json +4 -0
  94. package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.json +771 -0
  95. package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +1 -1
  96. package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +15 -185
  97. package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +1 -1
  98. package/artifacts/contracts/instance/service/IProductService.sol/IProductService.json +17 -241
  99. package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.dbg.json +4 -0
  100. package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.json +1156 -0
  101. package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +4 -0
  102. package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.json +492 -0
  103. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +1 -1
  104. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +38 -282
  105. package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.dbg.json +1 -1
  106. package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.json +13 -53
  107. package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +1 -1
  108. package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +40 -410
  109. package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.dbg.json +1 -1
  110. package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.json +13 -81
  111. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
  112. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +2 -2
  113. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
  114. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +132 -133
  115. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +1 -1
  116. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +94 -65
  117. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +1 -1
  118. package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
  119. package/artifacts/contracts/registry/Registry.sol/Registry.json +145 -227
  120. package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.dbg.json +4 -0
  121. package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.json +285 -0
  122. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +1 -1
  123. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +30 -128
  124. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +1 -1
  125. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +38 -104
  126. package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.dbg.json +4 -0
  127. package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.json +530 -0
  128. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +1 -1
  129. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +14 -27
  130. package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.dbg.json +1 -1
  131. package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +1 -1
  132. package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +1 -1
  133. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
  134. package/artifacts/contracts/shared/IService.sol/IService.dbg.json +1 -1
  135. package/artifacts/contracts/shared/IService.sol/IService.json +13 -13
  136. package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +1 -1
  137. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +1 -1
  138. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +2 -2
  139. package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +1 -1
  140. package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +2 -2
  141. package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
  142. package/artifacts/contracts/shared/Registerable.sol/Registerable.json +2 -2
  143. package/artifacts/contracts/shared/RegisterableUpgradable.sol/RegisterableUpgradable.dbg.json +1 -1
  144. package/artifacts/contracts/shared/Service.sol/Service.dbg.json +1 -1
  145. package/artifacts/contracts/shared/Service.sol/Service.json +13 -13
  146. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +1 -1
  147. package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +1 -1
  148. package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +1 -1
  149. package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +1 -1
  150. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +1 -1
  151. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +2 -2
  152. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +1 -1
  153. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +2 -2
  154. package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +1 -1
  155. package/artifacts/contracts/test/TestService.sol/TestService.json +31 -31
  156. package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +1 -1
  157. package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +1 -1
  158. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +1 -1
  159. package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +1 -1
  160. package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +1 -1
  161. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +1 -1
  162. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +1 -1
  163. package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.dbg.json +1 -1
  164. package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +1 -1
  165. package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +1 -1
  166. package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +1 -1
  167. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +1 -1
  168. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +26 -3
  169. package/artifacts/contracts/types/NumberId.sol/NumberIdLib.dbg.json +1 -1
  170. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +1 -1
  171. package/artifacts/contracts/types/Referral.sol/ReferralLib.dbg.json +1 -1
  172. package/artifacts/contracts/types/RiskId.sol/RiskIdLib.dbg.json +1 -1
  173. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +1 -1
  174. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.json +2 -2
  175. package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +1 -1
  176. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +1 -1
  177. package/artifacts/contracts/types/UFixed.sol/MathLib.dbg.json +1 -1
  178. package/artifacts/contracts/types/UFixed.sol/UFixedLib.dbg.json +1 -1
  179. package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +1 -1
  180. package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +1 -1
  181. package/contracts/components/BaseComponent.sol +79 -11
  182. package/contracts/components/Distribution.sol +2 -1
  183. package/contracts/components/IBaseComponent.sol +9 -0
  184. package/contracts/components/IPoolComponent.sol +4 -0
  185. package/contracts/components/Pool.sol +29 -4
  186. package/contracts/components/Product.sol +22 -10
  187. package/contracts/instance/AccessManagerUpgradeableInitializeable.sol +23 -0
  188. package/contracts/instance/BundleManager.sol +129 -0
  189. package/contracts/instance/Cloneable.sol +46 -0
  190. package/contracts/instance/IInstance.sol +9 -1
  191. package/contracts/instance/IInstanceBase.sol +26 -0
  192. package/contracts/instance/IInstanceService.sol +13 -3
  193. package/contracts/instance/Instance.sol +43 -214
  194. package/contracts/instance/InstanceAccessManager.sol +93 -78
  195. package/contracts/instance/InstanceBase.sol +41 -0
  196. package/contracts/instance/InstanceService.sol +247 -100
  197. package/contracts/instance/InstanceServiceManager.sol +5 -8
  198. package/contracts/instance/ObjectManager.sol +101 -0
  199. package/contracts/instance/base/ComponentServiceBase.sol +29 -87
  200. package/contracts/instance/module/IAccess.sol +27 -17
  201. package/contracts/instance/module/ISetup.sol +0 -1
  202. package/contracts/instance/service/BundleService.sol +294 -0
  203. package/contracts/instance/service/BundleServiceManager.sol +51 -0
  204. package/contracts/instance/service/ComponentOwnerService.sol +4 -6
  205. package/contracts/instance/service/DistributionService.sol +53 -21
  206. package/contracts/instance/service/DistributionServiceManager.sol +6 -9
  207. package/contracts/instance/service/IBundleService.sol +44 -0
  208. package/contracts/instance/service/IPolicyService.sol +94 -0
  209. package/contracts/instance/service/IPoolService.sol +3 -26
  210. package/contracts/instance/service/IProductService.sol +2 -72
  211. package/contracts/instance/service/PolicyService.sol +539 -0
  212. package/contracts/instance/service/PolicyServiceManager.sol +54 -0
  213. package/contracts/instance/service/PoolService.sol +68 -127
  214. package/contracts/instance/service/PoolServiceManager.sol +5 -8
  215. package/contracts/instance/service/ProductService.sol +100 -448
  216. package/contracts/registry/ChainNft.sol +1 -1
  217. package/contracts/registry/IRegistry.sol +26 -16
  218. package/contracts/registry/IRegistryService.sol +13 -5
  219. package/contracts/registry/Registry.sol +149 -201
  220. package/contracts/registry/RegistryAccessManager.sol +210 -0
  221. package/contracts/registry/RegistryService.sol +50 -88
  222. package/contracts/registry/RegistryServiceManager.sol +18 -36
  223. package/contracts/registry/ReleaseManager.sol +342 -0
  224. package/contracts/registry/TokenRegistry.sol +5 -6
  225. package/contracts/shared/IService.sol +2 -1
  226. package/contracts/shared/ProxyManager.sol +1 -1
  227. package/contracts/shared/Service.sol +10 -7
  228. package/contracts/test/TestService.sol +3 -2
  229. package/contracts/types/NftIdSet.sol +26 -24
  230. package/contracts/types/RoleId.sol +10 -10
  231. package/package.json +1 -1
  232. package/artifacts/contracts/instance/AccessManagedSimple.sol/AccessManagedSimple.dbg.json +0 -4
  233. package/artifacts/contracts/instance/AccessManagerSimple.sol/AccessManagerSimple.dbg.json +0 -4
  234. package/artifacts/contracts/instance/AccessManagerSimple.sol/AccessManagerSimple.json +0 -1132
  235. package/artifacts/contracts/instance/IAccessManagerSimple.sol/IAccessManagerSimple.dbg.json +0 -4
  236. package/artifacts/contracts/instance/IAccessManagerSimple.sol/IAccessManagerSimple.json +0 -1082
  237. package/contracts/instance/AccessManagedSimple.sol +0 -115
  238. package/contracts/instance/AccessManagerSimple.sol +0 -692
  239. package/contracts/instance/IAccessManagerSimple.sol +0 -391
@@ -7,91 +7,91 @@
7
7
  "inputs": [
8
8
  {
9
9
  "internalType": "address",
10
- "name": "registry",
10
+ "name": "target",
11
11
  "type": "address"
12
- },
13
- {
14
- "internalType": "NftId",
15
- "name": "instanceNftid",
16
- "type": "uint96"
17
- },
12
+ }
13
+ ],
14
+ "name": "AddressEmptyCode",
15
+ "type": "error"
16
+ },
17
+ {
18
+ "inputs": [
18
19
  {
19
20
  "internalType": "address",
20
- "name": "token",
21
+ "name": "account",
21
22
  "type": "address"
22
- },
23
- {
24
- "internalType": "bool",
25
- "name": "isInterceptor",
26
- "type": "bool"
27
- },
23
+ }
24
+ ],
25
+ "name": "AddressInsufficientBalance",
26
+ "type": "error"
27
+ },
28
+ {
29
+ "inputs": [
28
30
  {
29
31
  "internalType": "address",
30
- "name": "pool",
32
+ "name": "registry",
31
33
  "type": "address"
32
34
  },
35
+ {
36
+ "internalType": "NftId",
37
+ "name": "nftId",
38
+ "type": "uint96"
39
+ }
40
+ ],
41
+ "name": "ErrorAlreadyLinked",
42
+ "type": "error"
43
+ },
44
+ {
45
+ "inputs": [
33
46
  {
34
47
  "internalType": "address",
35
- "name": "distribution",
48
+ "name": "caller",
36
49
  "type": "address"
37
50
  },
38
51
  {
39
- "components": [
40
- {
41
- "internalType": "UFixed",
42
- "name": "fractionalFee",
43
- "type": "uint256"
44
- },
45
- {
46
- "internalType": "uint256",
47
- "name": "fixedFee",
48
- "type": "uint256"
49
- }
50
- ],
51
- "internalType": "struct Fee",
52
- "name": "productFee",
53
- "type": "tuple"
54
- },
55
- {
56
- "components": [
57
- {
58
- "internalType": "UFixed",
59
- "name": "fractionalFee",
60
- "type": "uint256"
61
- },
62
- {
63
- "internalType": "uint256",
64
- "name": "fixedFee",
65
- "type": "uint256"
66
- }
67
- ],
68
- "internalType": "struct Fee",
69
- "name": "processingFee",
70
- "type": "tuple"
71
- },
52
+ "internalType": "uint64",
53
+ "name": "requiredRoleIdNum",
54
+ "type": "uint64"
55
+ }
56
+ ],
57
+ "name": "ErrorBaseComponentUnauthorized",
58
+ "type": "error"
59
+ },
60
+ {
61
+ "inputs": [
72
62
  {
73
63
  "internalType": "address",
74
- "name": "initialOwner",
64
+ "name": "newWallet",
75
65
  "type": "address"
76
66
  }
77
67
  ],
78
- "stateMutability": "nonpayable",
79
- "type": "constructor"
68
+ "name": "ErrorBaseComponentWalletAddressIsSameAsCurrent",
69
+ "type": "error"
80
70
  },
81
71
  {
82
72
  "inputs": [
83
73
  {
84
74
  "internalType": "address",
85
- "name": "registry",
75
+ "name": "oldWallet",
86
76
  "type": "address"
87
77
  },
88
78
  {
89
- "internalType": "NftId",
90
- "name": "nftId",
91
- "type": "uint96"
79
+ "internalType": "address",
80
+ "name": "newWallet",
81
+ "type": "address"
82
+ },
83
+ {
84
+ "internalType": "uint256",
85
+ "name": "allowance",
86
+ "type": "uint256"
87
+ },
88
+ {
89
+ "internalType": "uint256",
90
+ "name": "balance",
91
+ "type": "uint256"
92
92
  }
93
93
  ],
94
- "name": "ErrorAlreadyLinked",
94
+ "name": "ErrorBaseComponentWalletAllowanceTooSmall",
95
95
  "type": "error"
96
96
  },
97
97
  {
@@ -159,6 +159,11 @@
159
159
  "name": "ErrorRegistryNotInitialized",
160
160
  "type": "error"
161
161
  },
162
+ {
163
+ "inputs": [],
164
+ "name": "FailedInnerCall",
165
+ "type": "error"
166
+ },
162
167
  {
163
168
  "inputs": [],
164
169
  "name": "InvalidInitialization",
@@ -169,6 +174,17 @@
169
174
  "name": "NotInitializing",
170
175
  "type": "error"
171
176
  },
177
+ {
178
+ "inputs": [
179
+ {
180
+ "internalType": "address",
181
+ "name": "token",
182
+ "type": "address"
183
+ }
184
+ ],
185
+ "name": "SafeERC20FailedOperation",
186
+ "type": "error"
187
+ },
172
188
  {
173
189
  "anonymous": false,
174
190
  "inputs": [
@@ -182,6 +198,44 @@
182
198
  "name": "Initialized",
183
199
  "type": "event"
184
200
  },
201
+ {
202
+ "anonymous": false,
203
+ "inputs": [
204
+ {
205
+ "indexed": false,
206
+ "internalType": "address",
207
+ "name": "newWallet",
208
+ "type": "address"
209
+ }
210
+ ],
211
+ "name": "LogBaseComponentWalletAddressChanged",
212
+ "type": "event"
213
+ },
214
+ {
215
+ "anonymous": false,
216
+ "inputs": [
217
+ {
218
+ "indexed": false,
219
+ "internalType": "address",
220
+ "name": "from",
221
+ "type": "address"
222
+ },
223
+ {
224
+ "indexed": false,
225
+ "internalType": "address",
226
+ "name": "to",
227
+ "type": "address"
228
+ },
229
+ {
230
+ "indexed": false,
231
+ "internalType": "uint256",
232
+ "name": "amount",
233
+ "type": "uint256"
234
+ }
235
+ ],
236
+ "name": "LogBaseComponentWalletTokensTransferred",
237
+ "type": "event"
238
+ },
185
239
  {
186
240
  "inputs": [],
187
241
  "name": "REGISTERABLE_LOCATION_V1",
@@ -354,6 +408,19 @@
354
408
  "stateMutability": "view",
355
409
  "type": "function"
356
410
  },
411
+ {
412
+ "inputs": [],
413
+ "name": "getName",
414
+ "outputs": [
415
+ {
416
+ "internalType": "string",
417
+ "name": "name",
418
+ "type": "string"
419
+ }
420
+ ],
421
+ "stateMutability": "pure",
422
+ "type": "function"
423
+ },
357
424
  {
358
425
  "inputs": [],
359
426
  "name": "getNftId",
@@ -661,6 +728,19 @@
661
728
  "stateMutability": "nonpayable",
662
729
  "type": "function"
663
730
  },
731
+ {
732
+ "inputs": [
733
+ {
734
+ "internalType": "address",
735
+ "name": "newWallet",
736
+ "type": "address"
737
+ }
738
+ ],
739
+ "name": "setWallet",
740
+ "outputs": [],
741
+ "stateMutability": "nonpayable",
742
+ "type": "function"
743
+ },
664
744
  {
665
745
  "inputs": [
666
746
  {
@@ -688,42 +768,8 @@
688
768
  "type": "function"
689
769
  }
690
770
  ],
691
- "bytecode": "0x60806040523480156200001157600080fd5b5060405162002d0638038062002d068339810160408190526200003491620009a8565b888888606e89856200006c6301ffc9a760e01b600090815260205260008051602062002ce6833981519152805460ff19166001179055565b600280546001600160a01b031916331790556040805160208101909152600081526200009d8787868686866200058f565b6000620000b26001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03891660048201526001600160a01b03919091169063a48f42e090602401600060405180830381865afa15801562000102573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526200012c919081019062000b12565b6080810151600780546001600160a01b0319166001600160a01b0390921691821790556040516301ffc9a760e01b815263aa67ed7b60e01b6004820152919250906301ffc9a790602401602060405180830381865afa15801562000194573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001ba919062000bf8565b620001e65760405162461bcd60e51b815260206004820152600060248201526044015b60405180910390fd5b600760009054906101000a90046001600160a01b03166001600160a01b0316636fa298536040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200023a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000260919062000c1d565b600380546001600160a01b03199081166001600160a01b0393841617909155600580543090831617905560068054909116918816919091179055634c0cba3d60e11b60009081526020527f8605f84a1fdbc6ff75d8a06315d161884729b429561b502d19c5a33135142c3a805460ff191660011790555050505050505050600760009054906101000a90046001600160a01b03166001600160a01b0316634288121d6040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000332573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000358919062000c1d565b600880546001600160a01b03199081166001600160a01b0393841617909155600980548216888416179055600a80549091169186169190911790558251600b55602080840151600c558251600d55820151600e556040518790620003bc9062000883565b6001600160a01b039091168152602001604051809103906000f080158015620003e9573d6000803e3d6000fd5b50600f80546001600160a01b0319166001600160a01b0392831617905560015416600954604051636939560f60e11b81526001600160a01b03918216600482015291169063d272ac1e90602401602060405180830381865afa15801562000454573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200047a919062000c3d565b600f80546001600160601b0392909216600160a01b026001600160a01b03909216919091179055620004b46001546001600160a01b031690565b600a54604051636939560f60e11b81526001600160a01b03918216600482015291169063d272ac1e90602401602060405180830381865afa158015620004fe573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000524919062000c3d565b601080546001600160601b0319166001600160601b0392909216919091179055633ad74e8160e01b60009081526020527f6d6f21c9f977ce279ee1b58c3ce3ac0b612bbc5256f6c821ab515558c7e6a0a8805460ff1916600117905550505050505050505062000db6565b620005c06301ffc9a760e01b600090815260205260008051602062002ce6833981519152805460ff19166001179055565b620005cc828762000691565b60007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0388166001600160681b0319909116176c0100000000000000000000000060ff8816021760ff60681b19166d0100000000000000000000000000861515021781559050600181016200064b838262000cea565b506303fb044760e21b60009081526020527fb43e4f3791bfcdefa3a0fbe2a5555f8d6490b90e01de0ff40c66f18b49b562c5805460ff1916600117905550505050505050565b6001600160a01b038216620006e95760405162461bcd60e51b815260206004820152601e60248201527f4e66744f776e61626c653a20696e697469616c206f776e6572206973203000006044820152606401620001dd565b600280546001600160a01b0319166001600160a01b0384161790556200070f8162000713565b5050565b6001546001600160a01b0316156200074e5760015460405163fcdbf2d960e01b81526001600160a01b039091166004820152602401620001dd565b6001600160a01b038116620007765760405163f5c4d07d60e01b815260040160405180910390fd5b806001600160a01b03163b600003620007ae5760405163fdeac91f60e01b81526001600160a01b0382166004820152602401620001dd565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b8152632eaf856d60e11b60048201526301ffc9a790602401602060405180830381865afa9250505080156200082b575060408051601f3d908101601f19168201909252620008289181019062000bf8565b60015b620008555760405163fdeac91f60e01b81526001600160a01b0382166004820152602401620001dd565b806200070f5760405163fdeac91f60e01b81526001600160a01b0383166004820152602401620001dd565b50565b6103fd80620028e983390190565b6001600160a01b03811681146200088057600080fd5b8051620008b48162000891565b919050565b80516001600160601b0381168114620008b457600080fd5b80518015158114620008b457600080fd5b634e487b7160e01b600052604160045260246000fd5b60405160e081016001600160401b03811182821017156200091d576200091d620008e2565b60405290565b604051601f8201601f191681016001600160401b03811182821017156200094e576200094e620008e2565b604052919050565b6000604082840312156200096957600080fd5b604080519081016001600160401b03811182821017156200098e576200098e620008e2565b604052825181526020928301519281019290925250919050565b60008060008060008060008060006101608a8c031215620009c857600080fd5b8951620009d58162000891565b9850620009e560208b01620008b9565b975060408a0151620009f78162000891565b965062000a0760608b01620008d1565b955060808a015162000a198162000891565b60a08b015190955062000a2c8162000891565b935062000a3d8b60c08c0162000956565b925062000a4f8b6101008c0162000956565b91506101408a015162000a628162000891565b809150509295985092959850929598565b805160ff81168114620008b457600080fd5b600082601f83011262000a9757600080fd5b81516001600160401b0381111562000ab35762000ab3620008e2565b602062000ac9601f8301601f1916820162000923565b828152858284870101111562000ade57600080fd5b60005b8381101562000afe57858101830151828201840152820162000ae1565b506000928101909101919091529392505050565b60006020828403121562000b2557600080fd5b81516001600160401b038082111562000b3d57600080fd5b9083019060e0828603121562000b5257600080fd5b62000b5c620008f8565b62000b6783620008b9565b815262000b7760208401620008b9565b602082015262000b8a6040840162000a73565b604082015262000b9d60608401620008d1565b606082015262000bb060808401620008a7565b608082015262000bc360a08401620008a7565b60a082015260c08301518281111562000bdb57600080fd5b62000be98782860162000a85565b60c08301525095945050505050565b60006020828403121562000c0b57600080fd5b62000c1682620008d1565b9392505050565b60006020828403121562000c3057600080fd5b815162000c168162000891565b60006020828403121562000c5057600080fd5b62000c1682620008b9565b600181811c9082168062000c7057607f821691505b60208210810362000c9157634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111562000ce557600081815260208120601f850160051c8101602086101562000cc05750805b601f850160051c820191505b8181101562000ce15782815560010162000ccc565b5050505b505050565b81516001600160401b0381111562000d065762000d06620008e2565b62000d1e8162000d17845462000c5b565b8462000c97565b602080601f83116001811462000d56576000841562000d3d5750858301515b600019600386901b1c1916600185901b17855562000ce1565b600085815260208120601f198616915b8281101562000d875788860151825594840194600190910190840162000d66565b508582101562000da65787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b611b238062000dc66000396000f3fe608060405234801561001057600080fd5b506004361061012b5760003560e01c80635ab1bd53116100ad578063b6b412ba11610071578063b6b412ba146102a3578063c200b809146102b6578063db6dcc95146102cb578063de7b5d14146102d3578063f83d08ba146102e457600080fd5b80635ab1bd53146102575780635e78426b14610268578063644c45e01461027b578063893d20e814610293578063a69df4b51461029b57600080fd5b8063138461e0116100f4578063138461e0146101fa5780631bdd6b76146102045780631eff4b221461020c57806321df0da7146102335780632a65c6881461024457600080fd5b806251884a1461013057806301ffc9a7146101615780630fec111c1461019e57806312abb9b3146101b457806313299604146101d5575b600080fd5b600754600160a01b90046001600160601b03165b6040516001600160601b0390911681526020015b60405180910390f35b61018e61016f36600461103a565b6001600160e01b03191660009081526020819052604090205460ff1690565b6040519015158152602001610158565b6101a66102ec565b6040516101589291906110bb565b6101c76101c23660046112e0565b610550565b604051908152602001610158565b6005546001600160a01b03165b6040516001600160a01b039091168152602001610158565b6102026105dc565b005b6101446107fe565b6101c77f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b6006546001600160a01b03166101e2565b610202610252366004611369565b610885565b6001546001600160a01b03166101e2565b6101c7610276366004611386565b6109d4565b600154600160a01b90046001600160601b0316610144565b6101e26109ea565b610202610b03565b6102026102b1366004611419565b610b9e565b6102be610c41565b604051610158919061144e565b610144610e04565b6007546001600160a01b03166101e2565b610202610e49565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a0820183905260c08201819052909180610330610eb4565b915091506000600960009054906101000a90046001600160a01b03166001600160a01b0316630fec111c6040518163ffffffff1660e01b8152600401600060405180830381865afa158015610389573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526103b19190810190611615565b9150506000818060200190518101906103ca919061173e565b90506000600a60009054906101000a90046001600160a01b03166001600160a01b0316630fec111c6040518163ffffffff1660e01b8152600401600060405180830381865afa158015610421573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526104499190810190611615565b91505060008180602001905181019061046291906117f3565b60408051610180810182526006546001600160a01b039081168252600f548082166020808501919091526010546001600160601b0390811685870152600160a01b9092049091166060808501919091528486015160808086019190915285518087018752600b548152600c548185015260a08087019190915286518088018852600d548152600e548186015260c0870152918a015160e0860152890151610100850152880151610120840152600061014084015260055490911661016083015291519293508892610533920161144e565b604051602081830303815290604052975097505050505050509091565b600854604051639cdaa7f960e01b81526000916001600160a01b031690639cdaa7f99061058b9089908b908a908a9089908b90600401611888565b60a060405180830381865afa1580156105a8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105cc91906118df565b50929a9950505050505050505050565b6001546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015273__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af415801561063e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610662919061191f565b156106a9576001546040516316322c0f60e31b81526001600160a01b0382166004820152600160a01b9091046001600160601b031660248201526044015b60405180910390fd5b6001546001600160a01b03166106d25760405163cf29926160e01b815260040160405180910390fd5b60015460405163c3c5a54760e01b81523060048201819052916001600160a01b03169063c3c5a54790602401602060405180830381865afa15801561071b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061073f919061191f565b610767576040516372657a5160e01b81526001600160a01b03821660048201526024016106a0565b600154604051636939560f60e11b81526001600160a01b0383811660048301529091169063d272ac1e90602401602060405180830381865afa1580156107b1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107d5919061193a565b600160146101000a8154816001600160601b0302191690836001600160601b0316021790555050565b60006108126001546001600160a01b031690565b600954604051636939560f60e11b81526001600160a01b03918216600482015291169063d272ac1e906024015b602060405180830381865afa15801561085c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610880919061193a565b905090565b61088d6109ea565b6001600160a01b0316336001600160a01b0316146108c05760405163700dd81160e01b81523360048201526024016106a0565b60075473__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__9063c4cade9d90600160a01b90046001600160601b031660006040516001600160e01b031960e085901b1681526001600160601b03928316600482015291166024820152604401602060405180830381865af415801561093c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610960919061191f565b6109ac5760405162461bcd60e51b815260206004820152601a60248201527f70726f64756374206e667420696420616c72656164792073657400000000000060448201526064016106a0565b600780546001600160601b03909216600160a01b026001600160a01b03909216919091179055565b60006109e1600a86611957565b95945050505050565b6001546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015260009073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015610a4f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a73919061191f565b15610af357600154604051631c5da14d60e11b8152600160a01b82046001600160601b031660048201526001600160a01b03909116906338bb429a90602401602060405180830381865afa158015610acf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108809190611979565b506002546001600160a01b031690565b610b0b6109ea565b6001600160a01b0316336001600160a01b031614610b3e5760405163700dd81160e01b81523360048201526024016106a0565b600354604051630bdb124f60e21b81523060048201526001600160a01b0390911690632f6c493c906024015b600060405180830381600087803b158015610b8457600080fd5b505af1158015610b98573d6000803e3d6000fd5b50505050565b610ba66109ea565b6001600160a01b0316336001600160a01b031614610bd95760405163700dd81160e01b81523360048201526024016106a0565b600854604051635b5a095d60e11b81526001600160a01b039091169063b6b412ba90610c0b9085908590600401611996565b600060405180830381600087803b158015610c2557600080fd5b505af1158015610c39573d6000803e3d6000fd5b505050505050565b610cfc604080516101808101825260008082526020808301829052828401829052606083018290528351808501855282815280820183905260808401528351808501855282815280820183905260a08401528351808501855282815280820183905260c08401528351808501855282815280820183905260e084015283518085018552828152808201839052610100840152835180850190945281845283015290610120820190815260006020820181905260409091015290565b600754604080516302cd307160e01b815290516000926001600160a01b0316916302cd30719160048083019260209291908290030181865afa158015610d46573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d6a9190611979565b9050806001600160a01b03166390af7064610d956001546001600160601b03600160a01b9091041690565b6040516001600160e01b031960e084901b1681526001600160601b03909116600482015260240161024060405180830381865afa158015610dda573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dfe91906119bc565b91505090565b6000610e186001546001600160a01b031690565b600a54604051636939560f60e11b81526001600160a01b03918216600482015291169063d272ac1e9060240161083f565b610e516109ea565b6001600160a01b0316336001600160a01b031614610e845760405163700dd81160e01b81523360048201526024016106a0565b60035460405163f435f5a760e01b81523060048201526001600160a01b039091169063f435f5a790602401610b6a565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a082019290925260c0810191909152606060007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e00160405280610f3b6001546001600160601b03600160a01b9091041690565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a001610f836109ea565b6001600160a01b03168152602001826001018054610fa090611ab3565b80601f0160208091040260200160405190810160405280929190818152602001828054610fcc90611ab3565b80156110195780601f10610fee57610100808354040283529160200191611019565b820191906000526020600020905b815481529060010190602001808311610ffc57829003601f168201915b50505050508152506040518060200160405280600081525092509250509091565b60006020828403121561104c57600080fd5b81356001600160e01b03198116811461106457600080fd5b9392505050565b60005b8381101561108657818101518382015260200161106e565b50506000910152565b600081518084526110a781602086016020860161106b565b601f01601f19169290920160200192915050565b6040815260006001600160601b038085511660408401528060208601511660608401525060ff604085015116608083015260608401516110ff60a084018215159052565b5060808401516001600160a01b03811660c08401525060a08401516001600160a01b03811660e08401525060c084015160e061010084015261114561012084018261108f565b905082810360208401526109e1818561108f565b6001600160c01b03198116811461116f57600080fd5b50565b634e487b7160e01b600052604160045260246000fd5b6040805190810167ffffffffffffffff811182821017156111ab576111ab611172565b60405290565b60405160e0810167ffffffffffffffff811182821017156111ab576111ab611172565b604051610120810167ffffffffffffffff811182821017156111ab576111ab611172565b604051610180810167ffffffffffffffff811182821017156111ab576111ab611172565b604051601f8201601f1916810167ffffffffffffffff8111828210171561124557611245611172565b604052919050565b600067ffffffffffffffff82111561126757611267611172565b50601f01601f191660200190565b600082601f83011261128657600080fd5b81356112996112948261124d565b61121c565b8181528460208386010111156112ae57600080fd5b816020850160208301376000918101602001919091529392505050565b6001600160601b038116811461116f57600080fd5b60008060008060008060c087890312156112f957600080fd5b86359550602087013561130b81611159565b945060408701359350606087013567ffffffffffffffff81111561132e57600080fd5b61133a89828a01611275565b935050608087013561134b81611159565b915060a087013561135b816112cb565b809150509295509295509295565b60006020828403121561137b57600080fd5b8135611064816112cb565b6000806000806080858703121561139c57600080fd5b8435935060208501356113ae81611159565b925060408501359150606085013567ffffffffffffffff8111156113d157600080fd5b6113dd87828801611275565b91505092959194509250565b6000604082840312156113fb57600080fd5b611403611188565b9050813581526020820135602082015292915050565b6000806080838503121561142c57600080fd5b61143684846113e9565b915061144584604085016113e9565b90509250929050565b81516001600160a01b031681526102408101602083015161147a60208401826001600160a01b03169052565b50604083015161149560408401826001600160601b03169052565b5060608301516114b060608401826001600160601b03169052565b5060808301516114cd608084018280518252602090810151910152565b5060a0830151805160c0840152602081015160e08401525060c08301516101006115038185018380518252602090810151910152565b60e085015191506101406115238186018480518252602090810151910152565b9085015180516101808601526020908101516101a086015261012086015180516101c087015201516101e0850152840151151561020084015250610160909201516001600160a01b03166102209091015290565b8051611582816112cb565b919050565b805160ff8116811461158257600080fd5b8051801515811461158257600080fd5b6001600160a01b038116811461116f57600080fd5b8051611582816115a8565b600082601f8301126115d957600080fd5b81516115e76112948261124d565b8181528460208386010111156115fc57600080fd5b61160d82602083016020870161106b565b949350505050565b6000806040838503121561162857600080fd5b825167ffffffffffffffff8082111561164057600080fd5b9084019060e0828703121561165457600080fd5b61165c6111b1565b61166583611577565b815261167360208401611577565b602082015261168460408401611587565b604082015261169560608401611598565b60608201526116a6608084016115bd565b60808201526116b760a084016115bd565b60a082015260c0830151828111156116ce57600080fd5b6116da888286016115c8565b60c08301525060208601519094509150808211156116f757600080fd5b50611704858286016115c8565b9150509250929050565b60006040828403121561172057600080fd5b611728611188565b9050815181526020820151602082015292915050565b6000610180828403121561175157600080fd5b6117596111d4565b61176283611577565b8152611770602084016115bd565b60208201526040830151604082015261178c846060850161170e565b606082015261179e8460a0850161170e565b60808201526117b08460e0850161170e565b60a08201526117c26101208401611598565b60c08201526117d46101408401611598565b60e08201526117e661016084016115bd565b6101008201529392505050565b600060c0828403121561180557600080fd5b60405160a0810181811067ffffffffffffffff8211171561182857611828611172565b6040528251611836816112cb565b81526020830151611846816115a8565b6020820152611858846040850161170e565b604082015261186960808401611598565b606082015260a083015161187c816115a8565b60808201529392505050565b600067ffffffffffffffff60c01b808916835287602084015286604084015260c060608401526118bb60c084018761108f565b6001600160601b039590951660808401529290921660a09091015250949350505050565b600080600080600060a086880312156118f757600080fd5b5050835160208501516040860151606087015160809097015192989197509594509092509050565b60006020828403121561193157600080fd5b61106482611598565b60006020828403121561194c57600080fd5b8151611064816112cb565b60008261197457634e487b7160e01b600052601260045260246000fd5b500490565b60006020828403121561198b57600080fd5b8151611064816115a8565b825181526020808401518183015282516040830152820151606082015260808101611064565b600061024082840312156119cf57600080fd5b6119d76111f8565b6119e0836115bd565b81526119ee602084016115bd565b60208201526119ff60408401611577565b6040820152611a1060608401611577565b6060820152611a22846080850161170e565b6080820152611a348460c0850161170e565b60a0820152610100611a488582860161170e565b60c0830152610140611a5c8682870161170e565b60e0840152611a6f86610180870161170e565b82840152611a81866101c0870161170e565b610120840152611a946102008601611598565b9083015250611aa661022084016115bd565b6101608201529392505050565b600181811c90821680611ac757607f821691505b602082108103611ae757634e487b7160e01b600052602260045260246000fd5b5091905056fea26469706673582212200155162b91e3f03830f6506ccedb9cdbecb6f4ebf12ce1fd865cc04fc236533764736f6c63430008140033608060405234801561001057600080fd5b506040516103fd3803806103fd83398101604081905261002f91610054565b600080546001600160a01b0319166001600160a01b0392909216919091179055610084565b60006020828403121561006657600080fd5b81516001600160a01b038116811461007d57600080fd5b9392505050565b61036a806100936000396000f3fe608060405234801561001057600080fd5b50600436106100365760003560e01c806321df0da71461003b578063beabacc81461005a575b600080fd5b600054604080516001600160a01b039092168252519081900360200190f35b61006d6100683660046102a7565b61006f565b005b600054610087906001600160a01b031684848461008c565b505050565b604080516001600160a01b0385811660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b1790526100e69085906100ec565b50505050565b60006101016001600160a01b03841683610154565b9050805160001415801561012657508080602001905181019061012491906102e3565b155b1561008757604051635274afe760e01b81526001600160a01b03841660048201526024015b60405180910390fd5b606061016283836000610169565b9392505050565b60608147101561018e5760405163cd78605960e01b815230600482015260240161014b565b600080856001600160a01b031684866040516101aa9190610305565b60006040518083038185875af1925050503d80600081146101e7576040519150601f19603f3d011682016040523d82523d6000602084013e6101ec565b606091505b50915091506101fc868383610206565b9695505050505050565b60608261021b5761021682610262565b610162565b815115801561023257506001600160a01b0384163b155b1561025b57604051639996b31560e01b81526001600160a01b038516600482015260240161014b565b5080610162565b8051156102725780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b80356001600160a01b03811681146102a257600080fd5b919050565b6000806000606084860312156102bc57600080fd5b6102c58461028b565b92506102d36020850161028b565b9150604084013590509250925092565b6000602082840312156102f557600080fd5b8151801515811461016257600080fd5b6000825160005b81811015610326576020818601810151858301520161030c565b50600092019182525091905056fea26469706673582212205dcbb6c5ddae5c31498dff1c0933ab8c0d284bb07f5e69fd452d43a18212e70964736f6c6343000814003367be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5",
692
- "deployedBytecode": "0x608060405234801561001057600080fd5b506004361061012b5760003560e01c80635ab1bd53116100ad578063b6b412ba11610071578063b6b412ba146102a3578063c200b809146102b6578063db6dcc95146102cb578063de7b5d14146102d3578063f83d08ba146102e457600080fd5b80635ab1bd53146102575780635e78426b14610268578063644c45e01461027b578063893d20e814610293578063a69df4b51461029b57600080fd5b8063138461e0116100f4578063138461e0146101fa5780631bdd6b76146102045780631eff4b221461020c57806321df0da7146102335780632a65c6881461024457600080fd5b806251884a1461013057806301ffc9a7146101615780630fec111c1461019e57806312abb9b3146101b457806313299604146101d5575b600080fd5b600754600160a01b90046001600160601b03165b6040516001600160601b0390911681526020015b60405180910390f35b61018e61016f36600461103a565b6001600160e01b03191660009081526020819052604090205460ff1690565b6040519015158152602001610158565b6101a66102ec565b6040516101589291906110bb565b6101c76101c23660046112e0565b610550565b604051908152602001610158565b6005546001600160a01b03165b6040516001600160a01b039091168152602001610158565b6102026105dc565b005b6101446107fe565b6101c77f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b6006546001600160a01b03166101e2565b610202610252366004611369565b610885565b6001546001600160a01b03166101e2565b6101c7610276366004611386565b6109d4565b600154600160a01b90046001600160601b0316610144565b6101e26109ea565b610202610b03565b6102026102b1366004611419565b610b9e565b6102be610c41565b604051610158919061144e565b610144610e04565b6007546001600160a01b03166101e2565b610202610e49565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a0820183905260c08201819052909180610330610eb4565b915091506000600960009054906101000a90046001600160a01b03166001600160a01b0316630fec111c6040518163ffffffff1660e01b8152600401600060405180830381865afa158015610389573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526103b19190810190611615565b9150506000818060200190518101906103ca919061173e565b90506000600a60009054906101000a90046001600160a01b03166001600160a01b0316630fec111c6040518163ffffffff1660e01b8152600401600060405180830381865afa158015610421573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526104499190810190611615565b91505060008180602001905181019061046291906117f3565b60408051610180810182526006546001600160a01b039081168252600f548082166020808501919091526010546001600160601b0390811685870152600160a01b9092049091166060808501919091528486015160808086019190915285518087018752600b548152600c548185015260a08087019190915286518088018852600d548152600e548186015260c0870152918a015160e0860152890151610100850152880151610120840152600061014084015260055490911661016083015291519293508892610533920161144e565b604051602081830303815290604052975097505050505050509091565b600854604051639cdaa7f960e01b81526000916001600160a01b031690639cdaa7f99061058b9089908b908a908a9089908b90600401611888565b60a060405180830381865afa1580156105a8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105cc91906118df565b50929a9950505050505050505050565b6001546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015273__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af415801561063e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610662919061191f565b156106a9576001546040516316322c0f60e31b81526001600160a01b0382166004820152600160a01b9091046001600160601b031660248201526044015b60405180910390fd5b6001546001600160a01b03166106d25760405163cf29926160e01b815260040160405180910390fd5b60015460405163c3c5a54760e01b81523060048201819052916001600160a01b03169063c3c5a54790602401602060405180830381865afa15801561071b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061073f919061191f565b610767576040516372657a5160e01b81526001600160a01b03821660048201526024016106a0565b600154604051636939560f60e11b81526001600160a01b0383811660048301529091169063d272ac1e90602401602060405180830381865afa1580156107b1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107d5919061193a565b600160146101000a8154816001600160601b0302191690836001600160601b0316021790555050565b60006108126001546001600160a01b031690565b600954604051636939560f60e11b81526001600160a01b03918216600482015291169063d272ac1e906024015b602060405180830381865afa15801561085c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610880919061193a565b905090565b61088d6109ea565b6001600160a01b0316336001600160a01b0316146108c05760405163700dd81160e01b81523360048201526024016106a0565b60075473__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__9063c4cade9d90600160a01b90046001600160601b031660006040516001600160e01b031960e085901b1681526001600160601b03928316600482015291166024820152604401602060405180830381865af415801561093c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610960919061191f565b6109ac5760405162461bcd60e51b815260206004820152601a60248201527f70726f64756374206e667420696420616c72656164792073657400000000000060448201526064016106a0565b600780546001600160601b03909216600160a01b026001600160a01b03909216919091179055565b60006109e1600a86611957565b95945050505050565b6001546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015260009073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015610a4f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a73919061191f565b15610af357600154604051631c5da14d60e11b8152600160a01b82046001600160601b031660048201526001600160a01b03909116906338bb429a90602401602060405180830381865afa158015610acf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108809190611979565b506002546001600160a01b031690565b610b0b6109ea565b6001600160a01b0316336001600160a01b031614610b3e5760405163700dd81160e01b81523360048201526024016106a0565b600354604051630bdb124f60e21b81523060048201526001600160a01b0390911690632f6c493c906024015b600060405180830381600087803b158015610b8457600080fd5b505af1158015610b98573d6000803e3d6000fd5b50505050565b610ba66109ea565b6001600160a01b0316336001600160a01b031614610bd95760405163700dd81160e01b81523360048201526024016106a0565b600854604051635b5a095d60e11b81526001600160a01b039091169063b6b412ba90610c0b9085908590600401611996565b600060405180830381600087803b158015610c2557600080fd5b505af1158015610c39573d6000803e3d6000fd5b505050505050565b610cfc604080516101808101825260008082526020808301829052828401829052606083018290528351808501855282815280820183905260808401528351808501855282815280820183905260a08401528351808501855282815280820183905260c08401528351808501855282815280820183905260e084015283518085018552828152808201839052610100840152835180850190945281845283015290610120820190815260006020820181905260409091015290565b600754604080516302cd307160e01b815290516000926001600160a01b0316916302cd30719160048083019260209291908290030181865afa158015610d46573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d6a9190611979565b9050806001600160a01b03166390af7064610d956001546001600160601b03600160a01b9091041690565b6040516001600160e01b031960e084901b1681526001600160601b03909116600482015260240161024060405180830381865afa158015610dda573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dfe91906119bc565b91505090565b6000610e186001546001600160a01b031690565b600a54604051636939560f60e11b81526001600160a01b03918216600482015291169063d272ac1e9060240161083f565b610e516109ea565b6001600160a01b0316336001600160a01b031614610e845760405163700dd81160e01b81523360048201526024016106a0565b60035460405163f435f5a760e01b81523060048201526001600160a01b039091169063f435f5a790602401610b6a565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a082019290925260c0810191909152606060007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e00160405280610f3b6001546001600160601b03600160a01b9091041690565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a001610f836109ea565b6001600160a01b03168152602001826001018054610fa090611ab3565b80601f0160208091040260200160405190810160405280929190818152602001828054610fcc90611ab3565b80156110195780601f10610fee57610100808354040283529160200191611019565b820191906000526020600020905b815481529060010190602001808311610ffc57829003601f168201915b50505050508152506040518060200160405280600081525092509250509091565b60006020828403121561104c57600080fd5b81356001600160e01b03198116811461106457600080fd5b9392505050565b60005b8381101561108657818101518382015260200161106e565b50506000910152565b600081518084526110a781602086016020860161106b565b601f01601f19169290920160200192915050565b6040815260006001600160601b038085511660408401528060208601511660608401525060ff604085015116608083015260608401516110ff60a084018215159052565b5060808401516001600160a01b03811660c08401525060a08401516001600160a01b03811660e08401525060c084015160e061010084015261114561012084018261108f565b905082810360208401526109e1818561108f565b6001600160c01b03198116811461116f57600080fd5b50565b634e487b7160e01b600052604160045260246000fd5b6040805190810167ffffffffffffffff811182821017156111ab576111ab611172565b60405290565b60405160e0810167ffffffffffffffff811182821017156111ab576111ab611172565b604051610120810167ffffffffffffffff811182821017156111ab576111ab611172565b604051610180810167ffffffffffffffff811182821017156111ab576111ab611172565b604051601f8201601f1916810167ffffffffffffffff8111828210171561124557611245611172565b604052919050565b600067ffffffffffffffff82111561126757611267611172565b50601f01601f191660200190565b600082601f83011261128657600080fd5b81356112996112948261124d565b61121c565b8181528460208386010111156112ae57600080fd5b816020850160208301376000918101602001919091529392505050565b6001600160601b038116811461116f57600080fd5b60008060008060008060c087890312156112f957600080fd5b86359550602087013561130b81611159565b945060408701359350606087013567ffffffffffffffff81111561132e57600080fd5b61133a89828a01611275565b935050608087013561134b81611159565b915060a087013561135b816112cb565b809150509295509295509295565b60006020828403121561137b57600080fd5b8135611064816112cb565b6000806000806080858703121561139c57600080fd5b8435935060208501356113ae81611159565b925060408501359150606085013567ffffffffffffffff8111156113d157600080fd5b6113dd87828801611275565b91505092959194509250565b6000604082840312156113fb57600080fd5b611403611188565b9050813581526020820135602082015292915050565b6000806080838503121561142c57600080fd5b61143684846113e9565b915061144584604085016113e9565b90509250929050565b81516001600160a01b031681526102408101602083015161147a60208401826001600160a01b03169052565b50604083015161149560408401826001600160601b03169052565b5060608301516114b060608401826001600160601b03169052565b5060808301516114cd608084018280518252602090810151910152565b5060a0830151805160c0840152602081015160e08401525060c08301516101006115038185018380518252602090810151910152565b60e085015191506101406115238186018480518252602090810151910152565b9085015180516101808601526020908101516101a086015261012086015180516101c087015201516101e0850152840151151561020084015250610160909201516001600160a01b03166102209091015290565b8051611582816112cb565b919050565b805160ff8116811461158257600080fd5b8051801515811461158257600080fd5b6001600160a01b038116811461116f57600080fd5b8051611582816115a8565b600082601f8301126115d957600080fd5b81516115e76112948261124d565b8181528460208386010111156115fc57600080fd5b61160d82602083016020870161106b565b949350505050565b6000806040838503121561162857600080fd5b825167ffffffffffffffff8082111561164057600080fd5b9084019060e0828703121561165457600080fd5b61165c6111b1565b61166583611577565b815261167360208401611577565b602082015261168460408401611587565b604082015261169560608401611598565b60608201526116a6608084016115bd565b60808201526116b760a084016115bd565b60a082015260c0830151828111156116ce57600080fd5b6116da888286016115c8565b60c08301525060208601519094509150808211156116f757600080fd5b50611704858286016115c8565b9150509250929050565b60006040828403121561172057600080fd5b611728611188565b9050815181526020820151602082015292915050565b6000610180828403121561175157600080fd5b6117596111d4565b61176283611577565b8152611770602084016115bd565b60208201526040830151604082015261178c846060850161170e565b606082015261179e8460a0850161170e565b60808201526117b08460e0850161170e565b60a08201526117c26101208401611598565b60c08201526117d46101408401611598565b60e08201526117e661016084016115bd565b6101008201529392505050565b600060c0828403121561180557600080fd5b60405160a0810181811067ffffffffffffffff8211171561182857611828611172565b6040528251611836816112cb565b81526020830151611846816115a8565b6020820152611858846040850161170e565b604082015261186960808401611598565b606082015260a083015161187c816115a8565b60808201529392505050565b600067ffffffffffffffff60c01b808916835287602084015286604084015260c060608401526118bb60c084018761108f565b6001600160601b039590951660808401529290921660a09091015250949350505050565b600080600080600060a086880312156118f757600080fd5b5050835160208501516040860151606087015160809097015192989197509594509092509050565b60006020828403121561193157600080fd5b61106482611598565b60006020828403121561194c57600080fd5b8151611064816112cb565b60008261197457634e487b7160e01b600052601260045260246000fd5b500490565b60006020828403121561198b57600080fd5b8151611064816115a8565b825181526020808401518183015282516040830152820151606082015260808101611064565b600061024082840312156119cf57600080fd5b6119d76111f8565b6119e0836115bd565b81526119ee602084016115bd565b60208201526119ff60408401611577565b6040820152611a1060608401611577565b6060820152611a22846080850161170e565b6080820152611a348460c0850161170e565b60a0820152610100611a488582860161170e565b60c0830152610140611a5c8682870161170e565b60e0840152611a6f86610180870161170e565b82840152611a81866101c0870161170e565b610120840152611a946102008601611598565b9083015250611aa661022084016115bd565b6101608201529392505050565b600181811c90821680611ac757607f821691505b602082108103611ae757634e487b7160e01b600052602260045260246000fd5b5091905056fea26469706673582212200155162b91e3f03830f6506ccedb9cdbecb6f4ebf12ce1fd865cc04fc236533764736f6c63430008140033",
693
- "linkReferences": {
694
- "contracts/types/NftId.sol": {
695
- "NftIdLib": [
696
- {
697
- "length": 20,
698
- "start": 5066
699
- },
700
- {
701
- "length": 20,
702
- "start": 5771
703
- },
704
- {
705
- "length": 20,
706
- "start": 6107
707
- }
708
- ]
709
- }
710
- },
711
- "deployedLinkReferences": {
712
- "contracts/types/NftId.sol": {
713
- "NftIdLib": [
714
- {
715
- "length": 20,
716
- "start": 1540
717
- },
718
- {
719
- "length": 20,
720
- "start": 2245
721
- },
722
- {
723
- "length": 20,
724
- "start": 2581
725
- }
726
- ]
727
- }
728
- }
771
+ "bytecode": "0x",
772
+ "deployedBytecode": "0x",
773
+ "linkReferences": {},
774
+ "deployedLinkReferences": {}
729
775
  }
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "_format": "hh-sol-dbg-1",
3
- "buildInfo": "../../../../build-info/f10f3aeaf877c015583985ece5f2890b.json"
3
+ "buildInfo": "../../../../build-info/e5530b5c57be84d76caaa584abf46dd1.json"
4
4
  }
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "_format": "hh-sol-dbg-1",
3
- "buildInfo": "../../../../build-info/f10f3aeaf877c015583985ece5f2890b.json"
3
+ "buildInfo": "../../../../build-info/e5530b5c57be84d76caaa584abf46dd1.json"
4
4
  }
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "_format": "hh-sol-dbg-1",
3
- "buildInfo": "../../../../build-info/f10f3aeaf877c015583985ece5f2890b.json"
3
+ "buildInfo": "../../../../build-info/e5530b5c57be84d76caaa584abf46dd1.json"
4
4
  }
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "_format": "hh-sol-dbg-1",
3
- "buildInfo": "../../../../build-info/f10f3aeaf877c015583985ece5f2890b.json"
3
+ "buildInfo": "../../../../build-info/e5530b5c57be84d76caaa584abf46dd1.json"
4
4
  }
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "_format": "hh-sol-dbg-1",
3
- "buildInfo": "../../../../build-info/f10f3aeaf877c015583985ece5f2890b.json"
3
+ "buildInfo": "../../../../build-info/e5530b5c57be84d76caaa584abf46dd1.json"
4
4
  }
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "_format": "hh-sol-dbg-1",
3
- "buildInfo": "../../../../build-info/f10f3aeaf877c015583985ece5f2890b.json"
3
+ "buildInfo": "../../../../build-info/e5530b5c57be84d76caaa584abf46dd1.json"
4
4
  }
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "_format": "hh-sol-dbg-1",
3
- "buildInfo": "../../../../build-info/f10f3aeaf877c015583985ece5f2890b.json"
3
+ "buildInfo": "../../../../build-info/e5530b5c57be84d76caaa584abf46dd1.json"
4
4
  }
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "_format": "hh-sol-dbg-1",
3
- "buildInfo": "../../../../build-info/f10f3aeaf877c015583985ece5f2890b.json"
3
+ "buildInfo": "../../../../build-info/e5530b5c57be84d76caaa584abf46dd1.json"
4
4
  }
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "_format": "hh-sol-dbg-1",
3
- "buildInfo": "../../../../build-info/f10f3aeaf877c015583985ece5f2890b.json"
3
+ "buildInfo": "../../../../build-info/e5530b5c57be84d76caaa584abf46dd1.json"
4
4
  }
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "_format": "hh-sol-dbg-1",
3
- "buildInfo": "../../../../build-info/f10f3aeaf877c015583985ece5f2890b.json"
3
+ "buildInfo": "../../../../build-info/e5530b5c57be84d76caaa584abf46dd1.json"
4
4
  }
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "_format": "hh-sol-dbg-1",
3
- "buildInfo": "../../../../build-info/f10f3aeaf877c015583985ece5f2890b.json"
3
+ "buildInfo": "../../../../build-info/e5530b5c57be84d76caaa584abf46dd1.json"
4
4
  }
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "_format": "hh-sol-dbg-1",
3
- "buildInfo": "../../../../build-info/f10f3aeaf877c015583985ece5f2890b.json"
3
+ "buildInfo": "../../../../build-info/e5530b5c57be84d76caaa584abf46dd1.json"
4
4
  }
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "_format": "hh-sol-dbg-1",
3
- "buildInfo": "../../../../build-info/f10f3aeaf877c015583985ece5f2890b.json"
3
+ "buildInfo": "../../../../build-info/e5530b5c57be84d76caaa584abf46dd1.json"
4
4
  }
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "_format": "hh-sol-dbg-1",
3
- "buildInfo": "../../../../build-info/f10f3aeaf877c015583985ece5f2890b.json"
3
+ "buildInfo": "../../../../build-info/e5530b5c57be84d76caaa584abf46dd1.json"
4
4
  }
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "_format": "hh-sol-dbg-1",
3
- "buildInfo": "../../../../build-info/f10f3aeaf877c015583985ece5f2890b.json"
3
+ "buildInfo": "../../../../build-info/e5530b5c57be84d76caaa584abf46dd1.json"
4
4
  }
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "_format": "hh-sol-dbg-1",
3
- "buildInfo": "../../../../build-info/f10f3aeaf877c015583985ece5f2890b.json"
3
+ "buildInfo": "../../../../build-info/e5530b5c57be84d76caaa584abf46dd1.json"
4
4
  }
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "_format": "hh-sol-dbg-1",
3
- "buildInfo": "../../../../build-info/f10f3aeaf877c015583985ece5f2890b.json"
3
+ "buildInfo": "../../../../build-info/e5530b5c57be84d76caaa584abf46dd1.json"
4
4
  }
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "_format": "hh-sol-dbg-1",
3
- "buildInfo": "../../../../build-info/f10f3aeaf877c015583985ece5f2890b.json"
3
+ "buildInfo": "../../../../build-info/e5530b5c57be84d76caaa584abf46dd1.json"
4
4
  }
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "_format": "hh-sol-dbg-1",
3
- "buildInfo": "../../../../build-info/f10f3aeaf877c015583985ece5f2890b.json"
3
+ "buildInfo": "../../../../build-info/e5530b5c57be84d76caaa584abf46dd1.json"
4
4
  }
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "_format": "hh-sol-dbg-1",
3
- "buildInfo": "../../../../build-info/f10f3aeaf877c015583985ece5f2890b.json"
3
+ "buildInfo": "../../../../build-info/e5530b5c57be84d76caaa584abf46dd1.json"
4
4
  }
@@ -0,0 +1,4 @@
1
+ {
2
+ "_format": "hh-sol-dbg-1",
3
+ "buildInfo": "../../../build-info/e5530b5c57be84d76caaa584abf46dd1.json"
4
+ }