@etherisc/gif-next 0.0.2-f752d2a-551 → 0.0.2-f7b8c9f-436

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