@etherisc/gif-next 0.0.2-eb7397c → 0.0.2-eb98db7-932

Sign up to get free protection for your applications and to get access to all the features.
Files changed (423) hide show
  1. package/README.md +436 -8
  2. package/artifacts/contracts/components/Component.sol/Component.dbg.json +1 -1
  3. package/artifacts/contracts/components/Component.sol/Component.json +705 -31
  4. package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +4 -0
  5. package/artifacts/contracts/components/Distribution.sol/Distribution.json +1346 -0
  6. package/artifacts/contracts/components/IComponent.sol/IComponent.dbg.json +4 -0
  7. package/artifacts/contracts/{registry/IChainNft.sol/IChainNft.json → components/IComponent.sol/IComponent.json} +284 -223
  8. package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +4 -0
  9. package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.json +900 -0
  10. package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +4 -0
  11. package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +887 -0
  12. package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +4 -0
  13. package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +806 -0
  14. package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +1 -1
  15. package/artifacts/contracts/components/Pool.sol/Pool.json +1184 -75
  16. package/artifacts/contracts/components/Product.sol/Product.dbg.json +1 -1
  17. package/artifacts/contracts/components/Product.sol/Product.json +1105 -90
  18. package/artifacts/contracts/instance/BundleManager.sol/BundleManager.dbg.json +4 -0
  19. package/artifacts/contracts/instance/BundleManager.sol/BundleManager.json +764 -0
  20. package/artifacts/contracts/instance/Cloneable.sol/Cloneable.dbg.json +4 -0
  21. package/artifacts/contracts/instance/Cloneable.sol/Cloneable.json +185 -0
  22. package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
  23. package/artifacts/contracts/instance/IInstance.sol/IInstance.json +2102 -510
  24. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +4 -0
  25. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +498 -0
  26. package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
  27. package/artifacts/contracts/instance/Instance.sol/Instance.json +2780 -459
  28. package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +4 -0
  29. package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +984 -0
  30. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +4 -0
  31. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +1386 -0
  32. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +4 -0
  33. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +1035 -0
  34. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +4 -0
  35. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +693 -0
  36. package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.dbg.json +4 -0
  37. package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.json +261 -0
  38. package/artifacts/contracts/instance/base/ComponentService.sol/ComponentService.dbg.json +4 -0
  39. package/artifacts/contracts/instance/base/ComponentService.sol/ComponentService.json +541 -0
  40. package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +4 -0
  41. package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.json +429 -0
  42. package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.dbg.json +4 -0
  43. package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.json +115 -0
  44. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +4 -0
  45. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.json +502 -0
  46. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +4 -0
  47. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +169 -0
  48. package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +4 -0
  49. package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +254 -0
  50. package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +4 -0
  51. package/artifacts/contracts/instance/{access/IAccess.sol/IAccess.json → module/IBundle.sol/IBundle.json} +2 -2
  52. package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +4 -0
  53. package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.json +10 -0
  54. package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +4 -0
  55. package/artifacts/contracts/instance/{policy → module}/IPolicy.sol/IPolicy.json +1 -1
  56. package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +4 -0
  57. package/artifacts/contracts/instance/{pool/IPoolModule.sol/IPool.json → module/IRisk.sol/IRisk.json} +2 -2
  58. package/artifacts/contracts/instance/module/ISetup.sol/ISetup.dbg.json +4 -0
  59. package/artifacts/contracts/instance/{component/IComponent.sol/IComponent.json → module/ISetup.sol/ISetup.json} +2 -2
  60. package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.dbg.json +4 -0
  61. package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.json +10 -0
  62. package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.dbg.json +4 -0
  63. package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.json +858 -0
  64. package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +4 -0
  65. package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.json +657 -0
  66. package/artifacts/contracts/instance/service/BundleService.sol/BundleService.dbg.json +4 -0
  67. package/artifacts/contracts/instance/service/BundleService.sol/BundleService.json +1085 -0
  68. package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.dbg.json +4 -0
  69. package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.json +661 -0
  70. package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.dbg.json +4 -0
  71. package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.json +743 -0
  72. package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +4 -0
  73. package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.json +637 -0
  74. package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +4 -0
  75. package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +1087 -0
  76. package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +4 -0
  77. package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +729 -0
  78. package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.dbg.json +4 -0
  79. package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.json +462 -0
  80. package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.dbg.json +4 -0
  81. package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.json +622 -0
  82. package/artifacts/contracts/instance/service/IClaimService.sol/IClaimService.dbg.json +4 -0
  83. package/artifacts/contracts/instance/service/IClaimService.sol/IClaimService.json +398 -0
  84. package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +4 -0
  85. package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.json +520 -0
  86. package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.dbg.json +4 -0
  87. package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.json +572 -0
  88. package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +4 -0
  89. package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +336 -0
  90. package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +4 -0
  91. package/artifacts/contracts/instance/service/IProductService.sol/IProductService.json +373 -0
  92. package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.dbg.json +4 -0
  93. package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.json +1109 -0
  94. package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +4 -0
  95. package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.json +717 -0
  96. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +4 -0
  97. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +716 -0
  98. package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.dbg.json +4 -0
  99. package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.json +649 -0
  100. package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +4 -0
  101. package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +766 -0
  102. package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.dbg.json +4 -0
  103. package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.json +649 -0
  104. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
  105. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +239 -2
  106. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
  107. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +519 -61
  108. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +4 -0
  109. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +879 -0
  110. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +4 -0
  111. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.json +34 -0
  112. package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
  113. package/artifacts/contracts/registry/Registry.sol/Registry.json +567 -75
  114. package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.dbg.json +4 -0
  115. package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.json +285 -0
  116. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +4 -0
  117. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +1166 -0
  118. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +4 -0
  119. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +670 -0
  120. package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.dbg.json +4 -0
  121. package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.json +547 -0
  122. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +4 -0
  123. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +498 -0
  124. package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.dbg.json +4 -0
  125. package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.json +107 -0
  126. package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +4 -0
  127. package/artifacts/contracts/shared/ERC165.sol/ERC165.json +73 -0
  128. package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +4 -0
  129. package/artifacts/contracts/{registry/Registry.sol/Registerable.json → shared/INftOwnable.sol/INftOwnable.json} +46 -74
  130. package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +4 -0
  131. package/artifacts/contracts/{instance/product/IProductService.sol/IProductService.json → shared/IPolicyHolder.sol/IPolicyHolder.json} +68 -53
  132. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +4 -0
  133. package/artifacts/contracts/{instance/pool/PoolModule.sol/PoolModule.json → shared/IRegisterable.sol/IRegisterable.json} +106 -80
  134. package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +4 -0
  135. package/artifacts/contracts/{registry/IRegistry.sol → shared/IRegistryLinked.sol}/IRegistryLinked.json +18 -19
  136. package/artifacts/contracts/shared/IService.sol/IService.dbg.json +4 -0
  137. package/artifacts/contracts/shared/IService.sol/IService.json +258 -0
  138. package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +4 -0
  139. package/artifacts/contracts/shared/IVersionable.sol/IVersionable.json +55 -0
  140. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +4 -0
  141. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +251 -0
  142. package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +4 -0
  143. package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +248 -0
  144. package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +4 -0
  145. package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +582 -0
  146. package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +4 -0
  147. package/artifacts/contracts/shared/Registerable.sol/Registerable.json +352 -0
  148. package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +4 -0
  149. package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +84 -0
  150. package/artifacts/contracts/shared/Service.sol/Service.dbg.json +4 -0
  151. package/artifacts/contracts/shared/Service.sol/Service.json +414 -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 +78 -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 +383 -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 +510 -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 +104 -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/ClaimId.sol/ClaimIdLib.dbg.json +4 -0
  181. package/artifacts/contracts/types/ClaimId.sol/ClaimIdLib.json +100 -0
  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 +33 -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/PayoutId.sol/PayoutIdLib.dbg.json +4 -0
  197. package/artifacts/contracts/types/PayoutId.sol/PayoutIdLib.json +100 -0
  198. package/artifacts/contracts/types/Referral.sol/ReferralLib.dbg.json +4 -0
  199. package/artifacts/contracts/types/Referral.sol/ReferralLib.json +123 -0
  200. package/artifacts/contracts/types/RiskId.sol/RiskIdLib.dbg.json +4 -0
  201. package/artifacts/contracts/types/RiskId.sol/RiskIdLib.json +86 -0
  202. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +4 -0
  203. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.json +156 -0
  204. package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +4 -0
  205. package/artifacts/contracts/types/StateId.sol/StateIdLib.json +92 -0
  206. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +1 -1
  207. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.json +77 -2
  208. package/artifacts/contracts/types/UFixed.sol/MathLib.dbg.json +4 -0
  209. package/artifacts/contracts/types/UFixed.sol/MathLib.json +10 -0
  210. package/artifacts/contracts/types/UFixed.sol/UFixedLib.dbg.json +4 -0
  211. package/artifacts/contracts/types/UFixed.sol/UFixedLib.json +479 -0
  212. package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +4 -0
  213. package/artifacts/contracts/types/Version.sol/VersionLib.json +177 -0
  214. package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +4 -0
  215. package/artifacts/contracts/types/Version.sol/VersionPartLib.json +49 -0
  216. package/contracts/components/Component.sol +216 -37
  217. package/contracts/components/Distribution.sol +287 -0
  218. package/contracts/components/IComponent.sol +54 -0
  219. package/contracts/components/IDistributionComponent.sol +92 -0
  220. package/contracts/components/IPoolComponent.sol +87 -0
  221. package/contracts/components/IProductComponent.sol +39 -0
  222. package/contracts/components/Pool.sol +242 -17
  223. package/contracts/components/Product.sol +251 -32
  224. package/contracts/instance/BundleManager.sol +125 -0
  225. package/contracts/instance/Cloneable.sol +46 -0
  226. package/contracts/instance/IInstance.sol +87 -15
  227. package/contracts/instance/IInstanceService.sol +59 -0
  228. package/contracts/instance/Instance.sol +270 -43
  229. package/contracts/instance/InstanceAccessManager.sol +297 -0
  230. package/contracts/instance/InstanceReader.sol +293 -0
  231. package/contracts/instance/InstanceService.sol +476 -0
  232. package/contracts/instance/InstanceServiceManager.sol +54 -0
  233. package/contracts/instance/ObjectManager.sol +84 -0
  234. package/contracts/instance/base/ComponentService.sol +134 -0
  235. package/contracts/instance/base/IKeyValueStore.sol +49 -0
  236. package/contracts/instance/base/ILifecycle.sol +30 -0
  237. package/contracts/instance/base/KeyValueStore.sol +172 -0
  238. package/contracts/instance/base/Lifecycle.sol +100 -0
  239. package/contracts/instance/module/IAccess.sol +47 -0
  240. package/contracts/instance/module/IBundle.sol +20 -0
  241. package/contracts/instance/module/IDistribution.sol +40 -0
  242. package/contracts/instance/module/IPolicy.sol +47 -0
  243. package/contracts/instance/module/IRisk.sol +11 -0
  244. package/contracts/instance/module/ISetup.sol +48 -0
  245. package/contracts/instance/module/ITreasury.sol +23 -0
  246. package/contracts/instance/service/ApplicationService.sol +268 -0
  247. package/contracts/instance/service/ApplicationServiceManager.sol +35 -0
  248. package/contracts/instance/service/BundleService.sol +298 -0
  249. package/contracts/instance/service/BundleServiceManager.sol +51 -0
  250. package/contracts/instance/service/ClaimService.sol +151 -0
  251. package/contracts/instance/service/ClaimServiceManager.sol +35 -0
  252. package/contracts/instance/service/DistributionService.sol +346 -0
  253. package/contracts/instance/service/DistributionServiceManager.sol +51 -0
  254. package/contracts/instance/service/IApplicationService.sol +82 -0
  255. package/contracts/instance/service/IBundleService.sol +54 -0
  256. package/contracts/instance/service/IClaimService.sol +61 -0
  257. package/contracts/instance/service/IDistributionService.sol +73 -0
  258. package/contracts/instance/service/IPolicyService.sol +89 -0
  259. package/contracts/instance/service/IPoolService.sol +20 -0
  260. package/contracts/instance/service/IProductService.sol +40 -0
  261. package/contracts/instance/service/PolicyService.sol +476 -0
  262. package/contracts/instance/service/PolicyServiceManager.sol +54 -0
  263. package/contracts/instance/service/PoolService.sol +109 -0
  264. package/contracts/instance/service/PoolServiceManager.sol +51 -0
  265. package/contracts/instance/service/ProductService.sol +233 -0
  266. package/contracts/instance/service/ProductServiceManager.sol +54 -0
  267. package/contracts/registry/ChainNft.sol +138 -109
  268. package/contracts/registry/IRegistry.sol +78 -49
  269. package/contracts/registry/IRegistryService.sol +67 -0
  270. package/contracts/registry/ITransferInterceptor.sol +6 -0
  271. package/contracts/registry/Registry.sol +398 -116
  272. package/contracts/registry/RegistryAccessManager.sol +216 -0
  273. package/contracts/registry/RegistryService.sol +283 -0
  274. package/contracts/registry/RegistryServiceManager.sol +62 -0
  275. package/contracts/registry/ReleaseManager.sol +322 -0
  276. package/contracts/registry/TokenRegistry.sol +116 -0
  277. package/contracts/shared/ContractDeployerLib.sol +72 -0
  278. package/contracts/shared/ERC165.sol +27 -0
  279. package/contracts/shared/INftOwnable.sol +23 -0
  280. package/contracts/shared/IPolicyHolder.sol +26 -0
  281. package/contracts/shared/IRegisterable.sol +15 -0
  282. package/contracts/shared/IRegistryLinked.sol +12 -0
  283. package/contracts/shared/IService.sol +16 -0
  284. package/contracts/shared/IVersionable.sol +53 -0
  285. package/contracts/shared/NftOwnable.sol +120 -0
  286. package/contracts/shared/PolicyHolder.sol +81 -0
  287. package/contracts/shared/ProxyManager.sol +169 -0
  288. package/contracts/shared/Registerable.sol +74 -0
  289. package/contracts/shared/RegistryLinked.sol +48 -0
  290. package/contracts/shared/Service.sol +58 -0
  291. package/contracts/shared/TokenHandler.sol +27 -0
  292. package/contracts/shared/UpgradableProxyWithAdmin.sol +16 -0
  293. package/contracts/shared/Versionable.sol +59 -0
  294. package/contracts/test/TestFee.sol +25 -0
  295. package/contracts/test/TestRegisterable.sol +18 -0
  296. package/contracts/test/TestRoleId.sol +14 -0
  297. package/contracts/test/TestService.sol +25 -0
  298. package/contracts/test/TestToken.sol +26 -0
  299. package/contracts/test/TestVersion.sol +44 -0
  300. package/contracts/test/TestVersionable.sol +17 -0
  301. package/contracts/test/Usdc.sol +26 -0
  302. package/contracts/types/AddressSet.sol +58 -0
  303. package/contracts/types/Blocknumber.sol +76 -18
  304. package/contracts/types/ChainId.sol +18 -10
  305. package/contracts/types/ClaimId.sol +52 -0
  306. package/contracts/types/DistributorType.sol +55 -0
  307. package/contracts/types/Fee.sol +56 -0
  308. package/contracts/types/Key32.sol +50 -0
  309. package/contracts/types/NftId.sol +48 -11
  310. package/contracts/types/NftIdSet.sol +62 -0
  311. package/contracts/types/NumberId.sol +52 -0
  312. package/contracts/types/ObjectType.sol +156 -0
  313. package/contracts/types/PayoutId.sol +54 -0
  314. package/contracts/types/Referral.sol +85 -0
  315. package/contracts/types/RiskId.sol +43 -0
  316. package/contracts/types/RoleId.sol +90 -0
  317. package/contracts/types/StateId.sol +105 -0
  318. package/contracts/types/Timestamp.sol +89 -17
  319. package/contracts/types/UFixed.sol +193 -75
  320. package/contracts/types/Version.sol +107 -0
  321. package/package.json +21 -6
  322. package/artifacts/contracts/components/Component.sol/InstanceLinked.dbg.json +0 -4
  323. package/artifacts/contracts/components/Component.sol/InstanceLinked.json +0 -35
  324. package/artifacts/contracts/components/IPool.sol/IPoolComponent.dbg.json +0 -4
  325. package/artifacts/contracts/components/IPool.sol/IPoolComponent.json +0 -179
  326. package/artifacts/contracts/components/IProduct.sol/IProductComponent.dbg.json +0 -4
  327. package/artifacts/contracts/components/IProduct.sol/IProductComponent.json +0 -192
  328. package/artifacts/contracts/experiment/errors/Require.sol/Require.dbg.json +0 -4
  329. package/artifacts/contracts/experiment/errors/Require.sol/Require.json +0 -105
  330. package/artifacts/contracts/experiment/errors/Revert.sol/Revert.dbg.json +0 -4
  331. package/artifacts/contracts/experiment/errors/Revert.sol/Revert.json +0 -105
  332. package/artifacts/contracts/experiment/inheritance/A.sol/A.dbg.json +0 -4
  333. package/artifacts/contracts/experiment/inheritance/A.sol/A.json +0 -128
  334. package/artifacts/contracts/experiment/inheritance/A.sol/AShared.dbg.json +0 -4
  335. package/artifacts/contracts/experiment/inheritance/A.sol/AShared.json +0 -42
  336. package/artifacts/contracts/experiment/inheritance/B.sol/B.dbg.json +0 -4
  337. package/artifacts/contracts/experiment/inheritance/B.sol/B.json +0 -76
  338. package/artifacts/contracts/experiment/inheritance/C.sol/C.dbg.json +0 -4
  339. package/artifacts/contracts/experiment/inheritance/C.sol/C.json +0 -89
  340. package/artifacts/contracts/experiment/inheritance/IA.sol/IA.dbg.json +0 -4
  341. package/artifacts/contracts/experiment/inheritance/IA.sol/IA.json +0 -128
  342. package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.dbg.json +0 -4
  343. package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.json +0 -37
  344. package/artifacts/contracts/experiment/inheritance/IB.sol/IB.dbg.json +0 -4
  345. package/artifacts/contracts/experiment/inheritance/IB.sol/IB.json +0 -50
  346. package/artifacts/contracts/experiment/inheritance/IC.sol/IC.dbg.json +0 -4
  347. package/artifacts/contracts/experiment/inheritance/IC.sol/IC.json +0 -63
  348. package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.dbg.json +0 -4
  349. package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.json +0 -10
  350. package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.dbg.json +0 -4
  351. package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.json +0 -10
  352. package/artifacts/contracts/instance/access/Access.sol/AccessModule.dbg.json +0 -4
  353. package/artifacts/contracts/instance/access/Access.sol/AccessModule.json +0 -400
  354. package/artifacts/contracts/instance/access/IAccess.sol/IAccess.dbg.json +0 -4
  355. package/artifacts/contracts/instance/access/IAccess.sol/IAccessCheckRole.dbg.json +0 -4
  356. package/artifacts/contracts/instance/access/IAccess.sol/IAccessCheckRole.json +0 -35
  357. package/artifacts/contracts/instance/access/IAccess.sol/IAccessComponentTypeRoles.dbg.json +0 -4
  358. package/artifacts/contracts/instance/access/IAccess.sol/IAccessComponentTypeRoles.json +0 -50
  359. package/artifacts/contracts/instance/access/IAccess.sol/IAccessModule.dbg.json +0 -4
  360. package/artifacts/contracts/instance/access/IAccess.sol/IAccessModule.json +0 -336
  361. package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentModule.dbg.json +0 -4
  362. package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentModule.json +0 -327
  363. package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentOwnerService.dbg.json +0 -4
  364. package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentOwnerService.json +0 -147
  365. package/artifacts/contracts/instance/component/IComponent.sol/IComponent.dbg.json +0 -4
  366. package/artifacts/contracts/instance/component/IComponent.sol/IComponentContract.dbg.json +0 -4
  367. package/artifacts/contracts/instance/component/IComponent.sol/IComponentContract.json +0 -179
  368. package/artifacts/contracts/instance/component/IComponent.sol/IComponentModule.dbg.json +0 -4
  369. package/artifacts/contracts/instance/component/IComponent.sol/IComponentModule.json +0 -245
  370. package/artifacts/contracts/instance/component/IComponent.sol/IComponentOwnerService.dbg.json +0 -4
  371. package/artifacts/contracts/instance/component/IComponent.sol/IComponentOwnerService.json +0 -94
  372. package/artifacts/contracts/instance/component/IComponent.sol/IInstanceLinked.dbg.json +0 -4
  373. package/artifacts/contracts/instance/component/IComponent.sol/IInstanceLinked.json +0 -24
  374. package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicy.dbg.json +0 -4
  375. package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicyModule.dbg.json +0 -4
  376. package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicyModule.json +0 -231
  377. package/artifacts/contracts/instance/policy/PolicyModule.sol/PolicyModule.dbg.json +0 -4
  378. package/artifacts/contracts/instance/policy/PolicyModule.sol/PolicyModule.json +0 -231
  379. package/artifacts/contracts/instance/pool/IPoolModule.sol/IPool.dbg.json +0 -4
  380. package/artifacts/contracts/instance/pool/IPoolModule.sol/IPoolModule.dbg.json +0 -4
  381. package/artifacts/contracts/instance/pool/IPoolModule.sol/IPoolModule.json +0 -149
  382. package/artifacts/contracts/instance/pool/PoolModule.sol/PoolModule.dbg.json +0 -4
  383. package/artifacts/contracts/instance/product/IProductService.sol/IProductModule.dbg.json +0 -4
  384. package/artifacts/contracts/instance/product/IProductService.sol/IProductModule.json +0 -75
  385. package/artifacts/contracts/instance/product/IProductService.sol/IProductService.dbg.json +0 -4
  386. package/artifacts/contracts/instance/product/ProductService.sol/ProductModule.dbg.json +0 -4
  387. package/artifacts/contracts/instance/product/ProductService.sol/ProductModule.json +0 -75
  388. package/artifacts/contracts/instance/product/ProductService.sol/ProductService.dbg.json +0 -4
  389. package/artifacts/contracts/instance/product/ProductService.sol/ProductService.json +0 -167
  390. package/artifacts/contracts/registry/IChainNft.sol/IChainNft.dbg.json +0 -4
  391. package/artifacts/contracts/registry/IRegistry.sol/IOwnable.dbg.json +0 -4
  392. package/artifacts/contracts/registry/IRegistry.sol/IOwnable.json +0 -24
  393. package/artifacts/contracts/registry/IRegistry.sol/IRegisterable.dbg.json +0 -4
  394. package/artifacts/contracts/registry/IRegistry.sol/IRegisterable.json +0 -166
  395. package/artifacts/contracts/registry/IRegistry.sol/IRegistryLinked.dbg.json +0 -4
  396. package/artifacts/contracts/registry/Registry.sol/Registerable.dbg.json +0 -4
  397. package/artifacts/contracts/registry/Registry.sol/RegistryLinked.dbg.json +0 -4
  398. package/artifacts/contracts/registry/Registry.sol/RegistryLinked.json +0 -60
  399. package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.dbg.json +0 -4
  400. package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.json +0 -440
  401. package/contracts/components/IPool.sol +0 -9
  402. package/contracts/components/IProduct.sol +0 -12
  403. package/contracts/experiment/errors/Require.sol +0 -33
  404. package/contracts/experiment/errors/Revert.sol +0 -39
  405. package/contracts/experiment/inheritance/A.sol +0 -56
  406. package/contracts/experiment/inheritance/B.sol +0 -23
  407. package/contracts/experiment/inheritance/C.sol +0 -28
  408. package/contracts/experiment/inheritance/IA.sol +0 -18
  409. package/contracts/experiment/inheritance/IB.sol +0 -9
  410. package/contracts/experiment/inheritance/IC.sol +0 -11
  411. package/contracts/experiment/types/TypeA.sol +0 -42
  412. package/contracts/experiment/types/TypeB.sol +0 -24
  413. package/contracts/instance/access/Access.sol +0 -218
  414. package/contracts/instance/access/IAccess.sol +0 -83
  415. package/contracts/instance/component/ComponentModule.sol +0 -248
  416. package/contracts/instance/component/IComponent.sol +0 -95
  417. package/contracts/instance/policy/IPolicy.sol +0 -66
  418. package/contracts/instance/policy/PolicyModule.sol +0 -107
  419. package/contracts/instance/pool/IPoolModule.sol +0 -41
  420. package/contracts/instance/pool/PoolModule.sol +0 -86
  421. package/contracts/instance/product/IProductService.sol +0 -46
  422. package/contracts/instance/product/ProductService.sol +0 -108
  423. package/contracts/registry/IChainNft.sol +0 -18
