@etherisc/gif-next 0.0.2-f99f1d2-109 → 0.0.2-fb8d07b-779

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