@etherisc/gif-next 0.0.2-ebbe63d → 0.0.2-ec436bf-674

Sign up to get free protection for your applications and to get access to all the features.
Files changed (327) hide show
  1. package/README.md +390 -2
  2. package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.dbg.json +4 -0
  3. package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.json +327 -0
  4. package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +4 -0
  5. package/artifacts/contracts/components/Distribution.sol/Distribution.json +618 -0
  6. package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.dbg.json +4 -0
  7. package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.json +280 -0
  8. package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +4 -0
  9. package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.json +152 -0
  10. package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +4 -0
  11. package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +249 -0
  12. package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +4 -0
  13. package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +157 -0
  14. package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +4 -0
  15. package/artifacts/contracts/components/Pool.sol/Pool.json +782 -0
  16. package/artifacts/contracts/components/Product.sol/Product.dbg.json +4 -0
  17. package/artifacts/contracts/components/Product.sol/Product.json +775 -0
  18. package/artifacts/contracts/experiment/cloning/Cloner.sol/Cloner.dbg.json +4 -0
  19. package/artifacts/contracts/experiment/cloning/Cloner.sol/Cloner.json +66 -0
  20. package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock1.dbg.json +4 -0
  21. package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock1.json +24 -0
  22. package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock2.dbg.json +4 -0
  23. package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock2.json +42 -0
  24. package/artifacts/contracts/experiment/errors/Require.sol/Require.dbg.json +4 -0
  25. package/artifacts/contracts/experiment/errors/Require.sol/Require.json +105 -0
  26. package/artifacts/contracts/experiment/errors/Revert.sol/Revert.dbg.json +4 -0
  27. package/artifacts/contracts/experiment/errors/Revert.sol/Revert.json +105 -0
  28. package/artifacts/contracts/experiment/inheritance/A.sol/A.dbg.json +4 -0
  29. package/artifacts/contracts/experiment/inheritance/A.sol/A.json +128 -0
  30. package/artifacts/contracts/experiment/inheritance/A.sol/AShared.dbg.json +4 -0
  31. package/artifacts/contracts/experiment/inheritance/A.sol/AShared.json +42 -0
  32. package/artifacts/contracts/experiment/inheritance/B.sol/B.dbg.json +4 -0
  33. package/artifacts/contracts/experiment/inheritance/B.sol/B.json +76 -0
  34. package/artifacts/contracts/experiment/inheritance/C.sol/C.dbg.json +4 -0
  35. package/artifacts/contracts/experiment/inheritance/C.sol/C.json +89 -0
  36. package/artifacts/contracts/experiment/inheritance/IA.sol/IA.dbg.json +4 -0
  37. package/artifacts/contracts/experiment/inheritance/IA.sol/IA.json +128 -0
  38. package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.dbg.json +4 -0
  39. package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.json +37 -0
  40. package/artifacts/contracts/experiment/inheritance/IB.sol/IB.dbg.json +4 -0
  41. package/artifacts/contracts/experiment/inheritance/IB.sol/IB.json +50 -0
  42. package/artifacts/contracts/experiment/inheritance/IC.sol/IC.dbg.json +4 -0
  43. package/artifacts/contracts/experiment/inheritance/IC.sol/IC.json +63 -0
  44. package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.dbg.json +4 -0
  45. package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.json +59 -0
  46. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.dbg.json +4 -0
  47. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.json +124 -0
  48. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.dbg.json +4 -0
  49. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.json +74 -0
  50. package/artifacts/contracts/experiment/statemachine/SM.sol/SM.dbg.json +4 -0
  51. package/artifacts/contracts/experiment/statemachine/SM.sol/SM.json +124 -0
  52. package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.dbg.json +4 -0
  53. package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.json +207 -0
  54. package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.dbg.json +4 -0
  55. package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.json +10 -0
  56. package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.dbg.json +4 -0
  57. package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.json +10 -0
  58. package/artifacts/contracts/instance/AccessManagedSimple.sol/AccessManagedSimple.dbg.json +4 -0
  59. package/artifacts/contracts/instance/AccessManagedSimple.sol/AccessManagedSimple.json +101 -0
  60. package/artifacts/contracts/instance/AccessManagerSimple.sol/AccessManagerSimple.dbg.json +4 -0
  61. package/artifacts/contracts/instance/AccessManagerSimple.sol/AccessManagerSimple.json +1132 -0
  62. package/artifacts/contracts/instance/IAccessManagerSimple.sol/IAccessManagerSimple.dbg.json +4 -0
  63. package/artifacts/contracts/instance/IAccessManagerSimple.sol/IAccessManagerSimple.json +1082 -0
  64. package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +4 -0
  65. package/artifacts/contracts/instance/IInstance.sol/IInstance.json +753 -0
  66. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +4 -0
  67. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +480 -0
  68. package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +4 -0
  69. package/artifacts/contracts/instance/Instance.sol/Instance.json +3539 -0
  70. package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +4 -0
  71. package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +917 -0
  72. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +4 -0
  73. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +1388 -0
  74. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +4 -0
  75. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +891 -0
  76. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +4 -0
  77. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +492 -0
  78. package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.dbg.json +4 -0
  79. package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.json +540 -0
  80. package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.dbg.json +4 -0
  81. package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.json +113 -0
  82. package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +4 -0
  83. package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.json +429 -0
  84. package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.dbg.json +4 -0
  85. package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.json +115 -0
  86. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +4 -0
  87. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.json +502 -0
  88. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +4 -0
  89. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +169 -0
  90. package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +4 -0
  91. package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +211 -0
  92. package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +4 -0
  93. package/artifacts/contracts/instance/module/IBundle.sol/IBundle.json +10 -0
  94. package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +4 -0
  95. package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.json +10 -0
  96. package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +4 -0
  97. package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.json +10 -0
  98. package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +4 -0
  99. package/artifacts/contracts/instance/module/IRisk.sol/IRisk.json +10 -0
  100. package/artifacts/contracts/instance/module/ISetup.sol/ISetup.dbg.json +4 -0
  101. package/artifacts/contracts/instance/module/ISetup.sol/ISetup.json +10 -0
  102. package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.dbg.json +4 -0
  103. package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.json +10 -0
  104. package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.dbg.json +4 -0
  105. package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.json +827 -0
  106. package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +4 -0
  107. package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +716 -0
  108. package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +4 -0
  109. package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +448 -0
  110. package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.dbg.json +4 -0
  111. package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.json +466 -0
  112. package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +4 -0
  113. package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.json +446 -0
  114. package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +4 -0
  115. package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +561 -0
  116. package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +4 -0
  117. package/artifacts/contracts/instance/service/IProductService.sol/IProductService.json +751 -0
  118. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +4 -0
  119. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +855 -0
  120. package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.dbg.json +4 -0
  121. package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.json +460 -0
  122. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +4 -0
  123. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +771 -0
  124. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +4 -0
  125. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +753 -0
  126. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +4 -0
  127. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +853 -0
  128. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +4 -0
  129. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.json +34 -0
  130. package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +4 -0
  131. package/artifacts/contracts/registry/Registry.sol/Registry.json +947 -0
  132. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +4 -0
  133. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +1237 -0
  134. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +4 -0
  135. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +525 -0
  136. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +4 -0
  137. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +410 -0
  138. package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.dbg.json +4 -0
  139. package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.json +107 -0
  140. package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +4 -0
  141. package/artifacts/contracts/shared/ERC165.sol/ERC165.json +35 -0
  142. package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +4 -0
  143. package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.json +127 -0
  144. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +4 -0
  145. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +201 -0
  146. package/artifacts/contracts/shared/IService.sol/IService.dbg.json +4 -0
  147. package/artifacts/contracts/shared/IService.sol/IService.json +421 -0
  148. package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +4 -0
  149. package/artifacts/contracts/shared/IVersionable.sol/IVersionable.json +205 -0
  150. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +4 -0
  151. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +158 -0
  152. package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +4 -0
  153. package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +349 -0
  154. package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +4 -0
  155. package/artifacts/contracts/shared/Registerable.sol/Registerable.json +274 -0
  156. package/artifacts/contracts/shared/RegisterableUpgradable.sol/RegisterableUpgradable.dbg.json +4 -0
  157. package/artifacts/contracts/shared/RegisterableUpgradable.sol/RegisterableUpgradable.json +442 -0
  158. package/artifacts/contracts/shared/Service.sol/Service.dbg.json +4 -0
  159. package/artifacts/contracts/shared/Service.sol/Service.json +468 -0
  160. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +4 -0
  161. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +96 -0
  162. package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +4 -0
  163. package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +129 -0
  164. package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +4 -0
  165. package/artifacts/contracts/shared/Versionable.sol/Versionable.json +228 -0
  166. package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +4 -0
  167. package/artifacts/contracts/test/TestFee.sol/TestFee.json +119 -0
  168. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +4 -0
  169. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +305 -0
  170. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +4 -0
  171. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +116 -0
  172. package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +4 -0
  173. package/artifacts/contracts/test/TestService.sol/TestService.json +600 -0
  174. package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +4 -0
  175. package/artifacts/contracts/test/TestToken.sol/TestUsdc.json +376 -0
  176. package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +4 -0
  177. package/artifacts/contracts/test/TestVersion.sol/TestVersion.json +218 -0
  178. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +4 -0
  179. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +286 -0
  180. package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +4 -0
  181. package/artifacts/contracts/test/Usdc.sol/USDC.json +376 -0
  182. package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +4 -0
  183. package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.json +10 -0
  184. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +4 -0
  185. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.json +174 -0
  186. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +4 -0
  187. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.json +10 -0
  188. package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.dbg.json +4 -0
  189. package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.json +104 -0
  190. package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +4 -0
  191. package/artifacts/contracts/types/Fee.sol/FeeLib.json +257 -0
  192. package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +4 -0
  193. package/artifacts/contracts/types/Key32.sol/Key32Lib.json +125 -0
  194. package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +4 -0
  195. package/artifacts/contracts/types/NftId.sol/NftIdLib.json +153 -0
  196. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +4 -0
  197. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +10 -0
  198. package/artifacts/contracts/types/NumberId.sol/NumberIdLib.dbg.json +4 -0
  199. package/artifacts/contracts/types/NumberId.sol/NumberIdLib.json +100 -0
  200. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +4 -0
  201. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.json +92 -0
  202. package/artifacts/contracts/types/Referral.sol/ReferralLib.dbg.json +4 -0
  203. package/artifacts/contracts/types/Referral.sol/ReferralLib.json +123 -0
  204. package/artifacts/contracts/types/RiskId.sol/RiskIdLib.dbg.json +4 -0
  205. package/artifacts/contracts/types/RiskId.sol/RiskIdLib.json +86 -0
  206. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +4 -0
  207. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.json +156 -0
  208. package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +4 -0
  209. package/artifacts/contracts/types/StateId.sol/StateIdLib.json +92 -0
  210. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +4 -0
  211. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.json +249 -0
  212. package/artifacts/contracts/types/UFixed.sol/MathLib.dbg.json +4 -0
  213. package/artifacts/contracts/types/UFixed.sol/MathLib.json +10 -0
  214. package/artifacts/contracts/types/UFixed.sol/UFixedLib.dbg.json +4 -0
  215. package/artifacts/contracts/types/UFixed.sol/UFixedLib.json +479 -0
  216. package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +4 -0
  217. package/artifacts/contracts/types/Version.sol/VersionLib.json +177 -0
  218. package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +4 -0
  219. package/artifacts/contracts/types/Version.sol/VersionPartLib.json +49 -0
  220. package/contracts/components/BaseComponent.sol +91 -0
  221. package/contracts/components/Distribution.sol +160 -0
  222. package/contracts/components/IBaseComponent.sol +25 -0
  223. package/contracts/components/IDistributionComponent.sol +44 -0
  224. package/contracts/components/IPoolComponent.sol +62 -0
  225. package/contracts/components/IProductComponent.sol +35 -0
  226. package/contracts/components/Pool.sol +243 -0
  227. package/contracts/components/Product.sol +297 -0
  228. package/contracts/experiment/cloning/Cloner.sol +47 -0
  229. package/contracts/experiment/errors/Require.sol +38 -0
  230. package/contracts/experiment/errors/Revert.sol +44 -0
  231. package/contracts/experiment/inheritance/A.sol +53 -0
  232. package/contracts/experiment/inheritance/B.sol +28 -0
  233. package/contracts/experiment/inheritance/C.sol +34 -0
  234. package/contracts/experiment/inheritance/IA.sol +13 -0
  235. package/contracts/experiment/inheritance/IB.sol +10 -0
  236. package/contracts/experiment/inheritance/IC.sol +12 -0
  237. package/contracts/experiment/statemachine/Dummy.sol +27 -0
  238. package/contracts/experiment/statemachine/ISM.sol +25 -0
  239. package/contracts/experiment/statemachine/SM.sol +57 -0
  240. package/contracts/experiment/statemachine/SimpleStateMachine.sol +31 -0
  241. package/contracts/experiment/types/TypeA.sol +47 -0
  242. package/contracts/experiment/types/TypeB.sol +29 -0
  243. package/contracts/instance/AccessManagedSimple.sol +115 -0
  244. package/contracts/instance/AccessManagerSimple.sol +692 -0
  245. package/contracts/instance/IAccessManagerSimple.sol +391 -0
  246. package/contracts/instance/IInstance.sol +39 -0
  247. package/contracts/instance/IInstanceService.sol +30 -0
  248. package/contracts/instance/Instance.sol +443 -0
  249. package/contracts/instance/InstanceAccessManager.sol +288 -0
  250. package/contracts/instance/InstanceReader.sol +306 -0
  251. package/contracts/instance/InstanceService.sol +182 -0
  252. package/contracts/instance/InstanceServiceManager.sol +56 -0
  253. package/contracts/instance/base/ComponentServiceBase.sol +118 -0
  254. package/contracts/instance/base/IInstanceBase.sol +23 -0
  255. package/contracts/instance/base/IKeyValueStore.sol +49 -0
  256. package/contracts/instance/base/ILifecycle.sol +30 -0
  257. package/contracts/instance/base/KeyValueStore.sol +172 -0
  258. package/contracts/instance/base/Lifecycle.sol +100 -0
  259. package/contracts/instance/module/IAccess.sol +38 -0
  260. package/contracts/instance/module/IBundle.sol +20 -0
  261. package/contracts/instance/module/IDistribution.sol +39 -0
  262. package/contracts/instance/module/IPolicy.sol +45 -0
  263. package/contracts/instance/module/IRisk.sol +11 -0
  264. package/contracts/instance/module/ISetup.sol +44 -0
  265. package/contracts/instance/module/ITreasury.sol +23 -0
  266. package/contracts/instance/service/ComponentOwnerService.sol +317 -0
  267. package/contracts/instance/service/DistributionService.sol +87 -0
  268. package/contracts/instance/service/DistributionServiceManager.sol +53 -0
  269. package/contracts/instance/service/IComponentOwnerService.sol +20 -0
  270. package/contracts/instance/service/IDistributionService.sol +12 -0
  271. package/contracts/instance/service/IPoolService.sol +37 -0
  272. package/contracts/instance/service/IProductService.sol +107 -0
  273. package/contracts/instance/service/PoolService.sol +193 -0
  274. package/contracts/instance/service/PoolServiceManager.sol +53 -0
  275. package/contracts/registry/ChainNft.sol +202 -0
  276. package/contracts/registry/IRegistry.sol +94 -0
  277. package/contracts/registry/IRegistryService.sol +33 -0
  278. package/contracts/registry/ITransferInterceptor.sol +6 -0
  279. package/contracts/registry/Registry.sol +489 -0
  280. package/contracts/registry/RegistryService.sol +399 -0
  281. package/contracts/registry/RegistryServiceManager.sol +80 -0
  282. package/contracts/registry/TokenRegistry.sol +111 -0
  283. package/contracts/shared/ContractDeployerLib.sol +72 -0
  284. package/contracts/shared/ERC165.sol +25 -0
  285. package/contracts/shared/INftOwnable.sol +22 -0
  286. package/contracts/shared/IRegisterable.sol +17 -0
  287. package/contracts/shared/IService.sol +15 -0
  288. package/contracts/shared/IVersionable.sol +96 -0
  289. package/contracts/shared/NftOwnable.sol +136 -0
  290. package/contracts/shared/ProxyManager.sol +94 -0
  291. package/contracts/shared/Registerable.sol +90 -0
  292. package/contracts/shared/RegisterableUpgradable.sol +16 -0
  293. package/contracts/shared/Service.sol +55 -0
  294. package/contracts/shared/TokenHandler.sol +27 -0
  295. package/contracts/shared/UpgradableProxyWithAdmin.sol +16 -0
  296. package/contracts/shared/Versionable.sol +147 -0
  297. package/contracts/test/TestFee.sol +25 -0
  298. package/contracts/test/TestRegisterable.sol +18 -0
  299. package/contracts/test/TestRoleId.sol +14 -0
  300. package/contracts/test/TestService.sol +24 -0
  301. package/contracts/{Dip.sol → test/TestToken.sol} +5 -5
  302. package/contracts/test/TestVersion.sol +44 -0
  303. package/contracts/test/TestVersionable.sol +17 -0
  304. package/contracts/test/Usdc.sol +26 -0
  305. package/contracts/types/AddressSet.sol +58 -0
  306. package/contracts/types/Blocknumber.sol +118 -0
  307. package/contracts/types/ChainId.sol +38 -0
  308. package/contracts/types/DistributorType.sol +55 -0
  309. package/contracts/types/Fee.sol +56 -0
  310. package/contracts/types/Key32.sol +50 -0
  311. package/contracts/types/NftId.sol +72 -0
  312. package/contracts/types/NftIdSet.sol +60 -0
  313. package/contracts/types/NumberId.sol +52 -0
  314. package/contracts/types/ObjectType.sol +152 -0
  315. package/contracts/types/Referral.sol +85 -0
  316. package/contracts/types/RiskId.sol +43 -0
  317. package/contracts/types/RoleId.sol +89 -0
  318. package/contracts/types/StateId.sol +105 -0
  319. package/contracts/types/Timestamp.sol +127 -0
  320. package/contracts/types/UFixed.sol +325 -0
  321. package/contracts/types/Version.sol +107 -0
  322. package/package.json +26 -10
  323. package/artifacts/contracts/Dip.sol/DIP.dbg.json +0 -4
  324. package/artifacts/contracts/Dip.sol/DIP.json +0 -338
  325. package/artifacts/contracts/Lock.sol/Lock.dbg.json +0 -4
  326. package/artifacts/contracts/Lock.sol/Lock.json +0 -74
  327. package/contracts/Lock.sol +0 -34
