@etherisc/gif-next 0.0.2-bd7444a → 0.0.2-bdd64e2-180

Sign up to get free protection for your applications and to get access to all the features.
Files changed (390) hide show
  1. package/README.md +301 -7
  2. package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.dbg.json +4 -0
  3. package/artifacts/contracts/{instance/component/ComponentModule.sol/ComponentModule.json → components/BaseComponent.sol/BaseComponent.json} +156 -156
  4. package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +4 -0
  5. package/artifacts/contracts/components/Distribution.sol/Distribution.json +670 -0
  6. package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.dbg.json +4 -0
  7. package/artifacts/contracts/{instance/component/IComponent.sol/IComponentModule.json → components/IBaseComponent.sol/IBaseComponent.json} +139 -104
  8. package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +4 -0
  9. package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.json +204 -0
  10. package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +4 -0
  11. package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +249 -0
  12. package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +4 -0
  13. package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +157 -0
  14. package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +1 -1
  15. package/artifacts/contracts/components/Pool.sol/Pool.json +696 -36
  16. package/artifacts/contracts/components/Product.sol/Product.dbg.json +1 -1
  17. package/artifacts/contracts/components/Product.sol/Product.json +590 -46
  18. package/artifacts/contracts/experiment/cloning/Cloner.sol/Cloner.dbg.json +4 -0
  19. package/artifacts/contracts/experiment/cloning/Cloner.sol/Cloner.json +66 -0
  20. package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock1.dbg.json +4 -0
  21. package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock1.json +24 -0
  22. package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock2.dbg.json +4 -0
  23. package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock2.json +42 -0
  24. package/artifacts/contracts/experiment/errors/Require.sol/Require.dbg.json +1 -1
  25. package/artifacts/contracts/experiment/errors/Require.sol/Require.json +2 -2
  26. package/artifacts/contracts/experiment/errors/Revert.sol/Revert.dbg.json +1 -1
  27. package/artifacts/contracts/experiment/errors/Revert.sol/Revert.json +2 -2
  28. package/artifacts/contracts/experiment/inheritance/A.sol/A.dbg.json +1 -1
  29. package/artifacts/contracts/experiment/inheritance/A.sol/A.json +2 -2
  30. package/artifacts/contracts/experiment/inheritance/A.sol/AShared.dbg.json +1 -1
  31. package/artifacts/contracts/experiment/inheritance/A.sol/AShared.json +2 -2
  32. package/artifacts/contracts/experiment/inheritance/B.sol/B.dbg.json +1 -1
  33. package/artifacts/contracts/experiment/inheritance/C.sol/C.dbg.json +1 -1
  34. package/artifacts/contracts/experiment/inheritance/IA.sol/IA.dbg.json +1 -1
  35. package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.dbg.json +1 -1
  36. package/artifacts/contracts/experiment/inheritance/IB.sol/IB.dbg.json +1 -1
  37. package/artifacts/contracts/experiment/inheritance/IC.sol/IC.dbg.json +1 -1
  38. package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.dbg.json +4 -0
  39. package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.json +59 -0
  40. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.dbg.json +4 -0
  41. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.json +124 -0
  42. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.dbg.json +4 -0
  43. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.json +74 -0
  44. package/artifacts/contracts/experiment/statemachine/SM.sol/SM.dbg.json +4 -0
  45. package/artifacts/contracts/experiment/statemachine/SM.sol/SM.json +124 -0
  46. package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.dbg.json +4 -0
  47. package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.json +207 -0
  48. package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.dbg.json +1 -1
  49. package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.json +2 -2
  50. package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.dbg.json +1 -1
  51. package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.json +2 -2
  52. package/artifacts/contracts/instance/AccessManagedSimple.sol/AccessManagedSimple.dbg.json +4 -0
  53. package/artifacts/contracts/instance/AccessManagedSimple.sol/AccessManagedSimple.json +101 -0
  54. package/artifacts/contracts/instance/AccessManagerSimple.sol/AccessManagerSimple.dbg.json +4 -0
  55. package/artifacts/contracts/instance/AccessManagerSimple.sol/AccessManagerSimple.json +1132 -0
  56. package/artifacts/contracts/instance/IAccessManagerSimple.sol/IAccessManagerSimple.dbg.json +4 -0
  57. package/artifacts/contracts/instance/IAccessManagerSimple.sol/IAccessManagerSimple.json +1082 -0
  58. package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
  59. package/artifacts/contracts/instance/IInstance.sol/IInstance.json +502 -641
  60. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +4 -0
  61. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +480 -0
  62. package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
  63. package/artifacts/contracts/instance/Instance.sol/Instance.json +3043 -571
  64. package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +4 -0
  65. package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +917 -0
  66. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +4 -0
  67. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +1388 -0
  68. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +4 -0
  69. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +891 -0
  70. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +4 -0
  71. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +492 -0
  72. package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.dbg.json +4 -0
  73. package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.json +486 -0
  74. package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.dbg.json +4 -0
  75. package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.json +113 -0
  76. package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +4 -0
  77. package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.json +429 -0
  78. package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.dbg.json +4 -0
  79. package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.json +115 -0
  80. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +4 -0
  81. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.json +502 -0
  82. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +4 -0
  83. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +169 -0
  84. package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +4 -0
  85. package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +211 -0
  86. package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +4 -0
  87. package/artifacts/contracts/instance/{access/IAccess.sol/IAccess.json → module/IBundle.sol/IBundle.json} +2 -2
  88. package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +4 -0
  89. package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.json +10 -0
  90. package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +4 -0
  91. package/artifacts/contracts/instance/{policy → module}/IPolicy.sol/IPolicy.json +1 -1
  92. package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +4 -0
  93. package/artifacts/contracts/instance/{pool/IPoolModule.sol/IPool.json → module/IRisk.sol/IRisk.json} +2 -2
  94. package/artifacts/contracts/instance/module/ISetup.sol/ISetup.dbg.json +4 -0
  95. package/artifacts/contracts/instance/{component/IComponent.sol/IComponent.json → module/ISetup.sol/ISetup.json} +2 -2
  96. package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.dbg.json +4 -0
  97. package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.json +10 -0
  98. package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.dbg.json +4 -0
  99. package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.json +827 -0
  100. package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +4 -0
  101. package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +657 -0
  102. package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +4 -0
  103. package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +436 -0
  104. package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.dbg.json +4 -0
  105. package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.json +466 -0
  106. package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +4 -0
  107. package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.json +446 -0
  108. package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +4 -0
  109. package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +561 -0
  110. package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +4 -0
  111. package/artifacts/contracts/instance/service/IProductService.sol/IProductService.json +751 -0
  112. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +4 -0
  113. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +796 -0
  114. package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.dbg.json +4 -0
  115. package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.json +448 -0
  116. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
  117. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +239 -2
  118. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
  119. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +537 -63
  120. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +4 -0
  121. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +853 -0
  122. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +4 -0
  123. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.json +34 -0
  124. package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
  125. package/artifacts/contracts/registry/Registry.sol/Registry.json +676 -76
  126. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +4 -0
  127. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +1237 -0
  128. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +4 -0
  129. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +525 -0
  130. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +4 -0
  131. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +410 -0
  132. package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.dbg.json +4 -0
  133. package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.json +107 -0
  134. package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +4 -0
  135. package/artifacts/contracts/shared/ERC165.sol/ERC165.json +35 -0
  136. package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +4 -0
  137. package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.json +127 -0
  138. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +4 -0
  139. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +201 -0
  140. package/artifacts/contracts/shared/IService.sol/IService.dbg.json +4 -0
  141. package/artifacts/contracts/shared/IService.sol/IService.json +421 -0
  142. package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +4 -0
  143. package/artifacts/contracts/shared/IVersionable.sol/IVersionable.json +205 -0
  144. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +4 -0
  145. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +158 -0
  146. package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +4 -0
  147. package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +349 -0
  148. package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +4 -0
  149. package/artifacts/contracts/shared/Registerable.sol/Registerable.json +274 -0
  150. package/artifacts/contracts/shared/RegisterableUpgradable.sol/RegisterableUpgradable.dbg.json +4 -0
  151. package/artifacts/contracts/shared/RegisterableUpgradable.sol/RegisterableUpgradable.json +442 -0
  152. package/artifacts/contracts/shared/Service.sol/Service.dbg.json +4 -0
  153. package/artifacts/contracts/shared/Service.sol/Service.json +468 -0
  154. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +4 -0
  155. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +96 -0
  156. package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +4 -0
  157. package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +129 -0
  158. package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +4 -0
  159. package/artifacts/contracts/shared/Versionable.sol/Versionable.json +228 -0
  160. package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +4 -0
  161. package/artifacts/contracts/test/TestFee.sol/TestFee.json +119 -0
  162. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +4 -0
  163. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +305 -0
  164. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +4 -0
  165. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +116 -0
  166. package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +4 -0
  167. package/artifacts/contracts/test/TestService.sol/TestService.json +600 -0
  168. package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +4 -0
  169. package/artifacts/contracts/test/TestToken.sol/TestUsdc.json +376 -0
  170. package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +4 -0
  171. package/artifacts/contracts/test/TestVersion.sol/TestVersion.json +218 -0
  172. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +4 -0
  173. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +286 -0
  174. package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +4 -0
  175. package/artifacts/contracts/test/Usdc.sol/USDC.json +376 -0
  176. package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +4 -0
  177. package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.json +10 -0
  178. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +1 -1
  179. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.json +2 -2
  180. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +1 -1
  181. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.json +2 -2
  182. package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.dbg.json +4 -0
  183. package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.json +104 -0
  184. package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +4 -0
  185. package/artifacts/contracts/types/Fee.sol/FeeLib.json +257 -0
  186. package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +4 -0
  187. package/artifacts/contracts/types/Key32.sol/Key32Lib.json +125 -0
  188. package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +1 -1
  189. package/artifacts/contracts/types/NftId.sol/NftIdLib.json +65 -4
  190. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +4 -0
  191. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +10 -0
  192. package/artifacts/contracts/types/NumberId.sol/NumberIdLib.dbg.json +4 -0
  193. package/artifacts/contracts/types/NumberId.sol/NumberIdLib.json +100 -0
  194. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +4 -0
  195. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.json +92 -0
  196. package/artifacts/contracts/types/Referral.sol/ReferralLib.dbg.json +4 -0
  197. package/artifacts/contracts/types/Referral.sol/ReferralLib.json +123 -0
  198. package/artifacts/contracts/types/RiskId.sol/RiskIdLib.dbg.json +4 -0
  199. package/artifacts/contracts/types/RiskId.sol/RiskIdLib.json +86 -0
  200. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +4 -0
  201. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.json +156 -0
  202. package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +4 -0
  203. package/artifacts/contracts/types/StateId.sol/StateIdLib.json +92 -0
  204. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +1 -1
  205. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.json +77 -2
  206. package/artifacts/contracts/types/UFixed.sol/MathLib.dbg.json +4 -0
  207. package/artifacts/contracts/types/UFixed.sol/MathLib.json +10 -0
  208. package/artifacts/contracts/types/UFixed.sol/UFixedLib.dbg.json +4 -0
  209. package/artifacts/contracts/types/UFixed.sol/UFixedLib.json +479 -0
  210. package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +4 -0
  211. package/artifacts/contracts/types/Version.sol/VersionLib.json +177 -0
  212. package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +4 -0
  213. package/artifacts/contracts/types/Version.sol/VersionPartLib.json +49 -0
  214. package/contracts/components/BaseComponent.sol +91 -0
  215. package/contracts/components/Distribution.sol +166 -0
  216. package/contracts/components/IBaseComponent.sol +25 -0
  217. package/contracts/components/IDistributionComponent.sol +46 -0
  218. package/contracts/components/IPoolComponent.sol +62 -0
  219. package/contracts/components/IProductComponent.sol +35 -0
  220. package/contracts/components/Pool.sol +236 -18
  221. package/contracts/components/Product.sol +267 -36
  222. package/contracts/experiment/cloning/Cloner.sol +47 -0
  223. package/contracts/experiment/errors/Require.sol +10 -5
  224. package/contracts/experiment/errors/Revert.sol +13 -8
  225. package/contracts/experiment/inheritance/A.sol +8 -11
  226. package/contracts/experiment/inheritance/B.sol +10 -5
  227. package/contracts/experiment/inheritance/C.sol +11 -5
  228. package/contracts/experiment/inheritance/IA.sol +2 -7
  229. package/contracts/experiment/inheritance/IB.sol +3 -2
  230. package/contracts/experiment/inheritance/IC.sol +4 -3
  231. package/contracts/experiment/statemachine/Dummy.sol +27 -0
  232. package/contracts/experiment/statemachine/ISM.sol +25 -0
  233. package/contracts/experiment/statemachine/SM.sol +57 -0
  234. package/contracts/experiment/statemachine/SimpleStateMachine.sol +31 -0
  235. package/contracts/experiment/types/TypeA.sol +14 -9
  236. package/contracts/experiment/types/TypeB.sol +14 -9
  237. package/contracts/instance/AccessManagedSimple.sol +115 -0
  238. package/contracts/instance/AccessManagerSimple.sol +692 -0
  239. package/contracts/instance/IAccessManagerSimple.sol +391 -0
  240. package/contracts/instance/IInstance.sol +34 -15
  241. package/contracts/instance/IInstanceService.sol +30 -0
  242. package/contracts/instance/Instance.sol +423 -44
  243. package/contracts/instance/InstanceAccessManager.sol +288 -0
  244. package/contracts/instance/InstanceReader.sol +306 -0
  245. package/contracts/instance/InstanceService.sol +182 -0
  246. package/contracts/instance/InstanceServiceManager.sol +56 -0
  247. package/contracts/instance/base/ComponentServiceBase.sol +41 -0
  248. package/contracts/instance/base/IInstanceBase.sol +23 -0
  249. package/contracts/instance/base/IKeyValueStore.sol +49 -0
  250. package/contracts/instance/base/ILifecycle.sol +30 -0
  251. package/contracts/instance/base/KeyValueStore.sol +172 -0
  252. package/contracts/instance/base/Lifecycle.sol +100 -0
  253. package/contracts/instance/module/IAccess.sol +38 -0
  254. package/contracts/instance/module/IBundle.sol +20 -0
  255. package/contracts/instance/module/IDistribution.sol +39 -0
  256. package/contracts/instance/module/IPolicy.sol +45 -0
  257. package/contracts/instance/module/IRisk.sol +11 -0
  258. package/contracts/instance/module/ISetup.sol +44 -0
  259. package/contracts/instance/module/ITreasury.sol +23 -0
  260. package/contracts/instance/service/ComponentOwnerService.sol +317 -0
  261. package/contracts/instance/service/DistributionService.sol +105 -0
  262. package/contracts/instance/service/DistributionServiceManager.sol +53 -0
  263. package/contracts/instance/service/IComponentOwnerService.sol +20 -0
  264. package/contracts/instance/service/IDistributionService.sol +12 -0
  265. package/contracts/instance/service/IPoolService.sol +37 -0
  266. package/contracts/instance/service/IProductService.sol +107 -0
  267. package/contracts/instance/service/PoolService.sol +211 -0
  268. package/contracts/instance/service/PoolServiceManager.sol +53 -0
  269. package/contracts/registry/ChainNft.sol +138 -109
  270. package/contracts/registry/IRegistry.sol +81 -57
  271. package/contracts/registry/IRegistryService.sol +33 -0
  272. package/contracts/registry/ITransferInterceptor.sol +6 -0
  273. package/contracts/registry/Registry.sol +427 -120
  274. package/contracts/registry/RegistryService.sol +399 -0
  275. package/contracts/registry/RegistryServiceManager.sol +80 -0
  276. package/contracts/registry/TokenRegistry.sol +111 -0
  277. package/contracts/shared/ContractDeployerLib.sol +72 -0
  278. package/contracts/shared/ERC165.sol +25 -0
  279. package/contracts/shared/INftOwnable.sol +22 -0
  280. package/contracts/shared/IRegisterable.sol +17 -0
  281. package/contracts/shared/IService.sol +15 -0
  282. package/contracts/shared/IVersionable.sol +96 -0
  283. package/contracts/shared/NftOwnable.sol +136 -0
  284. package/contracts/shared/ProxyManager.sol +94 -0
  285. package/contracts/shared/Registerable.sol +90 -0
  286. package/contracts/shared/RegisterableUpgradable.sol +16 -0
  287. package/contracts/shared/Service.sol +54 -0
  288. package/contracts/shared/TokenHandler.sol +27 -0
  289. package/contracts/shared/UpgradableProxyWithAdmin.sol +16 -0
  290. package/contracts/shared/Versionable.sol +147 -0
  291. package/contracts/test/TestFee.sol +25 -0
  292. package/contracts/test/TestRegisterable.sol +18 -0
  293. package/contracts/test/TestRoleId.sol +14 -0
  294. package/contracts/test/TestService.sol +24 -0
  295. package/contracts/test/TestToken.sol +26 -0
  296. package/contracts/test/TestVersion.sol +44 -0
  297. package/contracts/test/TestVersionable.sol +17 -0
  298. package/contracts/test/Usdc.sol +26 -0
  299. package/contracts/types/AddressSet.sol +58 -0
  300. package/contracts/types/Blocknumber.sol +76 -18
  301. package/contracts/types/ChainId.sol +18 -10
  302. package/contracts/types/DistributorType.sol +55 -0
  303. package/contracts/types/Fee.sol +56 -0
  304. package/contracts/types/Key32.sol +50 -0
  305. package/contracts/types/NftId.sol +48 -11
  306. package/contracts/types/NftIdSet.sol +60 -0
  307. package/contracts/types/NumberId.sol +52 -0
  308. package/contracts/types/ObjectType.sol +152 -0
  309. package/contracts/types/Referral.sol +85 -0
  310. package/contracts/types/RiskId.sol +43 -0
  311. package/contracts/types/RoleId.sol +89 -0
  312. package/contracts/types/StateId.sol +105 -0
  313. package/contracts/types/Timestamp.sol +89 -17
  314. package/contracts/types/UFixed.sol +193 -75
  315. package/contracts/types/Version.sol +107 -0
  316. package/package.json +21 -6
  317. package/artifacts/contracts/components/Component.sol/Component.dbg.json +0 -4
  318. package/artifacts/contracts/components/Component.sol/Component.json +0 -179
  319. package/artifacts/contracts/components/Component.sol/InstanceLinked.dbg.json +0 -4
  320. package/artifacts/contracts/components/Component.sol/InstanceLinked.json +0 -35
  321. package/artifacts/contracts/components/IPool.sol/IPoolComponent.dbg.json +0 -4
  322. package/artifacts/contracts/components/IPool.sol/IPoolComponent.json +0 -179
  323. package/artifacts/contracts/components/IProduct.sol/IProductComponent.dbg.json +0 -4
  324. package/artifacts/contracts/components/IProduct.sol/IProductComponent.json +0 -192
  325. package/artifacts/contracts/instance/access/Access.sol/AccessModule.dbg.json +0 -4
  326. package/artifacts/contracts/instance/access/Access.sol/AccessModule.json +0 -400
  327. package/artifacts/contracts/instance/access/IAccess.sol/IAccess.dbg.json +0 -4
  328. package/artifacts/contracts/instance/access/IAccess.sol/IAccessCheckRole.dbg.json +0 -4
  329. package/artifacts/contracts/instance/access/IAccess.sol/IAccessCheckRole.json +0 -35
  330. package/artifacts/contracts/instance/access/IAccess.sol/IAccessComponentTypeRoles.dbg.json +0 -4
  331. package/artifacts/contracts/instance/access/IAccess.sol/IAccessComponentTypeRoles.json +0 -50
  332. package/artifacts/contracts/instance/access/IAccess.sol/IAccessModule.dbg.json +0 -4
  333. package/artifacts/contracts/instance/access/IAccess.sol/IAccessModule.json +0 -336
  334. package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentModule.dbg.json +0 -4
  335. package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentOwnerService.dbg.json +0 -4
  336. package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentOwnerService.json +0 -147
  337. package/artifacts/contracts/instance/component/IComponent.sol/IComponent.dbg.json +0 -4
  338. package/artifacts/contracts/instance/component/IComponent.sol/IComponentContract.dbg.json +0 -4
  339. package/artifacts/contracts/instance/component/IComponent.sol/IComponentContract.json +0 -179
  340. package/artifacts/contracts/instance/component/IComponent.sol/IComponentModule.dbg.json +0 -4
  341. package/artifacts/contracts/instance/component/IComponent.sol/IComponentOwnerService.dbg.json +0 -4
  342. package/artifacts/contracts/instance/component/IComponent.sol/IComponentOwnerService.json +0 -94
  343. package/artifacts/contracts/instance/component/IComponent.sol/IInstanceLinked.dbg.json +0 -4
  344. package/artifacts/contracts/instance/component/IComponent.sol/IInstanceLinked.json +0 -24
  345. package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicy.dbg.json +0 -4
  346. package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicyModule.dbg.json +0 -4
  347. package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicyModule.json +0 -231
  348. package/artifacts/contracts/instance/policy/PolicyModule.sol/PolicyModule.dbg.json +0 -4
  349. package/artifacts/contracts/instance/policy/PolicyModule.sol/PolicyModule.json +0 -231
  350. package/artifacts/contracts/instance/pool/IPoolModule.sol/IPool.dbg.json +0 -4
  351. package/artifacts/contracts/instance/pool/IPoolModule.sol/IPoolModule.dbg.json +0 -4
  352. package/artifacts/contracts/instance/pool/IPoolModule.sol/IPoolModule.json +0 -149
  353. package/artifacts/contracts/instance/pool/PoolModule.sol/PoolModule.dbg.json +0 -4
  354. package/artifacts/contracts/instance/pool/PoolModule.sol/PoolModule.json +0 -162
  355. package/artifacts/contracts/instance/product/IProductService.sol/IProductModule.dbg.json +0 -4
  356. package/artifacts/contracts/instance/product/IProductService.sol/IProductModule.json +0 -75
  357. package/artifacts/contracts/instance/product/IProductService.sol/IProductService.dbg.json +0 -4
  358. package/artifacts/contracts/instance/product/IProductService.sol/IProductService.json +0 -114
  359. package/artifacts/contracts/instance/product/ProductService.sol/ProductModule.dbg.json +0 -4
  360. package/artifacts/contracts/instance/product/ProductService.sol/ProductModule.json +0 -75
  361. package/artifacts/contracts/instance/product/ProductService.sol/ProductService.dbg.json +0 -4
  362. package/artifacts/contracts/instance/product/ProductService.sol/ProductService.json +0 -167
  363. package/artifacts/contracts/registry/IChainNft.sol/IChainNft.dbg.json +0 -4
  364. package/artifacts/contracts/registry/IChainNft.sol/IChainNft.json +0 -452
  365. package/artifacts/contracts/registry/IRegistry.sol/IOwnable.dbg.json +0 -4
  366. package/artifacts/contracts/registry/IRegistry.sol/IOwnable.json +0 -24
  367. package/artifacts/contracts/registry/IRegistry.sol/IRegisterable.dbg.json +0 -4
  368. package/artifacts/contracts/registry/IRegistry.sol/IRegisterable.json +0 -166
  369. package/artifacts/contracts/registry/IRegistry.sol/IRegistryLinked.dbg.json +0 -4
  370. package/artifacts/contracts/registry/IRegistry.sol/IRegistryLinked.json +0 -49
  371. package/artifacts/contracts/registry/Registry.sol/Registerable.dbg.json +0 -4
  372. package/artifacts/contracts/registry/Registry.sol/Registerable.json +0 -166
  373. package/artifacts/contracts/registry/Registry.sol/RegistryLinked.dbg.json +0 -4
  374. package/artifacts/contracts/registry/Registry.sol/RegistryLinked.json +0 -60
  375. package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.dbg.json +0 -4
  376. package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.json +0 -440
  377. package/contracts/components/Component.sol +0 -62
  378. package/contracts/components/IPool.sol +0 -9
  379. package/contracts/components/IProduct.sol +0 -12
  380. package/contracts/instance/access/Access.sol +0 -218
  381. package/contracts/instance/access/IAccess.sol +0 -83
  382. package/contracts/instance/component/ComponentModule.sol +0 -248
  383. package/contracts/instance/component/IComponent.sol +0 -95
  384. package/contracts/instance/policy/IPolicy.sol +0 -66
  385. package/contracts/instance/policy/PolicyModule.sol +0 -107
  386. package/contracts/instance/pool/IPoolModule.sol +0 -41
  387. package/contracts/instance/pool/PoolModule.sol +0 -86
  388. package/contracts/instance/product/IProductService.sol +0 -46
  389. package/contracts/instance/product/ProductService.sol +0 -108
  390. package/contracts/registry/IChainNft.sol +0 -18