@@ -0,0 +1,766 @@
1
+ {
2
+ "_format": "hh-sol-artifact-1",
3
+ "contractName": "ProductService",
4
+ "sourceName": "contracts/instance/service/ProductService.sol",
5
+ "abi": [
6
+ {
7
+ "inputs": [
8
+ {
9
+ "internalType": "address",
10
+ "name": "component",
11
+ "type": "address"
12
+ },
13
+ {
14
+ "internalType": "NftId",
15
+ "name": "nftId",
16
+ "type": "uint96"
17
+ }
18
+ ],
19
+ "name": "ErrorComponentServiceAlreadyRegistered",
20
+ "type": "error"
21
+ },
22
+ {
23
+ "inputs": [
24
+ {
25
+ "internalType": "address",
26
+ "name": "component",
27
+ "type": "address"
28
+ }
29
+ ],
30
+ "name": "ErrorComponentServiceComponentLocked",
31
+ "type": "error"
32
+ },
33
+ {
34
+ "inputs": [
35
+ {
36
+ "internalType": "NftId",
37
+ "name": "instanceNftId",
38
+ "type": "uint96"
39
+ },
40
+ {
41
+ "internalType": "RoleId",
42
+ "name": "requiredRole",
43
+ "type": "uint64"
44
+ },
45
+ {
46
+ "internalType": "address",
47
+ "name": "sender",
48
+ "type": "address"
49
+ }
50
+ ],
51
+ "name": "ErrorComponentServiceExpectedRoleMissing",
52
+ "type": "error"
53
+ },
54
+ {
55
+ "inputs": [
56
+ {
57
+ "internalType": "address",
58
+ "name": "component",
59
+ "type": "address"
60
+ },
61
+ {
62
+ "internalType": "ObjectType",
63
+ "name": "requiredType",
64
+ "type": "uint8"
65
+ },
66
+ {
67
+ "internalType": "ObjectType",
68
+ "name": "componentType",
69
+ "type": "uint8"
70
+ }
71
+ ],
72
+ "name": "ErrorComponentServiceInvalidType",
73
+ "type": "error"
74
+ },
75
+ {
76
+ "inputs": [
77
+ {
78
+ "internalType": "address",
79
+ "name": "component",
80
+ "type": "address"
81
+ }
82
+ ],
83
+ "name": "ErrorComponentServiceNotComponent",
84
+ "type": "error"
85
+ },
86
+ {
87
+ "inputs": [
88
+ {
89
+ "internalType": "address",
90
+ "name": "component",
91
+ "type": "address"
92
+ },
93
+ {
94
+ "internalType": "address",
95
+ "name": "initialOwner",
96
+ "type": "address"
97
+ },
98
+ {
99
+ "internalType": "address",
100
+ "name": "sender",
101
+ "type": "address"
102
+ }
103
+ ],
104
+ "name": "ErrorComponentServiceSenderNotOwner",
105
+ "type": "error"
106
+ },
107
+ {
108
+ "inputs": [
109
+ {
110
+ "internalType": "address",
111
+ "name": "target",
112
+ "type": "address"
113
+ }
114
+ ],
115
+ "name": "ErrorIAccessTargetLocked",
116
+ "type": "error"
117
+ },
118
+ {
119
+ "inputs": [
120
+ {
121
+ "internalType": "NftId",
122
+ "name": "nftId",
123
+ "type": "uint96"
124
+ }
125
+ ],
126
+ "name": "ErrorNftOwnableAlreadyLinked",
127
+ "type": "error"
128
+ },
129
+ {
130
+ "inputs": [
131
+ {
132
+ "internalType": "address",
133
+ "name": "contractAddress",
134
+ "type": "address"
135
+ }
136
+ ],
137
+ "name": "ErrorNftOwnableContractNotRegistered",
138
+ "type": "error"
139
+ },
140
+ {
141
+ "inputs": [],
142
+ "name": "ErrorNftOwnableInitialOwnerZero",
143
+ "type": "error"
144
+ },
145
+ {
146
+ "inputs": [
147
+ {
148
+ "internalType": "address",
149
+ "name": "account",
150
+ "type": "address"
151
+ }
152
+ ],
153
+ "name": "ErrorNftOwnableNotOwner",
154
+ "type": "error"
155
+ },
156
+ {
157
+ "inputs": [
158
+ {
159
+ "internalType": "address",
160
+ "name": "registryAddress",
161
+ "type": "address"
162
+ }
163
+ ],
164
+ "name": "ErrorNotRegistry",
165
+ "type": "error"
166
+ },
167
+ {
168
+ "inputs": [],
169
+ "name": "InvalidInitialization",
170
+ "type": "error"
171
+ },
172
+ {
173
+ "inputs": [],
174
+ "name": "NotInitializing",
175
+ "type": "error"
176
+ },
177
+ {
178
+ "anonymous": false,
179
+ "inputs": [
180
+ {
181
+ "indexed": false,
182
+ "internalType": "uint64",
183
+ "name": "version",
184
+ "type": "uint64"
185
+ }
186
+ ],
187
+ "name": "Initialized",
188
+ "type": "event"
189
+ },
190
+ {
191
+ "anonymous": false,
192
+ "inputs": [
193
+ {
194
+ "indexed": false,
195
+ "internalType": "address",
196
+ "name": "sender",
197
+ "type": "address"
198
+ }
199
+ ],
200
+ "name": "LogProductServiceSender",
201
+ "type": "event"
202
+ },
203
+ {
204
+ "inputs": [],
205
+ "name": "NFT_OWNABLE_STORAGE_LOCATION_V1",
206
+ "outputs": [
207
+ {
208
+ "internalType": "bytes32",
209
+ "name": "",
210
+ "type": "bytes32"
211
+ }
212
+ ],
213
+ "stateMutability": "view",
214
+ "type": "function"
215
+ },
216
+ {
217
+ "inputs": [],
218
+ "name": "REGISTERABLE_LOCATION_V1",
219
+ "outputs": [
220
+ {
221
+ "internalType": "bytes32",
222
+ "name": "",
223
+ "type": "bytes32"
224
+ }
225
+ ],
226
+ "stateMutability": "view",
227
+ "type": "function"
228
+ },
229
+ {
230
+ "inputs": [
231
+ {
232
+ "internalType": "RiskId",
233
+ "name": "riskId",
234
+ "type": "bytes8"
235
+ },
236
+ {
237
+ "internalType": "bytes",
238
+ "name": "data",
239
+ "type": "bytes"
240
+ }
241
+ ],
242
+ "name": "createRisk",
243
+ "outputs": [],
244
+ "stateMutability": "nonpayable",
245
+ "type": "function"
246
+ },
247
+ {
248
+ "inputs": [],
249
+ "name": "getDomain",
250
+ "outputs": [
251
+ {
252
+ "internalType": "ObjectType",
253
+ "name": "",
254
+ "type": "uint8"
255
+ }
256
+ ],
257
+ "stateMutability": "pure",
258
+ "type": "function"
259
+ },
260
+ {
261
+ "inputs": [],
262
+ "name": "getInitialInfo",
263
+ "outputs": [
264
+ {
265
+ "components": [
266
+ {
267
+ "internalType": "NftId",
268
+ "name": "nftId",
269
+ "type": "uint96"
270
+ },
271
+ {
272
+ "internalType": "NftId",
273
+ "name": "parentNftId",
274
+ "type": "uint96"
275
+ },
276
+ {
277
+ "internalType": "ObjectType",
278
+ "name": "objectType",
279
+ "type": "uint8"
280
+ },
281
+ {
282
+ "internalType": "bool",
283
+ "name": "isInterceptor",
284
+ "type": "bool"
285
+ },
286
+ {
287
+ "internalType": "address",
288
+ "name": "objectAddress",
289
+ "type": "address"
290
+ },
291
+ {
292
+ "internalType": "address",
293
+ "name": "initialOwner",
294
+ "type": "address"
295
+ },
296
+ {
297
+ "internalType": "bytes",
298
+ "name": "data",
299
+ "type": "bytes"
300
+ }
301
+ ],
302
+ "internalType": "struct IRegistry.ObjectInfo",
303
+ "name": "info",
304
+ "type": "tuple"
305
+ }
306
+ ],
307
+ "stateMutability": "view",
308
+ "type": "function"
309
+ },
310
+ {
311
+ "inputs": [],
312
+ "name": "getInstanceService",
313
+ "outputs": [
314
+ {
315
+ "internalType": "contract InstanceService",
316
+ "name": "",
317
+ "type": "address"
318
+ }
319
+ ],
320
+ "stateMutability": "view",
321
+ "type": "function"
322
+ },
323
+ {
324
+ "inputs": [],
325
+ "name": "getMajorVersion",
326
+ "outputs": [
327
+ {
328
+ "internalType": "VersionPart",
329
+ "name": "majorVersion",
330
+ "type": "uint8"
331
+ }
332
+ ],
333
+ "stateMutability": "view",
334
+ "type": "function"
335
+ },
336
+ {
337
+ "inputs": [],
338
+ "name": "getNftId",
339
+ "outputs": [
340
+ {
341
+ "internalType": "NftId",
342
+ "name": "",
343
+ "type": "uint96"
344
+ }
345
+ ],
346
+ "stateMutability": "view",
347
+ "type": "function"
348
+ },
349
+ {
350
+ "inputs": [],
351
+ "name": "getOwner",
352
+ "outputs": [
353
+ {
354
+ "internalType": "address",
355
+ "name": "",
356
+ "type": "address"
357
+ }
358
+ ],
359
+ "stateMutability": "view",
360
+ "type": "function"
361
+ },
362
+ {
363
+ "inputs": [],
364
+ "name": "getRegistry",
365
+ "outputs": [
366
+ {
367
+ "internalType": "contract IRegistry",
368
+ "name": "",
369
+ "type": "address"
370
+ }
371
+ ],
372
+ "stateMutability": "view",
373
+ "type": "function"
374
+ },
375
+ {
376
+ "inputs": [],
377
+ "name": "getRegistryAddress",
378
+ "outputs": [
379
+ {
380
+ "internalType": "address",
381
+ "name": "",
382
+ "type": "address"
383
+ }
384
+ ],
385
+ "stateMutability": "view",
386
+ "type": "function"
387
+ },
388
+ {
389
+ "inputs": [],
390
+ "name": "getRegistryService",
391
+ "outputs": [
392
+ {
393
+ "internalType": "contract IRegistryService",
394
+ "name": "",
395
+ "type": "address"
396
+ }
397
+ ],
398
+ "stateMutability": "view",
399
+ "type": "function"
400
+ },
401
+ {
402
+ "inputs": [],
403
+ "name": "getVersion",
404
+ "outputs": [
405
+ {
406
+ "internalType": "Version",
407
+ "name": "",
408
+ "type": "uint24"
409
+ }
410
+ ],
411
+ "stateMutability": "pure",
412
+ "type": "function"
413
+ },
414
+ {
415
+ "inputs": [],
416
+ "name": "initializeERC165",
417
+ "outputs": [],
418
+ "stateMutability": "nonpayable",
419
+ "type": "function"
420
+ },
421
+ {
422
+ "inputs": [
423
+ {
424
+ "internalType": "address",
425
+ "name": "initialOwner",
426
+ "type": "address"
427
+ },
428
+ {
429
+ "internalType": "address",
430
+ "name": "registryAddress",
431
+ "type": "address"
432
+ }
433
+ ],
434
+ "name": "initializeNftOwnable",
435
+ "outputs": [],
436
+ "stateMutability": "nonpayable",
437
+ "type": "function"
438
+ },
439
+ {
440
+ "inputs": [
441
+ {
442
+ "internalType": "address",
443
+ "name": "registryAddress",
444
+ "type": "address"
445
+ },
446
+ {
447
+ "internalType": "NftId",
448
+ "name": "parentNftId",
449
+ "type": "uint96"
450
+ },
451
+ {
452
+ "internalType": "ObjectType",
453
+ "name": "objectType",
454
+ "type": "uint8"
455
+ },
456
+ {
457
+ "internalType": "bool",
458
+ "name": "isInterceptor",
459
+ "type": "bool"
460
+ },
461
+ {
462
+ "internalType": "address",
463
+ "name": "initialOwner",
464
+ "type": "address"
465
+ },
466
+ {
467
+ "internalType": "bytes",
468
+ "name": "data",
469
+ "type": "bytes"
470
+ }
471
+ ],
472
+ "name": "initializeRegisterable",
473
+ "outputs": [],
474
+ "stateMutability": "nonpayable",
475
+ "type": "function"
476
+ },
477
+ {
478
+ "inputs": [
479
+ {
480
+ "internalType": "address",
481
+ "name": "registryAddress",
482
+ "type": "address"
483
+ }
484
+ ],
485
+ "name": "initializeRegistryLinked",
486
+ "outputs": [],
487
+ "stateMutability": "nonpayable",
488
+ "type": "function"
489
+ },
490
+ {
491
+ "inputs": [
492
+ {
493
+ "internalType": "address",
494
+ "name": "registry",
495
+ "type": "address"
496
+ },
497
+ {
498
+ "internalType": "address",
499
+ "name": "initialOwner",
500
+ "type": "address"
501
+ }
502
+ ],
503
+ "name": "initializeService",
504
+ "outputs": [],
505
+ "stateMutability": "nonpayable",
506
+ "type": "function"
507
+ },
508
+ {
509
+ "inputs": [
510
+ {
511
+ "internalType": "address",
512
+ "name": "activatedBy",
513
+ "type": "address"
514
+ },
515
+ {
516
+ "internalType": "bytes",
517
+ "name": "data",
518
+ "type": "bytes"
519
+ }
520
+ ],
521
+ "name": "initializeVersionable",
522
+ "outputs": [],
523
+ "stateMutability": "nonpayable",
524
+ "type": "function"
525
+ },
526
+ {
527
+ "inputs": [],
528
+ "name": "linkToRegisteredNftId",
529
+ "outputs": [],
530
+ "stateMutability": "nonpayable",
531
+ "type": "function"
532
+ },
533
+ {
534
+ "inputs": [
535
+ {
536
+ "internalType": "address",
537
+ "name": "productAddress",
538
+ "type": "address"
539
+ }
540
+ ],
541
+ "name": "register",
542
+ "outputs": [
543
+ {
544
+ "internalType": "NftId",
545
+ "name": "productNftId",
546
+ "type": "uint96"
547
+ }
548
+ ],
549
+ "stateMutability": "nonpayable",
550
+ "type": "function"
551
+ },
552
+ {
553
+ "inputs": [
554
+ {
555
+ "internalType": "bytes4",
556
+ "name": "interfaceId",
557
+ "type": "bytes4"
558
+ }
559
+ ],
560
+ "name": "registerInterface",
561
+ "outputs": [],
562
+ "stateMutability": "nonpayable",
563
+ "type": "function"
564
+ },
565
+ {
566
+ "inputs": [
567
+ {
568
+ "components": [
569
+ {
570
+ "internalType": "UFixed",
571
+ "name": "fractionalFee",
572
+ "type": "uint256"
573
+ },
574
+ {
575
+ "internalType": "uint256",
576
+ "name": "fixedFee",
577
+ "type": "uint256"
578
+ }
579
+ ],
580
+ "internalType": "struct Fee",
581
+ "name": "productFee",
582
+ "type": "tuple"
583
+ },
584
+ {
585
+ "components": [
586
+ {
587
+ "internalType": "UFixed",
588
+ "name": "fractionalFee",
589
+ "type": "uint256"
590
+ },
591
+ {
592
+ "internalType": "uint256",
593
+ "name": "fixedFee",
594
+ "type": "uint256"
595
+ }
596
+ ],
597
+ "internalType": "struct Fee",
598
+ "name": "processingFee",
599
+ "type": "tuple"
600
+ }
601
+ ],
602
+ "name": "setFees",
603
+ "outputs": [],
604
+ "stateMutability": "nonpayable",
605
+ "type": "function"
606
+ },
607
+ {
608
+ "inputs": [
609
+ {
610
+ "internalType": "bytes4",
611
+ "name": "interfaceId",
612
+ "type": "bytes4"
613
+ }
614
+ ],
615
+ "name": "supportsInterface",
616
+ "outputs": [
617
+ {
618
+ "internalType": "bool",
619
+ "name": "",
620
+ "type": "bool"
621
+ }
622
+ ],
623
+ "stateMutability": "view",
624
+ "type": "function"
625
+ },
626
+ {
627
+ "inputs": [
628
+ {
629
+ "internalType": "RiskId",
630
+ "name": "riskId",
631
+ "type": "bytes8"
632
+ },
633
+ {
634
+ "internalType": "bytes",
635
+ "name": "data",
636
+ "type": "bytes"
637
+ }
638
+ ],
639
+ "name": "updateRisk",
640
+ "outputs": [],
641
+ "stateMutability": "nonpayable",
642
+ "type": "function"
643
+ },
644
+ {
645
+ "inputs": [
646
+ {
647
+ "internalType": "RiskId",
648
+ "name": "riskId",
649
+ "type": "bytes8"
650
+ },
651
+ {
652
+ "internalType": "StateId",
653
+ "name": "state",
654
+ "type": "uint8"
655
+ }
656
+ ],
657
+ "name": "updateRiskState",
658
+ "outputs": [],
659
+ "stateMutability": "nonpayable",
660
+ "type": "function"
661
+ },
662
+ {
663
+ "inputs": [
664
+ {
665
+ "internalType": "bytes",
666
+ "name": "data",
667
+ "type": "bytes"
668
+ }
669
+ ],
670
+ "name": "upgradeVersionable",
671
+ "outputs": [],
672
+ "stateMutability": "nonpayable",
673
+ "type": "function"
674
+ }
675
+ ],
676
+ "bytecode": "0x60806040523480156200001157600080fd5b506200001c62000022565b620000d6565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000900460ff1615620000735760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b0390811614620000d35780546001600160401b0319166001600160401b0390811782556040519081527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50565b61318180620000e66000396000f3fe608060405234801561001057600080fd5b50600436106101a95760003560e01c8063644c45e0116100f9578063b6b412ba11610097578063cde749f411610071578063cde749f4146103c3578063ea866572146103cb578063f21de1e8146102f2578063f7c34ee0146103de57600080fd5b8063b6b412ba146103a0578063caf4e3d4146103b3578063cc9fc59a146103bb57600080fd5b8063893d20e8116100d3578063893d20e81461035b5780638f997f6d14610363578063ada9652e14610376578063b68d18091461038b57600080fd5b8063644c45e014610317578063675393bf146103355780637cef48421461034857600080fd5b8063214cdb801161016657806336fc697e1161014057806336fc697e146102ac5780634420e486146102b457806349bb9e4b146102df5780635ab1bd53146102f257600080fd5b8063214cdb801461027357806327bb7a3314610286578063329d6e741461029957600080fd5b806301ffc9a7146101ae578063095e2b72146101f05780630d8e6e2c146102055780630fec111c14610221578063138461e0146102365780631eff4b221461023e575b600080fd5b6101db6101bc36600461249f565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b6102036101fe36600461261d565b6103f1565b005b61020d61048a565b60405162ffffff90911681526020016101e7565b610229610514565b6040516101e791906126ba565b6102036106c8565b6102657f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b6040519081526020016101e7565b61020361028136600461249f565b6108cf565b61020361029436600461278c565b6108fc565b6102036102a7366004612824565b610988565b610203610ad5565b6102c76102c2366004612858565b610b1b565b6040516001600160601b0390911681526020016101e7565b6102036102ed366004612875565b610be0565b6001546001600160a01b03165b6040516001600160a01b0390911681526020016101e7565b60008051602061310c833981519152546001600160601b03166102c7565b610203610343366004612858565b610cdf565b610203610356366004612893565b610ded565b6102ff610e65565b61020361037136600461261d565b610f9c565b61026560008051602061310c83398151915281565b606e5b60405160ff90911681526020016101e7565b6102036103ae3660046128fa565b6110ff565b6102ff61126c565b6102ff611309565b61038e611333565b6102036103d936600461292f565b6113aa565b6102036103ec36600461292f565b611442565b6000806103fe606e6114b9565b81516040805180820182526001600160601b03831681526020810188905290516317b0844560e11b8152939550919350916001600160a01b03841690632f61088a906104509089908590600401612985565b600060405180830381600087803b15801561046a57600080fd5b505af115801561047e573d6000803e3d6000fd5b50505050505050505050565b604051632efe011360e01b815260036004820152600060248201819052604482018190529073__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__90632efe011390606401602060405180830381865af41580156104eb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061050f91906129aa565b905090565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a082019290925260c081019190915260007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa3006040805160808101825282546001600160601b038116825260ff600160601b820481166020840152600160681b909104161515918101919091526001820180549192916060840191906105c4906129cf565b80601f01602080910402602001604051908101604052809291908181526020018280546105f0906129cf565b801561063d5780601f106106125761010080835404028352916020019161063d565b820191906000526020600020905b81548152906001019060200180831161062057829003601f168201915b50505050508152505090506040518060e0016040528061065b600090565b6001600160601b0316815260200182600001516001600160601b03168152602001826020015160ff168152602001826040015115158152602001306001600160a01b031681526020016106ac610e65565b6001600160a01b03168152602001826060015181525091505090565b600060008051602061310c83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015610737573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061075b9190612a14565b1561078c5780546040516301ab8b6760e21b81526001600160601b0390911660048201526024015b60405180910390fd5b3061079f6001546001600160a01b031690565b60405163c3c5a54760e01b81526001600160a01b038381166004830152919091169063c3c5a54790602401602060405180830381865afa1580156107e7573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061080b9190612a14565b6108335760405163b9304b0d60e01b81526001600160a01b0382166004820152602401610783565b6001546001600160a01b0316604051636939560f60e11b81526001600160a01b038381166004830152919091169063d272ac1e90602401602060405180830381865afa158015610887573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108ab9190612a3c565b82546bffffffffffffffffffffffff19166001600160601b03919091161790915550565b6108d761175b565b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b61090461175b565b61090e8287611442565b60007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0388166cffffffffffffffffffffffffff1990911617600160601b60ff8816021760ff60681b1916600160681b8615150217815590506001810161097e8382612aa8565b5050505050505050565b73__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__63a123b37c6109aa61048a565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af41580156109ea573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a0e9190612b7c565b60008051602061312c8339815191528054600160401b900460ff1680610a41575080546001600160401b03808416911610155b15610a5f5760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b178155610a8983611794565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a1505050565b610add61175b565b6301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b600080808080610b3486606e610b2f61179c565b611814565b92965090945092509050856000610b4961126c565b604051635d96628960e01b81526001600160a01b03848116600483015287811660248301529190911690635d966289906044016000604051808303816000875af1158015610b9b573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610bc39190810190612bff565b805197509050610bd4848389611bee565b50505050505050919050565b60008051602061312c8339815191528054600160401b810460ff1615906001600160401b0316600081158015610c135750825b90506000826001600160401b03166001148015610c2f5750303b155b905081158015610c3d575080155b15610c5b5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315610c8557845460ff60401b1916600160401b1785555b610c8f8787612245565b8315610cd657845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020015b60405180910390a15b50505050505050565b610ce761175b565b806001600160a01b03163b600003610d1d5760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610783565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b815263230c0c8160e11b60048201526301ffc9a790602401602060405180830381865afa925050508015610d97575060408051601f3d908101601f19168201909252610d9491810190612a14565b60015b610dbf5760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610783565b80610de85760405163fdeac91f60e01b81526001600160a01b0383166004820152602401610783565b505b50565b6000610df9606e6114b9565b604051633e77a42160e11b81526001600160c01b03198616600482015260ff851660248201529092506001600160a01b0383169150637cef484290604401600060405180830381600087803b158015610e5157600080fd5b505af1158015610cd6573d6000803e3d6000fd5b60008060008051602061310c83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015610ed5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ef99190612a14565b15610f86576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015610f5c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f809190612cd1565b91505090565b54600160601b90046001600160a01b0316919050565b6000610fa8606e6114b9565b9150506000816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015610feb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061100f9190612cd1565b60405163887b1fa960e01b81526001600160c01b0319861660048201529091506000906001600160a01b0383169063887b1fa990602401600060405180830381865afa158015611063573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261108b9190810190612cee565b602081018590526040516314eddc0360e31b81529091506001600160a01b0384169063a76ee018906110c6908890859060ff90600401612d6d565b600060405180830381600087803b1580156110e057600080fd5b505af11580156110f4573d6000803e3d6000fd5b505050505050505050565b60008061110c606e6114b9565b915091506000816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015611150573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111749190612cd1565b835160405163242bdc1960e21b81526001600160601b0382166004820152919250906000906001600160a01b038416906390af70649060240161024060405180830381865afa1580156111cb573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111ef9190612dd5565b60a0810188905260c081018790526040516354e750a160e11b81529091506001600160a01b0385169063a9cea14290611231908590859060ff90600401612fed565b600060405180830381600087803b15801561124b57600080fd5b505af115801561125f573d6000803e3d6000fd5b5050505050505050505050565b6000806112816001546001600160a01b031690565b6001600160a01b031663d39e604360285b61129a611333565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa1580156112df573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113039190612cd1565b92915050565b60008061131e6001546001600160a01b031690565b6001600160a01b031663d39e60436046611292565b604051632392b61b60e21b81526003600482015260009073__$9dab98ad7ae1a426029e5739f922230a41$__90638e4ad86c90602401602060405180830381865af4158015611386573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061050f919061301d565b6113b261175b565b61143282836001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa1580156113f4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114189190612a3c565b603c600085604051806020016040528060008152506108fc565b610de8637b6a51fd60e01b6108cf565b61144a61175b565b61145381610cdf565b61145b610ad5565b6001600160a01b0382166114825760405163f17ef42d60e01b815260040160405180910390fd5b5060008051602061310c83398151915280546001600160601b0316600160601b6001600160a01b0390931692909202919091179055565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a0820183905260c082015260015490919081906001600160a01b03166040516308b09a5f60e41b81523360048201529091506001600160a01b03821690638b09a5f090602401600060405180830381865afa158015611548573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526115709190810190612bff565b925061158683604001518560ff90811691161490565b6115c85760405162461bcd60e51b815260206004820152601360248201527213d0929150d517d516541157d2539590531251606a1b6044820152606401610783565b60208301516040516305247a1760e51b81526001600160601b0390911660048201526000906001600160a01b0383169063a48f42e090602401600060405180830381865afa15801561161e573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526116469190810190612bff565b6080015190508092506000836001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561168f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116b39190612cd1565b6080860151604051629b7b3560e61b81526001600160a01b0391821660048201529192508216906326decd4090602401602060405180830381865afa158015611700573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117249190612a14565b1561175357608085015160405163d53987e560e01b81526001600160a01b039091166004820152602401610783565b505050915091565b60008051602061312c83398151915254600160401b900460ff1661179257604051631afcd79f60e31b815260040160405180910390fd5b565b6101a961175b565b6040516368aebf7b60e01b8152610190600482015260009073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__906368aebf7b90602401602060405180830381865af41580156117f0573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061050f9190612b7c565b60003381808061182c6001546001600160a01b031690565b604051636939560f60e11b81526001600160a01b038a81166004830152919091169063d272ac1e90602401602060405180830381865afa158015611874573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118989190612a3c565b6040516330b8415f60e01b81526001600160601b038216600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af41580156118f3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119179190612a14565b1561194e5760405162b8422b60e71b81526001600160a01b03891660048201526001600160601b0382166024820152604401610783565b6040516301ffc9a760e01b8152639bdd1ccd60e01b60048201528895506001600160a01b038616906301ffc9a790602401602060405180830381865afa15801561199c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119c09190612a14565b6119e8576040516359bff0e360e11b81526001600160a01b0389166004820152602401610783565b6000856001600160a01b0316630fec111c6040518163ffffffff1660e01b8152600401600060405180830381865afa158015611a28573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611a509190810190612bff565b9050611a6781604001518960ff9081169116141590565b15611aa7576040808201519051634a2e948760e11b81526001600160a01b038b16600482015260ff808b1660248301529091166044820152606401610783565b60a08101516001600160a01b0386811690821614611af95760a0820151604051632b50a20960e21b81526001600160a01b03808d16600483015291821660248201529087166044820152606401610783565b81602001519350611b0984612408565b94506000611b15611309565b60405163081deaed60e11b81526001600160a01b0389811660048301526001600160401b038c1660248301528881166044830152919091169063103bd5da90606401602060405180830381865afa158015611b74573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b989190612a14565b905080611be157604051636af540d960e01b81526001600160601b03861660048201526001600160401b038a1660248201526001600160a01b0388166044820152606401610783565b5050505093509350935093565b60606000836001600160a01b031663c200b8096040518163ffffffff1660e01b815260040161024060405180830381865afa158015611c31573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c559190612dd5565b90506000611c6b6001546001600160a01b031690565b60408084015190516305247a1760e51b81526001600160601b0390911660048201526001600160a01b03919091169063a48f42e090602401600060405180830381865afa158015611cc0573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611ce89190810190612bff565b6080015190506000611d026001546001600160a01b031690565b60608401516040516305247a1760e51b81526001600160601b0390911660048201526001600160a01b03919091169063a48f42e090602401600060405180830381865afa158015611d57573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611d7f9190810190612bff565b6080015160405163054cb8d160e31b81526001600160601b03871660048201529091506001600160a01b03831690632a65c68890602401600060405180830381600087803b158015611dd057600080fd5b505af1158015611de4573d6000803e3d6000fd5b505060405163054cb8d160e31b81526001600160601b03881660048201526001600160a01b0384169250632a65c6889150602401600060405180830381600087803b158015611e3257600080fd5b505af1158015611e46573d6000803e3d6000fd5b505060405163054cb8d160e31b81526001600160601b03881660048201526001600160a01b0389169250632a65c6889150602401600060405180830381600087803b158015611e9457600080fd5b505af1158015611ea8573d6000803e3d6000fd5b50505050856001600160a01b031663138461e06040518163ffffffff1660e01b8152600401600060405180830381600087803b158015611ee757600080fd5b505af1158015611efb573d6000803e3d6000fd5b50505050866001600160a01b03166391ff6eaa86886001600160a01b031663c200b8096040518163ffffffff1660e01b815260040161024060405180830381865afa158015611f4e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f729190612dd5565b6040518363ffffffff1660e01b8152600401611f8f92919061303a565b600060405180830381600087803b158015611fa957600080fd5b505af1158015611fbd573d6000803e3d6000fd5b50505050611fc9611309565b6001600160a01b03166335241c06611fe96001546001600160a01b031690565b604051636939560f60e11b81526001600160a01b038b81166004830152919091169063d272ac1e90602401602060405180830381865afa158015612031573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120559190612a3c565b88896001600160a01b03166317d7de7c6040518163ffffffff1660e01b8152600401600060405180830381865afa158015612094573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526120bc9190810190613058565b6040518463ffffffff1660e01b81526004016120da939291906130a0565b600060405180830381600087803b1580156120f457600080fd5b505af1158015612108573d6000803e3d6000fd5b50505050612114611309565b6001600160a01b0316632ad73641886001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa158015612160573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121849190612a3c565b88896001600160a01b03166317d7de7c6040518163ffffffff1660e01b8152600401600060405180830381865afa1580156121c3573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526121eb9190810190613058565b6040518463ffffffff1660e01b8152600401612209939291906130a0565b600060405180830381600087803b15801561222357600080fd5b505af1158015612237573d6000803e3d6000fd5b505050505050509392505050565b60008051602061312c8339815191528054600160401b810460ff1615906001600160401b03166000811580156122785750825b90506000826001600160401b031660011480156122945750303b155b9050811580156122a2575080155b156122c05760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff1916600117855583156122ea57845460ff60401b1916600160401b1785555b6000808780602001905181019061230191906130dc565b9092509050612310828a6113aa565b6001546001600160a01b031663d39e6043608c61232b611333565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa158015612370573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123949190612cd1565b600280546001600160a01b0319166001600160a01b03929092169190911790556123c46308bcea6160e01b6108cf565b50508315610cd657845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d290602001610ccd565b60008061241d6001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03851660048201526001600160a01b03919091169063a48f42e090602401600060405180830381865afa15801561246c573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526124949190810190612bff565b608001519392505050565b6000602082840312156124b157600080fd5b81356001600160e01b0319811681146124c957600080fd5b9392505050565b80356001600160c01b0319811681146124e857600080fd5b919050565b634e487b7160e01b600052604160045260246000fd5b604080519081016001600160401b0381118282101715612525576125256124ed565b60405290565b60405160e081016001600160401b0381118282101715612525576125256124ed565b60405161018081016001600160401b0381118282101715612525576125256124ed565b604051601f8201601f191681016001600160401b0381118282101715612598576125986124ed565b604052919050565b60006001600160401b038211156125b9576125b96124ed565b50601f01601f191660200190565b600082601f8301126125d857600080fd5b81356125eb6125e6826125a0565b612570565b81815284602083860101111561260057600080fd5b816020850160208301376000918101602001919091529392505050565b6000806040838503121561263057600080fd5b612639836124d0565b915060208301356001600160401b0381111561265457600080fd5b612660858286016125c7565b9150509250929050565b60005b8381101561268557818101518382015260200161266d565b50506000910152565b600081518084526126a681602086016020860161266a565b601f01601f19169290920160200192915050565b6020815260006001600160601b038084511660208401528060208501511660408401525060ff604084015116606083015260608301511515608083015260018060a01b0360808401511660a083015260a083015161272360c08401826001600160a01b03169052565b5060c083015160e08084015261273d61010084018261268e565b949350505050565b6001600160a01b0381168114610dea57600080fd5b6001600160601b0381168114610dea57600080fd5b60ff81168114610dea57600080fd5b8015158114610dea57600080fd5b60008060008060008060c087890312156127a557600080fd5b86356127b081612745565b955060208701356127c08161275a565b945060408701356127d08161276f565b935060608701356127e08161277e565b925060808701356127f081612745565b915060a08701356001600160401b0381111561280b57600080fd5b61281789828a016125c7565b9150509295509295509295565b60006020828403121561283657600080fd5b81356001600160401b0381111561284c57600080fd5b61273d848285016125c7565b60006020828403121561286a57600080fd5b81356124c981612745565b6000806040838503121561288857600080fd5b823561263981612745565b600080604083850312156128a657600080fd5b6128af836124d0565b915060208301356128bf8161276f565b809150509250929050565b6000604082840312156128dc57600080fd5b6128e4612503565b9050813581526020820135602082015292915050565b6000806080838503121561290d57600080fd5b61291784846128ca565b915061292684604085016128ca565b90509250929050565b6000806040838503121561294257600080fd5b823561294d81612745565b915060208301356128bf81612745565b6001600160601b038151168252600060208201516040602085015261273d604085018261268e565b6001600160401b0360c01b8316815260406020820152600061273d604083018461295d565b6000602082840312156129bc57600080fd5b815162ffffff811681146124c957600080fd5b600181811c908216806129e357607f821691505b602082108103612a0357634e487b7160e01b600052602260045260246000fd5b50919050565b80516124e88161277e565b600060208284031215612a2657600080fd5b81516124c98161277e565b80516124e88161275a565b600060208284031215612a4e57600080fd5b81516124c98161275a565b601f821115612aa357600081815260208120601f850160051c81016020861015612a805750805b601f850160051c820191505b81811015612a9f57828155600101612a8c565b5050505b505050565b81516001600160401b03811115612ac157612ac16124ed565b612ad581612acf84546129cf565b84612a59565b602080601f831160018114612b0a5760008415612af25750858301515b600019600386901b1c1916600185901b178555612a9f565b600085815260208120601f198616915b82811015612b3957888601518255948401946001909101908401612b1a565b5085821015612b575787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6001600160401b0381168114610dea57600080fd5b600060208284031215612b8e57600080fd5b81516124c981612b67565b80516124e88161276f565b80516124e881612745565b6000612bbd6125e6846125a0565b9050828152838383011115612bd157600080fd5b6124c983602083018461266a565b600082601f830112612bf057600080fd5b6124c983835160208501612baf565b600060208284031215612c1157600080fd5b81516001600160401b0380821115612c2857600080fd5b9083019060e08286031215612c3c57600080fd5b612c4461252b565b612c4d83612a31565b8152612c5b60208401612a31565b6020820152612c6c60408401612b99565b6040820152612c7d60608401612a09565b6060820152612c8e60808401612ba4565b6080820152612c9f60a08401612ba4565b60a082015260c083015182811115612cb657600080fd5b612cc287828601612bdf565b60c08301525095945050505050565b600060208284031215612ce357600080fd5b81516124c981612745565b600060208284031215612d0057600080fd5b81516001600160401b0380821115612d1757600080fd5b9083019060408286031215612d2b57600080fd5b612d33612503565b8251612d3e8161275a565b8152602083015182811115612d5257600080fd5b612d5e87828601612bdf565b60208301525095945050505050565b6001600160401b0360c01b84168152606060208201526000612d92606083018561295d565b905060ff83166040830152949350505050565b600060408284031215612db757600080fd5b612dbf612503565b9050815181526020820151602082015292915050565b60006102408284031215612de857600080fd5b612df061254d565b612df983612ba4565b8152612e0760208401612ba4565b6020820152612e1860408401612a31565b6040820152612e2960608401612a31565b6060820152612e3b8460808501612da5565b6080820152612e4d8460c08501612da5565b60a0820152610100612e6185828601612da5565b60c0830152610140612e7586828701612da5565b60e0840152612e88866101808701612da5565b82840152612e9a866101c08701612da5565b610120840152612ead6102008601612a09565b9083015250612ebf6102208401612ba4565b6101608201529392505050565b80516001600160a01b031682526020810151612ef360208401826001600160a01b03169052565b506040810151612f0e60408401826001600160601b03169052565b506060810151612f2960608401826001600160601b03169052565b506080810151612f46608084018280518252602090810151910152565b5060a0810151805160c0840152602081015160e08401525060c0810151610100612f7c8185018380518252602090810151910152565b60e08301519150610140612f9c8186018480518252602090810151910152565b9083015180516101808601526020908101516101a086015261012084015180516101c087015201516101e085015282015115156102008401525061016001516001600160a01b031661022090910152565b6001600160601b0384168152610280810161300b6020830185612ecc565b60ff8316610260830152949350505050565b60006020828403121561302f57600080fd5b81516124c98161276f565b6001600160601b038316815261026081016124c96020830184612ecc565b60006020828403121561306a57600080fd5b81516001600160401b0381111561308057600080fd5b8201601f8101841361309157600080fd5b61273d84825160208401612baf565b6001600160601b03841681526001600160a01b03831660208201526060604082018190526000906130d39083018461268e565b95945050505050565b600080604083850312156130ef57600080fd5b82516130fa81612745565b60208401519092506128bf8161274556fe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00a26469706673582212203cef4a7224681d7dd6fe9ace459ed39ae31539925d6d7871781a26ca7864c02a64736f6c63430008140033",
677
+ "deployedBytecode": "0x608060405234801561001057600080fd5b50600436106101a95760003560e01c8063644c45e0116100f9578063b6b412ba11610097578063cde749f411610071578063cde749f4146103c3578063ea866572146103cb578063f21de1e8146102f2578063f7c34ee0146103de57600080fd5b8063b6b412ba146103a0578063caf4e3d4146103b3578063cc9fc59a146103bb57600080fd5b8063893d20e8116100d3578063893d20e81461035b5780638f997f6d14610363578063ada9652e14610376578063b68d18091461038b57600080fd5b8063644c45e014610317578063675393bf146103355780637cef48421461034857600080fd5b8063214cdb801161016657806336fc697e1161014057806336fc697e146102ac5780634420e486146102b457806349bb9e4b146102df5780635ab1bd53146102f257600080fd5b8063214cdb801461027357806327bb7a3314610286578063329d6e741461029957600080fd5b806301ffc9a7146101ae578063095e2b72146101f05780630d8e6e2c146102055780630fec111c14610221578063138461e0146102365780631eff4b221461023e575b600080fd5b6101db6101bc36600461249f565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b6102036101fe36600461261d565b6103f1565b005b61020d61048a565b60405162ffffff90911681526020016101e7565b610229610514565b6040516101e791906126ba565b6102036106c8565b6102657f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b6040519081526020016101e7565b61020361028136600461249f565b6108cf565b61020361029436600461278c565b6108fc565b6102036102a7366004612824565b610988565b610203610ad5565b6102c76102c2366004612858565b610b1b565b6040516001600160601b0390911681526020016101e7565b6102036102ed366004612875565b610be0565b6001546001600160a01b03165b6040516001600160a01b0390911681526020016101e7565b60008051602061310c833981519152546001600160601b03166102c7565b610203610343366004612858565b610cdf565b610203610356366004612893565b610ded565b6102ff610e65565b61020361037136600461261d565b610f9c565b61026560008051602061310c83398151915281565b606e5b60405160ff90911681526020016101e7565b6102036103ae3660046128fa565b6110ff565b6102ff61126c565b6102ff611309565b61038e611333565b6102036103d936600461292f565b6113aa565b6102036103ec36600461292f565b611442565b6000806103fe606e6114b9565b81516040805180820182526001600160601b03831681526020810188905290516317b0844560e11b8152939550919350916001600160a01b03841690632f61088a906104509089908590600401612985565b600060405180830381600087803b15801561046a57600080fd5b505af115801561047e573d6000803e3d6000fd5b50505050505050505050565b604051632efe011360e01b815260036004820152600060248201819052604482018190529073__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__90632efe011390606401602060405180830381865af41580156104eb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061050f91906129aa565b905090565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a082019290925260c081019190915260007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa3006040805160808101825282546001600160601b038116825260ff600160601b820481166020840152600160681b909104161515918101919091526001820180549192916060840191906105c4906129cf565b80601f01602080910402602001604051908101604052809291908181526020018280546105f0906129cf565b801561063d5780601f106106125761010080835404028352916020019161063d565b820191906000526020600020905b81548152906001019060200180831161062057829003601f168201915b50505050508152505090506040518060e0016040528061065b600090565b6001600160601b0316815260200182600001516001600160601b03168152602001826020015160ff168152602001826040015115158152602001306001600160a01b031681526020016106ac610e65565b6001600160a01b03168152602001826060015181525091505090565b600060008051602061310c83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015610737573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061075b9190612a14565b1561078c5780546040516301ab8b6760e21b81526001600160601b0390911660048201526024015b60405180910390fd5b3061079f6001546001600160a01b031690565b60405163c3c5a54760e01b81526001600160a01b038381166004830152919091169063c3c5a54790602401602060405180830381865afa1580156107e7573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061080b9190612a14565b6108335760405163b9304b0d60e01b81526001600160a01b0382166004820152602401610783565b6001546001600160a01b0316604051636939560f60e11b81526001600160a01b038381166004830152919091169063d272ac1e90602401602060405180830381865afa158015610887573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108ab9190612a3c565b82546bffffffffffffffffffffffff19166001600160601b03919091161790915550565b6108d761175b565b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b61090461175b565b61090e8287611442565b60007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0388166cffffffffffffffffffffffffff1990911617600160601b60ff8816021760ff60681b1916600160681b8615150217815590506001810161097e8382612aa8565b5050505050505050565b73__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__63a123b37c6109aa61048a565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af41580156109ea573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a0e9190612b7c565b60008051602061312c8339815191528054600160401b900460ff1680610a41575080546001600160401b03808416911610155b15610a5f5760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b178155610a8983611794565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a1505050565b610add61175b565b6301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b600080808080610b3486606e610b2f61179c565b611814565b92965090945092509050856000610b4961126c565b604051635d96628960e01b81526001600160a01b03848116600483015287811660248301529190911690635d966289906044016000604051808303816000875af1158015610b9b573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610bc39190810190612bff565b805197509050610bd4848389611bee565b50505050505050919050565b60008051602061312c8339815191528054600160401b810460ff1615906001600160401b0316600081158015610c135750825b90506000826001600160401b03166001148015610c2f5750303b155b905081158015610c3d575080155b15610c5b5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315610c8557845460ff60401b1916600160401b1785555b610c8f8787612245565b8315610cd657845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020015b60405180910390a15b50505050505050565b610ce761175b565b806001600160a01b03163b600003610d1d5760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610783565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b815263230c0c8160e11b60048201526301ffc9a790602401602060405180830381865afa925050508015610d97575060408051601f3d908101601f19168201909252610d9491810190612a14565b60015b610dbf5760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610783565b80610de85760405163fdeac91f60e01b81526001600160a01b0383166004820152602401610783565b505b50565b6000610df9606e6114b9565b604051633e77a42160e11b81526001600160c01b03198616600482015260ff851660248201529092506001600160a01b0383169150637cef484290604401600060405180830381600087803b158015610e5157600080fd5b505af1158015610cd6573d6000803e3d6000fd5b60008060008051602061310c83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015610ed5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ef99190612a14565b15610f86576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015610f5c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f809190612cd1565b91505090565b54600160601b90046001600160a01b0316919050565b6000610fa8606e6114b9565b9150506000816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015610feb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061100f9190612cd1565b60405163887b1fa960e01b81526001600160c01b0319861660048201529091506000906001600160a01b0383169063887b1fa990602401600060405180830381865afa158015611063573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261108b9190810190612cee565b602081018590526040516314eddc0360e31b81529091506001600160a01b0384169063a76ee018906110c6908890859060ff90600401612d6d565b600060405180830381600087803b1580156110e057600080fd5b505af11580156110f4573d6000803e3d6000fd5b505050505050505050565b60008061110c606e6114b9565b915091506000816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015611150573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111749190612cd1565b835160405163242bdc1960e21b81526001600160601b0382166004820152919250906000906001600160a01b038416906390af70649060240161024060405180830381865afa1580156111cb573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111ef9190612dd5565b60a0810188905260c081018790526040516354e750a160e11b81529091506001600160a01b0385169063a9cea14290611231908590859060ff90600401612fed565b600060405180830381600087803b15801561124b57600080fd5b505af115801561125f573d6000803e3d6000fd5b5050505050505050505050565b6000806112816001546001600160a01b031690565b6001600160a01b031663d39e604360285b61129a611333565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa1580156112df573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113039190612cd1565b92915050565b60008061131e6001546001600160a01b031690565b6001600160a01b031663d39e60436046611292565b604051632392b61b60e21b81526003600482015260009073__$9dab98ad7ae1a426029e5739f922230a41$__90638e4ad86c90602401602060405180830381865af4158015611386573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061050f919061301d565b6113b261175b565b61143282836001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa1580156113f4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114189190612a3c565b603c600085604051806020016040528060008152506108fc565b610de8637b6a51fd60e01b6108cf565b61144a61175b565b61145381610cdf565b61145b610ad5565b6001600160a01b0382166114825760405163f17ef42d60e01b815260040160405180910390fd5b5060008051602061310c83398151915280546001600160601b0316600160601b6001600160a01b0390931692909202919091179055565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a0820183905260c082015260015490919081906001600160a01b03166040516308b09a5f60e41b81523360048201529091506001600160a01b03821690638b09a5f090602401600060405180830381865afa158015611548573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526115709190810190612bff565b925061158683604001518560ff90811691161490565b6115c85760405162461bcd60e51b815260206004820152601360248201527213d0929150d517d516541157d2539590531251606a1b6044820152606401610783565b60208301516040516305247a1760e51b81526001600160601b0390911660048201526000906001600160a01b0383169063a48f42e090602401600060405180830381865afa15801561161e573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526116469190810190612bff565b6080015190508092506000836001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561168f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116b39190612cd1565b6080860151604051629b7b3560e61b81526001600160a01b0391821660048201529192508216906326decd4090602401602060405180830381865afa158015611700573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117249190612a14565b1561175357608085015160405163d53987e560e01b81526001600160a01b039091166004820152602401610783565b505050915091565b60008051602061312c83398151915254600160401b900460ff1661179257604051631afcd79f60e31b815260040160405180910390fd5b565b6101a961175b565b6040516368aebf7b60e01b8152610190600482015260009073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__906368aebf7b90602401602060405180830381865af41580156117f0573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061050f9190612b7c565b60003381808061182c6001546001600160a01b031690565b604051636939560f60e11b81526001600160a01b038a81166004830152919091169063d272ac1e90602401602060405180830381865afa158015611874573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118989190612a3c565b6040516330b8415f60e01b81526001600160601b038216600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af41580156118f3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119179190612a14565b1561194e5760405162b8422b60e71b81526001600160a01b03891660048201526001600160601b0382166024820152604401610783565b6040516301ffc9a760e01b8152639bdd1ccd60e01b60048201528895506001600160a01b038616906301ffc9a790602401602060405180830381865afa15801561199c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119c09190612a14565b6119e8576040516359bff0e360e11b81526001600160a01b0389166004820152602401610783565b6000856001600160a01b0316630fec111c6040518163ffffffff1660e01b8152600401600060405180830381865afa158015611a28573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611a509190810190612bff565b9050611a6781604001518960ff9081169116141590565b15611aa7576040808201519051634a2e948760e11b81526001600160a01b038b16600482015260ff808b1660248301529091166044820152606401610783565b60a08101516001600160a01b0386811690821614611af95760a0820151604051632b50a20960e21b81526001600160a01b03808d16600483015291821660248201529087166044820152606401610783565b81602001519350611b0984612408565b94506000611b15611309565b60405163081deaed60e11b81526001600160a01b0389811660048301526001600160401b038c1660248301528881166044830152919091169063103bd5da90606401602060405180830381865afa158015611b74573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b989190612a14565b905080611be157604051636af540d960e01b81526001600160601b03861660048201526001600160401b038a1660248201526001600160a01b0388166044820152606401610783565b5050505093509350935093565b60606000836001600160a01b031663c200b8096040518163ffffffff1660e01b815260040161024060405180830381865afa158015611c31573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c559190612dd5565b90506000611c6b6001546001600160a01b031690565b60408084015190516305247a1760e51b81526001600160601b0390911660048201526001600160a01b03919091169063a48f42e090602401600060405180830381865afa158015611cc0573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611ce89190810190612bff565b6080015190506000611d026001546001600160a01b031690565b60608401516040516305247a1760e51b81526001600160601b0390911660048201526001600160a01b03919091169063a48f42e090602401600060405180830381865afa158015611d57573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611d7f9190810190612bff565b6080015160405163054cb8d160e31b81526001600160601b03871660048201529091506001600160a01b03831690632a65c68890602401600060405180830381600087803b158015611dd057600080fd5b505af1158015611de4573d6000803e3d6000fd5b505060405163054cb8d160e31b81526001600160601b03881660048201526001600160a01b0384169250632a65c6889150602401600060405180830381600087803b158015611e3257600080fd5b505af1158015611e46573d6000803e3d6000fd5b505060405163054cb8d160e31b81526001600160601b03881660048201526001600160a01b0389169250632a65c6889150602401600060405180830381600087803b158015611e9457600080fd5b505af1158015611ea8573d6000803e3d6000fd5b50505050856001600160a01b031663138461e06040518163ffffffff1660e01b8152600401600060405180830381600087803b158015611ee757600080fd5b505af1158015611efb573d6000803e3d6000fd5b50505050866001600160a01b03166391ff6eaa86886001600160a01b031663c200b8096040518163ffffffff1660e01b815260040161024060405180830381865afa158015611f4e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f729190612dd5565b6040518363ffffffff1660e01b8152600401611f8f92919061303a565b600060405180830381600087803b158015611fa957600080fd5b505af1158015611fbd573d6000803e3d6000fd5b50505050611fc9611309565b6001600160a01b03166335241c06611fe96001546001600160a01b031690565b604051636939560f60e11b81526001600160a01b038b81166004830152919091169063d272ac1e90602401602060405180830381865afa158015612031573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120559190612a3c565b88896001600160a01b03166317d7de7c6040518163ffffffff1660e01b8152600401600060405180830381865afa158015612094573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526120bc9190810190613058565b6040518463ffffffff1660e01b81526004016120da939291906130a0565b600060405180830381600087803b1580156120f457600080fd5b505af1158015612108573d6000803e3d6000fd5b50505050612114611309565b6001600160a01b0316632ad73641886001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa158015612160573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121849190612a3c565b88896001600160a01b03166317d7de7c6040518163ffffffff1660e01b8152600401600060405180830381865afa1580156121c3573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526121eb9190810190613058565b6040518463ffffffff1660e01b8152600401612209939291906130a0565b600060405180830381600087803b15801561222357600080fd5b505af1158015612237573d6000803e3d6000fd5b505050505050509392505050565b60008051602061312c8339815191528054600160401b810460ff1615906001600160401b03166000811580156122785750825b90506000826001600160401b031660011480156122945750303b155b9050811580156122a2575080155b156122c05760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff1916600117855583156122ea57845460ff60401b1916600160401b1785555b6000808780602001905181019061230191906130dc565b9092509050612310828a6113aa565b6001546001600160a01b031663d39e6043608c61232b611333565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa158015612370573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123949190612cd1565b600280546001600160a01b0319166001600160a01b03929092169190911790556123c46308bcea6160e01b6108cf565b50508315610cd657845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d290602001610ccd565b60008061241d6001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03851660048201526001600160a01b03919091169063a48f42e090602401600060405180830381865afa15801561246c573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526124949190810190612bff565b608001519392505050565b6000602082840312156124b157600080fd5b81356001600160e01b0319811681146124c957600080fd5b9392505050565b80356001600160c01b0319811681146124e857600080fd5b919050565b634e487b7160e01b600052604160045260246000fd5b604080519081016001600160401b0381118282101715612525576125256124ed565b60405290565b60405160e081016001600160401b0381118282101715612525576125256124ed565b60405161018081016001600160401b0381118282101715612525576125256124ed565b604051601f8201601f191681016001600160401b0381118282101715612598576125986124ed565b604052919050565b60006001600160401b038211156125b9576125b96124ed565b50601f01601f191660200190565b600082601f8301126125d857600080fd5b81356125eb6125e6826125a0565b612570565b81815284602083860101111561260057600080fd5b816020850160208301376000918101602001919091529392505050565b6000806040838503121561263057600080fd5b612639836124d0565b915060208301356001600160401b0381111561265457600080fd5b612660858286016125c7565b9150509250929050565b60005b8381101561268557818101518382015260200161266d565b50506000910152565b600081518084526126a681602086016020860161266a565b601f01601f19169290920160200192915050565b6020815260006001600160601b038084511660208401528060208501511660408401525060ff604084015116606083015260608301511515608083015260018060a01b0360808401511660a083015260a083015161272360c08401826001600160a01b03169052565b5060c083015160e08084015261273d61010084018261268e565b949350505050565b6001600160a01b0381168114610dea57600080fd5b6001600160601b0381168114610dea57600080fd5b60ff81168114610dea57600080fd5b8015158114610dea57600080fd5b60008060008060008060c087890312156127a557600080fd5b86356127b081612745565b955060208701356127c08161275a565b945060408701356127d08161276f565b935060608701356127e08161277e565b925060808701356127f081612745565b915060a08701356001600160401b0381111561280b57600080fd5b61281789828a016125c7565b9150509295509295509295565b60006020828403121561283657600080fd5b81356001600160401b0381111561284c57600080fd5b61273d848285016125c7565b60006020828403121561286a57600080fd5b81356124c981612745565b6000806040838503121561288857600080fd5b823561263981612745565b600080604083850312156128a657600080fd5b6128af836124d0565b915060208301356128bf8161276f565b809150509250929050565b6000604082840312156128dc57600080fd5b6128e4612503565b9050813581526020820135602082015292915050565b6000806080838503121561290d57600080fd5b61291784846128ca565b915061292684604085016128ca565b90509250929050565b6000806040838503121561294257600080fd5b823561294d81612745565b915060208301356128bf81612745565b6001600160601b038151168252600060208201516040602085015261273d604085018261268e565b6001600160401b0360c01b8316815260406020820152600061273d604083018461295d565b6000602082840312156129bc57600080fd5b815162ffffff811681146124c957600080fd5b600181811c908216806129e357607f821691505b602082108103612a0357634e487b7160e01b600052602260045260246000fd5b50919050565b80516124e88161277e565b600060208284031215612a2657600080fd5b81516124c98161277e565b80516124e88161275a565b600060208284031215612a4e57600080fd5b81516124c98161275a565b601f821115612aa357600081815260208120601f850160051c81016020861015612a805750805b601f850160051c820191505b81811015612a9f57828155600101612a8c565b5050505b505050565b81516001600160401b03811115612ac157612ac16124ed565b612ad581612acf84546129cf565b84612a59565b602080601f831160018114612b0a5760008415612af25750858301515b600019600386901b1c1916600185901b178555612a9f565b600085815260208120601f198616915b82811015612b3957888601518255948401946001909101908401612b1a565b5085821015612b575787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6001600160401b0381168114610dea57600080fd5b600060208284031215612b8e57600080fd5b81516124c981612b67565b80516124e88161276f565b80516124e881612745565b6000612bbd6125e6846125a0565b9050828152838383011115612bd157600080fd5b6124c983602083018461266a565b600082601f830112612bf057600080fd5b6124c983835160208501612baf565b600060208284031215612c1157600080fd5b81516001600160401b0380821115612c2857600080fd5b9083019060e08286031215612c3c57600080fd5b612c4461252b565b612c4d83612a31565b8152612c5b60208401612a31565b6020820152612c6c60408401612b99565b6040820152612c7d60608401612a09565b6060820152612c8e60808401612ba4565b6080820152612c9f60a08401612ba4565b60a082015260c083015182811115612cb657600080fd5b612cc287828601612bdf565b60c08301525095945050505050565b600060208284031215612ce357600080fd5b81516124c981612745565b600060208284031215612d0057600080fd5b81516001600160401b0380821115612d1757600080fd5b9083019060408286031215612d2b57600080fd5b612d33612503565b8251612d3e8161275a565b8152602083015182811115612d5257600080fd5b612d5e87828601612bdf565b60208301525095945050505050565b6001600160401b0360c01b84168152606060208201526000612d92606083018561295d565b905060ff83166040830152949350505050565b600060408284031215612db757600080fd5b612dbf612503565b9050815181526020820151602082015292915050565b60006102408284031215612de857600080fd5b612df061254d565b612df983612ba4565b8152612e0760208401612ba4565b6020820152612e1860408401612a31565b6040820152612e2960608401612a31565b6060820152612e3b8460808501612da5565b6080820152612e4d8460c08501612da5565b60a0820152610100612e6185828601612da5565b60c0830152610140612e7586828701612da5565b60e0840152612e88866101808701612da5565b82840152612e9a866101c08701612da5565b610120840152612ead6102008601612a09565b9083015250612ebf6102208401612ba4565b6101608201529392505050565b80516001600160a01b031682526020810151612ef360208401826001600160a01b03169052565b506040810151612f0e60408401826001600160601b03169052565b506060810151612f2960608401826001600160601b03169052565b506080810151612f46608084018280518252602090810151910152565b5060a0810151805160c0840152602081015160e08401525060c0810151610100612f7c8185018380518252602090810151910152565b60e08301519150610140612f9c8186018480518252602090810151910152565b9083015180516101808601526020908101516101a086015261012084015180516101c087015201516101e085015282015115156102008401525061016001516001600160a01b031661022090910152565b6001600160601b0384168152610280810161300b6020830185612ecc565b60ff8316610260830152949350505050565b60006020828403121561302f57600080fd5b81516124c98161276f565b6001600160601b038316815261026081016124c96020830184612ecc565b60006020828403121561306a57600080fd5b81516001600160401b0381111561308057600080fd5b8201601f8101841361309157600080fd5b61273d84825160208401612baf565b6001600160601b03841681526001600160a01b03831660208201526060604082018190526000906130d39083018461268e565b95945050505050565b600080604083850312156130ef57600080fd5b82516130fa81612745565b60208401519092506128bf8161274556fe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00a26469706673582212203cef4a7224681d7dd6fe9ace459ed39ae31539925d6d7871781a26ca7864c02a64736f6c63430008140033",
678
+ "linkReferences": {
679
+ "contracts/types/NftId.sol": {
680
+ "NftIdLib": [
681
+ {
682
+ "length": 20,
683
+ "start": 2019
684
+ },
685
+ {
686
+ "length": 20,
687
+ "start": 3969
688
+ },
689
+ {
690
+ "length": 20,
691
+ "start": 6559
692
+ }
693
+ ]
694
+ },
695
+ "contracts/types/RoleId.sol": {
696
+ "RoleIdLib": [
697
+ {
698
+ "length": 20,
699
+ "start": 6300
700
+ }
701
+ ]
702
+ },
703
+ "contracts/types/Version.sol": {
704
+ "VersionLib": [
705
+ {
706
+ "length": 20,
707
+ "start": 1431
708
+ },
709
+ {
710
+ "length": 20,
711
+ "start": 2672
712
+ }
713
+ ],
714
+ "VersionPartLib": [
715
+ {
716
+ "length": 20,
717
+ "start": 5170
718
+ }
719
+ ]
720
+ }
721
+ },
722
+ "deployedLinkReferences": {
723
+ "contracts/types/NftId.sol": {
724
+ "NftIdLib": [
725
+ {
726
+ "length": 20,
727
+ "start": 1789
728
+ },
729
+ {
730
+ "length": 20,
731
+ "start": 3739
732
+ },
733
+ {
734
+ "length": 20,
735
+ "start": 6329
736
+ }
737
+ ]
738
+ },
739
+ "contracts/types/RoleId.sol": {
740
+ "RoleIdLib": [
741
+ {
742
+ "length": 20,
743
+ "start": 6070
744
+ }
745
+ ]
746
+ },
747
+ "contracts/types/Version.sol": {
748
+ "VersionLib": [
749
+ {
750
+ "length": 20,
751
+ "start": 1201
752
+ },
753
+ {
754
+ "length": 20,
755
+ "start": 2442
756
+ }
757
+ ],
758
+ "VersionPartLib": [
759
+ {
760
+ "length": 20,
761
+ "start": 4940
762
+ }
763
+ ]
764
+ }
765
+ }
766
+ }