@@ -0,0 +1,775 @@
1
+ {
2
+ "_format": "hh-sol-artifact-1",
3
+ "contractName": "Product",
4
+ "sourceName": "contracts/components/Product.sol",
5
+ "abi": [
6
+ {
7
+ "inputs": [
8
+ {
9
+ "internalType": "address",
10
+ "name": "registry",
11
+ "type": "address"
12
+ },
13
+ {
14
+ "internalType": "NftId",
15
+ "name": "instanceNftid",
16
+ "type": "uint96"
17
+ },
18
+ {
19
+ "internalType": "address",
20
+ "name": "token",
21
+ "type": "address"
22
+ },
23
+ {
24
+ "internalType": "bool",
25
+ "name": "isInterceptor",
26
+ "type": "bool"
27
+ },
28
+ {
29
+ "internalType": "address",
30
+ "name": "pool",
31
+ "type": "address"
32
+ },
33
+ {
34
+ "internalType": "address",
35
+ "name": "distribution",
36
+ "type": "address"
37
+ },
38
+ {
39
+ "components": [
40
+ {
41
+ "internalType": "UFixed",
42
+ "name": "fractionalFee",
43
+ "type": "uint256"
44
+ },
45
+ {
46
+ "internalType": "uint256",
47
+ "name": "fixedFee",
48
+ "type": "uint256"
49
+ }
50
+ ],
51
+ "internalType": "struct Fee",
52
+ "name": "productFee",
53
+ "type": "tuple"
54
+ },
55
+ {
56
+ "components": [
57
+ {
58
+ "internalType": "UFixed",
59
+ "name": "fractionalFee",
60
+ "type": "uint256"
61
+ },
62
+ {
63
+ "internalType": "uint256",
64
+ "name": "fixedFee",
65
+ "type": "uint256"
66
+ }
67
+ ],
68
+ "internalType": "struct Fee",
69
+ "name": "processingFee",
70
+ "type": "tuple"
71
+ },
72
+ {
73
+ "internalType": "address",
74
+ "name": "initialOwner",
75
+ "type": "address"
76
+ }
77
+ ],
78
+ "stateMutability": "nonpayable",
79
+ "type": "constructor"
80
+ },
81
+ {
82
+ "inputs": [
83
+ {
84
+ "internalType": "address",
85
+ "name": "registry",
86
+ "type": "address"
87
+ },
88
+ {
89
+ "internalType": "NftId",
90
+ "name": "nftId",
91
+ "type": "uint96"
92
+ }
93
+ ],
94
+ "name": "ErrorAlreadyLinked",
95
+ "type": "error"
96
+ },
97
+ {
98
+ "inputs": [
99
+ {
100
+ "internalType": "address",
101
+ "name": "contractAddress",
102
+ "type": "address"
103
+ }
104
+ ],
105
+ "name": "ErrorContractNotRegistered",
106
+ "type": "error"
107
+ },
108
+ {
109
+ "inputs": [
110
+ {
111
+ "internalType": "address",
112
+ "name": "account",
113
+ "type": "address"
114
+ }
115
+ ],
116
+ "name": "ErrorNotOwner",
117
+ "type": "error"
118
+ },
119
+ {
120
+ "inputs": [
121
+ {
122
+ "internalType": "address",
123
+ "name": "registryAddress",
124
+ "type": "address"
125
+ }
126
+ ],
127
+ "name": "ErrorNotRegistry",
128
+ "type": "error"
129
+ },
130
+ {
131
+ "inputs": [
132
+ {
133
+ "internalType": "address",
134
+ "name": "registryAddress",
135
+ "type": "address"
136
+ }
137
+ ],
138
+ "name": "ErrorRegisterableNotRegistry",
139
+ "type": "error"
140
+ },
141
+ {
142
+ "inputs": [],
143
+ "name": "ErrorRegistryAddressZero",
144
+ "type": "error"
145
+ },
146
+ {
147
+ "inputs": [
148
+ {
149
+ "internalType": "address",
150
+ "name": "registry",
151
+ "type": "address"
152
+ }
153
+ ],
154
+ "name": "ErrorRegistryAlreadyInitialized",
155
+ "type": "error"
156
+ },
157
+ {
158
+ "inputs": [],
159
+ "name": "ErrorRegistryNotInitialized",
160
+ "type": "error"
161
+ },
162
+ {
163
+ "inputs": [],
164
+ "name": "InvalidInitialization",
165
+ "type": "error"
166
+ },
167
+ {
168
+ "inputs": [],
169
+ "name": "NotInitializing",
170
+ "type": "error"
171
+ },
172
+ {
173
+ "anonymous": false,
174
+ "inputs": [
175
+ {
176
+ "indexed": false,
177
+ "internalType": "uint64",
178
+ "name": "version",
179
+ "type": "uint64"
180
+ }
181
+ ],
182
+ "name": "Initialized",
183
+ "type": "event"
184
+ },
185
+ {
186
+ "inputs": [],
187
+ "name": "REGISTERABLE_LOCATION_V1",
188
+ "outputs": [
189
+ {
190
+ "internalType": "bytes32",
191
+ "name": "",
192
+ "type": "bytes32"
193
+ }
194
+ ],
195
+ "stateMutability": "view",
196
+ "type": "function"
197
+ },
198
+ {
199
+ "inputs": [
200
+ {
201
+ "internalType": "uint256",
202
+ "name": "sumInsuredAmount",
203
+ "type": "uint256"
204
+ },
205
+ {
206
+ "internalType": "RiskId",
207
+ "name": "riskId",
208
+ "type": "bytes8"
209
+ },
210
+ {
211
+ "internalType": "uint256",
212
+ "name": "lifetime",
213
+ "type": "uint256"
214
+ },
215
+ {
216
+ "internalType": "bytes",
217
+ "name": "applicationData",
218
+ "type": "bytes"
219
+ }
220
+ ],
221
+ "name": "calculateNetPremium",
222
+ "outputs": [
223
+ {
224
+ "internalType": "uint256",
225
+ "name": "netPremiumAmount",
226
+ "type": "uint256"
227
+ }
228
+ ],
229
+ "stateMutability": "view",
230
+ "type": "function"
231
+ },
232
+ {
233
+ "inputs": [
234
+ {
235
+ "internalType": "uint256",
236
+ "name": "sumInsuredAmount",
237
+ "type": "uint256"
238
+ },
239
+ {
240
+ "internalType": "RiskId",
241
+ "name": "riskId",
242
+ "type": "bytes8"
243
+ },
244
+ {
245
+ "internalType": "uint256",
246
+ "name": "lifetime",
247
+ "type": "uint256"
248
+ },
249
+ {
250
+ "internalType": "bytes",
251
+ "name": "applicationData",
252
+ "type": "bytes"
253
+ },
254
+ {
255
+ "internalType": "ReferralId",
256
+ "name": "referralId",
257
+ "type": "bytes8"
258
+ },
259
+ {
260
+ "internalType": "NftId",
261
+ "name": "bundleNftId",
262
+ "type": "uint96"
263
+ }
264
+ ],
265
+ "name": "calculatePremium",
266
+ "outputs": [
267
+ {
268
+ "internalType": "uint256",
269
+ "name": "premiumAmount",
270
+ "type": "uint256"
271
+ }
272
+ ],
273
+ "stateMutability": "view",
274
+ "type": "function"
275
+ },
276
+ {
277
+ "inputs": [],
278
+ "name": "getDistributionNftId",
279
+ "outputs": [
280
+ {
281
+ "internalType": "NftId",
282
+ "name": "distributionNftId",
283
+ "type": "uint96"
284
+ }
285
+ ],
286
+ "stateMutability": "view",
287
+ "type": "function"
288
+ },
289
+ {
290
+ "inputs": [],
291
+ "name": "getInitialInfo",
292
+ "outputs": [
293
+ {
294
+ "components": [
295
+ {
296
+ "internalType": "NftId",
297
+ "name": "nftId",
298
+ "type": "uint96"
299
+ },
300
+ {
301
+ "internalType": "NftId",
302
+ "name": "parentNftId",
303
+ "type": "uint96"
304
+ },
305
+ {
306
+ "internalType": "ObjectType",
307
+ "name": "objectType",
308
+ "type": "uint8"
309
+ },
310
+ {
311
+ "internalType": "bool",
312
+ "name": "isInterceptor",
313
+ "type": "bool"
314
+ },
315
+ {
316
+ "internalType": "address",
317
+ "name": "objectAddress",
318
+ "type": "address"
319
+ },
320
+ {
321
+ "internalType": "address",
322
+ "name": "initialOwner",
323
+ "type": "address"
324
+ },
325
+ {
326
+ "internalType": "bytes",
327
+ "name": "data",
328
+ "type": "bytes"
329
+ }
330
+ ],
331
+ "internalType": "struct IRegistry.ObjectInfo",
332
+ "name": "",
333
+ "type": "tuple"
334
+ },
335
+ {
336
+ "internalType": "bytes",
337
+ "name": "",
338
+ "type": "bytes"
339
+ }
340
+ ],
341
+ "stateMutability": "view",
342
+ "type": "function"
343
+ },
344
+ {
345
+ "inputs": [],
346
+ "name": "getInstance",
347
+ "outputs": [
348
+ {
349
+ "internalType": "contract IInstance",
350
+ "name": "instance",
351
+ "type": "address"
352
+ }
353
+ ],
354
+ "stateMutability": "view",
355
+ "type": "function"
356
+ },
357
+ {
358
+ "inputs": [],
359
+ "name": "getNftId",
360
+ "outputs": [
361
+ {
362
+ "internalType": "NftId",
363
+ "name": "",
364
+ "type": "uint96"
365
+ }
366
+ ],
367
+ "stateMutability": "view",
368
+ "type": "function"
369
+ },
370
+ {
371
+ "inputs": [],
372
+ "name": "getOwner",
373
+ "outputs": [
374
+ {
375
+ "internalType": "address",
376
+ "name": "",
377
+ "type": "address"
378
+ }
379
+ ],
380
+ "stateMutability": "view",
381
+ "type": "function"
382
+ },
383
+ {
384
+ "inputs": [],
385
+ "name": "getPoolNftId",
386
+ "outputs": [
387
+ {
388
+ "internalType": "NftId",
389
+ "name": "poolNftId",
390
+ "type": "uint96"
391
+ }
392
+ ],
393
+ "stateMutability": "view",
394
+ "type": "function"
395
+ },
396
+ {
397
+ "inputs": [],
398
+ "name": "getProductNftId",
399
+ "outputs": [
400
+ {
401
+ "internalType": "NftId",
402
+ "name": "productNftId",
403
+ "type": "uint96"
404
+ }
405
+ ],
406
+ "stateMutability": "view",
407
+ "type": "function"
408
+ },
409
+ {
410
+ "inputs": [],
411
+ "name": "getRegistry",
412
+ "outputs": [
413
+ {
414
+ "internalType": "contract IRegistry",
415
+ "name": "",
416
+ "type": "address"
417
+ }
418
+ ],
419
+ "stateMutability": "view",
420
+ "type": "function"
421
+ },
422
+ {
423
+ "inputs": [],
424
+ "name": "getSetupInfo",
425
+ "outputs": [
426
+ {
427
+ "components": [
428
+ {
429
+ "internalType": "contract IERC20Metadata",
430
+ "name": "token",
431
+ "type": "address"
432
+ },
433
+ {
434
+ "internalType": "contract TokenHandler",
435
+ "name": "tokenHandler",
436
+ "type": "address"
437
+ },
438
+ {
439
+ "internalType": "NftId",
440
+ "name": "distributionNftId",
441
+ "type": "uint96"
442
+ },
443
+ {
444
+ "internalType": "NftId",
445
+ "name": "poolNftId",
446
+ "type": "uint96"
447
+ },
448
+ {
449
+ "components": [
450
+ {
451
+ "internalType": "UFixed",
452
+ "name": "fractionalFee",
453
+ "type": "uint256"
454
+ },
455
+ {
456
+ "internalType": "uint256",
457
+ "name": "fixedFee",
458
+ "type": "uint256"
459
+ }
460
+ ],
461
+ "internalType": "struct Fee",
462
+ "name": "distributionFee",
463
+ "type": "tuple"
464
+ },
465
+ {
466
+ "components": [
467
+ {
468
+ "internalType": "UFixed",
469
+ "name": "fractionalFee",
470
+ "type": "uint256"
471
+ },
472
+ {
473
+ "internalType": "uint256",
474
+ "name": "fixedFee",
475
+ "type": "uint256"
476
+ }
477
+ ],
478
+ "internalType": "struct Fee",
479
+ "name": "productFee",
480
+ "type": "tuple"
481
+ },
482
+ {
483
+ "components": [
484
+ {
485
+ "internalType": "UFixed",
486
+ "name": "fractionalFee",
487
+ "type": "uint256"
488
+ },
489
+ {
490
+ "internalType": "uint256",
491
+ "name": "fixedFee",
492
+ "type": "uint256"
493
+ }
494
+ ],
495
+ "internalType": "struct Fee",
496
+ "name": "processingFee",
497
+ "type": "tuple"
498
+ },
499
+ {
500
+ "components": [
501
+ {
502
+ "internalType": "UFixed",
503
+ "name": "fractionalFee",
504
+ "type": "uint256"
505
+ },
506
+ {
507
+ "internalType": "uint256",
508
+ "name": "fixedFee",
509
+ "type": "uint256"
510
+ }
511
+ ],
512
+ "internalType": "struct Fee",
513
+ "name": "poolFee",
514
+ "type": "tuple"
515
+ },
516
+ {
517
+ "components": [
518
+ {
519
+ "internalType": "UFixed",
520
+ "name": "fractionalFee",
521
+ "type": "uint256"
522
+ },
523
+ {
524
+ "internalType": "uint256",
525
+ "name": "fixedFee",
526
+ "type": "uint256"
527
+ }
528
+ ],
529
+ "internalType": "struct Fee",
530
+ "name": "stakingFee",
531
+ "type": "tuple"
532
+ },
533
+ {
534
+ "components": [
535
+ {
536
+ "internalType": "UFixed",
537
+ "name": "fractionalFee",
538
+ "type": "uint256"
539
+ },
540
+ {
541
+ "internalType": "uint256",
542
+ "name": "fixedFee",
543
+ "type": "uint256"
544
+ }
545
+ ],
546
+ "internalType": "struct Fee",
547
+ "name": "performanceFee",
548
+ "type": "tuple"
549
+ }
550
+ ],
551
+ "internalType": "struct ISetup.ProductSetupInfo",
552
+ "name": "setupInfo",
553
+ "type": "tuple"
554
+ }
555
+ ],
556
+ "stateMutability": "view",
557
+ "type": "function"
558
+ },
559
+ {
560
+ "inputs": [],
561
+ "name": "getToken",
562
+ "outputs": [
563
+ {
564
+ "internalType": "contract IERC20Metadata",
565
+ "name": "token",
566
+ "type": "address"
567
+ }
568
+ ],
569
+ "stateMutability": "view",
570
+ "type": "function"
571
+ },
572
+ {
573
+ "inputs": [],
574
+ "name": "getWallet",
575
+ "outputs": [
576
+ {
577
+ "internalType": "address",
578
+ "name": "walletAddress",
579
+ "type": "address"
580
+ }
581
+ ],
582
+ "stateMutability": "view",
583
+ "type": "function"
584
+ },
585
+ {
586
+ "inputs": [],
587
+ "name": "linkToRegisteredNftId",
588
+ "outputs": [],
589
+ "stateMutability": "nonpayable",
590
+ "type": "function"
591
+ },
592
+ {
593
+ "inputs": [],
594
+ "name": "lock",
595
+ "outputs": [],
596
+ "stateMutability": "nonpayable",
597
+ "type": "function"
598
+ },
599
+ {
600
+ "inputs": [
601
+ {
602
+ "components": [
603
+ {
604
+ "internalType": "UFixed",
605
+ "name": "fractionalFee",
606
+ "type": "uint256"
607
+ },
608
+ {
609
+ "internalType": "uint256",
610
+ "name": "fixedFee",
611
+ "type": "uint256"
612
+ }
613
+ ],
614
+ "internalType": "struct Fee",
615
+ "name": "productFee",
616
+ "type": "tuple"
617
+ },
618
+ {
619
+ "components": [
620
+ {
621
+ "internalType": "UFixed",
622
+ "name": "fractionalFee",
623
+ "type": "uint256"
624
+ },
625
+ {
626
+ "internalType": "uint256",
627
+ "name": "fixedFee",
628
+ "type": "uint256"
629
+ }
630
+ ],
631
+ "internalType": "struct Fee",
632
+ "name": "processingFee",
633
+ "type": "tuple"
634
+ }
635
+ ],
636
+ "name": "setFees",
637
+ "outputs": [],
638
+ "stateMutability": "nonpayable",
639
+ "type": "function"
640
+ },
641
+ {
642
+ "inputs": [
643
+ {
644
+ "internalType": "NftId",
645
+ "name": "productNftId",
646
+ "type": "uint96"
647
+ }
648
+ ],
649
+ "name": "setProductNftId",
650
+ "outputs": [],
651
+ "stateMutability": "nonpayable",
652
+ "type": "function"
653
+ },
654
+ {
655
+ "inputs": [
656
+ {
657
+ "internalType": "bytes4",
658
+ "name": "interfaceId",
659
+ "type": "bytes4"
660
+ }
661
+ ],
662
+ "name": "supportsInterface",
663
+ "outputs": [
664
+ {
665
+ "internalType": "bool",
666
+ "name": "",
667
+ "type": "bool"
668
+ }
669
+ ],
670
+ "stateMutability": "view",
671
+ "type": "function"
672
+ },
673
+ {
674
+ "inputs": [],
675
+ "name": "unlock",
676
+ "outputs": [],
677
+ "stateMutability": "nonpayable",
678
+ "type": "function"
679
+ }
680
+ ],
681
+ "bytecode": "0x60806040523480156200001157600080fd5b5060405162002a4a38038062002a4a833981016040819052620000349162000876565b888888606e89856200006c6301ffc9a760e01b600090815260205260008051602062002a2a833981519152805460ff19166001179055565b600280546001600160a01b031916331790556040805160208101909152600081526200009d878786868686620004c3565b6000620000b26001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03891660048201526001600160a01b03919091169063a48f42e090602401600060405180830381865afa15801562000102573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526200012c9190810190620009e0565b6080810151600780546001600160a01b0319166001600160a01b0390921691821790556040516301ffc9a760e01b8152639f07a2f160e01b6004820152919250906301ffc9a790602401602060405180830381865afa15801562000194573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001ba919062000ac6565b620001e65760405162461bcd60e51b815260206004820152600060248201526044015b60405180910390fd5b600760009054906101000a90046001600160a01b03166001600160a01b0316636fa298536040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200023a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000260919062000aeb565b600380546001600160a01b03199081166001600160a01b0393841617909155600580543090831617905560068054909116918816919091179055634c0cba3d60e11b60009081526020527f8605f84a1fdbc6ff75d8a06315d161884729b429561b502d19c5a33135142c3a805460ff191660011790555050600980546001600160a01b038d81166001600160a01b031992831617909255600a80548d841692169190911790558951600b556020808b0151600c558951600d55890151600e5560015416955062000331945050505050565b600954604051636939560f60e11b81526001600160a01b03918216600482015291169063d272ac1e90602401602060405180830381865afa1580156200037b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003a1919062000b0b565b600f80546001600160601b0319166001600160601b0392909216919091179055620003d46001546001600160a01b031690565b600a54604051636939560f60e11b81526001600160a01b03918216600482015291169063d272ac1e90602401602060405180830381865afa1580156200041e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000444919062000b0b565b600f80546001600160601b03929092166c0100000000000000000000000002600160601b600160c01b0319909216919091179055633ad74e8160e01b60009081526020527f6d6f21c9f977ce279ee1b58c3ce3ac0b612bbc5256f6c821ab515558c7e6a0a8805460ff1916600117905550505050505050505062000c84565b620004f46301ffc9a760e01b600090815260205260008051602062002a2a833981519152805460ff19166001179055565b620005008287620005c5565b60007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0388166001600160681b0319909116176c0100000000000000000000000060ff8816021760ff60681b19166d0100000000000000000000000000861515021781559050600181016200057f838262000bb8565b506303fb044760e21b60009081526020527fb43e4f3791bfcdefa3a0fbe2a5555f8d6490b90e01de0ff40c66f18b49b562c5805460ff1916600117905550505050505050565b600280546001600160a01b0319166001600160a01b038416179055620005eb81620005ef565b5050565b6001546001600160a01b0316156200062a5760015460405163fcdbf2d960e01b81526001600160a01b039091166004820152602401620001dd565b6001600160a01b038116620006525760405163f5c4d07d60e01b815260040160405180910390fd5b806001600160a01b03163b6000036200068a5760405163fdeac91f60e01b81526001600160a01b0382166004820152602401620001dd565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b815263e14a543960e01b60048201526301ffc9a790602401602060405180830381865afa92505050801562000707575060408051601f3d908101601f19168201909252620007049181019062000ac6565b60015b620007315760405163fdeac91f60e01b81526001600160a01b0382166004820152602401620001dd565b80620005eb5760405163fdeac91f60e01b81526001600160a01b0383166004820152602401620001dd565b50565b6001600160a01b03811681146200075c57600080fd5b805162000782816200075f565b919050565b80516001600160601b03811681146200078257600080fd5b805180151581146200078257600080fd5b634e487b7160e01b600052604160045260246000fd5b60405160e081016001600160401b0381118282101715620007eb57620007eb620007b0565b60405290565b604051601f8201601f191681016001600160401b03811182821017156200081c576200081c620007b0565b604052919050565b6000604082840312156200083757600080fd5b604080519081016001600160401b03811182821017156200085c576200085c620007b0565b604052825181526020928301519281019290925250919050565b60008060008060008060008060006101608a8c0312156200089657600080fd5b8951620008a3816200075f565b9850620008b360208b0162000787565b975060408a0151620008c5816200075f565b9650620008d560608b016200079f565b955060808a0151620008e7816200075f565b60a08b0151909550620008fa816200075f565b93506200090b8b60c08c0162000824565b92506200091d8b6101008c0162000824565b91506101408a015162000930816200075f565b809150509295985092959850929598565b805160ff811681146200078257600080fd5b600082601f8301126200096557600080fd5b81516001600160401b03811115620009815762000981620007b0565b602062000997601f8301601f19168201620007f1565b8281528582848701011115620009ac57600080fd5b60005b83811015620009cc578581018301518282018401528201620009af565b506000928101909101919091529392505050565b600060208284031215620009f357600080fd5b81516001600160401b038082111562000a0b57600080fd5b9083019060e0828603121562000a2057600080fd5b62000a2a620007c6565b62000a358362000787565b815262000a456020840162000787565b602082015262000a586040840162000941565b604082015262000a6b606084016200079f565b606082015262000a7e6080840162000775565b608082015262000a9160a0840162000775565b60a082015260c08301518281111562000aa957600080fd5b62000ab78782860162000953565b60c08301525095945050505050565b60006020828403121562000ad957600080fd5b62000ae4826200079f565b9392505050565b60006020828403121562000afe57600080fd5b815162000ae4816200075f565b60006020828403121562000b1e57600080fd5b62000ae48262000787565b600181811c9082168062000b3e57607f821691505b60208210810362000b5f57634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111562000bb357600081815260208120601f850160051c8101602086101562000b8e5750805b601f850160051c820191505b8181101562000baf5782815560010162000b9a565b5050505b505050565b81516001600160401b0381111562000bd45762000bd4620007b0565b62000bec8162000be5845462000b29565b8462000b65565b602080601f83116001811462000c24576000841562000c0b5750858301515b600019600386901b1c1916600185901b17855562000baf565b600085815260208120601f198616915b8281101562000c555788860151825594840194600190910190840162000c34565b508582101562000c745787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b611d968062000c946000396000f3fe608060405234801561001057600080fd5b506004361061012b5760003560e01c80635ab1bd53116100ad578063b6b412ba11610071578063b6b412ba146102a3578063c200b809146102b6578063db6dcc95146102cb578063de7b5d14146102d3578063f83d08ba146102e457600080fd5b80635ab1bd53146102575780635e78426b14610268578063644c45e01461027b578063893d20e814610293578063a69df4b51461029b57600080fd5b8063138461e0116100f4578063138461e0146101fa5780631bdd6b76146102045780631eff4b221461020c57806321df0da7146102335780632a65c6881461024457600080fd5b806251884a1461013057806301ffc9a7146101615780630fec111c1461019e57806312abb9b3146101b457806313299604146101d5575b600080fd5b600754600160a01b90046001600160601b03165b6040516001600160601b0390911681526020015b60405180910390f35b61018e61016f366004611315565b6001600160e01b03191660009081526020819052604090205460ff1690565b6040519015158152602001610158565b6101a66102ec565b604051610158929190611396565b6101c76101c23660046115bb565b61050b565b604051908152602001610158565b6005546001600160a01b03165b6040516001600160a01b039091168152602001610158565b610202610597565b005b6101446107b9565b6101c77f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b6006546001600160a01b03166101e2565b610202610252366004611644565b610840565b6001546001600160a01b03166101e2565b6101c7610276366004611661565b6109a2565b600154600160a01b90046001600160601b0316610144565b6101e26109b8565b610202610ad1565b6102026102b13660046116f4565b610b7f565b6102be610c35565b6040516101589190611729565b6101446110cd565b6007546001600160a01b03166101e2565b610202611112565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a0820183905260c0820181905290918061033061118f565b91509150600080600960009054906101000a90046001600160a01b03166001600160a01b0316630fec111c6040518163ffffffff1660e01b8152600401600060405180830381865afa15801561038a573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526103b291908101906118cc565b915091506000806000838060200190518101906103cf91906119f5565b60408051610140810182526006546001600160a01b0316815260006020820152600f546001600160601b03600160601b82048116838501521660608201528151632bd182d360e01b81528251959b509399509197508d965090945060808501935073__$a23651848365a6a5ca15f07b4331037f48$__92632bd182d39260048082019392918290030181865af415801561046d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104919190611b05565b8152604080518082018252600b548152600c546020828101919091528084019190915281518083018352600d548152600e548183015282840152606083018890526080830187905260a0909201859052516104ed929101611729565b60405160208183030381529060405298509850505050505050509091565b600854604051639cdaa7f960e01b81526000916001600160a01b031690639cdaa7f9906105469089908b908a908a9089908b90600401611b21565b60a060405180830381865afa158015610563573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105879190611b78565b50929a9950505050505050505050565b6001546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015273__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af41580156105f9573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061061d9190611bb8565b15610664576001546040516316322c0f60e31b81526001600160a01b0382166004820152600160a01b9091046001600160601b031660248201526044015b60405180910390fd5b6001546001600160a01b031661068d5760405163cf29926160e01b815260040160405180910390fd5b60015460405163c3c5a54760e01b81523060048201819052916001600160a01b03169063c3c5a54790602401602060405180830381865afa1580156106d6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106fa9190611bb8565b610722576040516372657a5160e01b81526001600160a01b038216600482015260240161065b565b600154604051636939560f60e11b81526001600160a01b0383811660048301529091169063d272ac1e90602401602060405180830381865afa15801561076c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107909190611bd3565b600160146101000a8154816001600160601b0302191690836001600160601b0316021790555050565b60006107cd6001546001600160a01b031690565b600954604051636939560f60e11b81526001600160a01b03918216600482015291169063d272ac1e906024015b602060405180830381865afa158015610817573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061083b9190611bd3565b905090565b600061084a6109b8565b90506001600160a01b0381161580159061086d5750336001600160a01b03821614155b1561088d5760405163700dd81160e01b815233600482015260240161065b565b60075473__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__9063c4cade9d90600160a01b90046001600160601b031660006040516001600160e01b031960e085901b1681526001600160601b03928316600482015291166024820152604401602060405180830381865af4158015610909573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061092d9190611bb8565b6109795760405162461bcd60e51b815260206004820152601a60248201527f70726f64756374206e667420696420616c726561647920736574000000000000604482015260640161065b565b50600780546001600160601b03909216600160a01b026001600160a01b03909216919091179055565b60006109af600a86611bf0565b95945050505050565b6001546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015260009073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015610a1d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a419190611bb8565b15610ac157600154604051631c5da14d60e11b8152600160a01b82046001600160601b031660048201526001600160a01b03909116906338bb429a90602401602060405180830381865afa158015610a9d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061083b9190611c12565b506002546001600160a01b031690565b6000610adb6109b8565b90506001600160a01b03811615801590610afe5750336001600160a01b03821614155b15610b1e5760405163700dd81160e01b815233600482015260240161065b565b600354604051630bdb124f60e21b81523060048201526001600160a01b0390911690632f6c493c906024015b600060405180830381600087803b158015610b6457600080fd5b505af1158015610b78573d6000803e3d6000fd5b5050505050565b6000610b896109b8565b90506001600160a01b03811615801590610bac5750336001600160a01b03821614155b15610bcc5760405163700dd81160e01b815233600482015260240161065b565b600854604051635b5a095d60e11b81526001600160a01b039091169063b6b412ba90610bfe9086908690600401611c2f565b600060405180830381600087803b158015610c1857600080fd5b505af1158015610c2c573d6000803e3d6000fd5b50505050505050565b610cdf604080516101408101825260008082526020808301829052828401829052606083018290528351808501855282815280820183905260808401528351808501855282815280820183905260a08401528351808501855282815280820183905260c08401528351808501855282815280820183905260e08401528351808501855282815280820183905261010084015283518085019094528184528301529061012082015290565b6001546040805163c4cade9d60e01b8152600160a01b9092046001600160601b03166004830152600060248301525173__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__9163c4cade9d9160448083019260209291908290030181865af4158015610d4e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d729190611bb8565b15610fc55760408051610140810182526006546001600160a01b0316815260006020820152600f546001600160601b03600160601b82048116838501521660608201528151632bd182d360e01b815282519192608084019273__$a23651848365a6a5ca15f07b4331037f48$__92632bd182d39260048083019391928290030181865af4158015610e07573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e2b9190611b05565b8152604080518082018252600b548152600c546020828101919091528084019190915281518083018352600d548152600e5491810191909152818301528051632bd182d360e01b8152815160609093019273__$a23651848365a6a5ca15f07b4331037f48$__92632bd182d392600480820193918290030181865af4158015610eb8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610edc9190611b05565b815260200173__$a23651848365a6a5ca15f07b4331037f48$__632bd182d36040518163ffffffff1660e01b81526004016040805180830381865af4158015610f29573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f4d9190611b05565b815260200173__$a23651848365a6a5ca15f07b4331037f48$__632bd182d36040518163ffffffff1660e01b81526004016040805180830381865af4158015610f9a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fbe9190611b05565b9052919050565b600754604080516302cd307160e01b815290516000926001600160a01b0316916302cd30719160048083019260209291908290030181865afa15801561100f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110339190611c12565b9050806001600160a01b03166390af706461105e6001546001600160601b03600160a01b9091041690565b6040516001600160e01b031960e084901b1681526001600160601b03909116600482015260240161020060405180830381865afa1580156110a3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110c79190611c55565b91505090565b60006110e16001546001600160a01b031690565b600a54604051636939560f60e11b81526001600160a01b03918216600482015291169063d272ac1e906024016107fa565b600061111c6109b8565b90506001600160a01b0381161580159061113f5750336001600160a01b03821614155b1561115f5760405163700dd81160e01b815233600482015260240161065b565b60035460405163f435f5a760e01b81523060048201526001600160a01b039091169063f435f5a790602401610b4a565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a082019290925260c0810191909152606060007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e001604052806112166001546001600160601b03600160a01b9091041690565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a00161125e6109b8565b6001600160a01b0316815260200182600101805461127b90611d26565b80601f01602080910402602001604051908101604052809291908181526020018280546112a790611d26565b80156112f45780601f106112c9576101008083540402835291602001916112f4565b820191906000526020600020905b8154815290600101906020018083116112d757829003601f168201915b50505050508152506040518060200160405280600081525092509250509091565b60006020828403121561132757600080fd5b81356001600160e01b03198116811461133f57600080fd5b9392505050565b60005b83811015611361578181015183820152602001611349565b50506000910152565b60008151808452611382816020860160208601611346565b601f01601f19169290920160200192915050565b6040815260006001600160601b038085511660408401528060208601511660608401525060ff604085015116608083015260608401516113da60a084018215159052565b5060808401516001600160a01b03811660c08401525060a08401516001600160a01b03811660e08401525060c084015160e061010084015261142061012084018261136a565b905082810360208401526109af818561136a565b6001600160c01b03198116811461144a57600080fd5b50565b634e487b7160e01b600052604160045260246000fd5b6040805190810167ffffffffffffffff811182821017156114865761148661144d565b60405290565b60405160e0810167ffffffffffffffff811182821017156114865761148661144d565b604051610100810167ffffffffffffffff811182821017156114865761148661144d565b604051610140810167ffffffffffffffff811182821017156114865761148661144d565b604051601f8201601f1916810167ffffffffffffffff811182821017156115205761152061144d565b604052919050565b600067ffffffffffffffff8211156115425761154261144d565b50601f01601f191660200190565b600082601f83011261156157600080fd5b813561157461156f82611528565b6114f7565b81815284602083860101111561158957600080fd5b816020850160208301376000918101602001919091529392505050565b6001600160601b038116811461144a57600080fd5b60008060008060008060c087890312156115d457600080fd5b8635955060208701356115e681611434565b945060408701359350606087013567ffffffffffffffff81111561160957600080fd5b61161589828a01611550565b935050608087013561162681611434565b915060a0870135611636816115a6565b809150509295509295509295565b60006020828403121561165657600080fd5b813561133f816115a6565b6000806000806080858703121561167757600080fd5b84359350602085013561168981611434565b925060408501359150606085013567ffffffffffffffff8111156116ac57600080fd5b6116b887828801611550565b91505092959194509250565b6000604082840312156116d657600080fd5b6116de611463565b9050813581526020820135602082015292915050565b6000806080838503121561170757600080fd5b61171184846116c4565b915061172084604085016116c4565b90509250929050565b81516001600160a01b031681526102008101602083015161175560208401826001600160a01b03169052565b50604083015161177060408401826001600160601b03169052565b50606083015161178b60608401826001600160601b03169052565b5060808301516117a8608084018280518252602090810151910152565b5060a0830151805160c0840152602081015160e08401525060c08301516101006117de8185018380518252602090810151910152565b60e085015180516101408601526020908101516101608601529085015180516101808601528101516101a08501526101209094015180516101c0850152909301516101e090920191909152919050565b8051611839816115a6565b919050565b805160ff8116811461183957600080fd5b8051801515811461183957600080fd5b6001600160a01b038116811461144a57600080fd5b80516118398161185f565b600082601f83011261189057600080fd5b815161189e61156f82611528565b8181528460208386010111156118b357600080fd5b6118c4826020830160208701611346565b949350505050565b600080604083850312156118df57600080fd5b825167ffffffffffffffff808211156118f757600080fd5b9084019060e0828703121561190b57600080fd5b61191361148c565b61191c8361182e565b815261192a6020840161182e565b602082015261193b6040840161183e565b604082015261194c6060840161184f565b606082015261195d60808401611874565b608082015261196e60a08401611874565b60a082015260c08301518281111561198557600080fd5b6119918882860161187f565b60c08301525060208601519094509150808211156119ae57600080fd5b506119bb8582860161187f565b9150509250929050565b6000604082840312156119d757600080fd5b6119df611463565b9050815181526020820151602082015292915050565b600080600080600080868803610260811215611a1057600080fd5b61016080821215611a2057600080fd5b611a286114af565b9150611a338961182e565b8252611a4160208a01611874565b602083015260408901516040830152611a5d8a60608b016119c5565b6060830152611a6f8a60a08b016119c5565b6080830152611a818a60e08b016119c5565b60a0830152611a936101208a0161184f565b60c0830152611aa56101408a01611874565b60e0830152819750611ab8818a01611874565b96505050611ac96101808801611874565b9350611ad9886101a089016119c5565b9250611ae9886101e089016119c5565b9150611af98861022089016119c5565b90509295509295509295565b600060408284031215611b1757600080fd5b61133f83836119c5565b600067ffffffffffffffff60c01b808916835287602084015286604084015260c06060840152611b5460c084018761136a565b6001600160601b039590951660808401529290921660a09091015250949350505050565b600080600080600060a08688031215611b9057600080fd5b5050835160208501516040860151606087015160809097015192989197509594509092509050565b600060208284031215611bca57600080fd5b61133f8261184f565b600060208284031215611be557600080fd5b815161133f816115a6565b600082611c0d57634e487b7160e01b600052601260045260246000fd5b500490565b600060208284031215611c2457600080fd5b815161133f8161185f565b82518152602080840151818301528251604083015282015160608201526080810161133f565b60006102008284031215611c6857600080fd5b611c706114d3565b611c7983611874565b8152611c8760208401611874565b6020820152611c986040840161182e565b6040820152611ca96060840161182e565b6060820152611cbb84608085016119c5565b6080820152611ccd8460c085016119c5565b60a0820152610100611ce1858286016119c5565b60c0830152611cf48561014086016119c5565b60e0830152611d078561018086016119c5565b90820152611d19846101c085016119c5565b6101208201529392505050565b600181811c90821680611d3a57607f821691505b602082108103611d5a57634e487b7160e01b600052602260045260246000fd5b5091905056fea2646970667358221220f6b03471d3d57452aee7bbd7a7eb1817ec687775d7e5eac95b7c55b397b6803264736f6c6343000814003367be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5",
682
+ "deployedBytecode": "0x608060405234801561001057600080fd5b506004361061012b5760003560e01c80635ab1bd53116100ad578063b6b412ba11610071578063b6b412ba146102a3578063c200b809146102b6578063db6dcc95146102cb578063de7b5d14146102d3578063f83d08ba146102e457600080fd5b80635ab1bd53146102575780635e78426b14610268578063644c45e01461027b578063893d20e814610293578063a69df4b51461029b57600080fd5b8063138461e0116100f4578063138461e0146101fa5780631bdd6b76146102045780631eff4b221461020c57806321df0da7146102335780632a65c6881461024457600080fd5b806251884a1461013057806301ffc9a7146101615780630fec111c1461019e57806312abb9b3146101b457806313299604146101d5575b600080fd5b600754600160a01b90046001600160601b03165b6040516001600160601b0390911681526020015b60405180910390f35b61018e61016f366004611315565b6001600160e01b03191660009081526020819052604090205460ff1690565b6040519015158152602001610158565b6101a66102ec565b604051610158929190611396565b6101c76101c23660046115bb565b61050b565b604051908152602001610158565b6005546001600160a01b03165b6040516001600160a01b039091168152602001610158565b610202610597565b005b6101446107b9565b6101c77f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b6006546001600160a01b03166101e2565b610202610252366004611644565b610840565b6001546001600160a01b03166101e2565b6101c7610276366004611661565b6109a2565b600154600160a01b90046001600160601b0316610144565b6101e26109b8565b610202610ad1565b6102026102b13660046116f4565b610b7f565b6102be610c35565b6040516101589190611729565b6101446110cd565b6007546001600160a01b03166101e2565b610202611112565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a0820183905260c0820181905290918061033061118f565b91509150600080600960009054906101000a90046001600160a01b03166001600160a01b0316630fec111c6040518163ffffffff1660e01b8152600401600060405180830381865afa15801561038a573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526103b291908101906118cc565b915091506000806000838060200190518101906103cf91906119f5565b60408051610140810182526006546001600160a01b0316815260006020820152600f546001600160601b03600160601b82048116838501521660608201528151632bd182d360e01b81528251959b509399509197508d965090945060808501935073__$a23651848365a6a5ca15f07b4331037f48$__92632bd182d39260048082019392918290030181865af415801561046d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104919190611b05565b8152604080518082018252600b548152600c546020828101919091528084019190915281518083018352600d548152600e548183015282840152606083018890526080830187905260a0909201859052516104ed929101611729565b60405160208183030381529060405298509850505050505050509091565b600854604051639cdaa7f960e01b81526000916001600160a01b031690639cdaa7f9906105469089908b908a908a9089908b90600401611b21565b60a060405180830381865afa158015610563573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105879190611b78565b50929a9950505050505050505050565b6001546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015273__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af41580156105f9573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061061d9190611bb8565b15610664576001546040516316322c0f60e31b81526001600160a01b0382166004820152600160a01b9091046001600160601b031660248201526044015b60405180910390fd5b6001546001600160a01b031661068d5760405163cf29926160e01b815260040160405180910390fd5b60015460405163c3c5a54760e01b81523060048201819052916001600160a01b03169063c3c5a54790602401602060405180830381865afa1580156106d6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106fa9190611bb8565b610722576040516372657a5160e01b81526001600160a01b038216600482015260240161065b565b600154604051636939560f60e11b81526001600160a01b0383811660048301529091169063d272ac1e90602401602060405180830381865afa15801561076c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107909190611bd3565b600160146101000a8154816001600160601b0302191690836001600160601b0316021790555050565b60006107cd6001546001600160a01b031690565b600954604051636939560f60e11b81526001600160a01b03918216600482015291169063d272ac1e906024015b602060405180830381865afa158015610817573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061083b9190611bd3565b905090565b600061084a6109b8565b90506001600160a01b0381161580159061086d5750336001600160a01b03821614155b1561088d5760405163700dd81160e01b815233600482015260240161065b565b60075473__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__9063c4cade9d90600160a01b90046001600160601b031660006040516001600160e01b031960e085901b1681526001600160601b03928316600482015291166024820152604401602060405180830381865af4158015610909573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061092d9190611bb8565b6109795760405162461bcd60e51b815260206004820152601a60248201527f70726f64756374206e667420696420616c726561647920736574000000000000604482015260640161065b565b50600780546001600160601b03909216600160a01b026001600160a01b03909216919091179055565b60006109af600a86611bf0565b95945050505050565b6001546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015260009073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015610a1d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a419190611bb8565b15610ac157600154604051631c5da14d60e11b8152600160a01b82046001600160601b031660048201526001600160a01b03909116906338bb429a90602401602060405180830381865afa158015610a9d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061083b9190611c12565b506002546001600160a01b031690565b6000610adb6109b8565b90506001600160a01b03811615801590610afe5750336001600160a01b03821614155b15610b1e5760405163700dd81160e01b815233600482015260240161065b565b600354604051630bdb124f60e21b81523060048201526001600160a01b0390911690632f6c493c906024015b600060405180830381600087803b158015610b6457600080fd5b505af1158015610b78573d6000803e3d6000fd5b5050505050565b6000610b896109b8565b90506001600160a01b03811615801590610bac5750336001600160a01b03821614155b15610bcc5760405163700dd81160e01b815233600482015260240161065b565b600854604051635b5a095d60e11b81526001600160a01b039091169063b6b412ba90610bfe9086908690600401611c2f565b600060405180830381600087803b158015610c1857600080fd5b505af1158015610c2c573d6000803e3d6000fd5b50505050505050565b610cdf604080516101408101825260008082526020808301829052828401829052606083018290528351808501855282815280820183905260808401528351808501855282815280820183905260a08401528351808501855282815280820183905260c08401528351808501855282815280820183905260e08401528351808501855282815280820183905261010084015283518085019094528184528301529061012082015290565b6001546040805163c4cade9d60e01b8152600160a01b9092046001600160601b03166004830152600060248301525173__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__9163c4cade9d9160448083019260209291908290030181865af4158015610d4e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d729190611bb8565b15610fc55760408051610140810182526006546001600160a01b0316815260006020820152600f546001600160601b03600160601b82048116838501521660608201528151632bd182d360e01b815282519192608084019273__$a23651848365a6a5ca15f07b4331037f48$__92632bd182d39260048083019391928290030181865af4158015610e07573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e2b9190611b05565b8152604080518082018252600b548152600c546020828101919091528084019190915281518083018352600d548152600e5491810191909152818301528051632bd182d360e01b8152815160609093019273__$a23651848365a6a5ca15f07b4331037f48$__92632bd182d392600480820193918290030181865af4158015610eb8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610edc9190611b05565b815260200173__$a23651848365a6a5ca15f07b4331037f48$__632bd182d36040518163ffffffff1660e01b81526004016040805180830381865af4158015610f29573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f4d9190611b05565b815260200173__$a23651848365a6a5ca15f07b4331037f48$__632bd182d36040518163ffffffff1660e01b81526004016040805180830381865af4158015610f9a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fbe9190611b05565b9052919050565b600754604080516302cd307160e01b815290516000926001600160a01b0316916302cd30719160048083019260209291908290030181865afa15801561100f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110339190611c12565b9050806001600160a01b03166390af706461105e6001546001600160601b03600160a01b9091041690565b6040516001600160e01b031960e084901b1681526001600160601b03909116600482015260240161020060405180830381865afa1580156110a3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110c79190611c55565b91505090565b60006110e16001546001600160a01b031690565b600a54604051636939560f60e11b81526001600160a01b03918216600482015291169063d272ac1e906024016107fa565b600061111c6109b8565b90506001600160a01b0381161580159061113f5750336001600160a01b03821614155b1561115f5760405163700dd81160e01b815233600482015260240161065b565b60035460405163f435f5a760e01b81523060048201526001600160a01b039091169063f435f5a790602401610b4a565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a082019290925260c0810191909152606060007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e001604052806112166001546001600160601b03600160a01b9091041690565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a00161125e6109b8565b6001600160a01b0316815260200182600101805461127b90611d26565b80601f01602080910402602001604051908101604052809291908181526020018280546112a790611d26565b80156112f45780601f106112c9576101008083540402835291602001916112f4565b820191906000526020600020905b8154815290600101906020018083116112d757829003601f168201915b50505050508152506040518060200160405280600081525092509250509091565b60006020828403121561132757600080fd5b81356001600160e01b03198116811461133f57600080fd5b9392505050565b60005b83811015611361578181015183820152602001611349565b50506000910152565b60008151808452611382816020860160208601611346565b601f01601f19169290920160200192915050565b6040815260006001600160601b038085511660408401528060208601511660608401525060ff604085015116608083015260608401516113da60a084018215159052565b5060808401516001600160a01b03811660c08401525060a08401516001600160a01b03811660e08401525060c084015160e061010084015261142061012084018261136a565b905082810360208401526109af818561136a565b6001600160c01b03198116811461144a57600080fd5b50565b634e487b7160e01b600052604160045260246000fd5b6040805190810167ffffffffffffffff811182821017156114865761148661144d565b60405290565b60405160e0810167ffffffffffffffff811182821017156114865761148661144d565b604051610100810167ffffffffffffffff811182821017156114865761148661144d565b604051610140810167ffffffffffffffff811182821017156114865761148661144d565b604051601f8201601f1916810167ffffffffffffffff811182821017156115205761152061144d565b604052919050565b600067ffffffffffffffff8211156115425761154261144d565b50601f01601f191660200190565b600082601f83011261156157600080fd5b813561157461156f82611528565b6114f7565b81815284602083860101111561158957600080fd5b816020850160208301376000918101602001919091529392505050565b6001600160601b038116811461144a57600080fd5b60008060008060008060c087890312156115d457600080fd5b8635955060208701356115e681611434565b945060408701359350606087013567ffffffffffffffff81111561160957600080fd5b61161589828a01611550565b935050608087013561162681611434565b915060a0870135611636816115a6565b809150509295509295509295565b60006020828403121561165657600080fd5b813561133f816115a6565b6000806000806080858703121561167757600080fd5b84359350602085013561168981611434565b925060408501359150606085013567ffffffffffffffff8111156116ac57600080fd5b6116b887828801611550565b91505092959194509250565b6000604082840312156116d657600080fd5b6116de611463565b9050813581526020820135602082015292915050565b6000806080838503121561170757600080fd5b61171184846116c4565b915061172084604085016116c4565b90509250929050565b81516001600160a01b031681526102008101602083015161175560208401826001600160a01b03169052565b50604083015161177060408401826001600160601b03169052565b50606083015161178b60608401826001600160601b03169052565b5060808301516117a8608084018280518252602090810151910152565b5060a0830151805160c0840152602081015160e08401525060c08301516101006117de8185018380518252602090810151910152565b60e085015180516101408601526020908101516101608601529085015180516101808601528101516101a08501526101209094015180516101c0850152909301516101e090920191909152919050565b8051611839816115a6565b919050565b805160ff8116811461183957600080fd5b8051801515811461183957600080fd5b6001600160a01b038116811461144a57600080fd5b80516118398161185f565b600082601f83011261189057600080fd5b815161189e61156f82611528565b8181528460208386010111156118b357600080fd5b6118c4826020830160208701611346565b949350505050565b600080604083850312156118df57600080fd5b825167ffffffffffffffff808211156118f757600080fd5b9084019060e0828703121561190b57600080fd5b61191361148c565b61191c8361182e565b815261192a6020840161182e565b602082015261193b6040840161183e565b604082015261194c6060840161184f565b606082015261195d60808401611874565b608082015261196e60a08401611874565b60a082015260c08301518281111561198557600080fd5b6119918882860161187f565b60c08301525060208601519094509150808211156119ae57600080fd5b506119bb8582860161187f565b9150509250929050565b6000604082840312156119d757600080fd5b6119df611463565b9050815181526020820151602082015292915050565b600080600080600080868803610260811215611a1057600080fd5b61016080821215611a2057600080fd5b611a286114af565b9150611a338961182e565b8252611a4160208a01611874565b602083015260408901516040830152611a5d8a60608b016119c5565b6060830152611a6f8a60a08b016119c5565b6080830152611a818a60e08b016119c5565b60a0830152611a936101208a0161184f565b60c0830152611aa56101408a01611874565b60e0830152819750611ab8818a01611874565b96505050611ac96101808801611874565b9350611ad9886101a089016119c5565b9250611ae9886101e089016119c5565b9150611af98861022089016119c5565b90509295509295509295565b600060408284031215611b1757600080fd5b61133f83836119c5565b600067ffffffffffffffff60c01b808916835287602084015286604084015260c06060840152611b5460c084018761136a565b6001600160601b039590951660808401529290921660a09091015250949350505050565b600080600080600060a08688031215611b9057600080fd5b5050835160208501516040860151606087015160809097015192989197509594509092509050565b600060208284031215611bca57600080fd5b61133f8261184f565b600060208284031215611be557600080fd5b815161133f816115a6565b600082611c0d57634e487b7160e01b600052601260045260246000fd5b500490565b600060208284031215611c2457600080fd5b815161133f8161185f565b82518152602080840151818301528251604083015282015160608201526080810161133f565b60006102008284031215611c6857600080fd5b611c706114d3565b611c7983611874565b8152611c8760208401611874565b6020820152611c986040840161182e565b6040820152611ca96060840161182e565b6060820152611cbb84608085016119c5565b6080820152611ccd8460c085016119c5565b60a0820152610100611ce1858286016119c5565b60c0830152611cf48561014086016119c5565b60e0830152611d078561018086016119c5565b90820152611d19846101c085016119c5565b6101208201529392505050565b600181811c90821680611d3a57607f821691505b602082108103611d5a57634e487b7160e01b600052602260045260246000fd5b5091905056fea2646970667358221220f6b03471d3d57452aee7bbd7a7eb1817ec687775d7e5eac95b7c55b397b6803264736f6c63430008140033",
683
+ "linkReferences": {
684
+ "contracts/types/Fee.sol": {
685
+ "FeeLib": [
686
+ {
687
+ "length": 20,
688
+ "start": 4294
689
+ },
690
+ {
691
+ "length": 20,
692
+ "start": 6752
693
+ },
694
+ {
695
+ "length": 20,
696
+ "start": 6930
697
+ },
698
+ {
699
+ "length": 20,
700
+ "start": 7031
701
+ },
702
+ {
703
+ "length": 20,
704
+ "start": 7144
705
+ }
706
+ ]
707
+ },
708
+ "contracts/types/NftId.sol": {
709
+ "NftIdLib": [
710
+ {
711
+ "length": 20,
712
+ "start": 4691
713
+ },
714
+ {
715
+ "length": 20,
716
+ "start": 5414
717
+ },
718
+ {
719
+ "length": 20,
720
+ "start": 5751
721
+ },
722
+ {
723
+ "length": 20,
724
+ "start": 6564
725
+ }
726
+ ]
727
+ }
728
+ },
729
+ "deployedLinkReferences": {
730
+ "contracts/types/Fee.sol": {
731
+ "FeeLib": [
732
+ {
733
+ "length": 20,
734
+ "start": 1074
735
+ },
736
+ {
737
+ "length": 20,
738
+ "start": 3532
739
+ },
740
+ {
741
+ "length": 20,
742
+ "start": 3710
743
+ },
744
+ {
745
+ "length": 20,
746
+ "start": 3811
747
+ },
748
+ {
749
+ "length": 20,
750
+ "start": 3924
751
+ }
752
+ ]
753
+ },
754
+ "contracts/types/NftId.sol": {
755
+ "NftIdLib": [
756
+ {
757
+ "length": 20,
758
+ "start": 1471
759
+ },
760
+ {
761
+ "length": 20,
762
+ "start": 2194
763
+ },
764
+ {
765
+ "length": 20,
766
+ "start": 2531
767
+ },
768
+ {
769
+ "length": 20,
770
+ "start": 3344
771
+ }
772
+ ]
773
+ }
774
+ }
775
+ }