@@ -0,0 +1,657 @@
1
+ {
2
+ "_format": "hh-sol-artifact-1",
3
+ "contractName": "DistributionService",
4
+ "sourceName": "contracts/instance/service/DistributionService.sol",
5
+ "abi": [
6
+ {
7
+ "inputs": [],
8
+ "name": "CallerIsNotComponentOwner",
9
+ "type": "error"
10
+ },
11
+ {
12
+ "inputs": [
13
+ {
14
+ "internalType": "address",
15
+ "name": "registry",
16
+ "type": "address"
17
+ },
18
+ {
19
+ "internalType": "NftId",
20
+ "name": "nftId",
21
+ "type": "uint96"
22
+ }
23
+ ],
24
+ "name": "ErrorAlreadyLinked",
25
+ "type": "error"
26
+ },
27
+ {
28
+ "inputs": [
29
+ {
30
+ "internalType": "address",
31
+ "name": "contractAddress",
32
+ "type": "address"
33
+ }
34
+ ],
35
+ "name": "ErrorContractNotRegistered",
36
+ "type": "error"
37
+ },
38
+ {
39
+ "inputs": [
40
+ {
41
+ "internalType": "address",
42
+ "name": "account",
43
+ "type": "address"
44
+ }
45
+ ],
46
+ "name": "ErrorNotOwner",
47
+ "type": "error"
48
+ },
49
+ {
50
+ "inputs": [
51
+ {
52
+ "internalType": "address",
53
+ "name": "registryAddress",
54
+ "type": "address"
55
+ }
56
+ ],
57
+ "name": "ErrorNotRegistry",
58
+ "type": "error"
59
+ },
60
+ {
61
+ "inputs": [
62
+ {
63
+ "internalType": "address",
64
+ "name": "registryAddress",
65
+ "type": "address"
66
+ }
67
+ ],
68
+ "name": "ErrorRegisterableNotRegistry",
69
+ "type": "error"
70
+ },
71
+ {
72
+ "inputs": [],
73
+ "name": "ErrorRegistryAddressZero",
74
+ "type": "error"
75
+ },
76
+ {
77
+ "inputs": [
78
+ {
79
+ "internalType": "address",
80
+ "name": "registry",
81
+ "type": "address"
82
+ }
83
+ ],
84
+ "name": "ErrorRegistryAlreadyInitialized",
85
+ "type": "error"
86
+ },
87
+ {
88
+ "inputs": [],
89
+ "name": "ErrorRegistryNotInitialized",
90
+ "type": "error"
91
+ },
92
+ {
93
+ "inputs": [],
94
+ "name": "InvalidInitialization",
95
+ "type": "error"
96
+ },
97
+ {
98
+ "inputs": [],
99
+ "name": "NotInitializing",
100
+ "type": "error"
101
+ },
102
+ {
103
+ "anonymous": false,
104
+ "inputs": [
105
+ {
106
+ "indexed": false,
107
+ "internalType": "uint64",
108
+ "name": "version",
109
+ "type": "uint64"
110
+ }
111
+ ],
112
+ "name": "Initialized",
113
+ "type": "event"
114
+ },
115
+ {
116
+ "anonymous": false,
117
+ "inputs": [
118
+ {
119
+ "indexed": false,
120
+ "internalType": "Version",
121
+ "name": "version",
122
+ "type": "uint24"
123
+ },
124
+ {
125
+ "indexed": false,
126
+ "internalType": "address",
127
+ "name": "implementation",
128
+ "type": "address"
129
+ },
130
+ {
131
+ "indexed": false,
132
+ "internalType": "address",
133
+ "name": "activatedBy",
134
+ "type": "address"
135
+ }
136
+ ],
137
+ "name": "LogVersionableInitialized",
138
+ "type": "event"
139
+ },
140
+ {
141
+ "inputs": [],
142
+ "name": "NAME",
143
+ "outputs": [
144
+ {
145
+ "internalType": "string",
146
+ "name": "",
147
+ "type": "string"
148
+ }
149
+ ],
150
+ "stateMutability": "view",
151
+ "type": "function"
152
+ },
153
+ {
154
+ "inputs": [],
155
+ "name": "REGISTERABLE_LOCATION_V1",
156
+ "outputs": [
157
+ {
158
+ "internalType": "bytes32",
159
+ "name": "",
160
+ "type": "bytes32"
161
+ }
162
+ ],
163
+ "stateMutability": "view",
164
+ "type": "function"
165
+ },
166
+ {
167
+ "inputs": [],
168
+ "name": "getInitialInfo",
169
+ "outputs": [
170
+ {
171
+ "components": [
172
+ {
173
+ "internalType": "NftId",
174
+ "name": "nftId",
175
+ "type": "uint96"
176
+ },
177
+ {
178
+ "internalType": "NftId",
179
+ "name": "parentNftId",
180
+ "type": "uint96"
181
+ },
182
+ {
183
+ "internalType": "ObjectType",
184
+ "name": "objectType",
185
+ "type": "uint8"
186
+ },
187
+ {
188
+ "internalType": "bool",
189
+ "name": "isInterceptor",
190
+ "type": "bool"
191
+ },
192
+ {
193
+ "internalType": "address",
194
+ "name": "objectAddress",
195
+ "type": "address"
196
+ },
197
+ {
198
+ "internalType": "address",
199
+ "name": "initialOwner",
200
+ "type": "address"
201
+ },
202
+ {
203
+ "internalType": "bytes",
204
+ "name": "data",
205
+ "type": "bytes"
206
+ }
207
+ ],
208
+ "internalType": "struct IRegistry.ObjectInfo",
209
+ "name": "",
210
+ "type": "tuple"
211
+ },
212
+ {
213
+ "internalType": "bytes",
214
+ "name": "data",
215
+ "type": "bytes"
216
+ }
217
+ ],
218
+ "stateMutability": "view",
219
+ "type": "function"
220
+ },
221
+ {
222
+ "inputs": [],
223
+ "name": "getInitializedVersion",
224
+ "outputs": [
225
+ {
226
+ "internalType": "uint64",
227
+ "name": "",
228
+ "type": "uint64"
229
+ }
230
+ ],
231
+ "stateMutability": "view",
232
+ "type": "function"
233
+ },
234
+ {
235
+ "inputs": [],
236
+ "name": "getMajorVersion",
237
+ "outputs": [
238
+ {
239
+ "internalType": "VersionPart",
240
+ "name": "majorVersion",
241
+ "type": "uint8"
242
+ }
243
+ ],
244
+ "stateMutability": "view",
245
+ "type": "function"
246
+ },
247
+ {
248
+ "inputs": [],
249
+ "name": "getName",
250
+ "outputs": [
251
+ {
252
+ "internalType": "string",
253
+ "name": "name",
254
+ "type": "string"
255
+ }
256
+ ],
257
+ "stateMutability": "pure",
258
+ "type": "function"
259
+ },
260
+ {
261
+ "inputs": [],
262
+ "name": "getNftId",
263
+ "outputs": [
264
+ {
265
+ "internalType": "NftId",
266
+ "name": "",
267
+ "type": "uint96"
268
+ }
269
+ ],
270
+ "stateMutability": "view",
271
+ "type": "function"
272
+ },
273
+ {
274
+ "inputs": [],
275
+ "name": "getOwner",
276
+ "outputs": [
277
+ {
278
+ "internalType": "address",
279
+ "name": "",
280
+ "type": "address"
281
+ }
282
+ ],
283
+ "stateMutability": "view",
284
+ "type": "function"
285
+ },
286
+ {
287
+ "inputs": [],
288
+ "name": "getRegistry",
289
+ "outputs": [
290
+ {
291
+ "internalType": "contract IRegistry",
292
+ "name": "",
293
+ "type": "address"
294
+ }
295
+ ],
296
+ "stateMutability": "view",
297
+ "type": "function"
298
+ },
299
+ {
300
+ "inputs": [],
301
+ "name": "getRegistryService",
302
+ "outputs": [
303
+ {
304
+ "internalType": "contract IRegistryService",
305
+ "name": "",
306
+ "type": "address"
307
+ }
308
+ ],
309
+ "stateMutability": "view",
310
+ "type": "function"
311
+ },
312
+ {
313
+ "inputs": [],
314
+ "name": "getVersion",
315
+ "outputs": [
316
+ {
317
+ "internalType": "Version",
318
+ "name": "",
319
+ "type": "uint24"
320
+ }
321
+ ],
322
+ "stateMutability": "pure",
323
+ "type": "function"
324
+ },
325
+ {
326
+ "inputs": [
327
+ {
328
+ "internalType": "uint256",
329
+ "name": "idx",
330
+ "type": "uint256"
331
+ }
332
+ ],
333
+ "name": "getVersion",
334
+ "outputs": [
335
+ {
336
+ "internalType": "Version",
337
+ "name": "",
338
+ "type": "uint24"
339
+ }
340
+ ],
341
+ "stateMutability": "view",
342
+ "type": "function"
343
+ },
344
+ {
345
+ "inputs": [],
346
+ "name": "getVersionCount",
347
+ "outputs": [
348
+ {
349
+ "internalType": "uint256",
350
+ "name": "",
351
+ "type": "uint256"
352
+ }
353
+ ],
354
+ "stateMutability": "view",
355
+ "type": "function"
356
+ },
357
+ {
358
+ "inputs": [
359
+ {
360
+ "internalType": "Version",
361
+ "name": "_version",
362
+ "type": "uint24"
363
+ }
364
+ ],
365
+ "name": "getVersionInfo",
366
+ "outputs": [
367
+ {
368
+ "components": [
369
+ {
370
+ "internalType": "Version",
371
+ "name": "version",
372
+ "type": "uint24"
373
+ },
374
+ {
375
+ "internalType": "address",
376
+ "name": "implementation",
377
+ "type": "address"
378
+ },
379
+ {
380
+ "internalType": "address",
381
+ "name": "activatedBy",
382
+ "type": "address"
383
+ },
384
+ {
385
+ "internalType": "Timestamp",
386
+ "name": "activatedAt",
387
+ "type": "uint40"
388
+ },
389
+ {
390
+ "internalType": "Blocknumber",
391
+ "name": "activatedIn",
392
+ "type": "uint32"
393
+ }
394
+ ],
395
+ "internalType": "struct IVersionable.VersionInfo",
396
+ "name": "",
397
+ "type": "tuple"
398
+ }
399
+ ],
400
+ "stateMutability": "view",
401
+ "type": "function"
402
+ },
403
+ {
404
+ "inputs": [
405
+ {
406
+ "internalType": "address",
407
+ "name": "implementation",
408
+ "type": "address"
409
+ },
410
+ {
411
+ "internalType": "address",
412
+ "name": "activatedBy",
413
+ "type": "address"
414
+ },
415
+ {
416
+ "internalType": "bytes",
417
+ "name": "data",
418
+ "type": "bytes"
419
+ }
420
+ ],
421
+ "name": "initialize",
422
+ "outputs": [],
423
+ "stateMutability": "nonpayable",
424
+ "type": "function"
425
+ },
426
+ {
427
+ "inputs": [
428
+ {
429
+ "internalType": "Version",
430
+ "name": "_version",
431
+ "type": "uint24"
432
+ }
433
+ ],
434
+ "name": "isInitialized",
435
+ "outputs": [
436
+ {
437
+ "internalType": "bool",
438
+ "name": "",
439
+ "type": "bool"
440
+ }
441
+ ],
442
+ "stateMutability": "view",
443
+ "type": "function"
444
+ },
445
+ {
446
+ "inputs": [],
447
+ "name": "linkToRegisteredNftId",
448
+ "outputs": [],
449
+ "stateMutability": "nonpayable",
450
+ "type": "function"
451
+ },
452
+ {
453
+ "inputs": [
454
+ {
455
+ "internalType": "address",
456
+ "name": "distributionComponentAddress",
457
+ "type": "address"
458
+ }
459
+ ],
460
+ "name": "register",
461
+ "outputs": [
462
+ {
463
+ "internalType": "NftId",
464
+ "name": "distributionNftId",
465
+ "type": "uint96"
466
+ }
467
+ ],
468
+ "stateMutability": "nonpayable",
469
+ "type": "function"
470
+ },
471
+ {
472
+ "inputs": [
473
+ {
474
+ "components": [
475
+ {
476
+ "internalType": "UFixed",
477
+ "name": "fractionalFee",
478
+ "type": "uint256"
479
+ },
480
+ {
481
+ "internalType": "uint256",
482
+ "name": "fixedFee",
483
+ "type": "uint256"
484
+ }
485
+ ],
486
+ "internalType": "struct Fee",
487
+ "name": "distributionFee",
488
+ "type": "tuple"
489
+ }
490
+ ],
491
+ "name": "setFees",
492
+ "outputs": [],
493
+ "stateMutability": "nonpayable",
494
+ "type": "function"
495
+ },
496
+ {
497
+ "inputs": [
498
+ {
499
+ "internalType": "bytes4",
500
+ "name": "interfaceId",
501
+ "type": "bytes4"
502
+ }
503
+ ],
504
+ "name": "supportsInterface",
505
+ "outputs": [
506
+ {
507
+ "internalType": "bool",
508
+ "name": "",
509
+ "type": "bool"
510
+ }
511
+ ],
512
+ "stateMutability": "view",
513
+ "type": "function"
514
+ },
515
+ {
516
+ "inputs": [
517
+ {
518
+ "internalType": "address",
519
+ "name": "implementation",
520
+ "type": "address"
521
+ },
522
+ {
523
+ "internalType": "address",
524
+ "name": "activatedBy",
525
+ "type": "address"
526
+ },
527
+ {
528
+ "internalType": "bytes",
529
+ "name": "data",
530
+ "type": "bytes"
531
+ }
532
+ ],
533
+ "name": "upgrade",
534
+ "outputs": [],
535
+ "stateMutability": "nonpayable",
536
+ "type": "function"
537
+ }
538
+ ],
539
+ "bytecode": "0x60806040523480156200001157600080fd5b50620000546301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b600280546001600160a01b031916331790556200007062000076565b6200012a565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000900460ff1615620000c75760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b0390811614620001275780546001600160401b0319166001600160401b0390811782556040519081527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50565b6128d2806200013a6000396000f3fe608060405234801561001057600080fd5b50600436106101375760003560e01c80635ab1bd53116100b8578063a745e3df1161007c578063a745e3df1461042f578063b3c6501514610442578063b88da75914610462578063caf4e3d414610475578063cde749f41461047d578063cf7a1d771461049757600080fd5b80635ab1bd5314610391578063644c45e0146103b6578063893d20e8146103ce578063946dfcfe146103d6578063a3f4df7e146103fd57600080fd5b80631eff4b22116100ff5780631eff4b22146101f25780633f52c0f6146102275780634420e4861461023a5780634d459c90146102655780634f4213331461037e57600080fd5b806301ffc9a71461013c5780630d8e6e2c1461017e5780630fec111c1461019a578063138461e0146101b057806317d7de7c146101ba575b600080fd5b61016961014a366004611f27565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b6101866104aa565b60405162ffffff9091168152602001610175565b6101a2610534565b604051610175929190611fa8565b6101b86106ba565b005b604080518082019091526013815272446973747269627574696f6e5365727669636560681b60208201525b604051610175919061204f565b6102197f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b604051908152602001610175565b6101b86102353660046120f2565b6108dc565b61024d610248366004612139565b610a3f565b6040516001600160601b039091168152602001610175565b610321610273366004612167565b6040805160a08101825260008082526020820181905291810182905260608101829052608081019190915260008051602061287d83398151915262ffffff92831660009081526020918252604090819020815160a0810183528154958616815263010000009095046001600160a01b03908116938601939093526001015491821690840152600160a01b810464ffffffffff166060840152600160c81b900463ffffffff1660808301525090565b60408051825162ffffff1681526020808401516001600160a01b039081169183019190915283830151169181019190915260608083015164ffffffffff169082015260809182015163ffffffff169181019190915260a001610175565b61016961038c366004612167565b610d78565b6001546001600160a01b03165b6040516001600160a01b039091168152602001610175565b600154600160a01b90046001600160601b031661024d565b61039e610e2b565b7f4f61291a8ac3d020d0a7d919a76b8592aa88385744dee3f8b4f3873b969ed90154610219565b6101e560405180604001604052806013815260200172446973747269627574696f6e5365727669636560681b81525081565b6101b861043d3660046121ab565b610f44565b61044a61109e565b6040516001600160401b039091168152602001610175565b61018661047036600461224f565b6110bf565b61039e611110565b6104856111cb565b60405160ff9091168152602001610175565b6101b86104a53660046121ab565b61124e565b604051632efe011360e01b815260036004820152600060248201819052604482018190529073__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__90632efe011390606401602060405180830381865af415801561050b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061052f9190612268565b905090565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a082019290925260c0810191909152606060007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e001604052806105bb6001546001600160601b03600160a01b9091041690565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a001610603610e2b565b6001600160a01b0316815260200182600101805461062090612285565b80601f016020809104026020016040519081016040528092919081815260200182805461064c90612285565b80156106995780601f1061066e57610100808354040283529160200191610699565b820191906000526020600020905b81548152906001019060200180831161067c57829003601f168201915b50505050508152506040518060200160405280600081525092509250509091565b6001546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015273__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af415801561071c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061074091906122d4565b15610787576001546040516316322c0f60e31b81526001600160a01b0382166004820152600160a01b9091046001600160601b031660248201526044015b60405180910390fd5b6001546001600160a01b03166107b05760405163cf29926160e01b815260040160405180910390fd5b60015460405163c3c5a54760e01b81523060048201819052916001600160a01b03169063c3c5a54790602401602060405180830381865afa1580156107f9573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061081d91906122d4565b610845576040516372657a5160e01b81526001600160a01b038216600482015260240161077e565b600154604051636939560f60e11b81526001600160a01b0383811660048301529091169063d272ac1e90602401602060405180830381865afa15801561088f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108b39190612306565b600160146101000a8154816001600160601b0302191690836001600160601b0316021790555050565b6000806108e96078611357565b915091506000816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa15801561092d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109519190612321565b8351604051639ad69c6760e01b81526001600160601b0382166004820152919250906000906001600160a01b03841690639ad69c679060240160c060405180830381865afa1580156109a7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109cb9190612349565b60408181018890525163bd5947e360e01b81529091506001600160a01b0385169063bd5947e390610a05908590859060ff90600401612453565b600060405180830381600087803b158015610a1f57600080fd5b505af1158015610a33573d6000803e3d6000fd5b50505050505050505050565b60008033905060008390506000816001600160a01b031663de7b5d146040518163ffffffff1660e01b8152600401602060405180830381865afa158015610a8a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610aae9190612321565b60045490915081906001600160a01b0316639c12c9c785610acd611648565b846001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b0b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b2f9190612306565b6040516001600160e01b031960e086901b1681526001600160a01b0390931660048401526001600160401b0390911660248301526001600160601b03166044820152606401602060405180830381865afa158015610b91573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bb591906122d4565b610c135760405162461bcd60e51b815260206004820152602960248201527f4552524f523a4449532d3030313a4e4f545f444953545249425554494f4e5f4f604482015268574e45525f524f4c4560b81b606482015260840161077e565b6000610c1d611110565b604051638fbc2d8160e01b81526001600160a01b0386811660048301528781166024830152919250600091831690638fbc2d81906044016000604051808303816000875af1158015610c73573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610c9b9190810190612596565b509050806000015196506000856001600160a01b0316638e7ff97e6040518163ffffffff1660e01b815260040160c060405180830381865afa158015610ce5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d099190612349565b604051630b24cf5f60e01b81529091506001600160a01b03861690630b24cf5f90610d3a908b9085906004016125f9565b600060405180830381600087803b158015610d5457600080fd5b505af1158015610d68573d6000803e3d6000fd5b5050505050505050505050919050565b60008060008051602061287d83398151915262ffffff84166000908152602091909152604090819020600101549051631bbffab160e21b8152600160c81b90910463ffffffff16600482015273__$5f476116ae21c5294e0c0761c07efa7e1c$__90636effeac490602401602060405180830381865af4158015610e00573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e249190612616565b1192915050565b6001546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015260009073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015610e90573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610eb491906122d4565b15610f3457600154604051631c5da14d60e11b8152600160a01b82046001600160601b031660048201526001600160a01b03909116906338bb429a90602401602060405180830381865afa158015610f10573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061052f9190612321565b506002546001600160a01b031690565b73__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__63a123b37c610f666104aa565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af4158015610fa6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fca9190612644565b60008051602061285d8339815191528054600160401b900460ff1680610ffd575080546001600160401b03808416911610155b1561101b5760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b17815561104685856116bf565b61104f8361195e565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020015b60405180910390a15050505050565b600061052f60008051602061285d833981519152546001600160401b031690565b600060008051602061287d83398151915260010182815481106110e4576110e4612661565b90600052602060002090600a91828204019190066003029054906101000a900462ffffff169050919050565b6000806111256001546001600160a01b031690565b6001600160a01b031663a3bcd81d61113b6111cb565b604080516001600160e01b031960e085901b1681526004810191909152600f60448201526e52656769737472795365727669636560881b606482015260ff9091166024820152608401602060405180830381865afa1580156111a1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111c59190612321565b92915050565b60006111d56104aa565b60405163c9e66e2960e01b815262ffffff909116600482015273__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__9063c9e66e2990602401602060405180830381865af415801561122a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061052f9190612677565b60008051602061285d8339815191528054600160401b810460ff1615906001600160401b03166000811580156112815750825b90506000826001600160401b0316600114801561129d5750303b155b9050811580156112ab575080155b156112c95760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff1916600117855583156112f357845460ff60401b1916600160401b1785555b6112fd88886116bf565b6113078787611966565b831561134d57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b5050505050505050565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a082019290925260c0810191909152600154604051636939560f60e11b815233600482015260009182916001600160a01b039091169063d272ac1e90602401602060405180830381865afa1580156113df573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114039190612306565b6040516330b8415f60e01b81526001600160601b038216600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af415801561145e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061148291906122d4565b6114ce5760405162461bcd60e51b815260206004820152601760248201527f4552524f525f434f4d504f4e454e545f554e4b4e4f574e000000000000000000604482015260640161077e565b6001546001600160a01b03166040516305247a1760e51b81526001600160601b03831660048201526001600160a01b03919091169063a48f42e090602401600060405180830381865afa158015611529573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526115519190810190612694565b925061156783604001518560ff90811691161490565b6115a95760405162461bcd60e51b815260206004820152601360248201527213d0929150d517d516541157d2539590531251606a1b604482015260640161077e565b60006115bd6001546001600160a01b031690565b60208501516040516305247a1760e51b81526001600160601b0390911660048201526001600160a01b03919091169063a48f42e090602401600060405180830381865afa158015611612573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261163a9190810190612694565b608001519395939450505050565b6040516368aebf7b60e01b81526064600482015260009073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__906368aebf7b90602401602060405180830381865af415801561169b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061052f9190612644565b6116c7611b75565b60008051602061287d83398151915260006116f760008051602061285d833981519152546001600160401b031690565b905060006117036104aa565b9050816001600160401b03166001036117305760028301805462ffffff191662ffffff831617905561177e565b600283015462ffffff9081169082161161177e5760405162461bcd60e51b815260206004820152600f60248201526e24a72b20a624a2102b22a929a4a7a760891b604482015260640161077e565b6001808401805491820181556000908152602090819020600a808404909101805462ffffff808716600394909606939093026101000a858102930219169190911790556040805160a0810182529283526001600160a01b038089168484015287168382015280516356db0c1960e11b81529051606084019273__$d53880c81dc91c20799140d711e5ab8718$__9263adb6183292600480830193928290030181865af4158015611832573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061185691906126c8565b64ffffffffff1681526020014363ffffffff90811690915262ffffff8084166000908152602087815260409182902085518154928701516001600160a01b039081166301000000026001600160b81b0319909416919095161791909117815584820151600190910180546060870151608090970151909516600160c81b0263ffffffff60c81b1964ffffffffff909716600160a01b026001600160c81b031990961692909416919091179390931793909316179055517fad0a0fc10465a8dd9da3ad5f43e1a7fff4b4578551c76f0ae8deb844f0d0bf689061108f9083908890889062ffffff9390931683526001600160a01b03918216602084015216604082015260600190565b610137611b75565b60008051602061285d8339815191528054600160401b810460ff1615906001600160401b03166000811580156119995750825b90506000826001600160401b031660011480156119b55750303b155b9050811580156119c3575080155b156119e15760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315611a0b57845460ff60401b1916600160401b1785555b600086806020019051810190611a2191906126ef565b600380546001600160a01b039093166001600160a01b03199093168317905591508063a3bcd81d611a506111cb565b604080516001600160e01b031960e085901b1681526004810191909152600f60448201526e496e7374616e63655365727669636560881b606482015260ff9091166024820152608401602060405180830381865afa158015611ab6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ada9190612321565b600480546001600160a01b0319166001600160a01b03928316179055600354611b04911683611bae565b611b14631b4612f160e31b611c3f565b611b24631fa9607b60e11b611c3f565b50508315611b6c57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50505050505050565b60008051602061285d83398151915254600160401b900460ff16611bac57604051631afcd79f60e31b815260040160405180910390fd5b565b6000611be0604080518082019091526013815272446973747269627574696f6e5365727669636560681b602082015290565b611be86111cb565b604051602001611bf9929190612729565b60405160208183030381529060405290506000611c1584611c64565b90506000611c288583603c848888611ccf565b611c38631b4612f160e31b611c3f565b5050505050565b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b604051636939560f60e11b81526001600160a01b0382166004820181905260009163d272ac1e90602401602060405180830381865afa158015611cab573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111c59190612306565b611d106301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b611d1a8287611d9b565b60007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0388166cffffffffffffffffffffffffff1990911617600160601b60ff8816021760ff60681b1916600160681b86151502178155905060018101611d8a838261279d565b50611b6c6303fb044760e21b611c3f565b600280546001600160a01b0319166001600160a01b038416179055611dbf81611dc3565b5050565b6001546001600160a01b031615611dfc5760015460405163fcdbf2d960e01b81526001600160a01b03909116600482015260240161077e565b6001600160a01b038116611e235760405163f5c4d07d60e01b815260040160405180910390fd5b806001600160a01b03163b600003611e595760405163fdeac91f60e01b81526001600160a01b038216600482015260240161077e565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b815263e14a543960e01b60048201526301ffc9a790602401602060405180830381865afa925050508015611ed3575060408051601f3d908101601f19168201909252611ed0918101906122d4565b60015b611efb5760405163fdeac91f60e01b81526001600160a01b038216600482015260240161077e565b80611dbf5760405163fdeac91f60e01b81526001600160a01b038316600482015260240161077e565b50565b600060208284031215611f3957600080fd5b81356001600160e01b031981168114611f5157600080fd5b9392505050565b60005b83811015611f73578181015183820152602001611f5b565b50506000910152565b60008151808452611f94816020860160208601611f58565b601f01601f19169290920160200192915050565b6040815260006001600160601b038085511660408401528060208601511660608401525060ff60408501511660808301526060840151611fec60a084018215159052565b5060808401516001600160a01b03811660c08401525060a08401516001600160a01b03811660e08401525060c084015160e0610100840152612032610120840182611f7c565b905082810360208401526120468185611f7c565b95945050505050565b602081526000611f516020830184611f7c565b634e487b7160e01b600052604160045260246000fd5b604080519081016001600160401b038111828210171561209a5761209a612062565b60405290565b60405160e081016001600160401b038111828210171561209a5761209a612062565b604051601f8201601f191681016001600160401b03811182821017156120ea576120ea612062565b604052919050565b60006040828403121561210457600080fd5b61210c612078565b82358152602083013560208201528091505092915050565b6001600160a01b0381168114611f2457600080fd5b60006020828403121561214b57600080fd5b8135611f5181612124565b62ffffff81168114611f2457600080fd5b60006020828403121561217957600080fd5b8135611f5181612156565b60006001600160401b0382111561219d5761219d612062565b50601f01601f191660200190565b6000806000606084860312156121c057600080fd5b83356121cb81612124565b925060208401356121db81612124565b915060408401356001600160401b038111156121f657600080fd5b8401601f8101861361220757600080fd5b803561221a61221582612184565b6120c2565b81815287602083850101111561222f57600080fd5b816020840160208301376000602083830101528093505050509250925092565b60006020828403121561226157600080fd5b5035919050565b60006020828403121561227a57600080fd5b8151611f5181612156565b600181811c9082168061229957607f821691505b6020821081036122b957634e487b7160e01b600052602260045260246000fd5b50919050565b805180151581146122cf57600080fd5b919050565b6000602082840312156122e657600080fd5b611f51826122bf565b80516001600160601b03811681146122cf57600080fd5b60006020828403121561231857600080fd5b611f51826122ef565b60006020828403121561233357600080fd5b8151611f5181612124565b80516122cf81612124565b600081830360c081121561235c57600080fd5b60405160a081018181106001600160401b038211171561237e5761237e612062565b60405261238a846122ef565b8152602084015161239a81612124565b60208201526040603f19830112156123b157600080fd5b6123b9612078565b915060408401518252606084015160208301528160408201526123de608085016122bf565b60608201526123ef60a0850161233e565b6080820152949350505050565b6001600160601b038151168252602081015160018060a01b0380821660208501526040830151915081516040850152602082015160608501526060830151151560808501528060808401511660a085015250505050565b6001600160601b0384168152610100810161247160208301856123fc565b60ff831660e0830152949350505050565b60ff81168114611f2457600080fd5b80516122cf81612482565b600082601f8301126124ad57600080fd5b81516124bb61221582612184565b8181528460208386010111156124d057600080fd5b6124e1826020830160208701611f58565b949350505050565b600060e082840312156124fb57600080fd5b6125036120a0565b905061250e826122ef565b815261251c602083016122ef565b602082015261252d60408301612491565b604082015261253e606083016122bf565b606082015261254f6080830161233e565b608082015261256060a0830161233e565b60a082015260c08201516001600160401b0381111561257e57600080fd5b61258a8482850161249c565b60c08301525092915050565b600080604083850312156125a957600080fd5b82516001600160401b03808211156125c057600080fd5b6125cc868387016124e9565b935060208501519150808211156125e257600080fd5b506125ef8582860161249c565b9150509250929050565b6001600160601b038316815260e08101611f5160208301846123fc565b60006020828403121561262857600080fd5b5051919050565b6001600160401b0381168114611f2457600080fd5b60006020828403121561265657600080fd5b8151611f518161262f565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561268957600080fd5b8151611f5181612482565b6000602082840312156126a657600080fd5b81516001600160401b038111156126bc57600080fd5b6124e1848285016124e9565b6000602082840312156126da57600080fd5b815164ffffffffff81168114611f5157600080fd5b6000806040838503121561270257600080fd5b825161270d81612124565b602084015190925061271e81612124565b809150509250929050565b60408152600061273c6040830185611f7c565b905060ff831660208301529392505050565b601f82111561279857600081815260208120601f850160051c810160208610156127755750805b601f850160051c820191505b8181101561279457828155600101612781565b5050505b505050565b81516001600160401b038111156127b6576127b6612062565b6127ca816127c48454612285565b8461274e565b602080601f8311600181146127ff57600084156127e75750858301515b600019600386901b1c1916600185901b178555612794565b600085815260208120601f198616915b8281101561282e5788860151825594840194600190910190840161280f565b508582101561284c5787850151600019600388901b60f8161c191681555b5050505050600190811b0190555056fef0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a004f61291a8ac3d020d0a7d919a76b8592aa88385744dee3f8b4f3873b969ed900a2646970667358221220dff1cb24d096b3ecf420ca653472b75b73fc2502fa91ad56e3535ef650bd22fb64736f6c63430008140033",
540
+ "deployedBytecode": "0x608060405234801561001057600080fd5b50600436106101375760003560e01c80635ab1bd53116100b8578063a745e3df1161007c578063a745e3df1461042f578063b3c6501514610442578063b88da75914610462578063caf4e3d414610475578063cde749f41461047d578063cf7a1d771461049757600080fd5b80635ab1bd5314610391578063644c45e0146103b6578063893d20e8146103ce578063946dfcfe146103d6578063a3f4df7e146103fd57600080fd5b80631eff4b22116100ff5780631eff4b22146101f25780633f52c0f6146102275780634420e4861461023a5780634d459c90146102655780634f4213331461037e57600080fd5b806301ffc9a71461013c5780630d8e6e2c1461017e5780630fec111c1461019a578063138461e0146101b057806317d7de7c146101ba575b600080fd5b61016961014a366004611f27565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b6101866104aa565b60405162ffffff9091168152602001610175565b6101a2610534565b604051610175929190611fa8565b6101b86106ba565b005b604080518082019091526013815272446973747269627574696f6e5365727669636560681b60208201525b604051610175919061204f565b6102197f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b604051908152602001610175565b6101b86102353660046120f2565b6108dc565b61024d610248366004612139565b610a3f565b6040516001600160601b039091168152602001610175565b610321610273366004612167565b6040805160a08101825260008082526020820181905291810182905260608101829052608081019190915260008051602061287d83398151915262ffffff92831660009081526020918252604090819020815160a0810183528154958616815263010000009095046001600160a01b03908116938601939093526001015491821690840152600160a01b810464ffffffffff166060840152600160c81b900463ffffffff1660808301525090565b60408051825162ffffff1681526020808401516001600160a01b039081169183019190915283830151169181019190915260608083015164ffffffffff169082015260809182015163ffffffff169181019190915260a001610175565b61016961038c366004612167565b610d78565b6001546001600160a01b03165b6040516001600160a01b039091168152602001610175565b600154600160a01b90046001600160601b031661024d565b61039e610e2b565b7f4f61291a8ac3d020d0a7d919a76b8592aa88385744dee3f8b4f3873b969ed90154610219565b6101e560405180604001604052806013815260200172446973747269627574696f6e5365727669636560681b81525081565b6101b861043d3660046121ab565b610f44565b61044a61109e565b6040516001600160401b039091168152602001610175565b61018661047036600461224f565b6110bf565b61039e611110565b6104856111cb565b60405160ff9091168152602001610175565b6101b86104a53660046121ab565b61124e565b604051632efe011360e01b815260036004820152600060248201819052604482018190529073__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__90632efe011390606401602060405180830381865af415801561050b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061052f9190612268565b905090565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a082019290925260c0810191909152606060007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e001604052806105bb6001546001600160601b03600160a01b9091041690565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a001610603610e2b565b6001600160a01b0316815260200182600101805461062090612285565b80601f016020809104026020016040519081016040528092919081815260200182805461064c90612285565b80156106995780601f1061066e57610100808354040283529160200191610699565b820191906000526020600020905b81548152906001019060200180831161067c57829003601f168201915b50505050508152506040518060200160405280600081525092509250509091565b6001546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015273__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af415801561071c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061074091906122d4565b15610787576001546040516316322c0f60e31b81526001600160a01b0382166004820152600160a01b9091046001600160601b031660248201526044015b60405180910390fd5b6001546001600160a01b03166107b05760405163cf29926160e01b815260040160405180910390fd5b60015460405163c3c5a54760e01b81523060048201819052916001600160a01b03169063c3c5a54790602401602060405180830381865afa1580156107f9573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061081d91906122d4565b610845576040516372657a5160e01b81526001600160a01b038216600482015260240161077e565b600154604051636939560f60e11b81526001600160a01b0383811660048301529091169063d272ac1e90602401602060405180830381865afa15801561088f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108b39190612306565b600160146101000a8154816001600160601b0302191690836001600160601b0316021790555050565b6000806108e96078611357565b915091506000816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa15801561092d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109519190612321565b8351604051639ad69c6760e01b81526001600160601b0382166004820152919250906000906001600160a01b03841690639ad69c679060240160c060405180830381865afa1580156109a7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109cb9190612349565b60408181018890525163bd5947e360e01b81529091506001600160a01b0385169063bd5947e390610a05908590859060ff90600401612453565b600060405180830381600087803b158015610a1f57600080fd5b505af1158015610a33573d6000803e3d6000fd5b50505050505050505050565b60008033905060008390506000816001600160a01b031663de7b5d146040518163ffffffff1660e01b8152600401602060405180830381865afa158015610a8a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610aae9190612321565b60045490915081906001600160a01b0316639c12c9c785610acd611648565b846001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b0b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b2f9190612306565b6040516001600160e01b031960e086901b1681526001600160a01b0390931660048401526001600160401b0390911660248301526001600160601b03166044820152606401602060405180830381865afa158015610b91573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bb591906122d4565b610c135760405162461bcd60e51b815260206004820152602960248201527f4552524f523a4449532d3030313a4e4f545f444953545249425554494f4e5f4f604482015268574e45525f524f4c4560b81b606482015260840161077e565b6000610c1d611110565b604051638fbc2d8160e01b81526001600160a01b0386811660048301528781166024830152919250600091831690638fbc2d81906044016000604051808303816000875af1158015610c73573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610c9b9190810190612596565b509050806000015196506000856001600160a01b0316638e7ff97e6040518163ffffffff1660e01b815260040160c060405180830381865afa158015610ce5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d099190612349565b604051630b24cf5f60e01b81529091506001600160a01b03861690630b24cf5f90610d3a908b9085906004016125f9565b600060405180830381600087803b158015610d5457600080fd5b505af1158015610d68573d6000803e3d6000fd5b5050505050505050505050919050565b60008060008051602061287d83398151915262ffffff84166000908152602091909152604090819020600101549051631bbffab160e21b8152600160c81b90910463ffffffff16600482015273__$5f476116ae21c5294e0c0761c07efa7e1c$__90636effeac490602401602060405180830381865af4158015610e00573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e249190612616565b1192915050565b6001546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015260009073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015610e90573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610eb491906122d4565b15610f3457600154604051631c5da14d60e11b8152600160a01b82046001600160601b031660048201526001600160a01b03909116906338bb429a90602401602060405180830381865afa158015610f10573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061052f9190612321565b506002546001600160a01b031690565b73__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__63a123b37c610f666104aa565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af4158015610fa6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fca9190612644565b60008051602061285d8339815191528054600160401b900460ff1680610ffd575080546001600160401b03808416911610155b1561101b5760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b17815561104685856116bf565b61104f8361195e565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020015b60405180910390a15050505050565b600061052f60008051602061285d833981519152546001600160401b031690565b600060008051602061287d83398151915260010182815481106110e4576110e4612661565b90600052602060002090600a91828204019190066003029054906101000a900462ffffff169050919050565b6000806111256001546001600160a01b031690565b6001600160a01b031663a3bcd81d61113b6111cb565b604080516001600160e01b031960e085901b1681526004810191909152600f60448201526e52656769737472795365727669636560881b606482015260ff9091166024820152608401602060405180830381865afa1580156111a1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111c59190612321565b92915050565b60006111d56104aa565b60405163c9e66e2960e01b815262ffffff909116600482015273__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__9063c9e66e2990602401602060405180830381865af415801561122a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061052f9190612677565b60008051602061285d8339815191528054600160401b810460ff1615906001600160401b03166000811580156112815750825b90506000826001600160401b0316600114801561129d5750303b155b9050811580156112ab575080155b156112c95760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff1916600117855583156112f357845460ff60401b1916600160401b1785555b6112fd88886116bf565b6113078787611966565b831561134d57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b5050505050505050565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a082019290925260c0810191909152600154604051636939560f60e11b815233600482015260009182916001600160a01b039091169063d272ac1e90602401602060405180830381865afa1580156113df573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114039190612306565b6040516330b8415f60e01b81526001600160601b038216600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af415801561145e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061148291906122d4565b6114ce5760405162461bcd60e51b815260206004820152601760248201527f4552524f525f434f4d504f4e454e545f554e4b4e4f574e000000000000000000604482015260640161077e565b6001546001600160a01b03166040516305247a1760e51b81526001600160601b03831660048201526001600160a01b03919091169063a48f42e090602401600060405180830381865afa158015611529573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526115519190810190612694565b925061156783604001518560ff90811691161490565b6115a95760405162461bcd60e51b815260206004820152601360248201527213d0929150d517d516541157d2539590531251606a1b604482015260640161077e565b60006115bd6001546001600160a01b031690565b60208501516040516305247a1760e51b81526001600160601b0390911660048201526001600160a01b03919091169063a48f42e090602401600060405180830381865afa158015611612573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261163a9190810190612694565b608001519395939450505050565b6040516368aebf7b60e01b81526064600482015260009073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__906368aebf7b90602401602060405180830381865af415801561169b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061052f9190612644565b6116c7611b75565b60008051602061287d83398151915260006116f760008051602061285d833981519152546001600160401b031690565b905060006117036104aa565b9050816001600160401b03166001036117305760028301805462ffffff191662ffffff831617905561177e565b600283015462ffffff9081169082161161177e5760405162461bcd60e51b815260206004820152600f60248201526e24a72b20a624a2102b22a929a4a7a760891b604482015260640161077e565b6001808401805491820181556000908152602090819020600a808404909101805462ffffff808716600394909606939093026101000a858102930219169190911790556040805160a0810182529283526001600160a01b038089168484015287168382015280516356db0c1960e11b81529051606084019273__$d53880c81dc91c20799140d711e5ab8718$__9263adb6183292600480830193928290030181865af4158015611832573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061185691906126c8565b64ffffffffff1681526020014363ffffffff90811690915262ffffff8084166000908152602087815260409182902085518154928701516001600160a01b039081166301000000026001600160b81b0319909416919095161791909117815584820151600190910180546060870151608090970151909516600160c81b0263ffffffff60c81b1964ffffffffff909716600160a01b026001600160c81b031990961692909416919091179390931793909316179055517fad0a0fc10465a8dd9da3ad5f43e1a7fff4b4578551c76f0ae8deb844f0d0bf689061108f9083908890889062ffffff9390931683526001600160a01b03918216602084015216604082015260600190565b610137611b75565b60008051602061285d8339815191528054600160401b810460ff1615906001600160401b03166000811580156119995750825b90506000826001600160401b031660011480156119b55750303b155b9050811580156119c3575080155b156119e15760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315611a0b57845460ff60401b1916600160401b1785555b600086806020019051810190611a2191906126ef565b600380546001600160a01b039093166001600160a01b03199093168317905591508063a3bcd81d611a506111cb565b604080516001600160e01b031960e085901b1681526004810191909152600f60448201526e496e7374616e63655365727669636560881b606482015260ff9091166024820152608401602060405180830381865afa158015611ab6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ada9190612321565b600480546001600160a01b0319166001600160a01b03928316179055600354611b04911683611bae565b611b14631b4612f160e31b611c3f565b611b24631fa9607b60e11b611c3f565b50508315611b6c57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50505050505050565b60008051602061285d83398151915254600160401b900460ff16611bac57604051631afcd79f60e31b815260040160405180910390fd5b565b6000611be0604080518082019091526013815272446973747269627574696f6e5365727669636560681b602082015290565b611be86111cb565b604051602001611bf9929190612729565b60405160208183030381529060405290506000611c1584611c64565b90506000611c288583603c848888611ccf565b611c38631b4612f160e31b611c3f565b5050505050565b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b604051636939560f60e11b81526001600160a01b0382166004820181905260009163d272ac1e90602401602060405180830381865afa158015611cab573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111c59190612306565b611d106301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b611d1a8287611d9b565b60007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0388166cffffffffffffffffffffffffff1990911617600160601b60ff8816021760ff60681b1916600160681b86151502178155905060018101611d8a838261279d565b50611b6c6303fb044760e21b611c3f565b600280546001600160a01b0319166001600160a01b038416179055611dbf81611dc3565b5050565b6001546001600160a01b031615611dfc5760015460405163fcdbf2d960e01b81526001600160a01b03909116600482015260240161077e565b6001600160a01b038116611e235760405163f5c4d07d60e01b815260040160405180910390fd5b806001600160a01b03163b600003611e595760405163fdeac91f60e01b81526001600160a01b038216600482015260240161077e565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b815263e14a543960e01b60048201526301ffc9a790602401602060405180830381865afa925050508015611ed3575060408051601f3d908101601f19168201909252611ed0918101906122d4565b60015b611efb5760405163fdeac91f60e01b81526001600160a01b038216600482015260240161077e565b80611dbf5760405163fdeac91f60e01b81526001600160a01b038316600482015260240161077e565b50565b600060208284031215611f3957600080fd5b81356001600160e01b031981168114611f5157600080fd5b9392505050565b60005b83811015611f73578181015183820152602001611f5b565b50506000910152565b60008151808452611f94816020860160208601611f58565b601f01601f19169290920160200192915050565b6040815260006001600160601b038085511660408401528060208601511660608401525060ff60408501511660808301526060840151611fec60a084018215159052565b5060808401516001600160a01b03811660c08401525060a08401516001600160a01b03811660e08401525060c084015160e0610100840152612032610120840182611f7c565b905082810360208401526120468185611f7c565b95945050505050565b602081526000611f516020830184611f7c565b634e487b7160e01b600052604160045260246000fd5b604080519081016001600160401b038111828210171561209a5761209a612062565b60405290565b60405160e081016001600160401b038111828210171561209a5761209a612062565b604051601f8201601f191681016001600160401b03811182821017156120ea576120ea612062565b604052919050565b60006040828403121561210457600080fd5b61210c612078565b82358152602083013560208201528091505092915050565b6001600160a01b0381168114611f2457600080fd5b60006020828403121561214b57600080fd5b8135611f5181612124565b62ffffff81168114611f2457600080fd5b60006020828403121561217957600080fd5b8135611f5181612156565b60006001600160401b0382111561219d5761219d612062565b50601f01601f191660200190565b6000806000606084860312156121c057600080fd5b83356121cb81612124565b925060208401356121db81612124565b915060408401356001600160401b038111156121f657600080fd5b8401601f8101861361220757600080fd5b803561221a61221582612184565b6120c2565b81815287602083850101111561222f57600080fd5b816020840160208301376000602083830101528093505050509250925092565b60006020828403121561226157600080fd5b5035919050565b60006020828403121561227a57600080fd5b8151611f5181612156565b600181811c9082168061229957607f821691505b6020821081036122b957634e487b7160e01b600052602260045260246000fd5b50919050565b805180151581146122cf57600080fd5b919050565b6000602082840312156122e657600080fd5b611f51826122bf565b80516001600160601b03811681146122cf57600080fd5b60006020828403121561231857600080fd5b611f51826122ef565b60006020828403121561233357600080fd5b8151611f5181612124565b80516122cf81612124565b600081830360c081121561235c57600080fd5b60405160a081018181106001600160401b038211171561237e5761237e612062565b60405261238a846122ef565b8152602084015161239a81612124565b60208201526040603f19830112156123b157600080fd5b6123b9612078565b915060408401518252606084015160208301528160408201526123de608085016122bf565b60608201526123ef60a0850161233e565b6080820152949350505050565b6001600160601b038151168252602081015160018060a01b0380821660208501526040830151915081516040850152602082015160608501526060830151151560808501528060808401511660a085015250505050565b6001600160601b0384168152610100810161247160208301856123fc565b60ff831660e0830152949350505050565b60ff81168114611f2457600080fd5b80516122cf81612482565b600082601f8301126124ad57600080fd5b81516124bb61221582612184565b8181528460208386010111156124d057600080fd5b6124e1826020830160208701611f58565b949350505050565b600060e082840312156124fb57600080fd5b6125036120a0565b905061250e826122ef565b815261251c602083016122ef565b602082015261252d60408301612491565b604082015261253e606083016122bf565b606082015261254f6080830161233e565b608082015261256060a0830161233e565b60a082015260c08201516001600160401b0381111561257e57600080fd5b61258a8482850161249c565b60c08301525092915050565b600080604083850312156125a957600080fd5b82516001600160401b03808211156125c057600080fd5b6125cc868387016124e9565b935060208501519150808211156125e257600080fd5b506125ef8582860161249c565b9150509250929050565b6001600160601b038316815260e08101611f5160208301846123fc565b60006020828403121561262857600080fd5b5051919050565b6001600160401b0381168114611f2457600080fd5b60006020828403121561265657600080fd5b8151611f518161262f565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561268957600080fd5b8151611f5181612482565b6000602082840312156126a657600080fd5b81516001600160401b038111156126bc57600080fd5b6124e1848285016124e9565b6000602082840312156126da57600080fd5b815164ffffffffff81168114611f5157600080fd5b6000806040838503121561270257600080fd5b825161270d81612124565b602084015190925061271e81612124565b809150509250929050565b60408152600061273c6040830185611f7c565b905060ff831660208301529392505050565b601f82111561279857600081815260208120601f850160051c810160208610156127755750805b601f850160051c820191505b8181101561279457828155600101612781565b5050505b505050565b81516001600160401b038111156127b6576127b6612062565b6127ca816127c48454612285565b8461274e565b602080601f8311600181146127ff57600084156127e75750858301515b600019600386901b1c1916600185901b178555612794565b600085815260208120601f198616915b8281101561282e5788860151825594840194600190910190840161280f565b508582101561284c5787850151600019600388901b60f8161c191681555b5050505050600190811b0190555056fef0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a004f61291a8ac3d020d0a7d919a76b8592aa88385744dee3f8b4f3873b969ed900a2646970667358221220dff1cb24d096b3ecf420ca653472b75b73fc2502fa91ad56e3535ef650bd22fb64736f6c63430008140033",
541
+ "linkReferences": {
542
+ "contracts/types/Blocknumber.sol": {
543
+ "BlocknumberLib": [
544
+ {
545
+ "length": 20,
546
+ "start": 3840
547
+ }
548
+ ]
549
+ },
550
+ "contracts/types/NftId.sol": {
551
+ "NftIdLib": [
552
+ {
553
+ "length": 20,
554
+ "start": 2076
555
+ },
556
+ {
557
+ "length": 20,
558
+ "start": 3984
559
+ },
560
+ {
561
+ "length": 20,
562
+ "start": 5470
563
+ }
564
+ ]
565
+ },
566
+ "contracts/types/RoleId.sol": {
567
+ "RoleIdLib": [
568
+ {
569
+ "length": 20,
570
+ "start": 6043
571
+ }
572
+ ]
573
+ },
574
+ "contracts/types/Timestamp.sol": {
575
+ "TimestampLib": [
576
+ {
577
+ "length": 20,
578
+ "start": 6450
579
+ }
580
+ ]
581
+ },
582
+ "contracts/types/Version.sol": {
583
+ "VersionLib": [
584
+ {
585
+ "length": 20,
586
+ "start": 1547
587
+ },
588
+ {
589
+ "length": 20,
590
+ "start": 4224
591
+ },
592
+ {
593
+ "length": 20,
594
+ "start": 4906
595
+ }
596
+ ]
597
+ }
598
+ },
599
+ "deployedLinkReferences": {
600
+ "contracts/types/Blocknumber.sol": {
601
+ "BlocknumberLib": [
602
+ {
603
+ "length": 20,
604
+ "start": 3526
605
+ }
606
+ ]
607
+ },
608
+ "contracts/types/NftId.sol": {
609
+ "NftIdLib": [
610
+ {
611
+ "length": 20,
612
+ "start": 1762
613
+ },
614
+ {
615
+ "length": 20,
616
+ "start": 3670
617
+ },
618
+ {
619
+ "length": 20,
620
+ "start": 5156
621
+ }
622
+ ]
623
+ },
624
+ "contracts/types/RoleId.sol": {
625
+ "RoleIdLib": [
626
+ {
627
+ "length": 20,
628
+ "start": 5729
629
+ }
630
+ ]
631
+ },
632
+ "contracts/types/Timestamp.sol": {
633
+ "TimestampLib": [
634
+ {
635
+ "length": 20,
636
+ "start": 6136
637
+ }
638
+ ]
639
+ },
640
+ "contracts/types/Version.sol": {
641
+ "VersionLib": [
642
+ {
643
+ "length": 20,
644
+ "start": 1233
645
+ },
646
+ {
647
+ "length": 20,
648
+ "start": 3910
649
+ },
650
+ {
651
+ "length": 20,
652
+ "start": 4592
653
+ }
654
+ ]
655
+ }
656
+ }
657
+ }